From b34d8a277876222ba7ca9e911c2b74d742c8ea80 Mon Sep 17 00:00:00 2001 From: VysotskiVadim Date: Wed, 25 Oct 2023 12:38:56 +0200 Subject: [PATCH] added instrumentation tests --- .../core/LongRoutesSanityTest.kt | 78 ++++++++++++++++++- .../main/res/raw/long_route_7k_reroute.json | 1 + 2 files changed, 76 insertions(+), 3 deletions(-) create mode 100644 instrumentation-tests/src/main/res/raw/long_route_7k_reroute.json diff --git a/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/LongRoutesSanityTest.kt b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/LongRoutesSanityTest.kt index 504b55fe9e8..2e7023cfc6b 100644 --- a/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/LongRoutesSanityTest.kt +++ b/instrumentation-tests/src/androidTest/java/com/mapbox/navigation/instrumentation_tests/core/LongRoutesSanityTest.kt @@ -6,9 +6,12 @@ import com.mapbox.api.directions.v5.models.RouteOptions import com.mapbox.navigation.base.ExperimentalPreviewMapboxNavigationAPI import com.mapbox.navigation.base.extensions.applyDefaultNavigationOptions import com.mapbox.navigation.base.options.LongRoutesOptimisationOptions +import com.mapbox.navigation.core.directions.session.RoutesExtra +import com.mapbox.navigation.core.internal.extensions.flowRouteProgress import com.mapbox.navigation.instrumentation_tests.R import com.mapbox.navigation.instrumentation_tests.utils.DelayedResponseModifier import com.mapbox.navigation.instrumentation_tests.utils.http.MockDirectionsRequestHandler +import com.mapbox.navigation.instrumentation_tests.utils.location.stayOnPosition import com.mapbox.navigation.instrumentation_tests.utils.readRawFileText import com.mapbox.navigation.instrumentation_tests.utils.routes.RoutesProvider import com.mapbox.navigation.instrumentation_tests.utils.withMapboxNavigation @@ -16,6 +19,7 @@ import com.mapbox.navigation.testing.ui.BaseCoreNoCleanUpTest import com.mapbox.navigation.testing.ui.utils.coroutines.getSuccessfulResultOrThrowException import com.mapbox.navigation.testing.ui.utils.coroutines.requestRoutes import com.mapbox.navigation.testing.ui.utils.coroutines.routesPreviewUpdates +import com.mapbox.navigation.testing.ui.utils.coroutines.routesUpdates import com.mapbox.navigation.testing.ui.utils.coroutines.sdkTest import com.mapbox.navigation.testing.ui.utils.coroutines.setNavigationRoutesAsync import kotlinx.coroutines.flow.filterNotNull @@ -59,7 +63,8 @@ class LongRoutesSanityTest : BaseCoreNoCleanUpTest() { val longRoutesOptions = setupLongRoutes() val shortRoutesOptions = setupShortRoutes() withMapboxNavigation( - longRoutesOptimisationOptions = LongRoutesOptimisationOptions.OptimiseNavigationForLongRoutes( + longRoutesOptimisationOptions = + LongRoutesOptimisationOptions.OptimiseNavigationForLongRoutes( responseToParseSizeBytes = 5.megabytesInBytes() ) ) { navigation -> @@ -84,7 +89,8 @@ class LongRoutesSanityTest : BaseCoreNoCleanUpTest() { val longRoutesOptions = setupLongRoutes() val shortRoutesOptions = setupShortRoutes() withMapboxNavigation( - longRoutesOptimisationOptions = LongRoutesOptimisationOptions.OptimiseNavigationForLongRoutes( + longRoutesOptimisationOptions = + LongRoutesOptimisationOptions.OptimiseNavigationForLongRoutes( responseToParseSizeBytes = 5.megabytesInBytes() ) ) { navigation -> @@ -112,10 +118,47 @@ class LongRoutesSanityTest : BaseCoreNoCleanUpTest() { } } + @Test + fun rerouteOnLongRoute() = sdkTest(60_000) { + val longRoutesOptions = setupLongRoutes() + val longRoutesRerouteOptions = setupLongRoutesReroute() + withMapboxNavigation( + longRoutesOptimisationOptions = + LongRoutesOptimisationOptions.OptimiseNavigationForLongRoutes( + responseToParseSizeBytes = 5.megabytesInBytes() + ) + ) { navigation -> + navigation.setNavigationRoutesAsync( + navigation + .requestRoutes(longRoutesOptions) + .getSuccessfulResultOrThrowException().routes + ) + assertEquals(2, navigation.getNavigationRoutes().size) + + val rerouteOrigin = longRoutesRerouteOptions.coordinatesList().first() + stayOnPosition( + latitude = rerouteOrigin.latitude(), + longitude = rerouteOrigin.longitude(), + bearing = 190.0f + ) { + navigation.startTripSession() + navigation.flowRouteProgress().first() + val droppingAlternatives = navigation.routesUpdates().first { + it.reason == RoutesExtra.ROUTES_UPDATE_REASON_ALTERNATIVE + } + assertEquals(1, droppingAlternatives.navigationRoutes.size) + val reroute = navigation.routesUpdates().first { + it.reason == RoutesExtra.ROUTES_UPDATE_REASON_REROUTE + } + assertEquals(2, reroute.navigationRoutes.size) + } + } + } + private fun setupLongRoutes(): RouteOptions { val routeOptions = longRouteOptions() val handler = MockDirectionsRequestHandler( - profile = DirectionsCriteria.PROFILE_DRIVING_TRAFFIC, + profile = routeOptions.profile(), lazyJsonResponse = { readRawFileText(context, R.raw.long_route_7k) }, expectedCoordinates = routeOptions.coordinatesList() ) @@ -141,6 +184,35 @@ class LongRoutesSanityTest : BaseCoreNoCleanUpTest() { return routeOptions } + private fun setupLongRoutesReroute(): RouteOptions { + val routeOptions = longRouteRerouteOptions() + val handler = MockDirectionsRequestHandler( + profile = routeOptions.profile(), + lazyJsonResponse = { readRawFileText(context, R.raw.long_route_7k_reroute) }, + expectedCoordinates = routeOptions.coordinatesList() + ) + mockWebServerRule.requestHandlers.add(handler) + return routeOptions + } + + private fun longRouteRerouteOptions(): RouteOptions { + val routeOptions = RouteOptions.builder() + .baseUrl(mockWebServerRule.baseUrl) // comment to use real Directions API + .applyDefaultNavigationOptions() + .coordinates( + "4.899038,52.373577" + + ";5.359980783143584,43.280050656855906" + + ";11.571179644010442,48.145540095763664" + + ";13.394784408007155,52.51274942160785" + + ";-9.143239539655042,38.70880224984026" + + ";9.21595128801522,45.4694220491258" + ) + .alternatives(true) + .enableRefresh(true) + .build() + return routeOptions + } + private fun setupShortRoutes(): RouteOptions { val shortRoute = RoutesProvider.dc_very_short(context) mockWebServerRule.requestHandlers.addAll(shortRoute.mockRequestHandlers) diff --git a/instrumentation-tests/src/main/res/raw/long_route_7k_reroute.json b/instrumentation-tests/src/main/res/raw/long_route_7k_reroute.json new file mode 100644 index 00000000000..aa62728a69b --- /dev/null +++ b/instrumentation-tests/src/main/res/raw/long_route_7k_reroute.json @@ -0,0 +1 @@ +{"routes":[{"weight_typical":267153.537,"duration_typical":281366.174,"weight_name":"auto","weight":300324.346,"duration":281415.811,"distance":7935252.5,"legs":[{"notifications":[{"details":{"actual_value":"NL,BE","message":"Crossing the border of the countries of NL and BE."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":1333,"geometry_index_start":1324},{"details":{"actual_value":"BE,FR","message":"Crossing the border of the countries of BE and FR."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":3722,"geometry_index_start":3721}],"summary":"A 26, A 7","distance":1232557.5,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive southwest on Oudezijds Achterburgwal. Then Turn right onto Stoofsteeg.","announcement":"Drive southwest on Oudezijds Achterburgwal. Then Turn right onto Stoofsteeg.","distanceAlongGeometry":158.232},{"ssmlAnnouncement":"Turn right onto Stoofsteeg.","announcement":"Turn right onto Stoofsteeg.","distanceAlongGeometry":46.667}],"intersections":[{"bearings":[214],"entry":[true],"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":0,"location":[4.899015,52.373587]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Stoofsteeg"}],"type":"turn","modifier":"right","text":"Stoofsteeg"},"distanceAlongGeometry":158.232}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive southwest on Oudezijds Achterburgwal.","bearing_after":214,"bearing_before":0,"location":[4.899015,52.373587]},"speedLimitSign":"vienna","name":"Oudezijds Achterburgwal","weight_typical":23.327,"duration_typical":19.042,"duration":19.042,"distance":158.232,"driving_side":"right","weight":23.327,"mode":"driving","geometry":"eds{bBmk_jH`MvNtz@l`A"},{"voiceInstructions":[{"ssmlAnnouncement":"In 200 feet, Turn right onto Oudezijds Voorburgwal.","announcement":"In 200 feet, Turn right onto Oudezijds Voorburgwal.","distanceAlongGeometry":48.071},{"ssmlAnnouncement":"Turn right onto Oudezijds Voorburgwal.","announcement":"Turn right onto Oudezijds Voorburgwal.","distanceAlongGeometry":16.667}],"intersections":[{"bearings":[34,117,213,298],"entry":[false,false,true,true],"in":0,"turn_weight":12,"turn_duration":1.551,"mapbox_streets_v8":{"class":"service"},"is_urban":true,"admin_index":0,"out":3,"geometry_index":2,"location":[4.897716,52.372407]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Oudezijds Voorburgwal"}],"type":"turn","modifier":"right","text":"Oudezijds Voorburgwal"},"distanceAlongGeometry":51.405}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Stoofsteeg.","modifier":"right","bearing_after":298,"bearing_before":214,"location":[4.897716,52.372407]},"speedLimitSign":"vienna","name":"Stoofsteeg","weight_typical":35.409,"duration_typical":19.911,"duration":19.911,"distance":51.405,"driving_side":"right","weight":35.409,"mode":"driving","geometry":"mzp{bBgz|iHwLph@"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, Turn right onto Korte Niezel.","announcement":"In 900 feet, Turn right onto Korte Niezel.","distanceAlongGeometry":278.447},{"ssmlAnnouncement":"Turn right onto Korte Niezel.","announcement":"Turn right onto Korte Niezel.","distanceAlongGeometry":50}],"intersections":[{"entry":[true,false,false,false],"in":1,"bearings":[38,118,217,293],"duration":94.277,"turn_weight":12,"turn_duration":3.248,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":121.234,"geometry_index":3,"location":[4.897051,52.372627]},{"bearings":[35,114,219,284],"entry":[true,false,false,true],"in":2,"turn_weight":2,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":5,"location":[4.898662,52.373871]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Korte Niezel"}],"type":"turn","modifier":"right","text":"Korte Niezel"},"distanceAlongGeometry":288.447}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Oudezijds Voorburgwal.","modifier":"right","bearing_after":38,"bearing_before":298,"location":[4.897051,52.372627]},"speedLimitSign":"vienna","name":"Oudezijds Voorburgwal","weight_typical":183.714,"duration_typical":144.703,"duration":144.703,"distance":288.447,"driving_side":"right","weight":183.714,"mode":"driving","geometry":"ehq{bBup{iH{v@ifA{Tk\\u[k_@_VcY"},{"voiceInstructions":[{"ssmlAnnouncement":"In 500 feet, Turn left onto Geldersekade.","announcement":"In 500 feet, Turn left onto Geldersekade.","distanceAlongGeometry":143.004},{"ssmlAnnouncement":"Turn left onto Geldersekade.","announcement":"Turn left onto Geldersekade.","distanceAlongGeometry":46.667}],"intersections":[{"entry":[false,true,false,true],"in":2,"bearings":[32,120,215,293],"duration":2.716,"turn_weight":7,"turn_duration":1.636,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":8.296,"geometry_index":7,"location":[4.899598,52.374698]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[118,300],"duration":0.24,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":3.388,"geometry_index":8,"location":[4.899719,52.374656]},{"entry":[true,false],"in":1,"bearings":[120,298],"duration":3,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":6.7,"geometry_index":9,"location":[4.899747,52.374647]},{"entry":[true,true,true,false],"in":3,"bearings":[34,115,214,300],"duration":0.386,"turn_weight":11.2,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":11.632,"geometry_index":10,"location":[4.900072,52.374533]},{"entry":[true,false],"in":1,"bearings":[117,295],"duration":0.84,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":4.108,"geometry_index":11,"location":[4.900115,52.374521]},{"entry":[true,false],"in":1,"bearings":[110,297],"duration":0.24,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":3.388,"geometry_index":12,"location":[4.900213,52.374491]},{"entry":[true,false,false],"in":2,"bearings":[114,213,290],"duration":2.529,"turn_weight":8.1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":11.124,"geometry_index":13,"location":[4.900245,52.374484]},{"entry":[true,true,false,false],"in":3,"bearings":[28,116,206,295],"duration":4.219,"turn_weight":11.2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":16.24,"geometry_index":16,"location":[4.900526,52.374409]},{"entry":[true,true,true,false],"in":3,"bearings":[18,118,196,298],"duration":4.916,"turn_weight":6.2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":12.091,"geometry_index":18,"location":[4.900985,52.374265]},{"entry":[true,false],"in":1,"bearings":[120,298],"duration":14.4,"turn_weight":6,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":23.28,"geometry_index":20,"location":[4.901178,52.374203]},{"entry":[true,false],"in":1,"bearings":[118,300],"duration":2.057,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":3.469,"geometry_index":21,"location":[4.901483,52.374094]},{"bearings":[17,120,196,298],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":23,"location":[4.901532,52.374078]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Geldersekade"}],"type":"turn","modifier":"left","text":"Geldersekade"},"distanceAlongGeometry":153.004}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Korte Niezel.","modifier":"right","bearing_after":120,"bearing_before":35,"location":[4.899598,52.374698]},"speedLimitSign":"vienna","name":"Korte Niezel","weight_typical":108.184,"duration_typical":37.608,"duration":37.608,"distance":153.004,"driving_side":"right","weight":108.184,"mode":"driving","geometry":"siu{bB{o`jHrAqFPw@bFiSVuAz@cEL_ALyAtBwJP_BXoBdGeXhBeIP{@xEaRFYVgAd@mB"},{"voiceInstructions":[{"ssmlAnnouncement":"In 800 feet, Turn right onto Prins Hendrikkade.","announcement":"In 800 feet, Turn right onto Prins Hendrikkade.","distanceAlongGeometry":246.307},{"ssmlAnnouncement":"Turn right onto Prins Hendrikkade.","announcement":"Turn right onto Prins Hendrikkade.","distanceAlongGeometry":50}],"intersections":[{"entry":[true,true,false,false],"in":3,"bearings":[17,124,196,300],"duration":9.806,"turn_weight":10,"turn_duration":6.566,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":13.888,"geometry_index":24,"location":[4.901587,52.374059]},{"entry":[true,false,false],"in":2,"bearings":[16,115,197],"duration":4.101,"turn_weight":3.1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":7.996,"geometry_index":25,"location":[4.901701,52.374288]},{"entry":[true,false,false],"in":2,"bearings":[17,110,196],"duration":22.087,"turn_weight":3.1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":29.596,"geometry_index":26,"location":[4.90184,52.374583]},{"bearings":[67,132,241,315],"entry":[true,false,false,false],"in":2,"turn_weight":6.2,"turn_duration":0.011,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":34,"location":[4.90278,52.376091]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Prins Hendrikkade"}],"type":"turn","modifier":"right","text":"Prins Hendrikkade"},"distanceAlongGeometry":256.307}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Geldersekade.","modifier":"left","bearing_after":17,"bearing_before":120,"location":[4.901587,52.374059]},"speedLimitSign":"vienna","name":"Geldersekade","weight_typical":59.408,"duration_typical":37.445,"duration":37.445,"distance":256.307,"driving_side":"right","weight":59.408,"mode":"driving","geometry":"uat{bBeldjHiMcFmQuGyuA}i@u@m@_@e@_@q@c@oA]sAa@aCSmAoAyH"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Take the exit.","announcement":"In a quarter mile, Take the exit.","distanceAlongGeometry":561.316},{"ssmlAnnouncement":"Take the exit. Then Turn right onto Foeliestraat.","announcement":"Take the exit. Then Turn right onto Foeliestraat.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[142,247,324],"duration":9.056,"turn_weight":14.3,"turn_duration":0.992,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":23.977,"geometry_index":35,"location":[4.902937,52.376131]},{"entry":[false,true,true,false],"in":3,"bearings":[130,180,266,346],"duration":3.546,"turn_weight":2,"turn_duration":0.018,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.234,"geometry_index":42,"location":[4.903304,52.375696]},{"entry":[true,false],"in":1,"bearings":[147,347],"duration":0.648,"turn_weight":2.325,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.103,"geometry_index":47,"location":[4.903372,52.375258]},{"entry":[true,false],"in":1,"bearings":[140,327],"duration":0.9,"turn_weight":1.55,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.63,"geometry_index":49,"location":[4.903445,52.37519]},{"entry":[true,false],"in":1,"bearings":[138,320],"duration":3.806,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.067,"geometry_index":50,"location":[4.903509,52.375144]},{"entry":[true,true,false,false],"in":3,"bearings":[37,134,217,315],"duration":0.754,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.882,"geometry_index":52,"location":[4.903881,52.374907]},{"entry":[false,true,false,false],"in":3,"bearings":[42,132,222,314],"duration":21.621,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":26.92,"geometry_index":53,"location":[4.903986,52.374846]},{"entry":[true,false],"in":1,"bearings":[134,316],"duration":1.469,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.263,"geometry_index":59,"location":[4.907194,52.373075]},{"entry":[false,true,false,false],"in":3,"bearings":[41,132,201,314],"duration":0.388,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.441,"geometry_index":60,"location":[4.907407,52.372949]},{"entry":[false,true,true,false],"in":3,"bearings":[97,134,232,312],"duration":2.626,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.142,"geometry_index":61,"location":[4.907465,52.372917]},{"entry":[true,false],"in":1,"bearings":[134,314],"duration":0.9,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.58,"geometry_index":62,"location":[4.907724,52.372764]},{"entry":[true,false],"in":1,"bearings":[132,314],"duration":1.029,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.734,"geometry_index":63,"location":[4.907823,52.372706]},{"bearings":[137,312],"entry":[true,false],"in":1,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":64,"location":[4.907959,52.372632]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Foeliestraat"}],"type":"turn","modifier":"right","text":"Foeliestraat"},"primary":{"components":[{"type":"text","text":"Prins Hendrikkade"}],"type":"off ramp","modifier":"right","text":"Prins Hendrikkade"},"distanceAlongGeometry":577.982}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Prins Hendrikkade.","modifier":"right","bearing_after":142,"bearing_before":67,"location":[4.902937,52.376131]},"speedLimitSign":"vienna","name":"Prins Hendrikkade","weight_typical":88.992,"duration_typical":52.175,"duration":50.598,"distance":577.982,"driving_side":"right","weight":87.1,"mode":"driving","geometry":"ecx{bBq`gjHhGsIjB{BrAoArB}AhAm@jAWpCYrM@fBItAWtBk@bB{@hAeA|@kAzA_C~HoMxCwGxBqE|@qBlOa]pq@i~AnPm^dJcR`L_TzFiL~@sBpHeOrBeErCoGxEyHlAwC~@aD~@}Dl@eF"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Foeliestraat.","announcement":"Turn right onto Foeliestraat.","distanceAlongGeometry":85.957}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[100,115,296],"duration":21.394,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":27.65,"geometry_index":69,"location":[4.908483,52.372397]},{"entry":[true,false],"in":1,"bearings":[125,299],"duration":9.675,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":11.61,"geometry_index":73,"location":[4.909721,52.372002]},{"entry":[true,true,false],"in":2,"bearings":[114,133,299],"duration":5.909,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.018,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":7.069,"geometry_index":75,"location":[4.91026,52.371797]},{"entry":[false,true,false,false],"in":3,"bearings":[30,148,210,313],"duration":2.31,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":4.249,"geometry_index":77,"location":[4.91045,52.371689]},{"bearings":[30,120,170,204,298,328],"entry":[false,true,true,false,false,false],"in":5,"turn_weight":5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":78,"location":[4.910508,52.371632]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Foeliestraat"}],"type":"turn","modifier":"right","text":"Foeliestraat"},"distanceAlongGeometry":171.589}],"speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit.","modifier":"slight right","bearing_after":115,"bearing_before":116,"location":[4.908483,52.372397]},"speedLimitSign":"vienna","name":"Prins Hendrikkade","weight_typical":56.798,"duration_typical":41.012,"duration":41.012,"distance":171.589,"driving_side":"right","weight":56.798,"mode":"driving","geometry":"yyp{bBe{qjHzBoLzAcJxBoJbMgh@hDsJnFaUbDqHr@iApBsBhAa@dAE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":2955.944},{"ssmlAnnouncement":"In a quarter mile, Keep left to take A10.","announcement":"In a quarter mile, Keep left to take A10.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take A10.","announcement":"Keep left to take A10.","distanceAlongGeometry":83.333}],"intersections":[{"entry":[false,false,true,false,false],"in":4,"bearings":[30,113,215,306,350],"duration":19.481,"turn_weight":6.5,"turn_duration":0.131,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":29.72,"geometry_index":80,"location":[4.910528,52.37156]},{"entry":[false,true],"in":0,"bearings":[43,226],"duration":5.625,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.25,"geometry_index":84,"location":[4.909716,52.370971]},{"entry":[false,true,true],"in":0,"bearings":[46,225,313],"duration":1.939,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.804,"geometry_index":85,"location":[4.909451,52.370815]},{"entry":[false,false,true],"in":1,"bearings":[23,45,224],"duration":4.339,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.684,"geometry_index":86,"location":[4.909367,52.370763]},{"entry":[false,true,false],"in":0,"bearings":[44,224,308],"duration":5.047,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.548,"geometry_index":88,"location":[4.909186,52.370649]},{"entry":[false,true,true],"in":0,"bearings":[44,229,308],"duration":3.106,"turn_weight":5.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.215,"geometry_index":89,"location":[4.908971,52.370511]},{"entry":[false,true,false],"in":0,"bearings":[51,229,249],"duration":1.461,"turn_weight":1.55,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.278,"geometry_index":91,"location":[4.908489,52.370264]},{"entry":[false,false,true,false],"in":0,"bearings":[49,149,221,328],"duration":0.393,"turn_weight":3.1,"turn_duration":0.033,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.532,"geometry_index":93,"location":[4.908267,52.370146]},{"entry":[false,false,false,false,true,true,false],"in":0,"bearings":[41,72,84,152,220,259,331],"duration":1.171,"turn_weight":9.3,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":4,"weight":10.682,"geometry_index":94,"location":[4.908222,52.370114]},{"entry":[false,true,true],"in":0,"bearings":[40,66,238],"duration":4.245,"turn_duration":0.025,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.065,"geometry_index":95,"location":[4.908067,52.370003]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[58,238],"duration":21.352,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":25.622,"geometry_index":96,"location":[4.907646,52.369843]},{"entry":[false,false,true],"in":0,"bearings":[58,231,246],"duration":4.044,"turn_weight":1,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.838,"geometry_index":97,"location":[4.905502,52.369029]},{"entry":[false,false,true],"in":1,"bearings":[15,66,240],"duration":1.03,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.2,"geometry_index":98,"location":[4.90512,52.368925]},{"entry":[false,true],"in":0,"bearings":[60,241],"duration":2.8,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.36,"geometry_index":99,"location":[4.905057,52.368903]},{"entry":[false,true,true],"in":0,"bearings":[61,235,304],"duration":13.948,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.704,"geometry_index":100,"location":[4.904876,52.368841]},{"entry":[false,false,true,false],"in":0,"bearings":[55,130,233,308],"duration":1.459,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.728,"geometry_index":103,"location":[4.904177,52.36854]},{"entry":[false,false,true,false],"in":0,"bearings":[53,132,228,314],"duration":3.146,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.744,"geometry_index":104,"location":[4.904104,52.368507]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[4.903968,52.368431],"geometry_index":105,"admin_index":0,"weight":7.532,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.028,"turn_weight":5,"duration":2.139,"bearings":[48,180,223,308],"out":2,"in":0,"entry":[false,false,true,true]},{"entry":[false,true,false],"in":0,"bearings":[43,213,359],"duration":5.641,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"turn_duration":0.041,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.72,"geometry_index":107,"location":[4.903804,52.368322]},{"entry":[false,false,true,true],"in":0,"bearings":[31,146,186,267],"duration":0.338,"turn_weight":1,"turn_duration":0.122,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.265,"geometry_index":112,"location":[4.903473,52.368002]},{"entry":[false,false,true,false],"in":0,"bearings":[6,79,175,259],"duration":1.661,"turn_duration":0.041,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.984,"geometry_index":114,"location":[4.903469,52.367979]},{"entry":[true,true,false,false],"in":3,"bearings":[53,140,258,355],"duration":6.52,"turn_duration":0.28,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.488,"geometry_index":116,"location":[4.903479,52.367902]},{"entry":[false,true,false,false],"in":3,"bearings":[56,141,238,314],"duration":0.731,"turn_weight":5,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.864,"geometry_index":120,"location":[4.903999,52.367566]},{"entry":[false,true,false,false],"in":3,"bearings":[53,152,235,321],"duration":13.094,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.696,"geometry_index":121,"location":[4.904057,52.367522]},{"entry":[true,true,false],"in":2,"bearings":[161,252,340],"duration":1.501,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.816,"geometry_index":125,"location":[4.904638,52.366609]},{"entry":[true,false],"in":1,"bearings":[152,341],"duration":0.973,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.192,"geometry_index":126,"location":[4.904708,52.366486]},{"entry":[true,false],"in":1,"bearings":[160,332],"duration":14.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":17.28,"geometry_index":127,"location":[4.90478,52.366403]},{"entry":[true,true,true,false],"in":3,"bearings":[75,151,253,340],"duration":1.27,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.478,"geometry_index":128,"location":[4.905407,52.365356]},{"entry":[true,false],"in":1,"bearings":[160,331],"duration":1.405,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.686,"geometry_index":129,"location":[4.905496,52.365256]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"entry":[true,false],"in":1,"bearings":[171,340],"duration":0.99,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.188,"geometry_index":130,"location":[4.905579,52.365118]},{"entry":[true,true,true,false],"in":3,"bearings":[69,158,252,351],"duration":9.757,"turn_duration":0.048,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":11.651,"geometry_index":131,"location":[4.905604,52.365017]},{"entry":[true,true,true,false],"in":3,"bearings":[77,161,253,340],"duration":1.165,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.403,"geometry_index":133,"location":[4.906076,52.364273]},{"entry":[false,true,false,false],"in":3,"bearings":[73,160,249,341],"duration":4.928,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.014,"geometry_index":134,"location":[4.906142,52.364155]},{"entry":[true,true,true,false],"in":3,"bearings":[70,159,253,341],"duration":0.69,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.82,"geometry_index":136,"location":[4.90644,52.363644]},{"entry":[true,false],"in":1,"bearings":[160,339],"duration":1.756,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.151,"geometry_index":137,"location":[4.906482,52.363577]},{"entry":[true,false],"in":1,"bearings":[157,340],"duration":0.655,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.802,"geometry_index":138,"location":[4.906581,52.363409]},{"entry":[true,true,false,false],"in":3,"bearings":[72,160,253,337],"duration":8.351,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.218,"geometry_index":139,"location":[4.906629,52.363339]},{"entry":[true,true,true,false],"in":3,"bearings":[73,163,253,340],"duration":0.458,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.551,"geometry_index":140,"location":[4.907107,52.362538]},{"entry":[true,false],"in":1,"bearings":[162,343],"duration":2.291,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.806,"geometry_index":141,"location":[4.907131,52.362491]},{"entry":[true,false],"in":1,"bearings":[159,342],"duration":0.439,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.538,"geometry_index":142,"location":[4.907228,52.362311]},{"entry":[true,true,false,false],"in":3,"bearings":[72,161,253,339],"duration":9.093,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.13,"geometry_index":143,"location":[4.907257,52.362265]},{"entry":[true,true,false],"in":2,"bearings":[161,252,341],"duration":12.725,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":15.565,"geometry_index":144,"location":[4.907514,52.361817]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,341],"duration":1.29,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.556,"geometry_index":147,"location":[4.907803,52.361312]},{"entry":[false,true,false,false],"in":3,"bearings":[70,161,251,340],"duration":2.772,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.372,"geometry_index":148,"location":[4.907832,52.361262]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,249,341],"duration":1.501,"turn_weight":5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.816,"geometry_index":150,"location":[4.907894,52.361154]},{"entry":[true,true,false,false],"in":3,"bearings":[23,159,251,340],"duration":0.921,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.102,"geometry_index":152,"location":[4.907928,52.361098]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,253,339],"duration":0.907,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.102,"geometry_index":153,"location":[4.907962,52.361044]},{"entry":[false,true,false,false],"in":3,"bearings":[70,159,249,340],"duration":5.721,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.982,"geometry_index":154,"location":[4.90799,52.360997]},{"entry":[true,false],"in":1,"bearings":[160,339],"duration":11.52,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":14.112,"geometry_index":155,"location":[4.908188,52.360674]},{"entry":[true,false],"in":1,"bearings":[159,340],"duration":0.635,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.778,"geometry_index":157,"location":[4.908348,52.360407]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,339],"duration":1.913,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.335,"geometry_index":158,"location":[4.908365,52.36038]},{"entry":[false,true,true,false],"in":3,"bearings":[75,160,249,340],"duration":4.133,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.04,"geometry_index":159,"location":[4.908407,52.360308]},{"entry":[true,true,false,false],"in":3,"bearings":[72,160,246,340],"duration":1.413,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.707,"geometry_index":160,"location":[4.90857,52.360035]},{"entry":[false,true,false,false],"in":3,"bearings":[69,160,258,340],"duration":0.6,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.711,"geometry_index":161,"location":[4.908631,52.359932]},{"entry":[false,true,false,false],"in":3,"bearings":[70,161,249,340],"duration":5.593,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.828,"geometry_index":162,"location":[4.908659,52.359886]},{"entry":[true,false],"in":1,"bearings":[159,341],"duration":10.452,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.803,"geometry_index":163,"location":[4.908893,52.35948]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,339],"duration":0.472,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.569,"geometry_index":165,"location":[4.909355,52.358727]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,237,340],"duration":1.297,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.565,"geometry_index":166,"location":[4.909373,52.358697]},{"entry":[true,true,false,false],"in":3,"bearings":[70,159,251,340],"duration":1.341,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.617,"geometry_index":167,"location":[4.909427,52.358604]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,339],"duration":12.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.435,"geometry_index":168,"location":[4.909483,52.358513]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,340],"duration":0.499,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.588,"geometry_index":169,"location":[4.910019,52.357624]},{"entry":[false,true,false,false],"in":3,"bearings":[69,161,251,340],"duration":0.979,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.176,"geometry_index":170,"location":[4.910041,52.357587]},{"entry":[false,true,true,false],"in":3,"bearings":[66,162,246,341],"duration":0.838,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.018,"geometry_index":171,"location":[4.910082,52.357515]},{"entry":[true,true,false,false],"in":3,"bearings":[66,160,248,342],"duration":0.656,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.778,"geometry_index":173,"location":[4.910112,52.35746]},{"entry":[false,true,false,false],"in":3,"bearings":[80,160,255,340],"duration":0.76,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.908,"geometry_index":175,"location":[4.910145,52.357406]},{"entry":[false,true,false,false],"in":3,"bearings":[76,160,255,340],"duration":5.949,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.264,"geometry_index":176,"location":[4.91018,52.357347]},{"entry":[true,false,false],"in":2,"bearings":[161,249,340],"duration":8.076,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.87,"geometry_index":177,"location":[4.910463,52.356875]},{"entry":[false,true,false,false],"in":3,"bearings":[69,159,248,341],"duration":0.878,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.05,"geometry_index":179,"location":[4.910688,52.356478]},{"entry":[false,true,false,false],"in":3,"bearings":[69,158,248,339],"duration":1.733,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.1,"geometry_index":180,"location":[4.910713,52.356438]},{"entry":[true,true,false,false],"in":3,"bearings":[65,157,246,338],"duration":0.79,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.959,"geometry_index":181,"location":[4.910766,52.356357]},{"entry":[false,true,false,false],"in":3,"bearings":[68,161,251,337],"duration":0.4,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.479,"geometry_index":182,"location":[4.910822,52.356277]},{"entry":[false,true,false,false],"in":3,"bearings":[69,160,251,341],"duration":7.532,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.203,"geometry_index":183,"location":[4.910846,52.356235]},{"entry":[true,true,false],"in":2,"bearings":[160,251,341],"duration":10.156,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.418,"geometry_index":185,"location":[4.911325,52.355424]},{"entry":[true,true,false],"in":2,"bearings":[160,255,340],"duration":8.365,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":10.223,"geometry_index":186,"location":[4.911868,52.354525]},{"entry":[true,true,false],"in":2,"bearings":[158,251,340],"duration":7.386,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.02,"geometry_index":187,"location":[4.912124,52.35409]},{"entry":[false,true,false,false],"in":3,"bearings":[58,159,237,339],"duration":0.825,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.002,"geometry_index":189,"location":[4.912365,52.353716]},{"entry":[false,true,false,false],"in":3,"bearings":[58,157,238,339],"duration":2.31,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.806,"geometry_index":190,"location":[4.912391,52.353674]},{"entry":[true,true,false,false],"in":3,"bearings":[69,160,246,337],"duration":0.827,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.002,"geometry_index":191,"location":[4.912469,52.353559]},{"entry":[false,true,false,false],"in":3,"bearings":[69,160,253,340],"duration":0.346,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.401,"geometry_index":192,"location":[4.91252,52.353472]},{"entry":[false,true,false,false],"in":3,"bearings":[72,160,249,340],"duration":8.365,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.223,"geometry_index":193,"location":[4.91254,52.353439]},{"entry":[true,false,false],"in":2,"bearings":[160,269,340],"duration":5.944,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":7.258,"geometry_index":194,"location":[4.913048,52.352576]},{"entry":[false,true,true,false],"in":3,"bearings":[68,157,239,340],"duration":3.541,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.222,"geometry_index":195,"location":[4.91344,52.351908]},{"entry":[true,true,false],"in":2,"bearings":[136,258,327],"duration":0.575,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.643,"geometry_index":198,"location":[4.913737,52.351566]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[133,316],"duration":8.205,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.846,"geometry_index":199,"location":[4.91381,52.35152]},{"entry":[true,false],"in":1,"bearings":[132,313],"duration":3.709,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.451,"geometry_index":200,"location":[4.914868,52.350922]},{"entry":[false,true,false,false],"in":3,"bearings":[42,133,222,313],"duration":1.656,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.964,"geometry_index":202,"location":[4.915239,52.350714]},{"entry":[true,true,false],"in":2,"bearings":[42,135,313],"duration":1.669,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.494,"geometry_index":203,"location":[4.915401,52.350622]},{"entry":[false,true,false,false],"in":3,"bearings":[41,133,218,315],"duration":0.576,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.665,"geometry_index":204,"location":[4.915521,52.350548]},{"entry":[false,true,false,false],"in":3,"bearings":[45,134,221,313],"duration":11.084,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":13.292,"geometry_index":205,"location":[4.915561,52.350525]},{"entry":[true,false],"in":1,"bearings":[139,314],"duration":1.694,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.033,"geometry_index":206,"location":[4.916402,52.350028]},{"entry":[true,false],"in":1,"bearings":[138,319],"duration":4.5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.4,"geometry_index":207,"location":[4.916481,52.349973]},{"entry":[false,true,false,false],"in":3,"bearings":[51,138,231,318],"duration":3.157,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.78,"geometry_index":209,"location":[4.916576,52.349908]},{"entry":[false,true,false,false],"in":3,"bearings":[55,141,235,318],"duration":8.108,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.72,"geometry_index":210,"location":[4.916647,52.34986]},{"entry":[true,true,false],"in":2,"bearings":[53,139,321],"duration":3.251,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.877,"geometry_index":211,"location":[4.916818,52.349733]},{"bearings":[142,231,320],"entry":[true,true,false],"in":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":213,"location":[4.917155,52.349496]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A10"}],"type":"fork","modifier":"left","text":"A10"},"distanceAlongGeometry":2972.611}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Foeliestraat.","modifier":"right","bearing_after":215,"bearing_before":170,"location":[4.910528,52.37156]},"speedLimitSign":"vienna","name":"Foeliestraat","weight_typical":512.647,"duration_typical":373.363,"duration":392.993,"distance":2972.611,"driving_side":"right","weight":536.38,"mode":"driving","geometry":"oeo{bB_{ujHbBrAjBvBnVz`@xEnIvHpOfBfD|AtCdCrErGlLbH`PhE`LfCzGbB~C~@xA|EtH~HhYzq@~dCnEzVj@|BzBhJnGvRzGxSl@bB`ApCvCnG~A`DxBdDhJbKbBnBdApAb@^fAn@RBXBV@`CUlAy@|@yAhLkUhBoDvAsBfAqAlAiAzCwBnn@uZtFkCdDoCl`Aef@fEqDrGeDhEq@rf@wXzEwBjFcCbFkCxWgMdCsAnIeEjC_B`q@{\\|Ao@fJaEzAy@~ZaOrTkK`GsCz@a@bBy@|DkBXOVOvAs@jBcA|Aw@dSkKfNaHl@]t@a@nCsA`PeIlEyBzAw@jXsMjk@eZtAu@z@c@xDkBtDoBpv@o`@hAk@nCqAtAm@VMTMtAs@tBeAn\\uPrU{KdAe@nAq@`DiB~CoBrAo@|b@qTvMkGdw@}`@dZ_O`TuLhAk@rAs@dF{ClDeB`Ag@|t@w^vh@oWrEeCpFcEdFgGzAqCjd@caAtJ}Sh@gAvDcIrCoFl@oA`^qs@lB}CrAwBl@eA~AmC|FuIbE}GtGcK~To["},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1840.555},{"ssmlAnnouncement":"In a quarter mile, Take the RING A10 ramp.","announcement":"In a quarter mile, Take the RING A10 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the RING A10, S111 ramp toward Utrecht, Rotterdam.","announcement":"Take the RING A10, S111 ramp toward Utrecht, Rotterdam.","distanceAlongGeometry":147.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[134,153,322],"duration":13.325,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":15.951,"geometry_index":214,"location":[4.917611,52.349144]},{"entry":[true,false,false],"in":2,"bearings":[147,170,325],"duration":5.269,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.314,"geometry_index":217,"location":[4.918059,52.348818]},{"entry":[false,true,false,false],"in":3,"bearings":[59,149,238,327],"duration":1.669,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.994,"geometry_index":219,"location":[4.918217,52.348672]},{"entry":[false,true,false,false],"in":3,"bearings":[62,150,238,329],"duration":2.777,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.323,"geometry_index":220,"location":[4.918262,52.348626]},{"entry":[false,true,true,false],"in":3,"bearings":[86,151,241,330],"duration":8.708,"turn_weight":1.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":11.94,"geometry_index":221,"location":[4.918334,52.34855]},{"entry":[true,false,false,true],"in":2,"bearings":[76,215,269,356],"duration":2.179,"turn_weight":1.5,"turn_duration":0.048,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.057,"geometry_index":229,"location":[4.919348,52.348215]},{"entry":[true,false,false],"in":2,"bearings":[78,231,255],"duration":3.669,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.143,"geometry_index":231,"location":[4.919762,52.34828]},{"entry":[true,true,false],"in":2,"bearings":[76,94,258],"duration":1.384,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.636,"geometry_index":232,"location":[4.920623,52.348394]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.273,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.327,"geometry_index":233,"location":[4.920973,52.348448]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.669,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.802,"geometry_index":234,"location":[4.921048,52.348459]},{"entry":[true,false],"in":1,"bearings":[78,256],"duration":8.088,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":9.705,"geometry_index":235,"location":[4.921232,52.348486]},{"entry":[true,false],"in":1,"bearings":[108,280],"duration":1.331,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.598,"geometry_index":241,"location":[4.9236,52.348638]},{"entry":[true,false],"in":1,"bearings":[116,289],"duration":5.811,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":6.974,"geometry_index":243,"location":[4.923982,52.348562]},{"entry":[true,true,false],"in":2,"bearings":[138,153,315],"duration":5.751,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":6.891,"geometry_index":247,"location":[4.925316,52.347965]},{"entry":[true,false,false],"in":2,"bearings":[139,289,318],"duration":1.55,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.851,"geometry_index":248,"location":[4.926627,52.347068]},{"entry":[true,false],"in":1,"bearings":[138,319],"duration":2.499,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.936,"geometry_index":249,"location":[4.926976,52.346827]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":21.514,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":25.279,"geometry_index":250,"location":[4.927556,52.346433]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":0.737,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.866,"geometry_index":251,"location":[4.932495,52.343079]},{"entry":[true,false],"in":1,"bearings":[137,318],"duration":19.485,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":22.408,"geometry_index":252,"location":[4.932661,52.342966]},{"entry":[true,false],"in":1,"bearings":[141,320],"duration":1.575,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.811,"geometry_index":255,"location":[4.936898,52.340062]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[141,321],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":256,"location":[4.937218,52.339818]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Utrecht"},{"type":"text","text":"/"},{"type":"text","text":"Rotterdam"}],"type":"turn","modifier":"slight right","text":"Utrecht / Rotterdam"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"RING A10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"RING A10"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"S111","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"S111"}],"type":"turn","modifier":"slight right","text":"RING A10 / S111"},"distanceAlongGeometry":1857.222},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Utrecht"},{"type":"text","text":"/"},{"type":"text","text":"Rotterdam"}],"type":"turn","modifier":"slight right","text":"Utrecht / Rotterdam"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"RING A10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"RING A10"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"S111","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"S111"}],"type":"turn","modifier":"slight right","text":"RING A10 / S111"},"distanceAlongGeometry":402.336}],"destinations":"A10","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A10.","modifier":"slight left","bearing_after":134,"bearing_before":142,"location":[4.917611,52.349144]},"speedLimitSign":"vienna","name":"Wibautstraat","weight_typical":133.711,"duration_typical":109.885,"duration":109.885,"distance":1857.222,"driving_side":"right","weight":133.711,"mode":"driving","ref":"S112","geometry":"olczbBuuckHlC}FfCqEtJoLpFkGp@o@zAyAvCoCrHmGzDmF`AuB|@_Er@yHBoHCwEEwJq@oIoAkNcFyt@kB{TUuCu@oJuHegA?Cw@iQY}SP}OdAoRh@_HlB{M~E}VfFgQjFwNtNmX`w@}pA`NyTrWgc@rpEusH`FkIp[}j@r`Ci{DhVq_@fN_SrNmS"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Take the A2 exit.","announcement":"In 1 mile, Take the A2 exit.","distanceAlongGeometry":1782.169},{"ssmlAnnouncement":"In a half mile, Take the A2 exit.","announcement":"In a half mile, Take the A2 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the Knooppunt Amstel exit onto A2 toward Eindhoven, Utrecht. Then Keep left to take A2.","announcement":"Take the Knooppunt Amstel exit onto A2 toward Eindhoven, Utrecht. Then Keep left to take A2.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[135,152,321],"duration":6.05,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":7.091,"geometry_index":257,"location":[4.937545,52.339568]},{"entry":[true,false],"in":1,"bearings":[139,321],"duration":3.176,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.732,"geometry_index":259,"location":[4.938015,52.339155]},{"entry":[true,false],"in":1,"bearings":[138,319],"duration":11.9,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":13.685,"geometry_index":260,"location":[4.938305,52.338951]},{"entry":[false,true,false],"in":2,"bearings":[37,209,354],"duration":5.328,"turn_weight":0.75,"turn_duration":0.072,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":6.794,"geometry_index":265,"location":[4.939277,52.338124]},{"entry":[false,true],"in":0,"bearings":[13,186],"duration":4.703,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":5.409,"geometry_index":270,"location":[4.938892,52.337517]},{"entry":[true,false],"in":1,"bearings":[186,359],"duration":3.273,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.764,"geometry_index":273,"location":[4.938849,52.336792]},{"entry":[false,true],"in":0,"bearings":[23,212],"duration":2.509,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":2.885,"geometry_index":277,"location":[4.938641,52.336272]},{"entry":[false,true],"in":0,"bearings":[41,226],"duration":3.436,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":3.952,"geometry_index":280,"location":[4.93824,52.335943]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.937605,52.335537],"geometry_index":283,"admin_index":0,"weight":13.365,"is_urban":true,"turn_weight":9,"duration":3.816,"bearings":[42,56,238],"out":2,"in":0,"turn_duration":0.02,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":1.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.729,"geometry_index":284,"location":[4.936391,52.335077]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,241],"duration":15.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":17.17,"geometry_index":285,"location":[4.935916,52.334906]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.930706,52.333114],"geometry_index":287,"admin_index":0,"weight":13.03,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":11.852,"bearings":[61,241,251],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.926781,52.331768],"geometry_index":288,"admin_index":0,"weight":5.261,"is_urban":true,"turn_weight":0.5,"duration":4.349,"bearings":[38,61,240],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":3.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.445,"geometry_index":289,"location":[4.925413,52.331292]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":3.991,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.291,"geometry_index":290,"location":[4.924376,52.330934]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[61,241],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":291,"location":[4.92307,52.330491]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Eindhoven"},{"type":"text","text":"/"},{"type":"text","text":"Utrecht"}],"type":"off ramp","modifier":"right","text":"Eindhoven / Utrecht"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"off ramp","modifier":"right","text":"A2"},"distanceAlongGeometry":1805.502}],"destinations":"RING A10, S111: Utrecht, Rotterdam","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the RING A10/S111 ramp toward Utrecht/Rotterdam.","modifier":"slight right","bearing_after":152,"bearing_before":141,"location":[4.937545,52.339568]},"speedLimitSign":"vienna","name":"Ringweg-Oost","weight_typical":109.298,"duration_typical":87.834,"duration":89.832,"distance":1805.502,"driving_side":"right","weight":111.492,"mode":"driving","ref":"A10; E 35","geometry":"_vpybBqsjlH~E_CxQkXvKcQhe@ex@nAuBxBkA`BF~BfAnEhEbGvEvF`D~EjBpGpAlI`AhKf@pUS|CHlIfAlErAtIxFjEzDrFzGpEhIxB`EnB|E`QtYv[zjAtIt\\x~@nxDdo@bkCbsAhtFv\\ntAjUx_AtZrpAre@hoB"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to take A2 toward Eindhoven, Utrecht.","announcement":"Keep left to take A2 toward Eindhoven, Utrecht.","distanceAlongGeometry":140}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.921273,52.329873],"geometry_index":292,"admin_index":0,"weight":1.627,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":1.538,"bearings":[61,244,261],"out":2,"in":0,"turn_duration":0.025,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,245],"duration":1.105,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":1.187,"geometry_index":293,"location":[4.92073,52.329822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.391,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":1.46,"geometry_index":294,"location":[4.920368,52.329717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":3.257,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":3.42,"geometry_index":295,"location":[4.919921,52.329589]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[65,246],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":296,"location":[4.918904,52.329296]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Eindhoven"},{"type":"text","text":"/"},{"type":"text","text":"Utrecht"}],"type":"fork","modifier":"left","text":"Eindhoven / Utrecht"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"fork","modifier":"left","text":"A2"},"distanceAlongGeometry":195.61}],"destinations":"A2: Eindhoven, Utrecht, Amsterdam-Rivierenbuurt","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the Knooppunt Amstel exit onto A2 toward Eindhoven/Utrecht.","modifier":"slight right","bearing_after":261,"bearing_before":241,"location":[4.921273,52.329873]},"speedLimitSign":"vienna","name":"","weight_typical":8.607,"duration_typical":8.16,"duration":8.16,"distance":195.61,"driving_side":"right","weight":8.607,"mode":"driving","ref":"A10; E 35","geometry":"ax}xbBqzjkHdB|`@pErU~F|ZhQp~@vCpP"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 20 miles.","announcement":"Continue for 20 miles.","distanceAlongGeometry":32135.781},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A2.","announcement":"In 1 mile, Keep left to stay on A2.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A2.","announcement":"In a half mile, Keep left to stay on A2.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A2 toward Maastricht, 's-Hertogenbosch.","announcement":"Keep left to stay on A2 toward Maastricht, 's-Hertogenbosch.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.918623,52.32922],"geometry_index":297,"admin_index":0,"weight":5.388,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":5.14,"bearings":[66,249,263],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,257],"duration":2.679,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":2.813,"geometry_index":300,"location":[4.916898,52.32887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,277],"duration":2.689,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":2.824,"geometry_index":303,"location":[4.915965,52.328809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,293],"duration":1.605,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":1.685,"geometry_index":305,"location":[4.915069,52.328922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,296],"duration":3.646,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":3.92,"geometry_index":306,"location":[4.91457,52.329053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,281],"duration":2.712,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":2.915,"geometry_index":308,"location":[4.913513,52.329345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,265],"duration":24.3,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":25.515,"geometry_index":312,"location":[4.912675,52.32941]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.912519,52.325658],"geometry_index":338,"admin_index":0,"weight":8.691,"is_urban":false,"turn_weight":0.5,"duration":8.014,"bearings":[148,313,331],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,350],"duration":14.677,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":15.044,"geometry_index":346,"location":[4.913595,52.32398]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.915144,52.320794],"geometry_index":352,"admin_index":0,"weight":41.264,"is_urban":false,"turn_weight":6,"duration":34.426,"bearings":[158,340,345],"out":0,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,327],"duration":5.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.424,"geometry_index":358,"location":[4.921942,52.31361]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,326],"duration":1.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.365,"geometry_index":359,"location":[4.923139,52.31251]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.923438,52.312235],"geometry_index":360,"admin_index":0,"weight":20.872,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.382,"bearings":[147,158,326],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.927755,52.308137],"geometry_index":362,"admin_index":0,"weight":10.58,"is_urban":false,"turn_weight":0.5,"duration":9.607,"bearings":[148,317,328],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":2.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":2.298,"geometry_index":363,"location":[4.92977,52.306195]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":8.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":9.353,"geometry_index":364,"location":[4.930213,52.305762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,328],"duration":8.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.748,"geometry_index":366,"location":[4.932032,52.303998]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.933744,52.302357],"geometry_index":367,"admin_index":0,"weight":90.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":88.238,"bearings":[146,156,327],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.949847,52.283919],"geometry_index":383,"admin_index":0,"weight":22.6,"is_urban":false,"turn_weight":1,"duration":21.607,"bearings":[156,329,335],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.95322,52.279061],"geometry_index":386,"admin_index":0,"weight":4,"is_urban":false,"turn_weight":1,"duration":3.026,"bearings":[154,329,338],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,334],"duration":2.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.535,"geometry_index":387,"location":[4.953739,52.278416]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,335],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.102,"geometry_index":388,"location":[4.954172,52.277857]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":0.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.716,"geometry_index":389,"location":[4.954366,52.277615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":49.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":46.752,"geometry_index":390,"location":[4.954498,52.27745]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.961091,52.266263],"geometry_index":399,"admin_index":1,"weight":19.166,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.197,"bearings":[158,168,341],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[163,334,341],"duration":0.383,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.356,"geometry_index":403,"location":[4.963942,52.261755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.809,"geometry_index":404,"location":[4.963987,52.261666]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":0.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.068,"geometry_index":405,"location":[4.964579,52.260509]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,342],"duration":0.825,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.784,"geometry_index":406,"location":[4.964586,52.260496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":0.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.068,"geometry_index":407,"location":[4.964682,52.260309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,342],"duration":6.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.843,"geometry_index":408,"location":[4.96469,52.260294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,346],"duration":4.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.544,"geometry_index":410,"location":[4.965306,52.25887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,348],"duration":107.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":96.761,"geometry_index":411,"location":[4.965705,52.257719]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,339],"duration":2.325,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.093,"geometry_index":421,"location":[4.977722,52.233066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,336],"duration":8.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.965,"geometry_index":422,"location":[4.978093,52.232556]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.979539,52.230626],"geometry_index":423,"admin_index":1,"weight":28.425,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":31.604,"bearings":[153,168,335],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.985028,52.223782],"geometry_index":428,"admin_index":1,"weight":1.09,"is_urban":false,"turn_weight":0.5,"duration":0.645,"bearings":[163,331,341],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,343],"duration":9.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.72,"geometry_index":429,"location":[4.985101,52.223634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,349],"duration":2.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.094,"geometry_index":432,"location":[4.985947,52.221417]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,351],"duration":65.913,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":59.322,"geometry_index":433,"location":[4.986086,52.220875]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.601,"geometry_index":440,"location":[4.9862,52.204927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":80.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":74.89,"geometry_index":441,"location":[4.986199,52.204766]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":23.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.444,"geometry_index":444,"location":[4.986043,52.185372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":8.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.629,"geometry_index":449,"location":[4.986108,52.179719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.986295,52.177605],"geometry_index":450,"admin_index":1,"weight":22.742,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.344,"bearings":[177,189,357],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,357],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.507,"geometry_index":452,"location":[4.986734,52.172021]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":0.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.67,"geometry_index":453,"location":[4.98674,52.171894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,358],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.292,"geometry_index":454,"location":[4.986749,52.171727]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[179,348,359],"duration":4.732,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.489,"geometry_index":456,"location":[4.986768,52.171143]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":0.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.648,"geometry_index":457,"location":[4.986799,52.170015]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":1.288,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.224,"geometry_index":458,"location":[4.986801,52.16985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":5.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.451,"geometry_index":459,"location":[4.986806,52.169543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":31.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.21,"geometry_index":461,"location":[4.986881,52.168167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":1.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.746,"geometry_index":478,"location":[4.990116,52.160861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,337],"duration":49.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":45.668,"geometry_index":479,"location":[4.9904,52.16046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,335],"duration":8.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.189,"geometry_index":490,"location":[4.998348,52.149416]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.999713,52.147424],"geometry_index":491,"admin_index":1,"weight":21.662,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.425,"bearings":[156,170,337],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.278,"geometry_index":495,"location":[5.00333,52.142208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.557,"geometry_index":496,"location":[5.003368,52.142153]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":6.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.46,"geometry_index":497,"location":[5.003447,52.142041]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.004419,52.140634],"geometry_index":498,"admin_index":1,"weight":9.48,"is_urban":false,"turn_weight":1,"duration":8.934,"bearings":[157,332,337],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":3.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.56,"geometry_index":500,"location":[5.005812,52.138624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":32.878,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.056,"geometry_index":501,"location":[5.006395,52.137782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,328],"duration":18.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.052,"geometry_index":512,"location":[5.011899,52.130494]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,314],"duration":19.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.867,"geometry_index":522,"location":[5.01661,52.127]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.022223,52.123576],"geometry_index":532,"admin_index":1,"weight":2.237,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.155,"bearings":[131,145,315],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,311],"duration":6.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.441,"geometry_index":533,"location":[5.022868,52.123233]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,315],"duration":1.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.817,"geometry_index":534,"location":[5.024605,52.122181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,315],"duration":2.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.725,"geometry_index":535,"location":[5.02508,52.121894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":18.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":20.258,"geometry_index":537,"location":[5.025782,52.12145]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":4.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":5.091,"geometry_index":544,"location":[5.03151,52.118492]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[123,303],"duration":1.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.755,"geometry_index":545,"location":[5.033049,52.117869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":1.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.182,"geometry_index":546,"location":[5.033577,52.117655]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":2.388,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.626,"geometry_index":547,"location":[5.034239,52.117389]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":52.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":57.46,"geometry_index":549,"location":[5.035036,52.117067]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[129,306],"duration":1.522,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.712,"geometry_index":556,"location":[5.052306,52.109952]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,309],"duration":20.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":23.556,"geometry_index":557,"location":[5.05277,52.109723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,316],"duration":35.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":41.358,"geometry_index":564,"location":[5.058845,52.106218]},{"tunnel_name":"Leidsche Rijntunnel","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[153,331],"duration":60.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":71.169,"geometry_index":576,"location":[5.067042,52.099036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,353],"duration":12.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":14.32,"geometry_index":585,"location":[5.075494,52.08542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.308,"geometry_index":588,"location":[5.075708,52.082505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,182],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.115,"geometry_index":589,"location":[5.075697,52.082232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,184],"duration":6.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":7.251,"geometry_index":590,"location":[5.075669,52.081794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[8,188],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"geometry_index":594,"location":[5.075444,52.080295]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Maastricht"},{"type":"text","text":"/"},{"type":"text","text":"'s-Hertogenbosch"}],"type":"fork","modifier":"left","text":"Maastricht / 's-Hertogenbosch"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"fork","modifier":"left","text":"A2"},"distanceAlongGeometry":32159.115},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Maastricht"},{"type":"text","text":"/"},{"type":"text","text":"'s-Hertogenbosch"}],"type":"fork","modifier":"left","text":"Maastricht / 's-Hertogenbosch"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"fork","modifier":"left","text":"A2"},"distanceAlongGeometry":1609.344}],"destinations":"A2: Eindhoven, Utrecht","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A2 toward Eindhoven/Utrecht.","modifier":"slight left","bearing_after":249,"bearing_before":246,"location":[4.918623,52.32922]},"speedLimitSign":"vienna","name":"","weight_typical":1196.666,"duration_typical":1187.805,"duration":1204.054,"distance":32159.115,"driving_side":"right","weight":1212.769,"mode":"driving","ref":"A2; E 35","geometry":"go|xbB}tekHxIvl@`Fje@~BtV`B~Td@nTMxM{@vXeDf]eGd^gMno@_CpPw@|Lm@nMQjJIpKPjNf@rKjAhMbB|M`DbOtDhMtDnKjDhH|DjGjDbG~IrHpKjH~ErBhItB~JjApKInOuBpIyDtL_JfOcR`PiZhHaPpHaNtOiYpIyKlGmEhQyQnJuHvK{HtLsH`IiDvIaDrHmBdQmDfa@oJd^mK~YwJhWcLrWuKvx@ib@znAct@x^kXh`@mX``@m_@nmCouCl_C_iCvcAyiAdPuQfmBwuBzpCavCjxB}|B`ZuZxhAwjAlc@}d@peB_jBn\\}^|^__@nWwVfx@ys@nu@un@`y@sp@lp@si@tdDknCdxAokAvwAkmAnbCynB~oCk~BzXmUnf@q`@nfBcxAdy@mj@`eAaq@tbDspBzdAcn@hg@m_@|a@aZbNcKhIgGvpBexAzVmPr|Ai~@rjBc_Ar{Akm@btBiu@v@Yh_B}m@ns@q\\ziAio@xpA{u@lgAyk@rs@e]pDyAhgA_d@XMtJ_E\\Ojk@{Rrk@sQ|fA}WrmAu]tcF_vAdrG_jB`bAu]vy@e\\bhGepCf_EiiBx[uNx}FulCnzAsx@z^eVrwBkyAzlAeaAloCwfCbdAcw@jr@id@|sAun@fHqCf[sLpd@iOvgA}Uz`@uGpXwCl~@gIpx@wAjfDhAvnErB|rFbBbfFp@`I@hsSqHl~G`KjgGfFvFDdLJnyAjCtaCAdnB}GbcCuJrt@wCjfHuU|FKlIQ~FGn[]neA}@hICdRI`j@i@|i@kBv|@kDxy@uPxXsF|OyDhO{DpYkIfYaJrRaHbRcIfRiIrXoMlQgJfMgHxOuIhSuLbi@c\\r[kS`XwPrVeSlQsLtc@g[pQyLn{AgcAraAop@hp@wc@`p@ib@bcAgn@j`Ew_C|hAav@n{BitA~[eT~^}TnrD_{BntA}y@lBkA~E}C|vAw{@zkA{s@vo@ea@rs@mc@tZcRxkA}s@xp@ga@pnB}kA`c@eY~_@eXvf@y_@zSoQrRsQzVyUlOsOfa@md@zTqXvTmYhToY`To[hSs[|Rg\\nRi\\nRo^zQi^rRw\\`Rq^xQq^~Qw]tQg^`Rc^nQm^lMkVbe@q}@t[mn@lTig@v`AqkB|Pu\\`Rk\\tGoMpMeWhXai@nd@eaAb[ss@tZgv@d]eaAnTor@|e@e_BjL_`@rOkh@tLy`@lE_OfzFamRrJ{[~q@o`CjUyu@jh@aaB~k@o_B`Uqp@hM_\\pb@idA~`@}~@tVmh@d[oo@rf@w`ApSm_@ld@iy@vXid@rCuEtXwc@dt@kfAvk@mw@h\\cc@zg@im@|c@ag@no@_r@vl@qk@`i@qf@lr@cm@pmBayAviA{u@nwAeeAfkBqnAzxBgyAdjB_}@psA}f@|zAm[j~@}KjwAqKzm@g@|m@L`PTjZv@`i@fD~OjA~RbBrMhBrc@fGnQjCf_A~Sv~@pVb`C~u@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 7 miles.","announcement":"Continue for 7 miles.","distanceAlongGeometry":11114.678},{"ssmlAnnouncement":"In 1 mile, Take the A27 exit.","announcement":"In 1 mile, Take the A27 exit.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the A27 exit.","announcement":"In a half mile, Take the A27 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the Knooppunt Everdingen exit onto A27 toward Breda, Gorinchem.","announcement":"Take the Knooppunt Everdingen exit onto A27 toward Breda, Gorinchem.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.073649,52.075299],"geometry_index":599,"admin_index":1,"weight":43.56,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":39.641,"bearings":[15,185,204],"out":1,"in":0,"turn_duration":0.041,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":3.049,"geometry_index":606,"location":[5.070108,52.065965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":32.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":34.329,"geometry_index":607,"location":[5.069825,52.065289]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.066523,52.05756],"geometry_index":612,"admin_index":1,"weight":10.467,"is_urban":false,"turn_weight":1,"duration":9.267,"bearings":[6,22,195],"out":2,"in":1,"turn_duration":0.03,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":50.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":51.28,"geometry_index":614,"location":[5.065601,52.055351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":9.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.625,"geometry_index":628,"location":[5.064145,52.043309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":1.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.156,"geometry_index":629,"location":[5.064073,52.041037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":21.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.475,"geometry_index":630,"location":[5.064065,52.040756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.063839,52.035341],"geometry_index":631,"admin_index":1,"weight":9.446,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.223,"bearings":[1,181,200],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":39.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":41.013,"geometry_index":634,"location":[5.063752,52.033041]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.064256,52.023328],"geometry_index":646,"admin_index":1,"weight":13.887,"is_urban":true,"turn_weight":1,"duration":12.009,"bearings":[166,327,348],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":4.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":4.605,"geometry_index":649,"location":[5.0656,52.020452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.066108,52.019426],"geometry_index":650,"admin_index":1,"weight":2.767,"is_urban":true,"turn_weight":0.5,"duration":2.128,"bearings":[163,331,343],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":1.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.094,"geometry_index":651,"location":[5.066353,52.018927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,342],"duration":1.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.329,"geometry_index":652,"location":[5.066478,52.01869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":0.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":0.196,"geometry_index":653,"location":[5.066621,52.018398]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":10.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":11.297,"geometry_index":654,"location":[5.066642,52.018357]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,340],"duration":7.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":8.053,"geometry_index":657,"location":[5.06801,52.015906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":15.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.884,"geometry_index":659,"location":[5.069128,52.014184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":11.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.517,"geometry_index":661,"location":[5.07115,52.010665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":1.054,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.081,"geometry_index":662,"location":[5.072615,52.008038]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,341],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.932,"geometry_index":663,"location":[5.072755,52.007791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,342],"duration":7.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.753,"geometry_index":664,"location":[5.072866,52.007576]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.07377,52.005797],"geometry_index":666,"admin_index":1,"weight":16.458,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.063,"bearings":[165,180,343],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[164,317,345],"duration":1.039,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.044,"geometry_index":671,"location":[5.075351,52.001908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.959,"geometry_index":672,"location":[5.075461,52.001667]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":6.946,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.119,"geometry_index":673,"location":[5.075565,52.001442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,342],"duration":9.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.074,"geometry_index":675,"location":[5.076384,51.999805]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":9.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.742,"geometry_index":676,"location":[5.077681,51.997485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,341],"duration":12.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.657,"geometry_index":677,"location":[5.078926,51.995243]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.080629,51.992345],"geometry_index":678,"admin_index":1,"weight":13.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.513,"bearings":[158,172,340],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,337],"duration":2.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.103,"geometry_index":680,"location":[5.082681,51.989258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,336],"duration":14.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.207,"geometry_index":681,"location":[5.083014,51.988788]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[131,306,317],"duration":1.828,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.845,"geometry_index":687,"location":[5.086551,51.985865]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":1.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.513,"geometry_index":688,"location":[5.087104,51.985569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":18.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.009,"geometry_index":689,"location":[5.087557,51.98533]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":3.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.009,"geometry_index":691,"location":[5.093187,51.98233]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[131,310],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":692,"location":[5.094366,51.981722]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Breda"},{"type":"text","text":"/"},{"type":"text","text":"Gorinchem"}],"type":"off ramp","modifier":"right","text":"Breda / Gorinchem"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"off ramp","modifier":"right","text":"A27"},"distanceAlongGeometry":11148.011},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Breda"},{"type":"text","text":"/"},{"type":"text","text":"Gorinchem"}],"type":"off ramp","modifier":"right","text":"Breda / Gorinchem"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"off ramp","modifier":"right","text":"A27"},"distanceAlongGeometry":1609.344}],"destinations":"A2: Maastricht, 's-Hertogenbosch","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A2 toward Maastricht/'s-Hertogenbosch.","modifier":"slight left","bearing_after":185,"bearing_before":195,"location":[5.073649,52.075299]},"speedLimitSign":"vienna","name":"","weight_typical":423.693,"duration_typical":403.908,"duration":406.636,"distance":11148.011,"driving_side":"right","weight":426.519,"mode":"driving","ref":"A2","geometry":"eqlibBanttHzM~@`b@lMn`@|Lxj@vOfqFnvAxiBxi@`jBzj@fi@tPzmC`z@dc@pNzrErwArgAh]nRxK`dAd\\~cAl[to@|RtY|I`[hHb\\dH|YlE~AVvXjDtZpCbm@dCrb@|AzmAdA`bAfBbbAtAzpFfH~lCnCpPNlqIbMbn@v@dr@x@ll@z@rzBxBl~BhCliAtAlb@PzXMv^k@rViAj`@oCpQgB|[_Efi@aJvh@}L`j@qPjXmJhnB_v@b_Aw^d^iNxMyFfQ}GpAi@j|@u^vh@wV`q@a]zxAaz@vPyI|gAkk@~qC_qAdcDqzAlNwGlL}Epo@eYr}@i]tf@yPtf@mOfqA{]xg@cOrg@qP`N{E`MoEh^kM~eAyc@~oCapAbkCylAbtDmiBv_A{h@d_CkuAj\\ySdPuLtUaSfn@wp@f\\}d@`Yee@fg@m|@nQqa@|Mi[rhB}eEzpA}wC~d@uhArg@ijA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":19357.082},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A27.","announcement":"In 2 miles, Keep left to stay on A27.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A27.","announcement":"In a half mile, Keep left to stay on A27.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A27, E 311 toward Breda.","announcement":"Keep left to stay on A27, E 311 toward Breda.","distanceAlongGeometry":266.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[5.095571,51.981072],"geometry_index":693,"admin_index":1,"weight":0.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":0.519,"bearings":[131,173,311],"out":1,"in":2,"turn_duration":0.115,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,353],"duration":2.535,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":2.661,"geometry_index":694,"location":[5.095592,51.980972]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,315],"duration":36.109,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":37.012,"geometry_index":695,"location":[5.096303,51.980528]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,209],"duration":4.764,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":4.764,"geometry_index":713,"location":[5.098025,51.972234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":0.764,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":0.764,"geometry_index":716,"location":[5.097028,51.971232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":7.164,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":6.985,"geometry_index":717,"location":[5.096861,51.971074]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.095318,51.969587],"geometry_index":720,"admin_index":1,"weight":13.154,"is_urban":false,"turn_weight":11.75,"duration":1.455,"bearings":[24,44,216],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.035,"geometry_index":721,"location":[5.094979,51.969298]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.842,"geometry_index":722,"location":[5.094968,51.969289]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":5.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.37,"geometry_index":723,"location":[5.094752,51.969115]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.844,"geometry_index":724,"location":[5.093404,51.968018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,220],"duration":8.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.003,"geometry_index":725,"location":[5.091642,51.966642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,221],"duration":17.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.621,"geometry_index":727,"location":[5.089458,51.965024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,227],"duration":31.14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.804,"geometry_index":731,"location":[5.084658,51.961816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,246],"duration":21.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":20.08,"geometry_index":744,"location":[5.074482,51.957292]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":2.952,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.731,"geometry_index":756,"location":[5.06607,51.955796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,266],"duration":9.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.491,"geometry_index":758,"location":[5.064878,51.95571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.563,"geometry_index":762,"location":[5.061159,51.955625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,270],"duration":9.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.625,"geometry_index":764,"location":[5.0596,51.955646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":3.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.602,"geometry_index":765,"location":[5.055825,51.955662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":35.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":32.834,"geometry_index":767,"location":[5.054276,51.955667]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":3.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.396,"geometry_index":769,"location":[5.039905,51.955719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":2.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.884,"geometry_index":770,"location":[5.038414,51.955713]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,270],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.033,"geometry_index":772,"location":[5.037602,51.955696]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":3.456,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.11,"geometry_index":773,"location":[5.037581,51.955696]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.032,"geometry_index":774,"location":[5.036181,51.955678]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.03616,51.955678],"geometry_index":775,"admin_index":1,"weight":14.511,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.146,"bearings":[90,267],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,262],"duration":0.421,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.379,"geometry_index":783,"location":[5.03006,51.955323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,260],"duration":2.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.645,"geometry_index":784,"location":[5.029897,51.955308]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,257],"duration":0.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.13,"geometry_index":785,"location":[5.028754,51.95518]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":19.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.366,"geometry_index":786,"location":[5.028697,51.955172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,240],"duration":1.224,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.08,"geometry_index":797,"location":[5.021367,51.95357]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":10.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.818,"geometry_index":798,"location":[5.020944,51.953422]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":48.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":42.541,"geometry_index":803,"location":[5.017379,51.951873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.477,"geometry_index":818,"location":[5.006337,51.942036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.032,"geometry_index":819,"location":[5.006219,51.941918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":25.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.718,"geometry_index":820,"location":[5.006208,51.941907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.164,"geometry_index":821,"location":[5.000748,51.936452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.334,"geometry_index":822,"location":[5.000709,51.936414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":0.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.099,"geometry_index":823,"location":[5.000629,51.936336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":3.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.976,"geometry_index":824,"location":[5.000602,51.93631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.231,"geometry_index":825,"location":[4.999916,51.935624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.568,"geometry_index":826,"location":[4.999862,51.93557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.294,"geometry_index":827,"location":[4.999732,51.935442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":15.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.073,"geometry_index":828,"location":[4.999667,51.935377]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":0.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.196,"geometry_index":834,"location":[4.996469,51.932052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":0.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.694,"geometry_index":835,"location":[4.996429,51.932004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.032,"geometry_index":836,"location":[4.99629,51.931833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":45.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":40.745,"geometry_index":837,"location":[4.996281,51.931822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":30.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.355,"geometry_index":844,"location":[4.989842,51.921366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.235,"geometry_index":846,"location":[4.98562,51.914251]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":14.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.757,"geometry_index":847,"location":[4.985586,51.914194]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.034,"geometry_index":853,"location":[4.983686,51.910713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,195],"duration":17.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.179,"geometry_index":854,"location":[4.983681,51.910702]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":14.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.522,"geometry_index":857,"location":[4.982003,51.906509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.88,"geometry_index":858,"location":[4.980614,51.903004]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.979694,51.900699],"geometry_index":859,"admin_index":1,"weight":7.423,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.032,"bearings":[14,194,206],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":1.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.27,"geometry_index":860,"location":[4.978959,51.898828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.343,"geometry_index":861,"location":[4.978828,51.898502]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.538,"geometry_index":862,"location":[4.978793,51.898414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":0.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.067,"geometry_index":863,"location":[4.978739,51.898277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":1.382,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.278,"geometry_index":864,"location":[4.978733,51.898263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":0.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.17,"geometry_index":865,"location":[4.978601,51.897927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":9.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.927,"geometry_index":866,"location":[4.978583,51.897881]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.977648,51.895522],"geometry_index":867,"admin_index":2,"weight":1.625,"is_urban":false,"turn_weight":0.5,"duration":1.257,"bearings":[6,14,194],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":6.063,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.457,"geometry_index":868,"location":[4.977532,51.895232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":5.608,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.048,"geometry_index":869,"location":[4.976975,51.893834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":73.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":65.926,"geometry_index":870,"location":[4.976461,51.892542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":3.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.445,"geometry_index":879,"location":[4.966719,51.876262]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":4.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.751,"geometry_index":880,"location":[4.966192,51.875419]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.965613,51.874493],"geometry_index":881,"admin_index":2,"weight":26.755,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.735,"bearings":[21,201,211],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.9616,51.867736],"geometry_index":888,"admin_index":2,"weight":15.11,"is_urban":false,"turn_weight":1,"duration":15.684,"bearings":[7,20,200],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":21.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":19.98,"geometry_index":889,"location":[4.959597,51.864313]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.1,"geometry_index":892,"location":[4.95684,51.859601]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":11.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.922,"geometry_index":897,"location":[4.955484,51.856947]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[16,196],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":899,"location":[4.954298,51.854382]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Breda"}],"type":"fork","modifier":"left","text":"Breda"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"fork","modifier":"left","text":"A27"},"distanceAlongGeometry":19390.416},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Breda"}],"type":"fork","modifier":"left","text":"Breda"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"fork","modifier":"left","text":"A27"},"distanceAlongGeometry":3218.688}],"destinations":"A27: Breda, Gorinchem","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the Knooppunt Everdingen exit onto A27 toward Breda/Gorinchem.","modifier":"slight right","bearing_after":173,"bearing_before":131,"location":[5.095571,51.981072]},"speedLimitSign":"vienna","name":"","weight_typical":666.665,"duration_typical":709.951,"duration":713.128,"distance":19390.416,"driving_side":"right","weight":668.906,"mode":"driving","ref":"A27; E 311","geometry":"_ptcbBeh_vHfEi@vZmk@jPyVnQiVpm@uq@l\\uWx^uU~YqN`[iKba@qJz`@aFv\\mAb^b@nVdAva@nFfa@tK|ZlLpb@xTf[|TnExD|QvOpWlXbRbSzHlIhVvXxw@f|@xKlH`QdTPTzInLpcAfsA~tAbmBv|@`rAjf@lt@dc@pr@r^fl@blAvqBpv@lwAhf@nbArXpl@zOh^~Xjq@nWvo@dSli@j]tcAf[ndAfQlo@fOtk@|Lzi@zM~n@hGzZDT|Ifg@fLjr@dKfs@fItn@`Hxm@dF`h@fE~d@bF~o@|Fl~@hFdgAx@~UtAj`@tAbh@fAnu@t@vv@h@bvA@`b@@r_@k@x_A_@|jFC|h@Ezu@}@xaNi@j~KJd|A?L`@hq@?h@b@nvA?h@p@|s@b@ta@p@rb@dCfrArAdh@tAtd@nCdu@|Bth@\\dI~FlfANpBrC~a@xHjaAxGzs@bEf`@fG`h@fFp`@dGrb@vFv]vHxa@dIn`@jRh|@fHlYdI~[`T|t@vY`}@xQ|e@~Rze@~KvVxMdYnQn]jR|\\fUl_@fW|^rUl[rSpVlVfXnN|Nj[l[|dDxeDdtDvtDp@p@jj@rj@jFjFTT|sIftIjAlAzC~Cr@t@zi@zi@jBjB~FbG`C`CfaApaAxa@~a@nZhZpj@pg@fSnPlN|K~AnAtItGTPjWtQhZhSpWpPn]`S|f@nWlfJ~tEjrChvA``G~wCrzDzmBpBbAfbA|f@xWxMnb@xR|XzLrWdKlf@bQTHv]|KpoB~k@vuB|m@`zExuA`oCnx@|sB|l@jSdGnDdApGjBZJ~SfGzAb@lrCly@bQfFjvAxa@voAb_@|cA~[hd@vPde@lSxWhMp_@|RrsDpoBte@`W`{IbxEhwFtxCts@|_@zx@dc@lhAvl@nJxEhoBnaArJzE|Av@lCrA`mEnwB|tEd|B~kA`l@tjD`dBxl@dYzDhBvz@h_@xg@rSr`@lOxX`KvWrJpfCn}@huA`g@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 22 miles.","announcement":"Continue for 22 miles.","distanceAlongGeometry":35632.73},{"ssmlAnnouncement":"In 2 miles, Keep right to take A27.","announcement":"In 2 miles, Keep right to take A27.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A27.","announcement":"In a half mile, Keep right to take A27.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A27, A58 toward Roosendaal, Antwerpen.","announcement":"Keep right to take A27, A58 toward Roosendaal, Antwerpen.","distanceAlongGeometry":274.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.953657,51.853001],"geometry_index":900,"admin_index":2,"weight":18.252,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.727,"bearings":[16,196,206],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.88,"geometry_index":902,"location":[4.951789,51.848957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":0.784,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.784,"geometry_index":903,"location":[4.9515,51.848333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.471,"geometry_index":904,"location":[4.951412,51.848143]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.63,"geometry_index":905,"location":[4.950899,51.847029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":4.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.59,"geometry_index":906,"location":[4.950651,51.84649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":9.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.171,"geometry_index":907,"location":[4.950247,51.84561]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":4.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.258,"geometry_index":909,"location":[4.949388,51.843755]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,195],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.135,"geometry_index":910,"location":[4.949028,51.842977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":15.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.958,"geometry_index":911,"location":[4.94894,51.842768]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.061,"geometry_index":913,"location":[4.947613,51.839892]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":0.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.719,"geometry_index":914,"location":[4.947443,51.839521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.608,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.649,"geometry_index":915,"location":[4.947385,51.839395]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.94722,51.839033],"geometry_index":916,"admin_index":2,"weight":6.083,"is_urban":false,"turn_weight":1,"duration":4.967,"bearings":[1,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":13.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.668,"geometry_index":917,"location":[4.946682,51.837868]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.945227,51.83473],"geometry_index":918,"admin_index":2,"weight":1.614,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.583,"bearings":[16,195],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":6.392,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.392,"geometry_index":919,"location":[4.945123,51.834489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":7.387,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.38,"geometry_index":922,"location":[4.944459,51.832978]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":2.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.61,"geometry_index":923,"location":[4.943931,51.831545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,193],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9,"geometry_index":924,"location":[4.943755,51.831039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.855,"geometry_index":925,"location":[4.943124,51.829285]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.575,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.575,"geometry_index":926,"location":[4.943065,51.829121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.35,"geometry_index":927,"location":[4.942955,51.828816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":22.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.245,"geometry_index":928,"location":[4.942861,51.828554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":13.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":12.611,"geometry_index":929,"location":[4.941263,51.824111]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.164,"geometry_index":930,"location":[4.940123,51.821011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":3.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.772,"geometry_index":931,"location":[4.940018,51.820725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,194],"duration":11.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.504,"geometry_index":932,"location":[4.939681,51.819788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":49.886,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":47.391,"geometry_index":933,"location":[4.938604,51.817164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":9.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.005,"geometry_index":936,"location":[4.933215,51.805433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.133,"geometry_index":937,"location":[4.932166,51.803142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,194],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.893,"geometry_index":938,"location":[4.932038,51.802858]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.931944,51.802631],"geometry_index":939,"admin_index":3,"weight":6.388,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.925,"bearings":[14,193],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,187],"duration":2.729,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.506,"geometry_index":941,"location":[4.931404,51.800976]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":12.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":11.26,"geometry_index":942,"location":[4.93127,51.800325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":80.722,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":74.667,"geometry_index":943,"location":[4.930705,51.797401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":4.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.908,"geometry_index":949,"location":[4.927294,51.777983]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":4.702,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.349,"geometry_index":950,"location":[4.927353,51.776951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.927436,51.775799],"geometry_index":951,"admin_index":3,"weight":13.762,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.897,"bearings":[178,184,357],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.286,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.189,"geometry_index":952,"location":[4.927684,51.772168]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.133,"geometry_index":953,"location":[4.927699,51.771858]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.927718,51.771564],"geometry_index":954,"admin_index":3,"weight":0.908,"is_urban":false,"turn_weight":0.5,"duration":0.46,"bearings":[178,345,358],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.291,"geometry_index":955,"location":[4.927725,51.771454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":9.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.937,"geometry_index":956,"location":[4.927747,51.771112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.985,"geometry_index":957,"location":[4.927899,51.768749]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,358],"duration":4.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.315,"geometry_index":958,"location":[4.927916,51.768492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,182],"duration":46.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":41.889,"geometry_index":960,"location":[4.927918,51.767351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.426,"geometry_index":969,"location":[4.925207,51.756123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":4.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.698,"geometry_index":970,"location":[4.925155,51.756015]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":34.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":31.428,"geometry_index":971,"location":[4.924681,51.755039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":7.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.26,"geometry_index":978,"location":[4.920386,51.746748]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.918936,51.745006],"geometry_index":981,"admin_index":3,"weight":7.672,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.301,"bearings":[29,210,222],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.917231,51.743182],"geometry_index":983,"admin_index":3,"weight":2.534,"is_urban":false,"turn_weight":1,"duration":1.666,"bearings":[10,30,211],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":4.765,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.407,"geometry_index":984,"location":[4.91688,51.742825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":18.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":17.14,"geometry_index":985,"location":[4.915858,51.741787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.911573,51.737893],"geometry_index":990,"admin_index":3,"weight":10.839,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.726,"bearings":[38,220,231],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,227],"duration":1.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.552,"geometry_index":995,"location":[4.908286,51.735716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":14.97,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":13.848,"geometry_index":996,"location":[4.907776,51.735424]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.903255,51.732897],"geometry_index":997,"admin_index":3,"weight":11.2,"is_urban":false,"turn_weight":0.5,"duration":11.27,"bearings":[37,48,228],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,225],"duration":9.374,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.906,"geometry_index":999,"location":[4.899865,51.730989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,219],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.231,"geometry_index":1004,"location":[4.897291,51.729243]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":35.856,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":34.063,"geometry_index":1005,"location":[4.896967,51.728992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":4.968,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.72,"geometry_index":1023,"location":[4.890993,51.720925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":5.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.472,"geometry_index":1024,"location":[4.890532,51.719723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":6.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.723,"geometry_index":1025,"location":[4.889996,51.718326]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,189],"duration":5.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.587,"geometry_index":1028,"location":[4.889483,51.71684]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.948,"geometry_index":1030,"location":[4.889156,51.715376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.05,"geometry_index":1031,"location":[4.889115,51.715127]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.889074,51.71485],"geometry_index":1032,"admin_index":3,"weight":6.916,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.115,"bearings":[5,183],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":11.71,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":11.399,"geometry_index":1034,"location":[4.888921,51.713062]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,182],"duration":67.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":67.937,"geometry_index":1035,"location":[4.88874,51.710116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":4.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.128,"geometry_index":1044,"location":[4.885569,51.693143]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":1.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.244,"geometry_index":1045,"location":[4.885262,51.692142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":3.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.526,"geometry_index":1046,"location":[4.885177,51.691875]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.884941,51.69112],"geometry_index":1048,"admin_index":3,"weight":14.649,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.656,"bearings":[11,191,204],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":2.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.224,"geometry_index":1050,"location":[4.883813,51.687493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":12.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":12.004,"geometry_index":1051,"location":[4.883644,51.686936]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.882707,51.683917],"geometry_index":1056,"admin_index":3,"weight":2.926,"is_urban":false,"turn_weight":0.75,"duration":2.239,"bearings":[1,11,191],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.233,"geometry_index":1057,"location":[4.88253,51.683367]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":2.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.919,"geometry_index":1058,"location":[4.882361,51.682815]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":40.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":38.196,"geometry_index":1059,"location":[4.882131,51.682071]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":71.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":69.574,"geometry_index":1065,"location":[4.879636,51.672074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,355],"duration":8.626,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.841,"geometry_index":1073,"location":[4.881925,51.654155]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.882159,51.651986],"geometry_index":1075,"admin_index":3,"weight":20.094,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.623,"bearings":[177,189,357],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.882526,51.647052],"geometry_index":1080,"admin_index":3,"weight":11.719,"is_urban":false,"turn_weight":0.5,"duration":10.964,"bearings":[177,351,358],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":6.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.529,"geometry_index":1081,"location":[4.882723,51.64435]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,357],"duration":0.364,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.382,"geometry_index":1082,"location":[4.882835,51.642813]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":33.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":34.669,"geometry_index":1083,"location":[4.882841,51.642725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":9.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.156,"geometry_index":1095,"location":[4.880137,51.634961]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.877926,51.633008],"geometry_index":1096,"admin_index":3,"weight":15.387,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.019,"bearings":[35,215,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":2.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.73,"geometry_index":1097,"location":[4.874462,51.629942]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":3.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.325,"geometry_index":1098,"location":[4.873849,51.6294]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.873089,51.628732],"geometry_index":1099,"admin_index":3,"weight":8.849,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.64,"bearings":[35,215,229],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.158,"geometry_index":1100,"location":[4.871137,51.626998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":13.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":13.956,"geometry_index":1101,"location":[4.870866,51.62676]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.867705,51.62394],"geometry_index":1103,"admin_index":3,"weight":6.646,"is_urban":false,"turn_weight":1,"duration":5.527,"bearings":[24,34,213],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":3.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.096,"geometry_index":1105,"location":[4.866523,51.622782]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":83.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":83.304,"geometry_index":1107,"location":[4.865686,51.621927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":7.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.476,"geometry_index":1117,"location":[4.846202,51.605174]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.504,"geometry_index":1118,"location":[4.843906,51.603895]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.843751,51.603809],"geometry_index":1119,"admin_index":3,"weight":15.84,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.859,"bearings":[48,227,251],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.648,"geometry_index":1124,"location":[4.839267,51.601008]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.8391,51.600889],"geometry_index":1125,"admin_index":3,"weight":10.3,"is_urban":false,"turn_weight":1,"duration":9.081,"bearings":[25,41,221],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":8.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.961,"geometry_index":1128,"location":[4.836871,51.599151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,216],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.596,"geometry_index":1129,"location":[4.83479,51.597443]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":5.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.631,"geometry_index":1130,"location":[4.834214,51.596952]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.832955,51.595902],"geometry_index":1131,"admin_index":3,"weight":14.628,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.939,"bearings":[37,217,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.112,"geometry_index":1133,"location":[4.829655,51.593099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,211],"duration":18.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":19.013,"geometry_index":1134,"location":[4.829198,51.592669]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.82599,51.588624],"geometry_index":1140,"admin_index":3,"weight":3.713,"is_urban":false,"turn_weight":0.5,"duration":3.081,"bearings":[14,21,199],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":12.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":13.117,"geometry_index":1141,"location":[4.825581,51.587904]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.82431,51.584891],"geometry_index":1145,"admin_index":3,"weight":26.432,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":24.612,"bearings":[12,189,203],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.823602,51.578787],"geometry_index":1151,"admin_index":3,"weight":12.721,"is_urban":true,"turn_weight":0.5,"duration":11.376,"bearings":[0,181,353],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,185],"duration":85.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":90.004,"geometry_index":1154,"location":[4.823436,51.576092]},{"bearings":[165,349],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"geometry_index":1180,"location":[4.819518,51.555974]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Roosendaal"},{"type":"text","text":"/"},{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"right","text":"Roosendaal / Antwerpen"},"distanceAlongGeometry":35666.062},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Roosendaal"},{"type":"text","text":"/"},{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"right","text":"Roosendaal / Antwerpen"},"distanceAlongGeometry":3218.688}],"destinations":"A27: Breda","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A27/E 311 toward Breda.","modifier":"slight left","bearing_after":196,"bearing_before":196,"location":[4.953657,51.853001]},"speedLimitSign":"vienna","name":"","weight_typical":1298.835,"duration_typical":1314.624,"duration":1315.998,"distance":35666.062,"driving_side":"right","weight":1300.137,"mode":"driving","ref":"A27; E 311","geometry":"qkz{aBqbjmHpb@fOdxEncB~e@`QzJnDrdA`_@t`@nN~u@fXB@xrBrt@ro@nU`LnDxjDhnA|FrBdVrIzFrBrUhIxgAr`@bcE|yA`NnEjc@tOfj@lRxMjDpxA~_@r^~IrlBlf@fItB`RzEjOzDttGzbBv`EffAzPpEpy@`T~bDhbAjhCh|@fwChhApzLdiEdnCp`AvP~FdMzDddAxWfa@|Gtg@jGvuDhb@vxAhP|lGps@|oUrhCxw@lD`q@XbYQn_AuB~fAeD|aFoNjR]jQe@zEMjTk@trCoH`Oa@pn@e@vV`@nPXpg@|BhpFng@|zAzN~iApMbk@rJ`i@`Mvj@zPnhBdq@vEfB~{@r\\l`H`kCtgA`b@f@Rbi@dTxc@bTpr@d`@hWdPtQrMj`@lXxw@pq@~`Ab|@~n@ll@hU|Tz_Az~@`dAleAncA`hAfo@xt@|[ba@r[jc@r`@rl@bWta@vWbd@~Utc@p]hr@fQz^||CpyGliArcCxk@fnApRn^zX~f@~MbVfQpXl]tg@tNfSdMlPrd@dk@hl@pn@f@h@do@ll@t_@b[b_@dY~m@x`@fXtOra@xUdk@`Y`_@pOv^fNbX|IzO~E~EzAx@VbZjIbjAx[hvAn`@pk@vO|XpGjUvEzl@|Jrl@nGpNpAhPpAh_A|Dln@rBbwDhJhdFtMriC~Gns@nCbb@tAxu@dGfu@rI|{@dMd~@`Q`sJfsBp}@dRtOhDxb@fJjJnBtu@|O~jDpt@xa@pI`bA|StIhBrSlE~k@zLhl@~Lja@`Jna@pInm@jMrhDns@|wEt`Aby@pM~bAjLnv@nFrw@hA`]f@vk@?htAuAttA}I`pCeWfgLa}@r_Fk`@doAaJrbA_G|bAsEhq@yBfJ[pmA_EhfAqD|_BuEzgDiK`_B_FnDKb|AyD|f@}Avk@Kja@vCjXdDhW~Efi@jOpZ|L~m@d[l`@bXte@`d@la@ng@`yBdiCr~DnwEz`@he@vh@nn@jkB~xBzM|OxdBlsBliAbpA|s@jv@lRnQtVbVv\\d\\buPthPdBbBdtAhtArm@~r@ls@r}@nb@|l@zn@z`Atm@rcAnZ|h@|fCrmF|nAnnCjDtH|CpGld@v_A~y@zaBh_@|p@jh@by@lFlIxObVfi@bv@pp@`|@viB`aCt]~b@r`AtmAxyB`tCjs@dx@zYp[dw@pu@h`@~\\fa@j[hn@fb@tn@j^`a@|S~k@pXjT~Jr_A`]`e@nNf_AzT|`@lGhv@rNhgAxJrk@lCtd@jCrhCMt~@t@xp@lB|u@fDl{@nGrbArIdyA~Rjr@~Knr@jM|sBxb@tz@bQvx@hNlq@xJ~q@nIfj@lFnk@lEbc@hDtc@rCvz@vFda@lCh_@tDnVzClVtDfn@~KbuAv[hXlC`WdBpX]r\\_Dv[{GpPwFjKkE~J}ErJoFlLwHzOmLxFiFjL_L"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6252.817},{"ssmlAnnouncement":"In 2 miles, Keep left to take A16.","announcement":"In 2 miles, Keep left to take A16.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A16.","announcement":"In a half mile, Keep left to take A16.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A16 toward Antwerpen.","announcement":"Keep left to take A16 toward Antwerpen.","distanceAlongGeometry":245.556}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.820671,51.554293],"geometry_index":1188,"admin_index":3,"weight":28.022,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":28.753,"bearings":[145,158,329],"out":1,"in":2,"turn_duration":0.013,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,355],"duration":2.718,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":2.65,"geometry_index":1200,"location":[4.823964,51.550537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":32.147,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":31.344,"geometry_index":1202,"location":[4.823956,51.550204]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.819921,51.546611],"geometry_index":1214,"admin_index":3,"weight":18.418,"is_urban":false,"turn_weight":6,"duration":13.082,"bearings":[50,56,236],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":6.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.229,"geometry_index":1216,"location":[4.816274,51.545077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":45.343,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":43.076,"geometry_index":1217,"location":[4.814453,51.544295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":11.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.545,"geometry_index":1221,"location":[4.802004,51.53879]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.798895,51.537496],"geometry_index":1224,"admin_index":3,"weight":20.306,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.382,"bearings":[57,237,245],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[51,61,240],"duration":12.562,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":2,"weight":11.601,"geometry_index":1229,"location":[4.791862,51.534833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":4.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.189,"geometry_index":1231,"location":[4.787783,51.533411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":24.774,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":22.916,"geometry_index":1232,"location":[4.786304,51.532899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.353,"geometry_index":1234,"location":[4.778132,51.530212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":18.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":16.898,"geometry_index":1235,"location":[4.777293,51.529949]},{"bearings":[68,249],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"geometry_index":1238,"location":[4.771071,51.528109]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"left","text":"Antwerpen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A16","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A16"}],"type":"fork","modifier":"left","text":"A16"},"distanceAlongGeometry":6296.15},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"left","text":"Antwerpen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A16","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A16"}],"type":"fork","modifier":"left","text":"A16"},"distanceAlongGeometry":3218.688}],"destinations":"Roosendaal, Antwerpen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A27/A58/E 312 toward Roosendaal/Antwerpen.","modifier":"slight right","bearing_after":158,"bearing_before":149,"location":[4.820671,51.554293]},"speedLimitSign":"vienna","name":"","weight_typical":263.175,"duration_typical":273.346,"duration":273.318,"distance":6296.15,"driving_side":"right","weight":263.149,"mode":"driving","ref":"A27; A58; E 312","geometry":"i~riaB}jfeHlQeKzOyQtNuS`Um^`Su[nQmVvOqQdQ{NzUiOxPwGxV}FtVcB|JSzGb@pLd@tShC~QbFrVdLrRdMxKlKvPdRxO`U|LbVdWrr@zHrTt_@b}@le@vzAlx@dgCzo@xpBnMt`@xoBz`GbdCffHrrAf~DxSto@nh@lbBpQdm@tYhbA~c@nzA`s@~iCx_@nxAzPfs@t]vtAdy@dhD~^l{Axr@rtCbsBbhJlOls@`kAdrFhShhArQjgAbUv}A~K~_AnJj|@`Jb}@rEzh@~C`c@hNpoB|Ev~@rD|{@xCd{@hCbv@p@pd@dAvt@|@dt@TzhAYrqAMl~@q@|aA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 25 miles.","announcement":"Continue for 25 miles.","distanceAlongGeometry":39731.273},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 19.","announcement":"In 2 miles, Keep left to stay on E 19.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 19.","announcement":"In a half mile, Keep left to stay on E 19.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 19 toward Gent, Brussel.","announcement":"Keep left to stay on E 19 toward Gent, Brussel.","distanceAlongGeometry":233.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.752749,51.526351],"geometry_index":1256,"admin_index":3,"weight":0.699,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":0.807,"bearings":[92,265,291],"out":1,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,273],"duration":0.675,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":0.607,"geometry_index":1257,"location":[4.752589,51.526342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,272],"duration":18.576,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":16.718,"geometry_index":1258,"location":[4.752422,51.526347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":6.267,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":5.64,"geometry_index":1262,"location":[4.74498,51.52654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":1.275,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":1.147,"geometry_index":1263,"location":[4.743623,51.526581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,272],"duration":1.656,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":1.49,"geometry_index":1264,"location":[4.743383,51.526589]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":27.28,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":24.552,"geometry_index":1265,"location":[4.743053,51.526596]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,283],"duration":2.221,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":1.999,"geometry_index":1286,"location":[4.742854,51.528106]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,299],"duration":5.55,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":4.995,"geometry_index":1288,"location":[4.743224,51.527982]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,345],"duration":11.85,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":10.665,"geometry_index":1292,"location":[4.743697,51.527395]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.744321,51.526031],"geometry_index":1294,"admin_index":3,"weight":20.66,"is_urban":false,"turn_weight":11.75,"duration":9.923,"bearings":[170,332,348],"out":0,"in":1,"turn_duration":0.023,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,352],"duration":65.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":59.13,"geometry_index":1297,"location":[4.744929,51.523594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,186],"duration":8.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.792,"geometry_index":1309,"location":[4.743935,51.507245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.743577,51.505153],"geometry_index":1310,"admin_index":3,"weight":22.037,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.831,"bearings":[6,186,197],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,194],"duration":7.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.378,"geometry_index":1316,"location":[4.742086,51.499166]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.741297,51.497193],"geometry_index":1317,"admin_index":3,"weight":31.7,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":34.278,"bearings":[14,196,204],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.736848,51.488923],"geometry_index":1322,"admin_index":3,"weight":16.03,"is_urban":false,"turn_weight":1,"duration":15.829,"bearings":[13,19,199],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":0.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.9,"geometry_index":1323,"location":[4.735254,51.48609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":65.048,"turn_weight":2425.741,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2485.911,"geometry_index":1324,"location":[4.735158,51.485919]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[11,16,195],"duration":8.647,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":7.992,"geometry_index":1333,"location":[4.728489,51.472427]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,193],"duration":58.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":54.246,"geometry_index":1334,"location":[4.727604,51.470344]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,194],"duration":7.056,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.703,"geometry_index":1342,"location":[4.722414,51.456072]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.721747,51.454362],"geometry_index":1343,"admin_index":4,"weight":27.426,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.877,"bearings":[14,196],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.782,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.485,"geometry_index":1348,"location":[4.71852,51.447142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":68.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":63.731,"geometry_index":1349,"location":[4.717869,51.445742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.945,"geometry_index":1354,"location":[4.710176,51.429051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":6.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.034,"geometry_index":1355,"location":[4.709949,51.428543]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.709219,51.426959],"geometry_index":1356,"admin_index":4,"weight":62.182,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":67.231,"bearings":[16,196,214],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.700165,51.411026],"geometry_index":1368,"admin_index":4,"weight":11.023,"is_urban":false,"turn_weight":1,"duration":10.844,"bearings":[13,27,208],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":38.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":35.89,"geometry_index":1373,"location":[4.698054,51.408691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":5.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.281,"geometry_index":1388,"location":[4.688916,51.400997]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.687435,51.399931],"geometry_index":1390,"admin_index":4,"weight":34.243,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":37.039,"bearings":[41,220,238],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.675922,51.391492],"geometry_index":1394,"admin_index":4,"weight":6.479,"is_urban":false,"turn_weight":0.5,"duration":6.473,"bearings":[25,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":142.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":131.875,"geometry_index":1395,"location":[4.674361,51.390356]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":5.884,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.442,"geometry_index":1406,"location":[4.642026,51.364157]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.562,"geometry_index":1407,"location":[4.640726,51.363061]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.640368,51.362759],"geometry_index":1408,"admin_index":4,"weight":31.246,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.912,"bearings":[37,215],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":6.634,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.296,"geometry_index":1409,"location":[4.63368,51.356862]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":7.942,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.539,"geometry_index":1412,"location":[4.632338,51.35567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":68.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":63.162,"geometry_index":1413,"location":[4.630633,51.354164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":2.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.679,"geometry_index":1416,"location":[4.615902,51.341267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,219],"duration":96.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":89.688,"geometry_index":1417,"location":[4.615239,51.340743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":44.79,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":43.67,"geometry_index":1428,"location":[4.581762,51.320749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":2.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.01,"geometry_index":1434,"location":[4.564765,51.312565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":6.78,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.78,"geometry_index":1435,"location":[4.564012,51.312196]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.561419,51.310967],"geometry_index":1436,"admin_index":4,"weight":52.946,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":54.311,"bearings":[53,234],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":14.937,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.557,"geometry_index":1442,"location":[4.546747,51.304453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":2.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.116,"geometry_index":1444,"location":[4.543416,51.303012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":12.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.618,"geometry_index":1445,"location":[4.542937,51.302801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,233],"duration":12.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.52,"geometry_index":1446,"location":[4.540231,51.3016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":201.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":196.414,"geometry_index":1447,"location":[4.537291,51.300221]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":2.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.646,"geometry_index":1496,"location":[4.464783,51.268501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.998,"geometry_index":1499,"location":[4.463904,51.268487]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":5.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.379,"geometry_index":1500,"location":[4.463569,51.268475]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":2.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.897,"geometry_index":1502,"location":[4.461756,51.268376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.46081,51.268319],"geometry_index":1503,"admin_index":4,"weight":20.819,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.827,"bearings":[84,264,270],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.453949,51.267904],"geometry_index":1507,"admin_index":4,"weight":22.768,"is_urban":false,"turn_weight":0.5,"duration":21.731,"bearings":[82,85,264],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,252],"duration":1.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.654,"geometry_index":1512,"location":[4.446505,51.26717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[72,252],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":1513,"location":[4.445975,51.267065]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Gent"},{"type":"text","text":"/"},{"type":"text","text":"Brussel"}],"type":"fork","modifier":"left","text":"Gent / Brussel"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"Ring Antwerpen","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Ring Antwerpen"}],"type":"fork","modifier":"left","text":"Ring Antwerpen"},"distanceAlongGeometry":39774.605},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Gent"},{"type":"text","text":"/"},{"type":"text","text":"Brussel"}],"type":"fork","modifier":"left","text":"Gent / Brussel"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"Ring Antwerpen","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Ring Antwerpen"}],"type":"fork","modifier":"left","text":"Ring Antwerpen"},"distanceAlongGeometry":3218.688}],"destinations":"A16: Antwerpen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A16 toward Antwerpen.","modifier":"slight left","bearing_after":265,"bearing_before":272,"location":[4.752749,51.526351]},"speedLimitSign":"vienna","name":"","weight_typical":1375.947,"duration_typical":1447.457,"duration":1446.558,"distance":39774.605,"driving_side":"right","weight":3800.855,"mode":"driving","ref":"E 19","geometry":"}k|gaByuaaHP~HIlI_AvjAuFb`H?HkA|bBqAxsAO~MMrS[`Zm@fQ}@fK{AzKuB|IuCpIkDbGiHxGaFfCuLdB{Gu@gGyBaFgE{D}EaEgJ_EsLcBeKo@uL@sJ^{JfA}IhBmKlCuIzFcJpIwHpFoCtIeClhA}[xJaIbk@yKjs@aLxv@cK|v@eIps@kEju@}Czx@mBxjAMfm@t@~e@vA~}AxHr{A|IJ@xhJ|p@dyAhKvaCjUtvArMnpAnSxjB`ZfCh@l{@xQn_@zIhzBhp@vi@`R|b@lP`_@jNb{Afp@~xH|oD`pDrbBtI~Dt`@rQryDfcBlgD|qAffCtbAdz@`[j}@~[r{@tZr{@bZlkAlb@daChv@fa@jKnl@tQp|Bpp@`jAx[hjA|ZjtEngAhtFtuArlAxZziBth@nVnIngBbk@ty@xXly@h[bmE|{AnvAtg@jjCx_AtaJ~`D~fL~bEreAt`@nu@hWv^dM~aBrl@~fKzuD~_Bfo@r~Axr@jo@dZnn@b[p_@vRz}@bh@~i@r\\tVzO~]~U|_Azp@fx@jn@t]|Xd]dZza@l^|^r\\fQvPjJ`Jr\\j\\jTpThc@be@`e@~g@bb@dg@zf@bl@j^be@rb@fj@~Zva@j\\~c@da@fk@xf@pr@lg@|u@h]xg@rSvZ~l@x_AzaC`oDrsCxiEzu@nlA``EdfG~eAp`Bti@ty@~pCndErdBlgC|dBfbC`cBhzB~uA~hB`~Cn}DvcDxbEhwLxoOvfB`~Bf}Dp`FncAfpAzQjUpoJ~`L`]ba@~Q|SlXx[b}ApiBltFttGt`H~cI|mG~|Hv_@lh@hjFdqHtiDhoFvz@xzAhxAtjC`vAxmC`y@hbB|gBfzDjo@dyAnn@`yAv|AlvDz}FfhOpwAf{D~xAfyDxlB|~EvxB``Gn@bBzbBtjE`V`n@xkA`aDzeBz}E`h@dvAnoAtvDzh@|`BblBd{Ft^bhAxk@hfBfl@zgBdL|\\`jAbhDduAvvDvaAbfC||AjuDjdCnjFf`BnhDvbB~kDtiAv_Cjt@tvA~EpJjuA~xBvcAzxAfvA|hBniBnkBhtAjmAt`@t]|~B~sBjzAfzAvo@vl@bo@xl@xgAbhAlrAlxA|bAxpA~m@`~@dr@jgAto@xhAhl@loA~r@fbBlk@z`B|`@d|AtXxkAtWlrAbRxjAzMleAvJjgAfHbjApFxpA~CbrAZxpA[dvA_DfbBaItsB}In{AqKhnBsNlnBgNbrBwFv~@wEj~@_Dv_AiBbjACln@DxUHvVJjGV|SfBz}@|Alq@pBbz@bGtvB\\xLdGh~BtG~fDdEl{ArBrm@tJbaCbNbiCfH|x@pEb`@dIbr@rPxtAzQ|jApO|u@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":10193.396},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on E 19.","announcement":"In 1 mile, Keep right to stay on E 19.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 19.","announcement":"In a half mile, Keep right to stay on E 19.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 19 toward Brussel, Mechelen.","announcement":"Keep right to stay on E 19 toward Brussel, Mechelen.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.44169,51.266053],"geometry_index":1517,"admin_index":4,"weight":60.437,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":57.566,"bearings":[64,243,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,208],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":1.201,"geometry_index":1569,"location":[4.428232,51.257204]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.428052,51.25699],"geometry_index":1570,"admin_index":4,"weight":7.435,"is_urban":true,"turn_weight":1,"duration":6.017,"bearings":[11,28,201],"out":2,"in":1,"turn_duration":0.03,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":32.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":34.515,"geometry_index":1574,"location":[4.427355,51.255783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":2.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":2.44,"geometry_index":1583,"location":[4.425958,51.24898]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,179],"duration":11.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":12.294,"geometry_index":1584,"location":[4.425949,51.248506]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":5.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":5.894,"geometry_index":1586,"location":[4.426027,51.246109]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":3.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":3.797,"geometry_index":1587,"location":[4.426033,51.244962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":15.724,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":17.296,"geometry_index":1588,"location":[4.426041,51.244334]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.426073,51.241668],"geometry_index":1589,"admin_index":4,"weight":3.927,"is_urban":true,"turn_weight":0.5,"duration":3.065,"bearings":[0,179,329],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":9.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":10.654,"geometry_index":1590,"location":[4.426086,51.241172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,356],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.246,"geometry_index":1593,"location":[4.426155,51.239641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,355],"duration":112.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":126.3,"geometry_index":1594,"location":[4.42618,51.239466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,317],"duration":31.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":36.379,"geometry_index":1652,"location":[4.442522,51.228828]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.446488,51.226074],"geometry_index":1656,"admin_index":4,"weight":5.41,"is_urban":true,"turn_weight":0.5,"duration":4.279,"bearings":[142,303,317],"out":0,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":41.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":48.14,"geometry_index":1657,"location":[4.446941,51.225717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,345],"duration":12.642,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":14.538,"geometry_index":1665,"location":[4.450317,51.221796]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.450768,51.220472],"geometry_index":1668,"admin_index":4,"weight":1.242,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.088,"bearings":[173,182,351],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":3.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.726,"geometry_index":1669,"location":[4.45079,51.220362]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,353],"duration":25.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":28.773,"geometry_index":1670,"location":[4.450854,51.220038]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,194],"duration":25.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":29.808,"geometry_index":1674,"location":[4.45058,51.217556]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":38.79,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":44.608,"geometry_index":1679,"location":[4.44913,51.215143]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.446054,51.21178],"geometry_index":1682,"admin_index":4,"weight":60.646,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":52.756,"bearings":[30,209,231],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.442143,51.20757],"geometry_index":1686,"admin_index":4,"weight":44.42,"is_urban":true,"turn_weight":1,"duration":37.763,"bearings":[18,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,206],"duration":27.963,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":32.13,"geometry_index":1690,"location":[4.439055,51.20423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":1.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":1.288,"geometry_index":1694,"location":[4.437062,51.201283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":23.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":27.048,"geometry_index":1695,"location":[4.436996,51.201165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":46.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":52.992,"geometry_index":1698,"location":[4.435617,51.198671]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":14.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":17.204,"geometry_index":1717,"location":[4.431464,51.19426]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.429339,51.193246],"geometry_index":1721,"admin_index":4,"weight":22.109,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":19.233,"bearings":[57,237,246],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":2.757,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":3.171,"geometry_index":1725,"location":[4.426203,51.192152]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,248],"duration":21.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":23.697,"geometry_index":1726,"location":[4.425744,51.192014]},{"bearings":[75,255],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"geometry_index":1730,"location":[4.422028,51.191186]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Brussel"},{"type":"text","text":"/"},{"type":"text","text":"Mechelen"}],"type":"fork","modifier":"right","text":"Brussel / Mechelen"},"primary":{"components":[{"type":"text","text":"Antwerpen-Zuid"}],"type":"fork","modifier":"right","text":"Antwerpen-Zuid"},"distanceAlongGeometry":10228.396},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Brussel"},{"type":"text","text":"/"},{"type":"text","text":"Mechelen"}],"type":"fork","modifier":"right","text":"Brussel / Mechelen"},"primary":{"components":[{"type":"text","text":"Antwerpen-Zuid"}],"type":"fork","modifier":"right","text":"Antwerpen-Zuid"},"distanceAlongGeometry":1609.344}],"destinations":"Ring Antwerpen: Gent, Brussel, Luik, Antwerpen-Centrum, Haven 1-199","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 19 toward Gent/Brussel/Luik/Antwerpen-Centrum.","modifier":"slight left","bearing_after":243,"bearing_before":244,"location":[4.44169,51.266053]},"speedLimitSign":"vienna","name":"","weight_typical":786.187,"duration_typical":693.634,"duration":695.171,"distance":10228.396,"driving_side":"right","weight":787.952,"mode":"driving","ref":"E 19","geometry":"i_`x`BsdbnGdO|q@dGpWjE|Q~DdPfD`N~FpTpFvRlFtQfGpSxFhRhGdRbGrQlGnQvFxO|GhQrGnPdH~P`HpPxH~PfHzOnHvOvHlOzHrOdIbOnIdOtH~MrIhN~IpNlJ~NrHvKpJ`N|I`MdJfM|I|LfKdNrI|JpJlLvJ~KxJxKnEzEjEvEtP|PjOzNhKnJvQfPpLxJ|K~I`PrLtK|HzLfIpPrK~LhHjLfJnHxDpXrNhOnH`WrKjWxKl{@lXbbAnTl{@jLpoAvIbi@p@jTTbUDrm@^r\\Pz`CwC|RCtfAKff@OreD_A~]Yzw@q@zZk@|Ik@|Iq@pIeAbIgAdHwAjJ{BdJiC~HkCbH_DnI_E`KcGxIgGxGmFbHgGrIwIrHuI~GaJdIsLvFcJnHoNfEaJ~CkHlFyMhH{RvDaLnDcLnD}LnEcPvEyPtYsiApEiQjEeP~E{QdDuLrCwJxDuMhEwMlEiNbDwJ~C_JlD}JnDoJvD}JbEkKhDcIrEeKjFoLtFaMnFeLbFwJjKwRtHmNjGoKnEyHjHkMna@uq@zn@oeAbu@cnAft@slAth@i|@~r@knArz@{tAxt@kgAtEgIhUi[|LuPrd@kj@nf@qi@`^wY|ImHzc@y\\|m@g\\d[cKnUuHpZ}Ht_@qGzEk@fS_CpR{@pw@n@vo@|Ff]pH|\\rJ~e@jSln@n^jPhL`PxLpZvVt}B`sB|v@ls@p_Azw@buAbrAtn@nj@v_A|{@tmA~jA~m@nj@to@`i@ja@l^vk@za@b}@vh@ff@dY`e@vTjFbCp`A|c@xh@hUno@|YbQjIjQbJjT~KxQvKxVtO~OvKbMlJ~OnMdLdKhJpIzMxNxOlQdR|UdGpIfHpKbEtGnFdJxDzGxMbXtPf^xL|ZnO|b@jNtd@dRrm@rKn`@hOvo@fSbbArGt[zMjy@bMry@dMz_ApGjq@dDz^"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Take the ramp on the left toward Brussel.","announcement":"In a half mile, Take the ramp on the left toward Brussel.","distanceAlongGeometry":577.246},{"ssmlAnnouncement":"Take the ramp on the left toward Brussel, Mechelen.","announcement":"Take the ramp on the left toward Brussel, Mechelen.","distanceAlongGeometry":190}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.421518,51.191103],"geometry_index":1731,"admin_index":4,"weight":10.188,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":9.07,"bearings":[75,251,264],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,274],"duration":5.681,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":6.392,"geometry_index":1736,"location":[4.419215,51.190993]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"bearings":[105,290],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"geometry_index":1740,"location":[4.417782,51.191127]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Brussel"},{"type":"text","text":"/"},{"type":"text","text":"Mechelen"}],"type":"turn","modifier":"slight left","text":"Brussel / Mechelen"},"distanceAlongGeometry":610.58}],"destinations":"Brussel, Mechelen, Boom, Wilrijk","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 19 toward Brussel/Mechelen.","modifier":"slight right","bearing_after":264,"bearing_before":255,"location":[4.421518,51.191103]},"speedLimitSign":"vienna","name":"","weight_typical":35.372,"duration_typical":31.455,"duration":31.455,"distance":610.58,"driving_side":"right","weight":35.372,"mode":"driving","ref":"E 19","geometry":"}rms`B{wzlGpCx`A`@lPf@rYBzYCdFE`Is@fZuBlc@{AxNqDhWqDhTqBlMeAzG}ElXiFf^eFx`@wD`c@qCvg@eA~e@S`V"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 21 miles.","announcement":"Continue for 21 miles.","distanceAlongGeometry":34529.461},{"ssmlAnnouncement":"In a quarter mile, Keep left to take E411.","announcement":"In a quarter mile, Keep left to take E411.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take E411, E40 toward Namen, Luik.","announcement":"Keep left to take E411, E40 toward Namen, Luik.","distanceAlongGeometry":147.778}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"location":[4.413009,51.19195],"geometry_index":1751,"admin_index":4,"weight":8.206,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.197,"bearings":[92,256,273],"out":1,"in":0,"turn_duration":0.061,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,220],"duration":3.536,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":4.066,"geometry_index":1756,"location":[4.411561,51.191568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,190],"duration":10.015,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":11.517,"geometry_index":1759,"location":[4.411131,51.191157]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,324],"duration":14.352,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":16.505,"geometry_index":1766,"location":[4.411638,51.189876]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.414427,51.187855],"geometry_index":1774,"admin_index":4,"weight":5.202,"is_urban":true,"turn_weight":0.5,"duration":4.098,"bearings":[156,315,332],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,335],"duration":0.622,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":0.716,"geometry_index":1777,"location":[4.414951,51.187101]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.415051,51.186989],"geometry_index":1778,"admin_index":4,"weight":7.342,"is_urban":true,"turn_weight":2.25,"duration":4.445,"bearings":[6,165,331],"out":1,"in":2,"turn_duration":0.018,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[164,342],"duration":21.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":23.773,"geometry_index":1782,"location":[4.415511,51.186076]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[175,355],"duration":36.216,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":39.838,"geometry_index":1787,"location":[4.417729,51.180997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":21.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":23.184,"geometry_index":1801,"location":[4.414081,51.172369]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.413177,51.166751],"geometry_index":1808,"admin_index":4,"weight":38.234,"is_urban":false,"turn_weight":1,"duration":35.488,"bearings":[4,179,351],"out":1,"in":0,"turn_duration":0.026,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[156,166,337],"duration":6.467,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.621,"geometry_index":1818,"location":[4.417494,51.157768]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":1.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.571,"geometry_index":1819,"location":[4.418595,51.156191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":6.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.967,"geometry_index":1820,"location":[4.418859,51.155812]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[156,329,337],"duration":43.54,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":43.533,"geometry_index":1821,"location":[4.420052,51.154091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":23.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.075,"geometry_index":1824,"location":[4.42748,51.143327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":4.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.843,"geometry_index":1836,"location":[4.429448,51.137133]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.675,"geometry_index":1837,"location":[4.429455,51.135795]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":3.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.77,"geometry_index":1838,"location":[4.429471,51.132289]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.429454,51.131245],"geometry_index":1839,"admin_index":4,"weight":0.131,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.155,"bearings":[1,179,214],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":1.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.017,"geometry_index":1840,"location":[4.429455,51.131209]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":15.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.755,"geometry_index":1841,"location":[4.429456,51.130933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,178],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.365,"geometry_index":1845,"location":[4.429542,51.126854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,358],"duration":1.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.43,"geometry_index":1846,"location":[4.429559,51.126478]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.429566,51.126086],"geometry_index":1847,"admin_index":4,"weight":1.942,"is_urban":false,"turn_weight":0.75,"duration":1.229,"bearings":[179,324,359],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":2.725,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.657,"geometry_index":1848,"location":[4.429572,51.125764]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":6.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.232,"geometry_index":1849,"location":[4.429572,51.125035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":6.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.626,"geometry_index":1850,"location":[4.429604,51.123325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.951,"geometry_index":1851,"location":[4.429637,51.121515]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":11.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.187,"geometry_index":1852,"location":[4.429637,51.121256]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":63.439,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.25,"geometry_index":1854,"location":[4.429724,51.118196]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[163,166,343],"duration":26.258,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.927,"geometry_index":1864,"location":[4.43496,51.101649]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.438069,51.095123],"geometry_index":1865,"admin_index":4,"weight":7.84,"is_urban":false,"turn_weight":1,"duration":7.219,"bearings":[163,327,343],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":10.155,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.647,"geometry_index":1866,"location":[4.438961,51.093301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,343],"duration":1.004,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.936,"geometry_index":1868,"location":[4.440195,51.090732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,344],"duration":5.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.162,"geometry_index":1869,"location":[4.440311,51.090485]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":4.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.646,"geometry_index":1870,"location":[4.440962,51.089107]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.441557,51.087871],"geometry_index":1871,"admin_index":4,"weight":12.306,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.972,"bearings":[164,180,343],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,347],"duration":2.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.185,"geometry_index":1873,"location":[4.442944,51.084527]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,349],"duration":15.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.503,"geometry_index":1874,"location":[4.443134,51.083918]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.44362,51.079816],"geometry_index":1878,"admin_index":4,"weight":9.873,"is_urban":false,"turn_weight":0.5,"duration":9.874,"bearings":[0,180,335],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.375,"geometry_index":1880,"location":[4.443596,51.07716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,179],"duration":9.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.373,"geometry_index":1881,"location":[4.443573,51.076489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":17.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.673,"geometry_index":1882,"location":[4.443629,51.073829]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,352],"duration":1.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.014,"geometry_index":1887,"location":[4.444329,51.068597]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":80.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":78.812,"geometry_index":1888,"location":[4.444397,51.068314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.233,"geometry_index":1902,"location":[4.452877,51.047276]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[178,358],"duration":3.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.974,"geometry_index":1903,"location":[4.452898,51.046947]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[178,358],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":1904,"location":[4.452964,51.0459]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":3.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.499,"geometry_index":1905,"location":[4.452979,51.045668]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.452986,51.04473],"geometry_index":1906,"admin_index":4,"weight":3.229,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.238,"bearings":[0,181,206],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,185],"duration":3.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.937,"geometry_index":1907,"location":[4.452963,51.043872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.452803,51.042829],"geometry_index":1909,"admin_index":4,"weight":3,"is_urban":false,"turn_weight":1,"duration":1.971,"bearings":[7,49,186],"out":2,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,189],"duration":1.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2,"geometry_index":1910,"location":[4.45271,51.042309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,191],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.483,"geometry_index":1911,"location":[4.452576,51.041796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,195],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1,"geometry_index":1913,"location":[4.452361,51.041168]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":6.056,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.207,"geometry_index":1914,"location":[4.452256,51.040913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.528,"geometry_index":1917,"location":[4.451513,51.039362]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,201],"duration":3.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.192,"geometry_index":1918,"location":[4.451308,51.038978]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.450824,51.038189],"geometry_index":1919,"admin_index":4,"weight":1.39,"is_urban":false,"turn_weight":0.75,"duration":0.646,"bearings":[21,202,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":1.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":1920,"location":[4.450723,51.03803]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":3.903,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.902,"geometry_index":1921,"location":[4.45055,51.037751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,200],"duration":2.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.119,"geometry_index":1922,"location":[4.449942,51.036777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.532,"geometry_index":1923,"location":[4.449631,51.036249]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":32.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.013,"geometry_index":1924,"location":[4.449122,51.035361]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":4.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.485,"geometry_index":1930,"location":[4.446617,51.026695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,177],"duration":38.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":37.44,"geometry_index":1931,"location":[4.446608,51.025453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,340],"duration":2.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.145,"geometry_index":1937,"location":[4.450131,51.0154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,338],"duration":3.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.445,"geometry_index":1938,"location":[4.450483,51.014849]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,341],"duration":2.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.73,"geometry_index":1939,"location":[4.450984,51.013946]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":7.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.28,"geometry_index":1940,"location":[4.451417,51.013247]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.878,"geometry_index":1941,"location":[4.452607,51.011375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":20.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.76,"geometry_index":1942,"location":[4.452748,51.011152]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":0.462,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.451,"geometry_index":1944,"location":[4.456125,51.00612]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,335],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.438,"geometry_index":1945,"location":[4.45621,51.006003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.875,"geometry_index":1946,"location":[4.456699,51.005408]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,331],"duration":0.933,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.91,"geometry_index":1948,"location":[4.457694,51.004213]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.457891,51.003989],"geometry_index":1949,"admin_index":4,"weight":55.673,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":57.107,"bearings":[151,162,331],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.470855,50.991086],"geometry_index":1963,"admin_index":4,"weight":29.25,"is_urban":false,"turn_weight":0.75,"duration":28.507,"bearings":[134,308,314],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,317],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.908,"geometry_index":1966,"location":[4.47959,50.985723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,319],"duration":19.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.1,"geometry_index":1967,"location":[4.479844,50.985539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":5.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.9,"geometry_index":1974,"location":[4.484685,50.981396]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.485899,50.980004],"geometry_index":1976,"admin_index":4,"weight":4.533,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.552,"bearings":[154,333],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":0.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.538,"geometry_index":1978,"location":[4.486737,50.978904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":26.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.968,"geometry_index":1979,"location":[4.486831,50.978775]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,351],"duration":9.157,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.921,"geometry_index":1987,"location":[4.490074,50.971916]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":88.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":84.389,"geometry_index":1991,"location":[4.490532,50.969196]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":7.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.068,"geometry_index":2004,"location":[4.480141,50.943632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":0.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.627,"geometry_index":2005,"location":[4.478606,50.941626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":7.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.954,"geometry_index":2006,"location":[4.47847,50.941448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.476948,50.93948],"geometry_index":2007,"admin_index":4,"weight":18.887,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.379,"bearings":[26,207,231],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.473382,50.934932],"geometry_index":2010,"admin_index":4,"weight":9.524,"is_urban":false,"turn_weight":1,"duration":8.75,"bearings":[27,207,351],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":55.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":55.714,"geometry_index":2012,"location":[4.471757,50.932885]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.764,"geometry_index":2016,"location":[4.461467,50.919804]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":8.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.856,"geometry_index":2017,"location":[4.461154,50.919407]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":2.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.096,"geometry_index":2019,"location":[4.459606,50.917424]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.459053,50.91673],"geometry_index":2020,"admin_index":4,"weight":4.271,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.092,"bearings":[27,203,249],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.938,"geometry_index":2022,"location":[4.458371,50.915812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":0.405,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.425,"geometry_index":2023,"location":[4.458113,50.915485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":9.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.159,"geometry_index":2024,"location":[4.458057,50.915413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.897,"geometry_index":2029,"location":[4.456636,50.913705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,211],"duration":3.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.827,"geometry_index":2030,"location":[4.456505,50.913557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":18.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":20.075,"geometry_index":2031,"location":[4.455914,50.912927]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.45244,50.909915],"geometry_index":2036,"admin_index":4,"weight":12.821,"is_urban":true,"turn_weight":1,"duration":10.755,"bearings":[25,40,223],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":2.213,"geometry_index":2039,"location":[4.45042,50.908615]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":4.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":5.066,"geometry_index":2041,"location":[4.450015,50.908394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,233],"duration":3.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":3.669,"geometry_index":2042,"location":[4.449078,50.90788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":18.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":20.149,"geometry_index":2043,"location":[4.448367,50.907539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[61,242],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"geometry_index":2047,"location":[4.444196,50.905887]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Namen"},{"type":"text","text":"/"},{"type":"text","text":"Luik"}],"type":"fork","modifier":"left","text":"Namen / Luik"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E411"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E40"}],"type":"fork","modifier":"left","text":"E411 / E40"},"distanceAlongGeometry":34552.793},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Namen"},{"type":"text","text":"/"},{"type":"text","text":"Luik"}],"type":"fork","modifier":"left","text":"Namen / Luik"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E411"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E40"}],"type":"fork","modifier":"left","text":"E411 / E40"},"distanceAlongGeometry":402.336}],"destinations":"Brussel, Mechelen","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the ramp on the left toward Brussel/Mechelen.","modifier":"slight left","bearing_after":256,"bearing_before":272,"location":[4.413009,51.19195]},"speedLimitSign":"vienna","name":"","weight_typical":1202.956,"duration_typical":1193.096,"duration":1192.947,"distance":34552.793,"driving_side":"right","weight":1202.817,"mode":"driving","ref":"E19; E 19","geometry":"{gos`BadjlGvCf]zA~NfCjO`DlM|ElL`GnJxH|HxFlDxQlDbKMzNyDdG_E`IwF~HmJ~CuDhPyY|Sac@xHoPpIeOfIiN~IiMx_@mc@rLuJxSoMzTgMlC_C~EgEpFqArFmC|LiF|ZmMlpBwr@`}Aoo@xi@sSfo@gNzQoAn_@kCxn@n@`VhCvN`Cb@HvUfFnQ`FtZjQxmAtq@f`B|iA~X|Lby@|Zhx@lOp_@pDtaAxI~SvBt_BdPlWhCfU~Bvs@lGhbA~F~t@k@jm@gEjd@}Gza@oJr\\_Mnr@kXbc@mTji@o[lcA{l@v_DqiBpaBycAtVoOpjBqiAbeGovDx`FmxCxwDi~BlXmPtReLnZsPn\\qMpZuK`ZaJd`@sL|]wHfj@eDja@gBjg@cAfo@oArrAMbzE_@f`A`@fAAfPA`@?~}B_DhdBIpXAnVa@nWMbSKpl@?ziB_AbpBaAdO?jaD{Bz[q@lgBmDh~AiKzvAcOr{Bq]jeA_UzqBgg@nnAg`@vkAia@r{EsgBxz@k[zvKiaEzpBwv@thAcc@zuA_h@lNgFbuAug@flAed@|zBgw@`tAm]`e@{JbaA_N|}@sHlqBwDzK?vf@Bf}Bj@|h@l@feDoBvWWp{BgJftA_KvtAeQtEq@tPgCdUiDr}AaYnwA}\\luBgm@ddEg~AtkMkvF~u@wXh{@gUl{@_Ohf@_Ehf@cCbQaA~`@{@vYw@pSi@l`AcCnM]ry@Mrt@l@hl@hEzRtBn_@xD`_@jGrQxDrSrF|NpEzSdGlf@rQrc@rR~VxKhp@f]|HhElPxIz{@~d@~_@lRnv@x^~fAbf@`mBdq@v~Brb@juAvQtv@~EvxAzDrlAPb_BaG`sBaVl_B_[`iAe[niA}_@bjD}bBla@_Ulw@i^tj@aZ~sBkiA|LyGr~DyxBzyBgxAhFiDdd@q]`k@gb@r]}Y~LiKlsCgdChYaVv`@_\\fl@qd@~s@yh@fm@{a@hs@ae@pbAmq@nnAocA~QwSlz@gbAd}@_uApk@oaAzcAepBflBksDfwDeoHth@k|@nJ{Nn]ak@hvAakBn|@cdAf_@w`@`QuPpOaQvKyJtm@cj@hg@w_@zq@ef@zPeL`G{DzU{Ojy@_e@xy@c^jy@g`@f}Auf@rfAuWpk@{LxReD~o@eJdp@{Fbb@qDtc@_CnLc@`Nq@n\\Szx@ObmBrHl{BnVhuBxb@|rExvAdEpAdtNj_FzjB|v@bmB|aAr~DtqCj|B|~AbJnG~yBb~Av{AphAn|ApeA~`BvmAbZzTxcBtnAxaAvs@rtMfoJfPnMzfGrnExWpR`UpOzdBdoAjj@pa@fVvNba@zYlSbOnCnB`i@x`@~GdF`HbFb[fWnQlOfHdGjf@|c@nDdDpr@|o@xi@bn@~w@phAj^hi@fT|]nq@vmAnHpOtJlTbAzBb_@py@hTlk@vQ`f@t]hgAxZnhA~XxjAbl@xgCvGpZ"},{"voiceInstructions":[{"ssmlAnnouncement":"In 2 miles, Keep left to stay on R0.","announcement":"In 2 miles, Keep left to stay on R0.","distanceAlongGeometry":3978.539},{"ssmlAnnouncement":"In a half mile, Keep left to stay on R0.","announcement":"In a half mile, Keep left to stay on R0.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on R0.","announcement":"Keep left to stay on R0.","distanceAlongGeometry":213.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.441566,50.905025],"geometry_index":2049,"admin_index":4,"weight":8.94,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.966,"bearings":[63,242,260],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,251],"duration":25.472,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":28.019,"geometry_index":2052,"location":[4.440061,50.904581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,222],"duration":26.7,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":29.37,"geometry_index":2065,"location":[4.435028,50.903589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,314],"duration":17.54,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":19.295,"geometry_index":2084,"location":[4.435417,50.900791]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.438148,50.899668],"geometry_index":2089,"admin_index":4,"weight":25.812,"is_urban":true,"turn_weight":0.5,"duration":22.52,"bearings":[122,297,302],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,305],"duration":4.5,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":5.062,"geometry_index":2093,"location":[4.441137,50.898454]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.441733,50.898294],"geometry_index":2094,"admin_index":4,"weight":17.35,"is_urban":true,"turn_weight":11.75,"duration":4.993,"bearings":[125,293,306],"out":0,"in":1,"turn_duration":0.015,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[125,305],"duration":17.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.2,"geometry_index":2095,"location":[4.443043,50.897717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.447511,50.895734],"geometry_index":2096,"admin_index":4,"weight":1.929,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.733,"bearings":[125,142,305],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,305],"duration":6.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.328,"geometry_index":2097,"location":[4.447977,50.895525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,308],"duration":8.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":9.257,"geometry_index":2100,"location":[4.449719,50.894717]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,317],"duration":2.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.556,"geometry_index":2106,"location":[4.451715,50.893538]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,319],"duration":5.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.268,"geometry_index":2107,"location":[4.452213,50.893177]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.453309,50.892239],"geometry_index":2109,"admin_index":4,"weight":12.257,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":10.914,"bearings":[146,165,326],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,331],"duration":7.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.739,"geometry_index":2111,"location":[4.454965,50.890454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,331],"duration":0.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.213,"geometry_index":2112,"location":[4.456107,50.889172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,329],"duration":27.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":30.481,"geometry_index":2113,"location":[4.456133,50.889145]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,345],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.21,"geometry_index":2120,"location":[4.460031,50.884651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,352],"duration":5.495,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.182,"geometry_index":2122,"location":[4.460237,50.883954]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.460389,50.882918],"geometry_index":2125,"admin_index":4,"weight":2.946,"is_urban":true,"turn_weight":0.75,"duration":1.972,"bearings":[178,338,358],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":10.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.562,"geometry_index":2126,"location":[4.460405,50.882629]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,347],"duration":4.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.819,"geometry_index":2129,"location":[4.460722,50.881051]},{"bearings":[159,342],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":2131,"location":[4.461043,50.880378]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"R0","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"R0"}],"type":"fork","modifier":"left","text":"R0"},"distanceAlongGeometry":4001.872}],"destinations":"E411, E40: Namen, Luik, Leuven, Zaventem, Brussel","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E411/E40 toward Namen/Luik/Leuven/Zaventem.","modifier":"slight left","bearing_after":242,"bearing_before":243,"location":[4.441566,50.905025]},"speedLimitSign":"vienna","name":"","weight_typical":268.84,"duration_typical":228.846,"duration":228.846,"distance":4001.872,"driving_side":"right","weight":268.84,"mode":"driving","ref":"R0; E 40","geometry":"a{~a`B{|anGvEzRzLpm@bFrZ`AjHtBzOvClYtCb^jDxw@rAz\\dCz^rBtV|D|YxD`SlDnM~CrJxGjNbClE|FtI~GtHjJzHdKtFhIzCdKjBfL`@hKg@lE{@`Eq@lFuAfF{BxEmCzE{DpE_FrE}EbKaO~NmYzGqQrFeP|FaR~Tuv@vVe{@tJ{\\`Umv@|Roq@dU_r@~Hgd@`c@{pA|zBgvG`Lc\\z]scApL{Z`EkKlOq_@rPo]tQe]xJ{PxEkIhAgBpUc^p`@sh@`X{Y|WkYruAclAboAkfAt@s@~a@w`@huAkqAng@cg@hc@y`@|i@_a@`YsLvL}Dv[sHxMgBbT}AtUqD|S_@`Q_@bj@aC~[kEnYkHhRiGvUwJ`i@eXrPsJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 19 miles.","announcement":"Continue for 19 miles.","distanceAlongGeometry":30387.965},{"ssmlAnnouncement":"In 1 mile, Take the E19 exit.","announcement":"In 1 mile, Take the E19 exit.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the E19 exit.","announcement":"In a half mile, Take the E19 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the E19 exit toward Paris, Mons. Then Keep left to take E19.","announcement":"Take the E19 exit toward Paris, Mons. Then Keep left to take E19.","distanceAlongGeometry":197.5}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[157,183,337],"duration":6.381,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.329,"geometry_index":2133,"location":[4.461632,50.879423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":1.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.79,"geometry_index":2135,"location":[4.46237,50.878345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.462548,50.878084],"geometry_index":2136,"admin_index":4,"weight":1.254,"is_urban":true,"turn_weight":0.75,"duration":0.462,"bearings":[152,324,337],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,332],"duration":1.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.247,"geometry_index":2137,"location":[4.462605,50.878015]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":0.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.34,"geometry_index":2138,"location":[4.462821,50.877703]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":25.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":28.96,"geometry_index":2139,"location":[4.462854,50.877653]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":6.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.489,"geometry_index":2141,"location":[4.465811,50.873353]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,182,337],"duration":32.704,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":36.784,"geometry_index":2142,"location":[4.466566,50.872236]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":0.54,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.607,"geometry_index":2147,"location":[4.471581,50.864986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.011,"geometry_index":2148,"location":[4.471666,50.864866]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.472245,50.864039],"geometry_index":2149,"admin_index":4,"weight":11.165,"is_urban":true,"turn_weight":1,"duration":9.043,"bearings":[156,313,336],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,337],"duration":5.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.63,"geometry_index":2152,"location":[4.473668,50.86197]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,341],"duration":0.624,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.702,"geometry_index":2154,"location":[4.474367,50.8608]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,343],"duration":4.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.614,"geometry_index":2155,"location":[4.474437,50.860658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,348],"duration":5.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.536,"geometry_index":2158,"location":[4.474895,50.859439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.446,"geometry_index":2162,"location":[4.475135,50.857983]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,357],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.752,"geometry_index":2163,"location":[4.475184,50.857436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,358],"duration":15.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":17.44,"geometry_index":2164,"location":[4.475193,50.85727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,345],"duration":8.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":9.24,"geometry_index":2173,"location":[4.476183,50.853414]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.477353,50.851476],"geometry_index":2177,"admin_index":4,"weight":1.631,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.502,"bearings":[155,337],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":0.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.565,"geometry_index":2178,"location":[4.477564,50.851189]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":9.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":10.928,"geometry_index":2179,"location":[4.477643,50.851082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,334],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.625,"geometry_index":2181,"location":[4.47898,50.849318]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,335],"duration":12.884,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":14.173,"geometry_index":2182,"location":[4.479174,50.849061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":31.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":34.285,"geometry_index":2183,"location":[4.480847,50.846855]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,340],"duration":71.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":77.196,"geometry_index":2188,"location":[4.482735,50.84415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":75.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":79.778,"geometry_index":2196,"location":[4.483684,50.837394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":15.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.313,"geometry_index":2207,"location":[4.481629,50.830412]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,202],"duration":17.474,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.347,"geometry_index":2208,"location":[4.480734,50.829056]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.479676,50.827399],"geometry_index":2209,"admin_index":4,"weight":9.706,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.492,"bearings":[22,200,215],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"in":0,"bearings":[15,192],"duration":25.618,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":26.259,"geometry_index":2212,"location":[4.479123,50.826375]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[4,184],"duration":14.88,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":14.88,"geometry_index":2217,"location":[4.478761,50.823642]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[21,203],"duration":6.72,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":6.552,"geometry_index":2223,"location":[4.477322,50.820447]},{"entry":[false,true],"in":0,"bearings":[23,202],"duration":28.595,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":27.165,"geometry_index":2225,"location":[4.476373,50.819066]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":4.988,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.739,"geometry_index":2226,"location":[4.473454,50.814428]},{"entry":[false,false,true],"in":1,"bearings":[6,22,202],"duration":3.575,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":2,"weight":4.127,"geometry_index":2227,"location":[4.472944,50.813617]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":12.941,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":11.971,"geometry_index":2228,"location":[4.472531,50.812963]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":26.111,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":24.153,"geometry_index":2229,"location":[4.471036,50.810594]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[22,202],"duration":5.924,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":5.479,"geometry_index":2233,"location":[4.468013,50.805811]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[22,203],"duration":1.185,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.096,"geometry_index":2234,"location":[4.467313,50.804728]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[23,203],"duration":0.273,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.253,"geometry_index":2235,"location":[4.46717,50.804515]},{"entry":[false,true,true],"in":0,"bearings":[23,202,227],"duration":11.945,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":11.03,"geometry_index":2236,"location":[4.467137,50.804465]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[22,201],"duration":5.773,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":5.196,"geometry_index":2238,"location":[4.466015,50.8027]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[23,203],"duration":3.668,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.301,"geometry_index":2241,"location":[4.465571,50.80199]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[23,202],"duration":5.502,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.952,"geometry_index":2242,"location":[4.46527,50.801539]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[22,202],"duration":9.577,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":8.619,"geometry_index":2243,"location":[4.464836,50.800868]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":9.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":8.64,"geometry_index":2246,"location":[4.464088,50.799696]},{"entry":[false,false,true],"in":1,"bearings":[8,23,202],"duration":1.493,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":2,"weight":2.362,"geometry_index":2248,"location":[4.462996,50.798034]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":6.341,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":5.865,"geometry_index":2249,"location":[4.462803,50.797739]},{"entry":[false,true],"in":0,"bearings":[22,203],"duration":30.764,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":28.456,"geometry_index":2250,"location":[4.461962,50.796453]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":18.94,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":17.521,"geometry_index":2254,"location":[4.457841,50.790217]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":9.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":8.4,"geometry_index":2257,"location":[4.455325,50.786373]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":5.44,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":4.896,"geometry_index":2261,"location":[4.454107,50.784538]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":2.659,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":1,"weight":2.394,"geometry_index":2262,"location":[4.453376,50.783438]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":3.805,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.52,"geometry_index":2263,"location":[4.453011,50.782899]},{"entry":[false,true,true],"in":0,"bearings":[23,203,306],"duration":3.894,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.595,"geometry_index":2265,"location":[4.45249,50.782134]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":1.228,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.135,"geometry_index":2266,"location":[4.451969,50.781342]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":20.373,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":18.845,"geometry_index":2267,"location":[4.451807,50.781095]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":25.813,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":23.878,"geometry_index":2269,"location":[4.449093,50.776966]},{"entry":[false,true],"in":0,"bearings":[23,203],"duration":4.185,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.871,"geometry_index":2273,"location":[4.445648,50.771736]},{"entry":[false,true],"in":0,"bearings":[23,201],"duration":2.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.081,"geometry_index":2274,"location":[4.44514,50.770963]},{"entry":[false,true,true],"in":0,"bearings":[21,202,224],"duration":10.344,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":9.562,"geometry_index":2275,"location":[4.444883,50.770542]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[22,202],"duration":0.973,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.9,"geometry_index":2276,"location":[4.443816,50.768869]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":1.35,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.249,"geometry_index":2277,"location":[4.443714,50.768706]},{"entry":[false,true],"in":0,"bearings":[22,203],"duration":1.2,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":2278,"location":[4.443568,50.768477]},{"entry":[false,true],"in":0,"bearings":[23,202],"duration":1.2,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":2279,"location":[4.443434,50.76828]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":14,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":12.6,"geometry_index":2280,"location":[4.443305,50.768079]},{"entry":[false,false,true],"in":1,"bearings":[7,23,202],"duration":24.465,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":2,"weight":22.5,"geometry_index":2282,"location":[4.441817,50.765747]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":24.553,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":22.098,"geometry_index":2283,"location":[4.438921,50.761154]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":5.339,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.806,"geometry_index":2285,"location":[4.435732,50.756091]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[22,202],"duration":2.374,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.137,"geometry_index":2286,"location":[4.435042,50.754993]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":6.048,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":5.292,"geometry_index":2287,"location":[4.434725,50.754491]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":34.704,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":30.366,"geometry_index":2288,"location":[4.433849,50.753089]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":34.293,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":29.988,"geometry_index":2291,"location":[4.428787,50.745047]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":0.54,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.486,"geometry_index":2294,"location":[4.423849,50.737082]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[21,201],"duration":3.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.722,"geometry_index":2295,"location":[4.423772,50.736957]},{"entry":[false,true,true],"in":0,"bearings":[21,201,300],"duration":1.807,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.62,"geometry_index":2296,"location":[4.423338,50.736253]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[21,201],"duration":0.324,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.292,"geometry_index":2298,"location":[4.423086,50.735834]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[21,201],"duration":0.396,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":0.356,"geometry_index":2299,"location":[4.423039,50.735756]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":18.672,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":16.799,"geometry_index":2300,"location":[4.422983,50.735662]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":3.297,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.044,"geometry_index":2302,"location":[4.420545,50.731663]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":4.993,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":4.619,"geometry_index":2303,"location":[4.420113,50.730954]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":5.194,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":4.798,"geometry_index":2304,"location":[4.419457,50.729875]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":29.774,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":28.279,"geometry_index":2305,"location":[4.418775,50.728751]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":3.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.473,"geometry_index":2307,"location":[4.414849,50.722303]},{"entry":[false,true,true],"in":0,"bearings":[21,201,222],"duration":4.033,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.925,"geometry_index":2308,"location":[4.414376,50.721529]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":2.325,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.267,"geometry_index":2311,"location":[4.413849,50.720653]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":37.725,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":36.782,"geometry_index":2312,"location":[4.413537,50.720133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":6.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.9,"geometry_index":2326,"location":[4.412822,50.711183]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.412679,50.709532],"geometry_index":2327,"admin_index":6,"weight":10.983,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.99,"bearings":[3,183],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.782,"geometry_index":2329,"location":[4.412441,50.706853]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":10.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.013,"geometry_index":2330,"location":[4.412403,50.706415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,178],"duration":9.264,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.241,"geometry_index":2332,"location":[4.412244,50.704018]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":0.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.654,"geometry_index":2334,"location":[4.412417,50.701784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":19.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":19.838,"geometry_index":2335,"location":[4.412432,50.701622]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.6,"geometry_index":2337,"location":[4.412884,50.696882]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.413105,50.69459],"geometry_index":2338,"admin_index":6,"weight":4.379,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.51,"bearings":[178,357],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":31.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":31.192,"geometry_index":2340,"location":[4.413154,50.693501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":4.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.79,"geometry_index":2354,"location":[4.40957,50.686551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":5.175,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.046,"geometry_index":2355,"location":[4.408085,50.685851]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.406525,50.685103],"geometry_index":2356,"admin_index":6,"weight":11.487,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.789,"bearings":[53,233],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,226],"duration":9.708,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.442,"geometry_index":2360,"location":[4.402929,50.683298]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,216],"duration":70.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":68.62,"geometry_index":2363,"location":[4.400336,50.681526]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":6.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.014,"geometry_index":2376,"location":[4.386165,50.666446]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.384255,50.664983],"geometry_index":2379,"admin_index":6,"weight":24.848,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.164,"bearings":[41,225,246],"out":1,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.376162,50.661231],"geometry_index":2387,"admin_index":6,"weight":7.728,"is_urban":false,"turn_weight":0.5,"duration":7.616,"bearings":[46,63,246],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,252],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.323,"geometry_index":2390,"location":[4.373223,50.660478]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,254],"duration":4.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.914,"geometry_index":2391,"location":[4.372672,50.660365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,256],"duration":53.153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":49.166,"geometry_index":2392,"location":[4.371163,50.660097]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":8.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.9,"geometry_index":2405,"location":[4.349888,50.65979]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.346463,50.659852],"geometry_index":2406,"admin_index":6,"weight":13.479,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.983,"bearings":[92,272],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":8.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.29,"geometry_index":2409,"location":[4.340571,50.659956]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":3.757,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.475,"geometry_index":2410,"location":[4.337382,50.660011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":12.007,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.1,"geometry_index":2411,"location":[4.336018,50.660036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":18.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":16.893,"geometry_index":2412,"location":[4.33149,50.660117]},{"bearings":[92,272],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":2413,"location":[4.324593,50.660239]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Mons"}],"type":"off ramp","modifier":"right","text":"Paris / Mons"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E19"}],"type":"off ramp","modifier":"right","text":"E19"},"distanceAlongGeometry":30427.965},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Mons"}],"type":"off ramp","modifier":"right","text":"Paris / Mons"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E19"}],"type":"off ramp","modifier":"right","text":"E19"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on R0.","modifier":"slight left","bearing_after":157,"bearing_before":157,"location":[4.461632,50.879423]},"speedLimitSign":"vienna","name":"","weight_typical":1327.365,"duration_typical":1349.337,"duration":1349.337,"distance":30427.965,"driving_side":"right","weight":1327.365,"mode":"driving","ref":"R0","geometry":"}zl``B_cioGJG~aA{l@hOcJhCqBnRoLbBaA~iAkp@v`EmfCxdAen@xe@uZv\\_TzrDczBblBkjAp~AgaAnFiDtr@ec@p_Aqk@|n@{_@xOoJlc@qVtc@cSzGkCbOgFjPkFti@_MrWyD|OiBfOqAd`@iBda@aBjIQnh@wClY}BdXcCp[oEhRgDhVcFlWuGlX_IxYoJz_@wOtZ_Ox_@sTvZwQ|PeLtE}Cnl@ia@v_Agp@`OcKzhCqgBh_A_p@f[{SrUwNn[{PjXoM|LyErZuJra@gJn[eFn^aD~YyAz}CkHdcBcDjv@yAddAwAza@nA~_@bDzPrBtPtCxZ`JvOjFpO~Fn`@jQvpBfhAvsA|v@pfBbaArWdM~TfLjPbF|QhEvVlCbUrAbz@nCzm@vCzUpAdh@hJd]~MbX~K~k@`Zhb@~S|fAlp@jMzHz`HluDtq@z^zg@xX`sCl|AjGhDz{A~y@d|Axy@ngBx`AtbAvj@hL|GbB`A~t@ra@hw@nb@zM~GlNhH`MlHd[xQ|h@bZpNbIlPnIfg@bYpcAxk@hb@lVlQ`KjoAps@`cA`m@xrAxu@nhBfdAjcClvAf`ChtAhyAdy@tSvLpc@fWdXtOhDpBrn@r^vcAtl@t`@xU|VfOzVhOnp@p_@lNbI|_DlhBb`Bd_AfbBp`AzjA|p@bvAjx@r_Ali@ho@v^hY`OpgBtaAdIjEhMbHhKjGpK`GrlBlcAbc@pW`~G~sDn{BnmA|~DxwBrcAbj@j^xRrvAvu@|^lSzkBlcAxhJnbFtyCh`BvpE`aCjdCfpAxFxC~j@bZ~BnAdUfLzC|AzDnBbwCz{Ax`Bnz@hk@~YlbA~g@feAri@rk@bZjeJfyEjo@p\\tT`L`]`Q~Ax@n_@nR`RlJlWlLxa@pMbd@bKla@bFvVfAtk@@hn@kD|k@uDty@kDn{@mAtu@Erc@Zhe@z@dfB|Gxv@`DrnBxHjZjAvrBxH`a@BpeAuB`dAcFbI]|_C}JhfDiOfnCyLt_@aAjb@_@bpBw@tx@FhXb@xYfChZnFfZfKrXpOxZrVdXlZpO~TdLdSbIvOrRtd@vQbc@vj@x{Avm@n`Bdj@vxA`U`l@nLpY`a@j~@tZ~l@he@~x@vk@`y@vf@jl@`d@`e@~r@po@x~BjrBx{EbfEXVvmCb`C~~BfrBbq@tm@hr@ho@rZ`[|\\x^na@df@pVl[nWf^jj@tz@fu@huApYzm@|b@`dAlYlx@dXry@hSls@fRds@pYzqAbS|eArKfp@hMn~@`Fla@vOh}AlFho@zEjs@dDvn@hC~p@pBnq@vAru@x@ju@`@t{@BdpBo@fnBsCdxFkChvFmBb}D{B`uEAxBgDdfHe@fdAmBhfEq@ftAaD~yGsF`nLkChqD"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to take E19.","announcement":"Keep left to take E19.","distanceAlongGeometry":150}],"intersections":[{"bearings":[92,265,274],"entry":[false,true,true],"classes":["motorway"],"in":0,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":2,"geometry_index":2414,"location":[4.32174,50.660309]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E19"}],"type":"fork","modifier":"left","text":"E19"},"distanceAlongGeometry":245.725}],"destinations":"E19, E429: Paris, Mons, Charleroi, Bruxelles, Lille, Tournai","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the E19 exit toward Paris/Mons/Charleroi/Bruxelles.","modifier":"slight right","bearing_after":274,"bearing_before":272,"location":[4.32174,50.660309]},"speedLimitSign":"vienna","name":"","weight_typical":11.222,"duration_typical":12.14,"duration":12.14,"distance":245.725,"driving_side":"right","weight":11.222,"mode":"driving","geometry":"i|`s_Bw{wfGg@bXYf\\iApi@qBnp@q@nVk@|m@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep right to take E19.","announcement":"In a half mile, Keep right to take E19.","distanceAlongGeometry":592.042},{"ssmlAnnouncement":"Keep right to take E19.","announcement":"Keep right to take E19.","distanceAlongGeometry":150}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.31827,50.660483],"geometry_index":2420,"admin_index":6,"weight":9.157,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":9.924,"bearings":[93,269,276],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,271],"duration":13.924,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":12.879,"geometry_index":2422,"location":[4.315615,50.660516]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.311896,50.6606],"geometry_index":2427,"admin_index":6,"weight":1.991,"is_urban":false,"turn_weight":0.5,"duration":1.636,"bearings":[89,95,271],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,272],"duration":7.028,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":6.501,"geometry_index":2428,"location":[4.311472,50.660607]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[92,271],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":2429,"location":[4.309735,50.660636]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E19"}],"type":"fork","modifier":"right","text":"E19"},"distanceAlongGeometry":622.042}],"destinations":"E19","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E19.","modifier":"slight left","bearing_after":269,"bearing_before":273,"location":[4.31827,50.660483]},"speedLimitSign":"vienna","name":"","weight_typical":31.639,"duration_typical":33.712,"duration":33.712,"distance":622.042,"driving_side":"right","weight":31.639,"mode":"driving","geometry":"egas_B{bqfGHvYkAdjCAtCKpTAtC{AjgD{@b`@MnYy@pkBCdP"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep left to take E19.","announcement":"In a half mile, Keep left to take E19.","distanceAlongGeometry":744.876},{"ssmlAnnouncement":"Keep left to take E19, E 19 toward E19, Paris.","announcement":"Keep left to take E19, E 19 toward E19, Paris.","distanceAlongGeometry":266.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.30946,50.660638],"geometry_index":2430,"admin_index":6,"weight":38.231,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":41.339,"bearings":[91,269,275],"out":2,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.310263,50.661138],"geometry_index":2454,"admin_index":6,"weight":4.94,"is_urban":false,"turn_weight":0.5,"duration":4.812,"bearings":[4,184,355],"out":1,"in":2,"turn_duration":0.013,"classes":["motorway"],"entry":[false,true,false]},{"bearings":[4,183],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":2455,"location":[4.310192,50.660424]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E19"},{"type":"delimiter","text":"/"},{"type":"text","text":"Paris"}],"type":"fork","modifier":"left","text":"E19 / Paris"},"distanceAlongGeometry":774.876}],"destinations":"E19","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take E19.","modifier":"slight right","bearing_after":275,"bearing_before":271,"location":[4.30946,50.660638]},"speedLimitSign":"vienna","name":"","weight_typical":48.611,"duration_typical":52.031,"duration":52.031,"distance":774.876,"driving_side":"right","weight":48.611,"mode":"driving","geometry":"{pas_Bg|_fGaApb@}An[}BhRwDjOiFvKcIdLqKjIiLlB}IIuK_CyGoEmJ{J_EeJgFcP_CcRu@iRz@sVxC}SfFoNxJqNxK}IbLaEjJ{BnYwBrk@lCxu@`D"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 5 miles.","announcement":"Continue for 5 miles.","distanceAlongGeometry":7874.457},{"ssmlAnnouncement":"In 2 miles, Keep right to take A54.","announcement":"In 2 miles, Keep right to take A54.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A54.","announcement":"In a half mile, Keep right to take A54.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A54.","announcement":"Keep right to take A54.","distanceAlongGeometry":200}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[4.310111,50.659547],"geometry_index":2456,"admin_index":6,"weight":9.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":10.2,"bearings":[3,181,191],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.310153,50.657929],"geometry_index":2461,"admin_index":6,"weight":19.251,"is_urban":false,"turn_weight":11.75,"duration":8.125,"bearings":[4,185,352],"out":1,"in":2,"turn_duration":0.015,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,184],"duration":5.31,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.911,"geometry_index":2462,"location":[4.309873,50.655935]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.309716,50.654631],"geometry_index":2463,"admin_index":6,"weight":6.255,"is_urban":false,"turn_weight":0.5,"duration":6.229,"bearings":[4,186,353],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":25.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":23.504,"geometry_index":2464,"location":[4.309473,50.653037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":49.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":44.794,"geometry_index":2466,"location":[4.308355,50.646543]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,181],"duration":6.151,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.536,"geometry_index":2472,"location":[4.307158,50.633772]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.307107,50.632193],"geometry_index":2473,"admin_index":6,"weight":9.376,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.144,"bearings":[1,181,206],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,182],"duration":7.725,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.145,"geometry_index":2475,"location":[4.307038,50.629591]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":1.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.357,"geometry_index":2477,"location":[4.306868,50.627613]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,187],"duration":15.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.791,"geometry_index":2478,"location":[4.306829,50.627236]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.305339,50.622548],"geometry_index":2483,"admin_index":6,"weight":2.288,"is_urban":false,"turn_weight":0.5,"duration":1.942,"bearings":[16,199,356],"out":1,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":12.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.84,"geometry_index":2484,"location":[4.305077,50.622053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,209],"duration":5.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.845,"geometry_index":2488,"location":[4.302938,50.618885]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.301898,50.61768],"geometry_index":2489,"admin_index":6,"weight":18.81,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.807,"bearings":[29,210],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,200],"duration":7.593,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.191,"geometry_index":2493,"location":[4.298072,50.612931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":37.985,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":36.086,"geometry_index":2495,"location":[4.297042,50.611017]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,352],"duration":3.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.376,"geometry_index":2508,"location":[4.296084,50.600981]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,350],"duration":23.153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.574,"geometry_index":2509,"location":[4.296337,50.600085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,336],"duration":2.153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.099,"geometry_index":2517,"location":[4.299359,50.59453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":4.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.508,"geometry_index":2518,"location":[4.299754,50.594044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":5.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.955,"geometry_index":2519,"location":[4.300596,50.592996]},{"bearings":[155,333],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":2520,"location":[4.301517,50.591841]}],"bannerInstructions":[{"primary":{"components":[{"type":"icon","text":"A54"}],"type":"fork","modifier":"right","text":"A54"},"distanceAlongGeometry":7904.124},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"icon","text":"A54"}],"type":"fork","modifier":"right","text":"A54"},"distanceAlongGeometry":3218.688}],"destinations":"E19: Paris, Mons, Charleroi, Liège, Namur","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E19/E 19 toward E19/Paris/Mons/Charleroi.","modifier":"slight left","bearing_after":181,"bearing_before":183,"location":[4.310111,50.659547]},"speedLimitSign":"vienna","name":"","weight_typical":269.279,"duration_typical":274.706,"duration":274.75,"distance":7904.124,"driving_side":"right","weight":269.322,"mode":"driving","ref":"E19; E 19","geometry":"ul_s_B}dafGfMP`ZnBbPCrU_A`SqCr{BnPnpAxHrbBdNf}Ghq@rvBpRvvBpOdpBxMxuBtKxyBbJlzBfHdgEjItaBdBr~@f@~aB`BrrAtD~f@|CpVlAxrApONB~dA|RbfAbYpbAj]|]jOxv@h_@pr@|_@rs@pd@~d@z]hjA~_Al|BhoBbrAhbAjl@x^zi@tZp~@rc@`w@vZha@nN~o@zQdp@|N`p@jLlp@`Jlp@dFhq@hDjr@tAnk@Qrp@aBnq@uDlr@oH`p@gJ~v@yNhn@cPdm@aRpl@oTrl@aWbk@uX~l@e]dh@g\\d^_Uj]uWn`Ass@dgAqx@t_Aqn@"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1.5 miles, Continue toward A54.","announcement":"In 1.5 miles, Continue toward A54.","distanceAlongGeometry":2094.492},{"ssmlAnnouncement":"In a half mile, Continue toward A54.","announcement":"In a half mile, Continue toward A54.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Continue toward A54, Liège for 16 miles.","announcement":"Continue toward A54, Liège for 16 miles.","distanceAlongGeometry":226.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[4.302278,50.590806],"geometry_index":2521,"admin_index":6,"weight":11.082,"is_urban":false,"turn_weight":5,"duration":6.247,"bearings":[151,159,335],"out":1,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.303167,50.589338],"geometry_index":2523,"admin_index":6,"weight":11.872,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.184,"bearings":[159,170,339],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.304617,50.586378],"geometry_index":2528,"admin_index":6,"weight":4.241,"is_urban":false,"turn_weight":0.5,"duration":3.846,"bearings":[168,322,346],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,348],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.51,"geometry_index":2529,"location":[4.304894,50.585528]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,351],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.737,"geometry_index":2532,"location":[4.305126,50.584634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,352],"duration":3.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.684,"geometry_index":2534,"location":[4.305226,50.584185]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.305364,50.583236],"geometry_index":2537,"admin_index":6,"weight":7.754,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.169,"bearings":[174,186,355],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.117,"geometry_index":2544,"location":[4.30549,50.581184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,182],"duration":27.481,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":26.107,"geometry_index":2545,"location":[4.305487,50.580886]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[24,204],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":2562,"location":[4.302575,50.574262]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight","slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"A54"},{"type":"text","text":"/"},{"type":"text","text":"Liège"},{"type":"text","text":"/"},{"type":"text","text":"Namur"},{"type":"text","text":"/"},{"type":"text","text":"Charleroi"}],"type":"turn","modifier":"straight","text":"A54 / Liège / Namur / Charleroi"},"distanceAlongGeometry":2134.492}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A54.","modifier":"slight right","bearing_after":159,"bearing_before":155,"location":[4.302278,50.590806]},"speedLimitSign":"vienna","name":"","weight_typical":78.754,"duration_typical":76.317,"duration":76.354,"distance":2134.492,"driving_side":"right","weight":78.791,"mode":"driving","ref":"A54","geometry":"kdyn_Bk{qeG~k@uZvm@{Zdg@aW``@_Qfa@iN~_@iNnk@}Pbt@iPvS{C|PmDdPeCnPaCpIeAzW{BrPoAxOgApPaBrQc@nOw@xSs@hPJbS[hPDrQDbRf@nPt@lQ`ArPzAvPtBvQ`DvPxCpPvD~QvEp\\rKnf@hRdb@|Rjb@`Uba@rTxa@bV``@fVzGbEpsBboA"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take R9.","announcement":"In a quarter mile, Keep left to take R9.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take R9, E 420.","announcement":"Keep left to take R9, E 420.","distanceAlongGeometry":132.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[4.301293,50.572397],"geometry_index":2563,"admin_index":6,"weight":4.439,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.695,"bearings":[24,201,218],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":4.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.406,"geometry_index":2566,"location":[4.300616,50.571265]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":15.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.639,"geometry_index":2568,"location":[4.299991,50.570124]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":0.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.759,"geometry_index":2572,"location":[4.297901,50.566359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,193],"duration":27.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.684,"geometry_index":2573,"location":[4.297815,50.566163]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":6.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.968,"geometry_index":2594,"location":[4.304318,50.562033]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":18.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.086,"geometry_index":2595,"location":[4.306856,50.561828]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,270],"duration":10.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.052,"geometry_index":2600,"location":[4.314589,50.561469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.319139,50.561734],"geometry_index":2603,"admin_index":6,"weight":9.679,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.471,"bearings":[81,262],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,261],"duration":0.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.597,"geometry_index":2605,"location":[4.323488,50.562158]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,261],"duration":10.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.078,"geometry_index":2606,"location":[4.32375,50.562183]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,261],"duration":11.897,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.701,"geometry_index":2608,"location":[4.327903,50.56259]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":20.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.132,"geometry_index":2612,"location":[4.33295,50.563031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,281],"duration":3.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.942,"geometry_index":2619,"location":[4.341548,50.562777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":29.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.723,"geometry_index":2621,"location":[4.342919,50.562607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,304],"duration":2.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.378,"geometry_index":2630,"location":[4.354534,50.559455]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,304],"duration":1.868,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.681,"geometry_index":2631,"location":[4.355463,50.559051]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,307],"duration":6.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.21,"geometry_index":2632,"location":[4.356083,50.558754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,311],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.397,"geometry_index":2634,"location":[4.358341,50.557578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,315],"duration":94.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":84.78,"geometry_index":2635,"location":[4.358474,50.557494]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":15.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.851,"geometry_index":2658,"location":[4.379935,50.533153]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,331],"duration":12.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.178,"geometry_index":2664,"location":[4.382967,50.528968]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,324],"duration":17.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.065,"geometry_index":2668,"location":[4.386165,50.525854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,312],"duration":8.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.465,"geometry_index":2674,"location":[4.391856,50.521937]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.394808,50.520413],"geometry_index":2677,"admin_index":6,"weight":11.271,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.205,"bearings":[126,307],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[125,289,303],"duration":0.488,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.444,"geometry_index":2680,"location":[4.39893,50.518646]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,305],"duration":5.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.315,"geometry_index":2681,"location":[4.399097,50.518571]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":1.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.729,"geometry_index":2682,"location":[4.401062,50.51776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":4.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.547,"geometry_index":2683,"location":[4.401698,50.517494]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.403375,50.516796],"geometry_index":2684,"admin_index":6,"weight":22.339,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.169,"bearings":[123,303],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,320],"duration":7.242,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.691,"geometry_index":2692,"location":[4.412011,50.512147]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,326],"duration":17.349,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.048,"geometry_index":2695,"location":[4.413742,50.510607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.54,"geometry_index":2700,"location":[4.416791,50.506512]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,341],"duration":68.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":63.794,"geometry_index":2701,"location":[4.416873,50.506357]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,350],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.42,"geometry_index":2721,"location":[4.41858,50.487943]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":28.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":27.438,"geometry_index":2722,"location":[4.418611,50.487825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":5.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.02,"geometry_index":2731,"location":[4.418634,50.480551]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.418392,50.479257],"geometry_index":2732,"admin_index":6,"weight":17.31,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.328,"bearings":[7,186,197],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.417625,50.475005],"geometry_index":2736,"admin_index":6,"weight":4.894,"is_urban":false,"turn_weight":1,"duration":3.913,"bearings":[7,186,358],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.417466,50.474062],"geometry_index":2737,"admin_index":6,"weight":15.161,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.169,"bearings":[6,187,199],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.416769,50.470148],"geometry_index":2740,"admin_index":6,"weight":8.206,"is_urban":false,"turn_weight":1,"duration":7.037,"bearings":[6,187,348],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":7.302,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.484,"geometry_index":2741,"location":[4.416432,50.468305]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.416195,50.466379],"geometry_index":2744,"admin_index":6,"weight":10.578,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.343,"bearings":[3,180],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,347],"duration":5.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.246,"geometry_index":2750,"location":[4.416639,50.463695]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,337],"duration":16.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.023,"geometry_index":2754,"location":[4.417369,50.462406]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,313],"duration":5.456,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.571,"geometry_index":2761,"location":[4.421279,50.459208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,310],"duration":9.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.804,"geometry_index":2763,"location":[4.422936,50.458312]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.425887,50.456761],"geometry_index":2764,"admin_index":6,"weight":26.199,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.582,"bearings":[127,310],"out":0,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,285],"duration":4.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.207,"geometry_index":2776,"location":[4.434392,50.453481]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.435982,50.453344],"geometry_index":2778,"admin_index":6,"weight":24.118,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.551,"bearings":[95,110,276],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.442188,50.450014],"geometry_index":2796,"admin_index":6,"weight":10.782,"is_urban":false,"turn_weight":0.5,"duration":10.04,"bearings":[175,338,351],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":26.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":27.304,"geometry_index":2799,"location":[4.442304,50.447442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,350],"duration":4.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.734,"geometry_index":2804,"location":[4.442608,50.440771]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.443164,50.439671],"geometry_index":2807,"admin_index":6,"weight":16.819,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":15.672,"bearings":[153,338],"out":0,"in":1,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,307],"duration":1.696,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":1.823,"geometry_index":2814,"location":[4.447465,50.436751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,306],"duration":9.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":10.159,"geometry_index":2815,"location":[4.448024,50.436488]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,325],"duration":11.401,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":12.533,"geometry_index":2821,"location":[4.450724,50.434756]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[170,187,346],"duration":9.75,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":10.715,"geometry_index":2829,"location":[4.452536,50.432082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":1.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":1.141,"geometry_index":2834,"location":[4.452855,50.429613]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.865,"geometry_index":2835,"location":[4.452875,50.429353]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":9.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":10.706,"geometry_index":2836,"location":[4.45289,50.429152]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.452849,50.426758],"geometry_index":2841,"admin_index":6,"weight":9.172,"is_urban":true,"turn_weight":0.5,"duration":7.717,"bearings":[7,190,346],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":9.431,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":10.609,"geometry_index":2845,"location":[4.452073,50.425064]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.450929,50.42303],"geometry_index":2849,"admin_index":6,"weight":1.865,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.681,"bearings":[17,194,211],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[14,190],"duration":2.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":2.592,"geometry_index":2850,"location":[4.450807,50.422727]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":23.642,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":26.597,"geometry_index":2851,"location":[4.450694,50.422303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.448078,50.418993],"geometry_index":2864,"admin_index":6,"weight":3.439,"is_urban":true,"turn_weight":1.5,"duration":1.74,"bearings":[62,83,255],"out":2,"in":0,"turn_duration":0.017,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.447617,50.418915],"geometry_index":2865,"admin_index":6,"weight":5.006,"is_urban":true,"turn_weight":0.5,"duration":4.013,"bearings":[75,101,256],"out":2,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,261],"duration":0.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":0.776,"geometry_index":2867,"location":[4.446531,50.418747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,265],"duration":5.276,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":5.937,"geometry_index":2868,"location":[4.446333,50.418728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":1.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":2.053,"geometry_index":2870,"location":[4.444834,50.418668]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":[],"valid":false,"active":false}],"location":[4.444315,50.418659],"geometry_index":2871,"admin_index":6,"weight":2.738,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":2.486,"bearings":[88,255,277],"out":1,"in":0,"turn_duration":0.052,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"location":[4.443655,50.418598],"geometry_index":2873,"admin_index":6,"weight":11.166,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":9.935,"bearings":[89,272],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.441093,50.418149],"geometry_index":2882,"admin_index":6,"weight":2.77,"is_urban":true,"turn_weight":1.5,"duration":1.177,"bearings":[35,55,223],"out":2,"in":1,"turn_duration":0.048,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,219],"duration":0.342,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":0.35,"geometry_index":2885,"location":[4.440894,50.418013]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,215],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":2.604,"geometry_index":2886,"location":[4.440836,50.417968]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,197],"duration":3.501,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":3.852,"geometry_index":2889,"location":[4.440488,50.417599]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,189],"duration":9.567,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":10.763,"geometry_index":2893,"location":[4.440255,50.41698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,201],"duration":12.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":13.508,"geometry_index":2897,"location":[4.439721,50.415273]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":4.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":5.316,"geometry_index":2904,"location":[4.437792,50.413419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,207],"duration":4.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":4.99,"geometry_index":2907,"location":[4.437049,50.412681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":6.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":6.835,"geometry_index":2910,"location":[4.436516,50.411924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,204],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":3.386,"geometry_index":2912,"location":[4.435816,50.410881]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,202],"duration":1.044,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":1.147,"geometry_index":2914,"location":[4.435477,50.410395]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,213],"duration":0.981,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":1.08,"geometry_index":2915,"location":[4.43537,50.410226]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[4.435235,50.410092],"geometry_index":2916,"admin_index":6,"weight":4.975,"is_urban":true,"turn_weight":0.5,"duration":4.198,"bearings":[0,33,203],"out":2,"in":1,"turn_duration":0.036,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,197],"duration":2.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":2.963,"geometry_index":2918,"location":[4.434848,50.409473]},{"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,189],"duration":3.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":3.266,"geometry_index":2922,"location":[4.434661,50.409048]},{"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,182],"duration":0.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":1.028,"geometry_index":2925,"location":[4.434566,50.408565]},{"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.434559,50.408408],"geometry_index":2926,"admin_index":6,"weight":1.056,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.023,"bearings":[2,171],"out":1,"in":0,"turn_duration":0.041,"classes":["motorway"],"entry":[false,true]},{"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"location":[4.434597,50.408248],"geometry_index":2927,"admin_index":6,"weight":9.068,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":8.452,"bearings":[185,351],"out":0,"in":1,"turn_duration":0.017,"classes":["motorway"],"entry":[true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,182],"duration":5.749,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":6.181,"geometry_index":2929,"location":[4.434511,50.406836]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,178],"duration":6.336,"turn_duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":6.772,"geometry_index":2933,"location":[4.434438,50.405873]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,331],"duration":4.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":5.321,"geometry_index":2939,"location":[4.434874,50.404926]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"bearings":[116,301],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"geometry_index":2944,"location":[4.43578,50.4044]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"R9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"R9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E420","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 420"}],"type":"fork","modifier":"left","text":"R9 / E 420"},"distanceAlongGeometry":26103.58},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"R9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"R9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E420","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 420"}],"type":"fork","modifier":"left","text":"R9 / E 420"},"distanceAlongGeometry":402.336}],"destinations":"A54, Liège, Namur, Charleroi, Gosselies","speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Continue toward A54/Liège/Namur/Charleroi.","modifier":"straight","bearing_after":201,"bearing_before":204,"location":[4.301293,50.572397]},"speedLimitSign":"vienna","name":"","weight_typical":918.398,"duration_typical":927.142,"duration":927.142,"distance":26103.58,"driving_side":"right","weight":918.398,"mode":"driving","ref":"E 420","geometry":"yeum_By}oeGdd@zU|\\lPrB~@x`@nQnd@pSvpAhm@tcBbx@hg@tTpKnDfKjDfUzF|Q`CxPdApOEjOkAjOyBdNyErNiHjM}JdMgL|LiPxKiQjKwUfJqZvFkWpE}WpCkVhC{XjBs\\tFstAxDchAxKs}CnJckCnEi_BbAup@pAkaBGyaBaBadBwDo_BwFyuA{NqaDsIglBq@kO}NmdDoHc}AcNg|C{Cyp@aCep@oBez@}A_dAk@cdADgwA~Aa~AfDm|AtGq_B`B}XbGscAnAaPdJejAlOs{AjRi{A|TixArW}wAdZmvAj^awAx^}pA`Lc]fXay@pQwe@bd@wiAjc@kaAfDiGfh@ueAfk@weAjk@mbAfm@iaAxm@k}@zo@c}@tn@ey@`o@st@dp@es@fr@gr@nt@{p@dw@{o@rv@_l@~x@}j@px@cg@~cAck@ri@k[~pBuhAfnBsfAvrByiAlqBohA`tBojAhwA}w@hZsPxt@oa@fw@ie@hu@_h@d}@ar@tF_Ftg@_d@bs@yq@ps@yv@fp@gw@lq@o}@nn@c~@zl@aaAll@{eAj^gr@dW{h@`\\ct@`g@olAbY{t@d\\g_Adb@grA`m@cmBtCmItq@yyBrOwf@rj@ygBbn@cpB`d@gtAve@anArh@ikA~g@{aAhk@c`A`@q@rf@ms@bTgYpb@}f@pf@_i@bp@sm@vg@ua@nv@mi@bz@oe@lr@i[tHcDjy@aYj{@sTdz@gOb{@mJh|@}Dn{@U|{@pCr|@nHtx@hJf}@bKf~@`IpNf@pl@|Bj`A@hgAyDhy@eIdOqBbn@yJv|@mP`fBu[jF}@hj@kIby@cHh~@aEn|@q@xs@n@h_AbE~d@lDjc@lEzc@dEzoAbNhrBlS|oAvMtx@pIxJdA|y@|HfhAbLbyAfOfpAdMdrB`T~`@lDpk@fExh@bBx]Hx^y@ha@sChV_EzJaBrb@qK|TkIzRkIfQgJnSsLf`@cYj^w\\t^ua@j\\wd@jY}d@lVyc@jWih@t[{r@hZur@|_BmwDrWoq@`T{k@rUsp@`Ueo@lTem@nSul@vRkn@`Qco@zHa_@pG_^jHal@`F{i@vCoj@xB{v@xAou@t@cSxAgVbEwi@tGad@|F}XxG}VhI_VrJyS~Q{\\fLuP|N}OfNmLvPyKdP{HbO{EdPiDrNuBtXeBzu@s@doAmAv|C}ArmDuB|[g@~[}BrYeFl[oJtTkJrQ{Jbc@m\\|^ka@xRmX~Wud@dSwd@rRsh@x\\o}@lO}a@|Oyb@dSub@pRu]vRg[vPsU`MuNx\\c]xVwS`XiQ|XqOnEeBlCeA~PwGp`@kLfT}DdOsB|OsAxZyAbgA}CfOg@pK]rm@wBla@g@lWN|SpAdVnCvW`FbUtHh[`Mt]tPzt@f^|XxMbZnNdS|H|QrFnY`FvoB`_@bM|DzLpFrI~GtIfItJvN`LfVpDpLlAlEnAvFrAtI`BhKzB|GzCx[~Etk@nBdVd@jKtAnl@`@do@Pl_@nB~OHfWMxXj@pXn@jVfAvObBnLtBpNzCzK~DpMtDbK`A`CfBhCdB`CxArBbAtAnFnGlLpIrGpCzAZfHhC|PxC`c@zGlb@fH`QxEbPlGjHpDrG`DnKhI`KlK`K`Lbm@rw@bNnPrIfKzPzQrPhNbKtHjLpHxT`MrTnMpj@f\\rG|DvTfNpItEjGlG~TtMtOnHbFxBhF`BrDfAnEpAtKdBzGp@rGd@xHL~HkAvDr@nqAvBva@z@|LT|E\\pC`@tKSvKqBpEuAfHgDvKwHdDkD~EaGdE}F`EyHnFkMbEmOnD}OnB}NhBm[nAuZ"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Take exit 30 Est.","announcement":"In a quarter mile, Take exit 30 Est.","distanceAlongGeometry":559.962},{"ssmlAnnouncement":"Take exit 30 Est onto N5.","announcement":"Take exit 30 Est onto N5.","distanceAlongGeometry":124.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[4.437204,50.404163],"geometry_index":2948,"admin_index":6,"weight":19.687,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":18.335,"bearings":[94,104,278],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.442079,50.40367],"geometry_index":2952,"admin_index":6,"weight":8.188,"is_urban":true,"turn_weight":1,"duration":6.571,"bearings":[100,269,288],"out":0,"in":2,"turn_duration":0.036,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"bearings":[98,280],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"geometry_index":2953,"location":[4.443721,50.403491]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"30 Est"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"}],"type":"off ramp","modifier":"right","text":"Exit 30 Est N5"},"distanceAlongGeometry":583.296}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take R9/E 420/Petite ceinture de Charleroi.","modifier":"slight left","bearing_after":94,"bearing_before":98,"location":[4.437204,50.404163]},"speedLimitSign":"vienna","name":"Petite ceinture de Charleroi","weight_typical":34.82,"duration_typical":31.22,"duration":31.22,"distance":583.296,"driving_side":"right","weight":34.82,"mode":"driving","ref":"R9; E 420","geometry":"eslc_BglymGN_Pv@eSpXiaG~AeHdJseBl@wMb@oLPwJI}K[oKo@kLu@}GqAcJ"},{"ref":"N5; E 420","mode":"driving","weight":351.175,"distance":2900.515,"geometry":"_mkc_BmfinGBkJeDiSgDiNmF{PaC}FgC_F_H{KoIcNaEaHsB_EaB}DaByF{@_Fs@cGYcGCuGXaJ\\}F~ByMxBmJ~C}JlFoIvA{AbDmDrd@{g@t~@ycAnf@md@bQaK|c@sW`WeNtKuCddAen@xVcPzcAsp@vVcPzaBefAba@qWb\\}S|X{Qf@[dSsMt@g@`F}C|DgClUuNtK}Gtr@ic@hcA_o@d}C{pBj@_@|E_D`LsG|w@gg@xBuAxNmJ`Ai@zDeChMeIvEuCxc@}XbEiCvA}@pz@ok@zk@q`@r^uTp@a@zL{JrIeLbCwE","duration":319.822,"driving_side":"right","duration_typical":319.822,"weight_typical":351.175,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 30 Est onto N5.","modifier":"slight right","bearing_after":82,"bearing_before":72,"location":[4.445303,50.403552]},"speedLimitUnit":"km/h","destinations":"N5: Porte de Philippeville","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Philippeville"}],"degrees":164,"driving_side":"right","type":"roundabout","modifier":"right","text":"N5 / Philippeville"},"distanceAlongGeometry":2900.515}],"exits":"30 Est","voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":2883.848},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit toward N5.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit toward N5.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit toward N5, Philippeville.","announcement":"Enter the roundabout and take the 2nd exit toward N5, Philippeville.","distanceAlongGeometry":116.667}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[63,82,252],"duration":18.779,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":6,"out":1,"weight":20.643,"geometry_index":2961,"location":[4.445303,50.403552]},{"entry":[true,false],"in":1,"bearings":[108,273],"duration":9.435,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":6,"out":0,"weight":10.378,"geometry_index":2978,"location":[4.448177,50.404592]},{"entry":[true,false,false],"in":1,"bearings":[146,316,327],"duration":0.465,"turn_weight":6.75,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":7.245,"geometry_index":2983,"location":[4.449083,50.404253]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":0.844,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":0.907,"geometry_index":2984,"location":[4.449129,50.404209]},{"entry":[true,false],"in":1,"bearings":[145,326],"duration":5.367,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":5.904,"geometry_index":2985,"location":[4.449216,50.404127]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":9.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":9.936,"geometry_index":2986,"location":[4.44987,50.403525]},{"entry":[true,false],"in":1,"bearings":[149,325],"duration":7.667,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":8.424,"geometry_index":2987,"location":[4.450971,50.402506]},{"entry":[true,false],"in":1,"bearings":[157,337],"duration":10.152,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":11.167,"geometry_index":2989,"location":[4.451763,50.401584]},{"entry":[true,false],"in":1,"bearings":[157,347],"duration":24.153,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":27.135,"geometry_index":2992,"location":[4.452475,50.400405]},{"mapbox_streets_v8":{"class":"primary"},"location":[4.45323,50.399298],"geometry_index":2993,"admin_index":6,"weight":23.836,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":1.5,"duration":21.874,"bearings":[155,337],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":5.134,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":5.769,"geometry_index":2995,"location":[4.454298,50.397815]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":17.915,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":19.698,"geometry_index":2996,"location":[4.454572,50.397435]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":6.191,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":6.803,"geometry_index":2997,"location":[4.455711,50.395853]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":5.553,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":6.101,"geometry_index":2998,"location":[4.456104,50.395307]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":8.377,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":9.207,"geometry_index":2999,"location":[4.456439,50.394841]},{"entry":[true,false],"in":1,"bearings":[156,335],"duration":1.53,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":1.683,"geometry_index":3002,"location":[4.456989,50.394083]},{"entry":[true,false],"in":1,"bearings":[155,336],"duration":1.1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":1.188,"geometry_index":3004,"location":[4.457088,50.393943]},{"entry":[true,false],"in":1,"bearings":[156,335],"duration":3.968,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":4.356,"geometry_index":3005,"location":[4.457156,50.393848]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":2.257,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":2.475,"geometry_index":3006,"location":[4.457407,50.393489]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":9.097,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":9.999,"geometry_index":3007,"location":[4.45755,50.393286]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":28.172,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":30.277,"geometry_index":3008,"location":[4.458131,50.392459]},{"mapbox_streets_v8":{"class":"primary"},"location":[4.458899,50.391366],"geometry_index":3009,"admin_index":6,"weight":33.071,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":1.5,"duration":31.388,"bearings":[155,336],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":0.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":0.232,"geometry_index":3010,"location":[4.460721,50.388835]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":1.292,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":6,"out":0,"weight":1.39,"geometry_index":3011,"location":[4.460737,50.388813]},{"entry":[true,false],"in":1,"bearings":[157,335],"duration":19.593,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":20.563,"geometry_index":3012,"location":[4.460817,50.388702]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":1.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.059,"geometry_index":3014,"location":[4.461599,50.387582]},{"entry":[true,false],"in":1,"bearings":[155,336],"duration":6.644,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.955,"geometry_index":3015,"location":[4.461642,50.387521]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":3.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.207,"geometry_index":3018,"location":[4.461913,50.387141]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":9.279,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":9.736,"geometry_index":3019,"location":[4.462076,50.386912]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":14.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":15.464,"geometry_index":3021,"location":[4.462566,50.386215]},{"entry":[true,false],"in":1,"bearings":[155,335],"duration":16.363,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":16.772,"geometry_index":3024,"location":[4.463378,50.38512]},{"entry":[true,false],"in":1,"bearings":[157,336],"duration":0.216,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.222,"geometry_index":3026,"location":[4.464262,50.383896]},{"entry":[true,true,false],"in":2,"bearings":[151,170,337],"duration":8.426,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":8.61,"geometry_index":3027,"location":[4.464279,50.383871]},{"entry":[true,false],"in":1,"bearings":[142,331],"duration":7.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.38,"geometry_index":3028,"location":[4.464469,50.383649]},{"bearings":[134,322],"entry":[true,false],"in":1,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3029,"location":[4.46468,50.383479]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward N5, Philippeville.","announcement":"Exit the roundabout toward N5, Philippeville.","distanceAlongGeometry":48.146}],"intersections":[{"entry":[false,true,false],"in":2,"bearings":[30,191,314],"duration":0.45,"turn_weight":1,"turn_duration":0.306,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":1.147,"geometry_index":3030,"location":[4.464788,50.383413]},{"entry":[false,true,true],"in":0,"bearings":[11,178,258],"duration":2.281,"turn_duration":0.052,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":2.284,"geometry_index":3031,"location":[4.464783,50.383397]},{"bearings":[150,279,358],"entry":[true,false,false],"in":2,"turn_duration":0.142,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3033,"location":[4.464788,50.383278]}],"destinations":"N5: Philippeville","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Philippeville"}],"degrees":164,"driving_side":"right","type":"roundabout","modifier":"right","text":"N5 / Philippeville"},"distanceAlongGeometry":48.146}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit toward N5/Philippeville.","modifier":"right","bearing_after":191,"bearing_before":134,"location":[4.464788,50.383413]},"speedLimitSign":"vienna","name":"","weight_typical":8.506,"duration_typical":7.823,"duration":7.823,"distance":48.146,"driving_side":"right","weight":8.506,"mode":"driving","ref":"N5; E 420","geometry":"ibdb_BghooG^HvBJtBUvDqBvCeEhBeG"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on N5, E 420 for 1 mile.","announcement":"Continue on N5, E 420 for 1 mile.","distanceAlongGeometry":1605.203},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville, N5.","announcement":"Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville, N5.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[94,169,311],"duration":7.802,"turn_duration":0.088,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":7.907,"geometry_index":3036,"location":[4.465075,50.383057]},{"entry":[false,true,false,false],"in":3,"bearings":[89,172,259,344],"duration":3.426,"turn_duration":2.012,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.449,"geometry_index":3039,"location":[4.465282,50.382531]},{"entry":[true,false],"in":1,"bearings":[172,352],"duration":1.286,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.317,"geometry_index":3040,"location":[4.465303,50.382435]},{"entry":[true,false],"in":1,"bearings":[171,352],"duration":11.232,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":11.992,"geometry_index":3041,"location":[4.465322,50.382344]},{"entry":[true,false],"in":1,"bearings":[171,351],"duration":3.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.69,"geometry_index":3044,"location":[4.465541,50.381371]},{"entry":[true,false],"in":1,"bearings":[171,351],"duration":1.189,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.199,"geometry_index":3045,"location":[4.465629,50.38102]},{"entry":[true,false],"in":1,"bearings":[172,351],"duration":16.082,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":16.074,"geometry_index":3046,"location":[4.465659,50.380903]},{"entry":[true,false],"in":1,"bearings":[173,352],"duration":3.521,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.515,"geometry_index":3048,"location":[4.466018,50.379192]},{"entry":[true,false],"in":1,"bearings":[172,353],"duration":5.375,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":5.356,"geometry_index":3049,"location":[4.466093,50.378827]},{"entry":[true,false],"in":1,"bearings":[173,352],"duration":7.677,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.67,"geometry_index":3050,"location":[4.466207,50.378287]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":2.348,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.348,"geometry_index":3052,"location":[4.466369,50.377409]},{"entry":[true,false],"in":1,"bearings":[171,353],"duration":11.723,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":11.7,"geometry_index":3053,"location":[4.46642,50.377142]},{"entry":[true,false],"in":1,"bearings":[173,351],"duration":12.758,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":12.432,"geometry_index":3054,"location":[4.466757,50.37576]},{"entry":[true,false],"in":1,"bearings":[172,353],"duration":3.3,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.218,"geometry_index":3056,"location":[4.467045,50.374245]},{"entry":[true,true,true,false],"in":3,"bearings":[83,170,296,352],"duration":1.611,"turn_weight":2,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.551,"geometry_index":3057,"location":[4.467133,50.373854]},{"entry":[false,true,true,false],"in":3,"bearings":[87,173,227,350],"duration":2.479,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.409,"geometry_index":3058,"location":[4.46718,50.373684]},{"entry":[true,false],"in":1,"bearings":[172,353],"duration":2.843,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.753,"geometry_index":3059,"location":[4.467238,50.373368]},{"entry":[true,false],"in":1,"bearings":[172,352],"duration":12.07,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":11.769,"geometry_index":3060,"location":[4.467317,50.373008]},{"entry":[true,false],"in":1,"bearings":[172,352],"duration":26.492,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":25.161,"geometry_index":3061,"location":[4.467639,50.371487]},{"bearings":[186,352],"entry":[true,false],"turn_duration":0.018,"in":1,"yield_sign":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3062,"location":[4.468215,50.368737]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Chaussée de Philippeville"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"}],"degrees":181,"driving_side":"right","type":"roundabout","modifier":"right","text":"Chaussée de Philippeville / N5"},"distanceAlongGeometry":1621.87}],"destinations":"N5: Philippeville","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward N5/Philippeville.","modifier":"slight right","bearing_after":169,"bearing_before":131,"location":[4.465075,50.383057]},"speedLimitSign":"vienna","name":"Route de Philippeville","weight_typical":138.488,"duration_typical":137.879,"duration":137.879,"distance":1621.87,"driving_side":"right","weight":138.488,"mode":"driving","ref":"N5; E 420","geometry":"alcb_BezooGbEa@vIwC~NcF~Di@tDe@lIwApWoCxXmE|ToDhF{@zdBkT`Da@xUuCv`@cF|Fo@|m@sGtOeBjuAaTpz@_Jbb@_FlWoDrI}AvRsBnU}C`~AcSzjD_c@fBHfBT"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Chaussée de Philippeville, N5.","announcement":"Exit the roundabout onto Chaussée de Philippeville, N5.","distanceAlongGeometry":32.807}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[6,97,214],"duration":2.08,"turn_weight":0.75,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":2.683,"geometry_index":3064,"location":[4.468199,50.368633]},{"entry":[false,true,true],"in":0,"bearings":[34,170,239],"duration":2.027,"turn_duration":0.504,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":1.447,"geometry_index":3068,"location":[4.468098,50.368536]},{"bearings":[133,282,350],"entry":[true,false,false],"in":2,"turn_duration":0.349,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3071,"location":[4.468125,50.368443]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Chaussée de Philippeville"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"}],"degrees":181,"driving_side":"right","type":"roundabout","modifier":"right","text":"Chaussée de Philippeville / N5"},"distanceAlongGeometry":32.807}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville/N5/E 420.","modifier":"slight right","bearing_after":214,"bearing_before":186,"location":[4.468199,50.368633]},"speedLimitSign":"vienna","name":"Chaussée de Philippeville","weight_typical":5.191,"duration_typical":5.574,"duration":5.574,"distance":32.807,"driving_side":"right","weight":5.191,"mode":"driving","ref":"N5; E 420","geometry":"qfga_Bm}uoGd@hAj@z@t@j@x@V~@B~@Qx@g@h@o@b@{@ZeA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":760.926},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville, N5.","announcement":"Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville, N5.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[89,153,313],"duration":1.076,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":0.997,"geometry_index":3074,"location":[4.468214,50.36839]},{"entry":[true,false],"in":1,"bearings":[170,333],"duration":7.445,"turn_duration":0.02,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.868,"geometry_index":3076,"location":[4.468307,50.368276]},{"entry":[true,false],"in":1,"bearings":[172,352],"duration":10.132,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":9.365,"geometry_index":3079,"location":[4.468505,50.367397]},{"entry":[true,false],"in":1,"bearings":[173,354],"duration":8.235,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.611,"geometry_index":3082,"location":[4.46875,50.36619]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":7.785,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.001,"geometry_index":3085,"location":[4.468979,50.365052]},{"entry":[true,false],"in":1,"bearings":[173,354],"duration":2.494,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.238,"geometry_index":3087,"location":[4.469192,50.363972]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":2.69,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.415,"geometry_index":3088,"location":[4.46926,50.363632]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":9.687,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":8.712,"geometry_index":3089,"location":[4.469334,50.363263]},{"entry":[true,false],"in":1,"bearings":[174,353],"duration":2.615,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.347,"geometry_index":3090,"location":[4.46955,50.362181]},{"entry":[true,false],"in":1,"bearings":[173,354],"duration":7.527,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.774,"geometry_index":3091,"location":[4.469579,50.361997]},{"bearings":[182,354],"entry":[true,false],"in":1,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3094,"location":[4.469654,50.361584]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Chaussée de Philippeville"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"}],"degrees":180,"driving_side":"right","type":"roundabout","modifier":"right","text":"Chaussée de Philippeville / N5"},"distanceAlongGeometry":784.259}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Chaussée de Philippeville/N5/E 420.","modifier":"slight right","bearing_after":153,"bearing_before":133,"location":[4.468214,50.36839]},"speedLimitSign":"vienna","name":"Chaussée de Philippeville","weight_typical":57.127,"duration_typical":62.81,"duration":62.81,"distance":784.259,"driving_side":"right","weight":57.127,"mode":"driving","ref":"N5; E 420","geometry":"kwfa_Bk~uoGnCwBrAaA^WfOyBtd@yFx[_E|`@kFtK}@ra@_FtHmAxY{Czt@aJrLgAfTgC`VsCrbAoLnJy@|CUzPyB~AEnIL"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Chaussée de Philippeville, N5.","announcement":"Exit the roundabout onto Chaussée de Philippeville, N5.","distanceAlongGeometry":37.422}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[2,86,205],"duration":3.474,"turn_weight":0.75,"turn_duration":0.037,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":3.843,"geometry_index":3095,"location":[4.469647,50.361416]},{"bearings":[25,141,246],"entry":[false,true,true],"in":0,"turn_duration":1.905,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":3099,"location":[4.469531,50.361255]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Chaussée de Philippeville"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"}],"degrees":180,"driving_side":"right","type":"roundabout","modifier":"right","text":"Chaussée de Philippeville / N5"},"distanceAlongGeometry":37.422}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit onto Chaussée de Philippeville/N5/E 420.","modifier":"slight right","bearing_after":205,"bearing_before":182,"location":[4.469647,50.361416]},"speedLimitSign":"vienna","name":"Chaussée de Philippeville","weight_typical":5.763,"duration_typical":7.512,"duration":7.512,"distance":37.422,"driving_side":"right","weight":5.763,"mode":"driving","ref":"N5; E 420","geometry":"ocy`_B}wxoGz@tBnApAzAf@xAG~Au@hA_Br@_C"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1976.399},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Route de Philippeville.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Route de Philippeville.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit onto Route de Philippeville, N5.","announcement":"Enter the roundabout and take the 2nd exit onto Route de Philippeville, N5.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[82,160,321],"duration":1.675,"turn_duration":0.025,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.485,"geometry_index":3102,"location":[4.46967,50.361144]},{"entry":[true,false],"in":1,"bearings":[172,340],"duration":2.864,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.565,"geometry_index":3104,"location":[4.469776,50.360959]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":3.535,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.175,"geometry_index":3106,"location":[4.469847,50.360621]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":0.578,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.521,"geometry_index":3107,"location":[4.469932,50.360185]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":72.056,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":64.844,"geometry_index":3108,"location":[4.469949,50.360101]},{"entry":[true,false],"in":1,"bearings":[172,353],"duration":2.208,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.971,"geometry_index":3109,"location":[4.472535,50.346897]},{"entry":[true,false],"in":1,"bearings":[173,352],"duration":8.975,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":8.07,"geometry_index":3110,"location":[4.472622,50.3465]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":3.852,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.466,"geometry_index":3111,"location":[4.472859,50.345275]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":4.687,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.329,"geometry_index":3112,"location":[4.472939,50.344862]},{"entry":[true,false],"in":1,"bearings":[174,353],"duration":1.096,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.014,"geometry_index":3113,"location":[4.473003,50.344517]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":16.435,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":14.791,"geometry_index":3116,"location":[4.473014,50.344454]},{"bearings":[183,354],"entry":[true,false],"turn_duration":0.014,"in":1,"yield_sign":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3117,"location":[4.473178,50.343517]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E420","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 420"}],"degrees":183,"driving_side":"right","type":"roundabout","modifier":"right","text":"E 420"},"distanceAlongGeometry":1993.066}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Chaussée de Philippeville/N5/E 420.","modifier":"slight right","bearing_after":160,"bearing_before":141,"location":[4.46967,50.361144]},"speedLimitSign":"vienna","name":"Chaussée de Philippeville","weight_typical":108.203,"duration_typical":120.164,"duration":120.164,"distance":1993.066,"driving_side":"right","weight":108.203,"mode":"driving","ref":"N5; E 420","geometry":"orx`_BkyxoG~DeCpDmArG}@nKoAfZiDfDa@fxXs`DxWmDpkAyMxX_DpT_Cn@G^El@Gpy@gItC[fBn@"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Route de Philippeville, N5.","announcement":"Exit the roundabout onto Route de Philippeville, N5.","distanceAlongGeometry":40.524}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[3,89,231],"duration":1.686,"turn_weight":1,"turn_duration":0.17,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":2.364,"geometry_index":3119,"location":[4.473168,50.34339]},{"entry":[false,true,true],"in":0,"bearings":[51,188,270],"duration":3.468,"turn_duration":0.436,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":2.729,"geometry_index":3121,"location":[4.473079,50.343344]},{"bearings":[8,130,277],"entry":[false,true,false],"in":0,"turn_duration":1.32,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":3124,"location":[4.47305,50.343207]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Route de Philippeville"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N5"}],"degrees":183,"driving_side":"right","type":"roundabout","modifier":"right","text":"Route de Philippeville / N5"},"distanceAlongGeometry":40.524}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit onto Route de Philippeville/N5/E 420.","modifier":"right","bearing_after":231,"bearing_before":183,"location":[4.473168,50.34339]},"speedLimitSign":"vienna","name":"","weight_typical":7.821,"duration_typical":9.505,"duration":9.505,"distance":40.524,"driving_side":"right","weight":7.821,"mode":"driving","ref":"E 420","geometry":"{|u__B_t_pGf@`Br@nAtAbA|AR|A]rAoA|@uB`@oC"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on E 420 for 99 miles.","announcement":"Continue on E 420 for 99 miles.","distanceAlongGeometry":159317.031},{"ssmlAnnouncement":"In a quarter mile, Take exit 29 on the left.","announcement":"In a quarter mile, Take exit 29 on the left.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take exit 29 on the left onto A 34 toward Paris, Lyon.","announcement":"Take exit 29 on the left onto A 34 toward Paris, Lyon.","distanceAlongGeometry":163.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[77,158,310],"duration":2.02,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.776,"geometry_index":3127,"location":[4.473221,50.343117]},{"entry":[false,true,false],"in":2,"bearings":[82,173,338],"duration":10.122,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":9.093,"geometry_index":3129,"location":[4.473309,50.342976]},{"entry":[true,true,true,false],"in":3,"bearings":[84,174,251,353],"duration":18.562,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":16.698,"geometry_index":3130,"location":[4.473464,50.342205]},{"entry":[true,true,false],"in":2,"bearings":[83,173,353],"duration":9.665,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.935,"geometry_index":3132,"location":[4.473811,50.340409]},{"entry":[false,true,false],"in":2,"bearings":[82,173,353],"duration":4.046,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.736,"geometry_index":3133,"location":[4.474002,50.339424]},{"entry":[true,true,false],"in":2,"bearings":[83,173,353],"duration":13.354,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":12.346,"geometry_index":3134,"location":[4.47408,50.339017]},{"entry":[true,true,true,false],"in":3,"bearings":[84,173,263,353],"duration":19.638,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":18.159,"geometry_index":3135,"location":[4.474343,50.33766]},{"entry":[true,true,false],"in":2,"bearings":[84,173,353],"duration":4.401,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.064,"geometry_index":3137,"location":[4.474924,50.334543]},{"entry":[true,true,false],"in":2,"bearings":[86,173,353],"duration":19.719,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":18.233,"geometry_index":3138,"location":[4.475063,50.333802]},{"entry":[true,true,false],"in":2,"bearings":[87,173,353],"duration":10.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":9.294,"geometry_index":3139,"location":[4.475619,50.33082]},{"entry":[true,true,true,false],"in":3,"bearings":[79,173,252,353],"duration":5.38,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.97,"geometry_index":3142,"location":[4.475948,50.329149]},{"entry":[true,true,false],"in":2,"bearings":[84,173,353],"duration":2.801,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":2.585,"geometry_index":3143,"location":[4.476123,50.328259]},{"entry":[true,true,false],"in":2,"bearings":[83,173,353],"duration":4.644,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.289,"geometry_index":3144,"location":[4.476214,50.327797]},{"entry":[true,true,false],"in":2,"bearings":[77,172,353],"duration":49.345,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":45.626,"geometry_index":3145,"location":[4.476363,50.327039]},{"entry":[true,true,true,false],"in":3,"bearings":[125,172,303,353],"duration":49.4,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":46.678,"geometry_index":3147,"location":[4.478044,50.318865]},{"entry":[true,true,false],"in":2,"bearings":[83,172,352],"duration":20.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":19.173,"geometry_index":3148,"location":[4.47938,50.312394]},{"entry":[true,true,true,false],"in":3,"bearings":[89,173,275,352],"duration":28.858,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":27.688,"geometry_index":3150,"location":[4.47973,50.310699]},{"entry":[true,true,true,false],"in":3,"bearings":[49,173,231,353],"duration":18.237,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":16.863,"geometry_index":3151,"location":[4.48074,50.305702]},{"entry":[true,true,false],"in":2,"bearings":[82,173,353],"duration":3.511,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.241,"geometry_index":3152,"location":[4.481449,50.302187]},{"entry":[true,true,true,false],"in":3,"bearings":[82,173,244,353],"duration":5.892,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.443,"geometry_index":3154,"location":[4.48158,50.301534]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":1.73,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.601,"geometry_index":3155,"location":[4.481732,50.300778]},{"entry":[true,false],"in":1,"bearings":[172,353],"duration":15.161,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":14.024,"geometry_index":3156,"location":[4.481777,50.300555]},{"entry":[true,false],"in":1,"bearings":[172,352],"duration":20.492,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":18.955,"geometry_index":3157,"location":[4.482196,50.298606]},{"entry":[false,true,true,true,true],"in":0,"bearings":[8,144,190,246,321],"duration":2.495,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":2,"weight":3.301,"geometry_index":3164,"location":[4.482339,50.295966]},{"entry":[false,true],"in":0,"bearings":[10,192],"duration":6.283,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.812,"geometry_index":3165,"location":[4.482248,50.295626]},{"entry":[false,true],"in":0,"bearings":[18,197],"duration":1.066,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":0.969,"geometry_index":3169,"location":[4.481915,50.294795]},{"entry":[false,true,true],"in":0,"bearings":[17,198,239],"duration":1.634,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.504,"geometry_index":3170,"location":[4.481848,50.294659]},{"entry":[false,true],"in":0,"bearings":[18,197],"duration":1.569,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.934,"geometry_index":3171,"location":[4.481726,50.294419]},{"entry":[false,true],"in":0,"bearings":[17,197],"duration":12.1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":11.192,"geometry_index":3172,"location":[4.481599,50.294156]},{"entry":[false,true],"in":0,"bearings":[17,197],"duration":9.419,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":8.712,"geometry_index":3173,"location":[4.480597,50.29208]},{"entry":[false,true],"in":0,"bearings":[8,185],"duration":16.744,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":15.466,"geometry_index":3178,"location":[4.479913,50.290106]},{"entry":[true,false],"in":1,"bearings":[166,349],"duration":1.357,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.734,"geometry_index":3189,"location":[4.480216,50.286375]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":7.126,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":6.585,"geometry_index":3190,"location":[4.48033,50.28609]},{"entry":[true,false],"in":1,"bearings":[156,338],"duration":4.328,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":4.004,"geometry_index":3194,"location":[4.481116,50.284594]},{"entry":[true,false],"in":1,"bearings":[152,333],"duration":5.986,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":5.537,"geometry_index":3197,"location":[4.481764,50.283723]},{"entry":[true,false],"in":1,"bearings":[144,327],"duration":37.885,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":35.022,"geometry_index":3201,"location":[4.482836,50.282586]},{"entry":[true,false],"in":1,"bearings":[100,279],"duration":15.823,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":14.637,"geometry_index":3222,"location":[4.493687,50.278773]},{"entry":[true,false],"in":1,"bearings":[115,289],"duration":6.781,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":6.272,"geometry_index":3227,"location":[4.498879,50.27809]},{"entry":[true,false],"in":1,"bearings":[133,309],"duration":3.48,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.211,"geometry_index":3231,"location":[4.500813,50.277338]},{"entry":[true,false,false],"in":2,"bearings":[144,304,321],"duration":9.768,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":9.027,"geometry_index":3234,"location":[4.501591,50.276803]},{"entry":[true,false],"in":1,"bearings":[168,345],"duration":29.754,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":27.522,"geometry_index":3240,"location":[4.502978,50.275009]},{"entry":[false,true],"in":0,"bearings":[8,182],"duration":2.823,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":2.586,"geometry_index":3260,"location":[4.500929,50.269151]},{"entry":[true,false],"in":1,"bearings":[175,358],"duration":2.414,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":2.233,"geometry_index":3262,"location":[4.500925,50.268554]},{"entry":[true,false],"in":1,"bearings":[166,349],"duration":6.903,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":6.386,"geometry_index":3264,"location":[4.501031,50.268049]},{"entry":[true,false],"in":1,"bearings":[153,334],"duration":20.137,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":18.608,"geometry_index":3268,"location":[4.501846,50.266688]},{"entry":[true,false],"in":1,"bearings":[153,333],"duration":9.867,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":9.609,"geometry_index":3271,"location":[4.504853,50.262882]},{"entry":[true,false],"in":1,"bearings":[154,334],"duration":5.876,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":5.436,"geometry_index":3274,"location":[4.506307,50.260954]},{"entry":[true,false],"in":1,"bearings":[154,334],"duration":2.456,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":2.211,"geometry_index":3275,"location":[4.507184,50.259811]},{"entry":[true,false],"in":1,"bearings":[156,334],"duration":8.344,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":7.509,"geometry_index":3276,"location":[4.507539,50.259343]},{"entry":[true,false],"in":1,"bearings":[169,348],"duration":10.012,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":9.004,"geometry_index":3282,"location":[4.508324,50.257653]},{"entry":[true,false],"in":1,"bearings":[169,349],"duration":3.9,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.601,"geometry_index":3283,"location":[4.508966,50.255545]},{"entry":[true,false],"in":1,"bearings":[169,349],"duration":29.268,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":27.066,"geometry_index":3284,"location":[4.50921,50.254726]},{"entry":[true,false],"in":1,"bearings":[169,349],"duration":2.911,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":2.687,"geometry_index":3285,"location":[4.51102,50.248555]},{"entry":[true,false],"in":1,"bearings":[169,349],"duration":15.337,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":14.181,"geometry_index":3286,"location":[4.511206,50.247924]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":10.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":9.805,"geometry_index":3288,"location":[4.51216,50.244578]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":17.677,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":16.351,"geometry_index":3291,"location":[4.512815,50.242235]},{"entry":[false,true],"in":0,"bearings":[1,184],"duration":11.4,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":10.545,"geometry_index":3297,"location":[4.513308,50.238331]},{"entry":[false,true],"in":0,"bearings":[10,192],"duration":15.464,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":14.304,"geometry_index":3301,"location":[4.512822,50.23579]},{"entry":[false,true],"in":0,"bearings":[16,196],"duration":18.169,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":16.8,"geometry_index":3304,"location":[4.511454,50.232511]},{"entry":[false,true],"in":0,"bearings":[9,185],"duration":19.225,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":17.28,"geometry_index":3307,"location":[4.509887,50.22861]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":3.76,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.384,"geometry_index":3315,"location":[4.510812,50.224388]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":18.938,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":17.037,"geometry_index":3316,"location":[4.511277,50.223596]},{"entry":[true,false],"in":1,"bearings":[158,339],"duration":21.333,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":18.649,"geometry_index":3318,"location":[4.513615,50.219663]},{"entry":[true,false],"in":1,"bearings":[153,334],"duration":1.76,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.523,"geometry_index":3321,"location":[4.516516,50.215372]},{"entry":[true,false],"in":1,"bearings":[153,333],"duration":8.743,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":7.65,"geometry_index":3322,"location":[4.516794,50.215023]},{"entry":[true,false],"in":1,"bearings":[150,331],"duration":3.448,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.012,"geometry_index":3324,"location":[4.518267,50.213271]},{"entry":[true,false],"in":1,"bearings":[150,330],"duration":55.819,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":50.238,"geometry_index":3326,"location":[4.518878,50.212595]},{"entry":[true,false],"in":1,"bearings":[163,342],"duration":8.624,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":7.978,"geometry_index":3340,"location":[4.527324,50.201166]},{"entry":[true,true,false],"in":2,"bearings":[166,189,344],"duration":16.063,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":14.851,"geometry_index":3343,"location":[4.528183,50.19929]},{"entry":[true,false],"in":1,"bearings":[170,349],"duration":1.146,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.06,"geometry_index":3347,"location":[4.529373,50.195889]},{"entry":[true,false],"in":1,"bearings":[171,350],"duration":19.591,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":18.121,"geometry_index":3348,"location":[4.529443,50.195639]},{"entry":[true,false,false],"in":2,"bearings":[176,336,354],"duration":4.105,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":4.539,"geometry_index":3352,"location":[4.530268,50.19147]},{"entry":[true,false],"in":1,"bearings":[178,356],"duration":27.476,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":25.415,"geometry_index":3353,"location":[4.530364,50.190585]},{"entry":[false,true],"in":0,"bearings":[4,185],"duration":22.676,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":20.976,"geometry_index":3358,"location":[4.530239,50.184626]},{"entry":[false,true],"in":0,"bearings":[11,191],"duration":0.745,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":0.689,"geometry_index":3363,"location":[4.529195,50.179754]},{"entry":[false,true,true],"in":0,"bearings":[11,191,204],"duration":4.254,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.929,"geometry_index":3364,"location":[4.529146,50.179597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[4.52885,50.178673],"geometry_index":3366,"admin_index":6,"weight":21.115,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.007,"turn_weight":1,"duration":22.356,"bearings":[12,193,315],"out":1,"in":0,"entry":[false,true,false]},{"entry":[false,true],"in":0,"bearings":[26,208],"duration":2.523,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":2.271,"geometry_index":3378,"location":[4.525802,50.172289]},{"entry":[false,true,true],"in":0,"bearings":[30,210,246],"duration":12.07,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":10.857,"geometry_index":3380,"location":[4.525343,50.171752]},{"entry":[false,true],"in":0,"bearings":[41,221],"duration":29.202,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":26.276,"geometry_index":3386,"location":[4.522669,50.169503]},{"entry":[false,true],"in":0,"bearings":[33,212],"duration":8.857,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":7.965,"geometry_index":3395,"location":[4.516204,50.164333]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":31.938,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":28.737,"geometry_index":3397,"location":[4.514464,50.162525]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":3.787,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.402,"geometry_index":3404,"location":[4.508526,50.156255]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":1.696,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":1.521,"geometry_index":3407,"location":[4.507764,50.155447]},{"entry":[false,true],"in":0,"bearings":[31,212],"duration":11.708,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":10.53,"geometry_index":3408,"location":[4.507432,50.155095]},{"entry":[false,true],"in":0,"bearings":[29,206],"duration":5.282,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":4.754,"geometry_index":3412,"location":[4.505282,50.152794]},{"entry":[false,true,true],"in":0,"bearings":[16,196,239],"duration":1.657,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":1.485,"geometry_index":3416,"location":[4.504578,50.151675]},{"entry":[false,true,false],"in":0,"bearings":[16,192,331],"duration":4.95,"turn_weight":0.5,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":4.934,"geometry_index":3417,"location":[4.504409,50.151297]},{"entry":[false,true],"in":0,"bearings":[4,182],"duration":38.842,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":34.958,"geometry_index":3422,"location":[4.504149,50.150142]},{"entry":[false,true],"in":0,"bearings":[0,183],"duration":14.059,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":12.653,"geometry_index":3431,"location":[4.504087,50.140936]},{"entry":[false,true],"in":0,"bearings":[18,201],"duration":2.046,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":1.842,"geometry_index":3441,"location":[4.503044,50.137681]},{"entry":[false,true,true],"in":0,"bearings":[22,202,294],"duration":1.876,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":1.67,"geometry_index":3443,"location":[4.502769,50.137226]},{"entry":[false,true],"in":0,"bearings":[22,207],"duration":1.744,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":1.57,"geometry_index":3444,"location":[4.502504,50.136811]},{"entry":[false,true],"in":0,"bearings":[27,209],"duration":13.479,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":12.125,"geometry_index":3445,"location":[4.502204,50.136436]},{"entry":[false,true],"in":0,"bearings":[32,212],"duration":2.041,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":1.837,"geometry_index":3449,"location":[4.499564,50.133645]},{"entry":[false,true,true],"in":0,"bearings":[32,214,301],"duration":2.281,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":2.046,"geometry_index":3450,"location":[4.499156,50.133229]},{"entry":[false,true],"in":0,"bearings":[34,216],"duration":17.394,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":15.654,"geometry_index":3451,"location":[4.498691,50.132781]},{"entry":[false,true],"in":0,"bearings":[31,207],"duration":16.674,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":14.985,"geometry_index":3460,"location":[4.494663,50.12957]},{"entry":[true,false],"in":1,"bearings":[172,353],"duration":1.013,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":0.911,"geometry_index":3472,"location":[4.493503,50.125717]},{"entry":[true,false],"in":1,"bearings":[169,352],"duration":1.8,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.62,"geometry_index":3473,"location":[4.493557,50.125474]},{"entry":[true,false],"in":1,"bearings":[167,349],"duration":1.819,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.62,"geometry_index":3474,"location":[4.493685,50.125054]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":1.543,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.389,"geometry_index":3475,"location":[4.493837,50.124621]},{"entry":[true,false],"in":1,"bearings":[168,347],"duration":3.38,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.042,"geometry_index":3476,"location":[4.493975,50.12425]},{"entry":[true,false],"in":1,"bearings":[166,348],"duration":2.47,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":2.204,"geometry_index":3477,"location":[4.494251,50.123441]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":5.53,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":4.977,"geometry_index":3478,"location":[4.49447,50.122869]},{"entry":[true,false],"in":1,"bearings":[165,346],"duration":2.264,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":2.037,"geometry_index":3481,"location":[4.49496,50.121568]},{"entry":[true,false],"in":1,"bearings":[164,345],"duration":38.152,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":34.337,"geometry_index":3482,"location":[4.495179,50.121035]},{"entry":[false,true],"in":0,"bearings":[4,183],"duration":29.19,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":26.254,"geometry_index":3492,"location":[4.49672,50.111972]},{"entry":[true,false],"in":1,"bearings":[161,344],"duration":4.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.674,"geometry_index":3502,"location":[4.496606,50.104951]},{"entry":[true,false],"in":1,"bearings":[151,335],"duration":3.698,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.307,"geometry_index":3505,"location":[4.497181,50.104039]},{"entry":[true,false],"in":1,"bearings":[147,330],"duration":0.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":0.496,"geometry_index":3507,"location":[4.497871,50.103268]},{"entry":[true,false],"in":1,"bearings":[143,327],"duration":28.575,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":25.718,"geometry_index":3508,"location":[4.497985,50.103157]},{"entry":[true,false],"in":1,"bearings":[137,316],"duration":4.013,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.712,"geometry_index":3515,"location":[4.505248,50.098143]},{"entry":[true,false],"in":1,"bearings":[140,317],"duration":2.055,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.893,"geometry_index":3516,"location":[4.506258,50.097438]},{"entry":[true,false],"in":1,"bearings":[144,320],"duration":3.912,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.61,"geometry_index":3517,"location":[4.50674,50.097067]},{"entry":[true,false],"in":1,"bearings":[149,327],"duration":17.849,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":16.51,"geometry_index":3520,"location":[4.507558,50.096303]},{"entry":[true,false],"in":1,"bearings":[165,345],"duration":4.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.82,"geometry_index":3530,"location":[4.509798,50.092347]},{"entry":[true,false],"in":1,"bearings":[165,345],"duration":1.64,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.511,"geometry_index":3531,"location":[4.510181,50.091403]},{"entry":[true,false],"in":1,"bearings":[165,345],"duration":4.02,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":3.712,"geometry_index":3532,"location":[4.510337,50.091022]},{"entry":[true,false],"in":1,"bearings":[165,345],"duration":30.862,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":28.548,"geometry_index":3533,"location":[4.510719,50.090096]},{"entry":[true,false],"in":1,"bearings":[167,346],"duration":5.588,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":5.168,"geometry_index":3538,"location":[4.513652,50.082945]},{"entry":[true,false],"in":1,"bearings":[172,350],"duration":11.376,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":10.516,"geometry_index":3541,"location":[4.514069,50.081634]},{"entry":[false,true],"in":0,"bearings":[4,188],"duration":6.556,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":6.064,"geometry_index":3547,"location":[4.514211,50.078949]},{"entry":[false,false,true],"in":1,"bearings":[13,23,207],"duration":1.868,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":2,"weight":1.72,"geometry_index":3552,"location":[4.513604,50.077454]},{"entry":[false,true],"in":0,"bearings":[29,212],"duration":3.244,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.001,"geometry_index":3554,"location":[4.513297,50.077085]},{"entry":[false,true],"in":0,"bearings":[32,212],"duration":0.316,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":0.293,"geometry_index":3555,"location":[4.512683,50.07646]},{"entry":[false,true],"in":0,"bearings":[32,211],"duration":10.409,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":9.628,"geometry_index":3556,"location":[4.512621,50.076396]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[30,212],"duration":3.519,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.254,"geometry_index":3558,"location":[4.510712,50.074347]},{"entry":[false,true],"in":0,"bearings":[34,215],"duration":3.924,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.629,"geometry_index":3560,"location":[4.510054,50.073695]},{"entry":[false,true],"in":0,"bearings":[41,225],"duration":5.946,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":5.5,"geometry_index":3564,"location":[4.509233,50.073005]},{"entry":[false,true,true],"in":0,"bearings":[44,221,225],"duration":4.041,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.717,"geometry_index":3567,"location":[4.507792,50.072061]},{"entry":[false,true],"in":0,"bearings":[35,212],"duration":6.067,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":5.612,"geometry_index":3571,"location":[4.506963,50.071385]},{"entry":[false,true],"in":0,"bearings":[23,201],"duration":0.587,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":0.543,"geometry_index":3577,"location":[4.505971,50.070198]},{"entry":[false,true],"in":0,"bearings":[21,200],"duration":16.712,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":15.458,"geometry_index":3578,"location":[4.505894,50.070069]},{"entry":[false,false,true],"in":1,"bearings":[0,4,180],"duration":7.344,"turn_weight":0.75,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":2,"weight":7.704,"geometry_index":3586,"location":[4.504697,50.0662]},{"entry":[true,true,false],"in":2,"bearings":[173,179,354],"duration":15.606,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":14.82,"geometry_index":3590,"location":[4.504828,50.064012]},{"entry":[true,false],"in":1,"bearings":[172,353],"duration":12.494,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":11.852,"geometry_index":3593,"location":[4.505582,50.05995]},{"entry":[true,false],"in":1,"bearings":[164,345],"duration":3.137,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":2.979,"geometry_index":3598,"location":[4.506544,50.05687]},{"entry":[true,true,false],"in":2,"bearings":[159,168,342],"duration":17.818,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":16.906,"geometry_index":3600,"location":[4.50691,50.056119]},{"entry":[true,false,false],"in":2,"bearings":[153,322,333],"duration":7.918,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":8.254,"geometry_index":3611,"location":[4.510365,50.051984]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":33.798,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":31.264,"geometry_index":3616,"location":[4.511562,50.050107]},{"entry":[false,true],"in":0,"bearings":[31,210],"duration":4.404,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":4.073,"geometry_index":3634,"location":[4.509472,50.041802]},{"entry":[false,true],"in":0,"bearings":[25,204],"duration":3.216,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":2.975,"geometry_index":3637,"location":[4.508671,50.040797]},{"entry":[false,true],"in":0,"bearings":[22,197],"duration":22.63,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":20.342,"geometry_index":3639,"location":[4.508168,50.040034]},{"entry":[true,false],"in":1,"bearings":[169,350],"duration":9.13,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":8.217,"geometry_index":3648,"location":[4.507527,50.034641]},{"entry":[true,false],"in":1,"bearings":[155,337],"duration":2.078,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.87,"geometry_index":3654,"location":[4.508557,50.032538]},{"entry":[true,false],"in":1,"bearings":[153,335],"duration":37.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":34.07,"geometry_index":3655,"location":[4.508888,50.032086]},{"entry":[true,false],"in":1,"bearings":[128,307],"duration":7.858,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":7.566,"geometry_index":3665,"location":[4.518941,50.025746]},{"entry":[true,false],"in":1,"bearings":[138,316],"duration":10.354,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":9.319,"geometry_index":3669,"location":[4.521314,50.024374]},{"entry":[true,false],"in":1,"bearings":[143,323],"duration":90.068,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":78.81,"geometry_index":3672,"location":[4.523967,50.022261]},{"entry":[true,false],"in":1,"bearings":[160,339],"duration":1.269,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.11,"geometry_index":3688,"location":[4.540965,50.001611]},{"entry":[true,false],"in":1,"bearings":[161,340],"duration":91.988,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":80.49,"geometry_index":3689,"location":[4.541145,50.001295]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":43.988,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":39.59,"geometry_index":3710,"location":[4.538837,49.977603]},{"entry":[false,true],"in":0,"bearings":[14,195],"duration":3.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":2.715,"geometry_index":3716,"location":[4.53601,49.966239]},{"entry":[false,true,true],"in":0,"bearings":[15,195,203],"duration":7.415,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":6.666,"geometry_index":3717,"location":[4.535685,49.96548]},{"entry":[false,true],"in":0,"bearings":[18,196],"duration":2.146,"turn_weight":2425.741,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":2427.674,"geometry_index":3721,"location":[4.534836,49.96364]},{"entry":[false,true],"in":0,"bearings":[16,198],"duration":2.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":2.305,"geometry_index":3722,"location":[4.534593,49.963104]},{"entry":[false,true],"in":0,"bearings":[18,200],"duration":0.505,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.455,"geometry_index":3723,"location":[4.534271,49.96247]},{"entry":[false,true],"in":0,"bearings":[20,201],"duration":11.241,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":10.117,"geometry_index":3724,"location":[4.5342,49.962347]},{"entry":[false,false,true],"in":1,"bearings":[25,32,217],"duration":90.468,"turn_weight":0.75,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":82.162,"geometry_index":3728,"location":[4.532155,49.959686]},{"entry":[true,true,false],"in":2,"bearings":[148,152,328],"duration":28.885,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":26.711,"geometry_index":3756,"location":[4.534476,49.937924]},{"entry":[false,false,true],"in":1,"bearings":[1,6,188],"duration":38.681,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":36.521,"geometry_index":3767,"location":[4.537524,49.931704]},{"entry":[false,true],"in":0,"bearings":[24,204],"duration":0.515,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.477,"geometry_index":3775,"location":[4.532077,49.92305]},{"entry":[false,true],"in":0,"bearings":[24,204],"duration":30.862,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":28.547,"geometry_index":3776,"location":[4.531997,49.922935]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":34.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":31.471,"geometry_index":3786,"location":[4.526321,49.916527]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,186],"duration":1.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.711,"geometry_index":3795,"location":[4.522326,49.907548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,184],"duration":14.817,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":13.316,"geometry_index":3796,"location":[4.522246,49.907036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":0.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.689,"geometry_index":3797,"location":[4.521779,49.903022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":13.343,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.01,"geometry_index":3798,"location":[4.521759,49.902816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":5.178,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.654,"geometry_index":3799,"location":[4.521334,49.899193]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,185],"duration":63.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":56.818,"geometry_index":3800,"location":[4.521178,49.897778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,202],"duration":1.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.934,"geometry_index":3810,"location":[4.514746,49.881098]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,200],"duration":31.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":27.984,"geometry_index":3811,"location":[4.514578,49.880829]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":6.493,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.682,"geometry_index":3818,"location":[4.510901,49.872231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":20.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":18.113,"geometry_index":3821,"location":[4.510522,49.870429]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[0,178],"duration":1.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.137,"geometry_index":3825,"location":[4.51014,49.864655]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,358],"duration":38.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":33.826,"geometry_index":3826,"location":[4.510156,49.864308]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,349],"duration":12.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.646,"geometry_index":3831,"location":[4.512532,49.853722]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[174,182,353],"duration":5.392,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.846,"geometry_index":3833,"location":[4.513377,49.850177]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.289,"geometry_index":3835,"location":[4.513575,49.848721]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,357],"duration":29.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":26.834,"geometry_index":3836,"location":[4.513604,49.848331]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.512899,49.840175],"geometry_index":3844,"admin_index":7,"weight":6.789,"is_urban":false,"turn_weight":0.5,"duration":6.807,"bearings":[7,187,353],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":21.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.404,"geometry_index":3845,"location":[4.512596,49.838661]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,184],"duration":6.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.691,"geometry_index":3847,"location":[4.511682,49.833856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,181],"duration":130.353,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":114.059,"geometry_index":3848,"location":[4.511476,49.832113]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,332],"duration":0.333,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.291,"geometry_index":3874,"location":[4.533386,49.800195]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,332],"duration":4.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.113,"geometry_index":3875,"location":[4.533455,49.800112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,333],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.59,"geometry_index":3877,"location":[4.534361,49.798989]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,332],"duration":9.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.234,"geometry_index":3878,"location":[4.534718,49.79856]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,325],"duration":3.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.73,"geometry_index":3882,"location":[4.536767,49.796456]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,321],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.25,"geometry_index":3883,"location":[4.537556,49.79582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,319],"duration":0.462,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.416,"geometry_index":3884,"location":[4.538235,49.795314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,317],"duration":3.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.756,"geometry_index":3885,"location":[4.538364,49.795224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,316],"duration":1.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.029,"geometry_index":3886,"location":[4.539238,49.794636]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,313],"duration":11.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.137,"geometry_index":3887,"location":[4.539583,49.794426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[121,302],"duration":0.366,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.33,"geometry_index":3891,"location":[4.543359,49.792574]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,301],"duration":56.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":49.311,"geometry_index":3892,"location":[4.543484,49.792525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,283],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.6,"geometry_index":3903,"location":[4.570653,49.787586]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,284],"duration":6.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.506,"geometry_index":3904,"location":[4.570922,49.787542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,282],"duration":0.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.57,"geometry_index":3905,"location":[4.573471,49.787185]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,281],"duration":21.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":18.605,"geometry_index":3906,"location":[4.573737,49.787151]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":0.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.33,"geometry_index":3911,"location":[4.582446,49.786372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":13.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.529,"geometry_index":3912,"location":[4.582602,49.78636]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,277],"duration":3.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.963,"geometry_index":3914,"location":[4.58795,49.785914]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,279],"duration":4.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.98,"geometry_index":3915,"location":[4.58927,49.785786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,281],"duration":0.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.432,"geometry_index":3917,"location":[4.591037,49.785577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,281],"duration":1.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.049,"geometry_index":3918,"location":[4.591225,49.785554]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,282],"duration":2.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.266,"geometry_index":3919,"location":[4.59169,49.78549]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":0.706,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.635,"geometry_index":3920,"location":[4.592662,49.785346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,283],"duration":2.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.68,"geometry_index":3921,"location":[4.592927,49.785306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":5.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.674,"geometry_index":3922,"location":[4.594089,49.785118]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,287],"duration":1.558,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.402,"geometry_index":3924,"location":[4.596092,49.784745]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,287],"duration":3.716,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.338,"geometry_index":3925,"location":[4.596688,49.78463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,289],"duration":0.392,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.354,"geometry_index":3927,"location":[4.598039,49.784333]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,289],"duration":47.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":43.111,"geometry_index":3928,"location":[4.598187,49.7843]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,309],"duration":76.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":68.635,"geometry_index":3939,"location":[4.613908,49.778576]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[121,300],"duration":29.132,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":26.211,"geometry_index":3950,"location":[4.6371,49.767588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,312],"duration":1.592,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.416,"geometry_index":3958,"location":[4.646192,49.763326]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,312],"duration":0.839,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.756,"geometry_index":3959,"location":[4.646659,49.763054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,312],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.857,"geometry_index":3960,"location":[4.64691,49.762906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,312],"duration":1.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.912,"geometry_index":3961,"location":[4.647184,49.762745]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,311],"duration":1.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.762,"geometry_index":3962,"location":[4.647487,49.762572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,315],"duration":15.903,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":14.312,"geometry_index":3963,"location":[4.648044,49.762217]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,319],"duration":1.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.557,"geometry_index":3968,"location":[4.652324,49.759214]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,322],"duration":29.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":26.137,"geometry_index":3969,"location":[4.652747,49.75887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":41.687,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":37.512,"geometry_index":3973,"location":[4.658615,49.753567]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":17.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":15.994,"geometry_index":3981,"location":[4.668352,49.746678]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,318],"duration":92.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":82.855,"geometry_index":3986,"location":[4.673764,49.743277]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.408,"geometry_index":4003,"location":[4.698091,49.723855]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,340],"duration":11.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.25,"geometry_index":4004,"location":[4.69815,49.723748]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":2.804,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.523,"geometry_index":4008,"location":[4.699408,49.720911]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,350],"duration":1.315,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.184,"geometry_index":4010,"location":[4.69964,49.720203]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[169,175,350],"duration":4.953,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.439,"geometry_index":4011,"location":[4.699735,49.719869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.832,"geometry_index":4014,"location":[4.700046,49.718653]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,355],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.539,"geometry_index":4017,"location":[4.700319,49.717049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,357],"duration":6.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.002,"geometry_index":4018,"location":[4.700331,49.716907]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,357],"duration":9.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.615,"geometry_index":4020,"location":[4.700447,49.715447]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.700372,49.71335],"geometry_index":4023,"admin_index":7,"weight":7.098,"is_urban":false,"turn_weight":1,"duration":6.781,"bearings":[3,184,352],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":93.948,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":84.553,"geometry_index":4025,"location":[4.700158,49.711788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,237],"duration":1.337,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.203,"geometry_index":4062,"location":[4.682581,49.695021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":9.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.455,"geometry_index":4065,"location":[4.682139,49.694825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,217],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.172,"geometry_index":4072,"location":[4.679376,49.693144]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,216],"duration":7.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.541,"geometry_index":4073,"location":[4.679062,49.692873]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.677325,49.691312],"geometry_index":4074,"admin_index":7,"weight":6.125,"is_urban":false,"turn_weight":0.5,"duration":6.271,"bearings":[30,36,214],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":28.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.217,"geometry_index":4075,"location":[4.675895,49.689944]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":0.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.428,"geometry_index":4080,"location":[4.669445,49.683824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":9.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.27,"geometry_index":4081,"location":[4.669328,49.683729]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,225],"duration":2.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.16,"geometry_index":4084,"location":[4.666854,49.681939]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[45,225,235],"duration":33.63,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.262,"geometry_index":4085,"location":[4.666171,49.681495]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[30,47,227],"duration":7.996,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":2,"weight":7.189,"geometry_index":4099,"location":[4.656589,49.675531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":0.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.432,"geometry_index":4103,"location":[4.654389,49.674005]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.68,"geometry_index":4104,"location":[4.654275,49.673907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":5.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.172,"geometry_index":4105,"location":[4.654094,49.67375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":0.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.561,"geometry_index":4108,"location":[4.652674,49.672571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,223],"duration":33.181,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":29.863,"geometry_index":4109,"location":[4.652515,49.672446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":11.14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.025,"geometry_index":4124,"location":[4.642399,49.666774]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":65.581,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":59.023,"geometry_index":4126,"location":[4.640022,49.664266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,204],"duration":9.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.256,"geometry_index":4142,"location":[4.631666,49.647974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,207],"duration":1.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.717,"geometry_index":4143,"location":[4.630154,49.645809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":2.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.332,"geometry_index":4145,"location":[4.62982,49.645382]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[30,210,220],"duration":0.042,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.031,"geometry_index":4149,"location":[4.629334,49.64482]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,212],"duration":2.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.422,"geometry_index":4150,"location":[4.629324,49.644809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,217],"duration":9.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.367,"geometry_index":4152,"location":[4.628752,49.644229]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.626097,49.642593],"geometry_index":4161,"admin_index":7,"weight":7.646,"is_urban":false,"turn_weight":0.5,"duration":7.947,"bearings":[48,56,237],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":27.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":24.709,"geometry_index":4164,"location":[4.623361,49.641435]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,269],"duration":104.846,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":91.732,"geometry_index":4180,"location":[4.612697,49.639259]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":0.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.383,"geometry_index":4234,"location":[4.571602,49.641872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,234],"duration":22.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.32,"geometry_index":4235,"location":[4.571453,49.641809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":26.27,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":22.98,"geometry_index":4245,"location":[4.565106,49.637759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.65,"geometry_index":4255,"location":[4.558916,49.632185]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":84.888,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":74.277,"geometry_index":4256,"location":[4.558776,49.632034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,220],"duration":0.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.834,"geometry_index":4279,"location":[4.540686,49.614429]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,222],"duration":34.868,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.51,"geometry_index":4280,"location":[4.540485,49.614276]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,234],"duration":0.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.459,"geometry_index":4293,"location":[4.530216,49.608033]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,232],"duration":26.179,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":23.561,"geometry_index":4294,"location":[4.530045,49.607952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":0.403,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.363,"geometry_index":4303,"location":[4.521503,49.604132]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":8.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.883,"geometry_index":4304,"location":[4.521357,49.604075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.1,"geometry_index":4305,"location":[4.518378,49.602875]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":0.706,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.635,"geometry_index":4306,"location":[4.517955,49.602708]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":6.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.227,"geometry_index":4307,"location":[4.51772,49.602614]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.811,"geometry_index":4308,"location":[4.515408,49.601694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":0.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.191,"geometry_index":4309,"location":[4.514734,49.601426]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":0.712,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.641,"geometry_index":4310,"location":[4.514662,49.601397]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":0.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.223,"geometry_index":4311,"location":[4.514447,49.601314]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":27.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.158,"geometry_index":4312,"location":[4.514367,49.601282]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":2.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.352,"geometry_index":4316,"location":[4.505129,49.597443]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,231],"duration":22.997,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.68,"geometry_index":4317,"location":[4.504297,49.597047]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":1.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.143,"geometry_index":4323,"location":[4.497689,49.593082]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,222],"duration":7.221,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.48,"geometry_index":4324,"location":[4.497356,49.592847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.619,"geometry_index":4327,"location":[4.495428,49.59136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":52.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":46.949,"geometry_index":4328,"location":[4.494966,49.590981]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":1.278,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.15,"geometry_index":4334,"location":[4.483019,49.579251]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":7.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.922,"geometry_index":4335,"location":[4.482732,49.57896]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":120.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":105.268,"geometry_index":4336,"location":[4.48096,49.577191]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,240],"duration":0.366,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.32,"geometry_index":4367,"location":[4.448929,49.552009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,238],"duration":87.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":76.537,"geometry_index":4368,"location":[4.448795,49.551959]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":0.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.18,"geometry_index":4397,"location":[4.424456,49.534138]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":31.839,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":27.859,"geometry_index":4398,"location":[4.424417,49.534091]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,224],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.795,"geometry_index":4409,"location":[4.41707,49.526898]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":37.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":33.004,"geometry_index":4410,"location":[4.416803,49.526717]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":6.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.072,"geometry_index":4424,"location":[4.404004,49.520427]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":0.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.205,"geometry_index":4426,"location":[4.401594,49.519414]},{"entry":[false,true],"in":0,"bearings":[59,240],"duration":11.839,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":10.654,"geometry_index":4427,"location":[4.401516,49.519383]},{"entry":[false,true],"in":0,"bearings":[73,256],"duration":57.838,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":53.492,"geometry_index":4434,"location":[4.397474,49.518256]},{"entry":[false,true],"in":0,"bearings":[115,295],"duration":0.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.57,"geometry_index":4453,"location":[4.374756,49.522728]},{"entry":[false,true,true],"in":0,"bearings":[115,291,298],"duration":18.024,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":17.1,"geometry_index":4454,"location":[4.374562,49.522787]},{"entry":[false,false,true],"in":1,"bearings":[63,79,254],"duration":5.812,"turn_weight":0.75,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":6.244,"geometry_index":4462,"location":[4.368405,49.52308]},{"entry":[false,true],"in":0,"bearings":[73,253],"duration":51.778,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":49.189,"geometry_index":4464,"location":[4.366405,49.522688]},{"entry":[false,false,true],"in":1,"bearings":[32,47,224],"duration":5.797,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":6.236,"geometry_index":4473,"location":[4.349152,49.518275]},{"entry":[false,true],"in":0,"bearings":[37,217],"duration":0.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.902,"geometry_index":4477,"location":[4.347836,49.517285]},{"entry":[false,true],"in":0,"bearings":[37,213],"duration":1.543,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.465,"geometry_index":4478,"location":[4.347632,49.517111]},{"entry":[false,true],"in":0,"bearings":[33,212],"duration":16.418,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":15.598,"geometry_index":4479,"location":[4.34734,49.516818]},{"entry":[false,true],"in":0,"bearings":[15,195],"duration":1.2,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.141,"geometry_index":4485,"location":[4.345299,49.513354]},{"entry":[false,true],"in":0,"bearings":[15,195],"duration":7.397,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":7.027,"geometry_index":4486,"location":[4.345194,49.513095]},{"entry":[false,true],"in":0,"bearings":[12,189],"duration":1.996,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.896,"geometry_index":4488,"location":[4.344554,49.511468]},{"entry":[false,true],"in":0,"bearings":[9,185],"duration":23.542,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":22.365,"geometry_index":4489,"location":[4.344443,49.511014]},{"entry":[true,false],"in":1,"bearings":[146,327],"duration":1.543,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.504,"geometry_index":4499,"location":[4.346894,49.506174]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":12.36,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":12.051,"geometry_index":4500,"location":[4.347199,49.50588]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":0.867,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.846,"geometry_index":4501,"location":[4.349592,49.503581]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":15.654,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":15.262,"geometry_index":4503,"location":[4.349744,49.503434]},{"entry":[true,false],"in":1,"bearings":[150,329],"duration":1.739,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.695,"geometry_index":4505,"location":[4.352712,49.500541]},{"entry":[true,true,false],"in":2,"bearings":[156,166,335],"duration":10.808,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":10.529,"geometry_index":4507,"location":[4.352987,49.500202]},{"entry":[true,false],"in":1,"bearings":[177,353],"duration":0.606,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.592,"geometry_index":4511,"location":[4.353928,49.497924]},{"entry":[true,false],"in":1,"bearings":[179,357],"duration":2.872,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":2.729,"geometry_index":4512,"location":[4.35394,49.497785]},{"entry":[false,true],"in":0,"bearings":[2,185],"duration":0.752,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.715,"geometry_index":4514,"location":[4.353921,49.497151]},{"entry":[false,true],"in":0,"bearings":[5,187],"duration":14.662,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":13.562,"geometry_index":4515,"location":[4.3539,49.496983]},{"entry":[false,false,true],"in":1,"bearings":[24,29,208],"duration":260.844,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":242.012,"geometry_index":4526,"location":[4.351631,49.493273]},{"entry":[false,true],"in":0,"bearings":[53,232],"duration":1.729,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.6,"geometry_index":4561,"location":[4.283987,49.444538]},{"entry":[false,true],"in":0,"bearings":[50,225],"duration":23.797,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":21.391,"geometry_index":4564,"location":[4.283459,49.444257]},{"entry":[false,false,true],"in":1,"bearings":[0,8,182],"duration":34.994,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":31.469,"geometry_index":4573,"location":[4.279817,49.439417]},{"entry":[false,true],"in":0,"bearings":[34,214],"duration":49.902,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":44.912,"geometry_index":4582,"location":[4.277498,49.431521]},{"entry":[false,true,true],"in":0,"bearings":[32,213,220],"duration":19.166,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":17.242,"geometry_index":4584,"location":[4.267422,49.42182]},{"entry":[false,false,true],"in":1,"bearings":[25,34,215],"duration":7.098,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":6.381,"geometry_index":4588,"location":[4.263915,49.418338]},{"entry":[false,true],"in":0,"bearings":[36,214],"duration":143.49,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":125.555,"geometry_index":4591,"location":[4.262357,49.41691]},{"entry":[false,true],"in":0,"bearings":[33,213],"duration":0.777,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.68,"geometry_index":4600,"location":[4.231629,49.387647]},{"entry":[false,true],"in":0,"bearings":[33,212],"duration":104.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":91.006,"geometry_index":4601,"location":[4.231461,49.38748]},{"entry":[false,true],"in":0,"bearings":[19,196],"duration":30.359,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":27.305,"geometry_index":4618,"location":[4.208509,49.363175]},{"entry":[false,true],"in":0,"bearings":[19,200],"duration":0.455,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.408,"geometry_index":4632,"location":[4.20606,49.355031]},{"entry":[false,true],"in":0,"bearings":[20,200],"duration":2.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":2.025,"geometry_index":4633,"location":[4.206002,49.354925]},{"entry":[false,true],"in":0,"bearings":[20,201],"duration":0.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.646,"geometry_index":4634,"location":[4.205696,49.354374]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":0.42,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.389,"geometry_index":4635,"location":[4.205596,49.354202]},{"entry":[false,true],"in":0,"bearings":[21,201],"duration":0.455,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.42,"geometry_index":4636,"location":[4.205538,49.354105]},{"entry":[false,true],"in":0,"bearings":[21,200],"duration":10.062,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":9.291,"geometry_index":4637,"location":[4.205474,49.353998]},{"entry":[false,true],"in":0,"bearings":[33,216],"duration":8.762,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":8.596,"geometry_index":4642,"location":[4.203862,49.351729]},{"entry":[false,true],"in":0,"bearings":[55,237],"duration":5.541,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":5.125,"geometry_index":4648,"location":[4.201433,49.350185]},{"entry":[false,true],"in":0,"bearings":[68,251],"duration":0.594,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.549,"geometry_index":4653,"location":[4.199505,49.349548]},{"entry":[false,true],"in":0,"bearings":[71,254],"duration":49.068,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":44.162,"geometry_index":4654,"location":[4.199281,49.349498]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":0.793,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.713,"geometry_index":4670,"location":[4.184644,49.34273]},{"entry":[false,true],"in":0,"bearings":[38,219],"duration":16.102,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":14.484,"geometry_index":4671,"location":[4.184459,49.342578]},{"entry":[false,true],"in":0,"bearings":[39,218],"duration":0.664,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.598,"geometry_index":4672,"location":[4.180527,49.33938]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":10.623,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":9.561,"geometry_index":4673,"location":[4.180362,49.339243]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":6.889,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":6.193,"geometry_index":4674,"location":[4.177793,49.337121]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":91.094,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":81.984,"geometry_index":4675,"location":[4.176135,49.335745]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":1.377,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.238,"geometry_index":4676,"location":[4.154084,49.317548]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":6.184,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":5.559,"geometry_index":4677,"location":[4.153751,49.317273]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":15.105,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":13.596,"geometry_index":4679,"location":[4.152255,49.316045]},{"entry":[false,true],"in":0,"bearings":[38,218],"duration":6.02,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":5.91,"geometry_index":4680,"location":[4.148587,49.313033]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":68.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":61.561,"geometry_index":4681,"location":[4.147117,49.31182]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,204],"duration":1.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.617,"geometry_index":4696,"location":[4.13173,49.297089]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,204],"duration":75.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":69.422,"geometry_index":4697,"location":[4.131442,49.296667]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":0.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.508,"geometry_index":4734,"location":[4.112219,49.282204]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,242,253],"duration":18.281,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.904,"geometry_index":4735,"location":[4.112022,49.282137]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.10553,49.279894],"geometry_index":4736,"admin_index":7,"weight":8.703,"is_urban":false,"turn_weight":0.5,"duration":8.877,"bearings":[46,62,242],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":135.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":128.748,"geometry_index":4737,"location":[4.102231,49.278762]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":1.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.244,"geometry_index":4771,"location":[4.08163,49.24642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":7.807,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.801,"geometry_index":4772,"location":[4.081491,49.246091]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9,"geometry_index":4775,"location":[4.080496,49.244094]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":8.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.287,"geometry_index":4779,"location":[4.079145,49.241835]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.648,"geometry_index":4780,"location":[4.077824,49.239818]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":20.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.701,"geometry_index":4781,"location":[4.077724,49.239667]},{"entry":[false,false,true],"in":1,"bearings":[18,25,205],"duration":8.287,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":9.443,"geometry_index":4784,"location":[4.074607,49.235058]},{"entry":[false,true],"in":0,"bearings":[24,206],"duration":6.92,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":7.266,"geometry_index":4786,"location":[4.073433,49.233368]},{"entry":[false,true],"in":0,"bearings":[46,225],"duration":0.24,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.252,"geometry_index":4790,"location":[4.072039,49.232121]},{"entry":[false,true],"in":0,"bearings":[45,228],"duration":5.314,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":5.58,"geometry_index":4791,"location":[4.071977,49.232081]},{"entry":[false,true,true],"in":0,"bearings":[55,236,245],"duration":9.639,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":10.354,"geometry_index":4795,"location":[4.070622,49.231402]},{"entry":[false,true],"in":0,"bearings":[36,214],"duration":1.824,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":1.961,"geometry_index":4804,"location":[4.068528,49.230184]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"in":0,"bearings":[33,210],"duration":6.811,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":7.322,"geometry_index":4806,"location":[4.068244,49.229905]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"in":0,"bearings":[18,197],"duration":4.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":4.623,"geometry_index":4812,"location":[4.067507,49.228751]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"in":0,"bearings":[17,199],"duration":4.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":4.623,"geometry_index":4813,"location":[4.067167,49.228008]},{"entry":[false,true,true],"in":0,"bearings":[19,191,201],"duration":9.854,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"turn_duration":0.03,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":10.561,"geometry_index":4814,"location":[4.066783,49.227279]},{"entry":[false,true],"in":0,"bearings":[16,197],"duration":0.412,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":0.441,"geometry_index":4817,"location":[4.066083,49.225627]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[17,196],"duration":2.117,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":2.277,"geometry_index":4818,"location":[4.066049,49.225555]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[16,196],"duration":3.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"weight":3.869,"geometry_index":4819,"location":[4.065894,49.225212]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"bearings":[17,198],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":7,"out":1,"geometry_index":4821,"location":[4.065603,49.22457]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Lyon"}],"type":"off ramp","modifier":"left","text":"Paris / Lyon"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"29"},{"type":"icon","text":"A 34"}],"type":"off ramp","modifier":"left","text":"Exit 29 A 34"},"distanceAlongGeometry":159340.359}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Route de Philippeville/N5/E 420. Continue on E 420.","modifier":"slight right","bearing_after":158,"bearing_before":130,"location":[4.473221,50.343117]},"speedLimitSign":"vienna","name":"Route de Philippeville","weight_typical":5304.459,"duration_typical":5831.568,"duration":5831.426,"distance":159340.359,"driving_side":"right","weight":7730.076,"mode":"driving","ref":"N5; E 420","geometry":"yku__Biw_pGtBaBbDmAdo@uHzUyBjxA{Pp|@}JlX{CxsAmOvh@wF`xCq[hm@uGjyDwa@b_@iEnfAcMXCrv@}Iz[uDjn@iHdkHq}@tqEoi@lsKorAryAuQhNeBhwHc~@tzEik@te@wFbAMfn@oH|LyAxxBeY~MgBzk@kHxZgBn\\e@|WzAnOxBjEl@fTtDxCh@r[jIbO|FjAd@nGdC~MrFlO|Fv`Cr}@b]`MrNnE`XnGtU|Ez\\vEpY~BB?hXpAzT`@vTKb_@}@`TwA|RmBnSqChToErU_FxPcF|OqEjZ}LzWqLhWaNfQoKrPaLpQ}MlQoNnQ}OxO_PhPqPrMyOrPiTlN{R`N}RpNeVfMeTzMeWhL}UzL{YhJeW|Ja[|HgYlHqZpGm[rFyZpF{]fE}ZzD_^~By\\~Bk^dPqgDxPy`DvEs}@fCu`@~Dq^zFya@pKai@hJu^hIeUxK}WhL_UlLiQtEiGhSgVhRmRfPoM`RkK`R_IbPcFhUkFhSmCnSoAbROvUv@`SnBlQrC`SdF|MzExP|GfPdJ|OzK|M~JhVvV|MdL|NtJjPrHnO`F~LpCrQ`CbT`@dOYbOaAlNqCvTgGnPoHhVyNnUkPfrA_aAjcAwt@fuAecAlg@}^zx@gi@dUuOlfAyu@f\\eUfPwJ`@SfMsGdR}G`a@wKxRkEvbCcg@dr@gNt`KcpBlf@sJllCch@tbAoQly@aOtmAgUhHsA`l@oKbe@qGzc@aE|d@{B`d@s@|o@x@hh@lCpd@rEfc@vFtj@pJh\\~Hf]rJjpCz~@lrDjnApc@vJxZxEh^dCvb@d@te@{Apb@}Exc@{Ihc@gNbc@mRhLyFnp@a\\htCsvAn_Boy@tuAwt@`nByiAleAws@xTkPj^}WbmAcbAj]qZzJsIz`BivAj}@ow@`n@kh@do@cj@~x@yn@l_@uW`~@{l@|KwG~{@ag@t}@gf@ls@}]lf@wTzf@oT|c@}Qd^uMf^mMxu@qWrm@eQhc@yL~gAuWrw@uPrNkCxu@iMde@}Gnl@gH`yBaRhv@_Evm@aB`gA_BzvAZ~iA~BvyA~Gpv@pF~rB`Vvy@pLlg@~Iv`@`IxH`BtXzF`_@rIrc@tLni@lOtv@jVHBpuBpq@tShHlW`KfWbLrMpGnVjNhRtLnQdMxVvRvH|GvMnLxT`VpSbUnU|Y~\\|f@|]ph@hgAzaBpjAxdBb]~e@r]rd@hXb]pXj\\hTnVlTpUzSdTdg@pf@xgAddA~tAhpAjgApcAbnAziAlg@je@x\\`[p`Af}@pQtPfPlOn\\tZvBnB~TvSpg@~e@r]p[do@pl@lWfTxS~NzVbNdMfG`JrCrVpIlJvBlJ`BjPjChN`BrO~@rSh@bUEjv@FhfAAjg@Fj]?h]FhxEZpvAd@vENzShAzQfBtWfE~WfFvV`GnV`HpOhFjOxF`ZjLlLzF~MhH|XpOlVvQdShPdQtOjz@lw@tkApiA~XnX~Z`\\rPbSzPtTzOtTz`A`{ArPzWzPdUjObR|LhMrOtNdIdGvRjNbTlLnUdKbTpHbTjF`V`EvVtBtUp@~UMzTcArIkAdNkBfY_G`ZoHdVsGpq@gPvb@uL~LkDnx@eTxHaCh`@uLfkBkp@djBwo@dUqHbTqEpTmCxTeA~U@tj@xB|aB~HtaBtIlp@`Cfm@nClcAjE`dAxFjyA`H|URfUiAjUuCbUgFpXaJ`PiH|RgK~RkMxYoVjTsR|EcF|SgWpRaZt}@c{Avn@ueAx`Aa_B`_Aw}Ap_@_p@`k@c~@dVc]jMeObOqPfPkPfPeOdQaNlR_NnQ{KzOcJ|OqHfOmGdPcGfO_FjyAsc@~y@}VxVwHzx@{VvuDkjAt^_LpjBkk@|cAa[~v@oUt^eJ|^}HhQ}CbJkA`OsBve@aDxd@s@fi@l@xTjA|Z|DhZpHnLrEpJ~EbLxGnJ`HpJbI`f@je@~BzBpvAdqAng@bd@jQvPjUjVtLvM`M~NbGlIfFbI~I|Onc@xv@nJhPpJzNhGvIzIxKnJjKvLnLdLtK|IxHzIjGtKhHvKhG`GxCpLpF|S`Ib\\|Kje@pM|c@tJpb@pGx_@`Ena@jBpp@Ab[a@r]sAl[mCnaAwK`_Dk\\hZ_DjZgE`u@oMvm@oMpj@aOvSyGbIiCxc@qQ`a@}RjSyKtWoPh_@kXtWiS~WsW`W}XhQyRpSmS~QaPjNcKnRoNx]}TzTaMt\\oOlNyE|LcEzTgGjT}Dbe@cH`OcBrQcAxNYnNW~ZHbYj@lYdCb]dF~k@~L|e@rOh_@rQdh@bX|g@``@to@jm@xLdKvg@d_@fGtDlXpPfUzLnl@rTx`@pKfg@hK`YfCr\\lBhj@hCr_@u@vw@{Gb\\{F`IwAn]{JxRgGr\\aNnTaL|RkLf[uSll@oc@xn@in@vb@gi@rYyd@zUkb@`a@{v@rMaX`Wkk@haBeoEtm@q~ApZcu@rRob@|Qq\\rRc\\xY}d@z[md@jkAmyAl~C{{Dp^kb@jdDo`EvrBucCt_@q`@f~@uy@`m@}d@pz@_h@`t@k`@hq@qY`sCoeA`cAib@baA}c@xqBucA`dAkh@ln@_[vRgJ|n@kX|XsKd_Bof@lx@uRvy@cKrg@eBfg@mBdp@t@`}@tFrx@xJxf@jI|bAnV|}C~_AjtCb{@ja@vJv}@|NhqBvThiAhIzlBzGzyAtFdi@tBxhAnEhvA|MrqEzh@p`Cvd@prArZj|B~n@ln@hSB@dNnEzoAbd@xQjHn`@dNrf@bStFlChe@nUt`@tU~t@xj@hg@xe@df@rl@dj@~m@dbCltC~mAdzAdf@xc@vb@~Ylf@dWrg@~Sfe@~Kvt@jI~Db@|h@n@hs@eE~d@yHzh@uNvc@{QfYyOt`@eXv\\yY|a@s`@tDqDrn@ol@ps@ks@|fAucA~sB}mBd{AixA~mAgjA`LuKft@wr@~a@_`@v[}Xdc@uZnVoOh[mMh^iKh[mFxd@uFvl@Kpg@rEvG|@jW`Er[xH|`@vOne@dXf~Ar`AzcDlqBpqCrcBdF~C`iArr@h_Aln@ht@vl@zg@rg@vi@lk@va@zd@`]t]fQjQzQfQfVtR|jAt}@br@|a@|{@jd@~nAfg@h|@bXny@~Qrn@rJtk@fH`pAlH~^~CzyFd\\zKf@laFpYlwAvH~mDpTzuBlNxiBnW|gBd`@zfBrh@baAv^b{@`_@ddBf~@~gD~qBpc@rVxOnI`bAje@taAnf@tkBpr@v_AxZz`ArUbpBzc@dr@`LjYtE~gAzMfLbAvcBfOtlBvE`{@l@jyAQtT_@rlBcJp{AcL|lAiN~zCaj@n`F{`AjpB}]dkB{Tzf@gEbr@cEjWy@jk@{Ahv@aA|eAj@to@dA~iAvErt@vFf`AlJp_BnRr}A|QzbG`r@lg@`E|kBzKfeAhAreB}CbtBgKhtAsOhlAkR`yA}Y`lAe\\d`AuWx@U`yAeo@`zAes@|hA{n@zlBcoAruAejAzrAsmAvgAkjAplBw{BxmE}nFhcA{kAt`@ag@t`BkpBb_AkgAti@mj@x\\e\\xf@i`@lFcEdDiCn]cXtf@o^xYiUfa@a\\pb@u`@`YiYrb@_f@vf@ip@r^mi@rDaGvc@su@bLqTb]at@h[{u@xa@_hAnUav@`ByF|Skv@tRaz@~Ogy@bSmiA|R}xA~Iy{@zUmwCt]_dEzo@yzHzgAuvMtWgbDvAyOhUi~CbAsOjFo`AvEk}@`Cmi@`GoxAlUo{GVwHnQy~EjHmmB~FoqA~Ec}@`Eio@l@wJ~Ba\\~Gw{@nAqOvJsgAlCsZzQq`BdFgd@xFsc@vIyn@`AgHpG_e@fQ_iAvRmhAvd@_bCt^kaB`b@udBx`@swAdb@}tAvU{u@dn@}gBvbAubCza@ybA||@qgBpcBshDd|@wiBjgAgfCdf@smAhg@urA`fAk~Ct{@atCliAajEbeAu~Dhd@o~ArX_~@v`@ykAlY}y@l\\uz@ri@itAfa@y_A|c@e_A~Oe\\fHuN`IcPxI}QdUya@v[{l@`_@}o@~[qg@b\\}f@vcAe{AnTmYtl@ot@pu@s|@v~CgnDlfAkkA|r@ov@zw@yaAjy@sgAnt@ugAvaAwbBbUya@hm@ujAtiAuaCla@i{@zh@ofApf@w}@dx@{vAnf@yv@fGsJ|rAaoBdlB{xChhBe`Db_Cc{EbmB}|Dv~@ycBz}@cwAjfAkxAx|@cdAfp@or@~u@gt@lq@gk@ry@wo@`hAss@lx@kd@h`Amc@tEuBzs@aZlk@cSnk@wQnb@uK~YsHfP{CzS}DrZ_Gf[_FbSmCdQ_Czd@cFdk@}DzGW~OcAfiAcDzp@Svo@lAl_@zAdj@|Clu@lGdg@nFxh@`Hzm@bM`o@lNh`@`Khr@nS~v@`WbfAf_@nzD~~Azf@~SlTnKxTvM~_@|Wt^t[x[x\\bZr^fOjT~Rl[pK`RdMjV|Pr_@fQjc@tK~ZpK~]zPpo@~F`W`GpYdLdo@zNjaApKft@xFj^lIfg@tGr^lKpe@fGdV`GnThKn]p@vBpEnNbCjG~H`T~GvPpLvWpL`WvMtVhVba@zSfZ|OrRp`BpkBntAjxAtyBf_CnhCnoCpu@`x@nv@by@fKdN|DhFnm@dy@zVp_@nh@z~@vZti@xWfe@~Ylh@jYni@zXxn@~Xzx@vTvj@xMf]jPj`@pRt\\bRhXvj@|r@~b@hk@l]xl@zf@paAlZbm@vY~f@lTzYvRnWbEbFxHhJbFfGnf@bm@`Zja@xF|HjXbd@tOrZxPd^`Sph@~W~y@fNnf@dn@`{B~Szn@|Slj@pR|_@lR~\\tY~b@lGpHlTvVrp@ro@bwAprArcA~_A~fAhcAx_@h\\z]t[tp@lh@da@nXnz@jf@zu@~]np@xVfu@lT|gAbVrhC~Y|uA|Ohr@pMdkA`_@ho@~XfjBthAhfCn}AFDlYtSJH\\TfNpKpQxOTRh]z[|DzENP|GhIlO|SnM`S|Ql\\jOz[jN~\\nHxTt@|B|Txs@dU`s@f[baA~Qhn@zM|f@bLle@pJ`d@hIdb@dJri@xJ|p@dIlq@|Fxj@|Fds@fD~h@pCbj@xA~b@pApd@v@db@b@tb@J|`@Eb_@[lg@s@zd@kBvp@mCtp@iCre@mDbf@mCr[{Efg@_Ef_@{Fxc@eHfg@iKdo@aKvl@w}@blFe}@~jFwXr_BwTnrAaGh_@wEt\\}Ffa@yEn_@aGvi@cFhj@_Dz`@mCr`@yCdj@uAp\\gBfm@qAxi@q@zo@I|ZCb^Pjb@`@l_@~Ajx@jAr`@rAd^lBh]vCjh@jE|j@hIp|@nD~ZbDvXpGnc@tIdj@zKbo@`H|\\vNfp@hKpa@pIn[rP`k@tMja@|BhHhRrg@BHrPfb@~Qva@rWhj@v]pn@z_@tn@tg@pv@bi@tw@~X|a@h`@fk@~_@dk@xSfZrQjVha@~g@va@ff@vXlZhYbYrt@xq@zbAd~@lHvGx[fZl|EnmE`u@~q@fTfRvrAvnAzoA~hAbk@bh@dp@rl@~|@vy@td@bd@|U~U|c@xd@|V|X|V|WbWbZ~e@`j@lqAx_Bp\\`c@p]pe@bU`[v]|g@fQhVp_@rk@pHpKj_@jl@nQ|ZnPxXjWdb@hf@lz@t]no@r@rA~y@f_B|`@rx@n[tp@rb@z~@v[|s@~f@pkA`DtI~Zvv@~]d~@rf@`sAn`@jiAzOve@hP|g@zTbr@rN|d@|a@vvApBbH~iAdyDlIlYzDtMnx@noCvObi@x@nCdDlL~@~C~qBd_Hjy@jnCzf@txAtYbw@vW~r@jh@pnAno@lvAxq@htAn`@~s@f`@jq@jg@hx@tMxShNfT~^rj@rl@rv@tVz[`Yn]xX`\\lWrY~VrXt^n_@bxQjyQdQ|PpmBvmBzwB~wBvtIbuIhqHpqHnr@pr@bk@fk@pk@tk@le@vf@b[n]`d@`i@vV`[tZf`@rc@nm@zNlSpWt_@l^|j@x_@jn@tQb[tRf]~Wlf@p[~m@fSra@hWvi@`]nv@~Pda@vO~_@f]p|@n\\~}@vSrm@hPjg@`O~d@dt@vcCbBjGns@nbCha@tsAvX|z@jRjj@bP`d@vHjS|Ybv@lV|l@lXbo@td@vbAln@poAld@pz@th@d~@|d@lu@zm@n~@to@h}@zg@~o@v`@~e@po@bt@j^l_@fXfXp\\p[na@f_@d_@z[zc@d^`n@jf@pl@be@haDdfCpLjJ|AlAtiA`}@vhAl|@zm@hh@jY~Wl]d]~c@re@xb@dg@nj@lr@nd@po@rTd\\~Td^hJtO~KfRbM~SvXjg@bZ~k@bYfl@|Rvc@nXto@d^f`AvI|UfYlw@pg@pyA`dAx_Df~@lqCNd@bl@fhBdQjl@|@zC~Iz[nLxf@nEjTjFdWjHna@tJfo@~Irv@bHnw@vCpg@jBx_@lBli@rAxw@J|p@a@bz@}Att@yB~g@gDvk@yEro@cGxk@cHti@oIji@gI~d@}Kxh@yyEx_SwGhZyCxNuBbKsIdj@}F`e@eFno@{Bxh@y@bp@Rhl@bB~m@jHxfAjJp{@bLl_AzxCvxVvKlw@zJni@jMjl@zKp`@nL`_@zOza@zRre@xRb`@~GrLfTp\\nR|WbKbMzIvKhQfQ|EzEnWvTn_@~Wd`@~S~l@pVjhAj\\dOpErsAda@`PxDj[|EnRnAbR\\`ZcAt[{CbRwChViHh^cOzTuMl_@_Y`oAwmAjQaRtnCqtCvEaFlAmAt~CudDbTyRdGuF~KoHj_@gUja@kPff@qKjc@sEtGWdIMl\\r@nIh@tN|AXDdJxAxEv@xRtEhQbGxTbJpS|Kb`@tWb^vXrs@xk@pm@ve@~~@tu@f_Ajw@zd@ne@ja@pi@nsLrbR|tIr_NbtCppE~bEzoHto@pgAjhLvuQb`@zj@v\\xc@b_Nf{NlsBbhCrc@vg@v_@v^beCf{Bj]h_@lOlRrOdTjPzWdPfYzR|_@jTnf@xUxo@|Opj@fLjd@bM~j@p{@jhFnLvo@~Ina@pKfa@lQpi@zNj_@lC`HxFjMhDpHtYzg@ha@dk@d]x_@~e@ra@|RtMna@dTxi@vRpb@~Inf@nGrnGrNni@pEd\\fHhZzJd`@rRnVnPhRzOpRzQhZv[jmNtgO|nB`lBjnB~lB~\\n]`DbDdfAphAfU~Vx\\p_@dd@xg@leYdoZtjN`bOn`Cn~B`sAztAlXjZlXxZrfC`xCps@tw@dm@|m@lInItn@|k@lm@rh@|aBfvAds@fo@jaAdaAx@v@baPlxOnClCvnF`fFvs@nj@rRdQzhA|fAnqDlkDxWdUzU|PvTjM`T~IlPvFxg@pMdVjCxe@pDpcA~G`q@rHvLlBhh@~Ixt@jPzP|Ezh@tNhg@pPfa@fO|Y|LrErBla@bRvIfE`ErBtE~Bjr@p[n[bQnUtOhPhNbU`UfMzNxObS`N~TbR`]hPp`@|Ld]pLb_@pJpb@bHt^~C|QPdAbB~LxDd]lDz_@xEbw@bIhgBfDpg@|Dje@|J|w@vF`\\`Lxf@bP|i@bKnYfLlYzJdT`[zg@j_@pi@`kF`}GnHpJzfEvtFpGhIrcCp_D~tArfBhpb@daj@dPxS|hA`yAxAlBf{DfdFxjAzzAz~Lr`PnYh_@~Yj_@zYz_@`TbWnTnVlPtQrSjSxPfPfPxNlTrQ~ZdVfUtPrX~QlrDfwBjY~PjiAzr@z_Bp`A~a@~Vt[~S|T~NlZtT~VhSfYlUj^n\\`ShRvSxSlWvXxTzV`SdVjJpK|TpY~Q|VpQzVdT|[lUj^pSj]|S~^tMrVtRd_@xMxWpMxXxOd^vPh`@|Mn\\|Lv[vOpb@tTxn@~T|r@lThu@zLld@bVhaAx[|rAdChKdkCvtKveAdmEl[hqA`r@dsCrPxn@jR`n@bRfk@dSzi@tTdj@nVlj@|a@jy@|b@fv@dTr\\nTz[j\\xb@n[t`@bf@|h@jk@hi@hj@zb@~Y`TdZtR`o@b^fp@rZ`{@hYtAd@hy@pSdw@jMvi@`Gli@bDraKzNz}BhOh|AfXxcBxi@ziBrd@xfGbdBz\\pKpStG|VvIttA~i@dNlGhJhEz~@xc@lY`Opf@fX`}BpqAlHfEjqBfjAviAfp@|aBheAbsA~y@nTjMhInFn[pXzZhc@fJvPnAzBzBbEvFpLpFzMfVbq@vMv`@xFfPrFdNpFtLpF`K`FjIfKzNdDdEhEnEvHdItFpFdIdHzHtFjHrEtIhEdN|FxOhGlm@fTpl@~VxX~Fxr@fWrXnJnCbAlTtHb]hL~HzClGdC"},{"ref":"A 34; E 46; E 420","mode":"driving","weight":145.58,"distance":2156.571,"geometry":"enl{|A_ocwFfVbInOjGrKfEpVxJ`EdAvEbA|Ej@lDPrDAdDWhFy@tEoA|C{A`DcB|C}BjDuC`DsDxDuFzBcErBkE|AmDdByFfByGjAeFdAaHvAcKtFof@xAaLlBcL|BkLpCgLzC}K~BgHbDiIbDsHrBuDhJyMlF_IfHgJ`]g^|[s^l]g]~K{LpT}U`a@wf@vJgJn{AiwAff@gd@rjA{gAjoA}sAdjAenAlWyZde@go@no@w`AbFuHzVga@dSu]","duration":122.629,"driving_side":"right","duration_typical":122.629,"weight_typical":145.58,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 29 on the left onto A 34 toward Paris/Lyon/Metz/Nancy.","modifier":"slight left","bearing_after":196,"bearing_before":198,"location":[4.065536,49.224435]},"speedLimitUnit":"km/h","destinations":"A 34: Paris, Lyon, Metz, Nancy, Châlons-en-Ch.","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"off ramp","modifier":"right","text":"A 4"},"distanceAlongGeometry":2156.571}],"exits":"29","voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2133.238},{"ssmlAnnouncement":"In a quarter mile, Take the A 4 exit.","announcement":"In a quarter mile, Take the A 4 exit.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 4 exit.","announcement":"Take the A 4 exit.","distanceAlongGeometry":116.667}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[18,196,204],"duration":3.246,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":7,"out":1,"weight":3.387,"geometry_index":4822,"location":[4.065536,49.224435]},{"entry":[false,true],"in":0,"bearings":[16,198],"duration":2.955,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":7,"out":1,"weight":3.104,"geometry_index":4823,"location":[4.065374,49.224063]},{"entry":[false,true],"in":0,"bearings":[18,198],"duration":26.26,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":7,"out":1,"weight":26.916,"geometry_index":4825,"location":[4.06514,49.223597]},{"entry":[true,false,false],"in":2,"bearings":[139,308,319],"duration":12.176,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":7,"out":0,"weight":12.959,"geometry_index":4859,"location":[4.068866,49.22063]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":5.75,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":7,"out":0,"weight":5.895,"geometry_index":4865,"location":[4.070918,49.218724]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.071921,49.217834],"geometry_index":4867,"admin_index":7,"weight":16.477,"is_urban":false,"turn_weight":8,"duration":8.488,"bearings":[148,323,328],"out":0,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":9.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.328,"geometry_index":4869,"location":[4.073514,49.216166]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,328],"duration":33.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":32.676,"geometry_index":4871,"location":[4.075276,49.214328]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.078347,49.211448],"geometry_index":4874,"admin_index":7,"weight":22.166,"is_urban":false,"toll_collection":{"name":"Péage de Reims Est","type":"toll_booth"},"turn_weight":15,"duration":7.543,"bearings":[140,323],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,320],"duration":6.592,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.242,"geometry_index":4875,"location":[4.079119,49.210837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,318],"duration":0.92,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.867,"geometry_index":4876,"location":[4.080171,49.210061]},{"bearings":[137,318],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"geometry_index":4877,"location":[4.080326,49.209947]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 15 miles.","announcement":"Continue for 15 miles.","distanceAlongGeometry":23401.209},{"ssmlAnnouncement":"In 2 miles, Take the A 26 exit.","announcement":"In 2 miles, Take the A 26 exit.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take the A 26 exit.","announcement":"In a half mile, Take the A 26 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the A 26 exit toward St Gibrien, Châlons en Ch.Rive gauche.","announcement":"Take the A 26 exit toward St Gibrien, Châlons en Ch.Rive gauche.","distanceAlongGeometry":317.778}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[130,141,315],"duration":15.002,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":1,"weight":13.867,"geometry_index":4879,"location":[4.081365,49.209242]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[158,346],"duration":3.273,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":3.027,"geometry_index":4893,"location":[4.082781,49.206975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,331],"duration":27.426,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":24.684,"geometry_index":4896,"location":[4.08314,49.206486]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.090313,49.204646],"geometry_index":4922,"admin_index":7,"weight":17.227,"is_urban":false,"turn_weight":11.75,"duration":6.104,"bearings":[118,284,298],"out":0,"in":1,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,298],"duration":5.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.51,"geometry_index":4923,"location":[4.092634,49.203835]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,294],"duration":178.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":165.41,"geometry_index":4926,"location":[4.094955,49.203112]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,313],"duration":2.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.453,"geometry_index":4957,"location":[4.160355,49.177491]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.161204,49.176985],"geometry_index":4958,"admin_index":7,"weight":16.207,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.543,"bearings":[131,139,312],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.167064,49.173866],"geometry_index":4961,"admin_index":7,"weight":8.812,"is_urban":false,"turn_weight":1,"duration":8.469,"bearings":[124,298,307],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,302],"duration":208.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":187.994,"geometry_index":4963,"location":[4.170565,49.172365]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,311],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.268,"geometry_index":5018,"location":[4.239535,49.123063]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[133,146,312],"duration":37.414,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":33.654,"geometry_index":5020,"location":[4.240457,49.122514]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.249975,49.114305],"geometry_index":5034,"admin_index":7,"weight":11.203,"is_urban":false,"turn_weight":1,"duration":11.344,"bearings":[153,321,332],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":0.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.445,"geometry_index":5039,"location":[4.25202,49.111368]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,338],"duration":50.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":45.473,"geometry_index":5040,"location":[4.252094,49.111246]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.41,"geometry_index":5056,"location":[4.255754,49.09702]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,354],"duration":1.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.645,"geometry_index":5057,"location":[4.255777,49.096883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,351],"duration":125.127,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":109.469,"geometry_index":5059,"location":[4.255895,49.096362]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,322],"duration":6.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.592,"geometry_index":5085,"location":[4.276187,49.064189]},{"bearings":[142,322],"entry":[true,false],"classes":["toll","motorway"],"in":1,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"geometry_index":5086,"location":[4.277846,49.062818]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"St Gibrien"},{"type":"text","text":"/"},{"type":"text","text":"Châlons en Ch.Rive gauche"}],"type":"off ramp","modifier":"right","text":"St Gibrien / Châlons en Ch.Rive gauche"},"primary":{"components":[{"type":"icon","text":"A 26"}],"type":"off ramp","modifier":"right","text":"A 26"},"distanceAlongGeometry":23424.543},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"St Gibrien"},{"type":"text","text":"/"},{"type":"text","text":"Châlons en Ch.Rive gauche"}],"type":"off ramp","modifier":"right","text":"St Gibrien / Châlons en Ch.Rive gauche"},"primary":{"components":[{"type":"icon","text":"A 26"}],"type":"off ramp","modifier":"right","text":"A 26"},"distanceAlongGeometry":3218.688}],"destinations":"A 4","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 4 exit.","modifier":"slight right","bearing_after":141,"bearing_before":135,"location":[4.081365,49.209242]},"speedLimitSign":"vienna","name":"Autoroute de l’Est","weight_typical":672.725,"duration_typical":729.414,"duration":729.414,"distance":23424.543,"driving_side":"right","weight":672.725,"mode":"driving","ref":"A 4; E 17; E 50","geometry":"sxnz|AilbxFzB{AlKaRbD{EfEuEjGqGvE_EvHeFdHoDbHoClKoCjSaDfO{BpJuBdIcCxIqElGcEhJwHtDcEdE_FjDyEpCsEbFcJnF{MhEsL`CkJjBsH|AwI`BmKfA_Kx@sJl@qLb@iPFaY@e^JgO\\{Iv@wN`AqKxB}PdDmR|VwnAhLgi@NkJtq@apCvRc|@|Kmh@nKoi@nAsG~Lyq@nWw|AxTe}AxXyxBxpBgcPrKcw@|Gwe@`M_y@bIce@bOc{@rPg|@~Re_AvTk`AjTg|@zo@{eCzcGugUrx@uwClT}v@by@{nC~j@ceBzk@ybBzZ_z@jdAklC|h@ioAnfAabChfBipD|sAslCtoAueCdxDkrHrv@c{Ar^at@hzA{`Dzd@qfAv`AycCji@}}Alr@{zBrXm`A`iCiiJzp@iyBdx@m~Bhg@qrAzg@qmAd`@i{@hp@ysAbq@}nAzb@qu@pd@}u@`c@ap@jo@i~@|k@iv@hj@sq@xi@on@lm@{q@vo@}r@hgDcsDvcByoBl`AylArHmJxsAgjB~}CuuEvs@wgA|e@as@dn@u|@dn@gy@zr@}z@|u@a{@tp@op@ro@km@|g@gd@x`@y[|`Aat@~bAku@ltA}`AzyBkbBpoA{hA`{@{{@j}@sdAlk@qs@dk@qw@hu@miAvw@itAvl@khAde@abAv\\}t@vm@e{Adl@_|Atw@_vBvx@gtBd^a|@|]{x@t^gw@hB{D~]wr@~Ry_@xr@wmA~q@ufA``@uk@vh@ys@vm@ev@n^mb@r^ea@fn@{o@rVuUhV_Unp@gk@|]uY|]yW`GkEjh@q^ho@ga@xh@}Z~j@uZrFsCzc@cTdg@yTnv@gZzu@mWrdAwYd`AcTpw@yNlp@iJdc@gFlj@cFtc@cDnvAuHx|AiGtwAyHne@uD`c@cEpGm@~U}CpHmAxlBm[llBch@~gA_`@xdAub@ptC}qAtsAek@l\\mMb^wMl]_L~}@sXb~@{UdtBsg@fmBwf@~q@iSrp@_Ubq@oWrr@oYt|A}x@`z@eg@fr@ee@xf@m^|w@}n@rx@st@jfAgdArdBsqBdkFi|GttAufBpiGgbI"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 164 miles.","announcement":"Continue for 164 miles.","distanceAlongGeometry":263721},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 31.","announcement":"In 2 miles, Keep left to take A 31.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 31.","announcement":"In a half mile, Keep left to take A 31.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 31 toward Lyon, Beaune.","announcement":"Keep left to take A 31 toward Lyon, Beaune.","distanceAlongGeometry":260}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.283018,49.058553],"geometry_index":5087,"admin_index":7,"weight":4.246,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":4.738,"bearings":[142,159,322],"out":1,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,322],"duration":4.074,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":3.668,"geometry_index":5091,"location":[4.283884,49.057724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,324],"duration":7.873,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":7.086,"geometry_index":5092,"location":[4.284724,49.056978]},{"entry":[false,true,false],"classes":["toll","motorway"],"in":2,"bearings":[82,170,345],"duration":25.012,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":1,"weight":22.502,"geometry_index":5100,"location":[4.285974,49.055408]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.283119,49.050206],"geometry_index":5124,"admin_index":7,"weight":7.744,"is_urban":false,"turn_weight":0.5,"duration":8.072,"bearings":[1,15,192],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"location":[4.282664,49.0481],"geometry_index":5128,"admin_index":7,"weight":11.025,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"turn_weight":2,"duration":10.029,"bearings":[7,189],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":41.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":36.418,"geometry_index":5134,"location":[4.281785,49.045361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":24.531,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":21.443,"geometry_index":5155,"location":[4.283148,49.032024]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,335],"duration":76.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":67.047,"geometry_index":5163,"location":[4.288024,49.024748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.861,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.623,"geometry_index":5190,"location":[4.298046,49.001288]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.438,"geometry_index":5191,"location":[4.297868,49.000701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":22.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.824,"geometry_index":5192,"location":[4.297731,49.000243]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":3.256,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.93,"geometry_index":5195,"location":[4.295905,48.993792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":13.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.205,"geometry_index":5196,"location":[4.295661,48.992868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":0.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.336,"geometry_index":5201,"location":[4.294643,48.988997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":12.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":11.27,"geometry_index":5202,"location":[4.29461,48.988895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.195,"geometry_index":5210,"location":[4.292843,48.985502]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":10.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.691,"geometry_index":5211,"location":[4.292801,48.985442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":3.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.705,"geometry_index":5215,"location":[4.29057,48.982721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":29.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.318,"geometry_index":5216,"location":[4.289919,48.981977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":3.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.705,"geometry_index":5228,"location":[4.28478,48.974405]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.284452,48.97357],"geometry_index":5230,"admin_index":7,"weight":10.959,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.199,"bearings":[14,192,199],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.283781,48.97011],"geometry_index":5235,"admin_index":7,"weight":7.797,"is_urban":false,"turn_weight":0.5,"duration":8.115,"bearings":[2,181,356],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.367,"geometry_index":5238,"location":[4.283893,48.967791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.832,"geometry_index":5239,"location":[4.283911,48.967675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":49.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":44.27,"geometry_index":5240,"location":[4.283954,48.967412]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":0.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.803,"geometry_index":5251,"location":[4.289294,48.954027]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,350],"duration":2.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.887,"geometry_index":5252,"location":[4.289358,48.953776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.395,"geometry_index":5253,"location":[4.28945,48.95318]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.289469,48.953054],"geometry_index":5254,"admin_index":7,"weight":14.838,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.965,"bearings":[174,177,354],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.289665,48.948241],"geometry_index":5258,"admin_index":7,"weight":9.891,"is_urban":false,"turn_weight":1,"duration":10.168,"bearings":[3,185,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189],"duration":118.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":103.984,"geometry_index":5261,"location":[4.289279,48.945978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":38.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":33.461,"geometry_index":5274,"location":[4.283173,48.919702]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.346,"geometry_index":5277,"location":[4.283599,48.91112]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,186,356],"duration":13.209,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.541,"geometry_index":5278,"location":[4.283659,48.910518]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.284263,48.906719],"geometry_index":5280,"admin_index":7,"weight":7.986,"is_urban":false,"turn_weight":0.5,"duration":8.324,"bearings":[173,332,353],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":87.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":76.334,"geometry_index":5281,"location":[4.28474,48.904334]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,185],"duration":54.193,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":47.412,"geometry_index":5294,"location":[4.290003,48.879412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":19.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.107,"geometry_index":5301,"location":[4.286158,48.863943]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":1.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.711,"geometry_index":5307,"location":[4.285321,48.858318]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,179],"duration":21.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.035,"geometry_index":5309,"location":[4.285313,48.85775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":70.346,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":61.547,"geometry_index":5313,"location":[4.285948,48.851415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":59.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":51.881,"geometry_index":5321,"location":[4.288714,48.830961]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,193],"duration":1.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.629,"geometry_index":5330,"location":[4.288666,48.813701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":142.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":124.715,"geometry_index":5331,"location":[4.288479,48.813173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":0.775,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.68,"geometry_index":5355,"location":[4.254851,48.772823]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,218],"duration":28.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":24.826,"geometry_index":5356,"location":[4.254653,48.772645]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.609,"geometry_index":5360,"location":[4.24619,48.766438]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225,232],"duration":11.854,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.662,"geometry_index":5361,"location":[4.245274,48.765838]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.241605,48.763372],"geometry_index":5365,"admin_index":7,"weight":7.062,"is_urban":false,"turn_weight":0.5,"duration":7.312,"bearings":[27,43,223],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,219],"duration":82.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":74.133,"geometry_index":5368,"location":[4.239473,48.761778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":0.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.252,"geometry_index":5386,"location":[4.227523,48.739463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":22.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.482,"geometry_index":5387,"location":[4.227505,48.739382]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.029,"geometry_index":5393,"location":[4.225281,48.73303]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[19,201,207],"duration":14.316,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.877,"geometry_index":5394,"location":[4.224964,48.732418]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.222481,48.72858],"geometry_index":5398,"admin_index":7,"weight":7.205,"is_urban":false,"turn_weight":0.5,"duration":7.457,"bearings":[8,25,205],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":7.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.1,"geometry_index":5399,"location":[4.221134,48.726633]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.67,"geometry_index":5400,"location":[4.219699,48.724577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,203],"duration":41.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":36.25,"geometry_index":5401,"location":[4.219564,48.724383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":38.402,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":33.584,"geometry_index":5410,"location":[4.21252,48.711781]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":0.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.773,"geometry_index":5421,"location":[4.20198,48.701538]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,224],"duration":101.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":88.66,"geometry_index":5422,"location":[4.201714,48.701351]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":0.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.408,"geometry_index":5439,"location":[4.171232,48.675991]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,193],"duration":12.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.678,"geometry_index":5440,"location":[4.171179,48.67586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":0.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.748,"geometry_index":5444,"location":[4.170233,48.672328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":107.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":93.832,"geometry_index":5445,"location":[4.170198,48.672088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.881,"geometry_index":5467,"location":[4.178487,48.641138]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[169,173,349],"duration":35.244,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":30.832,"geometry_index":5468,"location":[4.178569,48.64085]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.180854,48.630593],"geometry_index":5473,"admin_index":7,"weight":49.051,"is_urban":false,"turn_weight":1,"duration":54.924,"bearings":[174,345,353],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":62.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":54.805,"geometry_index":5484,"location":[4.181355,48.61449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.834,"geometry_index":5495,"location":[4.180172,48.596135]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":85.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":74.438,"geometry_index":5496,"location":[4.180234,48.595863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.646,"geometry_index":5507,"location":[4.192069,48.569419]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":81.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":71.248,"geometry_index":5508,"location":[4.192158,48.569207]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.619,"geometry_index":5522,"location":[4.189607,48.545792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.346,"geometry_index":5523,"location":[4.189505,48.545594]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":3.854,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.461,"geometry_index":5524,"location":[4.189278,48.545172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":2.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.52,"geometry_index":5525,"location":[4.188689,48.54412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":17.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.9,"geometry_index":5526,"location":[4.188268,48.543353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.781,"geometry_index":5530,"location":[4.185665,48.538395]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198],"duration":10.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.176,"geometry_index":5531,"location":[4.185382,48.537836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":19.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.289,"geometry_index":5533,"location":[4.183979,48.534956]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.043,"geometry_index":5536,"location":[4.181472,48.529496]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196,207],"duration":13.023,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":11.713,"geometry_index":5537,"location":[4.181186,48.528854]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.179642,48.525193],"geometry_index":5538,"admin_index":7,"weight":7.754,"is_urban":false,"turn_weight":1,"duration":7.512,"bearings":[0,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":99.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":87.135,"geometry_index":5539,"location":[4.17865,48.522848]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":119.277,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":104.361,"geometry_index":5561,"location":[4.164918,48.49233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":96.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":84.432,"geometry_index":5587,"location":[4.157835,48.454237]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,201],"duration":3.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.715,"geometry_index":5602,"location":[4.148469,48.427064]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,198],"duration":4.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.588,"geometry_index":5604,"location":[4.147992,48.426221]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,195],"duration":30.197,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.404,"geometry_index":5605,"location":[4.147457,48.425098]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":1.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.342,"geometry_index":5612,"location":[4.145724,48.416555]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[176,183,359],"duration":9.527,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.555,"geometry_index":5613,"location":[4.145731,48.416119]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":2.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.387,"geometry_index":5617,"location":[4.146112,48.413428]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":4.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.404,"geometry_index":5619,"location":[4.146277,48.412678]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.146671,48.411307],"geometry_index":5621,"admin_index":7,"weight":6.729,"is_urban":false,"turn_weight":0.5,"duration":6.928,"bearings":[169,327,349],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":7.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.328,"geometry_index":5623,"location":[4.1473,48.409348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":83.801,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":73.318,"geometry_index":5624,"location":[4.147969,48.407305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":2.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.109,"geometry_index":5626,"location":[4.155724,48.383607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,348],"duration":131.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":114.84,"geometry_index":5627,"location":[4.155944,48.382931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.781,"geometry_index":5647,"location":[4.165405,48.345542]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":25.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":21.977,"geometry_index":5648,"location":[4.165445,48.345282]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.869,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.754,"geometry_index":5653,"location":[4.166756,48.337177]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,177,354],"duration":29.998,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":26.24,"geometry_index":5654,"location":[4.166795,48.336928]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.166897,48.328114],"geometry_index":5661,"admin_index":7,"weight":56.52,"is_urban":false,"turn_weight":1,"duration":61.695,"bearings":[5,186,358],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,353],"duration":54.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":49.094,"geometry_index":5673,"location":[4.164338,48.310123]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":0.373,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.33,"geometry_index":5683,"location":[4.16601,48.294214]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186,203],"duration":4.623,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.154,"geometry_index":5684,"location":[4.165993,48.294111]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":11.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.219,"geometry_index":5686,"location":[4.165774,48.29277]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.165218,48.28948],"geometry_index":5688,"admin_index":7,"weight":6.375,"is_urban":false,"turn_weight":0.5,"duration":6.535,"bearings":[1,6,186],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,186],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.859,"geometry_index":5690,"location":[4.164929,48.28757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":36.678,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":33.004,"geometry_index":5691,"location":[4.164676,48.285986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,358],"duration":1.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.98,"geometry_index":5699,"location":[4.16402,48.275218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,359],"duration":11.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.439,"geometry_index":5700,"location":[4.164031,48.274895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":2.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.955,"geometry_index":5701,"location":[4.164225,48.271511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":33.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":29.285,"geometry_index":5702,"location":[4.16427,48.270882]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.869,"geometry_index":5706,"location":[4.165361,48.261055]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,353],"duration":65.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":57.447,"geometry_index":5707,"location":[4.165418,48.260766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":33.135,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":29.803,"geometry_index":5719,"location":[4.170849,48.24181]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":2.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.346,"geometry_index":5725,"location":[4.176587,48.233038]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[150,165,332],"duration":2.305,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.057,"geometry_index":5726,"location":[4.17712,48.232368]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,330],"duration":8.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.57,"geometry_index":5727,"location":[4.177557,48.231854]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,331],"duration":2.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.963,"geometry_index":5730,"location":[4.179131,48.229937]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,330],"duration":1.98,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":1.781,"geometry_index":5732,"location":[4.179557,48.229445]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,326],"duration":0.93,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":0.838,"geometry_index":5734,"location":[4.17989,48.229115]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,321],"duration":6.068,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":5.461,"geometry_index":5735,"location":[4.180089,48.228951]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,300],"duration":1.254,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":1.129,"geometry_index":5742,"location":[4.18164,48.228102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,296],"duration":6.068,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":5.461,"geometry_index":5744,"location":[4.182019,48.227977]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,275],"duration":22.166,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":19.949,"geometry_index":5752,"location":[4.183973,48.227671]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.191216,48.22756],"geometry_index":5772,"admin_index":7,"weight":44.16,"is_urban":false,"turn_weight":21.75,"duration":40.629,"bearings":[110,277,290],"out":0,"in":1,"turn_duration":15.017,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,290],"duration":155.012,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":135.631,"geometry_index":5773,"location":[4.19751,48.225994]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.102,"geometry_index":5787,"location":[4.235014,48.215646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,302],"duration":2.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.176,"geometry_index":5789,"location":[4.235786,48.215336]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[122,139,302],"duration":25.994,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":23.379,"geometry_index":5790,"location":[4.236321,48.215116]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.245312,48.210595],"geometry_index":5798,"admin_index":7,"weight":9.443,"is_urban":false,"turn_weight":1,"duration":9.67,"bearings":[132,297,312],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,316],"duration":225.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":197.232,"geometry_index":5802,"location":[4.248394,48.208603]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":4.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.119,"geometry_index":5834,"location":[4.327463,48.169264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":1.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.318,"geometry_index":5836,"location":[4.329399,48.16889]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":4.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.119,"geometry_index":5837,"location":[4.330033,48.168787]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,279],"duration":43.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":38.797,"geometry_index":5839,"location":[4.332007,48.168515]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":33.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":30.396,"geometry_index":5855,"location":[4.35048,48.170799]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":1.416,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":16.273,"geometry_index":5858,"location":[4.364519,48.17415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":112.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":98.037,"geometry_index":5859,"location":[4.365106,48.174293]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,284],"duration":60.27,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":52.729,"geometry_index":5885,"location":[4.416718,48.181984]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":0.469,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.416,"geometry_index":5896,"location":[4.442298,48.176625]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":12.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.91,"geometry_index":5898,"location":[4.442483,48.176577]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":8.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.67,"geometry_index":5901,"location":[4.447448,48.175322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":227.057,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":198.668,"geometry_index":5902,"location":[4.45094,48.174439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":51.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":44.658,"geometry_index":5949,"location":[4.558837,48.169922]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":4.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.143,"geometry_index":5966,"location":[4.583145,48.169456]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,299],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.539,"geometry_index":5969,"location":[4.585198,48.168767]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,300],"duration":118.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":103.656,"geometry_index":5970,"location":[4.585431,48.168678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,308],"duration":6.572,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.744,"geometry_index":5998,"location":[4.617585,48.14168]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,301],"duration":1.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.535,"geometry_index":6002,"location":[4.620005,48.140599]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,299],"duration":11.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.402,"geometry_index":6003,"location":[4.620688,48.140348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,286],"duration":27.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":23.902,"geometry_index":6007,"location":[4.625585,48.139032]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":16.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":14.24,"geometry_index":6016,"location":[4.637587,48.137791]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[112,117,293],"duration":5.529,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.832,"geometry_index":6021,"location":[4.644528,48.136434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,294],"duration":23.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":20.822,"geometry_index":6023,"location":[4.646767,48.135799]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,296],"duration":12.342,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.781,"geometry_index":6027,"location":[4.656227,48.132763]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,292],"duration":0.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.781,"geometry_index":6032,"location":[4.661098,48.131303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":25.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":22.961,"geometry_index":6033,"location":[4.661451,48.131214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,280],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.754,"geometry_index":6040,"location":[4.672009,48.129281]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,281],"duration":50.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":44.1,"geometry_index":6041,"location":[4.672368,48.129236]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":83.252,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":72.838,"geometry_index":6047,"location":[4.6941,48.126115]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":7.08,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.18,"geometry_index":6057,"location":[4.732372,48.117496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":22.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":19.23,"geometry_index":6058,"location":[4.735613,48.116754]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,278],"duration":15.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":13.322,"geometry_index":6067,"location":[4.746206,48.114843]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":45.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":40.248,"geometry_index":6077,"location":[4.753788,48.114999]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[105,113,284],"duration":0.049,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.035,"geometry_index":6097,"location":[4.77588,48.114243]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,285],"duration":19.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":17.307,"geometry_index":6098,"location":[4.775897,48.11424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,299],"duration":5.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.914,"geometry_index":6114,"location":[4.783948,48.112219]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.78603,48.111363],"geometry_index":6118,"admin_index":7,"weight":3.719,"is_urban":false,"turn_weight":1,"duration":3.027,"bearings":[125,297,303],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[127,307],"duration":1.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.945,"geometry_index":6121,"location":[4.787112,48.110838]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,307],"duration":344.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":310.248,"geometry_index":6122,"location":[4.787472,48.110659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":31.486,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":28.332,"geometry_index":6201,"location":[4.888436,48.07554]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,313],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.664,"geometry_index":6206,"location":[4.896367,48.07088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,313],"duration":156.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":141.229,"geometry_index":6207,"location":[4.896608,48.070731]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,292],"duration":33.729,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":30.348,"geometry_index":6248,"location":[4.94493,48.062848]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[131,139,311],"duration":0.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.035,"geometry_index":6259,"location":[4.95413,48.058491]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,311],"duration":4.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.662,"geometry_index":6260,"location":[4.954137,48.058487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,311],"duration":11.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.973,"geometry_index":6261,"location":[4.955463,48.057727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.531,"geometry_index":6265,"location":[4.959132,48.055702]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,309],"duration":9.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.611,"geometry_index":6266,"location":[4.959326,48.055596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,307],"duration":8.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.322,"geometry_index":6268,"location":[4.962571,48.053951]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.965473,48.05257],"geometry_index":6271,"admin_index":7,"weight":195.377,"is_urban":false,"turn_weight":1,"duration":222.164,"bearings":[125,294,305],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":0.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.141,"geometry_index":6328,"location":[5.056151,48.040448]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[101,113,280],"duration":4.201,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.773,"geometry_index":6329,"location":[5.056221,48.04044]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.811,"geometry_index":6331,"location":[5.057518,48.040263]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,282],"duration":8.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.889,"geometry_index":6332,"location":[5.057848,48.040215]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":9.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.311,"geometry_index":6337,"location":[5.061485,48.039576]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.065237,48.038729],"geometry_index":6340,"admin_index":7,"weight":87.125,"is_urban":false,"turn_weight":0.5,"duration":99.008,"bearings":[112,282,290],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,325],"duration":0.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.135,"geometry_index":6361,"location":[5.090376,48.025473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,326],"duration":44.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":39.084,"geometry_index":6362,"location":[5.090414,48.025435]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,328],"duration":0.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.162,"geometry_index":6375,"location":[5.100973,48.012797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":128.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":112.383,"geometry_index":6376,"location":[5.101013,48.012755]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,330],"duration":41.547,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":36.346,"geometry_index":6410,"location":[5.134913,47.978187]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[145,153,326],"duration":31.375,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":28.219,"geometry_index":6419,"location":[5.145216,47.966622]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.15333,47.959254],"geometry_index":6429,"admin_index":7,"weight":13.814,"is_urban":false,"turn_weight":1,"duration":14.65,"bearings":[142,317,323],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,315],"duration":158.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":138.414,"geometry_index":6434,"location":[5.157578,47.956018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,326],"duration":47.307,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":42.559,"geometry_index":6475,"location":[5.213604,47.929154]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[168,177,348],"duration":12.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.34,"geometry_index":6493,"location":[5.220955,47.916239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":24.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":21.814,"geometry_index":6497,"location":[5.221967,47.912652]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.223035,47.90568],"geometry_index":6506,"admin_index":7,"weight":33.371,"is_urban":false,"turn_weight":16,"duration":34.332,"bearings":[3,176,346],"out":1,"in":0,"turn_duration":15.03,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":3.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.865,"geometry_index":6507,"location":[5.223686,47.899432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,356],"duration":129.967,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":113.715,"geometry_index":6508,"location":[5.223792,47.898399]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":120.426,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":105.355,"geometry_index":6540,"location":[5.226191,47.857211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.572,"geometry_index":6570,"location":[5.224257,47.819343]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,186,199],"duration":24.002,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":21.584,"geometry_index":6571,"location":[5.224213,47.819138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":5.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.307,"geometry_index":6583,"location":[5.223715,47.811372]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.223837,47.809663],"geometry_index":6585,"admin_index":7,"weight":45.074,"is_urban":false,"turn_weight":1,"duration":48.994,"bearings":[175,346,357],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,188],"duration":2.119,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.898,"geometry_index":6599,"location":[5.224195,47.795516]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,187],"duration":3.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.736,"geometry_index":6600,"location":[5.224077,47.794914]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[7,189,206],"duration":1.219,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.09,"geometry_index":6601,"location":[5.223906,47.79404]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":11.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.027,"geometry_index":6602,"location":[5.223823,47.793691]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.117,"geometry_index":6604,"location":[5.222908,47.79053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":6.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.559,"geometry_index":6605,"location":[5.22278,47.790185]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.221967,47.78826],"geometry_index":6608,"admin_index":7,"weight":8.352,"is_urban":false,"turn_weight":0.5,"duration":8.73,"bearings":[3,17,197],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,205],"duration":241.236,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":217.105,"geometry_index":6612,"location":[5.220463,47.785617]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,193],"duration":10.959,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.844,"geometry_index":6684,"location":[5.190145,47.718227]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,189],"duration":33.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.455,"geometry_index":6685,"location":[5.189,47.71476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,185],"duration":31.008,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":27.113,"geometry_index":6689,"location":[5.187026,47.703866]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192,206],"duration":30.561,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.721,"geometry_index":6697,"location":[5.185184,47.693899]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.181026,47.685364],"geometry_index":6707,"admin_index":7,"weight":14.881,"is_urban":false,"turn_weight":1,"duration":15.885,"bearings":[8,22,202],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.242,"geometry_index":6712,"location":[5.178453,47.681026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":7.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.623,"geometry_index":6713,"location":[5.178412,47.680948]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":110.277,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":96.486,"geometry_index":6716,"location":[5.177362,47.678854]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,351],"duration":47.25,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":41.338,"geometry_index":6759,"location":[5.17939,47.643563]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":150,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":131.25,"geometry_index":6782,"location":[5.17924,47.628306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":48.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":43.561,"geometry_index":6834,"location":[5.202273,47.600334]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[166,175,345],"duration":3.646,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.275,"geometry_index":6852,"location":[5.208661,47.590404]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":12.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.109,"geometry_index":6854,"location":[5.208956,47.589609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,352],"duration":16.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.92,"geometry_index":6860,"location":[5.209955,47.586004]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,183],"duration":2.52,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.26,"geometry_index":6868,"location":[5.210342,47.581098]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.210292,47.580357],"geometry_index":6869,"admin_index":8,"weight":10.277,"is_urban":false,"turn_weight":1,"duration":10.314,"bearings":[3,184,353],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.006,"geometry_index":6874,"location":[5.209784,47.577367]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,191],"duration":41.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.453,"geometry_index":6875,"location":[5.209701,47.577046]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":36.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":31.527,"geometry_index":6891,"location":[5.20273,47.565916]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":0.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.557,"geometry_index":6903,"location":[5.197741,47.556062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":24.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.053,"geometry_index":6905,"location":[5.197712,47.555871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":10.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.582,"geometry_index":6911,"location":[5.197659,47.548678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":3.188,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.861,"geometry_index":6913,"location":[5.197974,47.545408]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[176,183,356],"duration":3.307,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.971,"geometry_index":6914,"location":[5.198083,47.544457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":7.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.975,"geometry_index":6915,"location":[5.198192,47.543473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":0.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.326,"geometry_index":6917,"location":[5.19844,47.541199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,356],"duration":0.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.072,"geometry_index":6918,"location":[5.198451,47.541094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":5.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.699,"geometry_index":6919,"location":[5.198452,47.541079]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":7.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.756,"geometry_index":6920,"location":[5.198637,47.539503]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.198821,47.537771],"geometry_index":6922,"admin_index":8,"weight":22.598,"is_urban":false,"turn_weight":0.5,"duration":25.264,"bearings":[177,341,356],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":45.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":41.023,"geometry_index":6929,"location":[5.198982,47.529585]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,192],"duration":1.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.467,"geometry_index":6940,"location":[5.196511,47.514907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":33.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":30.113,"geometry_index":6941,"location":[5.196365,47.514443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":2.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.318,"geometry_index":6946,"location":[5.192644,47.504837]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":16.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.953,"geometry_index":6947,"location":[5.192301,47.504127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.221,"geometry_index":6950,"location":[5.190028,47.499524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":40.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.227,"geometry_index":6951,"location":[5.189998,47.499455]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,356],"duration":63.764,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":55.777,"geometry_index":6959,"location":[5.18852,47.487925]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,208],"duration":1.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.314,"geometry_index":6979,"location":[5.186141,47.469873]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209],"duration":19.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.244,"geometry_index":6980,"location":[5.185845,47.469492]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":102.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":89.348,"geometry_index":6983,"location":[5.181277,47.464586]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":0.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.582,"geometry_index":6999,"location":[5.166873,47.436617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":21.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":19.152,"geometry_index":7000,"location":[5.166888,47.43643]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":18.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":16.523,"geometry_index":7004,"location":[5.167849,47.431701]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[161,173,341],"duration":52.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":47.16,"geometry_index":7009,"location":[5.169476,47.427732]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.175406,47.416684],"geometry_index":7020,"admin_index":8,"weight":64.936,"is_urban":false,"turn_weight":1,"duration":71.059,"bearings":[164,336,344],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,358],"duration":200.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":180.035,"geometry_index":7050,"location":[5.182956,47.401668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":43.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.699,"geometry_index":7120,"location":[5.162609,47.359742]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,187,352],"duration":0.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.051,"geometry_index":7134,"location":[5.162938,47.350114]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,352],"duration":1.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.256,"geometry_index":7135,"location":[5.162942,47.350094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":24.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":22.449,"geometry_index":7136,"location":[5.163039,47.349659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":6.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.018,"geometry_index":7147,"location":[5.164227,47.34268]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.164683,47.340858],"geometry_index":7150,"admin_index":8,"weight":1.844,"is_urban":false,"turn_weight":0.5,"duration":1.473,"bearings":[168,336,349],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,348],"duration":0.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.293,"geometry_index":7151,"location":[5.164806,47.340455]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,349],"duration":1.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.973,"geometry_index":7152,"location":[5.164832,47.340367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":52.373,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":47.129,"geometry_index":7153,"location":[5.164933,47.340037]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[173,186,354],"duration":1.059,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.947,"geometry_index":7167,"location":[5.170248,47.323486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":20.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":18.793,"geometry_index":7168,"location":[5.170306,47.323151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":6.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.76,"geometry_index":7173,"location":[5.171674,47.316443]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.172087,47.314599],"geometry_index":7174,"admin_index":8,"weight":90.113,"is_urban":false,"turn_weight":1,"duration":99.035,"bearings":[171,342,351],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,210],"duration":3.096,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.846,"geometry_index":7198,"location":[5.158567,47.288538]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,209],"duration":1.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.404,"geometry_index":7199,"location":[5.157911,47.287757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,206],"duration":18.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.027,"geometry_index":7200,"location":[5.157584,47.287357]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,208],"duration":8.898,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.445,"geometry_index":7202,"location":[5.154126,47.282621]},{"bearings":[33,214],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":7205,"location":[5.152,47.280122]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lyon"},{"type":"text","text":"/"},{"type":"text","text":"Beaune"}],"type":"fork","modifier":"left","text":"Lyon / Beaune"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"A 31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 31"}],"type":"fork","modifier":"left","text":"A 31"},"distanceAlongGeometry":263751}],"destinations":"A 26: St Gibrien, Châlons en Ch.Rive gauche, Troyes, Lyon","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 26 exit toward St Gibrien/Châlons en Ch.Rive gauche/Troyes/Lyon.","modifier":"slight right","bearing_after":159,"bearing_before":142,"location":[4.283018,49.058553]},"speedLimitSign":"vienna","name":"Autoroute des Anglais","weight_typical":7374.885,"duration_typical":8288.166,"duration":8293.932,"distance":263751,"driving_side":"right","weight":7379.936,"mode":"driving","ref":"A 26; E 17","geometry":"qnhq|AsgldGpDHjPkS~PgTzIyKrm@os@dBqB~P{RhOoOvJ}IdHaFfIsEvLgFtNiEzKoBdNyA`KWlMFtLv@`P|CjLlD`LjFvGdD`JbG`QhOhh@pi@nWtWbRxOhPxKzErCjDnBdFtCxFtC~FlCbI|CzGdCnHlCnHvBnJ|BpKvBjOvBdzA~OfPhCzS`E~ZzHtk@~NxWfGpb@lIv`@|GrWvD`p@xHvy@nHbo@`D~c@jAfo@p@tw@a@|Z{@v_@{Apa@uBHA`]qCfb@iEja@_Flb@kG~_@uG`w@_QxfAoYlj@aRhi@cSfl@qV|kAgl@h~@mi@he@sY|v@ag@zq@ud@v{@yj@j~@il@vDaCzbAim@j}@ug@j_Akh@v}@ag@~{@ug@`mMc{HbXsNh[oOb`@{Pl\\qM|`@sMnTiGnUaGhm@gMhl@oIbp@_Hro@qDv`@aAjc@GdY^|]|@|ZvBbXrBx[|Dhv@`Mh_@xHtc@bJr[pGphAvShfHbtAha@fGvx@fNtaAxNz{@|Mdp@|Kfd@lI|ZnHjE`AxT|Fb\\zJp\\pLx]`Nj\\hOx]vQzRlKtSnMvBrAjQ|Kh\\|T|b@n\\luA`jAnm@tg@j`A~x@j^dZdc@z[vOhLte@j[bh@~[b_@jTl^bSbe@bV|~@pb@vn@tUj]pLf[dJ|VhHb^xHxe@`Jzw@zJbo@nEhh@tAhdA^n^{@bk@cEfFc@lOuAhQ}A|}AcU|bA}TjhA_[lwBqv@t{@ub@xfB}w@nnAod@b~Agd@zrA}Xpe@{HtN_Cfd@wDzFe@lvAaMxvAqBvdARxv@vCnbAxGtt@bJfSdChO~BraBtZhdBde@zt@dWxwFv~Ab`FflArgDbm@|qDfb@hlCjRtxBvGdCH|iClDnoCUrh@GppHuFd|DuQrd@wBvtBmOtvBiT`tCy\\~sF}o@zfCo]~tBm`@nbCyi@pvEqkA`bCak@li@yKj}@_NtgAwLniBuMvuAcCh`Bs@poBjHvx@jGlkChZrxCnb@hyDbl@zrCph@rqDnu@deB|ZzfAtP`~AjPtcAfHfm@xBro@~A`Td@vCBv]Jbq@Y|rBcEzmEc\\~UsB|jCcUnfEi_@~qDoXjmDeYxyCiV~vAqLzxDkRz{CoIfyDwIdnEiMj`G{QfbBqBzsAfBpfAxE`gAjLdpAzT~QdD~_@tJbkCrt@niA~d@baB|y@v@`@xrAn{@~lBjzAjqAvnAhjBxqBdcBnjB`xBb_CbiBvkBziB|iBzsAttAbmAxkAhoBvcBzoBf|A~aBtkAllCtgBxtBpvAdwBbwAxeCv`BvrC|pBnaCxqB|lBhoBbJjKhpBrdCviAhaBp~AthChgBh~Cnd@fx@t^jn@xgArlBfa@tq@jNrT`a@tn@dq@r`AjN|RzSnXbc@li@f_BrhBxsAtpAxzAtlArmArz@fwAd{@djA~j@|iApf@x_Bnj@jgApYv_A`TpEbAbw@lNnwAnSl{Cx`@baCn]bkA`P`Db@jzAnSt_AnRl|Aj^doAda@`f@xQf[rMfe@xR~l@zYt{@zd@zx@fe@hjAds@txBdsAn_CtxAbKlG~dBbbAhcBt{@hhAfh@vdAxd@`tBtz@dgD~uArhAvd@jfAth@~JfFrPrIjy@~f@jv@tg@jeAry@`z@ls@xf@ff@t{@v`Anq@bx@dfAxtAfeA~xA|uAluBtJrO`zA~bCh`C`hEnyI`uOpC`FptF~_K`t@vjA|eAxwAlD|D|dAhoA~gAthAjoAjhAjeAzv@jdAlp@xeArk@~z@h`@du@vYnyA`e@dGhBt~@tTv_AjQ`m@tIfm@jG~MdAdj@zDhi@pBlw@~@p`@b@hoAsBvmAkHhsA}NnoAoT~pAwZjdBsi@prBer@zaCsz@~aAe]n`Beg@||Aka@|`Bq^dxDgm@`lCu]xsBi[fcBwZ`_B_ZlHuA~PcDflCgg@flBuZ~sB{VziCeYteCyW~wAmMbE_@l{BaTbdCaVpkBmNb`B{Drz@G~qAbDnyCzSv}B`SdWvBjlBbPjmCnY~eDz]roCfWzvApIhp@tBbtA|Bv{A}AvhBcHdeBcPx{@yL~O{BpjC_h@hg@sNdeAcZlqDesAf_Cy~@bxFmzBz}FsvBdtCucAniEgzA`EwAfiFeeBfLqDp{Ayc@`[qHf`Bc`@~eB_Yn{AqMrsBaIfxA?p`BfE`iAzHr|BdXhyB|d@j{Bbr@~cBvq@ffElkBjKjEjYdMv`Axc@|n@hYt^|Ot}Atq@xiBtv@tkAjf@|a@tPl`Al_@pqBfv@xjAlc@~oCraAlwBrt@bg@zPxcFn_BpqC~|@nm@dSdv@nXhx@|Zb_B|q@|jB|}@`vA~v@rcEnlCf[zUr~B~aBpeB|mApn@fb@lf@pYnf@rX~bAdg@xtAbj@~eAd]zoAf[|mA~SbiAfNplAfIvyA`ErwFiHle@m@vlBkDndCeC~}BgBvrBm@rtCwA`bCqAvbB?lz@vAzfA`Grx@dH|bAhNl|@xPdsAp\\lfAp]`rChfAfcCfaAdcAb_@frAxc@xoAx\\vs@`O|}Bb^|qDde@PB|xBpYhH`Aj_BfTdjBrRvv@xEtlAlGf`E|KxbBlFncAtEzp@~E|z@dKh_A`OhnAzWdkAp]xlAxd@jfBdy@|gNnzHx[`PzVvKdeAl`@toAp`@n~@rTf~@tQjsA~QliAnI|uAbEvoAe@fZMlI_@d`@}Arq@{D|hA_MxMyA`_@oFj~@}PhUuEzYaGp~Ag^t~Byh@fcg@scLzcEa_Afi@wLpxByc@hpBmYdfAwKjnBgNd{CmRvdA}JhyA_RddCmc@zmBme@d|Byp@`y@kUruD{fAr`Da}@bpAmZd~@yQ`t@_MltA_Rtz@{IrhJiy@l~BgSfOoAtAMnpBqQvdCqTjnCsVfpBwPpNmA|}AgL|fA{E~kA_BziAm@vq@`A|dBrElnAnHn`AtHv~@|JrxAjSnpEv{@~hCjg@xaAbP|cBdPhcAlFz`Bl@|}@{Av~@mEl`BaPx|@yN~yAgZnaFybAlz@uKtiAcKbbAaEf}AyAbfAxAjpAbI~eDbZlE`@n}@dIhTnBlw@hHdtClXrqAlLvc@rC~aBxN|x@hH|hCtTrp@vEvp@~Ct}@pCb}@bAbcCm@xwB_FdSUnrEcKhf@yA|lCsFx_E_PpoCeSzeCkV`QqBb@GrsC}^hvD}g@|kDee@zyBsYtpBg\\raAkSjkAmXhkAa[f}A}d@~yBqx@rD{Az{@m^plBw|@|zAow@tfBgeAhpAoy@zcBeoAzh@i`@b_@iZ`F_Et}AclA`QgNpFiEdViSrKoK~FiGfImKlHkK|IcOtGsMrGsOjEaMdF}Px@eDfC}JpBwJxAmHrB_MnBmOzA_N`AoNrAoWn@{TBkDFqF?qOMoNk@cScAyTkB_XuHk`AqAsSw@oT[gROcRLuSXmMx@}RnAkRfC_V~BgS`Es[jHgg@BuLz`BkhKpQsiAPgAlrAcnI|aByiKbi@ceDjZieBlpCc|OdAgGx_@muBzc@qbC~q@ofDrh@mzBr`@w|Ad_@usAjEuO~Kq^vLm`@bJqYjHkUpUmr@|z@s_Cpc@_jAbl@qtApoAinChPa\\|Qa^|b@kx@n_@up@bd@ou@|JePrhAqeBxyB}dDptBk|ClrAqtBviAwoBdgAitB|uAmrCdaActB~wAc{CppAqiCzoBopDjrAmtBn`CgoD`yAovBpcCyvD|sAg~B~uAclCxhB{_Epv@ukBnjBycFhbAmxC~z@ypC`c@k{Aty@u~Crg@}tBxr@cgDld@ybChw@_dFvw@{yFf{AubLf_@{tCjNofA~Fop@lEsf@jJgeArDct@bAmSrCmz@vAwv@r@at@Biz@[gf@k@gm@mAwh@oAuf@yDey@cGiaA}IucAeJiz@sIsr@gSwzA{nAwvIyJyq@qhDceUa[osB}Guc@uZomBk^wtBw[mdBq_@miBqpAsjF}gBm~G}_Ao~DoZwzAq`@y{Bec@i}CaNmoAyUg}BAK}QycCsHwqAqKgwCuDahBaCuhBUe{BfB}pBfEgaCtE_yAlJwvBxTo_DvXo~CtAmOPkBhp@ipGxp@}qGln@awFxOgqAp[edClVqfBjWifBhOgbAnTguAxw@g~ErAeIJk@df@ezCdSwnA`RkjAdv@gyE~}@irFlTsyAhV}dBxNsiAtb@iyDbQagB~TyjC`Q{_CjV{aDpNkkB~Lk~ArJihA`MerAhLahAnQy~A~Qo}Adm@geFpb@qpDbS{dBhRwgBhTk`CxKktAfPkbCvJyeBtG}vArEokAzDijArEskBrD_xBtCclDE{dDcBqfDsPyxMid@c{YcHckCoE}tAaMikCkG{jA}N{}B}Ly~AyOakBoRakBqPwyAkXsxBeh@ujEiYyhCaMinAuP_iB_NqlBkLymBuJykBaHqbC}EeiCS}aC?y@z@mjAxCknAlHefBrHwlAbMesAdIgu@vM{aA`QagArSmcAfNoq@jLue@lMcf@pDqMbOmg@d_@whAnc@gkAxe@ikApY}l@hj@_iA`_@ir@xo@}hAr`@_p@rj@c{@|u@_fAz|AcoB`f@}i@xa@ic@vq@yr@vfA}bArgAq`AxlOadM|t@gn@ls@cq@z{@g}@xq@qx@~n@k|@~j@c`A|HkOne@w~@bHkPnWsm@vKiWfMg]xUms@vPgk@tNui@~\\gzA~VavA`ToyAdFgd@hBcPnHqw@bHa_AhEs{@xFitAnCu|@~P_~EfM}pCvCyb@vKi~AxPacBpPoxAfTc|AlNyv@~Ne{@tVwnAz@gExj@clCpmAiqFn`AqhErAoHbs@{bD~\\cjBrCqOz@kFpDaU|SerApOcfA|TmjBrR}jB`PmhB|KevAvJq`BxAmUlHknAnp@yjKvVqjDhn@_cIvx@syIhF{g@vyBglTp]qjDb`@imDtVemBbUg|Atf@_rCd}Cq_Qdl@ceDzXaeBnd@udDjm@qiEll@{fE`Su|AdRw~ArGas@hFgo@vEit@|Das@B[~DeaA|A{g@fAyn@b@{s@Fah@?qs@}@yt@eAyi@sBgp@wFurAYcHgSc{EmEa}@cDe`AaBqh@gAiq@uA_yA^ulArAauA`Cqz@jDa_AhDkx@|Dww@fFm~@fEos@pEqs@fJoqAfEoi@dEug@lHky@pHmx@Da@hEqd@bFye@hFif@lJ}w@`H_h@|F{`@vEm[xF}\\|EgYtMwp@rIka@~FiWbBsGfGyVpG_WjAeEdKg_@`Owf@`Ke[dL}\\rJsWrIaUpI}SdJoU~Qwb@lZqp@tYil@bAsBvyCseGd]ir@zz@ufB`o@ytA|Qod@dR{d@|Xew@r\\adAbYkfA~Sk}@`Pkv@~BeLhZabBhr@qiEtTcqAtXixA~Y{tAb\\onAr^{lAhJaWjZey@`b@iaA~h@}eAf_A}dBjpBehD~v@e|Apf@gfAxAcDxa@yeAt_@skAjU{w@lWweAxR{`A`TcqAnNmcA`Iws@hAkKbC{XpFiv@rDmm@bF}dAb@{L|Akb@xOe}FfFiqAvE_`AxF}x@|JohApJyx@xKsz@xRaiAjLqk@v@iDxPwt@fZqiA|Tyt@pQ{i@~a@qfAbtC_hH~b@oqAtXa`AjSmx@dMei@xLaj@vN{y@tQ}kAdl@}oEf\\yhCheBw~Mr[e}BtPebAdR}`AtZipAxZweA`Y{x@dZi{@`Ssb@l]ev@bVgf@l}DipHhHaNlpBosDdeB_bDbd@o|@bXgk@tVcl@~Tkk@~V{t@fXw{@hWibAvRc}@dTkhAfNy|@`Jqs@hI_s@zGmq@zEit@|FedAbDidAtB}fA\\ybA[cfAuBelAAYgEsnAgMyqByPeuByQcrBwPsuBsJsfBqCys@gBqq@gA}oAXgoA|B{vAjEcqAlEmu@zFaz@fNqrAvQctA|Kir@jLko@rMym@bRcx@|Mof@tNcf@tGsSxGgSrQwg@lSch@fTwg@jUkg@vjBq{DFMnn@{qAzDiIf\\_s@~_@ez@ly@yjBrEcK~u@uiBxn@c_BjC{Gdr@miBv]aaA|IaV~hAadDbaAi}Cj^imAla@auA~aA_mDlkAieEliAi_EtvAcaFjlBccHfv@mlDn\\chBnSslAdUuxAhSs|A~P_zAlPo`BxMcyAlLg~A`Jy`BnHc|AvEwrAvCknAxCovApAmzATq|AGcwAqAytA}Bw~AoHkmCmIkrBgLqqB_W_{Dw]kyEoT{bDcGy_AmF}_AuCoj@iCwj@_Dws@eCms@wAyc@kA_d@_CmhAu@ac@e@ec@w@u~@[__AD{eAVieAvAopAdAgp@`Bey@jI{jCjDmy@|Ea_AdFsz@NkClDyg@rDgg@~AsSlCwZpJmfAxK}eAvHsq@j@qE|SsaBvOqgAfNi~@xSklAbIac@tHya@jr@{bDx\\mtAb^oqAj]sjAx_@ulA`]qbAra@whArh@erAd|@upBvaAunBbh@}_Azw@urAxw@_mAdo@q}@h~@_jAzj@er@zm@yq@`TwTjAkApY}X~}@_|@hq@qk@hz@kq@feAww@jtBmyAb|B}~ADEdaBklAn}@ks@zj@od@pc@_`@rc@oa@rAoAtPkPz[{[t{@{~@hgBaxBnv@aeArx@ikAndAa}AddAq~AhlBouCxF}Ixp@ceAtrAynBlg@ys@dj@us@rtAmdBnf@yi@d`@ab@hcA{bA`y@qs@xn@}g@jaAeu@zhAmu@pcAep@zgAyn@~EqCrtAcu@~lBafA~cA}j@zbB_eAhiAcv@x{AsjA~{AqnAptAcjAn^gZjfAc{@rcBquAhtCe`ChtBgcBlqA_gAryA{sAb`A}~@~i@}j@~AaBvb@yd@tRaTvN}Onm@wr@zm@ur@xXs[tZ{]vu@yz@bpBk{BpiAesAfm@ku@|l@}w@np@waArSm[|f@_z@vGiLzSm_@|]yp@vf@mdA|g@ckAb\\yx@xWqr@t`@yjA`Pqe@dOgg@jNcf@hNof@hV}~@f[oqAx]mcBda@yvBje@agCz[m~ApJcd@j_@o~A`[mlAnWo}@la@soAt[o_Ax[y|@vpBqtFj}CmrIjeB_yEn~@ygCrt@mqB~c@cpA`hAomCdz@ciBne@q}@ju@gqAxO_Vjg@gv@fy@_iA|k@qt@xq@gw@~o@ip@zM_N`a@o_@lh@}c@vo@wg@rd@_]rn@sb@~X_QjYkP`t@u`@j^eQpc@aSxj@gUjdAa_@`e@sNdu@eTvkAgZv~@kUn~@qS`}@aRzgAcT|}@uOhYkE`x@_Lrl@sHbh@sFrgA{Kz~AuLvb@sBz[_Bdk@sCrMh@neKug@p_AsEpqBaHxfB{A|sAv@px@dCbs@fC|v@vEz`AxIz{@dIvq@pI||ArWpk@jLb}@xRhkA|YrgDl_AncAtW`cAjUho@vKleA`M`cAjGnx@tBfq@?daA{B|`AuGfBMb|@aL|aAoPvz@cS~t@cT~iAka@ngBeu@peIsaDzfDstAx}De~A`xBk{@pcBgr@hiBus@foAad@vo@oP`g@qKtm@qKbt@_I`_A}Ezr@u@jj@n@hl@rBrdA`Knq@dLni@pK`}@tWbu@xUt|@f\\dbCdz@blAzb@`bBvj@zhAd]bsA|\\btCxl@jaBb]leBr[dpBl^`fArOla@lFxKvAnn@|Fv@Fvl@hFl[vBf[lBlb@vB~\\zAtpAnC~PDbmAXjdAiA`Tk@zVo@|qAcEhy@cFpdCwNjiAkHzaAmErv@mDvu@}BvzAcB~z@Htz@nApr@~Ajr@`Dvf@rClf@pDbn@vFrd@jFru@tIxTdDd|AhUjgBza@pT~FtYzHxn@~Rxl@|S~MzEf_Ada@fk@dYth@vYfn@d_@~v@lh@ff@d_@v_@b[f`Ar{@zi@lj@|f@hj@pq@px@v_@xf@pg@lr@`}@xtA|v@vkAnaAn`B~f@n{@fl@|hAja@z|@nd@~dAn\\r}@vZb_AvZ`gAvPbq@rQby@h}A`_HpYtcApX|y@jS|j@d\\rr@zYvj@zd@jp@hUnX`i@di@vSzQvj@t]hYpOz[fOps@jTp_@fHdq@hG`s@z@bl@cC|i@wG~c@wJvf@_Pdr@cZzs@s]hjCq}AnxAwy@bLsG`m@oXdoAoh@v|@eZzw@eU~x@gRxv@_Npw@wK~i@}FrfAeHb_AsDf|@iAxjAd@hvArAnhAxA`aB|DhfCjLplApH|dArHxuAvMhzCh^voLnvB~f@dMlzCzu@rN`EtwEpfApdEro@xqEbe@`mDvWlaBzJr|Gxa@bcAnJfc@lE`c@zFvhAjQjv@rN~`@pHv`@|Iz_@rIzqAn^ht@hUxa@nNd{@tZtp@|W`p@vYlo@tYdn@z[~iA~k@ba@tSn{@vc@|~Afy@~g@lVpf@tTzCpAxcAxb@~^hN`]nMxIdDvi@xPxx@fVr}@hVta@hKbc@bK|\\lHza@rHhj@bJ`n@dJ|i@dH~k@fGhf@tEpg@~DrbAhGhb@lB`d@zAhr@xAf\\`@t]JpZAl[Y`y@eAjs@sBzw@}D|e@{Clg@cErg@cFbe@gFbj@aH~i@aItb@{Gp}@eO`~Ec}@`hAsTxeAmTzb@gIxdBgZ|gAgSxdAoStfAmRbfAsQr]mFj_AyLj^kE`a@{Dj`@kDp_@uCny@aFd]{An[eA|b@gAb]c@laAg@~^DvZX~A@hm@|@rq@`Bpr@tCfk@fDpj@lEpi@fFpr@xHhq@`Ir_AtKraAbLh_@|D~_@lDhq@`Erd@fAzg@@df@_Azb@uBxc@eDrj@cGvg@gItk@mL`\\wIj[gJra@cOv_@_P`f@qTnTgLlViNbg@{ZxRcNdXgSpQyNrRqPb^g\\x^q^rWuYnSwU|QuUh`@{h@|d@gs@lb@at@x[om@xUge@n]qt@~\\qt@l^gw@j_@ex@xy@}_Bp]mn@j]ul@d^wk@~_@ul@j_@gj@~a@wk@t^we@~c@ij@hf@ml@`i@wk@zg@ih@ri@wh@|RsQnMoLr`@}\\ld@}^ve@y^fn@cd@fq@}c@vf@kZzf@kYdg@kXvm@sZpWyLlVwKph@sTtl@qTtTcI`TyGzZcKjYmI`d@_MrKmChk@mNda@sIfXeF|p@iLva@gGzc@sFvp@gH|c@gDfy@mEb[_AfYw@pf@Y~c@Bv]d@hm@bBh_@lBdc@pCzj@jE|fAvOpAR`SdDdARtg@`Kjf@fLpe@lMhV|GxUtHhl@pS`u@nZ~s@h]dg@dWxe@xXxy@ji@dz@|m@pr@xj@v}BhqB^ZxeAx~@x|@bp@`l@n_@xfA`k@~h@~Tjr@zVte@xN~h@hNpi@fKtu@dNpn@~Hnn@zF@?zJx@~f@hDfg@~Blr@zBvm@r@paD_ApkBoHl|CyL|m@{Dlz@yEn|@yE|_BuIdl@yCpEU\\AnaBqJ|r@cEhw@kDf^gAf|@qCb`C}Dr{DYjPRth@Lhi@lAznA~BdoAlEdqAvFlwDhXbbAxIzpA`OzdAjMfeBbVnvBj_@j@Jto@xL~[bHjiCtj@|hCrp@pyC~~@fuB`r@fr@dWjk@lTfbDzqAhyAvj@ba@lNhCz@po@hSfhAnYzmB`^|_BdPdaBrIjaB`AjaBwD`_BsHboGgl@z`BqMjjAqEnd@gAbd@Vr_@\\j_@zA``@|Av_@lCp`AnKv_@nF~^lHfb@hJja@hKvb@dMjb@rNjuA~k@xk@zYvk@z[l]vTxVnQbeArx@prBxjB|wB`wBtlDlkD~yEbeDvmPv`JzvCfrAfm@zSdm@fSj{@xTh}@|Rz~@vOhi@vG~`@rEja@jCfaAtE|`AjBh|@Kp|@kCtJ]hl@kDtk@_F|fCqZrdAcSxJmBnmAw[jhAe]zaAq]nPwGrt@}Z`t@m\\h]qPx^iSp~@yf@pdA}j@`k@{YtuAeq@nq@{Xlz@oZzrCe|@f_Cgt@zaAe_@pa@aQh`@wQrUkLzYsOn`@sTv`@uUvYoQlhCg`B`YuP~S_MpRoK|OmI|LgG`VkLpYcM|LcFjLiEtZgKfMsDxLkDzRsEhNwCpMcCra@aGtQaBxQqAxQy@tVo@lRKlN@pMTvTr@pc@tCx[pDjTfD~Z`GNB`TfFf[|IhZhKnZtLf[hOdO|HrNnI`YpQrXhSjUbRdTlRhSzR|SxTpg@~k@t_@ne@haAhoApb@dj@vQbU|S~VdQfSdP`Qr\\|\\tWjWxSjRzUfSrW`T|X|Shl@pa@rUxNvVhOlf@~W`h@bWp{@|_@tbBxq@lnCzfAtxApk@rb@tOnc@dOpe@hOzf@tNjb@|Kj`@dJja@xIva@`Itb@pHxb@rG|c@`Gzb@xEvc@hEfwCnU~^hDbr@rHhk@lH~j@~In\\tFpnAzUpxAdXbhAfRb`@bFha@xEpc@nEvVzBzU`Bla@bC|]`B~c@|Axd@dApc@Xhy@E`o@q@`i@yAvp@yC|j@sD`w@_HdoAsOf@GdZaEvfA_OpU_DxXcDrYwCrh@mEhg@iDnsA}I|p@{Efh@mF|[wDzAS~XuDjx@mMn]kGdXuFnDs@rSiEndAaWnp@gRx~@sZ~lDupAhcAk]po@mRpm@yO`o@yOlo@wMt`AsOhiA_Ol_Du[|nAcMhd@}D|SsBjlB_RrnCw[|qAgRx|@uLnTyCfrByXnaDgd@|jBeQ|h@oB~h@uAhi@Wfi@Rrh@rCrh@tD~b@|E~b@`Gnc@xHla@zI`o@bQrk@pR|h@zSbs@`\\`w@hb@h`CxgBjdBtiBhkBdxBhjBjcCvkBfuBnnArlAhuAzkAxo@~g@~WlSfgAvs@v~EjbDpD`CveBfqAzn@pm@rr@tr@t`@zb@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 104 miles.","announcement":"Continue for 104 miles.","distanceAlongGeometry":166930.016},{"ssmlAnnouncement":"In 2 miles, Keep left to take Autoroute du Soleil.","announcement":"In 2 miles, Keep left to take Autoroute du Soleil.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take Autoroute du Soleil.","announcement":"In a half mile, Keep left to take Autoroute du Soleil.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take Autoroute du Soleil toward Clermont-Fd, Lyon-Centre.","announcement":"Keep left to take Autoroute du Soleil toward Clermont-Fd, Lyon-Centre.","distanceAlongGeometry":268.889}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[36,210,222],"duration":19.598,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.078,"geometry_index":7207,"location":[5.150599,47.278757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":1.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.594,"geometry_index":7215,"location":[5.145493,47.274793]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,228],"duration":4.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.953,"geometry_index":7216,"location":[5.144912,47.274433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":2.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.021,"geometry_index":7218,"location":[5.143651,47.273688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,232],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.025,"geometry_index":7219,"location":[5.142985,47.273314]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.142641,47.273134],"geometry_index":7220,"admin_index":8,"weight":1.902,"is_urban":false,"turn_weight":1,"duration":0.955,"bearings":[44,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,232],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.902,"geometry_index":7221,"location":[5.142335,47.27297]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,234],"duration":23.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.779,"geometry_index":7222,"location":[5.142034,47.272813]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":47.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.527,"geometry_index":7226,"location":[5.134083,47.268841]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,214],"duration":2.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.967,"geometry_index":7236,"location":[5.121768,47.258748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":67.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":60.576,"geometry_index":7237,"location":[5.121264,47.258245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,249],"duration":1.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.459,"geometry_index":7247,"location":[5.101537,47.245399]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,251],"duration":2.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.219,"geometry_index":7248,"location":[5.100922,47.24524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,253],"duration":5.188,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.66,"geometry_index":7249,"location":[5.09981,47.244974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,259],"duration":24.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.281,"geometry_index":7251,"location":[5.097433,47.244519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":0.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.684,"geometry_index":7253,"location":[5.085798,47.243055]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":53.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":48.541,"geometry_index":7254,"location":[5.085498,47.243027]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[120,300],"duration":62.73,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":56.451,"geometry_index":7267,"location":[5.064872,47.24693]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,257],"duration":1.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.248,"geometry_index":7296,"location":[5.041051,47.243971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":29.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.299,"geometry_index":7297,"location":[5.040508,47.243883]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,238],"duration":23.146,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.812,"geometry_index":7309,"location":[5.028977,47.242145]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.023127,47.237278],"geometry_index":7325,"admin_index":8,"weight":33.887,"is_urban":false,"turn_weight":1,"duration":36.566,"bearings":[14,24,200],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":37.982,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":35.127,"geometry_index":7337,"location":[5.01541,47.228472]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214,239],"duration":24.482,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.639,"geometry_index":7342,"location":[5.005886,47.219947]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.001119,47.21379],"geometry_index":7347,"admin_index":8,"weight":6.879,"is_urban":false,"turn_weight":1,"duration":6.373,"bearings":[4,24,203],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,199],"duration":145.086,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":130.559,"geometry_index":7349,"location":[5.000123,47.212101]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,184],"duration":13.846,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.453,"geometry_index":7367,"location":[5.000841,47.171029]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":42.875,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.58,"geometry_index":7369,"location":[5.000406,47.167071]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,203],"duration":14.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.084,"geometry_index":7378,"location":[4.995154,47.153677]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.324,"geometry_index":7382,"location":[4.99213,47.149432]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209,221],"duration":24.838,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.348,"geometry_index":7383,"location":[4.99205,47.14933]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.986307,47.143234],"geometry_index":7388,"admin_index":8,"weight":20.301,"is_urban":false,"turn_weight":1,"duration":21.467,"bearings":[32,36,216],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":28.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.1,"geometry_index":7390,"location":[4.980834,47.138205]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215,220],"duration":21.295,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.223,"geometry_index":7395,"location":[4.973598,47.131604]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.968928,47.126396],"geometry_index":7401,"admin_index":8,"weight":13.723,"is_urban":false,"turn_weight":1,"duration":13.418,"bearings":[15,29,206],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,202],"duration":23.543,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.758,"geometry_index":7405,"location":[4.966477,47.122819]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,200],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.455,"geometry_index":7411,"location":[4.962705,47.116382]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,206],"duration":159.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":143.24,"geometry_index":7412,"location":[4.962633,47.11625]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208,222],"duration":0.369,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.326,"geometry_index":7482,"location":[4.925687,47.076416]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":15.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.057,"geometry_index":7483,"location":[4.925613,47.076322]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.5,"geometry_index":7489,"location":[4.922057,47.071868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":8.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.775,"geometry_index":7491,"location":[4.921238,47.070889]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.919822,47.069206],"geometry_index":7492,"admin_index":8,"weight":39.088,"is_urban":false,"turn_weight":1,"duration":42.328,"bearings":[15,30,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,217],"duration":17.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.336,"geometry_index":7503,"location":[4.91213,47.061282]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,219],"duration":22.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.195,"geometry_index":7510,"location":[4.908682,47.058257]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.903881,47.054428],"geometry_index":7518,"admin_index":8,"weight":11.045,"is_urban":false,"turn_weight":1,"duration":11.166,"bearings":[32,42,222],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":20.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.094,"geometry_index":7524,"location":[4.901409,47.052572]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":14.531,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.422,"geometry_index":7530,"location":[4.894876,47.047808]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,220],"duration":11.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.656,"geometry_index":7538,"location":[4.890262,47.044311]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217],"duration":0.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.898,"geometry_index":7546,"location":[4.886802,47.041413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":11.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.58,"geometry_index":7547,"location":[4.886553,47.04119]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,214,227],"duration":64.26,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":61.029,"geometry_index":7556,"location":[4.883354,47.038185]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.870904,47.021692],"geometry_index":7591,"admin_index":8,"weight":26.73,"is_urban":false,"turn_weight":1,"duration":26.416,"bearings":[14,25,200],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":40.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":39.434,"geometry_index":7599,"location":[4.867114,47.014572]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.545,"geometry_index":7603,"location":[4.861339,47.003652]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,201],"duration":3.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.666,"geometry_index":7604,"location":[4.861259,47.003501]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[21,199,214],"duration":14.674,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.92,"geometry_index":7605,"location":[4.860693,47.00251]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.858606,46.998589],"geometry_index":7608,"admin_index":8,"weight":97.57,"is_urban":false,"turn_weight":1,"duration":104.406,"bearings":[21,201,359],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.195,"geometry_index":7619,"location":[4.840084,46.971168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":0.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.504,"geometry_index":7620,"location":[4.840055,46.971111]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198,213],"duration":43.053,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.74,"geometry_index":7621,"location":[4.839978,46.970962]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.835378,46.958905],"geometry_index":7630,"admin_index":8,"weight":67.641,"is_urban":false,"turn_weight":1,"duration":74.051,"bearings":[7,15,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":3.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.793,"geometry_index":7644,"location":[4.82449,46.938411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":0.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.43,"geometry_index":7645,"location":[4.824047,46.937577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":13.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.586,"geometry_index":7646,"location":[4.823978,46.937449]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,198],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.119,"geometry_index":7650,"location":[4.822141,46.933651]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":3.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.988,"geometry_index":7651,"location":[4.821976,46.933312]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":9.453,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.738,"geometry_index":7653,"location":[4.821586,46.932411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.66,"geometry_index":7657,"location":[4.820521,46.929754]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":236.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":212.928,"geometry_index":7658,"location":[4.82045,46.929557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":2.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.457,"geometry_index":7733,"location":[4.82054,46.865161]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[165,184,347],"duration":16.809,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":15.111,"geometry_index":7734,"location":[4.820804,46.864393]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.822858,46.859738],"geometry_index":7739,"admin_index":8,"weight":77.83,"is_urban":false,"turn_weight":1,"duration":85.387,"bearings":[160,331,341],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,358],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.996,"geometry_index":7761,"location":[4.831967,46.836218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,359],"duration":5.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.123,"geometry_index":7762,"location":[4.831998,46.834928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":14.869,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.119,"geometry_index":7765,"location":[4.83193,46.833316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":6.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.488,"geometry_index":7771,"location":[4.831382,46.828992]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,189],"duration":60.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":58.613,"geometry_index":7773,"location":[4.831011,46.827018]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.326,"geometry_index":7782,"location":[4.826859,46.810311]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":8.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.73,"geometry_index":7783,"location":[4.826836,46.810219]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188,208],"duration":12.051,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.645,"geometry_index":7785,"location":[4.826298,46.807865]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.825574,46.804508],"geometry_index":7787,"admin_index":8,"weight":10.965,"is_urban":false,"turn_weight":1,"duration":9.498,"bearings":[9,189,351],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":11.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.959,"geometry_index":7789,"location":[4.82501,46.801928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":1.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.783,"geometry_index":7794,"location":[4.824141,46.798857]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":4.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.607,"geometry_index":7795,"location":[4.82398,46.798426]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.57,"geometry_index":7796,"location":[4.823531,46.797321]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":9.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.521,"geometry_index":7797,"location":[4.823474,46.797179]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":3.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.674,"geometry_index":7798,"location":[4.822537,46.794864]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,194],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.463,"geometry_index":7800,"location":[4.822148,46.793979]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":60.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":62.162,"geometry_index":7801,"location":[4.822014,46.793622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.725,"geometry_index":7820,"location":[4.819378,46.778076]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,182],"duration":14.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.982,"geometry_index":7821,"location":[4.819374,46.777885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,354],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.68,"geometry_index":7826,"location":[4.819331,46.773965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,355],"duration":78.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":78.316,"geometry_index":7827,"location":[4.819354,46.773784]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,342],"duration":1.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.494,"geometry_index":7842,"location":[4.830552,46.754583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,343],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.012,"geometry_index":7843,"location":[4.830719,46.7542]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":3.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.496,"geometry_index":7847,"location":[4.831294,46.752656]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":3.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.08,"geometry_index":7849,"location":[4.831576,46.75177]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[169,177,348],"duration":2.094,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.086,"geometry_index":7850,"location":[4.831824,46.750992]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":5.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.281,"geometry_index":7851,"location":[4.831974,46.750449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":4.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.691,"geometry_index":7854,"location":[4.832326,46.749022]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.832597,46.74775],"geometry_index":7856,"admin_index":8,"weight":8.105,"is_urban":false,"turn_weight":0.5,"duration":7.82,"bearings":[171,342,352],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,351],"duration":10.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.107,"geometry_index":7857,"location":[4.833068,46.745676]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":167.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":155.215,"geometry_index":7859,"location":[4.833665,46.742912]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.262,"geometry_index":7873,"location":[4.842754,46.698129]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":1.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.172,"geometry_index":7874,"location":[4.842816,46.697753]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[173,194,354],"duration":35.775,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":32.191,"geometry_index":7875,"location":[4.842866,46.697406]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.844491,46.687739],"geometry_index":7880,"admin_index":8,"weight":11.078,"is_urban":false,"turn_weight":1,"duration":11.207,"bearings":[173,344,354],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":0.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.801,"geometry_index":7882,"location":[4.845005,46.68474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":15.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.328,"geometry_index":7883,"location":[4.845045,46.684496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.816,"geometry_index":7885,"location":[4.845764,46.680192]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,354],"duration":15.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.332,"geometry_index":7886,"location":[4.845804,46.679945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,349],"duration":0.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.891,"geometry_index":7891,"location":[4.847004,46.674845]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":25.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":23.188,"geometry_index":7892,"location":[4.847101,46.674559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":0.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.586,"geometry_index":7899,"location":[4.850302,46.667506]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":27.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":24.68,"geometry_index":7900,"location":[4.850405,46.667329]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":44.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":40.914,"geometry_index":7907,"location":[4.854833,46.66007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.777,"geometry_index":7921,"location":[4.859402,46.647826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,356],"duration":0.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.32,"geometry_index":7922,"location":[4.859495,46.646972]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":105.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":97.555,"geometry_index":7923,"location":[4.859499,46.646874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,322],"duration":40.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":37.469,"geometry_index":7973,"location":[4.864916,46.617598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,314],"duration":3.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.039,"geometry_index":7984,"location":[4.876457,46.609113]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,314],"duration":0.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.578,"geometry_index":7985,"location":[4.877444,46.608462]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[134,159,314],"duration":14.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":13.32,"geometry_index":7986,"location":[4.87763,46.60834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.881974,46.605384],"geometry_index":7991,"admin_index":8,"weight":80.719,"is_urban":false,"turn_weight":1,"duration":86.188,"bearings":[136,298,317],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,358],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.387,"geometry_index":8014,"location":[4.900374,46.584734]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":1.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.547,"geometry_index":8015,"location":[4.900373,46.584618]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[0,183,199],"duration":12.102,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.488,"geometry_index":8016,"location":[4.900369,46.584153]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.899595,46.580672],"geometry_index":8022,"admin_index":8,"weight":16.812,"is_urban":false,"turn_weight":1,"duration":16.654,"bearings":[13,194,353],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":12.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.391,"geometry_index":8024,"location":[4.897875,46.575957]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.211,"geometry_index":8026,"location":[4.89657,46.572359]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":25.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":24.48,"geometry_index":8027,"location":[4.896445,46.572009]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":0.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.867,"geometry_index":8038,"location":[4.895832,46.564693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,349],"duration":22.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":22.043,"geometry_index":8039,"location":[4.895901,46.564443]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,331],"duration":10.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.988,"geometry_index":8049,"location":[4.899162,46.557681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,319],"duration":1.365,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.332,"geometry_index":8053,"location":[4.901998,46.554999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,318],"duration":76.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":72.289,"geometry_index":8054,"location":[4.902388,46.554704]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":73.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":67.91,"geometry_index":8078,"location":[4.91963,46.536809]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.422,"geometry_index":8104,"location":[4.912666,46.516256]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.684,"geometry_index":8105,"location":[4.912473,46.515827]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198,215],"duration":16.178,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.957,"geometry_index":8106,"location":[4.912379,46.515618]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.910212,46.511093],"geometry_index":8110,"admin_index":8,"weight":6.898,"is_urban":false,"turn_weight":1,"duration":6.385,"bearings":[6,19,202],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":0.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.711,"geometry_index":8111,"location":[4.909181,46.509357]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":229.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":212.414,"geometry_index":8112,"location":[4.909057,46.509149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":8167,"location":[4.871326,46.446992]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":71.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":64.027,"geometry_index":8168,"location":[4.87125,46.446655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.574,"geometry_index":8188,"location":[4.86711,46.423783]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,200],"duration":0.232,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.199,"geometry_index":8189,"location":[4.867045,46.423613]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[20,196,201],"duration":14.162,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.723,"geometry_index":8190,"location":[4.867015,46.423555]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.059,"geometry_index":8193,"location":[4.865313,46.419858]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,202],"duration":4.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.418,"geometry_index":8194,"location":[4.865156,46.419564]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,203],"duration":10.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.777,"geometry_index":8195,"location":[4.86446,46.418348]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.862763,46.415693],"geometry_index":8198,"admin_index":8,"weight":33.023,"is_urban":false,"turn_weight":1,"duration":34.625,"bearings":[15,25,206],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198],"duration":3.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.598,"geometry_index":8208,"location":[4.856884,46.406915]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":61.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":56.961,"geometry_index":8210,"location":[4.856415,46.405876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":65.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":60.23,"geometry_index":8227,"location":[4.851661,46.388695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,216],"duration":0.158,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.148,"geometry_index":8248,"location":[4.839744,46.372193]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,216],"duration":3.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.238,"geometry_index":8249,"location":[4.839705,46.372156]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.83888,46.371378],"geometry_index":8250,"admin_index":8,"weight":9.434,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.207,"bearings":[36,217,225],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.836326,46.369073],"geometry_index":8252,"admin_index":8,"weight":7.309,"is_urban":false,"turn_weight":1,"duration":6.84,"bearings":[27,38,217],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":39.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":37.469,"geometry_index":8255,"location":[4.834652,46.367518]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":2.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.219,"geometry_index":8273,"location":[4.828918,46.357125]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191,199],"duration":18.715,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.762,"geometry_index":8274,"location":[4.828718,46.356471]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":2.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.43,"geometry_index":8280,"location":[4.827126,46.351267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":94.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":92.129,"geometry_index":8281,"location":[4.82682,46.350567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.496,"geometry_index":8335,"location":[4.809965,46.326814]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,240],"duration":6.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.953,"geometry_index":8336,"location":[4.809778,46.326743]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.605,"geometry_index":8341,"location":[4.80732,46.325666]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":44.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":44.473,"geometry_index":8342,"location":[4.80712,46.325565]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,196],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.426,"geometry_index":8371,"location":[4.795898,46.313615]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":86.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":86.582,"geometry_index":8372,"location":[4.795848,46.313497]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,188],"duration":0.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.281,"geometry_index":8388,"location":[4.79003,46.288328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.801,"geometry_index":8389,"location":[4.790013,46.288246]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189,199],"duration":9.299,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.293,"geometry_index":8390,"location":[4.789906,46.287728]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":0.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.766,"geometry_index":8392,"location":[4.789325,46.285044]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.77,"geometry_index":8393,"location":[4.789281,46.284835]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.789173,46.284335],"geometry_index":8394,"admin_index":8,"weight":2.52,"is_urban":false,"turn_weight":1,"duration":1.527,"bearings":[4,8,188],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.547,"geometry_index":8395,"location":[4.78908,46.283904]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189],"duration":7.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.723,"geometry_index":8396,"location":[4.788987,46.283472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,188],"duration":65.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":63.602,"geometry_index":8398,"location":[4.7885,46.281245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.672,"geometry_index":8431,"location":[4.791749,46.262652]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,337],"duration":3.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.895,"geometry_index":8432,"location":[4.791867,46.262461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,336],"duration":2.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.301,"geometry_index":8433,"location":[4.792388,46.26165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":8.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.855,"geometry_index":8434,"location":[4.792793,46.261006]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,336],"duration":9.648,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.16,"geometry_index":8436,"location":[4.794198,46.258777]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":56.326,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":53.504,"geometry_index":8438,"location":[4.795819,46.256168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":3.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.566,"geometry_index":8475,"location":[4.797226,46.239987]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.783,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.738,"geometry_index":8477,"location":[4.796789,46.238928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.98,"geometry_index":8478,"location":[4.7967,46.238712]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":2.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.375,"geometry_index":8479,"location":[4.796581,46.238424]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.172,"geometry_index":8480,"location":[4.796287,46.237712]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197,207],"duration":12.918,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.941,"geometry_index":8481,"location":[4.796266,46.237662]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":5.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.051,"geometry_index":8484,"location":[4.794756,46.23407]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.79412,46.232555],"geometry_index":8485,"admin_index":8,"weight":70.113,"is_urban":false,"turn_weight":1,"duration":74.723,"bearings":[13,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198],"duration":1.393,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.281,"geometry_index":8495,"location":[4.784567,46.211577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":12.885,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.91,"geometry_index":8496,"location":[4.784381,46.211192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":70.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":63.203,"geometry_index":8498,"location":[4.782464,46.20723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":56.094,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":50.48,"geometry_index":8503,"location":[4.772065,46.185619]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":72.564,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":65.289,"geometry_index":8524,"location":[4.770255,46.169133]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":1.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.207,"geometry_index":8542,"location":[4.769764,46.147647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":2.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.297,"geometry_index":8543,"location":[4.769672,46.14728]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[10,191,201],"duration":18.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":17.258,"geometry_index":8544,"location":[4.7695,46.146593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":12.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.785,"geometry_index":8550,"location":[4.767808,46.141374]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.766645,46.137805],"geometry_index":8553,"admin_index":9,"weight":84.719,"is_urban":false,"turn_weight":1,"duration":88.145,"bearings":[3,12,191],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,202],"duration":1.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.363,"geometry_index":8579,"location":[4.760974,46.111998]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,204],"duration":31.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":31,"geometry_index":8580,"location":[4.760752,46.111621]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.129,"geometry_index":8589,"location":[4.753621,46.103598]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215,222],"duration":20.898,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.891,"geometry_index":8590,"location":[4.753356,46.103337]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":149.379,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":141.902,"geometry_index":8596,"location":[4.748527,46.09824]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,204],"duration":24.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":22.465,"geometry_index":8655,"location":[4.731993,46.051526]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.09,"geometry_index":8665,"location":[4.727633,46.04426]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195,200],"duration":1.729,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.594,"geometry_index":8666,"location":[4.7275,46.043944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":19.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":18.184,"geometry_index":8667,"location":[4.72732,46.043469]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,183],"duration":43.125,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":39.875,"geometry_index":8679,"location":[4.72607,46.037908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,182],"duration":0.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.75,"geometry_index":8683,"location":[4.724999,46.025565]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.102,"geometry_index":8684,"location":[4.724987,46.025344]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[2,180,193],"duration":11.32,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":10.453,"geometry_index":8685,"location":[4.724955,46.024719]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.725277,46.021486],"geometry_index":8692,"admin_index":9,"weight":10.34,"is_urban":false,"turn_weight":0.5,"duration":10.66,"bearings":[170,346,352],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":4.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.016,"geometry_index":8698,"location":[4.726285,46.018598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":86.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":86.367,"geometry_index":8699,"location":[4.726798,46.017441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.613,"geometry_index":8729,"location":[4.736653,45.99434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":26.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":28.031,"geometry_index":8730,"location":[4.736675,45.994183]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.871,"geometry_index":8737,"location":[4.736871,45.986658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.664,"geometry_index":8738,"location":[4.736869,45.986423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":5.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":6.102,"geometry_index":8739,"location":[4.736867,45.986246]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":19.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.23,"geometry_index":8740,"location":[4.736849,45.984592]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":0.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.441,"geometry_index":8755,"location":[4.736166,45.979119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":3.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.621,"geometry_index":8756,"location":[4.73612,45.979005]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,201],"duration":2.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.336,"geometry_index":8759,"location":[4.735706,45.978088]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[22,203,221],"duration":6.797,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":6.961,"geometry_index":8761,"location":[4.73538,45.97751]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,211],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.105,"geometry_index":8765,"location":[4.734471,45.976164]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,214],"duration":1.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.762,"geometry_index":8767,"location":[4.734289,45.975954]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,213],"duration":26.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":26.863,"geometry_index":8769,"location":[4.73398,45.975638]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.73194,45.97344],"geometry_index":8771,"admin_index":9,"weight":23.215,"is_urban":false,"toll_collection":{"name":"Péage de Villefranche-Limas","type":"toll_booth"},"turn_weight":15,"duration":8.215,"bearings":[33,214],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215],"duration":3.844,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.836,"geometry_index":8772,"location":[4.731294,45.972778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,212],"duration":5.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.723,"geometry_index":8773,"location":[4.730808,45.972303]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,211],"duration":1.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.34,"geometry_index":8774,"location":[4.729966,45.971358]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,208],"duration":3.949,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.926,"geometry_index":8775,"location":[4.729773,45.971132]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.375,"geometry_index":8777,"location":[4.729182,45.970374]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.728586,45.969683],"geometry_index":8778,"admin_index":9,"weight":16.145,"is_urban":false,"turn_weight":0.5,"duration":16.053,"bearings":[13,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":111.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":108.41,"geometry_index":8779,"location":[4.726532,45.96727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":23.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":22.914,"geometry_index":8806,"location":[4.716059,45.949673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,340],"duration":16.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":16.492,"geometry_index":8815,"location":[4.717396,45.945692]},{"bearings":[141,322],"entry":[true,false],"classes":["toll","motorway"],"in":1,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"geometry_index":8827,"location":[4.720895,45.941609]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Clermont-Fd"},{"type":"text","text":"/"},{"type":"text","text":"Lyon-Centre"}],"type":"fork","modifier":"left","text":"Clermont-Fd / Lyon-Centre"},"distanceAlongGeometry":166973.344},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Clermont-Fd"},{"type":"text","text":"/"},{"type":"text","text":"Lyon-Centre"}],"type":"fork","modifier":"left","text":"Clermont-Fd / Lyon-Centre"},"distanceAlongGeometry":3218.688}],"destinations":"A 31: Lyon, Beaune","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 31 toward Lyon/Beaune.","modifier":"slight left","bearing_after":210,"bearing_before":216,"location":[5.150599,47.278757]},"speedLimitSign":"vienna","name":"Autoroute de Lorraine-Bourgogne","weight_typical":4987.426,"duration_typical":5288.654,"duration":5288.391,"distance":166973.344,"driving_side":"right","weight":4987.158,"mode":"driving","ref":"A 31; E 21","geometry":"iitdyAmwjyHxMnKrj@np@he@~m@tQjVlQrVro@jaAdZte@`e@`y@nUhc@zU`e@tVvg@jVrh@fJnTfIbRxHxQhf@hoA~mAhdDrnAbcDhq@dvArVvh@fPb\\nRv]nd@tw@r|AfaClXl^rl@xu@rl@fu@z~B`jCvaEphEl^n^vxDpeEn}ArgBn|Bt|CbdB|iCt{@v~Apy@hdB`{@pzBfp@rtBzj@jvBpVnjA|Hle@rOndArObmAxJleAtjAx{PxNjyCv@vQvG|}AhBbaBPtkBaAt`A_DlfAcE~|@oFzv@oRhpBaZ|yBe]b_Beg@hmBmmBfkGoGlTaLb`@sMdh@yNfq@aJpi@uLvz@wH|}@kDdq@iB|t@a@rXGjYAx\\h@`]nCzy@jDlo@nGnr@tIrq@tKrq@vL|j@xNxl@pd@dbBne@haBjUvz@fQbs@rOvr@hN~o@vPn~@~NdaAvLncAfCzWnD|`@vDnd@`G~cArCzo@rBrr@pF`cCrB~s@hDxq@hHt_A`Lp}@jLnq@fPvv@`Phk@fKn[vLp\\bLhY`Qh_@dXrh@tTn]nTdZlSzVfXdYfPpOrGzFbL~IrTxOfT`Nt[pPjUtMvf@tTth@hV~\\rPzl@j]|_Ato@zu@~p@dfA|eArhAvjAxi@`n@bi@pn@fd@|h@fEjFz{BbsCx}ChzDpoBnyBx|@z_AviAlgAna@la@|uAnhAjmAt}@|_BteA`wArw@zx@rb@tn@rYn{Avl@xf@nQ|sAtd@`_Blc@tnAnWtvA~Vl}AdTvjBvOfvAdHbgA|Bz_A`@fcHgW~tXc}E|l@yGlaAyIpxC_Qb`E}BpuA`CzhFzWnLhAdd@lE`aBlSzo@tLdz@fPtiAhVzdDv}@F@byCvhAzeEpmBzrArt@tz@zh@`hAdv@to@he@jE~C|gAvz@prA|hAjkAbgAxiAbjAhhA~lAj}BreC|zDlnEtrAt{AllAztAflArtApzClhDrQrQjM`Nf_@d_@x_@t_@lbAv}@b`A~w@npBd{Afw@zg@|wA~|@rf@vXve@pWhzAlt@de@dVpf@fV|lA~k@`oBp`Afj@hXfGnCpPjKhbE~zBdZrQ`ZfR`t@de@|r@df@tu@hi@nXzTlXfUzK~I`LnIlYtSxW|SjWpUvr@no@bXjW~WrWrWnWpWtW~VjWzV~WzVxXbWbX~WlYnWdZtm@nr@|m@~s@zl@nr@fm@hs@jl@js@jl@~s@vk@~r@zUjYjV~XbVvXtUvYnU|XvUdXbm@tr@dVbYrVnXxk@hp@pm@hq@pVdXtVxW`n@vo@xn@no@jn@ln@`WzVdWjVjWdVnW~Ufp@|l@fWlUnWzTpp@|j@rWrTtWlTvo@vh@bX~SbXpSdq@vh@nq@`i@lq@xg@tXrSxXjS~q@jg@~q@|f@pr@dg@h_@hXzDrCjrAl`A`r@vg@lv@~j@zWfSpYfT`d@p]pLbJrn@`g@dhBnwAbp@ti@|i@~e@`j@~e@nc@t`@tc@na@nyAnwAdl@hl@nl@bk@xm@|q@vc@~e@dU~Vv[t^`VjXpUpXfVjYfVrYba@tf@`a@dg@rj@ds@fVr[zOrSb`@jh@dOjSzVn]vf@vq@ri@rv@pBrCnj@nx@vTz[tT`\\hTv[dCtDhPjVfTz[dxCnqEfi@by@`j@dz@tSf[hTd\\|i@~x@xi@fx@~Uh]bV`]xTd[zT|ZtTlZ|TlZrU~ZlUdZdUrYxU`ZlUfYrUhY`WjZ|LpN|RhUzU~WtUvWNP|VtXhVtWvV|W~VpWxYlZhl@bl@de@nc@rh@tf@th@ne@zWnU|WhUxW|TbXzTbXpTfXfTnXdTlXxSjXjSxXhSrXbSzXxR~XrRxXdRxX~QfY`RvY|QzXbQ`ZjQjYvPjYpPzYrPzYdPdYpOlZzObZjO`ZdOnu@v^lu@z]d[|NfXfPl[lNlu@p\\ft@p[nv@p\\fZnMfZjMhv@n\\pnCjjAbjFz|B~eE|eBlhFf{B|MzFlH~C||@jb@`jBru@ps@d[ltArn@nsD~cBrmBzdAd}BdtAxlBzfAhrBzuAt~G~oE``JjfGvkCx_Bv`DhfB~|@lb@baAza@pBx@hHxCzhA~a@fv@|Wz`A~XxpAx]vrAf\\n`EdaA`lA~Yht@pSbdAvZ`Y~Ixg@rQpi@vRps@tXhpAzh@nyA~s@b{BfbAldDlxA|_D~sApqBn|@bxB``A`aBrt@v`Atc@``B~r@bs@tZ~FhC~e@vSneAld@|eAja@|w@fUdThIfX~I`^jLxXbJla@~NhaAfXnf@dMhKlCdv@`Qvt@nMxi@nJjh@hItn@|I`r@~Gnu@lGzj@nEtm@~Ct_AnFhn@|@pa@X~FDvq@_Atm@M|\\_Ar{AoCfh@oCta@_Cbb@oC`q@mFrk@_DdgA}M`r@_JbqAmS~_AmNrz@oMryAmUlsA}TtlAmRfhA}Ohm@}Ibc@oDph@_Fdg@_Czg@}Api@o@fw@Nbe@?v_@?fj@lCbc@nC|\\~Br[nDxcAlMfh@nHddAlPlqBz\\ruClf@psCjc@j_A|KlX|Chs@`Ijp@|Gri@~D|k@~Ddt@~Dhk@lDr\\~@feB~@llBn@`a@_Bbc@o@xc@oAh\\oB~l@}B~{@_HncAmJbaA_Mba@}E|x@oLdf@}Ilp@_Njn@}N`UsF~n@oObk@wOrx@mUxvAag@n{@a\\zg@aSxmB{y@x_B{w@zbA{d@xzCwwA~cDwxAvbA}b@tfA_`@v|@wXna@}Knr@wQzk@_Oh_@cI|MeBvb@sJbl@oKdi@_H~}@sLrl@eGxfAwJfz@gEt|@sC|dA}BroA}@vm@?nj@zBnIJpTXh_AlDr{@lF~aAjHvi@dG~L~Axl@zHplAhLrGz@fpBzYfwCnf@`rBn[vdBbYbgDdg@tkAzQzeB~XplEpr@vDl@f_ApNzqA`QbaDfa@tn@~IznBnXjp@vHbQrBxfAhPB?|n@tM|t@tQ|Y`I`dA`[zGpBtoCpy@h]|L~WjIhUjGh@PteAl\\daC`w@|WpHxZvIze@zJxZhEnW~D`IlAna@nBnc@nBjsAnBhn@|@pe@p@b_@r@`}AtClcBtCfkBbDhf@r@|JFnjBlCje@vArl@?p`@k@|RcBhJm@b^aGlp@iLld@oPpw@o^fdBe`AbpA}r@`fCsuAxkDwoBvyAex@t}BcpA`u@u`@h{@qc@vf@{U|`Agb@v`Bim@|VmI~\\eKtXyHhK{Cn[aHjDu@~p@}Nro@oN|`@kHhOoCfi@}Ir]qEfv@wJfWeDr`Cm\\beBuTreAsN`|BuZriEak@tsF_t@``Hi~@ngGkx@dcFup@v{Gk}@beGav@~vFwm@lvFei@ldFie@|gA{Jx|@cIhe@gEnV{BtTcBvu@{HjuC{WxzBiSfhF_g@~h@oEvnAoLtjBsQfNoAlxAuMprDg]lNoAbrBsUv~@{L~q@kL~x@cOz]_HzPaEtp@_Pl|@eV~aAkZzmAwb@fxAek@hjAih@fRgJ`JmEh{A}t@xuA_t@pdCqrA~`Aah@x[yPfc@oT|H{DlgAcj@nrA_l@nq@kYlw@eZxz@iYzt@eT~p@mQhv@_Qzf@yJjhAmRjp@gI`m@qGpi@kEb_@oBjt@yDbEGd\\sAdWi@|Ya@~bAQ|z@ZpmAzBh}AlFniAdErm@pCl`@jAr]~@|j@Dzi@qAf_@sBb_@sDd[mEbWaFln@oNvr@wOjb@qI|d@oHtYuBpWwAl][j\\ZxZr@zd@tD`\\hEhh@|Gl_@tEj_@jC~\\vAh^NlYm@v`@kCxT_CpYyD|PkClQaEb_@yJd]aMh[}Mn[}NfWwO`^yUt^uXx\\uYlj@mh@`i@uj@xn@mt@ze@oj@bu@y~@fcActAng@ks@vf@yt@p|@usAvu@}mA|w@usAln@mfA|f@i{@d[si@tg@u|@rFsJzk@abAje@{w@d}@azA|[qi@jI}Lt|@uuAhaBkgC|`@}k@v~@spA`xAgkBplCkaDzkA_qA~eA}hA~p@ip@lkAwfAf_A}u@|s@}g@tq@gb@`e@iVnl@kX|X}Kl\\_Ljo@{Pb[aHf_@}Fdb@aEbl@yCb_@g@fF@`\\Fds@nCxPx@z[rDnl@tJnr@lPtThFvwD`bA|lBlg@xn@fP`pDh_AzTxFrh@jMjw@jQ~q@rLpj@vFph@`Dn]dA|`@Dj_@]lk@aDjf@uFni@qHrNiCpn@uMthAeYbr@}R~r@wUbk@gTrm@kWp@Ync@iUjd@uX`_@yXvSuOnk@_f@|q@_x@lr@q_AlQkWps@emAnaBiwCt}A}sC~~@waBvm@{fAdi@}z@tg@sw@`o@{}@b`@qf@zXi\\dXyYbX{W|VaUnXwU|VuQli@i]hi@qY|o@uYds@mUbt@uPhm@iLtt@aJb|@aIdo@}DpYiB`m@wB||@qCfjAgBngAIxn@f@nk@hBx^hCzb@~E~b@nF`j@nKpc@jJzZhIbWpIb\\|Lfp@vW~|A~v@||An}@dq@~_@|t@ra@l]zPrb@zSlt@p\\dt@hZhkAbd@dv@vWxY`K`LzD|}@b\\plAhb@llBdu@z_@xOnkBl_A~KvF|O`Id{@ng@fq@|a@na@fX`]fUb\\nUty@vn@j_Avv@nx@vq@flAhcAt~@`u@j_BfjA|fA|r@fs@fb@tr@v_@`cBzz@rx@z^j~@xb@dnAzk@xfB|y@dwAtt@loAhr@vlArq@v|Aj}@`xBhoAheC|wArgCnzA`kBhfAlcAvl@`bAtk@xp@ba@xV|NfWxMdg@bY`eBnbA~uAvy@`rAju@vsAfv@xU~LlfBl`AnbAlg@x|Avt@l}@xa@ju@j[bbA|`@f{@j\\lgAx_@xbA~[lvA~a@`hAfZ|_AzUrqAzYxmA|UnaAfQ|dA~O`TvCn\\lFtgCrYx_CzSryBrOx|AxIbCNriAvF~iAzG`tAfHvpAfHpoAbI~o@jFxv@vGbhAtLd|@lLpp@bKdbAdRxjAtVxi@|Nli@lOrI`CrBz@~bBvg@v`Az^h`Av`@jQxH~jAnj@hjAdm@xp@l_@xg@lZ`S|LjgAjq@|uB|tAdfBtiAro@v`@|h@~Zna@`T~_@rRbd@dSze@zRtc@zOf[lKri@dP~`@fKxm@~M|g@pJtu@jL`oBhUrnB|Sn|@xJxt@jJj_AjLhaA~NjnAbUxgA~Tl{@rSxz@pT|dAfZti@jQrzArh@~p@rWdr@pY`l@nWhk@dXhm@fZvk@pZhb@jU|a@`Vvx@nf@nk@x^lg@z\\ze@r\\jy@rm@tv@`m@p|@tt@lZtWn~@nz@fh@`g@ho@zo@dq@vr@hAlAro@pr@pkAlsAnbAdjApZ|\\`y@~}@pJtJ~^|_@r\\`[hN~L~PnN`R|N~^xXjYpRbZpQjRxKf_@xRz[`OxZhMpa@tOpo@hTtw@tTdx@nSv{@lR~rAjXzg@nKtfBp\\zn@nKjo@fLvs@nOva@nKxd@dNvj@bR`X~JrYzLjZzMr`@hR`o@b\\ts@p_@xg@fW|g@`Vb`@lQ|\\~NnR~Hln@rVdi@lRng@dPxc@dM`i@`Nbd@vJfb@bIxp@|Khr@dKrb@lGtj@dI`d@fHnd@zHlo@pMtT~E~SpFlP~ExPlFvTdIvYfMlZtOvl@d`@`VbRjTzRzPzPlKfLrO|QjLxNxOnTdRnYzNnVxMhV~NlZhH~OfL~WlLnZdK|Y~Kh]hItX~P~l@|Pdo@xLzc@tLdd@lCtJhLb`@tSvp@`GvPpLl\\tJpVhEnKpKbWbElJzMxXzM`XnXlf@jLvRhO`VpPjVnTbZpRlVbT|Vbj@nl@fc@pb@lZtXl[rXh^~Zz]hYxz@dp@d`@~Xna@fY`_@pVn_@~U??v`@vUzYlPlZlOxYzMzYxLf_@xMjFbBl]fKt\\fIvVzFbYjFfk@dKbo@pJvu@jKvl@~H~_Gxx@lbHf`AzaEvi@xaF`p@hoBfW|v@zJdx@nKriAfObD`@j_@tEz\\pEzhCv\\`LvAf^vE|YxD~YxDtw@lKnqA~P~t@hJxu@bJdo@xGf|@fHbo@zDph@vBzb@|@`[\\~YA~VCfLKvMYpLSfYy@hh@gCbk@_Ep`@wDni@uGp^sF|_@yGx^mHx]}Hth@{Mnb@_Mxd@aOxV_JvTmIjWaK|YoMlXoLpWwLjj@{WnlAum@|JkFtq@q_@fg@iXjm@c\\|{Auy@vuAqu@hkAwm@nq@a\\d^}OrZ}M`UoJzVuJne@sPdYgJzTsGrYaInYaHpb@qIxUcE~RyCxb@oFh\\eD`[{Bl\\qBbZu@r\\i@rPKrQ@tSNbTd@pM^vNf@jRdAxObAnS~A~TrB`TlCrUvC~f@`Ir^bHx^zHlYvGfa@bKv~@vVrf@fOpY`JnLpD~PlFnk@jQbBh@~WzI`aB|g@ldBpi@t}Avf@~|@|XriHb|BhdAn\\reAr]zgAr_@rhAp`@viAva@rnFnrBz{GvhCx_At^`WrJrtCjgA~`Bln@zva@xxOfrAhg@pkAhc@df@|Pxf@pP|_@bMnr@bTpt@`Spo@|Ohj@jLxc@jI`a@jG`r@vIrb@`Efk@fEpq@`Dfc@lA`c@p@h]Rvj@?jj@Ulc@k@vc@y@`_AyB|nD{Kdl@mBvtEaOx}GkTt_A_Cp`AoApeA]feAZxxAtBzj@|Abq@jCn_AtEd~@hGd\\dCl]vCln@`Gxo@dHjh@nGpd@lG|WpD|UvD|i@vI|l@pKtq@vMnw@nPri@dMnl@zN|sAz]zm@tOrzAp]psAlXbVvEtp@bLhc@|Gtb@hGni@pHri@rGlr@rHhq@lGfvArLzqGdj@p~Jxz@t{A|M|j@xFvj@xFlh@rHpSzCfUzDf\\fG~]pHtYhHbZfIlXjIbWpIhn@xUp]~Nl\\jOpVzLjl@n\\~k@b_@lh@p^lg@n`@zWxTjX|Utq@~m@t}Ad|ApdC`eChOpOfmAfmAzaAz`A~z@|w@xq@tm@rWzT~d@d_@lRhO~W~Rp^nWdYjRdt@fd@t_@jT|_@jSpb@nSde@lS|ZfM|[rLjZlKbk@dQ|f@dNbWnGd[|Gz^fHb`@xG~c@vGhg@|Fr|@hIjy@|Fnr@zDls@vCloAbF~t@~Cvu@nDzt@bEjv@|Env@xFvu@jGd_AfJp~@xJrh@jGnd@`GbDb@`uArRxbAzOjeAbRraAlRtaAhSfbAtThlAvYnfAdYlx@vTbx@~UfiA`^tiAv_@ho@bUjo@bVl~@|]r~@f_@dn@xWdjA`h@jjAvi@df@~Udg@`Wfg@bW`f@dWrmBnfAztAzx@zWlOt{@ne@fYvNra@zQfPhHfQlH`b@vOrg@`QvRhGt\\fJr\\fJxi@~LjTdEhUjEbUxDvUjDtY|DpZhDlV`C~\\rCp[tBhq@nDjbCnJfzN`k@t~AnGbd@zAxLV`f@~@zTFzUGjWi@~]cAx\\eBlb@uDtc@yFjb@wGzToElUeFnQiEh^kK~q@{ThgAa_@vsHygCnjC{|@jy@yXlrBcr@l}@{Zl^uMtZ}Lf]gNr\\{Nr^oPvt@k\\zh@gV~_@cQza@uQ`b@kP`_@}Mv[uK~UsHlZ_JdUkGh[eI`b@{Jr[yG~[iGd[iFlUkDzTyCb\\iErYsClZcCxHk@rUiBt[uBfk@wBvc@kAp[_@jk@K`hGfAtMB`JBjfBb@vz@Hnb@R~k@XzQZrPh@hMj@jMr@zMfArLlAlMzAlMjBhMnBvLbCrVhFpZzHbFzAhJnCvOfFf\\bMjS~IvNjHr]pQrXnPvKhHbNlJzHjGfB~AbCzBrNlNpeBt}Axa@x_@jh@jg@t\\j]`z@rs@bM`Kp]fVxOtLdj@fd@xuCj_Cjm@pg@beDnmCfqHfeGjo@|g@dW|Q~_@dWfQlKjRhKxNpHtQrIlXjLbZrK`QxFdWvHta@rJ|YvFpUlDvZzDrZdCxU~AhWz@xT^`ABtPD~RMtZg@r_@uAfU_BlWoCn[iE`i@gK|TuFvSyFlh@_QzYkLpSsIfY_OhP}IhR{KzQuLnR{MtP_MhTaQbT_R`UaTfTuTrUyWzZu^`w@k_Alk@_s@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 20 miles.","announcement":"Continue for 20 miles.","distanceAlongGeometry":31405.77},{"ssmlAnnouncement":"In a quarter mile, Keep left toward Marseille.","announcement":"In a quarter mile, Keep left toward Marseille.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left toward Marseille, Genève.","announcement":"Keep left toward Marseille, Genève.","distanceAlongGeometry":116.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.722757,45.940001],"geometry_index":8829,"admin_index":9,"weight":7.656,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.68,"bearings":[138,144,321],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,320],"duration":3.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.312,"geometry_index":8832,"location":[4.724732,45.93841]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":12.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.52,"geometry_index":8834,"location":[4.725589,45.9377]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,343],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.727,"geometry_index":8845,"location":[4.727928,45.934595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,344],"duration":10.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":10.312,"geometry_index":8846,"location":[4.728008,45.934401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.02,"geometry_index":8855,"location":[4.72839,45.931443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.578,"geometry_index":8857,"location":[4.728315,45.930863]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,191],"duration":1.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.043,"geometry_index":8858,"location":[4.728289,45.930703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.441,"geometry_index":8859,"location":[4.728208,45.93041]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[11,193,201],"duration":9.215,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.977,"geometry_index":8860,"location":[4.728174,45.930286]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.766,"geometry_index":8867,"location":[4.72693,45.927846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,205],"duration":4.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.555,"geometry_index":8868,"location":[4.726793,45.927648]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,201],"duration":71.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":67.508,"geometry_index":8871,"location":[4.726013,45.926478]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.59,"geometry_index":8893,"location":[4.728123,45.907042]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,177,352],"duration":30.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":28.016,"geometry_index":8894,"location":[4.72822,45.906575]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.730635,45.898516],"geometry_index":8904,"admin_index":9,"weight":7.84,"is_urban":false,"turn_weight":1,"duration":7.221,"bearings":[162,341,344],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":20.203,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":19.176,"geometry_index":8907,"location":[4.73151,45.896651]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.734241,45.891071],"geometry_index":8911,"admin_index":9,"weight":20.902,"is_urban":false,"turn_weight":1,"duration":20.971,"bearings":[161,336,341],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":2.258,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.125,"geometry_index":8914,"location":[4.736936,45.885581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":0.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.738,"geometry_index":8915,"location":[4.737223,45.884994]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,342],"duration":5.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.484,"geometry_index":8916,"location":[4.737321,45.884789]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,343],"duration":82.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":78.414,"geometry_index":8918,"location":[4.738006,45.883262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.148,"geometry_index":8938,"location":[4.741317,45.860562]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":69.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":65.977,"geometry_index":8939,"location":[4.74141,45.859928]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,326],"duration":0.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.289,"geometry_index":8969,"location":[4.751103,45.842328]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[145,149,325],"duration":15.148,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.762,"geometry_index":8970,"location":[4.751169,45.842262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":6.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.055,"geometry_index":8974,"location":[4.754343,45.839106]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":9.359,"geometry_index":8976,"location":[4.755634,45.837809]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.757515,45.835661],"geometry_index":8979,"admin_index":9,"weight":9.508,"is_urban":false,"turn_weight":1,"duration":8.518,"bearings":[153,325,331],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":14.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.172,"geometry_index":8984,"location":[4.759082,45.833601]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":6.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.906,"geometry_index":8991,"location":[4.761253,45.830017]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[163,170,342],"duration":5.635,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.77,"geometry_index":8994,"location":[4.762098,45.828216]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,345],"duration":5.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.473,"geometry_index":8996,"location":[4.762594,45.827046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,346],"duration":6.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.914,"geometry_index":8998,"location":[4.763006,45.825927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.691,"geometry_index":9000,"location":[4.76348,45.824505]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":2.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.301,"geometry_index":9001,"location":[4.763727,45.823744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":9.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":10.062,"geometry_index":9002,"location":[4.763863,45.823322]},{"entry":[true,false],"in":1,"bearings":[168,347],"duration":10.266,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":15.523,"geometry_index":9005,"location":[4.764458,45.821483]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":18.826,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":19.297,"geometry_index":9007,"location":[4.765038,45.819633]},{"entry":[true,false,false],"in":2,"bearings":[167,336,347],"duration":3.463,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":4.289,"geometry_index":9010,"location":[4.766153,45.816241]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":13.289,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":13.613,"geometry_index":9011,"location":[4.766358,45.81562]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":16.871,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":17.707,"geometry_index":9012,"location":[4.76715,45.813227]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":18.535,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":19.453,"geometry_index":9014,"location":[4.768159,45.810109]},{"entry":[true,false],"in":1,"bearings":[166,348],"duration":40.752,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":42.789,"geometry_index":9017,"location":[4.769244,45.806724]},{"entry":[true,false],"in":1,"bearings":[144,325],"duration":16.568,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":17.879,"geometry_index":9029,"location":[4.774299,45.800049]},{"entry":[true,false],"in":1,"bearings":[144,324],"duration":49.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":52.027,"geometry_index":9030,"location":[4.776781,45.797633]},{"entry":[true,false],"in":1,"bearings":[161,340],"duration":2.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.418,"geometry_index":9043,"location":[4.783277,45.790025]},{"entry":[true,false],"in":1,"bearings":[162,341],"duration":2.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.805,"geometry_index":9044,"location":[4.783465,45.789639]},{"entry":[true,true,false],"in":2,"bearings":[161,169,342],"duration":36.469,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":40.094,"geometry_index":9046,"location":[4.783669,45.789203]},{"entry":[false,false,true],"in":1,"bearings":[27,39,217],"duration":11.445,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":2,"weight":13.32,"geometry_index":9065,"location":[4.783025,45.783113]},{"entry":[false,true],"in":0,"bearings":[34,211],"duration":20.504,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":22.555,"geometry_index":9068,"location":[4.781352,45.781527]},{"entry":[true,false],"in":1,"bearings":[155,343],"duration":4.539,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.992,"geometry_index":9082,"location":[4.780805,45.778142]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":19.617,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":21.578,"geometry_index":9087,"location":[4.781349,45.777463]},{"entry":[true,false],"in":1,"bearings":[140,321],"duration":6.156,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":6.926,"geometry_index":9092,"location":[4.784291,45.774778]},{"entry":[true,true,false],"in":2,"bearings":[135,153,317],"duration":8.289,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":9.301,"geometry_index":9095,"location":[4.785293,45.773985]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":7.48,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":8.418,"geometry_index":9099,"location":[4.786733,45.773125]},{"entry":[true,false],"in":1,"bearings":[127,306],"duration":2.645,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.973,"geometry_index":9101,"location":[4.788107,45.772419]},{"entry":[true,false,false],"in":2,"bearings":[127,290,307],"duration":0.477,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":1.277,"geometry_index":9102,"location":[4.788588,45.77217]},{"entry":[true,false],"in":1,"bearings":[126,307],"duration":9.258,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":10.414,"geometry_index":9103,"location":[4.788682,45.772121]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":1.656,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":1.863,"geometry_index":9104,"location":[4.790363,45.771259]},{"entry":[true,false],"in":1,"bearings":[125,305],"duration":14.059,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":15.812,"geometry_index":9106,"location":[4.790672,45.771107]},{"entry":[true,false],"in":1,"bearings":[135,314],"duration":33.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":37.758,"geometry_index":9111,"location":[4.793059,45.769665]},{"entry":[true,false],"in":1,"bearings":[131,310],"duration":7.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":8.324,"geometry_index":9116,"location":[4.798557,45.766173]},{"entry":[true,false,false],"in":2,"bearings":[132,298,313],"duration":12.672,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":14.988,"geometry_index":9119,"location":[4.799985,45.765297]},{"entry":[true,false],"in":1,"bearings":[136,315],"duration":2.027,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.773,"geometry_index":9122,"location":[4.802136,45.763855]},{"entry":[true,false],"in":1,"bearings":[136,316],"duration":3.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":3.551,"geometry_index":9123,"location":[4.802424,45.763648]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[133,312],"duration":16.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":18.438,"geometry_index":9126,"location":[4.802881,45.763338]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[118,298],"duration":16.074,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":18.074,"geometry_index":9129,"location":[4.805919,45.76162]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[126,306],"duration":18.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":20.977,"geometry_index":9131,"location":[4.809256,45.760295]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[135,315],"duration":16.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":18.133,"geometry_index":9134,"location":[4.812552,45.75821]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[135,315],"duration":15.965,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":17.953,"geometry_index":9136,"location":[4.815262,45.756289]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[140,319],"duration":15.977,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":17.953,"geometry_index":9139,"location":[4.817925,45.754379]},{"entry":[true,true,false],"in":2,"bearings":[143,169,324],"duration":5.781,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":6.637,"geometry_index":9141,"location":[4.820211,45.752241]},{"entry":[true,false],"in":1,"bearings":[130,317],"duration":1.938,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.23,"geometry_index":9145,"location":[4.82096,45.751592]},{"entry":[true,false],"in":1,"bearings":[121,307],"duration":5.484,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":6.305,"geometry_index":9148,"location":[4.821312,45.751397]},{"entry":[true,true,false],"in":2,"bearings":[118,127,299],"duration":9.391,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":10.793,"geometry_index":9150,"location":[4.822422,45.750961]},{"entry":[true,false],"in":1,"bearings":[117,289],"duration":1.641,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":1.887,"geometry_index":9156,"location":[4.824292,45.750392]},{"entry":[true,true,false],"in":2,"bearings":[126,139,297],"duration":3.852,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.414,"geometry_index":9159,"location":[4.824593,45.750285]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[115,301],"duration":12.992,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":14.941,"geometry_index":9166,"location":[4.825267,45.749959]},{"entry":[true,false],"in":1,"bearings":[119,295],"duration":8.852,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":15.176,"geometry_index":9167,"location":[4.828186,45.749027]},{"entry":[true,false],"in":1,"bearings":[132,312],"duration":4.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":5.059,"geometry_index":9173,"location":[4.829368,45.748368]},{"entry":[true,false],"in":1,"bearings":[177,329],"duration":3.82,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.395,"geometry_index":9178,"location":[4.829818,45.747991]},{"entry":[false,true],"in":0,"bearings":[25,215],"duration":2.793,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":3.211,"geometry_index":9188,"location":[4.829691,45.747548]},{"entry":[false,true],"in":0,"bearings":[36,213],"duration":20.172,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":22.695,"geometry_index":9190,"location":[4.82941,45.747273]},{"entry":[false,false,true],"in":1,"bearings":[25,32,211],"duration":54.391,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":2,"weight":60.559,"geometry_index":9197,"location":[4.8273,45.744754]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":2.777,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":3.055,"geometry_index":9198,"location":[4.820554,45.736817]},{"entry":[false,true,true],"in":0,"bearings":[31,210,218],"duration":4.051,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":4.434,"geometry_index":9199,"location":[4.820191,45.736402]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":4.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":4.949,"geometry_index":9201,"location":[4.819703,45.735823]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":6.371,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":7.008,"geometry_index":9202,"location":[4.819271,45.735324]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":13.633,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":14.996,"geometry_index":9203,"location":[4.818657,45.734616]},{"entry":[false,true],"in":0,"bearings":[31,210],"duration":5.805,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":6.238,"geometry_index":9204,"location":[4.817477,45.733244]},{"entry":[false,true],"in":0,"bearings":[30,211],"duration":5.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":6.398,"geometry_index":9207,"location":[4.816971,45.732633]},{"entry":[false,false,true],"in":1,"bearings":[23,32,210],"duration":0.297,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":2,"weight":1.047,"geometry_index":9209,"location":[4.816431,45.732014]},{"entry":[false,true],"in":0,"bearings":[30,211],"duration":5.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":5.465,"geometry_index":9210,"location":[4.816404,45.731981]},{"entry":[false,true],"in":0,"bearings":[31,210],"duration":4.023,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":4.324,"geometry_index":9211,"location":[4.815932,45.731428]},{"entry":[false,true,true],"in":0,"bearings":[30,204,217],"duration":3.629,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":3.871,"geometry_index":9212,"location":[4.815563,45.730984]},{"entry":[false,true],"in":0,"bearings":[14,183],"duration":6.652,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":7.148,"geometry_index":9218,"location":[4.815344,45.73054]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[158,336],"duration":2.148,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.309,"geometry_index":9229,"location":[4.815672,45.72961]},{"entry":[true,false],"in":1,"bearings":[163,339],"duration":3.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.262,"geometry_index":9231,"location":[4.815857,45.729275]},{"entry":[true,false],"in":1,"bearings":[169,348],"duration":54.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":58.641,"geometry_index":9235,"location":[4.816095,45.728616]},{"entry":[true,false],"in":1,"bearings":[160,342],"duration":2.465,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.652,"geometry_index":9249,"location":[4.818716,45.718996]},{"entry":[true,false],"in":1,"bearings":[159,340],"duration":15.09,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":16.223,"geometry_index":9250,"location":[4.818939,45.71857]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":9.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":9.836,"geometry_index":9251,"location":[4.820326,45.716002]},{"entry":[true,false],"in":1,"bearings":[152,334],"duration":7.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":7.953,"geometry_index":9258,"location":[4.821232,45.71449]},{"entry":[true,false],"in":1,"bearings":[144,325],"duration":37.266,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":41.473,"geometry_index":9263,"location":[4.822225,45.713352]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":20.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":22.289,"geometry_index":9292,"location":[4.8295,45.708664]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":19.707,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":21.656,"geometry_index":9295,"location":[4.832341,45.705733]},{"entry":[true,false],"in":1,"bearings":[170,347],"duration":9.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":10.176,"geometry_index":9309,"location":[4.835067,45.702379]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.835473,45.70058],"geometry_index":9312,"admin_index":9,"weight":11.93,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":10.867,"bearings":[171,177,351],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,338],"duration":11.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":12.996,"geometry_index":9319,"location":[4.836143,45.698532]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,310],"duration":1.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":1.117,"geometry_index":9332,"location":[4.838118,45.696725]},{"bearings":[130,303,314],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"geometry_index":9333,"location":[4.838303,45.696602]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Marseille"},{"type":"text","text":"/"},{"type":"text","text":"Genève"}],"type":"fork","modifier":"left","text":"Marseille / Genève"},"distanceAlongGeometry":31442.436}],"destinations":"Clermont-Fd, Lyon-Centre","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take Autoroute du Soleil toward Clermont-Fd/Lyon-Centre.","modifier":"slight left","bearing_after":138,"bearing_before":141,"location":[4.722757,45.940001]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":1473.172,"duration_typical":1383.826,"duration":1383.998,"distance":31442.436,"driving_side":"right","weight":1473.324,"mode":"driving","geometry":"aq}rvAicg_Hji@su@vLqOhj@gs@rT_ZvUqYhQkSnL{LxLgLxLqKnQuNtRgNjY}PfOeIxP_IfR{HvOeFbK_D~S}EfSyDrXyD|QkBxTuAtTq@pPGpRTlQz@hJb@|WpB~Hr@hQ`DvFbA|RxEfUpG~R|GjS`IpNpGrPzIvc@|VjKpGfh@`[lNlIlOfIvSpJtT|IdUrHrStFzPxDtOrCbOvBj[`D|Mt@nQp@fPJ`TK~Ro@tP_Ah`@cEz`AwKj~BcXxyCc^`zC{^thCo[hsAkPpuDyd@d\\aEbtAoPjy@yKnf@_Izg@{Ilc@qIrc@oJzk@{M`k@{Ndl@aPrgA{\\xcAi^tm@yU`@Qnm@yU~yBe{@`bBoo@doAef@`mC_eA|~A_n@bhBmr@tc@}PxKcEbj@iShs@oUhp@sRn\\uI`_@aJfn@aNtl@_Lns@oLxPcCt[eEfe@qF`r@aG~u@{EzgAwEdoAoFvgDqMjbEkP`wB{IjaB}GvhBsHvlAmGns@cFrf@yDz[kClh@_G`g@oGfw@sLpg@yIlg@eKz`@yIf`@sJ~g@iNpa@{Llo@}Sxf@gQzj@cUz^mOx_@yP~^kQ~_@uRzWsNhWsNjh@qZzBqApY{Q~YsRjr@kf@fh@e`@xQaN|g@ob@|y@gu@hf@id@fp@oo@bCcCtiAoiA~n@oo@hl@yl@f\\q\\f_A_`AxOuNhn@gk@df@{a@vn@me@lG}DrXqTdf@}\\|c@mZpQaLn\\kSza@gVra@mTxX{Nlg@qVdj@kVpNyFpTyIti@{Rho@cUvt@sVjRkFtOkEft@kRjt@aQnb@qJpn@mNjYoGrSuEhf@wK~u@wPz{@uQvu@qPjj@sMxqAqYxtAo[xe@yKptCop@~lC}l@zs@cPtb@cK|PuD||C_q@jKqC~^sJx]gK|b@aOh[sN|R}Kxa@iWbUiQf[{Xn]s\\fnAuoAz}@a_A~uCczC`PwPrRwQ|FaGruCuyCd{@gz@~Q_PxRwO|MiKbRoMpX{Pn]yR|b@}Sdv@i[bWwJjHqCzPeGt|@q]dk@wTnR}FvR{EdQgChSqAbTPbOt@bSpC~InBnIxBlH`CjIjDtMtGxK|G~KnIxKfKzJ|Jb`@he@tn@rr@db@fd@fOtN|AxAhKhIfK|G|MpHfNtFzIlCrL|C~P|B`PbAlNDjO_@`S{B~UgFlRsGjLyGnGeEnHeGnFkFpBmB`NsM~c@gg@jk@kp@pl@}p@xXu\\t@{@~We]zUq]xF_JxOaZhKqTxOk]rJeUn_@u~@pNa]`B{Dzt@ahBrBkFzD}JvEwLlPi_@jRs_@vUib@xVeb@rn@gcAnm@geAr}@qcBlZem@`a@ky@lQ}]rQy]tPoZ~P{[pSe_@pr@khA|K_QnIsMzDeH~AwCz_@wp@h`AorBdHsWn~@ciDhRme@le@mkAheAebBpTk]taBejCjTe]taBajCjJcOhHgJxZu`@xhBelBfT}U`EwElEyFxEiH`CqEjCyFvBsFjBsFzVw|@tI{[pBcIbB{H~EiV|BuMfF_]bAmFlAkEbA_DhAcDfBcErD}HtAcDdAqCv@mCpAyEfy@muD~@mDbA{DjAmDpAyCnGuMrVsd@hHuMjCqD`BcBpB_BfBw@`A[`AOnAIlAAhADpATzAd@fAb@x@`@xElDrEnEpI`JjF|EdRrO~VvQn[rU~VjRbVhRf^f[`oNrdL|XtU`ZpUbH|Fd^~Yfk@je@vtAvhAbK`IhQbNvFlE|GlFv\\hY`At@pa@n\\vZ`VlF|ClDdB~B`ArBp@`Cd@dBVjBTvBJlB@tBI|BOjBUrBc@dBe@nBo@xAq@lVwM|OqH~B_AdFiB~E_BfIoBvOaDpgAmS`|B_b@d^mG`^kGf}@iOvb@eG~rC}_@`TiDdMkCxLsC|LoDxLwDxG}BvHsCrY}Ln_DuuAh[iNxSoJ|H}DjHwDhI{EtH}E`EiC~PyLxJyHlKwIxMyL`M{LzNyO~H_J|FoHtGiIpFwHfGqIpDqFrEcHpHeMtHwMbHqMjHsNvGqNdGcN`GwNtGuPxt@gpBfEuKdCmGrCuGjC{FzFeLnHoM~HaMlIeLdGiH~FmG`K_KvJeJhq@wo@RSfcCe_Cf}A}yAjWuVjE{DrD{C`DgCxEkDdEuChEmC~EsChEyBzEwBdHsClFkBxPaE|SoDlWcD`bAwMrs@qKlKuApIuAfLwCpMgE~JqDpKkF~HoExGaEbHoEdHsFlGsF`GyF|FkGjFoGxFoHjFsHhFmInEuH~MeXtFqJpwD__I"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 118 miles.","announcement":"Continue for 118 miles.","distanceAlongGeometry":189235.719},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 7.","announcement":"In 2 miles, Keep left to take A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 7.","announcement":"In a half mile, Keep left to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 7, E 714 toward Marseille.","announcement":"Keep left to take A 7, E 714 toward Marseille.","distanceAlongGeometry":288.889}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[130,138,310],"duration":0.832,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":0.93,"geometry_index":9334,"location":[4.843423,45.693649]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,310],"duration":11.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":12.973,"geometry_index":9335,"location":[4.843591,45.69355]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.845165,45.691761],"geometry_index":9348,"admin_index":9,"weight":45.914,"is_urban":true,"turn_weight":0.75,"duration":41.066,"bearings":[165,336,343],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[175,193,354],"duration":25.984,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":27.926,"geometry_index":9358,"location":[4.847019,45.683775]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":7.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":7.816,"geometry_index":9360,"location":[4.847791,45.678096]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":10.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":11.215,"geometry_index":9367,"location":[4.847904,45.676467]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.847682,45.67405],"geometry_index":9375,"admin_index":9,"weight":11.699,"is_urban":false,"turn_weight":0.75,"duration":10.691,"bearings":[1,7,189],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":40.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":40.328,"geometry_index":9381,"location":[4.84697,45.671622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":36.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":35.242,"geometry_index":9398,"location":[4.842359,45.662196]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[26,207,213],"duration":24.766,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":24.141,"geometry_index":9418,"location":[4.83819,45.653778]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.833784,45.648573],"geometry_index":9430,"admin_index":9,"weight":21.387,"is_urban":false,"turn_weight":1,"duration":20.918,"bearings":[25,33,213],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":20.793,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.254,"geometry_index":9437,"location":[4.829605,45.644311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":168.176,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":168.156,"geometry_index":9446,"location":[4.82521,45.64014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":11.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.594,"geometry_index":9522,"location":[4.797553,45.603336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,190],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.379,"geometry_index":9534,"location":[4.796056,45.600761]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":3.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.77,"geometry_index":9544,"location":[4.795848,45.599083]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":20.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.91,"geometry_index":9546,"location":[4.795905,45.59823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,350],"duration":1.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.219,"geometry_index":9553,"location":[4.796694,45.593532]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,350],"duration":4.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.121,"geometry_index":9554,"location":[4.796759,45.593263]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[168,176,349],"duration":9.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":9.449,"geometry_index":9556,"location":[4.797049,45.592145]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,347],"duration":9.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":9.68,"geometry_index":9559,"location":[4.797718,45.589997]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":5.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.133,"geometry_index":9561,"location":[4.79855,45.587821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,344],"duration":10.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":10.504,"geometry_index":9562,"location":[4.799128,45.586452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.800193,45.584201],"geometry_index":9565,"admin_index":9,"weight":9.832,"is_urban":false,"turn_weight":1,"duration":8.434,"bearings":[160,334,343],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":0.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.172,"geometry_index":9569,"location":[4.801319,45.582029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,340],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.148,"geometry_index":9570,"location":[4.801342,45.581985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":4.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.594,"geometry_index":9571,"location":[4.801486,45.581722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":12.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.809,"geometry_index":9574,"location":[4.802056,45.580685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":5.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.73,"geometry_index":9579,"location":[4.803816,45.57769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,329],"duration":0.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.676,"geometry_index":9585,"location":[4.80474,45.576406]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,328],"duration":15.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":15.547,"geometry_index":9586,"location":[4.804871,45.576261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":8.422,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":8.609,"geometry_index":9598,"location":[4.808805,45.573545]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,310],"duration":4.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.527,"geometry_index":9604,"location":[4.811368,45.572275]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,314],"duration":16.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":16.113,"geometry_index":9608,"location":[4.812615,45.571478]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,333],"duration":39.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":38.844,"geometry_index":9621,"location":[4.816148,45.568078]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":24.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":23.355,"geometry_index":9641,"location":[4.822725,45.558742]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,324],"duration":35.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":33.75,"geometry_index":9649,"location":[4.827809,45.553381]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,308],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.52,"geometry_index":9667,"location":[4.836845,45.546476]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,291],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.547,"geometry_index":9682,"location":[4.843823,45.543558]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,290],"duration":1.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.742,"geometry_index":9683,"location":[4.844031,45.543506]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[4.844688,45.54336],"geometry_index":9685,"admin_index":9,"weight":45.559,"is_urban":false,"turn_weight":15,"duration":31.367,"bearings":[103,137,287],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,330],"duration":14.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.988,"geometry_index":9719,"location":[4.854851,45.541264]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.488,"geometry_index":9725,"location":[4.856564,45.537572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.223,"geometry_index":9726,"location":[4.856728,45.537203]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":60.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":60.41,"geometry_index":9727,"location":[4.856856,45.536905]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,195],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.215,"geometry_index":9766,"location":[4.859648,45.522043]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191],"duration":76.984,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":76.965,"geometry_index":9768,"location":[4.859454,45.52149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.203,"geometry_index":9822,"location":[4.842703,45.506881]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.602,"geometry_index":9823,"location":[4.842636,45.506852]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.842123,45.506633],"geometry_index":9824,"admin_index":9,"weight":7.199,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.402,"bearings":[59,237,258],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,216],"duration":5.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.406,"geometry_index":9833,"location":[4.840207,45.50542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,197],"duration":10.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.895,"geometry_index":9839,"location":[4.83927,45.504211]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":14.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.141,"geometry_index":9848,"location":[4.838935,45.501856]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,187],"duration":5.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.781,"geometry_index":9853,"location":[4.839096,45.498129]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,208],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.934,"geometry_index":9860,"location":[4.838511,45.496687]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,214],"duration":5.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.945,"geometry_index":9862,"location":[4.838146,45.496251]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,225],"duration":23.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":22.363,"geometry_index":9866,"location":[4.83696,45.495242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,184],"duration":38.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":36.109,"geometry_index":9882,"location":[4.832451,45.4903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.168,"geometry_index":9909,"location":[4.833485,45.480989]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,193],"duration":5.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.316,"geometry_index":9910,"location":[4.833467,45.480945]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,191],"duration":22.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":21.176,"geometry_index":9915,"location":[4.833041,45.4797]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":1.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.457,"geometry_index":9918,"location":[4.832463,45.477116]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.83243,45.476935],"geometry_index":9919,"admin_index":9,"weight":16.129,"is_urban":false,"toll_collection":{"name":"Péage de Vienne","type":"toll_booth"},"turn_weight":15,"duration":1.219,"bearings":[7,183],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,178],"duration":12.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.738,"geometry_index":9920,"location":[4.832417,45.476754]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,194,355],"duration":6.316,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.996,"geometry_index":9924,"location":[4.832707,45.474897]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":4.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.805,"geometry_index":9926,"location":[4.83284,45.473496]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.832917,45.472608],"geometry_index":9928,"admin_index":9,"weight":11.223,"is_urban":false,"turn_weight":1,"duration":10.777,"bearings":[177,329,357],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":3.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.289,"geometry_index":9930,"location":[4.833089,45.470194]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,359],"duration":73.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":67.703,"geometry_index":9932,"location":[4.833141,45.469076]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":44.938,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":40.426,"geometry_index":9959,"location":[4.827507,45.445723]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,359],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.766,"geometry_index":9978,"location":[4.823712,45.431433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.914,"geometry_index":9979,"location":[4.823724,45.431199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,356],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.848,"geometry_index":9980,"location":[4.823776,45.43062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,354],"duration":3.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.91,"geometry_index":9981,"location":[4.823815,45.430372]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.539,"geometry_index":9983,"location":[4.823999,45.429512]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.531,"geometry_index":9984,"location":[4.824042,45.429352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.824163,45.428904],"geometry_index":9985,"admin_index":9,"weight":6.629,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.191,"bearings":[166,176,349],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":6.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.648,"geometry_index":9989,"location":[4.825003,45.426993]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.825856,45.425395],"geometry_index":9992,"admin_index":9,"weight":3.512,"is_urban":false,"turn_weight":1,"duration":2.723,"bearings":[160,315,339],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,340],"duration":1.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.391,"geometry_index":9993,"location":[4.826225,45.424695]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":4.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.27,"geometry_index":9994,"location":[4.826453,45.424317]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,341],"duration":8.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":7.809,"geometry_index":9997,"location":[4.827101,45.423138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,352],"duration":54.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":50.219,"geometry_index":10004,"location":[4.827822,45.420876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":0.883,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.809,"geometry_index":10033,"location":[4.819803,45.407367]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,213],"duration":0.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.898,"geometry_index":10034,"location":[4.819611,45.407164]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.819399,45.406939],"geometry_index":10035,"admin_index":9,"weight":20.961,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.668,"bearings":[33,214,234],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.814393,45.401672],"geometry_index":10038,"admin_index":9,"weight":8.336,"is_urban":false,"turn_weight":1,"duration":7.953,"bearings":[13,34,213],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":17.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":16.621,"geometry_index":10040,"location":[4.812632,45.399804]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.695,"geometry_index":10046,"location":[4.808701,45.395556]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,205],"duration":6.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.902,"geometry_index":10048,"location":[4.808168,45.394847]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,200],"duration":5.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.301,"geometry_index":10052,"location":[4.807173,45.39324]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.547,"geometry_index":10055,"location":[4.806497,45.391799]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":6.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":6.406,"geometry_index":10056,"location":[4.806436,45.391652]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":3.902,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.797,"geometry_index":10060,"location":[4.805862,45.38991]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.805643,45.388849],"geometry_index":10063,"admin_index":9,"weight":10.055,"is_urban":false,"turn_weight":0.5,"duration":9.578,"bearings":[7,185,335],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,357],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.277,"geometry_index":10070,"location":[4.805559,45.386227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.816,"geometry_index":10071,"location":[4.805597,45.385875]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":23.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":23.398,"geometry_index":10074,"location":[4.805671,45.3851]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":30.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":31.434,"geometry_index":10087,"location":[4.804779,45.37872]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,341],"duration":4.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5,"geometry_index":10109,"location":[4.807903,45.370929]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,357],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.703,"geometry_index":10114,"location":[4.8082,45.369607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[182,359],"duration":6.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.238,"geometry_index":10115,"location":[4.808203,45.369418]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.344,"geometry_index":10120,"location":[4.807866,45.367769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":8.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.988,"geometry_index":10121,"location":[4.807753,45.36742]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":32.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":33.68,"geometry_index":10123,"location":[4.807025,45.365065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,181],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.633,"geometry_index":10136,"location":[4.805106,45.356156]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,182],"duration":25.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":25.59,"geometry_index":10137,"location":[4.8051,45.355986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":36.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":35.484,"geometry_index":10147,"location":[4.806292,45.348973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.582,"geometry_index":10154,"location":[4.80898,45.339166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":37.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":36.719,"geometry_index":10155,"location":[4.809102,45.338728]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.242,"geometry_index":10170,"location":[4.81177,45.326661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.402,"geometry_index":10171,"location":[4.811778,45.326583]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.594,"geometry_index":10173,"location":[4.811864,45.325788]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.811883,45.32559],"geometry_index":10174,"admin_index":9,"weight":21.156,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.703,"bearings":[177,208,356],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[false,true,false],"classes":["toll","motorway"],"in":0,"bearings":[2,181,336],"duration":8.277,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.062,"geometry_index":10184,"location":[4.812068,45.319588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.41,"geometry_index":10188,"location":[4.811959,45.317297]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183,218],"duration":3.934,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.828,"geometry_index":10189,"location":[4.811951,45.317184]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183,345],"duration":18.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":17.645,"geometry_index":10192,"location":[4.811871,45.316104]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,359],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.137,"geometry_index":10198,"location":[4.811592,45.311144]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,357],"duration":16.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":16.496,"geometry_index":10199,"location":[4.811614,45.310826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,337],"duration":31.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":30.793,"geometry_index":10210,"location":[4.813125,45.306327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,317],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.332,"geometry_index":10226,"location":[4.820659,45.29954]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,320],"duration":12.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.188,"geometry_index":10227,"location":[4.821,45.299255]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,340],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.117,"geometry_index":10237,"location":[4.823325,45.296258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,343],"duration":53.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":52.426,"geometry_index":10239,"location":[4.823449,45.295965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,338],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.191,"geometry_index":10272,"location":[4.822818,45.281637]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.676,"geometry_index":10273,"location":[4.822846,45.28159]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.823107,45.281159],"geometry_index":10274,"admin_index":9,"weight":30.309,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":31.93,"bearings":[152,160,337],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.82962,45.273789],"geometry_index":10282,"admin_index":9,"weight":12.953,"is_urban":false,"turn_weight":1,"duration":12.605,"bearings":[147,304,328],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":59.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":56.262,"geometry_index":10288,"location":[4.832315,45.270788]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":42.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":39.52,"geometry_index":10313,"location":[4.835505,45.254686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,320],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.277,"geometry_index":10334,"location":[4.839298,45.243388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,318],"duration":22.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.754,"geometry_index":10335,"location":[4.839665,45.243105]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,332],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.93,"geometry_index":10347,"location":[4.845597,45.238499]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,336],"duration":105.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":97.363,"geometry_index":10348,"location":[4.84576,45.238247]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,295],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.949,"geometry_index":10400,"location":[4.868934,45.209176]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":74.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":69.289,"geometry_index":10401,"location":[4.869367,45.209038]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,327],"duration":15.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":13.934,"geometry_index":10454,"location":[4.879312,45.187762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,350],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.301,"geometry_index":10463,"location":[4.882052,45.183328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":16.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":15.77,"geometry_index":10464,"location":[4.882138,45.182947]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,329],"duration":1.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.281,"geometry_index":10473,"location":[4.884415,45.178598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,328],"duration":21.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.277,"geometry_index":10474,"location":[4.884698,45.178277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.816,"geometry_index":10486,"location":[4.888237,45.172832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,347],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.027,"geometry_index":10488,"location":[4.888517,45.172019]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,350],"duration":40.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":38.559,"geometry_index":10490,"location":[4.888742,45.171135]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":0.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.793,"geometry_index":10502,"location":[4.888589,45.159703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,182],"duration":8.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.664,"geometry_index":10503,"location":[4.888582,45.159467]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.816,"geometry_index":10505,"location":[4.88845,45.157212]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.888384,45.156091],"geometry_index":10506,"admin_index":9,"weight":12.984,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.676,"bearings":[2,182,199],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.888186,45.152244],"geometry_index":10510,"admin_index":9,"weight":12.91,"is_urban":false,"turn_weight":1,"duration":12.883,"bearings":[2,182,336],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":6.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.965,"geometry_index":10516,"location":[4.888091,45.148066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,350],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.18,"geometry_index":10519,"location":[4.888421,45.146309]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":9.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":8.77,"geometry_index":10522,"location":[4.888966,45.144857]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,336],"duration":24.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":22.234,"geometry_index":10525,"location":[4.890093,45.142886]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":220.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":209.75,"geometry_index":10536,"location":[4.893463,45.135487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,340],"duration":0.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.887,"geometry_index":10638,"location":[4.869379,45.069872]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,338],"duration":2.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.105,"geometry_index":10639,"location":[4.869529,45.069608]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.869945,45.068994],"geometry_index":10641,"admin_index":9,"weight":8.25,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.273,"bearings":[150,172,334],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,325],"duration":1.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.074,"geometry_index":10645,"location":[4.871743,45.067044]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,327],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.309,"geometry_index":10646,"location":[4.871984,45.066786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.873267,45.065251],"geometry_index":10648,"admin_index":9,"weight":11.469,"is_urban":false,"turn_weight":1,"duration":10.746,"bearings":[153,310,330],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,338],"duration":142.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":138.523,"geometry_index":10653,"location":[4.87509,45.06242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.574,"geometry_index":10696,"location":[4.875175,45.021704]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.875,"geometry_index":10697,"location":[4.875194,45.02153]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.875288,45.020679],"geometry_index":10699,"admin_index":9,"weight":25.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.664,"bearings":[175,200,355],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.875867,45.012982],"geometry_index":10708,"admin_index":9,"weight":6.688,"is_urban":false,"turn_weight":1,"duration":5.844,"bearings":[1,182,339],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":37.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":35.879,"geometry_index":10710,"location":[4.87578,45.011294]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,350],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.879,"geometry_index":10721,"location":[4.87619,45.00039]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":2.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.059,"geometry_index":10722,"location":[4.876269,45.000131]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":6.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.191,"geometry_index":10723,"location":[4.87645,44.999532]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":28.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":27.152,"geometry_index":10726,"location":[4.877121,44.997711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,343],"duration":1.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.969,"geometry_index":10736,"location":[4.881358,44.990091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,346],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.359,"geometry_index":10737,"location":[4.88146,44.989811]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":17.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":16.348,"geometry_index":10739,"location":[4.881759,44.988833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":5.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.16,"geometry_index":10746,"location":[4.882145,44.983996]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":3.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.543,"geometry_index":10748,"location":[4.882328,44.982509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.281,"geometry_index":10750,"location":[4.882546,44.981496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":4.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.953,"geometry_index":10751,"location":[4.882565,44.981415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":1.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.996,"geometry_index":10753,"location":[4.882885,44.980372]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.957,"geometry_index":10754,"location":[4.882993,44.980114]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,345],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.492,"geometry_index":10755,"location":[4.883089,44.979868]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":13.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.977,"geometry_index":10756,"location":[4.883142,44.979745]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,340],"duration":2.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.242,"geometry_index":10762,"location":[4.884687,44.976626]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.884947,44.976103],"geometry_index":10763,"admin_index":9,"weight":5.852,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.02,"bearings":[161,169,341],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":4.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.852,"geometry_index":10765,"location":[4.885491,44.974951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,350],"duration":5.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.289,"geometry_index":10768,"location":[4.885784,44.973965]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.885921,44.972904],"geometry_index":10772,"admin_index":9,"weight":2.043,"is_urban":false,"turn_weight":0.5,"duration":1.551,"bearings":[179,325,358],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[181,359],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.852,"geometry_index":10773,"location":[4.885927,44.972639]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,183],"duration":7.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.773,"geometry_index":10774,"location":[4.885919,44.972324]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,191],"duration":4.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.957,"geometry_index":10778,"location":[4.885716,44.970992]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":5.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.617,"geometry_index":10780,"location":[4.885474,44.970155]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":26.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":26.281,"geometry_index":10781,"location":[4.885268,44.969471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,357],"duration":27.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":27.258,"geometry_index":10789,"location":[4.884343,44.964949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.137,"geometry_index":10798,"location":[4.886414,44.960439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,343],"duration":34.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":36.379,"geometry_index":10799,"location":[4.886519,44.960196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":0.207,"geometry_index":10808,"location":[4.888539,44.952296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":0.664,"geometry_index":10809,"location":[4.888547,44.952249]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":14.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":16.02,"geometry_index":10810,"location":[4.888573,44.952102]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,335],"duration":85.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":94.359,"geometry_index":10816,"location":[4.890017,44.948816]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":4.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":1,"weight":4.617,"geometry_index":10849,"location":[4.883285,44.930277]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":1,"weight":1.523,"geometry_index":10850,"location":[4.882604,44.929459]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,210],"duration":89.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":1,"weight":95.793,"geometry_index":10851,"location":[4.882377,44.929187]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.199,"geometry_index":10878,"location":[4.877013,44.909398]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":13.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":14.074,"geometry_index":10879,"location":[4.877005,44.909353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":3.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.281,"geometry_index":10884,"location":[4.876256,44.905895]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189,194],"duration":11.555,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.535,"geometry_index":10885,"location":[4.876058,44.905073]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":8.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.266,"geometry_index":10887,"location":[4.875413,44.902286]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.874913,44.9003],"geometry_index":10889,"admin_index":9,"weight":22.625,"is_urban":false,"turn_weight":0.75,"duration":21.883,"bearings":[6,10,190],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.141,"geometry_index":10896,"location":[4.872927,44.894804]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12,"geometry_index":10897,"location":[4.872797,44.894519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":33.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":33.348,"geometry_index":10901,"location":[4.871329,44.891267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":3.672,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.664,"geometry_index":10908,"location":[4.867222,44.882234]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.695,"geometry_index":10910,"location":[4.866775,44.881238]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":7.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.297,"geometry_index":10911,"location":[4.866697,44.881062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.965,"geometry_index":10914,"location":[4.86591,44.879119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":30.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":30.992,"geometry_index":10915,"location":[4.865823,44.878863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,356],"duration":1.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.41,"geometry_index":10928,"location":[4.864855,44.870035]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.535,"geometry_index":10929,"location":[4.864913,44.869637]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.864978,44.869197],"geometry_index":10930,"admin_index":9,"weight":24.02,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.027,"bearings":[174,197,354],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.866407,44.862503],"geometry_index":10937,"admin_index":9,"weight":6.703,"is_urban":false,"turn_weight":1,"duration":5.711,"bearings":[173,327,353],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":68.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":66.367,"geometry_index":10940,"location":[4.866658,44.86066]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":2.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.949,"geometry_index":10956,"location":[4.86308,44.838778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":129.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":119.656,"geometry_index":10957,"location":[4.862956,44.838204]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":0.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.477,"geometry_index":10985,"location":[4.848302,44.801527]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":2.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.016,"geometry_index":10986,"location":[4.848191,44.801396]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.84772,44.800839],"geometry_index":10987,"admin_index":9,"weight":17.762,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.207,"bearings":[31,211,227],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.843638,44.796043],"geometry_index":10992,"admin_index":9,"weight":6.672,"is_urban":false,"turn_weight":1,"duration":5.992,"bearings":[15,32,210],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":67.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":64.098,"geometry_index":10994,"location":[4.842348,44.794503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.98,"geometry_index":11022,"location":[4.821355,44.781863]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,251],"duration":12.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12.16,"geometry_index":11023,"location":[4.82096,44.78177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,244],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.012,"geometry_index":11027,"location":[4.816055,44.780428]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,243],"duration":57.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":53.309,"geometry_index":11028,"location":[4.815668,44.780296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,204],"duration":6.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.977,"geometry_index":11049,"location":[4.799807,44.767908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,202],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.176,"geometry_index":11050,"location":[4.798739,44.766178]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":5.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.453,"geometry_index":11051,"location":[4.798545,44.76584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.973,"geometry_index":11053,"location":[4.797639,44.764262]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201],"duration":12.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.809,"geometry_index":11054,"location":[4.797483,44.763985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,202],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.262,"geometry_index":11059,"location":[4.795638,44.760603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.016,"geometry_index":11060,"location":[4.795594,44.760524]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.795275,44.759947],"geometry_index":11062,"admin_index":9,"weight":10.844,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.422,"bearings":[21,201,215],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.79358,44.756843],"geometry_index":11066,"admin_index":9,"weight":5.531,"is_urban":false,"turn_weight":0.5,"duration":5.301,"bearings":[21,201,351],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,201],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.387,"geometry_index":11068,"location":[4.792782,44.755381]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,201],"duration":28.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":26.871,"geometry_index":11071,"location":[4.7924,44.754685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":0.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.887,"geometry_index":11081,"location":[4.78915,44.746639]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":21.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.637,"geometry_index":11082,"location":[4.78911,44.746384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,355],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.605,"geometry_index":11091,"location":[4.78925,44.740053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,353],"duration":19.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":18.695,"geometry_index":11092,"location":[4.78933,44.739574]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,187],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.695,"geometry_index":11102,"location":[4.789435,44.73379]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.523,"geometry_index":11104,"location":[4.789272,44.732965]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.789234,44.732805],"geometry_index":11105,"admin_index":9,"weight":26.641,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.82,"bearings":[10,189,201],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.786349,44.724511],"geometry_index":11118,"admin_index":9,"weight":5.969,"is_urban":false,"turn_weight":1,"duration":5.391,"bearings":[0,10,188],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":71.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":66.141,"geometry_index":11121,"location":[4.786037,44.722787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,350],"duration":0.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.746,"geometry_index":11151,"location":[4.787475,44.699754]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":14.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":13.805,"geometry_index":11152,"location":[4.787537,44.699529]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.504,"geometry_index":11159,"location":[4.788869,44.695277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,345],"duration":73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":67.523,"geometry_index":11160,"location":[4.788926,44.695127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":3.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.527,"geometry_index":11190,"location":[4.797559,44.674677]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.797458,44.673547],"geometry_index":11191,"admin_index":9,"weight":7.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.328,"bearings":[4,183,201],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.93,"geometry_index":11194,"location":[4.797258,44.671129]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,183],"duration":15.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":14.676,"geometry_index":11195,"location":[4.797234,44.670852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.796824,44.66619],"geometry_index":11198,"admin_index":9,"weight":7.641,"is_urban":false,"turn_weight":0.5,"duration":7.738,"bearings":[4,183,346],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":45.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":42.387,"geometry_index":11201,"location":[4.796629,44.663923]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.395,"geometry_index":11212,"location":[4.793606,44.650623]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.691,"geometry_index":11213,"location":[4.793565,44.650502]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.793387,44.649981],"geometry_index":11214,"admin_index":9,"weight":18.188,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.684,"bearings":[14,193,227],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.791977,44.644232],"geometry_index":11223,"admin_index":9,"weight":7.492,"is_urban":false,"turn_weight":1,"duration":7.039,"bearings":[6,185,342],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,182],"duration":10.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.285,"geometry_index":11226,"location":[4.791754,44.642151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.465,"geometry_index":11231,"location":[4.791709,44.639085]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,359],"duration":124.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":115.121,"geometry_index":11232,"location":[4.791723,44.638622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":0.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.473,"geometry_index":11272,"location":[4.794819,44.601791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.887,"geometry_index":11273,"location":[4.794863,44.601654]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":0.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.355,"geometry_index":11274,"location":[4.795049,44.601098]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.795084,44.600992],"geometry_index":11275,"admin_index":9,"weight":13.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.52,"bearings":[165,189,347],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.796727,44.59712],"geometry_index":11280,"admin_index":9,"weight":7.473,"is_urban":false,"turn_weight":1,"duration":6.836,"bearings":[159,321,342],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,339],"duration":25.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":24.676,"geometry_index":11282,"location":[4.79784,44.595056]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.945,"geometry_index":11294,"location":[4.802041,44.587179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.801,"geometry_index":11295,"location":[4.802169,44.58691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,342],"duration":7.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.754,"geometry_index":11296,"location":[4.802665,44.585797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,342],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.344,"geometry_index":11298,"location":[4.803557,44.583799]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,343],"duration":123.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":116.941,"geometry_index":11299,"location":[4.803729,44.583403]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.848,"geometry_index":11342,"location":[4.808881,44.547708]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,196],"duration":4.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.707,"geometry_index":11343,"location":[4.808782,44.547453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":3.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.953,"geometry_index":11344,"location":[4.808237,44.546058]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":33.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":30.73,"geometry_index":11345,"location":[4.807879,44.545188]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.949,"geometry_index":11355,"location":[4.803675,44.535878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":71.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":66.57,"geometry_index":11356,"location":[4.803533,44.535596]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.328,"geometry_index":11381,"location":[4.78685,44.51835]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.184,"geometry_index":11382,"location":[4.786401,44.518068]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.75,"geometry_index":11383,"location":[4.786002,44.517825]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.785406,44.517462],"geometry_index":11384,"admin_index":9,"weight":28.176,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":30.469,"bearings":[49,230,251],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.776287,44.511406],"geometry_index":11398,"admin_index":9,"weight":8.918,"is_urban":false,"turn_weight":1,"duration":8.582,"bearings":[23,42,220],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,214],"duration":85.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":78.996,"geometry_index":11403,"location":[4.774117,44.509395]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.574,"geometry_index":11433,"location":[4.766896,44.485048]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.781,"geometry_index":11434,"location":[4.76689,44.484864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.766872,44.484303],"geometry_index":11435,"admin_index":9,"weight":19.727,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.332,"bearings":[1,182,191],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.766659,44.47803],"geometry_index":11440,"admin_index":9,"weight":7.082,"is_urban":false,"turn_weight":0.5,"duration":7.125,"bearings":[1,182,341],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,185],"duration":20.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":18.699,"geometry_index":11444,"location":[4.766494,44.475727]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":155.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":144.164,"geometry_index":11454,"location":[4.7646,44.469323]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,207],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.285,"geometry_index":11507,"location":[4.735918,44.423695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,206],"duration":37.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":35.738,"geometry_index":11508,"location":[4.73567,44.423342]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.023,"geometry_index":11521,"location":[4.730533,44.412728]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191],"duration":20.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":19.602,"geometry_index":11522,"location":[4.730442,44.412423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,184],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.09,"geometry_index":11532,"location":[4.729191,44.406368]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":3.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.855,"geometry_index":11533,"location":[4.729159,44.406016]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.729083,44.405104],"geometry_index":11535,"admin_index":9,"weight":12.699,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.734,"bearings":[3,183,210],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.728975,44.401063],"geometry_index":11541,"admin_index":9,"weight":6.848,"is_urban":false,"turn_weight":1,"duration":6.344,"bearings":[178,341,359],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,357],"duration":31.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":28.852,"geometry_index":11544,"location":[4.729084,44.399183]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,354],"duration":25.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":23.59,"geometry_index":11551,"location":[4.730381,44.38997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":96.66,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":91.816,"geometry_index":11556,"location":[4.731518,44.382444]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,356],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.922,"geometry_index":11582,"location":[4.737542,44.354344]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":4.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.953,"geometry_index":11583,"location":[4.737565,44.354062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":92.207,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":89.883,"geometry_index":11585,"location":[4.73765,44.352861]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,353],"duration":74.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":74.27,"geometry_index":11608,"location":[4.739761,44.323019]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.727,"geometry_index":11641,"location":[4.746595,44.299788]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":2.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.141,"geometry_index":11642,"location":[4.746585,44.299566]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.746527,44.298598],"geometry_index":11645,"admin_index":10,"weight":15.207,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.504,"bearings":[4,182,191],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.745621,44.293956],"geometry_index":11655,"admin_index":10,"weight":8.672,"is_urban":true,"turn_weight":0.8,"duration":7.328,"bearings":[6,15,197],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,204],"duration":128.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":128.074,"geometry_index":11659,"location":[4.744584,44.291929]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.84,"geometry_index":11691,"location":[4.717578,44.259641]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":14.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.824,"geometry_index":11692,"location":[4.717208,44.259136]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":1.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.828,"geometry_index":11695,"location":[4.714409,44.255305]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":19.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":18.641,"geometry_index":11696,"location":[4.714049,44.254816]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,206],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.531,"geometry_index":11700,"location":[4.710245,44.249607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.672,"geometry_index":11701,"location":[4.70996,44.249195]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,201],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.672,"geometry_index":11704,"location":[4.709177,44.247905]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,194],"duration":12.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.711,"geometry_index":11707,"location":[4.708561,44.246566]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":38.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":36.75,"geometry_index":11713,"location":[4.707692,44.242993]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,340],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.883,"geometry_index":11732,"location":[4.708406,44.23179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,340],"duration":110.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":105.336,"geometry_index":11733,"location":[4.708538,44.231536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,320],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.262,"geometry_index":11813,"location":[4.727896,44.199299]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,318],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.633,"geometry_index":11814,"location":[4.72798,44.199233]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.728503,44.198826],"geometry_index":11815,"admin_index":10,"weight":9.512,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.035,"bearings":[134,146,317],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,307],"duration":16.82,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.961,"geometry_index":11820,"location":[4.731262,44.197109]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.736334,44.194626],"geometry_index":11825,"admin_index":10,"weight":9.129,"is_urban":false,"turn_weight":1,"duration":8.562,"bearings":[125,296,304],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,308],"duration":111.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":106.02,"geometry_index":11830,"location":[4.739452,44.192976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":9.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.988,"geometry_index":11877,"location":[4.766481,44.162758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":20.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":19.871,"geometry_index":11879,"location":[4.768211,44.160394]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.531,"geometry_index":11888,"location":[4.771423,44.154813]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":16.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.719,"geometry_index":11889,"location":[4.771493,44.15466]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":2.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.461,"geometry_index":11892,"location":[4.773639,44.150216]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":7.02,"geometry_index":11893,"location":[4.773972,44.149517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":17.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":17.488,"geometry_index":11895,"location":[4.77488,44.14759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,334],"duration":24.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":23.762,"geometry_index":11904,"location":[4.777502,44.142903]},{"bearings":[141,322],"entry":[true,false],"classes":["toll","motorway"],"in":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":11917,"location":[4.782053,44.136871]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Marseille"}],"type":"fork","modifier":"left","text":"Marseille"},"distanceAlongGeometry":189259.047}],"destinations":"Marseille, Genève, Grenoble","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Marseille/Genève/Grenoble.","modifier":"slight left","bearing_after":130,"bearing_before":130,"location":[4.843423,45.693649]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":5820.729,"duration_typical":5977.863,"duration":5977.914,"distance":189259.047,"driving_side":"right","weight":5820.77,"mode":"driving","ref":"A 7","geometry":"al|cvA}xrfHdEoIhJcQxCqErE}FvDiEnMsMhFmEtEoDrGyElGyD`EiCtEeCvFcCfPsFxFcB`FwAxKaC`IsAdJqAbjHkfA`g@oH|ZgErh@uFlh@}Dj~D_YpbDgUxN}@vS_AdNi@lSe@nRMvFCjAAtM?xNPzNV~Sj@zT`AzO`AdSzAvWdCtXnDr[bFvPrCzQtDj\\xHl^vJ|PnFxSdHfTzHpPzGfP`HryA|o@xq@xZzq@|Y`TzIpSlIbk@~T`e@dQne@zP|p@lUd[lKpi@|P~QxF~VxHnfArZtp@|Q|b@xLpb@tMvTnHdTtHnWrJjW|Jnh@vTvSpJjSvJpPjIbPnIxRlK`P|IdOvIbMvHhOfJxOzJ`RbM`UtOhTpO|S|OhStOpXhTxXbUbXlTnXbU`b@z]bb@h^lp@dl@t^f\\lf@fd@jr@tp@`k@hj@v_@x_@~l@|m@`T|TtXvYjXbZri@|l@~~@hdA`WrX`W`XbXlXtMpM`NzMnP`P`NpMze@dc@rg@hc@`RtOzQfOhc@h]j^xXra@bZ~LvIrMhJxXhRpYbRxY|QvYpQrY|PjZ~Plr@t_@|mAtn@j\\bPn\\`Phc@bS|c@`S~`@bQ|c@fRpg@lS|i@tSnh@pR|eAn_@xzA|h@zo@`Vro@|VfZ|LhZ`MvYbMvYnMrg@nUzf@xU|f@nV|_@|Rjf@jWh`@dT|^vSt_@xT~^tThRlLdRvLzUzO`UvO~WvRdW~R|]zYr]xZhb@t`@nVfVbWjWtLdMhMlNvO~P`PvQne@jj@jVvZrYh_@xTjZ~X|`@fn@x}@dSnYlQhWpS|XnTxXnOdRfPnRzOhQjPbQrV~UbNtLbHfG~JhI`LbIpQjL|L|G|KtFjL`F`LnEfMnEtSdGtHnBfIbBnKhBbL|A`LjAvE^|E`@dLf@nL\\jEFxE@rKEvUg@p]iAfj@uCvh@kDrh@{D|i@oFfaAuKzd@kG|RyCxOaC~a@uGza@mHtb@mIlg@eKby@eRraAkWjdAsZptAcc@xZmKzwAsj@~VoIta@qP??ff@kSx|@m_@vAm@lO_HzI}DjN_Gpe@uThu@_^~b@}Shb@wSb[}Ol`@kS~LiGrOaJpKqGvMgJhJcH~ImH`HeGfLmKfKkKrPoRzO_SfL_PzIiMbH_LpNgVhOqYvNc[zLkZ~M}^|Xix@bGoPxKoXjLwXjHmPvHuOtMiWjOyXrM}TbC{DrFyIbKmOdJ}MxJ}MpT_YfPmRnOuPlQmQlQeQlRyPvQaOvP_MrTaOtR_MjRmKdWuMtLuFnU}JpPwGt]aNbYeLtO_H`P}HpXuNvY}Prb@mX|SmNhToO`d@c\\pn@ce@by@ao@ldAuy@p`@k\\ld@k`@dd@o`@~x@it@fq@an@bg@ue@|v@{u@n[u[rZg[rd@kf@b[i]hZi]n]qa@x\\ab@dW}[`Vm[hZka@`Zya@tZ}c@nQiXnP_XxZgh@xUgb@rRg^vQg^vPe^bEcJdW}j@rDoIpIqSdQsc@jNi_@|GyRxFiPdPqf@`HoUlLwa@fNmi@vMqi@bGyX~FaYzDkTfB_L|AuJdEk\\jBoT~@kN\\sIj@oL\\{MR{SC{MGmM]_Pi@gO_AoViAkUyC_r@mAgd@AyCMaRLkS^uOf@eNnA{RjAuMzAiNxDgX|E{U`FiSlFiQnI{T|L_WnLwS|N_SpIoJxMuMhH_GdIeGrFsDdGiDxFqCtKeFdMqEfsDylA`VgIrQ_Gn\\cLnZqKx`@mPxY}NhRaL`RgMpRoNzTuQjd@c`@bk@ke@vUuQhRwL|PwJhNwH|QwIhRuHdOiFnSkGfTcF`T{D|UwCpQcB~TkAlUe@rRFlQVrQn@nPjBvQ`CtS`DnRvDrPtE~UfH`W~Iv^zN~n@fVdq@bXpWrJbRnGpPzE~OfD`FbAbPbCnRhBvQpAha@zA~\\|@l]fB~QpBbP`CpPjDvTtGzPxGn[nPbV|PpSlQhOzOjNtPdK`O~L|RrNlX|JrTrKtYzGfSjIzXvJb]dg@xfBzPhn@tP`l@vNnf@`JbX`H|QrKtVjJ~Q`MfTtJbO~KnOpNxPvMbNrUbU`j@fh@bKtJzSdSfUjTdZjYfK~KnJbLbC`DtJjM`K~OxJbQfIhP`HlOfKxWnLh]x@dCtL`_@xGdRhGfPhEpJlFpKbFlJzC`FrBbDnLtPxNzPhHtH`EnD`JjIhMvJpRrKfNrGdM`EpP`FbM~BbL|AfM`AzQh@~KC`PW~Ws@|j@}AzvB{Gva@g@bNNfRnA`Jz@~KfBjMnCbKxClLdE|JxEdMbHjHzEzP|NpIfIbJvJzPfTnVz]fRzZjj@~u@lXv_@tRnXlPtTlQzSpTvTjQbPpQlNzNtI~QlIzOpFrLdDvOzC~RnCrCPzIh@nODjLMdNq@|MkBhMeC|OoDvJqDjNwFxXqNxg@gW`x@oa@pQiJxQuGnNmDtLkBzKqApKw@nMQ~PH`WlAbJbAbJlApOtD|NjE|eA~[vu@zTvAb@`B`@pHfB|OvDh^vI|OxD`s@fMtm@lIv}@lJhJ`AhJXbRW`QoEl|@sGlPgApn@gE~f@aA~p@kCnDMpaCmHhSi@v`@gAbc@_@~_@@`f@HzZZtf@fAjP\\rv@tC|k@|Bzp@zEj^xCd^dDjl@~Gtp@lIti@zHzj@pJdv@tNdARlDl@|aAnSzX`Grs@nO`n@pMds@dOn|A|\\tqDxv@`gDrr@vqB~b@ll@jMrv@fP|i@fL~s@lOtq@vN~p@rNjrAbYjwBrd@`{Ble@jd@rJnd@rJj`@tItU~DtRtCtUjCxb@vClW|@~Yb@|VNp[SrMWdc@gBnNmA~PiBvb@eG~HuA~ZqFrc@iL~XwIf^wMpXuLvLkFxg@qThl@kWvj@aVrVgM|c@eTjQgIjQaHdSwGhPuF~SuFjTeEtTaErQoCdTeCx[_CvYoAtYUpSZvRZj[l@pUlBtUpCb\\fFra@xIlYbIzSzGxQ|GdQnH`RtIpWxMb[xQpSdN`O~KnVdSbWzU`]j[l`@l^zf@|d@tk@ni@ntA|oAvd@vb@|YnXxl@tj@tK~J`MfLh~BrwBl_CfyBlhA~dA`x@rt@tz@lw@z[jZf}@hz@dyAltAdg@`d@|b@d]`GhExNlKn[zSlWnOpYdP|W~MnWnLzc@|Qj[|KxWjIdHxBrWpHve@nL~YhGnQnCxO`CxU|CtYtCl[rBrWhArVj@zWPfRC`RQ~V}@~TkAjH_@vWuAhM]|Oc@b_@[d\\PtWb@jUz@~]nBnS`Bna@lEl`@bF`v@hKxq@fJt`@hFlMdBza@xFnc@tFbWtCrRz@bQJlMKtQeAfUaCrOsCxMcDtUgIzPkHlPaJzQsLnQyNnXqXbp@ar@nRoPvNiKtLsHvUcLdX_KdTqF|MgClNeBhPoAvLa@xJEpORzSlAzNbBjOpCj`@hIxT`FjnAlWxbA`TbVdF~d@vJnd@`Jx`@nHxZdFl]bF|p@pIdw@zI~_AnKltApOrt@fHf\\vBtYrArIJv[b@xDFnWFlUIvg@gBnd@gCfc@gDne@{Fd}@qOrlCse@pf@yI`eDql@`{Baa@d|Boa@lQ_D|`BqYth@oJjZsFnQ}Cz~@oP??tlBe]dcAsQht@kMvr@oKr`@{Fhk@qHvj@eH~~@_Kjd@kEj{@wHfy@iGdn@qDzCOta@{B~Mo@jKe@|f@iBby@{BnnAcCh|@o@v[EdWEhRAfULbRHrU\\tQHfZ\\nk@~@vs@pB`FNvJXx_@jA|Ux@nk@nBraAzCreA`Dr}@hCxf@PxX[zRk@zScAjWoBzT_CnVgDhReD|\\qGh\\gIh`@yLpc@aQr`@iQnGkDjS{KjWoOfK}G|\\sVbW{R~UwS|UkUnVqWtQaTpQaUjVk\\nXqa@by@inArz@ipAlSsZjRaYxPiTzN}PrN}N~OqOdRaPhR{NdNmJlVeOrR}JzSsJdTwInJuCxEaBfWyGzXmGpMkBbZ{C|T}AbPk@lQUjRDtTj@nWtAlTzB~PhCnTvDj[tH~o@pPdq@~Px`@bKni@pN|e@|Lf]vH~TbE~W~DzTrB~UpAzTn@lRArYg@bZoBfb@}Eje@uJj]kJlXcKf]wP|Aw@|YiOz[gUx[eWrb@i^nc@w_@|e@ya@dlBoaB~lB{aBtgAk_Apc@s`@hd@u`@lq@gl@bQiOjWkTvSeQpXiU~f@m`@bb@aZv`@aWzYmPxXqN~c@qS|a@qPdi@iQtc@}Lxj@aMrc@oHr`@gFvl@aFfc@yBza@{@ld@OxY\\v]hA|jAdHfzArMxJt@dg@fEj\\xC||AbNpp@tFdd@|Dz_@vC``@lCn`@vAte@Z|f@cAn[kB|`@aEnc@iHtd@eKt]iKfb@sO|a@wRvp@i_@bU{O|SeP~ZiWbUyTl`@{c@lZk_@tP}UfUm_@~Qa\\n]cq@pRw`@vIuPvWcf@lZqe@d_@gf@f[}\\jXaV|XkTzTkOvNeIr]cQxa@kQjb@mQza@cQteAuc@ljCehAbd@kTrb@aVvc@mYf`@{Yr]aZzYiYrg@ik@rl@uu@zl@cw@pd@qi@xb@ce@`e@kd@ff@ec@jXaUvQwNzNwK`l@ea@fYqQxQeLbh@kXto@yZhl@yV~w@wYt`AaZj|@mV|cAeXnVmH~m@eQ`WcJ`\\yL|UiLtZkQxM{IvLeIjSkPhCuBhWwVpc@og@nV_]rU}^xVue@~Xmo@xMi^`Ma`@|Q{q@tPau@rGaZxHu]xIq^|Jq]zJ}ZlNi`@tQub@fRk_@xNeWz]_i@~NsRtRyT|Ze[t[mXvT_PhSgM~ZmPzY_MjYeKxXyHxWuFpUmDrVqC`[aBfWe@hQD|Yh@p_@rCf]nEna@dItOxEnUpHfj@hR|a@nMnXhGnSvDzZ~Dr\\dCxZj@dXJpP_@fNq@nY_CpZeEpViEdUsFrSgGpa@{O~ZcOze@cZhZ{TxVgTbu@}q@bk@mh@|x@}u@|a@s[`SwMdVkN`VmLnZ_Mvc@aNnWyFd\\gFxVkDht@mKne@qKva@{M|XuL|WeNnS_MfWgQnW_SbXiT`SuPpVqTvc@w^j\\wVhRqN~NwJn\\oSf_@{Sxa@cS~h@gUjYkKf_@{LbQyErVyGdZuGh]_G|WaEtXcDn\\aDxZsBph@uBdUYz^Ohk@h@hi@nA`oB~DxoBdEloBbE|nBfEvMLhnAnCr|@vB`eAbC~`@p@`b@`AhnAdC`{ApCvqAxCzs@|A|f@r@pQBnr@y@nNw@r^oBpe@aFrf@aI|_@mI|WmHz_@eMla@}Obk@aXrk@m[fH{Dbt@ab@tn@_]fa@_R``@{Ova@_Oz`@cMjn@kPtn@gOtaAaUtu@_QhKaCb}@gSdjAwWthAkWf_Bq^hm@cNfp@kOn~@{Sdj@wK~m@kIf]{Cl`@mB|n@}@pr@vAvo@lEzt@~Jfm@jMp`@~Kvg@rQr`@vPtg@rW`e@lYle@l]xVvSpWhVh^v^xd@zi@~~@lkArt@`_Al]bb@dn@|r@lr@jr@vr@nm@`y@vo@t|@dr@jtBb`BzkFbbEtl@fc@dn@x_@zZrOj_@rOh_@~Ldd@nL~c@|Hpd@fFt`@xB~^p@f_@Wpc@{A|i@_Glh@wIfUiFt}@mTjc@aJv_@qFb^aDtb@gB~b@O|_@p@dp@lEpa@vDb_@bEjBRhb@pGze@vJvh@lNn^|K~_@xNn_@rPd_@fRvk@d]v\\jUlb@~[b\\dYz`@l`@~_@lb@jY|]vt@rbA`[vc@~d@rm@tX~[|\\p]nb@d^jVdQ`UzMj[bPfP~GfSzHp^dK`a@`Jbc@zFt_@fCv`@p@h]Ux[oB|ZcDj]_Gb[_Hr[}JjSoIzKsEpCkAnOkHpEwBx^gUt]uWvRcQ~QeQls@kr@bOaNva@{]d|@ip@rVePr`@mWjg@kYdc@yTbj@cWp{@y\\|~@aZzt@wQxh@sKz~@cNh{@wIxx@aFlrBiLxrBoLvdBmJ`hAqGzgCuNvwAsHfj@cBdb@g@zd@A~c@Xp}@jCdm@dDvk@zEv_AxKlmAtS~{Ax\\b}A`]ti@nL`i@xJ|q@~Kpr@lKjp@~Hxy@xIbiArItf@nCtf@vBlb@zAjb@bArdAjAbe@D~g@Qdp@s@fSe@hk@kBvl@gCvl@eDzIe@`RaAba@yB|lA}GvyAyHzq@yDx_@}Bnb@uBpd@kB`t@eA~s@Hpp@f@|e@bApaAhBlsAtBhsAfClhApBxhArB|p@`@xm@a@leA}CfbAkGfo@oG~o@wIx`@eGdO}Cld@iJfw@uQjc@_MdTgHju@cWnj@kTxk@cWdn@wZl{@af@dvA}v@xr@c^p\\sN`\\yLh[{JnPkEdb@_K|XuEfEs@f^{Et^{Cx\\mBvu@mBvhBy@xi@aAxy@sDba@yDxMoAno@cJ`De@tu@qNnImCbOwEjN_EtFiBbBi@pKiD~\\kLlh@cSvcAec@`f@gSt_@gOz|@c]bI{BjLcDlVaFxWcEhDi@fXaChRiAlO[pOKtRNrSt@jRbAtQhBpWpDnOtCxb@lIvi@zKjs@`Npi@nLdc@lKzVjF~`@pEt[xBz]f@`a@eAn`@gDt_@cHh`@{LlXwLde@iWd[gPva@gRd_@cOrVoIdNqEtk@uOxnAkYdb@uJrb@{Jza@cI`e@mH|u@cIjsAuMduAgN|AOdHs@xVgCz^wFtg@wMld@{P`b@iTnc@iW|WwLzWiJvX{Gd\\yEv[sBn\\_@jZdA~YtCv]pGlE~@h]hHn|@dR`o@jJlb@bDxc@rBvp@zCjrArFfm@rCxa@hDv^lGhVfGl[vJ~c@hRfa@`Tn^dVpZlVlZlYbYp[to@zy@tZh^zXrXlq@jj@vx@~n@br@pi@~OdMjl@vd@zc@t]tt@zk@ve@|^dg@p_@rZdTda@fWlMrH`t@`^rc@bQ`e@bOvt@nQhe@rHnq@xG`[fBt_@bAho@Axq@mBdfBaIdcBkGjq@cAvu@Ojd@Xf_@t@xt@zCbu@`Fl\\zCxAN~J`Azq@~Htz@`LrfAfO|TlDjr@jKzeCb^hf@dH`~@jN`|@zNje@zHxe@bJbe@~Jjn@tO|k@jPpgAf\\h~@xZxPbGfSdHlg@zPhrBps@fZbKfHbCju@~WniC~}@h}DluAjlAza@~cAn^vXvJrSjHrh@pQ~IzCdSfHvx@bWnj@xN~NlDd[zHfm@~Lrv@bMru@pJ|q@hG~e@bDpk@~Bh^v@fj@h@dk@Qp`@i@``@}Adn@wCzWsBnZaCdX_Cvb@wEnnAgP~oBaZz~AgTfW_Dxk@_G|_@yD|d@aDhk@yCnU_AxZs@t^oAjdAi@ndAx@xdAvClpAxH`h@rEhnA|MxdCf[jxAzR~`Cl[htCz_@v]vEdiFjr@tjBpXzb@vFnf@fHjt@tKhnArQnh@bIntBv[bqB|ZnpCnb@v`Fjv@ziCda@vkA|RjgAjRxu@nOn`@`Jxy@nSlfCxs@hhDveAzvBlt@fdA~`@n`A~a@zz@ha@xaAvh@~k@|\\bl@p^vy@nj@haAbs@x|@|q@jd@f_@dg@t`@dG|Exa@l\\~}@pt@dz@dq@ts@fk@tqAfeAdi@zc@fk@rc@~r@~j@~X~Tpv@bn@lv@`n@~u@xm@tv@dp@lXdWrVdV|]l_@|Xr[bZt^pUj[xVz]t`@xm@fW|b@nTza@f[ln@pWvj@xRje@pOda@`Whs@pTxq@|Mvd@~T`|@rMdi@pKvh@nYz}Af\\htBv[`xBxDtWzYflBtUhsAjQh}@|Ntq@fGdWxPjp@~Vd}@x`@`nAxUxo@l^v}@`S|c@zX`l@`Wxf@th@r~@~a@~o@|e@br@vf@bo@|a@rf@j\\d^|v@|u@d{@xt@|v@fm@f|@nm@jaArm@zHtEbl@x\\bkBvaAbTbK|o@h[tp@h[hPvHj[pNh^bPxe@~Sl`Azb@ln@vX|CvA`Q~H~P|Hj|@l`@br@|Zvl@bXvb@lRjg@~T~q@zZ`]rOrGrCxCrAbnB|z@fg@`Tlx@n[fi@|Q~d@lNnc@vL~h@vLjy@~N~d@pG|e@dF|NnAzd@rCpUlAnd@tAl^d@tb@Cxg@c@je@mAxaAeErsAyH|\\_Dt_AkGzi@mCzZiA~]w@p]Yb]B`c@l@x[`A|i@fCpYfBdb@hEjOzB~HjAjx@hLln@jMd{@vTvs@rSx`@jMzj@rQnw@|Ut^jKl`@~Jha@bJdUvExNvC~[hFrb@`Fli@zFt\\pC|g@zD`h@zDf{@fG~n@nExp@vErb@tCpc@rCbt@vDj^fBfX~@tc@nAxDJtn@tAfq@p@r}@Cnr@y@xf@y@lj@aBf`@cBfYsAph@iDrt@}F~`AwJ~{@eKjr@qJl_@{Fzr@cLf`BmX~bBaYb`AwO`M{BdXsEh`@eHpj@cKv`@mIhb@{Ixf@kLxu@sSjHqBfd@yN`k@_St_@aOdb@aQf_@iPbh@sVli@mYbv@{b@r~@ok@fpAoz@hoAiz@x_@mVnc@}W~`@qTzm@iYhp@wWfn@wSxm@qPvg@eLxe@wI~j@aIl_@{Dpa@yCj^gBbi@qAhc@]~b@b@pi@~@|Zx@j_@vAreAhEz|@`Drm@zBri@pBhPn@|pCjKfgB`Hdh@dC`Yr@fs@jCj~@dErjAxFrkAxGfrAbKfcA~J~]|D|a@bF~{@zL`sAxTfrAxV~rBlc@ftBdf@pFpAp_@bJdz@xRhi@xKvb@xHfl@jJhf@`Hje@pGn\\tDx^dDxd@xD~c@zC|i@zCbq@dClc@~@vr@x@vb@Jn[Adf@i@|[[|vC}JjnCeNtwCuLpqAaE~wBqFnz@aBl_AuAndAoAzh@a@ff@i@`g@Mpm@]hn@IteAA|k@Rne@Hbl@V`r@Jpp@Pl}@Jv|@Uju@a@vq@u@dl@oA|d@sAnk@uBlt@eDbg@uCpl@}Dvf@wD~a@sD``@uDbe@aFnMwA~h@qHvs@gJro@cKry@cOxj@{Ktf@yKpGwAva@sJrEeAbl@qOnp@cS~p@qThp@aU`o@kU`u@{[|iAug@tz@aa@d_@iQb_@}Phs@e\\hx@w^jl@mWnt@yZx@]ja@uPzg@oSrj@eTbf@wQxO_GpdA_^hc@cOpwAsf@vWwIzgCa}@xkByo@dkB}o@dz@sYzz@kYno@}Slh@kP~n@eRbn@wPz_@yJx`@wJfi@cM|i@yL|q@iNjy@_Olj@iJ`q@aKzm@mIlh@sG~b@_Frj@}Fv{@{Hlt@kF~l@mDl_AwEpaAcDx}@aBje@i@pe@Mjm@\\na@t@fTx@l^nAfX|Ar_@pCdg@xErm@pHrk@~Inj@lKvl@vM~o@`PzlAr[joA|]|NdEdvA`a@ju@jUvs@`TvoA`a@fy@dXj|@dZfuBht@xt@zWft@lXxq@rWv`@fPzQvHrPzGfgAtd@nr@|[n_@zRp_@lStl@l]fk@|\\nl@r^zb@nYdk@fa@xjAb}@pdAt}@zgA~eAbjAdmArv@j}@rv@z`Axa@hj@z`@nj@d_@pj@dW~_@dTr\\hd@zu@jXle@zXdg@jT|`@vKhSrP`[dN|WtUfd@vVpf@xWjh@`a@fw@nm@|jA`]do@j[bl@rXpf@jU|_@fRzZ|Rh[`PlV~]`h@rUd\\``@bh@xPrSh_@tc@nZj\\~TtU`YfYvXtW~`@`^tc@t^lRpN~ZlUjv@fi@pt@rc@nq@j^xX~Mhb@vRh\\dNx_@jOxf@tPvi@~Pxd@nMpi@`Mxo@vMdl@zL`p@`Jdm@fGlh@hEbz@hEtw@pCxiAxBp_AbAnk@`@xv@Upv@|@fzAtCdfE~EnJJ`b@b@v_AtAzyA|A|bAx@rkAxAzzA`Bdk@v@nn@jB|W~@hZdB~\\xBb`@dDvZpD`]fE~i@jIxv@bOtc@|Jnk@fO|l@tQjt@dWfi@vStjAti@dwArv@|HfEjeBhbA`iBncAhqAhq@`n@l[xe@zUtcApd@la@jQxc@~Q`t@dYvp@xVjh@fRfa@bNl]bLrx@|V~_@zK~]zJdc@`Lla@bKtqAnZdwAnZn{AhZf`A|QbaA`SbbAbUh{@tUvc@vNde@xPjbAta@l{@xa@fbAlj@|TrNtXxQtPbLdThOrbAdw@jfAlbAv{@b|@fGfGt~@heAlj@`p@vy@p`AtnAdvAls@zu@riApgAvq@~m@bhAp~@dg@x_@zZzTvaAfp@`UnNjp@z`@hw@nc@zj@nY|k@tXhd@jSl`Av`@jj@~Sjj@|Rpk@|Qpi@pPx_AzW`bAvUj{@hR`RtDpXdFzVnEzZhFhp@hKxr@pJff@xFrc@xExy@tH|h@hEjVtA~T~@|Qv@`e@~Ars@|Brg@|@xg@l@~n@Nha@Gdc@Y~d@w@fd@}@fi@cBj`@_B|l@gDln@{DhmAsIxqCcUvdCkSdyAyLnxA{JdwBwRzxBiQheBsNnc@oDrjBqOtmB}OtaCyR``AyHr_A}Hhv@kHhs@uH`p@oHt}@kMhd@uHr[wFdzAqZhsBwc@htAgZpdAuU`bAqRfEw@|_AgQv{@{NfiAkPvC_@fz@kKfgAmLtmAeKleAeHffAyFrPm@~{@eC`Mc@|q@kAj_AiAfvA]~}BAlpCNx~BQlyAu@fwBgC^AzlByDbeAeD~eAsDlb@_BjmBsInpC{QncA}G~q@_Ft{@wFtn@sEvlB}Lrz@kGzv@{Gdv@qHpi@eHjk@_Jjb@_Ivg@yKzi@_Nfc@_Mpo@}Sh_@_Ntf@{RffAee@zkAsl@|fBe~@xcBe|@dh@mVvY_MzVuJhAc@hk@mQjd@yKjh@aJh]iEd\\_Dp]kBj^q@l]m@p\\Nr\\l@zw@fB|v@dBdc@`Aj~@jB|_ArBv]t@zLRzCFdj@dAlKd@lr@`Bta@fBj]tBba@lDdUtCjX~D|a@`I\\FxZhHf[zIj\\jKx\\lMp^xO|b@dTpUdM~S`N~d@~[dYlTde@da@lx@dw@`zAv{Adz@l{@v_AjaApKvKbTrT~m@zn@flAnmAxoA~pAz{@f{@rn@zl@nn@bk@hn@li@zaBrqArl@~b@ps@dg@tuAj_Ax_@fWbqBjrA`rCrjB|nCjhBvfB|jAxxBvxAdsAx|@tVvP|m@d`@nv@pg@p^bVfy@ti@v{@hk@lwB|vAp]nUnpB|qA`uBvuA|{@rk@``@lVvXxPzY|Pv_@tR~ShJlMxFde@`Q`^rKp^hJdo@tLtc@rG|i@xGtx@vIfEb@lEb@fk@~F~~@rJnrApNra@~Dld@hDfa@lBz]t@dg@Fh]w@nZyArj@eFzc@sGva@aI|a@sK|_@qL`c@mOtFwB|f@ySzNgG~j@wV~HkDnyAko@z^mPr\\cOzo@q[x_@cSh]kRx_@mUn]cUvb@wZz\\yWbZyVjSiQt`@s_@|^e_@lb@}d@ht@cz@fu@c}@tS_Wf\\i`@v\\w`@hVsXxW_Zxh@ki@di@{g@hVsSnWuS`YwShUkO~RaMdRaKnN_IxZkN~CyAt[cMfVeIpZ{I|SeF`VcFzNmCrN}BbJsAlKuAhU}BdT_BnNm@lSq@bTa@tVKjW@lw@hAxa@n@vb@FxRK|R[fXcAxMw@xMeArZqD`KaBbLeBbWqFbOwDvLqD`TuGfQ_HzFaCnKqE`M_GzPuInQcKpOwJtNyJ~McK`OsLhQoOrRiRlZk\\xTwXbCgDlXu_@b]aj@jP_ZfXkh@tUgf@zJwTlJ_UbYwq@zTmk@xiAs{C|Sej@bWgo@bPg`@lPe`@fSkd@dWyi@fQy^|X_k@vTka@fTu`@jZsh@xZeh@rYyd@nZqd@bUs\\~]ag@t^uf@Xa@l]mc@r_@sd@dPeR~OaRtW}Y|X_ZjPqPvMuMdS_SvMkMn`@i^`UeSbVgSfZsVzZcVbYiT~YmTxZsSha@cYzy@kj@xp@ic@fwA_`Alf@y[je@e[vm@ma@dIaF~sAm}@`{AibAft@af@ta@wWlg@{\\jaAqo@|yGwmExh@u]fqBirAzt@kf@z|AwcAds@ge@rQsLbRuLpNsIdRiK`LyFhSwJ~g@wSvtC}fApHkCd\\kMfpAcf@hfDsoAtj@yS|cAw_@nr@_W~pAgf@tc@wPv^_O`O}GpMmGjVgNfNiHhMgH|y@uf@b|@mh@dbAil@rb@wVpb@iWlj@_]|SoNnMqJlMsJzNwLtLkKlLoKlUgUvQaStC_DhYk]tXu]|^_f@~]me@jq@w{@pZi^"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 49 miles.","announcement":"Continue for 49 miles.","distanceAlongGeometry":79506.258},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on A 7.","announcement":"In 2 miles, Keep right to stay on A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on A 7.","announcement":"In a half mile, Keep right to stay on A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on A 7, E 714 toward Marseille.","announcement":"Keep right to stay on A 7, E 714 toward Marseille.","distanceAlongGeometry":256.667}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[137,141,321],"duration":4.824,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":4.922,"geometry_index":11924,"location":[4.785822,44.13371]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,317],"duration":10.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":10.715,"geometry_index":11925,"location":[4.787125,44.132717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":2.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.785,"geometry_index":11927,"location":[4.789875,44.130494]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.790567,44.129929],"geometry_index":11928,"admin_index":10,"weight":12.652,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.07,"bearings":[138,144,319],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.793843,44.127268],"geometry_index":11930,"admin_index":10,"weight":8.188,"is_urban":false,"turn_weight":0.5,"duration":7.34,"bearings":[139,308,319],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,319],"duration":15.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.762,"geometry_index":11933,"location":[4.795833,44.125648]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":61.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":62.793,"geometry_index":11935,"location":[4.799924,44.122341]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.008,"geometry_index":11955,"location":[4.820246,44.112853]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":12.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.355,"geometry_index":11956,"location":[4.820643,44.112801]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,104,280],"duration":25.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":25.109,"geometry_index":11957,"location":[4.825635,44.112161]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.835862,44.110852],"geometry_index":11961,"admin_index":10,"weight":2.953,"is_urban":false,"turn_weight":1,"duration":1.961,"bearings":[100,270,280],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":4.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":4.637,"geometry_index":11962,"location":[4.836651,44.110748]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":2.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.32,"geometry_index":11963,"location":[4.83852,44.110502]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,121,280],"duration":2.246,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.238,"geometry_index":11964,"location":[4.839452,44.110379]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":6.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.074,"geometry_index":11965,"location":[4.840365,44.110266]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.842906,44.109942],"geometry_index":11967,"admin_index":10,"weight":19.098,"is_urban":false,"turn_weight":0.5,"duration":19.586,"bearings":[100,255,280],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":1.004,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.945,"geometry_index":11977,"location":[4.851381,44.108245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,297],"duration":83.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":81.73,"geometry_index":11978,"location":[4.851776,44.108099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,342],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.906,"geometry_index":12000,"location":[4.87714,44.088441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,343],"duration":1.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.91,"geometry_index":12001,"location":[4.87752,44.087536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,345],"duration":87.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":85.699,"geometry_index":12002,"location":[4.877751,44.086937]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.34,"geometry_index":12024,"location":[4.887548,44.059381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":29.316,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":28.566,"geometry_index":12025,"location":[4.887576,44.058926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,358],"duration":24.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":24.277,"geometry_index":12029,"location":[4.888122,44.049429]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,204],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.23,"geometry_index":12042,"location":[4.886118,44.042795]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,203],"duration":23.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":23.84,"geometry_index":12043,"location":[4.885924,44.042487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,356],"duration":2.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.531,"geometry_index":12053,"location":[4.883982,44.036175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,350],"duration":8.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.574,"geometry_index":12055,"location":[4.884132,44.035511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":3.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.949,"geometry_index":12060,"location":[4.885018,44.033321]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.945,"geometry_index":12061,"location":[4.885501,44.032328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,341],"duration":5.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.055,"geometry_index":12062,"location":[4.885617,44.032087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.598,"geometry_index":12064,"location":[4.8863,44.030538]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":0.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.027,"geometry_index":12065,"location":[4.886722,44.029644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":13.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":14.426,"geometry_index":12066,"location":[4.88684,44.029384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.461,"geometry_index":12072,"location":[4.887992,44.025668]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,177,352],"duration":18.898,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":20.309,"geometry_index":12073,"location":[4.888172,44.024757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.889263,44.019107],"geometry_index":12079,"admin_index":10,"weight":39.668,"is_urban":true,"turn_weight":1,"duration":35.977,"bearings":[172,346,352],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.234,"geometry_index":12087,"location":[4.88978,44.008695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":8.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":9.297,"geometry_index":12088,"location":[4.889766,44.008635]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":0.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.887,"geometry_index":12090,"location":[4.889219,44.00618]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":40.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":45.441,"geometry_index":12091,"location":[4.889162,44.005948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,353],"duration":1.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2,"geometry_index":12099,"location":[4.887284,43.994179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,346],"duration":29.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":33.762,"geometry_index":12101,"location":[4.887431,43.99369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":5.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":5.961,"geometry_index":12107,"location":[4.890748,43.985532]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.535,"geometry_index":12108,"location":[4.891318,43.984092]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[164,168,344],"duration":10.359,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":11.891,"geometry_index":12109,"location":[4.891464,43.983722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":16.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":18.684,"geometry_index":12110,"location":[4.8926,43.980816]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[163,338,345],"duration":8.715,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":9.781,"geometry_index":12112,"location":[4.894362,43.976242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.031,"geometry_index":12114,"location":[4.895351,43.973787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":80.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":88.855,"geometry_index":12115,"location":[4.895454,43.973531]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":2.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.254,"geometry_index":12125,"location":[4.909482,43.949423]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,335],"duration":73.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":75.34,"geometry_index":12126,"location":[4.909833,43.948876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":1.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.312,"geometry_index":12136,"location":[4.912946,43.927963]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,182,355],"duration":29.059,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":27.598,"geometry_index":12137,"location":[4.91299,43.927582]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.913974,43.919272],"geometry_index":12138,"admin_index":10,"weight":59.141,"is_urban":false,"turn_weight":1,"duration":61.207,"bearings":[176,346,355],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[167,259,349],"duration":4.23,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":4,"geometry_index":12157,"location":[4.912282,43.901428]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,340],"duration":2.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.145,"geometry_index":12160,"location":[4.912755,43.900239]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[153,170,337],"duration":22.328,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":21.191,"geometry_index":12162,"location":[4.913109,43.899624]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.918881,43.894663],"geometry_index":12171,"admin_index":10,"weight":17.363,"is_urban":false,"turn_weight":0.5,"duration":17.762,"bearings":[142,313,318],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,349],"duration":18.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":18.434,"geometry_index":12181,"location":[4.92192,43.889422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,341],"duration":34.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":34.02,"geometry_index":12187,"location":[4.923855,43.883992]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[102,107,282],"duration":20.262,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":19.738,"geometry_index":12206,"location":[4.935704,43.877531]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.944464,43.875748],"geometry_index":12213,"admin_index":10,"weight":125.898,"is_urban":false,"turn_weight":1.1,"duration":134.926,"bearings":[111,280,289],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,336],"duration":79.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":73.336,"geometry_index":12250,"location":[4.989344,43.847816]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[111,115,290],"duration":18.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":18.746,"geometry_index":12274,"location":[5.013814,43.830375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.021299,43.827636],"geometry_index":12283,"admin_index":10,"weight":34.738,"is_urban":false,"turn_weight":1.3,"duration":32.629,"bearings":[129,296,306],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[149,155,329],"duration":23.914,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":24.504,"geometry_index":12294,"location":[5.030241,43.819351]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.03504,43.813497],"geometry_index":12298,"admin_index":10,"weight":85.84,"is_urban":false,"turn_weight":0.5,"duration":87.535,"bearings":[151,324,331],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.609,"geometry_index":12326,"location":[5.045171,43.789307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":115.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":109.863,"geometry_index":12327,"location":[5.045571,43.788897]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[147,152,325],"duration":22.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":21.012,"geometry_index":12348,"location":[5.076736,43.762297]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.081232,43.756654],"geometry_index":12355,"admin_index":10,"weight":31.5,"is_urban":false,"turn_weight":1,"duration":31.289,"bearings":[156,329,334],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,347],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.441,"geometry_index":12363,"location":[5.085304,43.747863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":0.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.148,"geometry_index":12364,"location":[5.085341,43.747733]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.758,"geometry_index":12365,"location":[5.085354,43.747688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.48,"geometry_index":12366,"location":[5.085424,43.747473]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[167,190,347],"duration":10.137,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":9.875,"geometry_index":12367,"location":[5.085659,43.746753]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.086602,43.743846],"geometry_index":12371,"admin_index":10,"weight":1.852,"is_urban":false,"turn_weight":0.5,"duration":1.391,"bearings":[167,325,348],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":8.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.551,"geometry_index":12372,"location":[5.086727,43.743454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":1.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.191,"geometry_index":12374,"location":[5.087542,43.740967]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":65.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":60.863,"geometry_index":12375,"location":[5.087653,43.740619]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,352],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.715,"geometry_index":12394,"location":[5.090187,43.721212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":40.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":36.02,"geometry_index":12395,"location":[5.090238,43.720983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,335],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.48,"geometry_index":12406,"location":[5.095222,43.709602]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,334],"duration":21.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":20.133,"geometry_index":12407,"location":[5.095316,43.709462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,353],"duration":5.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5.531,"geometry_index":12419,"location":[5.098574,43.702848]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[181,359],"duration":29.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":27.691,"geometry_index":12421,"location":[5.09871,43.701093]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189,201],"duration":56.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":51.105,"geometry_index":12432,"location":[5.096606,43.691511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.82,"geometry_index":12447,"location":[5.095604,43.674695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":52.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":48.516,"geometry_index":12448,"location":[5.095675,43.674088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":1.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.258,"geometry_index":12463,"location":[5.1029,43.658158]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,328],"duration":38.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":38.07,"geometry_index":12464,"location":[5.103177,43.657831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,336],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.219,"geometry_index":12472,"location":[5.110833,43.647881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,335],"duration":11.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.23,"geometry_index":12473,"location":[5.111039,43.647564]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.449,"geometry_index":12476,"location":[5.112943,43.644237]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,341],"duration":52.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":54.266,"geometry_index":12477,"location":[5.11313,43.643843]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[142,151,321],"duration":8.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.547,"geometry_index":12489,"location":[5.124513,43.630559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.195,"geometry_index":12490,"location":[5.126542,43.628702]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":10.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":10.48,"geometry_index":12491,"location":[5.127102,43.628195]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.82,"geometry_index":12492,"location":[5.129371,43.626126]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.129554,43.625964],"geometry_index":12493,"admin_index":10,"weight":1.699,"is_urban":false,"turn_weight":1,"duration":0.707,"bearings":[141,307,321],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.156,"geometry_index":12494,"location":[5.129722,43.625815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,322],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5.195,"geometry_index":12495,"location":[5.129987,43.625571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":33.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":32.324,"geometry_index":12496,"location":[5.131263,43.624405]},{"entry":[false,true,false,false],"classes":["toll","motorway"],"in":3,"bearings":[86,141,266,321],"duration":24.801,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":22.934,"geometry_index":12498,"location":[5.139482,43.616979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,324],"duration":71.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":64.547,"geometry_index":12502,"location":[5.1455,43.611353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":7.41,"geometry_index":12516,"location":[5.164256,43.596498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.254,"geometry_index":12518,"location":[5.166888,43.595678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":6.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.121,"geometry_index":12519,"location":[5.166971,43.595654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":19.441,"geometry_index":12524,"location":[5.168936,43.59509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":6.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5.508,"geometry_index":12525,"location":[5.171679,43.594251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.73,"geometry_index":12526,"location":[5.172452,43.594015]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.172557,43.593982],"geometry_index":12527,"admin_index":10,"weight":15.215,"is_urban":false,"toll_collection":{"name":"Péage de Lançon","type":"toll_booth"},"turn_weight":15,"duration":0.238,"bearings":[111,293],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.766,"geometry_index":12528,"location":[5.172623,43.593964]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[111,155,291],"duration":10.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":9.359,"geometry_index":12529,"location":[5.173188,43.593803]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,291],"duration":8.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":7.309,"geometry_index":12530,"location":[5.176184,43.592951]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[110,289,292],"duration":14.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":13.43,"geometry_index":12531,"location":[5.178526,43.592274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":1.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.691,"geometry_index":12534,"location":[5.182869,43.591127]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[107,128,289],"duration":17.473,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.707,"geometry_index":12535,"location":[5.183415,43.59099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.664,"geometry_index":12539,"location":[5.18989,43.58964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":19.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":17.848,"geometry_index":12540,"location":[5.190164,43.589586]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.197475,43.587978],"geometry_index":12545,"admin_index":10,"weight":116.875,"is_urban":false,"turn_weight":1,"duration":132.438,"bearings":[114,289,291],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,311],"duration":27.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":23.672,"geometry_index":12569,"location":[5.216996,43.570301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,302],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.801,"geometry_index":12571,"location":[5.222445,43.567717]},{"bearings":[123,303],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":12572,"location":[5.222722,43.567587]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Marseille"}],"type":"fork","modifier":"right","text":"Marseille"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"right","text":"A 7"},"distanceAlongGeometry":79549.594}],"destinations":"Marseille, Orange, Avignon, Nice","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 7/E 714/Autoroute du Soleil toward Marseille.","modifier":"slight left","bearing_after":137,"bearing_before":141,"location":[4.785822,44.13371]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":2416.332,"duration_typical":2458.305,"duration":2458.301,"distance":79549.594,"driving_side":"right","weight":2416.328,"mode":"driving","ref":"A 7; E 714","geometry":"{sudsA{hbcH`}@mpAju@ubApsAegBhb@gj@puBgqCvn@oy@hUcZ`UmZzw@ydA|tDu`FvW_]`pBqiCdcD}gEfUmZvTe\\db@gr@r`@}v@t[ss@~Mu\\lMs_@lMw_@lMsb@tSmx@xSwcAzMmz@bMq_AdJccA|HejAnJyzAhJytAn@kKfByW~f@_wHx_@m}FpXgdE`Q{mCjDsk@nEip@jNysBtFgy@`Fax@dEmq@`MkkBlNmsBlOgxBlFcm@~Gil@zIgn@`Hub@tJgg@hEuT|Psq@z@aDbHuWjTsr@rQ}f@xZgt@d[mm@rxHaiNtmAo~BblA{~B~n@woAxYch@fYwc@zZ_c@fYk^b_AoeAnZi[d^m]vuAkoAl`Aqw@p{@_p@daA}n@jo@a]t`@mQdW}Ipw@wVld@mMfoCam@~bAmUld@iJl{@ySvaAwVflAuZfyDybAhtLa`DfgA_[zZeJtKiDtt@eZnr@qZ`yAqq@vx@e[vm@mPxa@cI`a@wFtYeDnYaCj`AcEpk@uAl[w@ttAgDhcCqFzuHcQt_AeB`\\m@xW`Atb@rAtc@xDn_@bEfZfFpg@jJx`@~Kbc@xNbi@fT`XdLnFhClj@zVfRbKfpAbn@ju@~^p_@tLhb@vKz\\jGhg@tFhXpBn`@j@vk@iBfP{@dSeChTeDlNsCnU_Gla@mLp\\}K|a@kO`}@e]`NgFhpAkb@nNiFzv@kYfOkFhj@eSlZ_LrReFhS}Dlp@kJbgAiM|w@gJl{@oKv_AkI|wAuQtdAqL~b@{Eh`@eEf{Hg{@lk@qEr_@}BbXg@j]Znk@xDbrCj]hIrAvBZzYvEp}BlZnMpBh`Dfc@l|I|mAnc@lGdb@`Dn\\|@l`@Kdh@_C~o@{GpIiA~R{EzW{Hxc@wMzd@sNbx@uVtw@cVngHgwB~xAsb@bVcHrtD_fAjSaGnhGaeB|v@aVn`Bwe@~NmEp~Bon@`cEajArf@kOlQ{FvUiK~j@}ZzBmAlhOiqIlsH}hEp_F_rCda@}T`OgHp\\aOp\\gLpY_Ij]iHzXyDj`@{DliNss@h}@wE|qPs`AxVwAjfOo|@nzDeSry@cEj[]n_@j@|^hBxf@`GhmFdz@j{@pMnfDpg@h`@~Fd\\fFld@hE~YvAjU@nXWnYsA~d@mEjNiCrNiCfW}F`XaH~WqKrCiAx`@yRzc@wXve@u_@l]w\\vV_Zx\\ed@|Uw^rm@ybAfa@_q@rm@yy@rLyMxZ}ZvViVnWkStZ{Sdb@_Tx^cPvb@}Lpj@qLz~@_PhuA}Trv@eO|q@mQvv@iUhq@wUlg@iRxb@wRxe@gWn_@kWpZqVlZkYb\\e_@n`@{j@h\\yi@dYwl@`Zuu@jOof@zOso@~EuT|EoWvJko@tH_m@hHis@tM}~AzB_Y|F_t@zJwgA`ScmB`WqtBvNgbAhPceAlMuw@|Kkm@xTggA~Okx@tQux@hg@_uBpa@ozA`c@y{Ax|BiwH|{ButHvdAygDn`@uhA|d@yjA|s@}xAbc@mv@dMiQda@ak@lh@so@ptAqwAr|AcwA|fBkaBrn@yo@lk@{p@~p@_|@~f@{t@~j@m}@hi@e|@hq@qiA`p@scAf_@ki@~\\_d@db@mh@pf@eh@lc@s`@dVwS`e@{\\`l@{^|}@we@paAwd@nmBm|@v}@_e@tx@gg@~j@m`@vt@on@vd@sc@nk@qm@xw@g`Ahw@meAdl@{z@xo@idA|o@{iAhm@gkAld@uaA^w@vc@ucAxe@cnAzx@{_CdZobAb]mpA`\\uwAre@wiChLiq@h\\ijBrTufArLui@nJo_@vUqz@tJq[rKi[rQ_g@l\\ex@lc@k}@jg@i~@j\\ig@z\\ie@j_@ee@z`@yc@tg@ai@rm@wi@zv@eq@n}@et@xlBkzAniAe}@x`Acv@`dCanBn{AqfAbn@}b@ps@ce@lsByiAb_A_c@neAu`@bz@mWr{@{Sb`AaPxl@sG`VyB`aAyDdcAm@npB^tv@o@fq@aBtx@aGjo@gJvn@eNjf@gOta@sOrh@_Vp`@_Td]{Sdq@ef@ll@gg@pp@}l@fr@oo@~V{UrX_XnlAyhAjdCqdCh|@a}@`v@m~@rk@st@re@ao@nd@mo@jw@cjAzVu_@pXgc@loFamIxjAydBllAwdBbKgN~gAm{AdwAejBt`B_pBtgBasBhxAg}A`}A}|A|zC_vCrj@{e@v|@su@`g@u_@xp@sg@lt@ig@bp@kd@zu@oc@fbA{h@puAcp@`vAgk@rq@uUvt@oVzq@uSfs@eR`dBe`@bGiAxAYlLkC~k@uMnfAmVho@gOlp@uNlKqBnWyFlpBed@~h@wLvT}Er}As]pf@uJbQkDzeAoQvaAuMj|@cJbp@uD~cAmE~~@qBpvA{CjcCi@bmBwAb_A_Bnr@cCnr@aDzh@yCjn@mFhq@yGvi@oGhMeBns@{J`~@gPzt@oOzy@aR`uBwm@tgAk_@`iAwc@vpAel@bl@{Xvn@k_@pj@oZvG{Dvb@eW@?lwAqx@vn@g[nw@q^vc@cOPGjc@oNt]mJ|XkFnUqD`_@yD|x@uFvr@Y|URbc@pBt]pBn`@|E~{@hMlcArPrrAnTF@hmC`c@vl@jIfiAzO|TxCz_AnKpm@jGza@pDt^pCxuAzGrcC`I`hCnEfwA`C`xBfE`{@fCnnAUhf@qArl@wAv{@eF|d@mCzdEsY`wAyNpsAqSbv@}Ojm@qOj|@iYLE|{@k]vw@e_@|w@yc@zp@gb@fw@ci@j{BifBjU_Rha@o\\lSiPv_Em~CtaBcpAvdBepAhp@uc@hq@cc@lp@o`@to@c^|]iRxR{KxfBe}@`w@ga@`o@qUrWuJ|g@_Tzg@sXvpAwq@bg@{ZpJ_Flz@cf@dkAuu@|mAw|@tcAq~@ju@yu@vy@w{@ryEosF`sBy}Bt^_b@h`CylCbImJhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 10 miles.","announcement":"Continue for 10 miles.","distanceAlongGeometry":15914.287},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 7.","announcement":"In 2 miles, Keep left to stay on A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 7.","announcement":"In a half mile, Keep left to stay on A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 7, E 714.","announcement":"Keep left to stay on A 7, E 714.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[158,173,340],"duration":19.105,"turn_duration":0.015,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":18.137,"geometry_index":12581,"location":[5.228036,43.56103]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,342],"duration":0.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.152,"geometry_index":12588,"location":[5.230226,43.55609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,346],"duration":10.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":9.777,"geometry_index":12589,"location":[5.230241,43.556045]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.230934,43.553191],"geometry_index":12594,"admin_index":10,"weight":23.566,"is_urban":false,"turn_weight":1,"duration":23.762,"bearings":[178,339,354],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,208],"duration":2.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.082,"geometry_index":12604,"location":[5.228723,43.546533]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,210],"duration":116.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":110.355,"geometry_index":12605,"location":[5.228336,43.546005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,328],"duration":2.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.117,"geometry_index":12647,"location":[5.229971,43.516747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,329],"duration":47.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":45.961,"geometry_index":12648,"location":[5.230422,43.516213]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,347],"duration":2.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.059,"geometry_index":12659,"location":[5.237462,43.503632]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,346],"duration":12.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.551,"geometry_index":12660,"location":[5.23765,43.503076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":2.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.391,"geometry_index":12663,"location":[5.23855,43.499601]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5,"geometry_index":12665,"location":[5.238681,43.498931]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[173,189,352],"duration":6.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.473,"geometry_index":12666,"location":[5.238955,43.497536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":1.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.266,"geometry_index":12667,"location":[5.239266,43.49579]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,354],"duration":12.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.281,"geometry_index":12668,"location":[5.239318,43.495454]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.239827,43.492198],"geometry_index":12672,"admin_index":10,"weight":44.879,"is_urban":false,"turn_weight":0.5,"duration":44.387,"bearings":[175,338,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.199,"geometry_index":12681,"location":[5.239916,43.48012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":43.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":41.934,"geometry_index":12682,"location":[5.239783,43.479811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,179],"duration":2.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.016,"geometry_index":12691,"location":[5.233737,43.468805]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,359],"duration":43.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":43.789,"geometry_index":12692,"location":[5.233755,43.468247]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,347],"duration":25.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":27.125,"geometry_index":12702,"location":[5.236002,43.456352]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":2.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.32,"geometry_index":12711,"location":[5.239342,43.44988]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[150,175,333],"duration":21.199,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":23.824,"geometry_index":12712,"location":[5.239693,43.449372]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[143,306,323],"duration":7.207,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.281,"geometry_index":12718,"location":[5.243683,43.444833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,323],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.844,"geometry_index":12719,"location":[5.245216,43.443376]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,322],"duration":31.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":36.43,"geometry_index":12720,"location":[5.245552,43.443069]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.252328,43.437308],"geometry_index":12723,"admin_index":10,"weight":36.926,"is_urban":true,"turn_weight":0.5,"duration":30.363,"bearings":[144,306,322],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,324],"duration":1.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.91,"geometry_index":12726,"location":[5.25813,43.43147]},{"bearings":[144,324],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"geometry_index":12727,"location":[5.258436,43.431163]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E714","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 714"}],"type":"fork","modifier":"left","text":"A 7 / E 714"},"distanceAlongGeometry":15950.954}],"destinations":"A 7: Marseille, Rognac, Berre, Marignane","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on A 7/E 714/Autoroute du Soleil toward Marseille.","modifier":"slight right","bearing_after":173,"bearing_before":160,"location":[5.228036,43.56103]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":530.602,"duration_typical":521.039,"duration":521.039,"distance":15950.954,"driving_side":"right","weight":530.602,"mode":"driving","ref":"A 7; E 714","geometry":"kcwarAg_b~HjFBzL}DfW{Hba@wNzgAq`@|fAeb@hsAuc@xA]jg@uLnc@wIzc@}Fxc@cFxZyBrg@q@xb@\\vk@lC|l@~HfYlFdz@fUxa@dObb@zQhb@jThy@fe@~_@dW~UhQrt@tm@pmAxkA~jApmAvv@|z@dn@~p@fs@lr@`iAdbApl@dd@z\\dTfXhOzXjNrSzJhOlGnZhJz\\`JhMzCdPtDbj@vIr^rCrn@tBj`@`@lo@oBd[wCj[_Fdd@cJvg@aOl`@aNbh@}UxL{Gr`@oVz^aXb\\uWri@qf@lw@iu@xiAkgAljAsgAblAugAniAkdAjbAe}@hv@wo@neAc{@j`@e[pjAa{@hsAs~@vkAut@bn@w]tdAgj@r_Aec@hy@s\\~lAyc@llAo_@fkAk[fmAcXva@wJ`bBeZh~AuWxUkC|IcA|]aEdvAcPblBmR~SgBrbA{IjtAgLr`@aDzOsAt{AgKjgH_k@|oBsCnz@jBty@xHt]bEfc@vIjv@zRjKjDhRhGvItCbq@vZxj@p\\psB`|ArmB|~AhmA`t@tyAxi@noB`ZniA|Bza@c@|_AkFvlAaJjfC}Tjh@kE`aBaNlsB_Sf|@gMt^oFf\\sGhvAg[b`B{c@xpAqd@lf@uS\\O~e@cTz]uPl^gRh|@of@pUqNv^}Tr[iUjaBwlAldAc}@hJaJ~k@_k@|]c_@`zAy~AdR_TxuCazDvwBumCnwAw|A|nBsmBp_Fu~Ej[i[dRcRtf@qf@"},{"voiceInstructions":[{"ssmlAnnouncement":"In 2 miles, Keep right to take A 551.","announcement":"In 2 miles, Keep right to take A 551.","distanceAlongGeometry":3560.885},{"ssmlAnnouncement":"In a half mile, Keep right to take A 551.","announcement":"In a half mile, Keep right to take A 551.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 551 toward L'Estaque, Les Ports.","announcement":"Keep right to take A 551 toward L'Estaque, Les Ports.","distanceAlongGeometry":256.667}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[144,160,324],"duration":12.441,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":14.613,"geometry_index":12728,"location":[5.259069,43.430528]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.613,"geometry_index":12730,"location":[5.261801,43.427751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":4.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":5.77,"geometry_index":12731,"location":[5.262101,43.427445]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,325],"duration":22.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":26.422,"geometry_index":12732,"location":[5.263159,43.426337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,317],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.34,"geometry_index":12737,"location":[5.268626,43.421442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,318],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.375,"geometry_index":12738,"location":[5.2687,43.421383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,316],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.34,"geometry_index":12740,"location":[5.268789,43.421315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,316],"duration":28.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":31.773,"geometry_index":12741,"location":[5.268864,43.421258]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.276707,43.416012],"geometry_index":12749,"admin_index":10,"weight":25.641,"is_urban":true,"turn_weight":0.95,"duration":22.977,"bearings":[134,298,313],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[137,317],"duration":8.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.91,"geometry_index":12754,"location":[5.281746,43.412222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,317],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.141,"geometry_index":12755,"location":[5.283627,43.41078]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,317],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.406,"geometry_index":12756,"location":[5.283864,43.410596]},{"bearings":[136,317],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":12757,"location":[5.283948,43.410531]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"L'Estaque"},{"type":"text","text":"/"},{"type":"text","text":"Les Ports"}],"type":"fork","modifier":"right","text":"L'Estaque / Les Ports"},"distanceAlongGeometry":3597.552}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 7/E 714/Autoroute du Soleil.","modifier":"slight left","bearing_after":144,"bearing_before":144,"location":[5.259069,43.430528]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":140.699,"duration_typical":125.809,"duration":125.809,"distance":3597.552,"driving_side":"right","weight":140.699,"mode":"driving","ref":"A 7; E 714","geometry":"_gxyqAyr~_I~[}[poCylCbRwQfdAcaAtCoC||@}}@flAioAjqBsdCtn@i{@tBsCv@gAnAiBpBuC~a@}l@lfAwbBt|@i{Ap]gq@DKf}@_cBrb@}u@b^sm@dKkPzj@i}@lq@kcAzp@{_AnoA_eBbyAqtBnJyM`CgD|q@qcA`\\qi@zYci@h^mu@nS{d@dTei@bR{g@`HcT"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to stay on A 551.","announcement":"In a quarter mile, Keep left to stay on A 551.","distanceAlongGeometry":373.226},{"ssmlAnnouncement":"Keep left to stay on A 551 toward L'Estaque, Les Ports.","announcement":"Keep left to stay on A 551 toward L'Estaque, Les Ports.","distanceAlongGeometry":268.889}],"intersections":[{"mapbox_streets_v8":{"class":"motorway"},"location":[5.289544,43.407202],"geometry_index":12765,"admin_index":10,"weight":17.617,"is_urban":false,"turn_weight":5,"duration":12.625,"bearings":[120,123,301],"out":1,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"bearings":[113,294],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":12770,"location":[5.293139,43.405755]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"L'Estaque"},{"type":"text","text":"/"},{"type":"text","text":"Les Ports"}],"type":"fork","modifier":"left","text":"L'Estaque / Les Ports"},"distanceAlongGeometry":409.892}],"destinations":"L'Estaque, Les Ports, Marseille - Vieux Port, Martigues, Fos sur Mer","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 551 toward L'Estaque/Les Ports.","modifier":"slight right","bearing_after":123,"bearing_before":121,"location":[5.289544,43.407202]},"speedLimitSign":"vienna","name":"","weight_typical":20.535,"duration_typical":15.543,"duration":15.543,"distance":409.892,"driving_side":"right","weight":20.535,"mode":"driving","ref":"A 551","geometry":"cujxqAoczaIjYev@xSqp@|Nsh@`Vw_AfCqLhEiSvEmTbC{K"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 8 miles.","announcement":"Continue for 8 miles.","distanceAlongGeometry":13395.794},{"ssmlAnnouncement":"In a quarter mile, Continue on Tunnel de la Joliette.","announcement":"In a quarter mile, Continue on Tunnel de la Joliette.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Continue on Tunnel de la Joliette for 1.5 miles.","announcement":"Continue on Tunnel de la Joliette for 1.5 miles.","distanceAlongGeometry":155.556}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[116,122,294],"duration":18.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":18,"geometry_index":12773,"location":[5.294013,43.40548]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.297802,43.402555],"geometry_index":12786,"admin_index":10,"weight":1.203,"is_urban":false,"turn_weight":1,"duration":0.211,"bearings":[163,332,340],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":2.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.609,"geometry_index":12787,"location":[5.297821,43.40251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,344],"duration":3.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.797,"geometry_index":12790,"location":[5.298054,43.401943]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":3.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.32,"geometry_index":12793,"location":[5.298227,43.401095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,182],"duration":9.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.926,"geometry_index":12796,"location":[5.298276,43.400311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":3.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.242,"geometry_index":12799,"location":[5.298172,43.398208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,355],"duration":14.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":13.777,"geometry_index":12802,"location":[5.298224,43.397442]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.299078,43.394225],"geometry_index":12807,"admin_index":10,"weight":31.176,"is_urban":false,"turn_weight":6,"duration":26.539,"bearings":[164,336,354],"out":0,"in":2,"turn_duration":0.038,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":0.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.355,"geometry_index":12816,"location":[5.303796,43.389098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,322],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.801,"geometry_index":12817,"location":[5.30387,43.389029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,321],"duration":12.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":11.758,"geometry_index":12818,"location":[5.304052,43.388867]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,302],"duration":9.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.359,"geometry_index":12822,"location":[5.307197,43.386794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,298],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.328,"geometry_index":12826,"location":[5.309892,43.385765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,304],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.086,"geometry_index":12828,"location":[5.310921,43.385303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,307],"duration":9.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.836,"geometry_index":12829,"location":[5.31124,43.38513]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,323],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.66,"geometry_index":12834,"location":[5.313459,43.383452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,331],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.582,"geometry_index":12836,"location":[5.314682,43.381933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,331],"duration":15.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":14.414,"geometry_index":12837,"location":[5.315132,43.381338]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,334],"duration":6.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.625,"geometry_index":12840,"location":[5.317443,43.378028]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":12.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.344,"geometry_index":12842,"location":[5.318383,43.376518]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":3.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.895,"geometry_index":12846,"location":[5.319701,43.373662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":3.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.5,"geometry_index":12848,"location":[5.320065,43.372745]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,279,339],"duration":10.785,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":11.031,"geometry_index":12851,"location":[5.320449,43.371954]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[124,312],"duration":10.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":10.84,"geometry_index":12858,"location":[5.32256,43.369881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[121,304],"duration":6.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":7.496,"geometry_index":12859,"location":[5.325427,43.368452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,300],"duration":30.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":33.305,"geometry_index":12861,"location":[5.327384,43.367612]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,285],"duration":1.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.785,"geometry_index":12877,"location":[5.336785,43.365816]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[114,130,290],"duration":0.93,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.059,"geometry_index":12878,"location":[5.337264,43.36569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,294],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.512,"geometry_index":12879,"location":[5.337538,43.365601]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,296],"duration":13.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":15.59,"geometry_index":12881,"location":[5.337917,43.365466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.82,"geometry_index":12892,"location":[5.34102,43.363299]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,330],"duration":3.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.906,"geometry_index":12893,"location":[5.341387,43.36283]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.341876,43.362169],"geometry_index":12894,"admin_index":10,"weight":0.738,"is_urban":true,"turn_weight":0.5,"duration":0.211,"bearings":[154,315,332],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,334],"duration":7.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.508,"geometry_index":12895,"location":[5.341904,43.362127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,332],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.609,"geometry_index":12897,"location":[5.342955,43.360656]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":3.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":4.184,"geometry_index":12898,"location":[5.343028,43.360553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":9.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":11.48,"geometry_index":12899,"location":[5.343533,43.359842]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,331],"duration":5.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":6.312,"geometry_index":12903,"location":[5.344933,43.357873]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[145,300,328],"duration":2.207,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.621,"geometry_index":12905,"location":[5.345796,43.356854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,325],"duration":8.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":9.902,"geometry_index":12906,"location":[5.346177,43.356459]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,327],"duration":2.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.41,"geometry_index":12908,"location":[5.347623,43.354955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,335],"duration":6.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":7.461,"geometry_index":12910,"location":[5.347893,43.354569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,355],"duration":11.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":13.672,"geometry_index":12914,"location":[5.348361,43.353259]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,219],"duration":12.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":14.875,"geometry_index":12924,"location":[5.347346,43.350835]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,197],"duration":3.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":4.48,"geometry_index":12932,"location":[5.345037,43.348522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,177],"duration":2.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":2.984,"geometry_index":12935,"location":[5.344846,43.347709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,354],"duration":1.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.656,"geometry_index":12938,"location":[5.344909,43.34715]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,347],"duration":2.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.395,"geometry_index":12940,"location":[5.345007,43.34685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":2.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.742,"geometry_index":12942,"location":[5.345208,43.346448]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[150,166,339],"duration":35.195,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":39.559,"geometry_index":12944,"location":[5.345452,43.345989]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,351],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.691,"geometry_index":12968,"location":[5.34849,43.338903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,349],"duration":9.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":10.637,"geometry_index":12969,"location":[5.348527,43.338769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,311],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.797,"geometry_index":12982,"location":[5.349946,43.337014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,309],"duration":2.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.074,"geometry_index":12983,"location":[5.350326,43.336794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,303],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.793,"geometry_index":12985,"location":[5.351006,43.336463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,300],"duration":14.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":15.98,"geometry_index":12986,"location":[5.351189,43.336385]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.354009,43.334221],"geometry_index":13003,"admin_index":10,"weight":13.684,"is_urban":true,"turn_weight":0.5,"duration":11.992,"bearings":[168,336,347],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[175,190,358],"duration":5.66,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":6.059,"geometry_index":13014,"location":[5.354161,43.331776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,342],"duration":7.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.039,"geometry_index":13019,"location":[5.354452,43.330731]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,322],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":4.547,"geometry_index":13025,"location":[5.355473,43.329492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,318],"duration":2.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.262,"geometry_index":13027,"location":[5.356217,43.328861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,318],"duration":7.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.023,"geometry_index":13028,"location":[5.356579,43.328571]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.357937,43.327575],"geometry_index":13032,"admin_index":10,"weight":4.574,"is_urban":true,"turn_weight":0.5,"duration":3.727,"bearings":[138,311,321],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,317],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.852,"geometry_index":13034,"location":[5.358539,43.327099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,310],"duration":43.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":48.602,"geometry_index":13035,"location":[5.358839,43.326914]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,188],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.406,"geometry_index":13060,"location":[5.364211,43.320837]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,194],"duration":20.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":23.488,"geometry_index":13061,"location":[5.364199,43.320777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.926,"geometry_index":13077,"location":[5.363933,43.31731]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":22.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":25.516,"geometry_index":13078,"location":[5.364032,43.317184]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.36606,43.313522],"geometry_index":13089,"admin_index":10,"weight":10.508,"is_urban":true,"turn_weight":2.5,"duration":6.973,"bearings":[156,328,336],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.366625,43.31255],"geometry_index":13091,"admin_index":10,"weight":11.031,"is_urban":true,"turn_weight":0.5,"duration":9.191,"bearings":[153,329,340],"out":0,"in":2,"turn_duration":0.033,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[181,355],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"geometry_index":13096,"location":[5.367136,43.311314]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Tunnel de la Joliette"}],"type":"turn","modifier":"straight","text":"Tunnel de la Joliette"},"distanceAlongGeometry":13432.461}],"destinations":"L'Estaque, Les Ports, Marseille Vieux Port","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 551 toward L'Estaque/Les Ports.","modifier":"slight left","bearing_after":116,"bearing_before":114,"location":[5.294013,43.40548]},"speedLimitSign":"vienna","name":"","weight_typical":618.258,"duration_typical":563.219,"duration":563.156,"distance":13432.461,"driving_side":"right","weight":618.191,"mode":"driving","ref":"A 551","geometry":"oigxqAyzbbIfHsXtE_PjG}RbH}QnNoZzOmWvOgUhNmPbSeSlQ{NdPkKpM_GrMgFxAe@`GsBpE}AxS_GpJkBxQkCrUaBbSwA~IOzPDtj@fAjR^jcAfBlREzPq@pIo@na@wFpiB_\\xZyGlRcEvKu@xGiBbYgKnc@oTh[cTjS}Pv{@e|@|s@g}@rx@g_A~[a^hCsCbIkJlg@il@~d@ev@hc@{~@xMe_@xNeg@rLoc@|Pio@|Omj@~Nae@zKgYxI}Rl\\mn@~Z_f@pSgWrRmSfFqF|VsT~eAyu@dd@c[pgAet@zbA{m@laAkk@rlAso@vOcIj^kQjo@cWbm@aRrs@yS|n@{QjH{BlQwFjTeJrHaDvSwK|MeJ|RuOxNoNxSmUnO}TxSm^hxAerDra@qnAzPwi@rPoh@rXm}@xJq^zIk`@j@eDxGs`@hCkTrBkVpAuSvAcj@tAcn@nCixAbBwo@nB{a@nC}ZpCiVzF}\\pDcPzCwLpB}HjHyVfJeX|KgYvLgVjPyWbNcR~MaOxK_KjSwPbAs@hDaCh\\}Uhh@q]rAw@lw@{f@nb@yXlEqClk@q^l\\gSnZ{QvZaRje@i\\h`@mZj]oYtWyVju@av@rf@ib@xHqFhMiHnSeKhVqHbReD|QiAxHWvKAnPr@vUlD~O~DvKfErUtLpPlLxNzM|A|AdPjRh`@zf@bd@fi@rMlNnJrHtJnFxNtGhBp@jMdEjOlC`Sh@rM_@|OiAjBShD{@lLgChK{DxKuElJ_EfPgHnRqNlV}O~ZyRdY{QnT_NrLaHziA}l@~LaGdL{ElKyDzIuCbM{C`J}A~LsAdMcAfMa@fMSzHOfLIrR[~PY|J]lJm@fRcCjGiA`Q}DpGwBbGeCxIqEvG}DnIsGxFcF`HaHvDqE|C}D|DmFbEoGfDaHvLwV`Oi_@rCeIzCmJvR}j@tGcRjGaPnGaOrEeIhE}HlGkIxD{DjHiIvCiDzCmCbBkAfCeBlH}ElGeCrGuCzHgAtDs@`FgAnEw@nF_@`Ik@`JDjH]tM[xL?re@d@l[a@tKq@~JeAjMwBnMkDvJiDbJgEbLwFlKgHlIeH~ImIhR}SfRsTdS{WbQsUhIkMfTu_@fR}WlJ{KnH}JfSuXpJwQ~FyLnPm_@xOyZ`Tu^bIwLpNoSlj@gq@h@o@xXoX|m@sn@lL{L|L}LxGeGrHqFfKyG~J}EdJaDtIkC~IiBvKoA~Ga@zNUhLb@vGv@rIpAvBVjEz@dMvD`LrE~SxJpSfJnNhFbLfC~JtAfI`@~LIzKm@tMkCzHwBxIuDtL_HtMmJzFeErPwLl\\wSbIiEfM}GzL}FxWkL|TsHnn@_S|SuHhRwI`HsDbf@mWrT{IrSiMpMsF~J}C|LiBbOw@pHCxHf@lPxBrb@bIhhAbT"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Take the exit toward Le Pharo.","announcement":"In a quarter mile, Take the exit toward Le Pharo.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the exit toward Le Pharo, Saint-Victor. Then Keep left toward Le Pharo / La Plage.","announcement":"Take the exit toward Le Pharo, Saint-Victor. Then Keep left toward Le Pharo / La Plage.","distanceAlongGeometry":122.222}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[12,191,197],"duration":6.461,"turn_weight":5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":12.242,"geometry_index":13101,"location":[5.366557,43.308982]},{"entry":[false,true],"in":0,"bearings":[11,193],"duration":15.074,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":16.961,"geometry_index":13102,"location":[5.366337,43.308158]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[13,192],"duration":109.473,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":128.156,"geometry_index":13103,"location":[5.365976,43.30698]},{"mapbox_streets_v8":{"class":"trunk"},"location":[5.364255,43.301101],"geometry_index":13106,"admin_index":10,"weight":37.934,"is_urban":true,"turn_weight":0.5,"duration":33.297,"bearings":[1,12,192],"out":2,"in":1,"turn_duration":0.021,"classes":["tunnel"],"entry":[false,false,true]},{"entry":[false,true],"in":0,"bearings":[12,195],"duration":0.918,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":6.031,"geometry_index":13107,"location":[5.363376,43.298092]},{"entry":[false,true,true],"in":0,"bearings":[15,190,197],"duration":8.289,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":9.297,"geometry_index":13108,"location":[5.363336,43.297982]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[18,196],"duration":42.23,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":52.508,"geometry_index":13111,"location":[5.363058,43.297103]},{"bearings":[162,342],"entry":[true,false],"in":1,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":0,"geometry_index":13126,"location":[5.365535,43.292158]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Le Pharo"},{"type":"text","text":"/"},{"type":"text","text":"Saint-Victor"}],"type":"off ramp","modifier":"right","text":"Le Pharo / Saint-Victor"},"distanceAlongGeometry":2020.298},{"sub":{"components":[{"type":"text","text":"Le Pharo / La Plage"}],"type":"fork","modifier":"left","text":"Le Pharo / La Plage"},"primary":{"components":[{"type":"text","text":"Le Pharo"},{"type":"text","text":"/"},{"type":"text","text":"Saint-Victor"}],"type":"off ramp","modifier":"right","text":"Le Pharo / Saint-Victor"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Continue on Tunnel de la Joliette.","modifier":"straight","bearing_after":191,"bearing_before":192,"location":[5.366557,43.308982]},"speedLimitSign":"vienna","name":"Tunnel de la Joliette","weight_typical":275.039,"duration_typical":221.883,"duration":221.883,"distance":2020.298,"driving_side":"right","weight":275.039,"mode":"driving","geometry":"kzjrqAyppfInr@vLrhApUjvChk@|xBtb@b}ApZ`{D|u@zEnAxQpCtRjDlOlFdOlElMdCfRdBdJGlOeAjScE|Q}FbKyE~QaMfXyTvlAshAtMmKbIsEtJiFrTmHz]eM"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left toward Le Pharo / La Plage. Then Keep left toward Aubagne.","announcement":"Keep left toward Le Pharo / La Plage. Then Keep left toward Aubagne.","distanceAlongGeometry":87.204}],"intersections":[{"bearings":[158,184,342],"entry":[true,true,false],"in":2,"turn_duration":0.03,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"geometry_index":13127,"location":[5.365762,43.291664]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Aubagne"},{"type":"text","text":"/"},{"type":"text","text":"Le Pharo"}],"type":"fork","modifier":"left","text":"Aubagne / Le Pharo"},"primary":{"components":[{"type":"text","text":"Le Pharo / La Plage"}],"type":"fork","modifier":"left","text":"Le Pharo / La Plage"},"distanceAlongGeometry":103.871}],"destinations":"Le Pharo, Saint-Victor","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit toward Le Pharo/Saint-Victor.","modifier":"slight right","bearing_after":184,"bearing_before":162,"location":[5.365762,43.291664]},"speedLimitSign":"vienna","name":"","weight_typical":17.551,"duration_typical":15.629,"duration":15.629,"distance":103.871,"driving_side":"right","weight":17.551,"mode":"driving","geometry":"_`iqqAc_ofIn@BhA?dCApDr@|B~@tCrBdBpB~BlEtAxEnDdX"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left toward Aubagne, Le Pharo.","announcement":"Keep left toward Aubagne, Le Pharo.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[73,224,279],"duration":0.383,"turn_duration":0.165,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":0.242,"geometry_index":13137,"location":[5.364973,43.291063]},{"entry":[false,true],"in":0,"bearings":[44,253],"duration":7.574,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":8.52,"geometry_index":13138,"location":[5.364945,43.291042]},{"entry":[false,true],"in":0,"bearings":[91,286],"duration":1.242,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":1.398,"geometry_index":13142,"location":[5.364214,43.290952]},{"bearings":[106,111,317],"entry":[false,false,true],"in":0,"turn_weight":0.75,"turn_duration":0.055,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":2,"geometry_index":13143,"location":[5.364093,43.290978]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Aubagne"},{"type":"text","text":"/"},{"type":"text","text":"Le Pharo"}],"type":"fork","modifier":"left","text":"Aubagne / Le Pharo"},"distanceAlongGeometry":114.374}],"destinations":"Le Pharo / La Plage","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Le Pharo / La Plage.","modifier":"slight left","bearing_after":224,"bearing_before":253,"location":[5.364973,43.291063]},"speedLimitSign":"vienna","name":"","weight_typical":14.148,"duration_typical":12.133,"duration":12.133,"distance":114.374,"driving_side":"right","weight":14.148,"mode":"driving","geometry":"mzgqqAymmfIh@v@dD~VZ|GD`EStEs@pF_A~B{AvBuBbB{B|@iBJgBI"},{"voiceInstructions":[{"ssmlAnnouncement":"In 800 feet, Bear right onto Boulevard Charles Livon.","announcement":"In 800 feet, Bear right onto Boulevard Charles Livon.","distanceAlongGeometry":240.222},{"ssmlAnnouncement":"Bear right onto Boulevard Charles Livon.","announcement":"Bear right onto Boulevard Charles Livon.","distanceAlongGeometry":53.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[9,23,170],"duration":0.312,"turn_duration":0.023,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":0.324,"geometry_index":13149,"location":[5.363887,43.291282]},{"entry":[true,false],"in":1,"bearings":[15,189],"duration":3.848,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":4.328,"geometry_index":13150,"location":[5.363894,43.291314]},{"entry":[true,false],"in":1,"bearings":[16,196],"duration":6.207,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":6.984,"geometry_index":13152,"location":[5.363994,43.291579]},{"entry":[false,true],"in":0,"bearings":[182,351],"duration":1.441,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":1.621,"geometry_index":13156,"location":[5.3641,43.292018]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[171,352],"duration":2.934,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":3.301,"geometry_index":13157,"location":[5.364077,43.292129]},{"entry":[false,true],"in":0,"bearings":[172,355],"duration":18.516,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":20.828,"geometry_index":13158,"location":[5.364039,43.292326]},{"entry":[true,false],"in":1,"bearings":[208,359],"duration":0.855,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":0.965,"geometry_index":13173,"location":[5.364639,43.292394]},{"entry":[false,false,true,false],"in":0,"bearings":[28,94,213,270],"duration":1.039,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":2,"weight":2.156,"geometry_index":13174,"location":[5.364608,43.292352]},{"entry":[false,false,true,false],"in":0,"bearings":[33,87,243,267],"duration":2.289,"turn_weight":1,"turn_duration":0.059,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":2,"weight":3.508,"geometry_index":13175,"location":[5.364568,43.292307]},{"bearings":[63,242],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"geometry_index":13176,"location":[5.364421,43.292252]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Boulevard Charles Livon"}],"type":"turn","modifier":"slight right","text":"Boulevard Charles Livon"},"distanceAlongGeometry":256.889}],"destinations":"Aubagne, Le Pharo","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Aubagne/Le Pharo.","modifier":"slight left","bearing_after":9,"bearing_before":350,"location":[5.363887,43.291282]},"speedLimitSign":"vienna","name":"","weight_typical":45.172,"duration_typical":38.469,"duration":38.469,"distance":256.889,"driving_side":"right","weight":45.172,"mode":"driving","geometry":"chhqqA}ikfI_AMeD{@kJkCgN}DmBa@oCKgCV}El@iKjAsC`@iDVmB[gB}@iByB}@eCi@mDI_DXoDz@aDdAmC`B}AdCq@nBIrBv@rA|@xAnAlBdHn@zB"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left onto Rue Charras.","announcement":"In a quarter mile, Turn left onto Rue Charras.","distanceAlongGeometry":568.749},{"ssmlAnnouncement":"Turn left onto Rue Charras.","announcement":"Turn left onto Rue Charras.","distanceAlongGeometry":125}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[62,87,269],"duration":5.66,"turn_weight":11.75,"turn_duration":0.042,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":10,"out":2,"weight":18.066,"geometry_index":13177,"location":[5.364359,43.292228]},{"entry":[false,false,true],"in":0,"bearings":[89,241,269],"duration":1.625,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":10,"out":2,"weight":2.324,"geometry_index":13179,"location":[5.363878,43.292221]},{"entry":[true,false,true],"in":1,"bearings":[4,89,272],"duration":6.352,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":7.637,"geometry_index":13180,"location":[5.363765,43.29222]},{"entry":[false,false,true],"in":0,"bearings":[92,218,271],"duration":2.719,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":4.039,"geometry_index":13181,"location":[5.363306,43.292233]},{"entry":[false,true,true],"in":0,"bearings":[91,271,359],"duration":0.82,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":0.898,"geometry_index":13182,"location":[5.363152,43.292235]},{"entry":[false,true,false,true],"in":0,"bearings":[91,111,175,271],"duration":0.879,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":3,"weight":1.965,"geometry_index":13183,"location":[5.363097,43.292236]},{"entry":[false,false,false,true],"in":1,"bearings":[0,91,182,270],"duration":12.191,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":3,"weight":13.387,"geometry_index":13184,"location":[5.363038,43.292237]},{"entry":[false,true,true],"in":0,"bearings":[91,270,353],"duration":12.066,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":13.25,"geometry_index":13186,"location":[5.362156,43.292245]},{"entry":[false,true,true],"in":0,"bearings":[91,266,346],"duration":9.684,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":10.379,"geometry_index":13190,"location":[5.361082,43.292252]},{"entry":[false,true,true],"in":0,"bearings":[82,262,336],"duration":11.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":12.629,"geometry_index":13192,"location":[5.360362,43.292192]},{"entry":[false,false,false,true,false],"in":0,"bearings":[82,172,238,262,351],"duration":3.094,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":3,"weight":4.316,"geometry_index":13195,"location":[5.359602,43.292113]},{"entry":[false,true,true],"in":0,"bearings":[82,148,263],"duration":4.176,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":4.48,"geometry_index":13196,"location":[5.359384,43.29209]},{"entry":[false,false,true],"in":0,"bearings":[83,170,262],"duration":2.293,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":2.445,"geometry_index":13199,"location":[5.359114,43.292065]},{"entry":[true,false,true,true,false],"in":1,"bearings":[17,82,170,262,334],"duration":9.859,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":10,"out":3,"weight":12.344,"geometry_index":13200,"location":[5.358963,43.29205]},{"entry":[false,true,true],"in":0,"bearings":[83,262,351],"duration":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":10,"out":1,"weight":2.078,"geometry_index":13203,"location":[5.358327,43.291987]},{"bearings":[82,263,349],"entry":[false,true,true],"in":0,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13204,"location":[5.358193,43.291973]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue Charras"}],"type":"turn","modifier":"left","text":"Rue Charras"},"distanceAlongGeometry":585.416}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Boulevard Charles Livon.","modifier":"slight right","bearing_after":269,"bearing_before":242,"location":[5.364359,43.292228]},"speedLimitSign":"vienna","name":"Boulevard Charles Livon","weight_typical":126.949,"duration_typical":101.094,"duration":101.094,"distance":585.416,"driving_side":"right","weight":126.949,"mode":"driving","geometry":"gcjqqAmglfI@lCJrX@`FYt[CrHAlBAtB@fAQzs@AzL?hIEt^EfJJxIjBda@LvCxBjc@TjEl@rLTtFRpEFrA\\lHZrFD~@zAb]ZjG|D~~@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":839.1},{"ssmlAnnouncement":"In a quarter mile, Turn left onto Rue du Vallon des Auffes.","announcement":"In a quarter mile, Turn left onto Rue du Vallon des Auffes.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left onto Rue du Vallon des Auffes. Then, in 100 feet, Turn right onto Rue d'Endoume.","announcement":"Turn left onto Rue du Vallon des Auffes. Then, in 100 feet, Turn right onto Rue d'Endoume.","distanceAlongGeometry":78.333}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[83,173,263],"duration":17.898,"turn_weight":7.5,"turn_duration":5.395,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":20.629,"geometry_index":13205,"location":[5.357169,43.291878]},{"entry":[true,true,false,false],"in":3,"bearings":[83,173,263,353],"duration":12.809,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":15.441,"geometry_index":13208,"location":[5.357267,43.291292]},{"entry":[false,true,true,false],"in":3,"bearings":[84,172,265,354],"duration":13.938,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":16.617,"geometry_index":13211,"location":[5.357356,43.290723]},{"entry":[true,true,false,false],"in":3,"bearings":[83,174,258,353],"duration":15.008,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":17.75,"geometry_index":13213,"location":[5.357453,43.290211]},{"entry":[true,true,true,false],"in":3,"bearings":[82,174,231,354],"duration":6.906,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.246,"geometry_index":13214,"location":[5.357554,43.289545]},{"entry":[true,true,true,false],"in":3,"bearings":[125,170,303,355],"duration":1.824,"turn_weight":3,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":4.891,"geometry_index":13217,"location":[5.357581,43.289335]},{"entry":[false,true,false,false],"in":3,"bearings":[122,173,303,350],"duration":0.906,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":2.945,"geometry_index":13218,"location":[5.357602,43.289249]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":12.238,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":13.852,"geometry_index":13219,"location":[5.35761,43.289202]},{"entry":[true,false,false],"in":2,"bearings":[173,265,353],"duration":1.988,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":3.078,"geometry_index":13220,"location":[5.357716,43.288599]},{"entry":[false,true,false,false],"in":3,"bearings":[82,173,260,353],"duration":2.348,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":4.457,"geometry_index":13221,"location":[5.357733,43.288502]},{"entry":[true,true,false,false],"in":3,"bearings":[77,166,258,353],"duration":2.281,"turn_weight":5.5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":7.863,"geometry_index":13222,"location":[5.357753,43.288389]},{"entry":[true,false,false],"in":2,"bearings":[165,267,346],"duration":12.844,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":14.465,"geometry_index":13223,"location":[5.357784,43.288301]},{"entry":[false,true,false],"in":2,"bearings":[72,166,345],"duration":8.105,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.504,"geometry_index":13224,"location":[5.357962,43.287803]},{"entry":[true,true,true,false],"in":3,"bearings":[75,166,239,346],"duration":10.086,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":12.586,"geometry_index":13225,"location":[5.358067,43.287489]},{"entry":[false,true,false],"in":2,"bearings":[63,166,346],"duration":8.285,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.695,"geometry_index":13226,"location":[5.358235,43.286998]},{"entry":[true,true,false],"in":2,"bearings":[166,255,346],"duration":2.281,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":3.387,"geometry_index":13227,"location":[5.358376,43.286594]},{"entry":[false,true,false],"in":2,"bearings":[68,164,346],"duration":25.41,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":27.66,"geometry_index":13228,"location":[5.358411,43.28649]},{"entry":[false,false,true],"in":0,"bearings":[15,56,196],"duration":8.914,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"weight":10.352,"geometry_index":13231,"location":[5.357891,43.285464]},{"entry":[false,true,false],"in":0,"bearings":[13,168,275],"duration":10.352,"turn_weight":1.5,"turn_duration":0.122,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":12.242,"geometry_index":13233,"location":[5.357737,43.285054]},{"bearings":[115,172,294,347],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.01,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13237,"location":[5.357914,43.284592]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue du Vallon des Auffes"}],"type":"turn","modifier":"left","text":"Rue du Vallon des Auffes"},"distanceAlongGeometry":850.767},{"sub":{"components":[{"type":"text","text":"Rue d'Endoume"}],"type":"turn","modifier":"right","text":"Rue d'Endoume"},"primary":{"components":[{"type":"text","text":"Rue du Vallon des Auffes"}],"type":"turn","modifier":"left","text":"Rue du Vallon des Auffes"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rue Charras.","modifier":"left","bearing_after":173,"bearing_before":263,"location":[5.357169,43.291878]},"speedLimitSign":"vienna","name":"Rue Charras","weight_typical":220.055,"duration_typical":175.758,"duration":175.758,"distance":850.767,"driving_side":"right","weight":220.055,"mode":"driving","geometry":"kmiqqAaf~eItCYfZoCtCYzD]dX}BnCUlZmDpCSrh@iEvEa@`AEhCMjDi@|AOtd@sE`Ea@`Fg@nD}@b^cJrRqEt]oIfXyGnEeApRsFxYx`@vPhEvUdHzALhD]dLmEjBu@~E_AvBU"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Rue d'Endoume. Then, in 300 feet, Turn left onto Rue du Docteur Frédéric Granier.","announcement":"Turn right onto Rue d'Endoume. Then, in 300 feet, Turn left onto Rue du Docteur Frédéric Granier.","distanceAlongGeometry":34.963}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[113,291,352],"duration":2.387,"turn_weight":10,"turn_duration":1.407,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":11.031,"geometry_index":13238,"location":[5.357925,43.284532]},{"entry":[false,true,false,false],"in":3,"bearings":[28,122,206,293],"duration":3.941,"turn_weight":2,"turn_duration":0.013,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":6.125,"geometry_index":13239,"location":[5.357963,43.28452]},{"entry":[true,true,false],"in":2,"bearings":[150,237,302],"duration":4.363,"turn_weight":1.5,"turn_duration":0.045,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":6.035,"geometry_index":13241,"location":[5.358086,43.284465]},{"bearings":[63,151,244,330],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13242,"location":[5.358161,43.28437]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Rue du Docteur Frédéric Granier"}],"type":"turn","modifier":"left","text":"Rue du Docteur Frédéric Granier"},"primary":{"components":[{"type":"text","text":"Rue d'Endoume"}],"type":"turn","modifier":"right","text":"Rue d'Endoume"},"distanceAlongGeometry":34.963}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn left onto Rue du Vallon des Auffes.","modifier":"left","bearing_after":113,"bearing_before":172,"location":[5.357925,43.284532]},"speedLimitSign":"vienna","name":"Rue du Vallon des Auffes","weight_typical":27.836,"duration_typical":13.219,"duration":13.219,"distance":34.963,"driving_side":"right","weight":27.836,"mode":"driving","geometry":"gb{pqAiu_fIVkAr@oDx@eA|DuCrByA"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Rue du Docteur Frédéric Granier.","announcement":"Turn left onto Rue du Docteur Frédéric Granier.","distanceAlongGeometry":60}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[61,239,331],"duration":7.309,"turn_weight":7,"turn_duration":1.908,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":12.672,"geometry_index":13243,"location":[5.358206,43.284312]},{"bearings":[58,166,241],"entry":[false,true,true],"in":0,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"geometry_index":13246,"location":[5.357885,43.284171]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue du Docteur Frédéric Granier"}],"type":"turn","modifier":"left","text":"Rue du Docteur Frédéric Granier"},"distanceAlongGeometry":83.862}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Rue d'Endoume.","modifier":"right","bearing_after":239,"bearing_before":151,"location":[5.358206,43.284312]},"speedLimitSign":"vienna","name":"Rue d'Endoume","weight_typical":21.82,"duration_typical":15.266,"duration":15.266,"distance":83.862,"driving_side":"right","weight":21.82,"mode":"driving","geometry":"otzpqA{f`fIxAtEvCpIf@xAvJv[h@`Bv@`C"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, Bear left onto Traverse Beaulieu.","announcement":"In 900 feet, Bear left onto Traverse Beaulieu.","distanceAlongGeometry":271.143},{"ssmlAnnouncement":"Bear left onto Traverse Beaulieu. Then, in 400 feet, Turn right onto Boulevard Bompard.","announcement":"Bear left onto Traverse Beaulieu. Then, in 400 feet, Turn right onto Boulevard Bompard.","distanceAlongGeometry":79.722}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[60,151,255],"duration":16.871,"turn_weight":10,"turn_duration":5.395,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":21.762,"geometry_index":13249,"location":[5.357311,43.283934]},{"entry":[true,true,false],"in":2,"bearings":[69,150,327],"duration":8.41,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.609,"geometry_index":13253,"location":[5.357631,43.283536]},{"entry":[true,true,false],"in":2,"bearings":[149,259,332],"duration":3.879,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":4.953,"geometry_index":13257,"location":[5.357875,43.283202]},{"entry":[false,true,false],"in":2,"bearings":[80,148,329],"duration":6.02,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":7.148,"geometry_index":13258,"location":[5.357969,43.283086]},{"entry":[true,true,false],"in":2,"bearings":[157,262,339],"duration":22.891,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":24.441,"geometry_index":13260,"location":[5.358106,43.282895]},{"entry":[true,true,false],"in":2,"bearings":[160,284,340],"duration":3.406,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":4.559,"geometry_index":13268,"location":[5.358707,43.282035]},{"bearings":[86,163,340],"entry":[true,true,false],"in":2,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13269,"location":[5.358773,43.281901]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"right","text":"Boulevard Bompard"},"primary":{"components":[{"type":"text","text":"Traverse Beaulieu"}],"type":"turn","modifier":"slight left","text":"Traverse Beaulieu"},"distanceAlongGeometry":282.809}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rue du Docteur Frédéric Granier.","modifier":"left","bearing_after":151,"bearing_before":240,"location":[5.357311,43.283934]},"speedLimitSign":"vienna","name":"Rue du Docteur Frédéric Granier","weight_typical":79.613,"duration_typical":67.336,"duration":67.336,"distance":282.809,"driving_side":"right","weight":79.613,"mode":"driving","geometry":"{|ypqA}n~eIbCsBzBkAtCiBdKuI`CsBtGqDfEyCz@g@fF{D|@eB~HkDlDiBxCkArC{BzDsDbEuDvBuBjIwEvKgEjGcCnJuC`A}@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Boulevard Bompard.","announcement":"Turn right onto Boulevard Bompard.","distanceAlongGeometry":58.333}],"intersections":[{"entry":[true,true,true,false],"in":3,"bearings":[123,215,262,338],"duration":16.48,"turn_weight":6.5,"turn_duration":0.28,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":23.512,"geometry_index":13271,"location":[5.358879,43.281684]},{"bearings":[119,222,300],"entry":[true,true,false],"in":2,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":13274,"location":[5.359619,43.281329]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"right","text":"Boulevard Bompard"},"distanceAlongGeometry":118.036}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left onto Traverse Beaulieu.","modifier":"slight left","bearing_after":123,"bearing_before":158,"location":[5.358879,43.281684]},"speedLimitSign":"vienna","name":"Traverse Beaulieu","weight_typical":34.172,"duration_typical":25.688,"duration":25.688,"distance":118.036,"driving_side":"right","weight":34.172,"mode":"driving","geometry":"gpupqA}pafIdN{^`AuA|CuJ~CgKdBoHNgDMuD"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Turn right onto Rue Berle.","announcement":"In 600 feet, Turn right onto Rue Berle.","distanceAlongGeometry":173.067},{"ssmlAnnouncement":"Turn right onto Rue Berle. Then Your destination will be on the right.","announcement":"Turn right onto Rue Berle. Then Your destination will be on the right.","distanceAlongGeometry":76.806}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[0,142,272],"duration":2.25,"turn_weight":7,"turn_duration":0.194,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.16,"geometry_index":13278,"location":[5.360142,43.281197]},{"entry":[true,true,false],"in":2,"bearings":[132,221,322],"duration":4.719,"turn_weight":1,"turn_duration":0.038,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":5.914,"geometry_index":13280,"location":[5.360231,43.281113]},{"entry":[true,true,false],"in":2,"bearings":[146,221,312],"duration":18.863,"turn_weight":1.5,"turn_duration":0.017,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":21.289,"geometry_index":13281,"location":[5.360467,43.280959]},{"entry":[false,true,false],"in":2,"bearings":[65,201,353],"duration":6.164,"turn_weight":1.5,"turn_duration":0.045,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":7.926,"geometry_index":13288,"location":[5.360898,43.280238]},{"entry":[false,true,true],"in":0,"bearings":[21,110,206],"duration":9.91,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"weight":11.395,"geometry_index":13289,"location":[5.360823,43.280093]},{"bearings":[26,145,212],"entry":[false,false,true],"in":0,"turn_weight":1,"turn_duration":0.012,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"geometry_index":13290,"location":[5.360643,43.279828]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue Berle"}],"type":"turn","modifier":"right","text":"Rue Berle"},"distanceAlongGeometry":184.734}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Boulevard Bompard.","modifier":"right","bearing_after":142,"bearing_before":92,"location":[5.360142,43.281197]},"speedLimitSign":"vienna","name":"Boulevard Bompard","weight_typical":59.203,"duration_typical":44.316,"duration":44.316,"distance":184.734,"driving_side":"right","weight":59.203,"mode":"driving","geometry":"yqtpqA{_dfInAw@vAyBrHwMtA{AbIsG`BgAhI_EnEeCzEwAnDG`HtCpOfJzBjB"},{"voiceInstructions":[{"ssmlAnnouncement":"Your destination is on the right.","announcement":"Your destination is on the right.","distanceAlongGeometry":48.611}],"intersections":[{"bearings":[32,203,313],"entry":[false,true,true],"in":0,"turn_weight":7,"turn_duration":3.373,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"geometry_index":13291,"location":[5.360589,43.279766]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Your destination will be on the right"}],"type":"arrive","modifier":"right","text":"Your destination will be on the right"},"distanceAlongGeometry":63.192},{"primary":{"components":[{"type":"text","text":"Your destination is on the right"}],"type":"arrive","modifier":"right","text":"Your destination is on the right"},"distanceAlongGeometry":48.611}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Rue Berle.","modifier":"right","bearing_after":313,"bearing_before":212,"location":[5.360589,43.279766]},"speedLimitSign":"vienna","name":"Rue Berle","weight_typical":20.27,"duration_typical":16.012,"duration":16.012,"distance":63.192,"driving_side":"right","weight":20.27,"mode":"driving","geometry":"kxqpqAy{dfIkAtBkPtWEjATp@zAlB"},{"voiceInstructions":[],"intersections":[{"bearings":[70],"entry":[true],"in":0,"admin_index":10,"geometry_index":13296,"location":[5.360017,43.280028]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"Your destination is on the right.","modifier":"right","bearing_after":0,"bearing_before":250,"location":[5.360017,43.280028]},"speedLimitSign":"vienna","name":"Rue Berle","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"whrpqAaxcfI??"}],"weight":47591.645,"duration":43945.426,"duration_typical":43895.789,"weight_typical":42688.023,"annotation":{"maxspeed":[{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,9,9,9,9,9,9,9,1,1,1,1,1,1,1,null,4,4,0,0,0,0,0,0,0,0,0,null,null,1,1,1,1,1,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,17,17,17,null,null,0,0,0,0,0,0,0,1,1,1,1,1,null,null,null,null,14,14,14,14,14,14,14,14,14,12,null,14,null,null,4,14,14,null,null,null,null,null,null,9,null,17,null,27,0,0,0,0,0,0,0,0,8,8,8,0,0,null,null,null,1,1,1,1,1,1,1,0,0,0,0,30,30,null,null,null,null,null,null,null,null,null,null,null,null,14,25,25,25,25,25,6,6,6,3,4,4,4,null,6,17,17,17,27,27,27,43,77,77,77,77,8,8,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,8,8,null,8,8,8,8,8,null,null,null,null,null,null,null,null,3,3,3,3,3,null,null,null,0,0,0,0,0,0,0,0,0,0,33,33,20,20,30,35,27,33,33,null,null,null,null,null,null,null,null,null,null,null,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,0,0,11,11,20,20,20,20,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,6,6,6,14,6,14,14,14,14,14,14,14,14,20,20,20,24,24,24,24,22,22,null,25,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,14,14,14,14,14,17,14,14,14,17,17,17,17,17,17,17,17,20,24,24,24,24,24,24,24,24,24,24,24,null,null,16,16,25,30,30,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,22,14,14,14,14,14,14,14,14,14,14,14,14,24,24,24,24,56,56,50,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,11,11,11,11,11,11,11,11,11,11,11,11,11,22,11,11,11,11,11,11,11,11,11,11,17,25,25,25,25,25,25,25,25,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,25,25,25,6,11,11,11,11,11,11,11,11,11,11,14,14,14,14,14,14,14,null,11,11,11,11,11,14,14,14,14,14,14,14,35,35,35,35,35,35,35,35,35,35,30,30,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,14,14,14,14,22,25,25,17,17,17,17,17,17,17,17,17,20,17,17,17,14,14,14,14,14,22,0,6,6,11,11,6,6,6,6,6,6,6,6,6,6,0,6,17,17,6,6,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,0,null,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,14,14,11,11,11,11,11,null,11,null,11,11,11,11,11,11,11,11,11,22,17,17,17,17,17,17,17,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,24,24,24,24,24,24,33,25,25,25,38,33,33,33,33,33,33,33,33,25,null,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,37,37,37,20,20,20,30,30,38,38,38,38,38,38,38,38,38,38,38,38,38,38,40,40,40,40,40,40,40,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,40,40,45,40,40,40,40,40,40,40,40,40,46,46,20,54,54,54,53,53,51,51,51,51,51,37,25,35,35,35,35,35,35,38,22,38,38,51,51,51,51,51,51,51,51,51,51,72,16,50,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,72,72,41,41,19,19,19,19,19,19,19,19,19,19,48,48,48,48,48,48,48,35,35,35,35,35,19,19,67,67,67,67,67,67,67,12,19,19,19,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,70,70,56,56,56,56,56,16,19,19,19,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,12,59,59,59,59,59,58,56,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,32,32,32,32,32,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,38,40,41,38,41,41,41,41,41,41,41,41,40,40,40,40,40,40,40,40,40,40,40,41,41,41,41,41,41,38,38,38,38,35,33,38,38,29,38,38,38,38,38,38,40,40,40,40,40,38,38,38,38,38,38,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,75,75,82,82,82,82,82,82,82,82,82,82,82,82,58,58,58,58,58,58,58,58,58,58,40,40,40,40,40,43,43,43,43,43,41,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,null,46,46,70,70,35,32,30,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,24,24,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,24,24,24,24,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,11,11,38,38,38,38,35,32,32,32,32,32,32,32,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,33,33,33,33,20,20,6,0,0,0,0,17,17,17,17,17,17,17,17,17,17,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,25,46,53,53,53,53,53,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,46,46,46,85,85,85,85,85,85,85,85,85,85,85,85,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,70,70,70,70,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,41,41,41,41,41,41,41,41,41,41,30,30,30,30,30,30,30,30,30,38,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,37,37,37,37,37,37,37,41,41,41,41,41,41,41,41,37,37,37,37,41,41,41,41,37,37,37,37,37,37,37,37,37,41,41,41,41,41,41,41,41,41,41,43,43,43,43,43,43,43,41,41,41,41,41,41,41,41,41,41,41,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,59,62,62,62,62,62,null,0,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,20,20,20,20,20,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,20,20,6,59,59,59,0,12,12,12,6,6,6,6,null,12,null,12,6,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,11,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,null,41,41,41,41,41,41,41,41,41,46,46,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,33,33,33,33,33,33,33,33,33,33,33,30,30,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,58,58,58,58,58,30,30,30,30,0,50,50,45,45,45,45,45,45,45,45,45,45,45,45,45,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,43,43,43,50,50,50,50,40,40,40,40,43,46,46,46,46,16,16,16,16,16,0,8,0,0,0,0,0,8,12,12,12,12,12,12,12,12,null,46,46,46,46,46,46,46,46,46,46,46,46,46,33,null,41,41,43,46,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,54,54,54,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,32,32,32,32,32,32,32,32,30,30,74,75,0,0,0,0,0,0,56,56,56,0,38,38,38,38,38,38,38,38,38,null,null,null,null,0,0,0,0,0,0,0,0,16,16,16,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,null,0,0,8,8,null,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6,6,6,6,19,19,19,19,19,19,19,19,0,0,0,0,20,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,null,8,19,19,41,41,41,41,41,41,43,43,43,43,43,43,43,null,30,null,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,null,45,45,45,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,11,11,11,11,null,17,17,17,0,0,0,0,0,0,0,0,0,0,null,null,null,null,54,54,54,54,54,54,54,54,54,54,50,50,50,50,50,50,50,50,50,50,50,50,50,50,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,38,38,38,38,38,38,38,35,35,35,35,35,35,35,43,43,43,43,43,43,43,43,38,38,38,38,38,35,35,33,33,33,33,33,38,38,38,38,38,38,38,38,null,43,27,27,27,27,27,27,27,27,27,27,27,27,27,32,25,25,29,29,29,29,null,null,37,37,37,37,37,37,37,37,37,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,22,22,22,22,22,22,22,22,22,22,null,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,51,51,51,51,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,null,null,0,0,0,0,null,null,null,1,9,9,9,9,9,null,9,9,9,9,9,9,9,9,9,6,6,null,null,null,null,null,null,null,null,null,9,9,9,9,9,9,9,null,33,33,33,null,16,16,null,null,null,null,null,null,null,null,null,null,null,9,9,8,8,null,null,null,null,null,0,0,0,0,null,6,6,6,3,3,3,null,null,null,null,0,0,0,null,null,null,3,3,3,3,3,3,3,3,27,27,27,27,27,null,null,38,null,17,17,17,17,16,16,16,16,null,null,null,50,50,50,50,null,null,17,17,37,50,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,14,14,50,50,50,30,30,null,29,9,9,9,0,null,14,17,17,41,null,null,8,null,20,20,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,8,8,8,8,8,null,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,22,0,0,null,null,null,17,17,17,12,12,12,12,12,12,12,12,12,12,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,null,null,8,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,null,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,null,0,0,0,0,0,null,null,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,0,0,null,0,0,0,null,null,null,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,54,54,54,54,54,54,54,12,12,12,12,12,22,22,22,22,22,22,22,22,22,22,22,25,25,25,25,25,25,25,25,25,null,null,27,27,27,27,27,27,27,8,24,24,24,24,null,12,12,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,9,9,9,24,24,24,24,24,24,24,24,24,24,24,24,24,24,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,41,41,41,41,41,41,41,41,41,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,null,0,0,0,0,0,0,0,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,37,37,37,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,37,37,37,37,37,37,40,40,40,40,40,40,40,40,38,38,38,38,38,41,41,41,41,41,41,41,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,null,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,null,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,30,30,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,null,38,37,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,22,30,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,6,6,6,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,43,43,43,43,43,43,43,43,43,43,43,43,43,46,46,46,46,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,19,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,null,6,6,6,6,6,6,6,6,6,6,6,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,null,64,70,70,70,70,70,70,70,83,83,83,83,83,80,80,80,74,74,74,62,62,62,62,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,37,37,37,37,37,37,37,37,37,56,56,56,56,56,56,null,null,null,30,30,30,30,30,30,30,14,1,1,1,1,1,1,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,41,41,41,41,41,41,41,51,0,0,0,1,1,0,1,1,1,1,1,null,3,3,1,1,1,1,1,1,19,19,19,19,19,19,19,19,19,19,19,14,14,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,6,30,30,30,30,30,30,30,30,30,30,30,30,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,8,14,14,14,14,14,14,14,14,14,14,14,14,14,14,20,20,20,20,20,20,20,20,20,20,43,43,43,43,43,43,43,43,43,35,35,35,35,35,35,35,35,12,12,12,12,12,12,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,20,20,20,20,20,20,20,20,20,20,20,20,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,45,45,45,45,41,41,41,41,32,32,32,32,32,35,35,35,35,35,35,33,35,35,35,35,35,35,35,35,35,35,35,35,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,17,17,17,17,17,17,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,41,41,41,41,41,41,41,41,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,35,35,35,35,35,32,32,32,32,32,32,32,27,27,33,33,33,33,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,30,30,30,30,30,4,4,4,4,38,38,38,38,38,45,45,45,45,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,null,null,40,40,40,40,0,0,0,0,0,0,0,43,43,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,20,20,20,20,20,20,20,20,50,50,50,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,40,40,40,40,40,33,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,46,46,46,46,46,46,46,46,46,46,43,43,43,43,43,45,45,45,43,43,43,43,43,43,27,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,43,43,43,43,43,43,43,43,43,43,null,null,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,56,56,56,56,56,56,56,56,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,20,27,27,27,27,27,27,27,27,27,27,27,27,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,22,22,22,22,22,22,22,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,null,25,25,25,25,25,25,25,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,27,27,27,27,22,22,22,22,22,22,22,22,22,25,25,25,25,25,null,32,35,35,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,37,35,35,35,35,35,35,35,35,35,35,35,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,67,67,67,67,67,67,67,67,67,67,67,67,67,67,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,35,35,35,35,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,22,22,22,22,22,22,22,22,22,22,22,22,35,19,19,19,19,19,19,19,19,19,19,19,19,19,12,29,29,29,29,29,29,29,29,29,29,29,29,29,19,19,19,19,19,19,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,6,0,0,0,null,32,32,32,32,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,48,48,48,48,48,48,48,48,48,48,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,14,14,14,14,14,14,14,14,14,14,0,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,22,null,14,14,14,11,38,38,38,38,38,38,38,56,56,56,56,56,56,37,37,37,37,37,37,37,37,null,11,11,null,11,11,11,11,11,11,11,11,30,30,25,25,25,25,25,25,25,25,25,25,25,25,25,null,38,38,38,38,38,38,22,22,22,22,30,20,20,20,20,20,20,20,20,20,20,20,20,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,19,19,19,19,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,38,38,38,38,38,38,38,25,25,25,25,25,25,25,25,25,25,null,6,0,0,0,0,null,19,19,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,25,25,25,25,25,25,25,25,25,25,25,null,25,20,20,20,20,20,27,27,27,27,27,27,38,38,50,50,50,50,50,50,50,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,11,11,11,11,11,11,11,35,35,35,35,35,35,35,35,35,51,46,46,46,46,46,46,46,46,11,20,20,20,35,41,41,41,41,41,41,41,41,41,41,41,41,56,null,0,0,null,null,27,27,27,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,27,27,27,27,27,27,27,38,38,38,38,38,38,33,null,53,53,53,43,43,43,43,43,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,20,20,20,20,27,27,27,27,27,8,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,16,16,16,16,16,24,24,24,24,24,24,24,24,24,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,20,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,8,8,0,0,null,null,null,null,null,null,0,0,0,null,null,8,8,8,8,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,25,25,25,20,20,20,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,35,35,35,35,35,35,35,35,35,35,35,null,null,null,null,null,32,32,32,32,32,32,41,41,41,40,40,40,40,35,35,35,35,35,35,35,35,35,35,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,38,38,37,37,37,37,37,37,37,37,37,37,77,35,0,0,0,0,20,3,3,3,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,20,20,20,20,9,9,null,null,null,0,12,12,12,12,6,6,6,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"speed":[8.3,8.3,2.8,1.9,1.9,2.2,2.2,8.8,9,8.5,8.9,8.9,9.6,8.3,8.3,8.3,8.4,8.4,3,3,1.7,1.8,1.8,2.1,8.2,8.4,8.3,8.3,8.3,8.3,8.3,8.3,8.3,8.3,8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,14,14,14,14,14,14,14,7.5,9.6,9.6,13.4,13.6,13.6,13.6,13.6,13.6,13.6,13.7,14.5,9.4,10.4,12,11.7,11.7,11.7,11.7,11.7,4.4,4.4,4.4,4.4,4.5,4.5,3,3,3.3,4.8,4.8,4.4,4.4,4.4,4.4,4.4,4.2,4.1,4.1,4.2,13.8,13.8,13.9,13.9,13,14.1,8,8,7.1,4.9,5,4.2,4.2,4.2,4.3,4,7.8,7.8,7.5,7.5,7.5,7.5,7.5,11.9,11.9,5.3,5.3,8.3,8.3,8.3,8.3,8.7,8.4,8.4,8.4,8.4,9.8,10.7,8.6,10.3,11.6,11.5,9.1,9.1,12.1,12.3,12.3,11.9,11.3,12.9,11.4,12.2,9.2,12.5,5.8,4.7,4.7,4.7,4.6,4.6,4.6,4.5,4.5,7.2,6.2,6.7,2.7,2.7,5.1,4.5,7.9,8.7,9.4,8.6,8.6,8.6,7.7,8.6,8.2,8.4,9.1,8.8,7.8,7.8,10.1,10.1,9.4,9.4,5.8,5.8,5.6,5.7,12.4,12.7,12.8,12.8,10.5,6.2,6.1,6.1,6.1,6,12.6,12,12.2,13.3,12.3,12.3,12.3,13.3,11.9,9.2,9.2,9.2,7,6.7,7.2,4.8,2.2,2.2,2.3,2.3,10.8,10.8,10,3.6,3.6,3.6,3.7,3.7,3.6,3.5,10,10,10,10,10,10,10,10,13.6,13.6,16.4,18,19.2,19.2,20.2,20.2,20.2,20.2,20.2,20.2,20.6,20.6,19.5,19.5,19.5,19.5,23.3,23.2,23.6,23.3,22.9,22.2,22.2,22.2,22.1,22,9.4,9.4,9.5,10,10,10,10,10,13.9,13.9,13.9,13.9,13.9,17.2,17.2,17.2,18.4,18.4,18.4,18.4,18.3,18.3,18.3,18.2,18.2,18.2,25.6,24.9,26.6,26.6,25.8,24.7,25.3,25.5,25.6,24.7,24.7,24.1,23.5,24.1,24.1,24.1,24.1,24,24,24,23.2,23.2,23,21.7,21.7,21.2,21.2,21.2,21.2,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.9,26.9,26.9,26.9,26.9,26.9,27.8,27.6,26.6,26.6,26.7,26.6,26.7,26.7,26.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,27.2,27.2,27.2,26.7,27.2,27.2,27.8,27,27,27,27,27,27,27,27,27,26.7,26.7,26.7,26.7,27.7,26.7,21.2,26.5,24.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.9,26.9,26.9,26.9,26.9,27,26.9,26.9,26.9,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.7,26.7,27.2,26.4,27,27,26.6,26.9,26.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,22.7,23.2,25,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,27.2,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.7,26.7,26.7,27.3,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,27,27,27,27.4,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,27.8,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.5,27.2,27.5,26.3,27.5,27.5,27.5,27.6,27.6,27.5,27.5,27.5,27.6,27.6,27.4,27.4,27.8,27.8,27.8,27.8,27.8,27.4,27.8,27.5,27.5,27.8,27.8,27.8,27.5,27.5,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.9,27.7,27.5,27.5,27.6,27.7,27.8,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.6,34.9,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.3,27.3,27.8,27.8,27.9,27.4,27.4,40.1,27.8,40.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.8,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,39.5,27.5,27.5,27.7,31.2,27.1,27.5,26.6,26,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.6,38.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.6,27.5,27.5,27.5,27.5,27.5,27.5,35,27.5,27.5,27.5,27.5,27.5,26.7,27.2,27.2,27,22.2,27.9,28.7,27.3,26.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,26.5,27,27,27,27,27,27,27,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25,25,25.1,28.1,24.2,24.3,22.7,21.6,21.6,21.7,21.7,21.4,21.4,21.3,20.8,26,27.2,27.3,17.6,27.3,27.3,27.3,22.2,22.1,22.2,21.9,22.1,22.1,22.2,26.7,26.7,26.9,27.3,27.2,27.2,27.2,27.2,26.8,27,27.2,27.2,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.3,27.2,26.9,26.7,27.8,27.3,27.2,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.5,27.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,28.3,28,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.5,28,28,28,28.1,28.1,28.1,28.1,28.1,27.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.8,28.1,28.1,28.1,28,28,27.9,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,25,24.9,24.9,28.1,28.1,28.4,27.8,27.8,27.8,27.8,27.8,28,27.3,28.2,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,27.5,27.5,27,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.7,28.1,27.3,28.7,28.1,28.1,27.7,27.7,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.5,27.8,27.8,27.8,27.8,27.8,27.1,27.3,27.3,27.3,27.3,27.4,27.2,27.8,27.8,28.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,13.7,13.7,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,23.3,23.3,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,26.7,26.7,26.7,26.7,26.7,25.8,25.8,25.9,25.8,25.8,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,14.3,17.2,27.8,27.8,27.8,27.8,15,13.1,13.8,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,13.2,13.2,13.4,13.4,13.4,13.4,13.4,13.4,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.3,28.3,28.3,28.3,28.3,21.1,21.3,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.9,28.9,28.9,28.9,28.9,28.1,28.1,28.1,28.1,28.1,28.1,27.9,28.1,28,28,28,28,28,28,28,28,28,28,28,28,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.4,24.5,24.5,24.5,24.5,25.9,25.8,25.8,25.8,25.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,33.4,23.1,23.1,23.1,23.1,23.1,23.1,18.9,18.9,18.8,18.9,21.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,23.1,23.1,23.1,23.4,23.6,23.6,22.8,23.1,23.1,23.1,23.1,24.2,24.2,24.2,24.2,24.2,24,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.1,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.8,23.9,23.9,23.8,20.3,18.9,18.1,18,18,18,17.7,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,13.1,13.1,13.1,13.1,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.4,11.2,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,10.3,10.3,10.3,10.3,11.4,11.4,11.4,11.4,12.8,12.8,12.8,12.8,12.4,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,13,13,13,13,12.9,13.1,13.1,13.1,13.1,13,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.3,15.3,15.3,15.3,15.3,15.3,15.3,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.4,22.4,22.4,23,24.1,24.1,24.1,24.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,29.7,29.5,30,30,30,30,29.9,29.8,29.3,29.8,29.8,29.6,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,29.5,29.4,29.4,29.1,29.4,29.4,29.7,29.7,30,30,30,30,30,30,30,29.9,30,33.3,33.3,33.3,33.3,33.3,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.4,29.3,29.8,29.6,29.6,29.6,29.8,29.7,29.5,29.5,30.1,29.8,29.8,29.8,29.5,29.5,29.8,30,29.8,29.6,29.7,30,30,30,30,30,30,30.1,30,30,30,30,30,30,30,30.1,29.8,30.1,29.7,30,30,31,29.8,30,30,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,30,30,30,30,30,30,30,30,30,30,30,29.4,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.1,29.1,29.2,29.2,29.2,29.2,29.4,29.2,29.2,29.3,27.7,27.7,22,22.1,22.2,22.2,22.2,22.2,22.2,22.1,22.4,22.2,22.2,22.2,22.2,22.2,18.9,18.9,18.9,18.7,18.7,18.9,18.8,18.9,18.9,18.9,18.9,18.9,18.9,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.1,13.1,13.1,13.1,13.1,11.1,11.1,11.1,11.1,10.1,22.5,22.5,23.4,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.5,23.3,23.3,21.1,21.1,21.1,18.6,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,16.5,17.3,17.3,17.3,18.7,18.7,18.6,18.6,20.5,20.5,20.3,19.8,19.4,20.4,20.3,20.3,20.3,26.9,26.9,26.9,26.9,26.9,27.1,28.2,27.8,27.8,27.8,27.8,27.8,26.5,28,28,28,28.1,28.1,28.1,28.1,28.1,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,23.8,25.5,21.9,21.9,21.5,21.1,10.6,10.6,10.6,10.6,10.6,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.5,11.4,12.7,12.7,12.7,11.9,11.9,11.9,11.9,11.9,25,25,25,25,25,25,24.9,24.9,19.4,19.5,22.1,21.9,22,22,22,22,22,21.7,22.1,17.8,17.8,14.7,14.7,14.7,14.9,14.7,14.7,14.7,14.7,20.9,20.9,24.1,24.4,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.4,24.4,24.4,24.4,24.4,24.5,24.4,24.4,24.6,24.2,24.4,24.4,24.4,24.4,24.4,24.4,22.3,22.3,19.4,20.1,20.4,19.9,20.1,20,20,22.5,24.7,24.7,24.6,25.3,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.8,27.7,27.7,28.7,28.2,25.6,25.6,25.7,25.8,25.8,25.8,25.8,25.9,25.9,25.9,25.9,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.2,27.2,27.4,26.7,26.7,26.9,26.9,27.6,26.6,26.6,26.6,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26.6,26.7,27.5,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33.4,33.4,33.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,29.4,29.4,29.4,29.3,26.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,27.8,27.8,25.6,26.6,26.7,26.7,20.3,20.3,20.3,20.3,20.3,20.3,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.6,17.4,16.2,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,16.6,16.6,17.8,17.8,17.8,17.8,17.8,27.5,27.4,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,33.3,33.3,33.3,33.3,33.3,30.1,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.1,28.1,28.1,28.4,28.4,28.4,28.4,28.4,25.2,28,28,28,28.3,28.3,28.1,28.1,28.1,28,28,28,28,28,28,28,28.2,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.8,28.8,28.8,29,29,28.1,28.1,28.1,28.1,27.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.7,29.7,29,29.5,29.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.1,29.4,29.9,29.9,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,28.9,28.9,28.9,30.1,28.9,28.8,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,30.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.5,27.5,27.5,27.5,27.1,28.9,28.9,28.9,29.4,29.5,29.5,29.5,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.6,29.1,28.1,28.1,28.1,28.1,28.1,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,21,20.8,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,19.6,19.8,19.8,20.6,20.2,20.2,20.2,19.6,19.6,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,18.4,18.4,18.4,20.4,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.2,20.2,20.2,20.4,20.4,20.4,20.3,20.3,19.2,19.2,19.4,18.1,17.8,17.8,17.8,17.8,17.8,17.8,17.9,17.9,17.9,18.3,18.3,18.7,18.7,18.7,18.7,18.7,18.7,17.7,17.7,17.7,17.7,17.7,17.7,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,19.2,19.2,19.2,19.2,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,8.1,8.1,8.1,8.1,8.1,13.1,13.4,15.2,15.2,15.3,15.3,13.9,13.9,13.9,5.6,9.1,9.1,9.1,10.8,10.8,10.3,11.1,11.1,11.1,11.2,11.2,10.8,11,11,11.1,4.7,10.6,12.5,10.5,7,7,7.4,7,7,7,9.2,9.2,9.2,9.2,9.2,9.2,9.2,9.2,14.1,3.4,3.4,3.2,12.6,6,6,6.7,6.7,6.7,7.8,7.8,7.8,7.6,7.9,9.8,9.8,9.8,11,11.3,12,12,11.7,11.3,12.8,12.8,12.8,13.3,13.3,13.3,13.3,12.1,14.3,14.3,14.2,11.7,11.3,11.3,6.6,6.6,6.6,6.6,7,7,7,7.8,7.8,7.8,13.6,13.6,13.3,13.3,13.3,13.4,13.4,13.4,15.5,15.5,15.5,15.6,15.6,15.3,15.4,12.5,7.9,6.2,6.2,6.2,6,6.1,6.1,6.1,6.1,7.7,7.7,7.7,13.3,13.3,13.3,13.3,13.9,16.3,20.6,20.4,15.3,12,8.3,6.4,6.4,6.4,6.4,6.6,6.6,5.4,5.4,5.3,5.3,5.3,5.4,5.4,5.4,8.6,8.6,8.6,10.9,10.9,11.4,11.3,11.4,17.8,17.8,18.9,17,18.7,18.7,18.7,18.6,18.6,18.3,18.6,18.6,14.7,9.2,9.2,19.4,21.6,20.9,20.9,14.4,14.5,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,15.4,15.2,15.2,15.2,15.2,15.2,17.3,19.8,20,23.9,23.9,23.9,23.9,23.9,25,25,25,25,25,25,25,25,25,25,25,24.5,24.7,24.7,24.7,24.7,24.8,24.8,24.8,24.7,24.7,24.7,24.7,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.5,23.5,23.5,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23.8,23.8,23.5,23.5,23.6,23.6,23.6,23.6,23.6,23.6,23.6,24.2,24.2,24.2,24.1,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.9,23.8,23.9,24.6,24.7,24.7,25,25,25,24.7,24.7,24.7,24.7,24.7,24.7,25,25,25,25,24.4,24.4,24.4,24.7,24.7,24.7,25,25,25,25,25,25,25,25,25,24.7,24.7,24.4,24.4,24.4,25.1,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.2,25.2,24.2,24.2,24.2,24.2,24.7,23.9,23.9,23.9,23.9,24.1,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,23.9,24.7,24.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27,27,26.1,26.1,26.1,26.1,26.1,26.1,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.7,26.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,27.8,27.8,27.8,27.1,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.6,26.6,26.9,26.9,27,27,27,27,26.8,26.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27,26.5,27.5,27.5,27.3,26.8,26.9,26.9,26.9,27.1,27,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.8,26.8,26.8,26.9,26.9,26.9,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,26.9,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25,25,25.4,26.5,25.5,25.5,24.6,24.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,23.9,23.9,23.9,23.9,24.8,24.8,24.8,24.8,24.8,24.8,26.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,33.3,33.3,33.3,33.3,29.2,29.2,29.2,28.1,28.1,28.1,28.1,28.1,27.9,27.9,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.5,28.7,28.7,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,28.8,28.8,28.8,28.8,29,29,28.9,29.5,29.5,29.5,29.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27,27,27,27,27,27,27,27,27.3,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,30,30,30,30,30,30,30,30,30,30.1,30.3,30,30.3,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.2,31.2,31.2,31.1,31.1,31.1,31.1,29.7,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.2,30.2,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25,25,25,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.5,30,30,29.8,30.3,30.3,30.3,30.3,29.9,29.8,29.5,29.6,29.8,30.3,30.3,30.3,30.3,28.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.1,29.8,29.9,29.7,29.7,29.7,29.7,29.7,30,29.4,29.4,29.2,29.2,29.2,28.6,29.3,28.5,27.7,28.9,28.9,28.9,28.7,27.7,27.7,28.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.8,29.1,27.9,28.7,28.8,28.6,28.6,28.6,28.6,28.6,28.3,25,25,25,25,25,25,25,25,25,25,25,25,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.6,28.9,28.9,28.9,28.9,28.7,28.7,28.7,27.8,27.8,27.8,27.7,27.7,27.7,26.4,24.4,24.4,24.4,24.4,24.4,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.5,29.4,29.4,29.4,29.4,29.4,29.4,28.4,29.1,29.1,29.1,29.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,29.1,29.1,29.1,28.4,28.9,29,29,29,28.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.8,27.9,27.9,27.7,27.7,27.7,27.7,40.4,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,26.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,23.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,30.5,28.9,29.2,28.2,28.3,28.4,28.9,25.4,27.5,28.3,28.3,28.3,28.3,28.5,28.3,28.3,28.3,28.3,28.3,28.3,28,30,30,30,29.9,30,30,30,30,30,30,30.1,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25.8,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.2,25.2,25.2,25.2,25.6,25.2,25.3,25.3,25.3,25.3,25.3,25.3,24.8,25.3,25.3,25.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.6,25,22.7,22.7,24.7,24.7,24.6,24.6,24.5,24.5,24.5,24.5,25.6,24.6,24.6,25,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.2,24.2,24.2,24.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,27.5,29,29.3,27.6,28.1,27.8,27.8,27.8,27.8,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,28.3,29.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.2,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30,30,30,30,30,30,30,29.5,28.2,27.8,27.8,27.8,25,25,25,25,25,25,26.4,23.4,23.4,23.4,23.4,21.3,21.3,21.3,21.3,21.3,21.3,21.3,21.3,21.3,20.4,20.4,20.5,20.5,20.5,20.5,20.5,20.5,20.1,20,19.4,19.4,19.4,20.4,18.8,20.7,20.7,19.5,13.4,18.5,18.5,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,25.8,25.8,25.9,25.9,11.7,11.7,11.7,11.7,17.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.5,18.5,18.5,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.4,31.4,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.7,31.7,31.7,31.7,31.7,30.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.7,31.2,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.4,24.2,24.2,24.2,24.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,29.4,29.4,29.4,29.4,31.1,31.1,31.1,31.1,31.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,31.6,32.2,32.2,32.2,32.1,32.2,32.2,32.2,32.2,32.2,31.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,33.9,32,32,32,32,31.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,31.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.8,32.2,31.7,31.7,31.7,31.7,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,32.8,32.8,32.8,32.8,32.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.5,32.5,32.5,32.5,32,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.7,32.7,32.7,32.7,32.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.4,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.9,32.4,32.5,32.4,33.1,33.1,33.1,33.1,33.1,33,33,33.1,33.1,33.1,32.8,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,32.3,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.8,31.8,31.7,31.7,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,36.1,36.1,36.1,36.1,36.1,32.4,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.6,32.5,32.5,32.5,32.5,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,32.5,32.3,32.8,32.8,32.8,32.8,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,32.2,32.4,28.8,28.9,28.9,28.9,29,29,22.4,22.4,25.3,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25,25,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.7,32.7,33.1,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32,32,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.4,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,33,33,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.7,32.7,32.8,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.4,32.8,32.8,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,32.9,32.9,31.7,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,33.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,17.5,31.9,31.9,31.9,31.9,31.9,31.6,31.7,31.7,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,34.3,23.5,23.5,27.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,33,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32.3,32.5,32.2,32.2,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.2,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.7,33.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.3,32.8,32.8,32.3,20.9,32.8,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.4,33.1,33.1,33.1,33.1,33.1,32.3,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,41.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,31.6,31.6,31.5,31.6,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36.1,36.1,36.1,36.1,36.1,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.6,32,32,36.2,36.2,36.2,36.1,36.1,30,30,30,30,30,30,30,30,36.4,30.3,30.3,30.7,30.4,31.1,30.2,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,36.1,36,36,36.1,36.1,30.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,31.9,31.9,31.9,31.9,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.9,36.1,36.1,36.1,36.1,36.1,36.1,25.1,25.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32,32,32,32,32,32,32,32,32,32,32,32,31.5,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.7,32.7,32.7,32.8,32.4,32.4,32.5,32.5,32.5,32.5,31.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,32.2,32.3,32.3,32.3,32.3,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,33.2,32.4,32.4,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.4,32.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.6,31.1,31.1,31.4,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.2,29.1,30.2,29.5,29.4,29.4,29.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.1,29.2,29.2,29.2,29.2,29.2,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.8,29.5,29.5,29.5,29.5,28.9,28.9,28.8,29.5,29.8,29.8,29.8,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,29.8,30.3,30.3,30.3,30.3,30.3,30,30,30.6,30.3,30.3,30.5,36.1,36.1,36.1,36.1,36.1,33,32,32,32,32,32,32,32,32.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32.6,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.4,32.5,32.5,32.5,32.5,32.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,32.8,32.8,32.8,32.8,32.7,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,30.8,30.6,30.6,30.6,30.5,30.5,30.6,30.6,30.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.2,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.2,31.5,31.7,31.7,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.1,32.2,32.2,32.2,32.2,32.2,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,32.3,32.5,32.5,30.8,31.8,31.9,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.4,32.3,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.2,32.3,32.1,30.9,32.3,32.3,32.3,32.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.7,31.2,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,31.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.4,30.7,32,32,32,32,32,32,32,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,31.2,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,30.3,30.3,30.3,30.3,30.3,24.4,24.4,24.4,24.4,25.3,25.3,24.7,24.7,10.8,10.8,10.8,16.9,21.6,21.9,24.4,24.4,26.6,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.6,30.6,30.6,31.2,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,30.2,31,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,30.7,30.7,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.5,32.5,32.5,32.5,30.8,30.8,30.8,30.8,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,24.1,24.1,24.1,24.1,24.1,24.1,24.1,21.5,21.4,21.4,21.4,20.5,20.5,20.6,20.6,20.6,20.5,20.6,21.1,21.1,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20.2,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.1,19.1,19.1,19.1,19.1,19.2,19.2,19.2,19.2,19.2,19.1,19.1,19.1,17.8,17.8,17.8,17.8,17.7,17.7,17.6,19.4,17.5,17.7,17.7,17.5,17.5,17.5,17.5,17.5,17.2,17.2,17.2,17.2,17.2,20,20,20,18.3,18.3,18.3,15.9,15.7,15.7,15.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,16.1,16.1,16.1,16.1,18,18,18,18,18,16.9,16.9,16.9,16.9,16.9,16.9,16,16,16,16.6,16.6,16.6,16.6,16.6,16.6,16.6,19.2,13.3,13.3,13.3,13.3,13.3,13.3,12.6,12.6,12.6,12.6,12.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.5,13.5,16.1,16.1,16.1,16.1,16.1,16.1,16.1,18.9,19.5,18.6,18.6,14.4,14.5,13.1,13.5,13.5,13.5,13.6,13.6,15.3,14.1,14.2,14.6,14.6,14.6,14.6,14.6,14.6,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,18.6,18.6,19.1,19.1,19.1,19.1,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20.5,20.2,20,20,20,20,20,20,20,20.1,20.1,20.1,20.1,20.1,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,19.4,19.4,19.4,22,22,22,22,22,22,22,22,22,22,22,22,22,22,21.9,21.9,21.9,21.6,21.6,21.6,21.6,21.6,21.6,21.6,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,19.6,20.8,20.7,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.8,25.8,25.8,25.8,25.8,25.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.2,25.9,25.9,27.2,27.2,27.2,27.2,27.2,27.2,26.4,26.4,26.4,30.6,30.6,30.6,30.6,31.8,28.7,28.3,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,29.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.8,29.3,29.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,28.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,27.7,27.7,27.7,27.7,26.2,26.2,26.2,26.2,26.2,26.2,26.2,26.2,26.2,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.7,27.7,28,28,28,28,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29,25.5,25.5,25.5,25.5,25.5,13.1,13.1,13.1,13.3,16.6,16.4,16.4,16.4,16.4,24.8,24.8,24.7,24.7,25,25,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.5,31.2,30.3,30.8,30.8,31.1,30.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.4,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31,30.9,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.4,31.4,31.4,31.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.7,30.7,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.4,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,34.8,36,36,36.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,29.9,30.7,30.7,30.7,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.4,31.4,31.4,31.4,36.2,36.2,36.2,36.2,36.2,36.2,30.6,30.6,30.6,25,25,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36,36,31.4,31.4,31.4,31.4,32,31.5,31.5,32.3,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,31.5,32.2,32.2,32.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.6,30.7,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.2,28.6,28.6,28.6,28.2,27.6,26.9,26.9,26.9,26.9,26.9,26.9,26.8,22.5,22.5,22.6,22.6,22.6,22.4,22.4,22.4,22.4,19.1,18.9,19.2,19.2,19.2,19.2,19.2,19.2,13.9,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,25.5,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27,26.6,25.9,25.9,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,28.4,28.4,28.4,28.4,28.4,28.3,27.3,27.3,27.2,27.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.8,29.5,30.8,30.8,30.8,30.4,32,32,32,32,32,32,32,32,32,32,32,32,32,31.6,32.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33.2,32.5,32.5,32.5,32.5,32.5,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.9,32.5,32.5,32.5,32.5,31.9,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32.5,31.9,32.2,32.2,32.4,32.5,32.5,32.5,32.5,32.5,34.1,32.5,32.5,32.5,32.5,32.5,32.5,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,30.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.6,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,32.5,32.5,32.5,30.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.8,33.4,33.4,33.4,33.4,33.4,33.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,32.5,32.8,32.8,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,32.5,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.8,33.3,32.8,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.2,33,33,33,33,33,33,33,33,33,33,33.3,33,33,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33,33,33,33,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.3,33,33,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.9,32.9,32.9,32.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,32,33.4,33.4,33.4,33.4,32.6,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.8,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,36.2,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,31.6,31.6,31.6,31.8,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.6,31.7,31.7,31.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,32.8,32.8,32.6,33.1,33.1,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.6,31.4,31.4,31.4,31.8,31.7,31.7,31.7,31.7,31.7,31.7,31.8,33.6,33.6,33.6,33.6,33.6,33.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.5,32.8,32.8,32.4,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.1,32.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32.5,32.5,32.5,32.7,32.7,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.6,32,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.9,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,33.6,31.6,32.4,32.8,32.8,32.8,32.8,32.4,32.4,32.4,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.7,32.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.7,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.6,32.9,28.1,28.4,30.6,29.9,31.9,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,28.1,28.1,25.6,25.1,25.1,25.1,25.1,25.1,11.1,11,11.4,23.9,25,25,25,25,25,25,24.8,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,29.9,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.2,31.4,31.4,31.4,31.4,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31,31.4,31.4,31.4,31.5,31.5,31.4,30.3,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.7,28.3,28.3,28.3,28.3,28.3,28.3,28.4,27.9,27.2,27.2,27.2,26.4,26.4,26.4,26.5,26.5,30.6,30.6,30.4,30.6,30.6,30.6,30.6,30.6,30.6,30.3,31.8,31.8,30,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,25.5,25.5,25.5,25.5,25.5,26.7,26.4,26.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.8,25.2,25.2,25.2,25.2,25.2,25.2,25.7,25.7,25.7,25.6,25.6,25.6,25.7,25.7,25.7,25.8,25.8,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26,27.6,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.2,27.2,27.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.2,27.2,27.2,27.1,27.1,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.3,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.3,25.9,25.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25,25.1,25.6,25.5,25.5,24.8,25,25.3,25.3,25.3,25.3,25.3,25.3,24.6,24.8,24.8,24,24,24.4,24.4,24.4,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,23.7,23.7,23.7,24.1,24.1,24.1,23.8,23.8,22.9,22.9,23,23,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.1,23.7,23.7,23.9,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.1,21.1,21.1,21.1,21.1,21.6,21.6,21.6,21.6,21.6,21.6,22.4,22.4,21.2,21.4,21.4,21.4,21.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,18.8,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.6,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,16.9,16.9,15.9,15.9,15.9,15.9,15.9,15.8,15.8,15.8,15.8,15.8,14.5,8.9,6.1,6.1,6.1,10.3,13.8,12.2,12.2,12.2,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,9.4,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,14.9,8,8,8,8,8.2,13.9,13.9,13.9,13.9,13.9,13.9,12.5,8,8,8.1,8.1,8.1,8.1,8.7,7.5,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,6.2,5.8,6,5.5,6.9,6.9,5.7,5.9,4.6,5.6,5.6,5.9,5.9,7.2,7.2,7.2,7.2,6.1,6.1,5.3,5.3,5.3,5.8,5.3,5.3,5.3,5.4,5.3,5.3,5.3,5.5,5.3,5.3,5.3,5.3,5,5,5,4.1,4.1,5,3.4,3.4,3.4,5.4,5.9,5.5,5.5,5.4,4.5,4.5,4.4,5.6,5.6,5.2,5.3,5.3,5.3,5.3,5.3,5.2,5.2,5.2,5.2,5.1,3.4,3.1,3.1,2.8,2.9,5.6,5.6,5.6,6.7,6.7,6.7,4.5,4.5,4.5,4.5,5,5,5,5,3.9,4.1,4.1,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.4,4.4,4.4,4.4,4.4,5,5,5,5,5.8,5.8,5.5,4.7,4.7,4.7,4.7,4.7,4.7,4.7,2.8,3.3,3.4,5,5,5,5,5],"distance":[30.3,127.9,51.4,126.2,50.4,62,49.9,9.4,2.2,25.5,3.2,7.4,2.3,3.2,14.4,3.4,4,31.1,12.5,2.3,24,1,2.8,4.3,26.6,34.2,161.5,3.4,2.2,2.5,3.3,3.4,4.8,2.8,11.6,18.8,7.3,5.4,7.2,4.4,4.3,8.2,26.1,5.8,4.8,6.8,5.9,4.7,4.3,6.8,23.8,12.8,9.8,5.2,43.9,137.3,46.2,28.8,32.6,20.2,5.3,24.5,9.3,12.4,16.2,6.7,6.6,7.4,8.2,16.2,13.1,14.3,51.4,15.8,27.4,13.9,3.8,7.5,4.3,3.9,6.2,7.3,55.7,16.7,25,8.2,7.3,10.3,21.2,24.7,18.1,12.3,7.8,4.7,16.2,33.7,171.6,28.4,5,14.1,26.2,27.7,4.2,6.2,12.5,7.7,8.8,24.1,6.7,4.8,2.3,4.3,1.2,1.4,1.3,7.3,4.8,4.6,34,8.4,6.3,4.8,5.1,9.6,89.8,14.5,10.4,124.1,12.7,16.3,11.4,75.9,13,13.8,13.6,46.8,8,19.9,8.4,94.9,5.5,21.1,5.5,52.8,40.8,15.3,3.5,5.9,11.2,1.5,1.5,5.2,6.4,5.6,38.4,28.9,2.7,3.3,8.5,32.3,12.2,5.5,47.9,84.4,5.1,3.6,10.9,10.9,105.4,4.4,8.5,5,1.4,1.4,5.1,6.9,56,42.7,4.1,4.7,9.7,9.7,5,68.1,27.9,106.6,51.5,40.3,4.4,5,13.9,10.3,3.9,102.1,79,12.6,15,15.7,7.1,98,30.9,3.4,15,11.6,3.7,79.6,8.2,6.2,3.5,7.2,18.3,14.6,20.3,50,11.7,10.4,25.5,16.2,3.3,5.9,9.8,19.4,13.3,5.4,7.4,11.1,10.3,7.3,12.8,11.8,17.3,59.9,24.6,5.2,12.9,80.4,0.1,20.2,22.8,18.5,21.5,10.1,17.3,28.9,23.7,21.6,39.3,133.8,35.9,59,502.2,16.9,69.8,308.7,54.6,34.8,35.6,13.2,43.4,30.1,92.4,6,7.2,5.5,7.5,13.5,16.2,14.9,13,15.5,18.7,22,40.2,8.8,18.7,11.8,20.9,13,16.7,16.2,9.4,9.8,43.4,97.1,37.5,231.7,175,306.2,107.1,81,101.6,140.3,37.4,27.2,33.6,76.5,20.9,53.4,43.6,26.8,24.5,23.5,16.2,28.2,34.2,37,58.5,20.4,15.5,16,12.4,13.7,16.8,13.9,16.1,17.2,19.8,18.5,17,13.9,14,13,22.3,24.6,13,18.8,21.6,22.3,29.7,19.8,27.2,35.7,42.5,24.9,23.6,41.3,23.4,16.6,38.5,23,25.2,26.5,18.8,20,17.5,32.9,62.3,57.2,49.8,45.6,45.9,109.8,153.6,63.1,65.4,68.7,302.1,273.7,147.1,36.7,235.2,307.5,256,56.9,155.2,76.9,216.7,63,66.7,50.7,117.1,110.1,116.7,99.5,333.9,179.4,179.7,264,293.2,52.1,79.3,208.4,113.9,136.2,316.7,134.7,80,68.9,30,20.4,224.7,46.6,180.5,204,172.6,216.8,3.3,179,98.9,143.4,157.5,137.9,99.4,10.3,135,1.5,21.9,1.7,82,82,131,144,418.2,503.8,124.1,109.3,498.1,361.5,54.1,479.5,174.6,62.2,236.4,156.3,296.9,137.5,100.1,160,17.2,52.5,69.2,132,61.1,45.8,113.5,102.6,298.1,370.1,434.5,411.6,18,1176.1,512.1,471,13.8,23.5,161.3,232.7,198.3,235.7,95.6,526.7,14.2,18.6,14.2,50.8,125.6,18.3,34.2,76.7,76.6,110.1,106.5,46.8,30.8,29.8,48.6,48.3,36.3,35.8,36.1,48.3,35.1,27.3,32.2,39.1,81.5,55.6,48.7,47.5,36.1,72.3,36.3,180.8,130.5,96.5,95.6,131.8,372.1,144.8,240.5,56.6,61.9,347.2,165.4,6.6,13.6,170.1,148.7,94.5,101.8,53.6,148.5,96.3,215.8,70.3,64.9,79.4,42.3,40.5,49.3,34.5,73.4,48,48.3,47.8,48.7,47.9,47.8,47.2,48.9,48,47.8,48.4,48.1,47.7,47.7,48.1,47.6,36.2,96.4,72.8,58.4,166.7,45.6,46.7,22.2,37,64.4,98.5,76.3,78,90.2,68.1,126,43.2,54.1,44.3,20.9,814.4,37.8,168.2,72,130.2,132.5,67,40.6,98.8,92.6,61.9,73,100.8,51,92.3,61.4,11,60.9,122.8,100.8,65.5,88.7,79,102.9,94.9,86.5,104.6,220.2,146.1,175.3,211.6,238.5,202.6,156.8,166.7,113.8,158,83.5,83.6,30.4,48.8,75.1,30.4,35.8,26.3,65.8,33.3,116.8,116.4,237.7,26.6,64.4,61.6,80.2,442,195.9,196.6,77.8,262.5,66.7,389.6,133.6,37.4,127.1,126.8,89.4,49.1,51,52.8,48.5,5.4,46.3,49.5,82.3,63.5,140.6,119.5,119.5,431,252.9,31.3,603,84,91.2,80.9,220.3,227,132.6,63.1,46.1,56.6,42.1,59.7,33.2,52,76.2,75.9,79.1,46.9,207.2,119.4,58.1,27.7,34,4.7,114.7,78.8,95.1,172.7,33.7,138.7,276.9,309.2,29.1,25.1,91.1,116.4,73.4,72.9,150.4,74.8,74.9,27.8,26.1,57.9,132.8,273.1,263.8,343,124.2,247.2,57,34.1,46.1,100.3,66.6,62.6,98.3,50.3,40.9,288.1,222.3,105.4,109.8,11.3,69.4,40.5,41.7,99.8,59.1,61.8,51.1,51.8,62,60.9,53,55.5,41.9,62.4,62.6,51.9,67.7,55.8,13.2,38.4,51.9,40.6,21,50.2,121.5,25.1,39.7,1.2,24.4,153.2,195.1,142.8,91.4,85.8,75.1,186.4,138.6,101.9,67.7,45.7,72.1,69,58.9,92.8,91.4,62.3,56.9,53.2,59,34,0.8,48.3,61.1,61.4,55.4,53.8,46.9,43.2,55.2,71.1,80.3,25.4,37,45.4,59.9,61.3,95.7,38.4,35.9,71.1,259,46,60.3,530,455.9,102.3,0.5,55.2,1.5,96,1.5,58.2,38.1,39.2,91.7,45.4,41.7,60,46.3,11.3,79.7,4,39.3,74.9,60.1,38.1,47.4,39.1,41.7,36.5,41.9,41.1,75.6,33.4,36.6,70.1,83.1,54.3,55.6,34.9,39,47,47.6,53.3,55.7,50.9,45,50.1,32.7,59.4,347.7,379.3,3.3,90.9,15.5,1.4,713.6,5,10.3,3.4,89.7,7.1,16.8,8.5,138.8,72.9,57.5,89.4,40.9,31,6,21.3,1.3,48,53.6,47.8,58.6,76.1,681.9,279.5,487.7,355.7,6.8,127.6,47,66.9,48.7,45.8,73,1.3,56.6,206.5,217.7,401.7,264.2,214.3,37.4,10.1,15.7,1.6,38.5,5.3,270.3,33.3,160.2,148.1,126.9,69.2,71.7,46.9,62,344.7,73.8,664.3,473.5,100.5,110.5,140.2,21.8,213,22,5.6,8.4,390.2,405.2,145.8,325.4,86.5,11.1,112.2,76.2,62.5,47.9,45.9,251,159.9,65.9,402.3,72.2,22,129,62.4,101.8,0.2,214.6,90,24.1,318.2,14.7,42.9,14.6,41.9,134.8,363.4,27.8,67.3,80,27,163.6,57.6,200,18.7,34.8,29.9,506.7,353.9,32.6,106.9,301.3,253.8,283,820.8,265,32.9,26.1,126.2,61.8,73,327.8,161,484.3,1293,101.4,89.1,46.6,114.9,128.4,404.5,34.6,32.7,12.3,38.1,263.2,28.7,84.7,42.3,31.2,72.4,432.1,164.7,134.5,79.7,76.5,80.3,195.9,12.6,113.4,538.2,135.1,2.3,78.6,69.6,98.8,47.3,37,65.7,115.6,135.5,99.1,46.5,135.3,145.5,146.2,104.5,63.8,64.9,78.2,57.5,60.2,57.6,78.5,47.9,419.9,197.4,118.4,49.2,63.8,36.9,43.1,70.3,35.8,31.8,82.8,96.3,2.7,99.4,65.9,64.1,91.7,48.6,66.6,83.8,59.9,59,46.4,31,12.8,3.4,49.7,137.5,159.8,81.5,47.2,40.5,82.8,81.8,27.9,30.9,114.8,84.6,328.1,408.8,247.1,93.6,62.7,98,97.4,109.6,114.3,675,113.4,30.3,65,20.6,99.2,312,63.1,121.7,19.3,37.5,81.6,82.2,62.4,62.6,84.3,307.6,393.2,104.7,122,99.2,100.9,53.6,79.7,152,153.1,259.7,758.8,401.7,143.4,120.8,121.2,89.7,20,140.2,127.1,172.8,301.1,171.3,9.8,166,71.2,79.7,61.5,45.5,44,77.4,51.5,89.3,65.7,80.2,75.9,265.7,416.9,73.7,91,235.5,32.5,222.4,160.1,112.4,40.2,49.3,62.1,1179.7,6.6,178.7,101,116.3,81.1,112.2,112.6,67.4,358.2,213.3,14.3,12.9,97.9,151.7,79.8,97.8,17.5,39.4,96.9,111.2,238.4,67.6,145.8,273.9,112.8,57.3,116.9,68,68.6,92.9,91.7,65,85,40.3,119.8,69.9,117,61.2,100,129.4,79.7,67.3,245.1,113.4,88.9,98,108,121.1,162.1,92.6,93.1,212.1,108.1,104.3,90.8,91.5,77.5,79.6,64.6,65.6,106.7,61.1,57.9,42.2,42.2,85.4,156.7,45.3,43,45.6,53,52.2,32.4,23.1,22.8,22.3,26.2,33.6,16.1,27.8,35.5,36.6,36.1,52.5,47.8,42,36.2,36.9,44.5,33.2,43.3,42.3,21.3,15.9,24.2,37.1,34.8,44.5,38.3,26.7,38.1,38.6,35.7,71.6,29.7,90.2,122.5,182.3,153.2,45.3,349.3,404,259,65.4,132.7,60.9,88.4,120.9,179.8,115.1,66.1,109.6,214.2,117.2,189.7,450.4,65.1,301.6,88.9,86.8,112.2,75.6,71,71.6,47.9,41,127.6,71.8,68.2,67.3,61.5,41.7,59.7,59.1,81.9,91.5,70.3,74.3,11.1,11.6,84,320.7,0.3,110.8,94.1,16.7,22.8,30.1,20.3,14.1,15.1,13.8,14.4,13.1,19.3,13.4,24.6,15.9,15.3,14.4,13,16.5,18.5,14.6,15.4,12.9,13.2,12.8,15,14.2,18.7,21.7,14.4,19.6,134.6,23.8,79.9,94.4,100.3,100.3,93.9,97,103.1,135.1,82.4,69.5,169.5,165.5,0.6,646.8,161.3,234.2,157,147,194.3,7.7,109.6,59.1,226.4,79,66.9,59.6,172.9,592.7,334.2,20.1,63.5,350.5,313.8,252.3,109.9,115.7,112.3,112.1,141.7,239.8,62.6,83.6,230.3,137.5,137.7,388.4,447.4,141.7,195.9,43.4,192.5,108.4,108.7,381.4,162.2,258.5,656.8,785.9,131.3,100.7,58.7,183.5,727.1,180.9,179.8,91.3,90.2,62,121,83.3,46.2,60.8,128.3,114.7,61.8,61.7,71.2,65.8,38,23.7,62,45,77.3,81.7,76.9,86.9,70.1,79.6,63.1,66.5,78.3,91.1,94.5,70.5,47.9,109.1,304.3,347.7,130.3,451.4,166.6,100.2,340.3,236.1,233,224.8,194.7,353.7,365.4,980.1,232.7,421.5,151.9,41.8,804.4,65.6,41.1,55.5,205.3,535.3,630,598.4,74.3,540.2,404.9,147.5,222.4,222.1,151.3,279.9,132.3,131.2,263.8,736.6,262.3,262.1,316.9,359,4.4,288.2,66.6,226.4,308.5,121.5,249.8,132.1,341.5,99.1,140,141.9,40.8,231,255.8,191.8,263.1,353.9,256.2,262.1,195.6,136.3,17.9,205.3,158.1,195.2,224.9,175.2,69.1,262.5,191.9,100.7,99.8,153.1,179,151.5,109.2,121.8,119.5,120.6,144.3,134.7,120.2,97,102.9,91.1,82.8,83.4,85.3,92.2,93,91.2,97.2,110.9,131.3,104.9,126.1,127.2,131.2,72.4,71.6,72.7,83.9,52.9,25.4,26.5,9.3,23.4,70.3,56.5,66.2,134.1,15.5,142.6,187.9,103.6,52.4,146.5,156.2,66.7,38.7,59.8,100.6,91.1,68,63.6,31,24,21.9,19.3,27.9,25.8,24.7,27.2,25.6,26,25.3,25.6,23.2,25.9,24.8,25.9,25.4,26.6,25,25.2,25.3,25.5,25.5,26,24.1,25.4,26.2,27.1,22.2,26.6,25,25.5,24.9,27.6,23.2,25.4,25.5,25.4,13.9,13.6,37.3,34.1,25.4,38.6,27.5,26.1,34,25.1,27.3,34.3,27,26.9,18.1,48.8,30.9,45.1,45.7,111.3,121.9,108.7,144,75.1,38,39.4,83.1,52.8,231.4,35.5,127.7,69.9,296.7,55.3,101.3,49.7,19.5,19.6,18.9,18.2,16.7,20.7,20.5,18.5,17.1,19.9,23.3,21.4,17.7,18.7,22.4,20.9,20.2,23.7,18.5,24.2,16.6,13.8,21.1,27.7,17.8,17.7,18.3,22.4,23.2,95.8,23.5,22.3,24.5,17.8,15.5,19.4,19.9,20.6,16,15.1,16.5,16.1,16.8,17.6,14.7,18,20,20.8,19.9,18.2,31.2,24.4,20.4,15.9,23.2,83.5,116,130.7,128.4,100.9,128.1,143.1,125.3,16.5,50.7,31.7,82.7,84.9,62.8,22.2,73.6,89.7,52,41.5,50.4,59,12.3,36.4,34.9,100.7,87.3,54.9,54.9,73.1,91.5,34.3,34.1,55.8,260.1,115.6,131.3,179.3,97.8,133.9,163.8,96.8,98.6,70.6,88.7,120,75.8,72,13.9,123.9,78.5,91.4,34.3,35,40.8,36.4,46.3,33.5,28.2,34.3,27.2,23.3,31.8,36.4,42.7,18.7,21.7,14.6,18.2,14.4,38.5,47,39.7,49.7,50.2,62.3,43.6,61.7,83.2,35.5,70.3,70.1,76.7,58.3,36.8,73.9,19.5,29.8,30,8.1,11.2,30.5,41.2,18.4,28.9,25.8,17.3,10.7,30.9,37.3,39.8,41.5,46.3,43.7,25.7,34.8,18.6,19.8,18.5,19.4,19.3,20.7,15.1,34.1,21.6,29,16.1,19.9,21.9,10.9,43,54.9,26.2,26.1,25,25.3,71.2,27.5,40.5,42,9.1,14.3,13.8,14.4,26.2,52.3,210.1,176.1,79.6,87.6,33.8,58.1,85.2,41.3,28.4,2.1,41.3,33.9,53.4,151.3,192.4,48.9,108.1,103.7,58.3,119.4,37.7,173.2,43.8,39.9,94.4,120.3,96.1,82.9,67.4,63.4,55,96,68.7,81.9,132.2,310.1,191.6,46.1,208.9,509.9,437.2,358.6,49.3,38.1,52.7,55.1,51,49.8,61.1,56.1,77.3,61.3,72,85.9,149,390.3,116.2,4,30.7,1.9,226.3,180.4,45.6,41.9,43.6,35.8,81.2,190.4,201.5,28.8,289.2,51.5,186.1,170.3,157.6,224.6,127.7,209.5,146.4,142,410,111.2,758.2,212.2,137.4,161.4,28.6,160,143.8,229.5,155.3,69.1,119,112.6,203.9,22.9,70.8,224.9,74.7,296.2,44,222.3,152.4,154.1,12,31.9,39.9,171.1,161.1,217.2,367.1,866,102.1,110.3,109.1,70.4,70.1,32.4,60.6,47.7,36.6,116.7,25.8,104.4,95.6,81,35.6,58.3,57.8,33.9,37.7,29.3,38.3,73.3,68.8,45.1,94.1,19.1,33.3,116.5,62.7,105.1,135.5,203.9,231,155.3,99.5,160,138.2,171.5,208.3,174.6,135.7,137.7,324.7,66.1,106.5,83.5,224.4,26.8,367.6,240.6,14.3,74.6,87.8,62.4,28.5,303.6,53.6,68.3,90.9,105.4,91.2,102.5,132.9,161.1,41.1,129.9,146.9,108.9,176.5,280.6,473.3,101.3,27.1,73.4,197.2,134.2,68.7,37.8,35.8,26.3,96.2,80.6,100.8,35.1,15.8,44.9,112.4,110.4,110.4,173.7,130.5,80.9,35.8,88.2,88,62.9,65.5,24.1,26.8,52.6,103.1,196.4,223.2,214.5,390.1,11.5,927.5,202.1,210,379,247.9,22,243.7,184.6,184.4,195.7,54.2,200.6,132.9,933.1,34.7,524.7,49.3,43.5,202.6,86.4,45,67.9,40.7,8.9,84,17.9,18,57.1,37.7,18.9,81.5,11.4,107,92.8,130.9,73.4,51.3,126.2,25.1,31.9,5.7,87.2,62.7,55.1,97.9,96.3,96.9,173.5,34.6,25.4,57.8,33.5,11.2,20.1,30.8,36,64.5,33.9,36.5,27.4,32.1,24.8,18.9,15.8,23.4,10.3,18.5,19.4,23.1,23.4,19.1,22.1,23.6,22,11.6,11,13.5,13.7,13.1,13.9,14.1,14.1,28.2,41.1,26.2,23.6,25.7,73.8,79.7,39.5,73.7,66.9,69.6,45.5,112.1,383.6,40.2,94.7,39.5,17.6,46.9,46.5,47.5,29.1,16.8,5.5,53.3,75.9,53.8,53.4,177,163.7,3.5,73,179.4,85.1,75,85.5,48.9,25.4,52.3,26.6,37.8,40.9,37.3,32.2,76.9,52.2,48.3,35.7,42.6,80.1,34,0.7,130,31.6,8.7,37.9,6,144.7,377.2,135.1,75.8,58.1,348.9,212.1,185.8,14.6,100.6,125.5,93,32.6,70.1,69.2,16.5,29.9,32,77.7,44.3,30.4,29.1,59.2,61,18.5,74.1,47.3,45.1,51.4,34.9,42.3,44.6,46.7,49.5,61.5,52.5,63.3,53.7,35.2,13.2,89.7,128,31.7,272.2,127.1,55.6,44,54.6,48,26,50.9,63,51.4,56.4,48.2,283.2,178.5,98.7,123.2,62.2,59.1,32.1,31.9,51.1,31,30.8,63.2,218.7,163.5,198.9,46.7,41.9,32,34.4,42.6,39.6,105.4,83.6,40.9,74.4,56.4,47.1,85.7,67.2,139.7,27.9,555.6,97.2,78.4,283.9,16,178.3,178.7,200.3,130.2,25.8,6,103.8,108,28.3,29.5,27.2,54.5,80.7,29.9,33.3,77.4,132.2,68.2,35.5,154.9,131.9,161.5,203.4,255.5,249.5,173.7,40,70.6,48.6,10.3,92,132.8,65.3,46.4,46.3,95.5,29.7,310.3,187.5,191.6,146.4,168.1,124.6,93.2,50.2,200.8,19.6,27.4,23.9,24.2,209.9,70,550.5,238.7,368,131.5,60.2,167.8,61.4,208.7,693.5,296.6,401.3,254.6,14.9,84.2,7.6,42.3,9.3,11.1,290.5,186.7,84.6,128.7,134,85.2,684.1,92.4,41.3,57.3,5.7,62,36.3,46.1,64.1,67.5,61.9,42.4,79.6,84.4,80.3,104.8,107.7,97.4,65.3,68.3,184,99.6,199.1,48.9,206.4,60.7,125.7,123.3,18.1,230,298.6,255.6,58.3,63,201.5,102.7,45.1,48,49.4,50.5,49.3,56.3,54.5,38.5,32.7,26.2,55,52.7,130.6,137.9,127.2,64.3,38.4,93.8,71.6,94.6,103.1,87.4,78.8,107.6,262.3,452.9,1.7,293.1,262.5,103.7,106.4,58.5,64.3,75.7,52.9,56.1,102.5,137.2,71,100.9,80.1,80,69.4,68.1,104.9,87.7,60,76.1,40.9,110.6,56.1,60.4,54.7,57,57.3,61.9,61.5,68.5,127.8,125.7,281.4,279.4,214.8,241.7,4.4,333.4,78.2,225.1,96.3,319.7,486.9,201.5,28.4,33.1,48.2,56.2,26.7,53.1,30.2,157.2,5.3,24.3,5.3,190.2,37.6,29.9,122.6,19.4,40.3,32.6,22.9,21.2,19.4,23.4,25.2,24.1,19.4,23.1,17.3,24.4,16.6,23.2,22.7,22.1,26.8,25.2,21.7,27.4,26,24.3,20.8,47.4,79.6,97.8,25.4,48.3,30.5,40.4,36.1,222.9,145.5,178.3,513,214.2,214.1,202.3,212.1,219.1,220.1,356.8,175.8,113.3,176.4,149.1,71.4,42.1,150.5,0.9,126.7,130,125.2,58.1,105.9,99.1,102.9,76.1,153,256.9,166.5,88.4,82.6,120.5,104.7,63.5,89.9,89.4,88.7,89,88.4,89.8,91.5,79.3,88.5,90.1,92.3,88.3,101.3,86.5,85,84.7,85.7,83.8,88.8,80.5,60.8,60.9,131,144.1,127.1,86.1,89,76.6,62.3,63.4,61.3,81.8,96.6,37.4,32.5,31,31.5,19,44.5,31.5,30.1,31.4,33.2,29.5,37.1,30.8,35.9,30.8,33.2,34.1,31.2,33,31.5,31.9,33.9,32.1,31.9,34.7,54.6,73.6,66.6,67.8,65.5,67.3,64.5,17.3,226.5,71.1,56.9,6.8,63.8,70.7,154.7,190.7,75.8,23.3,22.6,40.6,34.1,31.8,29.5,29.3,29.5,28.1,29.8,28.9,29.4,31.6,30.8,33.9,37.1,30.8,30.6,27.6,30.3,34.1,97.8,83.4,180.9,159.9,109.6,56.3,111.4,111.8,114.5,109.6,99.2,186.1,125.1,18.7,189.3,107.9,179.9,57,56.2,67.2,78.2,78.3,99.8,107.7,106.2,110.3,29.9,78.9,19.8,87.4,108.8,110,108.4,109.7,110.2,114.2,108.7,41.3,79.6,54.9,107.4,99.1,13.3,108.6,112.4,109.8,111.5,109.2,111.9,107.5,104.9,105.7,108.1,110.8,114.3,111.4,114.7,112.1,132.6,82.5,219.5,214.1,222.9,220.1,225.4,170,52.5,103.5,109.2,107.3,125,15.8,83.7,109.2,113,108.4,114.3,110.8,110.8,113.9,80.6,64.1,79.3,113.1,76.8,89.4,113.2,149.3,14.5,165.8,53.9,141.8,153.2,117,113,113.9,105.2,108,2.6,92.3,47.9,77.8,85.1,102.2,82.5,109.9,114,97.1,18.2,108.1,110.2,107.1,107.8,109.4,107.8,108.7,110.3,103.5,111.7,113.2,27.8,81.3,116.4,129,104.5,29.1,85,111.7,186.5,13.3,78,104.1,112.9,109.6,94.1,114.7,68,65.2,66,145.1,206.7,145.1,103.4,21.2,105.6,131.3,161.6,145.6,206.6,60.8,79.7,74.6,54.9,56.7,61.3,42.1,21.4,65,40.8,37.3,35,39.6,66.2,65.3,68.8,67.6,63.7,59,63.9,77.9,76.2,271.2,72.1,63.2,69.3,67.3,64.8,63.4,64.2,63.3,40.4,38.3,53.8,50.2,50.1,63.7,62,23,26.9,49.7,44.7,32.7,31.3,31.9,31.4,47.9,31,34.3,31.1,34.8,32.6,29.8,31.2,28.1,45.9,97.8,142.8,281,311.1,51.5,51.9,48.1,52.3,40.7,35.8,72.5,69,45.6,61.7,55.9,58.8,88.5,49.3,50.6,54.2,49.2,47.6,40.7,30.8,63.1,48.5,49.3,49.8,12.2,8.2,33.6,61.7,38.4,29.1,30.4,49.6,128.6,29,22.4,83.1,61.4,43.5,37.4,41.6,44.8,40.9,52.9,58.3,102.3,49.1,51.4,37.7,34.8,47.9,204.1,26,26.2,21.5,22.3,27.5,35.1,18.3,8.5,9.9,13,15,12.3,33.8,52.2,27.1,14.2,51.8,54.7,36.9,20.2,27.6,29.3,29.1,26.7,19.4,16.3,18.8,17,19.7,17.1,5.9,7.6,7.3,6.5,4.8,16.5,26.8,16.2,5.2,17.2,32.4,65,64,33.1,32,17.8,16.4,25.2,25.7,26.1,104.3,33.4,23.5,38.4,35.9,24.2,26.2,42,41.9,84.4,16.8,42.4,20.3,17.7,42.6,31.6,13.4,13.5,10.3,12,22.9,15.9,15.4,17.5,18,10.4,147,61.9,24.9,12.4,8.2,22.6,23.1,12,17.6,25.2,11.1,15.5,14.2,15.5,21.1,21.6,21.6,19.1,32.8,31.8,19.3,23.1,296.8,11.7,118.2,16.9,15.5,13.4,14.7,14.3,15.4,10.6,13.4,12.9,24.8,19.8,24.2,11.6,10.9,21.7,25.4,14.9,9.4,8.7,10.4,8.6,9.7,9.3,9.9,12.6,9.2,18.3,14.6,16.2,17.9,5.8,11.1,81.5,137.7,82.2,35.1,71.4,46.2,23.3,134.3,46.7,135,46.5,193.8,66.9,57,51,2.4,39.6,3.3,13.8,11.6,43.8,24.8,100.8,133.4,310,2.7,13.6,25.2,111.2,7.5,31,4,11.5,28,13.1,71.9,11.9,5.4,117.5,88.6,61.5,3,28.1,24.2,10.6,1.8,6.7,6.6,11,11,11,11,19.9,29.6,10.8,10.2,18.9,44,46.6,39.6,13.2,183,9.1,41,60.7,14.2,84.2,29.9,155.7,106.8,63.1,44,19.2,35.4,40.5,170.8,308.9,5.8,5.8,3.4,3.2,3.4,3.4,3.5,3.6,3.6,2.9,2.9,2.9,9.1,5.2,2,29.3,67.7,51.7,61.1,22.7,62.2,17.4,48.1,96.8,24.4,38.1,41.5,121.4,20.6,8.8,32.1,5.4,18.7,5.3,5.4,5.3,5,5.7,5.3,5.4,11.7,10.3,15.5,22.4,49,9.4,1481.3,44.6,137.4,46.3,38.7,2.7,1.8,2.6,104.9,8.4,6.1,4.1,4.1,5.3,5.3,5.3,5.5,5.4,5.5,7.4,9.6,86.5,41,160.4,110.5,45.7,152.2,74.9,274.5,83.1,334.3,57.7,128.3,1.5,99.8,51.9,85,539.4,378.3,726.6,162.8,27.6,560.8,394.6,69.4,3.8,84.9,25,219,27,80.6,49.7,52.6,44.5,29.7,11.5,38.4,8.7,52.3,30.1,4.5,15.8,28.1,30.7,241.8,56,28.8,45.7,41.1,53.8,47.5,0.2,45.2,39,38.7,57.3,37.7,35.7,36.9,38.6,41.1,32.8,31,51.3,46.9,46.6,35.5,34.7,37.2,37.3,38.1,35.7,36.7,32.4,39.6,35.6,35.2,38.3,35,38.2,35.2,39.4,34.1,38.3,34.8,35.6,35.7,34.5,37.6,33.7,36.8,34.7,36.4,194.3,186.9,72.3,39.1,37.4,42.1,52.8,41.3,31.3,36.4,34.5,31.7,15.2,44.9,40.9,34.8,36.8,35.8,31.6,40.6,36.5,36.6,34.1,40.6,35.9,33.3,36.6,27.8,33.3,33.3,33.5,29.9,49.6,30.5,31.4,32.8,30.5,25.4,33.5,37.7,28.8,28.8,28,39.9,33,45.2,44.7,166.2,136.3,172.2,80.6,113.8,43.8,141.8,57.9,33.5,2,27.2,35.7,62.4,36,239.1,92.8,698.9,71.5,256.2,122.4,105.7,142.4,16.9,81.5,68.6,66,67.7,66.1,87.2,73.7,67.3,65.2,78.9,53.5,55.4,269,332.2,66.4,50.2,56,63.7,68.9,63.9,66.7,67,68,25.3,94.2,284.1,184.3,166.2,215.4,139.1,43.6,62.7,158.8,62.5,24.4,200.8,128.4,96.1,99,116.8,64.2,123.9,25.1,117.9,120.3,99.8,74.5,75.1,69.3,58,58,101.6,85.6,66.6,133,102.8,28.3,99,68.8,81.7,218.5,98.7,83.4,128.4,156.5,133.7,161.9,99.4,208.2,105.8,73.1,61.2,17.9,46.6,58.4,67,78,102.7,0.6,218.9,38.4,45.6,45.7,27.8,45.4,37.8,36.7,48,20.2,30.4,46.9,44.5,50.5,70.2,72.7,171.3,177.7,69.7,69.4,56.7,56.6,46.4,46.1,44.3,84.7,151.8,179.1,150.8,164.8,84.3,62,136.7,38.7,36,61.3,7.8,45.8,84.8,63.6,100.3,49.8,41.4,45.9,26.9,20.4,43.8,20.8,20.7,31.3,27.5,29.7,36.8,39.4,98.6,127,72,54.1,54,387,156,12,37.3,33.8,44.6,45.2,43.3,43.2,30.6,30.5,50.6,25.5,28.8,49.9,46.9,41.1,37.5,123.9,160.9,54.7,59.9,38.9,40.4,38.9,157.5,42.4,40.6,36.5,29.7,34.6,20.4,39.3,40.7,42.4,39.2,38.5,41.7,42.5,40.4,41,39,19.2,27.3,47.6,49.4,42.5,92.2,65.5,25.7,105.3,18,61.4,200.9,198.8,41,38.4,38.8,38.9,40.9,78,176.6,176.2,88.1,82.6,122.1,123.3,161.3,40.9,39.7,40.2,40.3,47.2,32.2,38.2,39.2,54.8,44.2,14.8,46.4,46.6,153.5,117.3,160.5,157.3,80.6,106.6,53.8,31.6,35,36.6,35.8,36.7,38.7,36,32.7,32.1,30.5,32,30,166.3,108.6,43.8,106.7,336.7,58.3,198.2,126.9,103,57.9,58,33.1,20,28.9,69.3,67.3,75.3,39,50.2,49.8,25.3,22,25.5,23,23.6,82.2,8.4,182.1,83.7,38.5,48,29.6,31,18.8,17.3,27.6,91.1,28.4,27.5,19.2,24.3,24.9,29,27.6,22.4,21.6,25,24.6,15.4,25.7,39,53.9,70.4,67.1,64.1,58.9,61.5,88.3,50.1,54.7,50.9,119.3,287.1,48.9,49.3,97.7,84.9,79.8,38.3,18.7,68.9,64.8,39.1,48.3,64.5,49.7,52.7,52.1,39.8,43.4,39.1,30.7,39,60.3,42.1,56.2,28.6,25.8,40.1,38.6,68.7,28.9,33.2,28.2,27.6,49.9,46.6,47.3,54.3,81.7,71.9,61.4,78.8,82.1,101.7,28.2,81.4,16.1,49.6,42.6,84.8,61.9,73.1,46.6,52.9,77.3,58.2,101.6,52.6,18.2,56,36.5,55.6,41.1,38.6,55.6,91.1,100.9,80,64.2,57.4,88.1,38.8,66.4,295.7,137.3,79.1,53.5,47.8,48.3,64.6,66.9,170.9,356.9,69.3,368.5,256,69.8,131.2,92.8,116,101.9,94.7,275.7,127.8,125.2,219.1,131.8,90.3,37.5,90.2,48.4,177.2,104.7,105.6,72.4,71.8,87.7,110.9,103.5,71.9,124,292.7,274.8,62.7,113.2,205.1,132.9,196,162.1,75.2,131.7,156.5,378.2,234.8,152.1,230,87.6,0.3,28,150.2,35.2,62.2,74.2,14.6,73,65.4,108.5,84.4,87.2,93.9,289.7,175.3,81.5,70.8,75.5,76.3,69.7,96.5,10.8,74.7,93.4,68.6,76.8,68.9,50.6,66.5,61.3,73.2,12,99.5,111.3,150.3,244.2,193.5,165,27.5,111.8,72.9,59.3,71.8,45.9,53.1,57.5,51.2,67.9,81.5,72.6,15.8,43.9,52.3,63.4,74.4,185.6,321.6,285.4,14.1,144.5,126.9,108.4,86.5,91.6,75.6,64.1,38.7,39.6,47.2,153.2,99.5,116.7,149.7,113,106.4,85.9,80.3,144.8,57.3,448.1,22.9,404.5,157.9,312.7,212.5,192.3,190.7,191.1,123.3,113.2,194.3,328.7,70.5,32.3,127.3,127.1,202.5,119.6,120.2,205.9,92.4,47.6,131.1,23.7,180.5,195.5,107,160.9,38.7,195.7,165.5,139.9,282.3,408.7,205,194.3,71.4,91.3,43.5,79.1,98.6,126.3,86.8,133.8,95.9,117,173.4,169.9,466.6,72.4,194.6,125.1,182.9,209.1,153.1,139.5,163.4,141.3,119.5,3.3,169.7,173,142.7,216.3,176.8,174.6,155.9,242.1,460.2,150.4,75.6,217.4,141.3,91,62.8,80.6,15,10.5,61.5,79.4,54.2,69.6,74.2,55.4,77.7,90.7,74.5,13.7,90.7,34.1,81.2,80.8,104.4,74.9,10.5,73.8,76.4,73.5,92.8,109.3,72.7,179.9,233,373.5,557.7,192.8,19.9,187.5,19.5,76.5,72.7,49.3,103.9,329.6,11.3,259.5,128.1,95.9,72.5,56.6,13.8,34.2,71.6,19.6,86.1,32.7,117.2,44.7,44.3,58.3,11.2,46.3,91.1,91.5,165,126.4,132.6,118.4,117,75,147.1,193.6,99.7,163.2,264.9,164.1,202.1,114.2,120.1,222.8,202.7,268.6,253.4,128.4,85.7,106.9,82.5,86.4,124.1,96.3,98.9,45.2,24.5,26.6,29.1,56.3,73.5,80.2,69.6,69.3,162,48.9,102.1,120.3,348.7,154.7,112.4,127.1,133.4,126.8,165.3,56.2,120,200.8,92.6,111,101,143.5,95.3,19.8,197.5,263,263.9,341,293.7,162.4,151.1,163.5,135.9,105.9,115.5,103.3,118.5,143.6,111,123.6,12.7,99.2,82.5,82.1,64.9,49.3,31.3,37.8,50,51,36.2,32.7,68,79,15.8,30.4,132.4,88.8,86.9,57.9,77.1,97.4,72.1,75.2,85.1,87.4,61,94.4,103.5,132,351.8,75,40.8,42.4,65.5,65.4,61.7,60.5,38,48.4,31.4,36.9,49.3,53.1,39.3,42.2,64.4,31.1,33.8,60.3,81.5,65.3,38.8,49.9,39.6,49.7,30.5,28.6,41.4,5.2,21.3,12.1,30.1,26,37.4,36.8,37.8,57.2,48.7,37.7,214.1,183.8,263.8,296.2,117.3,119.4,28,13.5,106.6,56.7,104.3,69.7,62.5,67.7,67.9,71.8,81.2,63.6,43.7,49.4,48.8,44.9,98.3,81.9,75.7,104.6,72.2,66.3,49.1,45.1,13.7,21.8,15.9,88.1,62.4,18.1,62.2,43.6,47.9,59.8,81.3,53,165.9,66.6,62.5,51.5,48.9,63.1,18.7,47,104.6,184.2,143.4,150.4,67.6,64.1,100.6,67.6,115.3,104.1,92.3,99.8,132.6,247.1,156,93,140.6,91.1,209.1,264.5,0.5,52.8,0.8,1.8,30.8,38.3,1.4,63.5,13.2,1.1,19.9,37.9,34.7,47.9,44.2,44.1,30.4,5.4,72.4,71.9,91.3,64.2,53.2,50.1,47.5,44.5,53.1,61.3,60.9,52.5,61.8,49.4,50.4,41.8,43.6,40.7,41.2,39.1,37.1,46.7,43.7,57.7,57.9,45.2,46.2,33.9,48,38.7,44.7,49.3,59.7,57,295.4,293.9,120.5,103.8,40,36.3,41.9,39.4,51.4,51.5,40.1,39.6,50.5,34.4,53.7,49.6,56.4,32.2,35.9,40.8,37.5,66.4,39,36.3,35.5,48.4,52,73.3,33.7,31.1,44.8,53.3,60.1,38.1,63.3,45.5,37.9,59.7,47.5,12.9,58.1,0.4,51.4,52.4,66.5,77.5,80.4,96.7,99.5,61.4,78.3,77.8,48.6,42.8,77.2,76.7,55.7,55.8,112,141.2,19.6,60.2,460.8,112.8,43.9,175.3,167.4,91.8,102.2,129.6,79.6,48.7,79,52.1,51.4,53.2,85.4,184.5,67.1,70.3,51,72.3,42.2,77.6,22.4,77.9,46.1,43.1,59.4,98,78.3,4.2,152.9,89.8,76.6,97.3,79.7,113.5,15.3,81.4,91.5,120,104.5,53.9,56.4,70.7,51.9,118.9,12.3,253.1,35.7,19.9,195.7,57.1,6.1,18.1,6.7,390.7,195.5,125.5,80.4,74.5,117.7,132.9,133.8,85.4,83,97.7,35.6,36.7,76,103.6,53.8,58.2,56.9,53.3,52,67.8,1276.8,38.4,234.9,256.6,725.7,650.5,109.4,93.7,94.7,82.4,61.3,81.9,53.3,62.5,84.6,36.8,57.8,75.6,80,46.6,49.5,63.7,74.4,53.9,65.6,83.6,50.9,48.4,89.2,89.8,65.3,55.9,52.4,180.3,11.2,178.4,115.4,83.1,60.8,52.6,29.2,79.8,67.5,71.8,103.1,125.7,95.9,104.1,92.3,111.2,112.7,92.2,75.2,106,67.3,53.6,62.2,71.9,66.3,74.9,95.4,92.3,328.7,27.5,5.9,151.2,149.3,96.2,55.1,64.5,79.6,78.9,97.7,87.2,51.2,53.3,27.9,32.1,35,65.4,71,70,55.4,72.3,93.7,32.7,80.3,127.2,222.9,203.4,1.7,145.8,61.7,6.6,38.7,51.9,27.3,30.9,43.3,59.5,67.2,67.4,47.6,38.4,49.5,65.9,57.7,68.4,62.3,47.9,52.6,57.5,53.8,52,52.4,47.6,53.5,837.2,35.2,20.2,15.5,53.4,46.2,57.6,48.8,56.9,52.4,54.6,84.7,72.9,78.1,922.4,69.1,53.5,58.4,45.1,44.1,50.3,57,52.1,22.5,51,45.1,27.1,24.3,38.9,14.7,50.4,64.7,63.9,86.3,135,29.8,155.9,31.1,51.2,34.8,34.1,48.3,51.4,34.5,42.9,58.8,42.5,65.1,169.2,39.5,308.9,14.5,5.2,343,44,17.1,25.6,63.2,64.4,71.4,65.3,15.5,18.1,52.5,18.7,28.2,1.5,20.1,12.3,36.2,33.9,40.9,39.6,65.6,62.9,107.1,94.3,130.4,131.7,80.8,78.6,1051.3,824.8,359.7,496.3,120.8,1026.8,77.8,68,1038.1,261.1,80.6,68.9,278.9,65.8,36.9,38.4,42.3,43.2,52,59.5,69.6,58.8,49.3,56.8,291,61.4,44.5,45.5,59.2,47,13.1,21.7,14.6,67.1,79.7,65.8,80.2,39.4,66.2,79.6,64.6,71,484.2,76,53.1,50.6,63.3,46.5,39.6,41.1,59,1067.3,236,235.8,64.1,10.8,152.8,48.4,65.1,81.4,1808.5,1059.8,274,179.8,55.3,55.6,299.8,114.3,98.7,22.2,99.6,95.8,203.2,108.5,141,3.7,1155.3,9.5,504.2,106.6,40.8,155.8,375.6,51.2,45.7,42.2,39.6,32.4,74.6,41.6,69.4,122.6,89.9,24.8,74.7,97.9,32.8,76.8,74.6,63.9,50.6,12.6,65.2,20.5,11.5,12.8,97.3,55,44.5,35.6,47,31.3,38,37,48.8,49.7,42.9,44.4,46.1,40.2,23.7,2.8,17.1,36.6,39.3,66.3,122.3,48,45.8,69.4,36.4,51.8,58.4,37.5,38.7,32.5,68.9,75.9,535.7,21.6,456.1,19.4,300.9,194.8,2581.2,39,168.2,6.4,428.1,172.1,1018.7,60.3,61.1,61.2,46.8,47,37.9,43.7,37.6,35.7,43.9,56.7,44.6,50.7,348.8,51.4,145.6,188.6,68.3,56.6,43.3,54.9,48.9,53.5,65.6,42.1,44.2,52.8,47.8,44.7,25,49.8,43.8,43.1,50.6,54.1,50.8,52.7,37.9,51.3,39,39.7,47,50,43.3,41.7,50.9,67.7,71.9,73.8,50,87.4,110.2,16.1,533.5,270.7,108.2,194.8,63.8,64.6,61.7,61.5,63.3,65.6,92,90.7,51.1,50.9,66.8,64.1,85.1,93.1,87.7,53.9,53.6,92.9,93.4,111.3,5,106.5,101.5,76.7,75.8,688.9,226.8,168.8,186.3,195.3,484.4,55.2,37.9,44.5,160.6,28.7,21.5,121.5,50.7,76.3,244.2,18.4,221.7,144.9,194.3,164.8,41.8,20.3,58.8,65.2,28.8,6.3,9.9,21,21.9,71.5,47.3,24.4,22.3,20.8,19.5,17.4,28.6,11.7,13.5,21.1,16.2,21.1,19.7,18.4,20.4,28.6,31.5,86.3,85.8,46.9,96.5,47.6,8.4,39.8,55.8,18.7,15.8,43.1,30.9,23.7,44.1,11.1,12.3,12.4,9.7,10.1,9.2,13.2,12.3,9.4,9.7,9.9,11.1,11.1,13.7,9.9,9.8,8.2,10.8,11.7,9.4,11.2,15,47.9,16,16.5,17,17.5,17.3,13,15,14.5,9.2,26.5,17.7,21,64.7,63.3,64.7,28.2,46.8,76.3,24.6,194.2,82.3,159.1,174,162.5,54.3,88.2,115.3,17,58.3,50.7,7.6,31.4,12.1,13.6,18,13.9,19.2,17.6,17.1,22.7,36.8,29.3,21,18.8,20.7,16.7,23.1,12.4,13.7,12.4,11.2,18.1,21.9,19.4,15.1,12.7,13.6,15.5,14.5,13.9,16,20.2,30.4,36.2,19,12.7,18.6,15.1,22,24.4,102.1,54.6,13.3,191.4,79.4,53.4,54.2,11,64.2,117.5,116.3,149,669.5,69.1,47.8,72,47.9,75.7,77.8,82.8,85.4,80.8,179.5,950.8,205.2,75.5,196.9,142.4,141,84.8,205.8,119.6,198.8,276.5,223.8,212.7,486.7,146,83.6,249,107.2,194,133.8,170.9,88.8,488.4,167.8,180,121,116.9,91.8,132.2,129,90.1,92.6,85.9,113.4,102.8,97.1,94.2,101.7,105.9,365.9,222.4,147.6,21.8,196,377.8,126.6,92.1,110.6,108,115.8,120.3,105.7,102,84.9,68.9,132.8,136.6,170.5,247.6,167.4,128.3,137.6,100.1,102.6,130,141.8,118.1,103.6,82.2,136,135,171.5,171.1,90.3,87.1,86.5,9,81.8,52.3,130.1,123.4,78.7,96.5,105.2,69.7,69,101.6,49.7,48.8,102.2,63.3,62.2,16.2,82.3,94.9,81.3,84.7,14.7,70.1,76,103.8,101.8,127.9,118.7,102.4,89,65,77.8,65.7,156.2,167.4,158.4,68.9,64.6,15.3,41.4,17.3,198.3,200.8,135.6,131.1,283.4,159.4,55.1,58,56.3,116.2,115.5,214,201.8,93.9,92,93.8,97,180,115.2,101.6,79.8,115.8,120.2,150.7,225,536.5,194.8,606.4,9.9,39.1,40.5,24.5,103.2,7,39.6,34.8,24.6,18.3,19.8,25.9,28.9,23.3,27.3,21.5,25.7,24.4,31,24.6,24.8,16.7,21.9,37.4,88.8,52.3,39.3,34.3,13.3,10.5,13.9,14.9,15.2,18.9,16.6,17.7,17.4,21,22.8,29.5,163.6,31.2,37.8,51.2,81.8,45.2,64.5,61,44.4,88.1,105.3,85.9,65.9,86,101,49.8,58.4,61.7,0.6,53.8,63.2,61.8,63.8,59.7,102,131.6,80.5,79,85.1,146.9,123.2,75,110,100.8,119.7,124.6,11.3,132.5,120.8,124.4,121.2,118.6,902,48.4,53.9,62.6,55.2,62.8,39.5,41.1,84.2,81.6,88.2,86.8,60.2,64.8,46.6,55.2,49.9,45,51.7,99.9,58.7,66.6,52,133.2,535.4,61.8,104.4,120.2,109.8,88.9,67.5,51,11.6,39.9,53.7,55,57.7,55.6,59.1,38.3,40.6,7.3,36.1,58.1,72.7,177.2,95.6,134.7,64.3,72.7,33.7,76.5,80.7,62.4,60.8,73,121.3,89.1,56.3,52,44,56.6,70.4,102.2,86.1,73.6,123.5,56.1,78.9,13,29.5,32.8,171,123.7,134.8,224.1,115.9,196.5,148.2,175,152.4,69.7,28.3,66.7,14.1,156.6,156.4,124.3,99.5,120.7,96.5,36.4,29.4,178.6,185.9,100.1,457.1,411,305.2,321.3,252.8,217,7.4,247.6,257.3,74.2,544.3,337.7,67.1,210.6,214.7,267.7,440.2,244.6,213.8,239.5,394.3,239,77.1,112.5,130.4,190.5,154.6,173.3,200.8,103.3,252.2,276.8,336,267.9,324.5,184.9,129.7,170.5,122.8,82.5,86.7,37.5,8.5,54.8,89.3,206.6,370,41.2,250.6,357.4,320.2,312.1,277.1,157.5,331.8,279.7,332,369.4,459,176.8,151.2,127.7,129.3,146.9,34.4,60.3,257.4,140,188,3.3,165.3,223.3,174,233.8,218.6,262.8,228.1,228,181.5,165.8,232.4,228.9,197.9,280.3,233.6,237.8,266.1,295.2,268.7,236,24.6,255.6,176.2,234.7,263.7,94.7,79.3,182.7,85.2,37.3,82.6,118,36,47.8,81.3,211.6,179,187.2,156.6,172.3,143.6,141.3,179.8,132.7,117.9,12,101.6,159.4,281.5,234.5,137.1,9.1,164.5,117.5,170.4,148.4,73,53.1,72,87.8,116.9,112.5,147.5,238.2,252,23.7,198.1,192.4,139.3,131.9,220,316.5,138.5,136.2,23,33.8,114.1,109.6,143,122,84.6,132.8,112.3,162,163.9,208.2,28.5,224.5,330,880.4,11.6,629.5,129.9,163.9,11.9,156.3,156.3,167.1,141.6,136.5,136.6,113.9,101.5,167.3,15,116.3,117.4,83,82.9,26.9,77.2,75.5,100.5,59.8,143.1,140.7,151.4,145.5,149.7,187.4,214.5,243.4,124.5,180,172.1,178.4,334.3,253.8,210.7,181.5,174,17.1,32.7,256,197.3,210.2,249.3,241.7,159.4,11,223,238.7,194.2,173.1,106.2,148,276.2,227,43.3,195.9,255.5,299.6,259.2,157,88,151.7,165.2,188.6,183.2,109.5,30.6,253.2,74.2,129,332.9,240.5,467,475.3,277.8,376.4,11.2,434.3,24.5,170.5,51.2,177.6,185.9,165.7,208.1,158.9,173.9,132.5,225.7,222.4,229.6,189.5,377.3,23.3,49.8,124.9,90.9,59.8,179,201.2,144.3,65.6,122.7,214.2,141.7,269.9,223.7,74.5,423.1,271.1,86.2,102.8,107.3,181.4,206.1,168.6,388,57,255.6,205.1,94.4,76.9,76.5,130.1,161.1,131.4,147.8,142.8,133.3,138.6,161.8,443,68.5,195.6,237.8,226.2,206.2,266.5,233.5,177.6,106,128.3,103.2,122.4,111.4,154,132.2,275.2,248.2,127.2,154.5,148.2,95.9,229,321.9,1,219.5,16.7,173.5,192.3,99.6,138.8,344.5,178,122.3,89.2,107.7,116.1,144.3,140.4,145.7,196.5,947.3,55.2,45.1,131.1,149.1,115.9,114.8,152,133.1,155.1,143.8,48.5,18.7,59.2,90.4,132.7,26.6,57.8,114.9,40.5,48.8,174.2,232.7,2340.9,358.7,77,220.9,204.2,127.7,199.2,279.1,125,162.5,241.1,202.6,230.7,106.7,336.2,297.1,148.1,114.7,96,153.8,107.1,647.8,228.2,29.1,4.8,203.4,239.6,256.9,202.8,27.8,169.9,128.4,137.1,133.4,90.4,181.8,141.9,117.2,114.5,161.4,380,250.4,120.7,181,122,174.3,112.1,113.9,174.7,111.6,165.3,411.4,106.9,133.8,119.8,167.9,126.7,145.4,299.2,11.5,112,38.2,101.1,267.4,148.1,65.7,177.3,103.8,247,88.7,88.8,111.8,110.7,235.3,215.4,36,376.9,70.1,253,344,258.6,241.8,32.5,2,267.4,330.1,311.3,221.2,205.4,121.1,139.3,140,173.8,229.5,10.5,114.7,208.4,177,202.6,160.6,203.3,84.4,65.7,14.5,191.9,36.9,15.4,47.8,27,17.3,23.5,22.3,27.3,23.2,25,20.2,24.9,6.9,16.1,15.3,12.2,17.9,20.4,18.6,18.7,29.5,26.1,6.3,9,19.7,18.4,24,26.1,30.3,79.5,24.9,25.7,22.9,22.7,24.5,17.2,23.9,23.4,28.3,25.1,35.6,50.6,16.3,498.2,94.6,2.8,424.5,500.6,210.9,130.8,692.4,10.6,152.2,169.4,218.5,164.2,126.4,115.7,22.8,44.1,46.6,37.2,31.4,73.1,186.3,110.3,129.5,222.5,46.3,49.9,93.5,82.6,92.5,29.5,178.9,294.4,280.6,203.9,188.8,189.5,233.7,182.3,243.9,219.5,291.3,203.7,311.4,214.2,321.5,213.9,228.2,296.6,162.7,332.4,218.1,203.5,127.2,216.5,157.7,220,170.2,289.9,314.7,524.9,187,89.3,60.5,48.4,85.9,63.9,24.6,71,66.5,63.1,70.4,46.7,55,49.7,47.4,69.9,80.1,83.9,73.2,64.2,114.8,432.4,63.9,895.9,147.1,46.4,140.2,150.7,130.9,139.1,315.3,389.2,255.1,119.5,159.8,198.8,99.2,155.3,0.5,161.3,99.7,182.2,125.2,125.7,147.5,135.4,155.1,107.6,143.6,194.6,194.8,20.1,4.2,336.2,338.4,306.5,102.2,166.1,129.9,130.2,85,109.3,283.8,13,1.8,197,101.4,95.7,277.3,310,114.2,128,93,230.2,127.8,170.6,156.5,197.9,131.6,116.1,89.5,101.9,90,118.5,117.2,285.6,220.3,126.2,129.1,158.3,104,159,123.9,105.6,91.7,90.1,129.5,144.1,205.9,197,199.2,563.7,1024,167.2,102.8,168.5,91.4,153.4,116.4,131.9,132.9,112.3,151.4,252.8,170.3,97.5,129.8,132.8,133.8,130.9,157.1,164.6,155.6,2.1,89.7,94.7,123.7,93.9,103.1,67,83.7,91.4,89.2,65.9,51.7,53.2,19.9,56,104.7,111.4,114.1,72.2,116.9,83.6,123.6,83.5,105.5,129.2,213.8,86.3,75.5,109.4,151.1,151,1080.3,111.2,110.8,131.3,113.4,112.4,110.1,26.4,102.1,26.3,70.6,36.7,44,74.4,61.4,57.9,120.9,112,113.9,46.1,21.2,69.3,77.9,72.9,102.3,73.8,267,175.3,43.4,115.5,123.1,110.9,117,71.8,77,103.8,8.1,185,320.3,266.5,12.2,215.8,138.1,21.3,9.4,28,105.7,89.6,133.6,132.9,129,106.2,117.9,27.1,95.8,478.8,208.3,394.3,424.7,50.3,843.6,211.1,215.4,137.7,117.7,188.5,741.2,213.3,129.8,208,254.6,251.1,117,118.9,63.8,58.8,64.5,62.8,1.1,79.4,48.9,57,62.9,48.9,62.5,64,51.1,58.9,100.5,10.9,264.3,74.7,78,49.7,60,107.1,92.4,102.5,71.2,76.7,68.9,68.3,76.6,63.4,63.6,100.1,51.7,49.7,71.4,70.4,1.3,46.1,47.8,48.6,70.7,51.3,42.7,35.9,38.2,33.6,64.7,45,32.3,11.6,31.9,32.4,8.5,44.1,55.2,39.8,42.7,35.8,32.4,31.2,33.4,54.3,76.6,71.8,5.8,416.5,81.4,163,133.2,55.9,56.6,81.2,97.6,96.9,83,72.6,17.2,127.5,257.7,105,115.7,112.9,107.9,108.4,35,84.6,100.6,112.8,166.7,285.2,149.1,110.2,7.9,104.6,108.2,78.5,94.8,85.9,104.7,85.9,65.3,15.3,31.6,67.2,56.2,84.1,16.7,42.4,303.9,98.7,78.3,70.3,90,71.8,74.5,95,58.1,7,71.4,101.2,75,60.7,105.6,442.1,117.2,89.9,77.4,56.2,56.9,75.4,97.4,261.4,172,599.3,158.6,85.9,85.6,108.6,97.7,83.1,86.5,55.5,85.1,62.3,497.1,24.4,294.9,266.1,98.6,69.1,68.3,65.8,77,85.2,91.1,81.9,95.1,78.4,65.6,64.6,62.1,64.6,83.6,83,85.9,80.7,84.7,92.1,1,95.4,139,144.2,141.1,144.7,125.1,63.4,60.4,96.4,95.6,104.8,98.4,65.8,71.7,103.1,106.7,65.3,62.3,61.5,76.1,54,54.3,29,28.8,58.8,61,61.5,62.4,295.4,0.7,129.9,16.1,81,91.7,165.3,18.6,160.4,142.7,13.1,156.1,95.8,33.7,236.6,222.3,108.7,119.4,239.1,272.6,264.6,311.3,398.7,228.8,135.7,99.4,113.9,117.2,113,120.2,110.5,116,118.1,112.2,100.5,94.9,104.5,109,111.4,105,102.3,114.2,170.4,138.7,138.4,228,265.7,198.9,78.5,78.5,52.5,52.6,63.5,62.9,44.1,44.2,87.8,43,43.2,75.9,76.2,84.4,83.8,97.1,58.8,69.5,167.6,70.3,77.3,72.1,5.3,49.5,49,25.2,33.9,87.6,87.5,62.7,8.2,123.2,91.4,80.2,99.3,46.6,44.9,215.5,114.8,112.8,105.1,109.4,96.7,107.3,123.8,173.8,178.4,106.5,142.1,137.4,113.7,143.8,99.2,103.1,45.6,5.1,56.5,133.7,104.1,121.5,142.2,235.2,250.5,0.4,197.7,127.6,90,76.1,77.1,5.5,37.7,61.9,132.2,235.2,129.4,137.1,167,167.8,264.7,19.1,121.9,199.9,95.7,99.3,194.6,86.9,72.4,146.1,120.9,98.2,134.7,146.7,135.4,141.8,13.6,165.6,213.5,133.5,196.5,147.8,188.3,190.9,176.8,64.8,145.9,206.9,307.3,240.7,170.1,190.5,138.9,92.7,6.5,78,43.2,34.5,103.3,103.8,57.3,61.5,120.9,250.2,166.5,104.8,106.3,118.8,50,100.1,22.2,53.7,81,109,116.5,86.3,75.7,108.5,55.2,56,54.1,54.4,86.9,110.5,131.8,155.3,176.2,124.9,48.8,127.7,105.1,86.4,114,92.4,89.9,356.2,493.5,317.7,198.6,166.6,117.1,214.1,164.8,101.4,137.9,40.6,97.6,136.2,102.4,112.7,105.3,32,72,85.9,99.6,75.9,94.9,51.1,51.3,102.7,60,69.4,82.4,129.4,70.3,99.7,140.6,116.6,115.7,112.9,132.2,113.9,47.5,102.8,82,73.9,130.2,171.6,63.8,51.5,78.9,26.1,697.3,115.2,204.4,184.9,151.3,102.6,93,100,118,109.1,91.3,169.9,80.9,113.2,139.7,310,125.5,124.2,87.4,126.5,121.7,102.5,89.5,118,117.9,5.8,110,121,109.1,99.4,139.8,197.1,613.2,316,358.4,227.4,189.3,199.6,149.6,89.3,72.9,84.5,95.4,114.4,92.4,77.3,80.8,124.9,91.3,77.2,114.4,100.2,115.3,244.1,143.9,184.1,136.4,154.1,271.2,178.8,185.7,205.1,128.1,62,23,85.1,3.2,81.9,50.9,50.5,63.2,53.6,145.6,32,139.2,123.6,37.5,42.6,147.9,104.2,238.7,132.9,119.4,99.2,97.7,163.4,106.9,106.4,91.9,91.7,71,70.5,84.5,67.6,98.1,39.4,168.1,190.5,39.6,49,88.4,85.4,27.9,121.6,84.8,80.8,92.6,111.4,79.8,67.3,137.1,92.3,88.1,113.3,75.4,94.9,150.9,135.5,166.3,101.6,119.7,96.1,107.1,91.6,91.3,99.4,67.8,77.1,383.6,94.8,84,63.9,80.8,70.9,89.7,50.1,90.4,43.3,86.1,50.9,55,97.1,59,90,92.7,80.5,77.2,67.4,73.7,96.8,101,272.8,174.2,25.6,87.5,151.3,114.7,104.7,105.8,101,101.9,77.2,128.1,114.4,109.1,135,155.6,130.9,174.9,241.5,138.6,125.1,155.6,279.2,784,73.2,284.6,28.7,395.4,356.7,378.2,311.5,175.9,510.4,122.1,65,65,133.2,100.4,61.6,61.5,59.9,152.4,98.7,64.7,112.2,93.4,93.1,92,90.9,144.1,65.6,116.5,184.6,78.2,75.1,9.2,129.9,59.9,56.3,20.2,79.1,106.7,115,63.5,66,54.5,63.1,78.3,84.9,77.3,80.8,70.4,72.6,120.9,63,66.1,91.5,52.1,54.7,49,50.7,103.5,93.3,101.6,69.6,72.4,72.9,68.4,77.6,77.5,64.5,113.1,404.2,132.7,128.7,65.1,184.3,132.1,126.8,129.8,128.6,55.3,115.8,56.4,61.1,59.8,58.3,104.5,53.9,50.8,64.1,53.7,118.3,57,49.5,5.3,82.5,90.3,92,79,78,76.3,92.6,90.4,116.1,119.7,58,59.2,89.9,67,72.9,69.8,64,65.9,78.3,73.6,81.2,53.4,52.3,64.6,61.8,74.3,41.4,45.7,78.9,39.7,51,38.1,40.8,65.7,68.1,54.3,45.6,43.4,77.8,92.2,89.7,75.8,61.3,84.2,83.6,87.8,89.6,156.6,78.8,77.1,77.3,80.4,77.6,82.3,73.1,84,88.8,92.2,88.1,91,41.9,30.5,69.9,76.9,78.9,95.2,99.9,78.1,77.7,77.8,89.7,46.8,44.4,78.5,85.4,40.5,39,51.7,48.6,68.1,23.2,81,62.2,45.8,90.4,62.7,66.3,89.3,66.1,104,50.2,46.8,70.5,65.9,54.8,82.5,57.7,64.7,78.5,129.7,4.7,36.2,4,73.9,71.9,70.9,42.9,42.2,84.4,101.8,101.2,77.3,75.7,116.5,119.6,105.8,264.3,2.1,147.6,124.9,89.3,138.4,79.4,95.8,71.5,77.1,77.2,99.1,85.6,85.1,0.1,21.3,71.5,71.8,91.8,83.3,289.5,193.7,280.9,83.9,106.2,109.9,173.1,80.7,11.7,1.7,176,92.8,100.5,55.7,109.2,230.1,336,30.9,74.3,75.4,142.4,143,146.7,329.9,120.3,147.1,125.6,184.2,216.4,2.5,88.3,52.8,252,252.8,285.9,219.4,95.8,83.1,307.4,169.3,63.5,8.1,89.8,134.3,201,173.9,175.4,175.2,175.4,171.5,487.7,175.2,134.5,66.8,66.2,58.1,57.7,59,58.6,117.8,59,58.1,64.2,63,66,65.7,163.1,86.1,87,60.2,47.9,142.9,243.3,259.5,372.5,438.4,1082.6,288.5,86.1,85.8,110.7,113.6,115.5,76.1,61.1,61.4,118.3,117.5,109.2,109.8,20.8,81,80.1,244.3,126.4,21.4,144.1,135.6,124.7,32.9,101.3,100.9,58,61.8,122.9,134.8,84.9,165.8,95.2,110.9,273.5,237.3,125.3,65.3,63.4,43.5,51.8,65.2,66,52.6,271.4,51.1,41,38,32.7,26.7,44.2,50.2,26.3,25,51.5,26.3,25.4,36.3,27.9,26.4,62.4,33.5,33.6,33.6,42.2,34.7,27.5,25.9,38.8,65.4,51.7,38.6,50.8,0.9,38.6,52,50.8,51.7,54,31.3,30.5,51.6,51.8,46,44.4,43.4,45.7,90.3,74.5,152.7,82,42.8,47.2,40.5,37.6,63.9,52.9,43.8,47.5,50.7,52.7,90.8,44.6,46.6,76.5,78.7,114.9,187.9,269.7,168.6,66.6,67.8,71.5,73.5,64.9,61,62.6,63,64.6,64.7,66.5,64.4,65.9,272.5,57.4,91.8,79.7,79.5,53.3,144.4,162.4,132.3,59.6,61.7,65.6,42.5,41,61.5,55.2,66,67.4,65.1,103.9,85.6,75,88.8,78.6,100.4,144.3,2.2,49,129.2,40.7,46.3,47.8,74.6,72,151.1,89.4,74,52,5.2,46.8,103.6,55.3,45.8,10,37.5,127.2,91.1,118.5,325.2,127.1,89.6,85.4,88,88.1,118.7,133.7,287.9,143.4,66.8,37.6,196.1,258.2,149.5,111.3,38.8,207.6,292.9,193.5,74.8,74.9,75.4,75.2,74.4,74.4,64.7,64.9,66,62.8,88.3,82.9,78.9,99.2,108.6,262.8,221.9,242.1,249.3,240.6,169.9,179.6,100,51,143.6,444.7,11,208.3,102.2,111.1,74,30.4,98.1,88.8,43.6,43.5,118.1,67.3,97.6,59.4,61.4,64.9,65.3,32.8,29.5,28.6,119.7,244.4,243.8,138.3,65.7,46.8,50.8,95.7,229.3,59.2,104.8,104.4,283.1,423.9,67.7,408.8,210.5,293.8,246.3,158.4,160.8,183.8,167.1,164.1,100.5,49.7,89.1,99,87.8,705.6,188.8,22.8,115.9,118.8,131.4,79.5,86.9,75.7,68.9,141.4,156.2,128.1,151.4,379.3,30,46.3,56.2,67,55.1,76.2,78.1,61.4,65.5,31.1,31.8,36.1,36.4,71.6,59.4,64.1,64.1,65.2,58.5,62.2,137.3,137.2,82.5,70.9,69.3,65.2,83,85,86.3,31.1,42.1,46.5,84.7,59.7,62.7,160.3,64.4,62.1,80,79.2,65.5,74.1,61.6,40.8,43.3,39.5,50.6,67.4,53.4,50.5,46.5,55,36.6,18.1,26.9,43.6,42,55.3,43.6,75.5,79.5,57.5,89.6,129.8,114.9,153.1,160,95.1,94.6,83.5,14.2,285.6,362.5,249.3,135.2,159.4,74.2,178.5,158.9,192.7,171.1,111.8,90.8,173.8,74.4,158,176.7,145,158.8,170.2,193,155.8,128.5,115.6,521.3,1488.6,82.5,119.1,274.3,344.1,154.2,417.7,24.2,66.7,176.4,88.6,107.4,136,305.1,0.4,288.7,378.7,162.9,117.8,146.3,98.4,12.8,148.7,173.7,161.7,161.4,161.2,277.9,418.6,186.6,172.8,172.3,344.9,40.1,31.4,69.5,70.6,142.1,135,231,111.8,175.3,77.2,75.1,175.1,73.6,75.9,149.1,214.9,82.9,15.6,34.7,379,53.4,53.6,105.2,104,110.1,52.6,52.7,26.5,26.6,53.3,51,51.3,109.3,53.6,53.6,53,53,52,52.2,52.8,52.7,54.8,54.7,104,105.5,102.8,104,102.7,103.3,101.6,51.8,52.2,51.7,51.8,51,50.7,103.4,52,52.2,99.8,102.9,51.9,51.8,102.6,103.5,102.1,51.8,51.5,51.8,51.7,104,51,51.1,103.1,51.1,51.1,100.5,51.5,51.2,102.8,103.4,102.5,52.2,52.2,103.2,102.9,104,65.2,11.9,168.4,103.5,112.2,50.7,53.9,75.7,27.6,97.8,215.9,101.7,89.9,90.2,76.8,77.6,193.6,97.5,97.1,103.8,80.8,49.1,64,51.3,50.8,52.3,52.6,77.5,77.8,100.3,54,39.1,77.5,38,56.3,93.9,101.6,8.5,104.2,52.3,52.3,51.5,10.2,41.9,51.6,373.7,103.2,105.1,50.3,51.9,104,103.1,55.1,55,51.8,51.6,51,51.4,52.7,51.8,51.1,52.2,51.1,51.4,54.3,31.2,44.6,50.8,50.3,1.2,52.8,51.2,52,52.1,58.3,97.5,81.2,88.4,87.7,52.1,52,51.6,52,51.9,51.8,52.2,51.9,51.5,52.2,51.8,51.9,52.1,51.6,51.4,52.2,52.9,51,53.2,51.6,51.6,52.5,52.2,50.8,53,52.2,52.1,104.4,104,53.8,49.6,54,103.4,101,105.1,51.7,51.5,104.9,271.6,445.8,375.8,442.3,28.3,17.9,118.4,201.9,99.7,162.8,344.1,214.5,247.5,214.2,230.9,571.9,705.6,276.9,314.3,118.5,125.2,6.7,17.6,138.2,103,121.5,150.5,153.3,353.9,141.2,98.2,127.6,48.3,76.2,79.5,98.7,153.5,173.6,235.7,314.1,304.7,217.3,229.8,186.4,125.4,184,98.8,15.2,73.9,133.6,133,105,39.8,46.9,57.7,47.9,64.3,122.1,72.4,22.6,100.7,97.4,77.5,74.7,86,91.6,97.6,78.6,83.4,115.5,84.3,61.6,14.3,90.4,83.1,53.4,165.1,73.7,61.9,62.8,89.7,79.7,129.8,92,148.3,117.3,107.7,163.7,152.7,140.4,132.1,83.5,64.7,74.5,71.8,72.9,75.8,100.2,67.9,58.3,77.3,64.5,53.6,51.4,123.8,74.4,125,207.1,272.5,268.3,115.7,45.7,94,88.6,76.3,80.4,95,79.2,52.8,182.2,194.9,60.8,64.3,65.7,52.4,82,109.2,122.8,119,61.4,104.5,71,90,86.6,40.3,87.9,81.2,106.2,163.8,113.4,76.8,210,185.8,129.4,297.9,313.5,128.4,133.9,114.3,63.5,94.5,82.3,58.8,26.9,65.2,81.8,76,113.4,81.9,128.7,105.8,110,124.7,143.6,83.3,77.6,18.7,38.4,114.7,108.4,119.9,76.8,25.2,82.5,139.1,15.5,204.3,275.5,207.8,184,303.5,138.5,185.9,371.5,10.4,116,149.2,291.8,86,201.7,88.7,32.6,129.6,0.2,87.3,98.7,49.6,127.6,16.4,267.4,56.6,46.3,41.1,2.4,130.9,241.8,45.9,51.2,70.8,50.1,44.3,18.1,61.6,65.2,150.3,84.3,68.7,57.3,167.6,179,192.9,70,21.3,191.6,68.4,81.3,59.8,35.7,20.2,56.3,89.5,70.1,107.8,197.1,157.7,262.8,337.1,176.1,246.4,104.7,116.3,76.1,125.1,183,44.5,55.5,47.3,22.7,52,9.8,91.1,88.7,61.5,29.5,76.5,55.1,99.5,43.6,233.7,183.8,127.2,225.3,364.9,440.6,520.6,476.3,410.9,512.9,471.7,445.4,443.7,411.3,130.7,110.8,68.7,42.1,38.8,98.3,269.5,222,418.3,75.2,143,193.1,27.4,160.3,321.9,27.7,206.9,114.8,92.3,105.2,56.1,32.6,90.9,113.1,123.9,147.1,167.9,143.4,36.9,21.2,177.2,167.6,258.9,127.8,55.8,69.7,19.1,139.4,158.5,95.6,105.9,111.2,99.4,91.9,100.9,72.5,132.8,88.9,82.7,76.2,57.4,95.3,10.9,52.1,43.1,48,121.1,106.8,140,168.2,132.9,83.3,59.6,54.6,78.3,76.4,57.6,57.6,50.8,43.9,86.6,94.4,64.3,68.6,47.7,43.9,54.2,52.3,49.6,67.8,52.4,74.4,58.3,57.9,53.6,55.7,47.2,60.3,39.2,47.8,32.4,33.7,59,56.4,53.7,54.4,47.8,61.9,64.6,62.4,92.5,92,107.3,87.4,124,160.1,96.5,96.7,150.8,137.3,145,121.5,102.5,72.4,104.7,19.6,114.6,97.5,157.1,73.3,25.1,152.8,241.9,81.7,151.2,206.7,321,169.8,155.5,107.6,162,132.7,106.8,100,73.6,86.8,48.8,54.8,88.9,51.3,58.3,63.1,80.6,57.2,12.9,51.8,93.1,31.8,51.9,82.3,94.2,39.6,339.2,201.9,87.8,325,40.2,76.1,103,92.3,78.2,74.3,54.4,60.4,57.7,79.4,70.7,76.6,28.3,86.7,135.1,94.2,96.8,82.7,88.3,2.9,70.6,73.6,65.3,42.2,92.5,114.5,121,44.4,133.9,256.1,248.5,166.2,121.2,105,100.3,115.2,76.3,58.5,55.6,54.1,50.5,53.3,48.4,84.2,82.1,93.1,96.9,97.1,84.1,96.5,109.6,86.1,47.5,82.2,110.5,134,129.2,85.1,79.4,56.9,64.5,64.8,78.2,66.6,51.2,44.9,54.6,92.8,181,184,98.1,105,58.5,68.4,101.8,100.5,143.3,102.9,50,24.4,117.6,144.8,205.9,62.1,208.8,25,32.6,118.1,99.2,68.8,60.1,58.8,119.8,133.5,119.8,161.1,131.4,194.8,143.1,102.6,100.5,192.7,109.8,121.2,151.4,198.5,170.3,156.5,151.7,183.7,237.1,262.9,268,211.4,134.2,131.4,98.1,46.7,46.9,78.4,199.7,170.9,162.3,165.5,44.1,201,130,179.7,119.1,102.9,126.6,113.2,135.2,125.9,161.5,134.4,119,150.8,143.2,120.5,126.3,38,53.3,245.7,230.8,219.4,167.6,7.4,133.2,134.1,151.9,146,144.1,87.7,100,131.3,110.2,89.6,121.9,138.2,78.7,78.2,19.6,6.8,185.1,123.4,123.5,34.9,145.5,145.6,97.3,80.1,39.6,143,236.7,205.4,96,82.2,66.7,63.5,70.7,73.4,68.5,52.6,78.8,62.4,85.4,74.3,98.8,201.4,200.5,110.5,96.9,115.8,119.7,144,132.5,110.6,109.7,129,79.3,171.1,94,96.8,85.8,84.7,89.1,86.6,68.6,68.4,113.7,88.4,80.8,78.3,118.7,114.2,127.9,57.6,134.6,88.5,104.9,109.7,5.1,107.3,171.4,151.6,61.4,129.2,25.1,69.9,63,32.3,37.3,39.2,65.2,52.8,53.4,37.9,62.4,55.1,52.6,64.9,90.3,104.5,104.9,110.8,152.8,74.4,188.3,86.6,87.7,96.1,63.8,69.9,81.4,47,50.4,52,64.5,92.8,102,78.6,78.2,63.2,56.8,36.9,89.3,78.9,75.1,67.9,77.2,67.6,64.1,90.1,92.6,64.3,78.8,67,67.9,88.1,39.6,38.5,32.2,33.1,40.7,50.7,53,91.2,47.3,45.3,38.6,27.5,37.7,30.8,39.9,47.2,40.5,38.9,44.2,26.7,38.8,41.4,39.6,43.9,36.5,65.1,67.3,51.6,51.8,16.4,47.2,71.4,26.1,43.5,35.7,19.1,37.1,17.8,41.4,40.6,66.5,34,40.6,42.5,50.8,45.2,47.8,95,78,58.2,59.7,65.5,63.8,122.6,67.2,69.4,64,64.5,0,66.3,52.4,52.9,51.1,50.8,60.3,13.7,56.3,54.3,43.4,47.4,80.3,86.8,98.7,82.4,463.3,525.2,351.1,408.5,202.2,100.7,103,134.5,9.2,58.2,53.8,248.3,23.5,56.3,48.5,48.6,102.2,148.6,97.2,98.5,86.5,109.7,86.1,74.1,64,50,48.1,42.7,23.6,26.3,24.2,46.8,73.7,79,60.2,76.4,57,59.7,57.8,56.2,76.5,65.6,70.2,44.5,40.8,45.9,51.2,48.2,46.9,83.1,149.6,23.1,98.8,78.2,90,180.6,168.5,147.6,96.8,59.4,52.5,41.8,44.9,71.9,48.7,40.3,49,48.6,64.6,41.3,36.2,64.4,52.6,50.2,52.6,48.4,52.8,31.4,33.1,36.9,37.7,25.9,28.1,34.6,30.1,36.7,39.4,37.9,40.8,72.3,57.4,58,48.3,62.8,117.2,73.4,49.2,25,33.4,82.4,5.8,46.5,181.8,188.1,175.6,115,553.8,128.7,131.3,135.9,137.5,139.8,449.9,535.1,121.9,45.2,281,184.1,2088.4,156.4,143.5,73.2,74.2,61.2,95.3,98.6,89,78.8,66.9,61.5,91.9,63.9,79.2,90.3,64.6,64.3,54,77.9,77.2,65,65.5,114.2,313.7,80.6,381.2,511.6,115.3,116.8,125.7,125.1,160.1,78.2,89.4,115.2,113,52.3,54.5,85.1,87.6,74.5,67.7,44.9,41.5,77.6,83.3,92.1,102.9,77.9,83.4,156,86,167.5,153.8,42.1,89.9,65.7,64.3,76.6,76.7,92.4,90.2,156.3,492.5,687.1,166.2,78.8,78.5,74.8,37.1,40.3,53.1,56.4,48.9,50,47.1,44.9,88.8,57.9,56.2,45.4,88.6,89.4,83.5,83.1,51.8,53.3,107.4,204.1,289.9,35.5,169.6,144.2,128,107.3,51.5,78.5,40,51,63.8,52.4,105.3,64,63.8,68.2,72.6,52.8,54.2,51.1,81.7,73.6,44.2,51.4,58,59.9,66.8,72.5,110.5,104.4,92,93.6,143.6,96.3,97.8,96.3,99,99.3,98,115.2,114.2,74.8,67.6,9.2,155.2,122.5,127.6,121.1,121.4,122.7,141.6,131.4,105.8,105.6,137.7,139.1,90.3,90.8,119.3,120.1,89.4,143.3,144.2,75.4,77.5,77.7,75.7,215.9,168.9,48.7,118.1,50.7,65.9,32.8,34.6,65.8,75.7,36.6,54.7,54.6,78.2,38.8,40.5,40.1,41,48.1,49.6,42,53.8,51,89.9,234.4,905.1,170.8,66.2,24.6,69.7,38.9,40.8,43.4,55.3,53.2,63.5,66.1,63.9,39.8,40.9,33.9,57.8,94.8,134.8,575.4,259.9,108.8,215.1,116.5,58.8,52.3,57.1,56.3,60.3,102.4,79.9,63,66.2,66.1,60,53.6,42.6,50.8,40.8,52,64.1,52.2,52.6,51.1,40.5,39.4,52.5,47.7,49.2,17.5,40.5,51.3,79,65.5,50.9,79,472.1,26.2,19.7,184.1,106.4,63.3,80.1,33.7,31.4,25.6,25.6,26.7,24.4,26,26,25.9,25,43.1,50.6,13.1,20.9,31.2,54.9,38.8,30.4,59.2,50.5,25.4,30.5,20.4,6.9,8.7,33.8,217,74.2,89,64.9,123.7,29.3,61.6,34.4,89.7,312.1,96.6,344.5,634.8,100,49,66,36,37.7,30.5,35.8,48.3,50.8,33.5,44.8,63.4,49,40.7,50,49.4,40.8,43.4,38.9,3.6,31.6,35.6,49.3,58.2,39.8,43.9,51.4,76.4,40.2,38.2,77.1,50.7,38.9,50.8,33.7,37.9,37.6,39.3,36,44.1,44.3,47.2,46.4,50.7,63.3,127.8,102,101.4,31.9,100.7,51,52.2,41.3,29.5,29.6,29.1,38.3,39.8,51.9,31.6,34.1,36.4,31.1,22.5,38.4,36.7,46.2,34,39,38.7,31.3,34.8,33,20.2,44.6,17.9,33.2,14.1,36.5,41,37.3,38.4,29.7,34.1,71.9,24.4,81.3,30.4,31.9,39.7,40.9,41.3,37.9,32.7,30.2,29.1,51,26.6,33.1,30.7,37.5,35.7,31.6,59.8,118.4,229,278.4,279,247.8,151.7,328.5,52.5,153.2,105.2,71.4,74,66.2,66.8,82,81,83.2,134.5,128.6,87.8,2,87.5,231.5,186.4,150.8,267.5,180.6,197.8,69,24.1,80.8,97.3,91.1,54.2,58.7,86.2,83,95,32.1,51.7,68.7,91.5,98.4,130,143.2,301.1,348.6,214.3,175.6,188.7,138.9,93.9,70.9,51.8,74.4,72.2,101.6,73.4,73.6,61.8,61,75.5,63.9,90.1,74.4,82.8,60.4,62.4,61.4,63.7,48.3,47.5,81.2,7.6,52.8,53.9,103.7,84.3,38.3,85.2,124.7,84,106.3,9,162,104.5,98.8,63.7,140,35.7,100.6,82.1,97.5,16.7,52.9,79.1,74.1,36.8,58.3,68.5,67.2,50,77.7,82.2,29.4,40.7,79.9,90.4,100.1,35.7,30.7,97.9,97.7,64.8,86.9,48.1,37.7,71.7,100.5,110.8,100,79.3,151.2,156.8,71,273.4,259.2,96.6,65.3,32.7,288.1,22.7,58.8,57,67,54.1,38.9,69,45.5,59.7,65.6,173.1,137.4,330.8,37.5,42,17.3,330,130,39.9,41,30.7,38.5,50.7,59.6,69.1,104.4,45.4,17.6,33.4,116.3,83.2,36.1,36.2,32.8,36.3,37.6,28.8,36.3,20.1,19.3,17.5,19.7,28.3,25.4,26.5,27.5,25.8,75.8,106.4,77.9,34.9,6.3,25.4,24.5,29.1,28.8,20.2,25,32.4,30.5,27.5,29.2,36.1,41.9,36.2,26.3,16.9,19.8,16.2,7.6,32.4,82.8,100,102.2,58.9,3.8,58.2,55.7,19.5,45,34.6,48.2,34.5,98,46.5,9.2,162,11.2,18.1,20.9,50.8,53.2,59.7,60.9,120,120.3,167.5,75.4,94.5,50.6,50.6,46.5,48.1,54.2,129.5,32.1,26,15.5,8,85.1,184.8,34.7,239.7,58.9,117.1,175.7,53.8,246.6,53.5,246.5,28.5,21.7,64.8,232.3,47.4,13.6,15.1,16.7,10.9,12.5,11.6,11.2,87.7,40.7,14,13.5,31.6,19.5,39.5,10,9,7.3,7.6,9.5,15.9,8,6.9,6.3,9.6,249.4,7.6,8.2,8,7.5,23.8,62.9,24.6,10.4,6.7,7.4,6.2,3.8,3.7,4.5,4.4,4.1,4.6,5.4,4.2,3.5,13.9,14.3,23.3,15.7,39.9,48.7,58,49.1,47.7,65.8,1027.3,54.1,55.8,19,64.9,92.1,178.2,24.9,37.7,15.9,18.4,62.3,4.2,71.7,57.1,14.6,10.5,7.6,6.7,7.4,5.8,6,6.7,6.1,6.6,7.1,6,6.6,5.9,6.5,5.4,45.6,32.4,7.6,13.4,13,18.8,30.5,131.7,227,56.5,56.3,112.7,64.5,266.8,38,25.9,25.3,25.7,25.6,16.5,18.3,50.5,305.5,53.9,39.7,19.2,18.2,20.2,19.3,12.1,36.3,24.4,25.8,31.5,30.4,35.2,22.5,18.4,20.1,18.1,19.7,13.7,16.3,24.6,25.1,24.4,25.6,24.9,23.8,24.2,26.9,170.4,19.3,12.9,13.6,12.5,21.6,24.7,25,24.8,18.6,17.7,26.1,25.2,108.1,1.4,284.5,202.4,52.5,13.5,11.7,10.4,13.9,12.5,12.5,13.7,12.2,13.1,17.4,13.9,32.6,37.9,44,120.8,95,22.4,19.2,24.3,27.1,22.4,24.2,19.6,17.4,18.1,19,17.7,17.4,17.5,16.9,18.2,17.8,18.4,16.7,41.2,19.9,516.2,17.1,30.3,11.8,15.4,12.9,31.6,15.3,13.7,17.6,16.6,12.1,13,14.7,32.2,14.4,13.1,23.3,18.3,20.1,540.2,72.3,50.4,74.7,74.2,342.4,292.6,28.3,37,27.1,36.5,34.7,13.8,4.2,26.2,28.2,28.3,37.4,39,30.2,36.1,44.4,46.3,51.7,32.2,34.3,53.8,57.8,33.3,38.8,39.8,33.2,32.7,172.5,96.9,96.6,39.9,38.9,83.2,71.5,72.1,93.2,52.5,79.1,35.2,44.4,132,91.5,66.3,65.9,40.5,39.7,45.9,45.9,78.7,39.7,39.1,33.9,33.2,38.5,33.3,31.8,27.9,32.3,33.4,38.2,44.5,43.2,42.8,41.7,52.7,53.6,52.1,53.1,73.4,73.7,104.5,67.2,84.1,110.5,95.2,71.2,100.7,46.4,56.6,56.4,95,143,53.5,53,54.8,31.8,32.6,37.8,32.3,82.7,85.3,39.8,39.2,74.9,64.5,70.3,28.3,29.6,51.9,53,53.2,53,52.4,53.7,100.2,152.7,56.5,56.6,69.4,70.4,64.6,70,76.6,80.7,77.9,132.6,171.7,91.7,91.6,51.5,51.7,50.8,51,77.6,76.5,76.9,63.7,76.4,65,62.4,64.3,63.1,38.2,38.3,45.8,44.5,50.9,49.7,64.5,64.6,75.7,50.9,52.6,30.1,31.9,37.3,38.4,87.3,54.1,62.2,51.7,62.7,115,48.8,44.6,48.9,50,37.9,39.2,37.7,38.3,50.9,31.9,19.2,25,26.4,37.1,27.2,24.9,25.4,24.7,26.6,38.2,17.8,18.7,22.6,23.7,23.5,12.1,12.4,23.5,24.1,11.4,12.1,22.5,40.5,54.5,77.3,74.7,74.5,77,119.1,68.2,36,30.4,63.3,63.2,64.9,73.6,106.2,122.5,128.3,158.9,51.9,167.4,44.7,65.5,0,74.4,117.3,5.2,31.4,20.7,29.2,73.8,104.1,69.3,68,54.3,64.8,27,32.7,24.8,29.7,23.2,22.8,19.1,28.3,26.7,39.7,39,31.8,26.3,23,40.1,44,44.9,42.2,47.9,85.1,26.2,39.1,40,27.4,27.1,40,43.5,37.8,10.3,19.2,29.7,27.3,28.1,50.3,39.1,36.7,40.1,39.9,41.2,38.9,36.1,43.4,39.2,37.8,46.9,26.1,42.8,33.1,57.8,49.4,31.7,32.9,49.5,52.7,70.9,42,43.1,75.4,97.1,119.7,143.7,70.1,78.6,78.3,122.8,107.1,86.2,120.9,62.1,60.5,83.1,62.7,61.6,69.4,68.8,56.2,54.3,64.8,64.9,67.5,45.6,44.1,71.4,59.9,52.3,51.4,50.1,17.7,69.7,16.5,31.8,56,48.7,29.4,25.7,58.1,32.3,49.6,59.5,59.2,35.3,35.5,28.6,17.3,15.4,38.3,27.5,19.5,13.4,17,18.6,26.1,18.5,18,21.3,20.4,29.6,28.2,64.2,46.6,6,23.8,25.5,20.8,19.1,25.2,18.8,19.8,33.1,31.1,28.3,26.4,33.1,38.9,35.3,37.8,23.7,32.1,19.4,20.8,15.3,16,15,24.3,26.6,335.4,43,34.7,55,51.4,64.1,51.7,38.1,38.3,39.8,45.4,78.4,92,46.8,38.4,35.2,29.8,36.3,36.5,30.2,38,38.9,38.2,41.3,33.3,39.3,40,34.9,32.9,33.2,31.5,33.7,37.4,35.5,32.5,42.5,45,60,90.2,94.8,46.1,35.6,32.5,30.9,12.9,30.9,35,33.6,61.2,53.5,54.3,34.2,30.9,32,40.2,33.7,55.3,46.8,43.3,35.9,35.1,29.6,35.2,42.2,34.4,40.2,29.8,37.2,43,148.1,67,64.5,56.7,37.1,28.6,37.1,31.2,36.5,29,30.9,35.6,32.3,48.9,92.4,26,44.9,47.8,58.6,27.2,26.2,9.7,27.5,30.2,30.9,28.2,26.2,37.8,44.9,6.1,46.9,28.6,26.1,18.3,20.6,19.1,12.3,9.1,32.7,35.9,20.5,12.8,23.6,29.4,38.3,29.2,26.4,32.5,25.6,23.7,25.5,33.6,23.2,30.4,44.6,78.3,213.8,61.9,27,34.4,19.8,23.6,26.2,22.4,25.1,22.9,27.7,18.8,37.6,22.7,24.7,41.4,56.9,48.9,103.3,61.1,47.3,41.2,42,47,39.1,38.3,31.2,36.3,31.5,25.1,30.5,36,8.3,19.4,29.4,23.8,27.2,26.9,26,31,22,29.1,49.9,78.7,110.4,36,35.2,28.4,24.8,23.1,22.5,25.8,32.1,43,19.9,20.1,30.3,29.5,131.5,101.2,5.1,5.6,17.5,31.1,57.3,31,94.5,84.1,112.7,20.3,20.2,34.1,33.2,109.9,31.2,85.1,71.3,89.2,9.8,232.8,36.3,60.1,64.4,58.8,69.5,49.7,70.8,30.9,99.3,80.2,89.2,56.2,55.9,81.6,89.5,77,79.5,100.2,4,9.8,122,47.2,95.9,85.8,95.1,170.7,325.8,306.2,209.3,82.9,101.4,78.3,96.6,92.4,91.1,152.1,219.5,226.1,68.1,68.4,60.9,41.1,35.6,40.8,64,43.6,48.1,42.7,50.8,26.1,64.6,27.8,32.3,64.5,18.1,50.8,67.3,48.2,58.6,48.7,26.2,77.5,86.2,83.1,45.7,70.9,35.2,34.6,37.6,32.3,38.6,38.9,39.3,33.7,38.1,51.5,47.8,47.5,36.7,35.2,50.5,40.5,40.8,52.6,63.2,48.7,38.8,35.3,34.6,36.4,47.5,55.4,41.2,32.9,48.9,51.6,64.3,71.3,85.4,95.7,182.9,80.7,57.6,98.2,27.2,30,272.3,275.2,157.4,121.7,127.6,61.8,133.4,193,85.2,74.3,16.4,32.2,57.1,48.2,51.9,48.2,46.8,69.9,53,46.1,17,45.5,71,49.2,33.5,30.3,41.1,47.9,50.9,43.9,42.2,44.3,34.3,33.9,42.8,39.3,16.8,44.2,25.5,30.2,57.2,52,44,39.9,55.4,36.7,62,60.2,99.3,91.6,60.7,26,62.9,65.7,43.4,35,32.3,25.7,33.4,40,30.1,27.2,42.4,33.9,34,37.7,38.5,55.5,108.3,41.1,32,27.2,43.7,47.3,38.9,27.2,27.8,30.9,24.6,21,29.5,37.3,28.6,29.7,60.8,39.9,144.6,123.6,42.2,69.3,68.2,61.4,50.3,54.9,90,101,116.8,153.6,96.2,52.3,47.6,19,51.2,10.3,43.7,39.9,72.7,67,64.9,69.3,112.7,256.9,71.7,301.2,225.1,227.1,33.4,177.6,75.6,49.7,33.6,115.8,0,199,123.7,96.6,93.5,60.7,79.8,78.8,115,67,108.2,104.3,84.4,8.7,61.9,26.8,22.1,71.3,103.6,141.7,109.2,51.2,43.1,34.4,39.6,34.1,40.3,33.3,48.6,79.3,94,12.6,21,58.5,40.9,79.4,118.8,126,111.6,70.9,46,35.5,37.2,43.7,39.3,42.3,35,54.4,53.8,61.8,68.9,64.2,16.5,39.8,48,24.6,61,49.6,48.5,49.6,51.9,42.5,43.1,55.6,62.7,143.5,147.2,50.2,47.5,41.5,36.1,34.2,36.7,40.4,39.7,30.6,46.4,38,40,40,21.3,12.8,44.5,47.3,26.3,48.7,39.3,30.5,32.9,34.5,38.6,43.8,38.5,32.5,39,51.9,90,92.2,62.2,78.1,71.5,55.3,39.9,45.2,39.2,41.1,39,34.6,47.5,48.5,63.4,69.9,55.9,47.8,58.3,5.7,52.1,58.5,59.6,74.6,76.9,81.9,230.4,231.8,152.6,77.5,78.8,106.2,38.2,51.1,43.4,53.4,82.7,71.1,67.3,52.6,50,70.7,66,78.6,67.6,80,66.4,60.5,82,64.7,62.2,66.7,47.8,54.8,135.7,163.6,21.1,72.1,52.6,168.4,88.8,66.7,58.8,59.2,59.7,68.9,71.2,51,60.9,66,68.9,56.8,66.1,67,97.4,44.8,43.1,58.4,48,75.4,63.5,42.7,56.8,49.7,83.1,54.8,29.3,66,68.7,75.6,62.8,53.6,53.4,44.1,30.8,59.1,66.2,67.1,66.1,134.1,264.7,71.4,69.7,73.4,68.1,64.3,58.1,91.3,106.3,107.9,85.6,79.7,82.4,83.4,53,38.8,32.5,91,52.2,37.4,79.8,93.5,86.1,106.9,121.8,113.2,126.8,43.5,86.8,45.1,54.6,44.1,54.4,29.7,27.7,42.3,9,52.5,82.6,56.3,56.9,64.4,76.4,47.4,48.4,72.2,74.8,37.3,42.3,44,43.9,40.9,50,55.8,53.2,41.4,76.2,37.6,44.5,61.1,60.2,44.3,40.3,54.5,51,49.4,47.6,45.2,40.8,42.4,50.2,43.2,32.6,48,58.3,54.5,62.7,31,41.8,80.8,64.8,46.6,37.2,50.2,53.1,49.5,44.9,31.3,27.2,47.5,49.7,42.7,40.7,38.1,65.1,53.9,77.1,55.9,50.1,115.7,94.2,124.1,71.9,40.2,45.6,44.4,52.1,68.1,44.7,52.8,42.9,96.3,70.3,64.7,49.3,48.3,40.5,48.9,50.4,52.1,42.1,49.9,76.7,60.2,39.6,32,58.6,63.1,66.9,79.9,49.5,60,33.4,43.5,49.7,54.9,45,46.2,53,49.7,74.2,39.5,56.8,78.9,75.5,199.7,201.1,200.4,199.5,26.3,141.4,109.8,124.9,60.6,62.5,141.4,164.1,147.5,94.2,71.2,33.1,91.7,27.7,56.5,69.3,71.7,60.1,45.9,61.2,65,84.6,87.2,18,104.4,92.9,65.5,62.6,65.1,62.9,87.1,87.4,122,100,22.5,113.5,137.5,134.8,175.9,84.7,90.1,116.1,78.6,84.7,54.2,59.7,85.4,92,87.2,97.1,84.3,62,76.3,63.9,78.8,75.5,78.4,49.8,52.6,68.6,86.3,149,125,69.9,106.4,112.1,109.1,120.3,127.3,242.1,488,93.3,93.6,53.9,61.3,60.2,68.4,67,67.6,60.1,57.1,57.4,65.2,77.2,75,40.7,114.9,66.2,59.1,55.8,63.7,64.1,58.7,88,62,57.8,6,63.8,70.8,76.9,58.4,62,62,62.3,88.2,60,72.9,61.5,73.5,73.8,61,128,68.1,89.6,58.5,65.7,74.4,47.5,43.5,55,32.7,38.2,58.2,62.3,65.1,58.5,60.1,54,51.5,50.2,55,51.4,53.1,38.6,24.4,8.7,31.7,12.6,63.2,62.8,41.9,40.9,113.6,34.4,73.1,125.4,47.3,67.3,79.2,70,82.6,114.2,118.9,98.8,76.1,115.4,108.3,103.3,206.3,207,181.8,130.6,244.6,158.5,77.1,62.7,67.5,65.9,111.6,82.5,80.2,116.4,142.1,169.9,171.8,77.9,76.4,92.2,93.2,88.8,105.6,132.7,70.9,70.9,63.2,63.1,124,67.9,73.1,87.6,36.1,79,81.7,81.7,19.5,34,61,139.3,162.1,90.9,58.6,63.4,67.1,94.5,94.4,88.3,69.4,118.6,150.5,150.3,130.8,131.6,89,83.3,125.7,120.2,86.6,88.3,61.1,29.5,68.2,102.9,67.2,39.5,101.5,82,85.4,91,118.4,170.5,100.3,56.2,54.6,52.6,32.2,64.4,47,11.3,56.3,56.8,53.3,97.6,188.4,76.3,105,61.2,26.6,87.5,9.1,99.4,19.5,29.9,28.5,14.3,5.8,23.3,56.1,78,130.7,74.1,61.7,116.5,18.7,24.7,42.7,44.8,9.7,45.2,34.5,29.3,29.5,35.1,36.8,34.6,33.6,44.3,30,65.1,77.8,95.2,77.7,66.4,43.5,61.1,51.3,55,60.8,60,59.3,61.9,48.5,74.6,54.7,66.5,60.8,44.1,28.3,82.3,146,64.4,65.2,63.4,68.9,98.6,151.5,154.7,5.2,16.5,42.8,57.6,74.8,70.4,68,71.8,47.7,46.6,47.2,52.7,51.4,52.5,48.9,48.4,55.8,11.8,55.2,112.2,86.8,63.5,65.7,88.8,148.8,82.6,62.4,57.5,42.8,52.8,70.2,66.6,63.2,57.3,59.2,58.8,114.2,63.2,56.3,105.1,119.4,105.7,35.1,93.8,76.3,111.1,79.9,82.5,56,68.1,28.5,102.3,69.1,70.8,98.5,69.3,90.7,50.1,58.3,86,90.7,184.2,178.7,89.8,97.5,66.6,57.5,96,96.8,52.8,5.1,21.5,91.5,107.6,129.2,39.7,92.8,243.4,71,114,110.5,69.5,70.6,69.5,87,83,134.4,118.1,33.3,37.9,75.5,215.8,50.9,17.3,101.8,259.2,356.1,144.7,129.2,48.2,38.5,77.8,20.5,37.8,107.3,80,29.3,51.8,84.2,100.7,98.4,91.3,69.8,79.5,55.8,77,78.8,59.8,59,84.2,44.6,49.2,45.2,64.2,143.3,204.1,172.9,43.6,80.5,59.1,67.9,79.1,40.2,49.6,56.5,123.6,123.8,124.5,145.5,73.7,142.5,241,161.1,234.3,269.2,55.4,422.2,194.5,64.6,71.3,96.4,143.2,75.1,212.4,206.3,263,408.1,251.1,139,131.2,99.8,61.3,107.9,250.3,314.6,223.9,130.6,124.8,115.1,130.2,88.6,89.7,118.2,135.2,127.6,78,83.3,17,72.3,131.1,123,109.3,171.9,88.5,91.4,108,54,115.5,115.3,114.4,117.1,54.7,51.2,68.7,58.7,62.8,53.8,57.7,84.2,62.7,58.4,78.3,70.5,60,52.3,78.8,74.9,54.6,86.6,59.3,57.4,128.9,157.2,161.3,32.9,146.2,114,85.3,70.1,33.9,70,89.5,116.7,73.9,97.1,58.8,73.3,66.1,109.5,87.9,94.8,93.3,79.9,65.5,121.5,127,115.5,123.9,132.1,19.6,88.7,210.3,40.6,94.3,95.4,33.2,54.3,59.8,74.1,125,90.6,9.4,34.6,34.4,117.2,97.7,87.5,68.2,77.1,97.5,57.5,16.5,9.1,212,76.5,108.4,79,70.5,67.3,76.8,105.9,68.5,70,28.5,67.7,40.4,66.8,56,63.6,72.7,68.4,119.3,151.2,53.7,115.7,76.6,49.7,55.3,54.4,53.7,64.3,51.3,76.7,47.5,63.2,29.5,18.1,103.6,86.4,110.7,97.5,62.9,81.6,104.8,58.5,61.5,62.7,40.4,28.8,52.5,64.1,76.2,53.2,73.3,73.5,107.9,85.8,89.2,63.7,65.4,94.9,56,45.1,65.4,10.4,85,89.5,111.5,91.8,70.9,77.5,59.3,46.9,74.4,96,118.5,109.7,92.7,58.6,93.9,176.2,181.1,117.9,25.6,45.6,60.5,79.1,61.5,64.4,72.9,101.1,17.2,69.4,82.4,61.7,66.7,61.5,79.1,82.7,108.2,126.5,163.2,161.5,65.6,72.3,66.4,89.9,93.2,88.2,86.3,74.5,70.4,79.4,58.3,61.8,56.1,75.1,64.7,64.1,75.8,49.9,57.7,126.1,110.4,83.2,76,30.9,260.4,186,73.6,46.5,93.2,113.1,135.1,136.9,149.1,122.5,55.7,62.9,110.1,152.2,151.4,211.7,214.6,13.9,59.7,108.3,77.1,64.9,81.9,70.9,69.2,53.1,57,67.8,66.2,76.7,89.4,65,92.2,63.6,50.8,69.8,51.6,271,256.1,272.5,147.3,215.7,106,114.9,123.8,74.6,69.9,71.4,82.9,84.3,125.9,80,68.6,80.4,90.9,88.3,111.2,110,96.9,90.4,80.5,67.7,79.4,95.4,71.7,81.5,71.2,62.7,59.4,68.4,26.1,75.8,95,88,106.4,79.7,72.5,15.7,63.6,12.1,83.1,91.8,93.1,92.2,90.2,103,143.1,114.8,61.8,61.6,100.3,109.7,86.6,101.6,3.4,65.2,77.3,82.3,73.6,31.6,130,67.8,165.6,46.1,256.2,203.5,202.4,110.7,111.8,90.4,77,88.9,86.9,60.4,62.1,77.3,78.5,92.8,105.9,78.7,90.5,84.5,74.6,64.8,78.3,108.9,95.7,82.2,115.1,118.7,112,68.3,68.7,82.6,61.5,37.9,56.1,45.1,58.4,72.1,84,80.7,79,83.6,90,143.4,148.4,29.5,161.2,100.9,97.7,150.1,108.6,114.6,221.3,100.9,100.2,95.7,64,35.8,33.4,137.3,98.8,63.1,63.6,90.1,87.5,90.4,72.2,89.9,156.4,147.3,158,166.6,126.9,129.7,82.8,81.9,79.6,60.1,53.3,96.3,66.5,68.8,57.5,34.4,47.5,41.6,62.2,65.7,68.7,93.7,127.1,81.3,76.5,67.8,57.8,49.3,50.5,42.6,75.9,54.8,78.7,41.1,74.1,61.6,48.6,57.2,55.5,72.3,76.7,39.9,57.4,112.3,106.2,98.4,49.7,67.7,55.7,62,74.4,79.5,69.8,77.9,89,82.4,88.5,82.9,74.2,105.6,101.2,133.3,115,79.3,99.4,99,162.7,354.8,20.5,62.5,115.4,161.9,121,136.5,163.7,78.8,84.7,44.5,48.8,53.6,59.4,49.9,54.2,77.7,101.5,67,82,85.2,99.9,79.7,145.3,172.2,19.5,201.4,208,160,91.3,74.9,131.4,65.6,69.9,100.2,93.6,77.7,63.9,56.8,107,61,57.3,66.5,63.3,151.4,160.9,168.3,118.7,120.5,122.9,111.2,68.4,71.7,127.9,116.4,131.9,43.8,51.6,35.7,43.1,140,153.4,133.2,18.1,144.4,99.4,133.8,180.1,116.6,161.8,108.4,153.3,82.9,56.9,134.4,43.9,98,110.5,85.1,86.4,71.4,124.2,81.7,81.3,83,79,119.7,122.9,110.3,34.7,46.5,43.3,50.5,89.2,93.5,70.6,65.8,105.5,75.1,41.8,39.2,33.8,68,93.8,72.4,72.7,85.5,61.1,64.5,67.7,66.4,75.4,59.5,82.1,84.9,140.1,263,239.6,161.6,160.1,215.6,218.3,183.3,65.4,192.9,198.3,234.1,116.6,115.8,99.2,94,88.2,113.2,67.5,52,166.1,212.4,155.9,127.2,122,11.4,118,110,134.1,8.6,106.7,129.8,141,126,127.3,31.4,108.8,25.1,90.8,114.7,155.4,226.2,259,227.7,161.1,214.2,1.8,195.8,125.1,126.7,63.2,197.1,260.2,122.6,91.3,108.5,85.3,196.3,106.8,100.1,99.1,76.7,80.3,64.2,74.4,78.7,67,90.6,60.6,75.1,135.9,148.8,201.8,195.8,79.2,50.9,45,4.4,82.4,68.5,75,54.6,52.4,54.6,55.9,54.3,52.6,52.8,101.4,99.7,64.5,113,115.7,54.8,24.8,8.7,76.9,22.2,91.7,62,54.3,61.1,40,45.8,63.5,1.8,50.9,52.2,54.7,56.2,60.1,69.5,44.1,42,77.1,54.1,80.8,124.9,200.7,130.6,143,27.7,46.6,103.6,170.2,177.9,132.9,103,101.6,100.2,205.2,93.3,106.8,174.8,66.1,229.5,295.7,289.4,208.7,245.3,169.4,47.9,93.7,111.6,63.4,117.2,122.1,242.1,61.5,228.2,237.6,122.6,66,51.2,53.1,63.5,40.1,27.5,71.9,57.6,58,87.6,66.3,77.3,103.6,11.3,11.5,79.5,114.9,150.1,62.1,67,61.2,55,71.6,54.1,49.1,78.2,66.6,63.2,64.3,61.2,67.5,14.5,76,30.1,84.1,19.1,172.6,60.9,56.7,94.4,63.8,59.4,65.1,61.2,72.9,61.9,57.1,43.1,73.1,70.1,79.6,121.3,125,47.9,67.2,68.3,52.9,56,92.1,91.5,49.1,51,53.5,44.9,39.9,37.5,30.4,53.2,9.7,54.1,43.4,51.1,38.4,42,28.9,28.3,20.1,22.4,40,38,27.6,36.5,37.6,42.2,43.4,100.6,62,63.7,35.3,35.5,45.1,26.5,26.5,49.7,21.9,23.7,44,29.7,25.5,39.1,34.5,14.9,23.8,27.1,34.6,36.4,33.1,31.8,30.8,33.5,38.8,42.8,61.6,50.9,10,61.6,76.8,46.3,69.4,64.4,34.9,34.7,79.8,68.8,240.4,66.5,75.1,52.3,52.6,59.8,69.6,52,72.8,58.5,57.3,72.2,72.2,67.7,68.6,54.6,75.3,75.8,2,71.5,75.4,39.2,38.8,55.9,57.6,38.2,32.3,44.1,32.1,71.8,47,48.6,57.2,57.8,53.9,55.3,56.1,69.6,118.6,100.2,177.7,79.3,77.3,94.1,20.3,171.1,185.2,107.2,69.4,81.5,133.5,569,84.1,229.7,108.3,188.9,105,37.5,38.3,30.8,37.7,25.3,39.1,77.7,282.2,17.9,55.1,153.1,315.3,82.3,129.7,96.7,154.4,69.2,60.1,30.9,28,46,29.7,28.1,116.6,121,133,70.3,70.6,86.3,42.2,29.8,29.7,33.3,29.1,28.7,49.1,42.1,10.5,60.9,60.2,75.7,73.9,118.6,63.4,151.8,129.9,201.1,83.7,282.1,113.2,52.8,52.6,135.1,433.9,58.4,268.2,389.3,52.9,53.8,90.7,93.3,84.5,46.4,49,49.1,52.3,82.2,95.4,80.5,86.3,89.4,97.8,119.1,111.6,16.1,32.2,405.3,330.6,256.3,185.5,57.9,64.1,151.9,75.7,74.1,65.4,140.9,151.4,157.8,60.4,60.2,63.4,48.4,55.6,29.9,72.2,7.3,35.5,76.2,60.9,84.2,77.8,839.6,215,213.6,134.1,71,66.3,67.7,61.6,145.6,60.9,67.8,185.6,137.2,124.8,132.8,94.4,64.5,45.3,105.2,69.2,263.6,124.4,68.3,110.9,122.7,142.1,342.9,805.7,133.6,51.6,23.6,101.8,98.3,172.9,109,86.2,63.4,61.5,48,47.4,116.7,79.5,50.7,152.8,235.8,554.2,115.3,51.8,44.3,63.6,65.8,58.4,49.4,73.7,62.5,67.4,79.9,47.7,14.4,83.2,37.7,156.8,105.1,60.6,65,54.3,72.4,45.3,59.7,79.9,30.8,36.3,38.6,28.1,41.4,63.7,55.2,65.6,117.1,28.4,151.8,29.1,105.1,30.5,81.3,51.6,36.2,37,89.2,129.8,102.4,108.8,116.1,160.2,125.4,64.7,59.8,568.6,79.6,58.3,44.8,54.1,79.6,264.9,18.7,6.8,48.6,228.2,26.2,291,630.6,65.9,63,52.6,59.6,73.5,88,19.1,36.7,46,68.3,70.3,106.2,105.2,550.2,166.6,42.9,336,37.7,490.7,103.9,180.6,29.7,235.2,362.2,73.7,34.3,43.5,86.2,7.6,1025,607.3,442.2,67.1,30.9,56.6,55.3,49,55.4,46.7,59.9,876.1,111.4,1006.2,42.5,928.4,335,104.7,50.6,57.9,57,71.7,431.2,109.1,302.9,60.2,52.8,67.2,48.2,39.9,45.4,47.3,68.2,27.9,28.4,44.4,46.1,47.4,8.7,65.4,73.5,80.8,66.3,54.7,71.4,57.7,120.3,88.5,112.2,30.9,61.1,51.8,50.9,56.1,68.3,60.7,66.2,79.5,115.8,156.3,101.3,93.7,103.4,94.2,76.2,68.6,75.8,65.8,57.7,59.5,66.3,82,75.8,75,85.2,58.5,69.3,30.5,33.8,65.5,61.6,69.1,126,34.1,69.4,95.8,145.8,157,90.7,95.2,77.2,63.8,100.6,79.7,81.2,167.6,132.6,135.4,459.4,455.7,249.8,111.9,118.5,149.1,95.9,34.6,83.1,96.7,190.1,201.5,224.2,105.4,101.9,118.6,99.3,112.1,108.9,131.2,124.1,79.1,71.5,82.2,88.2,77.9,49.2,77.9,90.1,122.6,128.1,212.1,121.9,115,89.4,113.5,82.1,99.3,131.4,135.1,111.3,124.5,129.8,128,108.6,2.9,109.9,122.9,195,99.4,117.6,125.1,191.1,68.9,147.4,99.8,60,46.5,86.6,42.2,42.8,61.2,90.2,103.2,108.6,73.6,72.5,75.7,76.7,90.4,99.5,118.6,130.7,228.1,154.9,137,276.6,188.7,95.8,105.7,228.6,123.2,132.8,109.9,111.3,118,82.4,41.4,117.9,121.4,202.2,99.2,89.6,103.2,87.4,87.3,73.1,65.4,79.8,65.6,60.1,102.6,96.1,106.2,110.6,51.9,55.8,167.5,293.1,135.3,127.5,105.3,92.5,91.3,139.3,59.8,65.2,606.6,188.1,190.1,29.2,176.1,209,226.7,238.9,200,206.6,338.9,92.4,130.5,82.8,103,108.4,99.8,108.5,131.3,166.6,165.2,94.8,100.4,94.4,96.3,185,14.8,5.1,24.6,82.3,130.9,88.6,90.3,22.6,44.8,207.6,76.9,39.8,173,72.1,33,128.5,120.4,110.2,87.8,123.2,114.1,156.1,235.7,196.2,114.3,91.9,91.9,74.9,84.9,90.3,76.9,25.9,94.7,114.5,98.3,107.7,218.7,136,140.2,156.8,87,94.7,85.3,17.3,70.9,0.1,174.1,92.5,108.5,68.6,1.1,67.8,56.6,47.2,40.7,57.6,103.6,92.2,40.9,64.5,54.8,60.4,110.2,124,151.4,0.5,257.7,82.6,134,39.6,116.6,83.7,62.5,56.7,155.1,236.6,244.2,157.3,215.8,107.1,141.6,70.1,81.3,108.6,67.8,354.1,158.2,152.9,100.6,85.3,114.5,0.8,115.4,109.2,112,99.8,113.9,258.5,46.7,72,42.7,400.1,204.5,209.3,99.7,101,98.1,95.5,60.5,39,201.5,109.2,90.4,46.4,77.7,80,159.6,80,22.5,117.2,153,161.5,147.3,119.9,130.7,500.9,263.6,72.2,294.1,23.3,21.4,34.6,165.6,437.1,622.1,338.5,219,96.5,138.3,183,184.6,504.2,138.9,173.2,127.6,134.7,111.5,117.5,110.5,141.4,154.4,104,105.8,160.6,70.5,7.2,42.2,17.3,32.1,57.6,21.2,240,67.7,9.2,5.7,48.9,259.5,203.4,149,134.6,89.1,46.6,19,154.1,209.1,161.1,22.9,359.1,92.4,60.7,51.8,52.6,44.4,56.7,68.3,97,107.8,33.8,105.4,94.4,138.1,135.2,95.2,84,11.1,190.9,249.1,249.5,256.1,143.1,103.8,61.3,64.4,70.9,71.6,42.5,197.7,327.9,26.6,24.3,52,60.8,78,50.2,40.5,77.5,69.7,412.3,13.1,25.9,45,64.1,136.9,135.9,157.5,5.1,74.1,66.4,66.5,66.2,49.8,72.4,63.8,79.9,82.8,47.8,109.2,65.4,67.2,68.7,115,66.5,47.3,113,171.5,169.1,125.9,106,114.3,157.9,94.3,59.8,49.7,50.2,39.8,31,51.1,55.1,26.3,31.5,78,56.7,84.9,59.5,86.4,50.5,51.4,67.8,75.4,62.7,79,27.1,67.2,65.3,60.9,91.5,122.6,162.8,163.8,166.4,160.1,144.4,117,147.6,69.7,155.3,171.2,153.3,92.9,136.1,124.2,110.7,146.9,144.1,140.7,143.1,63.7,179.9,172.8,41,19.7,55.6,156.9,196,37.6,121.3,153,60.2,30.3,165.8,531,201.2,106.1,105.3,55.2,66,102,23.1,36,20.1,96.2,86.9,239.9,232.8,155.5,170.7,203.4,132.8,62.1,116.1,139.2,242.8,74.1,175.8,209,110.6,57.3,53.3,159.7,179.4,153.6,75.2,1.8,74.6,59.6,61.3,120.5,45,63.2,58.6,202,147.5,24.7,98.3,69,204.1,43.7,361.5,283.4,198.8,245.4,493.7,62.4,42.2,87.2,63.8,316.2,41.8,150.1,10.2,137.1,172.4,267.1,115.4,8.9,4.2,6.2,8.8,86.1,181.2,162.3,84.8,0.6,170.4,95.3,81.9,31.2,112.3,126.1,122.2,194.9,221.1,28.1,9.9,126.9,75.6,72.5,89.9,61.1,66.3,62.9,31.8,85.5,74,60.9,93.3,19.1,28.6,30.3,18.2,37,25,29.8,29.4,45.1,43.6,41.5,35.4,44.3,38.7,34.6,27.9,27.7,5.2,15.2,12.2,38.5,21.1,34,40.5,36,19.6,31.8,77.9,34.5,121.9,34.6,31.9,18.9,62.3,193.4,50.9,35.5,22.8,16.3,49.1,70.8,57.3,43.1,134.1,124,132.1,65.5,9.7,23.3,92.9,98.4,104.9,49.4,59.1,53.1,70.3,63.8,56.9,41,32.2,80.7,71,48.2,43.9,16.2,51,145,75.5,146.5,135.3,131.5,151.9,32.6,60.7,91.7,85.8,97.5,88.8,17.4,34.4,40.7,18.4,40.4,30.3,41.6,34.6,47.1,40.8,55.1,281.3,120.1,63.8,62.3,92.8,46,47.3,7.2,46.3,28.7,30.9,27.2,56.1,61.2,115.9,63.4,45.5,37.1,31.2,41.3,24.3,19.8,14.3,35.1,38.3,41,38.8,44.6,36.6,33.9,27.6,43,4.3,10.8,60.1,83.5,5.2,113,71.6,12.9,89,58.7,54.7,55.2,78.2,69.2,64.1,53.7,120.2,84.1,20.1,28.2,39.7,43.4,34.7,33.9,17.5,22.7,31.2,41.1,31.3,24.1,44,35.8,34.2,6.4,39.6,78.7,85.8,32.8,24,23,30.3,6.3,26.8,29.7,35.8,26.1,30.3,6,9.8,24.6,23.2,24.4,21.8,33,40.1,47.2,56.1,52.6,43,26.9,146.1,27,25.1,23.4,20.3,26,20,25.2,25.4,25.4,25.4,17.6,23.6,35,32.1,21.3,20.4,34.7,15.3,33,16,15.5,21,17.4,21.8,16.7,20,13.3,11.7,14.3,15.5,15,39.3,50.7,15.6,17.1,66.9,29.3,26.6,25.8,17.7,17,20.2,12.9,21.3,11,10.4,6.3,8.6,19.1,16,16.5,17.8,10.4,12.9,11.8,13.4,18,19.7,16.8,26.2,24.6,68.8,50.6,22.7,21.6,26,26.8,22,21.4,25.5,25.2,22,23.8,43.8,44.3,48.3,43.6,26.2,56.8,47.1,26.3,22.9,49.1,31.9,22.8,52.4,46.8,55.6,25.4,38.4,101.2,2.9,56.7,103.9,29.9,30.7,18.9,19.8,24.6,23.2,21,19.8,20.1,22.9,16.1,28.3,23.8,15.7,19.2,6.8,11.6,26.3,24.8,40.5,39.4,29.2,24,21.6,18.3,25,23,26.8,18.2,20.6,27.1,30,16.2,36.1,58.9,19.8,27.9,26.8,47.4,41.1,88.4,39.4,37.1,17.7,76.6,41,41.1,27.8,22.3,25.2,28.8,17,17.6,31.4,64.8,133.4,93.5,134.3,275.7,222.1,171.4,342.4,12.7,34,35.8,30.8,30,26.3,34.5,19.9,29.5,37.1,35.3,23.3,38.4,53.2,168.2,30.7,20,22.8,40.4,58,2.7,4.1,7.5,10.1,7.5,9.6,7.3,11,10,34.1,3.3,32.4,11.7,7.9,8.7,10.2,6.3,7.1,7.7,7.4,5.9,5.8,3.6,9.5,21.1,28.2,6.3,8,7.6,12.5,22.2,8.3,9.6,6.2,6.3,7.7,6.4,7.4,6.6,7.2,7.4,6.9,6.7,7.7,6.3,6.8,5.3,6,13.4,5.7,5.7,33.3,9.1,37.2,12.5,4.5,4.7,3,68.5,18,13.4,41.1,14.5,14.1,44.7,6.2,47.7,8.3,17.9,10,8.6,3.4,12.4,10,2.6,39.4,10.9,83.7,8.4,48.9,8.4,10.5,45.2,8.1,49.3,8.2,74.6,12.1,3.7,7.7,9.7,5.3,67.6,10.9,12.7,10.1,57.3,36,56.3,46.4,11.9,36.2,64.9,32.6,42.3,5.1,9.6,24.9,6.4,12.7,6.8,3.3,7.7,4.3,12.2,7.4,10,16.1,4.3,42.7,4.7,6.1,8.7,7.6,9.3,25.8,8.6,17.1,12.8,3.7,15,5.3,19.2,10.6,9.1,9.6,12.8,13.2,8.2,20.4,24.1,15.9,21.3,4.5,49.4,5,17.6,18.2,13.5,6.9,7.4,5,7,25.7,6,21.2,6.2,20,12.8,12.7,9.8,17.3,32.9,8.2,6.3,44.6,3.1,2.3,6.8],"duration":[3.647,15.395,19.911,68.3,25.977,27.973,22.453,2.716,0.24,3,0.386,0.84,0.24,0.389,1.729,0.411,0.506,3.713,4.164,0.752,14.4,0.539,1.518,2.065,9.806,4.101,19.397,0.407,0.264,0.295,0.405,0.397,0.577,0.345,1.451,3.714,1.064,0.784,1.044,0.639,0.625,1.185,1.879,0.414,0.347,0.481,0.424,0.34,0.308,0.9,2.474,1.332,0.754,0.402,3.224,10.086,3.398,2.116,2.395,1.469,0.388,2.626,0.9,1.029,1.383,0.578,0.561,0.631,0.704,3.668,2.955,3.201,11.569,3.532,6.143,4.63,1.278,2.31,0.916,0.808,1.539,1.636,12.554,3.752,5.625,1.939,1.805,2.535,5.047,1.795,1.311,0.902,0.559,0.393,1.171,4.245,21.352,4.044,1.03,2.8,6.32,6.61,1.019,1.459,3.146,1.009,1.129,3.235,0.894,0.635,0.302,0.574,0.216,0.122,0.293,1.368,0.854,0.556,4.096,1.013,0.731,0.599,0.6,1.148,10.747,1.501,0.973,14.4,1.27,1.405,0.99,8.347,1.411,1.165,1.121,3.807,0.69,1.756,0.655,8.351,0.458,2.291,0.439,9.093,8.725,3.247,0.754,1.29,2.438,0.334,0.341,1.161,0.921,0.907,5.721,10.517,1.003,0.635,1.913,4.133,1.413,0.6,5.593,9.853,0.599,0.472,1.297,1.341,12.607,0.499,0.979,0.656,0.183,0.151,0.505,0.76,5.949,7.369,0.707,0.878,1.733,0.79,0.4,5.356,2.177,10.156,8.365,6.665,0.721,0.825,2.31,0.827,0.346,8.365,5.944,1.05,1.221,1.27,0.575,8.205,3.342,0.367,1.656,1.669,0.576,11.084,1.694,2.878,1.622,3.157,8.108,1.372,1.88,5.008,3.303,2.906,7.116,4.398,0.871,1.669,2.777,1.952,1.322,0.544,0.738,1.106,1.033,0.734,1.278,0.91,1.269,3.669,1.384,0.273,0.669,3.975,0.008,0.997,1.129,0.913,1.067,0.49,0.842,1.479,1.213,1.106,2.014,5.751,1.55,2.499,21.514,0.737,3.141,13.888,2.456,1.575,1.62,1.422,4.628,3.176,9.266,0.601,0.729,0.548,0.756,1.041,1.168,1.069,0.935,1.115,1.089,1.278,2.337,0.478,1.019,0.642,1.133,0.712,0.911,0.886,0.52,0.537,2.379,3.816,1.503,8.695,6.568,11.852,4.349,3.204,3.991,5.478,1.538,1.105,1.391,3.257,0.869,2.222,1.809,1.109,1.025,0.981,0.674,1.216,1.473,1.605,2.704,0.942,0.729,0.753,0.585,0.644,0.718,0.596,0.691,0.736,0.845,0.796,0.726,0.597,0.598,0.558,0.951,1.053,0.56,0.805,0.922,0.958,1.27,0.85,1.163,1.527,1.82,1.066,1.012,1.768,1.003,0.71,1.543,0.909,0.992,1.047,0.743,0.786,0.693,1.3,2.466,2.264,1.971,1.806,1.821,4.349,5.725,2.341,2.431,2.55,11.218,10.163,5.292,1.332,8.842,11.54,9.607,2.137,5.817,2.883,8.137,2.407,2.528,1.923,4.437,4.172,4.422,3.773,12.654,6.799,6.809,10.005,11.111,1.977,3.005,7.897,4.318,5.014,11.644,4.949,3.026,2.535,1.102,0.735,8.338,1.728,6.696,7.57,6.402,8.046,0.12,6.642,3.67,5.397,5.905,5.172,3.724,0.383,5.063,0.072,0.825,0.072,3.073,3.077,4.912,5.399,15.682,18.892,4.651,4.101,18.676,13.556,2.028,17.978,6.55,2.325,8.85,5.825,11.019,5.104,3.718,5.938,0.645,1.95,2.573,4.904,2.264,1.7,4.213,3.806,11.063,13.732,16.123,15.276,0.668,44.101,19.203,17.659,0.518,0.882,6.051,8.734,7.44,8.85,3.604,19.74,0.52,0.705,0.529,1.884,4.732,0.682,1.288,2.872,2.866,4.129,3.993,1.752,1.156,1.115,1.824,1.81,1.362,1.343,1.353,1.811,1.315,1.024,1.205,1.468,3.055,2.086,1.838,1.745,1.324,2.654,1.335,6.642,4.79,3.547,3.508,4.843,13.665,5.318,8.853,2.108,2.295,12.887,6.136,0.293,0.586,6.8,5.464,3.47,3.747,1.967,5.455,3.536,7.924,2.582,2.384,2.915,1.554,1.486,1.81,1.265,2.698,1.761,1.775,1.754,1.791,1.757,1.755,1.736,1.797,1.762,1.755,1.779,1.768,1.753,1.753,1.767,1.75,1.332,3.542,2.676,2.155,6.135,1.69,1.72,0.815,1.36,2.37,3.621,2.805,2.868,3.315,2.504,4.629,1.596,1.984,1.622,0.766,29.915,1.387,6.181,2.645,4.781,4.869,2.46,1.522,3.627,3.397,2.273,2.682,3.7,1.872,3.388,2.256,0.404,2.237,4.51,3.703,2.405,3.258,2.904,3.777,3.488,3.178,3.842,8.175,5.422,6.509,7.854,8.854,7.522,5.822,6.188,4.223,5.923,3.13,3.134,1.113,1.8,2.767,1.119,1.318,0.968,2.419,1.223,4.287,4.277,8.732,1.028,2.39,2.285,2.974,16.399,7.27,7.296,2.836,9.646,2.449,14.316,4.906,1.376,4.654,4.612,3.318,1.819,1.893,1.961,1.798,0.202,1.716,1.839,3.053,2.357,5.213,4.434,4.437,15.989,9.39,1.127,21.927,3.029,3.282,2.913,7.93,8.175,4.775,2.273,1.659,2.037,1.518,2.148,1.197,1.871,2.745,2.733,2.866,1.687,7.456,4.284,2.128,1.018,1.236,0.182,4.177,2.869,3.462,6.266,1.225,5.05,10.077,11.236,1.054,0.909,3.322,4.242,2.646,2.624,5.409,2.691,2.694,1.039,0.936,2.111,4.835,9.828,9.504,12.348,4.532,8.981,2.052,1.24,1.673,3.647,2.425,2.274,3.578,1.828,1.476,10.469,8.077,3.818,3.96,0.519,2.535,1.473,1.517,3.632,2.147,2.251,1.856,1.883,2.258,2.213,1.93,2.017,1.525,2.271,2.276,1.888,2.463,2.029,0.481,1.398,1.888,1.477,0.764,1.829,4.423,0.912,1.455,0.036,0.864,5.508,7.02,5.137,3.287,3.089,2.704,6.711,4.992,3.67,2.438,1.644,2.597,2.486,2.119,3.341,3.29,2.244,2.05,1.916,2.123,1.224,0.03,1.738,2.201,2.208,1.996,1.939,1.687,1.554,1.99,2.558,2.891,0.916,1.325,1.627,2.155,2.202,3.439,1.383,1.289,2.563,9.324,1.686,2.208,19.081,16.415,3.672,0.018,2.019,0.036,3.456,0.036,2.252,1.462,1.503,3.515,1.742,1.596,2.301,1.775,0.421,2.939,0.144,1.415,2.699,2.166,1.372,1.708,1.406,1.503,1.314,1.512,1.477,2.724,1.224,1.333,2.551,3.025,1.976,2.023,1.268,1.419,1.708,1.733,1.938,2.023,1.854,1.634,1.822,1.189,2.16,12.645,13.798,0.12,3.306,0.545,0.036,25.964,0.182,0.371,0.11,3.306,0.257,0.631,0.327,5.042,2.65,2.086,3.25,1.484,1.124,0.218,0.771,0.036,1.746,1.945,1.738,2.131,2.764,24.79,10.158,17.727,12.928,0.255,4.638,1.712,2.431,1.769,1.667,2.655,0.036,2.059,7.512,7.92,14.618,9.6,8.032,1.373,0.371,0.582,0.073,1.382,0.184,9.918,1.257,6.063,5.608,4.807,2.625,2.715,1.778,2.35,13.062,2.797,25.175,17.942,3.827,4.168,5.207,0.811,7.903,0.816,0.206,0.313,14.478,15.684,5.648,12.601,3.351,0.429,4.345,2.949,2.423,1.853,1.777,9.72,6.194,2.639,16.088,2.88,0.784,5.338,2.565,4.478,0.011,9.912,4.154,1.108,14.882,0.687,2.01,0.701,1.608,4.967,13.335,1.583,2.469,2.931,0.991,7.387,2.61,9,0.855,1.575,1.35,22.815,13.275,1.225,3.971,11.057,9.327,10.397,30.162,9.735,1.225,0.965,4.656,2.27,2.729,12.173,5.974,17.97,47.98,3.762,3.309,1.727,4.225,4.702,14.897,1.286,1.225,0.46,1.396,9.661,1.065,3.111,1.554,1.145,2.658,15.87,6.048,4.941,2.924,2.81,2.952,7.194,0.473,4.109,19.376,4.865,0.083,2.829,2.505,3.559,1.702,1.33,2.364,4.154,4.798,3.503,1.666,4.765,5.136,5.162,3.687,2.253,2.29,2.769,2.03,2.123,2.032,2.771,1.678,14.97,7.048,4.222,1.752,2.271,1.315,1.532,2.505,1.296,1.143,2.984,3.467,0.095,3.579,2.375,2.308,3.3,1.75,2.398,3.017,2.159,2.124,1.669,1.117,0.461,0.122,1.788,4.968,5.76,2.901,1.679,1.443,2.958,2.923,0.998,1.105,4.105,3.01,11.71,14.566,8.806,3.337,2.232,3.494,3.468,3.908,4.073,24.053,4.028,1.213,2.611,0.829,3.541,11.116,2.224,4.378,0.695,1.348,2.936,2.956,2.239,2.291,2.994,10.969,14.017,3.736,4.35,3.537,3.597,1.909,2.841,5.417,5.457,9.259,27.045,14.321,5.109,4.305,4.321,3.217,0.715,4.996,4.534,6.162,10.964,6.218,0.364,6.037,2.59,2.899,2.235,1.657,1.6,2.815,1.871,3.248,2.39,2.915,2.762,9.673,15.019,2.664,3.244,8.64,1.129,7.917,5.699,4.076,1.451,1.77,2.226,42.472,0.24,6.433,3.637,4.186,2.92,4.038,4.054,2.429,12.896,7.668,0.504,0.484,3.523,5.46,2.872,3.521,0.648,1.451,3.552,4.077,8.743,2.473,5.363,9.878,4.061,2.012,4.207,2.447,2.47,3.343,3.303,2.338,3.081,1.451,4.313,2.517,4.211,2.227,3.602,4.663,2.868,2.424,8.828,4.303,3.362,3.711,4.094,4.585,6.144,3.51,3.527,8.033,4.099,3.95,3.44,3.47,2.935,3.015,2.448,2.483,4.045,2.315,2.194,1.599,1.6,3.235,5.936,1.718,1.629,1.726,2.01,1.976,1.227,0.876,0.859,0.844,0.993,1.269,0.609,1.053,2.108,2.159,2.133,3.099,2.822,2.476,2.138,2.175,2.631,1.958,2.557,2.499,1.557,1.161,1.526,2.344,2.193,2.811,2.418,1.682,2.404,2.439,2.251,4.517,1.875,5.688,5.265,7.816,6.557,1.946,14.973,17.32,11.104,2.805,5.685,2.611,3.322,4.532,6.738,4.314,2.476,4.266,8.297,4.529,7.343,17.432,2.543,11.543,3.403,3.322,4.294,2.897,2.72,2.742,1.833,1.568,4.889,2.746,2.614,2.575,2.358,1.598,2.286,2.261,3.135,3.507,2.692,2.842,0.807,0.675,3.025,11.548,0.012,3.991,6.267,1.275,1.656,2.405,1.632,1.122,1.214,1.104,1.151,1.052,1.541,1.076,1.973,1.275,1.224,1.15,1.04,1.321,1.481,1.17,1.233,1.032,1.063,1.022,1.139,1.082,1.394,1.62,1.072,1.463,10.07,1.78,2.903,3.404,3.617,3.61,3.38,3.492,3.714,4.861,2.966,2.503,6.104,5.956,0.023,23.286,5.804,8.424,5.551,5.189,6.86,0.272,3.872,2.088,7.977,2.797,2.36,2.103,6.103,20.916,15.829,0.947,2.626,14.506,12.987,10.443,4.549,4.787,4.646,4.639,5.865,8.648,2.251,3.011,8.29,4.948,4.956,13.984,16.105,5.099,7.056,1.511,6.659,3.75,3.762,13.195,5.782,9.211,23.41,28.01,4.677,3.591,2.103,6.523,25.93,6.449,6.409,3.255,3.215,2.211,4.312,2.972,1.646,2.169,4.572,4.091,2.251,2.239,2.587,2.386,1.38,0.862,2.256,1.635,2.811,2.97,2.794,3.161,2.549,2.894,2.293,2.419,2.845,3.314,3.433,2.564,1.744,3.965,9.151,10.433,3.909,13.546,6.473,3.878,13.175,9.142,9.017,8.705,7.537,13.694,14.145,37.947,9.006,16.322,5.884,1.644,32.912,2.689,1.678,2.267,7.942,20.724,24.393,23.167,2.896,16.203,12.146,4.426,6.672,6.661,4.541,8.398,3.968,3.935,7.912,22.099,7.869,7.863,9.507,10.772,0.132,8.647,2.01,6.78,13.381,5.27,10.829,5.728,14.807,4.296,7.422,7.515,2.17,12.229,12.126,5.754,7.895,10.617,7.687,7.863,5.868,4.089,0.538,6.158,4.745,5.854,6.748,5.258,2.072,7.876,5.757,3.021,2.993,4.595,5.368,4.545,3.279,3.652,3.586,3.619,4.328,4.043,3.605,2.912,3.086,2.733,2.486,2.5,2.56,2.765,2.792,2.736,2.915,3.329,3.938,3.147,3.782,3.818,3.934,2.171,2.149,2.181,2.518,1.586,1.098,1.144,0.404,0.998,2.983,2.395,2.897,5.825,0.671,6.184,8.146,4.291,2.165,6.058,6.462,2.755,1.614,2.471,4.159,3.763,2.808,2.643,1.284,0.992,0.908,0.795,1.156,1.068,1.022,1.127,1.061,1.077,1.047,1.056,0.963,1.071,1.028,1.072,1.05,1.101,1.035,1.043,1.045,1.058,1.057,1.076,0.994,1.055,1.083,1.121,0.922,1.1,1.035,1.055,1.031,1.143,0.958,1.054,1.054,1.053,0.575,0.564,1.544,1.412,1.051,1.595,1.139,1.08,1.406,1.042,1.127,1.42,1.118,1.117,0.789,2.042,1.295,1.89,1.913,4.659,5.103,4.548,6.026,3.141,1.594,1.649,3.476,2.219,9.69,1.487,5.358,3.452,15.724,3.066,5.627,2.759,1.085,1.108,1.265,1.214,1.11,1.381,1.367,1.231,1.146,1.324,1.555,1.423,1.184,1.245,1.494,1.392,1.349,1.578,1.237,1.613,1.108,0.916,1.412,1.846,1.187,1.174,1.225,1.489,1.548,6.39,1.569,1.485,1.631,1.19,1.032,1.292,1.329,1.371,1.065,1.011,1.098,1.076,1.12,1.173,0.982,1.2,1.332,1.388,1.325,1.216,2.078,1.625,1.361,1.062,1.543,5.567,7.734,8.714,8.562,6.731,9.815,10.955,9.599,1.265,4.279,2.657,6.925,7.111,5.267,1.855,6.168,7.519,4.357,3.479,4.218,4.945,1.088,3.24,3.143,9.073,7.859,4.946,4.941,6.581,8.239,3.091,3.068,5.015,23.388,10.387,12.793,17.432,9.513,13.019,14.399,8.502,8.663,6.2,6.975,9.408,5.938,5.643,1.12,9.913,6.286,7.322,2.743,2.799,3.258,2.911,3.704,2.675,2.256,2.746,2.171,1.867,2.546,2.906,3.415,1.5,1.73,1.167,1.462,1.146,3.079,3.767,3.184,3.986,4.023,4.781,3.346,4.73,6.376,2.757,5.38,5.362,5.866,4.456,2.834,4.163,1.098,1.673,1.684,0.451,0.63,1.712,2.309,1.03,1.387,1.237,0.832,0.511,1.487,1.788,1.914,1.994,2.219,2.099,1.237,2.297,1.194,1.271,1.186,1.248,1.235,1.327,0.973,2.222,1.41,1.893,1.047,1.299,1.43,0.714,2.061,2.632,1.257,1.251,1.2,1.213,3.416,1.322,1.814,1.878,0.405,0.622,0.589,0.6,1.085,2.171,7.562,6.336,2.867,3.153,1.214,2.09,3.065,1.488,1.022,0.073,1.487,1.219,1.922,5.446,6.922,1.758,3.891,3.732,2.099,4.096,1.291,5.945,1.502,1.368,3.239,4.124,3.263,2.79,2.265,2.135,1.852,3.231,2.31,2.757,4.45,10.435,6.467,1.533,6.967,17.007,14.577,11.956,1.645,1.268,1.76,1.834,1.704,1.659,2.035,1.873,2.576,2.045,2.399,2.867,4.967,13,3.867,0.155,1.043,0.063,7.54,6.013,1.517,1.4,1.467,1.23,2.725,6.393,6.796,0.976,9.74,1.733,6.28,5.729,5.3,7.555,4.297,7.047,4.925,4.776,13.792,3.739,26.258,7.219,4.668,5.486,1.004,5.434,4.891,7.745,5.227,2.3,3.962,3.75,6.791,0.764,2.37,7.504,2.5,9.867,1.323,6.668,4.574,4.623,0.361,1.067,1.332,5.701,5.371,7.24,12.234,28.866,3.404,3.676,3.637,2.345,2.339,1.079,2.02,1.589,1.233,3.974,0.883,3.499,3.238,2.734,1.203,1.971,1.951,1.145,1.277,0.976,1.286,2.46,2.311,1.528,3.192,0.646,1.11,3.903,2.12,3.533,4.516,6.796,7.699,5.175,3.316,5.332,4.6,5.713,6.941,5.818,4.52,4.589,10.819,2.2,3.533,2.8,7.467,0.9,12.249,8.018,0.462,2.5,2.925,2.075,0.933,10.13,1.784,2.278,3.031,3.514,3.04,3.416,4.432,5.37,1.369,4.333,4.895,3.63,5.884,9.36,15.773,3.374,0.908,2.446,6.567,4.47,2.291,1.259,1.192,0.876,3.209,2.691,3.381,1.172,0.538,1.497,3.745,3.68,3.682,5.789,4.351,2.696,1.192,2.656,2.645,1.889,1.968,0.722,0.807,1.576,3.093,5.894,6.696,6.436,11.703,0.343,27.826,6.064,6.301,11.368,7.44,0.66,7.32,6.343,6.325,6.711,1.867,6.884,4.556,31.983,1.192,17.983,1.68,1.49,6.944,2.949,1.647,2.446,1.845,0.405,3.784,0.809,0.812,2.569,1.702,0.855,3.645,0.512,4.81,4.172,5.883,3.297,2.733,6.689,1.333,1.704,0.309,4.605,3.335,2.917,5.179,5.093,5.128,9.177,1.834,1.745,3.938,2.282,0.757,1.361,2.095,2.439,4.379,2.299,2.482,1.858,2.175,1.683,1.286,1.073,1.584,0.773,1.392,1.454,1.733,1.753,1.438,1.653,1.773,1.649,0.875,0.821,1.019,1.022,0.984,1.044,1.057,1.061,2.111,3.088,2.004,1.808,1.965,5.654,6.109,3.578,6.636,6.032,6.273,4.5,4.993,17.066,1.733,4.063,1.697,0.755,2.005,1.989,2.034,1.245,0.72,0.236,2.271,3.258,2.313,2.544,8.369,7.769,0.189,3.455,8.496,4.028,3.552,4.048,2.314,1.202,2.48,1.262,1.79,1.938,1.768,1.971,4.456,3.02,2.801,1.909,2.282,4.3,1.825,0.043,6.338,1.557,0.462,1.954,0.296,7.136,18.606,6.657,2.822,2.154,12.958,7.873,6.898,0.54,3.564,4.521,3.348,1.174,2.519,2.485,0.624,1.068,1.146,2.777,1.58,1.083,1.036,2.11,2.174,0.668,2.696,1.72,1.641,1.87,1.27,1.538,1.623,1.698,1.8,2.236,1.909,2.302,1.954,1.502,0.515,4.096,5.838,1.477,12.884,12.05,5.255,4.166,5.168,4.548,2.463,4.828,5.968,4.872,5.346,4.568,26.842,16.924,9.349,11.678,5.891,5.595,3.041,3.026,4.839,2.934,2.922,5.982,20.721,15.537,17.474,3.688,3.293,2.511,2.889,3.57,3.312,8.836,7.012,1.635,2.981,2.256,1.885,3.433,2.69,5.6,1.12,28.595,4.988,3.575,12.941,0.732,8.118,8.138,9.123,5.924,1.185,0.273,5.865,6.08,1.927,1.999,1.848,3.668,5.502,2.04,2.262,5.275,6.331,3.268,1.493,6.341,5.392,6.605,8.319,10.448,10.202,7.104,1.635,2.895,1.994,0.421,3.772,5.44,2.659,1.904,1.901,3.894,1.228,12.699,7.674,7.841,5.991,6.88,5.101,4.185,2.25,10.344,0.973,1.35,1.2,1.2,10.498,3.502,24.465,9.661,14.891,5.339,2.374,6.048,2.21,7.516,24.978,10.691,14.441,9.161,0.54,3.024,0.283,1.524,0.324,0.396,11.369,7.302,3.297,4.993,5.194,3.302,26.472,3.562,1.602,2.21,0.221,2.325,1.362,1.728,2.405,2.532,2.32,1.589,2.984,3.168,3.011,3.926,4.042,3.652,2.446,2.56,6.9,3.668,7.322,1.782,7.739,2.274,4.689,4.575,0.654,8.633,11.205,9.6,2.176,2.333,7.475,3.812,1.673,1.78,1.832,1.872,1.83,2.087,2.022,1.43,1.214,0.969,2.042,1.955,4.912,5.175,4.637,2.339,1.399,3.414,2.598,3.4,3.71,3.146,2.836,3.875,9.442,16.308,0.06,10.551,9.45,3.733,3.832,2.107,2.315,2.726,1.582,1.68,3.069,5.053,2.609,3.708,2.946,2.939,2.55,2.506,3.854,2.991,2.039,2.586,1.393,4.119,1.981,2.131,1.93,2.01,2.024,2.183,2.169,2.419,4.509,4.433,9.931,9.856,7.577,8.541,0.162,12.005,2.816,8.1,3.757,12.007,18.263,7.537,1.413,1.632,2.381,2.777,1.317,2.619,1.62,8.304,0.281,1.291,0.281,10.081,1.99,1.635,7.028,1.2,2.798,2.255,1.585,1.462,1.343,1.618,1.747,1.662,1.348,1.594,1.199,1.687,1.145,1.608,1.573,1.523,1.86,1.74,1.505,1.896,1.795,1.685,1.434,3.278,4.812,5.88,1.449,2.725,1.718,2.274,2.034,8.125,5.31,6.23,17.925,7.485,7.481,7.068,7.411,7.655,7.69,12.465,6.151,3.973,6.171,5.222,2.503,1.468,4.513,0.026,3.799,3.9,3.752,1.943,3.53,3.303,3.429,2.538,5.1,8.566,5.545,2.947,2.749,4.074,3.518,2.14,3.024,3.01,2.985,2.993,2.976,3.023,3.081,2.667,2.977,3.035,3.104,2.972,3.463,3.053,3.002,2.991,3.026,2.958,3.134,2.841,2.149,2.153,4.623,5.082,4.526,3.075,3.172,2.707,2.197,2.236,2.16,2.884,3.846,1.333,1.161,1.105,1.112,0.67,1.586,1.122,1.07,1.13,1.184,1.051,1.324,1.1,1.279,1.1,1.176,1.214,1.112,1.173,1.124,1.136,1.207,1.143,1.138,1.236,1.943,2.624,2.373,2.414,2.334,2.397,2.297,0.615,8.091,2.487,1.971,0.237,2.199,2.44,5.51,6.788,2.702,0.827,0.819,1.448,1.213,1.134,1.052,1.044,1.051,1.003,1.061,1.032,1.047,1.127,1.099,1.208,1.321,1.099,1.089,0.986,1.079,1.214,3.488,2.972,6.451,5.378,3.687,1.896,3.748,3.762,3.848,3.686,3.334,6.265,4.206,0.646,6.427,3.66,5.945,1.882,1.852,2.219,2.583,2.583,3.296,3.555,3.503,3.642,0.985,2.614,0.656,2.887,3.595,3.635,3.58,3.627,3.639,3.775,3.59,1.364,2.643,1.868,3.587,3.314,0.441,3.258,3.37,3.296,3.343,3.277,3.357,3.224,3.148,3.17,3.245,3.323,3.43,3.342,3.44,3.364,3.98,2.473,6.585,6.423,6.687,6.605,6.76,5.1,1.576,3.103,3.273,3.217,3.746,0.474,2.509,3.274,3.386,3.25,3.434,3.325,3.326,3.422,2.419,1.924,2.379,3.391,2.3,3.117,3.92,5.169,0.488,5.746,1.869,4.915,4.613,3.508,3.391,3.416,3.156,3.24,0.078,2.767,1.654,2.671,2.918,3.506,2.831,3.771,3.91,3.33,0.6,3.603,3.676,3.567,3.596,3.647,3.592,3.622,3.676,3.451,3.724,3.774,0.925,2.709,3.881,4.299,3.483,0.97,2.833,3.725,6.214,0.441,2.702,3.603,3.912,3.794,3.258,3.974,2.354,2.258,2.287,5.02,7.528,5.272,3.757,0.771,3.913,4.548,5.587,5.034,7.037,2.066,2.705,2.531,1.901,1.941,2.1,1.441,0.734,2.226,1.402,1.282,1.2,1.362,2.335,2.301,2.425,2.383,2.246,2.081,2.252,2.769,2.687,9.564,2.618,2.275,2.491,2.422,2.332,2.281,2.311,2.28,1.453,1.379,1.934,1.807,1.805,2.298,2.321,0.854,0.995,1.843,1.661,1.21,1.163,1.183,1.165,1.776,1.149,1.271,1.155,1.291,1.209,1.104,1.157,1.044,1.616,3.423,5.002,9.827,10.878,1.803,1.813,1.683,1.83,1.425,1.253,2.535,2.387,1.578,2.137,1.935,2.033,3.066,1.696,1.751,1.874,1.705,1.647,1.409,1.063,2.212,1.693,1.719,1.741,0.423,0.289,1.171,2.153,1.365,1.028,1.07,1.751,4.537,1.014,0.769,2.963,2.186,1.551,1.333,1.483,1.763,1.602,2.071,2.28,4.01,1.927,2.016,1.477,1.681,2.304,10.975,1.401,1.407,1.156,1.2,1.475,1.892,0.984,0.457,0.53,0.699,0.807,0.66,1.74,2.646,1.366,0.69,2.567,2.709,1.824,1.084,1.401,1.512,1.494,1.368,0.997,0.837,0.967,0.872,1.01,0.877,0.368,0.411,0.397,0.342,0.239,0.811,1.317,0.799,0.257,0.847,1.598,3.205,3.155,1.631,1.576,0.88,0.809,1.24,1.268,1.287,5.144,1.651,1.161,1.898,1.774,1.19,1.285,2.062,2.061,4.153,0.872,2.206,1.044,0.981,2.425,1.774,0.752,0.756,0.58,0.669,1.282,0.891,0.864,0.956,1.024,0.574,7.878,3.316,1.33,0.664,0.44,1.312,1.302,0.682,0.989,1.426,0.625,0.871,0.802,0.873,1.187,1.217,1.211,1.074,1.841,1.781,1.03,1.207,15.486,0.612,6.572,0.937,0.855,0.74,0.813,0.789,0.853,0.585,0.743,1.003,1.904,1.513,1.857,0.886,0.841,1.663,1.946,1.143,0.719,0.665,0.798,0.661,0.741,0.716,0.756,0.969,1.136,2.264,1.816,2.01,2.209,0.465,0.843,5.367,9.033,5.377,2.29,5.151,3.329,1.673,24.153,7.119,14.755,5.134,17.915,6.191,5.553,4.592,0.219,3.566,0.298,1.233,1.099,3.967,2.257,9.097,28.172,31.387,0.223,1.292,3.631,15.962,1.008,4.44,0.565,1.638,3.062,1.441,7.839,1.313,0.586,12.835,9.658,6.705,0.216,8.425,7.2,3.333,0.45,1.173,1.108,1.792,1.649,1.651,1.488,2.537,3.778,3.426,1.286,1.952,4.512,4.769,3.619,1.189,15.321,0.761,3.521,5.375,1.117,6.559,2.348,11.723,8.025,4.733,3.3,1.611,2.479,2.842,12.07,26.492,0.53,0.516,0.56,0.495,0.517,0.509,1.011,0.515,0.502,0.719,0.373,0.375,0.693,0.384,0.168,2.196,5.081,3.875,4.56,1.697,4.013,1.126,3.097,6.219,1.566,2.494,2.691,9.687,2.615,1.435,5.223,0.869,3.122,0.913,0.87,0.869,0.821,2.643,0.695,0.701,0.903,0.772,1.179,1.685,3.535,0.578,72.056,2.208,8.974,3.852,4.687,0.417,0.279,0.4,16.435,1.289,0.916,0.935,0.751,1.453,1.002,1.013,2.334,1.006,1.011,0.91,1.11,10.122,3.782,14.78,9.665,4.046,13.354,4.214,15.424,4.401,19.719,3.098,6.879,0.078,5.38,2.801,4.644,29.009,20.335,49.4,17.738,2.996,28.858,18.237,3.328,0.183,5.892,1.73,15.161,1.87,5.591,3.444,3.644,3.088,2.06,0.795,2.495,0.572,3.44,1.979,0.292,1.066,1.634,1.569,12.1,2.34,1.203,1.909,1.721,2.247,1.926,0.009,1.807,1.56,1.55,2.291,1.506,1.429,1.475,1.547,1.643,1.357,1.265,2.076,1.899,1.886,1.43,1.4,1.498,1.509,1.546,1.443,1.488,1.359,1.641,1.473,1.453,1.583,1.448,1.58,1.459,1.627,1.411,1.587,1.436,1.472,1.48,1.425,1.557,1.394,1.522,1.434,1.506,8.036,7.828,3.028,1.637,1.57,1.761,2.215,1.731,1.309,1.526,1.479,1.353,0.648,1.955,1.776,1.515,1.596,1.555,1.371,1.762,1.585,1.589,1.478,1.76,1.56,1.443,1.591,1.203,1.446,1.443,1.455,1.298,2.15,1.325,1.36,1.424,1.322,1.105,1.453,1.611,1.213,1.225,1.189,1.69,1.399,1.919,1.895,7.065,5.777,7.295,3.354,4.701,1.812,5.876,2.456,1.421,0.086,1.154,1.512,2.645,1.527,10.011,3.9,29.268,2.911,10.382,4.955,4.247,5.698,0.674,3.297,2.774,2.671,2.738,2.671,3.526,2.949,2.692,2.605,3.155,2.187,2.27,11.007,13.449,2.69,2.029,2.265,2.55,2.762,2.556,2.672,2.681,2.724,1.014,3.76,11.487,7.45,6.819,8.818,5.695,1.759,2.475,6.268,2.484,0.965,7.94,5.08,3.805,3.912,4.62,2.542,4.901,0.993,4.662,4.758,3.949,2.947,2.972,2.739,2.299,2.3,4.025,3.549,2.754,5.504,4.256,1.146,4.144,2.879,3.421,9.147,4.105,3.449,5.314,6.478,5.532,6.703,4.113,8.623,4.379,3.027,2.534,0.745,1.893,2.361,2.02,2.341,3.083,0.017,6.57,1.151,1.37,1.372,0.835,1.362,1.134,1.102,1.778,0.746,1.172,1.795,1.702,1.932,2.687,2.782,6.778,7.031,2.757,2.745,2.242,2.236,1.838,1.821,1.754,3.175,5.682,7.011,5.898,6.446,3.297,2.425,5.346,1.515,1.302,2.205,0.28,1.696,3.333,2.49,3.932,1.953,1.622,1.801,1.058,0.801,1.657,0.813,0.783,1.188,1.042,1.125,1.393,1.494,3.738,4.814,2.726,2.05,2.046,14.67,5.911,0.456,1.412,1.281,1.688,1.716,1.64,1.633,1.161,1.155,1.915,0.963,1.083,1.876,1.744,1.528,1.393,4.591,5.967,2.041,2.281,1.473,1.527,1.474,5.963,1.602,1.54,1.379,1.125,1.31,0.789,1.473,1.523,1.59,1.468,1.445,1.561,1.593,1.516,1.535,1.463,0.716,1.013,1.8,1.819,1.543,3.38,2.47,0.953,3.906,0.671,2.264,7.452,7.377,1.521,1.423,1.437,1.444,1.52,2.891,6.551,6.536,3.293,3.064,4.533,4.579,5.988,1.517,1.474,1.493,1.495,1.754,1.199,1.422,1.461,2.058,1.64,0.551,1.742,1.746,5.752,4.397,6.02,5.896,3.022,4.013,2.055,1.204,1.325,1.384,1.36,1.391,1.464,1.368,1.237,1.216,1.156,1.213,1.138,6.305,4.131,1.64,4.02,12.624,2.188,7.43,4.758,3.862,2.171,2.176,1.242,0.766,1.096,2.627,2.555,2.855,1.477,1.905,1.891,0.956,0.838,0.965,0.925,0.943,3.244,0.316,7.131,3.278,1.567,1.952,1.202,1.258,0.761,0.703,1.113,3.682,1.151,1.173,0.807,1.018,1.043,1.169,1.115,0.908,0.873,1.009,0.994,0.587,0.973,1.48,2.046,2.668,2.546,2.431,2.232,2.335,2.673,1.504,1.639,1.527,4.095,9.834,1.678,1.776,3.483,3.027,2.842,1.366,0.669,2.467,2.223,1.329,1.64,2.188,1.688,1.789,1.77,1.348,1.475,1.326,1.042,1.381,2.107,1.472,1.96,0.998,0.902,1.401,1.352,2.402,1.008,1.163,0.985,0.966,1.743,1.628,1.655,1.898,2.857,2.514,2.145,2.754,2.871,3.554,0.991,2.851,0.563,1.728,1.488,3.173,2.298,2.712,1.732,1.964,2.869,2.158,3.77,1.954,0.675,2.078,1.356,2.06,1.526,1.435,2.078,3.38,3.745,2.967,2.383,2.132,3.271,1.438,2.466,10.974,5.099,2.72,1.84,1.64,1.658,2.21,2.292,5.853,12.236,2.375,12.635,8.779,2.391,4.497,3.183,3.977,3.495,3.244,9.455,4.381,4.29,7.512,4.519,3.098,1.269,3.092,1.66,6.075,3.592,3.619,2.484,2.462,3.004,3.802,3.549,2.465,4.25,10.036,9.422,2.149,3.883,7.033,4.556,6.719,5.558,2.58,4.514,5.363,12.964,8.048,5.216,7.883,3.018,0.016,0.973,5.207,1.22,2.146,2.562,0.505,2.475,2.219,3.681,2.866,2.863,3.073,9.479,5.735,2.669,2.317,2.471,2.495,2.282,3.158,0.351,2.445,3.058,2.245,2.51,2.256,1.655,2.179,2.004,2.395,0.392,3.258,3.639,4.921,7.988,6.332,5.401,0.898,4.34,2.824,2.293,2.783,1.779,2.056,2.228,1.981,2.631,3.156,2.814,0.592,1.631,1.937,2.353,2.76,6.885,11.933,10.588,0.515,5.421,4.755,4.068,3.241,3.435,2.835,2.402,1.452,1.485,1.768,5.103,3.315,3.888,4.99,3.763,3.547,2.861,2.675,4.824,1.9,14.818,0.767,13.343,5.178,10.231,6.952,6.293,6.242,6.253,4.034,3.705,6.358,10.755,2.308,1.066,4.092,4.087,6.507,3.846,3.863,6.618,2.97,1.527,4.206,0.761,5.8,6.286,3.44,5.175,1.3,6.346,5.369,4.538,9.152,13.254,6.644,6.297,2.37,3.022,1.434,2.589,3.226,4.136,2.84,4.38,3.14,3.828,5.677,6.807,18.665,2.895,6.324,4.096,5.986,6.844,5.013,4.566,5.347,4.625,3.912,0.109,5.554,5.66,4.671,7.079,5.788,5.715,5.102,7.926,15.061,4.922,2.476,7.115,4.625,2.977,2.056,2.638,0.491,0.333,2.052,2.649,1.816,2.298,2.453,1.831,2.567,3.033,2.5,0.462,3.062,1.144,2.681,2.665,3.444,2.473,0.366,2.043,2.116,2.035,2.569,3.027,2.011,4.982,6.452,10.339,15.441,5.338,0.686,6.292,0.651,2.572,2.447,1.66,3.496,11.089,0.377,8.822,4.355,3.291,2.484,1.939,0.48,1.166,2.517,0.706,2.977,1.134,4.058,1.558,1.611,2.105,0.392,1.7,3.346,3.361,6.06,4.644,4.87,4.349,4.299,2.755,5.403,7.114,3.663,5.996,9.73,6.031,7.422,4.197,4.412,8.184,7.447,9.868,9.31,4.629,3.083,3.847,2.971,3.109,4.466,3.467,3.56,1.591,0.839,0.953,1.014,1.957,2.572,2.805,2.435,2.424,5.667,1.729,4.083,4.814,13.955,6.188,4.503,5.087,5.336,5.072,6.611,2.248,4.799,8.032,3.029,3.632,3.3,4.694,3.116,0.65,6.461,8.608,8.634,11.159,9.612,5.313,4.945,5.352,4.445,3.465,3.782,3.38,3.879,4.697,3.632,4.047,0.441,3.437,2.857,2.846,2.248,1.717,1.087,1.315,1.82,1.832,1.302,1.18,2.451,2.849,0.6,1.245,5.423,3.641,3.56,2.372,3,3.781,2.791,2.911,3.292,3.384,2.359,3.654,4.007,5.11,13.616,2.904,1.579,1.641,2.532,2.531,2.39,2.342,1.471,1.873,1.213,1.429,1.909,2.053,1.524,1.631,2.492,1.206,1.308,2.333,3.156,2.528,1.499,1.934,1.532,1.922,1.18,1.108,1.603,0.178,0.739,0.42,1.032,0.891,1.282,1.261,1.299,1.961,1.669,1.303,7.268,6.271,8.963,10.062,3.987,4.057,0.95,0.476,3.659,1.947,3.582,2.4,2.189,2.369,2.372,2.511,2.838,2.223,1.528,1.726,1.707,1.568,3.435,2.865,2.645,3.654,2.485,2.275,1.687,1.548,0.48,0.754,0.547,3.044,2.154,0.623,2.115,1.48,1.629,2.031,2.762,1.801,5.636,2.265,2.121,1.751,1.662,2.144,0.633,1.596,3.556,6.264,4.876,5.11,2.292,2.179,3.415,2.296,3.915,3.534,3.136,3.387,4.503,8.39,5.3,3.155,4.776,3.094,7.099,9.173,0.018,1.89,0.027,0.067,1.112,1.385,0.042,2.227,0.464,0.039,0.696,1.328,1.214,1.675,1.549,1.544,1.061,0.191,2.446,2.422,3.079,2.16,1.788,1.686,1.596,1.499,1.785,2.063,2.05,1.765,2.08,1.66,1.695,1.407,1.466,1.369,1.386,1.325,1.247,1.57,1.473,1.941,1.947,1.521,1.553,1.142,1.616,1.302,1.505,1.656,2.011,1.917,9.942,9.888,4.055,3.493,1.344,1.221,1.412,1.326,1.728,1.734,1.348,1.332,1.701,1.159,1.805,1.669,1.899,1.084,1.208,1.373,1.26,2.234,1.313,1.221,1.194,1.631,1.747,2.468,1.136,1.045,1.507,1.794,2.021,1.283,2.132,1.531,1.274,2.01,1.598,0.438,1.99,0.016,1.76,1.798,2.278,2.656,2.753,3.315,3.41,2.104,2.69,2.667,1.666,1.466,2.649,2.629,1.91,1.91,3.842,4.84,0.742,2.166,16.585,4.062,1.58,6.308,6.027,3.304,3.679,4.664,2.866,1.754,2.841,1.875,1.851,1.913,3.074,6.641,2.416,2.531,1.836,2.603,1.519,2.792,0.954,2.671,1.581,1.478,2.038,3.361,2.683,0.144,5.243,3.082,2.626,3.335,2.734,3.892,0.51,2.845,3.196,4.192,3.653,1.883,1.972,2.471,1.813,4.154,0.403,8.758,1.223,0.706,6.918,2.012,0.212,0.712,0.247,13.788,6.898,4.431,2.836,2.611,4.18,4.692,4.724,3.018,2.932,3.451,1.271,1.242,2.532,3.448,1.8,1.942,1.897,1.776,1.733,2.259,42.559,1.278,7.69,8.407,23.748,21.285,3.579,3.068,3.098,2.698,2.004,2.682,1.744,2.046,2.765,1.205,1.891,2.473,2.62,1.522,1.62,2.085,2.435,1.763,2.15,2.734,1.665,1.584,2.92,2.938,2.138,1.83,1.715,5.9,0.366,5.786,3.742,2.694,1.974,1.705,0.949,2.586,2.19,2.326,3.345,4.077,3.108,3.377,2.994,3.605,3.656,2.991,2.437,3.44,2.182,1.739,2.016,2.331,2.151,2.43,3.093,2.995,10.658,0.892,0.2,4.991,4.931,3.176,1.821,2.129,2.629,2.606,3.225,2.881,1.691,1.758,0.908,1.042,1.134,2.122,2.303,2.271,1.796,2.346,3.038,1.061,2.603,4.126,7.23,6.595,0.053,4.741,2.005,0.227,1.437,1.928,1.013,1.147,1.606,2.211,2.496,2.212,1.56,1.257,1.618,2.155,1.89,2.238,2.039,1.567,1.721,1.882,1.761,1.701,1.716,1.557,1.753,27.397,1.152,0.661,0.6,2.139,1.83,2.278,1.934,2.253,2.075,2.163,3.354,2.82,2.991,35.326,2.646,2.049,2.236,1.726,1.692,1.926,2.183,1.995,0.912,2.022,1.79,1.074,0.949,1.543,0.581,1.992,2.559,2.528,3.416,5.342,1.2,6.166,1.232,1.996,1.411,1.379,1.953,2.081,1.397,1.736,2.38,1.72,2.636,6.849,1.543,12.36,0.639,0.228,13.872,1.782,0.696,1.044,2.588,2.634,2.918,2.667,0.606,0.738,2.134,0.752,0.919,0.049,0.66,0.402,1.182,1.11,1.339,1.294,2.144,2.059,3.504,3.348,4.601,4.649,2.853,2.773,37.105,29.11,12.694,17.519,4.261,36.24,2.748,2.4,36.636,9.218,2.841,2.433,9.842,2.322,1.303,1.357,1.492,1.523,1.837,2.1,2.457,2.074,1.74,2.006,10.27,2.166,1.57,1.607,2.09,1.657,0.46,0.759,0.51,2.627,3.088,2.55,3.107,1.525,2.563,3.084,2.503,2.752,18.563,2.913,2.032,1.935,2.425,1.78,1.515,1.575,2.257,40.865,9.037,9.755,2.648,0.446,6.316,1.768,2.369,2.96,65.766,38.543,9.962,6.539,2.012,2.022,10.9,4.16,3.587,0.777,3.261,3.134,6.649,3.55,4.613,0.124,37.804,0.311,16.498,3.49,1.336,5.099,12.292,1.674,1.497,1.38,1.297,1.079,2.443,1.362,2.273,4.013,2.942,0.812,2.445,3.207,1.075,2.514,2.444,2.091,1.658,0.455,2.25,0.699,0.42,0.455,3.518,1.975,1.6,1.279,1.689,1.117,1.342,1.309,1.723,1.755,1.517,1.566,1.626,1.417,0.836,0.096,0.594,1.314,1.416,2.384,4.404,1.727,1.647,2.498,1.311,1.861,2.102,1.352,1.393,1.167,2.48,2.732,19.279,0.793,16.102,0.664,10.623,6.888,91.094,1.377,5.956,0.227,15.105,6.019,34.933,2.068,2.093,2.1,1.606,1.612,1.299,1.498,1.287,1.227,1.505,1.944,1.531,1.738,11.96,1.748,4.991,6.468,2.342,1.942,1.484,1.885,1.674,1.836,2.248,1.447,1.515,1.811,1.637,1.535,0.856,1.707,1.502,1.48,1.733,1.855,1.744,1.806,1.3,1.758,1.34,1.36,1.612,1.714,1.488,1.427,1.748,2.32,2.467,2.529,1.716,2.996,3.779,0.549,18.28,8.876,3.542,6.373,2.088,2.116,2.018,2.011,2.072,2.146,3.012,2.967,1.672,1.666,2.188,2.098,2.783,3.046,2.87,1.766,1.753,3.041,3.057,3.641,0.163,3.488,3.32,2.511,2.481,22.544,7.421,5.523,6.098,6.392,15.851,1.806,1.244,1.489,5.357,0.96,0.715,4.052,1.689,2.545,8.292,0.648,7.983,5.218,6.994,6.612,1.675,0.813,2.352,2.606,1.15,0.24,0.424,0.896,0.937,3.057,2.221,1.144,1.044,0.977,0.911,0.817,1.339,0.549,0.635,1.028,0.796,1.027,0.962,0.897,0.995,1.394,1.535,4.301,4.301,2.443,4.963,2.446,0.412,2.117,2.697,0.903,0.811,3.245,1.676,1.279,2.339,0.588,0.65,0.66,0.514,0.531,0.492,0.699,0.649,0.498,0.515,0.525,0.584,0.59,0.725,0.525,0.521,0.435,0.568,0.624,0.496,0.595,0.791,2.54,0.847,0.871,0.904,0.923,0.92,0.684,0.798,0.765,0.49,1.404,0.845,0.985,3.031,2.966,3.027,1.322,2.185,3.565,0.967,7.522,3.178,6.15,14.92,13.942,4.652,7.543,6.591,0.919,3.133,2.724,0.422,1.684,0.652,0.73,0.963,0.747,1.035,0.944,0.917,1.223,1.975,1.573,1.13,1.008,1.121,0.9,1.252,0.587,0.649,0.589,0.531,0.859,1.036,0.921,0.715,0.602,0.642,0.733,0.688,0.659,0.757,0.959,1.437,1.719,0.896,0.605,0.881,0.714,1.04,1.157,4.838,2.586,0.628,6.104,2.527,1.702,1.727,0.35,2.045,3.744,3.705,4.748,21.329,2.201,1.524,2.294,1.526,2.41,2.482,2.637,2.72,2.575,5.719,30.292,6.539,2.405,6.273,4.536,4.493,2.7,6.557,3.813,6.332,8.81,7.129,6.777,15.506,4.652,2.652,7.949,3.415,6.178,3.733,4.737,2.46,13.524,4.649,4.985,3.349,3.238,2.542,3.66,3.572,2.496,2.564,2.381,3.141,2.845,2.689,2.609,2.818,2.931,10.133,6.16,4.088,0.602,5.429,10.463,3.504,2.552,3.062,2.992,3.207,3.331,2.925,2.827,2.35,1.909,3.676,3.785,4.721,6.857,4.634,3.555,3.81,2.772,2.843,3.598,3.927,3.271,2.869,2.277,3.765,3.739,4.751,4.737,2.5,2.412,2.396,0.251,2.269,1.715,4.223,4.004,2.551,3.132,3.414,2.26,2.238,3.297,1.612,1.583,3.314,2.053,2.019,0.517,2.598,2.992,2.563,2.673,0.482,2.196,2.378,3.251,3.188,4.004,3.716,3.207,2.788,2.035,2.436,2.054,4.892,5.24,4.959,2.157,2.023,0.469,1.326,0.553,6.339,6.395,4.32,4.177,9.029,5.078,1.754,1.849,1.793,3.699,3.681,6.819,6.428,2.991,2.932,2.986,3.09,5.736,3.669,3.236,2.543,3.69,3.83,4.799,7.17,17.091,6.213,19.312,0.432,1.616,1.678,1.013,4.074,0.278,1.566,1.379,0.97,0.725,0.785,1.025,1.144,0.932,1.078,0.851,1.018,0.968,1.224,0.976,0.982,0.662,0.865,1.48,3.514,2.07,1.556,1.356,0.53,0.412,0.551,0.592,0.6,0.749,0.655,0.7,0.692,0.737,0.775,1.002,5.559,1.002,1.218,1.647,2.631,1.456,2.076,1.689,1.228,2.44,2.913,2.379,1.826,2.38,2.795,1.379,1.617,1.708,0.016,1.49,1.75,1.71,1.768,1.651,2.825,3.643,2.229,2.185,2.382,4.066,3.41,2.076,3.047,2.789,3.313,3.451,0.313,3.668,3.346,3.446,3.355,3.284,24.979,1.338,1.495,1.733,1.526,1.739,1.094,1.14,2.33,2.261,2.44,2.405,1.666,1.794,1.292,1.527,1.383,1.245,1.434,2.766,1.625,1.86,1.643,4.133,16.603,1.919,3.256,3.727,3.405,2.757,2.092,1.581,0.373,1.251,1.682,1.722,1.805,1.744,1.85,1.198,1.27,0.217,1.128,1.82,2.275,5.546,3.006,4.257,2.031,2.299,1.063,2.416,2.55,1.973,1.919,2.309,3.83,2.815,1.781,1.628,1.378,1.795,2.202,3.202,2.695,2.306,3.879,1.761,2.475,0.406,0.924,1.045,5.45,3.94,4.292,7.14,3.691,6.261,4.722,5.573,4.856,2.219,0.893,2.098,0.438,4.954,4.942,3.924,3.145,4.842,3.867,1.458,1.177,7.146,7.437,4.002,18.286,16.443,12.207,12.856,10.109,8.681,0.298,9.903,10.296,2.965,21.77,13.505,2.68,6.551,6.657,8.323,13.661,7.593,6.636,7.435,12.238,7.421,2.392,3.491,4.049,5.912,4.798,5.38,6.232,3.215,7.828,8.591,10.431,8.314,10.073,5.741,4.026,5.294,3.813,2.561,2.691,1.165,0.262,1.693,2.747,6.356,11.384,1.267,7.717,10.993,9.851,9.601,8.524,4.847,10.209,8.604,10.217,11.369,14.124,5.442,4.654,3.93,3.979,4.52,1.058,1.861,7.128,3.877,5.206,0.092,4.577,6.185,4.819,6.475,6.051,7.279,6.316,6.314,5.028,4.591,6.435,6.339,5.482,7.762,6.471,6.584,7.37,8.175,7.441,6.537,0.775,7.797,5.375,7.16,8.041,2.898,2.448,5.629,2.625,1.15,2.565,3.637,1.11,1.469,2.504,6.51,5.506,5.761,4.817,5.303,4.416,4.348,5.533,4.081,3.629,0.368,3.126,4.906,8.66,7.216,4.217,0.279,5.15,3.677,5.336,4.644,2.285,1.664,2.254,2.712,3.6,3.463,4.542,7.457,7.889,0.744,5.485,5.328,3.857,3.654,6.092,8.766,3.834,3.773,0.637,0.956,3.159,3.035,3.96,3.376,2.342,3.679,3.108,4.486,4.536,5.765,0.885,6.216,9.14,24.383,0.321,17.432,3.597,4.54,0.331,4.329,4.327,4.629,3.919,3.782,3.783,3.152,2.811,4.633,0.465,3.551,3.584,2.535,2.534,0.83,2.356,2.303,3.067,1.824,4.366,4.292,4.617,4.442,4.565,5.717,6.542,7.426,3.798,5.491,5.251,5.441,10.198,7.744,6.428,5.538,5.309,0.522,1.006,7.82,6.022,6.418,7.608,7.376,4.871,0.335,6.804,7.281,5.925,5.282,3.24,4.514,8.428,6.925,1.321,5.974,7.794,9.141,7.906,4.789,2.682,4.627,5.04,5.755,5.586,3.341,0.953,7.013,2.053,3.573,9.22,6.66,12.932,13.164,7.693,10.424,0.311,12.027,0.738,5.201,1.563,5.418,5.675,5.054,6.348,4.85,5.307,4.04,6.887,6.786,7.005,5.784,11.509,0.707,1.539,3.853,2.801,1.81,5.41,6.085,4.362,1.98,3.713,6.483,4.285,8.163,6.763,2.27,13.023,7.511,2.387,2.847,2.971,5.025,5.708,4.668,10.745,1.581,7.078,5.679,2.614,2.13,2.121,3.602,4.461,3.639,4.095,3.954,3.69,3.841,4.481,12.268,1.903,5.416,6.586,6.265,5.71,7.381,6.465,4.92,2.933,3.555,2.858,3.388,3.086,4.264,3.663,7.62,6.874,3.524,4.279,4.104,2.654,6.344,8.914,0.028,6.077,0.464,5.345,5.917,3.065,4.268,10.601,5.476,3.762,2.745,3.314,3.572,4.439,4.32,4.48,6.047,29.146,1.707,1.397,4.102,4.688,3.63,3.594,4.757,4.169,4.853,4.503,1.533,0.611,1.87,2.856,4.192,0.836,1.817,3.618,1.276,1.522,5.405,7.23,72.665,11.135,2.41,6.854,6.339,3.963,6.182,8.663,3.881,5.041,7.483,6.29,7.158,3.313,10.435,9.221,4.596,3.561,2.978,4.774,3.324,20.105,7.084,0.893,0.133,5.628,6.632,7.111,5.613,0.869,5.19,3.918,4.186,4.07,2.759,5.545,4.331,3.583,3.491,4.925,11.593,7.639,3.683,5.519,3.721,5.318,3.421,3.472,5.33,3.407,5.042,12.549,3.262,4.082,3.654,5.122,3.866,4.437,9.127,0.372,3.448,1.174,3.115,8.238,4.528,2.006,5.4,3.174,7.539,2.709,2.71,3.412,3.378,7.182,6.572,1.09,11.6,2.172,7.715,10.492,7.887,7.375,0.992,0.062,8.16,10.072,9.5,6.747,6.269,3.695,4.252,4.27,5.303,7.002,0.323,3.581,6.471,5.493,6.291,4.986,6.312,2.607,2.304,0.5,6.636,1.277,0.532,1.65,1.205,0.775,0.93,0.904,1.106,0.942,1.013,0.817,1.006,0.281,0.642,0.612,0.497,0.722,0.83,0.75,0.76,1.193,1.057,0.259,0.363,0.795,0.745,0.971,1.058,1.224,3.214,1.007,1.039,0.926,0.919,0.993,0.695,0.966,0.947,1.145,1.014,1.441,2.046,0.657,40.63,4.87,0.145,21.835,25.745,10.849,6.73,35.615,0.543,7.829,8.712,11.241,8.445,6.499,5.952,1.176,2.269,2.418,1.175,0.974,2.269,5.784,3.424,4.021,6.909,1.437,1.533,2.831,2.503,2.802,0.891,5.413,8.905,8.49,6.168,5.712,5.734,7.07,5.515,7.379,6.64,8.812,6.163,9.422,6.479,9.728,6.469,6.906,8.974,4.921,10.057,6.599,6.157,3.846,6.552,4.77,6.655,5.148,8.771,9.52,15.88,5.66,2.727,1.849,1.465,2.624,1.952,0.75,2.169,2.026,1.925,2.15,1.423,1.678,1.519,1.445,2.133,2.444,2.56,2.234,1.958,3.503,13.193,1.95,27.335,4.489,1.416,3.882,4.17,3.625,3.851,8.731,10.777,7.065,3.308,4.426,5.503,2.747,4.301,0.013,4.466,2.762,5.045,3.466,3.481,4.084,3.75,4.294,2.978,3.978,5.386,5.396,0.557,0.133,10.174,10.237,9.273,3.091,5.027,3.93,3.938,2.571,3.309,8.587,0.413,0.055,6.062,3.116,2.945,8.523,8.592,3.163,3.545,2.576,6.376,3.538,4.725,4.332,5.48,3.647,3.212,2.479,2.823,2.491,3.281,3.247,7.909,6.099,3.495,3.575,4.384,2.879,4.405,3.432,2.924,2.538,2.494,3.588,3.99,5.7,5.457,5.515,15.611,28.355,4.632,2.845,4.668,2.53,4.247,3.226,3.65,3.683,3.108,4.192,7.002,4.715,2.7,3.594,3.679,3.704,3.625,4.35,4.558,4.307,0.059,2.483,2.622,3.426,2.601,2.855,1.854,2.317,2.532,2.47,1.833,1.435,1.473,0.615,1.708,3.194,3.402,3.478,2.204,3.569,2.549,3.771,2.548,3.22,3.942,6.523,2.632,2.305,3.337,4.612,4.607,32.96,3.395,3.38,4.005,3.461,3.429,3.361,0.803,3.118,0.802,2.152,1.121,1.334,2.256,1.86,1.754,3.659,3.388,3.447,1.395,0.641,2.097,2.355,2.206,3.096,2.231,8.076,5.303,1.313,3.493,3.722,3.352,3.537,2.171,2.359,3.169,0.249,5.645,9.771,8.132,0.4,6.7,4.287,0.663,0.291,0.869,3.309,2.804,4.182,4.164,4.039,3.325,3.69,0.838,2.924,14.604,6.354,12.028,12.956,1.535,23.365,5.846,5.967,3.811,3.258,5.22,20.523,5.906,3.595,5.76,7.08,6.95,3.238,3.29,1.766,1.629,1.786,1.738,0.029,2.199,1.355,1.579,1.743,1.353,1.732,1.776,1.415,1.633,2.784,0.303,7.319,2.069,2.162,1.377,1.661,2.967,2.559,2.838,1.972,2.127,1.908,1.892,2.12,1.756,1.761,2.773,1.433,1.374,1.978,1.95,0.049,1.381,1.435,1.455,2.12,1.54,1.28,1.076,1.146,1.007,1.94,1.351,0.967,0.35,0.957,0.97,0.255,1.324,1.66,1.196,1.281,1.097,0.982,0.948,1.051,2.173,3.063,2.875,0.229,16.662,3.253,6.521,5.328,2.237,2.262,3.25,3.905,3.872,3.323,2.901,0.689,5.099,10.307,4.202,4.627,4.516,4.314,4.336,1.4,3.386,4.024,4.511,6.669,11.404,5.965,4.409,0.316,4.184,4.326,3.141,3.79,3.438,4.186,3.439,2.611,0.612,1.266,2.687,2.246,3.367,0.665,1.696,12.155,3.951,3.13,2.813,3.6,2.872,2.981,3.797,2.325,0.282,2.855,4.045,3,2.431,4.221,17.682,4.69,3.597,3.095,2.248,2.274,3.018,3.896,10.453,6.882,23.97,6.343,3.437,3.423,4.344,3.907,3.322,3.472,2.219,3.408,2.492,19.894,0.738,11.797,10.641,3.946,2.765,2.732,2.631,3.083,3.406,3.643,3.276,3.806,3.137,2.624,2.583,2.483,2.585,3.343,3.321,3.435,3.23,3.387,3.686,0.037,3.818,5.56,5.769,5.643,5.788,5.003,2.536,2.419,3.857,3.822,4.194,3.937,2.632,2.868,4.125,4.268,2.611,2.493,2.47,3.043,2.162,2.173,1.161,1.151,2.351,2.441,2.462,2.498,11.816,0.046,4.07,0.505,2.533,2.872,5.172,0.59,5.064,4.504,0.415,4.929,3.026,1.064,7.344,6.898,3.374,3.706,7.42,8.459,8.212,9.661,12.374,7.1,4.214,3.085,3.534,3.638,3.507,3.73,3.43,3.598,3.667,3.482,3.118,2.946,3.245,3.383,3.458,3.257,3.175,3.546,5.288,4.303,4.297,7.074,8.248,6.172,2.437,2.435,1.628,1.634,1.969,1.952,1.369,1.374,2.723,1.336,1.339,2.356,2.366,2.62,2.599,3.016,1.824,2.157,5.201,2.18,2.399,2.239,0.154,2.117,2.084,0.9,1.064,2.741,2.74,1.965,0.256,3.86,2.864,2.51,4.072,1.906,1.837,8.819,4.696,4.616,4.299,4.477,3.954,4.391,5.063,7.111,7.299,4.358,5.815,5.62,4.65,5.886,4.055,4.219,1.865,0.154,1.565,3.703,2.885,3.365,3.939,6.514,6.937,0.011,5.476,3.535,2.493,2.107,2.136,0.186,1.044,1.714,3.661,6.514,3.583,3.797,4.625,4.647,7.331,0.528,3.375,5.537,2.649,2.75,5.389,2.407,2.005,4.046,3.348,2.718,3.731,4.063,3.751,3.925,0.377,4.586,5.911,3.7,5.441,4.092,5.215,5.286,4.895,1.795,4.051,5.729,8.514,6.668,4.712,5.278,3.845,2.571,0.179,2.421,1.327,1.063,3.178,3.193,1.762,1.893,3.717,7.698,5.122,3.205,3.243,3.624,1.525,3.052,0.679,1.637,2.472,3.324,3.553,2.633,2.311,3.311,1.682,1.709,1.651,1.661,2.649,3.372,4.02,4.74,5.373,3.811,1.49,3.896,3.204,2.636,3.48,2.818,2.741,10.867,15.057,9.691,6.059,5.084,3.573,6.532,5.027,3.093,4.207,1.239,2.976,4.156,3.125,3.438,3.211,0.995,2.197,2.623,3.037,2.319,2.896,1.558,1.567,3.134,1.829,2.117,2.516,3.948,2.146,3.045,4.288,3.56,3.532,3.506,4.099,3.53,1.472,3.191,2.548,2.291,4.043,5.325,1.981,1.6,2.449,0.81,34.331,3.186,5.666,5.121,4.19,2.843,2.575,2.768,3.269,3.021,2.527,4.704,2.242,3.134,3.868,8.586,3.476,3.438,2.42,3.505,3.369,2.839,2.479,3.267,3.265,0.161,3.046,3.352,3.021,2.754,3.87,5.457,16.982,8.752,9.944,6.297,5.242,5.526,4.144,2.473,2.019,2.34,2.641,3.168,2.559,2.14,2.238,3.457,2.529,2.137,3.168,2.774,3.193,6.761,3.985,5.096,3.778,4.266,7.51,4.954,5.141,5.679,3.548,1.716,0.637,2.377,0.088,2.268,1.408,1.397,1.752,1.482,4.03,0.887,3.852,3.421,1.039,1.318,4.579,3.256,7.404,4.125,3.703,3.081,3.029,5.072,3.316,3.3,2.852,2.845,2.203,2.189,2.62,2.12,3.041,1.219,5.222,5.919,1.242,1.358,2.452,2.366,0.781,3.364,2.347,2.238,2.572,3.085,2.21,1.865,3.794,2.558,2.438,3.14,2.086,2.629,4.179,3.753,4.605,2.813,3.315,2.661,2.967,2.535,2.528,2.753,1.878,2.135,10.623,2.627,2.325,1.77,2.237,1.965,2.484,1.388,2.502,1.2,2.386,1.409,1.523,2.688,1.635,2.491,2.569,2.23,2.138,1.866,2.04,2.68,2.799,7.553,4.826,0.707,2.424,4.188,3.176,2.9,2.931,2.798,2.822,2.137,3.546,3.168,3.022,3.74,4.308,3.627,4.841,6.689,3.839,3.464,4.31,7.731,21.711,2.028,7.88,0.797,10.958,9.875,10.472,8.623,4.87,14.152,3.381,1.8,1.797,3.687,2.779,1.706,1.703,1.848,4.647,3.009,1.974,3.422,2.849,2.839,2.806,2.772,4.394,2.023,3.551,5.631,2.387,2.291,0.277,3.995,1.842,1.732,0.568,2.19,2.954,3.184,1.759,1.827,1.509,1.749,2.168,2.351,2.139,2.236,1.951,2.01,3.347,1.745,1.83,2.532,1.443,1.513,1.359,1.403,2.864,2.586,2.812,1.927,2.005,2.017,1.896,2.148,2.147,1.785,3.132,11.193,3.674,3.564,1.802,5.102,3.659,3.51,3.594,3.562,1.53,3.216,1.562,1.692,1.656,1.614,2.895,1.492,1.408,1.774,1.487,3.278,1.579,1.37,0.147,2.285,2.499,2.548,2.19,2.16,2.113,2.564,2.504,3.216,4.789,2.32,2.366,3.597,2.683,2.912,2.794,2.562,2.635,3.133,2.945,3.249,2.134,2.093,2.586,2.472,2.97,1.659,1.825,3.157,1.588,2.041,1.525,1.633,2.625,2.727,2.173,1.824,1.734,3.111,3.688,3.588,3.034,2.453,3.368,3.345,3.51,3.587,6.264,3.152,3.082,3.092,3.216,3.104,3.292,2.926,3.358,3.551,3.688,3.524,3.64,1.679,1.22,2.795,3.078,3.157,3.811,3.997,3.124,3.112,3.113,3.587,1.872,1.779,3.139,3.417,1.621,1.56,2.071,1.946,2.724,0.922,2.45,1.88,1.384,2.731,1.894,2.004,2.704,2.001,3.15,1.518,1.417,2.134,1.995,1.659,2.52,1.781,1.989,2.414,3.988,0.142,1.117,0.122,2.273,2.212,2.179,1.319,1.3,2.596,3.131,3.112,2.376,2.331,3.583,3.678,3.256,8.129,0.064,4.542,3.844,2.747,4.26,2.441,2.951,2.199,2.37,2.376,3.049,2.633,2.619,0.003,0.631,2.147,2.156,2.753,2.5,8.69,5.814,8.431,2.518,3.187,3.306,5.286,2.464,0.363,0.08,5.369,3.706,4.014,1.551,3.026,6.375,9.307,0.858,2.057,2.089,3.948,3.96,4.061,9.134,3.33,4.073,3.479,5.101,5.991,0.068,2.445,1.631,7.624,7.649,8.649,6.638,2.899,2.576,9.455,5.206,1.955,0.246,2.791,4.17,6.24,5.399,5.444,5.44,5.444,5.324,15.155,5.437,4.173,2.074,2.052,1.804,1.793,1.831,1.818,3.654,1.832,1.804,1.994,1.955,2.046,2.041,5.062,2.673,2.699,1.868,1.502,4.362,7.428,7.919,11.366,13.373,33.026,8.801,2.628,2.618,3.377,3.464,3.525,2.321,1.863,1.875,3.608,3.585,3.332,3.349,0.646,3.24,3.203,9.78,5.057,0.865,5.765,5.429,4.99,1.317,4.07,4.038,2.32,2.469,4.918,5.39,3.396,6.633,3.808,4.437,10.941,9.509,5.01,2.612,2.539,1.736,2.076,2.604,2.641,2.104,10.856,2.043,1.641,1.518,1.307,1.07,1.765,2.011,1.051,1,2.059,1.051,1.018,1.451,1.115,1.056,2.497,1.339,1.346,1.343,1.689,1.392,1.1,1.038,1.552,2.615,2.07,1.544,2.033,0.036,1.541,2.081,2.035,2.068,2.161,1.249,1.223,2.061,2.072,1.842,1.777,1.736,1.825,3.614,2.979,6.11,3.28,1.71,1.888,1.623,1.503,2.557,2.116,1.753,1.9,2.027,2.106,3.634,1.783,1.866,3.058,3.149,4.598,7.514,10.792,6.742,2.663,2.715,2.858,2.94,2.597,2.438,2.504,2.523,2.584,2.585,2.66,2.577,2.636,10.902,2.294,3.672,3.19,3.18,2.134,5.775,6.496,5.292,2.385,2.467,2.624,1.721,1.636,2.461,2.209,2.639,2.695,2.605,4.153,3.424,2.999,3.551,3.141,4.017,5.768,0.062,1.357,4.01,1.261,1.439,1.482,2.313,2.236,4.687,2.771,2.296,1.613,0.161,1.48,3.278,1.747,1.472,0.316,1.053,3.528,2.525,3.281,9.007,3.52,2.482,2.365,2.437,2.44,3.288,3.705,7.972,3.972,1.851,1.058,5.433,7.15,4.142,3.083,1.073,6.4,9.032,5.954,2.302,2.304,2.319,2.316,2.288,2.291,1.99,1.996,2.033,1.93,2.719,2.551,2.426,3.054,3.341,8.087,6.826,7.452,7.668,7.406,5.226,5.526,3.095,1.518,4.493,13.914,0.314,5.759,2.825,3.075,2.048,1.043,3.267,2.958,1.454,1.45,3.933,2.242,3.25,1.635,2.025,2.137,2.127,1.08,0.954,0.949,3.846,7.852,7.836,4.445,2.133,1.502,1.635,3.076,7.373,1.901,3.371,3.357,9.101,13.628,2.186,13.138,6.767,9.443,7.916,5.091,5.171,5.906,5.371,5.276,3.229,1.621,2.465,2.755,2.434,19.532,5.226,0.76,3.756,3.852,4.261,2.578,2.816,2.456,2.233,4.583,5.067,4.152,4.908,12.299,0.973,1.509,1.823,2.172,1.787,2.473,2.531,1.992,2.124,1.007,1.034,1.169,1.181,2.323,1.924,2.078,2.079,2.116,1.897,2.015,4.454,4.451,2.676,2.3,2.245,2.115,2.693,2.755,2.801,1.006,1.387,1.508,2.746,1.936,2.036,5.199,2.09,2.017,2.594,2.568,2.126,2.403,1.998,1.345,1.405,1.28,1.641,2.186,1.732,1.637,1.507,1.784,1.189,0.586,0.872,1.412,1.362,1.794,1.415,2.429,2.53,1.832,2.853,4.134,3.661,4.876,5.095,3.031,3.011,2.66,0.454,9.107,11.547,7.943,4.308,5.078,2.351,5.635,5.014,6.081,5.402,3.523,2.849,5.462,2.328,4.946,5.531,4.539,4.973,5.326,6.041,4.877,4.024,3.618,16.321,46.6,2.583,3.727,8.589,10.769,4.829,13.088,0.758,1.854,4.885,2.454,2.976,3.766,8.447,0.012,7.994,10.486,4.508,3.26,4.049,2.722,0.359,4.585,5.347,4.977,4.967,4.962,8.579,12.887,5.751,5.318,5.304,10.614,1.235,0.992,2.175,2.211,4.453,4.229,7.235,3.431,5.344,2.352,2.291,5.358,2.244,2.314,4.548,6.55,2.528,0.492,1.05,11.465,1.616,1.62,3.184,3.146,3.33,1.591,1.595,0.803,0.802,1.614,1.542,1.552,3.308,1.622,1.622,1.603,1.604,1.572,1.58,1.597,1.593,1.66,1.654,3.146,3.19,3.111,3.145,3.11,3.124,3.075,1.567,1.58,1.564,1.568,1.541,1.535,3.126,1.575,1.58,3.017,3.115,1.57,1.568,3.103,3.131,3.09,1.565,1.56,1.565,1.567,3.144,1.544,1.545,3.12,1.546,1.545,3.041,1.558,1.55,3.108,3.128,3.103,1.578,1.579,3.122,3.114,3.146,1.973,0.368,4.66,2.865,3.106,1.402,1.491,2.095,1.103,3.897,8.641,4.074,3.597,3.605,3.072,3.104,7.747,3.899,3.885,4.151,3.231,1.963,2.566,2.051,2.029,2.091,2.099,3.099,3.111,4.012,2.163,1.565,3.101,1.52,2.255,3.757,4.066,0.346,4.17,2.089,2.092,2.062,0.406,1.161,1.429,10.354,2.857,2.911,1.394,1.46,2.881,2.859,1.526,1.525,1.435,1.432,1.414,1.422,1.46,1.435,1.414,1.447,1.416,1.424,1.502,0.971,1.236,1.406,1.392,0.032,1.462,1.417,1.439,1.442,1.611,3.046,2.519,2.744,2.723,1.615,1.615,1.601,1.615,1.609,1.609,1.62,1.61,1.599,1.619,1.607,1.613,1.616,1.6,1.596,1.619,1.642,1.585,1.648,1.604,1.601,1.627,1.621,1.576,1.645,1.621,1.616,3.241,3.226,1.67,1.54,1.716,3.236,3.161,3.292,1.616,1.614,3.281,8.5,13.953,11.763,13.844,0.885,0.559,3.76,6.391,3.145,5.137,10.687,6.659,7.68,6.648,7.167,17.75,21.9,8.595,9.754,3.679,3.885,0.211,0.545,4.298,3.195,3.77,4.668,4.757,10.98,4.378,3.046,3.96,1.481,2.323,2.426,3.011,4.683,5.295,7.191,9.581,9.295,6.629,7.01,5.687,3.823,5.615,3.02,0.465,2.257,4.08,4.065,3.206,1.211,1.449,1.781,1.483,1.981,3.758,2.231,0.713,3.296,3.186,2.537,2.446,2.814,2.998,3.194,2.57,2.729,3.782,2.759,2.015,0.466,2.959,2.721,1.747,5.402,2.411,2.028,2.055,2.933,2.609,4.25,3.008,4.856,3.838,3.523,5.357,4.999,4.594,4.323,2.734,2.117,2.439,2.348,2.385,2.482,3.279,2.222,1.909,2.527,2.113,1.752,1.683,4.052,2.434,4.092,6.776,8.919,8.78,3.788,1.496,3.075,2.9,2.496,2.63,3.109,2.592,1.729,5.961,6.379,1.989,2.107,2.148,1.714,2.686,3.574,4.019,3.894,2.008,3.42,2.325,2.943,2.834,1.321,2.73,2.537,3.293,5.08,3.517,2.381,6.594,5.818,4.051,9.325,9.817,4.019,4.191,3.581,1.986,2.96,2.576,1.843,0.842,2.042,2.561,2.377,3.551,2.563,4.03,3.313,3.444,3.903,4.32,2.568,2.394,0.577,1.189,3.528,3.331,3.686,2.361,0.775,2.542,4.288,0.495,6.512,8.776,6.624,5.864,9.669,4.414,5.926,11.838,0.318,3.725,4.793,9.309,2.741,6.598,2.9,1.065,4.237,0.006,2.853,3.227,1.697,4.389,0.543,9.068,1.924,1.574,1.393,0.084,4.531,8.366,1.589,1.773,2.448,1.735,1.531,0.629,2.132,2.255,5.203,2.917,2.378,1.981,5.801,6.194,6.676,2.424,0.707,6.571,2.347,2.788,2.051,1.225,0.68,1.912,3.041,2.378,3.662,6.693,5.358,8.923,11.449,5.979,8.368,3.556,3.95,2.584,4.247,6.216,1.494,1.879,1.602,0.77,1.76,0.339,3.157,3.08,2.093,0.994,2.569,1.853,3.343,1.467,7.819,6.127,4.241,7.51,12.163,14.687,17.355,15.877,13.698,17.096,15.724,14.847,14.791,13.712,4.357,3.693,2.289,1.4,1.301,3.251,8.9,7.327,13.812,2.484,4.771,6.435,0.893,5.292,10.628,0.908,5.727,3.178,2.555,2.911,1.552,0.99,2.845,3.538,3.879,4.605,5.255,4.486,1.156,0.652,5.545,5.248,8.104,4.001,1.745,2.182,0.598,4.362,4.963,2.991,3.314,3.483,3.111,2.875,3.159,2.268,4.157,2.78,2.589,2.385,1.796,2.929,0.338,1.631,1.35,1.503,3.792,3.342,4.383,5.267,4.161,2.606,1.867,1.709,2.45,2.393,1.804,1.804,1.591,1.372,2.711,2.956,2.014,2.147,1.495,1.374,1.698,1.638,1.552,2.123,1.639,2.329,1.827,1.813,1.676,1.746,1.475,1.889,1.226,1.498,1.014,1.054,1.848,1.767,1.679,1.702,1.497,1.94,2.022,1.952,2.896,2.881,3.361,2.733,3.883,5.01,3.02,3.026,4.722,4.296,4.538,3.805,3.208,2.266,3.287,0.627,3.534,3.003,4.838,2.256,0.774,4.788,7.572,2.558,4.734,6.469,10.049,5.314,4.868,3.368,5.071,4.155,3.342,3.132,2.302,2.717,1.529,1.715,2.783,1.606,1.824,1.976,2.523,1.792,0.406,1.627,2.874,0.979,1.597,2.533,2.899,1.22,10.441,6.213,2.701,10.006,1.242,2.324,3.139,2.817,2.384,2.266,1.659,1.844,1.759,2.422,2.158,2.336,0.869,2.398,3.741,2.61,2.678,2.292,2.443,0.082,1.953,2.039,1.807,1.169,2.561,3.168,3.349,1.365,4.121,7.88,7.645,5.114,3.729,3.233,3.087,3.543,2.349,1.798,1.711,1.666,1.553,1.64,1.489,2.591,2.526,2.865,2.983,2.987,2.587,2.972,3.372,2.65,1.461,2.528,3.399,4.126,3.974,2.621,2.442,1.751,1.984,1.993,2.407,2.049,1.576,1.381,1.681,2.856,5.568,5.662,3.019,3.232,1.799,2.105,3.134,3.092,4.411,3.165,1.539,0.738,3.594,4.413,6.278,1.892,6.385,0.77,0.994,3.604,3.027,2.099,1.833,1.792,3.655,4.072,3.656,4.914,4.008,5.945,4.365,3.13,3.064,5.881,3.351,3.695,4.619,6.057,5.196,4.774,4.63,5.603,7.232,8.021,8.176,6.45,4.094,4.01,2.993,1.425,1.43,2.393,6.094,5.214,4.951,5.048,1.346,6.131,3.968,5.48,3.634,3.14,3.862,3.454,4.123,3.841,4.929,4.099,3.631,4.601,4.368,3.678,3.853,1.18,1.477,6.801,6.392,6.074,4.64,0.205,3.69,3.711,4.207,4.044,3.988,2.429,2.768,3.636,3.052,2.479,3.377,3.825,2.18,2.166,0.637,0.232,6.079,4.041,4.042,1.145,4.777,4.766,3.183,2.622,1.281,4.595,7.606,6.601,3.086,2.643,2.143,2.042,2.27,2.359,2.201,1.688,2.489,1.971,2.697,2.346,3.12,6.363,6.332,3.49,3.059,3.658,3.782,4.547,4.184,3.493,3.467,4.074,2.505,5.4,2.97,3.057,2.706,2.677,2.811,2.734,2.167,2.159,3.591,2.79,2.552,2.47,3.748,3.606,4.04,1.816,4.252,2.792,3.313,3.464,0.158,3.408,5.418,4.788,1.959,4.086,0.794,2.207,1.99,1.018,1.177,1.237,2.059,1.666,1.687,1.198,1.97,1.739,1.66,2.048,2.853,3.297,3.313,3.498,4.825,2.336,5.961,2.734,2.767,3.033,2.013,2.206,2.559,1.447,1.551,1.602,1.982,2.855,3.139,2.418,2.407,1.945,1.749,1.134,2.749,2.426,2.313,2.088,2.375,2.083,1.969,2.773,2.85,1.978,2.425,2.061,2.089,2.711,1.218,1.186,0.992,1.016,1.253,1.562,1.631,2.804,1.456,1.392,1.19,0.846,1.159,0.946,1.229,1.453,1.244,1.199,1.359,0.821,1.193,1.275,1.219,1.35,1.124,2.001,2.072,1.588,1.595,0.496,1.463,2.217,0.811,1.351,1.108,0.59,1.029,0.493,1.145,1.126,1.84,0.942,1.124,1.177,1.406,1.252,1.323,2.632,2.16,1.612,1.652,1.815,1.767,3.393,1.861,1.922,1.773,1.784,0.001,1.835,1.453,1.465,1.416,1.407,1.669,0.428,1.717,1.658,1.324,1.446,2.448,2.651,3.011,2.514,14.133,16.025,10.71,12.462,6.17,3.072,3.143,4.101,0.279,1.801,1.663,7.636,0.764,1.768,1.527,1.547,3.145,4.577,2.99,3.033,2.661,3.374,2.646,2.282,1.967,1.538,1.479,1.315,0.726,0.809,0.744,1.44,2.269,2.429,1.852,2.352,1.753,1.835,1.779,1.73,2.353,2.016,2.159,1.37,1.256,1.412,1.575,1.485,1.443,2.557,4.6,0.707,3.047,2.42,2.751,5.517,5.146,4.502,2.962,1.811,1.603,1.275,1.37,2.195,1.485,1.232,1.496,1.48,1.973,1.261,1.102,1.967,1.605,1.532,1.606,1.476,1.611,0.958,1.012,1.125,1.149,0.792,0.857,1.056,0.917,1.12,1.203,1.157,1.243,2.207,1.753,1.768,1.474,1.916,3.578,2.245,1.507,0.783,1.033,2.566,0.188,1.45,5.636,5.832,5.463,3.515,16.896,3.927,4.007,4.146,4.195,4.267,13.727,16.324,3.718,1.392,7.788,5.096,57.846,4.331,3.975,2.028,2.053,1.859,2.885,2.982,2.692,2.387,2.021,1.862,2.781,1.933,2.396,2.731,1.956,1.944,1.634,2.358,2.338,1.964,1.982,3.455,9.494,2.439,11.551,15.473,3.488,3.534,3.802,3.785,4.841,2.366,2.706,3.484,3.419,1.58,1.649,2.573,2.652,2.252,2.048,1.36,1.307,2.484,2.616,2.885,3.224,2.441,2.612,4.887,2.69,5.239,4.812,1.292,2.722,1.985,1.948,2.318,2.319,2.795,2.729,4.729,14.899,20.789,5.026,2.386,2.375,2.262,1.123,1.219,1.606,1.708,1.48,1.511,1.424,1.359,2.688,1.752,1.7,1.396,2.681,2.705,2.525,2.512,1.568,1.613,3.247,6.176,8.767,1.127,5.224,4.437,3.935,3.301,1.585,2.415,1.116,1.41,1.768,1.452,2.916,1.77,1.768,1.889,2.009,1.461,1.501,1.416,2.263,2.037,1.225,1.423,1.604,1.661,1.849,2.007,3.06,2.892,2.548,2.591,3.975,2.669,2.707,2.665,2.741,2.75,2.715,3.189,3.161,2.073,1.871,0.255,4.297,3.394,3.532,3.352,3.362,3.399,3.921,3.638,2.929,2.925,3.813,3.85,2.5,2.514,3.303,3.326,2.477,3.966,3.995,2.087,2.146,2.15,2.097,5.98,4.676,1.35,3.27,1.402,1.826,0.909,0.956,1.822,2.097,1.18,1.728,1.709,2.449,1.216,1.269,1.255,1.286,1.507,1.551,1.317,1.683,1.6,2.815,7.36,28.344,5.347,2.074,0.811,2.27,1.238,1.275,1.359,1.729,1.666,1.987,2.066,2.075,1.278,1.315,1.088,1.858,3.045,4.34,18.493,8.356,3.496,6.914,3.742,1.892,1.679,1.835,1.81,1.94,3.291,2.569,2.022,2.13,2.123,1.929,1.721,1.371,1.63,1.313,1.671,2.062,1.676,1.693,1.64,1.302,1.267,1.686,1.535,1.579,0.584,1.29,1.634,2.514,2.087,1.621,2.517,15.035,0.828,0.631,5.811,3.422,2.033,2.578,1.082,1.011,0.822,0.826,0.857,0.786,0.835,0.838,0.832,0.804,1.384,1.627,0.43,0.69,1.029,1.814,1.278,1.001,2.433,2.071,1.044,1.248,0.808,0.272,0.355,1.366,20.023,6.838,8.215,3.843,5.723,1.338,2.542,1.408,3.375,16.052,4.971,17.715,32.643,5.141,2.522,3.392,1.85,1.94,1.571,1.84,2.481,2.611,1.728,2.301,3.262,2.516,2.095,2.569,2.544,2.098,2.23,2.001,0.187,1.62,1.832,2.537,2.993,2.049,2.259,2.644,3.935,2.07,1.967,3.969,2.607,2.003,1.617,1.072,1.207,1.199,1.252,1.145,1.403,1.413,1.502,1.478,1.614,2.015,4.092,3.253,3.34,1.046,3.295,1.636,1.674,1.315,0.942,0.943,0.928,1.22,1.27,1.657,1.007,1.086,1.161,0.993,0.727,1.222,1.171,1.472,1.082,1.242,1.232,0.996,1.11,1.048,0.645,1.425,0.594,1.07,0.453,1.171,1.307,1.189,1.223,0.946,1.089,2.29,0.785,2.644,0.988,1.038,1.286,1.328,1.339,1.231,1.059,0.982,0.944,1.652,0.866,1.071,0.997,1.217,1.157,1.025,1.94,3.84,7.428,9.032,9.05,8.037,4.921,10.657,1.719,5.063,3.472,2.358,2.444,2.185,2.204,2.708,2.671,2.747,4.441,4.258,2.895,0.066,2.711,7.118,5.733,4.64,8.697,5.857,6.417,2.257,0.779,2.62,3.153,2.956,1.758,1.905,2.796,2.691,3.081,1.042,1.676,2.23,2.968,3.189,4.219,4.642,9.766,11.308,6.95,5.694,6.121,4.504,3.046,2.262,1.692,2.437,2.36,3.325,2.405,2.408,2.023,1.995,2.469,2.092,2.948,2.436,2.71,1.974,2.045,2.009,2.083,1.583,1.553,2.659,0.249,1.727,1.764,3.394,2.756,1.256,2.788,4.081,2.747,3.481,0.295,5.724,3.69,3.484,2.249,4.949,1.262,3.446,2.813,3.341,0.557,1.734,2.592,2.428,1.207,1.907,2.24,2.197,1.636,2.542,2.689,0.96,1.332,2.617,2.957,4.155,1.479,1.277,4.061,4.053,2.691,3.6,2.244,1.762,3.359,4.698,5.4,4.866,3.857,7.345,7.624,3.463,13.289,12.296,4.576,3.142,1.57,13.823,1.093,2.823,2.734,3.219,2.594,1.871,3.311,2.184,2.866,3.15,8.311,6.595,16.568,1.878,2.101,0.866,16.503,6.503,1.995,2.049,1.535,1.927,2.533,2.983,3.456,5.221,2.25,0.881,1.67,5.829,4.158,1.804,1.809,1.64,1.815,1.88,1.439,1.813,1.003,0.964,0.877,0.982,1.414,1.268,1.328,1.37,1.291,3.787,5.568,4.06,1.819,0.328,1.325,1.277,1.52,1.502,1.05,1.305,1.691,1.591,1.434,1.523,1.881,2.188,1.89,1.371,0.888,1.033,0.847,0.4,1.689,4.313,5.216,5.326,3.073,0.199,3.045,2.913,1.115,2.527,1.943,2.704,1.946,5.534,2.645,0.476,9.258,0.632,1.024,1.196,2.906,3.048,3.42,3.488,6.968,6.991,9.731,4.379,5.494,2.533,2.538,2.328,2.646,2.961,7.065,2.027,1.67,0.987,0.507,4.581,9.939,1.867,12.906,3.167,6.317,9.451,2.896,13.253,2.871,13.265,1.533,1.167,3.503,12.473,2.953,0.85,0.934,1.043,0.604,0.69,0.643,0.622,4.862,2.408,0.833,0.797,1.864,1.156,2.332,0.623,0.564,0.454,0.468,0.575,0.956,0.479,0.414,0.381,0.578,12.992,0.573,0.617,0.598,0.564,1.779,4.72,1.961,0.828,0.532,0.585,0.492,0.281,0.273,0.328,0.318,0.303,0.341,0.391,0.311,0.256,1.019,1.062,1.731,0.976,2.479,3.023,3.603,3.046,2.96,4.086,54.39,2.777,3.025,1.025,4.5,6.371,13.633,1.844,2.782,1.179,1.357,4.592,0.298,5.082,4.023,1.029,0.718,0.519,0.462,0.506,0.395,0.372,0.41,0.375,0.403,0.432,0.372,0.405,0.36,0.399,0.329,2.795,1.743,0.406,0.704,0.681,0.983,1.597,6.587,11.351,2.827,2.815,5.637,3.225,13.341,1.905,1.293,1.264,1.288,1.281,0.822,0.915,2.465,15.09,2.708,1.991,0.961,0.91,1.015,0.967,0.604,1.813,1.212,1.289,1.569,1.516,1.707,1.078,0.885,0.965,0.87,0.946,0.656,0.786,1.177,1.209,1.168,1.23,1.193,1.143,1.166,1.291,8.179,0.927,0.618,0.652,0.601,1.036,1.187,1.198,1.19,0.894,0.85,1.256,1.206,5.581,0.072,14.628,9.238,2.39,0.615,0.533,0.476,0.631,0.568,0.57,0.625,0.556,0.597,0.79,0.633,1.485,1.73,2.007,5.513,4.413,1.036,0.884,1.125,1.252,1.039,1.118,0.903,0.804,0.838,0.873,0.821,0.801,0.811,0.779,0.843,0.821,0.849,0.772,1.901,1.016,24.794,0.831,1.47,0.576,0.748,0.628,1.536,0.743,0.668,0.853,0.811,0.586,0.632,0.716,1.564,0.666,0.594,1.065,0.83,0.92,24.614,3.296,2.295,3.407,3.38,14.014,11.971,1.159,1.519,1.111,1.494,1.424,0.566,0.173,1.036,1.115,1.12,1.482,1.546,1.194,1.43,1.757,1.798,2.002,1.243,1.329,2.079,2.239,1.21,1.41,1.447,1.206,1.19,6.272,3.523,3.512,1.45,1.413,3.025,2.598,2.621,3.389,1.91,2.873,1.28,1.617,4.797,3.331,2.41,2.398,1.473,1.441,1.672,1.669,2.863,1.442,1.423,1.231,1.207,1.401,1.211,1.156,1.016,1.173,1.214,1.413,1.634,1.588,1.575,1.534,1.937,1.97,1.915,1.953,2.696,2.71,3.841,2.449,3.059,4.015,3.461,2.589,3.658,1.687,2.059,2.032,3.424,5.15,1.924,1.91,1.975,1.146,1.174,1.377,1.166,2.974,3.072,1.433,1.413,2.696,2.321,2.532,1.019,1.066,1.868,1.907,1.918,1.907,1.887,1.932,3.609,5.495,2.034,2.041,2.497,2.534,2.327,2.521,2.758,2.906,2.802,4.777,6.181,3.3,3.298,1.856,1.862,1.829,1.835,2.794,2.754,2.769,2.294,2.752,2.338,2.25,2.313,2.271,1.377,1.376,1.651,1.602,1.832,1.792,2.321,2.327,2.722,1.833,1.894,1.084,1.15,1.344,1.38,3.143,1.948,2.24,1.861,2.258,4.138,1.758,1.609,1.759,1.801,1.364,1.41,1.359,1.379,1.833,1.148,0.699,0.906,0.962,1.345,0.989,0.907,0.923,0.895,0.968,1.389,0.647,0.678,0.868,0.907,0.899,0.463,0.476,0.902,0.923,0.435,0.465,0.862,1.568,2.108,2.991,2.891,2.885,2.983,4.61,2.643,1.395,1.16,2.44,2.438,2.405,2.707,3.907,4.503,4.716,5.84,1.967,6.343,1.694,2.166,0.001,2.432,3.835,0.164,1.094,0.733,1.031,2.611,3.611,2.4,2.357,1.884,2.244,0.943,1.14,0.865,1.04,0.808,0.798,0.656,0.987,0.934,1.388,1.365,1.109,0.921,0.802,1.402,1.54,1.57,1.473,1.676,2.94,0.898,1.343,1.372,0.941,0.93,1.377,1.494,1.299,0.357,0.656,1.021,0.935,0.963,1.723,1.342,1.26,1.374,1.368,1.41,1.335,1.238,1.488,1.343,1.297,1.605,0.898,1.466,1.136,1.982,1.692,1.089,1.125,1.699,1.805,2.433,1.439,1.481,2.584,3.331,4.102,4.928,2.404,2.697,2.687,4.215,3.672,2.958,4.147,2.131,2.076,2.822,2.132,2.093,2.356,2.337,1.909,1.844,2.203,2.204,2.293,1.55,1.498,2.426,2.034,1.779,1.744,1.703,0.6,2.368,0.56,1.08,1.902,1.655,0.998,0.873,1.973,1.1,1.682,2.021,2.012,1.199,1.206,0.973,0.578,0.528,1.304,0.994,0.689,0.472,0.601,0.658,0.92,0.655,0.636,0.751,0.72,1.042,0.996,2.266,1.648,0.212,0.84,0.898,0.738,0.673,0.889,0.664,0.698,1.17,1.098,0.999,0.932,1.168,1.373,1.247,1.334,0.835,1.134,0.683,0.735,0.53,0.555,0.521,0.842,0.92,11.62,1.488,1.223,1.887,1.763,2.195,1.773,1.305,1.314,1.366,1.556,2.686,3.155,1.603,1.318,1.205,1.024,1.244,1.25,1.037,1.302,1.333,1.31,1.415,1.141,1.347,1.371,1.198,1.126,1.139,1.078,1.158,1.282,1.216,1.113,1.459,1.543,2.054,3.095,3.247,1.58,1.223,1.105,1.055,0.47,1.081,1.222,1.172,2.139,1.869,1.9,1.193,1.081,1.118,1.406,1.177,1.931,1.638,1.512,1.254,1.229,1.033,1.231,1.475,1.201,1.404,1.042,1.3,1.504,5.173,2.344,2.253,1.982,1.294,1,1.298,1.09,1.275,1.012,1.083,1.242,1.131,1.707,3.228,0.911,1.57,1.67,2.046,0.95,0.917,0.339,0.96,1.055,1.08,0.989,0.912,1.324,1.567,0.211,1.645,1.063,0.952,0.666,0.748,0.696,0.451,0.331,1.189,1.309,0.74,0.461,0.85,1.06,1.378,1.053,1.008,1.242,0.98,0.905,0.975,1.287,0.885,1.162,1.704,2.735,7.464,2.162,0.941,1.202,0.701,0.831,0.927,0.792,0.889,0.809,0.98,0.678,1.357,0.812,0.88,1.479,2.031,1.731,3.647,2.154,1.671,1.454,1.479,1.66,1.38,1.35,1.103,1.28,1.112,0.886,1.074,1.273,0.292,0.686,1.037,0.841,0.957,0.951,0.918,1.092,0.778,1.025,1.761,2.779,3.895,1.269,1.243,1.003,0.873,0.817,0.793,0.912,1.131,1.516,0.705,0.707,1.071,1.04,4.638,3.573,0.176,0.22,0.687,1.217,2.251,1.218,7.226,6.441,8.622,1.531,1.219,2.075,2.021,6.696,1.899,3.439,2.876,3.607,0.397,9.329,1.448,1.672,1.789,1.628,1.927,1.375,1.959,0.858,2.748,2.221,2.471,1.556,1.549,2.26,2.477,2.133,2.201,2.775,0.111,0.273,3.377,1.306,2.658,2.375,2.634,4.727,9.023,8.48,5.795,2.296,2.829,2.167,2.676,2.559,2.525,4.212,6.08,6.264,1.887,1.893,1.688,1.138,0.985,1.13,1.774,1.208,1.333,1.181,1.409,0.828,2.07,0.918,1.05,2.095,0.582,1.652,2.188,1.551,1.886,1.565,0.841,2.492,2.773,2.722,1.504,2.325,1.152,1.136,1.228,1.055,1.262,1.269,1.286,1.099,1.245,1.673,1.549,1.542,1.189,1.142,1.64,1.311,1.324,1.708,2.048,1.582,1.259,1.146,1.119,1.184,1.541,1.795,1.338,1.067,1.585,1.674,2.084,2.315,2.77,3.104,5.931,2.619,1.869,3.185,0.882,0.973,8.763,8.845,5.06,3.893,4.06,1.968,4.249,6.146,2.716,2.367,0.522,1.022,1.814,1.533,1.654,1.535,1.489,2.307,1.753,1.522,0.563,1.501,2.346,1.624,1.104,0.998,1.341,1.563,1.685,1.437,1.377,1.448,1.121,1.11,1.4,1.277,0.545,1.44,0.831,0.988,1.872,1.701,1.439,1.306,1.812,1.201,2.028,1.97,3.248,2.996,1.986,0.851,2.057,2.15,1.419,1.146,1.056,0.841,1.093,1.307,0.987,0.888,1.387,1.11,1.112,1.233,1.257,1.817,3.544,1.343,1.047,0.89,1.43,1.548,1.27,0.886,0.907,1.012,0.801,0.688,0.966,1.221,0.934,0.973,1.991,1.309,4.728,4.041,1.38,2.267,2.233,2.009,1.648,1.799,2.944,3.306,3.824,5.027,3.149,1.712,1.56,0.617,1.662,0.336,1.416,1.297,2.359,2.174,2.106,2.248,3.657,8.335,2.356,9.86,7.366,7.434,1.094,5.812,2.476,1.621,0.928,3.206,0.001,5.509,3.424,2.676,2.588,1.68,2.21,2.181,3.183,1.856,2.996,2.887,2.335,0.25,1.721,0.744,0.609,2.32,3.363,4.598,3.545,1.662,1.398,1.116,1.286,1.106,1.308,1.086,1.573,2.57,3.048,0.422,0.69,1.908,1.334,2.606,3.891,4.124,3.656,2.322,1.506,1.168,1.22,1.428,1.285,1.386,1.145,1.78,1.759,2.022,2.256,2.098,0.542,1.306,1.573,0.802,1.995,1.625,1.587,1.621,1.7,1.39,1.41,1.818,2.053,4.695,4.815,1.643,1.554,1.367,1.181,1.12,1.201,1.318,1.3,1.001,1.518,1.244,1.306,1.311,0.717,0.428,1.472,1.562,0.868,1.608,1.296,1.009,1.085,1.14,1.277,1.446,1.271,1.074,1.287,1.717,2.973,3.045,2.051,2.582,2.362,1.825,1.319,1.492,1.296,1.357,1.288,1.144,1.567,1.602,2.094,2.309,1.848,1.578,1.925,0.199,1.719,1.956,1.968,2.464,2.539,2.706,7.606,7.655,5.037,2.491,2.508,3.383,1.217,1.625,1.383,1.703,2.634,2.268,2.143,1.677,1.591,2.255,2.103,2.504,2.155,2.549,2.113,1.93,2.612,2.063,1.981,2.125,1.522,1.748,4.326,5.212,0.674,2.295,1.678,5.366,2.83,2.124,1.876,1.885,1.905,2.196,2.268,1.623,1.941,2.105,2.194,1.81,2.108,2.134,3.105,1.425,1.373,1.863,1.529,2.403,2.025,1.383,1.826,1.599,2.671,1.763,0.942,2.121,2.21,2.429,2.018,1.725,1.717,1.416,1.004,1.636,1.832,1.859,1.832,3.712,7.332,1.976,1.931,2.032,1.887,1.779,1.61,2.527,2.945,2.987,2.37,2.208,2.283,2.308,1.468,1.075,0.9,2.52,1.446,1.035,2.212,2.589,2.383,2.961,3.374,3.135,3.511,1.205,2.403,1.248,1.512,1.222,1.508,0.823,0.765,1.171,0.249,1.456,2.287,1.559,1.574,1.785,2.116,1.311,1.342,1.999,2.071,1.023,1.171,1.219,1.214,1.134,1.385,1.545,1.472,1.147,2.109,1.043,1.232,1.69,1.668,1.225,1.117,1.508,1.412,1.368,1.318,1.253,1.129,1.176,1.388,1.197,0.903,1.329,1.614,1.509,1.738,0.856,1.158,2.236,1.795,1.29,1.031,1.39,1.468,1.372,1.242,0.867,0.754,1.314,1.376,1.183,1.126,1.057,1.803,1.49,2.137,1.547,1.387,3.203,2.61,3.438,1.991,1.115,1.263,1.23,1.442,1.887,1.239,1.462,1.371,3.067,2.243,2.06,1.571,1.541,1.292,1.558,1.605,1.662,1.352,1.591,2.442,1.919,1.261,1.023,1.864,2.012,2.134,2.545,1.577,1.913,1.064,1.383,1.578,1.751,1.437,1.471,1.685,1.584,2.362,1.259,1.808,2.514,2.402,6.361,6.403,6.382,6.354,0.836,4.539,3.527,4.02,1.94,1.994,4.509,5.233,4.088,2.607,1.969,0.915,2.538,0.766,1.845,2.262,2.342,2.4,1.836,2.444,2.6,3.391,3.49,0.5,2.89,2.573,1.814,1.733,1.802,1.742,2.414,2.419,3.378,2.769,0.623,3.144,3.807,3.732,4.872,2.344,2.495,3.215,2.176,2.346,1.502,1.653,2.365,2.545,2.415,2.69,2.335,1.716,2.112,1.77,2.182,2.091,2.172,1.379,1.458,1.899,2.388,4.128,3.459,1.936,2.947,3.104,3.022,3.329,3.526,6.704,13.514,2.583,2.593,1.492,1.698,1.667,1.893,1.857,1.87,1.667,1.579,1.591,1.806,2.136,2.078,1.127,3.181,1.835,1.637,1.545,1.764,1.776,1.625,2.436,1.716,1.599,0.167,1.767,1.96,2.128,1.618,1.718,1.716,1.723,2.445,1.661,2.019,1.701,2.036,2.043,1.689,3.546,1.885,2.48,1.62,1.82,2.06,1.315,1.205,1.521,0.907,1.056,1.614,1.724,1.803,1.619,1.665,1.495,1.426,1.389,1.524,1.422,1.472,1.069,0.676,0.24,0.887,0.35,1.755,2.023,1.334,1.3,3.615,1.074,2.323,3.986,1.475,2.086,2.455,2.171,2.56,3.545,3.689,3.067,2.363,3.58,3.36,3.208,6.403,6.424,5.643,4.053,7.591,4.921,2.394,1.946,2.094,2.046,3.463,2.561,2.488,3.614,4.411,5.271,5.334,2.418,2.371,2.861,2.892,2.757,3.279,4.119,2.201,2.199,1.962,1.957,3.85,2.108,2.267,2.72,1.12,2.453,2.535,2.537,0.59,1.057,1.892,4.331,5.033,2.822,1.821,1.968,2.081,2.935,2.931,2.741,2.161,3.682,4.668,4.662,4.061,4.081,2.76,2.587,3.897,3.731,2.687,2.74,1.896,0.926,2.168,3.2,2.088,1.228,3.179,2.569,2.675,2.851,3.707,5.341,3.141,1.761,1.71,1.648,1.02,2.102,1.531,0.37,1.844,1.858,1.744,3.195,6.165,2.497,3.432,2.001,0.869,2.862,0.293,3.477,0.683,1.047,1.008,0.52,0.215,0.867,2.079,2.896,4.849,2.75,2.301,5.19,0.829,1.094,1.893,1.989,0.428,2.017,1.538,1.306,1.55,1.852,1.916,1.803,1.747,2.307,1.562,3.395,5.617,4.897,3.996,3.412,2.239,3.144,2.64,2.83,3.124,3.085,3.049,3.178,2.493,3.833,2.811,3.416,3.125,2.267,1.109,3.187,5.652,2.492,2.524,2.455,2.664,3.82,5.862,5.989,0.195,0.621,1.653,2.227,2.893,2.721,2.629,2.779,1.846,1.802,1.828,2.04,1.991,2.035,1.891,1.876,2.161,0.455,2.139,4.343,3.361,2.457,2.545,3.439,5.762,3.197,2.415,2.228,1.657,2.043,2.72,2.576,2.45,2.219,2.29,2.278,4.42,2.446,2.179,4.072,4.621,4.102,1.355,3.631,2.951,4.301,3.093,3.195,2.167,2.638,1.101,3.96,2.676,2.74,3.815,2.683,3.508,1.941,2.256,3.331,3.508,7.132,6.92,3.475,3.775,2.577,2.225,3.718,3.748,2.044,0.195,0.759,3.225,3.793,4.555,1.399,3.281,8.95,2.604,4.195,4.07,2.411,2.441,2.408,3.01,2.872,4.652,4.087,1.141,1.196,2.383,6.814,1.607,0.545,3.215,8.181,11.24,4.567,4.077,1.522,1.223,2.449,0.695,1.226,3.478,2.594,0.965,1.619,2.637,3.15,3.079,2.858,2.183,2.489,1.747,2.411,2.463,1.872,1.847,2.637,1.41,1.535,1.447,2.047,4.565,6.505,5.508,1.391,2.564,1.643,1.878,2.19,1.112,1.373,1.566,3.423,3.429,3.448,4.032,2.039,3.947,6.675,4.463,6.49,7.455,1.535,11.692,5.387,2.051,2.157,2.916,4.332,2.269,6.426,6.241,7.956,12.346,7.596,4.205,3.969,3.02,1.854,3.264,7.571,9.515,6.774,3.951,3.774,3.483,3.938,2.681,2.714,3.576,4.091,3.858,2.361,2.519,0.516,2.18,4.041,3.787,3.363,5.294,2.722,2.758,3.235,1.62,3.465,3.458,3.433,3.511,1.639,1.538,2.06,1.76,1.882,1.616,1.729,2.528,1.88,1.752,2.348,2.115,1.799,1.57,2.364,2.245,1.639,2.597,1.78,1.72,3.866,4.715,4.841,1.031,4.503,3.511,2.628,2.159,1.063,2.119,2.708,3.531,2.236,2.938,1.779,2.217,2,3.312,2.659,2.869,2.825,2.417,1.982,3.675,3.842,3.496,3.75,3.997,0.591,2.686,6.461,1.273,2.93,2.968,1.023,1.67,1.842,2.28,3.85,2.788,0.277,1.065,1.06,3.617,3.008,2.694,2.102,2.345,2.955,1.738,0.497,0.278,6.413,2.314,3.282,2.389,2.131,2.036,2.324,3.205,2.074,2.116,0.934,2.083,1.24,2.057,1.723,1.956,2.237,2.105,3.669,4.653,1.691,3.529,2.336,1.517,1.686,1.661,1.637,1.96,1.567,2.339,1.449,1.932,0.904,0.551,3.153,2.615,3.349,2.95,1.903,2.47,3.169,1.772,1.86,1.897,1.223,0.871,1.588,1.798,2.116,1.476,2.03,2.036,2.986,2.378,2.468,1.765,1.811,2.628,1.552,1.247,1.812,0.287,2.354,2.479,3.089,2.541,1.965,2.145,1.644,1.298,2.058,2.659,3.281,3.039,2.566,1.624,2.6,4.879,5.016,3.265,0.809,1.404,1.86,2.433,1.893,1.981,2.243,3.109,0.547,2.097,2.495,1.866,2.019,1.86,2.394,2.501,3.273,3.829,4.937,4.889,1.983,2.187,2.01,2.72,2.822,2.668,2.611,2.254,2.132,2.402,1.763,1.872,1.695,2.272,1.957,1.941,2.295,1.507,1.748,3.813,3.421,2.563,2.344,1.004,7.944,5.675,2.244,1.438,2.846,3.454,4.12,4.177,4.547,3.737,1.7,1.918,3.357,4.645,4.616,6.458,6.548,0.426,1.832,3.297,2.332,1.962,2.476,2.146,2.093,1.604,1.725,2.049,2.02,2.318,2.702,1.963,2.786,1.924,1.534,2.11,1.629,8.199,7.746,8.243,4.454,6.525,3.208,3.473,3.746,2.256,2.115,2.158,2.509,2.549,3.808,2.421,2.074,2.431,2.751,2.67,3.364,3.327,2.93,2.735,2.436,2.046,2.402,2.886,2.169,2.465,2.153,1.898,1.795,2.072,0.788,2.292,2.875,2.661,3.218,2.412,2.194,0.484,1.938,0.363,2.509,2.751,2.792,2.763,2.703,2.874,3.961,3.177,1.713,1.705,2.776,3.038,2.397,2.814,0.095,1.806,2.141,2.277,2.039,0.992,4,2.073,5.043,1.414,7.751,6.156,6.125,3.349,3.382,2.734,2.331,2.69,2.629,1.829,1.877,2.34,2.374,2.807,3.205,2.381,2.737,2.558,2.257,1.959,2.371,3.296,2.894,2.488,3.482,3.592,3.387,2.069,2.078,2.499,1.86,1.147,1.697,1.365,1.767,2.181,2.539,2.442,2.392,2.53,2.721,4.338,4.491,0.891,4.953,3.109,2.98,4.582,3.312,3.497,6.749,3.079,3.057,2.921,1.952,1.093,1.023,4.189,3.015,1.927,1.938,2.748,2.67,2.759,2.203,2.743,4.771,4.493,4.821,5.083,3.87,3.956,2.529,2.496,2.431,1.834,1.626,2.938,2.03,2.098,1.754,1.049,1.434,1.281,1.891,2.027,2.112,2.883,3.91,2.501,2.35,2.088,1.777,1.516,1.554,1.308,2.336,1.684,2.421,1.267,2.244,1.866,1.474,1.732,1.681,2.187,2.322,1.206,1.738,3.397,3.211,2.976,1.506,2.049,1.684,1.877,2.251,2.405,2.112,2.356,2.691,2.493,2.678,2.509,2.246,3.195,3.06,4.034,3.48,2.398,3.008,2.995,4.92,10.737,0.605,1.875,3.53,4.943,3.695,4.168,4.997,2.19,2.348,1.233,1.353,1.485,1.643,1.382,1.498,2.151,2.809,1.857,2.267,2.358,2.765,2.208,4.024,4.769,0.538,5.578,5.761,4.43,2.528,2.077,3.637,1.818,1.935,2.775,2.593,2.15,1.771,1.571,2.965,1.69,1.585,1.843,1.752,4.192,4.456,4.663,3.287,3.337,3.401,3.08,1.896,1.985,3.541,3.223,3.653,1.214,1.43,0.987,1.193,3.879,4.247,3.69,0.499,4,2.753,3.706,4.988,3.229,4.481,3.001,4.245,2.295,1.576,3.722,1.355,2.939,3.317,2.554,2.595,2.141,3.728,2.453,2.44,2.489,2.372,3.592,3.689,3.311,1.078,1.405,1.311,1.529,2.7,2.828,2.137,1.992,3.192,2.274,1.264,1.18,1.026,2.06,2.87,2.208,2.218,2.608,1.864,1.966,2.065,2.005,2.275,1.802,2.484,2.567,4.24,7.958,7.251,4.89,4.846,6.523,6.608,5.548,1.979,5.891,6.05,7.142,3.556,3.533,3.027,2.867,2.691,3.452,2.062,1.584,5.069,6.479,4.755,3.881,3.722,0.346,3.599,3.358,4.09,0.261,3.255,3.96,4.302,3.844,3.883,0.945,3.295,0.76,2.533,3.176,4.304,6.264,7.174,6.304,4.461,5.932,0.05,5.423,3.464,3.508,1.751,5.457,7.207,3.393,2.528,3.006,2.364,5.436,2.956,2.774,2.743,2.124,2.223,1.78,2.06,2.18,1.855,2.507,1.68,2.08,3.764,4.12,5.591,5.422,2.194,1.409,1.248,0.121,2.281,1.898,2.078,1.512,1.451,1.512,1.549,1.502,1.458,1.462,2.808,2.762,1.787,3.128,3.206,1.518,0.691,0.241,2.135,0.616,2.559,1.714,1.503,1.693,1.106,1.269,1.758,0.048,1.41,1.445,1.671,1.711,1.831,2.115,1.344,1.283,2.353,1.649,2.464,3.81,6.123,3.983,4.364,0.844,1.423,3.161,5.19,5.427,4.054,3.143,3.1,3.055,6.26,2.847,3.256,5.335,2.017,6.998,9.021,8.83,6.365,7.483,5.168,1.461,2.859,3.404,1.938,3.542,3.691,7.318,1.926,6.841,7.125,3.675,1.98,1.57,1.622,1.942,1.226,0.841,2.19,1.758,1.77,2.671,2.021,2.358,3.162,0.342,0.353,2.425,3.508,4.579,1.896,2.045,1.866,1.679,2.184,1.649,1.499,2.388,2.032,1.929,1.962,1.867,2.062,0.443,2.317,0.93,2.327,0.529,4.78,1.689,1.568,2.614,1.768,1.645,1.802,1.696,2.018,1.715,1.581,1.195,2.023,1.943,2.203,3.359,3.462,1.327,1.862,1.891,1.464,1.552,2.549,2.533,1.362,1.413,1.48,1.244,1.105,1.038,0.842,1.475,0.267,1.501,1.202,1.413,1.064,1.165,0.799,0.783,0.557,0.621,1.109,1.05,0.766,1.01,1.043,1.168,1.202,2.785,1.718,1.763,0.977,0.984,1.248,0.733,0.735,1.377,0.605,0.657,1.22,0.821,0.706,1.083,0.955,0.414,0.659,0.749,0.959,1.008,0.917,0.879,0.855,0.927,1.075,1.185,1.706,1.409,0.277,1.719,2.658,1.589,2.38,2.209,1.198,1.21,2.734,2.359,8.237,2.282,2.085,1.446,1.453,1.654,1.925,1.441,2.015,1.622,1.587,1.998,2.001,1.874,1.899,1.513,2.085,2.1,0.056,1.979,2.088,1.086,1.076,1.546,1.597,1.059,0.894,1.222,0.888,1.989,1.302,1.347,1.583,1.6,1.493,1.533,1.554,1.928,3.285,2.773,4.923,2.196,2.14,2.608,0.561,4.739,5.128,2.968,1.922,2.258,3.698,15.758,2.331,6.36,3.366,5.856,3.261,1.163,1.189,0.959,1.168,0.786,1.216,2.413,8.761,0.559,1.743,4.839,9.965,2.59,4.124,3.075,4.921,2.204,1.916,0.982,0.895,1.465,0.945,0.895,3.715,3.856,4.234,2.24,2.247,2.75,1.345,0.948,0.946,1.06,0.926,0.916,1.562,1.341,0.357,1.955,1.936,2.43,2.375,3.813,2.035,4.825,4.102,6.351,2.652,8.619,3.453,1.625,1.604,4.111,13.23,1.782,8.203,11.877,1.615,1.641,2.767,2.846,2.578,1.416,1.495,1.499,1.596,2.507,2.911,2.456,2.633,2.727,2.983,3.636,3.404,0.49,0.984,12.355,10.004,7.752,5.61,1.75,1.96,4.637,2.32,2.245,1.976,4.254,4.202,4.372,1.675,1.666,1.758,1.341,1.538,0.829,2,0.202,1.003,2.111,1.687,2.332,2.154,23.251,5.955,5.915,3.713,1.968,1.836,1.875,1.706,4.03,1.687,1.879,5.14,3.799,3.455,3.68,2.613,1.785,1.254,2.906,1.91,7.299,3.447,1.889,3.071,3.398,3.934,9.495,22.311,3.699,1.431,0.653,2.818,2.721,4.79,3.018,2.387,1.754,1.702,1.329,1.315,3.232,2.2,1.414,4.249,6.531,15.344,3.192,1.65,1.41,2.028,2.095,1.861,1.574,2.348,1.99,2.149,2.542,1.52,0.46,2.65,1.199,4.996,3.351,1.931,2.071,1.73,2.309,1.444,1.902,2.543,0.982,1.17,1.24,0.904,1.329,2.047,1.774,2.11,3.762,0.898,4.836,0.929,3.344,0.957,2.569,1.63,1.141,1.167,2.818,4.097,3.223,3.244,3.453,4.766,3.728,1.925,1.781,17.507,2.45,1.795,1.378,1.666,2.45,8.154,0.575,0.215,1.485,6.964,0.809,8.878,19.235,2.01,1.922,1.605,1.817,2.243,2.685,0.594,1.144,1.43,2.117,2.183,3.295,3.265,17.069,5.184,1.336,10.359,1.16,15.086,3.196,5.52,0.914,6.513,10.03,2.039,0.951,1.204,2.385,0.21,28.383,16.817,12.244,2.098,0.97,1.77,1.732,1.535,1.735,1.462,1.876,27.433,3.486,31.505,1.348,29.058,10.229,3.195,1.543,1.767,1.741,2.187,13.158,3.331,9.241,1.837,1.612,2.05,1.471,1.216,1.386,1.444,2.081,0.853,0.866,1.375,1.409,1.446,0.267,1.991,2.283,2.483,2.039,1.681,2.195,1.774,3.699,2.722,3.45,0.863,1.693,1.434,1.408,1.554,1.889,1.683,1.831,2.201,3.207,4.727,3.062,2.836,3.126,2.851,2.304,1.901,2.099,1.822,1.597,1.646,1.836,2.272,2.099,2.077,2.358,1.62,1.918,0.845,0.936,1.815,1.704,1.916,3.487,0.944,1.943,2.651,4.037,4.344,2.513,2.635,2.137,1.776,2.785,2.206,2.249,4.643,3.673,3.749,12.722,12.62,6.919,3.098,3.282,4.129,2.658,0.956,2.302,2.677,5.266,5.581,6.207,2.921,2.82,3.285,2.75,3.105,3.015,3.632,3.437,2.192,1.98,2.277,2.44,2.159,1.361,2.157,2.495,3.397,3.547,5.872,3.377,3.185,2.475,3.144,2.273,2.75,3.639,3.741,3.083,3.446,3.595,3.547,3.006,0.08,3.043,3.405,5.401,2.751,3.256,3.466,5.292,1.907,4.091,2.765,1.661,1.288,2.399,1.169,1.185,1.694,2.5,2.866,3.008,2.04,2.008,2.098,2.124,2.505,2.758,3.285,3.619,6.32,4.897,4.324,8.735,5.957,2.93,3.224,6.975,3.76,4.053,3.353,3.395,3.602,2.513,1.262,3.597,3.706,6.168,3.027,2.733,3.151,2.666,2.662,2.233,1.995,2.435,2.001,1.834,3.131,2.931,3.241,3.373,1.583,1.695,4.984,8.721,4.024,3.795,3.131,2.751,2.717,4.146,1.779,1.939,18.047,5.596,5.657,0.868,5.242,6.218,6.745,7.106,5.95,6.146,10.083,2.825,3.98,2.525,3.14,3.305,3.044,3.306,3.981,5.041,4.997,2.867,3.037,2.857,2.913,5.596,0.453,0.152,0.777,2.543,3.996,2.699,2.753,0.689,1.39,6.4,2.369,1.219,5.235,2.179,0.999,3.885,3.641,3.334,2.656,3.725,3.45,4.721,7.131,5.933,3.456,2.779,2.781,2.264,2.568,2.732,2.327,0.793,2.843,3.435,2.949,3.231,6.562,4.081,4.205,4.704,2.61,2.842,2.559,0.52,1.964,0.002,4.823,2.563,3.007,1.902,0.029,1.878,1.568,1.307,1.128,1.596,3.166,2.815,1.132,1.786,1.519,1.671,3.052,3.433,4.194,0.013,7.136,2.287,3.711,1.204,3.53,2.53,1.892,1.717,4.691,7.157,7.39,4.758,6.528,3.241,4.284,2.121,2.461,3.286,2.023,9.807,4.38,4.235,2.785,2.363,3.17,0.022,3.195,3.026,3.101,2.763,3.156,7.158,1.295,1.993,1.289,12.006,6.137,6.279,2.993,3.03,2.943,2.867,1.814,1.191,5.994,3.247,2.689,1.379,2.352,2.418,4.828,2.419,0.68,3.547,4.625,4.887,4.454,3.626,3.953,15.152,8.343,2.195,10.48,0.82,0.706,1.156,5.195,13.681,19.471,10.598,6.853,3.019,4.329,5.727,5.779,15.78,4.347,5.423,3.992,4.218,3.49,3.677,3.458,4.428,4.833,3.254,3.313,5.721,2.513,0.281,1.685,0.69,1.283,2.295,0.847,21.602,6.121,0.809,0.238,1.961,10.405,8.121,5.984,5.386,3.567,1.879,0.632,4.949,6.718,5.174,0.738,11.552,2.972,1.951,1.666,1.692,2.291,2.919,3.514,4.986,5.546,1.737,5.426,4.851,7.107,6.952,4.897,4.32,0.574,9.817,12.814,12.835,13.17,7.361,5.342,3.151,3.313,3.645,3.686,2.185,10.176,16.875,0.891,0.803,1.717,2.006,2.576,1.657,1.339,2.56,2.299,13.614,0.449,0.854,1.486,2.115,4.516,4.487,5.197,0.16,2.359,2.118,2.118,2.109,1.586,2.236,1.963,2.458,2.548,1.468,3.361,2.013,2.065,2.113,3.538,2.191,1.468,3.505,5.323,5.25,3.907,3.289,3.548,4.9,2.926,1.857,1.541,1.557,1.235,0.963,1.586,1.71,0.815,0.977,2.423,1.758,2.637,1.845,2.681,1.57,1.593,2.103,2.343,1.944,2.452,0.842,2.084,2.028,1.89,2.84,3.804,5.052,5.086,5.164,4.969,4.482,3.629,4.582,2.23,4.823,5.314,4.759,2.883,4.226,3.857,3.436,4.559,4.476,4.367,4.442,2.059,5.736,5.507,1.308,0.624,1.766,5,6.48,1.266,4.083,5.152,2.028,1.018,5.437,17.38,6.588,3.472,3.447,1.808,2.162,3.336,0.757,1.199,0.645,3.092,2.792,7.711,7.482,4.995,5.487,6.537,4.267,2.066,3.798,4.557,7.946,2.427,5.752,6.84,3.621,1.874,1.744,5.229,5.873,5.027,2.459,0.059,2.443,1.949,2.006,3.946,1.471,2.063,2.09,7.129,5.204,0.872,3.469,2.435,7.207,1.566,13.283,10.413,7.307,9.303,18.697,2.364,1.59,3.297,2.094,10.346,1.375,4.91,0.333,4.485,5.64,8.741,3.773,0.293,0.134,0.194,0.293,2.82,5.933,5.313,2.776,0.019,5.579,3.119,2.682,1.231,4.396,4.936,4.785,7.629,8.289,1.063,0.379,4.809,2.864,2.749,3.405,2.316,2.515,2.384,1.203,3.247,2.808,2.308,3.537,0.724,1.083,1.145,0.69,1.456,0.979,1.166,1.151,1.762,1.707,1.622,1.385,1.736,1.516,1.352,1.093,1.083,0.211,0.598,0.487,1.524,0.837,1.351,1.609,1.403,0.763,1.24,3.044,1.35,4.763,1.347,1.241,0.736,2.411,7.491,1.968,1.375,0.883,0.661,1.882,2.707,2.196,1.649,5.133,4.748,5.057,2.506,0.375,0.844,3.416,3.62,3.861,1.814,2.17,1.948,2.576,2.341,2.094,1.508,1.176,2.966,2.607,1.772,1.61,0.595,1.873,5.326,2.793,5.376,4.966,4.829,5.596,1.2,2.233,3.37,3.154,3.586,3.255,0.639,1.256,1.49,0.671,1.525,1.124,1.543,1.284,1.748,1.517,2.043,10.324,4.552,2.421,2.358,3.518,1.742,1.794,0.271,1.754,1.088,1.173,1.03,2.124,2.319,4.392,2.401,1.727,1.404,1.184,1.555,0.931,0.763,0.553,1.343,1.466,1.573,1.486,1.709,1.402,1.297,1.057,1.645,0.166,0.415,2.398,3.324,0.211,4.433,2.805,0.52,3.559,2.321,2.167,2.187,3.095,2.731,2.53,2.206,4.855,3.395,0.834,1.174,1.631,1.776,1.423,1.388,0.692,0.897,1.234,1.625,1.235,0.953,1.74,1.414,1.348,0.256,1.564,3.108,3.391,1.297,0.947,0.908,1.198,0.246,1.132,1.254,1.509,1.083,1.259,0.252,0.41,1.031,1.015,1.067,0.95,1.437,1.714,1.974,2.348,2.205,1.798,1.129,6.114,1.132,1.052,0.979,0.85,1.086,0.84,1.054,1.064,1.064,1.063,0.737,0.988,1.464,1.343,0.892,0.856,1.453,0.629,1.383,0.669,0.646,0.88,0.727,0.911,0.698,0.835,0.557,0.489,0.598,0.648,0.628,1.633,2.14,0.657,0.719,2.831,1.236,1.128,1.089,0.749,0.723,0.853,0.544,0.905,0.461,0.441,0.269,0.365,0.806,0.676,0.699,0.754,0.462,0.566,0.517,0.589,0.79,0.864,0.734,1.149,1.079,3.019,2.223,1.096,1.021,1.233,1.266,1.043,0.99,1.176,1.164,1.021,1.101,2.025,1.977,2.156,2.059,1.22,2.649,2.197,1.228,1.201,2.524,1.645,1.176,2.69,2.409,2.86,1.303,1.974,5.202,0.153,2.911,5.343,1.539,1.578,0.974,1.015,1.266,1.192,1.079,1.021,1.031,1.179,0.827,1.455,1.221,0.81,0.988,0.359,0.597,1.353,1.274,2.076,2.025,1.499,1.234,1.112,0.941,1.281,1.182,1.375,0.937,1.059,1.388,1.545,0.824,1.858,3.033,1.019,1.436,1.378,2.443,2.111,4.554,2.025,1.91,0.912,4.542,2.43,2.629,1.751,1.407,1.589,1.817,1.075,1.107,1.984,4.088,8.418,6.462,15.074,45.1,36.329,28.044,33.298,0.918,2.82,2.936,2.531,2.079,1.82,2.392,1.38,2.037,2.573,2.443,1.616,2.663,3.68,11.65,2.129,1.384,1.584,2.799,6.141,0.432,0.619,1.12,1.521,1.123,1.439,1.099,1.648,1.509,5.119,0.384,4.046,1.457,0.981,1.09,1.242,0.506,0.506,0.554,0.527,0.425,0.416,0.312,1.202,2.646,3.493,0.776,0.993,0.944,1.441,2.934,1.438,1.638,1.072,1.087,1.325,1.108,1.279,1.12,1.253,1.268,1.196,1.146,1.331,1.076,1.178,0.855,1.041,2.289,1.027,0.871,4.788,1.624,6.352,2.72,0.821,0.88,0.518,11.675,2.511,1.851,5.687,2.019,2.334,7.35,1.179,8.996,1.578,3.093,1.905,1.622,0.649,2.293,1.902,0.495,7.461,2,15.921,6.996,9.302,1.601,2.122,9.066,1.619,11.962,1.975,15.008,3.563,1.081,2.262,1.823,0.906,12.238,1.987,2.347,2.28,12.843,8.105,10.085,8.284,2.28,6.899,12.309,6.201,7.945,0.968,1.942,4.758,1.221,2.431,1.335,2.387,2.534,1.408,4.362,2.527,3.688,2.862,0.76,6.363,0.685,0.91,7.341,1.687,2.095,5.748,1.728,3.401,2.543,0.74,3.878,1.337,4.682,2.262,1.928,2.042,2.7,2.787,1.739,4.328,5.104,3.406,4.851,1.009,11.396,1.14,3.943,3.644,2.709,1.371,1.481,1.053,1.196,4.718,1.305,4.506,1.313,4.236,2.715,2.708,2.081,6.162,9.912,2.41,4.65,8.907,0.62,0.474,1.364]},"incidents":[{"id":"12544772506582745","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-25T07:12:06Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A2: onderhoudswerkzaamheden tussen Knooppunt Holendrecht en 8,Knooppunt Oudenrijn","long_description":"Onderhoudswerkzaamheden op A2 in Zuidelijke richting tussen Knooppunt Holendrecht A9 2,3,Knooppunt Holendrecht en 8,Knooppunt Oudenrijn A12 Knooppunt Oudenrijn.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":18633,"south":52.121215,"west":4.953739,"north":52.278415,"east":5.026168,"congestion":{"value":101},"geometry_index_start":387,"geometry_index_end":538,"affected_road_names":["A2/E 35","A2/E 35/Rijksweg A2 Westzijde"],"affected_road_names_nl":["A2/E 35","A2/E 35/Rijksweg A2 Westzijde"]},{"id":"16636556466145852","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-25T07:05:49Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: onderhoudswerkzaamheden tussen 36 N305 en 26 Lakerveld Lexmond","long_description":"Onderhoudswerkzaamheden op A27 in Zuidelijke richting tussen 36 N305 en 26 Lakerveld Lexmond.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":45476,"south":51.955623,"west":5.055152,"north":52.303203,"east":5.313389,"congestion":{"value":101},"geometry_index_start":720,"geometry_index_end":766,"affected_road_names":["A27/Stichtse Brug","A27","A27/Rijksweg A27","A27/E 311","A27/E 30/E 311","A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/Stichtse Brug","A27","A27/Rijksweg A27","A27/E 311","A27/E 30/E 311","A27/E 311/Rijksweg A27"]},{"id":"8655346658689573","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-23T03:47:14Z","end_time":"2023-11-27T15:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: onderhoudswerkzaamheden in Hoogblokland","long_description":"Onderhoudswerkzaamheden op A27 in Zuidelijke richting in Hoogblokland.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":213,"south":51.871334,"west":4.963707,"north":51.873134,"east":4.964771,"congestion":{"value":101},"geometry_index_start":883,"geometry_index_end":884,"affected_road_names":["A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/E 311/Rijksweg A27"]},{"id":"6866550843314777","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-09-02T03:07:19Z","end_time":"2026-12-31T11:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: rijbaan/rijbanen gesloten in Hoogblokland","long_description":"Rijbaan/rijbanen gesloten vanwege bouwactiviteiten op A27 in Zuidelijke richting in Hoogblokland.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":14,"south":51.871032,"west":4.963527,"north":51.87115,"east":4.963597,"congestion":{"value":101},"geometry_index_start":885,"geometry_index_end":887,"affected_road_names":["A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/E 311/Rijksweg A27"]},{"id":"15712231692642316","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-23T22:00:00Z","end_time":"2023-11-06T19:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: onderhoudswerkzaamheden tussen 21 en Knooppunt Hooipolder","long_description":"Onderhoudswerkzaamheden op A27 in Zuidelijke richting tussen 21 N283 en Knooppunt Hooipolder A59 Knooppunt Hooipolder.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":4034,"south":51.685691,"west":4.883255,"north":51.7215,"east":4.891217,"congestion":{"value":101},"geometry_index_start":1020,"geometry_index_end":1053,"affected_road_names":["A27/E 311/Rijksweg A27","A27/E 311"],"affected_road_names_nl":["A27/E 311/Rijksweg A27","A27/E 311"]},{"id":"14310720543133963","type":"construction","creation_time":"2023-10-25T09:15:30Z","start_time":"2023-10-23T22:00:00Z","end_time":"2023-11-06T19:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"Maintenance Works","long_description":"{\"table_code\":\"wegwerkzaamheden\",\"situation_id\":\"RWS01_SM906557_D2\",\"situation_record_id\":\"RWS01_M906557_MAIN_ROADWORKS_D2\",\"situation_record_type\":\"MaintenanceWorks\",\"event_types\":[[2,\"703\",\"CONSTRUCTION\",\"(Q sets of) maintenance work\"]]}","impact":"minor","sub_type":"MaintenanceWorks","sub_type_description":"treeAndVegetationCuttingWork","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":4002,"south":51.685863,"west":4.883308,"north":51.721389,"east":4.891171,"geometry_index_start":1021,"geometry_index_end":1052,"affected_road_names":["A27/E 311/Rijksweg A27","A27/E 311"],"affected_road_names_nl":["A27/E 311/Rijksweg A27","A27/E 311"]},{"id":"6555199823875070","type":"construction","creation_time":"2023-10-25T09:15:30Z","start_time":"2023-10-05T06:47:38Z","end_time":"2023-11-13T22:59:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"Maintenance Works","long_description":"{\"table_code\":\"wegwerkzaamheden\",\"situation_id\":\"RWS01_SM904536_D2\",\"situation_record_id\":\"RWS01_M904536_MAIN_ROADWORKS_D2\",\"situation_record_type\":\"MaintenanceWorks\",\"event_types\":[[2,\"703\",\"CONSTRUCTION\",\"(Q sets of) maintenance work\"]]}","impact":"minor","sub_type":"MaintenanceWorks","sub_type_description":"maintenanceWork","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":20,"south":51.651,"west":4.88222,"north":51.65118,"east":4.882234,"geometry_index_start":1076,"geometry_index_end":1077,"affected_road_names":["A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/E 311/Rijksweg A27"]},{"id":"6298355408468999","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-01-10T15:28:38Z","end_time":"2023-12-17T15:28:38Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A16: bouwactiviteiten tussen A16 en 14","long_description":"Rijbaan/rijbanen gesloten vanwege bouwactiviteiten op A16 in Zuidelijke richting tussen A16 en 14.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":202,"south":51.500656,"west":4.742561,"north":51.502445,"east":4.743015,"congestion":{"value":101},"geometry_index_start":1312,"geometry_index_end":1314,"affected_road_names":["A16/E 19"],"affected_road_names_nl":["A16/E 19"]},{"id":"12450557324438836","type":"accident","creation_time":"2023-10-25T09:16:14Z","start_time":"2023-05-29T03:11:34Z","end_time":"2023-10-25T09:35:38Z","iso_3166_1_alpha2":"BE","iso_3166_1_alpha3":"BEL","description":"A54 S/B: crash between Échangeur Thiméon E42 Échangeur Thiméon and 22 N582","long_description":"Crash on A54 Southbound between Échangeur Thiméon E42 Échangeur Thiméon and 22 N582.","impact":"low","alertc_codes":[201],"traffic_codes":{"incident_primary_code":201},"lanes_blocked":[],"length":1201,"south":50.46445,"west":4.41619,"north":50.475189,"east":4.417658,"congestion":{"value":101},"geometry_index_start":2735,"geometry_index_end":2748,"affected_road_names":["A54/E 420"],"affected_road_names_fr":["A54/E 420"]},{"id":"17421313284227019","type":"construction","creation_time":"2023-10-25T09:10:29Z","start_time":"2021-07-01T09:35:00Z","end_time":"2024-04-26T15:00:00Z","iso_3166_1_alpha2":"FR","iso_3166_1_alpha3":"FRA","description":"N51: construction entre D925 et 22 D20","long_description":"Limite de poids brut temporaire car construction sur N51 dans les deux sens entre D925 et 22 D20.","impact":"low","alertc_codes":[701,1872],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":8833,"south":49.35173,"west":4.203862,"north":49.419555,"east":4.265172,"congestion":{"value":101},"geometry_index_start":4586,"geometry_index_end":4642,"affected_road_names":["N 51/E 46/E 420"],"affected_road_names_fr":["N 51/E 46/E 420"]}],"admins":[{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"BEL","iso_3166_1":"BE"},{"iso_3166_1_alpha3":"BEL","iso_3166_1":"BE"},{"iso_3166_1_alpha3":"BEL","iso_3166_1":"BE"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"}],"via_waypoints":[]},{"notifications":[{"details":{"actual_value":"FR,DE","message":"Crossing the border of the countries of FR and DE."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":10935,"geometry_index_start":10931}],"summary":"Rue Berle, Rue Giay, Boulevard Bompard, Rue d'Endoume, Rue Joël Recher, Avenue de la Corse, Rampe Saint-Maurice, Tunnel du Vieux-Port, Tunnel de la Major, A 55, A 551, A 46, E 15, A 42, Autoroute des Titans, A 39, A 36, A 5, B 31a, Schwarzwaldstraße, B 31, A 81, B 33, E 54, A 96, Landshuter Allee, Nymphenburger Straße, Königsplatz, Karolinenplatz, Barer Straße, Prinz-Ludwig-Straße","distance":1101134,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive southwest on Rue Berle. Then Turn left onto Rue Giay.","announcement":"Drive southwest on Rue Berle. Then Turn left onto Rue Giay.","distanceAlongGeometry":10.318}],"intersections":[{"bearings":[221],"entry":[true],"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"geometry_index":0,"location":[5.360017,43.280028]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"left","text":"Boulevard Bompard"},"primary":{"components":[{"type":"text","text":"Rue Giay"}],"type":"turn","modifier":"left","text":"Rue Giay"},"distanceAlongGeometry":10.318}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive southwest on Rue Berle.","bearing_after":221,"bearing_before":0,"location":[5.360017,43.280028]},"speedLimitSign":"vienna","name":"Rue Berle","weight_typical":2.27,"duration_typical":2.162,"duration":2.162,"distance":10.318,"driving_side":"right","weight":2.27,"mode":"driving","geometry":"whrpqAaxcfIjCfD"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Boulevard Bompard.","announcement":"Turn left onto Boulevard Bompard.","distanceAlongGeometry":58.333}],"intersections":[{"bearings":[41,150],"entry":[false,true],"in":0,"turn_weight":10,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":1,"location":[5.359933,43.279958]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"left","text":"Boulevard Bompard"},"distanceAlongGeometry":64.393}],"speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Turn left onto Rue Giay.","modifier":"left","bearing_after":150,"bearing_before":221,"location":[5.359933,43.279958]},"speedLimitSign":"vienna","name":"Rue Giay","weight_typical":23.44,"duration_typical":12.8,"duration":12.8,"distance":64.393,"driving_side":"right","weight":23.44,"mode":"driving","geometry":"kdrpqAyrcfIz@Fx@c@fUc_@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":717.572},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Rue d'Endoume.","announcement":"In a quarter mile, Bear right onto Rue d'Endoume.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Rue d'Endoume.","announcement":"Bear right onto Rue d'Endoume.","distanceAlongGeometry":62.222}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[23,201,314],"duration":12.367,"turn_weight":10,"turn_duration":6.967,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":15.67,"geometry_index":4,"location":[5.360461,43.279543]},{"entry":[true,false,true],"in":1,"bearings":[32,203,313],"duration":2.413,"turn_weight":1,"turn_duration":0.013,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":3.52,"geometry_index":5,"location":[5.360589,43.279766]},{"entry":[true,false,false],"in":2,"bearings":[26,145,212],"duration":9.933,"turn_weight":1,"turn_duration":0.033,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":11.395,"geometry_index":6,"location":[5.360643,43.279828]},{"entry":[true,true,false],"in":2,"bearings":[21,110,206],"duration":6.146,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":7.426,"geometry_index":7,"location":[5.360823,43.280093]},{"entry":[false,false,true],"in":1,"bearings":[65,201,353],"duration":17.953,"turn_weight":1.5,"turn_duration":0.153,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":20.19,"geometry_index":8,"location":[5.360898,43.280238]},{"entry":[false,true,true],"in":0,"bearings":[146,221,312],"duration":4.728,"turn_weight":1.5,"turn_duration":0.048,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":6.414,"geometry_index":15,"location":[5.360467,43.280959]},{"entry":[false,true,true],"in":0,"bearings":[132,221,322],"duration":2.071,"turn_weight":1,"turn_duration":0.014,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":3.16,"geometry_index":16,"location":[5.360231,43.281113]},{"entry":[false,true,true],"in":0,"bearings":[142,272,360],"duration":11.688,"turn_weight":1.5,"turn_duration":0.088,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":13.68,"geometry_index":18,"location":[5.360142,43.281197]},{"entry":[true,true,false],"in":2,"bearings":[95,153,252],"duration":18.194,"turn_weight":1.5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":20.572,"geometry_index":26,"location":[5.360423,43.281597]},{"entry":[true,false,true],"in":1,"bearings":[80,165,345],"duration":2.347,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":3.457,"geometry_index":34,"location":[5.36113,43.282065]},{"entry":[false,true,true],"in":0,"bearings":[165,253,345],"duration":7.027,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":8.371,"geometry_index":35,"location":[5.361088,43.282177]},{"entry":[true,false,true],"in":1,"bearings":[70,165,344],"duration":6.705,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":8.02,"geometry_index":38,"location":[5.360961,43.282514]},{"entry":[false,false,true],"in":1,"bearings":[75,164,345],"duration":9.908,"turn_weight":1.4,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":11.795,"geometry_index":39,"location":[5.360742,43.283077]},{"entry":[true,false,true],"in":1,"bearings":[53,165,346],"duration":22.687,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":24.814,"geometry_index":40,"location":[5.360603,43.283457]},{"bearings":[122,164,345],"entry":[false,false,true],"in":1,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"geometry_index":43,"location":[5.360182,43.284551]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue d'Endoume"}],"type":"turn","modifier":"slight right","text":"Rue d'Endoume"},"distanceAlongGeometry":729.239}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Boulevard Bompard.","modifier":"left","bearing_after":23,"bearing_before":134,"location":[5.360461,43.279543]},"speedLimitSign":"vienna","name":"Boulevard Bompard","weight_typical":177.512,"duration_typical":151.344,"duration":151.344,"distance":729.239,"driving_side":"right","weight":177.512,"mode":"driving","geometry":"mjqpqAysdfI}L_G{BkBqOgJaHuCoDF{EvAoEdCiI~DaBfAcIrGuAzAsHvMwAxBoAv@u@TyAFkAOoAUoBaAyHqD{AoBPeEJqCj@{UCcGeCyHaCsBgBg@iDZaMdD_FrAcD|@aG`B{F|Aeb@tLwVtGsOxDgl@|PoEpAaHlB{RpFQD{Bn@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left onto Rue Joël Recher.","announcement":"In a quarter mile, Turn left onto Rue Joël Recher.","distanceAlongGeometry":312.719},{"ssmlAnnouncement":"Turn left onto Rue Joël Recher.","announcement":"Turn left onto Rue Joël Recher.","distanceAlongGeometry":53.333}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[33,101,165,238],"duration":2.351,"turn_weight":7,"turn_duration":0.159,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":9.301,"geometry_index":47,"location":[5.359979,43.285085]},{"entry":[true,false,false],"in":1,"bearings":[4,213,287],"duration":5.8,"turn_weight":1.5,"turn_duration":0.165,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":7.417,"geometry_index":48,"location":[5.360071,43.285188]},{"entry":[false,false,true],"in":1,"bearings":[82,173,351],"duration":2.995,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":4.123,"geometry_index":52,"location":[5.360055,43.285503]},{"entry":[true,false,false],"in":1,"bearings":[27,171,286],"duration":12.917,"turn_weight":1.5,"turn_duration":0.082,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":14.977,"geometry_index":54,"location":[5.360019,43.285671]},{"bearings":[83,248,341],"entry":[true,false,false],"in":1,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":60,"location":[5.360678,43.2862]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue Joël Recher"}],"type":"turn","modifier":"left","text":"Rue Joël Recher"},"distanceAlongGeometry":324.386}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Rue d'Endoume.","modifier":"slight right","bearing_after":33,"bearing_before":345,"location":[5.359979,43.285085]},"speedLimitSign":"vienna","name":"Rue d'Endoume","weight_typical":66.594,"duration_typical":51.316,"duration":51.316,"distance":324.386,"driving_side":"right","weight":66.594,"mode":"driving","geometry":"yd|pqAuucfImEwDkAc@w@ESA}MjA_Hz@o@JkA[s@]aUoU_BcCeAsDy@cF]}ECoKFqeB?}@Ca@_@cH"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn right onto Avenue de la Corse.","announcement":"In a quarter mile, Turn right onto Avenue de la Corse.","distanceAlongGeometry":318.264},{"ssmlAnnouncement":"Turn right onto Avenue de la Corse. Then Turn left onto Rampe Saint-Maurice.","announcement":"Turn right onto Avenue de la Corse. Then Turn left onto Rampe Saint-Maurice.","distanceAlongGeometry":68.333}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[76,155,262,332],"duration":9.328,"turn_weight":10,"turn_duration":6.928,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":12.58,"geometry_index":66,"location":[5.362824,43.286231]},{"entry":[false,true,true],"in":0,"bearings":[152,297,345],"duration":27.917,"turn_weight":1.5,"turn_duration":0.017,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"weight":31.492,"geometry_index":68,"location":[5.362763,43.286313]},{"entry":[true,false,false,true],"in":1,"bearings":[68,170,248,350],"duration":16.722,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":20.386,"geometry_index":73,"location":[5.362552,43.287135]},{"entry":[false,false,true,true],"in":1,"bearings":[68,170,246,350],"duration":10.627,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":13.417,"geometry_index":76,"location":[5.362412,43.287709]},{"bearings":[170,258,350],"entry":[false,false,true],"in":0,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":78,"location":[5.362289,43.288231]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"turn","modifier":"left","text":"Rampe Saint-Maurice"},"primary":{"components":[{"type":"text","text":"Avenue de la Corse"}],"type":"turn","modifier":"right","text":"Avenue de la Corse"},"distanceAlongGeometry":328.264}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rue Joël Recher.","modifier":"left","bearing_after":332,"bearing_before":82,"location":[5.362824,43.286231]},"speedLimitSign":"vienna","name":"Rue Joël Recher","weight_typical":98.418,"duration_typical":82.781,"duration":82.781,"distance":328.264,"driving_side":"right","weight":98.418,"mode":"driving","geometry":"ml~pqAogifIeCfB]PgDbASF{b@nGmBXeEn@}Cd@wVxDeFv@iEn@iYdEeC^qg@rHmBX{@LwDh@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Rampe Saint-Maurice. Then, in 600 feet, Take the exit.","announcement":"Turn left onto Rampe Saint-Maurice. Then, in 600 feet, Take the exit.","distanceAlongGeometry":125.083}],"intersections":[{"entry":[true,false,true,true],"in":1,"bearings":[77,170,258,351],"duration":16.541,"turn_weight":10.5,"turn_duration":1.814,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":26.7,"geometry_index":83,"location":[5.362078,43.289124]},{"bearings":[78,170,257],"entry":[true,false,false],"in":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":88,"location":[5.36316,43.289306]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"off ramp","modifier":"right","text":"Rampe Saint-Maurice"},"primary":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"turn","modifier":"left","text":"Rampe Saint-Maurice"},"distanceAlongGeometry":164.289}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Avenue de la Corse.","modifier":"right","bearing_after":77,"bearing_before":350,"location":[5.362078,43.289124]},"speedLimitSign":"vienna","name":"Avenue de la Corse","weight_typical":43.938,"duration_typical":32.231,"duration":32.231,"distance":164.289,"driving_side":"right","weight":43.938,"mode":"driving","geometry":"gadqqA{xgfIk@cGMsAoEoe@mAsMSwB{G_w@"},{"voiceInstructions":[{"ssmlAnnouncement":"Take the exit.","announcement":"Take the exit.","distanceAlongGeometry":82.333}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[77,258,347],"duration":7.422,"turn_weight":8.75,"turn_duration":5.622,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":10.73,"geometry_index":89,"location":[5.364056,43.289448]},{"entry":[false,false,false,true],"in":1,"bearings":[77,167,260,346],"duration":6.402,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":7.02,"geometry_index":90,"location":[5.364025,43.289545]},{"entry":[true,false,true],"in":1,"bearings":[80,166,346],"duration":6.95,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":7.811,"geometry_index":91,"location":[5.363911,43.289888]},{"entry":[true,false,true],"in":1,"bearings":[82,166,346],"duration":4.103,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.506,"geometry_index":92,"location":[5.363752,43.290363]},{"entry":[true,false,true],"in":1,"bearings":[83,166,348],"duration":0.285,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.305,"geometry_index":93,"location":[5.363652,43.290653]},{"entry":[false,true],"in":0,"bearings":[168,346],"duration":2.362,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.599,"geometry_index":94,"location":[5.363648,43.290667]},{"bearings":[166,346],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":95,"location":[5.363584,43.290854]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"off ramp","modifier":"right","text":"Rampe Saint-Maurice"},"distanceAlongGeometry":171.669}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rampe Saint-Maurice.","modifier":"left","bearing_after":347,"bearing_before":78,"location":[5.364056,43.289448]},"speedLimitSign":"vienna","name":"Rampe Saint-Maurice","weight_typical":34.584,"duration_typical":28.991,"duration":28.991,"distance":171.669,"driving_side":"right","weight":34.584,"mode":"driving","geometry":"oudqqAotkfIaE|@mTbFu\\|HcQfE[FuJ~BUFaDt@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take Tunnel du Vieux-Port.","announcement":"In a quarter mile, Keep left to take Tunnel du Vieux-Port.","distanceAlongGeometry":306.241},{"ssmlAnnouncement":"Keep left to take Tunnel du Vieux-Port.","announcement":"Keep left to take Tunnel du Vieux-Port.","distanceAlongGeometry":100}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[166,341,351],"duration":4.986,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":2,"weight":5.474,"geometry_index":97,"location":[5.363553,43.290946]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[166,347],"duration":9.333,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":10.5,"geometry_index":99,"location":[5.363435,43.291354]},{"entry":[true,false],"in":1,"bearings":[39,167],"duration":15.086,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":16.971,"geometry_index":100,"location":[5.363235,43.291969]},{"entry":[false,true,false],"in":2,"bearings":[4,194,352],"duration":5.142,"turn_weight":0.75,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":6.501,"geometry_index":116,"location":[5.363934,43.291813]},{"bearings":[10,163,351],"entry":[false,true,false],"in":0,"turn_duration":0.142,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":120,"location":[5.363747,43.291194]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Tunnel du Vieux-Port"}],"type":"fork","modifier":"left","text":"Tunnel du Vieux-Port"},"distanceAlongGeometry":330.241}],"speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit.","modifier":"slight right","bearing_after":351,"bearing_before":346,"location":[5.363553,43.290946]},"speedLimitSign":"vienna","name":"Rampe Saint-Maurice","weight_typical":49.387,"duration_typical":43.525,"duration":43.525,"distance":330.241,"driving_side":"right","weight":49.387,"mode":"driving","geometry":"csgqqAaujfIiBGeUrFme@nKcC_A{@}@s@wAa@eBWoBJeLHwBXsA^kAj@cAn@_AlA_AzA_@nBQfBHv@_@~WfGlEz@tCJpAd@`NiEhAc@bAu@r@}@f@aAXsALiAFqA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":896.143},{"ssmlAnnouncement":"In a quarter mile, Continue on Tunnel de la Major.","announcement":"In a quarter mile, Continue on Tunnel de la Major.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Continue on Tunnel de la Major for 4 miles.","announcement":"Continue on Tunnel de la Major for 4 miles.","distanceAlongGeometry":105.556}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[79,99,303],"duration":23.75,"turn_duration":0.504,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":26.151,"geometry_index":128,"location":[5.364077,43.290812]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[174,342],"duration":7.92,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":9.108,"geometry_index":142,"location":[5.366225,43.291643]},{"bearings":[132,163,340],"entry":[false,false,true],"classes":["tunnel"],"in":0,"turn_weight":14,"turn_duration":0.048,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":147,"location":[5.365636,43.292293]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Tunnel de la Major"}],"type":"turn","modifier":"straight","text":"Tunnel de la Major"},"distanceAlongGeometry":912.81}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take Tunnel du Vieux-Port.","modifier":"slight left","bearing_after":79,"bearing_before":123,"location":[5.364077,43.290812]},"speedLimitSign":"vienna","name":"Tunnel du Vieux-Port","weight_typical":91.82,"duration_typical":69.55,"duration":69.55,"distance":912.81,"driving_side":"right","weight":91.82,"mode":"driving","geometry":"wjgqqAyukfIi@qCEcCu@}OcFaz@uAoSsA{FgBaFsBgDaGyE}D_B}AWeCIiCR_Cj@eJ|CqFpDoHxG}ErGmDzGkMbFeKnFkI~EgNvKqmAtiAqXdUePfL}IxEeR|F_QfDwLrAsMOcJgBqH}B}FwCsSsN"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep left to take A 55.","announcement":"In 1 mile, Keep left to take A 55.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 55.","announcement":"In a half mile, Keep left to take A 55.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 55.","announcement":"Keep left to take A 55.","distanceAlongGeometry":160}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[23,35,209],"duration":9.487,"turn_weight":5,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":15.643,"geometry_index":163,"location":[5.363411,43.297081]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[42,218],"duration":182.8,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":205.65,"geometry_index":171,"location":[5.36411,43.297956]},{"entry":[true,true,false],"classes":["tunnel"],"in":2,"bearings":[10,18,192],"duration":7.496,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":8.598,"geometry_index":180,"location":[5.368311,43.309688]},{"entry":[true,false],"in":1,"bearings":[12,190],"duration":7.43,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":13.544,"geometry_index":181,"location":[5.368425,43.310169]},{"entry":[true,false],"in":1,"bearings":[1,186],"duration":10.916,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":17.554,"geometry_index":185,"location":[5.368645,43.311026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,341],"duration":11.109,"turn_weight":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":17.775,"geometry_index":192,"location":[5.368172,43.312664]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,326],"duration":1.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.952,"geometry_index":198,"location":[5.367176,43.314459]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[132,144,318],"duration":17.884,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":20.088,"geometry_index":200,"location":[5.36694,43.314701]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.918,"geometry_index":210,"location":[5.364063,43.317275]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,331],"duration":18.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":21.33,"geometry_index":211,"location":[5.363957,43.317405]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,195],"duration":0.288,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.324,"geometry_index":226,"location":[5.364283,43.320776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,192],"duration":10.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":12.204,"geometry_index":227,"location":[5.364299,43.320833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,331],"duration":13.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":15.498,"geometry_index":236,"location":[5.363921,43.322809]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[143,322,331],"duration":17.095,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":19.209,"geometry_index":239,"location":[5.361846,43.324897]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,312],"duration":1.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.909,"geometry_index":248,"location":[5.358887,43.326936]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,319],"duration":6.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":7.637,"geometry_index":249,"location":[5.358584,43.327136]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[140,312,332],"duration":3.925,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.286,"geometry_index":251,"location":[5.357508,43.328061]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":0.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.419,"geometry_index":253,"location":[5.3567,43.328638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,319],"duration":2.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.348,"geometry_index":254,"location":[5.356618,43.328698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,319],"duration":3.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.505,"geometry_index":257,"location":[5.356208,43.329046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,322],"duration":6.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":6.984,"geometry_index":260,"location":[5.355599,43.329572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,341],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.583,"geometry_index":267,"location":[5.354603,43.330769]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.35446,43.331072],"geometry_index":268,"admin_index":0,"weight":29.833,"is_urban":true,"turn_weight":0.5,"duration":27.297,"bearings":[142,161,347],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[121,302,307],"duration":1.195,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.306,"geometry_index":295,"location":[5.351716,43.336271]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":0.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.674,"geometry_index":296,"location":[5.351387,43.336418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":13.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":14.408,"geometry_index":297,"location":[5.351223,43.336493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":0.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.59,"geometry_index":310,"location":[5.348648,43.338801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,353],"duration":31.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":35.976,"geometry_index":311,"location":[5.348611,43.338927]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.345672,43.345989],"geometry_index":328,"admin_index":0,"weight":4.64,"is_urban":true,"turn_weight":0.5,"duration":3.607,"bearings":[145,153,334],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,343],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.774,"geometry_index":331,"location":[5.345235,43.346733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,349],"duration":3.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.764,"geometry_index":333,"location":[5.345113,43.347043]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,180],"duration":3.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":4.53,"geometry_index":336,"location":[5.345025,43.347755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,197],"duration":12.378,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":14.544,"geometry_index":339,"location":[5.345235,43.348572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,220],"duration":12.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":14.678,"geometry_index":346,"location":[5.347486,43.350755]},{"bearings":[179,353],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":355,"location":[5.348536,43.353268]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 55","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 55"}],"type":"fork","modifier":"left","text":"A 55"},"distanceAlongGeometry":7237.971}],"speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Continue on Tunnel de la Major.","modifier":"straight","bearing_after":23,"bearing_before":29,"location":[5.363411,43.297081]},"speedLimitSign":"vienna","name":"Tunnel de la Major","weight_typical":532.485,"duration_typical":454.201,"duration":454.201,"distance":7237.971,"driving_side":"right","weight":532.485,"mode":"driving","geometry":"qrsqqAeljfIiNaHmIuFoE}C{E}DgE{DyC{CsA{A{@mAkWe]w_@mk@eFsDiGcCwzA{UgwCii@_dBu\\qt@cEaeGelAa]cFs^qH}IwAiE[uCQ}OIiHVcQrBeHlBwE`BsN`FmY|JuUrIw`@dOmXnMqKvFiJxFmEjDeHlG}DhEmErFuC~DkDxFuH`N{`@br@qItLwKxLyN|L_XtSuc@`]cGrEaGrE_N|H}HnDoO~D}LbBiMb@kJKcK{@oH{AaJyBcMwEuOeHoN{G}TqJsSkFqB_@wE}@gK_AkKUoII{I^gNpAgM`CaT`HeSzJcMvIkL~K_fB|hBsNrOUVuUxYoOdS_IdMsMdU_J`P_Tzd@iNf\\oK|QqD~Egs@f{@wC~Fi^ni@wBbDaEfF_FfGuGbIgEvFaKdLqMbPyIrJ}IxIuExEmJhIuIhGcLrGcJvD}Q|GqPpDsS~BoSl@yV?c}@qAaMLmFNkGn@yGp@iEt@qEbA}F~AeErAkGhCmF`CcF|CiHtEuEzD_FrEcFpFuE|F_F`HuEvHsFpKcJrS}JjXoIfWeHpSuCfIeLh\\sKfX{JpS}GxK_GhIgGzH_KlKoIbHiKdHaLbGsMbFwMrDcCd@{FhAwYpCiNl@g\\f@mUXeV^}MZgN~@ySlCcOzCaOfEeTtIkS~Jc~@be@gSdLeTrMwn@da@kn@j`@iLbHmS`KwKbEyFzBqJvBgJjBkOfA{OCeOeAgOeBsQwFqL}F}IwEkI{GgMkLad@ck@s\\ob@sScWyIuHeKuI_ZqRaUiKiZoGcTeCmMe@mN@uELcXhCgLdBeM`DoSxH"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6261.152},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 7.","announcement":"In 2 miles, Keep right to take A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 7.","announcement":"In a half mile, Keep right to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 7 toward Marignane, Avignon.","announcement":"Keep right to take A 7 toward Marignane, Avignon.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[161,327,342],"duration":2.779,"turn_duration":0.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.277,"geometry_index":359,"location":[5.348178,43.354437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,328],"duration":25.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":30.315,"geometry_index":361,"location":[5.347787,43.354952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,334],"duration":3.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.942,"geometry_index":371,"location":[5.343614,43.359873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,332],"duration":8.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.806,"geometry_index":372,"location":[5.343171,43.360531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":3.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.276,"geometry_index":373,"location":[5.341994,43.362151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,330],"duration":2.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.836,"geometry_index":374,"location":[5.341454,43.362878]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,329],"duration":15.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":17.266,"geometry_index":375,"location":[5.341091,43.363335]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,297],"duration":1.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.411,"geometry_index":384,"location":[5.337937,43.365622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,294],"duration":6.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":7.502,"geometry_index":386,"location":[5.337608,43.365743]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[99,102,276],"duration":1.055,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":1.157,"geometry_index":390,"location":[5.335684,43.366151]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[96,274,283],"duration":10.068,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":11.304,"geometry_index":391,"location":[5.335367,43.366176]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[84,95,276],"duration":9.918,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":10.901,"geometry_index":394,"location":[5.332239,43.366348]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,300],"duration":13.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":14.814,"geometry_index":400,"location":[5.329247,43.367023]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[123,304],"duration":10.526,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.052,"geometry_index":403,"location":[5.325547,43.368748]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,313],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.685,"geometry_index":405,"location":[5.32282,43.370127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,316],"duration":8.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.784,"geometry_index":406,"location":[5.322451,43.370375]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[23,151,334],"duration":2.834,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":2.896,"geometry_index":412,"location":[5.320827,43.371941]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,339],"duration":20.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.191,"geometry_index":415,"location":[5.320441,43.372537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,336],"duration":3.483,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.396,"geometry_index":421,"location":[5.318352,43.376913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,336],"duration":6.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.952,"geometry_index":422,"location":[5.317907,43.377641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,334],"duration":8.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.992,"geometry_index":424,"location":[5.317086,43.378906]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":7.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.348,"geometry_index":426,"location":[5.315895,43.380629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,330],"duration":3.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.547,"geometry_index":427,"location":[5.314708,43.382231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,330],"duration":15.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.768,"geometry_index":429,"location":[5.314103,43.382998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,301],"duration":26.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":24.251,"geometry_index":437,"location":[5.310637,43.385613]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,321],"duration":0.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.349,"geometry_index":445,"location":[5.304042,43.389129]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,321],"duration":21.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.079,"geometry_index":446,"location":[5.303963,43.389199]},{"bearings":[153,337],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":451,"location":[5.299968,43.393134]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Marignane"},{"type":"text","text":"/"},{"type":"text","text":"Avignon"}],"type":"fork","modifier":"right","text":"Marignane / Avignon"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"right","text":"A 7"},"distanceAlongGeometry":6291.152}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 55.","modifier":"slight left","bearing_after":327,"bearing_before":341,"location":[5.348178,43.354437]},"speedLimitSign":"vienna","name":"","weight_typical":257.79,"duration_typical":248.297,"duration":248.297,"distance":6291.152,"driving_side":"right","weight":257.79,"mode":"driving","ref":"A 55","geometry":"iscuqActleIoInHuT|Mmj@vd@g@b@}y@hz@gWtV_YjVga@b[ib@|YaZxR{ZzRe\\xSch@tZgdBphAml@v`@q[tUyC|BsUjQqK|I{LvLmTnVuPxVgNxW{KrWyTjt@oAxEaDvL_Hf[wCbTuCnVaFjn@q@xRyB`eAsBtbAiBvx@sA|^qCxa@mCfXmGh_@uNdl@mEnPwG|Sgj@j{Ayv@|tBemAn|C_G|KoN`VgIpL}KvOoLdNwTxUwYjVuKxHgL~G_OzI_GfCmU`Kur@~T_s@hSm`Ab\\e]lNwr@r^ol@xZo_@zRqm@l^mqAtv@gXvQccBdiAqA|@kl@zb@qK|H}[jZaVlXgZ|_@_I`MwS|]wShc@cSrf@wRbm@m]lpAiWr`AeStk@wb@f_A}Wza@eOtSeo@nu@kC|Ci|@jdAcgA~oAye@zf@ac@r_@sd@xY_c@bToUjIySlFePlD"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take A 551.","announcement":"In a quarter mile, Keep left to take A 551.","distanceAlongGeometry":361.848},{"ssmlAnnouncement":"Keep left to take A 551 toward Marignane, Avignon.","announcement":"Keep left to take A 551 toward Marignane, Avignon.","distanceAlongGeometry":232.222}],"intersections":[{"bearings":[167,341,356],"entry":[false,true,true],"classes":["motorway"],"in":0,"turn_weight":5,"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"geometry_index":455,"location":[5.299258,43.394678]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Marignane"},{"type":"text","text":"/"},{"type":"text","text":"Avignon"}],"type":"fork","modifier":"left","text":"Marignane / Avignon"},"distanceAlongGeometry":398.515}],"destinations":"A 7: Marignane, Avignon, Lyon, Aix-en-Provence","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 7 toward Marignane/Avignon/Lyon.","modifier":"slight right","bearing_after":356,"bearing_before":347,"location":[5.299258,43.394678]},"speedLimitSign":"vienna","name":"","weight_typical":19.899,"duration_typical":15.293,"duration":15.293,"distance":398.515,"driving_side":"right","weight":19.899,"mode":"driving","ref":"A 551","geometry":"kfrwqAsbmbIsKf@_X`DyNpAajAjImr@lD{YfA}NN"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 172 miles.","announcement":"Continue for 172 miles.","distanceAlongGeometry":276604.844},{"ssmlAnnouncement":"In 1 mile, Take the A 46 exit.","announcement":"In 1 mile, Take the A 46 exit.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the A 46 exit.","announcement":"In a half mile, Take the A 46 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the A 46 exit toward Strasbourg, Paris.","announcement":"Take the A 46 exit toward Strasbourg, Paris.","distanceAlongGeometry":180}],"intersections":[{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[3,179,359],"duration":10.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":10.14,"geometry_index":462,"location":[5.298819,43.398242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,184],"duration":2.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.786,"geometry_index":465,"location":[5.298887,43.400809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.8,"geometry_index":466,"location":[5.298939,43.401504]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":2.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.728,"geometry_index":469,"location":[5.298926,43.402686]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,344],"duration":5.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.439,"geometry_index":471,"location":[5.298796,43.403324]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,325],"duration":1.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.974,"geometry_index":475,"location":[5.29816,43.404477]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.297796,43.404854],"geometry_index":476,"admin_index":0,"weight":3.495,"is_urban":false,"turn_weight":1,"duration":2.521,"bearings":[134,145,319],"out":2,"in":1,"turn_duration":0.026,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,308],"duration":5.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.154,"geometry_index":480,"location":[5.297277,43.405253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,290],"duration":1.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.437,"geometry_index":484,"location":[5.29586,43.405896]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,286],"duration":15.272,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.653,"geometry_index":485,"location":[5.295428,43.406009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,299],"duration":1.8,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":1.845,"geometry_index":493,"location":[5.290644,43.406969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,301],"duration":17.139,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":17.568,"geometry_index":494,"location":[5.290397,43.407069]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.288087,43.408103],"geometry_index":496,"admin_index":0,"weight":28.031,"is_urban":false,"turn_weight":11,"duration":16.229,"bearings":[122,125,306],"out":2,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":0.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.425,"geometry_index":502,"location":[5.28435,43.410579]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":1.147,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.233,"geometry_index":503,"location":[5.284262,43.410645]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[136,317],"duration":9.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.798,"geometry_index":504,"location":[5.284012,43.410834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,317],"duration":7.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.268,"geometry_index":505,"location":[5.282002,43.412395]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,316],"duration":2.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.06,"geometry_index":507,"location":[5.280418,43.41363]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[136,316,336],"duration":11.021,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":12.1,"geometry_index":508,"location":[5.279836,43.414073]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[132,311,325],"duration":12.848,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":14.112,"geometry_index":511,"location":[5.277397,43.415798]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,312],"duration":17.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":19.33,"geometry_index":513,"location":[5.273756,43.418127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,316],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.376,"geometry_index":519,"location":[5.26907,43.421387]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.376,"geometry_index":520,"location":[5.268984,43.421451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,318],"duration":0.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.339,"geometry_index":522,"location":[5.268901,43.421514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,318],"duration":27.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":31.464,"geometry_index":523,"location":[5.268829,43.421572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,325],"duration":1.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.577,"geometry_index":527,"location":[5.262402,43.427446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,324],"duration":39.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":46.607,"geometry_index":528,"location":[5.262107,43.427747]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.253356,43.436592],"geometry_index":531,"admin_index":0,"weight":31.549,"is_urban":true,"turn_weight":1.4,"duration":25.666,"bearings":[127,143,324],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[138,320,336],"duration":8.536,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":10.021,"geometry_index":535,"location":[5.247642,43.441627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,324],"duration":1.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.843,"geometry_index":536,"location":[5.245686,43.443301]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,318],"duration":1.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.314,"geometry_index":537,"location":[5.245362,43.44362]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,318],"duration":2.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.505,"geometry_index":538,"location":[5.2451,43.443835]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[138,322,346],"duration":20.925,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":24.053,"geometry_index":539,"location":[5.244599,43.444245]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.240564,43.44856],"geometry_index":545,"admin_index":0,"weight":79.28,"is_urban":false,"turn_weight":1,"duration":74.573,"bearings":[139,150,330],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,359],"duration":2.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.015,"geometry_index":568,"location":[5.23398,43.468262]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,179],"duration":44.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":43.193,"geometry_index":569,"location":[5.233961,43.468818]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.156,"geometry_index":578,"location":[5.240008,43.479754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":47.069,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":47.069,"geometry_index":579,"location":[5.240156,43.480054]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":1.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.817,"geometry_index":588,"location":[5.240025,43.492516]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.239952,43.493],"geometry_index":589,"admin_index":0,"weight":24.692,"is_urban":false,"turn_weight":15,"duration":9.715,"bearings":[13,174,352],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,353],"duration":0.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.3,"geometry_index":593,"location":[5.239569,43.495502]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.239555,43.495586],"geometry_index":594,"admin_index":0,"weight":1.383,"is_urban":false,"turn_weight":0.5,"duration":0.89,"bearings":[151,173,353],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":12.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.146,"geometry_index":595,"location":[5.239518,43.495818]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":15.151,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.151,"geometry_index":597,"location":[5.238841,43.49927]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,347],"duration":1.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.538,"geometry_index":601,"location":[5.237744,43.503547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":46.925,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":45.752,"geometry_index":602,"location":[5.237609,43.503958]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,329],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.137,"geometry_index":613,"location":[5.230574,43.516354]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,328],"duration":120.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":114.801,"geometry_index":614,"location":[5.230124,43.516888]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,210],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.083,"geometry_index":644,"location":[5.228584,43.545998]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":6.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.594,"geometry_index":645,"location":[5.228962,43.546529]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[18,39,202],"duration":8.154,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.726,"geometry_index":648,"location":[5.230059,43.548279]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,195],"duration":6.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.321,"geometry_index":652,"location":[5.230985,43.550449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":12.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.306,"geometry_index":655,"location":[5.231444,43.552275]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.231615,43.555883],"geometry_index":662,"admin_index":0,"weight":19.272,"is_urban":false,"turn_weight":1,"duration":19.259,"bearings":[156,176,351],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,336],"duration":14.733,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.628,"geometry_index":671,"location":[5.228835,43.560626]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.226697,43.564272],"geometry_index":676,"admin_index":0,"weight":1.771,"is_urban":false,"turn_weight":1,"duration":0.845,"bearings":[147,160,333],"out":2,"in":0,"turn_duration":0.012,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,333],"duration":6.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.444,"geometry_index":677,"location":[5.226557,43.564473]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,321],"duration":20.548,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.493,"geometry_index":680,"location":[5.225275,43.566101]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[126,309],"duration":3.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.859,"geometry_index":687,"location":[5.217909,43.570033]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,314],"duration":71.308,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":62.394,"geometry_index":688,"location":[5.216767,43.570701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":0.526,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.474,"geometry_index":712,"location":[5.197095,43.588236]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[113,290,304],"duration":17.433,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.669,"geometry_index":713,"location":[5.196882,43.588302]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,284],"duration":0.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.642,"geometry_index":716,"location":[5.19021,43.589715]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,285],"duration":4.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.441,"geometry_index":717,"location":[5.189935,43.589766]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,285],"duration":0.687,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.619,"geometry_index":718,"location":[5.188031,43.590147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,285],"duration":9.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.925,"geometry_index":719,"location":[5.187778,43.590197]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.184179,43.590965],"geometry_index":721,"admin_index":0,"weight":6.79,"is_urban":false,"turn_weight":1,"duration":6.441,"bearings":[101,107,289],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,291],"duration":0.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.314,"geometry_index":723,"location":[5.181908,43.591521]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,292],"duration":4.544,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.089,"geometry_index":724,"location":[5.181787,43.591555]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,297],"duration":0.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.298,"geometry_index":727,"location":[5.180291,43.591985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,297],"duration":11.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.786,"geometry_index":728,"location":[5.180212,43.592014]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[23,122,301],"duration":5.899,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":5.292,"geometry_index":731,"location":[5.177525,43.593177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,295],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.756,"geometry_index":732,"location":[5.177008,43.5934]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.17693,43.593426],"geometry_index":733,"admin_index":0,"weight":16.215,"is_urban":false,"toll_collection":{"name":"Péage de Lançon","type":"toll_booth"},"turn_weight":15,"duration":1.35,"bearings":[115,294],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,295],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.782,"geometry_index":734,"location":[5.176857,43.59345]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[115,296,334],"duration":15.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.986,"geometry_index":735,"location":[5.176489,43.593577]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[99,112,292],"duration":5.541,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":4.968,"geometry_index":738,"location":[5.17351,43.594451]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,283],"duration":115.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":106.845,"geometry_index":739,"location":[5.172454,43.594766]},{"entry":[false,false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[86,142,267,321],"duration":30.733,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":3,"weight":29.946,"geometry_index":761,"location":[5.139727,43.616991]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,321],"duration":3.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.632,"geometry_index":763,"location":[5.132381,43.623633]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[141,323,346],"duration":0.916,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.908,"geometry_index":764,"location":[5.131512,43.624421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,321],"duration":4.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.703,"geometry_index":765,"location":[5.131306,43.624622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,322],"duration":0.97,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.97,"geometry_index":766,"location":[5.130163,43.62563]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,322],"duration":9.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.497,"geometry_index":767,"location":[5.129928,43.62585]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.127576,43.628006],"geometry_index":768,"admin_index":0,"weight":1.956,"is_urban":false,"turn_weight":1,"duration":0.976,"bearings":[139,142,319],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,321],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.316,"geometry_index":769,"location":[5.127333,43.628211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,322],"duration":61.505,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":63.043,"geometry_index":770,"location":[5.126755,43.628732]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,342],"duration":1.365,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.434,"geometry_index":782,"location":[5.1133,43.643878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":12.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.434,"geometry_index":783,"location":[5.113127,43.644253]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,337],"duration":1.169,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.198,"geometry_index":786,"location":[5.11124,43.647581]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,336],"duration":38.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":38.632,"geometry_index":787,"location":[5.111056,43.647895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,327],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.271,"geometry_index":795,"location":[5.103379,43.657918]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,330],"duration":11.837,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.541,"geometry_index":796,"location":[5.103093,43.658234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.100617,43.661227],"geometry_index":799,"admin_index":0,"weight":71.762,"is_urban":false,"turn_weight":0.5,"duration":77.049,"bearings":[131,149,332],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":2.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.836,"geometry_index":811,"location":[5.095907,43.674102]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":19.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.28,"geometry_index":812,"location":[5.095838,43.674709]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":2.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.214,"geometry_index":818,"location":[5.095699,43.68045]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[2,21,182],"duration":41.434,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.274,"geometry_index":819,"location":[5.095731,43.681184]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.097219,43.693417],"geometry_index":828,"admin_index":0,"weight":43.481,"is_urban":false,"turn_weight":1,"duration":45.933,"bearings":[10,180,189],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,358],"duration":5.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.897,"geometry_index":835,"location":[5.09888,43.701333]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,351],"duration":40.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.106,"geometry_index":837,"location":[5.098749,43.702903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,334],"duration":0.544,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.504,"geometry_index":848,"location":[5.095514,43.709469]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,335],"duration":39.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":35.586,"geometry_index":849,"location":[5.095416,43.709612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":0.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.744,"geometry_index":860,"location":[5.090443,43.72095]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":65.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":60.301,"geometry_index":861,"location":[5.090388,43.7212]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,347],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.249,"geometry_index":880,"location":[5.087845,43.740583]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.327,"geometry_index":881,"location":[5.087725,43.740949]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.071,"geometry_index":882,"location":[5.087695,43.741041]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.279,"geometry_index":883,"location":[5.087593,43.741355]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[10,167,347],"duration":3.288,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":3.186,"geometry_index":884,"location":[5.087471,43.741729]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":2.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.566,"geometry_index":885,"location":[5.087169,43.74267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":1.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.404,"geometry_index":886,"location":[5.086926,43.743427]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":4.054,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.952,"geometry_index":887,"location":[5.086794,43.743844]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.08641,43.745011],"geometry_index":888,"admin_index":0,"weight":8.807,"is_urban":false,"turn_weight":0.5,"duration":8.541,"bearings":[145,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,346],"duration":0.739,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.72,"geometry_index":889,"location":[5.085605,43.747495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,347],"duration":31.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":31.151,"geometry_index":890,"location":[5.085531,43.747705]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[153,333,336],"duration":21.401,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.324,"geometry_index":898,"location":[5.081361,43.75676]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.076887,43.762414],"geometry_index":905,"admin_index":0,"weight":110.104,"is_urban":false,"turn_weight":1,"duration":114.865,"bearings":[144,147,325],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,326],"duration":1.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.379,"geometry_index":926,"location":[5.045657,43.789029]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[146,325],"duration":73.47,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":71.633,"geometry_index":927,"location":[5.045323,43.789388]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[158,335,346],"duration":13.113,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.091,"geometry_index":952,"location":[5.037531,43.810202]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.035078,43.813737],"geometry_index":955,"admin_index":0,"weight":7.596,"is_urban":false,"turn_weight":0.5,"duration":6.944,"bearings":[142,151,330],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,329],"duration":42.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":43.996,"geometry_index":957,"location":[5.033525,43.815679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[132,311],"duration":7.069,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.246,"geometry_index":971,"location":[5.022565,43.82707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[123,303],"duration":25.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":25.32,"geometry_index":975,"location":[5.020432,43.828244]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,290],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.819,"geometry_index":983,"location":[5.013322,43.830652]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[110,291],"duration":3.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.12,"geometry_index":984,"location":[5.013077,43.830718]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.012139,43.830973],"geometry_index":985,"admin_index":0,"weight":19.608,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.647,"bearings":[111,291,301],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.006375,43.833011],"geometry_index":993,"admin_index":0,"weight":4.946,"is_urban":false,"turn_weight":1,"duration":4.162,"bearings":[115,121,302],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[123,305],"duration":221.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":210.541,"geometry_index":995,"location":[5.004801,43.833732]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[110,289],"duration":0.138,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.135,"geometry_index":1060,"location":[4.931509,43.878443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,292],"duration":2.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.295,"geometry_index":1061,"location":[4.931446,43.878459]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,296],"duration":0.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.837,"geometry_index":1063,"location":[4.930474,43.878762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.93013,43.878885],"geometry_index":1064,"admin_index":0,"weight":16.551,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.984,"bearings":[116,298,310],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.92482,43.882727],"geometry_index":1074,"admin_index":0,"weight":7.262,"is_urban":false,"turn_weight":1.1,"duration":6.328,"bearings":[144,151,333],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,340],"duration":18.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.953,"geometry_index":1077,"location":[4.924037,43.884025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":16.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.504,"geometry_index":1083,"location":[4.922083,43.889442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,332],"duration":2.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.66,"geometry_index":1090,"location":[4.920665,43.892943]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[152,329,349],"duration":11.246,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.662,"geometry_index":1091,"location":[4.920257,43.893501]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[134,313],"duration":4.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.512,"geometry_index":1098,"location":[4.917281,43.896039]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.915867,43.897017],"geometry_index":1101,"admin_index":0,"weight":7.996,"is_urban":false,"turn_weight":0.5,"duration":7.911,"bearings":[122,136,316],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,330],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.296,"geometry_index":1109,"location":[4.913855,43.898876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":161.588,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":161.58,"geometry_index":1117,"location":[4.912619,43.900988]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.188,"geometry_index":1154,"location":[4.90998,43.948966]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,335],"duration":80.751,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":88.826,"geometry_index":1155,"location":[4.909652,43.949499]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,344],"duration":0.946,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.064,"geometry_index":1165,"location":[4.895608,43.973593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":4.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":5.071,"geometry_index":1166,"location":[4.895502,43.973857]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":1.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.268,"geometry_index":1167,"location":[4.895015,43.975106]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":20.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":23.573,"geometry_index":1168,"location":[4.894895,43.975413]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[158,164,344],"duration":14.794,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":17.005,"geometry_index":1169,"location":[4.892602,43.981306]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":27.431,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":31.546,"geometry_index":1170,"location":[4.890887,43.985599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,347],"duration":1.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.001,"geometry_index":1175,"location":[4.887669,43.993547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,350],"duration":39.868,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":44.851,"geometry_index":1176,"location":[4.887502,43.994055]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,189],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.846,"geometry_index":1185,"location":[4.889328,44.005966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":8.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.994,"geometry_index":1186,"location":[4.889381,44.006187]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,189],"duration":0.185,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.203,"geometry_index":1188,"location":[4.889927,44.00856]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,188],"duration":34.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":37.293,"geometry_index":1189,"location":[4.889938,44.008615]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.175,"geometry_index":1199,"location":[4.889459,44.018993]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[6,172,349],"duration":27.854,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":29.919,"geometry_index":1200,"location":[4.889342,44.019598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.88771,44.027777],"geometry_index":1208,"admin_index":0,"weight":7.895,"is_urban":true,"turn_weight":1,"duration":6.438,"bearings":[160,171,346],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,344],"duration":0.985,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.059,"geometry_index":1211,"location":[4.886932,44.029593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":8.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.6,"geometry_index":1212,"location":[4.88682,44.029868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,342],"duration":0.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.937,"geometry_index":1214,"location":[4.885737,44.032192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":11.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.777,"geometry_index":1215,"location":[4.885625,44.032437]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,349],"duration":2.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.28,"geometry_index":1221,"location":[4.884283,44.035679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,358],"duration":21.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.294,"geometry_index":1223,"location":[4.884142,44.036331]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":1.159,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.188,"geometry_index":1233,"location":[4.886166,44.042592]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,204],"duration":51.397,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.112,"geometry_index":1234,"location":[4.886357,44.042906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":88.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":86.076,"geometry_index":1249,"location":[4.887738,44.059366]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,345],"duration":1.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.717,"geometry_index":1274,"location":[4.8779,44.087043]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,343],"duration":86.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":84.726,"geometry_index":1275,"location":[4.877697,44.087583]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[120,298],"duration":9.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.076,"geometry_index":1304,"location":[4.851905,44.108192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,284],"duration":3.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.375,"geometry_index":1310,"location":[4.847918,44.109356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,282],"duration":0.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.432,"geometry_index":1312,"location":[4.846397,44.109611]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[102,281,298],"duration":13.29,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.951,"geometry_index":1313,"location":[4.846204,44.109641]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.840937,44.110326],"geometry_index":1317,"admin_index":0,"weight":17.45,"is_urban":false,"turn_weight":0.5,"duration":16.969,"bearings":[82,101,280],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":3.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.18,"geometry_index":1320,"location":[4.833977,44.11122]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280,287],"duration":18.45,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.442,"geometry_index":1321,"location":[4.832667,44.111388]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.824972,44.112381],"geometry_index":1325,"admin_index":0,"weight":11.302,"is_urban":false,"turn_weight":1,"duration":10.31,"bearings":[86,100,280],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":0.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.946,"geometry_index":1326,"location":[4.820643,44.112938]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,281],"duration":74.567,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":76.431,"geometry_index":1327,"location":[4.820273,44.112984]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,319],"duration":0.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.96,"geometry_index":1355,"location":[4.795664,44.12599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,318],"duration":2.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.51,"geometry_index":1356,"location":[4.795403,44.126202]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[138,319,327],"duration":25.327,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":25.952,"geometry_index":1357,"location":[4.794731,44.126746]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[69,139,319],"duration":16.192,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":16.185,"geometry_index":1361,"location":[4.787686,44.13248]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.783279,44.136098],"geometry_index":1366,"admin_index":0,"weight":31.949,"is_urban":false,"turn_weight":1,"duration":31.75,"bearings":[134,140,319],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,335],"duration":9.579,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.34,"geometry_index":1380,"location":[4.77705,44.143988]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":10.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.713,"geometry_index":1385,"location":[4.775663,44.146551]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,341],"duration":3.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.96,"geometry_index":1388,"location":[4.774197,44.149527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":15.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.948,"geometry_index":1390,"location":[4.773809,44.150354]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.56,"geometry_index":1395,"location":[4.771728,44.15466]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":45.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":43.936,"geometry_index":1396,"location":[4.77165,44.154819]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332],"duration":12.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.662,"geometry_index":1410,"location":[4.763904,44.166595]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332],"duration":38.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.279,"geometry_index":1411,"location":[4.761531,44.169844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332],"duration":1.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.422,"geometry_index":1423,"location":[4.754344,44.179636]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332,338],"duration":66.856,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":63.507,"geometry_index":1424,"location":[4.754069,44.180009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[124,304],"duration":58.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":53.664,"geometry_index":1463,"location":[4.734049,44.195878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":0.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.154,"geometry_index":1514,"location":[4.723956,44.211952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,348],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.049,"geometry_index":1515,"location":[4.72394,44.212009]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.723714,44.212708],"geometry_index":1517,"admin_index":0,"weight":16.189,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.522,"bearings":[7,166,344],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.720227,44.217768],"geometry_index":1531,"admin_index":0,"weight":6.375,"is_urban":false,"turn_weight":1,"duration":5.833,"bearings":[101,145,323],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,321],"duration":51.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.789,"geometry_index":1535,"location":[4.718822,44.219084]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,338],"duration":0.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.884,"geometry_index":1557,"location":[4.708644,44.2317]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,340],"duration":60.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":57.873,"geometry_index":1558,"location":[4.708506,44.231951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,205],"duration":1.597,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.557,"geometry_index":1587,"location":[4.71003,44.249028]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,206],"duration":20.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.568,"geometry_index":1588,"location":[4.710317,44.249442]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":2.003,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.903,"geometry_index":1592,"location":[4.714146,44.254681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":15.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.476,"geometry_index":1593,"location":[4.714518,44.255186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,208],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.841,"geometry_index":1596,"location":[4.717374,44.259094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,207],"duration":123.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":123.785,"geometry_index":1597,"location":[4.717741,44.259599]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,210],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.231,"geometry_index":1628,"location":[4.743746,44.290486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,211],"duration":2.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":2.58,"geometry_index":1629,"location":[4.743793,44.290543]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.74427,44.291152],"geometry_index":1630,"admin_index":0,"weight":22.477,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.429,"bearings":[26,46,209],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.746664,44.297824],"geometry_index":1648,"admin_index":0,"weight":6.283,"is_urban":false,"turn_weight":0.7,"duration":5.339,"bearings":[2,177,184],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":75.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":75.489,"geometry_index":1651,"location":[4.746754,44.299549]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":3.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.97,"geometry_index":1686,"location":[4.739908,44.323176]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,354],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.297,"geometry_index":1688,"location":[4.739728,44.324151]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[14,174,355],"duration":14.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":13.704,"geometry_index":1689,"location":[4.739712,44.324252]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.739185,44.328269],"geometry_index":1693,"admin_index":1,"weight":6.454,"is_urban":false,"turn_weight":1,"duration":5.601,"bearings":[144,175,355],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":69.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":68.202,"geometry_index":1695,"location":[4.73894,44.330079]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,358],"duration":4.569,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.448,"geometry_index":1712,"location":[4.737829,44.352745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.977,"geometry_index":1714,"location":[4.737735,44.354061]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,356],"duration":99.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":94.562,"geometry_index":1715,"location":[4.737711,44.354348]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":101.313,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":96.228,"geometry_index":1741,"location":[4.731602,44.383048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":1.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.994,"geometry_index":1773,"location":[4.730627,44.412453]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":38.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":35.625,"geometry_index":1774,"location":[4.730714,44.412755]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":1.251,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.157,"geometry_index":1787,"location":[4.735805,44.423263]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":14.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.781,"geometry_index":1788,"location":[4.736033,44.423596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,215],"duration":16.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.829,"geometry_index":1793,"location":[4.739516,44.427738]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,218],"duration":6.591,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.932,"geometry_index":1797,"location":[4.744026,44.432004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,218],"duration":61.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":55.529,"geometry_index":1799,"location":[4.745876,44.433681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,195],"duration":0.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.174,"geometry_index":1820,"location":[4.755426,44.452279]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,194],"duration":2.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.119,"geometry_index":1821,"location":[4.755447,44.452337]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":0.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.623,"geometry_index":1823,"location":[4.755728,44.453078]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.755813,44.453295],"geometry_index":1824,"admin_index":1,"weight":11.716,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.025,"bearings":[17,51,196],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.757355,44.456762],"geometry_index":1829,"admin_index":1,"weight":6.782,"is_urban":false,"turn_weight":1,"duration":6.432,"bearings":[20,186,199],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,201],"duration":7.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.804,"geometry_index":1832,"location":[4.758365,44.458713]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":49.901,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":44.912,"geometry_index":1835,"location":[4.759666,44.460986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":0.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.666,"geometry_index":1855,"location":[4.766724,44.476244]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,184],"duration":2.077,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.921,"geometry_index":1856,"location":[4.766744,44.476474]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.76679,44.477151],"geometry_index":1857,"admin_index":1,"weight":11.756,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.716,"bearings":[3,31,183],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.766933,44.480796],"geometry_index":1861,"admin_index":1,"weight":8.423,"is_urban":false,"turn_weight":0.5,"duration":8.584,"bearings":[1,166,182],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,181],"duration":104.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":97.058,"geometry_index":1863,"location":[4.766998,44.483273]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":1.366,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.263,"geometry_index":1901,"location":[4.777156,44.511918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,222],"duration":2.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.125,"geometry_index":1902,"location":[4.777529,44.512215]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.778178,44.512697],"geometry_index":1903,"admin_index":1,"weight":29.681,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.094,"bearings":[44,69,224],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.787837,44.518803],"geometry_index":1916,"admin_index":1,"weight":7.604,"is_urban":false,"turn_weight":1,"duration":7.158,"bearings":[48,211,229],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":61.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":57.315,"geometry_index":1919,"location":[4.789994,44.52024]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,201],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.956,"geometry_index":1939,"location":[4.803664,44.535482]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,200],"duration":33.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.986,"geometry_index":1940,"location":[4.803806,44.535763]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":3.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.003,"geometry_index":1951,"location":[4.808048,44.545152]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":5.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.894,"geometry_index":1952,"location":[4.808401,44.54602]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,196],"duration":0.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.878,"geometry_index":1953,"location":[4.808974,44.547454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":29.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.383,"geometry_index":1954,"location":[4.809072,44.547708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":94.627,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":89.876,"geometry_index":1966,"location":[4.811339,44.556262]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,342],"duration":1.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.398,"geometry_index":1997,"location":[4.803906,44.583439]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,342],"duration":11.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.879,"geometry_index":1998,"location":[4.803725,44.583837]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":0.993,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.943,"geometry_index":2000,"location":[4.802302,44.586995]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":2.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.998,"geometry_index":2001,"location":[4.802171,44.587269]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":0.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.484,"geometry_index":2002,"location":[4.801901,44.587832]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":2.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.028,"geometry_index":2003,"location":[4.801834,44.58797]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.801561,44.588535],"geometry_index":2004,"admin_index":1,"weight":4.867,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.13,"bearings":[8,161,340],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,340],"duration":7.228,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.866,"geometry_index":2008,"location":[4.800767,44.590096]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.79959,44.592286],"geometry_index":2011,"admin_index":1,"weight":7.545,"is_urban":false,"turn_weight":1,"duration":6.909,"bearings":[139,159,338],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,338],"duration":155.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":143.85,"geometry_index":2014,"location":[4.798549,44.594141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":1.583,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.424,"geometry_index":2063,"location":[4.791896,44.638607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,359],"duration":3.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.405,"geometry_index":2064,"location":[4.791873,44.639066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,180],"duration":0.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.423,"geometry_index":2066,"location":[4.791859,44.64018]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,181],"duration":1.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.354,"geometry_index":2067,"location":[4.791861,44.640317]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.791866,44.640751],"geometry_index":2068,"admin_index":1,"weight":12.921,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.977,"bearings":[1,32,180],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.792245,44.644822],"geometry_index":2074,"admin_index":1,"weight":8.144,"is_urban":false,"turn_weight":1,"duration":7.73,"bearings":[7,166,186],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,189],"duration":0.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.512,"geometry_index":2078,"location":[4.7927,44.647053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":64.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":59.655,"geometry_index":2079,"location":[4.792741,44.647214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":0.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.797,"geometry_index":2097,"location":[4.796968,44.665762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":2.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.619,"geometry_index":2098,"location":[4.796991,44.666013]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.797066,44.666835],"geometry_index":2099,"admin_index":1,"weight":12.918,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.985,"bearings":[3,24,184],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.797417,44.670868],"geometry_index":2101,"admin_index":1,"weight":1.456,"is_urban":false,"turn_weight":0.5,"duration":1.052,"bearings":[3,160,184],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":9.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.526,"geometry_index":2102,"location":[4.797438,44.671146]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":77.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.083,"geometry_index":2105,"location":[4.797654,44.673806]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,344],"duration":0.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.54,"geometry_index":2136,"location":[4.789105,44.69514]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":15.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.975,"geometry_index":2137,"location":[4.789043,44.695293]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,349],"duration":0.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.718,"geometry_index":2144,"location":[4.787698,44.699601]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":15.563,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.396,"geometry_index":2146,"location":[4.787638,44.699825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":3.137,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.895,"geometry_index":2150,"location":[4.786355,44.704788]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":34.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":31.917,"geometry_index":2152,"location":[4.786116,44.705793]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,184],"duration":0.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.41,"geometry_index":2169,"location":[4.78544,44.71695]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,185],"duration":2.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.947,"geometry_index":2170,"location":[4.785457,44.717091]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.785538,44.71777],"geometry_index":2171,"admin_index":1,"weight":27.132,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.34,"bearings":[5,32,185],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.787,44.726114],"geometry_index":2184,"admin_index":1,"weight":7.375,"is_urban":false,"turn_weight":1,"duration":6.9,"bearings":[14,175,193],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,196],"duration":40.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":37.341,"geometry_index":2187,"location":[4.787755,44.728051]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":1.878,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.784,"geometry_index":2206,"location":[4.789485,44.739661]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":20.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.94,"geometry_index":2207,"location":[4.789414,44.740196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,185],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.812,"geometry_index":2216,"location":[4.789285,44.746369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,186],"duration":37.169,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":35.311,"geometry_index":2217,"location":[4.789324,44.746622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.432,"geometry_index":2232,"location":[4.793834,44.756949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":1.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.082,"geometry_index":2233,"location":[4.794051,44.757359]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":1.323,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.257,"geometry_index":2234,"location":[4.794219,44.757672]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.794415,44.758036],"geometry_index":2235,"admin_index":1,"weight":7.673,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.083,"bearings":[21,51,201],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.795593,44.7602],"geometry_index":2238,"admin_index":1,"weight":8.754,"is_urban":false,"turn_weight":1,"duration":8.17,"bearings":[22,182,200],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":5.71,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.425,"geometry_index":2241,"location":[4.796801,44.762397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":1.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.96,"geometry_index":2244,"location":[4.797644,44.763936]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":7.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.717,"geometry_index":2245,"location":[4.797796,44.764205]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":6.548,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.057,"geometry_index":2248,"location":[4.798907,44.766151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":58.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":54.134,"geometry_index":2249,"location":[4.799976,44.767887]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":1.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.011,"geometry_index":2271,"location":[4.815857,44.780225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":12.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.102,"geometry_index":2272,"location":[4.816242,44.780354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":0.993,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.943,"geometry_index":2276,"location":[4.821139,44.781675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":25.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.636,"geometry_index":2277,"location":[4.821529,44.781767]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,237],"duration":0.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.446,"geometry_index":2286,"location":[4.831328,44.784851]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":3.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.975,"geometry_index":2287,"location":[4.831485,44.784928]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.832514,44.785444],"geometry_index":2289,"admin_index":1,"weight":14.13,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.513,"bearings":[52,83,234],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.836853,44.788335],"geometry_index":2296,"admin_index":1,"weight":6.76,"is_urban":false,"turn_weight":1,"duration":5.93,"bearings":[40,193,222],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":179.169,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":170.211,"geometry_index":2300,"location":[4.838347,44.789694]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,190],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.71,"geometry_index":2343,"location":[4.863149,44.838248]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":74.437,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.576,"geometry_index":2344,"location":[4.863265,44.838767]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":0.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.471,"geometry_index":2361,"location":[4.866553,44.862709]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":2.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.049,"geometry_index":2362,"location":[4.866524,44.862864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.277,"geometry_index":2364,"location":[4.866408,44.863528]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.866394,44.863614],"geometry_index":2365,"admin_index":1,"weight":19.33,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.351,"bearings":[11,173,351],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.865199,44.868901],"geometry_index":2369,"admin_index":1,"weight":7.908,"is_urban":false,"turn_weight":1,"duration":6.915,"bearings":[156,173,353],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":29.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":29.189,"geometry_index":2372,"location":[4.864949,44.870807]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":0.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.924,"geometry_index":2384,"location":[4.865993,44.878829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,194],"duration":7.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.359,"geometry_index":2385,"location":[4.866082,44.879086]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.707,"geometry_index":2388,"location":[4.866892,44.881078]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":49.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":49.572,"geometry_index":2389,"location":[4.866969,44.881258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,197],"duration":25.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.423,"geometry_index":2400,"location":[4.87301,44.89456]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":2.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.708,"geometry_index":2409,"location":[4.875443,44.901505]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,190],"duration":0.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.218,"geometry_index":2410,"location":[4.875627,44.90226]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.87564,44.902317],"geometry_index":2411,"admin_index":1,"weight":6.079,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.098,"bearings":[9,14,189],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":13.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.721,"geometry_index":2412,"location":[4.875989,44.903902]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.876825,44.907479],"geometry_index":2415,"admin_index":1,"weight":3.993,"is_urban":false,"turn_weight":0.75,"duration":3.183,"bearings":[8,187,189],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.826,"geometry_index":2416,"location":[4.876984,44.908251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":1.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.528,"geometry_index":2417,"location":[4.87707,44.90869]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,188],"duration":18.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.572,"geometry_index":2418,"location":[4.877142,44.909059]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":46.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":50.438,"geometry_index":2425,"location":[4.877509,44.913165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":17.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":18.712,"geometry_index":2439,"location":[4.878343,44.923698]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,210],"duration":3.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":3.961,"geometry_index":2446,"location":[4.880845,44.927121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":6.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":7.343,"geometry_index":2447,"location":[4.881422,44.927813]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":54.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":61.507,"geometry_index":2449,"location":[4.882488,44.929091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":21.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":23.721,"geometry_index":2467,"location":[4.889727,44.940095]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":69.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":74.551,"geometry_index":2474,"location":[4.890655,44.944826]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,343],"duration":1.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.148,"geometry_index":2499,"location":[4.886698,44.960176]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,342],"duration":9.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.553,"geometry_index":2500,"location":[4.886597,44.960417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,336],"duration":10.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.07,"geometry_index":2504,"location":[4.885558,44.962375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":20.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":20.52,"geometry_index":2509,"location":[4.884547,44.964678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":3.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.701,"geometry_index":2519,"location":[4.885362,44.969218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":5.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.345,"geometry_index":2520,"location":[4.885551,44.969856]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.885807,44.97072],"geometry_index":2521,"admin_index":1,"weight":9,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.007,"bearings":[11,42,192],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,183],"duration":1.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.61,"geometry_index":2526,"location":[4.886082,44.972321]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,360],"duration":4.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.089,"geometry_index":2527,"location":[4.886086,44.97263]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.88603,44.973459],"geometry_index":2530,"admin_index":1,"weight":9.737,"is_urban":false,"turn_weight":0.5,"duration":9.494,"bearings":[139,175,354],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,340],"duration":5.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.025,"geometry_index":2535,"location":[4.88536,44.975644]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,340],"duration":10.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.612,"geometry_index":2538,"location":[4.884768,44.976796]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,342],"duration":0.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.665,"geometry_index":2541,"location":[4.883621,44.979049]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,342],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.375,"geometry_index":2542,"location":[4.88354,44.979227]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,345],"duration":1.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.991,"geometry_index":2545,"location":[4.883256,44.979873]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346],"duration":0.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.784,"geometry_index":2546,"location":[4.883151,44.980142]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,346],"duration":35.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.416,"geometry_index":2547,"location":[4.883077,44.980357]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,345],"duration":1.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.004,"geometry_index":2561,"location":[4.881632,44.989844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,344],"duration":28.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.003,"geometry_index":2562,"location":[4.881528,44.990124]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,343],"duration":6.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.3,"geometry_index":2572,"location":[4.877291,44.997699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,349],"duration":2.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.228,"geometry_index":2575,"location":[4.876617,44.999524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":0.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.894,"geometry_index":2576,"location":[4.876442,45.000147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":55.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":52.935,"geometry_index":2577,"location":[4.87637,45.000407]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,356],"duration":1.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.273,"geometry_index":2594,"location":[4.875979,45.016081]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,355],"duration":2.612,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.547,"geometry_index":2595,"location":[4.875939,45.016448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.875854,45.017178],"geometry_index":2597,"admin_index":1,"weight":26.331,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.724,"bearings":[15,175,355],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.875096,45.024974],"geometry_index":2607,"admin_index":1,"weight":9.051,"is_urban":false,"turn_weight":1,"duration":8.482,"bearings":[155,179,360],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,181],"duration":28.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.178,"geometry_index":2610,"location":[4.875121,45.02736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":6.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.902,"geometry_index":2621,"location":[4.876556,45.035353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":16.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.354,"geometry_index":2623,"location":[4.877104,45.037063]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,186],"duration":81.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":77.843,"geometry_index":2628,"location":[4.878258,45.041667]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,334],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.262,"geometry_index":2650,"location":[4.874083,45.064399]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.873681,45.064971],"geometry_index":2651,"admin_index":1,"weight":7.104,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.125,"bearings":[154,331,358],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.872263,45.066707],"geometry_index":2655,"admin_index":1,"weight":1.637,"is_urban":false,"turn_weight":1,"duration":0.656,"bearings":[117,148,327],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,326],"duration":1.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.103,"geometry_index":2656,"location":[4.872125,45.066859]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[146,325],"duration":9.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.113,"geometry_index":2657,"location":[4.871883,45.06711]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,334],"duration":27.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.049,"geometry_index":2662,"location":[4.869964,45.06924]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":3.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.13,"geometry_index":2679,"location":[4.86951,45.07651]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.870027,45.077316],"geometry_index":2681,"admin_index":1,"weight":14.009,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.376,"bearings":[28,56,206],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.873544,45.080544],"geometry_index":2688,"admin_index":1,"weight":11.997,"is_urban":false,"turn_weight":1,"duration":11.595,"bearings":[41,191,222],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,210],"duration":73.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":68.291,"geometry_index":2694,"location":[4.876656,45.083582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":38.991,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.066,"geometry_index":2730,"location":[4.882981,45.106351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,216],"duration":2.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.907,"geometry_index":2742,"location":[4.893098,45.116756]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":4.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.936,"geometry_index":2744,"location":[4.893552,45.117222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,209],"duration":1.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.147,"geometry_index":2747,"location":[4.894394,45.118223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":19.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.982,"geometry_index":2749,"location":[4.894578,45.118471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":9.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.658,"geometry_index":2756,"location":[4.896456,45.122607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":49.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":45.843,"geometry_index":2760,"location":[4.896684,45.124696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":66.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":61.79,"geometry_index":2773,"location":[4.893605,45.135593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.304,"geometry_index":2795,"location":[4.888239,45.149979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.648,"geometry_index":2796,"location":[4.888242,45.150051]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.888288,45.150914],"geometry_index":2797,"admin_index":1,"weight":13.988,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.744,"bearings":[2,23,182],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.888505,45.154985],"geometry_index":2800,"admin_index":1,"weight":11.999,"is_urban":false,"turn_weight":1,"duration":11.597,"bearings":[2,163,182],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":4.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.375,"geometry_index":2804,"location":[4.888679,45.158189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,182],"duration":0.884,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.84,"geometry_index":2805,"location":[4.888751,45.159462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":61.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":58.14,"geometry_index":2806,"location":[4.888767,45.1597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,333],"duration":8.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.949,"geometry_index":2828,"location":[4.886517,45.176341]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,328],"duration":1.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.343,"geometry_index":2833,"location":[4.884842,45.178336]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,329],"duration":17.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.309,"geometry_index":2834,"location":[4.884561,45.178658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,351],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.33,"geometry_index":2843,"location":[4.882308,45.182957]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,350],"duration":92.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":85.618,"geometry_index":2844,"location":[4.882225,45.183332]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,345],"duration":21.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.224,"geometry_index":2887,"location":[4.877022,45.202892]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,315],"duration":11.381,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.224,"geometry_index":2898,"location":[4.873789,45.207051]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,299],"duration":5.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.958,"geometry_index":2904,"location":[4.870942,45.20862]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":1.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.332,"geometry_index":2907,"location":[4.869413,45.209152]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,295],"duration":39.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":36.112,"geometry_index":2908,"location":[4.868993,45.209285]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":86.288,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":79.809,"geometry_index":2927,"location":[4.861232,45.215712]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,340],"duration":26.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.272,"geometry_index":2955,"location":[4.848848,45.232746]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,335],"duration":1.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.93,"geometry_index":2961,"location":[4.845926,45.238268]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,333],"duration":22.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.18,"geometry_index":2962,"location":[4.84576,45.23852]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[135,317],"duration":1.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.302,"geometry_index":2974,"location":[4.839784,45.243189]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,320],"duration":12.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.609,"geometry_index":2975,"location":[4.839414,45.243471]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,336],"duration":41.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":37.975,"geometry_index":2982,"location":[4.836778,45.246322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,187],"duration":56.166,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":51.936,"geometry_index":3000,"location":[4.836099,45.257296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,328],"duration":0.231,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.22,"geometry_index":3024,"location":[4.831613,45.271812]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,328],"duration":3.401,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.231,"geometry_index":3025,"location":[4.831565,45.271866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.830866,45.272654],"geometry_index":3026,"admin_index":1,"weight":27.835,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.319,"bearings":[148,327,348],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.824864,45.279329],"geometry_index":3031,"admin_index":1,"weight":8.93,"is_urban":false,"turn_weight":1,"duration":8.141,"bearings":[144,148,328],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,335],"duration":56.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":54.697,"geometry_index":3036,"location":[4.823273,45.281212]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,344],"duration":1.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.105,"geometry_index":3071,"location":[4.823617,45.295996]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,340],"duration":12.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.381,"geometry_index":3073,"location":[4.823496,45.296289]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,319],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.397,"geometry_index":3083,"location":[4.821139,45.29933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,318],"duration":23.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":23.314,"geometry_index":3084,"location":[4.820781,45.299621]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,328],"duration":24.646,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.022,"geometry_index":3095,"location":[4.814689,45.304494]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":1.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.148,"geometry_index":3111,"location":[4.811786,45.3108]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,359],"duration":18.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.028,"geometry_index":3112,"location":[4.811761,45.311121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":2.94,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.86,"geometry_index":3118,"location":[4.812046,45.316193]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":8.297,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.083,"geometry_index":3120,"location":[4.812105,45.316979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,181],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.29,"geometry_index":3124,"location":[4.812238,45.31923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,182],"duration":3.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.252,"geometry_index":3125,"location":[4.812241,45.319308]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.812262,45.320219],"geometry_index":3127,"admin_index":1,"weight":13.589,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.958,"bearings":[0,24,181],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[162,178,357],"duration":6.294,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":6.129,"geometry_index":3133,"location":[4.81217,45.324008]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,355],"duration":39.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":38.637,"geometry_index":3136,"location":[4.812007,45.326043]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":1.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.599,"geometry_index":3152,"location":[4.80927,45.338739]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":35.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":34.752,"geometry_index":3153,"location":[4.809142,45.339192]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[75,169,349],"duration":58.475,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":58.468,"geometry_index":3159,"location":[4.806493,45.348888]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,193],"duration":9.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.555,"geometry_index":3181,"location":[4.807179,45.365043]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":1.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.354,"geometry_index":3183,"location":[4.807975,45.367589]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":5.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.396,"geometry_index":3184,"location":[4.808083,45.367939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,182],"duration":0.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.671,"geometry_index":3189,"location":[4.808363,45.369313]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":5.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.621,"geometry_index":3190,"location":[4.808365,45.369495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,341],"duration":32.501,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.313,"geometry_index":3195,"location":[4.808075,45.370938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":45.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":45.6,"geometry_index":3217,"location":[4.804997,45.378983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,195],"duration":12.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.078,"geometry_index":3245,"location":[4.806566,45.391512]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,205],"duration":35.034,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.4,"geometry_index":3252,"location":[4.808333,45.394806]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":20.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.26,"geometry_index":3263,"location":[4.815822,45.402952]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":3.12,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.88,"geometry_index":3267,"location":[4.820378,45.40775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,214],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.68,"geometry_index":3269,"location":[4.821059,45.408469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,213],"duration":0.876,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.81,"geometry_index":3270,"location":[4.821452,45.408886]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.821643,45.409088],"geometry_index":3271,"admin_index":1,"weight":14.518,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.701,"bearings":[34,63,214],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.825185,45.412795],"geometry_index":3275,"admin_index":1,"weight":7.775,"is_urban":false,"turn_weight":1,"duration":7.346,"bearings":[32,189,214],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,205],"duration":2.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.433,"geometry_index":3280,"location":[4.826627,45.414633]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,201],"duration":32.106,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.681,"geometry_index":3282,"location":[4.827036,45.415334]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,338],"duration":1.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.285,"geometry_index":3306,"location":[4.826625,45.424294]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,340],"duration":20.606,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.062,"geometry_index":3307,"location":[4.826411,45.424662]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,354],"duration":0.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.854,"geometry_index":3318,"location":[4.82399,45.430362]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,356],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.915,"geometry_index":3319,"location":[4.823954,45.43062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.767,"geometry_index":3320,"location":[4.823894,45.431206]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,360],"duration":44.474,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":40.026,"geometry_index":3321,"location":[4.823878,45.431438]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":69.986,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":64.73,"geometry_index":3340,"location":[4.827642,45.44559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,182],"duration":2.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.236,"geometry_index":3364,"location":[4.833359,45.467895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,359],"duration":2.266,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.131,"geometry_index":3365,"location":[4.833383,45.468656]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,359],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.311,"geometry_index":3366,"location":[4.833361,45.469383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,358],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.272,"geometry_index":3367,"location":[4.833358,45.469474]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,357],"duration":1.587,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.508,"geometry_index":3369,"location":[4.833328,45.47027]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":0.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.342,"geometry_index":3370,"location":[4.833304,45.470635]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":6.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.574,"geometry_index":3371,"location":[4.833299,45.470715]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":5.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.382,"geometry_index":3373,"location":[4.833193,45.472271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,185],"duration":4.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.373,"geometry_index":3376,"location":[4.833217,45.473127]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,187],"duration":8.085,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.479,"geometry_index":3377,"location":[4.833337,45.473822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,195],"duration":6.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.568,"geometry_index":3379,"location":[4.833743,45.475016]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.8338,45.475927],"geometry_index":3381,"admin_index":1,"weight":17.729,"is_urban":false,"toll_collection":{"name":"Péage de Vienne","type":"toll_booth"},"turn_weight":15,"duration":2.951,"bearings":[180,355],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,354],"duration":14.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.624,"geometry_index":3382,"location":[4.833741,45.476371]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[21,172,352],"duration":5.878,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":5.578,"geometry_index":3384,"location":[4.833393,45.478538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.833364,45.479766],"geometry_index":3387,"admin_index":1,"weight":2.954,"is_urban":false,"turn_weight":1,"duration":2.065,"bearings":[5,153,183],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,185],"duration":5.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.187,"geometry_index":3388,"location":[4.833419,45.480235]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":1.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.653,"geometry_index":3390,"location":[4.833858,45.481439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":5.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.409,"geometry_index":3391,"location":[4.834017,45.481822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":56.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.743,"geometry_index":3393,"location":[4.834563,45.483161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,222],"duration":3.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.734,"geometry_index":3435,"location":[4.83759,45.495558]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,212],"duration":1.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.728,"geometry_index":3438,"location":[4.838406,45.496324]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,205],"duration":0.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.286,"geometry_index":3440,"location":[4.838701,45.496722]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.074,"geometry_index":3441,"location":[4.838741,45.496791]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.838887,45.497042],"geometry_index":3443,"admin_index":1,"weight":4.632,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.772,"bearings":[19,41,202],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,187],"duration":15.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.09,"geometry_index":3448,"location":[4.839254,45.498157]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":5.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.464,"geometry_index":3453,"location":[4.839079,45.501895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,186],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.27,"geometry_index":3458,"location":[4.839096,45.503252]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,198],"duration":1.563,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.524,"geometry_index":3462,"location":[4.839465,45.504274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,204],"duration":1.272,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.241,"geometry_index":3464,"location":[4.839684,45.504627]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,209],"duration":3.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.066,"geometry_index":3466,"location":[4.839894,45.504907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,218],"duration":2.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.27,"geometry_index":3469,"location":[4.84051,45.505516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,225],"duration":16.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.238,"geometry_index":3472,"location":[4.841067,45.505935]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.845535,45.508554],"geometry_index":3487,"admin_index":1,"weight":10.144,"is_urban":false,"turn_weight":0.5,"duration":9.897,"bearings":[35,190,215],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":59.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":59.891,"geometry_index":3492,"location":[4.847487,45.510575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,190],"duration":64.42,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":64.412,"geometry_index":3531,"location":[4.859617,45.521465]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,343],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.073,"geometry_index":3572,"location":[4.857033,45.53688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,344],"duration":1.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.553,"geometry_index":3573,"location":[4.856918,45.537148]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":15.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.134,"geometry_index":3574,"location":[4.856757,45.537531]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,332],"duration":6.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.563,"geometry_index":3579,"location":[4.855048,45.541229]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[133,311],"duration":26.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.966,"geometry_index":3587,"location":[4.853608,45.542553]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,287],"duration":5.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.369,"geometry_index":3616,"location":[4.844643,45.54349]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.842773,45.544005],"geometry_index":3621,"admin_index":1,"weight":7.511,"is_urban":false,"turn_weight":0.5,"duration":7.388,"bearings":[94,114,296],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,301],"duration":11.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.218,"geometry_index":3625,"location":[4.840451,45.544865]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.429,"geometry_index":3632,"location":[4.837001,45.546552]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,311],"duration":77.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":73.223,"geometry_index":3636,"location":[4.835687,45.547318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,332],"duration":18.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.393,"geometry_index":3664,"location":[4.819576,45.562786]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,337],"duration":17.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.28,"geometry_index":3676,"location":[4.816959,45.567114]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,319],"duration":12.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.528,"geometry_index":3688,"location":[4.813773,45.570779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,306],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.398,"geometry_index":3700,"location":[4.810501,45.572902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[124,303],"duration":0.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.591,"geometry_index":3702,"location":[4.809822,45.573235]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[123,303,315],"duration":18.23,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.679,"geometry_index":3703,"location":[4.80965,45.573313]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,328],"duration":0.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.716,"geometry_index":3716,"location":[4.805062,45.576283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[148,328],"duration":6.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.788,"geometry_index":3717,"location":[4.804932,45.576428]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":9.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.47,"geometry_index":3724,"location":[4.803903,45.57783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":3.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.896,"geometry_index":3728,"location":[4.802706,45.579847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,339],"duration":4.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.674,"geometry_index":3729,"location":[4.802235,45.58068]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":6.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.319,"geometry_index":3731,"location":[4.801623,45.581824]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":5.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.292,"geometry_index":3734,"location":[4.800705,45.583631]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[161,341],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":3737,"location":[4.80018,45.584703]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Paris"}],"type":"off ramp","modifier":"right","text":"Strasbourg / Paris"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 46","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 46"}],"type":"off ramp","modifier":"right","text":"A 46"},"distanceAlongGeometry":276641.5},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Paris"}],"type":"off ramp","modifier":"right","text":"Strasbourg / Paris"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 46","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 46"}],"type":"off ramp","modifier":"right","text":"A 46"},"distanceAlongGeometry":1609.344}],"destinations":"Marignane, Avignon, Lyon, A 7","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 551 toward Marignane/Avignon/Lyon.","modifier":"slight left","bearing_after":359,"bearing_before":359,"location":[5.298819,43.398242]},"speedLimitSign":"vienna","name":"","weight_typical":8657.599,"duration_typical":8839.225,"duration":8839.225,"distance":276641.5,"driving_side":"right","weight":8657.599,"mode":"driving","ref":"A 551","geometry":"ceywqAeglbIcbA`Amr@mA{h@{Bmj@gBkj@m@gRZgJj@sTjBgQvCiXtHcLjEmMpHeRbMqVvUaDnDuExGmGpJwCpEwMxXgHvQ}HnVgEnSaF~Y_@|BqEj_@mE`g@sEjo@yJ~nAyFv^gIpb@oH|YgElNeYzz@me@nsAyHzQwPl^gZ~i@i\\pi@_\\ni@sh@dv@cCnDyJrNq`Br|BwhAn}AmBnCuZjc@iZpc@u_AvzAyNbWkwAxhCex@vxA}CvFw]nm@]l@k{@|zAkiAjdBk_@zj@_CjDuArBg@p@sBnCsn@bz@kpBpdCqnAtpAq}Bh~ByQlQ}iGdeGoaFp}Ekz@d}@oaAfbAqgArpAurBbeC}z@biAsgBfyB}RfSmLjOsXh^st@vw@w`Av_A{FxFeeA|_Auh@z`@q]`W}f@z^ec@zXyb@rWcx@zc@a\\lPg`@`Rcg@|TSHgr@vXudAh^co@pRiWbH{]~IgoA`Xq{@~Ngc@dGyXnCksBbTkrBhQkUnBcgCzSomAxKk~@jEwa@d@oeAmE_nBoZwxA}i@akAkm@}mBe_BewBeaByf@kXsc@{Ss[aMwQgHmLsEaw@_Rs_@sHqc@qGiu@gGa`AgBarBbBgdHnj@ooBzOg]pCoLrAg~@xHyv@vGyVvAgDZoMhAg}@bJoxCd^gHz@od@|FqvBr\\_dBb\\uXlGe{@rR}mAl[_lAr`@qkAtb@y}@|_@sz@r`@meAbj@i_A`i@or@rc@y|AdeAqnAv~@k`@b[epAhfAkvAnmAo{AjtAqnBrgBysBdrBmtBpkBg|@xn@cj@hYaZrMg[rLqZ~Icl@fNq^zFm`@lDmm@lCux@{@s\\eBgW_Cgr@}J{aAuXcl@kUwi@kYck@w]kd@s]{nAqfAup@kp@qeBilBs`CqdCuaAo{@eh@q_@e`@sVgz@}f@m_@yQuPyHoEsAyd@aRyc@_Oou@eSyn@oMsa@cGu^aEgI_AgcAkIod@eAid@cAeVf@iUlAuYhA{[`Eu]hJyZdKy\\|Os`@dTco@`c@ug@v^wg@~YaOfJyRfKuf@vVguAdn@maAdc@uNfMqKvGij@b]cd@j\\iTrSgTrVg_@|i@yRr^iQ|^iOv_@adBlbFwc@`eAwh@jfAsZbf@e[tc@m[n^k[b\\gm@jh@ceAlt@w}BjyAgzBlwAkAt@i{BdxA}zAvgAal@ph@{j@~k@ay@beAgw@rkAub@fx@in@zrAuSzh@_Rfg@cL~^iQrl@{Pfo@wMjm@iG~YcChLaKtl@__@~nCgk@hbFeBdPyV~uBcBxNcR~~A{[|_Cg`@dgCo@vDcApFoEpUcJze@gH`_@y@|C}Ovl@yb@pmA}Rrj@}Lh_@s@zCo@pC}F~UaHdYm\\xhBcOdu@uR~`A}YtaD_RbbB{Mv|@}QrfAe{@rzD}XjfAkg@pdBmi@zyA}e@xfA_h@`cAwi@d}@wt@veAkv@t~@qgAngAadAh}@uoFjeEo{A|lAcoA`jAql@vl@iaAlaAi`BrhBmoCh}CwsGvqHkiCjwCgp@hu@qKzK_~@lfAwLtMweC~qCyKdNq_@bc@suIfwJa{@|}@ku@xu@kcAd}@}cAvx@yqAjz@gx@tc@iHtDij@n\\}nAjp@of@jXcg@~SmVxI}m@pUy_Ahe@g_B`x@sRnJ}d@nVwq@`_@sn@n^iq@pb@eq@~d@qdBppAccBzpA}zDvzCwRzPmb@j[mUnQe`CzjB{t@jg@yp@dc@gw@ta@gu@`^}{@z\\m{@jZOF{l@bP_aAtR_fAhOmvAdNieEfY}d@hC}y@vEim@tBcd@p@yrAl@{x@m@wiAiB{l@_AaxAsCygCsFabCcGs{AqIy_AoHuh@kFmaAoLo}AwSqn@}IegFkz@i|@mN_{@uM_c@gEk_@sCsa@}Age@Okb@h@w}@zEoa@dF{V|DoYtF{[nIub@~Mea@|Nwz@n_@mo@jYa@P{qAdx@sa@hV}GbE_m@n\\iq@x\\gn@pZqoA~k@ahAvc@eiAh`@apBxj@iz@pRev@`Pwz@|O}p@nJsNlBgk@jH_s@hHem@lFkj@hD_p@jDiu@pBqz@fBerBpAs`CNsvAbD_~@fBeeAxEwp@~D__A~Ia~@nMmhArRqObDog@vHyxA`^{UnFwDz@sRjEkVrFyy@zQin@dNaYfG}gA~VgzChq@cLrCuoBxc@yw@bScq@pRuu@nV}q@|UixA~k@stAdn@w`Anl@sr@vc@wo@bb@wv@lh@co@xe@}g@pb@caAbu@ai@xd@svCvoCoaBxcBkzAb~AyiBjuB_}AtpBqxAdlBudAdvAwLrPqkAhcBaiA~bBwpFjnIkW`a@oVn_@k}@rrAwb@rl@cd@tl@_l@lu@cu@b{@}{@j`AacChbCooAtkAmUzSs[zZmo@jl@mq@vm@sk@~e@mm@fc@ia@dWg`@`Sch@fUu_@|Nid@vMgo@lNks@vJqq@tFsq@pBey@b@_mB_AyhA`Aa_AnCiTnBmo@bJy}@nNk|@rTez@`WwjAnd@{aAbd@{qBliAoq@zc@qv@~h@}_Afr@mw@xl@obBlrAcz@zo@mpApcAchBhvAm_Azu@}q@zk@qo@xl@_T`TgWhXs^na@m^fd@g^dg@a]nh@e`@lr@oEbIi\\bq@y\\vw@wFhOeO|`@eMj_@cPnh@iOrj@cKhb@yMrk@gSlbAof@ppCcChN}Nry@_Ibc@wK|k@{Ldk@sMpj@qLjd@gOxi@wZtcAqQpi@gRbj@yXfv@q_@p`Aid@heAue@jbAen@tmAeo@lhA{o@hdA}k@|y@yv@fdAys@f{@yn@zq@yf@pe@gp@ti@ko@fd@it@tc@w~@le@ikBp{@adAbf@q_Afg@}g@d[gj@pa@uR|Ooe@hc@ce@bg@y`@zf@gb@`k@i[pd@ucBtoCui@f}@ok@|}@{g@zt@cj@`t@so@lu@en@xo@odBf_BaxAvqAk}A~`Bud@nj@}]zf@oR|Xab@bt@yt@rzA}g@~oA}_@nhAwcAneDs{BltHi~Bb{Hub@xxAua@~{A}g@~uBkb@roBcTtfAi[niB_QbfAoMl~@oJ~t@_MrdAuK|cAqHnv@}Gfw@yJ`pA_LrsA}H`w@yH`n@{DrW_E|U_@|BoHd_@mHp[uFnTaI~XaK`[uUrm@oZno@a]lk@}^~g@gZn\\c[~YeYjUgWjQeIfFqd@xVk`@zPoh@rSwp@lUqx@~Ugo@|Ouw@`PysA`U_~@`Oon@hNe\\zJqXxKwUdKuUlMcG|D{a@nXqOxLcTnRqWjXoVtZiWv\\aa@vo@oMbTgMzSg_@xn@sMtRyHdLkNzR}NbR}IpKuLxMaLpKeU`TeNpKmO~KwNjJyR~KkNnH_QlHeM|EuOtFwNhE{UfGwQtD}PpCgSrB}SlBwPj@}Uh@kREuRe@qNu@oR{AwPgBoYgEyb@uGokAyQ{bAuOy{@_NsVcDwmFiz@kd@aGe`@_D}^w@g`@Zq}@fEicEzUanNtx@c~@hFutO||@c}@xEalNzv@i^rCg]bFu\\|H{YjIsYbKs^`OkPtIi`@nSa_FzoCgqH~gEmhOpsI]Rip@j^kVrJsRtGag@lOg~DxhAq`Cvo@oOrEamAl]eRnFioJhnCikGdjBieH~uBm}@vWkr@nUakAh]qKpCw^lIiYtEs^`Ege@pB}b@Ac`@gBq\\oCsb@}Eu}I{mAibDyc@yLiBgkBwXag@kGmBU}JoAgrCq`@gn@yD{\\K{[N{]|Bkj@dEcpE|i@opA~MqQrByd@hFuKnBee@tEqm@hG{}@lKwe@jEetBfVglBnTutA|R{^dJef@xOmi@rSeP~Ea_AzZepAxf@iN~E}{@x\\}[jKoc@hOu]`KeUjFkV|DuOnCaWhCuGNse@`Aad@Yo^cCwa@wEc^_H{`@wKwYcJqw@s]k{A{t@sR}J}g@{U{UaLmj@uToe@gPq`@qKsd@sKa\\oFw\\gEec@{B_f@oBex@YmaA`BqwH~Pq|C`HasApD}j@rAcbA|EwUdBm^lEac@pFi`@vIcn@~O{a@vNw_@dOisA|m@st@z[if@zRcTfH_]zKchA`[{sA~^guAx]aiG|aB{`E~eAcpA|\\e|Ax^{[`H_a@nIm_A|SgqCpn@w`@tKys@tUA?qC~@eVfJkc@dRsl@zZqr@jd@qb@fZ}h@|a@o`A|w@kkAneAoh@jh@c^d^_`AnfAwYz^uZpb@gZve@gW~c@g\\bp@_Sd`@ci@vfAma@nx@mp@voAa\\zk@yzH~iN_Wtj@o\\hx@yNp`@oT~r@{Jv]}Qtv@aEbSwJpf@uMvy@mHhk@yF~i@cG`s@{@`K_HnaAoHflAgKt~AaKvxAoVjvDaGx}@iWx{DoIzpAyIhtAgHreAiZ~sEuM~nBya@pmG{AbVcAvMcJvwAgJp{AsHlcAoJ|cAoJdt@gMhy@}N~t@eQdu@cUby@uOff@k[py@_]nv@eO~YgN~Vep@beA{_@fi@w`@jg@u`@|g@}c@|l@eg@lp@_c@fk@sl@`w@}Ud[wj@bv@i\\xa@}K~Nq`D~eEgLhO_a@~h@gq@p|@acDvhE}mBhgCc`@tg@}Wt]gl@zv@}o@f{@uc@jl@ieAfrA{]hd@eV`YmLdMgMlMmN~MqOzN{^lZyWhRyXxQmf@~Y{aAdl@odC~xAg^~SyXtPq^fS}W~Ms\\vNk`@dOug@nRyy@lZo{@l]uaAv`@sj@pSaGtBscCf_Aw[xL}XbK__@rNyp@fW}HzCc`Cx|@am@~UeStI}NhHkR~JeOpIq]hT}_@tUseAbt@iiAbu@gmAhx@cpArz@az@`j@g}@nl@ajEhsCszAzbAgNvIca@tXkt@lf@w|ArcAmoAzy@oI|Fko@fb@if@z[ye@h[edBvhAgDxBiVdPgeApr@wx@pj@s]bWuYtTyZdViYpU_VnSkUhSad@za@e^p]eSnSqQbRyQtRyX|Zia@be@y`@`f@g\\nb@u_@dg@u@`A}\\nf@gUp\\sZbe@{Yne@qZpg@aZhh@cTh`@mSz_@wMnW_MpV{S|b@yInRwInRgJpSqIrRqMvZ_\\xw@}Z|w@mf@lqAyOfb@iV|o@_Xvq@mXjp@oQfa@mYfm@aXdh@cQnZ{Ub`@gOvTmP|TyW`\\qJvK}InJmSdSeSnQ}P|MyKbIsNzJcOjJsPfJcPtIgM`GaLxE_VfJiV|HgLdDgNjDiU`FsKjBqLjBgMbB}LrAmMfAoMt@cWbAsSTeSPsb@Qw`@a@ex@_AgXUgVReUZkQp@_Ox@eTtAeXlC}U`D}N~BiJdBC@qB^_V`FuS`FiZbJsWtIMDi\\vMa^zOyOlI{QhKaTpM_U`OoXbSgXdTyVlTiR`Q{]b]_KlKuStT_Y|ZqVvX}\\da@_\\|_@}TjXsu@r}@mu@z{@s`@pb@q]f^g`@x^_ShQyZfW_]zWyb@tZ_]zTk^pT{\\hR_a@vSuo@f[w[tNm`@dQayAzn@qH`Dwr@xZuNrGe_@lOsFnBgc@|O}`@zLq_@zJia@|Hoc@lGqj@hF}[zAk\\p@of@?}]y@}a@sBeb@aDkb@aEurAqNy}@mJk^uDqO_BcbAkKqj@sGwc@uG_o@qLu]}Iy]qK_f@gQka@uQo^eR{R{K{X}Pag@u[uz@{j@wvBawA}jBumAq^gVozB_yAa}@el@uy@ij@q^}Uev@eg@mk@i_@aXiQ}sAm}@oxBsxAsfBujAeoCohBgrCyjBkqBurA}]uUc]oU}w@gi@ys@mg@um@kc@{_BopAuo@cj@qn@kk@}l@ik@}|@i|@}oAypAelAqmAsh@wi@yE_Fa`@q`@o~@y_Ao|@s}@}wAgzAgx@{v@of@ob@}SaPCAqB}Aae@y\\mU_NyU_Nga@mSo_@mP}[}LoUyHaWuHuQ{EQEgS{EiRwDiSmDkVqDeVwC_PuAmPyAm]qB}e@yBi\\q@i^y@en@gAmPYgUq@{eAuBk~@kBq]gAk|@cBuw@iBo\\k@u\\Mq^h@i^x@q]`Ba]`Ds]hEkh@dJ{d@|Kog@~O{Br@cYpKgY~Lih@hVedBl|@qgB|~@_lAfl@}fAne@{e@pR}^|Mqn@dSoc@hMki@bNsh@|Kua@|Hak@rI_j@|GeG|@cRlCyh@xEiE^{`@hCo{@bGclBtMqn@xDg|@dG{r@bFgbAbHarCdQ_lBzIob@bBseA~DsdAxCa@@slBvDqxBpCsxAv@i_CJupCS}|B@mwA`@}KJar@p@ij@jAeNZabA~C}Pn@cfApFcfA|GmnApKmgAjLk~@dLaiAjPaV`E{e@bIcfA~RkbAlRqcAbV}sAbZotB|c@wyA`Zw[|F}b@~G}}@nMyo@zH{t@rHcu@dHy_AzHk`AfI{`CrRooB`PmiBlOqc@pDodBlNsyB|Qc|CbVct@rGwwAhLqeCnS{qChUulAjI}n@zD}m@~Cs_@`Bqg@zAsd@dAmd@x@}b@Xka@Nio@Wki@m@}e@y@}s@uBed@gBue@aC{XiB_h@uD}z@qHkc@qEie@uFcs@yJyp@aKiZeFq\\gGkVuE{QmDcy@gQ}aAkVo~@eWyg@yOsj@wQol@oSmi@qSg`Au`@{d@ySuk@uXak@qY{w@sc@an@k_@ySgMu_Aao@e]wVwh@{a@ygAy}@mp@eo@siAshA{r@}t@{mAiuAg|@_cAui@_o@c}@sbAcfAogA_gAg`AibAyv@oUcPaP}KgMwIab@sW}aAaj@}y@ca@kdAub@ee@qPed@sNw{@aVcaA}Ty`A{RaaAcRg{AeZuwAyZgqAiZ{a@gKsb@gLsBi@a[mIgQcFqLiDiy@iWs\\uK_a@eNak@kSuq@yVgq@sXmf@iSg_@ePwbAsd@ge@aUac@sToGcDotA}r@ahBecAQKseBsbA}`Bw|@ckAmi@sh@_Tuu@oWem@{Qyk@eO{ZeHw~@}Qkk@oI}\\sE}ZcDqa@yDu\\qBeY{AuDOkMg@ii@{AgIUyp@mAeuAsAqpAeB_`Aq@yxAoAwt@iAyw@cAeeE_Fu|AuCut@}@ip@Lwq@c@g`AaAejAyB}v@_Cyy@{E_i@_Eel@gGoo@cJul@mLcp@sMai@wLmd@mMqh@sPqg@iQi`@qOs[yMyb@wRsVyL{r@m_@st@}c@gw@_j@aYqTqXwSm^}Ym`@a]yX}Wgn@ao@g[}\\u]}a@aSwVg]md@{CcEqQiVc]qg@}PmW_Sq[qRk[_Um`@{Wyd@u[uk@m]wo@ym@wkAg`@ov@_Xmh@a}@geB_]eo@_To`@yX_g@uX}e@ie@{v@cSg[yXqb@y]_h@aa@}j@{a@yj@cw@oaAqv@{|@ajAkmAciAyfAqcAg}@kkAk}@uj@}`@kd@cZsl@}^oj@q\\ul@o]}_@gSe`@cSgr@c\\{bAac@qP{GkUcJeQqH{OkGqq@sWkt@aXqt@_XeuBkt@u|@oZwy@eXwpAaa@or@gTgu@aUsxAyb@{NcEumAa]qlAi[cp@{Oyl@wMok@sKgk@}Ian@wH{f@mE}_@wCqWwAwb@iBoMc@ef@{@cl@Yye@B{d@j@a_AfB{aAfDm_AzEgl@hDqt@rFk|@xHak@tFcc@tEch@tGoo@~Ico@vJuj@dJuy@jOqp@zMsj@xLek@xM}_@jJs\\tIqp@~Qop@lR}h@hPap@fTsy@dYoz@rYijBno@wkB`p@ohCh|@{WhJuwAhg@ukBro@cPdGeb@zOsGdCib@`P{g@jSga@nPIDcUpJk`@jP}k@bWqy@`_@gr@n[s_@lQa_@bQk{@ha@uhAhg@}t@pZio@nVcp@lUmq@lTmo@bRol@`Pqh@|Lun@jNqi@tKmz@pO{o@|Jss@~J}i@~GcNzAec@vEg`@zDib@pDuf@vDgk@xDsh@zCks@|Cok@tBud@tAol@fAor@~@wt@b@i|@Ru}@Gwo@Oor@Wul@Ogd@Sql@E_fAA_n@Jmm@Rch@Ti[Ryr@z@qdAfAe`AxAmz@bBawBlFasAjEiwC|L_nCvMyuCvJu[l@qe@Va^BqGCcZIcq@y@sd@aA_p@eCwj@wCoc@}Cmd@}Du^mDy\\sD_e@_G}f@kHaIqAoa@yG{b@}Hei@wK_z@qR}f@kLetBgf@_sBec@}sAkWwrAoTc{@_Mkb@iFa`@iEwaAoJwqAyJklAmHajA}Fm}@uD}s@mCuNm@kr@uCkgBuGurCgLkPi@gh@oBmm@{BqmAcEis@_Dc`@sAk]cAai@{@_b@]oc@Vii@vAm_@hB}a@~Cs`@zDcj@zHsf@zIyf@|Kan@zPko@dTap@xWqm@hY}d@jWy`@rUm_@zUgoAdz@epAzz@q_Azk@mt@hb@wi@|Xag@bVg_@pPcb@`Qw_@~N_k@dSoc@hNqHzB{v@bTef@|K{a@hJ{`@|H{j@bKo_@`Ha\\pFaDh@}GlAw|@`OubBbYiaBhXmq@tKs_@zFe]`FkT~Cm|@jKs_ApJeu@|F{g@bDiZbBqYhAap@tBuf@z@gs@r@w}@Eyp@m@ko@sAue@uAqAEyXeA}^aByGa@mi@aDad@iCmb@mCaq@uEqn@oE}{@iG{g@yD{g@wDm\\{Cyh@yFmp@uIg_@_HuTgEaa@}Iq`@aKs]_K{w@cV{k@aRw_@sL{s@eTu{@oT}m@iMym@aKed@{Fsb@yDuZwBiIg@k_@aB}[_Asb@k@s]@e]Ze^r@c\\jAqi@pCgdAfHm`@lCqkAzGyaAtE{d@|@kg@l@ya@Ga_@[ob@sAcXqAuc@qCyNmA_f@kF{d@oGcy@}Nai@}Lwb@kLud@gNmi@{Q}w@e[mg@aTqrBu}@kM{FqWeLaq@qZuf@iU{IwDsXqLqRoIwUgKiu@_]as@q[{[aNsUwKcn@{XqbA{c@sc@{Ro^cPa[uNyOoHoq@o[un@aZmV{LokByaAme@yW_B_AaJgF}aAko@{|@an@yu@ol@k{@gu@qu@}t@i\\y]mb@yf@of@wn@ye@wq@ea@mo@_h@s}@gVce@_Yel@gSed@s_@y_A{Twm@}`@umAsVk|@gSax@aGaWuLaj@_Qu|@kUksAo[}sBwDkWoZ_qBk[wqBuXm{A_Mam@}Muk@kUs{@eNge@qTar@cVqq@yCyHmLiZyQ_d@yXam@_[wm@yTya@_W}b@ia@yn@cVa]sVw\\mN_QwJsLaYw[u^_`@uTqTk[mYgv@ip@iu@mm@ov@sm@}v@qn@qXsTss@ok@}i@oc@cj@gc@}qAseAcs@ok@sz@kq@yx@gp@sn@og@wg@ka@qd@s^_}@ar@g`Air@{z@ik@yk@a^ul@u]obAwh@m|@qb@a~@q`@sdAma@owBot@}gDueAyfCat@uy@oSua@iJ{t@iOsfAsT}lAwPajCaa@s`Fgv@gpCwb@sqByZusBg[qh@eIwnAeRot@mKoj@sIm_@gFkjBcWohFur@osDuf@m`Cq[_yAuRcdCm[woAgNgi@qEyoAuHqcAaDyeA}@cdAh@a{@bCsUx@mk@`Due@nDik@jFuHx@yT`CuRdBkDZy_BnUyoB|YinArPoh@rFcYnCqk@fEmo@zCa]hAyb@n@ij@Lmj@c@e^y@gl@cCmd@wC_s@oGqt@iJsw@oMmk@kLg[_IaOqDui@_Oox@yViWyIgJyC{d@qO_l@sSaeA{^amAsb@m}DquAwhCq}@ku@qW}c@}OmqBks@uh@}QwW}IykAsb@sfAi\\qj@uO}p@}Okd@eK}f@oJ_gAcRoa@uGiG_Aen@oJqBYabByTg_@cFam@iJgpCy`@go@}HmZkDaVoCqDc@_k@kF}u@mFkt@}Cg_@s@{c@Us\\FwXFgr@fAmcBnG_fB`Iqq@xBoo@Vg_@{@oZaBmq@_Hce@uHys@kQ_e@yNkc@_QiB}@sq@u\\cPeJm\\}SsYwSqh@m`@ge@y^iIqGgj@ac@}c@{]}i@wb@_fAcz@qw@}m@qr@gk@qXmXcZ{]uo@oy@aYq[i[gZ}ZsVq^aVoa@oTwc@{Q{[mK}VuGq_@gGmb@mD}l@sCkv@_Da[qAqq@aD{b@mB{b@cDwm@gJc}@iRmc@gJcKwB_ScDuYuCa[y@w\\Re\\pBi\\fFoYdH}XzJoYzMka@xUqb@bUec@rOuf@lMo^|Fmc@jEstA`NctA`Ngv@dI}d@hHqa@~Hic@`Ksb@tJanAfYai@jNaNhEiVrI{b@xPoa@zQu[rP}e@zWqWbLu_@lLu_@lHaNhAyOrAYBg_@bAq[a@c^iBy`@oF}TqE{d@iKei@yLke@gJ{f@yJ_u@_OcOiCkWqDwQiBcSiAuSu@iRGuOD{O^gQhAsZdCc]fFyVnFuVzGi^`MeYdLi]rNoNdG{]fOecAbb@wh@hScJ`DuQnGoKfDeH~ByOpEmLrC_NdDms@bNst@~Kgo@~F_z@|D}i@v@ahBbAev@lBo\\dBe_@dDa^lEw_@vG_SxE}NjDoPnEg[tJe]jMs\\zNqs@h^ouAhw@g{@ne@an@pZkk@pVqj@nTar@bW{WpI_c@zLet@tP}e@|IgOnCmb@~Gsn@bI{m@nGoaAjGufAvCsl@^op@_@wiAcBuhAwBqrAiC}rAuBqbAeBcf@{@yo@y@yt@Bms@`Aue@fB}UnAkKj@g`@|Bor@zDqxA~HmlArGka@~Bk]jBim@dDyk@~Bik@dBsSl@}n@t@og@Nqf@CadA}@eb@qAwa@wA_f@yBwg@oC{iA{Iiy@sIqo@{Hgr@eKer@eL_i@yJuVoFgQwDswAo[oDw@a|A{\\ioA{Se_A{Kuk@wE{m@gD_~@iCmd@c@md@H{a@f@ik@`BowAxHggCnNshAvGydBlJesBrLcrBbL{x@vEe|@xIe~@nNij@xKmt@vQk_AxYg|@`]qi@zVoc@`Ush@hZwb@bXwTvOmV`Qid@`^_YvUoHrGuNbNmr@`q@}R~Q}RhQkZdUmMjI_TdM_T~KmLrE_WxJwZnJ{ZdHg\\pFi[bD{[fBc\\^_`@m@ma@qCqb@aGu_@eIi^qK{RgH{OyGe[{OeUmNgVqPoa@q]{[a\\uXg\\ee@_n@o[ad@wUi\\y]oe@kZ__@u_@}a@wa@ia@c]qYca@e[w\\iUcl@k]e_@iRo`@_Qk_@yNc`@qL}g@gNif@sJia@kGUE_c@sEoa@yDsp@iEy`@{@wb@Vgb@vAu_@vDc`@tFid@hJ}}@dTwSnEmg@~Iqj@pF}b@bBi^V{^k@ia@iCgd@yE}b@{Hcd@gL}^}Lw^qOoZmOmn@{_@gk@wa@krDasC_y@{n@auBo`Bg{@{p@sy@_p@os@gn@sq@qq@yl@uq@y]}b@st@c_Ag_AikAyd@ui@}RoSeKoK}O{N{EoEsXeUa]}V{FiEsFeDc^kTag@mWmb@sQcf@}Pub@uLml@eMs^cFyUeD{o@qEas@wAyEFqi@t@}_@jBg^|Ckm@hImk@hLg_AzSuo@bOul@xMg_Bz^yhAbWeiApWa~@tSqPvDwp@jOwaAxTio@pO_n@hPia@fM{b@lO_`@zO{`@bRkn@v\\mt@jb@ut@`a@il@vXi_@|Nmb@xMaWvGc]hH{d@xHaf@lFyl@nD_t@|@uVUa\\c@oCE}t@{AsqAiCgzA_DqoAgCya@aAca@}@ceAuBe|@eBqnAoC{M_@mnByDyoBgE}oBgEymB{D{i@}@yk@c@q]A_WZyh@bBi\\~Bu[tCwWvCgYdE}\\pGi[~Gah@`Ng`@zLgZ|K_i@~Tob@`Te^fSo]pTcN|IySfOe\\|Vub@d^{VjUcSpPqWxSgXnS_WvPuSbMuU~L_ZfMca@lMme@lK}r@nKmVdDg]pFwXfGad@bN_[dM}UjLeVlNyQvLse@b_@_x@tt@_l@pi@_t@`q@wV~SwYlTaf@dZyZvNuY|KaZ`JuUpFsUlEwYdEwXvBcNj@gP`@kX@wY{@a]gCkZuDaSuDwWkGua@aMoj@uRqUsH{OsEsb@wIy\\oEg`@qC_Zg@gSGwUd@{[jBsWnCqV|DyVlFqXpHwZtKuXzL{\\`QmTfNsSbOc[lWw\\l]mSxUgO~RmMxQyNjUyObXqQj_@}Qhc@{Nl`@aKh[gK~^aJd_@}Hj^iGfYoP~s@mSzu@sKj\\aMf\\sX|n@aWte@gUr^mUv[w`@|c@aYxXeVtRSN}MtJuPtKaWhOsUnKm\\tMyUxHoZ|IeRhFmWlH_cAtX}|@jV}`AfZgy@~Ymm@tW{o@`[ee@bWoR`LeZ`Qul@x_@qOjKwQnMiZ~Tci@ld@{a@bb@uc@ph@gc@fk@wk@lx@il@lv@mf@vi@sYfY__@~Z}_@lYsc@rY{a@fU{b@tSmjCbhAcfAtc@eb@zP{b@xQw`@hQw\\xPwNjImWxPsZjUmWvUe[j\\}`@ph@wXzb@wYxi@oJxQuQb_@o\\np@{Q~[cUn^sPbVcY~]cb@zd@cTtS}YpVmS~OqU`P{XpPoWrNo_@xPib@zOk]bKwc@`Ksd@lHc`@zD{ZhB}f@lAse@_@i_@wAe_@eC}`@iDgd@wD_p@_Gw}A_Ni\\qCog@qE}eBeO}jAkH{]_AwYc@ce@D}a@`Aic@|Bcm@fFo`@vE_e@|Hwj@dMsc@|Lei@bQwc@nQmb@pRgZnO_ZtPo`@nVeb@jZyg@z`@yWlTcTrQqWtUwM|KkB~Agp@tj@qd@da@sc@|_@uhAdaAylBnaBo~ChnCcXtUeb@b^{UbReQ`MiOlKg[vQ{\\nOeX`KmOvE_NjDae@jJ{a@bF_XzAsYf@oRByTi@yUiAsTsBuWoDiTgEy]iI{d@oLqj@{Nk`@wJwp@{Puq@aQk]cIaSyDyPcCmTyByWsAuTc@sRGcRNuOj@wV`BwYfDyLvB_Z~F}VrGyEvAoJxCkTxIwT`KwSzKmTpM{OvKeRlN{R|PePrOwMvN{OnQeQjUmRfX{RbZc{@zpAgz@dpAmXfa@oUl[wQjUgQfS}U`WwTlTgOnMgFlEgVxRuZdUgNtIiVtNe\\fQq`@tQwb@fPk_@lLc]lIk[tG{SjD{T|CqUxBmVvBgR~@aSp@kY\\cg@Yq~@cCodAiDcbA_Diq@oBcOc@_`@qAyQo@mt@uBsi@gAyX[{CEwd@_@eRIqWEmRGeX?kZJe~@z@alA|Biz@dCkc@bBo^zAwf@nCmn@hDqx@bG{|@zHgc@fE}}@vJyk@lHsk@vHc`@vFqr@jKiu@pMcbAdQ{kB~\\g@Je`AfQyOpCi[~Feh@zIcsBr^{|Bpa@i{B|`@{cDfl@s`@hHssCbh@i|@|Nye@dGua@xD{d@hCeg@`BuVVaWGak@{@uYqA_\\kByt@kHktAkOg`AuKuw@_Jqp@iIu]kFiZ_Faa@mHyc@cJwd@yJkVoFacAiTazAm[{TwEgTqEyOuC{NeBaQgA{LYkJCeT`@gPlAiOlBwNfCuR|EoYtKyVrLuLtHgP|LsQzOsp@pr@iXzWsPlNaQbLkPvI{P~HaUlH_NhD_OjCwTbC{PbAyMLwPI_RcA_XoCac@uFwr@kJc]qEir@gJkv@qK_`@{Eab@qE}TeBo]kB{Ts@iWk@a\\Mo`@Vq]`AqXnA}]|BkVp@}QPqRAoWUgVq@sWmAuPyAcJm@sYqCoUyCwa@wG{YcGod@gLsQcFsg@mOo[gLuZ{L_`@gQmVcMsY}O_YqPy[gTqT}Oub@}\\wg@wd@{xActA}}@uz@g\\uZay@cv@gy@yu@ihAudAsIaIyuBsoB{uB_pB{`@e_@i[}YoOwNm[yYaYqWsK}JssAioAgj@ah@}h@qf@{|@m{@}W{TmWyS_NaKyTkOu[_RiXmNoQcIcP}GkRiHwS{Gc[yIka@mIi\\kF}UkCyV{ByZyAeRc@gRK_\\LoYdAu[dCcTvBwQlCkTfE}U`GqTvG_P`FaTtHqP|GiQ~Haa@fS_VjLwm@xWsl@~Vmi@zTke@vSy^vMuXnIuUhGu\\dHyThE}a@zFmO|AcOfAsc@vBoM^s[FsVKuYc@oWcA{a@{C}TgC{QaC}UoEma@uIid@mJod@}Jw{Bie@kvBud@gsAcYop@oNgq@}Ngt@mOsj@gLeo@{Mis@}OcrBwb@{gDcs@_pDgv@m}A}\\mr@cOmn@yM_t@qOgWsFqy@wPmBa@}cAyRqk@oJuh@wHyp@sI_m@}Gq^iD}\\uC_r@{Eam@kDmu@yDsPo@cj@cAmVa@qn@o@ml@j@uDDe[d@qTTyUn@_DH}[~@icArCoTh@iFLuWgBmj@oFok@cMc]gJa\\sB{Z@wZtBciBxNi\\|DkQvBqMd@yj@cBi\\mBaf@kKec@aN}V}H}eAk\\wKwCgD}@yMwC}ImAiIaAkL}@sLk@wQ?oMTwLn@}KpAeLfBmOfDcRzGmR|Jax@da@uf@zVc]zOaUzHiSpF_N`CeSpCyPf@qM?kJg@iCOcSoC_O}CwLkD}PgGuOkHyNyIaPaMmRuPmTmTsPcS_PyS}RsX}Xi`@kj@cv@wTk\\aAsA}RyXiQgUkNaOeMuK}KkI}JaGiCoAmFiCgGyCyMmFkLiDeNoC}MuBkJ_AqRiAwPIa\\^{{@xCkiBvFwUt@}OXiK@kQm@mMeAyK}AwLyBmQiF{Q_HyNmHgEgCuEsCyIoG}NmMaLwLaHiI}GyI}FsIiHkLwHeO}F}LeJuUaFmNkHaTwGcSkLs\\aKkWqHqP_IwO_LwRaLuP}LwPiK}LiKkKyZuZwTwSg^c]yCqCug@{e@gVeVaM{MwLuNoJ_MmLmQaMkTkIkPmKuVgHuQgIsV{Nqf@{Osj@wQ{o@ug@khBeJq[aJyZyGiSoK{XgLiWsMgW_M}R_L_PaOwQiPyPuRoPeWoQo\\{PqP{G{T{GaQ{DoQwCkP_Bg_@sB}]oAs[oAuUoAgTiB_RsCwAY_O{C{PgEiRyGkWyJkq@yWao@aWm^aNgWaJaViH}P}EgRyDuTmDiQyBmRcB{Pi@sQa@gSCsUZuUhAsPvAgWvDySnDiUzFuRxFsQhGyOzGyRbJiNlHkPrJqT`NmTpP{c@j_@kEnDke@`a@eU`RwQdNqShNuP|J{YfOw_@nO}t@bWwOdF}V`IwvDhoAkLnE{KrEkIbEwIfFoIzFgHlFuIfHeHhHiKlL}NhS}FjJ}E~I{F|K}F|MmG~PyFxQkE`QeCtLeCjM_DxSgBbP_BpQo@bK}@nSc@xRKnOBjQTlQv@bYnD~t@rBrj@b@zLXtMXtR?~QQfLQ`M}@vUu@xLeAjNaB~OkDnW{DdVaFbXuEdTeFzUeN~k@yMlg@wMfe@_HlTkOde@oFlOgIlUcNz^cQjb@cNz\\}Ulh@wF`M_Pz\\uRp_@mBrDuNpXoVzb@aY~e@eQtXmQhX}Z`d@wYja@}Y`a@gUpZuWl\\k]vb@a]|`@_Yd\\w[~]cd@|e@q[`\\i\\j\\sx@tw@od@~b@gq@hn@_y@jt@qd@|`@ee@`a@k_@l[qcAby@sy@jo@_o@le@mf@~]uQlM_SvMgc@rXyWrOaYfOqOrHuObHeZtLk\\hMmTtI_ThJmKbFqVdMoShLcS`MuShN{OnLsOxLoWrUgPtOwR`SqNlOoPbScO~QmDlEkLdPmKnOmIlM}H|L_N`U}GvLcG`LaLdToMfXwIvRuI|SuIhTcIbT{CvIgRhi@{Orc@iLhYkNlZkOlYcNrU{H|L_IpLaLpOgPlSuOfQ_JhJmJ|IaHbGqJfIkL|IgM~IsJpGaMhH{JtF{IpEsY~Ny[lP_b@rSsb@vSas@l\\qh@~U}\\fN}hAtd@GBwe@pR{ClAkb@hPwY`LeQzG"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 9 miles.","announcement":"Continue for 9 miles.","distanceAlongGeometry":14513.205},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 15.","announcement":"In 1 mile, Keep left to stay on E 15.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 15.","announcement":"In a half mile, Keep left to stay on E 15.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 15 toward Paris.","announcement":"Keep left to stay on E 15 toward Paris.","distanceAlongGeometry":190}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.800038,45.584994],"geometry_index":3738,"admin_index":1,"weight":3.674,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":3.509,"bearings":[161,341,346],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":5.324,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":5.59,"geometry_index":3739,"location":[4.799828,45.585599]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":2.94,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":3.088,"geometry_index":3742,"location":[4.799495,45.586511]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,351],"duration":24.093,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":25.297,"geometry_index":3744,"location":[4.799316,45.587019]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.803064,45.589307],"geometry_index":3775,"admin_index":1,"weight":8.44,"is_urban":false,"turn_weight":6,"duration":2.343,"bearings":[85,258,265],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":5.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.418,"geometry_index":3777,"location":[4.803722,45.589349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,266],"duration":12.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.062,"geometry_index":3780,"location":[4.80537,45.58944]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,281],"duration":5.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.09,"geometry_index":3789,"location":[4.809342,45.589223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":22.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.755,"geometry_index":3792,"location":[4.811153,45.588933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,266],"duration":11.127,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.384,"geometry_index":3804,"location":[4.818211,45.588444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,255],"duration":6.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.09,"geometry_index":3812,"location":[4.821868,45.588908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":22.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.031,"geometry_index":3815,"location":[4.823816,45.589336]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.831111,45.590731],"geometry_index":3823,"admin_index":1,"weight":10.538,"is_urban":false,"turn_weight":1,"duration":9.789,"bearings":[80,253,260],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":42.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.925,"geometry_index":3828,"location":[4.834288,45.591058]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,59,237],"duration":17.11,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.236,"geometry_index":3852,"location":[4.847211,45.594126]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,224],"duration":3.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.28,"geometry_index":3864,"location":[4.851794,45.596852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.852591,45.597481],"geometry_index":3866,"admin_index":1,"weight":0.914,"is_urban":false,"turn_weight":0.5,"duration":0.443,"bearings":[41,217,221],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.227,"geometry_index":3867,"location":[4.852691,45.597562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":101.987,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":94.338,"geometry_index":3870,"location":[4.854346,45.598979]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.11,"geometry_index":3931,"location":[4.879403,45.613272]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":51.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":47.286,"geometry_index":3932,"location":[4.879816,45.613354]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,203],"duration":70.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":64.777,"geometry_index":3962,"location":[4.892735,45.620669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,197],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.121,"geometry_index":3986,"location":[4.893637,45.637088]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":40.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":37.551,"geometry_index":3987,"location":[4.893784,45.637366]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,252],"duration":0.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.327,"geometry_index":4008,"location":[4.903848,45.643165]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.903956,45.643181],"geometry_index":4009,"admin_index":1,"weight":20.079,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.161,"bearings":[73,77,258],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":9.558,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.062,"geometry_index":4014,"location":[4.91068,45.644595]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,240],"duration":40.825,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.804,"geometry_index":4019,"location":[4.9137,45.645505]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":7.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.46,"geometry_index":4039,"location":[4.92058,45.653716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":7.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.46,"geometry_index":4042,"location":[4.921143,45.655482]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":5.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.8,"geometry_index":4043,"location":[4.921706,45.657244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":3.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.608,"geometry_index":4045,"location":[4.922113,45.658511]},{"bearings":[13,193],"entry":[true,false],"classes":["motorway"],"in":1,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":4046,"location":[4.922364,45.659285]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Paris"}],"type":"fork","modifier":"left","text":"Paris"},"distanceAlongGeometry":14543.205},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Paris"}],"type":"fork","modifier":"left","text":"Paris"},"distanceAlongGeometry":1609.344}],"destinations":"A 46: Strasbourg, Paris, Grenoble, Lyon-Est","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 46 exit toward Strasbourg/Paris/Grenoble/Lyon-Est.","modifier":"slight right","bearing_after":346,"bearing_before":341,"location":[4.800038,45.584994]},"speedLimitSign":"vienna","name":"","weight_typical":551.231,"duration_typical":566.943,"duration":566.943,"distance":14543.205,"driving_side":"right","weight":551.231,"mode":"driving","ref":"A 46; E 15; E 70","geometry":"ceh}uAka~cHyd@bLmVxFi[bJgDz@wNvD_OlDmJzAoF`@aFE{Ec@iFsAkEeB}EqCmEmDwD{DkDoEuD}EiDgF_DqFaDyFkCqFsCkGiCgGcCyG_C}GuByGkBaHgBiHaBoH}AyIsAcImAeJgAaJ{@{Is@qK]qIk@iVm@mUe@uQ{Aum@s@s\\e@uYWa\\AmSFaRZk^h@aYbAo_@tA_]lBs^tBc[`Is`AnDu_@pA{MdDi]vEci@vDke@`Co^jCai@pAs_@tAui@j@md@Rm_@?o_@i@im@o@w_@_B{h@aAwV_ByZeAkRaB}UwC}]cDs]yDg^oI}p@{Feb@kGsc@wb@_aDwGmh@cI{p@{CcXsCkWyGyq@{Dcd@kGe`AgBkZyAyXgBu_@aFifAaCkh@{Buf@{Cyp@yAe[eC}c@kCie@oC{a@yCi_@cDm_@mC{XwCiXiEi^}Eq_@}Fq`@eG_`@{Gk`@oJig@aJub@aKkc@aLgd@}Lwd@qNqe@yHmVcJeXsJqX_IaTuLyZiRcd@yQga@aJeR}J_SsH}NqH_NoNaWyMuTeN}T{Sk[qNmSwVk\\aDgEaVqZgVaZgi@yo@qSgVeRqUiSmVmSaVeTsVmYwZ{m@_k@}LsJgLyIoMkJ{MeJqN_JcPsJwRyKarAor@iN}HeOcJwMuI_MwIuPiMyRePoPkOwLmLoMaNsQmSqTkXoGsI_HuJoHoKqKmP_PcXuLoTuPc\\oO_]mM}Z_HsQwHwScFkOyEiOoFkQyEyPaF}QiEcQkEeRuDuPwDgRmDeRiDuR}C{RsCqRiEk[_D{ViF}b@qEo_@kUsmB_Jav@aJcu@wMohAcN}iAwKe~@}K}~@cDyXiKs{@wImt@aEs[mEo[kCcQqCuPiEaViEqTiFeVkFeUeLyb@eMac@sNwb@mN{_@_Qua@mR_b@iXeh@kU{_@_QgWcQiV_P_SeJqKaKaLeRuR}WwV_WeT}[_V}\\cTaRkKkR{Jwe@eSc]oL{d@uM}\\{Gk`@uF}WuCkWeBeVs@sa@e@}[b@i\\jAa_@xBasDrT}vDzTiz@fFu`@|AgZNcXc@sZeB{YaDsYyEaSgEeT{F}Y}JkPeHkXyMkXwOwWwQgUqQ_SwQeWuW{UeY}RiXcTq\\sKkReK}RyP}^wOc`@_Pqd@iOsh@qJc`@gIi`@iFsZ_Lyu@aP_qAuCeT_@wE}Iwr@qPmsAsPmrAaOgkAeYk{B_Jep@}J_l@oJoc@eLob@gHqUoKq\\uJeYiLwXmRga@uLeUsYcf@}U_]aOaRwSaUuUcUm^sZgP}KmPkKkPeJ}NyHaRcIe^qMma@aLokB_b@{g@_L}RiEq{@kR{\\oHcmBeb@so@oNq]}Hko@uNmDy@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":20054.332},{"ssmlAnnouncement":"In a quarter mile, Take the ramp on the left toward Paris.","announcement":"In a quarter mile, Take the ramp on the left toward Paris.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the ramp on the left toward Paris.","announcement":"Take the ramp on the left toward Paris.","distanceAlongGeometry":140}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.922393,45.659372],"geometry_index":4047,"admin_index":1,"weight":11.283,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.015,"bearings":[12,30,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.923288,45.662163],"geometry_index":4050,"admin_index":1,"weight":3.93,"is_urban":false,"turn_weight":0.75,"duration":3.035,"bearings":[13,170,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":2.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.826,"geometry_index":4051,"location":[4.923542,45.662955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":36.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":38.083,"geometry_index":4054,"location":[4.92378,45.663655]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[72,75,252],"duration":31.172,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.723,"geometry_index":4080,"location":[4.933121,45.670183]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[70,251,252],"duration":1.209,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.277,"geometry_index":4085,"location":[4.943924,45.672615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,250],"duration":0.245,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":0.263,"geometry_index":4086,"location":[4.944339,45.67272]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":2.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.705,"geometry_index":4087,"location":[4.94442,45.672738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":59.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":62.315,"geometry_index":4088,"location":[4.945296,45.672937]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,196],"duration":2.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.422,"geometry_index":4116,"location":[4.961633,45.681752]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.961819,45.682333],"geometry_index":4118,"admin_index":1,"weight":10.491,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.015,"bearings":[9,17,192],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.962063,45.684764],"geometry_index":4125,"admin_index":1,"weight":9.112,"is_urban":false,"turn_weight":0.5,"duration":8.21,"bearings":[4,175,182],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,196],"duration":8.313,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.729,"geometry_index":4132,"location":[4.962565,45.68671]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,211],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.87,"geometry_index":4138,"location":[4.963764,45.688536]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":14.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.393,"geometry_index":4140,"location":[4.964102,45.688896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.427,"geometry_index":4148,"location":[4.967384,45.691605]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":12.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.154,"geometry_index":4149,"location":[4.967688,45.691856]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,192],"duration":16.483,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.28,"geometry_index":4158,"location":[4.969728,45.694597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,324],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.105,"geometry_index":4172,"location":[4.968159,45.698346]},{"entry":[false,true,true],"in":0,"bearings":[144,324,344],"duration":28.007,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":1,"out":1,"weight":30.1,"geometry_index":4173,"location":[4.967948,45.69855]},{"entry":[true,false],"in":1,"bearings":[11,191],"duration":14.96,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":1,"out":0,"weight":16.082,"geometry_index":4187,"location":[4.966641,45.704475]},{"entry":[true,false,false],"in":2,"bearings":[10,177,194],"duration":10.196,"turn_weight":1.6,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":12.28,"geometry_index":4193,"location":[4.967569,45.707775]},{"entry":[true,true,false],"in":2,"bearings":[11,25,190],"duration":15.83,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":16.613,"geometry_index":4195,"location":[4.968131,45.709921]},{"entry":[true,false],"in":1,"bearings":[15,194],"duration":2.303,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":2.417,"geometry_index":4198,"location":[4.96915,45.71304]},{"entry":[true,false],"in":1,"bearings":[14,195],"duration":7.422,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":7.793,"geometry_index":4199,"location":[4.969339,45.713519]},{"entry":[true,false,false],"in":2,"bearings":[17,177,196],"duration":2.938,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":3.827,"geometry_index":4201,"location":[4.969887,45.714968]},{"entry":[true,false],"in":1,"bearings":[17,197],"duration":33.237,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":34.899,"geometry_index":4202,"location":[4.970146,45.715568]},{"entry":[true,false],"in":1,"bearings":[23,205],"duration":4.354,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":4.571,"geometry_index":4211,"location":[4.973988,45.722144]},{"entry":[true,false],"in":1,"bearings":[20,203],"duration":4.983,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":5.209,"geometry_index":4212,"location":[4.974511,45.723005]},{"entry":[true,false],"in":1,"bearings":[19,199],"duration":2.077,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":2.181,"geometry_index":4214,"location":[4.975,45.723957]},{"entry":[true,false],"in":1,"bearings":[15,199],"duration":3.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":3.78,"geometry_index":4215,"location":[4.975186,45.724341]},{"entry":[true,false],"in":1,"bearings":[15,195],"duration":4.722,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":4.958,"geometry_index":4216,"location":[4.975448,45.725008]},{"entry":[true,false],"in":1,"bearings":[17,192],"duration":2.453,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":2.565,"geometry_index":4218,"location":[4.975751,45.725888]},{"entry":[true,false],"in":1,"bearings":[17,197],"duration":6.558,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":6.885,"geometry_index":4219,"location":[4.975968,45.726381]},{"entry":[true,false],"in":1,"bearings":[20,200],"duration":3.643,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":3.825,"geometry_index":4221,"location":[4.976579,45.727685]},{"entry":[true,false],"in":1,"bearings":[22,200],"duration":31.141,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":31.91,"geometry_index":4222,"location":[4.976952,45.728405]},{"entry":[true,false],"in":1,"bearings":[30,209],"duration":35.263,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":36.637,"geometry_index":4230,"location":[4.981068,45.734604]},{"entry":[true,false],"in":1,"bearings":[30,210],"duration":21.104,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":21.631,"geometry_index":4234,"location":[4.986733,45.741155]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":0.414,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":0.424,"geometry_index":4243,"location":[4.988551,45.745494]},{"entry":[false,true],"in":0,"bearings":[182,357],"duration":4.345,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":4.453,"geometry_index":4244,"location":[4.988555,45.745588]},{"entry":[false,true,true],"in":0,"bearings":[175,351,356],"duration":16.978,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":16.953,"geometry_index":4246,"location":[4.988465,45.746532]},{"entry":[false,true],"in":0,"bearings":[156,337],"duration":1.596,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":1.596,"geometry_index":4252,"location":[4.986848,45.749976]},{"entry":[false,true],"in":0,"bearings":[157,338],"duration":11.255,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":11.536,"geometry_index":4253,"location":[4.986652,45.750294]},{"entry":[false,false,true],"in":1,"bearings":[166,173,355],"duration":4.296,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":5.395,"geometry_index":4261,"location":[4.985736,45.752639]},{"entry":[false,true],"in":0,"bearings":[177,359],"duration":4.328,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":4.437,"geometry_index":4263,"location":[4.985626,45.753586]},{"entry":[false,true],"in":0,"bearings":[179,359],"duration":1.432,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":1.468,"geometry_index":4265,"location":[4.985594,45.754545]},{"entry":[false,true],"in":0,"bearings":[179,358],"duration":5.299,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":5.432,"geometry_index":4266,"location":[4.985583,45.754862]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":0.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":0.705,"geometry_index":4267,"location":[4.985511,45.756039]},{"entry":[true,false,true],"in":1,"bearings":[11,178,358],"duration":5.063,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":5.183,"geometry_index":4268,"location":[4.985502,45.756192]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":9.748,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":10.235,"geometry_index":4269,"location":[4.985448,45.757313]},{"entry":[false,false,true],"in":1,"bearings":[163,178,359],"duration":5.884,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":7.17,"geometry_index":4270,"location":[4.985345,45.759475]},{"entry":[false,true],"in":0,"bearings":[179,358],"duration":24.974,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":26.202,"geometry_index":4271,"location":[4.985312,45.760753]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":3.56,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":3.737,"geometry_index":4273,"location":[4.985058,45.766233]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":12.093,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":12.69,"geometry_index":4274,"location":[4.985022,45.76701]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":23.485,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":1,"out":1,"weight":25.247,"geometry_index":4277,"location":[4.984907,45.769539]},{"entry":[false,true],"in":0,"bearings":[154,334],"duration":54.528,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":57.746,"geometry_index":4288,"location":[4.984002,45.774375]},{"entry":[false,true],"in":0,"bearings":[98,278],"duration":18.174,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":18.628,"geometry_index":4310,"location":[4.969257,45.777788]},{"entry":[false,true],"in":0,"bearings":[105,291],"duration":10.055,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":10.055,"geometry_index":4316,"location":[4.963952,45.778436]},{"entry":[false,true],"in":0,"bearings":[121,306],"duration":3.104,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":3.104,"geometry_index":4322,"location":[4.961147,45.779388]},{"entry":[false,true],"in":0,"bearings":[127,311],"duration":2.202,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":2.202,"geometry_index":4324,"location":[4.960367,45.779793]},{"entry":[false,true],"in":0,"bearings":[131,314],"duration":16.2,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":15.795,"geometry_index":4325,"location":[4.959862,45.780098]},{"entry":[false,true],"in":0,"bearings":[157,339],"duration":3.354,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":3.271,"geometry_index":4335,"location":[4.956919,45.782966]},{"entry":[true,false,true],"in":1,"bearings":[0,161,342],"duration":13.14,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":12.804,"geometry_index":4338,"location":[4.956556,45.78366]},{"bearings":[5,165,182],"entry":[true,false,false],"in":2,"turn_weight":0.75,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":4347,"location":[4.956021,45.786504]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Paris"}],"type":"turn","modifier":"slight left","text":"Paris"},"distanceAlongGeometry":20084.332}],"destinations":"Paris, Strasbourg, Grenoble, Lyon","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 15 toward Paris.","modifier":"slight left","bearing_after":12,"bearing_before":13,"location":[4.922393,45.659372]},"speedLimitSign":"vienna","name":"","weight_typical":834.978,"duration_typical":800.518,"duration":800.518,"distance":20084.332,"driving_side":"right","weight":834.978,"mode":"driving","ref":"E 15","geometry":"wmyavAq`mkH}`@qIyl@}Mu}Am]op@{NoGuAa\\yHeEkA}UyGqZoKoMwFySkKgT_MmPwKsTcP{PyNqPsOyRyS{MkOsOiSoVi^cRa[eRw^{KeVkPga@eJiXsIaXoIaYkIa^oGyYmHe`@mFu[_Fq\\_Gga@qV_iBci@qwDuW_lBmh@uwDeS}yAqE}Xc@aDmKwu@mPklAuOghAyg@ysDaT_|AmRusAwF}ZaH}Z{HuY{G{S}Mk]gJ_SyMqVqOyUkQuUsP}R}gAuqAsQkTuJmLuZu]yTsT{UaTeUkPaVmOuMiHuQyIkVgK{MmE{LsDwS_FqNsCuMkBmLuAuLgA{M{@uXs@c]e@mf@gAmKc@qTiBwR_CaPsCwPoDoMeDqQsFqRsH{RaJcTcLoRyLaPuK_PsM}OsNqDoDsHoHcM_NcPeS}RqWit@{aAaZq`@{LoPgM}PuN_RcT{W}MaOuNsNsMqL{MsJqJsGof@aVeTqGyPoDwRwAeQq@iRHcQ~@aLxAiNjC_NjDeOjFoR|I{NvIsLrIqQ`OkOtNmN`OwKdLqWdX}b@ja@eI~GiO~JsPzI{N`F}JvC{NtEwN~AcR~@i]~@ud@cDem@oH}gAsSgRmD}~@oPcv@aN_@Iax@wN{H}By`AaPicAaQy^oGaq@sMapBqg@}\\yJwq@{Pyf@kOod@eOk}@_Z_eAi_@{p@gTog@wSs]}S_]qVa~@aq@kz@ch@eDcByt@u_@md@{RaUuI_WsJuh@kOkWsHs]iHy]qLkr@qUc]sN_l@iV}XeNylA{p@w|BspAml@e\\{]{Ryd@}Y_RgNyWiRis@}i@kdDmoCooDgyCgNmKsd@w]yWkPy_@mRk\\}LkYuIy[uGi`@sFg`@_CyWc@{DGwh@hBgPhAqZ|Do`@|HsV|Goa@tOo[xOqbAvi@{RfK{O|HaRhIsS`ImLzDuRrFwTrEmG`AuYvCgk@zD}M^{n@v@aKFyRTqhAnCqHPaeAjBcfClE{nA`Au[b@yxHvMqo@fAkeArBoeAvAePXubBvCwr@nAcb@~AoOlAkIbAaOzBuPvE{GrBcUbJwNhIiG`EyG~DcJ~FaOjOyQdTcM`RsJnQwJ~R}HtS}IbWgI`YkG|YqDbU{Eb`@uDld@_Cl_@sBl`@aCpn@kMrkCyInjBwInhBiKjuBmBnc@kBxb@cPdeDwBd]uB|]mD`\\cFjf@iF`ZeEpTgGrZcGxWgI`[kRdm@mHhQ{Nl]aRp^yHvMuRn[aQhUaRnWaXhYmUxRgR|NiRlMoP|JaHlDcBz@i]dO}HrCiKrDiTdGa`@pH}W~DyObAwTbAaUTsRO{DKw_AeGm]eBcYSgVLmTrAaT|CgOfDiPtEsJ|CkIdDwPtH{RpK}P~KkHdFeIdHmLvKcPrPoG|HcHfJaLbPaM|RsHhNcH~N_GxMcFnLeFrMyIxUgIvU_Plh@yMte@yLbd@kc@lbBiSdw@oNvk@oQrw@_Kbf@iLdo@gF|[oDnWmClToF`f@wA`QoAlO{ApUkAjYu@~To@nc@Gh^Zx]d@jR"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep right to stay on A 42.","announcement":"In 1 mile, Keep right to stay on A 42.","distanceAlongGeometry":1515.01},{"ssmlAnnouncement":"In a half mile, Keep right to stay on A 42.","announcement":"In a half mile, Keep right to stay on A 42.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on A 42, E 611 toward Strasbourg.","announcement":"Keep right to stay on A 42, E 611 toward Strasbourg.","distanceAlongGeometry":210}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[85,262,277],"duration":44.688,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":1,"weight":43.55,"geometry_index":4397,"location":[4.938788,45.796958]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.928617,45.798655],"geometry_index":4425,"admin_index":1,"weight":16.714,"is_urban":false,"turn_weight":9,"duration":7.929,"bearings":[151,166,344],"out":2,"in":0,"turn_duration":0.017,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,340],"duration":7.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.521,"geometry_index":4426,"location":[4.92789,45.800381]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[160,340],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":4427,"location":[4.927027,45.802022]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"right","text":"Strasbourg"},"distanceAlongGeometry":1545.01}],"destinations":"Paris, Villefranche sur Saône, Genève","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the ramp on the left toward Paris.","modifier":"slight left","bearing_after":262,"bearing_before":265,"location":[4.938788,45.796958]},"speedLimitSign":"vienna","name":"","weight_typical":73.44,"duration_typical":66.13,"duration":66.13,"distance":1545.01,"driving_side":"right","weight":73.44,"mode":"driving","ref":"A 42; E 15; E 611","geometry":"{dfjvAgamlHXrGvAn[|Cvb@rCbYpE|\\hFd[|Fb[zRdaAnGn\\zF|^bCnSrBpTz@bTPnWi@nWcCj\\mBjNeDtOqGdTuIlTcLlR}LrOeNdLwRtKqRjGmXdJye@hPiGvF{jBll@qeB|t@{kAff@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 30 miles.","announcement":"Continue for 30 miles.","distanceAlongGeometry":48099.25},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 40.","announcement":"In 2 miles, Keep left to take A 40.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 40.","announcement":"In a half mile, Keep left to take A 40.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 40 toward Strasbourg.","announcement":"Keep left to take A 40 toward Strasbourg.","distanceAlongGeometry":220}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.926399,45.803252],"geometry_index":4428,"admin_index":1,"weight":0.784,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.814,"bearings":[160,334,345],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":1.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.156,"geometry_index":4429,"location":[4.926336,45.803415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":17.913,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.466,"geometry_index":4430,"location":[4.926251,45.803658]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.928102,45.806931],"geometry_index":4446,"admin_index":1,"weight":4.548,"is_urban":false,"turn_weight":1,"duration":3.648,"bearings":[50,221,227],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,234],"duration":5.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.761,"geometry_index":4448,"location":[4.929039,45.807445]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.443,"geometry_index":4451,"location":[4.93064,45.808223]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[58,68,236],"duration":7.743,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.543,"geometry_index":4452,"location":[4.931038,45.808408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":13.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.555,"geometry_index":4455,"location":[4.933272,45.809337]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[66,239,245],"duration":3.301,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.211,"geometry_index":4459,"location":[4.93747,45.810774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":0.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.478,"geometry_index":4460,"location":[4.938481,45.811086]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":106.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":101.504,"geometry_index":4461,"location":[4.938649,45.811135]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":9.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.773,"geometry_index":4485,"location":[4.977082,45.816701]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":2.374,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.256,"geometry_index":4487,"location":[4.98007,45.817107]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":2.298,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.183,"geometry_index":4488,"location":[4.98085,45.817222]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[77,84,258],"duration":11.7,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.097,"geometry_index":4489,"location":[4.981613,45.817334]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.985429,45.818001],"geometry_index":4492,"admin_index":1,"weight":2.277,"is_urban":false,"turn_weight":1,"duration":1.352,"bearings":[73,241,254],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":9.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.698,"geometry_index":4493,"location":[4.985849,45.818091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,247],"duration":0.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.805,"geometry_index":4498,"location":[4.988669,45.81883]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":30,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.5,"geometry_index":4499,"location":[4.988809,45.818874]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":1.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.651,"geometry_index":4505,"location":[4.99385,45.82034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.994114,45.820451],"geometry_index":4506,"admin_index":1,"weight":21.914,"is_urban":false,"toll_collection":{"name":"Beynost","type":"toll_booth"},"turn_weight":15,"duration":7.091,"bearings":[58,239],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[56,76,236],"duration":12.104,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.783,"geometry_index":4508,"location":[4.994822,45.82077]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,239],"duration":3.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.958,"geometry_index":4514,"location":[4.997149,45.822115]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.997832,45.822357],"geometry_index":4515,"admin_index":1,"weight":11.079,"is_urban":false,"turn_weight":1,"duration":10.345,"bearings":[66,229,243],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":50.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":49.68,"geometry_index":4519,"location":[5.000246,45.823014]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,236],"duration":1.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.62,"geometry_index":4534,"location":[5.021928,45.829535]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.022575,45.829831],"geometry_index":4535,"admin_index":1,"weight":39.968,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":41.013,"bearings":[55,68,237],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.03559,45.835772],"geometry_index":4547,"admin_index":1,"weight":9.515,"is_urban":false,"turn_weight":1,"duration":8.741,"bearings":[61,225,240],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":7.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.566,"geometry_index":4551,"location":[5.038568,45.836887]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":0.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.934,"geometry_index":4555,"location":[5.041214,45.837753]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.041542,45.837853],"geometry_index":4556,"admin_index":1,"weight":9.211,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.218,"bearings":[66,83,246],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.044935,45.83881],"geometry_index":4560,"admin_index":1,"weight":7.715,"is_urban":false,"turn_weight":0.5,"duration":7.047,"bearings":[70,221,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":5.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.502,"geometry_index":4563,"location":[5.0476,45.839459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.055,"geometry_index":4565,"location":[5.049661,45.839907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":39.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.524,"geometry_index":4566,"location":[5.050055,45.839989]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.849,"geometry_index":4577,"location":[5.065459,45.843015]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":2.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.221,"geometry_index":4578,"location":[5.065783,45.843084]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.066627,45.843263],"geometry_index":4579,"admin_index":1,"weight":23.129,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.136,"bearings":[73,103,253],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.075416,45.845488],"geometry_index":4587,"admin_index":1,"weight":7.403,"is_urban":false,"turn_weight":1,"duration":6.426,"bearings":[64,189,247],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":37.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.715,"geometry_index":4590,"location":[5.077766,45.846251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":0.382,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.373,"geometry_index":4601,"location":[5.091173,45.851293]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.091308,45.851337],"geometry_index":4602,"admin_index":1,"weight":16.574,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.453,"bearings":[66,70,245],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.098852,45.853443],"geometry_index":4606,"admin_index":1,"weight":11.365,"is_urban":false,"turn_weight":0.5,"duration":11.456,"bearings":[70,232,250],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":114.181,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":105.617,"geometry_index":4607,"location":[5.10319,45.854563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,277],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.08,"geometry_index":4641,"location":[5.146605,45.864025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":63.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":56.771,"geometry_index":4642,"location":[5.147097,45.863975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,265],"duration":2.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.95,"geometry_index":4662,"location":[5.172347,45.861669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":18.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.74,"geometry_index":4664,"location":[5.173212,45.861741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,252],"duration":6.031,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.409,"geometry_index":4671,"location":[5.180585,45.862971]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":6.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.001,"geometry_index":4674,"location":[5.182898,45.863596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,244],"duration":9.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.509,"geometry_index":4677,"location":[5.185387,45.864407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,239],"duration":176.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":158.788,"geometry_index":4680,"location":[5.18877,45.865758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.162,"geometry_index":4733,"location":[5.233363,45.904851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":5.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.038,"geometry_index":4734,"location":[5.234873,45.905616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":0.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.313,"geometry_index":4737,"location":[5.23672,45.906552]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.236839,45.906613],"geometry_index":4738,"admin_index":1,"weight":27.335,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.57,"bearings":[54,56,234],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.246644,45.91165],"geometry_index":4743,"admin_index":1,"weight":9.095,"is_urban":false,"turn_weight":1,"duration":8.771,"bearings":[52,213,233],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":150.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":135.183,"geometry_index":4747,"location":[5.249832,45.913419]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,212],"duration":1.179,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.061,"geometry_index":4792,"location":[5.299214,45.947434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,211],"duration":21.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.991,"geometry_index":4793,"location":[5.299464,45.947718]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,198],"duration":77.142,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":71.337,"geometry_index":4801,"location":[5.303392,45.953977]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[11,191],"duration":1.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.406,"geometry_index":4814,"location":[5.310185,45.975791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,191],"duration":3.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.928,"geometry_index":4815,"location":[5.31031,45.976227]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.310584,45.977125],"geometry_index":4816,"admin_index":1,"weight":23.693,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.621,"bearings":[11,34,192],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.312449,45.984227],"geometry_index":4824,"admin_index":1,"weight":11.132,"is_urban":false,"turn_weight":1,"duration":10.973,"bearings":[8,175,188],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,185],"duration":7.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.258,"geometry_index":4828,"location":[5.312999,45.9874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":0.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.117,"geometry_index":4831,"location":[5.313212,45.989684]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":153.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":141.841,"geometry_index":4832,"location":[5.313215,45.989724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":3.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.582,"geometry_index":4868,"location":[5.319005,46.033503]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":24.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.655,"geometry_index":4869,"location":[5.319638,46.034566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,199],"duration":5.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.056,"geometry_index":4873,"location":[5.323421,46.041212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.36,"geometry_index":4874,"location":[5.324041,46.042679]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.44,"geometry_index":4875,"location":[5.324084,46.042783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.324254,46.043194],"geometry_index":4876,"admin_index":1,"weight":14.329,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.104,"bearings":[14,31,196],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.32564,46.047449],"geometry_index":4882,"admin_index":1,"weight":7.46,"is_urban":false,"turn_weight":0.5,"duration":7.334,"bearings":[12,175,192],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":35.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.45,"geometry_index":4886,"location":[5.32626,46.049486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,185],"duration":6.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.6,"geometry_index":4897,"location":[5.329042,46.059305]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,355],"duration":6.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.97,"geometry_index":4902,"location":[5.329096,46.06128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,348],"duration":3.696,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.512,"geometry_index":4907,"location":[5.328749,46.063053]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"bearings":[164,347],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":4911,"location":[5.328394,46.064057]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 40"}],"type":"fork","modifier":"left","text":"A 40"},"distanceAlongGeometry":48129.25},{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 40"}],"type":"fork","modifier":"left","text":"A 40"},"distanceAlongGeometry":3218.688}],"destinations":"Strasbourg, Bourg en Bresse, Genève","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on A 42/E 611 toward Strasbourg.","modifier":"slight right","bearing_after":345,"bearing_before":340,"location":[4.926399,45.803252]},"speedLimitSign":"vienna","name":"","weight_typical":1469.699,"duration_typical":1546.062,"duration":1546.062,"distance":48129.25,"driving_side":"right","weight":1469.699,"mode":"driving","ref":"A 42; E 611","geometry":"gnrjvA}ztkHeI|BeNhD_H`BeG`A}Fh@{J\\_NMmK_AgPyCcMoEqQcJoQkLyNaMaHwG{FoGcImJoH}JiRc]{R_a@gKqWmG{OwSek@mR_f@qJ{W_Ssl@cVyv@}Mee@qMed@k_@k{Ac]w{AwKag@oRe~@aBoIyHw`@wN{v@_VmsA}^i}BiXijBqLe}@eNkhAeIks@}Je_AaKyaAgJ{aA_JgeAcIeeA_N_rBqLouBmN}{CwJm_CiGoeBaMafDkUcyF_NivCeDcv@kMk_CuJw}AoMuoB{IaiAeFwo@_Fun@cH{u@wQ_pByLseAsDgYwA_L{Hsh@}Hgf@gKak@kJie@wAwGyNwq@yQy{@_Iga@qXieBgGsb@eLi^}EoOuMg`@gD_JsHgSi_@ms@eBsC}Si]wHcQgGuRcNui@sHm]yFwZmKom@eJem@{vA_oJuK}s@uc@kyCcRykAaR{hAmUyoAeWeoAqL_k@gMoh@a[_oAy[yhA}[geAe\\_bAWu@}h@{xAoQmg@gW_q@gs@amBow@uuBmUun@cXks@g^oaAeRsh@sWeu@od@yrAeTop@cg@q`B{Omh@s[_hAwLid@uLcd@sLue@sKmc@oIa^_Pas@_Myl@gEoSmS{aAgPo}@qJki@qIig@iG_`@qLst@uQ}nA}C}TaV{iBcDsWiFib@kMeeAyRocB}QcaBwTyoBe`@wjDoLqeAiKm~@kNqmA}Iuu@sTyiBiCgSeJws@eEe[sQ_sAkUy}A}Vy_BmRgkAcIuc@eOux@eU{iAoEqRuOss@oWuiAcRyt@eWcaAmVi}@wfAatDia@wtA{a@qwAe`@euAaa@a}AoPoq@mRwy@gByIwAmGsl@usCsPs}@q_@ovByb@ukC_eAcnGk^gxB_ZceBaZcdBg]olB_^olBgRqaAuUikAm^ueBw^udBah@u}Beu@_cDwV}eAgw@ceDya@cfBi]k{AsRm~@{Pw}@iOa}@kLmx@sKi}@qJ_aAiFuq@uEix@{Dw|@sBsv@}@kh@g@oj@Ooo@D{m@v@_dAbAgr@hBqq@fCkz@vFsxAbBw]vEe_AtEg{@xEsv@rCyb@`AsOfGa`AjR{qC~R}wCjYehEjMcnBzLovBpHa`BnCa{@|Aop@jA}w@f@eo@Jmw@Ygs@oA}mAwAqp@IuDeCko@yC{r@}F}aA_IeeAgG_r@eHar@mIus@gYatBkJ{k@uMiu@_Lkl@{Lgm@kMuj@mUs`AwPqo@c^anAqb@yrAsZsz@{Wqq@_\\}u@y_@my@{a@qy@ca@yt@gO}W_Ri[sTe^eb@cp@gb@ao@iw@miAiyAiuB}l@sz@il@ox@eh@cr@yg@io@gh@gn@el@ip@ar@ct@iw@qu@ur@on@g|@is@y_Akr@qbAqp@c^eUexA_{@{qAst@ucBk_Aan@s]in@o^soA_w@m_Aun@qq@}f@gq@qi@er@al@yu@cs@go@ko@on@sq@aq@kw@kk@ks@{j@kv@gh@wu@{g@qw@il@iaAuT{_@iXeg@if@w_A_l@{mA{p@q{Aoq@waBeQwb@eK_Xyn@k}AaVkl@yNm^sRse@yBmFehBopEcw@_mBs`@u`AgpAazCse@qgAwT{f@_Ucg@iPk^op@{vAce@saAonAofC}oBwyDqjB}mD{b@}x@imE_iIklAgwBar@akAebAy~AscAmzAoi@kt@wd@kk@gByBgm@_s@wh@ak@wk@{j@ep@cm@sbBwwAcaAk}@uXyZ}Vm[}]_g@s\\mi@g]oo@qZwp@_Seg@iRch@_b@iqA}`@qoA}b@mpAi\\o}@g_@g~@s\\kv@_e@{aA{`@kv@w`@os@ed@qt@af@yt@mp@y}@_]sb@_e@{i@ig@aj@{f@}f@q`@q^w`@s]wPsNen@ie@yr@mf@_t@yc@mo@}]go@c[cz@}^mt@eY}\\wLep@qT}m@eRafAuY_iAsX_b@oJuv@}P}o@sM}gAsTmhAmTqrHyxAkrHgyAomDyq@wm@oLgZyFcw@cPabAgRi`@aIqa@yHq[sFus@aNqcAeQieAqPywA_Rqr@aJmeAmK{VuBms@eFoc@eC}r@}Ciu@eCoAEorAiCikA[imATqs@n@wmAvBq_@v@ovCbJ{{CxKksCjJ{oClGk}AjBi|Ax@arAOqvAeBeqA_DooAsEak@qC_j@gDsjAqIa}@gIm}@iJc~@{Kq_AsMmsAcT_qAkVgv@mPot@oQge@qLce@mMwcA_[{n@sS}lAgc@ma@ePuw@w[ew@g]gfBaz@maAqf@gjEszB{aBcw@iv@w[}x@}ZuzAwe@oEuAuXsI}o@mP_f@iLyn@wNkWcGi_AwRoh@gKay@sPsQwDgXsFkXwFsk@uLaSyDukCij@w~A}[cdAaTufA_Uwy@yOuf@wHsb@aFaReBsQgAac@{B_X]eV?eKH_Zb@mUxAyTdBiYjD{W~DkNhCcWrFgOtDmMjD}FnBcB`@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 15 miles.","announcement":"Continue for 15 miles.","distanceAlongGeometry":23928.252},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 39.","announcement":"In 2 miles, Keep left to take A 39.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 39.","announcement":"In a half mile, Keep left to take A 39.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 39, Autoroute Verte toward Strasbourg.","announcement":"Keep left to take A 39, Autoroute Verte toward Strasbourg.","distanceAlongGeometry":288.889}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.328377,46.064107],"geometry_index":4912,"admin_index":1,"weight":2.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.177,"bearings":[167,340,348],"out":1,"in":0,"turn_duration":0.03,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,340],"duration":6.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.378,"geometry_index":4913,"location":[5.328088,46.064655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,333],"duration":1.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.635,"geometry_index":4918,"location":[5.327065,46.06637]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,330],"duration":6.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.632,"geometry_index":4920,"location":[5.326742,46.066803]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,322],"duration":1.593,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.514,"geometry_index":4924,"location":[5.325182,46.068489]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,320],"duration":12.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.67,"geometry_index":4925,"location":[5.324776,46.068844]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.321255,46.071248],"geometry_index":4930,"admin_index":1,"weight":7.549,"is_urban":false,"turn_weight":1,"duration":7.106,"bearings":[124,131,306],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,299],"duration":8.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.659,"geometry_index":4933,"location":[5.319348,46.072122]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,292],"duration":11.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.656,"geometry_index":4937,"location":[5.316942,46.072939]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":0.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.436,"geometry_index":4941,"location":[5.313482,46.073893]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":120.722,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":108.649,"geometry_index":4942,"location":[5.31328,46.07395]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,188],"duration":0.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.741,"geometry_index":4984,"location":[5.290165,46.100003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,187],"duration":34.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":31.175,"geometry_index":4985,"location":[5.290209,46.100246]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,357],"duration":1.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.471,"geometry_index":4995,"location":[5.291966,46.110456]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":0.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.653,"geometry_index":4996,"location":[5.291935,46.110944]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.291922,46.111156],"geometry_index":4997,"admin_index":1,"weight":16.698,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.574,"bearings":[15,178,355],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.289745,46.11632],"geometry_index":5007,"admin_index":1,"weight":7.041,"is_urban":false,"turn_weight":1,"duration":6.736,"bearings":[127,153,330],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[146,326],"duration":53.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":48.545,"geometry_index":5012,"location":[5.288243,46.117997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.875,"geometry_index":5038,"location":[5.284555,46.132796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":7.993,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.394,"geometry_index":5039,"location":[5.284709,46.13305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":1.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.195,"geometry_index":5042,"location":[5.286046,46.135214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":4.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.394,"geometry_index":5043,"location":[5.286253,46.135561]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.427,"geometry_index":5046,"location":[5.287016,46.136872]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,202],"duration":20.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.842,"geometry_index":5047,"location":[5.287258,46.137297]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,198],"duration":0.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.342,"geometry_index":5051,"location":[5.290114,46.142906]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,198],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.584,"geometry_index":5052,"location":[5.290162,46.143007]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.290502,46.143776],"geometry_index":5053,"admin_index":1,"weight":8.73,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.445,"bearings":[17,48,197],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.291625,46.14647],"geometry_index":5058,"admin_index":1,"weight":1.79,"is_urban":false,"turn_weight":1,"duration":0.873,"bearings":[15,172,195],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":0.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.626,"geometry_index":5059,"location":[5.291715,46.146711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":6.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.883,"geometry_index":5060,"location":[5.291788,46.146904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":85.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":79.476,"geometry_index":5063,"location":[5.292464,46.148748]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,189],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.035,"geometry_index":5087,"location":[5.30356,46.173223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,187],"duration":8.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.659,"geometry_index":5088,"location":[5.303615,46.173552]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,356],"duration":74.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":68.752,"geometry_index":5093,"location":[5.303715,46.176237]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":0.886,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.819,"geometry_index":5128,"location":[5.29551,46.199307]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":2.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.946,"geometry_index":5129,"location":[5.295509,46.199598]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.295507,46.20028],"geometry_index":5130,"admin_index":1,"weight":29.555,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.845,"bearings":[61,180,360],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.295193,46.209698],"geometry_index":5138,"admin_index":1,"weight":5.718,"is_urban":false,"turn_weight":1,"duration":5.265,"bearings":[169,176,353],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":24.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.111,"geometry_index":5140,"location":[5.29494,46.211183]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.745,"geometry_index":5147,"location":[5.292842,46.218014]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,342],"duration":6.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.058,"geometry_index":5148,"location":[5.292747,46.218235]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,340],"duration":24.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.666,"geometry_index":5150,"location":[5.291878,46.220074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,331],"duration":4.308,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.859,"geometry_index":5158,"location":[5.28788,46.226401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[151,330],"duration":21.464,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.299,"geometry_index":5159,"location":[5.287023,46.227482]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,323],"duration":0.563,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.507,"geometry_index":5166,"location":[5.282138,46.232613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.281997,46.232741],"geometry_index":5167,"admin_index":1,"weight":9.834,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.934,"bearings":[143,324,329],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.279209,46.235183],"geometry_index":5171,"admin_index":1,"weight":6.408,"is_urban":false,"turn_weight":1,"duration":6.018,"bearings":[113,140,321],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[140,320],"duration":7.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.003,"geometry_index":5174,"location":[5.277419,46.236685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,320],"duration":41.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":38.218,"geometry_index":5177,"location":[5.275105,46.238641]},{"bearings":[139,317],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":5187,"location":[5.262595,46.248876]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"distanceAlongGeometry":23958.252},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"distanceAlongGeometry":3218.688}],"destinations":"A 40: Strasbourg, Paris, Bourg en B.","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 40 toward Strasbourg.","modifier":"slight left","bearing_after":340,"bearing_before":347,"location":[5.328377,46.064107]},"speedLimitSign":"vienna","name":"Autoroute des Titans","weight_typical":666.756,"duration_typical":725.785,"duration":725.785,"distance":23958.252,"driving_side":"right","weight":666.756,"mode":"driving","geometry":"u}ozvAq~edIga@`QwLbF{S~IiXpMqQ`Ku[dR{L~HeLdIuUrQqX|Ua]d[aZvZeUjXi^td@oTpZqYtd@sVrd@gn@nnAyMr\\oMx\\iXvz@oJx\\oPtp@cE~Q}Nzr@kWvwAeOjz@sDxSmLhn@qBrKukAhtGejAnmGid@pdCaPry@gR|}@_Nzl@uNtk@kMre@aNjd@a[z|@kNz]uMp[}a@lz@wOfYgPzWoUp]{c@nm@s\\z_@s`@pa@sg@tc@ob@p[wd@bZme@bW{f@vTsd@hP_a@~Lk`@vIu]jGw]pEq`@nDk_@fBsXl@eXFaSQa[s@qg@sCog@{Dsq@uGsyB_WawBsV_[kDcfDo_@eNwAkcDq_@kgCgZmfCmYeg@sFyZwCus@_Fi^aBgUYyVE{BCo]|@gLXoc@`Dyb@hFkk@hK__@tJq_@nL{XlK_XfLa[tOeg@lZkUjOwQnNcUdReUrRuSbRaTlSq^b^aa@~`@eb@hb@o]r\\e]`[mi@bc@se@|[yk@z[mf@~T_o@vTsp@bPkn@jKui@nFwZzAkYn@y^D}Zu@i`@mBq_@mD_[sEgZoFwWgGcSkFeZmJit@mYaq@u[{NsHs_@cSofAkk@c^aRuT}KsHyDq^sQwg@gVqYcNko@eZyzA{o@a~A_o@irBmu@iE_Bao@gTod@oOab@yMkh@gPsLwDyg@{NaNsDaKqCuWqHoc@qLau@cRwr@aQwaBq^ibBa^{dBm`@_`B{`@ah@oNmc@kMqn@qRev@eWw`@wNkmAaf@gq@{YyY}Muc@gTuoAqn@apA_q@g`EmxBo}@gc@qk@sV}l@_U_k@_Qwl@}Nse@wIoe@mGqSmBa_@kCo^uAw_@q@k_@Hcf@`Au_@rBip@lGcWvDke@hIc_@pIgf@dNae@jOqq@fZck@`Ym^jS_u@|c@ukAzv@kc@vYcg@l\\yp@lb@eq@r`@_ZvOiv@r^{l@fUyd@dOue@lMcd@|Jkc@zH{ZhEk`@fE}[hCqn@fDox@jBe`@d@}DFgpA\\yXGee@L{{@B}b@MeQ@si@BguBLcoBDwsA@iZEu^d@q_A~Aem@rBwfBhJae@lEwu@jHgfAdNuu@fLap@nL_mBna@_g@hM_m@jP}v@~UyL|Dis@`Ws}@f]_t@tZ{w@f^yl@rYeo@x\\ao@~]cv@|d@kt@ve@_b@xYqbApt@yo@dg@{_Ahx@aj@~f@w`A`_Aat@zu@iVtWyTdW_GxGqd@bg@u_@xd@uw@p`AuXv]cNpPmf@jn@if@|m@mf@`o@{h@xq@}g@vl@uY`_@wj@lt@a@h@ao@`y@_[da@osAteBcrArcB{yDjbFa{ArqBql@nx@ml@h|@og@dy@k\\tn@eUle@c[hu@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 69 miles.","announcement":"Continue for 69 miles.","distanceAlongGeometry":110978.328},{"ssmlAnnouncement":"In 2 miles, Take the A 36 exit.","announcement":"In 2 miles, Take the A 36 exit.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take the A 36 exit.","announcement":"In a half mile, Take the A 36 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the A 36 exit toward Strasbourg. Then Keep right to take A 36.","announcement":"Take the A 36 exit toward Strasbourg. Then Keep right to take A 36.","distanceAlongGeometry":241.389}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[5.258436,46.251526],"geometry_index":5192,"admin_index":1,"weight":26.199,"is_urban":false,"turn_weight":5,"duration":23.579,"bearings":[127,302,310],"out":1,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.250251,46.255315],"geometry_index":5202,"admin_index":1,"weight":6.871,"is_urban":false,"turn_weight":1,"duration":6.531,"bearings":[125,131,314],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,318],"duration":18.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.532,"geometry_index":5205,"location":[5.248329,46.256679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,336],"duration":43.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":39.268,"geometry_index":5215,"location":[5.244321,46.261243]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,179],"duration":41.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":37.468,"geometry_index":5231,"location":[5.241614,46.273772]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":0.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.305,"geometry_index":5246,"location":[5.243522,46.285829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":82.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":74.41,"geometry_index":5247,"location":[5.243551,46.285922]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,213],"duration":2.532,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.343,"geometry_index":5274,"location":[5.258253,46.307881]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.258876,46.308486],"geometry_index":5275,"admin_index":1,"weight":20.663,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.347,"bearings":[36,51,215],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.264114,46.313905],"geometry_index":5282,"admin_index":1,"weight":3.664,"is_urban":false,"turn_weight":1,"duration":2.906,"bearings":[22,207,209],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,205],"duration":24.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.105,"geometry_index":5284,"location":[5.264677,46.314759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":0.981,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.908,"geometry_index":5295,"location":[5.26928,46.322206]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":165.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":148.965,"geometry_index":5296,"location":[5.269445,46.322451]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[144,325],"duration":0.542,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.487,"geometry_index":5365,"location":[5.274359,46.370346]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,327],"duration":82.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":74.396,"geometry_index":5366,"location":[5.274232,46.370473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,185],"duration":27.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.849,"geometry_index":5405,"location":[5.273979,46.396449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":34.679,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":31.204,"geometry_index":5416,"location":[5.275755,46.405312]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,347],"duration":74.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":66.719,"geometry_index":5432,"location":[5.277124,46.416409]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,202],"duration":1.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.321,"geometry_index":5466,"location":[5.271502,46.439228]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.944,"geometry_index":5467,"location":[5.27178,46.439668]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.27222,46.440301],"geometry_index":5469,"admin_index":1,"weight":6.53,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.264,"bearings":[28,48,206],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.273955,46.442325],"geometry_index":5474,"admin_index":1,"weight":6.826,"is_urban":false,"turn_weight":1,"duration":6.481,"bearings":[35,191,214],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,221],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.475,"geometry_index":5478,"location":[5.275639,46.443855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":2.044,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.84,"geometry_index":5479,"location":[5.27578,46.443971]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.389,"geometry_index":5480,"location":[5.276367,46.444416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":4.21,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.895,"geometry_index":5482,"location":[5.277155,46.444981]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.832,"geometry_index":5484,"location":[5.278479,46.445825]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":2.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.497,"geometry_index":5485,"location":[5.278761,46.445995]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":0.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.746,"geometry_index":5486,"location":[5.279629,46.446495]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":51.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":46.788,"geometry_index":5487,"location":[5.279885,46.446642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,204],"duration":0.745,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.67,"geometry_index":5509,"location":[5.294166,46.458104]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,202],"duration":127.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":114.434,"geometry_index":5510,"location":[5.294284,46.458301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.546,"geometry_index":5563,"location":[5.313275,46.491872]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":2.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.096,"geometry_index":5564,"location":[5.313329,46.492036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.313541,46.492672],"geometry_index":5565,"admin_index":2,"weight":20.214,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.873,"bearings":[11,56,193],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.313735,46.49885],"geometry_index":5580,"admin_index":2,"weight":8.343,"is_urban":false,"turn_weight":1,"duration":7.958,"bearings":[122,172,350],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":153.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":138.185,"geometry_index":5583,"location":[5.313157,46.501134]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[26,34,207],"duration":3.713,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.323,"geometry_index":5636,"location":[5.329147,46.542285]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,204],"duration":12.308,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.077,"geometry_index":5638,"location":[5.329804,46.543262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":9.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.567,"geometry_index":5646,"location":[5.33159,46.546634]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.3326,46.549244],"geometry_index":5649,"admin_index":2,"weight":33.874,"is_urban":false,"turn_weight":1,"duration":36.533,"bearings":[14,190,194],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,208],"duration":17.945,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.144,"geometry_index":5668,"location":[5.339487,46.560053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,201],"duration":98.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":88.354,"geometry_index":5675,"location":[5.342765,46.564669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":97.075,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.367,"geometry_index":5712,"location":[5.359362,46.590204]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[35,44,215],"duration":4.126,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.707,"geometry_index":5744,"location":[5.37126,46.61659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,217],"duration":16.597,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.937,"geometry_index":5748,"location":[5.3723,46.617568]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":9.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.484,"geometry_index":5758,"location":[5.377144,46.621132]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.38021,46.622937],"geometry_index":5761,"admin_index":2,"weight":26.3,"is_urban":false,"turn_weight":1,"duration":28.118,"bearings":[49,222,230],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,213],"duration":91.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":82.099,"geometry_index":5772,"location":[5.387887,46.629001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":48.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":43.938,"geometry_index":5801,"location":[5.409037,46.650639]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[28,34,209],"duration":4.308,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.979,"geometry_index":5819,"location":[5.421188,46.661682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":9.685,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.959,"geometry_index":5822,"location":[5.422006,46.662755]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,204],"duration":7.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.082,"geometry_index":5827,"location":[5.423689,46.665228]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.424907,46.667284],"geometry_index":5831,"admin_index":2,"weight":28.964,"is_urban":false,"turn_weight":0.5,"duration":31.635,"bearings":[22,190,201],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,219],"duration":2.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.895,"geometry_index":5848,"location":[5.431789,46.675527]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":101.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":91.069,"geometry_index":5849,"location":[5.432379,46.675997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":134.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":121.226,"geometry_index":5868,"location":[5.469027,46.697007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.246,"geometry_index":5936,"location":[5.507845,46.730259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":5.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.06,"geometry_index":5937,"location":[5.507992,46.730693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":50.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":45.385,"geometry_index":5938,"location":[5.50859,46.732466]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":0.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.687,"geometry_index":5959,"location":[5.510285,46.74859]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":26.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":23.732,"geometry_index":5960,"location":[5.51023,46.748815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,182],"duration":55.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":49.625,"geometry_index":5972,"location":[5.509328,46.756473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":0.185,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.171,"geometry_index":6001,"location":[5.516052,46.771712]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[31,42,211],"duration":1.948,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.795,"geometry_index":6002,"location":[5.516092,46.771758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":30.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.779,"geometry_index":6004,"location":[5.516516,46.772228]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,213],"duration":7.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.311,"geometry_index":6017,"location":[5.524179,46.779357]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.525622,46.781108],"geometry_index":6021,"admin_index":2,"weight":108.394,"is_urban":false,"turn_weight":1,"duration":119.346,"bearings":[27,199,208],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,208],"duration":46.625,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":41.955,"geometry_index":6056,"location":[5.538802,46.818515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":82.025,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":73.815,"geometry_index":6069,"location":[5.547885,46.830739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":0.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.587,"geometry_index":6089,"location":[5.568988,46.849224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,206],"duration":1.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.032,"geometry_index":6090,"location":[5.569105,46.84939]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[24,35,205],"duration":2.578,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.302,"geometry_index":6091,"location":[5.569307,46.849685]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":15.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.728,"geometry_index":6092,"location":[5.569741,46.850347]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.4,"geometry_index":6100,"location":[5.572593,46.854217]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.573836,46.855701],"geometry_index":6101,"admin_index":2,"weight":7.91,"is_urban":false,"turn_weight":1,"duration":7.477,"bearings":[29,199,210],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":31.379,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.019,"geometry_index":6105,"location":[5.575418,46.857663]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[15,23,195],"duration":28.117,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.288,"geometry_index":6115,"location":[5.579884,46.866432]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.58301,46.874429],"geometry_index":6119,"admin_index":2,"weight":9.731,"is_urban":false,"turn_weight":1,"duration":9.721,"bearings":[15,187,195],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":2.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.151,"geometry_index":6120,"location":[5.584096,46.877183]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":93.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":83.907,"geometry_index":6121,"location":[5.584365,46.877871]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":0.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.659,"geometry_index":6164,"location":[5.576807,46.90232]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":101.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":88.902,"geometry_index":6165,"location":[5.576562,46.902457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":169.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":147.904,"geometry_index":6205,"location":[5.554737,46.92971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[144,323],"duration":37.6,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":32.881,"geometry_index":6258,"location":[5.513017,46.973884]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[163,343,349],"duration":28.031,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.521,"geometry_index":6272,"location":[5.505117,46.98475]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.501114,46.993418],"geometry_index":6277,"admin_index":2,"weight":66.593,"is_urban":false,"turn_weight":1,"duration":74.982,"bearings":[152,163,342],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,308],"duration":23.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":21.234,"geometry_index":6338,"location":[5.476753,47.010075]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,334],"duration":3.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.436,"geometry_index":6366,"location":[5.469781,47.015985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,340],"duration":2.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.581,"geometry_index":6370,"location":[5.469125,47.016997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,344],"duration":2.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.456,"geometry_index":6372,"location":[5.468711,47.017797]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,346],"duration":8.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.715,"geometry_index":6373,"location":[5.468375,47.018593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":3.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.938,"geometry_index":6378,"location":[5.467552,47.021127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":12.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.078,"geometry_index":6379,"location":[5.467244,47.022103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":2.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.032,"geometry_index":6381,"location":[5.466114,47.025748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":8.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.754,"geometry_index":6382,"location":[5.465909,47.026399]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,348],"duration":2.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.504,"geometry_index":6385,"location":[5.465116,47.028933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":4.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.07,"geometry_index":6386,"location":[5.464855,47.029745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,345],"duration":0.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.796,"geometry_index":6390,"location":[5.464437,47.03103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,345],"duration":22.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":20.014,"geometry_index":6391,"location":[5.464334,47.031284]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,321],"duration":6.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.702,"geometry_index":6414,"location":[5.460021,47.037168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[136,313],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.101,"geometry_index":6419,"location":[5.458183,47.038581]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[133,311],"duration":7.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.68,"geometry_index":6420,"location":[5.457122,47.039265]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,308],"duration":8.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.042,"geometry_index":6427,"location":[5.454353,47.040763]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,309],"duration":10.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.596,"geometry_index":6428,"location":[5.451454,47.042289]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,322],"duration":11.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.887,"geometry_index":6444,"location":[5.447897,47.04474]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,327],"duration":10.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.4,"geometry_index":6452,"location":[5.444717,47.047877]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,328],"duration":11.584,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.997,"geometry_index":6454,"location":[5.442091,47.050646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,337],"duration":8.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.448,"geometry_index":6466,"location":[5.439403,47.053925]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,345],"duration":10.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.381,"geometry_index":6475,"location":[5.43813,47.056322]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,357],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.74,"geometry_index":6483,"location":[5.437355,47.05941]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":16.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.779,"geometry_index":6484,"location":[5.437316,47.059915]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[10,18,190],"duration":10.088,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.828,"geometry_index":6502,"location":[5.437849,47.064615]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,189],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.436,"geometry_index":6505,"location":[5.438527,47.067473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":14.803,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.434,"geometry_index":6506,"location":[5.438551,47.067594]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.438672,47.071866],"geometry_index":6519,"admin_index":2,"weight":3.855,"is_urban":false,"turn_weight":0.5,"duration":3.461,"bearings":[163,174,354],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.537,"geometry_index":6523,"location":[5.438481,47.07283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,349],"duration":5.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.502,"geometry_index":6524,"location":[5.438444,47.072983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,343],"duration":1.178,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.129,"geometry_index":6529,"location":[5.437916,47.074508]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,343],"duration":9.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.279,"geometry_index":6530,"location":[5.437778,47.074825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,333],"duration":0.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.453,"geometry_index":6542,"location":[5.436248,47.077419]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,332],"duration":4.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.402,"geometry_index":6543,"location":[5.436159,47.07754]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,327],"duration":69.389,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":64.168,"geometry_index":6548,"location":[5.435187,47.078692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[131,311],"duration":62.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":56.377,"geometry_index":6604,"location":[5.412091,47.090565]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,347],"duration":27.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":25.188,"geometry_index":6654,"location":[5.398803,47.105753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,340],"duration":2.699,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.424,"geometry_index":6668,"location":[5.395997,47.113548]},{"bearings":[160,339],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":6670,"location":[5.39561,47.114272]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"off ramp","modifier":"right","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"A 36"},"distanceAlongGeometry":111021.664},{"sub":{"components":[{"type":"icon","text":"A 36"}],"type":"fork","modifier":"right","text":"A 36"},"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"off ramp","modifier":"right","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"A 36"},"distanceAlongGeometry":3218.688}],"destinations":"Strasbourg, Lille, Paris par A 5, Dijon, Lons-Le-Saunier","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 39/Autoroute Verte toward Strasbourg.","modifier":"slight left","bearing_after":302,"bearing_before":307,"location":[5.258436,46.251526]},"speedLimitSign":"vienna","name":"Autoroute Verte","weight_typical":2966.788,"duration_typical":3277.877,"duration":3277.877,"distance":111021.664,"driving_side":"right","weight":2966.788,"mode":"driving","ref":"A 39","geometry":"k_~ewAgk}_Is`@`lAqVnw@e_@llAmWny@_Vdt@iSzj@aU|j@yPh`@iVtg@oO`Z}`@lr@{Xfc@mXl_@wQ`Wy[~_@gZb\\i\\f\\gVlTwUjRg^|Ws^nV_k@n\\g[hOsQbKaj@~Tcl@rSeZbJk_@hK_t@fPs}@|O}y@fLwc@zE{i@hFyy@rGmx@~Esz@vD}{@jCkx@nAicAb@aeA[aeA_BkeAaC_h@gB}YcBu`AiGef@aEae@sEocA_L_i@mHc`@yF}y@_Nq`AqQya@{Ig\\gHyDy@{EeAuc@wKah@_N}~@qWudA}[k|@uZkv@kY}z@m]{f@cTqb@yRyc@ySaf@gVsr@u^qr@m`@kp@a`@}`@{Vyi@_]oi@g^e~@in@}~@cq@s~@qr@e}@ss@efAo}@wbAa}@wpA_mAqk@ek@ec@ga@yd@}e@y{@{}@{r@ow@}WgY{]_]u`@c_@wpAekAwu@mj@uJ}Euh@g[il@i\\g@YakAwl@glAwl@mYmNm^kQox@ga@g]yQs]uRom@y]yi@u[iNiIwp@e`@qo@{_@__Acj@{u@kf@sg@__@iXsTgEkDiw@sq@q{@iv@q{@ct@iy@_p@cz@wn@ix@qj@i]kUgfA_s@}iAwu@ma@iXcmBooAarBosAi{@wj@iu@}f@}|@qj@ie@{W}[gPoa@wQg`@yNa\\oK_[mI_]mI{[sGk\\kFg_@qEsd@eEkt@cFw{@}Eyo@uD}`@yB}h@qCeh@uC_m@cBye@c@}a@\\w_@jAga@|Bsi@xEgj@jHy]xG{\\jIk\\dJag@jPsb@hQeg@vUmb@tUue@jZ}d@z\\cg@`b@}[rZwh@fj@ui@lp@_^df@e[vd@is@tgAon@paAuV|_@ci@`y@ug@`u@g`@jh@c`@dd@_`@~a@}F|FoSnRyVnTsDbDsb@`\\ib@nYgg@~Ykc@jTqe@`Tce@rPmg@hO}k@bNck@~Jgj@tGkk@`Ea[tAwd@l@s]Bmw@e@kg@}@sc@u@_|@eBky@eDy^cCa]gCcc@aFib@kGek@mL{j@cOwh@}OcsAad@{pAwb@qm@gQ{d@aLkh@_Koe@oGyB[mj@qFqk@eEu`BsKuxAsJmw@uFmw@iGyy@uHg_@gEet@wIoj@iImi@_Jok@aKo`@{Hej@mLggA{Ug`@_Jsf@cLmdB_`@wl@}Koi@qI{h@aFmi@gDii@oAej@HgXn@yZlAo_@fCwm@|Gw[hF{Z~Fyg@tLoc@zM_k@pS}m@nXeq@h^up@|b@sjAvx@igAfw@uBzAwbAdq@gr@ra@}f@~Vei@vUgq@dVyj@lPkd@nK_ZxFkb@xGwf@bGuk@nEa^xAo]z@e]Hkh@e@ch@}Aml@uEwk@}Guh@kIke@_Kkl@}Oo]{K}b@aPuj@mVaZ{NoZkPaSuLoRyLa^sVm^qXw[kXkRmQ{NmNq_@_`@yYi\\eYk]aIqKgFyGyZuc@mRmY{NyUkRg\\k`@ot@sIsPg^gu@eH_OwYyn@a[yp@}Oi]wd@obA{d@mbAk^eu@_]up@qf@w|@sN_VgWw`@c[ce@cZ{a@{c@ck@_d@}h@md@}e@oe@wd@u^y[yb@}]m`@yYeg@g]sc@oXkl@g\\iKkFeg@sUk]oOc\\aMyj@oRqf@cNsl@}Nmf@yJs_@cGom@cIcl@{Fae@uDot@aFqr@sDar@eEir@_E}~@aGye@gE}c@kEs]mEq_@aG{p@gMgi@_Muk@mPc_@yLc_@cNci@mTkj@}Wah@wX{V{Ni\\sSg\\{Tae@o]}b@w]wPgOqJmIeXuWkf@}f@g_A_eAoyBekCoo@mw@gnA}xAmg@ui@qb@ob@m^o[}[iVqYuSs[_Tok@m\\{WuMiYoMme@{QiPmF_UsGgIkBwf@gLeQeDe[sFaCc@m]qEs\\eDc_@yB{ZaA_Ve@}WA_f@h@sd@jBuZtB_J~@uPbBua@dFwy@pMkt@lLs]bGiu@pLgtBb]gsBt\\{gC`b@ocArPsaArOm_AhM{_@lEqj@vE}p@|Duq@jBwc@b@qc@Ksf@e@ek@aCuq@cEws@wGsu@mKkq@aMyw@kQe~@gWog@gQag@cR{f@oTwg@}U}a@sTkg@{XebAol@urB}nAyZeRml@k^qg@u[o`@sWge@m]ei@ed@if@qc@y^g_@a`@sc@}]ac@}Xa_@_z@kiAoy@egAuc@wk@cUuYma@me@{`@yb@_XwWag@wc@}u@yo@iY{TeSqOii@a_@mVoPaWwO_d@iW_@Sog@mXqX}McXqLie@yRif@aRo]wLmImCaSmGsi@}OmcBwd@mNmDkc@sL{YeIyw@uV{i@qSoUgJmUcKaVcLaVqLcOeIaOsI__@qTm_@oV{c@m[up@ke@qh@e_@qZuTakAa{@wlAg{@oj@{a@g\\kV_k@ya@ys@af@o_@aUsi@mYyj@gWyk@mTwxAad@}}Ayd@es@oWeZwMgUiLg^iRqk@w]{j@w_@{a@kYmUyOqs@id@aa@mTqa@wRkf@wRaq@}Tow@wT{w@aTcl@kQwe@_Qaf@kScf@oVed@oWup@md@_n@kg@{a@s`@{j@cl@u}@qaAkd@ef@sc@sc@}TmTy[iYsg@{a@iq@af@ap@eb@i^kSk]oQyTuKwn@aXsq@cVkp@cSsm@}N{q@{M_r@_Kqx@eI}pA}J{h@}Duj@yE_e@kFui@uHaw@yNyj@wM{c@oMgk@aR}\\gLqXqKw]sMioDyrAqoD}sA}u@k[yu@i^uk@e[ik@c]_k@u_@gj@qa@_`@sZg_@u\\u[qYgXmXe]g^{OiQcKgL}@eAkY{\\o]kc@g\\{c@me@sr@aBcCuU{^aRg[sRo\\wQy\\_NmWyBgEsn@ooAk|@{gBeSi`@cf@k_Aqj@w`A}a@uo@ua@_m@ae@en@qf@ml@ed@_g@sS}SqUkUoo@wl@at@im@am@kd@o`Aeq@}x@}j@gy@mk@cx@oj@yq@cg@ew@ip@gl@mk@wf@qi@_}AonBws@{|@ie@oh@sZuZuZuX}i@wc@cOuKog@y^aXmSyc@m\\wm@oe@mn@uh@qo@_m@cm@wo@qu@q~@ot@qcAew@ulA}b@er@q^kk@ai@{z@qa@ap@}a@ao@ka@yl@cc@gm@qg@kq@ah@_p@qi@wo@yk@_p@mTyU}XyY{d@ae@_f@ge@qcAa_Aqp@ij@ie@k_@_^mXmZcUaOoKcWoQ{YcScGaEib@_Xql@a^ga@{Ui^eScGgDwf@eWmc@kTek@iXi\\ePiVmLuVcM_`@sSmb@{Vsp@{a@es@wf@of@g_@eMaKwVaTqWmU_^y\\y\\e]iXsY}Zk]yY_^wXm]k\\{c@c]qe@c^ki@gb@{q@{OcXa`CklEi_A}fBoiA}wB{pGo|LkDwG}z@k`B}n@kxAsu@mjBswBmjGyg@{uAsj@quAch@mkAikAggCeWoj@mnCy`Gg`@wz@ex@caB_u@czAuVc`@{MoT{e@ev@ul@eu@qn@kr@}f@_f@ud@ka@oeGg{Esm@ii@_U}Reb@sc@ce@_j@yb@il@{b@yq@s_@aq@qM}VkL{UcQy_@eNq[sOe`@_Ni_@wRkk@_Rul@_b@gvAwV_y@sU{t@gOoc@_KiYwL_\\oJiVwKwWmLsXcNa[wOm\\sOk[iQ{\\{Re^g`@}o@m`@gm@uc@gn@ed@sk@oTeWcT_VqWiXwVuVmXwVuWkUg]wXk\\{Vc\\_Ug[cSmS_MyT_Mg[kPcN_HiOgHc^mOuVyJgT}HqWaJ}UoHyX}HePoEmf@}LyyA{]cZeHymBkd@m{HkjB}l@sMcm@gLqg@sHaSiCaRmBoWaCoYsBc\\{Aw]eAq`@g@__@CmZX{[|@ib@bBo\\`CeY`CsXtCab@tFeo@pJ}uAzUaMlBkw@bM{i@~H{}@tK}\\|Cu\\lCwz@tEs]nAs\\r@}j@h@mm@AuVYyUa@q`@gAgi@{Bah@mDse@_Egf@eFkYsDcm@gJkm@qK}c@mJcc@mKq^iJu]_Ks`@aMo]oL{]mMy[iMc[wMcZsMa[gOo[{O}e@mWwd@eXgW}OuWyPsb@{Yg`@gYiRyNmQuNsb@a^{AoAiXsUaC{BkSkRmR{QsYaZmXkXof@uj@{^ub@o\\}`@sp@_x@qdAmpA_\\{^a\\a^yf@_g@wb@q`@sBmB}f@ua@af@m^yYsSmKcHgn@i^}a@}Uoh@uV_bAya@odAi[qo@mPev@cNa]yF_^{Dw`AuGkoB}Ocm@_EyzA{Rkr@qL}n@{LowB}i@mqCa{@yjAqZiEiAs_AeTmaAuPcgAiNklG}s@yp@gIarAoQaiAwTyw@qSox@_Wqq@eW}j@aU_}@ib@a_A_h@{z@gi@y|@oo@mq@ui@ihBoyAa{@oq@__Air@ol@q`@yt@}b@a[iOsq@y^i~@mf@oz@ae@ibAwn@}z@sk@cw@el@iQwMmcAg{@ys@wp@qs@_r@egAokAaeAomA{eA}vAou@qfAk|D_hGuh@}v@y|@aoAokCsjD_b@ki@ib@mg@}a@ud@mf@me@_a@c^_`@qZyZqTuU{OkIiFmQsKkh@cZkF{CyRgKuV}My_@oU}XaQgd@oZud@c]ix@_o@w{AulAof@i_@oc@s\\kc@s[gIiGoQ}Ms[iTiv@wc@kg@iXuf@yVqZ}M_i@iTcr@uWmiAi]miDw`Au{H{zBszAac@af@iNms@cSckD{bA_j@yOmsJspC{_@kL_`@_Ku_@eIo_@kGab@iFib@}Cac@{Bo_@]m_@Aah@t@mYfAoYfBiY`CcY`DkYtEgYnFaY|G}XbIyZ`J{[hLiPhGwRrI{MnGkSvJ_b@zTaa@jWgMxI{IvGwQ~MiKdImQbOeQ~O_LpKgO`OcStSue@zh@ed@rm@ec@pp@wa@|r@}j@ziA{^tw@gf@|eAqGhNeWbk@_X~h@mrDvaIihA|dCwkA|bCc[dl@}[vj@qb@~q@ck@ry@}k@|v@cn@rr@sn@jp@yk@hh@}j@je@m_@jY{]dVcg@xZi]hRg]~Pk]hPc^hOc[tL_\\jLiZxJy]tJwV|GkAZqYtGmYbGgZxFe\\lEq\\lDi\\dDe\\bC}b@|C}b@lByb@l@uc@Dqg@]cqEmHotA_C}pHeLaY[_YCoYr@oY|AkYrBiYnCc`@zEq[xFq[dGyYlHyYlI{YzIyYxKi\\`Oc\\hPi\\bPi[lQqUfOoUdPwTnQaTbSqXvU{WfVwWvW{V|YwY~^iYr`@wWn`@eWdb@k[vk@sZhm@av@`|AsWth@_Xxg@wXdg@cYtf@wo@`dAgq@zaAkqI~nLw~F~fIyo@b_Amo@z_Awn@v`Aym@zbAuoG`zJ_k@`z@kk@tx@kXv^gXv]qp@fw@kq@|t@}l@|p@cq@xo@mq@pm@g~@`t@if@d`@mf@~\\sv@xf@ew@|e@cbAnj@sj@bY_k@pVuo@xWgq@hWcXbJ}^nMqkC~~@y}@b\\qrExaB{}Avj@yTpIkdAja@q`Aff@e_Azi@yu@fh@_t@jk@iq@bq@sKlKkKvKqKxKiK~KcVhX{U~X}KbN{KlNuKvNqKxNkK`OiKnOmWl`@eLvQ}KbRoLnQuKhRoUdc@eJdQiJjR_LxUoMnX}JfUiJhU_J`TwI|TmIrT}I|U_IxTeItUcHbWuHbVkHfViHnVcHpV{GtVqH`YmHdYcHdYcHhY_p@llCcFjSaFvRaIbZmFrRoFhRwItY}G|S}GtSgHbSiHxRuGzPuGvPaHlPcHjPmJtSuJhS}J~RaKhRmJ|PsJtP{JhP}J`PcOzTiOhTuOzS{OhSsJlLuJ~K{JxK{JpKeKfKeKbKgKxJkKnJ}KvJ_LnJcLdJgLxI}K~H{KzHaY`RcRvLwM|HqM~GyMhGaX`L}WxKwp@~SwUhGwUxFac@nJmSlEkw@jP_|@fRcrC`m@uoApWug@xK}|Bpf@gOrCeOjDwq@hOcSbE_SlEoRdEuSjF{NlEmK|CiK`DkKpDiKzDqWbKkW~KkNxGkN`HiNnHgN~HkMvH}QpLgLxHsLrIkRtNgRlOwLpKeQ~NgNrM}MdN{MpNwMbOoPtReP`SyO`TuOhT}Q~XuQlYwi@haAsJvRmJzRgJnSaJhS}Nl]KT}^n|@k~AdtDoLnW{EzJeFtJmMfVgFpJkFfJ_HnLcHbL}GxKEFeHxKyIrM}IfM_J|L_JpLkOhRmO~QmOdQqOzPoPjQuPxPuPtP_QnPwjAhgAupAzlAkzAfuAmFxEiZ~Wua@l^kGjFuGfFcPxLyPnM_Q`MeOjK}N~JsO|JwOlJgYvOuLnGsKdFgVtK_X~KyJrDuJdDeKhDiLhD}VdHyNnDcTvEwVvEo[~E_VzC_U|B{a@lCq^lAwJXkNPiTLqMFaVS_N[yU{@yGe@aJe@eJg@aJo@cJu@_JaAuS{BqSeCqSkCqSyCgV{DkyAiUk\\cF{y@}KqFo@mIeAof@yE_SiA}R{@uOk@aPa@_X[mPBs]d@yVt@ePt@wM|@qMhAwFf@iP~AqPvBsP|BqHhA}VzEqQbEqQlEkPvE{OxEyRrG{HjCyHtCqPpGkPdHkPrHsGbDqGhDgPtIsGnDoGnDmRjLcRtLqFpDcKpHuJjHyNhL{NpLoO|M_N`MoK~JmKfKeNxN}MhOiIjJcIrJ_IvJ_IdKqIzKoIdLiIlLeIrLwI~MsIbNoIlNkIpNeIzNaI~N}HhOwHlOqIpQmIzQeIbRcIhRgHrQ_HzQaH~QuGfRuGdRqGhRkGjRcGxRcGrR}F~RyN`g@_bAzlDeVp{@c^poAsO~i@uObi@qMrc@yMpc@iUvs@mJ`YoJzXkVnp@wJrWcKjW}HtReIlRqSre@oI|QoI|QkTdd@iD|GeQh]{Vje@{KvR_LvRaLdRcLfReL|QiLrQmLtQqLdQiOrTqObTyOxS}OnSyKfN}K`N_Yv\\wYf\\mLhMmL|Lm[l[cM`MkMhLmMnLkMhLqM|KuMzKkLrJmLjJaZzTwLbJwLpIyLjI}LfIaMjI_M`Ig[fRe\\`Rg\\lQcVvLgV|KiV~KiVlKwVvJwVjJcWxIeWlIy`@nL}`@|Kea@`Kka@jJ_g@lKeg@~JeoAxVit@lOsYtGsYfHmYvHiYjIcYbJaYnJeSlHi_@vMm[lMe`@pPaKrEkKzE"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep right to take A 36 toward Strasbourg, Besançon.","announcement":"Keep right to take A 36 toward Strasbourg, Besançon.","distanceAlongGeometry":180}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[159,339,350],"duration":9.6,"turn_duration":0.015,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":2,"weight":8.627,"geometry_index":6671,"location":[5.3955,47.11447]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,338],"duration":3.961,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":3.564,"geometry_index":6675,"location":[5.394583,47.116272]},{"bearings":[156,336],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":6678,"location":[5.394129,47.116998]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Besançon"}],"type":"fork","modifier":"right","text":"Strasbourg / Besançon"},"primary":{"components":[{"type":"icon","text":"A 36"}],"type":"fork","modifier":"right","text":"A 36"},"distanceAlongGeometry":309.646}],"destinations":"A 36, A 6: Strasbourg, Besançon, Dole-Authume, Beaune","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 36 exit toward Strasbourg.","modifier":"slight right","bearing_after":350,"bearing_before":339,"location":[5.3955,47.11447]},"speedLimitSign":"vienna","name":"","weight_typical":12.557,"duration_typical":13.965,"duration":13.965,"distance":309.646,"driving_side":"right","weight":12.557,"mode":"driving","geometry":"kmszxAwaihIkG^w[`Nky@z^cPjHmI`EgKrFuUtMsC~A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 76 miles.","announcement":"Continue for 76 miles.","distanceAlongGeometry":122656.297},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 36.","announcement":"In 1 mile, Keep left to stay on A 36.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 36.","announcement":"In a half mile, Keep left to stay on A 36.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 36, La Comtoise toward Strasbourg, Mulhouse.","announcement":"Keep left to stay on A 36, La Comtoise toward Strasbourg, Mulhouse.","distanceAlongGeometry":220}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[156,336,343],"duration":32.672,"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":2,"weight":29.395,"geometry_index":6679,"location":[5.394081,47.117072]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[5.394196,47.12353],"geometry_index":6710,"admin_index":2,"weight":16.744,"is_urban":false,"turn_weight":0.5,"duration":18.061,"bearings":[41,208,216],"out":0,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.398165,47.125383],"geometry_index":6721,"admin_index":2,"weight":71.496,"is_urban":false,"turn_weight":26.75,"duration":49.734,"bearings":[61,230,241],"out":0,"in":1,"turn_duration":0.015,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,263],"duration":27.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.957,"geometry_index":6773,"location":[5.417347,47.12952]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[87,94,267],"duration":3.445,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.094,"geometry_index":6787,"location":[5.428607,47.130028]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":24.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.008,"geometry_index":6788,"location":[5.430002,47.130079]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":9.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.902,"geometry_index":6802,"location":[5.439921,47.130608]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.443888,47.131086],"geometry_index":6808,"admin_index":2,"weight":91.867,"is_urban":false,"turn_weight":1,"duration":100.982,"bearings":[78,248,258],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":16.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.639,"geometry_index":6900,"location":[5.483484,47.135407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":5.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.086,"geometry_index":6920,"location":[5.489996,47.135855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":20.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.254,"geometry_index":6926,"location":[5.492138,47.136245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,257],"duration":1.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.574,"geometry_index":6940,"location":[5.500169,47.137919]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":13.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.17,"geometry_index":6942,"location":[5.500836,47.138018]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[88,94,267],"duration":4.873,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.5,"geometry_index":6958,"location":[5.506096,47.138467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,270],"duration":10.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.17,"geometry_index":6963,"location":[5.50807,47.138486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":12.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.83,"geometry_index":6974,"location":[5.512528,47.138226]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.517331,47.137588],"geometry_index":6981,"admin_index":2,"weight":133.635,"is_urban":false,"turn_weight":1,"duration":147.381,"bearings":[103,276,283],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.955,"geometry_index":7081,"location":[5.574097,47.146783]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[73,83,252],"duration":29.641,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.67,"geometry_index":7083,"location":[5.574939,47.146967]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.586426,47.148578],"geometry_index":7111,"admin_index":2,"weight":59.07,"is_urban":false,"turn_weight":1,"duration":64.529,"bearings":[83,252,263],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,220],"duration":107.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":93.797,"geometry_index":7185,"location":[5.611366,47.159278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":65.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":57.281,"geometry_index":7319,"location":[5.657783,47.171128]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":30.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.66,"geometry_index":7399,"location":[5.684609,47.181434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":16.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.109,"geometry_index":7434,"location":[5.696177,47.184044]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":0.184,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.146,"geometry_index":7451,"location":[5.702364,47.18591]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[74,83,251],"duration":10.74,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.658,"geometry_index":7452,"location":[5.702428,47.185925]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":16.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.703,"geometry_index":7464,"location":[5.706536,47.186339]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":10.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.322,"geometry_index":7480,"location":[5.712854,47.185896]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.716842,47.186196],"geometry_index":7490,"admin_index":2,"weight":7.805,"is_urban":false,"turn_weight":1,"duration":7.58,"bearings":[75,249,256],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":77.795,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":68.064,"geometry_index":7497,"location":[5.720307,47.186889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.236,"geometry_index":7598,"location":[5.755294,47.191571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,246],"duration":58.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.297,"geometry_index":7600,"location":[5.755913,47.191761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,278],"duration":21.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.941,"geometry_index":7667,"location":[5.783436,47.192792]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,258],"duration":83.594,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":75.219,"geometry_index":7695,"location":[5.793424,47.192662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,219],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.242,"geometry_index":7804,"location":[5.828572,47.203268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,217],"duration":65.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":58.932,"geometry_index":7805,"location":[5.828635,47.203324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.957,"geometry_index":7868,"location":[5.847787,47.213691]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[85,93,265],"duration":24.838,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.338,"geometry_index":7871,"location":[5.848626,47.213743]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.857651,47.215478],"geometry_index":7897,"admin_index":2,"weight":82.219,"is_urban":false,"turn_weight":1,"duration":90.262,"bearings":[58,227,239],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,213],"duration":24.102,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.285,"geometry_index":7992,"location":[5.885224,47.22802]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[36,46,218],"duration":3.688,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.393,"geometry_index":8016,"location":[5.891738,47.232406]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,212],"duration":16.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.033,"geometry_index":8019,"location":[5.892529,47.233198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,186],"duration":7.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.629,"geometry_index":8044,"location":[5.894449,47.237214]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":7.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.596,"geometry_index":8051,"location":[5.894424,47.239092]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.894369,47.240963],"geometry_index":8059,"admin_index":2,"weight":65.717,"is_urban":false,"turn_weight":0.5,"duration":70.514,"bearings":[4,175,182],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":32.34,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.906,"geometry_index":8125,"location":[5.910491,47.255341]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,221],"duration":28.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.07,"geometry_index":8148,"location":[5.919934,47.260983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.355,"geometry_index":8171,"location":[5.92525,47.267574]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[37,46,216],"duration":21.166,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.572,"geometry_index":8175,"location":[5.926045,47.268333]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.932035,47.272112],"geometry_index":8195,"admin_index":2,"weight":2.428,"is_urban":false,"turn_weight":1,"duration":1.551,"bearings":[63,227,241],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.793,"geometry_index":8198,"location":[5.932566,47.272294]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,245],"duration":9.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.248,"geometry_index":8199,"location":[5.932871,47.272391]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,250],"duration":31.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.766,"geometry_index":8206,"location":[5.937381,47.273469]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,262],"duration":31.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.043,"geometry_index":8240,"location":[5.950811,47.277636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,286],"duration":3.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.699,"geometry_index":8271,"location":[5.965384,47.2753]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,282],"duration":21.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.654,"geometry_index":8275,"location":[5.967145,47.275017]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":0.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.475,"geometry_index":8302,"location":[5.976815,47.276408]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":5.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.631,"geometry_index":8303,"location":[5.976975,47.276474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.32,"geometry_index":8308,"location":[5.978794,47.277166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,244],"duration":0.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.07,"geometry_index":8310,"location":[5.9789,47.277201]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,243],"duration":3.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.422,"geometry_index":8311,"location":[5.978929,47.277211]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.980101,47.277536],"geometry_index":8314,"admin_index":2,"weight":0.139,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.158,"bearings":[69,75,250],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.445,"geometry_index":8315,"location":[5.980146,47.277548]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":13.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.631,"geometry_index":8316,"location":[5.980301,47.277589]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.985303,47.278457],"geometry_index":8323,"admin_index":2,"weight":1.818,"is_urban":false,"turn_weight":0.5,"duration":1.34,"bearings":[76,246,257],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":9.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.553,"geometry_index":8324,"location":[5.985783,47.278537]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.604,"geometry_index":8327,"location":[5.98924,47.279087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":1.004,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.996,"geometry_index":8328,"location":[5.989821,47.279185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,257],"duration":113.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":107.914,"geometry_index":8329,"location":[5.990286,47.279259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.943,"geometry_index":8419,"location":[6.032805,47.300921]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":2.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.326,"geometry_index":8423,"location":[6.034613,47.302278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":7.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.396,"geometry_index":8426,"location":[6.035549,47.302855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":17.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.178,"geometry_index":8435,"location":[6.038504,47.304112]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":21.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.803,"geometry_index":8452,"location":[6.045298,47.305219]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,252],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.518,"geometry_index":8465,"location":[6.055502,47.305849]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,249],"duration":136.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":119.059,"geometry_index":8467,"location":[6.056157,47.30602]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":28.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.199,"geometry_index":8520,"location":[6.104702,47.321646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":4.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.689,"geometry_index":8537,"location":[6.114739,47.324866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.116297,47.325176],"geometry_index":8539,"admin_index":2,"weight":32.096,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":34.705,"bearings":[74,89,254],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.128474,47.328899],"geometry_index":8557,"admin_index":2,"weight":14.445,"is_urban":false,"turn_weight":1,"duration":14.543,"bearings":[66,206,242],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":43.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":40.52,"geometry_index":8568,"location":[6.133862,47.330186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":1.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.09,"geometry_index":8587,"location":[6.14972,47.334604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.086,"geometry_index":8588,"location":[6.150126,47.334749]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.150916,47.335022],"geometry_index":8589,"admin_index":2,"weight":9.795,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.891,"bearings":[65,243],"out":0,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":7.275,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.541,"geometry_index":8595,"location":[6.155727,47.336381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":11.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.729,"geometry_index":8599,"location":[6.158443,47.33693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,261],"duration":13.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.562,"geometry_index":8605,"location":[6.163,47.337551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":122.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":109.977,"geometry_index":8613,"location":[6.168428,47.337812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,273],"duration":6.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.898,"geometry_index":8649,"location":[6.215992,47.337849]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":87.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":79.105,"geometry_index":8652,"location":[6.218552,47.337849]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[81,92,260],"duration":27.865,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.072,"geometry_index":8694,"location":[6.251225,47.344458]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.262168,47.344611],"geometry_index":8708,"admin_index":2,"weight":8.342,"is_urban":false,"turn_weight":1,"duration":8.166,"bearings":[98,272,275],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":24.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.848,"geometry_index":8713,"location":[6.265395,47.344234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":0.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.803,"geometry_index":8731,"location":[6.274363,47.34173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":31.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.773,"geometry_index":8732,"location":[6.274674,47.341607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,261],"duration":25.195,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.654,"geometry_index":8758,"location":[6.28689,47.339757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,235],"duration":30.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.49,"geometry_index":8783,"location":[6.297702,47.343222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":59.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":52.047,"geometry_index":8809,"location":[6.309539,47.348867]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,223],"duration":5.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.016,"geometry_index":8883,"location":[6.325362,47.363942]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":11.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.371,"geometry_index":8886,"location":[6.327144,47.365361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,234],"duration":100.365,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.812,"geometry_index":8899,"location":[6.331131,47.368081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":0.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.449,"geometry_index":8972,"location":[6.376837,47.37426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":1.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.297,"geometry_index":8973,"location":[6.377078,47.374278]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.572,"geometry_index":8974,"location":[6.377764,47.374326]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.378065,47.374347],"geometry_index":8976,"admin_index":2,"weight":3.811,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.24,"bearings":[86,92,264],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":2.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.221,"geometry_index":8978,"location":[6.379744,47.374432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":7.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.99,"geometry_index":8980,"location":[6.380725,47.374461]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.383811,47.374476],"geometry_index":8986,"admin_index":2,"weight":9.979,"is_urban":false,"turn_weight":0.5,"duration":10.539,"bearings":[91,259,270],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,264],"duration":9.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.721,"geometry_index":8994,"location":[6.387962,47.374526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,251],"duration":147.869,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":129.367,"geometry_index":9005,"location":[6.391669,47.375107]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":1.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.188,"geometry_index":9213,"location":[6.442639,47.40308]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.443091,47.403397],"geometry_index":9214,"admin_index":2,"weight":15.316,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.525,"bearings":[42,69,224],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.448262,47.406583],"geometry_index":9228,"admin_index":2,"weight":3.41,"is_urban":false,"turn_weight":1,"duration":2.764,"bearings":[63,220,240],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.904,"geometry_index":9231,"location":[6.449316,47.406932]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":4.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.25,"geometry_index":9232,"location":[6.449727,47.407044]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,255],"duration":1.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.129,"geometry_index":9237,"location":[6.451525,47.407443]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,258],"duration":2.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.99,"geometry_index":9239,"location":[6.452015,47.407515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,262],"duration":1.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.664,"geometry_index":9242,"location":[6.452889,47.407615]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,266],"duration":40.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":35.512,"geometry_index":9245,"location":[6.453632,47.40766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":0.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.092,"geometry_index":9280,"location":[6.469113,47.40572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":5.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.584,"geometry_index":9281,"location":[6.469156,47.405722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,260],"duration":17.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.436,"geometry_index":9284,"location":[6.471121,47.405915]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":19.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.697,"geometry_index":9294,"location":[6.477317,47.407604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":0.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.367,"geometry_index":9327,"location":[6.484751,47.407176]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,299],"duration":45.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":41.172,"geometry_index":9328,"location":[6.484886,47.407126]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":1.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.109,"geometry_index":9384,"location":[6.500846,47.408938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":34.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.996,"geometry_index":9385,"location":[6.501243,47.409142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,266],"duration":6.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.244,"geometry_index":9402,"location":[6.511492,47.412157]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,271],"duration":78.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":68.299,"geometry_index":9405,"location":[6.51431,47.412169]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.648,"geometry_index":9447,"location":[6.544722,47.41031]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":3.803,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.326,"geometry_index":9448,"location":[6.545004,47.410349]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.546463,47.410572],"geometry_index":9450,"admin_index":2,"weight":5.725,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.562,"bearings":[76,97,257],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":13.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.055,"geometry_index":9452,"location":[6.548897,47.410975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":1.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.559,"geometry_index":9460,"location":[6.554053,47.411757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.554714,47.411823],"geometry_index":9463,"admin_index":2,"weight":3.904,"is_urban":false,"turn_weight":1,"duration":3.234,"bearings":[81,253,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":4.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.637,"geometry_index":9465,"location":[6.555958,47.411935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":2.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.834,"geometry_index":9468,"location":[6.557534,47.412023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":51.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":46.705,"geometry_index":9470,"location":[6.558329,47.412066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,240],"duration":0.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.428,"geometry_index":9507,"location":[6.577789,47.41467]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[59,62,238],"duration":19.924,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.924,"geometry_index":9508,"location":[6.577952,47.414738]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[60,220,239],"duration":12.457,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.203,"geometry_index":9512,"location":[6.58482,47.417519]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,248],"duration":75.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":66.062,"geometry_index":9520,"location":[6.589154,47.419072]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":21.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.018,"geometry_index":9557,"location":[6.618487,47.416841]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,258],"duration":9.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.037,"geometry_index":9578,"location":[6.627016,47.417179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":4.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.945,"geometry_index":9585,"location":[6.630488,47.417868]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,246],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.77,"geometry_index":9589,"location":[6.632132,47.418322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":9.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.42,"geometry_index":9596,"location":[6.634444,47.419138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":2.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.885,"geometry_index":9605,"location":[6.637587,47.420571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":9.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.125,"geometry_index":9607,"location":[6.638258,47.420926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":53.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":46.984,"geometry_index":9610,"location":[6.641063,47.422522]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,265],"duration":18.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.027,"geometry_index":9653,"location":[6.65967,47.428796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,302],"duration":7.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.221,"geometry_index":9673,"location":[6.666146,47.427474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.236,"geometry_index":9675,"location":[6.667882,47.426683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":13.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.953,"geometry_index":9676,"location":[6.667951,47.426651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,304],"duration":4.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.119,"geometry_index":9677,"location":[6.669588,47.425913]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":7.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.301,"geometry_index":9678,"location":[6.670139,47.425644]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.670983,47.425231],"geometry_index":9679,"admin_index":2,"weight":22.236,"is_urban":false,"toll_collection":{"name":"Péage de Saint-Maurice","type":"toll_booth"},"turn_weight":15,"duration":8.27,"bearings":[127,306],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":9.988,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.723,"geometry_index":9681,"location":[6.671905,47.424786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.673913,47.423913],"geometry_index":9682,"admin_index":2,"weight":84.699,"is_urban":false,"turn_weight":1,"duration":95.684,"bearings":[118,291,303],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,233],"duration":94.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":84.656,"geometry_index":9784,"location":[6.692924,47.429909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,271],"duration":15.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.932,"geometry_index":9865,"location":[6.714668,47.43447]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":31.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.002,"geometry_index":9876,"location":[6.718585,47.434924]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":2.436,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.176,"geometry_index":9898,"location":[6.724758,47.438242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,214],"duration":0.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.23,"geometry_index":9899,"location":[6.725103,47.438591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.055,"geometry_index":9900,"location":[6.725139,47.43863]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.725606,47.439133],"geometry_index":9901,"admin_index":2,"weight":29.738,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":33.061,"bearings":[32,51,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.734934,47.444166],"geometry_index":9924,"admin_index":2,"weight":2.684,"is_urban":false,"turn_weight":1,"duration":1.877,"bearings":[76,206,256],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":0.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.096,"geometry_index":9925,"location":[6.735622,47.444278]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":5.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.637,"geometry_index":9926,"location":[6.735665,47.444285]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.922,"geometry_index":9930,"location":[6.737555,47.444595]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":20.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.15,"geometry_index":9931,"location":[6.73793,47.44466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,223],"duration":32.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.568,"geometry_index":9950,"location":[6.744356,47.447357]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,233],"duration":0.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.717,"geometry_index":9979,"location":[6.753166,47.453181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,231],"duration":12.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.895,"geometry_index":9980,"location":[6.753399,47.453309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,209],"duration":4.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.193,"geometry_index":9994,"location":[6.756212,47.455708]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.223,"geometry_index":9996,"location":[6.756999,47.456766]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":3.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.986,"geometry_index":9997,"location":[6.757046,47.456825]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.75764,47.457568],"geometry_index":9998,"admin_index":2,"weight":19.621,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.811,"bearings":[31,56,208],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.763768,47.461584],"geometry_index":10015,"admin_index":2,"weight":45.424,"is_urban":false,"turn_weight":0.5,"duration":48.59,"bearings":[42,207,225],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.611,"geometry_index":10041,"location":[6.776346,47.471078]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":26.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.844,"geometry_index":10042,"location":[6.776749,47.471419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,232],"duration":1.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.875,"geometry_index":10052,"location":[6.783645,47.476503]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":27.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.391,"geometry_index":10053,"location":[6.784255,47.476807]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":10.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.629,"geometry_index":10062,"location":[6.793582,47.480194]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.648,"geometry_index":10065,"location":[6.79739,47.481495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"bearings":[63,243],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":10066,"location":[6.798314,47.481809]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Mulhouse"}],"type":"fork","modifier":"left","text":"Strasbourg / Mulhouse"},"primary":{"components":[{"type":"icon","text":"A 36"}],"type":"fork","modifier":"left","text":"A 36"},"distanceAlongGeometry":122686.297}],"destinations":"A 36: Strasbourg, Besançon, Dole-Authume","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 36 toward Strasbourg/Besançon/Dole-Authume.","modifier":"slight right","bearing_after":343,"bearing_before":336,"location":[5.394081,47.117072]},"speedLimitSign":"vienna","name":"La Comtoise","weight_typical":3663.43,"duration_typical":4013.672,"duration":4013.672,"distance":122686.297,"driving_side":"right","weight":3663.43,"mode":"driving","ref":"A 36; E 60","geometry":"_pxzxAaifhImEfAwFlC}MpHmbAdi@aFfCkF`CgGzBwGfBiFfAaEd@}DXkGJmE?gDMuCS}Fo@gIoAcKiBwYcFcNaCaSeD_SiDySqDoR}CuUsEkFsAgF{AiK{EeK{G_HyFeGmH{DgFeEkGaD}FaCaFcHyPyJcXuJuY}Kk]kKi^i\\ciAkF_KyEkQsEkQiFkSyD{OqE}QoEeRoEeRmEqRkEuRmEcSiEgScE_SaEeS{Jgg@{Ime@yIwf@iD{ReD}RaD{R_D{R{C}RwC_S_Hoe@_D{TqCsSoCqSkCuSiCkS_CkS}BmSqFah@cFog@aDw[iAoLkBwSiB{SeB_TcB{S_B_T}A{SyA}SwA_TsA_T_Dci@kA_TiAgTcAcTaAaTWoFiBya@eAsU}@wUgB_k@qAqi@oA}k@e@aTc@qTa@oTaAki@yBqtAiBstAo@cj@y@si@i@si@kBotA{AuoAeBevAaCsoBq@{i@w@ej@{@ij@eAeq@s@ua@eAui@iAej@sAej@yAki@gBsi@oAg\\uBmj@SiE}Bug@eDen@kCod@wCqd@oDki@cEsi@wC}^kB}SiBySmBySsBySsBwSuBuS}B}S_C}S_CsSaCqSoGkh@_Gyc@YyBaH{g@iHqg@qHqg@yHkg@{Hig@eIgg@kSeoAue@muCkLms@{K_s@yHeh@uHkh@mCwRoCkSmCoSkCsSeCuS_CwS}BwSyBqSuBsSsBuSmB_ToBeUkBgUaB}S}A}SyAqTsAaTqAcToAkTiAmTgAoTaAkT{@cTw@gTu@oTo@cTk@mTg@oTe@mTa@cTYgTWoTUoTOoTMiTGqTEoTAuTBgTHiTLqTLoTPmTViTZmT`@oTb@gTf@kTh@gTj@gTr@kTt@kTx@gT|@gTz@gT~@cT|Bei@~Bui@vBki@jByi@p@cVh@mU`@qUXoTTeULaUHkT@qT?sTMkTMuTWsTIeGSgN_@aSe@eTgAe]]aLy@iT_AeTgAcToAoTyAkTyA{SaBiTeBcTiBsSoBaT}C}ZoAkL_CwScEc]oIaq@}Gkh@kQupAgHog@cHig@_Hqh@sGsg@kCoSiCsSoEw`@eDe[uB_TyA{O}B{WcBySaB{SaBcTsAuSqAgToAgTgAiTeAkT}@}S{@eTu@gTo@wSk@_Tc@aTc@yS]aTYaTOsKQkUIsUKk`@Agf@BwDTe`@NaTVaTV_T`@_Tb@kTf@kTz@cY~Asc@z@_TjBya@ZeHdBa\\rAuUvBw^lHseApFav@lKypAtHy~@tKkrAdEoh@~Duh@xDuh@rD{h@lDqh@fDck@zC{j@nCwj@zB}i@nB{h@zA{h@jAmi@|@ii@\\}TP{SL_TPkTHgTDeT?yXEmYIqTMmTMoTUiTYgTYqSc@qTg@qTg@eTk@gTo@eTs@qTw@mT_AmT_AmTeA{SgA}SkAeToAcT{Bo]oCs_@}AsSwC{]oBcTmBqSoBqSuB{SqAiMoDa\\aC{SeCySgCiSiCeSoCsSoCiSqCcS}Kiu@oIki@qIqg@uIkg@_Jcg@iJ}f@mJsf@yJkf@}Jif@eKaf@gKmf@oKmf@iK}d@yk@ufC{Kke@{XykAai@y{B}[muAc[ssAeTy_AwKkf@kKse@sK}f@gKgf@aKef@}Jgf@uPez@qJmf@kJof@cJyf@{Imf@qDmSoDoSmDkSeDyRkIog@}Heg@{Hcg@uH_h@uCoSsCuSiCkReFg`@}D}ZcC{RaC{RiCgTeCyTaC{T_CyT{B}TqBsSoBuSqBaTeCaY_CaYwBkWoBoWsDsh@uAwSqA}SqAwSmAwS_AcQqAeWmCui@qAuYm@wN{B_i@uB{h@sBai@wLa`DyCmr@cAiTiA_TmA}SsAmT{AyT_BcTcBgTgBcTgBcTsB{SyBsSkCaVuC}UyCgU_DaUyCyS_DwSgD_SiDaSmD}RqDmRuDiRcEyRgEsRiEcRuEwRsE{QuE{Q}EoQcFiQoFyQoFkQuFeQyFeQyFuPcG{PmGuPqGsPqGiPuGaPaHqP}GmOiHwOkHkOmHcOyHkOyH_OaIwNaIuNaIaNkIcNmI{MyIaNoIcMsIcMcJmMeJ_MgJwLkJoLsOiR_QcSwV{X_b@id@wV}WkX_ZgWiYuJ}KoJaLmJaLmJqLyIeLcJoLcJ_MaJoMwH}Ka@k@uIsMwI_NkIyMmIsNaIiN_IuN}H{NsH}NoHaOqHkOeHmO_HmO_H{OsGuOwGgPoGePgGoPgGwPgGaQyFwPuFcQsFkQkFoQaFaQwD_NkGuUaF{RoE}QoEkRcE_RcEqR{DiRuDsRoDkRkDkScDyR{CoRuCmRsC}RsC{SgCqSaCiS_AgIcCeUuB{Ss@wHy@yIgBmScB_T_BySyA_TuAsSoAgTcAgR_AgRsAkX{@cSy@ySw@mTq@cTq@eTm@iTi@aTc@gTc@gT_Asi@[qT[_TY_TSyT_@e_@c@wi@g@y~@y@kyA[kj@Us^Y__@g@{i@[sT[sTa@kVc@uVg@uVk@}Tm@_Tq@sTy@}T{@aTcAuTiAkToAySuAqTwAcTeB}SkBkTqBiTyB_T_CuSmCcTsC_TyCySgDqSgDyRgDqR{DgS}DqRgEqRmEsRuEsRwEwQaFeRkFwRkF}QmFqQoFiQsFgQeG}QwF{PyFuPaPkd@qGgQkG}PwGeQuGcQsGwPsGsPma@yeAwGyP{X{s@gG_PoGkPwG_QiVyn@cPab@{GgQmGkP}Osa@}Xat@iPkb@mOka@cGoOyGkQgGmPaGkP_GyP{FmPqJwYoFaQqFoQgFmQ}EqQwC}KcFiSeEuQiEaS{DoRoDsRiDcSaDcSwCwSiCgSiC{SuBcSuBoSsBcTiBySiBaTgBaTaBmSeByScBmSgBaTgBoSqBmTqBmSuBcS_CuSiCkSsCcSyCaSeDcSkDqRsEqUiEoSuEyRuEcR}EaRkF_RoFkQ_GqQeGcQkG{PiG}O{GkPyGmOcHqOkHiOyH{OcHsNgHqNcf@w~@qHuNsHcOsHaOiHaOkHmO}GaO_H_PuGuOqGkPcGgPeGaQqFsPqFoQgFqQaFyQuE{QoEaRaEyQ_EgRuDiRgDiRuCkQ_DgTgCuRgCgTwBmR{AePkBwSkBeT{A{S}A}SuAySuAcToAeTmFm}@wA{SyA}SyAwSeBiTkBgSqAaN_CoToCsToAwIcAkHaDqSgDoRwDcS}DyR_EiRgEaRsEoR_YsjAoEoRkEiRgEoRyDyQuDmRgDcRiDuSmEmZ]_CuEk`@uBmUmC{]aC}]iBoa@_Am\\UwJMwJMwKEwKAcLBaLJcYV{S`@cTh@iTn@mT|@uSlBmf@nCim@zBog@|@iTt@mSp@uSj@{Sf@{SZsSFgKJuP?w]Sc^s@c^m@uQs@_RqAwVcBcXqBcWqC{ZqBeS{BoSeCeTaN{gAgGsg@gCyScCkSaCqSuBuSsBySmBiTgB}S}A_TsAcTkAkT_A_Tu@cTo@mT_@{SYuTOkTCmTBoTNkT\\aTb@aTh@cTt@gTz@gT`AiTfAySpAiTnAaTtA}SxAcTrE{l@jIgdAdE}h@|A{S|AySxAaTvA}SrAiTlAgThAeTdAoTz@mTr@kTn@qTh@qTZkTL_NFgVAwTKsTUaUa@kUm@eTu@wT_AiTg@iIiAiTuAqTeBiTkB}SwBoTaCuSkCmSqCuS{CkSgDaSkDoRwDqR_EgReEaRsE{Q}EaR}EyQeF{PeFaRiFcQiOsg@yFiR}FcRuJa[uJ}ZcN{a@}FwP}FsPoFsPsFcQkF}P}FoRoFsQmFuQsF{QeFuQeFoQaFmQgFiR}EuQcFuRwE_RuE_RqEcRkEaRiEgRcEiR_EcR{DqRoFyXmDaRoDeSiD{RgDiS}CwRyCuRyCwSsC{RiC_ScBsMiC_TwBeReCgUyBuSwBcToBaTiB}SeBcTcBaT{AcTwAwSoAcTmAcTeAuSgAuT{@wSy@uSu@wSs@mTm@uTk@eVe@aWa@uT[sTYuTOsTMuTMoTGqTG_T?sTBwTBaTHuTJkTLmTd@_i@l@qi@t@qc@^uTd@uTd@mTd@qTtAmj@~A}i@p@gUp@wSjBki@pBej@vBmi@xB_j@|@kTx@}S|@uT`AsTlL}hCdAkU`C}i@`AuTz@qTz@cTv@yTt@kTp@gTl@yTh@qTf@sT`@cU\\kTRsTLwTJyT?mTCaUK_US_T_@aUg@yTo@mTs@uT}@cTkAeTuAkS{AgSkBkTgCkX}BeSkCsSoCmS{CkScD}RkDqRwDwR_EkRiEkRoEaR}EcReFuQoFsQ_G}Q{F}PiGaQqG{PsGmPyGmP_HcPiGsNWo@cHaPmHcPsQk`@qQc`@qQg`@qQ_a@yGqOwGePwGmPmGsPgGwP}FcQsFkQcFoPaF}QsEoRcEeRwCwNkDcRiD_SaDySmCiSiCuS{BcTqB_T}AsSyA}TmAgTaAuTo@gTg@mT[oTMqTGqT?_UHeTHwTNwTh@kj@~@u_ALyTF{TD}TCqTK}TWwTa@yTk@uT{@qTeAkToAkT_BiTiBaTwBaTeC_TmC_TwCkSgDkSoD{R}D_SiEwRqEeRkFkS{EyPwF}QuF}PiG_QkGmP{GwP_HiPwHqP}GyN{HmOwH{NeIcOeIiNqIoNqIcNsIyM_K{NaKuNyJeNoJ_MaJmL}JmMoB}BwF}GmJoLuJ}KyVkYyVwX_WsXqo@_r@qW}XyViXqVkXoVqXaV{XcVkYeJeLcJgLcJgLoJ_M_JyLcJcMyIcMwIgMoIeMoIyMsIgNcIoMcIgNaNmVsHqNmHqNoHkOoHwO}GoOsGkOuGcPqGkPgGqPaG_QqFsPkF{PiFmQ_FsQwE_RiEwQaE_R_EyRqDsRgDmR{CwRwCmSmCgSaCgSwBmSsBuS}AqRyAwSsA_TkAuScAcTy@cTu@aTq@eTo@mTK{D_@gNi@cT]aOuAop@uAoi@m@}Ss@sTy@_TaA}SkAkTsA_T{AeTaB{SkBwSuB}ScCiTiCkSyCmS{C_SgDcSqDyRyDqRcEgRmEmRoEuQcFaR_FiQsFyQqAgEeDeKyF{PyFyPeGwPeGuPgGsPiGqPkGoPiGaPmGoPmGsPiGiPeGqPcGoPaGyP}FwPwFcQuFmQkFiQcFsQ{EuQqE_RkEkReE}RqD{QmDsReD{R{C{RqCkSiCoSaCmSwBoSsBySmBqSiBsSmBiTqEkh@uEih@_Fsh@qBiSyB{S}B}S}BmScCiSkCwSqCuSwCmS}CuScDiSgDcSmDyRqD_SwDoRcEeS_EeRkEyRqEkRsEeR{EcRaF}QiFsQkFoQ_GaRaGiQcGyPkGuPuGoPcHiPcHuOoH{OwH{N_IyNgIeNmI_NyIgM_JiMcJoLsJgLsJyK{JiKcKuJmNeMwHsGsKoIwKmIiN_KmT_OyYaSqZ}S_LkIwKmIuK_JsKkJqN_NyCuCcCiC}JuKoJaLiJmLgJ_MmJ}M_ImMoIuNaIiNsHqNqHaOoHqOgHkOcc@caAyHuP}HePmHuNaIeOiI{NiIcN{I}M}IkMgJ_M_NoPwQiScRkQsJwIwFeFoOwLiLqIyL{HaMiH}EmC_FgCaFeCcFaC}EyB_FwBeFsBcFoBeFgBcFcBsMcEkMeDoMyC_NgCkF{@oFw@oFq@uFo@sFm@uQyAkJ]cN]qMO}MB_NNqMZy^lAmQn@sNb@mNb@aNVwMJsMCsMUkGSmESqMy@{MmAoM_B_NwBuMgCsM}CmMiDiM{DiUcImP{GyJ_FgKuFwHqEyKcHs`@eWyKoJwK{JcLwKkM_N_KiLuJsLmJaMmJgNwIyMmIeNsImO{JoR{H{OoHgPcHsPaHuQoGyQoGkR_FkO{EsOy^_lAgK{[aHmScI{T}GkQqH{PqHmPeIuPmIgPsI{N}ImNeKmOmK_OsJ}LyJoLoKkLsKcLuKcK}K{JgbAk{@mYwV_PyN}OoOsNuNqN_O{NaP{F_HwFeHmIqKkIuKqLwP_QyWyGqKyGyKwImOsIsOqLgUkLwUkMwXqIqRgs@y_Bsl@wtAsS{e@yLoX}LgXcHiO_I}OwHeOwIwO{IcOsI{MoJgNiJgMuJ{LwJiL_K{KgKeKkKuJoK{IsKqIaLiIwLmIeKuGun@e_@wf@uYoYsPwXwPeKsGeK{GkRuMoRgNoe@y_@wJiIuKsJsK{JgHcH{AyAaKcKgOgPgOoPoR{TuHgJmReViO{R}NeSaOmTwNuT}I_OyIgO}JwQsJmRaMaWaHsO{G_PeGyOuF{NsGaRmFuPmF}QyEkQiBkHcC{J}B}JaEaRwDoRoDuRwFs\\cFc]{WyqBkG{b@_Gg_@sHyg@yGoa@sDeSmGo\\yGc\\}Gg\\mE_R{Ho[mIe\\cIwYcJ}[gFgQiF}PeFcQ}FkRei@ebBgFmPqF{QkI{YwEuQsEaReEaRuDyQqD}R_DmRyCsRoCaS}BgS_C}SoBoS}AqSsAmSeA}SYgH_@mJs@{Te@qS_@kTIwSEySH{SVgT\\wSf@gSt@aT`A{RlAqSdAmOlAyOdBmSjBqR`CgUrBiRbCsSfCcSpCmSpCuSlO_dAdFi]vCqRbCcPpi@ipDnOmgAbHei@xCwWbB}NhD}]xCq^lCs^rBq^lA__@`@aTT{SRi^AcUOcT]yTk@kTk@qT_A_TmA{SyAeUeBwSoBoSyBySgCsSuCySgDqTeDkRoDeR_EuRqE}RuFoQwHoYiGiTeI}XcC_IK[wLka@kMod@mHeXiDwNQs@s@_DSy@uFcY_F_WsDcVWyAqAuHoCcPwE_\\cDiU}BoSqEkf@}KswAmMu~A_D_]kLwtAwMc|AgEed@cEic@sCa\\{NawAiKi{@iDuV{DuVuI{e@}Icf@iMkj@gMgg@sRio@oSym@{IqVsJqV_K_UmKsTkHeNqHeN{Rk\\ajA}eB}JgP_KwPuJmQcJaRaLuVoKyVeJcVuIiWwGsT{GoUgG}UoFcV}XswA{R_eAqIgb@qJoa@sHoXkIyXyIkXqJaX{GuPgHkPwHgPyHgO}HuNkI}NsImNaJeNaHaKgH{J}_@ye@saAggAatA{{Aco@os@}d@qh@mf@oj@cLgM_LuMyKqMoK{MiK{NaKkOaKcPcJoOwUkd@iJwRiIcSsGuPsGsQaGwQcGkRaF_Q_FkR}EgSeEkSmEmTqD_SiJci@kUmrAyDeUoE{UuIy_@aK__@cKy\\sKu\\aNk^wNa]mOm[sPkZkLwRsLaR_OcT}JuNop@{~@qQ}XyCoF{JmQkKqRyJoSgLeWoKaXkJ{WsIaWcGaSuFsScFkSqEcTi@iCaD{O}DgTuEeWmEoXwDkXeDcX}CgWwC}X_CkX}BiXmBuXgBcYoAgYiAkYsAaa@{@}a@O_KgAey@aEicH_@}b@WeTa@iZs@iTaA{W_By\\wBw\\sBkVcCmVgCgVyD_ZuCiQ_EsUeEgUoEaUkFkUcG}UgGuUyGeUuIiWqI_WkTcn@ew@qsBsl@q~A_m@_aBgVgq@}b@mmAmb@ymAce@ewA_c@ixAaTgt@uTcw@qHyXoR}s@aRqt@oM_h@_VsaAyVgjAkVkkAiZw|AiLwm@_Len@_Mos@sLwt@iYckBsZayBqYizBaPerAsO{pA}_@{dDyZchC_Fs`@{Foa@{Fia@mGga@sFk^iGc_@oDwS_Kii@kGqZsGyZwGwZ}GiZiKqd@_Lqd@yNwj@{Iy\\qZ_iA_Mic@_M{c@a[_iAoLmd@iLae@sIc^cIc_@kH{^{Gq^kFk[oFy[{Eu[qEo\\kFoa@gDgWaH}j@iImt@k[}lCwFea@iGy`@uGk`@oCcPqCgPiFgY_GyYoGkYsGiYwMmi@qNwi@cp@{aCwOgk@sOqk@}HsZgHi[aEyOuHk^oFkXcD{OaHka@aKan@qDsViDqVyE_`@wE_a@qEu`@_Ey`@uJyeAcK_jAeKmhAkEec@sEwb@gGyh@_Hyi@aIuh@uIqh@}Hoa@eIua@wIsa@cJ_`@aPip@}Qqq@ckAieEmCeLoWyaAaEaPaHkXaPkp@cOcr@cVsjAeLgm@mK{m@aH}`@_J{m@eEoZkIao@wGel@_H_p@qGmp@uEyi@yDyh@aEyh@{Cci@yEyaA_EobA}Byz@q@k\\o@g]g@i[Wc\\c@gy@Esc@Jkd@Hoc@^ud@jBssAv@mh@fAki@bCwcA|Ka}DnCujAz@cd@n@wd@|@uk@l@el@Zcl@Pil@Ein@Y}n@c@on@q@{n@qB{_AwB{`AiE{_BoEoaBac@qsOcCcjAwBekAaAcu@i@ku@[{{@Lis@jAy`BlHueEvCqjAtC}vAzD{nBhB{kBPes@Jew@]sr@o@sr@{@as@aB}r@iCav@{Cgv@qD}u@eEcv@gDie@yDkf@{Doe@kEef@aDy\\oD{\\mE}\\cE}\\eF{`@kFea@cGya@kGq`@qLas@wLsr@oNuu@aOyu@k_@olBca@apBw^siBmOaw@uMor@}S}kAiIwe@}Hif@iHyf@_Heg@uG}f@gGyg@kGol@wFal@yEqh@kEsj@{Dek@oDkk@yAuWqEm_AiBye@aBof@kAwg@y@sf@c@cZc@q[g@ew@Cm^Gcn@Jof@Vwf@~AsfAhFovBrAu[|Bke@bC}d@fFsx@rDaf@rDue@xDga@jE{_@vEc`@hF{_@vBiOzBoOfGq_@bGk]rGu]zGs\\fHc]|Hq\\dIw\\zKwb@lLec@nLib@|L}b@tFmR``@}qAnHqXfHkY`HuYtGoYzF{ZfF_\\`Fc\\lEu\\~CaYhCoZ~B}YrB{ZdBuXpAsYz@yYp@oYf@u[P_\\Im\\Ma\\WuQ]sQg@}Qi@aRoDgu@}B}YkC_\\uCwZeDaZeCiSkCaSyAqLsEsY}Fs\\mGu\\{Gi]}Gk\\mH_]wH{\\qHa[{HiZuJa^iKk^kKa^cLw]_FwNiKk[wKmZyK_ZeLkZkH}PqHmQmHwPcHaPkUog@kVyf@kVue@}Vqe@mdAalBmP}[uO_\\cG_N}FkNmFgNuFaO}GiSeGuSiGiTqF}S}E}SuEoTiEoTcE}TsG}`@wDwUaMqw@gFg[qFo[cGa[yGmZqEoQ{E_QyG_TmEuMwGqPcHgPuHgP{HeOcHqMmH}L{H_M}H{KsI}KsIcKcJkJ}IuImK{JcLgJoL}IiLqHsMiHcMmGaNgGoMwEuMcEsMcD}MyCsMiCqMgC}MwB{\\eF{MkBwOcCcHqAmHuAeHyAmHeBsGyAaHiBcHwBsIuCoIwCaI_DkIgD{I_EwIgEoIuEqIcFyQyLkQcM_QcNqPaOqIuIgIwIeI_J}HkJyHsJqH_KgHiKmHsKgEmGsDeGmD}FwDwGui@c`Aon@_gAqQk[_X_b@qUg^uU{]qSuYyQ{Vip@y{@_LeOwWu]OQuKsNsJ}MaZcb@oLiRgLuRaLqSmK_T{HiQeHsQaHqQoGaRuIaX}HeXiRsr@uH}XwHgXgIsXgIeXuIaWwJiWcKuVeKyUop@cxAwJ{TkJ_VcJwUqD{JkDeKgHgVaHqVsGgWaGoWyFuYiFiZcFeZqEcZwEeZeEmZaEsZsD{ZeF_c@uEsc@mEmc@_E}c@{Dad@qDqe@aIekAyBac@oBic@eByb@yAqb@{Agh@mAch@w@{h@k@yg@]{`@Oo`@CyWI_[Pqr@`@sc@xA{gAfBa~@zBe_AlGcyBbCa|@zBo{@jAsf@|@ig@h@}f@^og@Nsi@B}i@Cwi@]ij@i@ya@e@cb@s@_b@}@kb@eIqhCmIwyBmBgl@QiFc@aN_B{i@]{KK}DeDucBCgCi@id@O_WIeNIcZOit@?gh@Bck@@{JPoc@Vk{@Baa@Mka@[ma@S}O]eQu@qWaAgXcAaVmAkUsA_SyAuSkB_SuBuSgCiT{BmQoCcSqCwRqDiT{D_TcEkTiE_T}C}MmDoNiDaNsD_NyDoNcEqNsEoNuEkNcGoQkG{P_HyPcHgP}HkQ{HyPwIuQkIoP_HiNeHoNiHkNaHyM_c@s{@mHqOmHsOoQg`@kH}OyGcP{GcQkGwP{H{S}HyT}HiUqHgUwHuV_H_VcHqVcHsVuEcRmEoRmEuRmEuReEmR{DqRuDyRyDoS_F}YaFc[uE_[gEe[eD{W}CmX_DiXmCyXyBeUqByUkB_V}A_ViAsPeA}P}@aQy@cQgBgc@}A}c@m@qT]uTa@oTY{TUiTSkTMcTIqTi@ohCQ_W_@yWu@iYy@cUcBs[sBwY_Dy[qDe[aEaXqDyS}EcW{DqQmGkWeGcTyFcRaGgQqH_SqHkQaI{PeIePiJ{PqJyOgMyQaMgP}G}HyGwHyNoN{NgN}GwFoG{EgHaFaHoEuHcFmHoEyHaE}HsDkHuCkHmCqHmCgHaCsGqB}GkB_HcByGwAmHiAmHcAmHcAgHs@}h@_E}SiAoNqAuLoAmPiC{K{BoKgCsGoBoGuBsGaCcGcC{MgGgFaCiFqCcFyCeFaD{EeDiEcDqHeG{G_GmHsGqGiGeEgEeEyE}DyEsDgFiFgHcFkHoFkIgF}HmE}HwEeImEoIoEsIsXqi@eM}UmFqJgF{I}NuTeOkTyJkLcK}KsKoK}KuJsEmDiEcDyEgDwE_DcM{HcFwCeFoC{JqFwFsCiCsAcV}L{MsGwM}GgF}CcF_DeFkD}EkDgEkDoEmDkEwDmE}DaF_FcFgFyEiF_FwFyCwDwCyDuC_EsCeE{GgKeHmJcDwFwEmI{GmM{Py_@eL}XoN_]eLaXyKsVkKsRoIgOyRg[mj@ox@cWi]sIsLmIaMgIqMcIqMmNaWoKiTuJiTqJ_UwPqd@uE{NmEuNaGwSeIa\\wHi]{@oE_FuXgCiMyBwN{D{XuDa[iDk[qBcW]oEiAwOaA{Q{@_Ro@kR_@aSI_F_@_UU}\\EcNDcNLuMP_MrB_y@vB{e@pCme@zCoa@pDya@zE_d@fFgd@jJms@vJis@|Ms~@dF__@zE{_@|Fgg@|B}RtBsSxAkPrAiPpAiPnA{PxAeYdA{Xz@g_@X}NTmOD_M?kM@{MIiMa@sRCuAoAil@gHkjAIcAuGgw@{K}y@yL{p@wJcd@}G_Zw_@o`BmCsMmCeNeCcNuBsNoDqXoAeLiAkLaAiK{@}Ks@{Ki@qLe@cLa@qLYiLSoLKgICqIAiIBcJH}LJ}Lb@mPl@gP`AyRnAkSdAoMjAoMrAkMxAoMhByMlBuMvBqMbCwLrBuJxBsJ~BwJdCqJbBmGhAgE~DkN|Je]vJa]rJi]fCiJ~BsJzBwJtBcKdDuP|CcQjCkQzBoQ|BmT|@{It@{IbAuMx@_Nl@iNd@eNVuKX}KNyKHaLDcNIcOM}N[oOYyKe@eLg@iLk@_L{@sLaA{LeAyLoAqLeA_JkA}ImA_JwAyIsBwL{B}LiC}LoC_McBwHmBqHgF{QsFqQ}FcQ}CuIaDsIcI_SaTgh@qVal@qL_Ycz@eoBwKyWy`Ac~BeG}N{F_OgFgNQc@sFaPmNyb@kMce@eKye@}Hid@qH}e@{Fee@wE}f@kDie@oBy^_B}b@cB{iA_@kp@_@sr@f@cjAfAo|@zAcw@~CcbAtEqbAjEyu@dJgrAjHybAjNq`BzFso@bK}gA|JkiApRccC~Gu`AfCe`@xBu`@lB{^bBg_@rBke@~Aaf@bAg`@t@y`@`BwgA\\yf@Rog@D_^?u^Mq^Yq^Ya]e@k]m@}^q@u[y@a\\{@u[aAgYeAgYkBua@qBo`@_C{`@}@aPeAiPaCc\\mAsPuEal@gFcm@uGos@oOsbBsHwy@aEmc@mGkq@wCw]qF_n@{Doi@aCs^oAyWk@aMe@_Kq@gNiCoi@uAgb@{Asf@o@mc@c@mUi@{Uk@yYw@gw@G_r@Hal@VmVJqULgb@Tgb@z@i{AZ_m@Hqm@Im\\Uw\\a@q\\s@y\\u@mV_AkVeAiViA_W}AmWiBgXsBmW_CuW{E_d@uFyd@wFq`@iF}[gGs]}G}]mEgTaF_UaFwTiFwT{Mwf@gOkf@cNed@yJc\\{F_SgCeIwc@_yAky@}pCgk@klBma@}rA{Tcv@iLi`@yKu_@_Mgd@oIy\\}GkZaGeZqFc[qEo[aCkQ}BgQoBmRaB}QuBkYgBoYsAgZeAaZe@yQ[_RMkR?aR@wUNuU`@uUn@eUt@oT|@_UtAiVrAcTfDsj@nDwj@tDun@|Dqn@xKeeBnHqmAnHylAza@exGra@kxGzK}dB`HmkAnCoe@|Boe@`B}`@rA}`@~Ach@x@yYb@cTZiTZcTPkTRe]Ds]GkYSo\\e@gf@UyR]uRk@eUu@cUq@}T{@aU{AgZ_BeZiBcZwBmZaCq[uCy[gDa^{CeZsEaa@aF{`@cGgb@mEwY{EcZeF{YsF_ZuEwT}EiTeFwTgFiTkFsTyEmQuFuSwFkR{Jq\\kKq\\eLy\\mLy[eFwNuF}N{FwN{FsNaGsNwE_LmN}[mNu[qN}ZwcAuuBq_@yv@a_@yv@kPo]kP{]iRqa@eMs[gIcSgIySeSwh@{H{SoHySqHoTsH_UkGgRaG}RgG}RyFyRoFyRsFmSoFgScFkSuFaU}FqVoFcVcFmVuD_RqDcSaDsRkD_T{Fy^oFc_@{Ek_@uEy_@_Ek]oDu^wCs^kC__@aCi^sBg_@wAuYmAeZy@wZq@cZUaZByY^iZv@wYhBg_@fCo^pA_N|AiNfBcNrBiN`CaOnCwNvCwN|CuMpEiRtE{QhFkRnFsQvF}QlE}MrQmh@x]abA~@iCbm@ieBxOma@xXws@tMi[bLi\\pu@o|BhDqMlFcS|BgInBmI|EcUjEeUdEqU~DaVrCiTnC_U~BuTvBaUlAcOfAcO~@cPz@oOpA}[~@yZBm@ZiRJyRJcSDuRMgMK{MY{NY{Lc@eN_@_Ne@mMk@sMiAmQoA_RwAyRcBiQaCkUeAoIaAqI{C_TeDsSkCmNsCmMuCmMwCqL_CoI{B_IaC}HcCsH{BwG{BeGeCgGgC{FaDaH{CaGiI_OaEcHwDcGeEgG{DkFaEcFeEwEmLoLsFyEuFqEyFgE{F{DmDyBkDuBaJ_FiJuE_JeEoLgFw^sOaJ{DiJ}DqDeBqDeBkDeBkDkBuE_CiEaCqEkCgEoCwE{CgE{C}FuE{F}EgEgEiEiEqEoFiDkE{BqC}B}C}BiDsBcD_EqGyDuGsDyGkDcH{CwGmCkGmCeHeC{GgCwH{BeH{B}HsBuHqBsIgBgIiBmIcBqIwAeIqAcIqAsImAcIkBmNiB{NeE_^eFsb@eFwb@_AkG}@cGcAoGgAgGeAoGeAcGaAoFcAoFuC}L_DcMcDmLgDwK{C_J_DwIuDyIoDcIyDuH}DsHaEmH_EgH}QeZuRmYyRsXmRcYwLyRqKgRkFgKaHgOmC}GmDoJyFgPcFeQkE{QuD_QaCwM{BqNcBmNqAyNyAqQgAuRw@yS[sQMaLBwKDaLRsLZ}Nl@yOjB_]nAyS|AsTrEuh@~Kc{AxA_VzAkVhAeWfAqVh@eO^cP\\}ORcPPgQF}QGmQUuRc@mTe@}Rw@{ScAgSaCm_@aDg_@kD_]eBcNqBkMgCmPsCqP_D{PgDqP{CuM{CkMaDgM_DkLqJmZ_KgYqEyLsEkLcGmNiGmMyEkJeF{JwNcVmMcSuMuRsLiOeMaOq[k\\yTqTmAgAm^e\\gZiX{XyWgU}T_RwR}TmWkP}T{I}LqM}RiO{W_J_QuKgTeLyWoIoSeJoWiKw[aIkXaG_UuHi\\aJic@sGu_@eFq^iGgg@gDw]_F_j@MuAaAmKaHix@{Eqg@k@yFaCmV}B_S}ByQmC_S}CiR_EkTaEoT_FyTyE_TcFsReFiQwL__@mMu^gHqQuHgQcIeQyH}NoS__@gTi]iA}AwEsGcHcJqQuTmV}WcWoVsWuVcKoJ}JeK{OaQcPcRoO{R{NcT_QeYcPmYkGwMwFuLsFeM}EiLsF_OgF}MuFmO_FoNeKe[yJy[qJuZkKw[iJ_XaEcLgEeK_GqMgH{NkHiNuHgN}HiMaGgJkGaJsGkIoGiI_GuG{FyFuOqOyIeIiJuHmVcRam@ca@aSaNuB}Amm@cd@}JmIcHsGgH_HyEmEuEyE_FmFiE{EmUoZcSsZoLiT{Swb@kSmg@qQed@kj@kqAiKyT{KmRmH}LkOeUiPmS}QgRoU}RqOqK{YcSct@s`@gl@{\\_e@uZia@c]cPgPcQwScOeToRw[}Qi_@_Ok_@eLk\\uY}dA_ZahAsReq@iQke@oPc^iImPwPoYuZsd@gSaWiTeX_`@ud@uh@}n@{d@ok@ea@uh@_`@gi@uYcc@_`@ym@oW_e@kXii@m[ut@_Rce@{Syl@yQyl@yQqo@wOem@q[qoAgUe`Akb@cgB_P}p@g`@w_Bo[srA{ZyoA}WqhAsRwx@kb@qeB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":73848.914},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 5.","announcement":"In 1 mile, Keep left to take A 5.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 5.","announcement":"In a half mile, Keep left to take A 5.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 5 toward Karlsruhe, Stuttgart.","announcement":"Keep left to take A 5 toward Karlsruhe, Stuttgart.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[61,70,243],"duration":6.021,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6,"geometry_index":10067,"location":[6.799955,47.482375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,240],"duration":5.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.754,"geometry_index":10070,"location":[6.801923,47.48312]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,242],"duration":10.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.289,"geometry_index":10072,"location":[6.803823,47.483824]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,243],"duration":18.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.137,"geometry_index":10074,"location":[6.807264,47.484994]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,215],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.223,"geometry_index":10085,"location":[6.812476,47.488102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,212],"duration":4.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":4.666,"geometry_index":10086,"location":[6.812899,47.488555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,206],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.238,"geometry_index":10088,"location":[6.813629,47.489542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":2.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.244,"geometry_index":10089,"location":[6.813795,47.489808]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.814112,47.490285],"geometry_index":10090,"admin_index":2,"weight":1.75,"is_urban":true,"turn_weight":1,"duration":0.727,"bearings":[19,196,204],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":7.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":7.543,"geometry_index":10091,"location":[6.814194,47.490443]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,192],"duration":2.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.545,"geometry_index":10094,"location":[6.814863,47.4921]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,191],"duration":6.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":6.627,"geometry_index":10095,"location":[6.815026,47.492653]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,190],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.586,"geometry_index":10097,"location":[6.815399,47.494105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,191],"duration":18.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":20.607,"geometry_index":10098,"location":[6.815564,47.494665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,211],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.156,"geometry_index":10109,"location":[6.818084,47.498894]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,39,214],"duration":6.078,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":6.83,"geometry_index":10110,"location":[6.818286,47.4991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,218],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.006,"geometry_index":10112,"location":[6.819616,47.500355]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,219],"duration":16.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":17.918,"geometry_index":10113,"location":[6.820045,47.500713]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.82462,47.503408],"geometry_index":10119,"admin_index":2,"weight":1.703,"is_urban":true,"turn_weight":0.5,"duration":1.113,"bearings":[53,231,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":3.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.461,"geometry_index":10120,"location":[6.82495,47.503578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,234],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.607,"geometry_index":10122,"location":[6.825909,47.504056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,235],"duration":2.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.562,"geometry_index":10123,"location":[6.826356,47.504265]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,238],"duration":26.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":28.525,"geometry_index":10124,"location":[6.827095,47.504583]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":0.678,"geometry_index":10132,"location":[6.835489,47.507603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.553,"geometry_index":10133,"location":[6.835689,47.507674]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.836446,47.507942],"geometry_index":10134,"admin_index":2,"weight":27.518,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.217,"bearings":[65,77,242],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.844649,47.511386],"geometry_index":10143,"admin_index":2,"weight":7.807,"is_urban":false,"turn_weight":0.5,"duration":7.135,"bearings":[50,207,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,227],"duration":4.775,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.896,"geometry_index":10145,"location":[6.846628,47.512592]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":1.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.648,"geometry_index":10146,"location":[6.847783,47.513505]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":26.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.869,"geometry_index":10147,"location":[6.848173,47.513823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.621,"geometry_index":10156,"location":[6.853634,47.520179]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.996,"geometry_index":10157,"location":[6.853735,47.520335]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.854061,47.520835],"geometry_index":10158,"admin_index":2,"weight":0.785,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.805,"bearings":[22,204],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":23.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.357,"geometry_index":10159,"location":[6.854183,47.521035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":8.467,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.023,"geometry_index":10167,"location":[6.857658,47.527179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,198],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.979,"geometry_index":10170,"location":[6.858663,47.52926]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,197],"duration":198.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":188.758,"geometry_index":10172,"location":[6.859131,47.530302]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,340],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.303,"geometry_index":10238,"location":[6.857321,47.580461]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":4.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.018,"geometry_index":10239,"location":[6.857136,47.5808]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,343],"duration":0.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.299,"geometry_index":10241,"location":[6.856585,47.581826]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,344],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.291,"geometry_index":10242,"location":[6.856551,47.581903]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.856308,47.582505],"geometry_index":10244,"admin_index":2,"weight":21.279,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.406,"bearings":[166,347,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":4.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.965,"geometry_index":10256,"location":[6.856933,47.588445]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[10,30,191],"duration":12.973,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.305,"geometry_index":10259,"location":[6.857287,47.58951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,352],"duration":7.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.377,"geometry_index":10267,"location":[6.857442,47.59279]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.856821,47.594723],"geometry_index":10271,"admin_index":2,"weight":13.551,"is_urban":false,"turn_weight":0.75,"duration":13.494,"bearings":[151,165,344],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":26.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":25.504,"geometry_index":10276,"location":[6.855726,47.598162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,360],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.02,"geometry_index":10288,"location":[6.856956,47.605124]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":24.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.203,"geometry_index":10292,"location":[6.856794,47.607006]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":7.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.988,"geometry_index":10303,"location":[6.856487,47.613495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.856958,47.615559],"geometry_index":10306,"admin_index":2,"weight":1.695,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.705,"bearings":[12,32,190],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,192],"duration":5.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.615,"geometry_index":10307,"location":[6.857094,47.615987]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":9.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.279,"geometry_index":10311,"location":[6.857612,47.61734]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.396,"geometry_index":10316,"location":[6.858722,47.619457]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":11.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.049,"geometry_index":10323,"location":[6.860671,47.622154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":3.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.951,"geometry_index":10329,"location":[6.862799,47.624643]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":4.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.777,"geometry_index":10330,"location":[6.863498,47.62547]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":52.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":52.561,"geometry_index":10333,"location":[6.864435,47.626545]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.447,"geometry_index":10360,"location":[6.880562,47.63578]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.117,"geometry_index":10361,"location":[6.880674,47.635876]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.880959,47.63612],"geometry_index":10362,"admin_index":2,"weight":10.963,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.264,"bearings":[36,42,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.882975,47.638213],"geometry_index":10366,"admin_index":2,"weight":7.094,"is_urban":false,"turn_weight":0.5,"duration":6.947,"bearings":[32,201,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,215],"duration":13.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.852,"geometry_index":10369,"location":[6.884345,47.639615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,237],"duration":13.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.23,"geometry_index":10376,"location":[6.887937,47.641889]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,258],"duration":13.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.955,"geometry_index":10383,"location":[6.89268,47.643115]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":1.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.545,"geometry_index":10389,"location":[6.897646,47.643526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,263],"duration":34.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":32.332,"geometry_index":10390,"location":[6.898268,47.64358]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.6,"geometry_index":10403,"location":[6.909922,47.645945]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":1.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.869,"geometry_index":10404,"location":[6.910126,47.646012]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[6.910756,47.646219],"geometry_index":10405,"admin_index":2,"weight":24.785,"is_urban":false,"turn_weight":15,"duration":10.32,"bearings":[63,75,244],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":6.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.209,"geometry_index":10408,"location":[6.914188,47.647402]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.916402,47.648175],"geometry_index":10409,"admin_index":2,"weight":11.756,"is_urban":false,"turn_weight":0.5,"duration":11.867,"bearings":[63,229,243],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.920418,47.649569],"geometry_index":10411,"admin_index":2,"weight":1.562,"is_urban":false,"turn_weight":0.5,"duration":1.137,"bearings":[63,229,243],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":11.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.559,"geometry_index":10412,"location":[6.9208,47.649698]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":25.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.988,"geometry_index":10414,"location":[6.924561,47.651018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":57.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.463,"geometry_index":10419,"location":[6.933349,47.654082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":2.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.201,"geometry_index":10434,"location":[6.951027,47.662575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":0.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.189,"geometry_index":10435,"location":[6.9517,47.663013]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.951756,47.663051],"geometry_index":10436,"admin_index":2,"weight":19.916,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.137,"bearings":[46,56,225],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.957945,47.666841],"geometry_index":10441,"admin_index":2,"weight":12.117,"is_urban":false,"turn_weight":1,"duration":12.359,"bearings":[51,220,231],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,236],"duration":26.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.664,"geometry_index":10445,"location":[6.961748,47.668667]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":9.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.166,"geometry_index":10450,"location":[6.970361,47.672007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":8.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.734,"geometry_index":10452,"location":[6.973242,47.673076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":7.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.168,"geometry_index":10454,"location":[6.975886,47.673982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":6.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.711,"geometry_index":10456,"location":[6.978032,47.674654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":19.865,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.873,"geometry_index":10457,"location":[6.979751,47.675178]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.981836,47.675806],"geometry_index":10459,"admin_index":2,"weight":26.16,"is_urban":false,"toll_collection":{"name":"Fontaine Larivière","type":"toll_booth"},"turn_weight":15,"duration":12.4,"bearings":[68,246],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,247],"duration":6.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.799,"geometry_index":10461,"location":[6.982976,47.676126]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,246],"duration":5.307,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.752,"geometry_index":10462,"location":[6.98422,47.676507]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,241],"duration":2.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.986,"geometry_index":10463,"location":[6.985503,47.676984]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":3.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.578,"geometry_index":10464,"location":[6.986064,47.677156]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.311,"geometry_index":10465,"location":[6.987224,47.677504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":18.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.391,"geometry_index":10466,"location":[6.987337,47.677538]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,244],"duration":96.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":86.812,"geometry_index":10470,"location":[6.993562,47.679514]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.158,"geometry_index":10495,"location":[7.020712,47.695188]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.020753,47.695228],"geometry_index":10496,"admin_index":2,"weight":20.031,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.264,"bearings":[35,44,215],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.025815,47.699889],"geometry_index":10504,"admin_index":2,"weight":14.068,"is_urban":false,"turn_weight":1,"duration":14.539,"bearings":[40,203,219],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,224],"duration":234.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":211.141,"geometry_index":10509,"location":[7.029054,47.70231]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,265],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.102,"geometry_index":10576,"location":[7.102522,47.7101]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":32.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":29.16,"geometry_index":10577,"location":[7.102984,47.710132]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.979,"geometry_index":10588,"location":[7.115083,47.71142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":40.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":36.152,"geometry_index":10589,"location":[7.115502,47.711479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":1.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.732,"geometry_index":10598,"location":[7.129942,47.714309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.130618,47.71448],"geometry_index":10599,"admin_index":3,"weight":27.426,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":30.48,"bearings":[69,83,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.140857,47.717502],"geometry_index":10608,"admin_index":3,"weight":12.355,"is_urban":false,"turn_weight":1,"duration":12.295,"bearings":[64,227,244],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,244],"duration":54.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":50.35,"geometry_index":10612,"location":[7.144954,47.718836]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":6.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.428,"geometry_index":10626,"location":[7.162919,47.725025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":7.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.545,"geometry_index":10629,"location":[7.165312,47.725678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":0.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.551,"geometry_index":10632,"location":[7.167849,47.7263]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":2.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.689,"geometry_index":10633,"location":[7.168069,47.726352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.227,"geometry_index":10634,"location":[7.169126,47.726586]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.169214,47.726605],"geometry_index":10635,"admin_index":3,"weight":4.729,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.26,"bearings":[72,89,252],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":26.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":24.002,"geometry_index":10637,"location":[7.171029,47.727]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.180269,47.728965],"geometry_index":10644,"admin_index":3,"weight":7.354,"is_urban":false,"turn_weight":0.5,"duration":7.623,"bearings":[74,248,253],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":3.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.053,"geometry_index":10646,"location":[7.183801,47.729629]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":28.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":25.078,"geometry_index":10647,"location":[7.185431,47.729908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":154.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":143.01,"geometry_index":10656,"location":[7.198716,47.732463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":0.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.514,"geometry_index":10703,"location":[7.270294,47.745766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":2.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.049,"geometry_index":10704,"location":[7.27053,47.745823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.271459,47.74605],"geometry_index":10705,"admin_index":3,"weight":7.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.184,"bearings":[69,82,250],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":4.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.824,"geometry_index":10707,"location":[7.273875,47.746693]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.275467,47.747149],"geometry_index":10708,"admin_index":3,"weight":1.398,"is_urban":false,"turn_weight":0.75,"duration":0.641,"bearings":[66,220,247],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":3.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.123,"geometry_index":10709,"location":[7.275658,47.747205]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.276601,47.74749],"geometry_index":10710,"admin_index":3,"weight":4.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.961,"bearings":[65,94,246],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":12.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.779,"geometry_index":10711,"location":[7.277855,47.747886]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.281762,47.749232],"geometry_index":10716,"admin_index":3,"weight":10.273,"is_urban":false,"turn_weight":0.75,"duration":9.09,"bearings":[61,227,242],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,241],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.039,"geometry_index":10718,"location":[7.28476,47.750359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":13.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.785,"geometry_index":10721,"location":[7.286314,47.750985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.189,"geometry_index":10724,"location":[7.290493,47.752794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":1.936,"geometry_index":10725,"location":[7.290549,47.752819]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,236],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.229,"geometry_index":10726,"location":[7.291114,47.753071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":10.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":11.127,"geometry_index":10727,"location":[7.291176,47.753098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.387,"geometry_index":10730,"location":[7.293756,47.754219]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":3.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.482,"geometry_index":10731,"location":[7.293883,47.754275]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":0.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.914,"geometry_index":10732,"location":[7.295001,47.754751]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.295299,47.754878],"geometry_index":10733,"admin_index":3,"weight":16.355,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":15.223,"bearings":[59,72,238],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":9.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":10.295,"geometry_index":10738,"location":[7.300713,47.756566]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,250],"duration":9.354,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":10.268,"geometry_index":10741,"location":[7.30429,47.757371]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":61.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":68.887,"geometry_index":10746,"location":[7.307709,47.758396]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,255],"duration":3.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.469,"geometry_index":10771,"location":[7.329903,47.764769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,251],"duration":7.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":8.877,"geometry_index":10773,"location":[7.331018,47.765011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":3.623,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":4.141,"geometry_index":10776,"location":[7.333736,47.765823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,240],"duration":5.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":6.742,"geometry_index":10778,"location":[7.334961,47.766292]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.867,"geometry_index":10781,"location":[7.336808,47.767194]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,230],"duration":0.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.314,"geometry_index":10782,"location":[7.337037,47.767324]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.337114,47.767372],"geometry_index":10783,"admin_index":3,"weight":3.273,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":2.854,"bearings":[49,62,227],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.318,"geometry_index":10784,"location":[7.337947,47.767863]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":2.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.086,"geometry_index":10785,"location":[7.338031,47.767913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,225],"duration":3.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.4,"geometry_index":10788,"location":[7.338791,47.768407]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,226],"duration":5.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":5.885,"geometry_index":10789,"location":[7.339645,47.768959]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.341158,47.769902],"geometry_index":10790,"admin_index":3,"weight":1.346,"is_urban":true,"turn_weight":0.75,"duration":0.537,"bearings":[48,217,227],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.357,"geometry_index":10791,"location":[7.34131,47.769993]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.341399,47.770046],"geometry_index":10792,"admin_index":3,"weight":5.387,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":4.809,"bearings":[46,53,228],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,230],"duration":7.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":8.062,"geometry_index":10794,"location":[7.342784,47.770904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,238],"duration":35.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":38.891,"geometry_index":10800,"location":[7.345077,47.772012]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.358395,47.774071],"geometry_index":10818,"admin_index":3,"weight":6.652,"is_urban":true,"turn_weight":0.75,"duration":5.373,"bearings":[96,263,275],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,280],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":2.438,"geometry_index":10823,"location":[7.360446,47.773864]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,283],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.971,"geometry_index":10824,"location":[7.361273,47.773732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":32.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":35.162,"geometry_index":10825,"location":[7.361599,47.773678]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":1.99,"geometry_index":10839,"location":[7.374154,47.77245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":2.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":2.617,"geometry_index":10841,"location":[7.374869,47.772484]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.375809,47.772543],"geometry_index":10843,"admin_index":3,"weight":5.383,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":5.027,"bearings":[83,264],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,260],"duration":18.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.861,"geometry_index":10846,"location":[7.377837,47.772745]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,247],"duration":3.178,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.316,"geometry_index":10857,"location":[7.385177,47.774317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":11.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.195,"geometry_index":10858,"location":[7.386298,47.774671]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":0.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.357,"geometry_index":10862,"location":[7.390375,47.776069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.390495,47.776112],"geometry_index":10863,"admin_index":3,"weight":12.219,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.928,"bearings":[62,92,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":10.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.547,"geometry_index":10865,"location":[7.39464,47.777598]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.398217,47.778884],"geometry_index":10867,"admin_index":3,"weight":5.291,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.182,"bearings":[61,73,242],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,243],"duration":29.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":29.412,"geometry_index":10869,"location":[7.4,47.77953]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.410197,47.783204],"geometry_index":10872,"admin_index":3,"weight":11.633,"is_urban":false,"turn_weight":1,"duration":10.912,"bearings":[62,227,241],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,242],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.818,"geometry_index":10873,"location":[7.413871,47.784534]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":9.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.766,"geometry_index":10874,"location":[7.414157,47.78464]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.764,"geometry_index":10877,"location":[7.417267,47.785766]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":2.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.789,"geometry_index":10878,"location":[7.417534,47.785861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.418528,47.786215],"geometry_index":10879,"admin_index":3,"weight":29.178,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":31.551,"bearings":[64,75,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[78,251,255],"duration":6.494,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6,"geometry_index":10886,"location":[7.429939,47.789253]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,259],"duration":181.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":168.07,"geometry_index":10888,"location":[7.43244,47.789603]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":2.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.324,"geometry_index":10909,"location":[7.501588,47.778908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":0.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.471,"geometry_index":10910,"location":[7.502534,47.778706]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":3.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.551,"geometry_index":10911,"location":[7.502728,47.778663]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.504162,47.778348],"geometry_index":10912,"admin_index":3,"weight":5.506,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.971,"bearings":[108,122,288],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,288],"duration":5.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.539,"geometry_index":10913,"location":[7.506282,47.777884]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.508411,47.777401],"geometry_index":10914,"admin_index":3,"weight":4.104,"is_urban":false,"turn_weight":1,"duration":3.375,"bearings":[108,277,289],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.509629,47.777142],"geometry_index":10915,"admin_index":3,"weight":4.07,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.307,"bearings":[106,288],"out":0,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":10.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.918,"geometry_index":10917,"location":[7.511162,47.776858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,281],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.916,"geometry_index":10921,"location":[7.514943,47.776283]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,280],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.162,"geometry_index":10922,"location":[7.515686,47.776193]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,283],"duration":2.143,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.012,"geometry_index":10923,"location":[7.516128,47.776127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,278],"duration":10.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.363,"geometry_index":10924,"location":[7.516916,47.776048]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":15.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.076,"geometry_index":10927,"location":[7.520943,47.775781]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,273],"duration":4.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.01,"geometry_index":10929,"location":[7.526707,47.775546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,272],"duration":4.736,"turn_weight":1850.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1854.555,"geometry_index":10931,"location":[7.528279,47.775488]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,266],"duration":4.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.521,"geometry_index":10935,"location":[7.529942,47.775512]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,259],"duration":1.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.121,"geometry_index":10940,"location":[7.53165,47.775673]},{"bearings":[75,168,258],"entry":[true,false,false],"classes":["motorway"],"in":2,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":10941,"location":[7.532079,47.775734]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Karlsruhe"},{"type":"text","text":"/"},{"type":"text","text":"Stuttgart"}],"type":"fork","modifier":"left","text":"Karlsruhe / Stuttgart"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 5"}],"type":"fork","modifier":"left","text":"A 5"},"distanceAlongGeometry":73878.914},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Karlsruhe"},{"type":"text","text":"/"},{"type":"text","text":"Stuttgart"}],"type":"fork","modifier":"left","text":"Karlsruhe / Stuttgart"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 5"}],"type":"fork","modifier":"left","text":"A 5"},"distanceAlongGeometry":1609.344}],"destinations":"A 36: Strasbourg, Mulhouse, Belfort, Montbéliard","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 36/La Comtoise toward Strasbourg/Mulhouse/Belfort/Montbéliard.","modifier":"slight left","bearing_after":61,"bearing_before":63,"location":[6.799955,47.482375]},"speedLimitSign":"vienna","name":"La Comtoise","weight_typical":2536.406,"duration_typical":2595.049,"duration":2595.049,"distance":73878.914,"driving_side":"right","weight":4386.58,"mode":"driving","ref":"A 36","geometry":"m_bqyAed`~KcMge@wYkeAuDkMiQim@uXmgAmZypAul@gdC}U{z@eN_b@gOab@_Sad@wMaXkHoNaW_b@kPwU}OuSeP}QeSySi[mYo_@{We\\wSsOkIy\\yR{HcDuk@oSi[iJq]_Iqa@eIym@kJ}j@}J_b@iIeB]mk@yPiSiGsf@}Q}OmG{ZwOkNaIsKmGkXuQaYkSo_@w[{KsKgy@sz@eSoVkUyYeSyZwS_]eSy]}Vge@qb@u_Ayn@k}AsIsSuQgd@eJuUaL}Z{Rem@sLcc@sNgj@gRit@kPgp@{Jya@cYyeAae@ciBym@}aCmCoKwOin@aUocAqVkbA_XeaAoY}_A{Zs~@o\\}`AyO_c@yNq\\c[qq@m^su@}j@adAax@egA{RkW{r@i|@yeA{cAcXkVEE{zAsjAo}@gn@ad@uY}i@g[{MwHwHiEg^kSoKsFmPsIgb@mToy@{a@gn@wZMGsgAeh@}_B{r@qv@e\\az@u\\gWuIwm@mUc]mL_b@yNgt@aVwu@_Vof@uNabAiYo~A_b@gaBm`@{~Aa]a_AwQc}@gP{Z}E}zAsU_mBqVugA}LwvAcN_{@_HosA}IwjAsF{Zq@yt@oBcx@g@cy@Fix@xAgo@fCyy@~Fup@zG_i@nHoUhEg[xFeh@`L}LvCat@bT}x@xY{]vNs^rPim@~Zgh@pY}kAfv@gf@n]ye@x\\gg@t]kf@v[ug@nXkSbJuT|Imc@fNaj@lMyl@~Hmg@nDoa@d@}]M{[aBe^yCw[}Eo[eGqm@qMar@}OiViEuPoBoVwB_^mA}a@?m]pAee@rEih@jKm`@fLyc@lPeTpJsWtLof@vSyCbAgNtEkUnGq[|HeWpDqf@vEgU|@mVFaZ]eQcAc`@_EuV{DyReEod@uL{hAu[m]gJkYeGwHuAeSoDi[qDa\\oBsg@kAkHLs_@b@kd@bCmFp@gJjAgc@jHsUfFuq@xRw_Bbg@g`@fKk^nG{Y|CuYrAmMl@ea@M}_@}Ae[cDi[oEgv@_O{f@{Jks@aN{c@yGsl@mFsm@cCmS?aT@wk@hBeW|AsZxB_a@jDi\\xCeQbBwg@bE{k@vDwe@|A}i@r@eg@?ue@s@eh@sBuc@iDyc@cFip@sI{i@uJwYoGmNeDyRsFgT{Fa[uJ{ZoKyUcJsb@mQuUmLiV{Lk[eQuU{Mk\\eSwZ}RiUoPmXkSsKwIg_@c[oZmVmZcVoOyLc[_WwVoSur@uj@mS_P}XmUyScRsRyQsRiSiZs]{\\{c@eXab@cT}^yT{b@wVwi@aToi@qVct@mPgk@yOim@wTg_AuVycAoN}g@eNgb@oSij@}Og^oZem@aOcXeNeVec@{t@}a@er@aRsYoRgX}MuQaLqN_E_FgNyP_VwWcVmUei@eg@oi@se@qReQkd@qb@u]{^cPoR{Ui[oTu[sSc^cUke@sSsf@gP{e@oMuc@_Ik[sNuo@gJ_h@oHci@uFwi@aGyw@u@eNeBsa@oDg}@eCow@iE}pAyC{z@kB{e@aEe`AwGumAgFqw@eLasAuLaiAyRyzAaDsRiEoXqIcg@kNcw@sJkf@qOuu@qLqi@eCwK}Kkf@mj@e}BqOoo@}Lyf@io@kiCgh@}uB{l@acCaG{Va]wsAms@iuCsYkkAse@inBag@wqBqr@qtCsa@g`B_n@gaCsM}f@y]uqAg[igAi\\ahAw]{fAsb@wnAyg@iuAme@{jAq_@_|@{\\}t@oc@m}@ad@m{@c|@q_Bae@my@kZai@kAoB_cBgyCuXgg@eYwi@kd@_~@sn@quA}Red@qa@geAa^_bAq[g~@q]uhAy[qgAaf@{cBkgAm}D}d@wcBif@mgBoZsjAu[}nA}ZitAw\\}|AgKeg@w_@mjBkUmiA{O{v@yQobAe@wByVwlAy\\eoAwIab@wTogAcAaFkUwgAgZuvAg`@ahBsg@qzB{|@kuD}k@waCck@k~Buj@qxB{Y_dAeZ_bAc^_gA_Yqu@ea@gcAgb@y`A}b@a~@qb@yy@_d@iw@oe@cw@yc@yp@}c@}m@mh@cq@yi@ap@ec@oe@{i@_l@wp@cr@yr@gs@ux@sz@mYwYsa@ua@oAqAmuA}wAuWiXq[a]ak@qn@kZi]qZi^sUyY_]ac@g\\ic@w\\me@ma@wl@ca@ao@wV{`@}a@cu@qZ{i@sEgIem@kkAwp@ewAoRgc@e^_{@}b@agAks@_kBi[cz@kd@omAg_@ucA_k@ebBsRkn@aQkn@iNch@sHc[mKsd@cJub@mNcs@cN_x@aJsm@qNkfA{Hyt@sF}j@yEwm@sDqj@wDmp@qBub@sBaj@iBqt@cAao@c@mn@Uiu@Pao@l@kl@rAky@vAqq@nBiw@rCwq@tCun@xG{sAlGyrAlG_kAvFgfAvJykBvFyfArWmaFvMweCdH{sA~G{xAjGg}AbD_`AzCcbA|Bk|@|DgjBdCgfBbBg`BfAmnBZevBYsfBe@_eB}Aw|AeC_aBgBu~@iB{x@a@kR_A{[gBum@cC}t@{D}dAgEcdAsDax@mDyt@kJefBuJabBsEst@cI{lAcI{fAuBeYeJojAuOqgByQymBuX}hC{]_xCgV{iBoQioAuQ}nAeLqt@uIgi@kSmmAiUgsAqP{}@wPc}@y[q_BgPqw@eSo~@wRw{@{W{iAaIe^sRo{@uXqmA_[ytA{s@e_Dk[gtAk\\atAkr@gmC_u@amCcYycAgXscAcWkcAaKua@}Jac@_Pgs@aPqu@mPmw@yRecAoIoc@mQobA{Jql@gCmOoNs|@cRooAgBwLsMaaAe@oD}McdAwHik@iIan@sSi~AwM}bAyMscAaOoiAgWwqB_UilB{SojBsSgpBmP{dB_Hss@uVqtCkQwlBqS{oB{PqzA_Q_wA_RyuAsMs~@qQojAkDsUwAiJ_Lis@}RukAu[khBuNqv@uNou@gZi_Bq@qDge@}eCem@m`DaF}Vwh@orCgd@ufCgc@ujCm[}tBeYoqB{XkwBaQsyAiQo~AqK}cAeIsy@}OmeB}Mo`BcU_|CeIenAuEkw@_OaoCgL_yBaTqaEkTwdEyPueDiJ}fB{SaaEuIm_BkH}qA_IklA{KczAmLcxAcM}sAqUwzByNapA_M{`AiI{n@aKku@cEmYeJym@qBwMeMay@yXuaBkMis@o[obBoB}JyP}y@wWkmAqBgJ_Oeo@cXeiAqQss@{S}x@ga@yzAec@q~AkMwb@mQem@iEeNwRon@ev@c}Bce@qvAq@oBwNib@u@{BuVcw@ACim@_hBoB}Fw\\{dA}FsQaSmq@_XmgAsUkfAyQs_A_RonA{Jcq@qUgjB{NeaAcLwq@oMir@_L{h@{Mal@qGuWmOek@s^amAo\\o`AgV_q@{Wor@qn@w`B_Sci@gQ{f@eOgd@yPyj@wIgZqJe_@sOkq@gJcd@iKqj@sKyr@eJ}w@eEgi@kF}r@{GajAeGs|AaJsjBgHsjAeHew@kEob@oEg_@sGmd@iPu_A}O_y@oOen@_Mid@iNgf@_c@okAiMg[aEuIcGiM_ByCu]as@cBgD{@gB_JgP_Q_Zoa@kt@}y@q}AuDoHiBqDgd@ux@kO{[eBqDgM}YiLgYkLa[{KyZgKu[eJ{ZmMkd@sHmZ{VujAkNmv@kJ_n@_Jwr@{Gso@sFin@yD_l@{Em~@oCs}@w@uj@Wuf@As^Loj@j@ib@rA_p@??h@mQ~Am`@fBs]jDul@fGur@jBkSvG{r@zJmaA~PigBlIm_AvEkn@vEcx@hFilApBer@bBkz@b@gi@Pop@D}j@Wgh@]i[u@oc@MeGg@_WmAwa@cBme@uCgo@yCag@OmCsE}o@oFkp@gH}s@oEua@cH}k@cNg`AkMmv@ESmMir@sMyq@cUaeAeOup@w]oxAeV}aAgPuo@uAoFav@}wCyd@ciBmq@qjC}\\_sAsTsx@wQyt@yT}{@ajCqcKwcAyzDcrAsdFsE{PsXadAyRyu@}WoeA}DuOcUc}@ot@s`Dgm@mwCqHeb@gMou@}`@alC{MieAoPaaBgLkzAsG}_AkGqjAoFurAiE{dBgAcx@m@kx@BypBt@wlA`CgtAbMa|DpIifBrJuvA~`@mjFnc@uqF~f@ilFji@omFrrBkbQ`dBkmMlyBepPbdBilMdq@}dFxGch@rKcz@tAcKtRsxA~[ocCd]adCdOckAlHqn@hGgo@tMmvA`J_iAfH}aA\\}FrDmm@bCsZ|Cgp@zDs`A~Ca~@xD_zBhGmgEjEy~ChAuq@h@qn@Je\\My]K_Ua@}TgAyZo@sS_AoSy@aQoAwRyByYu@eH"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 22 miles.","announcement":"Continue for 22 miles.","distanceAlongGeometry":35480.297},{"ssmlAnnouncement":"In 2 miles, Take exit 62.","announcement":"In 2 miles, Take exit 62.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 62.","announcement":"In a half mile, Take exit 62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 62 toward Freiburg, Donaueschingen. Then Keep right to take B 31a.","announcement":"Take exit 62 toward Freiburg, Donaueschingen. Then Keep right to take B 31a.","distanceAlongGeometry":230.417}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.532226,47.775761],"geometry_index":10942,"admin_index":4,"weight":9.664,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":10.455,"bearings":[75,82,255],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,246],"duration":2.465,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":2.281,"geometry_index":10948,"location":[7.535591,47.776546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":29.504,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":27.291,"geometry_index":10950,"location":[7.536328,47.776823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,344],"duration":6.301,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"weight":5.828,"geometry_index":10983,"location":[7.536838,47.782726]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.536526,47.784148],"geometry_index":10987,"admin_index":4,"weight":18.641,"is_urban":false,"turn_weight":11.75,"duration":7.465,"bearings":[9,176,189],"out":0,"in":1,"turn_duration":0.015,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,190],"duration":9.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.854,"geometry_index":10989,"location":[7.53699,47.785996]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,193],"duration":11.195,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.07,"geometry_index":10991,"location":[7.537784,47.788415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,196],"duration":5.973,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.369,"geometry_index":10993,"location":[7.538917,47.791156]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.623,"geometry_index":10994,"location":[7.539625,47.792647]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":39.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.367,"geometry_index":10995,"location":[7.539706,47.792817]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":39.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.402,"geometry_index":11003,"location":[7.544819,47.802112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.713,"geometry_index":11009,"location":[7.550958,47.811144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,205],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":11010,"location":[7.551074,47.811308]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":0.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.285,"geometry_index":11011,"location":[7.551212,47.811493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.199,"geometry_index":11012,"location":[7.551258,47.811556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.594,"geometry_index":11013,"location":[7.552448,47.813182]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.553525,47.814678],"geometry_index":11014,"admin_index":4,"weight":4.508,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.643,"bearings":[26,46,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":1.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.824,"geometry_index":11015,"location":[7.554302,47.815737]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.554617,47.816166],"geometry_index":11016,"admin_index":4,"weight":6.502,"is_urban":false,"turn_weight":0.5,"duration":6.176,"bearings":[25,191,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":6.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.459,"geometry_index":11017,"location":[7.555601,47.817553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":1.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.137,"geometry_index":11018,"location":[7.556682,47.819036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":32.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.553,"geometry_index":11019,"location":[7.55688,47.819315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":14.875,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.74,"geometry_index":11025,"location":[7.562403,47.828191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":50.154,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.123,"geometry_index":11027,"location":[7.564022,47.83185]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":2.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.98,"geometry_index":11036,"location":[7.567216,47.845284]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":40.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.816,"geometry_index":11037,"location":[7.567229,47.845877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,358],"duration":14.789,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.934,"geometry_index":11044,"location":[7.56641,47.856884]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,180],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.908,"geometry_index":11047,"location":[7.566294,47.86072]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":9.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.693,"geometry_index":11048,"location":[7.566313,47.860991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":0.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.027,"geometry_index":11051,"location":[7.566579,47.863881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":8.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.668,"geometry_index":11052,"location":[7.566581,47.863894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,188],"duration":0.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.027,"geometry_index":11055,"location":[7.567044,47.866426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,186],"duration":14.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.609,"geometry_index":11056,"location":[7.567046,47.866438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":0.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.027,"geometry_index":11061,"location":[7.568284,47.870552]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.1,"geometry_index":11062,"location":[7.568288,47.870562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,197],"duration":9.816,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.828,"geometry_index":11064,"location":[7.56941,47.873146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":9.959,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.955,"geometry_index":11067,"location":[7.570691,47.875672]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,204],"duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.031,"geometry_index":11069,"location":[7.572189,47.878103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,206],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.703,"geometry_index":11070,"location":[7.572194,47.87811]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,204],"duration":47.527,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":41.58,"geometry_index":11071,"location":[7.572317,47.878297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,206],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.631,"geometry_index":11081,"location":[7.581021,47.889288]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":68.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.09,"geometry_index":11082,"location":[7.581128,47.889461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":8.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.055,"geometry_index":11095,"location":[7.588693,47.906673]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.589546,47.908949],"geometry_index":11096,"admin_index":4,"weight":6.271,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.977,"bearings":[17,41,194],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.590235,47.910499],"geometry_index":11098,"admin_index":4,"weight":12.395,"is_urban":false,"turn_weight":1,"duration":12.668,"bearings":[18,176,196],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":30.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.812,"geometry_index":11099,"location":[7.591514,47.91318]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,205],"duration":0.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.477,"geometry_index":11105,"location":[7.595391,47.919529]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,203],"duration":6.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.754,"geometry_index":11106,"location":[7.595473,47.919656]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":13.969,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.207,"geometry_index":11107,"location":[7.596518,47.921103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,210],"duration":79.615,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":69.656,"geometry_index":11110,"location":[7.598911,47.924036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,236],"duration":0.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.518,"geometry_index":11129,"location":[7.618456,47.937965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,239],"duration":19.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.594,"geometry_index":11130,"location":[7.618633,47.938037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,240],"duration":1.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.988,"geometry_index":11134,"location":[7.624383,47.940427]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":34.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.057,"geometry_index":11135,"location":[7.624722,47.940554]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,244],"duration":0.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.797,"geometry_index":11140,"location":[7.635455,47.944258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,247],"duration":35.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.834,"geometry_index":11141,"location":[7.635727,47.944337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,252],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.133,"geometry_index":11147,"location":[7.647154,47.947372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":9.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.988,"geometry_index":11148,"location":[7.647584,47.947474]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":15.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.742,"geometry_index":11150,"location":[7.650772,47.948194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":21.982,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.768,"geometry_index":11153,"location":[7.655846,47.949174]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":5.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.969,"geometry_index":11156,"location":[7.662924,47.95032]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,257],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.895,"geometry_index":11157,"location":[7.664731,47.950597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,259],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.086,"geometry_index":11158,"location":[7.665045,47.950636]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.66578,47.95074],"geometry_index":11159,"admin_index":4,"weight":6.178,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.885,"bearings":[77,94,258],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.667927,47.951056],"geometry_index":11162,"admin_index":4,"weight":2.928,"is_urban":false,"turn_weight":1,"duration":2.162,"bearings":[77,238,257],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,257],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.225,"geometry_index":11163,"location":[7.668583,47.951155]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,257],"duration":4.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.607,"geometry_index":11164,"location":[7.669022,47.951223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.246,"geometry_index":11165,"location":[7.670295,47.95144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":15.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.58,"geometry_index":11166,"location":[7.67075,47.951524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,253],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.344,"geometry_index":11169,"location":[7.675832,47.952493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":60.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":55.889,"geometry_index":11170,"location":[7.675955,47.952521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":0.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.316,"geometry_index":11181,"location":[7.695589,47.958825]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":28.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.605,"geometry_index":11182,"location":[7.695687,47.958866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.912,"geometry_index":11187,"location":[7.704276,47.962661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":37.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.434,"geometry_index":11188,"location":[7.704561,47.962795]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.711,"geometry_index":11194,"location":[7.715296,47.96823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":1.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.227,"geometry_index":11195,"location":[7.716977,47.969157]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":0.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.793,"geometry_index":11196,"location":[7.717315,47.969347]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.71754,47.969473],"geometry_index":11197,"admin_index":4,"weight":18.824,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.357,"bearings":[50,61,230],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":5.811,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.355,"geometry_index":11201,"location":[7.72296,47.972653]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":3.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.158,"geometry_index":11202,"location":[7.724503,47.973602]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.996,"geometry_index":11204,"location":[7.72542,47.974158]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":12.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.523,"geometry_index":11205,"location":[7.72571,47.974335]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.602,"geometry_index":11208,"location":[7.729026,47.976497]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.682,"geometry_index":11209,"location":[7.729191,47.97661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":0.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.701,"geometry_index":11210,"location":[7.729378,47.976737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":5.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.072,"geometry_index":11211,"location":[7.729574,47.976871]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,225],"duration":5.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.354,"geometry_index":11212,"location":[7.730937,47.977789]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.732373,47.978765],"geometry_index":11213,"admin_index":4,"weight":6.18,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.885,"bearings":[43,63,225],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.734062,47.979984],"geometry_index":11215,"admin_index":4,"weight":1.756,"is_urban":false,"turn_weight":1,"duration":0.848,"bearings":[43,201,223],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.811,"geometry_index":11216,"location":[7.734312,47.980166]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":2.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.537,"geometry_index":11217,"location":[7.734585,47.980359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,223],"duration":6.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.777,"geometry_index":11218,"location":[7.735444,47.980977]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,222],"duration":0.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.244,"geometry_index":11219,"location":[7.737374,47.982397]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":27.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.049,"geometry_index":11220,"location":[7.737433,47.982442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,220],"duration":5.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.709,"geometry_index":11223,"location":[7.743692,47.987361]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.744846,47.988345],"geometry_index":11224,"admin_index":4,"weight":9.924,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.361,"bearings":[37,218],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":5.523,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.828,"geometry_index":11225,"location":[7.74724,47.990437]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":34.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.926,"geometry_index":11226,"location":[7.748366,47.991453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,213],"duration":0.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.754,"geometry_index":11230,"location":[7.754984,47.997939]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":60.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":52.592,"geometry_index":11231,"location":[7.755142,47.998105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":0.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.678,"geometry_index":11239,"location":[7.765532,48.010018]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":57.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.443,"geometry_index":11240,"location":[7.765672,48.010171]},{"bearings":[48,226],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":11252,"location":[7.77779,48.020083]}],"bannerInstructions":[{"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"62"},{"type":"text","text":"Freiburg"},{"type":"text","text":"/"},{"type":"text","text":"Donaueschingen"}],"type":"off ramp","modifier":"right","text":"Exit 62 Freiburg / Donaueschingen"},"distanceAlongGeometry":35506.965},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"62"},{"type":"text","text":"Freiburg"},{"type":"text","text":"/"},{"type":"text","text":"Donaueschingen"}],"type":"off ramp","modifier":"right","text":"Exit 62 Freiburg / Donaueschingen"},"distanceAlongGeometry":3218.688}],"destinations":"A 5: Karlsruhe, Stuttgart, Freiburg","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 5 toward Karlsruhe/Stuttgart/Freiburg.","modifier":"slight left","bearing_after":75,"bearing_before":75,"location":[7.532226,47.775761]},"speedLimitSign":"vienna","name":"","weight_typical":1187.195,"duration_typical":1294.984,"duration":1294.984,"distance":35506.965,"driving_side":"right","weight":1187.195,"mode":"driving","ref":"A 5; E 35","geometry":"a`_czAckvjMyI{|@gDaX}DgY_E}WwG{^iKig@kEgR}IyY}DqMyGeQmG_N}IwOaFiIiF_HqG{HuEmEyFkF{FmEgH}EgGkDkH}CiGgCgIeCuGcB_I{AuHq@iH_@uHSaHNaIJeKvAuNlC_K~CyN|FoJbFyM|IkQ|NoUfSyWhTsOjKgL~FcRdGoOfCmL|Ayf@bCwx@kLwx@sNyoAyWkeAyWsvBio@ur@oUe|Agk@sIaDiAc@}tA_j@}zAyn@e|BecAogAkg@axBkfAe`A}c@yOwIq~Ac|@}}Ai|@itCkdB}hAyq@ifBkjAmn@u`@gIgFqJsG}B{AsdBkiAo|AibAeaAqo@yYuRuuAo|@u{AqbAmPkKqoBipAo@a@shA_r@qbBi~@}uAgq@qsDgaBuzAgj@_hC}x@_j@_Q{hB{d@moA_ZadB_\\}jBuZ}pB{WydBwNchBwLmoAuDad@YsoAcB_}Al@evAbCkmAhFq`CrM}rBvMgeB`K}kAzCymAvA_sAK}Oe@gaBsEiv@aEaZ}BYCyf@wD{_A{Jqt@iJWCiIeA_p@uKerAyUe|A}^mTwFSGap@yPmoBis@cv@}X_gA_d@w]cPg~BmlAuWeOMIuJuFcv@cg@is@ad@qVuPebAqu@ssCs{B{uAijAaz@oo@gkAsz@k_Aio@qt@ee@yIuEozAc|@sz@ec@kx@m`@chA{f@aeA_d@{zA_j@}iAo_@orAk`@qlAyYwoAyXujC{k@qqB{b@e|@}UgmCit@s~@{[g`@eMqfD}nAaQsG_|@}`@emAmk@{mAqn@ykAmp@{rAiy@}FcDmyAi`Aom@ca@}|@aq@{iAk`Ak_Aox@cw@cu@y{@g~@ih@{j@yWk[}VgZsp@cy@ej@ot@ui@st@el@{|@mn@o`Aar@qjAiv@cuAqu@mxAex@gcBcq@a|Auk@{vAib@qgAyUup@oCaJsr@ssByk@qkBw\\gjAeV}y@}FeTun@c~Bwl@__Cau@w{Cok@{gCof@ayB}C_P}\\sbBeVopAq]akBe\\{lBsv@czEeT__BkE{Yo[}yBoOikAea@ghD{RmgBeFmj@w\\khDmYqeDmNmiBiP}oBmAsRoE}l@yHe}@_D}f@}Ca_@eE_h@gCmZqLqnAgDm[{^{kD_NymAuL}`Aw@uFoUebBmVo~A{Z{kB_\\{hBu[m_Bg^ibB}U}gA_t@ixCgz@a|Cmp@a{Bsm@qqBqAcEe`AkxCeHwTc`A}rCmx@y}Bgg@}uAkGyPsh@qvAgp@udBgu@qlBu_A}}BodAadCk{@coB}x@ahB{JcT{FaM__@cw@ojAkaCwt@wyAod@o|@iz@m_BkKcSkUed@aJcQqYug@ccA_hBmg@q|@aFiI}FuJkGgKkx@etA_|@wxAci@wx@aa@yn@kJsNaKaPse@ut@wwAswByAuBqcBqaCw}AcxBcoBojCo|@cgAwaCstCo~@keAohAynAcgB_lBk_Bm`BkbCk~BkI{H_gAgaAklBicBo|AyqAscBguA{vDawCowA_iA{m@{h@yp@yl@qHwGo~@k{@oeA{fAccAohAy{@qcAu`@kf@a`@ag@}z@{iAa`@_j@w_@aj@kx@mpAkr@cjAiv@cuA_u@owA"},{"ref":"A 5","mode":"driving","weight":11.602,"distance":174.489,"geometry":"e|}qzAkwxyMqP_h@gIuTm\\_w@","duration":12.398,"driving_side":"right","duration_typical":12.398,"weight_typical":11.602,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 62 toward Freiburg/Donaueschingen.","modifier":"slight right","bearing_after":57,"bearing_before":48,"location":[7.779206,48.020947]},"speedLimitUnit":"km/h","destinations":"Freiburg, Donaueschingen, Umkirch","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Freiburg"},{"type":"text","text":"/"},{"type":"text","text":"Donaueschingen"}],"type":"fork","modifier":"right","text":"Freiburg / Donaueschingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31a","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31a"}],"type":"fork","modifier":"right","text":"B 31a"},"distanceAlongGeometry":174.489}],"exits":"62","voiceInstructions":[{"ssmlAnnouncement":"Keep right to take B 31a toward Freiburg, Donaueschingen.","announcement":"Keep right to take B 31a toward Freiburg, Donaueschingen.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[7.779206,48.020947],"geometry_index":11253,"admin_index":4,"weight":6.117,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":6.625,"bearings":[49,57,228],"out":1,"in":2,"turn_duration":0.012,"classes":["motorway"],"entry":[true,true,false]},{"bearings":[52,235],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":11255,"location":[7.780209,48.021392]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6897.875},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Schwarzwaldstraße.","announcement":"In a quarter mile, Bear right onto Schwarzwaldstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Schwarzwaldstraße, B 31.","announcement":"Bear right onto Schwarzwaldstraße, B 31.","distanceAlongGeometry":69.382}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[51,67,232],"duration":36.98,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":1,"weight":35.111,"geometry_index":11256,"location":[7.781105,48.021863]},{"entry":[true,false,false],"in":1,"bearings":[137,301,315],"duration":1.666,"turn_weight":6.75,"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.355,"geometry_index":11269,"location":[7.787076,48.02168]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[137,317],"duration":24.994,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.369,"geometry_index":11270,"location":[7.787364,48.021472]},{"entry":[true,true,false],"in":2,"bearings":[143,162,322],"duration":8.961,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.729,"geometry_index":11276,"location":[7.791586,48.018144]},{"entry":[true,false,false],"in":2,"bearings":[143,296,323],"duration":6.459,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.291,"geometry_index":11277,"location":[7.793126,48.016789]},{"entry":[true,false],"in":1,"bearings":[143,324],"duration":0.701,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.684,"geometry_index":11279,"location":[7.794239,48.015801]},{"entry":[true,false],"in":1,"bearings":[144,323],"duration":1.355,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.322,"geometry_index":11280,"location":[7.794357,48.015695]},{"entry":[true,false],"in":1,"bearings":[146,324],"duration":14.82,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.82,"geometry_index":11281,"location":[7.794588,48.015485]},{"entry":[true,true,false],"in":2,"bearings":[148,169,328],"duration":11.244,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.238,"geometry_index":11284,"location":[7.796939,48.013116]},{"entry":[true,false],"in":1,"bearings":[148,328],"duration":8.805,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.025,"geometry_index":11285,"location":[7.798603,48.011361]},{"entry":[true,true,false],"in":2,"bearings":[148,162,328],"duration":9.109,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.33,"geometry_index":11286,"location":[7.799904,48.009988]},{"entry":[true,false,false],"in":2,"bearings":[147,310,328],"duration":4.953,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.055,"geometry_index":11288,"location":[7.801179,48.008643]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[148,327],"duration":1.973,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.021,"geometry_index":11289,"location":[7.801913,48.007892]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[148,328],"duration":4.143,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.246,"geometry_index":11290,"location":[7.802195,48.007589]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[146,328],"duration":0.74,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.758,"geometry_index":11291,"location":[7.802788,48.006952]},{"entry":[true,true,false],"in":2,"bearings":[148,177,326],"duration":6.539,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.695,"geometry_index":11292,"location":[7.802898,48.006841]},{"entry":[true,false],"in":1,"bearings":[146,327],"duration":0.412,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.422,"geometry_index":11294,"location":[7.803818,48.005877]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":0.514,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.527,"geometry_index":11295,"location":[7.803875,48.005821]},{"entry":[true,false,false],"in":2,"bearings":[147,310,326],"duration":22.119,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.652,"geometry_index":11296,"location":[7.803954,48.005743]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[124,304],"duration":1.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.574,"geometry_index":11305,"location":[7.807995,48.002887]},{"entry":[true,true,false],"in":2,"bearings":[122,144,304],"duration":8.785,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.203,"geometry_index":11306,"location":[7.808333,48.002736]},{"entry":[true,false,false],"in":2,"bearings":[120,291,300],"duration":2.832,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.967,"geometry_index":11308,"location":[7.810265,48.001965]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":1.439,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.549,"geometry_index":11309,"location":[7.810858,48.001737]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":6.846,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":7.359,"geometry_index":11310,"location":[7.811155,48.001622]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":4.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":4.441,"geometry_index":11311,"location":[7.812502,48.001108]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":55.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":59.699,"geometry_index":11312,"location":[7.813317,48.000797]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":19.844,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":21.332,"geometry_index":11313,"location":[7.824296,47.996611]},{"entry":[true,false],"in":1,"bearings":[119,299],"duration":8.078,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":8.684,"geometry_index":11315,"location":[7.826943,47.995617]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":24.375,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":26.789,"geometry_index":11317,"location":[7.828024,47.99522]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":14.824,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":16.307,"geometry_index":11321,"location":[7.830762,47.99427]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":3.389,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.727,"geometry_index":11322,"location":[7.832385,47.993641]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":28.271,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":30.391,"geometry_index":11323,"location":[7.83276,47.993496]},{"entry":[true,false],"in":1,"bearings":[117,302],"duration":1.266,"turn_weight":0.5,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.83,"geometry_index":11327,"location":[7.83582,47.992241]},{"entry":[true,false],"in":1,"bearings":[113,297],"duration":2.363,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.539,"geometry_index":11328,"location":[7.835948,47.992197]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,293],"duration":2.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.902,"geometry_index":11330,"location":[7.836204,47.992123]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[112,291],"duration":4.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":4.717,"geometry_index":11331,"location":[7.836511,47.992046]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,292],"duration":3.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.508,"geometry_index":11333,"location":[7.837001,47.991916]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[110,291],"duration":2.588,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.781,"geometry_index":11334,"location":[7.837362,47.991823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[109,290],"duration":2.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.418,"geometry_index":11336,"location":[7.837656,47.991753]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[107,289],"duration":2.812,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.023,"geometry_index":11338,"location":[7.837911,47.991694]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[104,287],"duration":2.137,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.297,"geometry_index":11339,"location":[7.838236,47.991629]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[105,284],"duration":1.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.209,"geometry_index":11341,"location":[7.838478,47.991588]},{"entry":[true,true,false],"in":2,"bearings":[103,117,285],"duration":8.582,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":9.205,"geometry_index":11342,"location":[7.838605,47.991565]},{"entry":[true,false],"in":1,"bearings":[106,283],"duration":1.801,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.936,"geometry_index":11345,"location":[7.83975,47.991387]},{"entry":[true,false,false],"in":2,"bearings":[104,263,286],"duration":3.621,"turn_weight":5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":8.869,"geometry_index":11346,"location":[7.839981,47.991344]},{"entry":[true,false],"in":1,"bearings":[105,284],"duration":6.857,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":7.371,"geometry_index":11347,"location":[7.840254,47.991297]},{"entry":[true,false],"in":1,"bearings":[107,285],"duration":13.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":14.189,"geometry_index":11348,"location":[7.840772,47.991204]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":9.428,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":10.135,"geometry_index":11350,"location":[7.84175,47.990983]},{"entry":[true,false,false],"in":2,"bearings":[113,197,291],"duration":5.502,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":5.906,"geometry_index":11351,"location":[7.842434,47.990807]},{"entry":[true,false],"in":1,"bearings":[113,293],"duration":1.334,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.426,"geometry_index":11352,"location":[7.842795,47.990703]},{"entry":[true,false],"in":1,"bearings":[113,293],"duration":5.115,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":5.5,"geometry_index":11353,"location":[7.842885,47.990677]},{"entry":[true,false],"in":1,"bearings":[113,293],"duration":0.766,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":0.814,"geometry_index":11355,"location":[7.843221,47.990583]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[114,293],"duration":4.357,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":4.686,"geometry_index":11356,"location":[7.843271,47.990569]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[114,294],"duration":1.326,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.426,"geometry_index":11357,"location":[7.843558,47.990483]},{"entry":[true,false],"in":1,"bearings":[115,294],"duration":0.955,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.018,"geometry_index":11358,"location":[7.843643,47.990458]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":4.756,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":5.092,"geometry_index":11359,"location":[7.843704,47.990439]},{"entry":[true,false],"in":1,"bearings":[115,296],"duration":1.656,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.76,"geometry_index":11360,"location":[7.844001,47.990344]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.309,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.408,"geometry_index":11361,"location":[7.844123,47.990306]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844223,47.990275],"geometry_index":11362,"admin_index":4,"weight":0.879,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.008,"duration":2.826,"bearings":[118,295],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844285,47.990253],"geometry_index":11363,"admin_index":4,"weight":2.789,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":1.223,"bearings":[116,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[114,296],"duration":0.75,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":0.807,"geometry_index":11365,"railway_crossing":true,"location":[7.844379,47.990222]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844437,47.990205],"geometry_index":11366,"admin_index":4,"weight":1.008,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":0.75,"duration":0.262,"bearings":[111,294],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[110,291],"duration":0.783,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":0.842,"geometry_index":11367,"railway_crossing":true,"location":[7.84446,47.990199]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844523,47.990184],"geometry_index":11368,"admin_index":4,"weight":3.357,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":1.75,"bearings":[107,290],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":2.887,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.023,"geometry_index":11369,"location":[7.844683,47.990152]},{"entry":[true,false],"in":1,"bearings":[105,287],"duration":14.539,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.746,"geometry_index":11371,"location":[7.844937,47.990101]},{"entry":[true,false],"in":1,"bearings":[93,278],"duration":7.023,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.35,"geometry_index":11375,"location":[7.846518,47.989869]},{"entry":[true,false],"in":1,"bearings":[92,273],"duration":3,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.15,"geometry_index":11376,"location":[7.846981,47.989852]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[90,272],"duration":8.199,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.609,"geometry_index":11377,"location":[7.84718,47.989848]},{"entry":[true,true,false],"in":2,"bearings":[89,132,270],"duration":3.83,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.002,"geometry_index":11378,"location":[7.847733,47.989845]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.847974,47.989849],"geometry_index":11379,"admin_index":4,"weight":1.557,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.021,"duration":3.504,"bearings":[87,269],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.848066,47.989852],"geometry_index":11380,"admin_index":4,"weight":2.066,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1.5,"duration":0.549,"bearings":[88,267],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[87,268],"duration":0.359,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.379,"geometry_index":11381,"railway_crossing":true,"location":[7.84811,47.989853]},{"entry":[true,false],"in":1,"bearings":[90,267],"duration":0.369,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.379,"geometry_index":11382,"location":[7.848137,47.989854]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[88,270],"duration":0.721,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.756,"geometry_index":11383,"railway_crossing":true,"location":[7.848159,47.989854]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.84821,47.989855],"geometry_index":11384,"admin_index":4,"weight":2.287,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":0.758,"bearings":[87,184,268,351],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[89,267],"duration":20.008,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.9,"geometry_index":11385,"location":[7.848274,47.989857]},{"entry":[true,false],"in":1,"bearings":[88,268],"duration":21.016,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.959,"geometry_index":11387,"location":[7.849885,47.989892]},{"entry":[true,false],"in":1,"bearings":[82,268],"duration":2.217,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.301,"geometry_index":11388,"location":[7.851649,47.989937]},{"entry":[true,false],"in":1,"bearings":[73,262],"duration":17.844,"turn_duration":2.036,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.6,"geometry_index":11389,"location":[7.85183,47.989954]},{"entry":[true,false],"in":1,"bearings":[71,251],"duration":5.479,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.752,"geometry_index":11391,"location":[7.853126,47.990229]},{"entry":[true,false],"in":1,"bearings":[72,252],"duration":3.92,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.109,"geometry_index":11393,"location":[7.853575,47.990331]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[72,252],"duration":2.504,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.629,"geometry_index":11394,"location":[7.853892,47.990401]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.854093,47.990445],"geometry_index":11396,"admin_index":4,"weight":1.314,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.007,"duration":3.26,"bearings":[72,252],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.854193,47.990467],"geometry_index":11397,"admin_index":4,"weight":4.699,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":2,"duration":2.578,"bearings":[73,162,252,339],"out":0,"in":2,"entry":[true,true,false,false]},{"bearings":[20,76,201,253],"entry":[true,true,false,false],"in":3,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":11398,"location":[7.854385,47.990507]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"turn","modifier":"slight right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":6924.542},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"turn","modifier":"slight right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":402.336}],"destinations":"B 31a: Freiburg, Donaueschingen, Titisee-Neustadt","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take B 31a toward Freiburg/Donaueschingen.","modifier":"slight right","bearing_after":67,"bearing_before":52,"location":[7.781105,48.021863]},"speedLimitSign":"vienna","name":"","weight_typical":615.408,"duration_typical":576.355,"duration":576.355,"distance":6924.542,"driving_side":"right","weight":615.408,"mode":"driving","ref":"B 31a","geometry":"mu_rzAan|yMcFuW_EqSqBsQy@qQa@uT?oj@rAqzAj@{a@pAuWlBkRzC_ObE}L~HcX~K_Qpm@u_AnN}R|`@ok@hh@yq@~_@_g@td@}j@tsAg_B`g@ul@tT{VrEkFbLmMna@kb@xy@uz@vu@{r@tlB_gBxtAipAhaA_~@vPuO|m@{l@|QsPxf@ad@|E{EhUaT|d@mc@nBqBzC}CdPkOnLwLt`@}c@tPaTrRgZrRi[~Qs^dQw`@~Roj@lHcTvRym@l[}hAfMad@dFqQb_@esAlR}q@rdGemTnZegAra@g|ArKga@dKi`@xMil@pG}XzHm\\bYmeAhf@mdB`HmVr]{mAnXq{@~HuUhKc\\vA_GfBsIj@kDxCeRdDkR|AgJxDqURiAvBaOnBeNDW`CiSBQlAqMl@}FvB{V`AcLhDqa@tAmM|AaPxDk_@fGif@pDyT~Iwi@nEqUr@sD`CsMx@kEZcBjD}Pp@iDd@yB|DqQjAsF|@gEj@{BPw@j@cC`@sBJm@\\}B~@_In@iFt@qG~Fqj@fCe]?CfA}W`@}[FmKDqa@GaNEwDAwAAu@?k@AeBC_CWkp@m@ir@yAgmBa@iJaGsg@cHkg@iBgMaByLkCyRq@eFe@kDk@gEoA_Ki@oEYqE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":685.104},{"ssmlAnnouncement":"In a quarter mile, Keep right to stay on B 31.","announcement":"In a quarter mile, Keep right to stay on B 31.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep right to stay on B 31.","announcement":"Keep right to stay on B 31.","distanceAlongGeometry":56.667}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.854594,47.990541],"geometry_index":11400,"admin_index":4,"weight":3.637,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.045,"turn_weight":1.5,"duration":2.08,"bearings":[104,256,291],"out":0,"in":1,"entry":[true,false,false]},{"entry":[true,false],"in":1,"bearings":[109,284],"duration":5.645,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.916,"geometry_index":11401,"location":[7.854762,47.990512]},{"entry":[true,false],"in":1,"bearings":[110,289],"duration":12.848,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.482,"geometry_index":11402,"location":[7.855221,47.990405]},{"entry":[true,false],"in":1,"bearings":[120,291],"duration":5.773,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.904,"geometry_index":11405,"location":[7.856573,47.990073]},{"entry":[true,false],"in":1,"bearings":[133,311],"duration":2.512,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.566,"geometry_index":11410,"location":[7.8571,47.989823]},{"entry":[true,false],"in":1,"bearings":[133,313],"duration":3.115,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.123,"geometry_index":11411,"location":[7.857258,47.989723]},{"entry":[true,false],"in":1,"bearings":[130,313],"duration":12.131,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.412,"geometry_index":11412,"location":[7.857324,47.989682]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":5.072,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.199,"geometry_index":11416,"location":[7.858153,47.989313]},{"entry":[true,false],"in":1,"bearings":[112,295],"duration":3.623,"lanes":[{"indications":["uturn"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.689,"geometry_index":11418,"location":[7.858531,47.989191]},{"lanes":[{"indications":["uturn"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.858805,47.989116],"geometry_index":11419,"admin_index":4,"weight":2.271,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.008,"duration":4.223,"bearings":[68,112,292],"out":1,"in":2,"entry":[true,true,false]},{"entry":[false,true,true,false],"in":3,"bearings":[63,111,237,292],"duration":2.311,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":4.361,"geometry_index":11420,"location":[7.859005,47.989062]},{"entry":[false,true,false,false],"in":3,"bearings":[1,105,253,291],"duration":9.818,"turn_weight":2,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":12.037,"geometry_index":11421,"location":[7.859206,47.98901]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":10.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.627,"geometry_index":11423,"location":[7.860088,47.988859]},{"entry":[true,false],"in":1,"bearings":[101,280],"duration":1.16,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.182,"geometry_index":11426,"location":[7.861029,47.988721]},{"entry":[true,false],"in":1,"bearings":[100,281],"duration":6.645,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.789,"geometry_index":11427,"location":[7.861131,47.988708]},{"entry":[true,false],"in":1,"bearings":[104,282],"duration":5.48,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.473,"geometry_index":11430,"location":[7.861731,47.98863]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":2.166,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":11431,"location":[7.862221,47.988551]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":2.016,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.016,"geometry_index":11432,"location":[7.862413,47.988518]},{"entry":[true,false],"in":1,"bearings":[109,284],"duration":0.297,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.287,"geometry_index":11433,"location":[7.8626,47.988486]},{"entry":[true,false],"in":1,"bearings":[107,289],"duration":2.324,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.305,"geometry_index":11434,"location":[7.862626,47.98848]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[112,287],"duration":1.584,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.584,"geometry_index":11435,"location":[7.862836,47.988436]},{"bearings":[117,292],"entry":[true,false],"in":1,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":11436,"location":[7.862971,47.9884]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"fork","modifier":"right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":695.104},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"fork","modifier":"right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Schwarzwaldstraße/B 31.","modifier":"slight right","bearing_after":104,"bearing_before":76,"location":[7.854594,47.990541]},"speedLimitSign":"vienna","name":"Schwarzwaldstraße","weight_typical":107.555,"duration_typical":103.74,"duration":103.74,"distance":695.104,"driving_side":"right","weight":107.555,"mode":"driving","ref":"B 31","geometry":"yobpzAc_l~Mx@oItEu[~Lyx@rAuIbC_OjBwHnCwHBEvBaFzBeEfE{HpAcC~DmIjEgLhDoLjDsMzAmGvCeNtCcPjBoKfBqKfBiQdEyc@zDyb@fAqQNmCXkEf@oIPsD`BkT|Cs]`A_K~@uJJs@vAcLfAmGvC}L"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 43 miles.","announcement":"Continue for 43 miles.","distanceAlongGeometry":69769.531},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit toward A 81.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit toward A 81.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit toward A 81, Ulm.","announcement":"Enter the roundabout and take the 2nd exit toward A 81, Ulm.","distanceAlongGeometry":171.111}],"intersections":[{"entry":[true,true,false,false],"in":3,"bearings":[99,111,158,297],"duration":4.459,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":4.432,"geometry_index":11437,"location":[7.863194,47.988324]},{"entry":[true,false],"in":1,"bearings":[96,288],"duration":11.918,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.918,"geometry_index":11440,"location":[7.863601,47.988227]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[136,292],"duration":10.08,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.08,"geometry_index":11447,"location":[7.864856,47.988097]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[110,292],"duration":39.047,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.07,"geometry_index":11452,"location":[7.865925,47.98762]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[110,290],"duration":25.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.939,"geometry_index":11454,"location":[7.871251,47.986306]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":72.441,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":68.82,"geometry_index":11456,"location":[7.87495,47.985582]},{"entry":[true,false],"in":1,"bearings":[108,290],"duration":10.105,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.6,"geometry_index":11470,"location":[7.889881,47.983123]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[109,288],"duration":83.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":79.055,"geometry_index":11472,"location":[7.891919,47.982673]},{"entry":[true,false],"in":1,"bearings":[96,276],"duration":4.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.189,"geometry_index":11477,"location":[7.9073,47.97951]},{"entry":[true,false],"in":1,"bearings":[97,276],"duration":4.859,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.617,"geometry_index":11478,"location":[7.908603,47.979416]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[98,278],"duration":1.26,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.197,"geometry_index":11480,"location":[7.910036,47.979293]},{"entry":[true,false],"in":1,"bearings":[100,278],"duration":6.441,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.949,"geometry_index":11481,"location":[7.910406,47.97926]},{"entry":[true,false],"in":1,"bearings":[104,286],"duration":1.035,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.939,"geometry_index":11484,"location":[7.912162,47.979009]},{"entry":[true,false],"in":1,"bearings":[107,284],"duration":5.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.824,"geometry_index":11485,"location":[7.91245,47.978961]},{"entry":[true,false],"in":1,"bearings":[116,293],"duration":1.432,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.324,"geometry_index":11488,"location":[7.91387,47.978619]},{"entry":[true,false],"in":1,"bearings":[117,296],"duration":1.893,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.75,"geometry_index":11489,"location":[7.914242,47.978499]},{"entry":[true,false],"in":1,"bearings":[121,297],"duration":2.057,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.902,"geometry_index":11490,"location":[7.914732,47.978332]},{"entry":[true,false],"in":1,"bearings":[123,303],"duration":39.377,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":36.424,"geometry_index":11492,"location":[7.915235,47.978123]},{"entry":[true,false],"in":1,"bearings":[106,288],"duration":0.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.365,"geometry_index":11505,"location":[7.925257,47.973971]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":20.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.68,"geometry_index":11506,"location":[7.925374,47.973949]},{"entry":[true,false],"in":1,"bearings":[95,278],"duration":1.391,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.287,"geometry_index":11513,"location":[7.931403,47.973075]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":1.922,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.779,"geometry_index":11514,"location":[7.93186,47.973049]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":14.768,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.66,"geometry_index":11515,"location":[7.932485,47.973013]},{"entry":[true,false],"in":1,"bearings":[91,272],"duration":0.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.453,"geometry_index":11520,"location":[7.937317,47.972832]},{"entry":[true,false],"in":1,"bearings":[90,271],"duration":10.424,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.902,"geometry_index":11521,"location":[7.937462,47.97283]},{"entry":[true,false],"in":1,"bearings":[90,271],"duration":7.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.039,"geometry_index":11523,"location":[7.940806,47.972807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[90,270],"duration":0.838,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.795,"geometry_index":11525,"location":[7.943181,47.972808]},{"entry":[true,true,false],"in":2,"bearings":[89,103,270],"duration":6.434,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.094,"geometry_index":11526,"location":[7.943455,47.972808]},{"entry":[true,false,false],"in":2,"bearings":[90,251,269],"duration":0.832,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.783,"geometry_index":11527,"location":[7.945325,47.97282]},{"entry":[true,false],"in":1,"bearings":[91,270],"duration":7.59,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.211,"geometry_index":11528,"location":[7.94558,47.972819]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":25.678,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.393,"geometry_index":11530,"location":[7.947928,47.972779]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":4.424,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.203,"geometry_index":11534,"location":[7.955859,47.972436]},{"entry":[true,false],"in":1,"bearings":[91,273],"duration":2.496,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.371,"geometry_index":11536,"location":[7.957225,47.972367]},{"entry":[true,false,true],"in":1,"bearings":[96,270,280],"duration":3.609,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.42,"geometry_index":11538,"location":[7.958038,47.972367]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":7.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.719,"geometry_index":11540,"location":[7.959151,47.972287]},{"entry":[true,false],"in":1,"bearings":[102,280],"duration":4.988,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.738,"geometry_index":11542,"location":[7.961371,47.972063]},{"entry":[true,false],"in":1,"bearings":[101,282],"duration":0.834,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.793,"geometry_index":11543,"location":[7.962884,47.971849]},{"entry":[true,false],"in":1,"bearings":[100,281],"duration":16.635,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":15.803,"geometry_index":11544,"location":[7.963139,47.971817]},{"entry":[true,false],"in":1,"bearings":[103,282],"duration":1.17,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.111,"geometry_index":11548,"location":[7.968429,47.971103]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":5.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.936,"geometry_index":11549,"location":[7.968773,47.971051]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":5.377,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.107,"geometry_index":11551,"location":[7.970258,47.970816]},{"entry":[true,false],"in":1,"bearings":[105,283],"duration":3.189,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.031,"geometry_index":11552,"location":[7.971805,47.970576]},{"entry":[true,false],"in":1,"bearings":[107,285],"duration":5.725,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.439,"geometry_index":11553,"location":[7.972707,47.970417]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":5.941,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.645,"geometry_index":11554,"location":[7.974398,47.970074]},{"entry":[true,false],"in":1,"bearings":[110,289],"duration":13.576,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.559,"geometry_index":11557,"location":[7.976156,47.969701]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":0.982,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.908,"geometry_index":11564,"location":[7.980039,47.968624]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":23.18,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":21.441,"geometry_index":11565,"location":[7.980298,47.968539]},{"entry":[true,false],"in":1,"bearings":[140,318],"duration":16.375,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.738,"geometry_index":11579,"location":[7.985902,47.965683]},{"entry":[true,false],"in":1,"bearings":[157,335],"duration":1.229,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.105,"geometry_index":11587,"location":[7.988577,47.962871]},{"entry":[true,false],"in":1,"bearings":[159,337],"duration":4.479,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.029,"geometry_index":11588,"location":[7.988722,47.962643]},{"entry":[true,false],"in":1,"bearings":[164,342],"duration":1.537,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.383,"geometry_index":11592,"location":[7.989185,47.961781]},{"entry":[true,false],"in":1,"bearings":[165,344],"duration":0.791,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.711,"geometry_index":11593,"location":[7.989312,47.961479]},{"entry":[true,true,false],"in":2,"bearings":[170,201,345],"duration":1.291,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.154,"geometry_index":11594,"location":[7.989372,47.961324]},{"entry":[true,false],"in":1,"bearings":[169,350],"duration":4.594,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.615,"geometry_index":11595,"location":[7.989431,47.961097]},{"entry":[true,false,false],"in":2,"bearings":[169,329,349],"duration":2.201,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.725,"geometry_index":11596,"location":[7.989673,47.960267]},{"entry":[true,false],"in":1,"bearings":[172,349],"duration":3.609,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.24,"geometry_index":11597,"location":[7.989769,47.959926]},{"entry":[true,false],"in":1,"bearings":[171,352],"duration":0.436,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.393,"geometry_index":11598,"location":[7.989888,47.959338]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":6.49,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.842,"geometry_index":11599,"location":[7.989905,47.959265]},{"entry":[true,false],"in":1,"bearings":[165,346],"duration":1.746,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.57,"geometry_index":11602,"location":[7.990244,47.958223]},{"entry":[true,false],"in":1,"bearings":[166,345],"duration":2.51,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.258,"geometry_index":11603,"location":[7.990358,47.957946]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":0.576,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.512,"geometry_index":11605,"location":[7.990506,47.957548]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":1.936,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.736,"geometry_index":11606,"location":[7.990536,47.957467]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":3.486,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.133,"geometry_index":11607,"location":[7.990632,47.957201]},{"entry":[true,false],"in":1,"bearings":[165,346],"duration":4.32,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.889,"geometry_index":11608,"location":[7.990827,47.956693]},{"entry":[true,false],"in":1,"bearings":[165,345],"duration":2.16,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.943,"geometry_index":11609,"location":[7.991085,47.956069]},{"entry":[true,false],"in":1,"bearings":[162,345],"duration":8.881,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.992,"geometry_index":11610,"location":[7.991212,47.955761]},{"entry":[true,false],"in":1,"bearings":[163,342],"duration":0.754,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.678,"geometry_index":11612,"location":[7.99183,47.954495]},{"entry":[true,false],"in":1,"bearings":[163,343],"duration":0.168,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.15,"geometry_index":11613,"location":[7.991865,47.954416]},{"entry":[true,false],"in":1,"bearings":[164,343],"duration":4.27,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.844,"geometry_index":11614,"location":[7.991871,47.954403]},{"entry":[true,false],"in":1,"bearings":[175,350],"duration":2.428,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.186,"geometry_index":11617,"location":[7.992026,47.953961]},{"entry":[true,false],"in":1,"bearings":[178,356],"duration":1.172,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.049,"geometry_index":11619,"location":[7.992055,47.953698]},{"entry":[true,false],"in":1,"bearings":[179,358],"duration":0.869,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.781,"geometry_index":11620,"location":[7.99206,47.953596]},{"entry":[true,false],"in":1,"bearings":[179,359],"duration":2.607,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.346,"geometry_index":11621,"location":[7.992061,47.953537]},{"entry":[true,false],"in":1,"bearings":[179,359],"duration":1.986,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.787,"geometry_index":11622,"location":[7.992065,47.953351]},{"entry":[true,false],"in":1,"bearings":[180,359],"duration":3.229,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.904,"geometry_index":11623,"location":[7.992068,47.953205]},{"entry":[false,true],"in":0,"bearings":[0,176],"duration":16.008,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":14.385,"geometry_index":11624,"location":[7.99207,47.952974]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":1.871,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.686,"geometry_index":11628,"location":[7.992282,47.951984]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":1.26,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.117,"geometry_index":11629,"location":[7.992311,47.95187]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":6.24,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.799,"geometry_index":11630,"location":[7.992335,47.951778]},{"entry":[true,false],"in":1,"bearings":[174,350],"duration":1.986,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.787,"geometry_index":11631,"location":[7.992414,47.951479]},{"entry":[true,false],"in":1,"bearings":[175,354],"duration":0.744,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.67,"geometry_index":11632,"location":[7.992436,47.951333]},{"entry":[true,false],"in":1,"bearings":[178,355],"duration":31.531,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":28.379,"geometry_index":11633,"location":[7.992443,47.951275]},{"entry":[true,false],"in":1,"bearings":[144,327],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.24,"geometry_index":11644,"location":[7.993257,47.949108]},{"entry":[true,false],"in":1,"bearings":[142,323],"duration":8.82,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.713,"geometry_index":11646,"location":[7.993482,47.948899]},{"entry":[true,false],"in":1,"bearings":[134,315],"duration":4.717,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.127,"geometry_index":11649,"location":[7.994122,47.948432]},{"entry":[true,false],"in":1,"bearings":[132,313],"duration":0.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.336,"geometry_index":11651,"location":[7.994489,47.948196]},{"entry":[true,false],"in":1,"bearings":[128,312],"duration":5.338,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.67,"geometry_index":11652,"location":[7.994521,47.948177]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":56.756,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":49.641,"geometry_index":11656,"location":[7.994985,47.947945]},{"entry":[true,false],"in":1,"bearings":[114,297],"duration":14.699,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.842,"geometry_index":11671,"location":[7.999596,47.945284]},{"entry":[true,false],"in":1,"bearings":[119,299],"duration":6.238,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.451,"geometry_index":11675,"location":[8.000878,47.944867]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":1.809,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.574,"geometry_index":11676,"location":[8.001409,47.94467]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":3.945,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.695,"geometry_index":11677,"location":[8.001556,47.944613]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":3.322,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.908,"geometry_index":11678,"location":[8.001712,47.94455]},{"entry":[true,false],"in":1,"bearings":[120,302],"duration":1.938,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.695,"geometry_index":11681,"location":[8.001989,47.944436]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":2.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.182,"geometry_index":11682,"location":[8.002149,47.944373]},{"entry":[true,false],"in":1,"bearings":[122,301],"duration":11.076,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.691,"geometry_index":11683,"location":[8.002358,47.94429]},{"entry":[true,false],"in":1,"bearings":[111,293],"duration":2.375,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.061,"geometry_index":11687,"location":[8.003305,47.943958]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":2.354,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.061,"geometry_index":11689,"location":[8.003515,47.943903]},{"entry":[true,false],"in":1,"bearings":[112,291],"duration":7.754,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.785,"geometry_index":11691,"location":[8.003724,47.94385]},{"entry":[true,true,false,false],"in":2,"bearings":[116,206,292,353],"duration":17.559,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.355,"geometry_index":11692,"location":[8.004418,47.94366]},{"entry":[true,false],"in":1,"bearings":[97,276],"duration":3.682,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.215,"geometry_index":11703,"location":[8.007345,47.943015]},{"entry":[true,false],"in":1,"bearings":[99,277],"duration":6.992,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.111,"geometry_index":11704,"location":[8.008007,47.94296]},{"entry":[true,false],"in":1,"bearings":[106,283],"duration":0.512,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.441,"geometry_index":11708,"location":[8.009288,47.942791]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":1.016,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":11709,"location":[8.009378,47.942774]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":2.809,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.457,"geometry_index":11710,"location":[8.009555,47.94274]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":17.287,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.119,"geometry_index":11711,"location":[8.01006,47.942641]},{"entry":[true,false],"in":1,"bearings":[124,301],"duration":1.52,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.322,"geometry_index":11718,"location":[8.013089,47.94194]},{"entry":[true,false],"in":1,"bearings":[127,304],"duration":3.896,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.402,"geometry_index":11720,"location":[8.013318,47.941836]},{"entry":[true,false],"in":1,"bearings":[136,312],"duration":2.24,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.953,"geometry_index":11723,"location":[8.013876,47.941524]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":0.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.189,"geometry_index":11725,"location":[8.014157,47.941323]},{"entry":[true,true,false],"in":2,"bearings":[69,140,318],"duration":0.943,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.818,"geometry_index":11726,"location":[8.014188,47.9413]},{"entry":[true,false],"in":1,"bearings":[140,320],"duration":22.465,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.656,"geometry_index":11727,"location":[8.014303,47.941209]},{"entry":[true,false],"in":1,"bearings":[125,303],"duration":9.936,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.693,"geometry_index":11741,"location":[8.017546,47.939629]},{"entry":[true,false],"in":1,"bearings":[155,332],"duration":6.633,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.797,"geometry_index":11749,"location":[8.018874,47.938789]},{"entry":[true,false],"in":1,"bearings":[110,311],"duration":16.434,"turn_duration":0.09,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.301,"geometry_index":11755,"location":[8.019498,47.938096]},{"entry":[true,false],"in":1,"bearings":[143,333],"duration":11.283,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.873,"geometry_index":11770,"location":[8.021607,47.936864]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":11.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.469,"geometry_index":11782,"location":[8.023704,47.935622]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":1.164,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.02,"geometry_index":11791,"location":[8.026529,47.934961]},{"entry":[true,false],"in":1,"bearings":[102,283],"duration":4.68,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.076,"geometry_index":11792,"location":[8.026822,47.934915]},{"entry":[true,false],"in":1,"bearings":[103,282],"duration":19.582,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.135,"geometry_index":11793,"location":[8.027981,47.934754]},{"entry":[true,false],"in":1,"bearings":[151,327],"duration":11.346,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.92,"geometry_index":11811,"location":[8.031304,47.932559]},{"entry":[true,false],"in":1,"bearings":[178,358],"duration":14.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.412,"geometry_index":11820,"location":[8.031926,47.930735]},{"entry":[false,true],"in":0,"bearings":[15,193],"duration":0.074,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.047,"geometry_index":11828,"location":[8.03175,47.928381]},{"entry":[false,true,true],"in":0,"bearings":[13,197,238],"duration":1.998,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.74,"geometry_index":11829,"location":[8.031747,47.928372]},{"entry":[false,true],"in":0,"bearings":[17,198],"duration":2.041,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.787,"geometry_index":11830,"location":[8.031598,47.928055]},{"entry":[false,true],"in":0,"bearings":[17,197],"duration":2.633,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.305,"geometry_index":11832,"location":[8.031447,47.927732]},{"entry":[false,true,false],"in":0,"bearings":[17,192,320],"duration":3.566,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.096,"geometry_index":11833,"location":[8.031259,47.92731]},{"entry":[false,true],"in":0,"bearings":[13,188],"duration":2.42,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.117,"geometry_index":11835,"location":[8.031098,47.92681]},{"entry":[false,true],"in":0,"bearings":[8,188],"duration":0.684,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.598,"geometry_index":11836,"location":[8.031028,47.926462]},{"entry":[false,false,true],"in":0,"bearings":[8,176,193],"duration":15.391,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":2,"weight":14.459,"geometry_index":11837,"location":[8.031007,47.92636]},{"entry":[true,false,true],"in":1,"bearings":[100,269,279],"duration":1.666,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.445,"geometry_index":11849,"location":[8.032686,47.925174]},{"entry":[true,false],"in":1,"bearings":[102,280],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.051,"geometry_index":11850,"location":[8.033056,47.925131]},{"entry":[true,false],"in":1,"bearings":[102,282],"duration":0.48,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.42,"geometry_index":11851,"location":[8.033323,47.925093]},{"entry":[true,false],"in":1,"bearings":[105,282],"duration":3.117,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.727,"geometry_index":11852,"location":[8.033433,47.925077]},{"entry":[true,false],"in":1,"bearings":[110,287],"duration":5.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.994,"geometry_index":11855,"location":[8.034345,47.924904]},{"entry":[true,false],"in":1,"bearings":[106,289],"duration":0.615,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.537,"geometry_index":11857,"location":[8.035984,47.924518]},{"entry":[true,false],"in":1,"bearings":[104,286],"duration":11.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.795,"geometry_index":11859,"location":[8.03616,47.924484]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":13.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.562,"geometry_index":11863,"location":[8.039465,47.923901]},{"entry":[true,false],"in":1,"bearings":[110,291],"duration":8.404,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.338,"geometry_index":11871,"location":[8.043212,47.922927]},{"entry":[true,false],"in":1,"bearings":[100,283],"duration":5.027,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.379,"geometry_index":11876,"location":[8.045681,47.922469]},{"entry":[true,false],"in":1,"bearings":[93,276],"duration":4.434,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":11879,"location":[8.0472,47.922338]},{"entry":[true,false],"in":1,"bearings":[90,272],"duration":0.615,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.537,"geometry_index":11881,"location":[8.04855,47.922296]},{"entry":[true,false],"in":1,"bearings":[91,270],"duration":0.447,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.385,"geometry_index":11882,"location":[8.048733,47.922296]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":0.658,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.576,"geometry_index":11883,"location":[8.048862,47.922294]},{"entry":[true,false],"in":1,"bearings":[89,271],"duration":0.703,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.615,"geometry_index":11884,"location":[8.049066,47.922292]},{"entry":[true,false],"in":1,"bearings":[90,269],"duration":0.746,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.652,"geometry_index":11885,"location":[8.049276,47.922294]},{"entry":[false,true,false],"in":2,"bearings":[77,102,270],"duration":2.705,"turn_weight":1.5,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.854,"geometry_index":11887,"location":[8.04951,47.922295]},{"entry":[true,false],"in":1,"bearings":[93,270],"duration":1.654,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.449,"geometry_index":11889,"location":[8.050372,47.92225]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[81,273],"duration":0.951,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.832,"geometry_index":11890,"location":[8.050913,47.922231]},{"entry":[true,false,true],"in":1,"bearings":[99,261,287],"duration":2.143,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.025,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.854,"geometry_index":11891,"location":[8.051219,47.922262]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[100,279],"duration":0.635,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.557,"geometry_index":11893,"location":[8.051887,47.922192]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[101,280],"duration":0.467,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.408,"geometry_index":11894,"location":[8.052085,47.922169]},{"entry":[true,false],"in":1,"bearings":[104,281],"duration":0.846,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.732,"geometry_index":11895,"location":[8.052236,47.92215]},{"entry":[true,false],"in":1,"bearings":[105,284],"duration":3.768,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.297,"geometry_index":11896,"location":[8.052493,47.922106]},{"entry":[true,false],"in":1,"bearings":[111,289],"duration":1.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.062,"geometry_index":11898,"location":[8.053647,47.921867]},{"entry":[true,false],"in":1,"bearings":[110,291],"duration":1.551,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":11899,"location":[8.054011,47.921773]},{"entry":[true,false],"in":1,"bearings":[112,290],"duration":0.299,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.254,"geometry_index":11900,"location":[8.05448,47.921661]},{"entry":[true,false],"in":1,"bearings":[113,292],"duration":29.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":25.49,"geometry_index":11901,"location":[8.054565,47.921638]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":5.213,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.562,"geometry_index":11908,"location":[8.06315,47.919021]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":1.182,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.014,"geometry_index":11910,"location":[8.064645,47.91849]},{"entry":[true,false],"in":1,"bearings":[117,296],"duration":0.58,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.508,"geometry_index":11911,"location":[8.064976,47.91838]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":8.365,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.314,"geometry_index":11912,"location":[8.065143,47.918322]},{"entry":[true,false],"in":1,"bearings":[117,292],"duration":7.955,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.15,"geometry_index":11917,"location":[8.067634,47.917609]},{"entry":[true,false],"in":1,"bearings":[121,303],"duration":1.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.908,"geometry_index":11922,"location":[8.069799,47.916684]},{"entry":[true,false],"in":1,"bearings":[119,301],"duration":0.268,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.24,"geometry_index":11924,"location":[8.070063,47.916578]},{"entry":[true,false],"in":1,"bearings":[117,299],"duration":6.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.76,"geometry_index":11925,"location":[8.070136,47.916551]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":2.408,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":11928,"location":[8.071873,47.915986]},{"entry":[true,false],"in":1,"bearings":[120,301],"duration":0.889,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":11930,"location":[8.072498,47.915746]},{"entry":[true,false],"in":1,"bearings":[126,300],"duration":1.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.094,"geometry_index":11932,"location":[8.072733,47.915654]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":1.928,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.736,"geometry_index":11933,"location":[8.073036,47.915506]},{"entry":[true,true,false],"in":2,"bearings":[129,166,305],"duration":2.525,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.264,"geometry_index":11934,"location":[8.073526,47.915275]},{"entry":[true,false,false],"in":2,"bearings":[133,276,309],"duration":2.818,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.529,"geometry_index":11935,"location":[8.074129,47.914944]},{"entry":[true,false],"in":1,"bearings":[136,314],"duration":2.547,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.291,"geometry_index":11937,"location":[8.074747,47.914547]},{"entry":[true,false],"in":1,"bearings":[138,315],"duration":0.494,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.445,"geometry_index":11939,"location":[8.075288,47.914176]},{"entry":[true,false],"in":1,"bearings":[137,318],"duration":3.139,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.824,"geometry_index":11940,"location":[8.075385,47.914105]},{"entry":[true,false],"in":1,"bearings":[135,317],"duration":5.137,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.623,"geometry_index":11941,"location":[8.076004,47.91366]},{"entry":[false,true,false],"in":2,"bearings":[94,125,310],"duration":3.678,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.285,"geometry_index":11945,"location":[8.077063,47.913013]},{"entry":[true,false,true],"in":1,"bearings":[116,300,334],"duration":3.068,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.736,"geometry_index":11948,"location":[8.07787,47.912663]},{"entry":[true,false],"in":1,"bearings":[112,296],"duration":3.662,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.295,"geometry_index":11949,"location":[8.078455,47.912472]},{"entry":[true,false],"in":1,"bearings":[101,289],"duration":3.725,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.352,"geometry_index":11951,"location":[8.079191,47.91229]},{"entry":[true,false],"in":1,"bearings":[88,277],"duration":4.221,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.799,"geometry_index":11955,"location":[8.079988,47.912204]},{"entry":[true,false],"in":1,"bearings":[17,225],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.08,"geometry_index":11963,"location":[8.080789,47.912403]},{"entry":[false,true],"in":0,"bearings":[197,354],"duration":1.801,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.619,"geometry_index":11966,"location":[8.080843,47.912525]},{"entry":[false,true],"in":0,"bearings":[170,319],"duration":8.979,"turn_duration":0.178,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":7.92,"geometry_index":11970,"location":[8.080791,47.912766]},{"entry":[false,true],"in":0,"bearings":[122,303],"duration":1.066,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.961,"geometry_index":11975,"location":[8.079353,47.913431]},{"entry":[false,true],"in":0,"bearings":[123,304],"duration":24.365,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":21.928,"geometry_index":11976,"location":[8.079176,47.913507]},{"entry":[true,false],"in":1,"bearings":[116,288],"duration":1.35,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.215,"geometry_index":11996,"location":[8.078201,47.915414]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":1.426,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.283,"geometry_index":11998,"location":[8.07845,47.915333]},{"entry":[true,false],"in":1,"bearings":[105,298],"duration":2.295,"turn_duration":0.045,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.025,"geometry_index":11999,"location":[8.078674,47.915252]},{"entry":[true,false,false],"in":2,"bearings":[32,184,273],"duration":20.193,"turn_duration":1.593,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.74,"geometry_index":12004,"location":[8.079063,47.915216]},{"entry":[false,false,true],"in":0,"bearings":[133,296,349],"duration":5.066,"turn_duration":0.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":2,"weight":4.486,"geometry_index":12019,"location":[8.077081,47.916755]},{"entry":[true,false],"in":1,"bearings":[45,209],"duration":6.566,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.891,"geometry_index":12025,"location":[8.077195,47.917198]},{"entry":[true,false],"in":1,"bearings":[16,200],"duration":13.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.445,"geometry_index":12030,"location":[8.077784,47.917785]},{"entry":[false,true],"in":0,"bearings":[20,219],"duration":1.172,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.031,"geometry_index":12052,"location":[8.078305,47.918252]},{"entry":[false,true],"in":0,"bearings":[39,202],"duration":41.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":36.965,"geometry_index":12054,"location":[8.078187,47.918154]},{"entry":[false,true,true],"in":0,"bearings":[7,182,235],"duration":4.602,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.117,"geometry_index":12086,"location":[8.08024,47.91468]},{"entry":[true,false],"in":1,"bearings":[116,323],"duration":2.363,"turn_duration":0.142,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2,"geometry_index":12093,"location":[8.08048,47.914182]},{"entry":[true,false],"in":1,"bearings":[83,290],"duration":3.441,"turn_duration":0.142,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.971,"geometry_index":12096,"location":[8.080837,47.914084]},{"entry":[true,false],"in":1,"bearings":[45,244],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.08,"geometry_index":12100,"location":[8.081396,47.914192]},{"entry":[true,false],"in":1,"bearings":[46,225],"duration":1.592,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.426,"geometry_index":12101,"location":[8.08155,47.914297]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[49,226],"duration":1.297,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.166,"geometry_index":12103,"location":[8.081762,47.914434]},{"entry":[true,false],"in":1,"bearings":[61,229],"duration":1.672,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.015,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.49,"geometry_index":12105,"location":[8.081941,47.914538]},{"entry":[true,false],"in":1,"bearings":[87,251],"duration":1.225,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.102,"geometry_index":12110,"location":[8.082505,47.914704]},{"entry":[true,false],"in":1,"bearings":[98,271],"duration":18.648,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.783,"geometry_index":12112,"location":[8.082956,47.914708]},{"entry":[true,true,false],"in":2,"bearings":[37,87,271],"duration":2.254,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.064,"geometry_index":12131,"location":[8.089468,47.913265]},{"entry":[true,false],"in":1,"bearings":[80,263],"duration":3.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.141,"geometry_index":12133,"location":[8.090291,47.913311]},{"entry":[true,false],"in":1,"bearings":[74,255],"duration":1.652,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.521,"geometry_index":12136,"location":[8.091159,47.913441]},{"entry":[true,false],"in":1,"bearings":[70,254],"duration":2.816,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.584,"geometry_index":12137,"location":[8.091566,47.91352]},{"entry":[true,false],"in":1,"bearings":[69,250],"duration":0.807,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.746,"geometry_index":12140,"location":[8.092222,47.913682]},{"entry":[true,false,false],"in":2,"bearings":[72,191,249],"duration":0.652,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.596,"geometry_index":12141,"location":[8.092405,47.913728]},{"entry":[false,true,false],"in":2,"bearings":[21,75,252],"duration":2.104,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.938,"geometry_index":12142,"location":[8.09256,47.913761]},{"entry":[true,false,true],"in":1,"bearings":[79,257,296],"duration":0.738,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.676,"geometry_index":12145,"location":[8.093068,47.913845]},{"entry":[true,false],"in":1,"bearings":[82,259],"duration":0.73,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.676,"geometry_index":12147,"location":[8.093252,47.913868]},{"entry":[true,false],"in":1,"bearings":[84,262],"duration":0.939,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.869,"geometry_index":12148,"location":[8.093443,47.913886]},{"entry":[true,false],"in":1,"bearings":[87,264],"duration":1.482,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.371,"geometry_index":12149,"location":[8.093677,47.913903]},{"entry":[true,false],"in":1,"bearings":[91,267],"duration":1.773,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.641,"geometry_index":12151,"location":[8.094056,47.913916]},{"entry":[true,false],"in":1,"bearings":[96,272],"duration":0.053,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.049,"geometry_index":12153,"location":[8.094507,47.913909]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[96,276],"duration":6.574,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.08,"geometry_index":12154,"location":[8.094522,47.913908]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[107,290],"duration":0.053,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.049,"geometry_index":12160,"location":[8.09616,47.913661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,287],"duration":0.521,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.482,"geometry_index":12161,"location":[8.096165,47.91366]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,291],"duration":1.252,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.158,"geometry_index":12162,"location":[8.096296,47.913626]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.09659,47.91355],"geometry_index":12163,"admin_index":4,"weight":3.484,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.009,"turn_weight":0.75,"duration":2.965,"bearings":[86,115,291],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,false],"in":1,"bearings":[120,298],"duration":0.645,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.596,"geometry_index":12165,"location":[8.097248,47.91333]},{"entry":[true,false,true],"in":1,"bearings":[122,300,327],"duration":0.477,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.434,"geometry_index":12166,"location":[8.09739,47.913275]},{"entry":[true,true,false],"in":2,"bearings":[123,152,302],"duration":1.078,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.979,"geometry_index":12167,"location":[8.097494,47.913232]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":2.127,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.967,"geometry_index":12168,"location":[8.097723,47.913131]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.098156,47.912934],"geometry_index":12170,"admin_index":4,"weight":1.605,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.007,"turn_weight":1,"duration":0.662,"bearings":[125,270,304],"out":0,"in":2,"entry":[true,false,false]},{"entry":[true,false],"in":1,"bearings":[125,305],"duration":0.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.555,"geometry_index":12171,"location":[8.09829,47.912871]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":2.4,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.221,"geometry_index":12172,"location":[8.098413,47.912814]},{"entry":[true,false],"in":1,"bearings":[115,300],"duration":0.057,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.053,"geometry_index":12175,"location":[8.098916,47.912605]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":1.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.041,"geometry_index":12176,"location":[8.098929,47.912601]},{"entry":[true,false],"in":1,"bearings":[113,296],"duration":1.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.041,"geometry_index":12178,"location":[8.099173,47.91252]},{"entry":[true,false],"in":1,"bearings":[110,293],"duration":3.055,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.826,"geometry_index":12180,"location":[8.099414,47.91245]},{"entry":[true,false],"in":1,"bearings":[101,284],"duration":6.109,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.65,"geometry_index":12186,"location":[8.100136,47.912302]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":1.582,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.463,"geometry_index":12191,"location":[8.10163,47.912181]},{"entry":[true,false],"in":1,"bearings":[93,275],"duration":1.691,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.564,"geometry_index":12192,"location":[8.102022,47.912157]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[91,273],"duration":1.037,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.959,"geometry_index":12193,"location":[8.102432,47.912144]},{"entry":[true,false],"in":1,"bearings":[88,271],"duration":2.832,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.602,"geometry_index":12194,"location":[8.102693,47.912141]},{"entry":[true,false],"in":1,"bearings":[84,266],"duration":8.719,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.064,"geometry_index":12196,"location":[8.103356,47.912166]},{"entry":[true,false],"in":1,"bearings":[88,265],"duration":5.016,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.631,"geometry_index":12200,"location":[8.105415,47.912319]},{"entry":[true,false],"in":1,"bearings":[98,275],"duration":2.363,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.186,"geometry_index":12203,"location":[8.106609,47.912307]},{"entry":[true,false],"in":1,"bearings":[100,278],"duration":2.193,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.029,"geometry_index":12204,"location":[8.107161,47.912258]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[102,280],"duration":1.182,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.092,"geometry_index":12205,"location":[8.107681,47.912196]},{"entry":[true,true,false],"in":2,"bearings":[63,104,282],"duration":2.555,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.357,"geometry_index":12206,"location":[8.107958,47.912156]},{"entry":[true,false],"in":1,"bearings":[107,284],"duration":2.77,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.562,"geometry_index":12207,"location":[8.108549,47.912054]},{"entry":[true,false],"in":1,"bearings":[109,287],"duration":1.559,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.441,"geometry_index":12208,"location":[8.109188,47.911924]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":3.439,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.182,"geometry_index":12209,"location":[8.109554,47.911841]},{"entry":[true,false],"in":1,"bearings":[111,290],"duration":0.484,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.447,"geometry_index":12211,"location":[8.110357,47.911647]},{"entry":[true,false],"in":1,"bearings":[112,291],"duration":16.926,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.232,"geometry_index":12212,"location":[8.110471,47.911618]},{"entry":[true,false],"in":1,"bearings":[124,301],"duration":13.586,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.219,"geometry_index":12218,"location":[8.114225,47.910341]},{"entry":[true,false],"in":1,"bearings":[126,305],"duration":11.932,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.738,"geometry_index":12221,"location":[8.117138,47.909004]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":1.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":12222,"location":[8.119654,47.90778]},{"entry":[true,false],"in":1,"bearings":[126,305],"duration":20.93,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.818,"geometry_index":12223,"location":[8.120008,47.907614]},{"entry":[true,false],"in":1,"bearings":[110,293],"duration":2.465,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.281,"geometry_index":12228,"location":[8.12482,47.905604]},{"entry":[true,false,true],"in":1,"bearings":[107,289,306],"duration":8.539,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.666,"geometry_index":12231,"location":[8.125451,47.905455]},{"entry":[true,false],"in":1,"bearings":[90,273],"duration":0.123,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.092,"geometry_index":12237,"location":[8.127668,47.905206]},{"entry":[true,false],"in":1,"bearings":[89,270],"duration":11.764,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.588,"geometry_index":12238,"location":[8.127697,47.905206]},{"entry":[true,true,false],"in":2,"bearings":[73,175,253],"duration":2.012,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.805,"geometry_index":12244,"location":[8.130751,47.905544]},{"entry":[true,false,true],"in":1,"bearings":[72,253,275],"duration":1.068,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.945,"geometry_index":12245,"location":[8.131244,47.905647]},{"entry":[true,false],"in":1,"bearings":[72,252],"duration":7.051,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.346,"geometry_index":12246,"location":[8.131506,47.905705]},{"entry":[true,false],"in":1,"bearings":[77,255],"duration":6.385,"lanes":[{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.74,"geometry_index":12249,"location":[8.133313,47.90608]},{"entry":[true,false],"in":1,"bearings":[90,267],"duration":1.338,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.203,"geometry_index":12253,"location":[8.134949,47.906237]},{"entry":[true,false],"in":1,"bearings":[93,270],"duration":7.098,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.387,"geometry_index":12254,"location":[8.1353,47.906237]},{"entry":[false,true,false],"in":2,"bearings":[70,92,275],"duration":5.24,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":5.195,"geometry_index":12256,"location":[8.137139,47.906147]},{"entry":[true,false],"in":1,"bearings":[91,270],"duration":0.285,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.25,"geometry_index":12258,"location":[8.138478,47.906128]},{"entry":[true,false],"in":1,"bearings":[89,271],"duration":3.395,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.037,"geometry_index":12259,"location":[8.138546,47.906127]},{"entry":[true,false],"in":1,"bearings":[85,267],"duration":4.213,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.771,"geometry_index":12261,"location":[8.13935,47.906145]},{"entry":[true,false],"in":1,"bearings":[82,264],"duration":2.975,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.676,"geometry_index":12263,"location":[8.140392,47.906214]},{"entry":[true,false],"in":1,"bearings":[80,262],"duration":3.652,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.287,"geometry_index":12264,"location":[8.141145,47.906288]},{"entry":[true,false],"in":1,"bearings":[77,258],"duration":4.836,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.834,"geometry_index":12266,"location":[8.142083,47.906415]},{"entry":[true,false],"in":1,"bearings":[72,253],"duration":8.367,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.74,"geometry_index":12268,"location":[8.143363,47.906644]},{"entry":[true,false],"in":1,"bearings":[65,246],"duration":11.918,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.025,"geometry_index":12272,"location":[8.145507,47.907196]},{"entry":[true,false],"in":1,"bearings":[62,241],"duration":0.822,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.762,"geometry_index":12275,"location":[8.148396,47.908231]},{"entry":[true,false],"in":1,"bearings":[62,242],"duration":8.537,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.684,"geometry_index":12276,"location":[8.148583,47.908299]},{"entry":[true,false],"in":1,"bearings":[67,245],"duration":0.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.822,"geometry_index":12280,"location":[8.150575,47.908967]},{"entry":[true,false],"in":1,"bearings":[68,247],"duration":18.529,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.676,"geometry_index":12281,"location":[8.150778,47.909026]},{"entry":[true,false],"in":1,"bearings":[89,264],"duration":0.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.43,"geometry_index":12289,"location":[8.155318,47.909759]},{"entry":[true,false],"in":1,"bearings":[89,269],"duration":11.064,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.959,"geometry_index":12290,"location":[8.155434,47.90976]},{"entry":[true,false],"in":1,"bearings":[99,278],"duration":5.877,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.289,"geometry_index":12295,"location":[8.15822,47.909658]},{"entry":[false,true,false],"in":2,"bearings":[92,109,285],"duration":4.307,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.869,"geometry_index":12298,"location":[8.15968,47.909451]},{"entry":[true,true,false],"in":2,"bearings":[107,125,288],"duration":1.166,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":12300,"location":[8.160689,47.90922]},{"entry":[true,false,true],"in":1,"bearings":[112,287,311],"duration":5.123,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.602,"geometry_index":12301,"location":[8.160957,47.909164]},{"entry":[true,false,false],"in":2,"bearings":[115,279,296],"duration":5.111,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.582,"geometry_index":12303,"location":[8.162152,47.908806]},{"entry":[true,false],"in":1,"bearings":[113,295],"duration":2.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.545,"geometry_index":12304,"location":[8.163359,47.908437]},{"entry":[true,false],"in":1,"bearings":[106,291],"duration":2.674,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.475,"geometry_index":12306,"location":[8.164037,47.908255]},{"entry":[true,false],"in":1,"bearings":[101,284],"duration":3.908,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.615,"geometry_index":12308,"location":[8.164711,47.908133]},{"entry":[false,true,false],"in":2,"bearings":[68,89,272],"duration":2,"turn_weight":0.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.58,"geometry_index":12311,"location":[8.165723,47.908054]},{"entry":[true,false],"in":1,"bearings":[85,267],"duration":2.738,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.533,"geometry_index":12313,"location":[8.166243,47.908066]},{"entry":[true,true,false],"in":2,"bearings":[76,107,261],"duration":1.824,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.664,"geometry_index":12315,"location":[8.166964,47.908129]},{"entry":[true,false,true],"in":1,"bearings":[69,254,277],"duration":2.84,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.604,"geometry_index":12317,"location":[8.167439,47.908213]},{"entry":[true,false],"in":1,"bearings":[63,248],"duration":1.062,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.982,"geometry_index":12319,"location":[8.168198,47.908414]},{"entry":[true,false],"in":1,"bearings":[60,243],"duration":7.062,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.355,"geometry_index":12320,"location":[8.168472,47.908506]},{"entry":[true,false,false],"in":2,"bearings":[52,200,232],"duration":1.549,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.139,"geometry_index":12324,"location":[8.17012,47.909322]},{"entry":[true,false],"in":1,"bearings":[55,232],"duration":2.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.441,"geometry_index":12325,"location":[8.170465,47.909503]},{"entry":[true,false],"in":1,"bearings":[58,236],"duration":8.553,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.689,"geometry_index":12327,"location":[8.171099,47.909798]},{"entry":[true,false],"in":1,"bearings":[70,249],"duration":1.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.344,"geometry_index":12331,"location":[8.173496,47.910527]},{"entry":[true,false],"in":1,"bearings":[64,250],"duration":31.127,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":28.014,"geometry_index":12332,"location":[8.173926,47.910633]},{"entry":[true,false],"in":1,"bearings":[34,211],"duration":2.062,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.908,"geometry_index":12346,"location":[8.179886,47.91546]},{"entry":[true,false],"in":1,"bearings":[43,214],"duration":4.609,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.264,"geometry_index":12347,"location":[8.180235,47.91581]},{"entry":[true,false],"in":1,"bearings":[57,234],"duration":1.889,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.746,"geometry_index":12350,"location":[8.181252,47.916454]},{"entry":[true,false],"in":1,"bearings":[56,237],"duration":6.98,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.457,"geometry_index":12351,"location":[8.181737,47.916663]},{"entry":[true,false],"in":1,"bearings":[39,229],"duration":4.873,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.508,"geometry_index":12355,"location":[8.183419,47.917534]},{"entry":[true,false],"in":1,"bearings":[32,212],"duration":51.453,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":47.594,"geometry_index":12358,"location":[8.184283,47.918344]},{"entry":[true,false],"in":1,"bearings":[118,293],"duration":1.244,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.182,"geometry_index":12389,"location":[8.198218,47.918168]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.002,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.953,"geometry_index":12390,"location":[8.198543,47.918051]},{"entry":[true,false],"in":1,"bearings":[119,298],"duration":4.146,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.939,"geometry_index":12391,"location":[8.198804,47.917959]},{"entry":[true,true,false],"in":2,"bearings":[122,137,301],"duration":4.027,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.82,"geometry_index":12393,"location":[8.199858,47.917549]},{"entry":[true,false],"in":1,"bearings":[127,305],"duration":4.402,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.676,"geometry_index":12395,"location":[8.20082,47.917121]},{"entry":[true,false,false],"in":2,"bearings":[132,287,310],"duration":6.916,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.312,"geometry_index":12398,"location":[8.20181,47.916599]},{"entry":[true,false],"in":1,"bearings":[137,315],"duration":1.896,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.803,"geometry_index":12401,"location":[8.203198,47.915725]},{"entry":[true,false],"in":1,"bearings":[138,317],"duration":2.25,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.137,"geometry_index":12402,"location":[8.203554,47.915473]},{"entry":[true,false],"in":1,"bearings":[141,318],"duration":3.051,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.898,"geometry_index":12403,"location":[8.203961,47.915172]},{"entry":[true,false],"in":1,"bearings":[144,321],"duration":8.564,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.129,"geometry_index":12404,"location":[8.204481,47.914746]},{"entry":[true,false,true],"in":1,"bearings":[150,327,351],"duration":4.809,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.561,"geometry_index":12408,"location":[8.205856,47.913389]},{"entry":[true,false],"in":1,"bearings":[150,330],"duration":1.457,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.342,"geometry_index":12410,"location":[8.206499,47.912643]},{"entry":[true,false],"in":1,"bearings":[149,330],"duration":3.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.145,"geometry_index":12412,"location":[8.206694,47.912417]},{"entry":[true,false],"in":1,"bearings":[150,329],"duration":7.455,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.889,"geometry_index":12413,"location":[8.207158,47.911896]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":3.107,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.873,"geometry_index":12416,"location":[8.208182,47.910729]},{"entry":[true,false],"in":1,"bearings":[146,325],"duration":1.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.475,"geometry_index":12418,"location":[8.208652,47.910256]},{"entry":[true,false],"in":1,"bearings":[141,326],"duration":7.809,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.223,"geometry_index":12419,"location":[8.208881,47.910026]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":24.949,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":23.078,"geometry_index":12425,"location":[8.210416,47.909109]},{"entry":[true,false],"in":1,"bearings":[124,299],"duration":2.006,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.855,"geometry_index":12435,"location":[8.21652,47.907305]},{"entry":[true,false],"in":1,"bearings":[126,304],"duration":9.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.695,"geometry_index":12436,"location":[8.216957,47.907107]},{"entry":[true,false],"in":1,"bearings":[124,308],"duration":0.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.369,"geometry_index":12440,"location":[8.218914,47.906048]},{"entry":[true,false],"in":1,"bearings":[124,304],"duration":3.1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.867,"geometry_index":12441,"location":[8.219007,47.906006]},{"entry":[true,false],"in":1,"bearings":[117,301],"duration":1.217,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.125,"geometry_index":12443,"location":[8.219701,47.905708]},{"entry":[true,false],"in":1,"bearings":[115,297],"duration":3.984,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.686,"geometry_index":12444,"location":[8.220003,47.905605]},{"entry":[true,false],"in":1,"bearings":[110,292],"duration":4.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.766,"geometry_index":12447,"location":[8.221019,47.905302]},{"entry":[true,false],"in":1,"bearings":[114,290],"duration":4.242,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.924,"geometry_index":12450,"location":[8.222214,47.905011]},{"entry":[true,false],"in":1,"bearings":[119,297],"duration":15.258,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.113,"geometry_index":12453,"location":[8.223415,47.904624]},{"entry":[true,false],"in":1,"bearings":[114,294],"duration":8.09,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.482,"geometry_index":12459,"location":[8.227674,47.90319]},{"entry":[true,false],"in":1,"bearings":[113,294],"duration":16.783,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":15.105,"geometry_index":12460,"location":[8.229909,47.902529]},{"entry":[true,false],"in":1,"bearings":[125,305],"duration":6.49,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.842,"geometry_index":12467,"location":[8.23383,47.901162]},{"entry":[true,false],"in":1,"bearings":[120,305],"duration":2.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.418,"geometry_index":12469,"location":[8.235232,47.900503]},{"entry":[true,false],"in":1,"bearings":[116,300],"duration":38.16,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":34.344,"geometry_index":12470,"location":[8.235841,47.900265]},{"entry":[true,false],"in":1,"bearings":[43,225],"duration":6.83,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.148,"geometry_index":12491,"location":[8.245562,47.901436]},{"entry":[true,false,true],"in":1,"bearings":[48,222,244],"duration":1.402,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.252,"geometry_index":12494,"location":[8.246896,47.902419]},{"entry":[true,false],"in":1,"bearings":[48,227],"duration":4.701,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.725,"geometry_index":12496,"location":[8.247184,47.902596]},{"entry":[true,false],"in":1,"bearings":[69,242],"duration":3.783,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.404,"geometry_index":12501,"location":[8.248308,47.903122]},{"entry":[true,false],"in":1,"bearings":[79,256],"duration":3.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.568,"geometry_index":12505,"location":[8.24937,47.903352]},{"entry":[true,false],"in":1,"bearings":[94,271],"duration":3.281,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.953,"geometry_index":12510,"location":[8.250528,47.903423]},{"entry":[false,true,false],"in":2,"bearings":[75,97,276],"duration":1.598,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.43,"geometry_index":12512,"location":[8.251487,47.903362]},{"entry":[true,true,false],"in":2,"bearings":[87,113,277],"duration":2.75,"turn_duration":0.038,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.441,"geometry_index":12514,"location":[8.25194,47.903324]},{"entry":[true,false,false],"in":2,"bearings":[81,199,263],"duration":0.711,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.623,"geometry_index":12516,"location":[8.252719,47.903363]},{"entry":[true,false,true],"in":1,"bearings":[81,261,294],"duration":6.381,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.734,"geometry_index":12517,"location":[8.252919,47.903384]},{"entry":[true,false],"in":1,"bearings":[97,272],"duration":2.736,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.463,"geometry_index":12522,"location":[8.255276,47.90354]},{"entry":[true,true,false],"in":2,"bearings":[106,130,279],"duration":5.844,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.248,"geometry_index":12524,"location":[8.256278,47.903443]},{"entry":[true,false],"in":1,"bearings":[115,294],"duration":1.729,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.555,"geometry_index":12528,"location":[8.25832,47.902957]},{"entry":[true,false],"in":1,"bearings":[113,295],"duration":2.506,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.236,"geometry_index":12529,"location":[8.258906,47.902775]},{"entry":[true,false],"in":1,"bearings":[115,293],"duration":3.428,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.078,"geometry_index":12530,"location":[8.259756,47.902528]},{"entry":[true,false],"in":1,"bearings":[114,296],"duration":3.744,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.369,"geometry_index":12532,"location":[8.260903,47.902162]},{"entry":[true,false],"in":1,"bearings":[108,291],"duration":8.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.971,"geometry_index":12534,"location":[8.262195,47.901805]},{"entry":[true,false],"in":1,"bearings":[106,285],"duration":14.768,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.283,"geometry_index":12538,"location":[8.265364,47.9012]},{"entry":[true,false],"in":1,"bearings":[130,310],"duration":2.365,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.129,"geometry_index":12552,"location":[8.270093,47.899404]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":7.328,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.572,"geometry_index":12554,"location":[8.270568,47.899135]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":20.811,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.709,"geometry_index":12559,"location":[8.272178,47.89845]},{"entry":[true,false],"in":1,"bearings":[106,289],"duration":1.822,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.619,"geometry_index":12566,"location":[8.27716,47.896901]},{"entry":[true,false],"in":1,"bearings":[102,285],"duration":5.451,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.906,"geometry_index":12568,"location":[8.277611,47.89682]},{"entry":[true,true,false],"in":2,"bearings":[89,124,272],"duration":1.723,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.529,"geometry_index":12572,"location":[8.279012,47.896706]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.279473,47.89671],"geometry_index":12573,"admin_index":4,"weight":4.346,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.026,"turn_weight":0.75,"duration":4.021,"bearings":[84,168,269],"out":0,"in":2,"entry":[true,false,false]},{"entry":[true,false],"in":1,"bearings":[78,261],"duration":19.627,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":17.664,"geometry_index":12575,"location":[8.280543,47.896802]},{"entry":[true,false],"in":1,"bearings":[71,251],"duration":1.35,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.215,"geometry_index":12581,"location":[8.285598,47.89792]},{"entry":[true,false],"in":1,"bearings":[71,251],"duration":6.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.43,"geometry_index":12582,"location":[8.285941,47.897999]},{"entry":[true,false],"in":1,"bearings":[73,253],"duration":3.043,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.738,"geometry_index":12584,"location":[8.287469,47.898316]},{"entry":[true,false],"in":1,"bearings":[75,253],"duration":3.752,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.377,"geometry_index":12585,"location":[8.288233,47.898469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[75,255],"duration":0.709,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.639,"geometry_index":12587,"location":[8.289188,47.898638]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.289365,47.89867],"geometry_index":12588,"admin_index":4,"weight":4.1,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":2,"duration":2.34,"bearings":[35,76,100,255],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,false,false],"in":2,"bearings":[77,196,256],"duration":1.223,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.094,"geometry_index":12589,"location":[8.289961,47.898769]},{"entry":[true,false,true],"in":1,"bearings":[77,257,289],"duration":1.508,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":12590,"location":[8.290306,47.898824]},{"entry":[true,false],"in":1,"bearings":[78,257],"duration":1.752,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.578,"geometry_index":12591,"location":[8.290712,47.898887]},{"entry":[true,false],"in":1,"bearings":[78,258],"duration":1.053,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.949,"geometry_index":12592,"location":[8.291193,47.898955]},{"entry":[true,false],"in":1,"bearings":[79,258],"duration":12.951,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.656,"geometry_index":12593,"location":[8.29151,47.899001]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":11.02,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.918,"geometry_index":12598,"location":[8.295418,47.899412]},{"entry":[true,false],"in":1,"bearings":[87,264],"duration":1.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12602,"location":[8.298769,47.899619]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":20.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.168,"geometry_index":12603,"location":[8.299113,47.899631]},{"entry":[true,false],"in":1,"bearings":[92,271],"duration":36.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":31.762,"geometry_index":12611,"location":[8.305425,47.899697]},{"entry":[true,false],"in":1,"bearings":[93,276],"duration":5.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.387,"geometry_index":12633,"location":[8.316673,47.898793]},{"entry":[true,false],"in":1,"bearings":[90,271],"duration":4.115,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.6,"geometry_index":12636,"location":[8.318244,47.89876]},{"entry":[true,false],"in":1,"bearings":[90,270],"duration":11.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.35,"geometry_index":12638,"location":[8.319535,47.898763]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":1.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.037,"geometry_index":12646,"location":[8.323203,47.898508]},{"entry":[true,false],"in":1,"bearings":[105,283],"duration":48.096,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":43.287,"geometry_index":12647,"location":[8.323545,47.898453]},{"entry":[true,false],"in":1,"bearings":[122,300],"duration":1.889,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.746,"geometry_index":12664,"location":[8.335807,47.894852]},{"entry":[true,false],"in":1,"bearings":[123,302],"duration":8.08,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.475,"geometry_index":12665,"location":[8.336171,47.894699]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":41.84,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.701,"geometry_index":12666,"location":[8.337313,47.894208]},{"entry":[true,false],"in":1,"bearings":[131,309],"duration":2.463,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.279,"geometry_index":12674,"location":[8.342948,47.891415]},{"entry":[true,false],"in":1,"bearings":[130,311],"duration":34.289,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":31.719,"geometry_index":12675,"location":[8.343208,47.891263]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":1.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.365,"geometry_index":12680,"location":[8.347094,47.88904]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":13.945,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.893,"geometry_index":12681,"location":[8.347256,47.888947]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":0.838,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.768,"geometry_index":12683,"location":[8.34881,47.888075]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":2.584,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.391,"geometry_index":12684,"location":[8.348909,47.888024]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":5.723,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.293,"geometry_index":12685,"location":[8.349208,47.887868]},{"entry":[false,true,false],"in":2,"bearings":[94,126,307],"duration":9.021,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":9.324,"geometry_index":12686,"location":[8.349872,47.887529]},{"entry":[true,false,true],"in":1,"bearings":[121,304,325],"duration":3.713,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.414,"geometry_index":12688,"location":[8.350924,47.887044]},{"entry":[true,false],"in":1,"bearings":[120,301],"duration":3.211,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.971,"geometry_index":12690,"location":[8.351392,47.886854]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":1.85,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.711,"geometry_index":12691,"location":[8.351773,47.886705]},{"entry":[true,false],"in":1,"bearings":[118,300],"duration":2.336,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":12692,"location":[8.351999,47.886619]},{"entry":[true,true,false],"in":2,"bearings":[118,131,298],"duration":8.371,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.738,"geometry_index":12693,"location":[8.35228,47.886519]},{"entry":[true,false,false],"in":2,"bearings":[112,258,294],"duration":5.148,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.746,"geometry_index":12695,"location":[8.353229,47.886201]},{"entry":[true,false],"in":1,"bearings":[107,292],"duration":5.49,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.078,"geometry_index":12696,"location":[8.353936,47.886007]},{"entry":[true,false],"in":1,"bearings":[103,286],"duration":36.539,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":33.799,"geometry_index":12698,"location":[8.354722,47.885852]},{"entry":[true,false],"in":1,"bearings":[78,261],"duration":5.58,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.162,"geometry_index":12708,"location":[8.360106,47.885692]},{"entry":[true,false],"in":1,"bearings":[76,255],"duration":7.291,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.738,"geometry_index":12710,"location":[8.360914,47.885822]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":3.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.775,"geometry_index":12712,"location":[8.362042,47.886016]},{"entry":[true,false],"in":1,"bearings":[74,254],"duration":1.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":12714,"location":[8.362814,47.886157]},{"entry":[true,false],"in":1,"bearings":[72,254],"duration":3.449,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.191,"geometry_index":12715,"location":[8.363231,47.886236]},{"entry":[true,false],"in":1,"bearings":[71,252],"duration":11.75,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.869,"geometry_index":12716,"location":[8.364106,47.886426]},{"entry":[true,false],"in":1,"bearings":[70,250],"duration":9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.1,"geometry_index":12719,"location":[8.367068,47.887131]},{"entry":[true,false],"in":1,"bearings":[71,250],"duration":1.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12722,"location":[8.369335,47.887688]},{"entry":[true,false],"in":1,"bearings":[72,251],"duration":11.211,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.09,"geometry_index":12723,"location":[8.369674,47.887768]},{"entry":[true,false],"in":1,"bearings":[79,257],"duration":56.553,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":49.482,"geometry_index":12727,"location":[8.372844,47.888363]},{"entry":[true,false],"in":1,"bearings":[83,262],"duration":1.246,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.09,"geometry_index":12739,"location":[8.389374,47.889469]},{"entry":[true,false],"in":1,"bearings":[82,263],"duration":11.221,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.818,"geometry_index":12740,"location":[8.389735,47.8895]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":1.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.406,"geometry_index":12744,"location":[8.392925,47.889729]},{"entry":[true,false],"in":1,"bearings":[89,267],"duration":14.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.219,"geometry_index":12745,"location":[8.393372,47.889743]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":1.729,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.555,"geometry_index":12750,"location":[8.397464,47.889705]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":2.881,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.592,"geometry_index":12751,"location":[8.397943,47.889694]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.39874,47.889678],"geometry_index":12753,"admin_index":4,"weight":1.977,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.007,"turn_weight":0.75,"duration":1.369,"bearings":[49,93,272],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,true,false],"in":2,"bearings":[91,117,273],"duration":2.352,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.1,"geometry_index":12754,"location":[8.399113,47.889663]},{"entry":[true,false,true],"in":1,"bearings":[91,271,294],"duration":3.102,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.783,"geometry_index":12755,"location":[8.399732,47.889656]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":2.23,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.008,"geometry_index":12757,"location":[8.400544,47.889641]},{"entry":[true,false],"in":1,"bearings":[91,272],"duration":1.285,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.156,"geometry_index":12758,"location":[8.401138,47.889628]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":6.439,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.795,"geometry_index":12759,"location":[8.40147,47.889624]},{"entry":[true,false],"in":1,"bearings":[89,271],"duration":8.77,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.375,"geometry_index":12760,"location":[8.403171,47.889603]},{"entry":[true,false],"in":1,"bearings":[87,269],"duration":21.75,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.574,"geometry_index":12762,"location":[8.405508,47.889642]},{"entry":[true,false],"in":1,"bearings":[84,267],"duration":2.672,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.385,"geometry_index":12768,"location":[8.411331,47.889831]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":2.535,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.281,"geometry_index":12770,"location":[8.412033,47.889877]},{"entry":[true,false],"in":1,"bearings":[81,265],"duration":12.85,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.545,"geometry_index":12771,"location":[8.412703,47.889916]},{"entry":[true,false],"in":1,"bearings":[54,237],"duration":23.082,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":20.773,"geometry_index":12783,"location":[8.415869,47.89065]},{"entry":[true,false],"in":1,"bearings":[45,223],"duration":1.271,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.143,"geometry_index":12794,"location":[8.419667,47.893602]},{"entry":[true,false],"in":1,"bearings":[46,226],"duration":11.52,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.367,"geometry_index":12796,"location":[8.419895,47.893752]},{"entry":[true,false],"in":1,"bearings":[55,233],"duration":0.523,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.471,"geometry_index":12802,"location":[8.4217,47.89477]},{"entry":[true,false],"in":1,"bearings":[55,235],"duration":6.611,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.949,"geometry_index":12803,"location":[8.42179,47.894813]},{"entry":[true,false],"in":1,"bearings":[60,240],"duration":0.785,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.707,"geometry_index":12806,"location":[8.42293,47.895298]},{"entry":[true,false],"in":1,"bearings":[61,240],"duration":2.684,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.416,"geometry_index":12807,"location":[8.423067,47.895351]},{"entry":[true,false],"in":1,"bearings":[62,243],"duration":1.482,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.334,"geometry_index":12809,"location":[8.423548,47.895524]},{"entry":[false,true,false],"in":2,"bearings":[63,86,242],"duration":5.092,"turn_weight":2.25,"turn_duration":0.035,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":6.801,"geometry_index":12810,"location":[8.423715,47.895584]},{"entry":[true,false],"in":1,"bearings":[75,275],"duration":2.141,"turn_duration":0.083,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.852,"geometry_index":12815,"location":[8.424502,47.895568]},{"tunnel_name":"Dögginger Tunnel","entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[73,254],"duration":1.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.256,"geometry_index":12817,"location":[8.424815,47.895626]},{"tunnel_name":"Dögginger Tunnel","entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[72,252],"duration":43.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":39.244,"geometry_index":12819,"location":[8.425216,47.895711]},{"entry":[true,false],"in":1,"bearings":[95,280],"duration":2.318,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.086,"geometry_index":12840,"location":[8.437833,47.895002]},{"entry":[true,false],"in":1,"bearings":[84,270],"duration":3.896,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.506,"geometry_index":12842,"location":[8.438457,47.89498]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[76,259],"duration":5.029,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.527,"geometry_index":12845,"location":[8.439506,47.895075]},{"entry":[true,true,false],"in":2,"bearings":[64,94,249],"duration":5.27,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.717,"geometry_index":12848,"location":[8.440809,47.895352]},{"entry":[true,false,false],"in":2,"bearings":[56,217,238],"duration":0.561,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.486,"geometry_index":12851,"location":[8.44215,47.895853]},{"entry":[true,false],"in":1,"bearings":[57,236],"duration":7.426,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.682,"geometry_index":12852,"location":[8.442287,47.895914]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":19.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.738,"geometry_index":12853,"location":[8.444136,47.896719]},{"entry":[true,false],"in":1,"bearings":[58,238],"duration":1.941,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":12856,"location":[8.44906,47.898854]},{"entry":[true,false],"in":1,"bearings":[60,238],"duration":4.23,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.807,"geometry_index":12857,"location":[8.449556,47.899059]},{"entry":[true,false],"in":1,"bearings":[62,240],"duration":6.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.912,"geometry_index":12858,"location":[8.450642,47.899481]},{"entry":[true,false,true],"in":1,"bearings":[67,242,249],"duration":4.037,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.623,"geometry_index":12860,"location":[8.452369,47.90009]},{"entry":[true,false],"in":1,"bearings":[66,246],"duration":60.592,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":53.012,"geometry_index":12862,"location":[8.453405,47.900398]},{"entry":[true,false],"in":1,"bearings":[50,229],"duration":3.506,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.066,"geometry_index":12881,"location":[8.466669,47.907508]},{"entry":[true,false],"in":1,"bearings":[44,228],"duration":47.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":41.24,"geometry_index":12883,"location":[8.46742,47.907948]},{"entry":[true,false],"in":1,"bearings":[57,241],"duration":4.025,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.623,"geometry_index":12897,"location":[8.477062,47.913968]},{"entry":[true,false],"in":1,"bearings":[51,234],"duration":8.432,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.588,"geometry_index":12899,"location":[8.478,47.914397]},{"entry":[true,false],"in":1,"bearings":[49,226],"duration":2.938,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.643,"geometry_index":12902,"location":[8.479807,47.915442]},{"entry":[true,false],"in":1,"bearings":[50,229],"duration":2.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.498,"geometry_index":12903,"location":[8.480428,47.915807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[54,230],"duration":2.037,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.885,"geometry_index":12904,"location":[8.481011,47.916137]},{"entry":[true,true,false],"in":2,"bearings":[53,82,234],"duration":1.869,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.711,"geometry_index":12905,"location":[8.481474,47.916364]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[58,233],"duration":1.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.434,"geometry_index":12906,"location":[8.481865,47.916562]},{"entry":[true,false,false],"in":2,"bearings":[59,201,238],"duration":3.289,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.037,"geometry_index":12907,"location":[8.482212,47.91671]},{"entry":[true,false],"in":1,"bearings":[65,242],"duration":2.594,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.4,"geometry_index":12909,"location":[8.482936,47.916986]},{"entry":[true,false],"in":1,"bearings":[67,245],"duration":1.111,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.029,"geometry_index":12910,"location":[8.483532,47.917169]},{"entry":[false,true,false],"in":2,"bearings":[37,69,247],"duration":3.018,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.783,"geometry_index":12911,"location":[8.483796,47.917243]},{"entry":[true,false,true],"in":1,"bearings":[74,253,284],"duration":2.072,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":12913,"location":[8.484569,47.917427]},{"entry":[true,false],"in":1,"bearings":[80,254],"duration":2.064,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":12914,"location":[8.485077,47.917522]},{"entry":[true,false],"in":1,"bearings":[82,260],"duration":1.641,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.518,"geometry_index":12915,"location":[8.485587,47.917585]},{"entry":[true,false],"in":1,"bearings":[82,262],"duration":1.93,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.785,"geometry_index":12916,"location":[8.486,47.917626]},{"entry":[true,false],"in":1,"bearings":[84,262],"duration":21.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":19.668,"geometry_index":12918,"location":[8.486493,47.917672]},{"entry":[true,false],"in":1,"bearings":[86,267],"duration":1.451,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.342,"geometry_index":12924,"location":[8.491552,47.917833]},{"entry":[true,false],"in":1,"bearings":[85,266],"duration":23.314,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":21.566,"geometry_index":12925,"location":[8.491909,47.917848]},{"entry":[true,false],"in":1,"bearings":[75,257],"duration":0.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.832,"geometry_index":12934,"location":[8.497309,47.918412]},{"entry":[true,false],"in":1,"bearings":[74,255],"duration":8.1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.492,"geometry_index":12935,"location":[8.497531,47.918452]},{"entry":[true,false],"in":1,"bearings":[70,252],"duration":4.553,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.211,"geometry_index":12938,"location":[8.499486,47.918856]},{"entry":[true,false],"in":1,"bearings":[68,249],"duration":5.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.701,"geometry_index":12940,"location":[8.500565,47.919124]},{"entry":[true,false],"in":1,"bearings":[66,247],"duration":3.537,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.273,"geometry_index":12942,"location":[8.501751,47.919457]},{"entry":[true,false],"in":1,"bearings":[66,246],"duration":0.559,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.518,"geometry_index":12943,"location":[8.502442,47.919666]},{"entry":[true,false],"in":1,"bearings":[64,246],"duration":0.732,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.678,"geometry_index":12944,"location":[8.502549,47.919698]},{"entry":[true,false],"in":1,"bearings":[64,244],"duration":1.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":12945,"location":[8.502677,47.919739]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.502961,47.919831],"geometry_index":12946,"admin_index":4,"weight":3.795,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.019,"turn_weight":1,"duration":3.041,"bearings":[39,63,244],"out":1,"in":2,"entry":[false,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.503518,47.920027],"geometry_index":12948,"admin_index":4,"weight":4.143,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":0.75,"duration":3.686,"bearings":[60,242,320,346],"out":0,"in":1,"entry":[true,false,false,true]},{"entry":[true,false,true],"in":1,"bearings":[58,240,255],"duration":1.172,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12949,"location":[8.504151,47.920273]},{"entry":[true,false],"in":1,"bearings":[59,238],"duration":4.824,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.463,"geometry_index":12950,"location":[8.504333,47.920349]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[58,239],"duration":1.729,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.598,"geometry_index":12951,"location":[8.505107,47.92066]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[58,238],"duration":1.152,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12952,"location":[8.505375,47.920774]},{"entry":[true,true,false],"in":2,"bearings":[57,92,238],"duration":3.328,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.061,"geometry_index":12953,"location":[8.505555,47.92085]},{"entry":[true,true,false],"in":2,"bearings":[58,158,237],"duration":0.465,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.424,"geometry_index":12954,"location":[8.50594,47.921019]},{"entry":[true,false,false],"in":2,"bearings":[55,155,238],"duration":1.059,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.959,"geometry_index":12955,"location":[8.506031,47.921057]},{"entry":[true,false],"in":1,"bearings":[57,235],"duration":2.072,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.918,"geometry_index":12956,"location":[8.506237,47.921154]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":2.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.725,"geometry_index":12957,"location":[8.506661,47.921342]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":3,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.775,"geometry_index":12958,"location":[8.507266,47.92161]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":0.873,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.807,"geometry_index":12959,"location":[8.50788,47.921878]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":1.254,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.16,"geometry_index":12960,"location":[8.508057,47.921955]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":1.637,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.514,"geometry_index":12961,"location":[8.508312,47.922067]},{"entry":[true,false],"in":1,"bearings":[58,237],"duration":1.908,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.766,"geometry_index":12962,"location":[8.50865,47.922214]},{"entry":[true,false],"in":1,"bearings":[60,238],"duration":0.771,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.713,"geometry_index":12963,"location":[8.50905,47.92238]},{"entry":[true,false],"in":1,"bearings":[60,240],"duration":27.514,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":25.451,"geometry_index":12964,"location":[8.509229,47.922449]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[80,259],"duration":0.783,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.725,"geometry_index":12972,"location":[8.515882,47.924144]},{"entry":[true,false],"in":1,"bearings":[82,260],"duration":57.912,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":52.121,"geometry_index":12973,"location":[8.516084,47.924167]},{"entry":[true,false],"in":1,"bearings":[75,256],"duration":2.922,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.629,"geometry_index":12988,"location":[8.530735,47.925594]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":1.514,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.361,"geometry_index":12989,"location":[8.531456,47.925721]},{"entry":[true,true,false],"in":2,"bearings":[76,122,255],"duration":1.541,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.381,"geometry_index":12990,"location":[8.531828,47.925786]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.693,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.617,"geometry_index":12991,"location":[8.532164,47.925842]},{"entry":[true,false],"in":1,"bearings":[75,256],"duration":4.258,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.314,"geometry_index":12992,"location":[8.532322,47.925868]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":2.381,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.143,"geometry_index":12993,"location":[8.533273,47.926034]},{"entry":[true,false],"in":1,"bearings":[76,255],"duration":2.322,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.09,"geometry_index":12994,"location":[8.533805,47.926132]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":9.115,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.205,"geometry_index":12995,"location":[8.534323,47.926219]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":5.109,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.6,"geometry_index":12996,"location":[8.536371,47.926563]},{"entry":[true,false],"in":1,"bearings":[74,256],"duration":1.162,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.045,"geometry_index":12997,"location":[8.537517,47.926761]},{"entry":[true,true,false],"in":2,"bearings":[74,100,254],"duration":2.58,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.314,"geometry_index":12998,"location":[8.537778,47.92681]},{"entry":[true,true,false],"in":2,"bearings":[75,166,254],"duration":0.496,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.439,"geometry_index":12999,"location":[8.538287,47.926908]},{"entry":[true,false,false],"in":2,"bearings":[75,162,255],"duration":0.842,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.752,"geometry_index":13000,"location":[8.538396,47.926927]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":3.34,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.006,"geometry_index":13001,"location":[8.538609,47.926964]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":1.826,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.643,"geometry_index":13003,"location":[8.539437,47.927109]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.887,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.799,"geometry_index":13004,"location":[8.539896,47.927187]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":43.982,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":39.584,"geometry_index":13005,"location":[8.540112,47.927223]},{"entry":[true,false],"in":1,"bearings":[108,289],"duration":8.191,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.373,"geometry_index":13037,"location":[8.551137,47.92691]},{"entry":[true,false],"in":1,"bearings":[105,287],"duration":2.818,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.535,"geometry_index":13039,"location":[8.553142,47.92648]},{"entry":[true,false],"in":1,"bearings":[104,285],"duration":7.145,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.43,"geometry_index":13040,"location":[8.553841,47.926356]},{"entry":[true,false],"in":1,"bearings":[99,282],"duration":9.305,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.375,"geometry_index":13043,"location":[8.555533,47.926101]},{"entry":[true,false],"in":1,"bearings":[94,276],"duration":6.037,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.434,"geometry_index":13046,"location":[8.557762,47.925904]},{"entry":[true,false],"in":1,"bearings":[90,272],"duration":62.641,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":54.811,"geometry_index":13048,"location":[8.559225,47.925851]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":3.895,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.408,"geometry_index":13069,"location":[8.574278,47.926959]},{"entry":[true,false],"in":1,"bearings":[89,267],"duration":2.184,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":13070,"location":[8.575163,47.926986]},{"entry":[true,false],"in":1,"bearings":[90,269],"duration":3.246,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.84,"geometry_index":13071,"location":[8.57566,47.926993]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[91,270],"duration":0.885,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.775,"geometry_index":13073,"location":[8.576402,47.926994]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.576607,47.926991],"geometry_index":13074,"admin_index":4,"weight":1.473,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":0.75,"duration":0.832,"bearings":[91,271],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":1.768,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.539,"geometry_index":13075,"location":[8.57676,47.926989]},{"entry":[true,false,true],"in":1,"bearings":[91,271,315],"duration":2.408,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.1,"geometry_index":13076,"location":[8.577049,47.926986]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":1.326,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.16,"geometry_index":13077,"location":[8.577553,47.92698]},{"entry":[true,false],"in":1,"bearings":[93,271],"duration":2.525,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.211,"geometry_index":13078,"location":[8.577838,47.926976]},{"entry":[true,false],"in":1,"bearings":[92,273],"duration":2.203,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.928,"geometry_index":13079,"location":[8.578375,47.926959]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":30.68,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":26.846,"geometry_index":13080,"location":[8.57892,47.926949]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":2.848,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.492,"geometry_index":13084,"location":[8.586566,47.926692]},{"entry":[true,false],"in":1,"bearings":[95,274],"duration":2.58,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.256,"geometry_index":13085,"location":[8.587281,47.926657]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":0.752,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.658,"geometry_index":13087,"location":[8.587915,47.926612]},{"entry":[true,false],"in":1,"bearings":[99,277],"duration":2.307,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.018,"geometry_index":13088,"location":[8.588102,47.926597]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[102,279],"duration":1.35,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.182,"geometry_index":13089,"location":[8.58864,47.926539]},{"entry":[true,false],"in":1,"bearings":[102,282],"duration":0.684,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.582,"geometry_index":13090,"location":[8.588959,47.926492]},{"entry":[true,false],"in":1,"bearings":[106,282],"duration":2.336,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.035,"geometry_index":13091,"location":[8.589122,47.926469]},{"entry":[true,false],"in":1,"bearings":[108,286],"duration":6.258,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.477,"geometry_index":13092,"location":[8.589661,47.926368]},{"entry":[true,false],"in":1,"bearings":[115,291],"duration":0.812,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.711,"geometry_index":13094,"location":[8.591093,47.926031]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":6.852,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.996,"geometry_index":13095,"location":[8.591259,47.925979]},{"entry":[true,false],"in":1,"bearings":[124,298],"duration":8.531,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.455,"geometry_index":13098,"location":[8.592661,47.925495]},{"entry":[true,false],"in":1,"bearings":[131,309],"duration":2.58,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.258,"geometry_index":13101,"location":[8.594205,47.924757]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":2.986,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.607,"geometry_index":13102,"location":[8.594636,47.924507]},{"entry":[true,false],"in":1,"bearings":[133,311],"duration":3.127,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.73,"geometry_index":13104,"location":[8.595123,47.924222]},{"entry":[true,false],"in":1,"bearings":[135,313],"duration":8.461,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.402,"geometry_index":13105,"location":[8.595628,47.923903]},{"entry":[true,false],"in":1,"bearings":[138,316],"duration":68.016,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":59.506,"geometry_index":13109,"location":[8.596943,47.922994]},{"entry":[true,false],"in":1,"bearings":[114,291],"duration":1.475,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.291,"geometry_index":13126,"location":[8.610338,47.917332]},{"entry":[true,false],"in":1,"bearings":[115,294],"duration":50.76,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":44.414,"geometry_index":13127,"location":[8.61064,47.917243]},{"entry":[true,false],"in":1,"bearings":[75,254],"duration":6.191,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.572,"geometry_index":13153,"location":[8.62851,47.916489]},{"entry":[true,false],"in":1,"bearings":[84,261],"duration":3.932,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.539,"geometry_index":13156,"location":[8.63076,47.916803]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":10.301,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.271,"geometry_index":13158,"location":[8.631713,47.916864]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":1.199,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":13162,"location":[8.634205,47.916862]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":1.137,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.051,"geometry_index":13163,"location":[8.634453,47.916849]},{"entry":[true,false],"in":1,"bearings":[95,274],"duration":0.334,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":13164,"location":[8.63469,47.916838]},{"entry":[true,false],"in":1,"bearings":[96,275],"duration":0.322,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":13165,"location":[8.634761,47.916834]},{"entry":[true,false],"in":1,"bearings":[96,276],"duration":1.27,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.668,"geometry_index":13166,"location":[8.634832,47.916829]},{"entry":[true,false],"in":1,"bearings":[97,276],"duration":2.969,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.746,"geometry_index":13167,"location":[8.6351,47.916811]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":2.084,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.928,"geometry_index":13168,"location":[8.635731,47.916762]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":1.832,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.693,"geometry_index":13169,"location":[8.636176,47.916724]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":59.588,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":55.119,"geometry_index":13170,"location":[8.636566,47.91669]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":1.881,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.74,"geometry_index":13191,"location":[8.6514,47.916527]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":3.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.883,"geometry_index":13192,"location":[8.651869,47.916561]},{"entry":[true,true,false],"in":2,"bearings":[85,177,263],"duration":0.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.398,"geometry_index":13194,"location":[8.652644,47.916622]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":1.182,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.094,"geometry_index":13195,"location":[8.652753,47.916629]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":1.826,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.736,"geometry_index":13196,"location":[8.653048,47.916648]},{"entry":[true,false],"in":1,"bearings":[87,264],"duration":6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.699,"geometry_index":13197,"location":[8.653505,47.916679]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.654983,47.916728],"geometry_index":13199,"admin_index":4,"weight":1.025,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":0.5,"duration":0.561,"bearings":[13,87,267],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,false],"in":1,"bearings":[88,267],"duration":3.156,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3,"geometry_index":13200,"location":[8.655115,47.916733]},{"entry":[true,false,true],"in":1,"bearings":[88,268,287],"duration":1.744,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.648,"geometry_index":13201,"location":[8.655885,47.916753]},{"entry":[true,false],"in":1,"bearings":[87,268],"duration":7.264,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.9,"geometry_index":13202,"location":[8.65624,47.916761]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":17.422,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.551,"geometry_index":13203,"location":[8.657755,47.916821]},{"entry":[true,false],"in":1,"bearings":[78,260],"duration":5.85,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.557,"geometry_index":13207,"location":[8.661351,47.917129]},{"entry":[true,false],"in":1,"bearings":[79,258],"duration":1.992,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.893,"geometry_index":13208,"location":[8.662538,47.917301]},{"entry":[false,true,false],"in":2,"bearings":[68,82,259],"duration":5.258,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":5.988,"geometry_index":13209,"location":[8.662939,47.917355]},{"bearings":[80,110,264],"entry":[false,true,false],"in":2,"turn_weight":1.5,"turn_duration":0.037,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":13211,"location":[8.663403,47.917391]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"311","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 311"},{"type":"delimiter","text":"/"},{"type":"text","text":"Ulm"},{"type":"text","text":"/"},{"type":"text","text":"Tuttlingen"}],"degrees":207,"driving_side":"right","type":"roundabout","modifier":"straight","text":"A 81 / B 311 / Ulm / Tuttlingen"},"distanceAlongGeometry":69779.531}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on B 31.","modifier":"slight right","bearing_after":111,"bearing_before":117,"location":[7.863194,47.988324]},"speedLimitSign":"vienna","name":"Schwarzwaldstraße","weight_typical":3484.865,"duration_typical":3810.982,"duration":3810.982,"distance":69779.531,"driving_side":"right","weight":3484.865,"mode":"driving","ref":"B 31","geometry":"ge~ozAsx|~M~@eFv@uEhAqJd@eGHiH@wL?{MV}H`AaIvBiK~B{FbFwFrDmFpAiDnIme@`@qC`pAigIbTgvAbW}nCrPqrB|HaeA`K_qAnJeqAzPqwBzPewBzKkrApBgU`Du[|Fij@fEs]pHsk@tIqk@zIel@fM{_AzLo}@xL{{@jk@q|D~qB{_OhPm|AdFqgBzDmpAtBom@~Baj@`AcV`Ewr@|Dwe@tBgR~A_QdCeSxEg^jIid@nFgVlIs]tC{JjGqRxEwNjS_i@hUqg@lfAi}Bf`@uaAtRom@rHcX`K}_@|L{i@lJ}c@jRgdArKar@pEk]j@iFh@yEbK}|@vHqt@dHkv@~Fi{@bFe|@bFslAr@q[fAaf@b@wRdC}uAtAycAx@iz@n@ebABaHFuqAd@i}BIahBFkj@?cPW{sB@}Nf@ksAf@k}@pAqsB`DimBvD_kC`Gy_CzAkl@l@_g@DqBEgn@dB}m@x@sUvDqaAfGegAjLq}A~@}NlKkfBlJwsAnHgaAfJgkAfBoTtGsw@~Dec@~Mu_B|Hkw@lTuhB|I_u@bGgd@fCsQ|CmSdGg`@hHgd@pKqm@jGo[fGeZtNop@hDeOvCsLpNmi@nJc]lLc^lMy_@vUkl@vLmYxL_XzKuT|Re^fK{PdEuG`H_LdG{InRsWjUeYf\\_^vPaPzQuOjMcKzXcSvZkRfMaHpJqE|R_JhJ}D`JmDzQ}FtHwBdMuBzr@cNhT_Evc@mFpCa@|GcAxVcFj_@}JhPcFrNwDfHoB`D{@rO_Ev^eK~e@cOfR}FphA}b@pDuA|CeAXKxJcDdFmArGcAtGi@vFOjEItBArJGbHElMC~I]zIaAjHkAr]{FbFy@vDo@tQ}CbHk@rBMxIStUc@fRK`NiApFoAvHgCtJuEfNwJjG_FtEaEhGeG~A}A`IcJbHwInHgLpI_ObGkKrEqId@_Aj@mAbAsBrBiFjFsNjI{VdJkXnHuSzEmLhHkO|FwKnHeM|f@}t@zTo\\fGuJfGyKdGyM~DyKpCaKpC{LpFoX|EwThEqQfDiMhKe`@pBeH|BwHlA}DlA_EfAkD|B_IdDaLvDyLvDqNfDuN~BcMXwArAkIF]`BcKzJkj@lAeGtC_LlJmZ|D{M`CwKfByKh@oFh@qFv@yMz@i\\fAua@lBkh@j@sKl@mLfBeXnCy[`@sDbAaJdEq^vGum@bHiq@lDwZvCoR~CyOzCqLzDuMTw@xDqKxGePpEiJbCkEnC}E`GsIl@}@tDeFjd@en@|Xg_@~E}HlD_HlB{G|@uH`@eHZ_KTwK^sHt@gH~BaLfC_J`C{GjCsHnKkX~DeJtFwKdEmH`DaEfDyClDwBxGeEzMuHlFqD`DwC|BwDdBaFpAiHbByMt@{GR_HAoHTiHXcEx@uCxB{EbCuD`HyHnG}FpGkF`WsOrF{DlFmF`EkGvCkH|CeMlDeLhFuL~GiLvHmL~HoNdDoGbD{GrAeDzBqFbFwNdEaPbDmPlCiSbBiRbCk]lCw]zA_QzAiQ`ImgAvAaQtBgPjC}LpDaNnFyLlFmK~FwH|EiFpEoE`JiI|DcE~AaBjGcInFmHzN{RfNuPnIkIzEqEzHgGhIiFpFoCpP}FbIsBhLeBxK_AlMe@~P[`JQrt@i@hQOjKP`K`@hJ`ApM~BxLtDPDxRhHdNfF~CdAjYvJjKvBzQhEvTjCjEh@pPzDhKb@lGSxD{@zCiAbDkB~GoI`CmGxBqKvA_P\\{RQkb@tAcVjAuO^{EzCuZdC_Uv@iF~NuaAbGwb@`@uC`@iEvEmf@rJo}@fEob@xJcdAp@eH~Cs^jD}VfD{QzFoZzOws@dHi_@vH_e@|CwSpFqd@`Es^tDec@jCe[xB_`@lA__@|@}\\t@gi@\\ci@?mJBaGBwKCcLIcGFoEvAaR@ya@d@y`@}@cR|@{QlA{Ul@kKd@mHvAaO|Dc`@~G_f@zDwU~Ei\\l@iDtNkw@bWulAdO}w@vf@inCjWylAl\\itA~Lcf@dS}x@~Kob@zEuSrBmIbEeQjE}PlKml@lLyr@dEiUtHk[~J_[lOsb@xIaVzGgSvCwJz@wCt@qCzKgd@zGc\\pLei@bHcXzD}LpCsJd@aBfH}QlMs]tSud@pKyRfKyQbS{[`B}ClCaExZue@hIqNzHeN`HyNdJsRpGiQbFaOdEaO|Jqc@zA{GnGcd@`@cF`AkOn@eOVcIKcPIsEIeCm@mEs@eCs@cCy@qA}CyC}@e@aA]sBg@sCG_ADoC^}BhAyCfD_CxCiDjKyNbg@sJhZwC`J{GvR{JhWwMx\\oOx^qEbJiE|HgElFoExDoFrB}D^aHe@mFeCsDiDcDkHwB{Ha@kFW{I@eLr@yI~AoJ`A{D~AuH`D_Mf@_B`@eDZeEFoCe@mDaAaD}@cAuAs@wAg@yBJwAh@yEdEeH`PsGdMcNjUeJ`Q}H`QoHpSoD`IiCtDqBpAqDbAuDm@aDaByBgB_CaC_K{PkEkFyDuCqFqC}CiAwCgAaHmBeD_@eCEcDf@}ErC{Cl@_C]mByAqAwBk@oBi@uCEkBHaDp@kEtAiC~AcBfCs@hBG`Bh@pBpB`A|@jBvCvArAhBbB`DzAdD|@fQnEdGnC|BnBtDxCzD|EjBnBzAhB`BlAnCh@fDu@fBmBf@kArBoEtAcJjCuRhEiSpFuRfFaN|FcMlD{FxIqMpNsOdJoHzG_EpJyDlF_AfHFdHn@~Gp@fFp@hCIpCw@~C{AvBcBpBmCtAaC~ByHv@}FJqC?aJc@{E}@kFuBsHqEsHcCiEmC}EsBoD{AuDi@aB{@oCw@qDuBeJw@}IWqONsJj@iN`@cIdAsMlAmLfC_PrDqQxDuOhTs{@Nm@hIm\\zGkYdEyShD_RrD}YlC_\\x@_Qz@oR^wZDkUc@{]w@qSeBwXqB{Tk@sE}CmXcBcLgCyOwAaJ{AmJaAuH{@}H}@yJm@_Ik@_JAOc@}Ja@sMOoJIeK?uKLoN@]d@kQ|@uRtA}QfB_Q|BcQlAgH@IbAeGvCkQjFqVjEqPlB{GtAoEhEiMpEkMvDuK|BkGpBuFrCeIjCoI`CwIFYtAuFjAqFhAwF`AiF`AgG|@gG|@mHnAuLVaD@MVcDj@}Ib@iJ\\wIjBgv@n@oWXsXDiOOsRa@yTq@kVmAa[iBsc@gAsg@GwCQqg@p@i\\`Boa@zBo_@nAiPjE}c@bG}f@dD{UdB}L|Ggc@x@cFbEcVnKsk@nMok@vNgk@nP_l@lLc`@zVqs@zF_Sxr@olBnkAg|CjIcUvi@iwAve@yrApWc`AzJic@tFeZj@_DnB{MlCqRlCaUtBuU`BcWdAqVh@uUZmV?y@Kua@e@wVy@yV_Duf@kEed@kEw^mEy]sBkOqHuj@oF{a@kEka@wCu]wAyUm@iR[m\\?}Tl@gg@dCuiA^}k@Dwe@@gCIe\\YaT{@s_@mAo_@sCan@sBk\\iCg\\uEci@sF{d@_Fo_@mGsb@sHsa@mHg^wIeb@iI}\\sj@mrBgCuJaKk`@yM}j@uE{SeGiYuBuKwFg[mJkn@sEg`@iDa^wDwf@uC_k@gAa^_A_\\AgFMo`@G_Qf@gf@lAsl@jBwd@hBw\\xCy`@xCuZ~Eq\\lFo`@nBwOnHgb@zKmf@`VmjAlE{U|CoRtCuW|AmP|AqTj@wQR}UC{LSsQ]oP_BqZ_AuKgB_PwD{UyEqWwDcPsCoKyEkO{Pc`@uT_h@iJqTkNg_@aBkFwHiVaHaYgI}a@oOo`AsE{YuKse@}HgXsIiUkOsYoHkLoIkK_N_Pgr@gp@gWkYiTuYiVwYkWcVqy@gs@_MoK{TyT_NsSsNoVsHmRaLi]ePae@wBiFiNs[eQc^_N_QwPiR{PuOmNoMkFsF{MoPkBqBcMwReOkWoK_VoLi]gJ}_@wDkTiC}TgCs[_Baa@SyOGmPRyPl@sR~@mPhAyOjBeRlCoSdDuTdE{VxF_ZvGy[~SacAjN_u@~Fu\\rVwyAnMcw@dLwl@hFiSvDiOzIi\\vMqc@~Jq[vMq^rKkXzImSbHaOdRy^dSa_@fN{UvNgUxQmXrYo_@~WkZ|V{WxQmP`PgOrUwR~VmSfDsCzGqFp_@_\\nZmVv]qYtM_MdNqMjMyMjMiMxLoOlGwJlFuJvG_OzFeO~IyVbCgHxFmQhJm]xJue@`J{g@xSowAfJum@`Nyv@lHuX`IcZjKiZhJcVbKeUlVsg@hRkc@rAyDxJgYxEcPlE{QtIia@jDqQzAsIrKis@vBcNx@gF`D{OjG}YvIg^rAaFpKu`@bZ_kAnUobAtKgh@bKug@hh@ujCnNov@rLok@rLih@zIs\\tMoc@lL{\\tBwF~Lm\\dZey@zMae@xEmSfIgc@tFab@bD}`@dBwTlA_U~@cVr@kc@FoZe@e]}@gZyBe^oDq^oDkXcGm\\wE{UcMkc@eKeZgNw\\yLsVkWic@iOkU}RyYeXea@qB}DoFaKyIuPqIgTwEoP{@wC{AaHmAuG_CaPwCkTeBgRk@}H[sE}@cPMwQD}RT{NbBak@r@mSV{FYwZs@}Si@oKgDup@gBwa@g@wSMqXLqObAsY|B_c@dEg`@hFq`@fFu[rHc_@jJsc@lNct@zJod@~Iea@jIwa@|J_m@`Hkh@fGoh@lLskA`Fqe@`Es^fD}WnDwS~DmTrEoTjB}I~CqKnF}RnG_ShIwUhLcYfS}c@pHcP~C}G~DuIxI_RtI}T|IkW^iAtH{VnIc[vGiYd[ovAhVkhAjQix@xG}[zCsQnCiR~BoT`@uEtAiQlAyWn@}WNoRGy[{Awg@{AcYeEmj@eFsd@uMg_AgOi`AwLgu@yJar@}CmTcEeZuLicAqHwn@uFwj@{A}N_AaJeEgd@mBqT}BkXgCa]{AyR{By[kDek@mGmkAgEieAw@oW{D{zAyAos@i@wW}Aig@WoTi@e`@i@qf@i@wc@@qf@Qso@Cuy@AmlANu{@Vei@~@}kAt@wz@r@mf@l@ec@lAme@x@i[`B}a@`Bq^LcCfAcUvAgUTwDlC}_@tE{m@xByXrAcQlDmd@z@eM|Ak]vA}Z|@iZ`@gYVm`@Foe@Ayf@C{g@Eyd@^}`@b@aXp@a[bBk]`B_^vBmYnAqOlBkTvCcYrEq_@hGye@jHqg@vKwt@tGaa@jG}`@hKym@vJkj@lLul@hMqm@`Su~@~R{y@rRiy@zOkk@vRir@`Qqn@pHwUt]kfAjQch@~Ky[fO}`@~P}d@tZ_w@p^u|@|^wz@vP}_@nHgOpg@ggAtU_g@|p@}tArEuJbR_`@xDcIpg@yeA|LiYdBeEvHuQdToh@vLu[pOad@xAqE`HuUhHyVjDcMfEqP~Luf@zDsRbKek@xDs[zBoSxBwVvCia@jCib@`Bkb@v@ud@?{c@Qic@m@kb@_Bcb@wAkYwAqRkD}]gB_S{Goq@iCuWoCqV}CaY{Juu@oIsm@kQ{jAeNs}@iQmhAyH_h@uEgZ_DeTeHah@uKe|@oHex@yDue@eDag@iFy{@kEa_AwDy`AoC}dAwBktAmBy}CyBgjBsAwz@qBgw@cJoiCuJo}B}@qUiDou@}CmdAsAgf@m@ec@[}ZIuWGka@Fgs@ZyiAx@sdAT}\\NmVNkY\\iVLue@HiWRmYXcd@FwSh@iiBc@ucAi@klAi@ih@qB_vBOiRi@{r@EmF}C_|BgAm`@SmImA{h@cCef@aBoQeBmTuAyOiBkMaB_LsAkHmA}EaDkO_EcO}CuLkDaKuH}RmHmOqNaYgFcJcGkI{Zg^}\\c^a^}_@yQsUqNuReJyNmAoB}EwIiKeR{J}R_LoUeKqVuHaQqCqHuAsDsJyWqGkScIaYiBqGwCiKaEwPwBmIc@_NJwG\\eGRsIDsEk@uJgA{Fu@eGsB{OuCqTkFcb@_Iwj@{Dkd@wDor@[om@C_o@h@{e@x@kb@tAq[jCk`@dD_f@zFmp@dH}h@fE}ZnCkO`EcWrEaZjGqe@fJcjAnB_\\f@eNByVw@wXcAiXaAoM}C{\\sEs\\wD}ToIo^iEaQoMga@yBqGiq@qrBol@_gB_s@qvB}b@esAyK_^kY{bA_Oal@aU{}@oD{QwL{l@qIcb@sT{iAsJue@cFaTwFcTuLu`@{Kq[sLwZwNu[kPi\\{Q}Zm~BqyD}[_j@g_@}o@cSa_@}Tkd@sRwb@i\\ou@{L_WiMcXeLyT}QuZ_LkPeVk]sl@uw@ulAk_B_LcOsIkLkr@u_AoYah@eMoZmJuW{[cgAyTc|@_Smt@aKa[wMq]yVkk@uSic@ySg_@yUye@sSmc@eM}[kKmWgHuTuK{^qCkLmJgd@sCoO{EaYsCgU}Dw^}B{^qAyXq@iOi@oMuBwp@u@uj@s@oq@i@o|Aa@mx@UiT]iUaAme@_Bkn@{C}z@kBw`@wBy^yBa]kCg^{Cy_@cDa_@oA{L}Gqm@{Hkm@mEg\\eG}`@qGo`@uHmb@cJue@aLej@_AuEqA_GwDwP{FuUkCcKkNqf@wCkJmRko@cFwOwCgJqIaWkAuDaE{KwJoYwOyd@wOke@yCaJ_F}NeHcTkI_XiCeJ{Rsr@iOol@kMcj@aK}h@gJij@qGqc@_Kc}@oJszAm@sKqBse@q@y^_@kV_@{c@?y{Ak@gsA[my@_Awd@cBkg@}Cmo@oEcq@oIwdAyJobAa]cjD{Im_A}Fal@aCgVoB_Ts@{HkImz@cEg`@mDk_@oT__CkKsfAaBiOcEy^e@yEiAiLaDq[_CeV{Cu[gAoL{KkkAqBiTqC}YoAcOgA_O{AqTqAgU}@{Tm@}Tc@}TUsTMuUFgULwS\\{Rd@{RXwHt@oR`AuRb@kHh@gIl@sHj@sHdBkRt@sHx@mHr@mH~BeR`C}QbC_RnHmi@vLm{@pLq{@hLw_AvFuj@rDi`@nCk]xDai@nCqi@fCen@pBqp@nAcq@Xih@Bm[Gkf@[qf@c@u\\aAcf@aBqp@yAsf@u@qRqA_]qHaaB}Iy`BiE_z@iFodAuB}`@kA_[gBwb@_Bof@kAec@kAyc@}@og@y@yq@u@iv@Ma^Esa@BwJDyKBqHDaQJo^FyP`@q`@Raa@J{Rz@i`ArE{rDdFysEdAuk@r@kXd@gM\\uJrBs`@|A}Rl@eIhEu`@jHij@tJem@fBkI|BuKlHg[zOum@~Oud@pQef@pIsRrN}YpF}KfIoP|Rq^fMmTta@qp@hEaHp@cAhAaBvk@u{@lt@khAj^mm@z\\wl@jOwZ~Oc\\z[cx@~Ryn@bPcn@hKge@zIkf@pIao@lH{o@rR{cB|Kky@~Oc`ApD{QfNcp@zNmn@ba@ifBJc@lPou@~Gw\\vGq^jIge@jHch@pEy`@`Du^lCy_@x@}R`Ao]d@u]@uk@{@aj@wA_^mBk\\sDub@{Eke@uGmg@aUozAwQijA{OegAuFsf@mFki@aFiq@cD}n@{Aoi@]aPa@_S_@ig@Dsi@~@ys@XoNTyMFmCHmCb@wO`Bmf@jAyZbAkWdCun@|DkmAnA}l@ReKd@cTnAgeAZyi@Pkl@GsSS_~@EuNQqOm@il@Uwa@Uu^Cqw@V}pAB}kAYsg@}@{q@w@y[cAi\\{Aac@]kKMyEe@mQ}@q[yAcrAGgHIgGg@co@OeUwBu}Ac@sZmCifAkE{aAiF}y@wIeiAkBaXw@_RO_I~AqLxBsJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward A 81, Ulm.","announcement":"Exit the roundabout toward A 81, Ulm.","distanceAlongGeometry":37.114}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[118,294,356],"duration":4.918,"turn_weight":0.5,"turn_duration":0.009,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":4,"out":0,"weight":5.164,"geometry_index":13213,"location":[8.663806,47.917282]},{"entry":[true,true,false],"in":2,"bearings":[32,103,271],"duration":4.266,"turn_duration":1.32,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":4,"out":0,"weight":2.799,"geometry_index":13218,"location":[8.664161,47.917221]},{"bearings":[139,212,347],"entry":[false,false,true],"in":1,"turn_duration":0.625,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":4,"out":2,"geometry_index":13221,"location":[8.664287,47.917354]}],"destinations":"A 81, B 311, B 311: Ulm, Tuttlingen, Immendingen, DANUVIA81","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"311","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 311"},{"type":"delimiter","text":"/"},{"type":"text","text":"Ulm"},{"type":"text","text":"/"},{"type":"text","text":"Tuttlingen"}],"degrees":207,"driving_side":"right","type":"roundabout","modifier":"right","text":"A 81 / B 311 / Ulm / Tuttlingen"},"distanceAlongGeometry":60.447}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit toward A 81/B 311/Ulm/Tuttlingen.","modifier":"straight","bearing_after":118,"bearing_before":114,"location":[8.663806,47.917282]},"speedLimitSign":"vienna","name":"","weight_typical":9.674,"duration_typical":11.609,"duration":11.609,"distance":60.447,"driving_side":"right","weight":9.674,"mode":"driving","ref":"B 31","geometry":"cmskzA{nxoOrAeBx@iCZ{CGaDg@wCcA{B{AwAiBg@kBHcBz@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn right to take the A 81 ramp.","announcement":"In a quarter mile, Turn right to take the A 81 ramp.","distanceAlongGeometry":575.509},{"ssmlAnnouncement":"Turn right to take the A 81 ramp toward Singen, Lindau.","announcement":"Turn right to take the A 81 ramp toward Singen, Lindau.","distanceAlongGeometry":163.333}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[27,167,303],"duration":3.113,"turn_duration":0.094,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.869,"geometry_index":13223,"location":[8.664252,47.917458]},{"entry":[true,false,true],"in":1,"bearings":[55,207,244],"duration":2.822,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.639,"geometry_index":13225,"location":[8.664408,47.917666]},{"entry":[true,false,true],"in":1,"bearings":[67,237,251],"duration":0.838,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.781,"geometry_index":13227,"location":[8.664707,47.917802]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":8.619,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.932,"geometry_index":13228,"location":[8.664807,47.91783]},{"entry":[true,false],"in":1,"bearings":[62,242],"duration":4.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.822,"geometry_index":13232,"location":[8.666284,47.918292]},{"entry":[true,false],"in":1,"bearings":[59,242],"duration":0.852,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.809,"geometry_index":13233,"location":[8.666963,47.918529]},{"entry":[true,false],"in":1,"bearings":[60,239],"duration":1.83,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.738,"geometry_index":13234,"location":[8.667112,47.918588]},{"entry":[true,false],"in":1,"bearings":[57,240],"duration":4.781,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.422,"geometry_index":13235,"location":[8.667467,47.918727]},{"entry":[true,false],"in":1,"bearings":[55,237],"duration":2.951,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.73,"geometry_index":13237,"location":[8.668385,47.919123]},{"entry":[true,false],"in":1,"bearings":[54,235],"duration":3.777,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.494,"geometry_index":13238,"location":[8.66893,47.919381]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[51,231],"duration":4.662,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.312,"geometry_index":13240,"location":[8.669611,47.919728]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"bearings":[48,229],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":13242,"location":[8.670415,47.920185]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Singen"},{"type":"text","text":"/"},{"type":"text","text":"Lindau"}],"type":"turn","modifier":"right","text":"Singen / Lindau"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 81"}],"type":"turn","modifier":"right","text":"A 81"},"distanceAlongGeometry":600.509}],"destinations":"A 81, B 311, B 311: Ulm, Tuttlingen, Immendingen, DANUVIA81","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward A 81/B 311/Ulm/Tuttlingen.","modifier":"slight right","bearing_after":27,"bearing_before":347,"location":[8.664252,47.917458]},"speedLimitSign":"vienna","name":"","weight_typical":38.896,"duration_typical":40.807,"duration":40.807,"distance":600.509,"driving_side":"right","weight":38.896,"mode":"driving","ref":"B 31","geometry":"cxskzAwjyoOoE{CoE{CoCyG_C{Hw@gEcB{IiDmRoKof@}FoUyMmi@uBiHuGeUmH_UiNkb@cOaa@oMk\\eFeLwFgMyS_c@eOeZ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":19582.15},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 40.","announcement":"In 2 miles, Keep right to take exit 40.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 40.","announcement":"In a half mile, Keep right to take exit 40.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 40 onto A 98 toward Lindau, Friedrichshafen.","announcement":"Keep right to take exit 40 onto A 98 toward Lindau, Friedrichshafen.","distanceAlongGeometry":317.778}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[8.67085,47.920444],"geometry_index":13243,"admin_index":4,"weight":9.201,"is_urban":false,"mapbox_streets_v8":{"class":"primary_link"},"turn_duration":0.072,"turn_weight":4.5,"duration":5.154,"bearings":[46,83,228],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,false,false],"in":1,"bearings":[113,268,317],"duration":1.791,"turn_weight":0.75,"turn_duration":0.04,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":4,"out":0,"weight":2.369,"geometry_index":13247,"location":[8.671492,47.920481]},{"entry":[true,false,true],"in":1,"bearings":[134,293,328],"duration":4.619,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":4,"out":0,"weight":4.246,"geometry_index":13248,"location":[8.67171,47.920418]},{"entry":[true,false],"in":1,"bearings":[130,314],"duration":2.07,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.914,"geometry_index":13249,"location":[8.672208,47.920098]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[8.672442,47.919966],"geometry_index":13251,"admin_index":4,"weight":10.424,"is_urban":false,"turn_weight":0.75,"duration":10.479,"bearings":[106,127,310],"out":1,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[13,83,253],"duration":2.223,"turn_duration":0.014,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"weight":2.043,"geometry_index":13259,"location":[8.673959,47.919966]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[104,265,315],"duration":4.721,"turn_duration":0.025,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":4.344,"geometry_index":13262,"location":[8.674313,47.919991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,307],"duration":1.252,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.158,"geometry_index":13268,"location":[8.675026,47.919757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.675216,47.919698],"geometry_index":13269,"admin_index":4,"weight":14.355,"is_urban":false,"turn_weight":11.75,"duration":2.848,"bearings":[138,295,317],"out":0,"in":1,"turn_duration":0.03,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,319],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.236,"geometry_index":13271,"location":[8.675852,47.919216]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,320],"duration":3.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.129,"geometry_index":13272,"location":[8.676162,47.918964]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,324],"duration":10.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.789,"geometry_index":13276,"location":[8.67692,47.918296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,330],"duration":1.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.615,"geometry_index":13286,"location":[8.678914,47.916049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,332],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.297,"geometry_index":13287,"location":[8.679223,47.915664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,328],"duration":75.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":67.914,"geometry_index":13289,"location":[8.679916,47.914878]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,332],"duration":6.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.199,"geometry_index":13356,"location":[8.700692,47.901813]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":11.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.389,"geometry_index":13363,"location":[8.70174,47.900169]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,330],"duration":8.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.633,"geometry_index":13371,"location":[8.703598,47.897358]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.705607,47.895542],"geometry_index":13382,"admin_index":4,"weight":7.998,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.164,"bearings":[136,151,319],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.708213,47.894019],"geometry_index":13390,"admin_index":4,"weight":5.225,"is_urban":false,"turn_weight":1,"duration":4.715,"bearings":[124,293,305],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,299],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.238,"geometry_index":13395,"location":[8.709733,47.89339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,297],"duration":8.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.266,"geometry_index":13396,"location":[8.710197,47.893233]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,287],"duration":53.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":48.26,"geometry_index":13406,"location":[8.713064,47.892468]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,297],"duration":19.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.588,"geometry_index":13469,"location":[8.732721,47.888626]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,269],"duration":1.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.143,"geometry_index":13488,"location":[8.740129,47.887577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":56.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.221,"geometry_index":13489,"location":[8.740624,47.887592]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,278],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.389,"geometry_index":13556,"location":[8.762347,47.892184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,279],"duration":3.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.117,"geometry_index":13558,"location":[8.762942,47.892118]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,285],"duration":6.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.174,"geometry_index":13561,"location":[8.764275,47.891908]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.766806,47.891271],"geometry_index":13568,"admin_index":4,"weight":2.129,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.385,"bearings":[116,145,295],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,297],"duration":7.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.758,"geometry_index":13571,"location":[8.767635,47.890992]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.770059,47.88989],"geometry_index":13580,"admin_index":4,"weight":8.244,"is_urban":false,"turn_weight":1,"duration":8.057,"bearings":[130,294,309],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,320],"duration":4.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.064,"geometry_index":13588,"location":[8.772302,47.888391]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,328],"duration":9.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.172,"geometry_index":13592,"location":[8.773346,47.887423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,339],"duration":4.016,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.506,"geometry_index":13601,"location":[8.774992,47.885217]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,345],"duration":1.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.07,"geometry_index":13604,"location":[8.775452,47.884202]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,347],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.1,"geometry_index":13605,"location":[8.775557,47.8839]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,348],"duration":18.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.322,"geometry_index":13606,"location":[8.775657,47.883585]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":11.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.27,"geometry_index":13619,"location":[8.775774,47.878799]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,354],"duration":5.254,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.842,"geometry_index":13629,"location":[8.775921,47.875788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,348],"duration":9.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.709,"geometry_index":13634,"location":[8.776362,47.874117]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,337],"duration":15.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.801,"geometry_index":13643,"location":[8.777796,47.871224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,329],"duration":4.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.199,"geometry_index":13651,"location":[8.78095,47.867378]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,327],"duration":5.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.4,"geometry_index":13653,"location":[8.781957,47.866321]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,324],"duration":0.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.24,"geometry_index":13656,"location":[8.783331,47.864994]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,324],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.6,"geometry_index":13657,"location":[8.78339,47.864939]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.783541,47.864792],"geometry_index":13658,"admin_index":4,"weight":17.041,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.957,"bearings":[143,156,325],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.788409,47.860813],"geometry_index":13667,"admin_index":4,"weight":4.104,"is_urban":false,"turn_weight":1,"duration":3.287,"bearings":[137,306,318],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,316],"duration":1.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.348,"geometry_index":13670,"location":[8.789498,47.86004]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,316],"duration":2.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.5,"geometry_index":13671,"location":[8.789879,47.859776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,312],"duration":10.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.293,"geometry_index":13672,"location":[8.790634,47.859317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,313],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.699,"geometry_index":13673,"location":[8.793708,47.857369]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,310],"duration":2.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.508,"geometry_index":13676,"location":[8.795485,47.856342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":8.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.816,"geometry_index":13677,"location":[8.796269,47.855892]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.798755,47.854523],"geometry_index":13679,"admin_index":4,"weight":1.025,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.115,"bearings":[131,151,309],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":7.096,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.564,"geometry_index":13680,"location":[8.799077,47.854337]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.801149,47.853133],"geometry_index":13682,"admin_index":4,"weight":7.961,"is_urban":false,"turn_weight":0.5,"duration":8.074,"bearings":[131,286,311],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,315],"duration":50.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.48,"geometry_index":13687,"location":[8.803535,47.851663]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,332],"duration":0.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.85,"geometry_index":13712,"location":[8.815201,47.840598]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,332],"duration":64.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":58.227,"geometry_index":13713,"location":[8.815372,47.840383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":3.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.082,"geometry_index":13742,"location":[8.829919,47.82703]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.830872,47.826427],"geometry_index":13744,"admin_index":4,"weight":3.146,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.514,"bearings":[133,138,313],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,312],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.006,"geometry_index":13746,"location":[8.831857,47.825825]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,312],"duration":9.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.775,"geometry_index":13747,"location":[8.832175,47.82563]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.834968,47.823962],"geometry_index":13751,"admin_index":4,"weight":2.473,"is_urban":false,"turn_weight":1,"duration":1.656,"bearings":[131,289,312],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":6.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.186,"geometry_index":13752,"location":[8.835422,47.8237]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":8.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.299,"geometry_index":13753,"location":[8.837316,47.822575]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":17.752,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.414,"geometry_index":13754,"location":[8.839551,47.821251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":7.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.762,"geometry_index":13755,"location":[8.844454,47.818353]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":6.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.391,"geometry_index":13756,"location":[8.846467,47.817159]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[132,312],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":13758,"location":[8.848312,47.816058]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lindau"},{"type":"text","text":"/"},{"type":"text","text":"Friedrichshafen"}],"type":"fork","modifier":"right","text":"Lindau / Friedrichshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"40"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"98","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 98"}],"type":"fork","modifier":"right","text":"Exit 40 A 98"},"distanceAlongGeometry":19611.816},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lindau"},{"type":"text","text":"/"},{"type":"text","text":"Friedrichshafen"}],"type":"fork","modifier":"right","text":"Lindau / Friedrichshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"40"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"98","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 98"}],"type":"fork","modifier":"right","text":"Exit 40 A 98"},"distanceAlongGeometry":3218.688}],"destinations":"A 81: Singen, Lindau, Konstanz","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right to take the A 81 ramp toward Singen/Lindau/Konstanz.","modifier":"slight right","bearing_after":83,"bearing_before":48,"location":[8.67085,47.920444]},"speedLimitSign":"vienna","name":"","weight_typical":646.768,"duration_typical":687.568,"duration":687.568,"distance":19611.816,"driving_side":"right","weight":646.768,"mode":"driving","ref":"A 81; E 41","geometry":"wrykzAcgfpOg@gMYuIKyEBkG|BsL~Rc^hC_F|BsFdEuHpAmGp@sHByJc@cJaAsIyCuSmAyK_@iFSoF@iFLoE`@{DbAqGxAgFjB}ExCmHtB{JtPyVlK}NvNkR~LqOxG_IvGsHdIeJhJwJjIoIjIgIzQ_PlL{JpLkJtPuMbCgBpL}IbZ_V`WiRnc@w^rKqJpKqKvG}GvGiHdKiLzJyLhNmQfJgM~I{M|FaJzFmJhNiVvHmNrHaOtNuZtJuTbJiUfFeNdFmNnEcNjEiNfEyNdE_O~D}N|DcObLkd@zKud@|Lwh@dMah@|FoTbGkTlG_TnGuSdJgYxJgXlJwWxMo[tFgMvF_M`Oa[zQe_@hHsNlHoN~GqMbHkMlQg[nRi\\vRw[xM}SzMoShNgShN}RzSmYzS}XnTwXpTeXp_@oc@pOyPtOiPhHgHhH}GrGcGtG{FtGuFtGoFvGkFvGgFbTmOjVgP~K}GbLmG~KaGbLwFpLqFpLoFh\\iOh\\sOpRkJrRgKjRgLtL{HxXcS~QiOtHwGrH}G`I_IbIiInQuRjJ}KlJkLdG}HdGiIbGqIdGwIzKoQ`McT|EwIxEaJdP_\\zO{]lJiU~GgR~JcY~CwJ|C}JrH_WvFeTxH_\\fEeRbEgRpC_NnCeNtCuOpCyObC{O~B}OtCqThCuTdDi\\bDm_@lBgYdBe[fAgU|@oUr@_Vd@cVX_XNcXD{YC}Y_@qbAE{`@Dw`@FaMN}Ld@aZ\\sOb@mO`@mMd@mMf@wLp@wMv@qMz@mM`AmMjAoNlAiNfAeLnA_MtA{LzAqM~AmMfBsMjBoMlB}LpByLzBoM~BkM`C_MbCoLfCiLlCkLnCaLxC}LnCmKhD{LjDsLfEmNlEeNfJkXdJgWpPud@rMy^pEaNpEiNpDoLfAgDvF{QfFuRpFwSfHoZfCmL|BuL`EgTxDmT`F{ZfCuQbC{QnDk[hCuWxB{WzB_ZjBiZbBq\\pAs]x@u\\f@g]Ve]@oUKuU]}]e@eYs@wWcA}Vk@{Ms@wMuAmU}A}UmC{[gDw\\wGcj@qEy[aFuZ{Fy[mGyZyG_ZkHyY{HyYqIaZcHuTaJ_XqJoXuUgq@_JqWoDgKkDmKsDyKsD_LkDaLkDgLaDuK{C}KyCeLwCiLmCwKiCuKaC{K_C{KoCgNwBmLwBoLwBaMsBcMkBgMgBgM_BeM}AaMwAsMsAqMoAsMiAsMgAqM}@wM}@uMkBw\\s@qPo@qPaA{]o@w\\Ys\\CkUBmURe]\\gUh@cU`As[b@{Kf@qK~@}PbAgRpBwYnCs[`D}ZtD_\\dB{MhBqMzEa[nDsSvDgSnHy]tFqVtEwR`BoG~C}KjEcOlE}NtEkNtEgNhJqWfK{WtEyKlFsLhJ{RdJcRzH}NzHgNdJwOfJwNfM_RvMoQ~N_RlNePfNaOxL_LhJmJhLgKlM}JxMwJrOyKpOsJpO_J|OkIhPuHtT{IvT_I~R{FzQqEtRgE`R{ClSgCpIy@xQ{ApTiA|Tg@dSI`QB|PNnSb@nj@`Bj[nAde@`Bb^x@xRH|RDtSQzHMzHWnRo@rToA~SgBvMoArM{ArSsCvR}ClUkE~YwGzTaG~LkDzLuDbTmHpSaIDCtl@mW|T}KpToLtNoI`S_MhVoPbVaQrm@ce@f|@au@zUkSlZoWn^i\\pa@s`@`JwI`p@uq@xUmWlBuBdHmHhIqJzQuS|\\}`@d\\u`@~[ua@bm@_x@jRwWdRaXtm@{}@p[of@BErRk[nOyVt[en@vxBc_EtPu[bPc]j\\gs@b[_p@pO}\\~cAm|BrJcSpVyg@tr@uwAr^it@lQg]zS_`@hIoOrIaOtTa`@`Ue_@nTw]tTi]dNyStUu\\fUw[vU{[hVs[`Wk[nSqVpSgVhVyXnWeYrWwX`XyXvWiWnXgWnXsVtXcV~XcV`YeUbk@yc@dl@ic@~{AqhAlLuIbt@_i@l]iWn]yW|c@e]vc@q]`b@w]~a@k^v`@_^vOyNvOcOvOgOtOqO`XmXpx@o{@r[_^l[{^n[c`@j[q`@bUyYp]wd@dVy\\dV}\\nc@_p@x]ei@|Z{f@pUa`@jTw^dTm_@`Si^tZkj@~HeOzP{[vRu_@dK{Rd[{m@jZql@hWgh@jW{g@jOk[heAkuBvqAujCbtDmqHriAy|Bdn@wnArTqb@nOqZ"},{"ref":"B 33","mode":"driving","weight":14.77,"distance":393.325,"geometry":"cfmezAava{OhOcMxGmKhFeHhF_H~N_Q`GuGfGqGhGgGpGcGrGwFtGuFxGeFzG}E|GuEbLmHpMwHhZsP","duration":15.57,"driving_side":"right","duration_typical":15.57,"weight_typical":14.77,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 40 onto A 98 toward Lindau/Friedrichshafen/Stockach.","modifier":"slight right","bearing_after":150,"bearing_before":132,"location":[8.848753,47.815794]},"speedLimitUnit":"km/h","destinations":"A 98, A 98, A 98, B 33, B 33, B 33: Lindau, Friedrichshafen, Stockach, Konstanz, Radolfzell","bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight","slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lindau"},{"type":"text","text":"/"},{"type":"text","text":"Friedrichshafen"}],"type":"fork","modifier":"left","text":"Lindau / Friedrichshafen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"98","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 98"}],"type":"fork","modifier":"left","text":"A 98"},"distanceAlongGeometry":393.325}],"exits":"40","voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take A 98.","announcement":"In a quarter mile, Keep left to take A 98.","distanceAlongGeometry":358.325},{"ssmlAnnouncement":"Keep left to take A 98 toward Lindau, Friedrichshafen.","announcement":"Keep left to take A 98 toward Lindau, Friedrichshafen.","distanceAlongGeometry":274.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.848753,47.815794],"geometry_index":13759,"admin_index":4,"weight":1.277,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":1.369,"bearings":[130,150,312],"out":1,"in":2,"turn_duration":0.023,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,330],"duration":9.969,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":9.471,"geometry_index":13760,"location":[8.848979,47.815533]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[154,333],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":13773,"location":[8.850875,47.813668]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 51 miles.","announcement":"Continue for 51 miles.","distanceAlongGeometry":82212.945},{"ssmlAnnouncement":"In a quarter mile, Take the A 96 ramp.","announcement":"In a quarter mile, Take the A 96 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 96 ramp toward München, Memmingen.","announcement":"Take the A 96 ramp toward München, Memmingen.","distanceAlongGeometry":140}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.851464,47.812788],"geometry_index":13776,"admin_index":4,"weight":10.986,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":11.57,"bearings":[156,166,337],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,315],"duration":7.904,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.51,"geometry_index":13794,"location":[8.853763,47.810409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,299],"duration":12.232,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":11.621,"geometry_index":13805,"location":[8.856058,47.809291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,270],"duration":6.336,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":6.02,"geometry_index":13824,"location":[8.860344,47.808603]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,253],"duration":6.123,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":5.818,"geometry_index":13833,"location":[8.86266,47.808878]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,237],"duration":8.312,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.898,"geometry_index":13842,"location":[8.864625,47.809536]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,225],"duration":4.082,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":13850,"location":[8.866818,47.810897]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,229],"duration":0.742,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":0.705,"geometry_index":13855,"location":[8.867911,47.811555]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.868065,47.811699],"geometry_index":13856,"admin_index":4,"weight":18.453,"is_urban":false,"turn_weight":11.75,"duration":7.084,"bearings":[56,216,235],"out":0,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.141,"geometry_index":13859,"location":[8.870222,47.812692]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.486,"geometry_index":13860,"location":[8.870594,47.812861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":8.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.256,"geometry_index":13861,"location":[8.871065,47.813075]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.596,"geometry_index":13862,"location":[8.873702,47.814287]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,236],"duration":3.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.494,"geometry_index":13863,"location":[8.874244,47.814531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":4.426,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.088,"geometry_index":13864,"location":[8.875405,47.815071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":39.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.896,"geometry_index":13865,"location":[8.876759,47.815707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.686,"geometry_index":13872,"location":[8.889137,47.821362]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":52.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":46.996,"geometry_index":13873,"location":[8.889722,47.821613]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":49.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.334,"geometry_index":13893,"location":[8.908195,47.825312]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,262],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.391,"geometry_index":13914,"location":[8.926055,47.828188]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":56.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.91,"geometry_index":13915,"location":[8.927068,47.828266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,258],"duration":8.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.174,"geometry_index":13933,"location":[8.948198,47.828384]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":7.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.068,"geometry_index":13935,"location":[8.951324,47.828979]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.953956,47.829587],"geometry_index":13937,"admin_index":4,"weight":7.736,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.383,"bearings":[70,104,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.956864,47.830274],"geometry_index":13939,"admin_index":4,"weight":7.578,"is_urban":false,"turn_weight":0.75,"duration":7.4,"bearings":[70,237,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":7.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.795,"geometry_index":13940,"location":[8.959418,47.830902]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":47.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.02,"geometry_index":13941,"location":[8.961969,47.831506]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":6.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.613,"geometry_index":13949,"location":[8.979465,47.835689]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.981687,47.836231],"geometry_index":13950,"admin_index":4,"weight":5.307,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.756,"bearings":[71,90,250],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.983614,47.836688],"geometry_index":13951,"admin_index":4,"weight":1.799,"is_urban":false,"turn_weight":0.5,"duration":1.424,"bearings":[70,224,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":5.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.361,"geometry_index":13952,"location":[8.984111,47.836807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,251],"duration":5.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.195,"geometry_index":13953,"location":[8.986151,47.83727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,254],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.121,"geometry_index":13955,"location":[8.988143,47.837679]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":66.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":61.205,"geometry_index":13956,"location":[8.989309,47.837892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,260],"duration":7.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.016,"geometry_index":13978,"location":[9.013731,47.839465]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.906,"geometry_index":13981,"location":[9.016334,47.839862]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":7.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.699,"geometry_index":13982,"location":[9.016682,47.839926]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":1.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.234,"geometry_index":13984,"location":[9.019128,47.840407]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.01957,47.840501],"geometry_index":13985,"admin_index":4,"weight":3.74,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.945,"bearings":[72,93,252],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"in":1,"bearings":[72,252],"duration":3.43,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.26,"geometry_index":13986,"location":[9.020907,47.840788]},{"entry":[true,false,false],"in":2,"bearings":[73,227,253],"duration":0.885,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.584,"geometry_index":13988,"location":[9.02194,47.841008]},{"entry":[true,false],"in":1,"bearings":[72,253],"duration":3.139,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.982,"geometry_index":13989,"location":[9.022177,47.841057]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[72,252],"duration":4.521,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.182,"geometry_index":13990,"location":[9.023045,47.841243]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[73,252],"duration":24.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":22.768,"geometry_index":13991,"location":[9.024428,47.84154]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":1.525,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.41,"geometry_index":14005,"location":[9.032181,47.842261]},{"entry":[true,false],"in":1,"bearings":[96,274],"duration":12.293,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.062,"geometry_index":14006,"location":[9.032658,47.842238]},{"entry":[true,false,true],"in":1,"bearings":[108,277,291],"duration":25.588,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.018,"geometry_index":14013,"location":[9.036362,47.841848]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[124,304],"duration":3.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.717,"geometry_index":14025,"location":[9.042937,47.839728]},{"entry":[true,false],"in":1,"bearings":[125,304],"duration":46.66,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":41.994,"geometry_index":14026,"location":[9.043565,47.839442]},{"entry":[true,false],"in":1,"bearings":[126,306],"duration":7.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.111,"geometry_index":14037,"location":[9.054054,47.83389]},{"entry":[true,false],"in":1,"bearings":[126,306],"duration":1.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.529,"geometry_index":14038,"location":[9.055881,47.832998]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":10.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.225,"geometry_index":14039,"location":[9.056246,47.832819]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":39.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":35.73,"geometry_index":14040,"location":[9.0585,47.831766]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[119,299],"duration":4.051,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.645,"geometry_index":14048,"location":[9.067556,47.828048]},{"entry":[true,false],"in":1,"bearings":[118,299],"duration":3.32,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.988,"geometry_index":14049,"location":[9.068511,47.827699]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.826,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.643,"geometry_index":14050,"location":[9.069346,47.827398]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":19.035,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.133,"geometry_index":14051,"location":[9.069766,47.827248]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":5.475,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.926,"geometry_index":14055,"location":[9.074385,47.825706]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":8.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.945,"geometry_index":14056,"location":[9.075731,47.825282]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.482,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.334,"geometry_index":14057,"location":[9.077907,47.824612]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":4.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.455,"geometry_index":14058,"location":[9.078243,47.824506]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":6.225,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.584,"geometry_index":14060,"location":[9.079441,47.824127]},{"entry":[true,false],"in":1,"bearings":[114,295],"duration":2.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.918,"geometry_index":14062,"location":[9.08103,47.823633]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[115,294],"duration":0.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.873,"geometry_index":14063,"location":[9.081577,47.823466]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.404,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.264,"geometry_index":14064,"location":[9.081831,47.823388]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":34.771,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":31.293,"geometry_index":14065,"location":[9.082223,47.823267]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.746,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.57,"geometry_index":14068,"location":[9.091836,47.820281]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":5.65,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.086,"geometry_index":14069,"location":[9.092228,47.82016]},{"entry":[true,false],"in":1,"bearings":[114,295],"duration":6.805,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.105,"geometry_index":14070,"location":[9.093598,47.819737]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[115,294],"duration":4.217,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.795,"geometry_index":14071,"location":[9.095395,47.819201]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":6.975,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.277,"geometry_index":14072,"location":[9.096389,47.818886]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":0.945,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.85,"geometry_index":14074,"location":[9.098262,47.818296]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":19.439,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.496,"geometry_index":14075,"location":[9.098519,47.818214]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":7.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.844,"geometry_index":14080,"location":[9.103761,47.816589]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":9.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.91,"geometry_index":14081,"location":[9.105814,47.815947]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[117,297],"duration":1.582,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.424,"geometry_index":14084,"location":[9.108448,47.815066]},{"entry":[true,false],"in":1,"bearings":[119,297],"duration":7.875,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.088,"geometry_index":14085,"location":[9.108793,47.814946]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":43.145,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.83,"geometry_index":14087,"location":[9.110424,47.814325]},{"entry":[true,false],"in":1,"bearings":[143,322],"duration":3.195,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.869,"geometry_index":14098,"location":[9.117943,47.809711]},{"entry":[true,false],"in":1,"bearings":[143,323],"duration":0.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.867,"geometry_index":14099,"location":[9.118371,47.809324]},{"entry":[true,false],"in":1,"bearings":[143,323],"duration":97.088,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":87.379,"geometry_index":14100,"location":[9.118494,47.809213]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[131,309],"duration":3.166,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.85,"geometry_index":14127,"location":[9.136092,47.799391]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":6.061,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.453,"geometry_index":14128,"location":[9.136605,47.799087]},{"entry":[true,false],"in":1,"bearings":[137,315],"duration":8.609,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.748,"geometry_index":14132,"location":[9.138559,47.797835]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":6.99,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.291,"geometry_index":14138,"location":[9.141139,47.795927]},{"entry":[true,false],"in":1,"bearings":[130,310],"duration":1.26,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.135,"geometry_index":14143,"location":[9.143346,47.794447]},{"entry":[true,false],"in":1,"bearings":[127,310],"duration":0.75,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.676,"geometry_index":14145,"location":[9.143783,47.794204]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[125,307],"duration":0.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.811,"geometry_index":14146,"location":[9.14405,47.79407]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.144378,47.793913],"geometry_index":14147,"admin_index":4,"weight":5.16,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.026,"turn_weight":1,"duration":4.648,"bearings":[94,121,305],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,true,false],"in":2,"bearings":[113,153,296],"duration":0.674,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.586,"geometry_index":14150,"location":[9.145602,47.793471]},{"entry":[true,false,true],"in":1,"bearings":[112,293,332],"duration":3.174,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.85,"geometry_index":14151,"location":[9.145791,47.793416]},{"entry":[true,false,false],"in":2,"bearings":[109,252,291],"duration":1.107,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.977,"geometry_index":14153,"location":[9.146694,47.793179]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":0.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.43,"geometry_index":14154,"location":[9.147009,47.793106]},{"entry":[true,false],"in":1,"bearings":[108,289],"duration":0.348,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.312,"geometry_index":14155,"location":[9.147149,47.793074]},{"entry":[true,false],"in":1,"bearings":[106,288],"duration":10.279,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.252,"geometry_index":14156,"location":[9.147249,47.793052]},{"entry":[true,false],"in":1,"bearings":[90,273],"duration":9.846,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.861,"geometry_index":14163,"location":[9.150369,47.792746]},{"entry":[true,false],"in":1,"bearings":[93,270],"duration":16.135,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.521,"geometry_index":14166,"location":[9.153401,47.792749]},{"entry":[true,false],"in":1,"bearings":[119,297],"duration":8.414,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.783,"geometry_index":14174,"location":[9.158174,47.791898]},{"entry":[true,false],"in":1,"bearings":[130,311],"duration":9.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.906,"geometry_index":14181,"location":[9.160277,47.790889]},{"entry":[true,false],"in":1,"bearings":[119,303],"duration":8.285,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.662,"geometry_index":14188,"location":[9.162636,47.789683]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":40.598,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.568,"geometry_index":14192,"location":[9.16493,47.788921]},{"entry":[true,false],"in":1,"bearings":[136,316],"duration":0.65,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.635,"geometry_index":14213,"location":[9.174311,47.783496]},{"entry":[false,true,false],"in":2,"bearings":[130,142,316],"duration":5.789,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":6.633,"geometry_index":14214,"location":[9.174453,47.783398]},{"entry":[true,true,false],"in":2,"bearings":[113,127,299],"duration":19.256,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.748,"geometry_index":14218,"location":[9.175789,47.782666]},{"entry":[true,false,false],"in":2,"bearings":[154,315,332],"duration":17.312,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.373,"geometry_index":14227,"location":[9.18026,47.780292]},{"entry":[true,false],"in":1,"bearings":[139,313],"duration":5.291,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.16,"geometry_index":14238,"location":[9.183446,47.777469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[147,327],"duration":2.992,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.918,"geometry_index":14241,"location":[9.184471,47.776614]},{"entry":[true,false,true],"in":1,"bearings":[156,326,336],"duration":3.705,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.013,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.6,"geometry_index":14244,"location":[9.184983,47.776094]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[163,344],"duration":2.525,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.461,"geometry_index":14247,"location":[9.18538,47.775424]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[165,343],"duration":5.27,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.139,"geometry_index":14248,"location":[9.185596,47.774958]},{"entry":[true,true,false],"in":2,"bearings":[170,204,350],"duration":3.619,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.51,"geometry_index":14250,"location":[9.185888,47.774071]},{"entry":[true,false,false],"in":2,"bearings":[171,328,350],"duration":2.131,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.059,"geometry_index":14252,"location":[9.186055,47.773422]},{"entry":[true,false],"in":1,"bearings":[171,351],"duration":1.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.918,"geometry_index":14253,"location":[9.18615,47.773033]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":5.039,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.914,"geometry_index":14254,"location":[9.186239,47.772672]},{"entry":[true,false],"in":1,"bearings":[169,348],"duration":8.832,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.832,"geometry_index":14256,"location":[9.186507,47.771746]},{"entry":[true,false],"in":1,"bearings":[158,340],"duration":0.096,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.096,"geometry_index":14261,"location":[9.187179,47.770163]},{"entry":[true,false],"in":1,"bearings":[158,338],"duration":4.703,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.703,"geometry_index":14262,"location":[9.187187,47.77015]},{"entry":[false,true,false],"in":2,"bearings":[146,156,334],"duration":4.449,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":5.441,"geometry_index":14265,"location":[9.187727,47.76935]},{"entry":[true,false,false],"in":2,"bearings":[147,321,330],"duration":5.279,"turn_weight":0.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.875,"geometry_index":14268,"location":[9.188314,47.768595]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[142,324],"duration":4.969,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.844,"geometry_index":14271,"location":[9.189425,47.767522]},{"entry":[true,false],"in":1,"bearings":[142,322],"duration":1.828,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.783,"geometry_index":14272,"location":[9.190553,47.766536]},{"entry":[true,false],"in":1,"bearings":[136,322],"duration":3.143,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.064,"geometry_index":14273,"location":[9.190822,47.766308]},{"entry":[true,false,true],"in":1,"bearings":[141,316,325],"duration":1.723,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.668,"geometry_index":14274,"location":[9.19133,47.765949]},{"entry":[true,false],"in":1,"bearings":[143,321],"duration":6.551,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.387,"geometry_index":14275,"location":[9.191576,47.765747]},{"entry":[true,false],"in":1,"bearings":[148,324],"duration":6.551,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.387,"geometry_index":14277,"location":[9.192456,47.764949]},{"entry":[true,false],"in":1,"bearings":[156,332],"duration":0.826,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":14279,"location":[9.193187,47.764083]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":5.961,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.812,"geometry_index":14280,"location":[9.193265,47.763964]},{"entry":[false,true,false],"in":2,"bearings":[163,175,348],"duration":10.961,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":11.402,"geometry_index":14283,"location":[9.193642,47.763096]},{"entry":[true,false],"in":1,"bearings":[178,359],"duration":1.725,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.639,"geometry_index":14287,"location":[9.193753,47.761783]},{"entry":[true,true,false],"in":2,"bearings":[10,158,358],"duration":24.439,"turn_duration":0.083,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":23.139,"geometry_index":14288,"location":[9.193766,47.761573]},{"entry":[true,false],"in":1,"bearings":[132,330],"duration":1.268,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.172,"geometry_index":14294,"location":[9.195469,47.758972]},{"entry":[true,false],"in":1,"bearings":[132,312],"duration":0.887,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":14295,"location":[9.195661,47.758854]},{"entry":[true,false],"in":1,"bearings":[133,312],"duration":7.139,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.604,"geometry_index":14296,"location":[9.195793,47.758773]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":14.896,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.779,"geometry_index":14298,"location":[9.196937,47.758078]},{"entry":[true,false],"in":1,"bearings":[136,312],"duration":17.039,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.336,"geometry_index":14300,"location":[9.199348,47.756652]},{"entry":[true,false],"in":1,"bearings":[132,314],"duration":6.1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.471,"geometry_index":14302,"location":[9.202,47.754822]},{"entry":[true,false],"in":1,"bearings":[133,312],"duration":0.85,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.748,"geometry_index":14304,"location":[9.203013,47.754202]},{"entry":[true,false],"in":1,"bearings":[132,313],"duration":4.307,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.877,"geometry_index":14305,"location":[9.203156,47.754113]},{"entry":[true,false],"in":1,"bearings":[136,314],"duration":3.904,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.514,"geometry_index":14309,"location":[9.203815,47.753701]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[139,319],"duration":1.16,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.043,"geometry_index":14313,"location":[9.204392,47.753282]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.20456,47.753153],"geometry_index":14314,"admin_index":4,"weight":8.525,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1,"duration":8.369,"bearings":[99,142,163,319],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,false,false,true],"in":2,"bearings":[142,306,324,339],"duration":8.375,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.52,"geometry_index":14317,"location":[9.2057,47.752114]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":3.668,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.301,"geometry_index":14324,"location":[9.206823,47.751315]},{"entry":[true,false],"in":1,"bearings":[121,302],"duration":0.137,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.123,"geometry_index":14328,"location":[9.207423,47.751043]},{"entry":[true,false],"in":1,"bearings":[118,301],"duration":16.438,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.383,"geometry_index":14329,"location":[9.207448,47.751033]},{"entry":[true,false],"in":1,"bearings":[91,275],"duration":7.629,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.656,"geometry_index":14339,"location":[9.210522,47.750416]},{"entry":[true,false],"in":1,"bearings":[88,267],"duration":21.473,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.781,"geometry_index":14341,"location":[9.212021,47.750435]},{"entry":[true,false],"in":1,"bearings":[124,299],"duration":19.908,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":17.41,"geometry_index":14350,"location":[9.216098,47.749935]},{"entry":[true,false],"in":1,"bearings":[136,319],"duration":3.816,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.34,"geometry_index":14356,"location":[9.218912,47.747983]},{"entry":[true,false],"in":1,"bearings":[126,312],"duration":8.207,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.182,"geometry_index":14358,"location":[9.219419,47.747652]},{"entry":[true,true,false],"in":2,"bearings":[118,208,298],"duration":3.869,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":14361,"location":[9.22071,47.747119]},{"entry":[true,false],"in":1,"bearings":[119,298],"duration":1.047,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.916,"geometry_index":14363,"location":[9.221409,47.746873]},{"entry":[true,false],"in":1,"bearings":[121,299],"duration":1.645,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.432,"geometry_index":14364,"location":[9.221597,47.746803]},{"entry":[true,false],"in":1,"bearings":[123,301],"duration":1.447,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.26,"geometry_index":14365,"location":[9.221883,47.746688]},{"entry":[true,false],"in":1,"bearings":[126,303],"duration":4.254,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.723,"geometry_index":14366,"location":[9.222129,47.746582]},{"entry":[true,false],"in":1,"bearings":[134,311],"duration":14.408,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.6,"geometry_index":14369,"location":[9.22281,47.74622]},{"entry":[true,false],"in":1,"bearings":[108,296],"duration":3.568,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.182,"geometry_index":14375,"location":[9.225065,47.744971]},{"entry":[true,false],"in":1,"bearings":[92,279],"duration":2.584,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.297,"geometry_index":14378,"location":[9.225767,47.744863]},{"entry":[true,false],"in":1,"bearings":[85,269],"duration":8.943,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.049,"geometry_index":14380,"location":[9.226284,47.74486]},{"entry":[true,false],"in":1,"bearings":[95,270],"duration":1.969,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.771,"geometry_index":14384,"location":[9.228402,47.744958]},{"entry":[true,false],"in":1,"bearings":[100,275],"duration":1.912,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.721,"geometry_index":14385,"location":[9.228865,47.744933]},{"entry":[true,false],"in":1,"bearings":[104,280],"duration":2.596,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.328,"geometry_index":14386,"location":[9.229317,47.744881]},{"entry":[true,false],"in":1,"bearings":[114,284],"duration":38.137,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":34.324,"geometry_index":14387,"location":[9.229916,47.744779]},{"entry":[true,false],"in":1,"bearings":[136,316],"duration":8.775,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.117,"geometry_index":14396,"location":[9.236545,47.740702]},{"entry":[true,false],"in":1,"bearings":[137,317],"duration":11.531,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.666,"geometry_index":14398,"location":[9.237982,47.739692]},{"entry":[true,false],"in":1,"bearings":[161,336],"duration":2.645,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.445,"geometry_index":14404,"location":[9.239636,47.738236]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[169,345],"duration":1.393,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.289,"geometry_index":14408,"location":[9.239817,47.737834]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[173,350],"duration":4.725,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.371,"geometry_index":14411,"location":[9.239875,47.737625]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[4,186],"duration":2.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.643,"geometry_index":14416,"location":[9.2399,47.736874]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[6,187],"duration":1.889,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":1.746,"geometry_index":14417,"location":[9.239826,47.736432]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.239775,47.736143],"geometry_index":14419,"admin_index":4,"weight":7.166,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":6.133,"bearings":[7,176,187,208],"out":2,"in":0,"entry":[false,false,true,true]},{"entry":[false,true,true,false],"in":0,"bearings":[7,37,187,334],"duration":3.662,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":2,"weight":4.881,"geometry_index":14420,"location":[9.239596,47.735125]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[7,187],"duration":0.928,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.857,"geometry_index":14422,"location":[9.23949,47.734529]},{"entry":[false,true],"in":0,"bearings":[7,187],"duration":0.072,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.066,"geometry_index":14424,"location":[9.239464,47.734378]},{"entry":[false,true],"in":0,"bearings":[7,187],"duration":2.455,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.27,"geometry_index":14425,"location":[9.239461,47.734362]},{"entry":[false,true],"in":0,"bearings":[7,187],"duration":22.801,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":21.09,"geometry_index":14426,"location":[9.239391,47.733963]},{"entry":[false,true],"in":0,"bearings":[10,191],"duration":1.004,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.928,"geometry_index":14430,"location":[9.238708,47.730412]},{"entry":[false,true],"in":0,"bearings":[11,192],"duration":16.711,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":15.457,"geometry_index":14432,"location":[9.238664,47.730264]},{"entry":[false,true],"in":0,"bearings":[17,197],"duration":2.688,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.484,"geometry_index":14437,"location":[9.237594,47.727567]},{"entry":[false,false,true],"in":0,"bearings":[17,189,194],"duration":4.51,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":2,"weight":5.15,"geometry_index":14438,"location":[9.237399,47.727136]},{"entry":[false,true],"in":0,"bearings":[9,187],"duration":18.197,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":16.832,"geometry_index":14441,"location":[9.237136,47.726342]},{"entry":[true,false],"in":1,"bearings":[154,334],"duration":23.672,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":21.896,"geometry_index":14452,"location":[9.237894,47.723119]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":0.609,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.562,"geometry_index":14464,"location":[9.242498,47.72023]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":1.408,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.303,"geometry_index":14465,"location":[9.242639,47.720176]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":8.496,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.854,"geometry_index":14466,"location":[9.242954,47.720054]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":21.912,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":20.262,"geometry_index":14468,"location":[9.244781,47.719343]},{"entry":[true,false],"in":1,"bearings":[123,302],"duration":8.721,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.066,"geometry_index":14474,"location":[9.249737,47.717366]},{"entry":[true,false],"in":1,"bearings":[124,308],"duration":0.76,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.703,"geometry_index":14479,"location":[9.251609,47.716478]},{"entry":[true,false],"in":1,"bearings":[124,304],"duration":1.652,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.529,"geometry_index":14480,"location":[9.25177,47.716405]},{"entry":[true,false,true],"in":1,"bearings":[129,304,318],"duration":5.514,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.09,"geometry_index":14481,"location":[9.25208,47.716263]},{"entry":[true,false],"in":1,"bearings":[134,310],"duration":68.965,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":63.793,"geometry_index":14483,"location":[9.253181,47.715648]},{"entry":[true,false],"in":1,"bearings":[131,314],"duration":0.771,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.713,"geometry_index":14498,"location":[9.263417,47.705857]},{"entry":[true,false],"in":1,"bearings":[132,311],"duration":19.748,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.268,"geometry_index":14499,"location":[9.263565,47.70577]},{"entry":[true,false],"in":1,"bearings":[121,303],"duration":4.783,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.424,"geometry_index":14503,"location":[9.267664,47.703708]},{"entry":[true,false],"in":1,"bearings":[118,301],"duration":10.908,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.09,"geometry_index":14504,"location":[9.268727,47.703278]},{"entry":[true,false],"in":1,"bearings":[109,294],"duration":14.643,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.52,"geometry_index":14508,"location":[9.271157,47.702476]},{"entry":[true,false],"in":1,"bearings":[112,290],"duration":0.859,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.816,"geometry_index":14511,"location":[9.274587,47.701678]},{"entry":[true,false],"in":1,"bearings":[111,292],"duration":29.338,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":27.871,"geometry_index":14512,"location":[9.274785,47.701623]},{"entry":[true,false],"in":1,"bearings":[128,309],"duration":1.418,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.348,"geometry_index":14522,"location":[9.280899,47.698969]},{"entry":[true,false],"in":1,"bearings":[130,308],"duration":17.73,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.846,"geometry_index":14523,"location":[9.281171,47.698824]},{"entry":[true,false],"in":1,"bearings":[152,332],"duration":4.387,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.168,"geometry_index":14530,"location":[9.284042,47.696608]},{"entry":[true,false],"in":1,"bearings":[167,339],"duration":3.994,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.795,"geometry_index":14532,"location":[9.284462,47.69597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[172,347],"duration":1.254,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.191,"geometry_index":14533,"location":[9.284675,47.69535]},{"entry":[true,true,false],"in":2,"bearings":[172,184,352],"duration":4.896,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.523,"geometry_index":14534,"location":[9.284719,47.695143]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":4.996,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.623,"geometry_index":14536,"location":[9.284893,47.694333]},{"entry":[true,false],"in":1,"bearings":[161,343],"duration":0.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.846,"geometry_index":14540,"location":[9.28518,47.693523]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[159,341],"duration":1.535,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.42,"geometry_index":14541,"location":[9.285254,47.693377]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.285391,47.693132],"geometry_index":14542,"admin_index":4,"weight":9.896,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.009,"turn_weight":1,"duration":9.627,"bearings":[149,164,339],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,false,false],"in":2,"bearings":[140,301,323],"duration":3.217,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.955,"geometry_index":14548,"location":[9.286613,47.691854]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[136,316],"duration":10.141,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.381,"geometry_index":14550,"location":[9.287166,47.691433]},{"entry":[true,false],"in":1,"bearings":[121,305],"duration":0.5,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.463,"geometry_index":14556,"location":[9.289221,47.690294]},{"entry":[true,false],"in":1,"bearings":[120,301],"duration":6.939,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.418,"geometry_index":14557,"location":[9.289336,47.690248]},{"entry":[true,true,false],"in":2,"bearings":[109,120,295],"duration":14.607,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.48,"geometry_index":14559,"location":[9.290901,47.689695]},{"entry":[true,false,false],"in":2,"bearings":[90,208,273],"duration":4.289,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.947,"geometry_index":14567,"location":[9.294171,47.689284]},{"entry":[true,false,true],"in":1,"bearings":[95,269,275],"duration":5.639,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.207,"geometry_index":14569,"location":[9.295029,47.689291]},{"entry":[true,false],"in":1,"bearings":[101,279],"duration":1.57,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.453,"geometry_index":14572,"location":[9.296165,47.689202]},{"entry":[true,false],"in":1,"bearings":[103,281],"duration":10.734,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.93,"geometry_index":14573,"location":[9.296475,47.68916]},{"entry":[true,false,true],"in":1,"bearings":[123,299,322],"duration":3.68,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.395,"geometry_index":14578,"location":[9.298491,47.688612]},{"entry":[true,false],"in":1,"bearings":[129,305],"duration":1.623,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.502,"geometry_index":14580,"location":[9.299071,47.68835]},{"entry":[true,false],"in":1,"bearings":[129,309],"duration":6.816,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.307,"geometry_index":14581,"location":[9.299312,47.68822]},{"entry":[true,false],"in":1,"bearings":[135,312],"duration":54.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":49.371,"geometry_index":14583,"location":[9.300206,47.687698]},{"entry":[true,false],"in":1,"bearings":[123,301],"duration":14.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.424,"geometry_index":14593,"location":[9.306418,47.683822]},{"entry":[true,false],"in":1,"bearings":[129,307],"duration":1.879,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.691,"geometry_index":14595,"location":[9.308305,47.682911]},{"entry":[true,false],"in":1,"bearings":[131,309],"duration":61.65,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":55.486,"geometry_index":14596,"location":[9.308553,47.682777]},{"entry":[true,false],"in":1,"bearings":[148,332],"duration":10.92,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.828,"geometry_index":14607,"location":[9.31275,47.67883]},{"entry":[true,false],"in":1,"bearings":[136,320],"duration":6.055,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.449,"geometry_index":14611,"location":[9.313458,47.678172]},{"entry":[true,false],"in":1,"bearings":[132,315],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.238,"geometry_index":14613,"location":[9.3138,47.677936]},{"entry":[true,false],"in":1,"bearings":[131,312],"duration":7.549,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.773,"geometry_index":14614,"location":[9.314006,47.677809]},{"entry":[true,false],"in":1,"bearings":[125,311],"duration":4.418,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.977,"geometry_index":14616,"location":[9.314471,47.67754]},{"entry":[true,false],"in":1,"bearings":[120,305],"duration":2.572,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.25,"geometry_index":14617,"location":[9.314768,47.677402]},{"entry":[true,false],"in":1,"bearings":[116,300],"duration":13.479,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.77,"geometry_index":14618,"location":[9.314937,47.677336]},{"entry":[true,false],"in":1,"bearings":[109,293],"duration":6.062,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.305,"geometry_index":14620,"location":[9.315802,47.677066]},{"entry":[true,false],"in":1,"bearings":[105,288],"duration":4.703,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.094,"geometry_index":14622,"location":[9.316207,47.676974]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":10.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.926,"geometry_index":14624,"location":[9.316703,47.676881]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":1.459,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.262,"geometry_index":14628,"location":[9.317798,47.676689]},{"entry":[true,false],"in":1,"bearings":[104,283],"duration":12.936,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.312,"geometry_index":14630,"location":[9.317951,47.676665]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":3.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.148,"geometry_index":14632,"location":[9.318975,47.676487]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":0.662,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.574,"geometry_index":14633,"location":[9.319255,47.676433]},{"entry":[true,false],"in":1,"bearings":[110,286],"duration":1.723,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.5,"geometry_index":14634,"location":[9.319302,47.676424]},{"entry":[true,false],"in":1,"bearings":[110,290],"duration":4.635,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.051,"geometry_index":14635,"location":[9.319431,47.676392]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":2.557,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.23,"geometry_index":14637,"location":[9.319767,47.676307]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.319977,47.676253],"geometry_index":14640,"admin_index":4,"weight":7.957,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1,"duration":7.957,"bearings":[111,291],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[116,294],"duration":6.9,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.039,"geometry_index":14643,"location":[9.32063,47.676073]},{"entry":[true,false],"in":1,"bearings":[115,296],"duration":17.27,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.094,"geometry_index":14644,"location":[9.321182,47.675894]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":0.908,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.789,"geometry_index":14648,"location":[9.322558,47.675443]},{"entry":[true,false],"in":1,"bearings":[119,298],"duration":3.9,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.414,"geometry_index":14649,"location":[9.322632,47.675416]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":6.516,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.695,"geometry_index":14650,"location":[9.322934,47.675305]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":7.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.648,"geometry_index":14651,"location":[9.323474,47.675095]},{"entry":[true,true,false],"in":2,"bearings":[121,152,301],"duration":2.051,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.789,"geometry_index":14652,"location":[9.324129,47.674827]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":11.48,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.047,"geometry_index":14653,"location":[9.324365,47.67473]},{"entry":[true,false],"in":1,"bearings":[124,302],"duration":25.402,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":22.219,"geometry_index":14655,"location":[9.325704,47.674176]},{"entry":[true,false],"in":1,"bearings":[141,321],"duration":3.502,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.152,"geometry_index":14659,"location":[9.32823,47.672583]},{"entry":[true,true,false],"in":2,"bearings":[138,182,321],"duration":13.385,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.023,"geometry_index":14660,"location":[9.32853,47.672334]},{"entry":[true,false],"in":1,"bearings":[125,307],"duration":7.221,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.48,"geometry_index":14665,"location":[9.330418,47.671159]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":15.84,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.258,"geometry_index":14666,"location":[9.331548,47.67062]},{"entry":[true,false],"in":1,"bearings":[116,298],"duration":8.158,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.324,"geometry_index":14669,"location":[9.334051,47.669587]},{"entry":[true,false],"in":1,"bearings":[111,293],"duration":21.518,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.367,"geometry_index":14671,"location":[9.335417,47.669167]},{"entry":[true,false],"in":1,"bearings":[109,290],"duration":9.082,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.172,"geometry_index":14673,"location":[9.338708,47.668348]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.340104,47.668025],"geometry_index":14675,"admin_index":4,"weight":7.293,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.009,"turn_weight":1,"duration":7.002,"bearings":[112,289],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[116,294],"duration":23.055,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":20.75,"geometry_index":14679,"location":[9.341343,47.667668]},{"entry":[true,false],"in":1,"bearings":[111,293],"duration":33.576,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":30.219,"geometry_index":14683,"location":[9.345333,47.666361]},{"entry":[true,false],"in":1,"bearings":[99,280],"duration":1.174,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.055,"geometry_index":14691,"location":[9.351607,47.665364]},{"entry":[true,false],"in":1,"bearings":[98,279],"duration":16.164,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.547,"geometry_index":14692,"location":[9.351807,47.665343]},{"entry":[true,false],"in":1,"bearings":[89,270],"duration":12.391,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.152,"geometry_index":14697,"location":[9.354848,47.66514]},{"entry":[true,false],"in":1,"bearings":[78,260],"duration":0.168,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.152,"geometry_index":14702,"location":[9.356804,47.665264]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[77,258],"duration":4.02,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.617,"geometry_index":14703,"location":[9.356833,47.665268]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.357452,47.665375],"geometry_index":14705,"admin_index":4,"weight":5.902,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1,"duration":5.453,"bearings":[73,159,254,346],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[66,248],"duration":0.186,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.168,"geometry_index":14708,"location":[9.358194,47.665558]},{"entry":[true,false],"in":1,"bearings":[67,246],"duration":1.662,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.496,"geometry_index":14709,"location":[9.358217,47.665565]},{"entry":[true,false],"in":1,"bearings":[64,247],"duration":4.693,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.203,"geometry_index":14710,"location":[9.358437,47.665627]},{"entry":[true,false],"in":1,"bearings":[61,244],"duration":4.324,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.871,"geometry_index":14711,"location":[9.359012,47.665818]},{"entry":[true,false],"in":1,"bearings":[58,240],"duration":1.971,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.773,"geometry_index":14714,"location":[9.359577,47.666033]},{"entry":[true,false],"in":1,"bearings":[56,237],"duration":0.408,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.367,"geometry_index":14716,"location":[9.359903,47.666175]},{"entry":[true,false],"in":1,"bearings":[55,236],"duration":33.08,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":30.598,"geometry_index":14717,"location":[9.35997,47.666206]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[45,223],"duration":0.867,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":14743,"location":[9.364071,47.669549]},{"entry":[true,false],"in":1,"bearings":[46,225],"duration":66.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":61.844,"geometry_index":14746,"location":[9.364197,47.669634]},{"entry":[true,false],"in":1,"bearings":[121,304],"duration":14.637,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.539,"geometry_index":14797,"location":[9.376222,47.668083]},{"entry":[true,false],"in":1,"bearings":[101,282],"duration":1.488,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":14810,"location":[9.378517,47.667454]},{"entry":[true,false],"in":1,"bearings":[99,281],"duration":0.613,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.555,"geometry_index":14811,"location":[9.378765,47.667421]},{"entry":[true,false],"in":1,"bearings":[98,279],"duration":3.074,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.766,"geometry_index":14812,"location":[9.378852,47.667412]},{"entry":[true,false],"in":1,"bearings":[94,277],"duration":1.621,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.457,"geometry_index":14815,"location":[9.379316,47.66737]},{"entry":[true,false],"in":1,"bearings":[93,274],"duration":3.691,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.324,"geometry_index":14816,"location":[9.379562,47.667358]},{"entry":[true,false],"in":1,"bearings":[88,272],"duration":0.742,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.148,"geometry_index":14818,"location":[9.3801,47.667342]},{"entry":[true,false],"in":1,"bearings":[87,268],"duration":5.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.535,"geometry_index":14819,"location":[9.380193,47.667344]},{"entry":[true,false],"in":1,"bearings":[81,263],"duration":2.879,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.594,"geometry_index":14822,"location":[9.380841,47.667383]},{"entry":[true,false],"in":1,"bearings":[78,261],"duration":4.219,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.797,"geometry_index":14823,"location":[9.38121,47.667421]},{"entry":[true,false],"in":1,"bearings":[74,258],"duration":2.777,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.5,"geometry_index":14824,"location":[9.38175,47.667497]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.3821,47.667565],"geometry_index":14825,"admin_index":4,"weight":4.188,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":0.75,"duration":3.824,"bearings":[53,73,254],"out":1,"in":2,"entry":[false,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[68,249],"duration":2.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":14828,"location":[9.38254,47.667667]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.382817,47.667742],"geometry_index":14830,"admin_index":4,"weight":2.738,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":1.398,"bearings":[65,152,248,336],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[62,245],"duration":3.324,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.969,"geometry_index":14831,"location":[9.382975,47.667792]},{"entry":[true,false],"in":1,"bearings":[62,242],"duration":1.996,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.789,"geometry_index":14833,"location":[9.383358,47.667929]},{"entry":[true,false],"in":1,"bearings":[59,242],"duration":2.367,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.133,"geometry_index":14835,"location":[9.3836,47.668015]},{"entry":[true,false],"in":1,"bearings":[53,239],"duration":2.746,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.473,"geometry_index":14836,"location":[9.383882,47.66813]},{"entry":[true,false],"in":1,"bearings":[50,233],"duration":3.883,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.496,"geometry_index":14837,"location":[9.384193,47.668286]},{"entry":[true,false],"in":1,"bearings":[48,229],"duration":1.062,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.957,"geometry_index":14839,"location":[9.384609,47.668523]},{"entry":[true,false],"in":1,"bearings":[48,228],"duration":7.855,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.07,"geometry_index":14840,"location":[9.384741,47.668602]},{"entry":[true,false],"in":1,"bearings":[48,228],"duration":0.98,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":14842,"location":[9.385693,47.669178]},{"entry":[true,false],"in":1,"bearings":[48,228],"duration":31.992,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":28.793,"geometry_index":14843,"location":[9.385807,47.669248]},{"entry":[true,false],"in":1,"bearings":[67,248],"duration":1.145,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.059,"geometry_index":14851,"location":[9.390261,47.671019]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":8.426,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.797,"geometry_index":14852,"location":[9.390428,47.671067]},{"entry":[true,false],"in":1,"bearings":[66,247],"duration":2.145,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.98,"geometry_index":14854,"location":[9.391691,47.671422]},{"entry":[true,false],"in":1,"bearings":[67,246],"duration":1.199,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":14855,"location":[9.391997,47.671513]},{"entry":[true,false],"in":1,"bearings":[68,247],"duration":2.887,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.664,"geometry_index":14856,"location":[9.392165,47.671562]},{"entry":[false,true,false],"in":2,"bearings":[48,65,248],"duration":12.41,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":12.461,"geometry_index":14858,"location":[9.392559,47.671671]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[25,207],"duration":6.566,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.074,"geometry_index":14862,"location":[9.393573,47.672426]},{"entry":[true,false],"in":1,"bearings":[26,204],"duration":2.348,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.164,"geometry_index":14864,"location":[9.393918,47.672935]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[29,206],"duration":5.578,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.16,"geometry_index":14865,"location":[9.393991,47.673036]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.394197,47.67328],"geometry_index":14867,"admin_index":4,"weight":2.422,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.011,"turn_weight":1.5,"duration":1.004,"bearings":[36,120,210,296],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[42,135,216,306],"duration":10.336,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.551,"geometry_index":14868,"location":[9.394358,47.67343]},{"entry":[true,false],"in":1,"bearings":[79,260],"duration":57.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":53.105,"geometry_index":14875,"location":[9.396931,47.674218]},{"entry":[true,false],"in":1,"bearings":[77,258],"duration":0.785,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.746,"geometry_index":14894,"location":[9.411705,47.67826]},{"entry":[true,false],"in":1,"bearings":[76,257],"duration":26.684,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":25.348,"geometry_index":14895,"location":[9.411957,47.6783]},{"entry":[true,false],"in":1,"bearings":[53,227],"duration":2.543,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.414,"geometry_index":14909,"location":[9.418486,47.681641]},{"entry":[true,true,false],"in":2,"bearings":[57,63,233],"duration":8.098,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.684,"geometry_index":14910,"location":[9.41913,47.681964]},{"entry":[true,false,false],"in":2,"bearings":[75,241,252],"duration":4.09,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.879,"geometry_index":14914,"location":[9.421292,47.682691]},{"entry":[true,false],"in":1,"bearings":[82,261],"duration":17.035,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.184,"geometry_index":14916,"location":[9.422499,47.68287]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[98,276],"duration":2.086,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.98,"geometry_index":14921,"location":[9.427659,47.682769]},{"entry":[true,false],"in":1,"bearings":[99,278],"duration":22.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":22.121,"geometry_index":14922,"location":[9.428332,47.682707]},{"entry":[true,false],"in":1,"bearings":[108,286],"duration":1.574,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.531,"geometry_index":14926,"location":[9.43538,47.681636]},{"entry":[true,false],"in":1,"bearings":[110,288],"duration":29.957,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":29.207,"geometry_index":14927,"location":[9.435858,47.681533]},{"entry":[true,false],"in":1,"bearings":[121,299],"duration":6.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.688,"geometry_index":14932,"location":[9.444334,47.678931]},{"entry":[true,false],"in":1,"bearings":[128,306],"duration":1.391,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.355,"geometry_index":14934,"location":[9.446114,47.678137]},{"entry":[true,false],"in":1,"bearings":[131,308],"duration":2.16,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.105,"geometry_index":14935,"location":[9.446467,47.677951]},{"entry":[true,false],"in":1,"bearings":[133,311],"duration":15.754,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":15.363,"geometry_index":14936,"location":[9.446983,47.677653]},{"entry":[true,false],"in":1,"bearings":[146,324],"duration":2.016,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.965,"geometry_index":14940,"location":[9.450141,47.675083]},{"entry":[true,false],"in":1,"bearings":[148,326],"duration":0.898,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.898,"geometry_index":14941,"location":[9.450495,47.67473]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[148,328],"duration":1.113,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.113,"geometry_index":14942,"location":[9.450644,47.674569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[145,328],"duration":5.441,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.441,"geometry_index":14943,"location":[9.45083,47.674368]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[145,325],"duration":2.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.613,"geometry_index":14944,"location":[9.45179,47.673432]},{"entry":[true,true,false],"in":2,"bearings":[145,158,325],"duration":7.254,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.246,"geometry_index":14945,"location":[9.452259,47.672982]},{"entry":[true,false,false],"in":2,"bearings":[139,311,324],"duration":4,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.973,"geometry_index":14947,"location":[9.45343,47.67188]},{"entry":[true,false],"in":1,"bearings":[133,318],"duration":2.172,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.172,"geometry_index":14949,"location":[9.453993,47.671451]},{"entry":[true,false],"in":1,"bearings":[128,313],"duration":25.324,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":25.324,"geometry_index":14950,"location":[9.454334,47.671238]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[99,276],"duration":55.441,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":56.824,"geometry_index":14959,"location":[9.459393,47.670083]},{"entry":[true,false],"in":1,"bearings":[123,300],"duration":11.887,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.484,"geometry_index":14966,"location":[9.467523,47.667314]},{"entry":[true,false],"in":1,"bearings":[120,302],"duration":10.488,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":11.25,"geometry_index":14968,"location":[9.469115,47.666631]},{"entry":[true,false],"in":1,"bearings":[114,296],"duration":6.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":6.66,"geometry_index":14970,"location":[9.47059,47.666104]},{"entry":[true,true,false],"in":2,"bearings":[111,121,294],"duration":9.16,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":9.824,"geometry_index":14971,"location":[9.471487,47.665836]},{"entry":[true,false,false],"in":2,"bearings":[109,276,291],"duration":8.102,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":9.184,"geometry_index":14973,"location":[9.472722,47.665511]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[96,287],"duration":5.004,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":5.379,"geometry_index":14975,"location":[9.473885,47.665252]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[99,270],"duration":2.723,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.926,"geometry_index":14978,"location":[9.474644,47.665228]},{"entry":[true,false,true],"in":1,"bearings":[108,279,291],"duration":1.68,"turn_duration":0.013,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.793,"geometry_index":14979,"location":[9.475057,47.665183]},{"tunnel_name":"Riedleparktunnel","entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[99,288],"duration":38.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":41.387,"geometry_index":14980,"location":[9.475292,47.665132]},{"entry":[true,false],"in":1,"bearings":[71,257],"duration":1.984,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.133,"geometry_index":14986,"location":[9.480399,47.66512]},{"entry":[true,false],"in":1,"bearings":[68,251],"duration":17.926,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":19.27,"geometry_index":14987,"location":[9.480741,47.665201]},{"entry":[true,false],"in":1,"bearings":[67,242],"duration":10.809,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":11.609,"geometry_index":14991,"location":[9.483643,47.666184]},{"entry":[true,false],"in":1,"bearings":[79,258],"duration":1.91,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.055,"geometry_index":14995,"location":[9.485502,47.666584]},{"entry":[true,false],"in":1,"bearings":[84,259],"duration":1.984,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.133,"geometry_index":14996,"location":[9.485837,47.666626]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":3.531,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.793,"geometry_index":14997,"location":[9.486199,47.66665]},{"entry":[true,false],"in":1,"bearings":[90,267],"duration":9.531,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":10.242,"geometry_index":14999,"location":[9.486863,47.666683]},{"entry":[true,false],"in":1,"bearings":[102,278],"duration":2.117,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.277,"geometry_index":15003,"location":[9.488663,47.666603]},{"entry":[true,false],"in":1,"bearings":[105,282],"duration":4.445,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":4.781,"geometry_index":15004,"location":[9.489053,47.666547]},{"entry":[true,false],"in":1,"bearings":[112,289],"duration":1.059,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.137,"geometry_index":15006,"location":[9.489859,47.666377]},{"entry":[true,false],"in":1,"bearings":[112,292],"duration":0.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":0.758,"geometry_index":15007,"location":[9.490045,47.666326]},{"entry":[false,true,false],"in":2,"bearings":[108,125,292],"duration":8.703,"turn_weight":1.5,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":1,"weight":10.836,"geometry_index":15008,"location":[9.490166,47.666293]},{"entry":[true,false],"in":1,"bearings":[130,307],"duration":7.516,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":8.078,"geometry_index":15016,"location":[9.492351,47.665393]},{"entry":[true,true,false],"in":2,"bearings":[139,159,319],"duration":10.293,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.789,"geometry_index":15021,"location":[9.493938,47.664346]},{"entry":[true,false],"in":1,"bearings":[150,329],"duration":12.328,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.938,"geometry_index":15026,"location":[9.494987,47.663345]},{"entry":[true,false,true],"in":1,"bearings":[153,327,345],"duration":6.121,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.418,"geometry_index":15030,"location":[9.496027,47.662149]},{"entry":[true,false],"in":1,"bearings":[156,333],"duration":36.293,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":37.199,"geometry_index":15031,"location":[9.496465,47.661561]},{"entry":[true,false],"in":1,"bearings":[155,338],"duration":1.461,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.5,"geometry_index":15034,"location":[9.498409,47.658477]},{"entry":[false,true,false],"in":2,"bearings":[144,162,335],"duration":9.812,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":11.047,"geometry_index":15036,"location":[9.498486,47.658368]},{"entry":[true,true,false],"in":2,"bearings":[157,170,334],"duration":11.355,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.344,"geometry_index":15039,"location":[9.499003,47.657565]},{"entry":[true,false,false],"in":2,"bearings":[153,315,334],"duration":12.617,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.602,"geometry_index":15041,"location":[9.499566,47.656709]},{"entry":[true,false],"in":1,"bearings":[144,333],"duration":3.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.707,"geometry_index":15042,"location":[9.500292,47.655761]},{"entry":[true,false,true],"in":1,"bearings":[149,324,336],"duration":3.516,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.508,"geometry_index":15043,"location":[9.500571,47.655505]},{"entry":[true,false],"in":1,"bearings":[149,329],"duration":15.137,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.758,"geometry_index":15044,"location":[9.500831,47.655214]},{"entry":[true,false],"in":1,"bearings":[141,324],"duration":25.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.141,"geometry_index":15047,"location":[9.502207,47.653837]},{"entry":[true,false],"in":1,"bearings":[135,315],"duration":2.309,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.195,"geometry_index":15050,"location":[9.505455,47.651461]},{"entry":[true,false],"in":1,"bearings":[136,315],"duration":16.883,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.039,"geometry_index":15051,"location":[9.505776,47.651247]},{"entry":[true,false],"in":1,"bearings":[148,324],"duration":5.09,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.707,"geometry_index":15055,"location":[9.50813,47.649396]},{"entry":[true,false],"in":1,"bearings":[146,328],"duration":17.473,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.141,"geometry_index":15056,"location":[9.508711,47.648771]},{"entry":[true,false],"in":1,"bearings":[158,337],"duration":4.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.191,"geometry_index":15060,"location":[9.510435,47.646483]},{"entry":[false,true,false],"in":2,"bearings":[153,161,338],"duration":8.898,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":9.223,"geometry_index":15061,"location":[9.510768,47.645915]},{"entry":[true,false],"in":1,"bearings":[156,338],"duration":10.359,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.805,"geometry_index":15063,"location":[9.511341,47.6449]},{"entry":[true,false],"in":1,"bearings":[151,333],"duration":18.23,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.406,"geometry_index":15065,"location":[9.512132,47.64381]},{"entry":[true,false,true],"in":1,"bearings":[143,317,329],"duration":1.812,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.621,"geometry_index":15069,"location":[9.51388,47.642035]},{"entry":[true,false,true],"in":1,"bearings":[139,323,342],"duration":3.938,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.523,"geometry_index":15070,"location":[9.514071,47.641864]},{"entry":[true,false],"in":1,"bearings":[139,319],"duration":7.922,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.129,"geometry_index":15071,"location":[9.514831,47.641275]},{"entry":[true,true,false],"in":2,"bearings":[49,137,319],"duration":26.301,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":23.652,"geometry_index":15072,"location":[9.516372,47.64008]},{"entry":[true,false],"in":1,"bearings":[137,317],"duration":9.637,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.906,"geometry_index":15073,"location":[9.521706,47.636264]},{"entry":[false,true,false],"in":2,"bearings":[124,135,315],"duration":3.656,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.375,"geometry_index":15075,"location":[9.52368,47.634875]},{"entry":[true,false],"in":1,"bearings":[127,310],"duration":2.496,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.309,"geometry_index":15077,"location":[9.524425,47.634408]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[123,304],"duration":2.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.219,"geometry_index":15079,"location":[9.524982,47.634137]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[118,303],"duration":2.16,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.996,"geometry_index":15080,"location":[9.525538,47.633896]},{"entry":[true,true,false],"in":2,"bearings":[116,128,298],"duration":6.438,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.934,"geometry_index":15082,"location":[9.526072,47.633703]},{"entry":[true,false],"in":1,"bearings":[110,292],"duration":6.066,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.594,"geometry_index":15085,"location":[9.527777,47.63321]},{"entry":[true,false],"in":1,"bearings":[107,290],"duration":3.645,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.371,"geometry_index":15086,"location":[9.529422,47.632805]},{"entry":[true,false,true],"in":1,"bearings":[108,285,294],"duration":12.09,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.176,"geometry_index":15088,"location":[9.530441,47.63261]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":2.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.094,"geometry_index":15090,"location":[9.533535,47.631905]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":8.977,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.301,"geometry_index":15091,"location":[9.534086,47.631779]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":1.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.422,"geometry_index":15093,"location":[9.536323,47.631262]},{"entry":[true,false],"in":1,"bearings":[108,289],"duration":3.027,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.801,"geometry_index":15094,"location":[9.536684,47.631178]},{"entry":[true,false],"in":1,"bearings":[111,288],"duration":5.875,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.434,"geometry_index":15095,"location":[9.537421,47.631014]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[112,291],"duration":13.086,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.105,"geometry_index":15096,"location":[9.538962,47.630614]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":3.086,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.855,"geometry_index":15100,"location":[9.541689,47.629699]},{"entry":[true,false],"in":1,"bearings":[124,304],"duration":2.457,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.273,"geometry_index":15101,"location":[9.542286,47.629429]},{"entry":[false,true,false],"in":2,"bearings":[120,128,304],"duration":2.535,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.336,"geometry_index":15102,"location":[9.542763,47.62921]},{"entry":[true,false],"in":1,"bearings":[124,308],"duration":3.223,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.98,"geometry_index":15103,"location":[9.543255,47.628948]},{"entry":[true,true,false],"in":2,"bearings":[123,139,304],"duration":1.691,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.543,"geometry_index":15104,"location":[9.54392,47.628643]},{"entry":[true,false],"in":1,"bearings":[125,303],"duration":4.438,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.105,"geometry_index":15105,"location":[9.544282,47.628487]},{"entry":[true,false,false],"in":2,"bearings":[125,284,305],"duration":5,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.605,"geometry_index":15106,"location":[9.545268,47.628019]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[125,305],"duration":0.445,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.41,"geometry_index":15107,"location":[9.546372,47.627501]},{"entry":[true,false],"in":1,"bearings":[122,305],"duration":0.984,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.914,"geometry_index":15108,"location":[9.546472,47.627454]},{"entry":[true,false],"in":1,"bearings":[123,302],"duration":3.254,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.012,"geometry_index":15109,"location":[9.546694,47.627359]},{"entry":[true,false],"in":1,"bearings":[122,303],"duration":2.168,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.008,"geometry_index":15110,"location":[9.547439,47.627037]},{"entry":[true,false,true],"in":1,"bearings":[124,302,308],"duration":21.164,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":19.57,"geometry_index":15111,"location":[9.547941,47.626829]},{"entry":[true,false],"in":1,"bearings":[125,304],"duration":5.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.902,"geometry_index":15114,"location":[9.552662,47.62465]},{"entry":[true,false],"in":1,"bearings":[126,305],"duration":3.051,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.82,"geometry_index":15115,"location":[9.553818,47.624106]},{"entry":[true,false],"in":1,"bearings":[127,306],"duration":10.273,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.238,"geometry_index":15116,"location":[9.554481,47.623786]},{"entry":[true,false],"in":1,"bearings":[127,307],"duration":0.633,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.57,"geometry_index":15118,"location":[9.55673,47.622654]},{"entry":[true,false],"in":1,"bearings":[127,307],"duration":42.664,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.398,"geometry_index":15119,"location":[9.556872,47.622582]},{"entry":[true,false],"in":1,"bearings":[140,319],"duration":1.352,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.215,"geometry_index":15130,"location":[9.565522,47.61732]},{"entry":[true,false],"in":1,"bearings":[140,320],"duration":1.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.453,"geometry_index":15131,"location":[9.565753,47.617135]},{"entry":[false,true,false],"in":2,"bearings":[94,140,320],"duration":3.922,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.516,"geometry_index":15132,"location":[9.565973,47.61696]},{"entry":[true,false,true],"in":1,"bearings":[142,320,351],"duration":3.086,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.77,"geometry_index":15133,"location":[9.566628,47.616428]},{"entry":[true,false],"in":1,"bearings":[142,322],"duration":3.695,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.324,"geometry_index":15134,"location":[9.567158,47.615969]},{"entry":[true,true,false],"in":2,"bearings":[141,168,322],"duration":4.059,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.633,"geometry_index":15135,"location":[9.567798,47.61542]},{"entry":[true,false,false],"in":2,"bearings":[142,282,321],"duration":12.797,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.512,"geometry_index":15136,"location":[9.568484,47.614839]},{"entry":[true,false],"in":1,"bearings":[142,322],"duration":1.488,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":15138,"location":[9.570718,47.612942]},{"entry":[true,false],"in":1,"bearings":[141,322],"duration":37.352,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":33.613,"geometry_index":15139,"location":[9.570971,47.612726]},{"entry":[true,false],"in":1,"bearings":[118,303],"duration":8.281,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.66,"geometry_index":15144,"location":[9.576605,47.609184]},{"entry":[true,false],"in":1,"bearings":[114,298],"duration":14.547,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.457,"geometry_index":15145,"location":[9.577682,47.608792]},{"entry":[true,false],"in":1,"bearings":[102,283],"duration":1.801,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.664,"geometry_index":15149,"location":[9.580176,47.608222]},{"entry":[true,false],"in":1,"bearings":[99,282],"duration":6.977,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.453,"geometry_index":15150,"location":[9.580565,47.608165]},{"entry":[true,false],"in":1,"bearings":[91,275],"duration":5.961,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.516,"geometry_index":15153,"location":[9.582208,47.608042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.583625,47.608053],"geometry_index":15155,"admin_index":4,"weight":6.586,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.008,"turn_weight":2,"duration":4.965,"bearings":[77,88,108,268],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,false,false],"in":2,"bearings":[82,252,264],"duration":9.641,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.895,"geometry_index":15157,"location":[9.584888,47.608121]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[81,260],"duration":5.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.52,"geometry_index":15161,"location":[9.587343,47.608396]},{"entry":[true,false,true,true],"in":1,"bearings":[85,259,267,284],"duration":5.977,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.668,"geometry_index":15163,"location":[9.588866,47.608572]},{"entry":[true,false],"in":1,"bearings":[91,268],"duration":8.383,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.965,"geometry_index":15165,"location":[9.590405,47.608642]},{"entry":[true,false],"in":1,"bearings":[99,278],"duration":1.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.32,"geometry_index":15169,"location":[9.592568,47.608533]},{"entry":[true,false],"in":1,"bearings":[102,279],"duration":3.496,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.324,"geometry_index":15170,"location":[9.592927,47.608494]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":21.652,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":20.57,"geometry_index":15172,"location":[9.593807,47.60836]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":14.555,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.828,"geometry_index":15180,"location":[9.598844,47.606749]},{"entry":[true,false],"in":1,"bearings":[115,298],"duration":1.906,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.812,"geometry_index":15184,"location":[9.602053,47.605416]},{"entry":[true,false],"in":1,"bearings":[114,295],"duration":21.75,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":20.664,"geometry_index":15185,"location":[9.60249,47.605278]},{"entry":[true,false],"in":1,"bearings":[88,271],"duration":2.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.375,"geometry_index":15193,"location":[9.608109,47.604461]},{"entry":[true,false],"in":1,"bearings":[86,268],"duration":7.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.316,"geometry_index":15194,"location":[9.608771,47.604476]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":32,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":30.398,"geometry_index":15197,"location":[9.610811,47.604604]},{"entry":[true,false],"in":1,"bearings":[104,282],"duration":11.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.055,"geometry_index":15208,"location":[9.619288,47.604494]},{"entry":[true,false],"in":1,"bearings":[113,291],"duration":2.332,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.156,"geometry_index":15212,"location":[9.622329,47.603853]},{"entry":[true,false],"in":1,"bearings":[115,293],"duration":26.977,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.953,"geometry_index":15213,"location":[9.622901,47.603693]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":2.762,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.555,"geometry_index":15224,"location":[9.628561,47.600703]},{"entry":[true,false],"in":1,"bearings":[150,326],"duration":20.465,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.93,"geometry_index":15226,"location":[9.628972,47.600285]},{"entry":[true,false],"in":1,"bearings":[141,321],"duration":0.887,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.82,"geometry_index":15234,"location":[9.631755,47.597072]},{"entry":[true,false],"in":1,"bearings":[139,321],"duration":6.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.203,"geometry_index":15235,"location":[9.631903,47.59695]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":25.297,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.402,"geometry_index":15238,"location":[9.633222,47.596117]},{"entry":[true,false],"in":1,"bearings":[121,299],"duration":0.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.457,"geometry_index":15247,"location":[9.6393,47.594036]},{"entry":[true,false],"in":1,"bearings":[122,301],"duration":5.129,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.742,"geometry_index":15248,"location":[9.639413,47.59399]},{"entry":[true,false],"in":1,"bearings":[126,303],"duration":19.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.156,"geometry_index":15250,"location":[9.64058,47.593482]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":2.91,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.695,"geometry_index":15255,"location":[9.644771,47.5913]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":3.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.23,"geometry_index":15256,"location":[9.645344,47.590999]},{"entry":[true,false],"in":1,"bearings":[128,307],"duration":2.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.172,"geometry_index":15257,"location":[9.64603,47.590644]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":3.41,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.137,"geometry_index":15259,"location":[9.646502,47.590393]},{"entry":[true,false],"in":1,"bearings":[128,307],"duration":2.434,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.25,"geometry_index":15260,"location":[9.647188,47.590041]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":44.039,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":40.734,"geometry_index":15261,"location":[9.64769,47.589776]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":1.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.504,"geometry_index":15272,"location":[9.657755,47.585517]},{"entry":[true,false],"in":1,"bearings":[118,300],"duration":35.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":32.934,"geometry_index":15273,"location":[9.658141,47.585369]},{"entry":[true,false],"in":1,"bearings":[102,283],"duration":1.168,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.078,"geometry_index":15283,"location":[9.666949,47.582836]},{"entry":[true,false],"in":1,"bearings":[101,282],"duration":15.43,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":14.27,"geometry_index":15284,"location":[9.667243,47.582794]},{"entry":[true,false],"in":1,"bearings":[113,291],"duration":4.273,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.062,"geometry_index":15289,"location":[9.671113,47.582141]},{"entry":[true,false],"in":1,"bearings":[115,293],"duration":29.188,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":27.727,"geometry_index":15290,"location":[9.672047,47.58188]},{"entry":[true,false],"in":1,"bearings":[110,294],"duration":4.406,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.188,"geometry_index":15294,"location":[9.678429,47.579908]},{"entry":[true,false],"in":1,"bearings":[108,290],"duration":6.406,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.086,"geometry_index":15295,"location":[9.679456,47.579662]},{"entry":[true,false],"in":1,"bearings":[105,285],"duration":14.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":14.09,"geometry_index":15299,"location":[9.680998,47.579345]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":6.371,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.051,"geometry_index":15303,"location":[9.684464,47.57854]},{"entry":[true,false],"in":1,"bearings":[126,303],"duration":5.656,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.375,"geometry_index":15305,"location":[9.685776,47.578016]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[130,309],"duration":10.859,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":10.316,"geometry_index":15308,"location":[9.686817,47.577468]},{"entry":[true,false],"in":1,"bearings":[120,307],"duration":5.289,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.16,"geometry_index":15310,"location":[9.688739,47.576407]},{"entry":[true,false],"in":1,"bearings":[117,296],"duration":0.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.48,"geometry_index":15313,"location":[9.689876,47.575993]},{"entry":[true,false],"in":1,"bearings":[115,297],"duration":3.23,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.148,"geometry_index":15314,"location":[9.689986,47.575956]},{"entry":[true,false],"in":1,"bearings":[110,293],"duration":1.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.496,"geometry_index":15316,"location":[9.690726,47.575734]},{"entry":[true,false],"in":1,"bearings":[108,290],"duration":18.793,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":18.324,"geometry_index":15317,"location":[9.691084,47.575648]},{"entry":[true,false],"in":1,"bearings":[82,265],"duration":4.621,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.504,"geometry_index":15326,"location":[9.695741,47.575298]},{"entry":[true,false],"in":1,"bearings":[81,262],"duration":5.891,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.742,"geometry_index":15327,"location":[9.696872,47.575399]},{"entry":[true,false],"in":1,"bearings":[79,260],"duration":1.309,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.277,"geometry_index":15329,"location":[9.698285,47.575556]},{"entry":[true,false],"in":1,"bearings":[77,259],"duration":23.891,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":22.695,"geometry_index":15330,"location":[9.698596,47.575596]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[84,262],"duration":1.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.527,"geometry_index":15335,"location":[9.704301,47.57641]},{"entry":[true,false],"in":1,"bearings":[88,264],"duration":10.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":10.312,"geometry_index":15336,"location":[9.704684,47.576438]},{"entry":[true,false],"in":1,"bearings":[101,278],"duration":4.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.398,"geometry_index":15341,"location":[9.707213,47.576361]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.172,"geometry_index":15343,"location":[9.708273,47.576214]},{"entry":[true,false],"in":1,"bearings":[104,283],"duration":2,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.949,"geometry_index":15344,"location":[9.708542,47.576171]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":1.312,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.281,"geometry_index":15345,"location":[9.708993,47.576095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.709292,47.576044],"geometry_index":15346,"admin_index":5,"weight":7.535,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.008,"turn_weight":1,"duration":6.711,"bearings":[75,105,284],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,false,true],"in":1,"bearings":[104,285,300],"duration":2.234,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.172,"geometry_index":15348,"location":[9.710846,47.575758]},{"entry":[true,true,false],"in":2,"bearings":[105,121,284],"duration":7.59,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":7.391,"geometry_index":15349,"location":[9.711344,47.575673]},{"entry":[true,false,false],"in":2,"bearings":[105,265,286],"duration":5.809,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.656,"geometry_index":15351,"location":[9.713131,47.575343]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[105,285],"duration":14.992,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":14.617,"geometry_index":15352,"location":[9.714515,47.575087]},{"entry":[true,false],"in":1,"bearings":[102,285],"duration":1.289,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.258,"geometry_index":15354,"location":[9.718109,47.57444]},{"entry":[true,false],"in":1,"bearings":[102,282],"duration":17.516,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":17.078,"geometry_index":15355,"location":[9.718428,47.574395]},{"entry":[true,false],"in":1,"bearings":[82,265],"duration":6.207,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.055,"geometry_index":15361,"location":[9.722736,47.57415]},{"entry":[true,false],"in":1,"bearings":[73,257],"duration":35.945,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":34.148,"geometry_index":15363,"location":[9.724299,47.574342]},{"entry":[true,false],"in":1,"bearings":[53,230],"duration":6.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.375,"geometry_index":15375,"location":[9.730949,47.577778]},{"entry":[true,false],"in":1,"bearings":[61,237],"duration":2.039,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.938,"geometry_index":15378,"location":[9.732157,47.578339]},{"entry":[true,false],"in":1,"bearings":[64,241],"duration":0.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.672,"geometry_index":15379,"location":[9.73251,47.578469]},{"entry":[true,false],"in":1,"bearings":[64,244],"duration":0.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.469,"geometry_index":15380,"location":[9.732626,47.578508]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[64,244],"duration":1.906,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.812,"geometry_index":15381,"location":[9.732715,47.578537]},{"entry":[true,true,false],"in":2,"bearings":[67,84,244],"duration":7.793,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":7.395,"geometry_index":15382,"location":[9.733041,47.578645]},{"entry":[true,false,false],"in":1,"bearings":[69,248,344],"duration":0.707,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.664,"geometry_index":15385,"location":[9.734028,47.578922]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[70,249],"duration":0.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.379,"geometry_index":15386,"location":[9.734109,47.578943]},{"entry":[true,false],"in":1,"bearings":[70,250],"duration":2.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.09,"geometry_index":15387,"location":[9.734162,47.578956]},{"entry":[true,false],"in":1,"bearings":[70,250],"duration":1.898,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.805,"geometry_index":15389,"location":[9.734433,47.579022]},{"entry":[true,false,true],"in":1,"bearings":[74,250,270],"duration":0.641,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.598,"geometry_index":15390,"location":[9.734666,47.579078]},{"entry":[true,false],"in":1,"bearings":[74,254],"duration":5.816,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.523,"geometry_index":15391,"location":[9.73475,47.579094]},{"bearings":[74,255],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":15393,"location":[9.735553,47.579248]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"München"},{"type":"text","text":"/"},{"type":"text","text":"Memmingen"}],"type":"turn","modifier":"slight right","text":"München / Memmingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"turn","modifier":"slight right","text":"A 96"},"distanceAlongGeometry":82247.945},{"sub":{"components":[{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"München"},{"type":"text","text":"/"},{"type":"text","text":"Memmingen"}],"type":"turn","modifier":"slight right","text":"München / Memmingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"turn","modifier":"slight right","text":"A 96"},"distanceAlongGeometry":402.336}],"destinations":"A 98: Lindau, Friedrichshafen, Stockach","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 98 toward Lindau/Friedrichshafen/Stockach.","modifier":"slight left","bearing_after":156,"bearing_before":157,"location":[8.851464,47.812788]},"speedLimitSign":"vienna","name":"","weight_typical":4237.393,"duration_typical":4490.826,"duration":4490.826,"distance":82247.945,"driving_side":"right","weight":4237.414,"mode":"driving","ref":"E 54","geometry":"gjgezAo_g{ObJgFdHcEdHiEbHoEjGaEnGoEbHmFnGmFjGuFnGkGjGsG|FyGxFcHxFoHrFaIlFiI|DuGvD{GrHmNtE}InEsJdEyJ`E{J|DwJ|DeKlDeKhDyKzDoNhEiPnBkInBwI~B}KtBeLtBiMnBoMdB{LzAiMxAiMlAqMhAaNx@mMr@uMh@gN`@iK\\qKPuMFwMA_T[eW_@wMg@yMq@cNw@{McAwMoAaNyAeNiB_OgB{LqBiMqB}KaCaLkCgLwCiLaDcL_EmMoEoMkIgTsJeTyFaL}EwI_FqIsMoTsLoRaLgReGaLmFcKuFsKcHyNuGuM_HsH}DeLcYwx@_]{~@qIgVkLm\\wjAycDgN{`@w`@qgAwf@ssAea@_kAeb@wmAmgAgyCglAsfDez@g`Cye@{sAkc@{qAuNqc@s`@qpAu\\olAaU}z@aTy|@eTgbAeMip@qI{f@oKmo@iIyl@}Eca@cKc~@uFmn@cEkh@sEcv@wCqo@sCgw@uAkp@cA{s@c@y`Ae@_lB_@mhAw@mu@yAqu@uC_y@_Dcr@gGa_AiIo}@sHmr@kKux@wIyl@{UsuAiPe~@cM}u@cMax@cFe`@qEs]sEkb@oFyk@uFkt@kDij@{Bug@{Ci~@}A}s@[ax@Kaq@d@uu@r@ys@tAcq@pEcbB|KodEjC{hAvA_iAXy{@GkcAm@ukAcBw{@}C{cAkGmvA}Eq{@aJ}iA{QgeBiQc|AgPelAwSivAcWicByQmpAgf@s~Cwd@m~C_Fe\\y[}wBAGsmAieIsXijBqXujBofAihHgWogB{`@{iCq[mwBmFa^}[o~B{K_z@uKo`AiL{gAuJueAwE{k@_Egj@_HsgAsFcgAmDe{@oCu|@uCafAkBmdAaAyy@i@_x@]sw@Ukx@QqaB_@c_Bu@ghB_BeyAuBykAuC_dAqDc`AoEy`AqFw~@oHocAqF}n@wFgm@_CwTiIiw@wRq_B{DsZ}PqrAyFic@}Dg[aByMsJgu@qQmuAuHqm@uEqa@{Eee@{Ci_@oCm`@aCea@eBua@mAu^s@m]q@wb@W{]C{k@Jg\\\\wZl@y\\z@}[bAsZ|Am\\jBi]bC{`@~Fiy@|@_VvIoq@xDiXjE}WxJuk@rJgf@xHw^pIw^vLse@~Lqb@fNqc@hMc`@lG{QzPgf@nIeUbGwOfQsb@va@kbAhb@s_Adf@qfAjYkm@|l@_sAjt@}bB~s@ieBdUyk@vv@eqBdJyUx`A{kCte@}vAhd@auA~b@{tAlb@uuAfWs{@hVk{@`Rwp@hQuo@xTuz@xQes@jHgY|VycAhTo}@~XwlAbXsnAnYcsAzh@_gCrE_TrRw|@`CcLjAyFn[ozAlIea@zC{NpFoWn{AkiHjm@{tCvn@qwCpFoWlYstAn`@ioBtRc}@zPuv@~Qk|@bDaOtJsd@zLal@fMmm@zNgr@zl@grCbg@i_C`Rwz@tQyu@hPaq@nFqTrNoh@dVm{@rSeq@rVws@`U_m@xKaX~LsYnNeZ`^kr@xa@}q@fe@ir@|c@ck@te@kk@dWwY|EuF|y@}_AzTcXbVoYlT_YtTmZnP_Vf`@eo@xM_UbCaEtBkDne@i}@vR{a@~Po`@~Suh@tOqa@hXyu@jWwu@l_@olAr_@qmAba@sqA~Uat@pTio@nMe^dOo`@hPo`@lPg`@rSgd@~Qa_@fOmZfMyU|Tw`@xXce@dXib@jW{_@lXca@@C`Yma@bQkWhPcVj`@}m@~Qo\\xOsZ~DwIxAaDjKgUjGuOxHoSzFkRfH}WnIe_@lByJ|EsXzFy]pCuR~@wGj@gEjBwOnBgRdCm]pAyWx@aWfAsf@l@ag@Ac}AKwn@Fsn@`A{q@nBu^zC}g@xFgn@fHqf@hKwl@xDqSpFuTvH}XxEkNvGsRvD{InH_QpLgY|GkNlNcZpFiKnIiQpHmQ`L_ZbHuSbIqVpGcVlGcWbIo^nSs_A~O}t@xMak@xI}\\bFuRxFiRpFwOnFuNfFcMrFcMfJiSlK{S`HcMnUy_@|c@wo@hP}VzJkOrPuVvi@o{@zTk\\r\\sh@hQiYbE{GzGsHzKoStMo[hH{WxOuz@pIsb@zJw_@`Oec@tPw]`QsYpLmPzY}YzOmLrW}P`MgI`LoHjKaI`L}JnKqKjNgPjLcPbNsUbY}i@vO}Y~OyTtWu]vJqJxBuB|KgKvNaObWcOjE_CjJuCb\\oLrZwIxZoFtLqBzY{EhW}DpUqDpZiFh]mHnR{DvSqFxRkGpRqHhRsIXOjOaI|OkJtOiKbU_NhLqJvJcIhTyShSsSlX_[r|@oeAfMyOlUw^rKkNpOuQh`@ic@pPgOpc@m\\lF{C`LoGtSoGnSqEv[{Bn`@uA`HEvIEbLYnKkF`YmXb[aMjh@qQrS}Jz`@a\\jF_K`DgGf]so@dL{Uza@u{@fu@_yAprAouBx]gn@fTya@nPo[pD}GfEqIjEkInEgIrE_IdEaHjE{GvEeHzE}G`GoId\\i`@fRkSnOqPxHkJjGwIbH_KfFiIvDwG`EuIpBiEjCsGjCiHxC{IlBuGRq@bCqJpCiLfDqOpCsO`CwNlBcNrBiR~AoQfCmb@t@}\\Hyo@o@{k@q@}bAL{[n@aY`Cm`@pC{XrE}XpDeQlDoOrC_KbHiSjKiUpJkQfO_U`d@qm@rb@im@hJiOjHkNfJ{UvFaQhMwf@zJu`@nB_IjCwJdF{PrEkNxHaSpDeIfFiKrUga@~KmS|Pm[jGiNdGqQ|F}VnB_Oz@iLj@qMLwOGqNuAok@w@i[s@wXAy`@p@}[fBg[jEmd@~FcZdH_\\bL}]|J_WrL{TbNiUdt@miAz~@{xAvaAw}Atj@}}@lR{Yr`@in@jQ}U|HuIrKgJtFiDvG{DpEqBtEcBzDmA~DeAnCm@fCe@hC_@jHw@jH_@jHIlHJjHb@rZrC@?~PdBr~@dJ@?dd@rEB?hHr@^D|WjCrfC~W~t@|H`RhCfLlBNBvGrAxc@jJrv@pTxVlIl\\xKzUtI|YdKrUhGfKxCvMhBbPfBzNbApTLrQSrQoAzZyElDo@|UeHhWuKfUyMxEaDxEyCvNmKnO}NxOmQfSmWbPeXvNcXtMk[dM{[lKyZlGaTxTgv@jByGrFuRxYidArP{k@nSss@vSqt@nQim@hPck@hZmbAdRul@tI{WhE}LfGeQxOga@lLwXpCaIzGkRdPe^fTsd@vY{h@t]uk@r^ei@hXk^vXy\\~s@ow@`m@gi@xtAueAt{AkeAp{@{o@x\\i\\x\\g^|[ac@v[}e@jOqXlDgHfUmc@jv@khBlb@{lAxNoc@zYmaAjHuXbOyk@|T_gAtAkHrVydBfKew@~Lkw@lBkKnDiTtS}x@hd@yyAtWeu@zWst@xK}YlLoXlEoLrEgLnLaX`H_PnT}d@bU_c@|Sy\\fTiZdY{YfLcJfLkIrNcKfWcMve@iL|KwA~b@qFrMiBlHkAfRcE|M{D~EqBbHsChNqGlKgDxGmE~GuFvKmLjY__@nIqJrQqVtF_JbF{H`JiPzI_PzHgPfLkY~Qsg@zAeF|Rwq@rMan@dD}TxCqRfCsSdB_SxAuTfAqVt@iYn@uq@CmWIe\\\\oOx@mZxAaZrAkRtB}VlEe[fFiYzFyV~GwVrFuPvGqQbGaNhKmUhSm`@bPsXjPyVhTy[zR{Wxy@iiAh\\uh@zMiWzIuSxUmq@z\\uhApScn@jc@yeAjGoNzTwd@|Uuc@pb@qr@hMwPnMkOzOsOlQuNb\\mSdi@oXxKqH`QkMrQoPbJoKtDcFtDcFnGaKfEiH|F{KdKaTrC_GrGqQbCqIdI{]tEeVdByLpAoJhCkVn@sFt@mG|Dw`@fBuQb@qFJmAb@cFzEwh@fCgUjBoPP}A~@aGlAaIzA}I@GN}@xA}I|CeRBSdE_TdJoa@rGyZ~BmK~BiKpJm`@t@sC|E{QbLw`@vO}g@`EwMdXk|@lHiUjVur@nQs`@pTi\\bc@gj@pNwQdFkH|S}\\xOkYdNgYhLaYt`@seAvi@waB~I}ZxIw\\jMkk@zJ_h@`U{rAb\\yxBrFa`@pKeu@PmAxFw[x@oEbKwf@bMyj@~f@csB~TceApDiRjO__AvCwUzDm\\xEef@nFsw@tB}Z~NqkCh@sJh@oKVmGjGqxApAii@\\uW@aXEoVWaTs@wYmAwZwAeVGy@sAqPaCcTwAiL_AqGuEoWMm@{BwL}J}b@uBgIkEuOkBkGgDmKsB}F}@eCwB_G{B_GyBmF}BgF_GoMcCcFeCcFgC{EkCsEyEcIaFsHaFsHiFcHuFiHyBqC}BiCoMgNyM}LgX_UsK_JcKeJuKwKkKkLkGkIcGuIaCcEsAwBo@iAe@y@_DwF_EoHgGqMuFaNsGkQ_GyQqGiW}BiKuBmKiD}SiAkIcAoIcByPsA}P{@cP[}GUcG[}NOoICqIDcOLeNZqN`@qNd@sJl@kJr@iJx@gJbAgJdAgJjAeJpA{IpCoPpEuSfF}R`CeIfC}HzGsR~C}H`DqHfDqHhDiHvIkQ~ImQdOyYjO{YtKoTpKuT~FyMnFsM~FwPxA{ElDuLpA_FnAaFtCaMjCmMlB}J|AaK|AiKrAkKjAqK~@qMRoC`AoNPmD^{GTqG\\qJVkNPsOL_PCyDEgHm@oVYwFkAaVwCw`@gC{Tq@sGaAyGwAaI?AuCgPcB{HkCaKeC{JWeAsC}KeFsPwHmRq@eBgLyU}CgG{P_]cQo\\kCcFqPw[gMyXiNo^kK}[kI_\\mF_U_UafAkJih@_BmImAoGwRmeAuDcRaBoI_CsMyA_ImEcSqEmJuPoRoOiKeM{HsPuJiEqCsF_EsF{EkHaIkIwLkH{NoFcOsEsQkDkTkBuSsEku@{Ow`CcEmh@wEyj@aFad@wGod@_J}f@oJqb@eK{_@sM{a@uL_\\ij@stAwMi^oKcZgLm]wJq^{Jgg@sHsi@kFyf@sRycCoAwNoG_s@eCoReCwOgDsQmE{R_FgRsLy^wLsZuLqTyIcO{GqKmf@{r@sp@w~@mVwc@eSgg@}Pig@oKec@aIec@}CmUaGyl@cBs\\yAe]y@m]]mc@bA}yAvHoeCzBai@bMobCzJ_uAlL}pAnZalClE{\\nYcmB`Z{cBnZ}yAf]{yAhr@}gCvUkv@zY{v@rJaUrQg_@zSq`@~W}a@za@ek@znAusA`UcU`IiHpKsJny@_{@b[i\\dQsQtq@qu@fGwIpQmWhLiTvAmC~Ni_@zSuv@hIub@xE__@jD}^pCal@`Bgj@lAyb@pKetBrJyi@rLqi@`Vqx@hx@wyBve@esAbOah@rg@a}A`AmDvNwg@dPmr@vOaw@dIqe@bIse@dNmaA^gEp@gIEm[BwGxAyXdBuMtAaXrAgm@xAwkAMg|AcBgu@yBsVaDkTuIyf@wNym@gQqo@wOem@yEoVcGia@{Eoc@eB{TsA}So@sUk@{SUsSAaVJuQfA_l@lAwXnBkWnCkWbE_YdBsJ`AqF~E_MpE_TrFcT`GmTpFgRjGyPN_@pI}StQm`@rEiJrFaJfEaHfYia@~FwI|JqLjNgOhIyH|OeN~ScQ`h@_b@tEuD~DeEvc@kZjkAaq@ns@a`@z~@ke@bC{AtA}@fGoBxFiCba@oWjf@yWbMkIfz@kl@~NmPdQgObPkNfl@al@tVqXfX}\\vu@igAncAwcBjLaSrVo`@dg@iu@nc@wi@jNqO`f@ic@lVmV|OaMru@{f@~n@k]nb@yS`W_Kjf@yV|P}Jdq@od@`XySda@m^~d@ae@tL}QtI}Jxc@on@tiAi_BnmFklIvl@i~@`h@a{@~Qi[dIgQnHqQlFgO`Nwa@xAqFfHyXnEmRhEqR~PqbAhXyeBfFob@|Ce[nMi_Ap\\a`CzFma@tRmsArKkv@fDqUfIam@~Wi_BjGo^`Omt@zRew@zKi\\zOid@tLy\\jOw]`Rqh@vHsUf\\s|@j_@_dA|AgE|D{LbSqm@~Kk^hPod@tq@}lBdcAsrC~`@ggA~Rmh@hGoOl}@a{BnC{Gz}@uyB`Tqg@pTgh@bT{d@rWqh@bYcj@b\\ol@h\\cj@|d@kt@|Ui]d_@gh@pJmM|IwLf`@}g@t[c`@ha@_g@hc@{i@~I}KpjBu}BnLyNn_@ye@h_@yi@l_AezAhx@obBxa@ynAnWibAbHg]|Gca@zJ}v@tDqb@pBiWlA{UpAg]tAqp@Jck@a@mk@QkVuBqv@kAwX_BuZeCka@sFs`AkEqz@sCsb@uBidAU{YPud@f@o`@bAe_@zAy^lAmUvCc`@rB{TpBqUbJiq@jGi`@pIyc@`Lmf@zMmf@fMqb@zWkx@f\\i`A|Zo_AtKa`@lLud@rGiZjJ_e@nHce@tGeg@xHy{@fEir@bB_u@bAwk@D_W]kh@}@ol@sAsb@mBkm@sBkm@aCql@cB{r@eAuf@Yyp@Aar@Lah@xAep@jCwu@~Dgr@bFep@fG}q@jIkr@pHii@zJml@~Hwb@fPgu@z@iDtNqk@lL_`@lL_]jQgd@dSqb@xW{e@jVc^nY{^|J}JfGcGzPqPzXqU~ZaUde@c\\bf@w\\dZ_W|UcVzLgOrDaFrFgHbNkRvOeZdS{b@tQ}d@`N}d@~Jyb@pK{h@bUgkAzIed@|O_s@nI_^hJ{\\zAaFlMaa@hP{e@~Reg@`i@apAf[ku@vSaf@hXgn@xQyb@dU{i@dAcCnLkX~T{i@pOk^d@iAxRaf@nWkp@`Wkp@z[s~@va@gnA|[qgAhZyeAvPen@bXoaAz`@_xAfHcWhL{c@hVq}@ha@wzAnRez@tNos@|Hcd@dJak@lHoh@nJsz@bIi`ArAkQpMglB|Emj@lGwi@|DmZ|C_RhOky@vXarAxZowA`b@opBra@ypBjNe_A|@yGnEc\\`E_]hDm[rMypApHml@tJyk@lMqk@hK}a@lSan@hMe\\|LaX~DyIx{@}kBnDeJxBqHzH_XdKoc@hA{ElFgVlE_VjDkUzCwTfD_[lDya@vCwf@pAma@p@y`@Jcc@e@kb@w@_ZiEueAkCmi@mD{l@oAmRgHe{@kHk_AwU_rCyDio@uBuc@w@}V[_^Fse@`@__@fAc`@bAiVfCg`@|C_`@tAyOvCe[dBuQnN}rAjAeLhDc^bIuv@nI_w@~NouA|VufCnO}wAxA}RdGww@fDiq@zB_p@By|@Q_Xq@kYuCip@iFko@qGoh@aFiZsKqg@eMyd@qQge@iJgTyLgV}c@wr@_i@wv@gW_b@{Oa[qGcNeJcU_IeT{Le_@cGaUmAgFy@qDwEkScNot@y@sEKq@i@aDYiB}@{FeAaHoBqM_@gDqCcVaDaZe@gE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 99 miles.","announcement":"Continue for 99 miles.","distanceAlongGeometry":159381.891},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 96.","announcement":"In 1 mile, Keep left to stay on A 96.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 96.","announcement":"In a half mile, Keep left to stay on A 96.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 96, E 54 toward München-Zentrum, Salzburg.","announcement":"Keep left to stay on A 96, E 54 toward München-Zentrum, Salzburg.","distanceAlongGeometry":255.556}],"intersections":[{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[9.735653,47.579267],"geometry_index":15394,"admin_index":5,"weight":10.199,"is_urban":false,"mapbox_streets_v8":{"class":"trunk_link"},"turn_duration":0.045,"turn_weight":4.5,"duration":6.047,"bearings":[76,102,254],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,false,false],"in":1,"bearings":[154,297,355],"duration":2.605,"turn_weight":0.75,"turn_duration":0.077,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":5,"out":0,"weight":3.152,"geometry_index":15398,"location":[9.73621,47.579129]},{"entry":[true,false,true],"in":1,"bearings":[171,333,358],"duration":6.32,"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":5,"out":0,"weight":5.984,"geometry_index":15400,"location":[9.736368,47.578917]},{"entry":[false,true],"in":0,"bearings":[11,196],"duration":4.32,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":5,"out":1,"weight":4.105,"geometry_index":15406,"location":[9.736368,47.578294]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[9.736126,47.577897],"geometry_index":15410,"admin_index":5,"weight":12.051,"is_urban":false,"turn_weight":1.125,"duration":11.555,"bearings":[28,208,239],"out":2,"in":0,"turn_duration":0.055,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.735035,47.57824],"geometry_index":15420,"admin_index":5,"weight":7.855,"is_urban":false,"turn_weight":6.75,"duration":1.199,"bearings":[6,162,184],"out":0,"in":1,"turn_duration":0.035,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":6.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.113,"geometry_index":15421,"location":[9.735081,47.578527]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":32.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":31.055,"geometry_index":15424,"location":[9.735395,47.580099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,354],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.711,"geometry_index":15433,"location":[9.736243,47.588131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.699,"geometry_index":15434,"location":[9.736171,47.588595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,349],"duration":6.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.336,"geometry_index":15437,"location":[9.735849,47.590108]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.735314,47.591766],"geometry_index":15440,"admin_index":5,"weight":7.945,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.383,"bearings":[166,345,353],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.734417,47.593803],"geometry_index":15443,"admin_index":5,"weight":6.656,"is_urban":false,"turn_weight":1,"duration":6.137,"bearings":[156,163,342],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,343],"duration":10.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.73,"geometry_index":15444,"location":[9.733709,47.595304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.422,"geometry_index":15450,"location":[9.732716,47.597926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,353],"duration":21.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.012,"geometry_index":15451,"location":[9.73261,47.598316]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":3.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.977,"geometry_index":15458,"location":[9.732512,47.603857]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":88.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":79.773,"geometry_index":15459,"location":[9.732641,47.604691]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":4.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.402,"geometry_index":15478,"location":[9.740191,47.626856]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.740352,47.628108],"geometry_index":15482,"admin_index":4,"weight":2.043,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.293,"bearings":[2,21,184],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":0.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.125,"geometry_index":15484,"location":[9.740387,47.62869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,182],"duration":16.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.629,"geometry_index":15485,"location":[9.740389,47.628723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,188],"duration":27.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.598,"geometry_index":15490,"location":[9.740708,47.632891]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,208],"duration":25.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.531,"geometry_index":15500,"location":[9.744827,47.640539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.836,"geometry_index":15507,"location":[9.750622,47.64591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.426,"geometry_index":15510,"location":[9.75238,47.647059]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":20.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.836,"geometry_index":15511,"location":[9.752823,47.647336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":51.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.453,"geometry_index":15517,"location":[9.758768,47.650621]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":2.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.316,"geometry_index":15526,"location":[9.772935,47.659845]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":58.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.379,"geometry_index":15527,"location":[9.773516,47.660372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":19.188,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.75,"geometry_index":15544,"location":[9.783563,47.67377]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":6.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.883,"geometry_index":15549,"location":[9.784531,47.678654]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.784763,47.680278],"geometry_index":15550,"admin_index":4,"weight":11.316,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.242,"bearings":[7,18,185],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.785456,47.68339],"geometry_index":15556,"admin_index":4,"weight":6.402,"is_urban":false,"turn_weight":1,"duration":5.848,"bearings":[13,182,191],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,195],"duration":49.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.707,"geometry_index":15561,"location":[9.786004,47.684888]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":13.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.504,"geometry_index":15574,"location":[9.793897,47.696786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,205],"duration":14.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.512,"geometry_index":15577,"location":[9.795874,47.700097]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":4.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.309,"geometry_index":15582,"location":[9.798828,47.70332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.812,"geometry_index":15584,"location":[9.799925,47.704246]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,225],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.391,"geometry_index":15588,"location":[9.801539,47.705414]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.801654,47.70549],"geometry_index":15589,"admin_index":4,"weight":6.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.684,"bearings":[46,59,226],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.803506,47.70662],"geometry_index":15592,"admin_index":4,"weight":6.898,"is_urban":false,"turn_weight":1,"duration":6.383,"bearings":[50,221,229],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,233],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.371,"geometry_index":15595,"location":[9.805292,47.707555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,242],"duration":19.855,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.352,"geometry_index":15601,"location":[9.808686,47.70897]},{"tunnel_name":"Herfatz","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[78,256],"duration":16.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.035,"geometry_index":15607,"location":[9.815264,47.71067]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":3.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.676,"geometry_index":15612,"location":[9.821005,47.711424]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":13.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.355,"geometry_index":15613,"location":[9.822401,47.711588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.648,"geometry_index":15617,"location":[9.827226,47.712344]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":22.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.789,"geometry_index":15618,"location":[9.827869,47.712489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.383,"geometry_index":15626,"location":[9.835484,47.715123]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,238],"duration":24.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.711,"geometry_index":15627,"location":[9.835975,47.715332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,246],"duration":4.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.188,"geometry_index":15631,"location":[9.843896,47.718336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,250],"duration":52.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.438,"geometry_index":15632,"location":[9.845554,47.718741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,239],"duration":13.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.473,"geometry_index":15650,"location":[9.865391,47.722044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":6.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.203,"geometry_index":15657,"location":[9.869704,47.72427]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.871611,47.72556],"geometry_index":15660,"admin_index":4,"weight":6.062,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.742,"bearings":[42,61,223],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.873268,47.726845],"geometry_index":15662,"admin_index":4,"weight":2.395,"is_urban":false,"turn_weight":1,"duration":1.57,"bearings":[39,213,221],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.289,"geometry_index":15663,"location":[9.87363,47.727146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":20.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.234,"geometry_index":15664,"location":[9.874774,47.728079]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":16.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.738,"geometry_index":15669,"location":[9.879945,47.731886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":7.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.895,"geometry_index":15673,"location":[9.884603,47.73463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,230],"duration":5.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.891,"geometry_index":15674,"location":[9.88683,47.735884]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,227],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.543,"geometry_index":15675,"location":[9.888335,47.736821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.961,"geometry_index":15676,"location":[9.888807,47.737125]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,224],"duration":2.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.031,"geometry_index":15677,"location":[9.890823,47.738522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":56.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.27,"geometry_index":15678,"location":[9.89137,47.738958]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":6.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.844,"geometry_index":15690,"location":[9.904436,47.750472]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":0.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":15693,"location":[9.905834,47.751776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.905898,47.75184],"geometry_index":15694,"admin_index":4,"weight":6.207,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.719,"bearings":[34,214],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.582,"geometry_index":15696,"location":[9.907275,47.7533]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":7.402,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.828,"geometry_index":15697,"location":[9.907402,47.753438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":83.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":74.965,"geometry_index":15699,"location":[9.908504,47.754711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":2.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.285,"geometry_index":15709,"location":[9.924389,47.767365]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":52.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.184,"geometry_index":15710,"location":[9.925079,47.767838]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[72,250],"duration":1.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.512,"geometry_index":15721,"location":[9.940766,47.776022]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":49.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.574,"geometry_index":15722,"location":[9.94138,47.776159]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,229],"duration":22.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.398,"geometry_index":15732,"location":[9.958166,47.781806]},{"tunnel_name":"Grünbrücke Buchwald","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[28,209],"duration":2.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.906,"geometry_index":15737,"location":[9.963339,47.786255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":39.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.922,"geometry_index":15738,"location":[9.963715,47.786725]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,228],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.746,"geometry_index":15747,"location":[9.971198,47.795514]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,231],"duration":33.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.488,"geometry_index":15748,"location":[9.971778,47.795824]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,227],"duration":53.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.707,"geometry_index":15760,"location":[9.98267,47.800787]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":6.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.121,"geometry_index":15776,"location":[9.990691,47.813248]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.990925,47.814973],"geometry_index":15779,"admin_index":4,"weight":7.902,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.551,"bearings":[5,15,185],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.991186,47.817143],"geometry_index":15784,"admin_index":4,"weight":6.172,"is_urban":false,"turn_weight":1,"duration":5.613,"bearings":[3,179,184],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":7.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.789,"geometry_index":15786,"location":[9.991321,47.818578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":40.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.883,"geometry_index":15788,"location":[9.991465,47.82046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":6.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.945,"geometry_index":15795,"location":[9.991602,47.830974]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.991518,47.832585],"geometry_index":15797,"admin_index":4,"weight":7.68,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.09,"bearings":[11,178,357],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.991371,47.834642],"geometry_index":15800,"admin_index":4,"weight":6.027,"is_urban":false,"turn_weight":0.5,"duration":5.996,"bearings":[170,177,356],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,357],"duration":65.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":60.457,"geometry_index":15801,"location":[9.991225,47.836178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,224],"duration":29.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.266,"geometry_index":15816,"location":[9.995637,47.852041]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,220],"duration":22.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.668,"geometry_index":15823,"location":[10.004038,47.856962]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":5.859,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.254,"geometry_index":15831,"location":[10.008724,47.86195]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,221],"duration":1.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.496,"geometry_index":15833,"location":[10.010159,47.863104]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,225],"duration":10.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.215,"geometry_index":15834,"location":[10.010612,47.863409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":4.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.867,"geometry_index":15837,"location":[10.013678,47.865049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":80.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":72.328,"geometry_index":15838,"location":[10.015059,47.865647]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":6.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.555,"geometry_index":15864,"location":[10.037309,47.880051]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.038393,47.881493],"geometry_index":15867,"admin_index":4,"weight":9.465,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.535,"bearings":[26,37,205],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,205],"duration":1.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.277,"geometry_index":15870,"location":[10.040078,47.883915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,204],"duration":12.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.883,"geometry_index":15871,"location":[10.040306,47.884254]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.04224,47.887078],"geometry_index":15875,"admin_index":4,"weight":7.23,"is_urban":false,"turn_weight":1,"duration":6.945,"bearings":[24,199,205],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":19.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.258,"geometry_index":15878,"location":[10.04336,47.888707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,214],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.246,"geometry_index":15882,"location":[10.046807,47.893103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,218],"duration":135.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":122.031,"geometry_index":15883,"location":[10.047137,47.893391]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":3.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.711,"geometry_index":15924,"location":[10.078475,47.921321]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":49.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.125,"geometry_index":15925,"location":[10.079317,47.921858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,222],"duration":1.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.992,"geometry_index":15934,"location":[10.093084,47.930798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,222],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.16,"geometry_index":15935,"location":[10.093363,47.931007]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,221],"duration":6.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.98,"geometry_index":15936,"location":[10.093409,47.931042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.09491,47.932361],"geometry_index":15940,"admin_index":4,"weight":7.281,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.891,"bearings":[34,215],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.0965,47.934057],"geometry_index":15942,"admin_index":4,"weight":6.375,"is_urban":false,"turn_weight":1,"duration":5.84,"bearings":[26,203,211],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,205],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.156,"geometry_index":15945,"location":[10.097457,47.935378]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,197],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":15949,"location":[10.098482,47.937205]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,197],"duration":11.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.508,"geometry_index":15950,"location":[10.098611,47.937485]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":15954,"location":[10.099718,47.940307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.996,"geometry_index":15955,"location":[10.099843,47.940606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":3.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.234,"geometry_index":15956,"location":[10.100071,47.941151]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,199],"duration":3.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.234,"geometry_index":15958,"location":[10.100496,47.942016]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.93,"geometry_index":15959,"location":[10.100989,47.942857]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":74.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":67.012,"geometry_index":15960,"location":[10.101134,47.9431]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":0.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.879,"geometry_index":15976,"location":[10.11051,47.961302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":29.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":26.363,"geometry_index":15977,"location":[10.110676,47.961529]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":7.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.148,"geometry_index":15979,"location":[10.115609,47.968216]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.116937,47.97003],"geometry_index":15980,"admin_index":5,"weight":7.371,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.441,"bearings":[26,44,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.118368,47.971976],"geometry_index":15982,"admin_index":5,"weight":7.516,"is_urban":false,"turn_weight":1,"duration":7.465,"bearings":[26,186,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":0.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.742,"geometry_index":15983,"location":[10.119627,47.973674]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.895,"geometry_index":15984,"location":[10.119771,47.973868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,206],"duration":30.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":27.039,"geometry_index":15985,"location":[10.119943,47.974099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":7.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.578,"geometry_index":15991,"location":[10.125563,47.98091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":12.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.969,"geometry_index":15992,"location":[10.127101,47.982437]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.781,"geometry_index":15996,"location":[10.130024,47.985044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":1.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.391,"geometry_index":15997,"location":[10.130667,47.985575]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":8.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.758,"geometry_index":15998,"location":[10.130988,47.985841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":2.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.742,"geometry_index":16001,"location":[10.132861,47.987271]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,223],"duration":3.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.23,"geometry_index":16002,"location":[10.13352,47.987751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,223],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.539,"geometry_index":16004,"location":[10.134315,47.98831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":7.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.746,"geometry_index":16005,"location":[10.134434,47.988385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":9.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.574,"geometry_index":16007,"location":[10.135836,47.98927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,227],"duration":29.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.625,"geometry_index":16009,"location":[10.137475,47.990306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":3.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.703,"geometry_index":16012,"location":[10.142507,47.992886]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":7.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.445,"geometry_index":16013,"location":[10.143146,47.993182]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.144528,47.993765],"geometry_index":16015,"admin_index":5,"weight":1.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.43,"bearings":[58,71,239],"out":1,"in":2,"turn_duration":0.014,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,251],"duration":0.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":16016,"location":[10.144828,47.993835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,246],"duration":6.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.137,"geometry_index":16017,"location":[10.144988,47.993883]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,244],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.355,"geometry_index":16020,"location":[10.146239,47.994294]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.146527,47.994379],"geometry_index":16021,"admin_index":5,"weight":12.238,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.262,"bearings":[64,75,246],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.149281,47.995462],"geometry_index":16025,"admin_index":5,"weight":8.379,"is_urban":false,"turn_weight":1,"duration":7.387,"bearings":[60,225,238],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,245],"duration":5.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.211,"geometry_index":16029,"location":[10.151238,47.99613]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.152644,47.996515],"geometry_index":16031,"admin_index":5,"weight":6.559,"is_urban":false,"turn_weight":1,"duration":5.43,"bearings":[68,239,248],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.582,"geometry_index":16034,"location":[10.15425,47.996927]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":7.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.895,"geometry_index":16035,"location":[10.154708,47.997042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.157059,47.99756],"geometry_index":16038,"admin_index":5,"weight":6.914,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.594,"bearings":[74,92,253],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[76,238,254],"duration":1.238,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.293,"geometry_index":16041,"location":[10.159134,47.997958]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":10.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.242,"geometry_index":16042,"location":[10.15947,47.998015]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,258],"duration":12.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.254,"geometry_index":16046,"location":[10.162433,47.998453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.555,"geometry_index":16051,"location":[10.166049,47.998835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":31.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":31.949,"geometry_index":16052,"location":[10.16648,47.998872]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":28.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.16,"geometry_index":16065,"location":[10.175302,47.999061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":32.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":33.586,"geometry_index":16069,"location":[10.182937,47.99886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,272],"duration":5.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.012,"geometry_index":16070,"location":[10.19136,47.99865]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.883,"geometry_index":16072,"location":[10.193129,47.998606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":1.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.801,"geometry_index":16073,"location":[10.193428,47.998599]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":5.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.688,"geometry_index":16074,"location":[10.193951,47.998585]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,273],"duration":5.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.844,"geometry_index":16079,"location":[10.196439,47.998522]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.19899,47.99846],"geometry_index":16081,"admin_index":5,"weight":6.492,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.5,"bearings":[93,113,272],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,269],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.141,"geometry_index":16085,"location":[10.201462,47.998428]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,268],"duration":11.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.52,"geometry_index":16086,"location":[10.201905,47.998439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,267],"duration":6.605,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.594,"geometry_index":16095,"location":[10.20619,47.998609]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,275],"duration":13.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.137,"geometry_index":16100,"location":[10.208668,47.998542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,276],"duration":53.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":50.934,"geometry_index":16109,"location":[10.213695,47.998111]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":6.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.336,"geometry_index":16137,"location":[10.23255,48.002923]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.234793,48.003839],"geometry_index":16138,"admin_index":5,"weight":12.047,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.406,"bearings":[58,72,239],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.239122,48.0057],"geometry_index":16141,"admin_index":5,"weight":6.516,"is_urban":false,"turn_weight":1,"duration":6.145,"bearings":[56,222,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":36.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":32.898,"geometry_index":16143,"location":[10.241097,48.00658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.383,"geometry_index":16156,"location":[10.25178,48.012711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":31.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.367,"geometry_index":16157,"location":[10.25213,48.013026]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,249],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.27,"geometry_index":16171,"location":[10.261536,48.018251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,250],"duration":26.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.23,"geometry_index":16172,"location":[10.26204,48.018372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.281,"geometry_index":16179,"location":[10.271999,48.02002]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.274588,48.020427],"geometry_index":16181,"admin_index":5,"weight":4.848,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.25,"bearings":[77,101,256],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.276549,48.020746],"geometry_index":16183,"admin_index":5,"weight":2.016,"is_urban":false,"turn_weight":1,"duration":1.105,"bearings":[76,235,255],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,256],"duration":5.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.359,"geometry_index":16185,"location":[10.276964,48.020815]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":38.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":34.312,"geometry_index":16187,"location":[10.279163,48.021177]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,266],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.203,"geometry_index":16204,"location":[10.293172,48.024438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,268],"duration":78.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":70.809,"geometry_index":16205,"location":[10.293691,48.024449]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,259],"duration":4.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.398,"geometry_index":16227,"location":[10.323329,48.02764]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,260],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.488,"geometry_index":16228,"location":[10.325124,48.02786]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,258],"duration":2.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.891,"geometry_index":16229,"location":[10.325325,48.027889]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.326103,48.027987],"geometry_index":16230,"admin_index":5,"weight":5.473,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.938,"bearings":[78,101,259],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.328285,48.028272],"geometry_index":16233,"admin_index":5,"weight":6.238,"is_urban":false,"turn_weight":1,"duration":5.668,"bearings":[79,246,259],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,257],"duration":17.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.102,"geometry_index":16235,"location":[10.330415,48.028582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,254],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.371,"geometry_index":16239,"location":[10.33688,48.029727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.859,"geometry_index":16240,"location":[10.337419,48.029839]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.688,"geometry_index":16241,"location":[10.338148,48.029994]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":41.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.312,"geometry_index":16242,"location":[10.338417,48.030052]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":8.508,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.863,"geometry_index":16248,"location":[10.353198,48.033402]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":25.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.832,"geometry_index":16249,"location":[10.356145,48.034003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":10.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.887,"geometry_index":16250,"location":[10.363838,48.035572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,253],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.727,"geometry_index":16251,"location":[10.366862,48.036183]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":5.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.281,"geometry_index":16252,"location":[10.367685,48.036345]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":10.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.199,"geometry_index":16254,"location":[10.369792,48.036738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,261],"duration":4.703,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.105,"geometry_index":16260,"location":[10.373638,48.037253]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":10.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.57,"geometry_index":16262,"location":[10.375007,48.03737]},{"tunnel_name":"Kohlbergtunnel","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[90,267],"duration":27.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.125,"geometry_index":16265,"location":[10.378216,48.037522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":92.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":80.672,"geometry_index":16269,"location":[10.386341,48.037327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,278],"duration":8.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.586,"geometry_index":16297,"location":[10.414033,48.03411]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.4166,48.033947],"geometry_index":16301,"admin_index":5,"weight":13.445,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.961,"bearings":[94,106,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.42105,48.033709],"geometry_index":16303,"admin_index":5,"weight":8.238,"is_urban":false,"turn_weight":1,"duration":8.062,"bearings":[94,267,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":52.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":48.715,"geometry_index":16305,"location":[10.423471,48.033577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,274],"duration":6.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.332,"geometry_index":16308,"location":[10.439334,48.032725]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.441402,48.032612],"geometry_index":16310,"admin_index":5,"weight":7.922,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.82,"bearings":[94,106,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.444048,48.032467],"geometry_index":16312,"admin_index":5,"weight":3.48,"is_urban":false,"turn_weight":1,"duration":2.773,"bearings":[94,269,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.621,"geometry_index":16314,"location":[10.444877,48.032425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":2.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.672,"geometry_index":16315,"location":[10.445439,48.032396]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,274],"duration":18.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.77,"geometry_index":16316,"location":[10.446442,48.032346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,276],"duration":3.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.277,"geometry_index":16319,"location":[10.452746,48.031966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,278],"duration":117.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":105.316,"geometry_index":16320,"location":[10.453969,48.031852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.566,"geometry_index":16348,"location":[10.49107,48.026295]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":46.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":42.949,"geometry_index":16349,"location":[10.491675,48.0264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":7.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.328,"geometry_index":16351,"location":[10.508107,48.029267]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.510848,48.029711],"geometry_index":16353,"admin_index":5,"weight":8.758,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.238,"bearings":[78,92,257],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.514152,48.03018],"geometry_index":16355,"admin_index":5,"weight":6.828,"is_urban":false,"turn_weight":1,"duration":6.309,"bearings":[79,246,258],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.77,"geometry_index":16357,"location":[10.51637,48.030454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,261],"duration":261.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":241.566,"geometry_index":16360,"location":[10.519342,48.030779]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,268],"duration":6.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.961,"geometry_index":16411,"location":[10.61816,48.041065]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.620679,48.041085],"geometry_index":16414,"admin_index":5,"weight":5.801,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.277,"bearings":[90,103,270],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.622945,48.041057],"geometry_index":16416,"admin_index":5,"weight":5.551,"is_urban":false,"turn_weight":1,"duration":4.926,"bearings":[92,260,272],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,273],"duration":42.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":39.695,"geometry_index":16418,"location":[10.624802,48.040996]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,292],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.613,"geometry_index":16436,"location":[10.64052,48.038683]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,293],"duration":9.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.051,"geometry_index":16437,"location":[10.640751,48.038619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,294],"duration":2.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.609,"geometry_index":16439,"location":[10.644198,48.037601]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,294],"duration":12.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.418,"geometry_index":16440,"location":[10.645215,48.037298]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.016,"geometry_index":16443,"location":[10.649599,48.035864]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":47.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":42.875,"geometry_index":16444,"location":[10.64998,48.035736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,292],"duration":6.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.664,"geometry_index":16457,"location":[10.66634,48.030262]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.668611,48.029707],"geometry_index":16460,"admin_index":5,"weight":13.379,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.883,"bearings":[108,120,290],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.673956,48.028603],"geometry_index":16464,"admin_index":5,"weight":5.719,"is_urban":false,"turn_weight":1,"duration":5.25,"bearings":[106,279,286],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,286],"duration":27.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.039,"geometry_index":16465,"location":[10.675891,48.028239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,288],"duration":0.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.715,"geometry_index":16469,"location":[10.686145,48.026206]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,289],"duration":41.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.715,"geometry_index":16470,"location":[10.686434,48.02614]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,270],"duration":6.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.754,"geometry_index":16482,"location":[10.701911,48.023442]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.704287,48.023583],"geometry_index":16487,"admin_index":5,"weight":5.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.316,"bearings":[81,94,262],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.706616,48.02391],"geometry_index":16491,"admin_index":5,"weight":6.113,"is_urban":false,"turn_weight":1,"duration":5.402,"bearings":[75,234,256],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,251],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.012,"geometry_index":16495,"location":[10.708508,48.024315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":2.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.438,"geometry_index":16496,"location":[10.709256,48.024516]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":2.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.93,"geometry_index":16498,"location":[10.71015,48.024769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":2.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.184,"geometry_index":16499,"location":[10.710854,48.024965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,247],"duration":28.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":27.344,"geometry_index":16500,"location":[10.71168,48.025197]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,270],"duration":5.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.715,"geometry_index":16511,"location":[10.722481,48.02606]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.724773,48.026182],"geometry_index":16515,"admin_index":5,"weight":5.246,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.402,"bearings":[81,92,263],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.891,"geometry_index":16519,"location":[10.726801,48.026451]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":8.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.852,"geometry_index":16520,"location":[10.727527,48.026588]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.730241,48.027291],"geometry_index":16524,"admin_index":5,"weight":6.234,"is_urban":false,"turn_weight":0.75,"duration":5.645,"bearings":[65,229,246],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.293,"geometry_index":16529,"location":[10.732016,48.027927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":5.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.547,"geometry_index":16530,"location":[10.732419,48.028096]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,232],"duration":7.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.352,"geometry_index":16533,"location":[10.734132,48.028934]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":11.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.25,"geometry_index":16537,"location":[10.736232,48.030263]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,226],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.562,"geometry_index":16541,"location":[10.739257,48.032415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,227],"duration":8.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.531,"geometry_index":16542,"location":[10.739717,48.032705]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":6.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.867,"geometry_index":16546,"location":[10.742368,48.034117]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.744404,48.034953],"geometry_index":16549,"admin_index":5,"weight":6.156,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.664,"bearings":[63,73,240],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.74662,48.035666],"geometry_index":16553,"admin_index":5,"weight":5.879,"is_urban":false,"turn_weight":1,"duration":5.285,"bearings":[69,239,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,251],"duration":72.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":65.633,"geometry_index":16556,"location":[10.748488,48.036129]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.859,"geometry_index":16584,"location":[10.775184,48.039881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,272],"duration":32.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.383,"geometry_index":16585,"location":[10.77554,48.039873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.07,"geometry_index":16595,"location":[10.787625,48.040873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":22.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.434,"geometry_index":16596,"location":[10.788033,48.040978]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.008,"geometry_index":16606,"location":[10.796293,48.042329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,266],"duration":60.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":53.152,"geometry_index":16607,"location":[10.796727,48.04235]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[96,278],"duration":0.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.418,"geometry_index":16632,"location":[10.819015,48.045866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,276],"duration":23.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.043,"geometry_index":16633,"location":[10.819183,48.045854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,264],"duration":4.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.969,"geometry_index":16641,"location":[10.827946,48.045539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,259],"duration":9.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.23,"geometry_index":16643,"location":[10.829535,48.045729]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.832733,48.046378],"geometry_index":16647,"admin_index":5,"weight":7.957,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.863,"bearings":[68,83,250],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,241],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.664,"geometry_index":16651,"location":[10.835419,48.047229]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,242],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.324,"geometry_index":16652,"location":[10.835637,48.047308]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,240],"duration":3.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.785,"geometry_index":16653,"location":[10.836118,48.047493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":6.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.73,"geometry_index":16655,"location":[10.83709,48.047932]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.328,"geometry_index":16658,"location":[10.838987,48.04892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,231],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.414,"geometry_index":16659,"location":[10.839096,48.048979]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,227],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.402,"geometry_index":16660,"location":[10.839523,48.049242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":4.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.328,"geometry_index":16661,"location":[10.839838,48.049457]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,223],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.398,"geometry_index":16663,"location":[10.840817,48.050142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.945,"geometry_index":16664,"location":[10.841146,48.050404]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.841368,48.050589],"geometry_index":16665,"admin_index":5,"weight":3.055,"is_urban":false,"turn_weight":0.75,"duration":2.445,"bearings":[39,206,219],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.246,"geometry_index":16667,"location":[10.841914,48.051051]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":6.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.625,"geometry_index":16668,"location":[10.841971,48.051102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,211],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.578,"geometry_index":16672,"location":[10.843322,48.052492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,208],"duration":3.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.832,"geometry_index":16673,"location":[10.84377,48.053063]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,206],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.125,"geometry_index":16674,"location":[10.844396,48.053928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,204],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.023,"geometry_index":16675,"location":[10.844566,48.054188]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.09,"geometry_index":16676,"location":[10.844982,48.054914]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.845962,48.056625],"geometry_index":16678,"admin_index":5,"weight":16.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.266,"bearings":[21,32,201],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.848751,48.060594],"geometry_index":16687,"admin_index":5,"weight":1.832,"is_urban":false,"turn_weight":1,"duration":0.852,"bearings":[32,189,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":6.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.492,"geometry_index":16688,"location":[10.848921,48.060776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,220],"duration":25.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.34,"geometry_index":16692,"location":[10.850405,48.062099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,252],"duration":6.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.988,"geometry_index":16707,"location":[10.85868,48.06526]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.861256,48.065698],"geometry_index":16711,"admin_index":5,"weight":9.758,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.016,"bearings":[80,94,259],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.864957,48.065982],"geometry_index":16717,"admin_index":5,"weight":8.699,"is_urban":false,"turn_weight":1,"duration":7.906,"bearings":[89,260,268],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,276],"duration":13.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.82,"geometry_index":16722,"location":[10.867837,48.065893]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,289],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.172,"geometry_index":16727,"location":[10.872493,48.065127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,290],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.949,"geometry_index":16728,"location":[10.872924,48.065025]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,298],"duration":10.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.855,"geometry_index":16730,"location":[10.875303,48.064234]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,309],"duration":48.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":45.969,"geometry_index":16734,"location":[10.878374,48.062827]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":5.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.527,"geometry_index":16753,"location":[10.897809,48.05701]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.900411,48.05692],"geometry_index":16758,"admin_index":5,"weight":8.137,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.582,"bearings":[90,114,272],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[87,258,267],"duration":6.957,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.602,"geometry_index":16762,"location":[10.903698,48.056982]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,263],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.863,"geometry_index":16766,"location":[10.906308,48.057146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":2.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.121,"geometry_index":16768,"location":[10.907038,48.05722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.363,"geometry_index":16769,"location":[10.907901,48.057319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,261],"duration":168.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":151.715,"geometry_index":16771,"location":[10.909274,48.057467]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,266],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.5,"geometry_index":16811,"location":[10.973117,48.05891]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,262],"duration":72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":63,"geometry_index":16812,"location":[10.973332,48.058929]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,253],"duration":6.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.719,"geometry_index":16828,"location":[10.999113,48.065433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.001567,48.065797],"geometry_index":16832,"admin_index":5,"weight":16.043,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.832,"bearings":[81,99,260],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[95,260,275],"duration":5.383,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.828,"geometry_index":16843,"location":[11.008404,48.065957]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,276],"duration":49.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":44.707,"geometry_index":16845,"location":[11.010473,48.065821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.918,"geometry_index":16862,"location":[11.028099,48.069501]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,231],"duration":39.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":36.82,"geometry_index":16863,"location":[11.028397,48.069662]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[86,245,263],"duration":5.426,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.012,"geometry_index":16882,"location":[11.042336,48.074191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,270],"duration":44.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":41.383,"geometry_index":16886,"location":[11.044417,48.074255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,281],"duration":3.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.688,"geometry_index":16904,"location":[11.060864,48.071163]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,278],"duration":4.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.859,"geometry_index":16907,"location":[11.062376,48.070992]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,273],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.723,"geometry_index":16910,"location":[11.063941,48.070905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":49.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":45.539,"geometry_index":16911,"location":[11.064287,48.070899]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":15.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.625,"geometry_index":16937,"location":[11.085942,48.073346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":5.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.301,"geometry_index":16946,"location":[11.092873,48.074281]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.095334,48.074774],"geometry_index":16949,"admin_index":5,"weight":2.812,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.051,"bearings":[76,87,254],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,257],"duration":0.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.367,"geometry_index":16951,"location":[11.096466,48.074957]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":10.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.855,"geometry_index":16952,"location":[11.096606,48.074977]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.234,"geometry_index":16961,"location":[11.100541,48.075339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,266],"duration":1.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.73,"geometry_index":16962,"location":[11.100638,48.075343]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.101337,48.075364],"geometry_index":16963,"admin_index":5,"weight":7.121,"is_urban":false,"turn_weight":1,"duration":6.625,"bearings":[88,260,267],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,268],"duration":12.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.551,"geometry_index":16966,"location":[11.103786,48.07541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,256],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.734,"geometry_index":16975,"location":[11.108475,48.075872]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":9.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.926,"geometry_index":16976,"location":[11.108763,48.075929]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[69,249],"duration":15.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.215,"geometry_index":16980,"location":[11.112179,48.076757]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,259],"duration":11.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.555,"geometry_index":16983,"location":[11.11745,48.077732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":5.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.645,"geometry_index":16986,"location":[11.121649,48.078172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,263],"duration":12.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.469,"geometry_index":16987,"location":[11.123504,48.078319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.457,"geometry_index":16990,"location":[11.128248,48.078556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":55.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":49.91,"geometry_index":16991,"location":[11.129227,48.0786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":7.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.793,"geometry_index":17011,"location":[11.148646,48.084083]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,259],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.484,"geometry_index":17015,"location":[11.151462,48.084613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.151656,48.084639],"geometry_index":17016,"admin_index":5,"weight":5.812,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.48,"bearings":[77,97,259],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.154089,48.084857],"geometry_index":17022,"admin_index":5,"weight":7.418,"is_urban":false,"turn_weight":1,"duration":7.137,"bearings":[87,253,266],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,277],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.777,"geometry_index":17028,"location":[11.156847,48.084788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,279],"duration":15.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.77,"geometry_index":17029,"location":[11.157185,48.084754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,294],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.824,"geometry_index":17036,"location":[11.162762,48.083425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,290],"duration":10.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.957,"geometry_index":17037,"location":[11.163075,48.083347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,276],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.625,"geometry_index":17043,"location":[11.167086,48.082696]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":10.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.723,"geometry_index":17044,"location":[11.167344,48.082681]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":5.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.227,"geometry_index":17051,"location":[11.171257,48.082821]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.173321,48.083118],"geometry_index":17053,"admin_index":5,"weight":10.707,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.918,"bearings":[76,93,257],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.177852,48.083847],"geometry_index":17055,"admin_index":5,"weight":6.863,"is_urban":false,"turn_weight":1,"duration":6.535,"bearings":[78,246,257],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,260],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.414,"geometry_index":17057,"location":[11.180241,48.084159]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.398,"geometry_index":17061,"location":[11.182885,48.084398]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":5.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.828,"geometry_index":17062,"location":[11.183043,48.084408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,268],"duration":34.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":31.309,"geometry_index":17064,"location":[11.185001,48.084512]},{"tunnel_name":"Tunnel Etterschlag","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[87,271],"duration":18.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.836,"geometry_index":17072,"location":[11.197737,48.084463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,259],"duration":6.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.219,"geometry_index":17078,"location":[11.204465,48.084983]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,256],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.336,"geometry_index":17079,"location":[11.206941,48.085386]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":41.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.309,"geometry_index":17081,"location":[11.208328,48.085607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,261],"duration":7.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.891,"geometry_index":17099,"location":[11.224111,48.086815]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.226947,48.087324],"geometry_index":17104,"admin_index":5,"weight":5.773,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.438,"bearings":[69,86,250],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.22915,48.087994],"geometry_index":17108,"admin_index":5,"weight":1.418,"is_urban":false,"turn_weight":1,"duration":0.469,"bearings":[62,232,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,242],"duration":5.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.004,"geometry_index":17109,"location":[11.229308,48.088049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":24.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.23,"geometry_index":17112,"location":[11.231113,48.08877]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,245],"duration":6.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.871,"geometry_index":17117,"location":[11.239155,48.091913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,251],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.223,"geometry_index":17119,"location":[11.241444,48.092507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":9.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.406,"geometry_index":17120,"location":[11.241532,48.092525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,264],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.848,"geometry_index":17125,"location":[11.244969,48.093009]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,267],"duration":50.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.926,"geometry_index":17126,"location":[11.245328,48.09302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,255],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.762,"geometry_index":17149,"location":[11.267755,48.092112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,251],"duration":23.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.738,"geometry_index":17150,"location":[11.268067,48.092182]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,274],"duration":4.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.551,"geometry_index":17161,"location":[11.277106,48.094083]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,283],"duration":4.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.613,"geometry_index":17163,"location":[11.278949,48.093841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,285],"duration":7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.824,"geometry_index":17164,"location":[11.28079,48.093505]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.283544,48.093102],"geometry_index":17169,"admin_index":5,"weight":3.438,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.547,"bearings":[98,114,280],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,277],"duration":4.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.359,"geometry_index":17171,"location":[11.284839,48.092988]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.286493,48.092908],"geometry_index":17173,"admin_index":5,"weight":3.098,"is_urban":false,"turn_weight":1,"duration":2.105,"bearings":[93,259,273],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,273],"duration":3.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.566,"geometry_index":17174,"location":[11.287298,48.092883]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,269],"duration":29.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.254,"geometry_index":17176,"location":[11.288676,48.092887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.953,"geometry_index":17184,"location":[11.299744,48.09415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,250],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.531,"geometry_index":17186,"location":[11.30047,48.094315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.738,"geometry_index":17188,"location":[11.301753,48.094658]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.367,"geometry_index":17189,"location":[11.30203,48.094731]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.302884,48.094973],"geometry_index":17190,"admin_index":5,"weight":13.848,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.211,"bearings":[68,80,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,261],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.16,"geometry_index":17199,"location":[11.308374,48.096144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.289,"geometry_index":17201,"location":[11.308886,48.096189]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,264],"duration":5.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.281,"geometry_index":17203,"location":[11.309425,48.096228]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.25,"geometry_index":17208,"location":[11.311623,48.096303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,271],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.148,"geometry_index":17212,"location":[11.313397,48.096301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,270],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.492,"geometry_index":17213,"location":[11.313871,48.0963]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,271],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.82,"geometry_index":17214,"location":[11.314078,48.096297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,270],"duration":4.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.477,"geometry_index":17215,"location":[11.314411,48.096296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,270],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.758,"geometry_index":17217,"location":[11.316299,48.096293]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":10.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.555,"geometry_index":17218,"location":[11.317037,48.096301]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.321146,48.096503],"geometry_index":17224,"admin_index":5,"weight":6.789,"is_urban":false,"turn_weight":0.5,"duration":6.809,"bearings":[81,255,262],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,258],"duration":4.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.594,"geometry_index":17228,"location":[11.323844,48.096848]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.918,"geometry_index":17229,"location":[11.325764,48.097224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":0.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.055,"geometry_index":17231,"location":[11.326153,48.097309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":7.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.719,"geometry_index":17232,"location":[11.326179,48.097315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,246],"duration":7.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.84,"geometry_index":17234,"location":[11.328969,48.098082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.062,"geometry_index":17236,"location":[11.331654,48.099072]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":15.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.992,"geometry_index":17237,"location":[11.332067,48.099245]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,225],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.719,"geometry_index":17241,"location":[11.337086,48.102051]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,222],"duration":20.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.711,"geometry_index":17242,"location":[11.337319,48.102223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":0.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":17246,"location":[11.342591,48.106774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":3.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.43,"geometry_index":17247,"location":[11.342824,48.106961]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,223],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.051,"geometry_index":17251,"location":[11.34396,48.107813]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.34541,48.108695],"geometry_index":17253,"admin_index":5,"weight":11.426,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.359,"bearings":[51,58,229],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,241],"duration":3.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.422,"geometry_index":17261,"location":[11.349613,48.110535]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.35096,48.110992],"geometry_index":17263,"admin_index":5,"weight":4.066,"is_urban":false,"turn_weight":1,"duration":3.234,"bearings":[66,237,243],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.258,"geometry_index":17264,"location":[11.352122,48.111345]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":31.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.586,"geometry_index":17265,"location":[11.352597,48.111486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":15.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.289,"geometry_index":17268,"location":[11.363888,48.114816]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.113,"geometry_index":17272,"location":[11.369489,48.11642]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,250],"duration":10.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.633,"geometry_index":17273,"location":[11.369908,48.116524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,269],"duration":12.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.887,"geometry_index":17278,"location":[11.373953,48.116981]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.378558,48.117005],"geometry_index":17280,"admin_index":5,"weight":7.52,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.734,"bearings":[89,99,270],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,269],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.969,"geometry_index":17281,"location":[11.381386,48.117026]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[84,259,267],"duration":0.934,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.863,"geometry_index":17282,"location":[11.383689,48.117102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,264],"duration":5.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.059,"geometry_index":17283,"location":[11.384006,48.117123]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,262],"duration":4.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.523,"geometry_index":17285,"location":[11.385906,48.117292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,259],"duration":22.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.91,"geometry_index":17287,"location":[11.387587,48.117484]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,245],"duration":7.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.91,"geometry_index":17293,"location":[11.39509,48.119084]},{"bearings":[53,235],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":17296,"location":[11.397316,48.119985]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"München-Zentrum"},{"type":"text","text":"/"},{"type":"text","text":"Salzburg"}],"type":"fork","modifier":"left","text":"München-Zentrum / Salzburg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"fork","modifier":"left","text":"A 96"},"distanceAlongGeometry":159415.219},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"München-Zentrum"},{"type":"text","text":"/"},{"type":"text","text":"Salzburg"}],"type":"fork","modifier":"left","text":"München-Zentrum / Salzburg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"fork","modifier":"left","text":"A 96"},"distanceAlongGeometry":1609.344}],"destinations":"A 96: München, Memmingen","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 96 ramp toward München/Memmingen.","modifier":"slight right","bearing_after":102,"bearing_before":74,"location":[9.735653,47.579267]},"speedLimitSign":"vienna","name":"","weight_typical":5322.27,"duration_typical":5734.395,"duration":5734.395,"distance":159415.219,"driving_side":"right","weight":5322.27,"mode":"driving","ref":"A 96; E 54","geometry":"eg_wyAi}eqQ|AwR`@qDz@wCvAwClBy@xHaG`B]hG{@|Fa@fGDjBT~F~AzFzAzEvB~BbB`EjDtBrEjA`Ev@|GHdH_ApI}ApF{C`GwCxB}B`AaJhD}P{AiSiBee@kFwf@}GgeC{]qu@mJ}u@{Gwn@iDq|@iBi\\DaVMem@jAkq@tC_\\nCeb@bEyc@zGqUbDuo@dMyWdGc]`JuLnDkj@pQgeA~^y|Afk@{\\lL}^tLyTzGuT`GqTdF_d@xIkWrEat@fI{n@`Ekn@tBmq@Diq@eA{h@}Bkv@}Fcs@aG_hBmRk^}Em}Bu\\ahAkRihAuSafAiU_fA}UwrAu\\iqAs_@gmBgl@ecAm]scAe^giCo_Acw@qX_x@mVsl@sOgm@yMox@cLeSgBsQcB}PuA{c@wByCO_Ug@kM]aAC_p@y@y{@s@ibAoCyiA}HqGaAmi@mIwUiEmZuF_e@wLwd@oOcv@gZw@[ibAoe@sqAmv@yeBuoAmfAa{@ycA_`Ac`AacAye@ym@od@io@yc@kp@ePqW{QaZai@}_A{I{PiPuZ_L{Sii@ahAch@ojAcoAwsC{Uoi@{D{Iq_BgrDkkAeeCsq@ysAqr@uqAexAqcCei@ux@gi@ow@g~@ioAo_AmlA}_@ic@wl@}q@wm@uo@y~@c_Aop@{m@}p@il@o}@{t@c~@wr@e}@mn@y}@yk@_z@wf@ih@{XaQkJsh@gVgi@{Tci@kRui@qP}j@aNiG{Act@wNu`A}Mk`AqJwoBkNodBoMww@gIyYaD_Z{Dwa@sGua@kHoMcCcH_BmS{EqSmF}WkHqQqFcYoJeh@oRoS{Iuo@sYcp@o]wwAu~@azBceB{hAw}@{v@qj@ck@e\\{k@iZk}@i`@a`Ak_@}bAqc@}_Agc@aiAwq@}[wTq[yUgm@wg@el@mj@os@{v@we@{k@cRuVyWk_@eSwZ}Rq[aGeKwCeF_Wad@wOeZ{\\or@cFkKwNa\\qb@eeAkI{TkOic@kJmX}Ngd@gR{o@cNki@kG{Uc[wvAcUgmAu[sxB_I_o@}Gss@oPm|BiEil@mC{b@uHemAeH_iAgIgvAeLcjBcM}|AeHmq@wIaq@aHeg@uLuv@{Myv@aQqy@{Ryx@kWw_AqY_aAcWg{@aVax@aLu]{rBw|GwVm}@mUa~@uXyrAiXsfBkJuz@oHwx@_HujAaE}mAiAyt@iAexCgA_fAwBo`AgDmx@uFix@sKcjAiNohAaM{u@kNau@wPkz@wRix@eXocA{YwaAuXyx@{Yuw@}Swg@eV}h@ePe]qNgYuH}Nyc@}w@yZgg@_O_U_NgSi`AirAyQsUiy@ofAyEoG_lAk_Bq`AavAc`Ak}AmV{c@kk@eeA}y@{bBk_AiqByBwEkmAejCqy@a}A_Ro\\ivA_}BgZea@ki@{u@qo@_x@mf@mj@evAexAw|BiyByx@}z@qy@aaAcgAaxAwvAipBy_AynAcQyTcPyRuQoTio@kr@oMoM_C_CaYkYe`Auz@sG}FkHiGeeAq{@wSiPaYyT_XqTqqA}iA}eAmhAinA{~AebAmyAmiF_mI_|BqqDsz@{sAq\\cj@cjAqjBw|@qyAuoA_`Co{@_fBsy@wfB}p@w}A_c@_kA_\\weAqWagAyPo|@oPofAqGke@gs@wpFq]w~BeT{oA_WapAo]w~Aoe@ahBm`@{pAad@mnAo_@c_A}s@mzAmy@ouA_~@_pAo~@sdA{v@{u@gd@i^k\\oVqj@o_@mgAcl@g|B{cAqm@a[ov@qg@{|@wx@oq@mw@wx@smA{b@wz@kRgc@g`@ydAqWe{@a`AwpDiQym@cNuc@yNuc@iMe^qKiYqKiXyQic@k^kv@mo@imAoy@cqAoa@mi@oRmUeRmTyQcSwRkSuXkWmv@qp@wiAaw@enAgp@kqAeh@yn@aRanAqVmoAyN}a@oD{o@_Gyy@{Fu\\eCiRqAsZwByc@wCuO{@_ZwAoZeBq_@}Acx@oDkSaAg`B}EidA_DgtBmDquBcBoDAoqBQivBdAuoBlBemAxBoUl@aqAxDmEPag@xA__BbHuk@tB}vD`PcuBfIavBfF{oAuBwcAgKccAkUci@iSy[qOwa@oUw_@wV{z@cu@}y@cbAwXgb@{Wac@ao@qnA{}@ivBk|@_xBgo@_sAs_@}q@iUu]a_@qf@sTeVmS}Tkh@cg@_w@wp@ez@qp@adAu}@_a@q`@aIaKeU_X}p@u_AaRi[i_@as@u\\yt@og@wtAkd@iuAwa@qpAcd@kkAif@}cAiyAmjCyb@e_AgFgLg\\{x@aIoWyMwd@wUu{@}[uiA{HcXcMs_@qVws@qAyD}i@ikAmeAgeBgtAujBslAqtAoy@gz@c[{YqZcYyWyTwWwSy^}X}ZoUcx@qj@gM{IwQiLyXqQaiAmr@or@ib@eTgMkW_PaoAqu@a\\{R_j@m\\wY}Pib@aXwf@_ZknBohAy|@_l@{~@uy@ud@ge@_QsSm]uc@m_@ak@ok@{bAqg@yiAwVgq@cU_s@cq@gcCgb@k~A}`@msAsYqw@i\\cv@oLuVoLuVm[ak@c^ij@w_@_h@{_@ud@_a@ab@sa@s_@ad@o]sn@{a@{n@w\\wf@mSqj@yQ}`A}V{hAeVcwAo\\cn@kQkk@eSow@s]ax@ob@kb@qXel@sb@wi@yc@an@wl@qv@u{@ms@m_Amt@whAcr@ujAkkBshDqNmWq`@ss@ix@{xAydCkqEgeCmpEq_AoeBq}@a~A}o@wiA_Vy^kRsY}M_SaLmPeA{Ag]mc@oUkX}O{QwKcLse@se@kbAw{@eXuQwWgQs_@{U_VsMm^aQqn@yXeKqDoPaGuKyD}iAi\\{hAyZ{MgEuQyFaa@gMaYaK_[oMqs@y]eNaHaoA}r@arAuv@cr@q_@kr@_^m`Aq`@amAgb@szAwa@_zBag@mtBog@yt@yUwl@uSgu@gZox@o_@o~@wg@o_A{k@cx@yh@eMkIqaBcgAk~HekFkpB_rA}{@yk@u{@sk@ciBumAcK_HmMwIktBovAwfAgw@e{A_kAacAkz@oaAg}@yH{Hm~Ac_BwNyNoaAsgAgaAskAmMsPe`@eg@sOaSqIyKgz@klAqR{Y_]eh@qVw`@kJ}NuCmFyYmi@o[el@yN_X}o@mlAmu@c`Bkv@kiBmr@_nBoQ}f@wLy]uUqv@kCwQ_B_I_Je_@_Iy^uCeMiD_QuH_]oEgQ{I_[sg@{~AgEaOcGuToH_[{Pqw@_EcTaQwaAyH}c@eEyWwHse@eFs[yIco@wHwi@yJaw@iDe[wEqa@yK}aAqB_TqEkg@cFwn@qEwl@cFir@}Bc^}Ccf@cEsz@sC_n@gCcp@iA}YiBun@WmKoAej@u@}[q@qa@w@em@g@eq@c@{v@S_z@J}k@Pgk@Xsm@^od@bGamHb@sp@v@q`Ap@}z@bLmmOt@wq@`@yz@LuQZu_@Zq`@JmMb@_}@?Cp@kl@fBq`CR{\\b@o`@\\iy@Dqq@GcKUuZMmP[uSuAct@wAmx@]kYW{SWcX]u^OaNHch@HaZVuYZyX|@ea@jAi`@dBic@`Bc`@dBab@fBw^`AmS`AmSnBmg@fCi~@^gSP}SR}c@AgTM}U]g`@k@}_@m@cVcAoXgBsb@wBs_@gCy\\mCy]gIcw@{Hwl@mH}e@yGw`@{FoZcGyYaHq[mGyYwMug@_Lma@s[ajA}k@goBik@cnBwAwEs{@{rCgx@ekCag@m}A_J{Xg`AguCqj@y`BmJsXat@gtB{i@u|Aml@{_Bcc@qgAeW_j@kM{W_LgTi\\gk@oVi_@uU_]kTgYoSaWwc@ih@uR{T}j@yp@sg@go@{k@aw@uWua@}Xaf@wUed@yUsj@mNm^sMs_@qOyf@cQkp@sQk{@yHib@wFg]qFo^wNykAmLqlAqHg{@{NwfBgWixCeRmsB}Cia@mH}}@_O{aBwJsjAeG}m@e@aFcB{QeFsn@mNyxAqHaw@yLggAcH{k@{Lox@{M}u@eTqcA_[cpAq[epA}K}f@kJsg@sLgy@mGyi@qEqk@{Doi@{B{l@m@}YUqPUm_@Mky@b@{z@~A}wA~@siA`AmlAI}hBaB_rAiC{bAqDa|@_F{z@{Eqq@uL_sAgS}lB{Vw}Bo]{}CoVk`CiLalAgK{fA{JwkA{I{iAoNywBmCoa@wLeoBy@qKcEso@gBsVcE{o@mG{~@cDqe@gMq}AwCy^{Eyj@qMmtAkl@_rF_Fu`@uHql@sByOgKqx@sHoh@st@qzEgYulBo\\}|BcmAqpJqd@ewDaaBy_Nee@_|DcImr@sGqj@}NcwAiFcj@aE_j@CU}Eqr@{Est@{Cko@uEolASaGgBqk@sBcjAsA{oAD_uBfAyaCbCq_CrDmaCnA_dAfA}j@xAgy@lCkeAdDopAz@y\\xHglChEytA|Eq}AlBuq@tCs~@hDwbAtBue@lCuh@tDwp@nF_s@zEki@dIqv@pHwm@~G_i@ti@o|DbH_k@xFai@bH}w@pFut@`Dgi@dCij@~As`@bCwu@h@sVxBgaA\\yN~Cq`BzHqsDlAkn@xD}fBz@eb@hT{{J`]k~PbD}|A|@ib@r@k^lF_eCVgOz@qb@x@cb@bBu}@dLmkFlBev@bFkeBbFmkAbJgwA|Mk~AfTecBfVwxAnX{uA~_@c|AvJq\\tIyY|_@qlAzo@iiBtq@}mBvh@ufBfR}v@lOcv@zNey@pLoy@tIkv@hIuz@fNcbC`C{fAfAaiAWqsAkB_iAcBog@eCib@cGy`AqF}q@_z@krIqEyd@cDk\\amDsd^gOaaBoJghAcJ_kAeQoaCeI_nA}Esz@eEus@wEm}@kFseA_Ok_EuMetEeGk{BcE}{AeGa{AcOuaC}JmfAyLokAuJiy@s]y{BiTsjAsT_eAcWsbAyVe`AoiAi~DkGqT_qAm|Ecz@ioD}r@mjDck@qcDsh@}eDcQuoAuO{lAuOeqAmM_nA_Uu|BkSkcCkLcdBiKwbBgIwiBqDemBa@_w@`@cw@tBoqAdCa`A|LaqCbPkqC~\\gbHrGw`BpFwxArDcvAxEuuB`DmdBrDs|CvBwkDMgwAe@mfFcGmwJiBgxCg@sr@Yii@Wav@S}~@Bme@Dky@p@grAd@}o@rAcbAt@yc@~CwtA`Bwn@tByn@dCyn@hC_n@fI{gBvCad@xDem@`J{kA`E}d@pEid@hMwhA|F_d@pGac@tNo_AvOm~@zMmu@~BmMtk@kwC|Qa~@|Qq~@~S__Alk@{hCdWcgA~FyVlJs`@rBqId_@s{Adc@aeBhs@enCfTcy@ziAosE`f@}vBnJ}d@~R_cA`Lil@zJ_l@vMst@dT}sAnGuc@~CiSlQmrAdNeeAfMweAbTulBvU}wBxb@aeE`VizB|OouAfr@_hFbCaQjU_aBrVacB~e@}yC~Y_qBlPcqAlLsgArI{iA~Ek~@tBwj@vAkn@~@_|@Iev@OcXi@y]y@m_@kAm^yAu[sCai@mD}f@yCg^qDi_@}AgOqFad@{DaY}G{e@qKwm@oFyYiGa\\gK_k@oMsr@kEiVsHwf@gGya@qQanBsEey@oCkx@yAejAJypAdA}pBJwi@C{c@oAeiAAa@wBus@i@iN_Bi\\mB_[uDai@uCkZqGkl@mK{w@{Isi@mNys@eDiPoC{McHwYqGkWyIe[wEwOqIeXuI_W_Xir@uOw^iVog@aTsa@aUs_@sOoVms@whAaa@{k@uY_e@iTm_@cQw[o_@sv@cR_c@_Wen@sK{YsNmb@iOif@iSos@qGuWeMuh@kOqs@mDqRoHgc@yDcUsLky@cF{a@eFse@yFam@eD_c@}Eys@uC{l@qBol@eBil@iFw|BuBa}@kDo}@eEyw@_G}w@}Hcw@cKmx@_TctAoUorAkUcpA}SeqAyKsu@iIos@mHsw@{Esu@_Egz@kBk{@w@sx@?}x@d@i{@NgU~B}jBbBijBMw}@aAc~@qCo`AgEe~@uI{kAiNaqA_Lez@iPkbAqEoXuKcp@kVszAwGyd@kGof@_Eu_@qDc`@aGw_AuDq`A}B}`A_Acc@i@cZcBox@{A_t@}Cm|@qE}{@wGm{@oImz@cKaw@qMsx@yPy{@o\\suAo^cuA}]cxA}Lgm@oKen@cIsl@qG}n@sEyn@mCon@_Bcw@Qyv@bAiaAvB_w@n@qSr@uSdCam@VoIvE_~@jJyqBbCwu@zBe~@d@s~@We_AoA_`AkCcz@wCuj@cFsv@kHay@iGmk@gFs`@sNw~@wGs_@aJae@kRuy@_Moe@}CsLqJa]gP{e@eI{TiKkYcRuc@i]ov@uByEmOuYmLuRcNcUuZaf@kOqSqJ{L{Wu\\_CmCeBqBcIiJq[y[iQ{P{\\mYub@_[au@cf@gOsIkl@_YyeAqg@cc@uScp@m[mXeNcZgPuYaQgYeQ{`@yXoZeUaS_Q_KeJkJsIkPePwO}OwNgPy_@kh@iKoPiPeYwPc]}R_c@yOea@_Pqe@qOii@kN_k@gLei@yJuh@sHyb@eHec@}Fca@mFu`@gDsWsIov@kFwi@kEqg@_BeUiGmcA_Bi^iAi\\gAmh@m@me@MkUMmf@?wHXqf@l@}b@vBiv@~@_XrEcy@lGgz@dL_iArPsiAjE}YhTyeAb[{lAxXwbAfRaj@dOo^tYsp@bi@ejAdgA_jCvX}v@nVmv@nc@gxAt^iwAt[s}AnPk}@|Fc]hTc_BfRqaBrJqkAzAgSlAgPnDgk@vCah@|Bom@|Bwp@`Aca@zA}z@@e@l@ej@Z}e@JkR@gg@Cme@_@cr@yAsjAQaPoA_h@wAes@mC{s@o@cOcBo\\eE}t@kC{e@{C}m@mDav@aAgg@_@_]E}`@Xwg@~@yb@zA{b@tC}g@vCya@jDk]nDyZ`Gab@vb@isCzL}dAhHabAlDqvA?saBgGsgFD}pBlGcbDlLygCtVktDtBal@bBip@Lyq@a@uq@iBul@gCyo@aG}v@aIkr@aj@ycEw\\{{Cw\\}yDiI}pAuHitAyLylDuV{`L{TcuGyI{hDeD{gBe@mLaH_rAeIynA_RcyB{XyaCkLk|@g_@mzBkOyw@oRm~@arAaqFyz@mrDyYgwA}^atBuWe_BoM{aAoOsrAqB_PeF}h@yD}c@eDad@qCmd@gDwq@iAo^w@oYgAcm@g@g^[m_@Qka@Ee_@Rei@`@cq@vA{p@~@ic@nE_|AtN{dF`AqhAQcf@iA{o@wBcm@kDml@_Ewg@cFag@}H}l@oGy`@gKcj@_Ogo@_Okj@uOse@_Rwg@e|@_xBa~@}yBaIsQwjBwsEwXws@{Km[{Ks]_Q{l@_Ka`@wKqe@kIa`@wIkd@iGc`@aH_d@uH_l@iFmf@eEib@aCwZoB_ZiBiYmB_\\aDwy@WyNkA{m@Uka@E_`@Lgp@l@kj@~Aup@tBmk@~B_d@tD}m@`Eye@xGyq@vG}i@zGog@pOydAf[qlBjc@u_CbUkpAbPagAjJwt@dFki@nBqYxAiTlCwe@lBma@`Byi@p@{ZXcZJsTXcq@C{aAo@{`As@sf@{@}e@sAsg@kBgg@}B}f@oC{f@aCu\\cCs\\eH{y@qLwhA_\\opCOkA_Q_}A{Eaf@mFsk@}B}WiCe[uH{iAoCuf@uBae@}Aab@kDcdA_F{fByBgv@iD{{@eDsr@wA}VkDqg@uD_e@wE}g@cEsa@mPkvAuJex@aJwu@aG{h@sF}l@yByWg@wGmBiWaB}WsB{]eBm]_Be_@oA{]w@s[k@aYUsPGaEi@uj@u@s{AUkd@OaVgAoz@{@sa@yA_c@kAoXmA{U}Coe@eBwT{ByVcDo]qB_QiFsa@_Jgn@qJsm@{T_tA_Ww}AaVg|B{LmlByQibDcF}oAq@eQeH}rBmBy`AgHutDcA_p@wAe|@aD_yB{F}uB_FgkAuI_hAqJsy@kJsn@qMar@yMqk@mQeo@mKy\\{e@yqAcp@s~Ack@gxAePie@qNqd@mL{a@_Muf@kMsl@_Pyz@eDaScKst@uJs|@yEai@oAuQs@cK_ByRoBe`@gBob@mA}`@YqMSaNU_UMch@FcXh@c`@t@oXdAoXbAcTtC{d@pDcb@bFgd@xFib@vIwf@hHe`@xd@aaCzCqRjMky@`K_~@|F_w@bBs\\pA}_@RwI\\cOb@iQPee@Ake@i@ud@uAkm@yBih@qAiWmC}b@cMa|Aoa@gtEaJ}dAeJioAiG_dAgAuS_Cye@sCgt@aCos@S{HcE}dBKmSi@ugAOqYHq}@?uJXstD|@avDJsc@l@e|EkA}eAcDw_B{Ee|AoC}o@oDkq@cGi{@eXwyCwImcAaBgQeRypB{OeqBmG}}@}C_o@{C{s@iCgw@cCmkAs@{g@c@a}AC_s@Huv@?ek@W}i@g@a_@{@{_@mAk\\mA}Wm@}KsF{v@aDm]oDy\\{Fcd@wD_WoCaQyFm[uHca@{Rax@mB{HsK}_@cI{XiU_u@gf@w|Aw|@cqCud@s}A{b@gaB{T{dAa\\kkBaGua@c@oDiIeq@wFsl@_Egg@wBih@mAmd@UmUCsw@z@yj@vB}g@bIefA|KebAjTy}A\\gC`I_y@`Eaq@tBgv@f@st@i@mt@eAmj@{GeaCy@qbAn@qdAzCcx@xIcmBnBsw@Her@yAkn@wDqm@mLwgAkCoRwNou@mM_j@{e@qhBqOqq@{Iyf@gHsg@yDsd@cEul@uA{k@[co@lAqu@|Eo|@dGut@~SarB|Fuo@tEmh@fCs\\bCca@dAgQ~Bch@bByf@nAif@nAa_Ap@iq@D}YMez@u@mm@}@}g@_HkdC}Gi|AoJ{{AuQafC}PoeBgHgn@uCyTsDqVoIwf@}Img@qCiPcNkt@qSoiAuIeh@sIui@yF}a@kEc_@{Dk_@{Ce`@gDeg@c@}Jy@mS_@qJa@mLk@gSWuJw@ma@i@ee@Uy[EgWCgKI{b@Jec@DqY@s\\D}K@ySDanA?}e@Ocm@Mke@e@yg@gA_y@}@cc@oB_p@iBoa@yBgd@yCqh@oEim@mEoj@oV_wBEWcDqVKs@kRimAq[a_BcZcoAwa@uvAyIyXue@qsAef@{hA_k@uiAot@qoAwIqMieA}wAsjCcyCmn@wt@aZu_@uJqMmQcVoTi\\QYwKwP{Umb@g_@ev@aIkQoNq]oLwZoN{`@kN_c@aJmYyJe]eUoz@cNyk@mLkf@aUsgAyGu\\ub@uxBkxAspHarAkuG_YivAa_@snB}]uhBgJml@oEeYeHop@kH{v@sDkq@yBs_AQm_@k@{aAC}{Ei@woDwC}nCi@yRgFyqAiB}b@{Eg_AcDyg@_Gk~@yTg`CaNgiAwLa{@iRyfAaUeeA{Oym@aQwl@kTqm@cQyb@iXmk@eS_]uRqY}\\cc@gY{\\y{@cu@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 5 miles.","announcement":"Continue for 5 miles.","distanceAlongGeometry":8773.816},{"ssmlAnnouncement":"In a quarter mile, Keep left toward Arena.","announcement":"In a quarter mile, Keep left toward Arena.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left toward Arena, Nürnberg.","announcement":"Keep left toward Arena, Nürnberg.","distanceAlongGeometry":100}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.401427,48.12319],"geometry_index":17303,"admin_index":5,"weight":11.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.328,"bearings":[26,35,211],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,215],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.426,"geometry_index":17308,"location":[11.403592,48.125753]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,218],"duration":8.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.582,"geometry_index":17310,"location":[11.403914,48.126026]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,232],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.227,"geometry_index":17314,"location":[11.406282,48.127573]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,233],"duration":13.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.441,"geometry_index":17316,"location":[11.40666,48.12776]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.411281,48.129259],"geometry_index":17323,"admin_index":5,"weight":8.473,"is_urban":false,"turn_weight":1.2,"duration":7.293,"bearings":[71,242,250],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,255],"duration":10.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.078,"geometry_index":17326,"location":[11.413873,48.129794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":8.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.82,"geometry_index":17331,"location":[11.417582,48.130229]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,270],"duration":4.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.031,"geometry_index":17335,"location":[11.420869,48.130327]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[99,265,276],"duration":3.07,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.137,"geometry_index":17337,"location":[11.422482,48.130243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,281],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.305,"geometry_index":17339,"location":[11.423602,48.130108]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":8.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.258,"geometry_index":17341,"location":[11.424252,48.129998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,294],"duration":3.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.062,"geometry_index":17344,"location":[11.426511,48.129433]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[118,296],"duration":11.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.078,"geometry_index":17345,"location":[11.427548,48.129089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,298],"duration":41.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":42.031,"geometry_index":17346,"location":[11.430847,48.127906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,278],"duration":8.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.312,"geometry_index":17363,"location":[11.443769,48.127852]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.446241,48.127263],"geometry_index":17367,"admin_index":5,"weight":35.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":34.82,"bearings":[117,125,296],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,278],"duration":2.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.543,"geometry_index":17380,"location":[11.456754,48.124471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,279],"duration":20.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.156,"geometry_index":17381,"location":[11.457583,48.124382]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.464494,48.123894],"geometry_index":17384,"admin_index":5,"weight":2.23,"is_urban":false,"turn_weight":1,"duration":1.219,"bearings":[94,270,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":5.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.621,"geometry_index":17385,"location":[11.464879,48.123877]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":3.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.906,"geometry_index":17386,"location":[11.466631,48.123786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":12.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.871,"geometry_index":17387,"location":[11.467852,48.123727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":6.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.352,"geometry_index":17390,"location":[11.471879,48.123593]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.473866,48.123557],"geometry_index":17391,"admin_index":5,"weight":37.355,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":35.582,"bearings":[91,106,272],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[89,263,268],"duration":6.332,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.797,"geometry_index":17395,"location":[11.485167,48.123638]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":13.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":14.121,"geometry_index":17396,"location":[11.486911,48.123662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":20.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":22.047,"geometry_index":17400,"location":[11.490529,48.123835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.148,"geometry_index":17405,"location":[11.495862,48.124833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":5.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.719,"geometry_index":17406,"location":[11.496124,48.124893]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.497338,48.125189],"geometry_index":17407,"admin_index":5,"weight":27.426,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":24.398,"bearings":[71,84,250],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,270],"duration":3.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.359,"geometry_index":17416,"location":[11.502432,48.125752]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,272],"duration":9.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":11.402,"geometry_index":17417,"location":[11.503233,48.125736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,278],"duration":9.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":10.969,"geometry_index":17419,"location":[11.505326,48.125574]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,282],"duration":5.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.027,"geometry_index":17421,"location":[11.507323,48.125329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,282],"duration":1.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.035,"geometry_index":17423,"location":[11.50842,48.125179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,280],"duration":4.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.375,"geometry_index":17424,"location":[11.508795,48.125133]},{"bearings":[100,277,283],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17425,"location":[11.509772,48.124987]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Arena"},{"type":"text","text":"/"},{"type":"text","text":"Nürnberg"}],"type":"fork","modifier":"left","text":"Arena / Nürnberg"},"distanceAlongGeometry":8807.149},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Arena"},{"type":"text","text":"/"},{"type":"text","text":"Nürnberg"}],"type":"fork","modifier":"left","text":"Arena / Nürnberg"},"distanceAlongGeometry":402.336}],"destinations":"A 96: München-Zentrum, Salzburg, Garmisch-Partenkirchen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 96/E 54 toward München-Zentrum/Salzburg/Garmisch-Partenkirchen.","modifier":"slight left","bearing_after":26,"bearing_before":31,"location":[11.401427,48.12319]},"speedLimitSign":"vienna","name":"","weight_typical":420.438,"duration_typical":396.836,"duration":396.836,"distance":8807.149,"driving_side":"right","weight":420.438,"mode":"driving","ref":"A 96; E 54","geometry":"krexzAel{vT{h@g^cc@e[u`@iZkY}WcUsVmKoMsCsDwm@}|@yV}e@mQq_@uFqMiC}GkFuMwHsTqKk]gJq\\uI{\\oMkl@uPk|@gPseAuJ}p@yI_s@}Ia{@eJaiAgGmbAIoBuCwq@wAac@kAce@kAct@i@ww@Amx@fAqy@~Agi@rB_a@xC_c@~AgQzBkUxHan@tJ_n@xLcn@nTy_A|hAemEjP_q@bKcl@`Isk@tEmg@lDsw@Vgn@{@wp@eEit@}BgV_CgTyXapByEah@kC}d@aB_y@@}a@p@yb@jDev@lGsp@jIuk@pFmZlIw_@hH}YrLqb@te@m}AxZ_cAhQat@lQy{@zF}\\bF{]nHur@dDqa@rCqb@zFkhAbEg}@pDyr@pK_bDxJakDbE{_B`@aWtDolBtBikAzAaz@nA}nA~AuoBfAe{BbAohEy@ghE_BkwDkAevBo@_lBa@a`AmAe`AoCobAyAk[sBoc@wFgq@aH}u@sJiz@i]icCwBkOoQ{jAcGgb@uFkk@kEmh@_Dsc@_Bwa@cAgYi@cZm@gh@Ci^^aq@hCqbAxDg~@~GymAhE_m@fGe{@b@kGzAmVbHa|@lHcmAnNeoB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":3882.465},{"ssmlAnnouncement":"In a quarter mile, Bear right toward Nymphenburger Straße.","announcement":"In a quarter mile, Bear right toward Nymphenburger Straße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right toward Nymphenburger Straße, Zentrum.","announcement":"Bear right toward Nymphenburger Straße, Zentrum.","distanceAlongGeometry":88.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.512817,48.124588],"geometry_index":17427,"admin_index":5,"weight":85.559,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":74.418,"bearings":[101,108,282],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"in":1,"bearings":[104,281],"duration":6.336,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":7.285,"geometry_index":17431,"location":[11.519358,48.1237]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[101,284],"duration":4.801,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":5.52,"geometry_index":17432,"location":[11.519931,48.123607]},{"entry":[true,false],"in":1,"bearings":[99,281],"duration":48.215,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":55.445,"geometry_index":17433,"location":[11.520406,48.123545]},{"entry":[true,false],"in":1,"bearings":[21,187],"duration":2.699,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":3.039,"geometry_index":17459,"location":[11.521541,48.125496]},{"entry":[false,true],"in":0,"bearings":[201,358],"duration":0.898,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":1,"weight":1.012,"geometry_index":17461,"location":[11.521638,48.125669]},{"entry":[true,false,false],"in":1,"bearings":[33,178,208],"duration":11.535,"turn_weight":11.75,"turn_duration":0.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":24.645,"geometry_index":17462,"location":[11.521634,48.125733]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[42,222],"duration":11.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":13.309,"geometry_index":17468,"location":[11.522935,48.126835]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[47,226],"duration":9.918,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":10.91,"geometry_index":17472,"location":[11.524444,48.127877]},{"entry":[true,true,false],"in":2,"bearings":[46,59,230],"duration":16.75,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":18.402,"geometry_index":17474,"location":[11.525815,48.128678]},{"entry":[true,false,false],"in":1,"bearings":[51,232,322],"duration":1.715,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.863,"geometry_index":17479,"location":[11.528277,48.13003]},{"entry":[true,false],"in":1,"bearings":[51,231],"duration":14.188,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":15.605,"geometry_index":17480,"location":[11.528529,48.130164]},{"entry":[true,false],"in":1,"bearings":[47,228],"duration":10.234,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":11.258,"geometry_index":17484,"location":[11.530595,48.131333]},{"entry":[true,false],"in":1,"bearings":[50,227],"duration":1.059,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.164,"geometry_index":17485,"location":[11.532036,48.132215]},{"entry":[true,false,false],"in":2,"bearings":[48,208,230],"duration":3.242,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":4.047,"geometry_index":17486,"location":[11.532192,48.132301]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[47,228],"duration":1.727,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.898,"geometry_index":17487,"location":[11.53262,48.132559]},{"entry":[true,false,false],"in":1,"bearings":[42,227,315],"duration":3.25,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":3.547,"geometry_index":17488,"location":[11.532846,48.132699]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[33,219],"duration":2.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":2.641,"geometry_index":17490,"location":[11.533221,48.132989]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[17,213],"duration":7.891,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":8.68,"geometry_index":17491,"location":[11.533456,48.133226]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.533837,48.134112],"geometry_index":17493,"admin_index":5,"weight":1.348,"is_urban":true,"mapbox_streets_v8":{"class":"trunk"},"duration":1.234,"bearings":[14,94,194],"out":0,"in":2,"turn_duration":0.007,"classes":["tunnel"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[12,194],"duration":17.156,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":18.875,"geometry_index":17494,"location":[11.533888,48.13425]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[8,188],"duration":11.336,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":12.469,"geometry_index":17498,"location":[11.534377,48.136237]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"trunk"},"location":[11.534548,48.13756],"geometry_index":17502,"admin_index":5,"weight":4.68,"is_urban":true,"duration":4.273,"bearings":[0,8,181],"out":0,"in":2,"turn_duration":0.021,"classes":["tunnel"],"entry":[true,true,false],"tunnel_name":"Trappentreutunnel"},{"entry":[false,true],"in":0,"bearings":[180,358],"duration":8.887,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":1,"weight":9.773,"geometry_index":17503,"location":[11.534548,48.137914]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":10.066,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":1,"weight":11.07,"geometry_index":17504,"location":[11.534495,48.138952]},{"entry":[true,false],"in":1,"bearings":[1,180],"duration":7.934,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":8.727,"geometry_index":17506,"location":[11.534457,48.140184]},{"entry":[true,false],"in":1,"bearings":[3,181],"duration":6.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":7.273,"geometry_index":17508,"location":[11.53449,48.141158]},{"entry":[true,false],"in":1,"bearings":[11,189],"duration":1.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.57,"geometry_index":17511,"location":[11.534597,48.14196]},{"entry":[true,false,false],"in":2,"bearings":[7,176,191],"duration":9.434,"turn_weight":0.75,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":11.336,"geometry_index":17512,"location":[11.534649,48.142131]},{"entry":[true,true,false],"in":2,"bearings":[0,18,187],"duration":4.703,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.03,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":5.258,"geometry_index":17514,"location":[11.534831,48.143155]},{"entry":[true,false],"in":1,"bearings":[6,186],"duration":23.055,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":25.938,"geometry_index":17517,"location":[11.534882,48.143705]},{"entry":[true,false],"in":1,"bearings":[30,213],"duration":15.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":17.836,"geometry_index":17529,"location":[11.535974,48.146261]},{"bearings":[5,184],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17537,"location":[11.53675,48.148025]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Nymphenburger Straße"},{"type":"text","text":"/"},{"type":"text","text":"Zentrum"}],"type":"turn","modifier":"slight right","text":"Nymphenburger Straße / Zentrum"},"distanceAlongGeometry":3902.465}],"destinations":"Arena, Nürnberg, München, Stadtmitte","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Arena/Nürnberg/München/Stadtmitte.","modifier":"slight left","bearing_after":101,"bearing_before":102,"location":[11.512817,48.124588]},"speedLimitSign":"vienna","name":"","weight_typical":413.961,"duration_typical":356.805,"duration":356.805,"distance":3902.465,"driving_side":"right","weight":413.961,"mode":"driving","ref":"A 96","geometry":"wihxzAa~t}TjE_p@nUc~CvMmiBzJg}AxDyb@zBu\\fBm\\Z_SEcNm@}NoAuJyBsIoBiFsCyEuCaDyCgCwD}A{C_AeD[gE@wDj@eD`BsDnCaGrIsI`QoHdMsDlD_E|BkEhAoC?iEM{C_AoC_AiEaC_CFqOcO{FsGoGsHiFaHaIeLqQuWcRaYsJcOuMcTuR_^gRg^y]mu@iHiMkHoOiLaWoNa\\_d@}dAkGwNiGqNcKuU{Xam@wYyk@cv@ayAkDwHcOwYwGcMoFuIsIwKyMuM{`@uNoTcGsGeBsEoA{j@iIy}@qN{IeAkQwBc\\kCuTgAoLIcU?{_AhByu@pAeUEmROmh@q@}]uAwJ}@mFaAuIgBu`@aEi]iD_NEqE]yKaA_NkAqQ_BcQ{A_TwBoNgCsJkDyHaDwEeCmGeEkJwGgGmFiN_N}M_LmLuH{M_H_MiEmKgCkK{AsJu@qOu@cLq@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn right onto Nymphenburger Straße.","announcement":"In a quarter mile, Turn right onto Nymphenburger Straße.","distanceAlongGeometry":359.009},{"ssmlAnnouncement":"Turn right onto Nymphenburger Straße.","announcement":"Turn right onto Nymphenburger Straße.","distanceAlongGeometry":83.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[0,10,185],"duration":13.059,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":1,"weight":8.809,"geometry_index":17538,"location":[11.536775,48.148235]},{"entry":[true,false,false],"in":2,"bearings":[4,180,189],"duration":2.68,"turn_weight":0.5,"turn_duration":0.026,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.484,"geometry_index":17544,"location":[11.536946,48.149007]},{"entry":[true,true,false],"in":2,"bearings":[4,96,184],"duration":8.535,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.094,"geometry_index":17546,"location":[11.536959,48.149133]},{"entry":[true,true,false],"in":2,"bearings":[4,94,184],"duration":6.391,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.68,"geometry_index":17547,"location":[11.536996,48.149533]},{"entry":[true,true,false],"in":2,"bearings":[4,94,184],"duration":11.625,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":13.57,"geometry_index":17548,"location":[11.537029,48.14988]},{"entry":[true,true,false],"in":2,"bearings":[5,108,185],"duration":2.5,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.305,"geometry_index":17551,"location":[11.537101,48.150513]},{"entry":[true,false],"in":1,"bearings":[2,185],"duration":29.355,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":33.523,"geometry_index":17552,"location":[11.537112,48.150593]},{"bearings":[0,110,183,291],"entry":[true,false,false,false],"in":2,"turn_weight":1,"lanes":[{"indications":["left","straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17556,"location":[11.537174,48.151546]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["left","straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Nymphenburger Straße"}],"type":"turn","modifier":"right","text":"Nymphenburger Straße"},"distanceAlongGeometry":380.009}],"destinations":"Nymphenburger Straße, Zentrum","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right toward Nymphenburger Straße/Zentrum.","modifier":"slight right","bearing_after":4,"bearing_before":5,"location":[11.536775,48.148235]},"speedLimitSign":"vienna","name":"Landshuter Allee","weight_typical":84.582,"duration_typical":76.938,"duration":76.938,"distance":380.009,"driving_side":"right","weight":84.582,"mode":"driving","geometry":"uovyzAmwc_UmKgBqCa@kIm@eC[cF}@qHcAgBKsCM_XiAuTaA{Nq@eH_@oM}@_DU}HM}Oi@oZs@eDOqDA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2056.375},{"ssmlAnnouncement":"In a quarter mile, Turn right onto Königsplatz.","announcement":"In a quarter mile, Turn right onto Königsplatz.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right onto Königsplatz.","announcement":"Turn right onto Königsplatz.","distanceAlongGeometry":96.19}],"intersections":[{"lanes":[{"indications":["left","straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[11.537175,48.151635],"geometry_index":17557,"admin_index":5,"weight":8.648,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":3.248,"turn_weight":7,"duration":4.715,"bearings":[0,100,180,289],"out":1,"in":2,"entry":[true,true,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[98,180,280,358],"duration":8.418,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.449,"geometry_index":17559,"location":[11.537321,48.151617]},{"entry":[true,false,true],"in":1,"bearings":[107,275,297],"duration":6.898,"turn_weight":0.75,"turn_duration":0.015,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.492,"geometry_index":17564,"location":[11.538158,48.151531]},{"entry":[true,true,false],"in":2,"bearings":[106,196,287],"duration":3.121,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.992,"geometry_index":17566,"location":[11.538994,48.151358]},{"entry":[true,true,false,false],"in":3,"bearings":[18,106,197,286],"duration":12.172,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":14.688,"geometry_index":17567,"location":[11.539323,48.151297]},{"entry":[true,true,false],"in":2,"bearings":[106,197,286],"duration":8.258,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.781,"geometry_index":17568,"location":[11.540583,48.15105]},{"entry":[true,true,false],"in":2,"bearings":[106,199,286],"duration":0.836,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.434,"geometry_index":17569,"location":[11.541294,48.15091]},{"entry":[true,true,false,false],"in":3,"bearings":[18,107,191,286],"duration":4.758,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.348,"geometry_index":17570,"location":[11.541369,48.150896]},{"entry":[true,true,false],"in":2,"bearings":[107,196,287],"duration":9.07,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.695,"geometry_index":17572,"location":[11.541795,48.150807]},{"entry":[true,true,false],"in":2,"bearings":[18,107,287],"duration":4.848,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":5.945,"geometry_index":17573,"location":[11.542728,48.150613]},{"entry":[true,true,false],"in":2,"bearings":[106,196,287],"duration":5.492,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.656,"geometry_index":17574,"location":[11.543225,48.150511]},{"entry":[true,true,false],"in":2,"bearings":[14,106,286],"duration":10.375,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":12.164,"geometry_index":17575,"location":[11.543716,48.150419]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[11.544646,48.150245],"geometry_index":17577,"admin_index":5,"weight":15.113,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":14.281,"bearings":[17,107,204,286],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[15,106,287],"duration":5.746,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":7.086,"geometry_index":17578,"location":[11.545616,48.150043]},{"entry":[true,true,false],"in":2,"bearings":[106,194,286],"duration":3.605,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.641,"geometry_index":17579,"location":[11.546064,48.149955]},{"entry":[true,true,false],"in":2,"bearings":[15,108,286],"duration":2.406,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.262,"geometry_index":17580,"location":[11.54639,48.149891]},{"entry":[true,true,false],"in":2,"bearings":[106,199,288],"duration":1.672,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.398,"geometry_index":17582,"location":[11.546622,48.149841]},{"entry":[false,true,false,false],"in":3,"bearings":[17,106,196,286],"duration":2.707,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":4.105,"geometry_index":17583,"location":[11.546764,48.149813]},{"entry":[true,true,false],"in":2,"bearings":[13,107,286],"duration":0.406,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.961,"geometry_index":17585,"location":[11.546993,48.149769]},{"entry":[true,true,false],"in":2,"bearings":[15,106,287],"duration":11.473,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":13.672,"geometry_index":17586,"location":[11.547032,48.149761]},{"entry":[false,true,true,true,false],"in":4,"bearings":[20,106,182,232,286],"duration":6.207,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":8.129,"geometry_index":17588,"location":[11.547934,48.149585]},{"entry":[true,false,false],"in":2,"bearings":[106,224,286],"duration":1.207,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.879,"geometry_index":17589,"location":[11.54833,48.149507]},{"entry":[true,true,false],"in":2,"bearings":[106,200,286],"duration":2.008,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.801,"geometry_index":17590,"location":[11.548402,48.149493]},{"entry":[true,true,false],"in":2,"bearings":[18,106,286],"duration":3.191,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":4.164,"geometry_index":17591,"location":[11.548529,48.149468]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.548832,48.149409],"geometry_index":17592,"admin_index":5,"weight":2.273,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":3.113,"bearings":[17,107,196,286],"out":1,"in":3,"entry":[false,true,false,false]},{"entry":[true,false,false],"in":2,"bearings":[106,201,287],"duration":1.305,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.98,"geometry_index":17593,"location":[11.548936,48.149388]},{"entry":[true,true,false],"in":2,"bearings":[14,107,286],"duration":5.793,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":7.152,"geometry_index":17594,"location":[11.549064,48.149363]},{"entry":[true,true,false],"in":2,"bearings":[18,107,287],"duration":4.25,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":5.379,"geometry_index":17596,"location":[11.549643,48.149247]},{"entry":[false,true,false,false],"in":3,"bearings":[17,106,197,287],"duration":8.898,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":11.211,"geometry_index":17597,"location":[11.550066,48.14916]},{"entry":[true,true,false],"in":2,"bearings":[107,199,286],"duration":5.047,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.297,"geometry_index":17598,"location":[11.551016,48.148973]},{"entry":[true,true,false],"in":2,"bearings":[107,191,287],"duration":3.742,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.793,"geometry_index":17599,"location":[11.551563,48.148863]},{"entry":[true,true,false],"in":2,"bearings":[107,193,287],"duration":6.391,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.84,"geometry_index":17600,"location":[11.551928,48.14879]},{"entry":[true,true,false],"in":2,"bearings":[18,107,287],"duration":8.469,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":10.23,"geometry_index":17601,"location":[11.552426,48.14869]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.553026,48.148566],"geometry_index":17602,"admin_index":5,"weight":2.926,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1.5,"duration":3.25,"bearings":[15,107,199,287],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[15,107,287],"duration":5.098,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.352,"geometry_index":17603,"location":[11.553159,48.148539]},{"entry":[true,true,false],"in":2,"bearings":[106,196,287],"duration":1.012,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.641,"geometry_index":17604,"location":[11.553694,48.148432]},{"entry":[false,true,false],"in":2,"bearings":[17,106,286],"duration":2.984,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.926,"geometry_index":17605,"location":[11.553793,48.148413]},{"entry":[true,true,false],"in":2,"bearings":[107,197,286],"duration":3.855,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.828,"geometry_index":17606,"location":[11.554108,48.148351]},{"entry":[true,true,false],"in":2,"bearings":[105,193,287],"duration":14.777,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":17.105,"geometry_index":17607,"location":[11.554505,48.148272]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.55557,48.148084],"geometry_index":17609,"admin_index":5,"weight":3.227,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":1,"duration":2,"bearings":[34,103,215,285],"out":1,"in":3,"entry":[false,true,false,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.555709,48.148063],"geometry_index":17610,"admin_index":5,"weight":3.605,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.879,"bearings":[27,103,208,283],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,100,201,283],"duration":1.895,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.105,"geometry_index":17611,"location":[11.555877,48.148038]},{"entry":[true,false],"in":1,"bearings":[100,280],"duration":7.633,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.086,"geometry_index":17613,"location":[11.556043,48.148018]},{"entry":[true,false],"in":1,"bearings":[103,280],"duration":6.91,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.277,"geometry_index":17614,"location":[11.556747,48.147933]},{"entry":[true,false,false],"in":2,"bearings":[103,191,283],"duration":0.871,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.473,"geometry_index":17615,"location":[11.557375,48.147836]},{"entry":[true,true,false],"in":2,"bearings":[103,189,283],"duration":1.16,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.797,"geometry_index":17616,"location":[11.557451,48.147824]},{"entry":[true,true,false],"in":2,"bearings":[13,106,283],"duration":1.359,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.02,"geometry_index":17617,"location":[11.557559,48.147808]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":4.949,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.07,"geometry_index":17618,"location":[11.557631,48.147794]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.557914,48.14774],"geometry_index":17619,"admin_index":5,"weight":14.422,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":0.5,"duration":12.383,"bearings":[106,197,286],"out":0,"in":2,"entry":[true,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.558631,48.147602],"geometry_index":17622,"admin_index":5,"weight":3.531,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":2.258,"bearings":[6,105,187,286],"out":1,"in":3,"entry":[false,true,false,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.558761,48.147579],"geometry_index":17623,"admin_index":5,"weight":8.93,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":7,"duration":1.723,"bearings":[7,104,193,285],"out":1,"in":3,"entry":[false,true,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[104,284],"duration":1.715,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.43,"geometry_index":17625,"location":[11.558898,48.147557]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.559027,48.147535],"geometry_index":17626,"admin_index":5,"weight":8.918,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.009,"turn_weight":7,"duration":1.715,"bearings":[109,182,284,356],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[111,173,289,351],"duration":4.555,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.117,"geometry_index":17628,"location":[11.559142,48.147509]},{"entry":[true,false,false],"in":2,"bearings":[112,258,291],"duration":5.504,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.68,"geometry_index":17631,"location":[11.559449,48.147432]},{"entry":[true,true,false],"in":2,"bearings":[23,112,292],"duration":0.957,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.566,"geometry_index":17632,"location":[11.559813,48.147336]},{"entry":[true,false,false],"in":1,"bearings":[112,292,336],"duration":4.934,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.043,"geometry_index":17633,"location":[11.559879,48.147318]},{"entry":[true,false],"in":1,"bearings":[113,292],"duration":4.168,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.191,"geometry_index":17634,"location":[11.560201,48.147233]},{"entry":[true,true,false],"in":2,"bearings":[113,204,293],"duration":0.945,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.555,"geometry_index":17635,"location":[11.560471,48.147156]},{"entry":[true,true,false],"in":2,"bearings":[112,206,293],"duration":13.559,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":15.746,"geometry_index":17636,"location":[11.560548,48.147134]},{"entry":[false,true,false,false],"in":3,"bearings":[23,114,200,292],"duration":2.336,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.621,"geometry_index":17637,"location":[11.56135,48.146918]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"secondary"},"location":[11.56148,48.146879],"geometry_index":17638,"admin_index":5,"weight":2.656,"is_urban":true,"traffic_signal":true,"turn_duration":2.022,"turn_weight":1,"duration":3.496,"bearings":[23,111,201,294],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[8,114,200,291],"duration":6.062,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":7.812,"geometry_index":17639,"location":[11.56159,48.146851]},{"entry":[true,false],"in":1,"bearings":[114,294],"duration":0.98,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.605,"geometry_index":17640,"location":[11.562047,48.146716]},{"entry":[true,true,false],"in":2,"bearings":[113,204,294],"duration":5.91,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.129,"geometry_index":17641,"location":[11.562121,48.146694]},{"entry":[true,true,false],"in":2,"bearings":[113,201,293],"duration":2.297,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.078,"geometry_index":17642,"location":[11.562571,48.146567]},{"entry":[false,true,false,false],"in":3,"bearings":[77,112,151,293],"duration":2.297,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.578,"geometry_index":17643,"location":[11.562748,48.146518]},{"entry":[true,true,false,false],"in":3,"bearings":[23,115,196,292],"duration":9.266,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":11.414,"geometry_index":17644,"location":[11.562926,48.146469]},{"bearings":[92,129,295],"entry":[false,true,false],"in":2,"turn_weight":6.5,"turn_duration":0.018,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":17645,"location":[11.563588,48.146265]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Königsplatz"}],"type":"turn","modifier":"right","text":"Königsplatz"},"distanceAlongGeometry":2073.041}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Nymphenburger Straße.","modifier":"right","bearing_after":100,"bearing_before":0,"location":[11.537175,48.151635]},"speedLimitSign":"vienna","name":"Nymphenburger Straße","weight_typical":432.91,"duration_typical":331.398,"duration":331.398,"distance":2073.041,"driving_side":"right","weight":432.91,"mode":"driving","geometry":"ed}yzAmpd_URqCNqCJwD\\cHh@_KpA{JDqLLiAjI}p@xBqSlNwmAvGmk@ZuCd@sDjC_TbKiy@jEa^vDu]nEya@jCiVrKs{@nD_[~BkSVkBjAcJv@{GPaBdAgJNmAfIgs@VcCzCwWZoCp@}FtB}Qh@oEp@_Gx@eHlD_ZlDmYtJkz@zEea@pCyUfEc^vFod@t@iGtEm`@d@eEzBuR|CyWnIiz@f@gFh@uGp@oITwDPsChD_k@`Egf@VwC^wEZoCjBuPdFad@TwBV_Cl@cG`@gEHiAj@aGHm@h@wDT}ARqAnBuL~DwUb@cChDcSxC{Oj@yCnLcq@lAcGv@{ElGq[j@sC|Fc[`BaJ`BcJvKkh@vA_E`AuBr@kA"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Enter Karolinenplatz and take the 7th exit onto Barer Straße.","announcement":"In a quarter mile, Enter Karolinenplatz and take the 7th exit onto Barer Straße.","distanceAlongGeometry":407.162},{"ssmlAnnouncement":"Enter Karolinenplatz and take the 7th exit onto Barer Straße.","announcement":"Enter Karolinenplatz and take the 7th exit onto Barer Straße.","distanceAlongGeometry":111.111}],"intersections":[{"mapbox_streets_v8":{"class":"secondary"},"location":[11.563781,48.146162],"geometry_index":17648,"admin_index":5,"weight":6.48,"is_urban":true,"traffic_signal":true,"turn_duration":2.1,"turn_weight":1,"duration":6.973,"bearings":[23,168,206,309],"out":1,"in":3,"entry":[false,true,false,false]},{"entry":[true,true,true,false],"in":3,"bearings":[20,157,194,349],"duration":2.242,"turn_weight":1,"turn_duration":0.041,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.477,"geometry_index":17652,"location":[11.563844,48.145962]},{"entry":[false,true,false,false],"in":3,"bearings":[18,119,191,337],"duration":11.48,"turn_weight":1,"turn_duration":0.28,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":13.602,"geometry_index":17654,"location":[11.563901,48.145874]},{"entry":[true,true,false],"in":2,"bearings":[31,73,250],"duration":5.59,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.777,"geometry_index":17664,"location":[11.564591,48.145831]},{"entry":[true,false,true],"in":1,"bearings":[113,273,315],"duration":25.863,"turn_weight":0.75,"turn_duration":0.026,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":29.168,"geometry_index":17668,"location":[11.564994,48.145863]},{"entry":[false,true,false,false],"in":3,"bearings":[25,113,204,293],"duration":1.699,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.863,"geometry_index":17670,"location":[11.566508,48.14544]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.566603,48.145413],"geometry_index":17671,"admin_index":5,"weight":8.188,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":7,"duration":3.086,"bearings":[24,113,204,293],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,113,201,293],"duration":1.625,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.781,"geometry_index":17672,"location":[11.566683,48.14539]},{"entry":[true,false,false,false],"in":2,"bearings":[113,251,293,335],"duration":4.867,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.348,"geometry_index":17673,"location":[11.566791,48.145359]},{"entry":[false,true,false],"in":2,"bearings":[23,113,293],"duration":3.426,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":4.262,"geometry_index":17674,"location":[11.567123,48.145265]},{"entry":[false,true,false],"in":2,"bearings":[23,113,293],"duration":5.406,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.441,"geometry_index":17675,"location":[11.567354,48.145199]},{"entry":[true,false,false],"in":2,"bearings":[113,206,293],"duration":0.906,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.488,"geometry_index":17676,"location":[11.567729,48.145094]},{"entry":[true,true,false],"in":2,"bearings":[21,113,293],"duration":10.086,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":11.59,"geometry_index":17677,"location":[11.567794,48.145076]},{"entry":[false,false,true,false,false],"in":4,"bearings":[28,77,148,200,293],"duration":3.035,"turn_weight":2,"turn_duration":0.072,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":2,"weight":5.262,"geometry_index":17678,"location":[11.568488,48.144881]},{"bearings":[110,151,293,328],"entry":[false,true,false,false],"in":3,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":17680,"location":[11.568586,48.144778]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Barer Straße"}],"degrees":270,"driving_side":"right","type":"roundabout","modifier":"right","text":"Barer Straße"},"distanceAlongGeometry":423.829}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Königsplatz.","modifier":"right","bearing_after":168,"bearing_before":129,"location":[11.563781,48.146162]},"speedLimitSign":"vienna","name":"Königsplatz","weight_typical":111.59,"duration_typical":87.988,"duration":87.988,"distance":423.829,"driving_side":"right","weight":111.59,"mode":"driving","geometry":"cnryzAiox`U~BgArAWpAMhBOtAk@xAeAn@cA~@kCj@eCT}B\\uED{DKkCW{Bi@aCq@sBgAuEc@cD@iDh@aGpDuRzS}iAt@}Dl@_D|@wEzDwSbCmMpEmVb@aCdKkj@dDaDf@a@tBcB"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Barer Straße. Then Turn right onto Prinz-Ludwig-Straße.","announcement":"Exit the roundabout onto Barer Straße. Then Turn right onto Prinz-Ludwig-Straße.","distanceAlongGeometry":109.722}],"intersections":[{"entry":[false,true,false],"in":2,"bearings":[8,179,331],"duration":0.891,"turn_weight":5.75,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":6.684,"geometry_index":17681,"location":[11.568636,48.144719]},{"entry":[true,true,false],"in":2,"bearings":[163,258,359],"duration":5.777,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.061,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":6.289,"geometry_index":17682,"location":[11.568637,48.144679]},{"entry":[true,true,false],"in":2,"bearings":[140,237,335],"duration":0.348,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.061,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":0.316,"geometry_index":17686,"location":[11.568767,48.144456]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[11.568801,48.144429],"geometry_index":17687,"admin_index":5,"weight":1.457,"is_urban":true,"mapbox_streets_v8":{"class":"roundabout"},"traffic_signal":true,"turn_duration":2.033,"duration":3.359,"bearings":[133,169,320],"out":0,"in":2,"entry":[true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,112,208,313],"duration":2.734,"turn_duration":0.083,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":2.918,"geometry_index":17689,"location":[11.568871,48.144386]},{"entry":[false,true,false,false],"in":3,"bearings":[23,99,203,292],"duration":1.18,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":1.25,"geometry_index":17691,"location":[11.569049,48.144337]},{"entry":[true,false,false],"in":2,"bearings":[87,241,279],"duration":2.043,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":2.199,"geometry_index":17693,"location":[11.569123,48.144329]},{"entry":[true,true,false],"in":2,"bearings":[66,122,267],"duration":3.199,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.09,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":3.422,"geometry_index":17695,"location":[11.569254,48.144334]},{"entry":[true,false,false],"in":2,"bearings":[49,184,246],"duration":0.848,"turn_duration":0.066,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":0.859,"geometry_index":17698,"location":[11.56949,48.144403]},{"entry":[true,true,false],"in":2,"bearings":[40,68,229],"duration":1.145,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.038,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":1.219,"geometry_index":17699,"location":[11.569543,48.144434]},{"entry":[true,false,false,false],"in":2,"bearings":[22,113,220,293],"duration":2.145,"turn_duration":0.066,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":2.285,"geometry_index":17700,"location":[11.569611,48.144489]},{"entry":[true,false,false,false],"in":2,"bearings":[8,111,202,293],"duration":0.602,"turn_duration":0.048,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":0.609,"geometry_index":17702,"location":[11.569689,48.144615]},{"entry":[false,false,true],"in":1,"bearings":[151,188,350],"duration":6.133,"turn_duration":0.071,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":2,"weight":6.668,"geometry_index":17703,"location":[11.569697,48.144653]},{"bearings":[44,155,318],"entry":[true,false,true],"in":1,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.066,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":2,"geometry_index":17708,"location":[11.569572,48.144918]}],"rotary_name":"Karolinenplatz","bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Prinz-Ludwig-Straße"}],"type":"turn","modifier":"right","text":"Prinz-Ludwig-Straße"},"primary":{"components":[{"type":"text","text":"Barer Straße"}],"degrees":270,"driving_side":"right","type":"roundabout","modifier":"right","text":"Barer Straße"},"distanceAlongGeometry":159.153}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":7,"instruction":"Enter Karolinenplatz and take the 7th exit onto Barer Straße.","modifier":"slight right","bearing_after":179,"bearing_before":151,"location":[11.568636,48.144719]},"speedLimitSign":"vienna","name":"Barer Straße","weight_typical":36.414,"duration_typical":30.684,"duration":30.684,"distance":159.153,"driving_side":"right","weight":36.414,"mode":"driving","geometry":"}soyzAw~aaUnAA|B[nBm@pBqA|AgBt@cAr@eA`@eAz@iDd@yDFs@F_B?cCIaC[gDm@}C_AqC}@iBmBgCyB_BaC{@kAOqBAqBVkBr@eBjA{AbBi@v@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Prinz-Ludwig-Straße. Then You will arrive at your destination.","announcement":"Turn right onto Prinz-Ludwig-Straße. Then You will arrive at your destination.","distanceAlongGeometry":109.722}],"intersections":[{"mapbox_streets_v8":{"class":"street"},"location":[11.569544,48.144939],"geometry_index":17709,"admin_index":5,"weight":9.148,"is_urban":true,"traffic_signal":true,"turn_duration":2.032,"turn_weight":6.425,"duration":4.508,"bearings":[138,308,340],"out":2,"in":0,"entry":[false,true,true]},{"entry":[false,false,false,true],"in":1,"bearings":[32,160,213,345],"duration":2.711,"turn_weight":2,"turn_duration":0.01,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":3,"weight":4.969,"geometry_index":17710,"location":[11.569494,48.145029]},{"entry":[true,false,false,true,false],"in":2,"bearings":[23,118,165,244,290],"duration":10.527,"turn_weight":2,"turn_duration":0.088,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":13.484,"geometry_index":17712,"location":[11.569453,48.145133]},{"entry":[true,false,false,false,false],"in":3,"bearings":[23,115,139,203,262],"duration":3.785,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":6.156,"geometry_index":17713,"location":[11.569762,48.145614]},{"bearings":[23,203,291],"entry":[true,false,true],"in":1,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17714,"location":[11.569874,48.145786]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Prinz-Ludwig-Straße"}],"type":"turn","modifier":"right","text":"Prinz-Ludwig-Straße"},"distanceAlongGeometry":117.315}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Barer Straße.","modifier":"slight right","bearing_after":340,"bearing_before":318,"location":[11.569544,48.144939]},"speedLimitSign":"vienna","name":"Barer Straße","weight_typical":37.637,"duration_typical":24.156,"duration":24.156,"distance":117.315,"driving_side":"right","weight":37.637,"mode":"driving","geometry":"uapyzAowcaUsDbBwBl@wAb@a]iRwI_F_GeD"},{"voiceInstructions":[{"ssmlAnnouncement":"You have arrived at your destination.","announcement":"You have arrived at your destination.","distanceAlongGeometry":69.444}],"intersections":[{"bearings":[23,114,203],"entry":[true,true,false],"in":2,"turn_weight":7,"turn_duration":2.208,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":17715,"location":[11.569957,48.145914]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"You will arrive at your destination"}],"type":"arrive","modifier":"straight","text":"You will arrive at your destination"},"distanceAlongGeometry":99.898},{"primary":{"components":[{"type":"text","text":"You have arrived at your destination"}],"type":"arrive","modifier":"straight","text":"You have arrived at your destination"},"distanceAlongGeometry":69.444}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Prinz-Ludwig-Straße.","modifier":"right","bearing_after":114,"bearing_before":23,"location":[11.569957,48.145914]},"speedLimitSign":"vienna","name":"Prinz-Ludwig-Straße","weight_typical":27.82,"duration_typical":21.137,"duration":21.137,"distance":99.898,"driving_side":"right","weight":27.82,"mode":"driving","geometry":"s~qyzAiqdaUJi@vUgjA"},{"voiceInstructions":[],"intersections":[{"bearings":[294],"entry":[true],"in":0,"admin_index":5,"geometry_index":17717,"location":[11.571182,48.145544]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"You have arrived at your destination.","bearing_after":0,"bearing_before":114,"location":[11.571182,48.145544]},"speedLimitSign":"vienna","name":"Prinz-Ludwig-Straße","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"ogqyzA{}faU??"}],"weight":41922.961,"duration":41742.895,"duration_typical":41742.895,"weight_typical":40072.766,"annotation":{"maxspeed":[{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,37,37,37,37,37,37,37,37,20,20,20,20,20,20,20,20,20,null,null,null,null,null,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,22,22,22,22,22,22,22,22,22,22,22,null,null,null,20,20,20,29,29,29,null,null,null,null,null,null,null,null,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,0,0,0,null,null,null,null,null,null,null,null,null,null,null,50,50,50,50,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,32,32,32,32,32,32,32,32,38,43,43,43,35,35,35,25,25,25,25,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,14,14,14,14,11,null,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,25,33,33,33,33,33,33,33,33,33,null,30,30,30,30,30,30,30,30,30,30,29,29,29,29,null,null,33,33,33,33,33,33,null,25,25,25,25,25,25,25,25,25,25,25,22,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,29,29,29,35,35,35,35,35,35,35,35,35,35,35,35,35,35,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,83,83,83,83,83,69,69,69,83,83,80,80,80,80,83,83,83,83,59,59,3,85,85,85,85,85,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,53,53,53,48,48,null,6,null,17,43,43,43,43,43,43,43,43,43,43,43,43,0,43,43,43,null,45,45,45,45,45,45,45,45,null,43,43,43,45,45,45,45,45,45,43,43,43,43,43,43,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,17,17,17,25,25,25,25,25,25,25,null,35,35,56,0,0,0,0,0,0,null,27,27,27,27,27,27,27,27,27,null,29,29,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,14,14,14,14,17,17,17,17,14,14,14,14,17,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,29,29,29,29,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,25,25,17,17,17,17,17,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,6,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,30,30,30,30,30,30,30,30,30,30,30,30,30,null,6,6,6,6,6,6,6,6,6,6,6,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,35,35,35,35,35,35,35,35,35,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,12,12,12,12,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,12,35,35,35,35,35,35,35,35,35,35,35,6,22,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,19,19,null,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,19,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,29,29,29,27,27,27,27,27,27,null,27,27,27,14,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,32,32,32,32,17,43,43,43,43,43,43,43,43,43,43,43,43,35,35,35,35,35,35,35,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,14,6,6,6,null,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,12,6,6,6,6,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,35,35,35,35,35,35,35,35,35,35,27,27,27,27,27,27,27,27,27,17,0,0,0,0,0,0,20,22,22,22,37,37,37,37,37,37,37,37,37,37,37,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,37,37,37,37,37,37,37,37,37,37,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,11,11,11,11,11,11,14,14,17,17,17,17,17,17,17,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,41,41,41,25,25,25,25,25,25,25,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,0,0,0,0,0,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,27,27,27,27,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,11,11,11,11,11,11,11,11,11,11,11,null,null,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,48,48,48,48,48,48,48,48,48,48,48,48,48,null,35,35,35,35,35,35,35,null,null,null,null,null,27,27,27,27,24,24,24,24,24,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,27,27,27,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,66,66,66,66,66,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,37,37,37,37,37,37,37,37,37,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,32,32,32,12,12,null,null,null,0,32,32,37,37,37,37,37,37,37,37,37,37,37,25,25,null,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,20,20,29,null,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,12,12,12,12,12,null,12,12,12,12,12,12,12,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,null,8,8,0,0,0,null,12,12,12,12,12,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,null,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,6,6,6,6,null,null,null,43,43,43,43,43,43,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,20,20,20,20,20,20,20,20,20,20,null,null,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,null,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,6,6,6,6,6,6,6,6,22,22,22,22,22,22,22,22,22,22,22,22,22,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,46,46,46,46,46,46,46,46,46,46,46,46,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,14,14,14,14,14,14,14,14,14,14,null,null,null,null,46,46,46,46,46,46,46,46,46,46,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,null,0,0,0,0,0,null,6,6,null,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,12,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,32,32,32,32,32,32,32,32,32,32,33,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,null,null,50,50,50,50,50,50,50,50,50,50,50,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,null,null,0,0,0,0,0,0,null,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,11,11,11,6,22,22,22,27,27,27,27,27,27,27,27,30,30,30,30,30,30,30,30,30,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,46,46,46,46,46,46,46,46,46,46,46,46,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,null,null,null,null,null,50,50,50,50,50,50,50,50,50,50,50,50,20,20,20,20,20,20,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,null,null,0,0,null,null,null,0,0,0,0,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,37,37,37,37,37,37,37,37,37,37,37,null,38,38,38,38,38,38,38,38,38,38,6,6,6,6,6,6,6,6,6,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,6,6,0,null,null,32,32,32,32,32,32,22,22,22,22,22,22,22,22,30,30,30,30,35,35,35,35,35,38,38,38,38,38,38,38,38,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,12,12,12,20,20,20,20,20,20,20,12,null,17,17,17,17,17,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,11,11,11,11,11,11,11,11,11,11,11,20,20,20,12,12,12,12,12,12,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,null,6,6,6,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,12,12,19,19,19,19,19,16,16,0,0,0,0,0,0,0,0,0,null,19,19,19,19,19,19,19,12,12,12,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,35,35,35,35,null,19,19,19,19,19,null,6,6,6,6,6,6,null,6,6,38,38,38,38,38,38,38,0,null,33,33,33,0,24,0,null,35,35,35,6,40,40,40,40,40,40,40,40,40,40,40,19,40,40,40,40,40,27,41,41,41,41,41,41,41,null,null,0,0,0,0,11,11,11,0,40,40,40,null,null,null,38,38,25,25,null,20,20,20,37,37,37,37,37,40,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,20,25,25,25,25,25,25,25,20,20,24,24,null,null,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,14,14,null,null,0,0,0,3,3,3,3,9,9,9,9,9,9,9,9,9,9,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,6,6,6,6,6,6,6,6,6,null,null,null,0,0,6,6,6,6,6,6,9,9,null,null,9,9,9,9,9,9,9,null,null,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,1,1,1,1,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,50,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,37,27,0,0,0,0,0,0,0,0,0,null,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,41,41,41,41,3,3,3,3,3,3,3,3,3,3,3,3,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,12,12,12,12,0,0,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,12,12,12,12,12,12,12,12,12,12,12,12,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,50,50,50,50,50,50,32,32,32,32,32,32,32,22,0,0,0,0,0,0,0,0,0,0,0,9,9,null,22,22,17,17,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,0,0,null,20,20,8,8,8,8,8,8,8,8,null,null,null,null,null,null,8,8,8,8,8,8,8,null,null,null,8,8,8,8,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,0,0,0,null,null,null,null,null,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,8,8,8,8,8,null,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,8,8,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,14,14,14,14,14,14,null,22,22,22,22,22,22,22,22,null,17,17,17,17,17,17,25,null,27,null,8,8,8,8,8,8,8,8,8,8,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,null,null,null,null,null,null,null,null,null,11,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,27,27,27,27,null,30,30,30,30,30,30,30,30,null,0,8,8,8,null,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,54,54,54,54,54,54,54,54,54,54,54,54,54,null,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,8,8,8,22,22,22,22,22,22,22,22,22,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,null,null,null,null,null,null,null,38,38,38,null,null,38,38,38,38,38,38,null,0,0,0,0,0,0,0,0,0,null,33,33,33,33,33,33,33,30,30,null,null,32,32,null,0,0,0,0,0,null,17,17,17,17,17,17,17,17,25,25,25,25,25,25,25,25,25,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,null,27,27,27,27,27,27,38,null,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,null,0,0,0,22,22,22,22,22,22,22,22,22,null,null,null,null,null,null,19,19,19,19,19,19,19,19,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,null,null,null,null,22,22,22,22,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,null,null,19,19,19,19,19,19,19,19,11,11,0,0,1,1,1,1,1,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,3,3,3,3,null,null,null,null,1,1,1,1,1,1,1,1,0,0,0,14,14,14,14,14,14,14,50,50,45,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,14,14,14,14,14,14,14,14,14,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,24,24,24,24,24,24,24,24,24,24,33,33,33,33,33,33,33,33,33,33,33,33,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,20,20,20,20,20,20,20,20,20,20,38,38,38,38,35,35,35,35,35,35,35,35,32,32,32,32,32,32,32,30,30,30,30,30,30,30,30,30,null,17,17,null,null,27,29,29,29,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,null,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,20,20,20,20,20,20,20,20,20,30,29,null,27,27,27,27,27,25,null,null,null,null,null,null,null,8,8,8,8,null,14,null,null,17,17,17,17,17,17,17,17,17,17,17,17,null,43,43,43,43,43,43,43,43,43,43,43,43,43,38,54,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,50,37,37,37,37,37,37,37,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,null,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,20,20,20,20,25,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,8,null,0,0,null,null,29,29,29,29,29,29,29,29,29,29,29,29,29,27,27,null,37,37,37,37,null,40,27,27,27,27,27,27,27,27,27,4,4,4,4,4,32,32,32,32,32,32,33,33,37,37,37,37,35,35,null,null,null,35,35,35,35,32,32,32,32,32,24,24,24,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,40,40,40,40,40,40,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,14,14,14,9,9,9,9,9,null,null,null,null,27,27,27,27,null,null,0,0,0,0,null,null,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,null,20,20,20,20,20,20,20,20,20,20,25,24,24,24,24,24,24,24,null,14,14,14,14,14,14,8,8,8,8,8,8,8,8,null,0,0,null,null,null,null,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,null,null,null,48,48,59,59,59,59,59,59,59,59,59,59,59,59,null,64,64,64,64,64,64,64,64,64,64,64,19,19,19,19,null,null,12,null,null,null,null,9,9,9,9,14,14,14,14,14,14,14,14,25,25,25,25,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,4,null,8,8,8,8,8,8,8,8,29,29,29,29,29,29,4,4,4,4,4,6,6,6,6,1,1,1,1,1,1,1,1,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,35,4,4,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,6,6,6,6,6,6,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,null,null,null,11,11,11,11,11,11,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,null,12,12,12,12,null,8,8,8,8,8,8,8,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,4,4,4,4,4,4,4,4,null,8,8,8,8,8,8,35,35,35,35,35,35,35,35,35,35,35,null,null,40,40,40,40,40,40,40,40,40,null,null,null,null,null,null,38,38,38,38,38,38,38,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,0,0,0,0,0,6,6,null,40,40,40,54,54,54,null,48,48,48,48,48,43,43,43,43,null,54,54,46,46,46,46,46,46,58,51,51,51,51,51,37,37,37,37,37,37,37,17,17,17,29,29,29,30,30,null,22,22,null,24,30,33,33,33,33,null,null,37,37,null,null,33,33,33,33,33,22,22,22,27,20,25,25,25,33,33,33,33,33,33,33,33,33,33,33,null,46,38,38,38,29,29,29,null,59,59,59,59,59,14,1,1,1,1,35,null,null,null,null,null,24,24,17,17,17,17,17,17,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,29,29,29,29,29,29,29,29,29,29,29,30,30,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,30,null,null,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,32,32,32,32,32,38,38,38,38,38,38,37,37,37,37,35,35,35,35,35,35,32,32,32,29,29,27,27,27,27,35,35,35,35,35,35,35,35,35,35,35,35,35,32,32,32,32,32,32,32,32,null,33,33,33,33,33,33,33,33,33,33,27,27,null,38,38,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,83,83,83,35,35,35,25,25,25,25,25,null,9,9,null,8,8,8,8,null,null,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,null,0,0,0,0,0,0,null,null,null,38,38,38,38,38,38,38,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,41,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,37,37,37,37,37,37,37,37,37,37,37,37,37,32,32,32,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,37,37,25,37,37,37,37,null,null,null,null,null,null,null,null,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,38,35,35,35,35,35,35,35,35,35,35,35,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,37,37,37,37,37,37,37,37,37,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,38,38,38,38,null,37,37,37,33,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,33,33,33,33,33,33,38,38,null,43,43,43,43,43,43,43,43,43,43,43,30,30,30,30,30,30,30,30,null,40,40,27,27,24,24,24,14,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,0,0,0,0,20,20,20,29,29,29,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,33,33,33,33,0,12,12,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,null,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,43,43,43,43,43,43,43,43,43,43,null,41,41,41,41,41,41,41,41,41,41,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,45,45,45,45,45,45,45,45,41,41,41,41,41,41,69,69,69,69,69,null,0,0,0,0,0,0,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,null,12,12,12,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,27,27,27,27,27,27,27,27,null,33,33,33,33,25,25,25,33,33,33,33,33,33,33,35,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,35,35,35,35,35,35,null,38,38,38,38,38,38,38,38,38,33,33,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,40,40,40,40,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,32,32,32,32,32,32,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,null,27,41,41,41,41,41,41,41,41,41,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,null,null,null,46,46,46,46,null,48,48,48,48,null,46,46,46,46,null,51,51,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,null,null,22,22,22,22,22,22,22,12,12,12,12,12,12,12,12,12,12,12,12,25,25,20,20,20,20,20,20,20,33,25,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,16,16,16,16,16,16,16,16,16,16,16,16,16,6,0,0,0,17,30,30,30,30,30,30,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,14,14,14,14,14,14,14,14,14,14,14,14,66,66,66,66,66,66,66,66,66,66,66,66,14,14,14,14,14,38,38,38,38,38,38,38,38,38,38,38,null,38,62,62,62,62,62,62,62,62,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,9,null,null,12,12,6,6,0,0,0,8,8,null,null,null,null,null,null,null,null,null,null,0,0,null,null,17,17,17,17,11,6,null,0,null,6,6,6,6,6,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,11,11,11,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"speed":[4.8,5,5,5,5,3.4,3.3,2.8,5,5,5,5,5,5,5,5.5,5.8,5.8,5,5,5,5,5,5,5,5,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.5,5.5,5.5,5.5,9.7,4.4,5.6,5.6,5.6,3.6,3.6,3.6,3.6,6.2,6.3,6.3,6.3,6.3,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,4.3,4.3,3.3,3.3,3.3,3.3,3.3,3.9,3.9,3.9,5.6,5.6,5.5,5.5,5.5,5.5,5.5,6.1,6.1,6.1,6.1,6.1,4.7,6.2,6.2,7.8,8.1,5.7,9.1,7.2,7.2,9.4,9.4,7.5,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,13.8,13.8,13.8,13.8,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,11.2,11.2,11.2,11.2,11.2,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,12,12,12,12,12,12,12,12,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.3,13.1,13.1,13.1,13.1,17.2,17.2,17.2,17.2,17.2,17.2,17.2,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.6,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.5,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.4,19.4,23.5,23.5,24.7,23.9,23.9,23.9,24,24,24,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.2,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,26.3,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25,25,25,23.3,23.3,24.4,24.4,24.4,23.6,23.6,23.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,23.6,23.6,23.6,23.6,24,24,25,25,25,25,25,25,25,25,25,25,24.3,24.4,25.3,24.3,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.3,24.3,24.4,24.4,24.4,24.4,25.1,25.3,25.3,25.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.5,25.5,25.3,25.6,25.6,25.6,25.6,25.6,25.6,26,26,26,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.7,25.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,27.4,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.5,27.5,27.5,27.1,27.4,27.4,27.4,26.3,26.3,25.5,25.5,25.5,25.5,26,24.5,24.5,24.5,24.5,26.3,26.3,26.3,26.3,26.5,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,12.7,12.8,12.8,25.3,25.3,25.3,25.3,25.3,25.3,25.9,25.4,26.1,24.4,24.4,24.5,25,25,25,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.4,29.7,29.7,29.5,30.6,30.6,30.6,30.6,30.7,30.6,30.6,30.6,28.3,28.3,28.3,28.3,28.7,28.1,28.6,28.6,27.8,27.8,27.8,27.8,27.8,27.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,30,30,30,30.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,28.9,28.9,28.9,28.9,31.4,29.4,32,32,32,32,32,32,30.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30,30,30,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.5,32.2,32.2,32.2,32.1,32.3,30.8,30.5,30.5,30,30,29.9,28.6,28.6,28.6,21.5,21.1,21.1,21.1,8.3,8.2,4.8,16.6,16.7,16.7,16.7,16.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.8,30.8,30.9,30.7,30.9,31.9,32.2,31.5,32.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,33,33,33,32.5,33,33,33,33,33,33,33,33,32.3,32.8,32.8,32.8,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,33.2,33.3,33.3,33.3,33.3,33.3,33.3,33.2,33,33,33,33,33,33,33,33,33,19.4,19.4,19.4,19.4,19.4,19.4,19.4,33.1,33.1,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,32.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,34.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.7,31.3,32.7,32.6,32.9,32.9,33.1,32.9,33.3,32.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.6,33.6,33.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30.5,30.5,25,25,25,25,25,25,25,25,25,25.2,25,25,25,25,25,25,25,25,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,38.7,36.1,36.1,35.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,24.9,24.9,24.9,33.9,33.9,33.9,33.9,33.9,33.9,25,25,25,25,25,25,25,25.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32,31.5,32.5,33.6,33.6,33.6,33.6,33.6,33.6,33.4,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.5,32.7,32.7,33.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,32.4,33.3,33.3,32.2,33.6,33.6,33.6,33.6,33.6,33.6,33.8,33.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,32.2,32.2,32.2,32.2,33.3,33.3,33.3,33.4,33.9,33.9,33.9,33.9,34.1,32.5,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,34.4,33.9,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,39,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.2,32,32,32,32,31.7,32.2,32.2,32.2,32.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,34.2,32.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.9,37.1,32,32,32,32,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,31.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,33,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,34.4,36.3,36.3,36.2,31.1,31.1,31.1,31.1,31.1,36,36,36,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.3,31.9,31.9,31.9,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,32.2,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.7,32.2,32.2,32.4,31.5,31.9,31.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.8,32.8,33.3,33,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.4,32.2,32.2,30,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.7,36.1,36.1,36.1,36.1,36.3,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,32.7,32.8,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.6,32.5,32.5,32.5,32.5,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,32.6,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37,36.3,36.3,34.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.9,31.4,31.4,31.4,29.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,29.4,29.4,29.4,29.4,29.4,27.5,27.7,27.8,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,19.6,18.4,20,20,20,20,20,21.4,22.6,22.6,22.6,26.3,26.3,26.3,26.3,26.3,26.5,26.5,26.5,26.3,26.3,26.3,29.7,30.1,30.1,30.1,29.8,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,30.7,30.9,30.9,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.7,30.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30.5,30.5,30.5,25.1,25.1,25,25,25,25,25,25,25,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,30.9,29.8,30,30,30,30,30,30,30,30,30,30.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.9,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30.6,30.6,30.6,30.6,30.6,30.6,29.9,29.9,30.3,30.3,30.3,30.3,29.3,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.2,29.4,29.4,29.4,29.4,29.4,31,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.6,30.8,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,32.1,32.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.2,31.6,31.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36.1,31,25.7,25.7,25.6,24.7,25.1,25.1,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.8,16.9,16.9,23.4,23.4,23.4,25.5,25.4,25.4,25.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.1,27.1,27.5,27.5,28.2,27.4,27.4,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,26.9,26.9,26.9,26.9,27.4,27.4,27.7,27.7,26.4,26.4,26.4,27.4,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29,28.6,28.6,28.6,28.6,28.6,28.6,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.6,27.7,27,27,27,27,27,27,27,27,27,27,27,27,27,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,26.9,30.6,30.6,30.6,30.6,30.6,25,25,25,25.2,19.8,19.7,19.7,19.7,19.8,19.8,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,22.2,22.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,27.1,27.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.9,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,27.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.9,25.9,25.9,25.9,25.9,25.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,26.9,24.9,24.9,25.1,24.8,28.9,28.9,28.9,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,28.3,28.3,28.3,28.9,27,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,27,26.9,26.9,27,27,27,27,27,27,27,27,26.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23.9,23.9,22.5,22.5,22.5,24,22.5,22.5,23.8,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,22.7,22.7,21.7,21.4,21.3,21.3,23.5,23.3,23.3,23.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,25.3,24.2,24.2,23.9,23.9,23.9,23.9,23.9,23.9,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.7,24.7,24.7,24.7,24.7,24.7,24.8,24.7,24.7,24.2,24.5,24.5,24.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24.1,24.1,24.1,24.1,24.1,24.1,24.3,24.3,23.6,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.5,24.5,24.5,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,25.3,25.2,25.1,23.4,23.5,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,25.4,25.4,25.6,25.6,25.6,25.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,25.6,25.6,26.1,26.3,26.1,26.1,26.1,25.4,25.5,25.5,25.5,25.5,25.5,14.1,14.2,14.2,14.2,14.2,14.2,14.2,14.1,9.2,9.2,19.5,19.5,19.5,19.5,19.5,19.5,19.6,19.5,19.5,19.5,19.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30,30,30,30,30,30,30,30,29.7,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.2,31.2,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.3,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.2,32.5,32.5,32.5,33.8,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,35.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,33.1,32.5,32.5,32.5,32.5,32,31.8,31.4,32.2,32.2,32.2,32.2,32.2,32.2,31.6,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,28.8,30.3,30.8,30.8,30.8,30.8,30.8,31.5,31.5,32,32,32,32,31.7,30.3,30.3,30.3,30.3,30.3,24.9,24.9,24.9,25,25,25,25,25,25,25,25,35.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.4,32.8,32.8,32.8,32.4,33.1,33.1,33.1,33,32.5,32.5,32.5,32.5,32.1,32.1,33.1,33.1,33.1,33.1,33.1,32.5,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.6,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31,32,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.3,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.2,36.2,36.1,36.1,36.1,36.1,36.1,33,33,33,33,31.9,32.8,32.9,32.9,32.9,32.9,31.9,32.1,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,32.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.3,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.5,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,33.4,33.4,33.4,33.4,33,33,33,33,33,33,33,33,33,33,32.8,32.8,32.8,32.8,32.7,33.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.3,32.3,32.9,32.9,32.9,32.8,32.8,32.8,32.8,32.8,33.1,32.8,32.8,32.8,32.6,32.6,32.6,32.3,32.4,32.4,32.4,32.4,33.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,32.3,32.3,32.3,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32,32,32,30.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.5,31.5,31.5,31.5,31.3,30.9,30.9,30.9,30.9,30.9,31.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.7,30.7,30.7,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.3,29.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.1,29.1,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.8,28,28,28,28,28,27.8,27.8,34.9,28,28,28,26.7,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.1,28.1,28.1,28.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.9,35.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.7,36.2,36.2,36.2,36.2,36.2,36.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.7,36.1,35.8,35.8,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.1,32.1,32.1,32.3,29.4,29.4,29.4,29.4,29.4,29.3,29.3,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,32,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,30.6,30.6,30.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.3,29.6,29.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,29.1,29.1,29.3,29.3,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.4,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,22.2,22.2,23.4,10.8,10.9,10.9,10.3,10.3,18,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.3,19.9,19.5,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.5,31.6,28.4,28.4,28.4,28.4,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,30.3,28.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.7,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,28.9,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,28.3,28.3,28.3,28.3,28.3,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,28.3,28.3,27.9,27.9,26.7,27.3,27.3,27.3,27.1,27.2,27.2,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,28.3,28.3,28.8,28.1,28.1,28.1,28.1,28.1,28.1,28.5,28.5,28.5,28,28.3,27,27,27,27,27,27,27,27,26.9,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.1,28.1,28,28.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.3,28.7,28.7,28.4,28.8,28.8,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.9,29.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,28.7,27.7,27.7,27.7,27.7,27,27,27,27,27,27,27,27,27,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.6,30.2,24.7,24.7,24.7,24.7,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.9,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26.7,28.1,28.1,28.1,28.6,28.6,28.6,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.5,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,27.2,27.2,25.9,25.9,22.3,22.3,22.3,8.6,8.6,7.5,7.5,15.9,20.8,20.9,23.9,27,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,28.5,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,27.9,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36.1,27.2,27.2,26.8,24.6,25.4,26.3,26.4,26.4,26.4,26.4,26.4,28.3,28.3,28.2,28.2,28.2,28.3,28.3,28.3,28.6,28.2,26.2,22.2,22.2,22.2,31.6,30.6,31,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.1,29.1,28.9,28.9,28.9,29.3,29.3,29.1,29.1,29.1,29.7,28.7,29.1,30.3,29.5,29.5,29.5,29.3,29.5,28.8,27.9,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.7,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29,29,29,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.3,29.5,29.5,29.5,29.5,29.9,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,28.6,29.2,28.6,28.6,28.6,28.1,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,30,29.4,28,28.1,28.5,27.8,27.8,27.8,27.8,27.8,27.8,28,27.7,28.1,27.8,27.8,27.8,27.2,27.2,27.2,27.2,26.3,26.3,26.3,26.3,26.4,26.4,26.4,26.4,26.4,27,27.5,25.6,25.6,25.6,25.6,25.6,25.6,25.7,25.7,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,28,28,28,28,28.3,28.3,29.2,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,28.6,27.4,28,28.1,28.4,28.5,27.8,27.8,29.5,33.3,33.3,33.3,33.3,33.3,33.3,28.6,28.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,28.9,28.9,28.9,29.9,33.4,33.4,33.4,49.7,33.3,33.3,33.3,45.9,33.4,33.4,33.4,33.4,33.4,39.3,33.3,33.3,30.3,30.3,30.3,29.4,29.4,26,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,25.8,25.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,29.1,27.2,26.7,26.7,26.7,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.8,25.8,25.8,25.8,26.3,26.1,26.1,26.1,26.1,26.1,25.7,25.8,25.8,25.8,25.8,25.8,25.8,27.8,25.8,25.8,24.7,24.7,24.7,24.7,24.7,24.7,25,24,24.2,23.9,23.9,23.9,23.4,24.7,24.4,25.4,26.1,26.1,26.1,26.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.2,26.7,26.7,26.7,26.7,26.7,26.4,27,27,27,27,27,27,27,25.5,26.2,26.4,26.4,26.4,26.4,27,27,27,27.2,26.9,26.9,26.9,26.3,26.2,26.8,25.6,25.6,27,27,32.8,32.9,33.3,33.3,24.5,25.8,25.8,25.8,25.9,25.9,25.5,25.6,25.6,25.6,25.6,25.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.8,25,25,25,25,25,25,25,25,25,25,25,25,24.9,13.6,13.6,14.7,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,19.2,19.4,19.4,19.4,19.4,19.4,19.4,21.2,21.3,21.3,21,21.4,21.4,21.4,21.4,20.6,20.6,19.5,19.5,20.3,20.1,20.2,20,19.5,19.5,18.3,20.4,20,20,20,20,20,20,20,20,20,20.2,19.1,19.1,18,17.8,16.9,16.9,16.9,11.4,11.4,11.4,11.4,9.4,9.4,9.4,9.4,9.4,9.5,9.5,9.5,9.5,9.5,8.7,8.8,8.8,9,9,9,8.8,9,9,8.9,8.9,9,8.7,8.7,8.7,10.2,10.2,10.2,9.9,5.8,5.8,5.8,5.8,5.8,5.3,5.5,5.3,5.3,5.3,5.4,5.2,5.3,5.2,6.1,6.3,6.4,6.5,6.5,6.3,7.7,6.4,7.2,6.9,6.9,8.3,8.3,8.3,8.3,4.9,4.9,5,4.7,4.6,6.1,5.6,4.5,5.3,6.4,6.7,6.7,6.9,6.2,6.4,6.4,6.4,6.4,6.4,6.3,6.3,6.3,5.8,6.7,6.7,6.4,6.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,6.5,6.1,6.1,6.1,6.1,6.1,6.2,6.2,6.1,7.3,7,6.9,6.9,6.9,6.9,6.9,6.7,6.9,6.9,6.9,6.9,6.8,7.1,7.1,7.1,6.8,7.4,7.3,7.3,7.3,8,8,8,8,8,8,8,9.7,9.7,9.7,9.7,9.7,10.8,10.8,11.4,11.4,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,14.4,14.4,14.4,14.4,14.4,22.1,22.2,22.2,22.1,20.8,20.8,20.8,21.8,21.6,21.6,21.6,21.5,21.6,21.5,21.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,24.6,24.3,24.4,24.4,24.4,24.4,24.4,22.7,23.9,23.9,23.9,23.9,24.4,21.7,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,24.3,24.3,23.2,23.2,23.7,23.7,23.1,23.2,24.2,24.2,24.2,24.2,22.5,21.9,21.9,22,21.8,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,21.9,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.5,22.8,22.8,22.8,22.8,22.7,22.5,20,20.6,17.6,18.3,18.9,18.3,18.3,18.3,18.3,18.2,18.2,16.3,15.8,16.8,16.7,16.5,16.7,16.7,12.2,9,11.9,11.9,11.9,12.1,12.1,9.8,7.6,7.9,8.2,8,7,7,7,7,6.9,8.4,8,8.2,8.7,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8,8,8,8,8,8,8,8.6,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,7.2,7.2,7.2,7.2,7.3,7,7,7.3,7.3,7.3,7.1,7.3,7.2,7.2,7.2,7.2,7.1,7.1,7.1,7.1,7.2,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.5,13.9,13.9,13.9,13.9,13.8,13.6,14,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.7,13.7,14,14,14,13.8,13.8,16.1,14.2,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.8,13.8,13.8,13.8,13.8,13.8,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,18.7,18.7,18.7,18.7,18.7,18.7,18.7,18.7,18.7,18.7,18.7,18.7,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,19.3,19,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,19.5,18.6,18.5,18.5,18.6,16.1,16.1,16.2,16.8,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,17,17,17.5,22.7,22.7,22.7,22.7,22.7,22.2,22.2,22.8,22.8,22.8,22.8,22.7,22.7,22.7,22.7,22.7,22.7,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.2,21.9,23.1,22.3,23.4,23.4,24.1,24.1,24.4,24.3,23.8,23.8,23.6,24.6,23.6,23.9,23.9,24,24.3,23.5,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,23.8,24.2,24.2,24.2,24.2,24.2,24.2,24.1,24.1,24.1,24.1,24.1,22.7,22.7,23.2,22.5,22.5,22.5,22.4,22.4,22.8,22.8,23,23.2,23.1,22.7,22.7,22.7,22.7,21.7,21.6,20.8,20.8,20.8,20.8,19.6,19.6,19.6,16,16,16,16.2,16.2,16.2,16.2,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,11.8,11.8,11.8,15.2,15.2,15.2,15.2,14.9,14.9,14.9,14.9,14.9,14.7,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.3,15.3,13.3,13.5,13.5,13.5,13.5,13.5,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,10.8,10.8,10.8,10.8,10.8,10.8,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.3,12.3,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.1,13.1,13.1,13.4,13.4,13.4,13.4,13.7,13.9,13.9,13.7,13.7,28,28,28,28,28,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.6,19.6,19.6,19.6,19.2,18.7,18.7,18.7,18.1,18.8,18.6,18.6,18.6,19.1,19.1,19.7,18.7,19.1,19.1,19,19,21.3,19.1,19.1,19.1,19.1,19.1,19.1,7.4,20.1,18.8,18.6,18.6,19,19.5,19.3,18.4,18.4,18.7,18.6,18.4,18.4,18.4,18.8,18.1,18.1,17.4,17.4,18.5,18.5,18.5,18.5,18.5,18.5,18.4,18.4,18.4,18.4,18.4,18.6,18.1,18.8,17.6,17.6,17.7,17.7,17.7,17.7,17.8,17.8,17.8,17.6,18,17.9,17.9,18,18.5,18.5,18.5,18.8,18.6,18.6,18.6,18.6,18.6,18.6,19.4,19.4,19.4,19.4,19.6,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.8,19.8,19.8,19.8,19.8,19.8,21.3,19.7,19.7,19.7,19.7,19.7,19.7,19.2,19.6,20,20,20,19.4,19.4,19.4,19.4,19.6,19.4,19.4,19.2,19.2,18.3,17.8,17.8,18.6,18.6,19.1,19.6,19.6,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,19.3,19.5,19.5,19.5,19.5,18.1,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.2,18.8,18.8,18.8,18.8,18.8,19,19,19,18.5,18.5,18.3,19.1,19.1,19.4,19.3,19.3,19.5,19.5,19.5,19.5,19.5,19.6,19.6,19.8,19.8,20.4,20.4,21.6,21.6,21.5,21.7,21.7,21.7,21.7,21.2,21.2,21.2,23,23,23,23,22.9,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.7,22.7,22.8,22.7,22.7,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.1,22,21.9,21.9,21.4,21.4,21.4,21.4,21.4,20.6,20.6,20.6,20.4,20.1,20.1,21.4,21.4,21.4,21.4,20,20,20.1,20.1,19.9,20.2,20.2,20.2,20.4,20.4,19.3,19.8,19.8,19.8,19.8,19.8,19.8,20,20,20,20,20,20,20,20,20,20,19.6,20,20,20,20,20.9,19.8,19.8,20.8,20.8,20.8,20.8,23.3,23.3,23.3,23.4,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,22.5,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.6,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,21.7,21.7,21.7,20.9,20.9,21.9,21.9,21.9,21.9,21.9,22,22,22,22,22,22,22,22,22,21.9,21.9,21.4,21.4,21.5,21.5,21.9,27.8,27.8,27.8,27.8,27.8,27.6,27.6,27.8,27.8,27.8,27.8,27.9,27.8,27.7,27.7,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,19.6,19.6,19.5,19.5,19.5,19.5,19.5,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.4,19.4,19.4,19.4,19.4,19.4,20.2,20.2,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.1,19.8,19.8,19.6,19.6,19.6,19.3,19.7,21.8,20.9,20.9,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.7,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.1,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,17,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,10.5,11.1,11.1,11.1,11.1,11.1,10.8,10.9,10.9,11.2,10.9,10.9,10.6,10.6,11.1,11.1,10.3,10.5,10.2,9.5,9.5,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.9,11.9,19.9,19.9,20.2,19.9,20,20,20,20,20,20,22.6,21.9,21.9,21.9,21.9,22,22,22,22,22,22,22,22,22,22,22,22,21.8,21.4,21.4,21.4,21.4,21.4,20.8,20.8,20.8,20.8,20.8,20.7,20.7,20.7,20.5,19.8,19.6,19.6,19.9,19.3,19.7,19.9,19.9,20,20,20,20,20,20,19.9,19.9,19.8,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.8,18.8,15.3,15.3,15.3,15.3,15.3,15.3,15.8,15.3,15.3,15.3,15,15.2,15.2,9.5,11.7,11.7,11.7,11.7,11.7,11.8,11.8,22.5,22.5,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,20.1,20.1,20.3,20.3,20.3,20.3,20.3,20.3,21.9,21.9,21.9,22.8,22.2,22.2,22.2,22.2,22.5,22.1,22.2,22.2,21,21,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.2,21.2,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21,21.1,21,19.8,19.8,18.9,18.9,18.9,19.2,20.3,20.3,19.1,18.7,19,19.2,19.2,17.8,17.8,17.8,17.8,17.8,17.8,18.4,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,19,18.8,18.8,18.8,18.9,18.9,18.9,18.9,16,15.6,14.5,14.7,15.5,15.5,14.9,13.9,14,13.7,13.8,10.4,17.5,18.1,18.3,18.4,18.2,18,18.1,18.4,18.4,20,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19,18.9,16.8,17.7,17.3,17.3,17.2,17.3,17.3,17.4,15.4,17.2,19.7,19.1,19.1,19.3,18.7,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.1,18.1,18.1,18.1,18,18,18,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,17,17,17.1,17.1,17.3,13.8,12.3,15.7,16,15.9,18.5,18.6,18.6,18.6,18.6,18.8,18.4,18.4,18.7,17.6,18.1,18.7,17.9,18.1,18.1,16.8,17.2,17.2,17.2,16.6,16.6,16.6,16.5,16.2,16.2,16.6,16.7,16.7,16.7,16.7,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,16.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,18.2,18.2,18.1,18.1,18.1,18.1,15.5,15.6,16.9,16.9,15.9,16,16.1,16,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.7,18.7,18.7,19,18.7,18.8,18.4,18.4,17.8,18.2,15.3,15.6,15.5,15.5,15.5,15.5,15.5,15.3,6.6,6.6,5.6,5.6,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.7,6.7,8.6,8.6,9.7,9.7,9.8,14.1,14.1,14.1,14.1,14.2,15.2,16.8,17,17,16.9,16.9,16.9,16.9,16.9,17.1,9.5,9.5,9.5,9.5,10.1,11.2,11,11,11.6,11.6,11.6,11.6,11.6,11.6,11.6,11.6,12.1,12.1,12.1,12.9,12.9,12.9,12.9,12.9,12.9,12.5,25.4,25.4,27.2,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.9,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.2,29.2,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.3,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29,29.3,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,31.6,31.6,31.6,31.6,29.9,31.5,32,32,32,32,32,32,32,32,32,36.2,36.2,36.2,28.8,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.9,28.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.8,28.6,28.6,28.6,28.6,27.4,27.5,27.5,27.5,27.5,27.4,27.4,27.6,25,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.4,25.4,25.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.6,27.7,27.7,27.7,28,27.2,27.5,29,27.9,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.2,27.2,27.5,27.5,27.5,27.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,26.6,28.1,27.8,27.7,27.7,26.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27,27,27,28.3,27,27,26.7,26.6,23.6,23.6,21.1,21.7,24,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.4,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,18.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,19.9,20,20,20,20,20,20,20,20,20,20.1,21.3,19.5,20.3,20.3,20.3,20.3,20.3,20.3,18.7,20,20,21.1,21.1,21.1,21.5,23,22.8,22.8,22.8,18.5,19.9,21.7,19.5,22.2,22.2,22.5,22.2,22.2,22.2,22.2,22.2,22.3,22.2,22.2,22.2,18.4,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,16.8,16,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,16.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.7,33.7,33.2,33.5,22.5,22.5,22.5,23.6,22.9,22.9,22.9,23.2,22.6,23,23,23,23,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.4,22.5,22.5,22.5,22.5,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.2,23.2,23.2,21.8,21.8,21.8,21.5,19.2,19.2,20.4,20.4,20.8,20.7,20.8,20.8,20.8,20.8,20.8,20.8,20.8,16.4,20.8,20.8,20.8,21.4,21.4,21.4,27.7,27.7,27.7,27.9,17.7,17.6,17,16.9,16.9,16.9,16.9,17.5,16.9,16.9,16.9,13.4,13.4,13.4,13.4,13.6,13.1,13.1,13.1,13.1,13.1,13.1,15.4,15.4,16.2,16.2,16.1,16.1,16.7,16.7,16.9,16.9,17.6,15.6,15.6,15.6,15.6,16.3,16.3,16.3,16.3,16.5,17.2,17.2,17.2,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.8,14.8,14.8,14.8,15.9,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.8,14.8,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,15.3,15.3,15.3,15.3,15.3,15.3,13.9,13.9,13.8,13.8,13.8,15.3,15.3,15.4,15.2,15.2,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.2,15.2,17.8,17.8,17.8,17.8,17.7,18,17.9,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.7,17.7,17.8,17.8,17.8,17.8,17.8,17.8,17.7,17.7,17.7,17.7,17,17,17,17.7,17.7,17.7,17.7,17.7,17.3,17.2,17.2,18.6,18.3,18.3,18.2,18.2,24.8,18.2,17.5,17.5,17.5,17.5,16.7,16.7,18.6,18.6,18.6,18.6,18.6,18.7,20.2,20.2,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.9,19.3,18.6,18.6,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.1,17,19.5,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.1,19.4,19.4,19.4,19.4,19.4,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.3,18.6,18.6,18.6,18.6,18.6,18.6,18.6,17.7,17.7,17.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.8,19,17.8,17.8,17.8,17.8,17.8,17.8,19.6,19.6,19.7,19.7,19.7,19.7,19.7,19.7,20,19.1,19.1,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,15.1,15.1,15.2,15.2,15.2,15.1,15.3,15.3,15.3,15.3,15.3,14.3,14.3,14.3,13,13,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,12.7,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.3,8.3,8.3,8.3,6.1,6.1,5.8,6.1,6.1,6.1,5.7,5.3,5.3,5.3,5.3,8.2,8.2,8.3,8.3,8.3,8.3,8.2,8.2,6.1,6.1,6.1,5.6,6,5.8,5.8,6.6,6.6,6.6,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,7,6.6,7.2,7.6,10.1,10.3,10.3,10.3,10.3,10.3,10.3,10.2,14.5,14.5,14.5,14.5,14.5,14.4,13.9,13.9,13.9,13.8,13.8,12.2,12.2,12.2,12.2,14.5,14.5,14.5,14.5,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,12.9,14.2,14.2,14.2,14.2,14.2,11.9,11.9,11.9,11.9,11.9,13.2,11.9,11.9,10.9,10.9,10.9,10.2,10.8,10.3,11.3,11.3,11.3,14.8,14.8,14.9,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,15.4,15.4,15.4,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.7,10.8,11.4,11.4,11.4,11.4,10.9,10.9,9.7,9.7,9.7,9.7,9.7,9.8,9.8,9.2,9.2,9.2,9.3,9.3,9.5,9.8,9.8,10.3,10.3,10.4,10.6,10.5,10.5,12.5,12.2,12.2,11.8,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,11.9,12.2,12.2,11.7,11.4,11.1,11.1,9.4,9.4,9.4,9.4,9.5,9.5,5.3,5.6,5.6,20.8,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,24.7,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.7,22.5,22.5,22.5,22.5,22.7,22.7,22.8,22.8,22.8,22.8,22.8,24.4,23.9,23.9,23.9,23.9,23.9,23.3,23.3,23.3,23.3,23.3,23.4,23.4,24.2,23.6,23.6,23.6,23.6,23.6,23.5,23.5,23.7,23.3,23.4,20.8,20.8,16,16,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,12.5,12.5,12.5,12.5,12.5,12.5,12.5,11.9,11.9,12,12,11.9,10.9,10.9,11.4,11.4,11.4,11.4,11.4,11.5,11.1,10,10,10,10,10,10,13.7,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.4,13.7,14.1,14.1,14.2,14.2,14.2,14.2,14.1,14.3,14.3,14.2,13.8,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,13.3,13.3,13.3,13.3,13.3,12.5,12.5,12.5,12.5,12,10.3,10.3,10.3,9.2,9.2,10,10,10,9.2,9.2,9.4,9.5,10.8,12.2,12.2,12.2,14.2,14.2,14.2,14.7,16.1,16.1,16.1,16.1,16.1,16.4,16.4,16.4,16.4,15,13.6,13.6,13.1,13.1,13,13,13,13,13.2,22.2,22.2,22.2,22.2,22.2,20.9,20.9,20.7,20.7,20.7,21,21,21.7,21.7,21.7,21.7,21.8,21.8,20.3,20.3,19.3,19.8,19.8,18.7,19.2,21.1,17.5,17.5,17.5,17.5,17.5,17.6,18.6,18.7,19.3,20.4,20.3,20.5,20,20.4,20.4,20.3,20.3,20.3,20,20.1,20.5,20.5,21.1,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,19.9,15.8,19.7,21,21,20.5,21.1,21.1,20.6,15.6,15.6,15.6,15.6,15.6,11.1,13.6,13.6,13.6,13.6,16.6,17.8,17.8,17.8,17.8,17.8,19.2,19.2,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.7,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,19.5,19.5,19,20,20,20,20,20,20,20,20,19.9,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,19.9,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.2,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.8,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.1,20.3,20.3,20.3,20.3,20.3,20.3,20.3,18.7,18.6,19.2,19.2,19.1,19.7,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.5,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.3,19.4,19.4,19.4,19.4,19.4,17.8,18.1,18.1,18.1,18.1,18.6,18.9,18.9,18.9,18.9,18.6,18.6,18.6,18.6,18,18,17.5,17.5,17.5,17.2,17.2,18.4,18.4,18.4,18.8,18.8,18.8,18.6,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.5,18.3,18.3,18.2,18.3,18.3,18.3,18.3,18.3,18,17.5,17.5,17.5,17.5,17.5,17.6,17.6,17.3,17.5,17.6,18,18,17.3,18.4,18.4,18.6,18.6,18.6,19,18.6,18.6,18.6,18.6,18.6,18.6,19.2,19.2,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,16.4,16.4,16.4,14.8,13.8,15.1,14.3,10.3,10.3,10.3,9.3,10.6,9.8,9.8,9.8,10.4,10.8,10.8,9.5,7.6,7.6,7.6,7.6,10.5,10.5,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,10,10,10,10,10,10,10,10,10,10,27.6,27.4,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.8,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.1,28.6,28.6,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.4,28.3,28.3,28.3,28.3,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.1,28.1,28.1,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27,27,27,27,27,26.7,27.8,27.8,27.8,27.8,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,27.8,27.8,27.8,27.8,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.1,28.1,27.8,28.3,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.4,28.3,28.6,28,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.1,28.7,28.7,28.7,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.4,28.4,28.4,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.9,28.6,28.6,28.6,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,28.3,28.3,28.3,29.2,28.6,28.6,28.6,28.6,28.8,28.8,28.8,28.9,28.9,28.9,28.9,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.5,28.6,28.6,28.6,28.6,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.6,28.6,28.6,28.6,28.8,29.2,29,29,28.8,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.7,28.3,28.3,28.3,28.7,28.7,28.3,28.4,28.1,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,25.3,25.3,25.2,25.2,25.2,25.1,25.3,25.3,21.4,20.2,20.2,18.6,18.6,16.1,16.1,16.1,15.2,16.3,16.3,16.7,17.1,16.9,16.9,16.9,17.3,19.5,19.5,19.5,19.5,22.2,22.2,22.2,22.2,22.3,22.3,23.6,23.6,23.6,23.6,23.9,23.9,23.9,24.4,24.4,24.4,21,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.4,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,20,20,20,20,19.2,22.5,22.5,25.9,22.2,33.4,33.4,33.4,33.4,33.4,33.4,33.4,28.4,28.4,28.4,28.4,29,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.7,29,29,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.8,28,28,28,28.7,28.7,28.6,28.6,28.6,28.6,28.4,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,27,23.6,21.4,33.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,21.9,21.9,21.9,21.9,21.9,22,22,22,22,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.2,22.2,22.5,22.5,22.5,22.5,22.5,22.6,22.6,22.5,22.5,22.5,22.5,23.3,25.2,25.3,25.3,25.3,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,27.5,27.2,27.2,27.2,27.2,27.3,27.3,26.7,26.7,26.7,26.7,26.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,26.9,26.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.7,28.7,28.6,28.6,28.6,28.6,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,28,28,28,28.5,28.6,28.6,28.6,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,27.5,27.5,27.5,27.5,28.3,28.2,28.2,28,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.6,28.6,29,26.9,26.9,26.9,26.9,26.7,26.7,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,28.1,28.1,28.1,28.1,28,28,28,27.5,27.5,27.5,27.5,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,27.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.4,28,28,28,28,28,28,28,28,28,28,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.3,27.3,27.2,27.2,27.2,27.2,25,25,25,25,25.7,28.8,29,29,28.9,28.9,28.9,30,29,22.7,23.2,23.2,25.9,26.5,27,27,27.5,27.2,27.2,27.2,27.2,27.1,27.2,27.4,27.9,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.7,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.7,27.7,27.7,27.7,27.7,27.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.4,27.7,27.7,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,28,28,28.4,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,28,28,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.5,28.5,27,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.5,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.3,27.3,27.3,27.3,25.8,25.8,25.8,27,27,27,26.9,27.8,27.8,27.8,27.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.8,28.8,28.8,28.8,28.8,28.8,29.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.9,28.6,28.6,28.6,28.6,28.6,28.6,28.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,29.1,27.8,27.8,27.8,27.8,27.8,27.8,26.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,27,27,27.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,27.4,28,28,28,28,28,28.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.6,30,30,30,30,30,30,30,30,30,30,30,29.9,29.9,30,30,30,30,30,30,27.5,27.5,27.6,27.6,28.6,28.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.2,29.2,29.1,29.1,30,29.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.2,32.2,30.5,30.5,30.2,30.2,30.2,30.2,30.2,30.3,30.3,30.3,30.3,30,30.5,29.5,29.8,29.8,29.6,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30.7,30.7,34.9,30.9,30.9,30.9,30.9,31.6,31.4,31.4,31.4,31.4,32.2,30.8,30.8,30.8,30.8,31.8,33.4,33.4,33.4,33.4,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30.4,29.4,29.2,29.5,29.5,29.5,28.9,28.9,28.9,28.9,29.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.2,27.3,26,26.8,26.8,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,26.5,28,28,28,28,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,24.5,24.5,27.6,27.6,22.1,22.1,22.3,22.3,22.3,22.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.1,24.1,24.1,24.1,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,25.2,25,25,25,23.9,23.8,23.9,23.9,23.9,23.9,23.8,23.6,23.6,23.6,23.6,20.5,20.5,20.5,20.5,20.5,20.6,20.6,20.6,20.6,20.6,20.1,18.9,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.7,15.8,15.8,15.8,15.8,15.9,15.9,16,15.9,10.3,10.3,6.7,6.7,6.7,6.7,6.9,7.5,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.6,7.6,7.9,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.7,13.7,14.2,14.2,14.2,14.2,14.2,14.1,14.2,14.2,14.2,14.2,14.2,14.2,13.3,13.3,13.2,13.2,13.2,13,13,12.9,13.1,13.1,13.1,13.1,13,13,13,13,9.3,13,13.6,13.6,13.7,13.7,13.6,13.6,13.6,13.9,12.2,12.2,13.1,13.1,13.1,13,13,13,13,13,13,13,13,13,13,13,13,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.3,6.7,6.7,6.7,6.7,6.7,6.7,5.3,5.3,5.2,6.1,6.1,6.1,6.1,3.6,3.6,3.6,3.6,3.6,3.6,7.5,7.5,7.5,7.5,7.5,7.5,7.5,9.4,9.4,8.2,8,6.7,7,7,7,8,8,6.9,6.9,6.9,6.1,6.1,7,7.5,7.5,6.7,6.6,6.6,7.6,6.1,6.1,4.9,4.6,4.9,7.4,7.3,7.7,7.8,7.8,7.7,8.3,8.4,7.6,6.1,5.5,8.3,8.2,7.7,8.2,8,5.5,5.5,5.3,6.8,6.7,6.7,7,6.9,6.7,7.1,4.1,4.4,4.5,4.5,4.5,4.4,6.1,6.1,5.8,5.3,5.3,5.4,5.4,5.4,5.3,5.6,5.2,5.2,6.6,4.7,4.5,5.9,6.1,6.1,6.2,6.2,6.2,5.9,4.8,4.8,4.8,4.7,4.7,4.7,4.7,4.9,4.9,5,5,5,5,5,5,5,5,5,5,5.6,5.6,5.6,5.6,4.7,4.7,4.5,6,5.4,5.5,5.5,5.6,5.8,5.5,4.6,4.6,4.5,5.3,4.7,4.7,4.7,4.7,13.8,5.4,5.4,5.4,5.4,4.9,4.9,4.9,4.9,6.2,6.2,6.2,6.7,7.2,7.3,7.3,7.7,5.2,5.2,5.2,5.2,5.2,14.6,4.3,4.4,4.4,5.6,5.5,5.9,5.3,5.3],"distance":[10.4,3.3,3.6,57.5,26.9,8.1,32.9,17.3,9.8,12.7,12.8,20,6.2,21.2,6.1,25.6,7,5,3.1,5.1,4.2,4.6,6.8,18.9,6.8,8.1,5.9,29.8,10.5,14.8,8.6,6,9.6,25.9,12.9,9.5,14.9,14.5,65.2,43.7,30.6,83.9,12,16.8,36.7,1,7.2,13.7,4.4,3.2,1.1,26.8,16.2,2.7,4.4,3.1,49,7.5,8.3,9.8,9.1,16.2,133,2.5,1.4,12,8.6,1.8,9.7,1.2,64.8,6.2,11.2,9,42.9,13,11.4,47.6,7.5,73.4,6.2,3.4,10.3,10.9,3.5,51.2,19.4,5,74.3,11.1,39.3,54.4,33.3,1.6,21.5,1.2,9.3,5.9,40.7,70.4,7.8,4.2,4.6,4.5,4.7,17.1,4.9,3.7,3.6,3.7,3.7,5.1,5.2,6.3,5.8,3.4,45.8,11.7,8.4,4.8,28,4.4,4.4,3.8,3.5,3.7,3.1,3.3,6.4,5.4,22.1,77.6,27,11.3,10.8,9.4,16.8,11.3,5.3,7.5,7.7,7.4,20.9,15.3,20.4,16.7,15,27.2,23.8,20.6,31.8,170.2,53.8,35.1,21.4,35.7,32.8,24.7,26,20.3,17.8,15.4,42,29.7,21,13.3,14.4,13.5,10.7,6,4.6,58.4,82,14.7,15.8,166,276.7,184,95.7,477.4,54.3,57.7,19.8,11.3,8.4,30.1,16.6,32.7,16.9,12.7,29.3,49.5,42.7,63.7,49.1,24.5,22.5,13.4,19.7,13.4,15.1,11.4,14,26,89.6,25.9,28.9,33.5,51.9,76.1,16.9,16.7,29.6,19.1,30.4,25.2,25.5,20.3,21.7,17.3,20.3,26.7,32,29.9,41.9,37.9,6.5,12.3,21.9,22.1,18.7,19.4,27.4,25.9,39.3,39.1,28.8,29.2,229.1,35.1,1.6,53.3,39.4,25.6,38.8,29.5,61.7,46.7,33.1,13.5,121.4,13.4,78.4,9.4,14.3,16.4,20.3,15,27.5,34.1,24.4,24,14.9,24.3,21.9,25.9,21.2,35.6,32.1,37.1,36.6,42.4,110.7,25.1,13.2,15.1,15.8,11.5,12,14.6,11.6,15.9,14.2,14.3,18.7,14.1,15.1,16.1,15.7,17.1,17.4,21.2,33.3,39.1,36.6,31.2,15.7,44.7,39.7,34,23,19.5,19.5,26.8,22.1,24.9,25.6,27.6,27.3,7.5,14.3,48,27.4,52.1,40,41.3,26.6,27.3,37.5,29.4,29.7,40.2,39.5,122.8,39.9,42.3,95.8,94.9,26.4,39.7,24,14.8,21.2,20.5,29.3,30,29,29.2,34.7,26.3,21.3,21.8,30.7,87.3,70,48.2,23,25.8,54.3,42.4,49.9,38,25.8,27.5,11.9,45.1,24,26.1,38.6,22.4,43.2,91.5,2.7,130.1,52.9,55.4,71,71.9,54.6,56,58.5,81.6,203.9,92,58.8,9.9,46.8,26.5,30.5,48.8,44.1,42,39.3,79.3,9.9,19.9,40,28.6,31.6,62.6,25.8,91,87.8,75.1,41.6,45.8,33.6,44.5,64.8,25.4,31.3,142.2,182.3,246.9,22,40.7,25.3,31.6,31.1,48.7,56.4,26,26.3,31.8,15.3,42.9,96.3,96.3,122.5,57.4,100.8,88.7,63.3,92.4,163.6,51.1,202.6,5.2,93.2,25.8,62.5,52.7,64.6,25.4,54.5,59.8,62.6,69.3,118.5,95.4,68.1,104.7,63.4,39.3,111.1,10.1,141.4,165.8,86.3,76.8,75.5,69.7,42.3,38.3,31.4,22.5,45,28.4,134.4,91.8,48,28.4,119.6,91.6,74.8,77.5,77.3,34.3,20.1,38.7,33.1,46.8,24.8,28.6,38.7,51.3,11.5,16.4,21.3,11.9,42.5,29.4,35.1,28.8,37.2,5.3,43.5,53.1,63.7,105.7,43.3,49.5,38.8,22.9,90.4,129,30,51.6,73.8,75.9,75.4,103,10.2,29.2,237.9,179.5,8.4,68.2,67.8,165.5,42,237.8,154.5,13.3,81.4,2.5,160.3,186.4,80.9,10,6.7,3,8.7,114.2,265.8,176.8,279.1,41.2,584,495.6,132.8,147,166.8,269.4,143.5,244.3,44.2,31.9,61,120.5,143.9,17.3,150.6,86.2,62.7,82.2,72.7,71.3,112.3,56.5,64.1,76.9,1.2,97.2,130.5,89.4,44.9,56.8,146.5,109.9,65.4,46.3,209.1,206.9,40.1,243.9,140.8,113.2,61.9,125.9,200.8,169.3,148.1,233.5,248.8,78.1,70.6,54.2,35.4,25.4,102.9,59.4,66.1,97.3,115.9,205,525.3,201.6,54.2,24.3,113.4,100,42.6,9.4,26,111.8,276.3,16.7,67.6,216.3,183.8,47.1,110.1,145.3,143.9,143.9,119.7,114.8,137.2,126.8,103.2,190.1,163.9,69.7,171.4,185.8,198.2,240.3,255.8,251.8,125.4,84,51.7,53.3,51.1,82.8,57.1,60,82.9,102.8,52.9,43.5,92.6,123.6,85.4,83.4,88.1,77.4,169.6,109.1,230.9,288.1,142.2,84.5,66.5,117.5,62.7,33.9,12.1,71.7,68.7,100.5,87.2,62.6,57,18.4,122.3,66.9,66.5,41.3,39.9,47.6,52,56.6,52,57.4,65.8,97.6,83.2,80.5,32.1,38.7,77,165.3,127.2,33.5,25,86.4,76.2,46.4,48.6,79.8,54,52.5,51.3,344.3,111.6,118.4,70.5,69,65,63,98.1,142.7,254.1,247.4,4.8,249.5,188.7,96.6,97.3,137.4,140.8,97.4,137.2,65.4,61.9,47.5,67.3,69.9,65.3,37.9,18.7,62.7,194.3,303.7,22.9,159.2,21.2,128.4,174.1,185.4,7.9,10.5,31.3,53.9,44.5,7.2,66.3,119.7,66.5,48.6,6.9,6.5,32.8,37.5,146.2,75.5,92.1,215.3,132.3,83.9,98.4,264.7,103,149.4,139.5,115.7,114.2,110.6,132.2,128.4,159.5,147,499.2,193,172.4,100.4,145.9,220.4,328.4,632,315.2,112.3,27.8,145.2,30.9,305.9,30,74.4,779.5,134.3,119.9,145.8,143.6,166.2,112.4,18.1,86,156,77.5,76.5,44,88.5,125.5,186.6,37.9,74.1,99.4,94,100.7,101.9,209.2,207.2,390.3,42.1,72.9,46.5,268.9,109.1,100.3,109.7,104.5,115.2,113.2,1,84.7,120.2,128.2,157,354.8,67.8,105.3,82.7,66.1,149.3,103.1,133.2,81.8,158.7,243.9,233.7,165.5,116.1,74.8,119.6,170.5,85.8,420.6,111,108.5,64.7,57.9,61.8,68.1,63.1,112.1,62.1,43.2,48.3,53.1,66.5,64.2,114.4,92.7,2,165,68.6,17.7,90.3,97.5,91.4,154.7,138.5,138.9,209.1,108.6,100.7,108.7,90.1,28.2,79.8,93.3,82.9,77.5,87.6,96.8,106.2,205.2,230.9,156.2,112.3,125.3,88.9,114.9,113.9,133.2,30.2,73.2,164.9,41.9,10.5,35.9,42.8,107.5,86.5,47.6,133.6,284,24.1,206.2,104.4,92.8,102,95.4,169.3,164.1,131,103.3,97.9,112.7,99.2,86.1,136.8,89.3,328.1,218.1,203.6,243.7,222.3,212.5,167.3,33.4,187.7,184.2,609.5,61.6,59.2,154.6,86.6,88.4,106.5,123.5,137.3,289.6,174,48.1,62.3,104.2,108.1,94,94.9,68.6,64.6,78.6,61.7,69.1,88.2,94.5,90.6,90.3,103.7,195.9,131.5,114.2,38.3,87.4,113.7,112.8,109.8,143.3,128.3,225.9,101.6,112.8,133.1,116.5,207.1,122.6,169.7,218.3,134.7,107.5,104.7,46.1,54.1,71.7,73.6,76,75.5,88.7,17.4,82.9,90.2,25.1,52.3,48.7,61.4,63.2,50.2,63.1,93.9,199.8,21,80.5,49.7,62.1,61.9,61.7,53.8,62.1,101.2,63.9,65.2,84.5,102.3,112.1,110.7,131.5,127.5,124.5,110.2,133.4,121.8,107.4,86.5,103.4,98.6,106,123.8,208,132.9,126.1,81.4,88.9,41.3,82.9,85.3,79,84.5,69.8,258.3,110.3,113.2,100.5,102.6,111.4,104.8,219,190.9,210,87.4,75.2,48.1,92.5,151.7,127.1,111.1,246.4,455.1,464.9,131.7,134.5,169.3,157.7,99.4,145.8,96.7,85.5,72.3,92.8,91.3,73.3,73.9,106.2,111.1,74.1,62.9,33.3,31.4,5.3,44.7,40.3,30.8,37.9,42,72.2,79.2,78.2,77.5,61.6,60.9,54.8,49.2,20.4,73.6,63.7,78.5,93.2,106.7,88.6,103.3,153.7,114.1,86.9,54.1,48.5,43.4,44.4,16.4,70.2,34.4,45.2,54.6,54.9,57.7,87.2,37.4,36.9,84.1,36.3,24.3,37.4,37.5,25.3,30.9,28.3,47.9,31.5,33.7,31.6,39.1,29.9,34.3,26.8,31.3,29.2,42.1,34.2,32.5,36.4,37.5,31.7,40.9,34.5,35.1,27.8,34.9,31.9,47.9,64.7,138.4,122.8,110,42.6,432,67.3,59.5,56.9,59.3,111.7,350.9,884.8,112.8,953.9,111,881.1,56.1,54.7,54.4,49.6,50,59.9,33.9,64.9,440.2,603.3,1026.3,1.8,96.6,44.2,36.7,74.4,353.5,239.1,30.6,144.4,35.5,681.2,497.3,545.9,115.7,95.9,140.9,23.2,58.1,47.6,56.9,68.3,64,59.1,53,64,632.8,294.7,24.9,195.6,72.2,6.2,21.5,265.8,84.4,53.3,51.4,55.2,77.7,376.5,146.4,33.4,68,23,68.6,83.6,113.1,69.5,210.9,196.5,154.7,58.6,73,80.1,31.9,119.5,153.4,28.7,115,54,68.2,56.8,40.7,42.3,30.3,43.2,15.5,68.8,66,56.4,62.5,56.6,62.5,49.7,108.1,178.4,38.2,78.6,44,82.2,72.1,61.9,68.9,52.6,53.6,64.7,69.6,101.8,118.4,557.2,280.9,149.9,78.3,119.9,40.7,56.6,65,60.9,86.7,65.3,61.9,161.8,102.4,74.5,39.4,55.9,135.1,156.7,158.6,490.5,357,149.5,170.9,52.7,62.1,117.8,267.5,62.3,98.4,0.1,8.6,43.7,69.3,88.7,103.6,72.3,87,137.5,163.2,91,68.3,147.5,62.7,67.1,69.4,64,81.7,55.4,118.5,95.8,135.7,77.3,843.1,70.3,90.2,51.3,76.8,44.6,78.8,27.9,54.8,79.6,59.1,56.7,68.1,15.8,86.6,100.2,124.3,116.8,238.2,81.6,245.3,106.3,110.8,91.8,276.7,145.6,351.5,30,19.3,115.2,120,89.2,90.5,71.1,78.7,74.7,76.5,84.1,58.3,90.4,88.8,45,41,125.3,79.7,79.2,79.7,88.2,95.5,85.5,108.3,54.5,105.1,68.6,30.8,384.1,31.5,80.9,119.2,389.8,263.5,78.6,59.3,107.7,116.3,87.4,164.3,72.8,53,30.1,31.4,33.5,35.8,66.7,50.6,51.9,78.3,132.4,264.1,61.8,51.2,61.9,48.4,56.5,62.9,76.7,110.4,114.6,126.3,82.1,15.1,250.1,54.1,48.8,60.4,93.9,18.8,243.2,87.1,38.5,30.8,37.7,31.9,60.8,65.5,142.9,149.3,157.5,163.3,118.7,125.2,408.3,184.8,30.5,69,107.6,188.6,161.8,21.3,97.2,79.2,78,203.4,10.5,47,141.4,116.9,62.7,55,57.7,55,48.6,47.6,79.6,67.9,44.5,41.1,41.9,58.2,78.1,78.2,69.1,77.7,3.9,73.4,54.7,69.3,68.6,71.4,71.4,56.8,55.6,40.8,39.1,59.1,31.5,31.4,33,31.3,44,89,88.1,126.6,54,75.1,78.6,77.6,54.8,75.5,69,47.7,58.8,40.1,41.8,57.7,26.3,24.3,44.7,43,37.2,26.2,31.7,32.2,34.5,33.4,27.4,24.9,43.4,43.4,24.5,28,40.8,22.9,24.5,25.7,25,25.9,25.9,43.1,36.7,36,63.4,60.2,101.9,44.9,41.5,39.5,32.8,28.6,37.9,45.2,41.4,28.8,20.6,0.2,6.5,41.9,37.9,50.7,46,0.8,55.5,59.3,32.8,37.1,41.9,44.2,52.2,52.5,50.5,41.4,67.1,26.6,46.1,58.4,53.3,68.9,66.6,50.8,125.9,124.3,75.1,67.5,71.8,42.6,58.4,62.2,72.9,60.3,62.3,58.6,66.1,93.9,55,63.9,171.7,18.2,98.8,30,61.1,14.3,68,63,60,62.4,65.9,78.1,51.7,52.4,70.3,55.2,62.4,63,63.5,150.3,112.9,56.3,29.8,120.6,78.3,66.4,87.2,56.5,57.1,73.3,65.7,61.2,39,51.5,80.2,120.1,241.1,216.9,63.5,248.2,124.6,118.3,63.3,110.9,89.2,50.4,171,244.7,208.3,290,296.1,230,62.2,60.8,114.9,107.3,95.2,201.4,102.7,101.9,99.4,135.2,178,170.1,92,15.1,72.7,140.1,135.6,196.5,124.4,83.7,43.1,0.3,7.3,77.8,44.3,44.9,66.3,62,54.5,42,44.6,34.4,1,37.2,35.2,36.8,42.2,41.8,30.4,31.3,54.4,69.5,52.3,55.8,84.1,31.1,39.6,126.4,112.9,54.5,109.4,101.1,52.6,52.8,56.3,55.8,54.6,53.9,55.1,75.1,69.4,75.3,7.3,49.2,50,79.4,196.5,203.3,148.7,137.2,73.6,60,88.6,67.5,77.9,75.9,63.1,79.6,77.5,14.7,34.6,75,11.3,60.6,108.2,195.3,85,109.6,92.8,120.4,262.9,194.7,63.3,126.1,124.2,1.8,195.4,216.6,159.7,228.5,259.5,224.3,157.5,23.1,90.9,77.2,27.1,119.6,32,127.1,127.2,142.4,130.1,114.1,133.8,41.8,70.4,129.2,122.5,125.7,155.1,214.5,165.3,52.2,65,113.6,87.9,96.7,97.1,116.2,117.1,232.7,201.5,190.8,65.5,181.8,219.8,281.4,95.2,159,241.1,263.1,139,85.7,83.9,58.2,72.4,67,66.7,64.1,61.2,86.1,75.4,69.4,94.4,66.4,69.1,46.3,73.4,107.4,65.3,69,94,90.1,49.5,53.7,42.5,34.3,106.1,122.8,117.3,75.7,81.3,85.1,80,123.9,72.5,86,85.5,111.5,93.4,41.2,130.4,61.7,86.6,152.3,107.3,162.6,115.1,178.3,139.2,97.5,140.2,156.6,152.8,139.3,45.6,34.6,28.8,69.9,131.2,113.6,131.6,71.6,69.1,112.2,121,119.9,120.2,167.9,161.8,150.6,64,65.7,6.6,51.8,33.7,25.1,108.4,55.1,63.6,82.6,95.3,95.2,74.8,61.5,129.8,73.7,69.8,16.5,166,206.2,1.1,202,191.3,145.9,78.8,102.3,85.7,82.4,51,116.1,80.2,53.9,50.2,62,53.1,46.8,10.1,25.7,75.4,18.3,88.8,153.5,145.4,115.7,160,95.8,101.3,353.1,166.9,95.7,87.8,90.4,116.3,134,99.7,105.2,75.2,81.1,87.5,83.2,89.4,77,69.1,77.4,75.9,62.9,54.4,68.5,45.6,101.2,106.4,114.1,53.9,52.6,65.6,70.8,55.8,104,63,70.4,46.8,71.9,11.6,44.4,74.4,44.5,50.9,50.1,57.8,65.3,76.4,82.3,128.3,92,69,170.5,81.2,56.7,68.5,67.4,98.4,50.7,64.5,75.6,82.4,83.4,130.9,126.4,166.6,160.5,145.5,157.4,88.9,75,90.8,86.1,90.1,64,64.4,98.5,129.3,33.3,42.2,34.6,31.9,95.3,100.3,100.5,221.2,115.3,109.4,151.9,95.6,100.6,166,29.3,145.2,142.8,90.1,83.7,80.9,80,84.7,71.5,59,43.9,63.8,25.8,69.9,80.4,69.1,67.5,114.2,119.3,115.1,80.8,95.9,110,79.1,64.9,74.1,87.5,87,79.1,106.6,90.3,79.6,80.9,60.4,54.5,91.5,91.6,77.8,91.5,109.6,111.2,200.8,203.4,257,46.6,166,203.2,32.2,66.2,16.3,66.5,77.2,65,0.6,42,63.4,85.7,112,98.1,62.7,61.5,116,140.9,102.2,91.1,92,93.9,89.6,83.9,76.1,87.1,77.5,107.9,88.4,95,77.3,27.2,65,59.7,63.3,71,79.2,74.4,93.5,79.4,67.2,81.1,91.7,95.8,109.2,111.7,86.8,91.7,81.4,66.3,81.2,126.5,83.7,82.7,73.2,50.5,92.3,123.9,116.2,105.9,214.1,149.9,271.9,255.4,269,51.1,68.7,55.3,15.3,48.3,89.3,67.1,87.4,78.2,65.3,67.1,56.8,53.6,68.5,72.1,18.2,62.4,65.2,76.8,108,73.1,214.6,211.6,154.4,151.7,108.5,63.7,59.4,119.8,148.2,138.3,134.1,111.4,94.5,28,91.6,186.3,263.6,31,73.6,82.8,140.2,93.3,59.1,54.2,75,62.3,65,75.5,57.9,62.6,60.3,77.8,71.9,72.8,86.8,90.3,92.8,89.4,74.3,66.7,64.6,161.4,163.3,128.3,105.1,83,77.1,61.6,66.6,61.7,82.5,67.8,17.7,103.1,71.7,63.7,61.7,79.6,59,52.7,9.1,16.2,111.9,180.6,178,91.3,58.9,54.5,38.6,110.6,116,97,73.1,48.8,47.4,87.5,70.8,93.1,111.7,88.8,86.2,68.9,4.7,46,57,15.8,75.8,66.3,63.3,89.6,85.1,109.1,73.1,73.2,52.8,75.1,89.1,58.6,39.4,62.2,61.7,56.7,105.4,83.5,60.8,97.9,111.5,85.5,84.8,67,63.9,49.5,18.4,57.8,51.6,63.5,54.6,53.7,55.6,52,76,123.9,59.8,136.9,119.3,67.5,71.9,62,57.1,63.3,44.9,65.6,28.3,70.1,68.3,105.5,77,65.9,69.8,79.3,107.5,76.8,220.5,27.5,46.8,95.8,76.1,20.7,48.7,37.3,43.4,103.9,99.5,54.9,43.4,90.1,129,69.9,60.2,53.7,32.3,96.9,91.6,45.3,210.9,75.3,5.9,21.7,134,125.3,113.3,127.5,118.8,65.1,80.7,92.8,94.3,86.3,107.7,63.6,73.5,59.3,100.4,70.8,116.4,88.3,80.7,33.6,59.7,84.3,113.9,156.3,32.4,152.3,153.6,125.5,63.3,62.5,86.4,55.4,75.1,76,15.1,42,57.5,74.2,77.4,58.7,62.3,86,56,56.5,35.7,27.1,58.9,70.2,47.3,60.6,116.5,113.1,115.1,116.4,53.1,109.3,89.3,89.4,172.6,108.6,123.8,120.3,99.1,84.6,77.9,127.9,133.1,120.4,89,90.1,131.3,118.3,120.1,131.4,225,313.9,251,107.7,63.4,98.2,130.4,140.6,251.4,407.9,262.6,207.2,210.9,75.1,144.1,96.6,78.6,58.5,193.7,421,325.3,233.4,162.2,239.8,145.1,75.7,144.5,122.3,126.1,123.1,107.1,40.4,79.4,69.3,79.4,17.5,39.1,35.3,9.7,174.7,203.8,143,74.6,46.8,79.8,86.5,53.6,63.8,77.2,77.4,55.6,80.7,67,93.2,96.5,102.5,80.9,51.9,29.4,78.7,106.7,45.4,21,70.6,84.3,131.1,146.1,356.4,257.7,101.7,69.2,214.2,78,46.2,144,132.9,80.4,91.4,68.4,72.6,130.4,62.5,15,85.3,6.4,178.6,58.1,83.3,262.2,86.8,49.4,41.4,10,79,98.3,95.2,57.5,65.7,52.8,45.8,91.4,179.2,183.9,90.1,86.4,57.5,49.2,90.5,69,96.9,70.5,68.7,6.4,97.6,33.6,58.7,54.2,85.2,79,21.3,89.5,76.5,88.7,146.8,116.9,107.4,55.7,62.1,113.8,58.8,61,58,63.3,67.1,69.7,53.8,44,58.9,63.5,82,98.8,50.1,90.3,64.1,64.2,84.5,113.3,66.4,22.1,36.2,47.9,50,53,52.2,53,48.6,48.6,50.8,67.6,69.2,67.8,73,57,65.4,153.6,152.8,99.3,68.6,62.8,66.4,65.2,144.6,77.4,28,43.6,67.8,65.9,55.7,76.1,46.7,60.7,59.4,27,30.2,1.4,57.5,50.9,55.6,60.9,40,69.2,77.1,69.8,72.6,98.3,29.2,44,33.6,36,36.9,34.4,29.7,30.1,32.6,49.5,54.4,43.5,43.6,58.6,49.5,57.4,29.5,58.7,129.3,78.6,20.8,35,23.2,17.1,31.1,24.6,27.5,95.4,96.9,86.5,105.3,76.5,187.2,98.4,52.7,57.7,55.9,59.4,36.6,29.2,32.2,52.4,56.8,56.4,101.6,169.6,117.8,90.7,84.4,82.2,95.9,46.2,66.5,97.3,70.7,29.5,64.2,85.7,84.2,118.9,127.8,81.3,88.2,133.2,131.3,149,149.5,120.4,69.8,86.9,95.9,93.4,69,41,22.1,59.4,92.1,160,138.3,61.5,54.2,82.8,80,79,36.8,85.4,72.1,70.5,123,62.8,62,69.6,72.8,134.1,104.7,87.4,92.5,92.7,76.3,43.2,33.3,161.9,10,170,145.4,115.5,80,83.8,112.3,66.7,66.7,62.1,79.1,158.1,243.4,131.6,181.9,207.7,205.7,103.4,109.9,114.2,78.8,98.1,119.5,115.4,81.6,70.7,81.7,71.1,44.1,47.5,77.1,54.4,20.1,33.8,111.2,42.8,42.3,56.2,28.9,41.4,40.8,25.4,45.2,51.5,51,53,50.8,51.6,51.9,58.8,61.6,64.1,59.7,57.9,37.3,32,54.5,44.1,46.9,72.5,63.1,58.7,90.1,68.9,54.8,73.2,63.2,72.9,75.5,63.2,70.4,59.9,89,62.3,63.8,61,61.4,75.4,71.5,62,1.3,64.6,61.9,88.8,60.2,63.7,62.9,58.7,59.8,67.9,115.2,37.9,73.3,78.2,64.1,55.8,56.8,61.4,66.9,65.2,68.1,59.6,60.2,53.2,94.1,90.1,369.7,119.6,243.4,124.3,121.2,110.8,110.3,103.5,71.1,125,149.3,86.1,43.9,26.8,36.1,14.7,53.5,61.4,16.2,15,61.6,77.7,67.3,73.3,65.8,82.9,57,41.2,87.4,92.8,12.2,75.8,58.8,56,83.6,80.9,117.4,89.1,83.5,176,134.9,135.7,115.3,32.1,91,122,88.5,86.5,63.7,67.2,62.4,65,92.3,105,104.8,86.9,61,65.8,44.2,54.9,68.6,70.2,81.9,94.4,42.2,51.8,8,96.2,147.2,162.7,143.6,62,60.8,125,109.1,141.8,26.5,198.7,201,201.3,197.6,76.4,79.8,54.4,42.8,74.6,52.4,51.4,44.5,47.4,54.4,51.7,75.5,61.8,51.2,79.7,68.5,61.1,60.7,30.3,42.3,60,74.7,50.9,42.1,51,51.8,48.2,40.9,44.1,51.3,63.4,70.2,93.9,42.2,54.7,47,68.7,53,44.1,45.7,37.7,79.7,121.9,96.3,113.4,49.8,54.8,77.4,53.4,50.2,50.2,41.5,41.1,48.3,46.1,27,30.7,45.2,47.7,53.8,49.3,36.4,45.4,64.2,81.3,42,31.2,64.9,53.7,59.5,48.1,36.1,40.5,51.6,44.2,42.7,43.4,47.1,51.9,49,57.8,42.7,41.9,58.8,65.3,46.3,38.3,34.9,39.8,43.5,52.4,56.6,50.6,41.6,45.7,44.9,43.2,36.1,73.4,77.9,43.2,44.4,75.5,64.8,56.1,53.8,75.9,56.6,48.2,1.2,30.4,35.3,47.5,43.2,55.6,42.5,50.8,35.4,45.1,125.4,114.1,122.3,109.2,88.3,93.9,74.4,38.4,53.5,91.2,33.3,38.1,55.9,88.5,76.2,83.6,85.1,107.5,106.5,88.4,57.7,66.9,67.4,73.3,68.1,69,264.7,134.8,66.6,68.1,64.3,57.5,31,48.9,56.6,52.1,62.3,79.8,64.2,71.8,31.2,52.3,81.3,49.6,55.8,42.7,60.6,78.6,45.7,56.3,42.2,45.5,51.1,47.9,62,66.4,56.2,67.1,68.1,59.5,49.8,71.2,68.8,57.6,57.6,60.8,66.8,87.8,169.8,52.5,72.6,184.5,135.8,55,47.7,67.9,62.3,64.8,82.7,60.3,68.8,79.9,67.5,78.5,69.5,67.7,52.7,53,66.5,71.5,84.2,51.7,44.3,52.2,30.8,7.1,103.4,79.5,77.2,155.3,231.2,336.2,53,73.8,47.3,36.8,33,55.5,57.1,47.4,30.5,27.5,69.3,62.7,44.7,47.5,34.7,38.9,40.7,38.8,44.5,38.8,56.3,69.6,80.1,61.2,91.4,93.1,55.6,36.4,32.2,38.5,44.3,38.6,35,34.1,29.7,42.5,48.1,25.1,49.1,44,12.6,21.3,40.4,41.6,40.3,42.4,34,39.3,41.9,37,32.9,37.9,42.9,46.9,49,148.3,146.6,62.4,53.6,43.6,41.3,50.7,47.2,34.1,15.3,48.2,56.6,30.3,46,56.8,64.2,67.2,60.1,55.2,51.7,37.8,39.4,40.5,42,34.4,35.8,47,71.4,113.4,123.9,119.8,89.7,28.7,58.9,33.6,95.2,76,46,8.7,67.2,34.2,43.8,34.6,44.9,48.7,112.6,137.3,105.8,64.9,56.2,71,84.8,103,110.9,65.1,113,80.7,80.4,59.8,93.2,98.4,121.7,197.5,2.3,118.3,30.5,51.4,74.6,210.6,228.4,225.4,299.1,61,269.7,111,69.9,62.2,67.7,71.7,42.2,42.8,78.5,47.7,51.8,96.6,153.4,117.3,101.9,89.2,55.4,49.5,61.8,67,68.9,42.6,124.2,166,39.9,38.7,30.5,28.6,32.3,24.7,20.3,37.7,30.9,29.4,28.5,36.1,49.8,45.8,27.2,35.3,39.3,109.5,54.7,36.9,36.1,33.8,34.2,41,27.5,29.1,39,32,26.4,31.6,33.9,44.9,65,93.2,54.3,92.5,99.9,59.4,62.9,39.3,54.5,39,43.4,51.7,59.7,54.5,45.6,55.4,41.6,33.8,34.8,43.7,41.4,44,31.7,19.9,47.8,40.5,62.8,49,68.8,34.3,75.3,53.4,52.2,63.1,45.3,52,51.2,57.8,43.9,73.7,86.6,192.3,134.6,62.6,124.3,124.3,157,22.8,254.2,254.5,72.5,60.7,35.4,60.7,55.7,27,181.1,92.5,89.6,133.7,52.1,50.7,30.7,43.9,56.4,49,35.3,32.5,36.4,38.6,51.9,62.6,53,41.2,42.7,49.7,34.2,34.3,51.6,47.3,51.4,37.9,33.9,38.8,42.1,39.9,31.6,39.4,33.2,34.9,65.8,44.2,88.9,86.6,80.4,73.1,59.6,47.6,41.7,54.1,39.7,63,29.5,28.8,65.4,25.9,51,42,47.6,43.7,62.4,39.5,34,41.6,62.8,68,68.4,227.3,217.8,153.5,90.3,91.7,97,79.5,87.8,95.6,209.8,307.8,322.7,172.3,93.8,86.5,96.7,44.2,106.6,6.3,125.2,80.7,75.3,89.7,82.7,56.6,53.6,91.2,82.4,97.2,31.4,76.9,41.8,84.7,80.9,10.2,50.2,38.4,40.7,8.9,51.6,121.8,38.3,13.1,44.1,78,81.2,55.4,52,49.6,49.7,190,52.8,33,26,78.1,52.4,71.3,67.1,44.5,131.5,23.5,9.6,27.1,19.7,18.6,23.9,24.3,33.4,25.9,24.5,23.3,23.8,30,35.8,37.7,110.3,76.7,57.6,41.2,37.4,27.2,36.4,31.8,25.9,20.3,7.7,36.3,29.2,25.4,33.5,32,31.2,35.1,41.1,46.6,40.2,39.9,47.8,62.2,103.5,53.3,4.9,48,42.8,34,29.8,26.4,23.5,8.3,14.3,15.9,28,24.7,27.6,27,20.4,35,31.6,51.8,108.6,189.7,40.6,30.2,21.9,32.8,25.8,23.2,24.9,34.1,35.4,30.6,12.3,13.2,22,33.6,29,20.6,20.9,19.4,23.5,26.6,22.5,34.6,23,31.1,29.6,44,37.2,27.8,27.5,33.8,32.1,33.2,28,26.8,60.4,46.6,67.2,10.3,87.2,50.5,31.2,31.4,26.9,33.2,36.6,28.5,36.9,28.6,34.7,56.9,62.2,69.5,150.2,40.8,39.9,29.8,39.3,38.4,39.9,35.3,31.4,36.9,38,41.4,48.8,57.1,33.2,40.5,33,33.5,31.2,57.6,55.2,51.1,40.5,38.1,34.3,5,29.1,32.8,36.1,45.9,94.9,90.7,59.1,45.3,42.7,33.1,35,39.3,32.9,34.9,31.8,33.2,36.1,40.3,40.5,31.6,43.8,37.7,40.9,36.4,34.8,31.9,37.9,29.7,34.2,42.8,44,77.1,13.3,80.5,46.1,38.4,41.3,34.8,52,61.9,100.7,31.1,44.4,342.3,25.2,24.4,20,21.1,21.2,18.9,22.2,20.1,27.6,38,20.1,18.4,21.4,23.4,27,27.3,25.3,18.6,19.4,27.5,22.1,23.7,15.4,25.8,24.8,20.6,22.9,23.1,32.7,68.1,54.8,17.4,18.4,24.6,23.7,16.5,17.6,28.6,17.5,19.6,21.8,32.1,30.7,33.8,29,31.3,62.3,56.9,54.5,31.2,55.8,24.5,33.4,48,54.7,46,65.9,22.3,48,53.7,9.3,42.4,61.2,67.3,45.5,45.6,67.9,64.1,64.1,52.5,57.3,70.1,68.2,58.9,64.2,82,62.5,63.8,124.6,80.5,107.2,122.9,79.1,80.2,67.7,142,120.6,98.1,80.1,37.9,40.1,72,48.8,50.7,31.8,31.8,51.4,55.3,40.4,40,23.9,45.5,40.1,39.9,41.5,34.5,34.2,52,37.1,43.1,34.5,40,37.3,12.5,32.1,30.2,25.9,24.8,38.3,23.4,21.8,35.2,40.7,31.2,32.3,32.7,32,15.9,62.9,54.7,40.5,43.8,44,39,24.7,24.6,31.1,39.9,37.5,24.1,24.5,19.1,24.2,27.5,28.8,23.3,27.6,23.2,21.1,51.4,55.7,67.5,68.5,99.7,79.4,56.6,139.8,0.5,73.2,9.2,66.6,50.4,34.2,69.3,42.9,52.3,9.6,29,29.2,20.7,13.5,12.5,12.4,13.4,12,13.6,13.3,12.6,12.6,13.3,13.1,12.9,13.3,12.2,13.3,12.9,13.2,13.2,12.8,12.8,13,13,14.5,13.4,14.6,14.4,14,15.9,13.2,29.2,28.1,23.4,58.4,37,33.4,36.2,25.5,23.8,39.1,32.6,40.6,37.7,39.9,35.7,83.7,41.9,19.1,38.9,53.9,48.9,39.9,53,41,53.4,46.7,40.5,40.5,57.7,40.9,52.5,29.8,35.1,24.5,29.1,39.5,39.2,40.3,65,46.1,48,211.7,54,64.7,32.5,31.5,65.2,47.4,82.7,34.6,32.5,41.2,89.7,52.1,50,62.6,35.5,46.7,48.4,44.2,41.1,41.5,33.2,32.6,40.7,42.4,44.1,43.7,44.5,54.2,48.7,50.2,51.9,53.2,55.5,34,37.1,38,31.7,42.4,57.7,54.2,31,32.8,26.2,25.3,40.8,37.7,38.5,51.3,37.7,55.9,11.9,53.6,53.4,96.7,46.7,44.3,46.5,46.4,47.8,58.5,99.8,28.8,27.2,29.4,30,30.9,33.7,38.7,161.2,30,32,29.4,28.3,36.2,41.3,37.3,29.6,32,41.8,49.7,20.1,21.7,23,31.2,43.5,36.3,48,47.6,43.2,28.2,31.2,24,23.7,26.5,25.3,26.7,25.3,26.4,24.3,26.1,25.8,26.2,26.3,25.7,37.1,31.1,46.6,42.2,143.5,71.3,70.3,95.2,97.2,81.9,83,33.4,78.6,69.3,37.3,37.3,23.9,23.5,30.8,29.1,31.7,30.6,50.5,51.5,52.5,49.3,53.9,55.6,68.3,57.2,44,43.5,39.2,25.3,27,42,53.4,50.2,59,59.5,37.3,37.5,73.5,56.2,69.9,54.4,60.3,44.8,43.5,41.4,61.7,51.5,52.3,57.3,321.9,328.7,106.1,60.1,48.5,44.8,49.3,48.3,48.2,36.6,39,50.2,33,48.8,49.8,49.9,45.8,42.6,53,52.2,47.4,52.7,33,32.9,50.9,50.9,55.7,59.5,46.1,45.3,36.8,72,106.6,27.7,8.5,67.4,109.7,108.5,99.2,161.7,64.3,59.9,49.9,50,32.6,43,38.7,39.9,54.9,36.9,68,55.3,37.2,46,48.9,65.8,34.7,34.6,34,30.9,36.2,58.4,63.5,198.1,74.6,36.3,110.6,54.5,200.9,88.8,55.8,88.3,10,61.9,83.6,172.9,90.3,15.6,53.1,11.4,42.3,51.5,27.6,40.2,41.6,34.9,44,37.5,37.5,43.7,33.5,38.9,57.2,48.8,52.2,36.9,52.7,37.2,36.5,37.5,42.8,36.7,44.6,38.1,38.8,44.9,138.5,241.6,142.7,241.4,118.7,34.4,6.6,71.6,101.2,95.9,236.5,121.6,111,37.4,38.3,37.6,30.4,46.2,32,39.4,41,43.2,40,165.7,42.6,26.7,62.3,47.3,48.4,45.1,45.9,28.6,35.9,44.3,27.7,25.7,38,28.3,26.5,24.1,24.6,26.6,45.8,53.6,70.3,22.2,38.7,35.5,30.9,32.4,26.6,34.4,36.8,38,41,38.8,34.2,35.3,35.9,12.1,20.8,31.3,39.5,46.9,126.2,63.8,32.9,33.8,36.6,48.8,33.2,34.1,31,30.2,23.2,76,39.2,32.5,35.3,32.5,34.4,32.3,23.6,27.8,27.5,30.3,37.3,31.3,27.6,38.6,35.1,34,28,53.8,77,21.3,32.7,34.2,29.6,22.1,29.4,28.3,34.2,54,67.5,83.1,132.4,34.9,116,99.9,1.9,103.5,18.2,119.1,123.8,57.6,91,207.6,55.3,93.1,73.8,69.7,116.1,131,92.7,76.6,60.4,61,128.4,117.5,10,104.1,71.1,41.5,45.1,77,45,55.8,57.4,95.7,57.1,85.2,49.9,151.9,245.9,88.6,60.3,75.2,38.8,50.3,107.4,345,368.2,31.3,77.1,49.2,63.2,55.2,48.8,52.4,60.1,59.4,44.3,10.4,74.5,30.9,49.6,60.9,43.6,64.8,54.9,131.5,38.6,32.5,36.3,38.8,25,36.3,39.6,15.3,47.9,79.1,26.7,85.3,21.4,35.3,131.2,17,124.9,240.8,142.3,51.1,559.2,86.6,125.4,125.6,30.6,177.7,92.2,62.7,29.5,18.7,29,32.6,16.5,41.7,30.9,16.6,17.3,22.2,35.1,42.6,34.6,30.9,32.5,31.2,35.7,37.2,36.7,29.2,42.9,47.6,40.9,42.1,59.5,176.5,135,132.4,148.7,45.7,44.9,208.7,38.1,39,37.4,50.5,36.1,28.9,37.3,34.1,39.3,67,28.3,47.2,51.9,25.3,49.8,42.5,45.6,55.3,46.9,39.6,38.8,34.5,17.5,6.1,57.6,18.6,23,39.3,60.1,45,30.1,38.8,39.3,35,10.4,115.8,54.4,46.5,41.4,38.3,38.1,29.6,32,21.6,19.5,33.8,38.7,35.8,19,21.4,28.7,37.5,19.6,21.4,31.5,35.2,25.6,25.7,23.3,21,22.2,34.3,33.6,59.7,54.8,52.3,139.5,78.6,62,77.7,53,64.4,38.2,32,27.7,50.3,23,20.9,28.5,33,27.5,45.4,38.9,38.3,24.1,10.8,35.8,45.2,33.5,39,37.3,37.7,89.5,39.6,42.1,26.5,27.5,26.5,30.4,30.5,37.2,20.1,22.7,30.4,32.7,33.6,32.3,31.6,38.6,36.3,47.4,72.4,17.7,200.2,194.6,145.3,18.8,27.9,16.4,14.8,14.3,21.2,26.7,22.3,31.3,26.4,35.8,36.9,33.2,19.4,17.6,22.9,22.5,50.8,55.1,37.5,25.8,66.2,59.5,37.1,66.9,80.6,54.4,52.9,128.4,127.1,54.6,85.8,14.2,45.4,74.8,112.5,166.8,140.7,80.9,95,67.5,82.5,85.7,85.4,89.3,89,145.3,149,196.8,160.8,128.1,208.9,313,189.8,69,161.4,119.5,142.2,94,61.8,60.5,70.1,144.2,91,34.1,16.9,54.5,51.9,58.9,51.7,11.9,69,82.6,46.1,134.9,46.6,45.4,23.9,48.9,16.5,30.5,86.8,8.1,53,28.4,28.5,59.5,41.4,37.2,61.8,60.7,482.8,69.5,202.5,101.2,97.8,108,108.4,59.7,57.4,111.2,105,101.3,98.1,2.4,134.3,60,75.6,165.3,178.4,71.4,78.9,99.6,61.9,80.3,123.6,72.1,140.6,59.5,104,52.4,52.1,53.8,50.5,42.8,71.4,62,27.8,90.6,83.5,56.4,53.5,43.5,70.8,104.6,28.6,138.9,31.9,45.7,90.7,129.6,126.4,145.2,221.2,90.8,81.7,101.2,70.6,138.1,26.2,68.4,36.7,109.4,124.2,127.5,100.7,49,77.1,101,26.9,71.7,102.4,75,92.7,87.8,258.5,122.6,126.3,122.1,131.6,69.9,80.7,14.6,11.6,201.6,83.8,159.1,185.9,358.7,160.4,135.5,134.4,146.1,146.7,89.4,102.9,139.1,138.3,173.3,225.2,97.6,229.1,142.2,126.6,86.1,84.1,82.3,75.1,80.5,84.4,64.2,72.1,77.3,69.3,51.4,54,60.2,58.1,85.7,63.6,63,74.1,112,38.5,80.5,75.7,70.1,45.1,21,82,185.4,193,254,140.1,150.3,121.6,74.9,61.7,70.7,59.8,70,64.8,98.1,61.6,7.1,60.5,64.9,84.2,88.9,64.9,65.4,68,152.5,59.2,72.3,60.9,62.4,59.9,90.7,68,112.7,121.7,88.8,76.8,85.5,93.1,95.6,90.3,42.3,48.8,54.6,87.4,86.6,136.3,217.7,110.3,107.7,96.9,94.2,94,101.1,112.3,121,109.2,127,131.8,135.1,61.9,175.4,161.9,196.3,92,92.9,159.5,129.1,102.8,103.9,106.9,117.1,104.8,105.3,113.3,102.3,104,100,101.1,115.2,56.1,67.2,106.5,126.4,145.1,151.9,54.9,37.8,144.7,69.7,48,59.3,11.5,320.1,169.1,101.1,240.5,113.2,62.8,63.3,49.7,140.1,106.9,219.6,306.6,289.3,96.1,549.8,202.9,131,168.6,166.6,100.5,86.9,7.4,104.6,92.3,96.4,104.6,208.8,140.8,57.3,55.3,74.1,74.5,80.7,78.8,61.2,61.5,119.5,116.6,119.5,93.4,97.1,86.6,106.9,91.4,88.5,93.8,96.3,117.5,69.3,86,89.5,86.5,71.5,71,37.1,96.5,104.4,104.9,94.4,92.7,112.5,100.5,56,91.6,86.9,130.8,135.6,63.9,101.7,89,132.6,133.5,559,558.7,317.1,85,49.5,102.1,121.8,60.7,62.7,51.8,95.6,124.2,127.1,159.9,92.9,126.4,42.8,93.8,65.2,92.7,96.9,4.4,148.9,135.9,139.5,93.6,140.4,58,270.2,279.8,264.7,258.2,168.2,166.2,147.9,156.1,146.5,143.6,78.7,76.8,135.4,111.2,112.1,113.6,116.4,152.6,148.9,100.7,98,70.2,70.2,127.3,89,145.9,64.9,107,106.9,197.8,128.1,392.9,189.3,104.8,108.8,170.2,12,47.6,89.8,71.4,87.3,44.6,117.1,75.5,105.7,33.9,45.9,46.2,81.3,36.5,256.2,174.2,125.9,130.5,106.7,71.7,64.1,34.2,33.2,64.5,44.5,41.3,21.7,48.1,40.1,39.1,47.3,44.9,27.9,44,29.8,26.6,14.8,5.7,64.9,26.1,39.5,48.6,36.3,56.3,27.6,26.7,46.5,53.6,63.9,59.1,50.5,72.6,51.3,66.4,62.7,129.3,45.2,45,86.5,42.1,68.9,25.9,70.1,117.9,78.8,27.6,63.2,16.8,368.9,360.1,177.9,78.5,85,62.7,61.8,54.2,53.4,91.3,47,43.9,96.3,44,43.5,55.1,87.2,66.6,73.6,85.3,72.4,75.2,74.6,76,70.3,63,60.9,55.6,55.4,60.2,57.8,45.6,44.9,35.8,50,72.4,72.5,90.9,220.4,215.8,50.3,300.4,27.2,295.5,245.3,243.4,72.2,49.9,94.2,55.9,39.7,42.4,6.9,54.4,23.6,65.3,64.4,80.5,58.8,60.3,48.6,47.4,54.1,79.2,44.7,38.5,46,46.3,43.8,45.2,68.1,73.8,76.3,65.5,64,87.7,77.5,87.5,75.3,89.6,90.9,85.7,76.6,49.6,47,56.6,49.8,59.5,58.4,50.5,49.5,45.2,37,50.4,100.4,96,30.6,63.2,138.7,60.2,41.8,18.6,60.7,78,50.9,92.5,174.3,179.4,216,11.9,89.5,69.8,65.1,76.7,25.3,75.3,27.7,22.2,45.5,67.2,99.1,94.8,180.2,181,186.1,177.7,75.6,67.3,88.1,102.7,63.2,147.6,95.5,51.2,70.4,155.2,157,375.4,120,84.5,86.2,81.5,83.8,70.1,69.3,36.9,57.4,56.2,58.3,57.7,69.7,58.4,88.5,43.5,69.5,58.7,72.4,70.7,96.1,85,61.3,106.5,152.9,72.7,80.2,98.9,98.5,52.4,105.9,86.2,70.3,71.1,67.8,65.9,50.3,59.9,51.8,85,102.5,59,10.7,144.7,46,68,108.4,64,32.4,75.9,210.7,199.7,150.9,48.7,56.4,115.1,82.4,185.3,68.2,98.2,128.3,98.8,88.9,200.5,73.4,84.7,103.6,25.6,97.8,117.6,100.4,108.4,87.9,93.4,93.7,108.8,106.4,70.5,137.3,100,135.4,91.2,141.2,116.2,51.5,49,17.9,83.2,74.5,129.3,59.4,34.6,91.3,90.8,91.9,97.4,92.1,61.8,102.1,2.4,111.6,65.3,196.6,193.1,435,216.3,107.7,110.7,101.7,78.7,61.7,83.5,112.2,81.3,111.3,84.2,77.2,65.1,66.8,51.9,65.1,44.4,87.6,64.1,60.4,44.7,65.4,60.4,63.4,49.1,47.1,63.5,63.3,86.4,54.2,36.4,81.3,84.3,50.3,59.7,96.7,113.5,106.2,66,76.9,105.3,102.7,106.4,108.7,102.2,121.7,124.8,124.8,125.5,73.1,48.2,117.4,70.2,68.3,123,75.7,59.8,106.6,119,63.4,53.4,10.5,12.6,67.2,75.4,117.8,129.2,114.5,103.8,113.1,75.7,67.8,70.4,75.3,99.8,100.7,96.9,67.2,84.7,84.9,126.7,129.5,129.9,128.3,148.3,142.8,174.4,96.2,77,82.7,133.1,115.6,54.9,66.2,71.9,173.2,111.2,22.5,81.9,88.5,2.4,146.7,148.6,50.8,60.4,110.7,58.7,59.7,91,84.1,30,97.6,95.5,125.7,109.1,82.4,52.3,12.9,118.1,127.5,126.1,120.1,120.6,115.3,60.6,142.1,149.5,68.8,219.7,229.8,120.1,108.5,122.6,74.8,55.7,65.7,62.3,54,51.5,54.9,52.6,53.1,58,67.4,95.5,108.5,87.2,60.7,74.9,73.6,82,69.1,62.3,58.4,61.2,76.3,77.9,56,54.7,54.1,74.5,67.3,76.8,69,76.7,76.9,83.5,61.7,91.4,97.3,73.3,68.4,129.1,117.6,58.5,103.6,98.3,78,74.7,72.8,17.2,43.7,49.9,11.9,72.8,70.8,79,69.9,73.4,71.3,74.7,82.2,80,77.7,79.4,50.1,67.3,54.5,100.6,71.9,65.3,108.7,104.2,56.9,53.8,64.9,63.7,80.4,80.6,77.3,156.6,152.3,85.9,69.3,75.2,69.3,6.9,77.9,79.8,174.7,160.3,101,101,105.5,57.9,95.7,78.5,76.8,80.6,60.9,78.6,131.8,60.7,72.4,185.2,83,76.8,75.1,75.8,75.5,76.9,45,49.6,58.1,84,52,50.6,74.6,67.6,82.3,89.3,97.3,98.9,152.2,146.2,7.4,135.5,100.7,77,80.1,94,80.9,68.3,49,64,71.5,80,55.4,54.4,53.7,73.7,73.4,81.3,80.5,75.3,69.9,83.5,56.6,67.3,83,52,53.4,39.5,38.6,62.5,64.2,59.9,41.3,34,70.7,59.8,59.7,23.7,16.8,67,47.4,39.8,49.8,88.6,28.7,86.8,25.6,75.5,79,47.9,106.7,106.8,86.8,81.1,103.5,39.6,59.8,68.6,64.5,85.2,83.6,82,82.8,66.5,74.3,68,80.6,72.4,88.4,23.7,76.8,57.8,54.7,81.6,72.8,83.6,71.8,58.9,83.8,80.9,68.2,95.6,92.1,91.3,91.7,114.3,69.6,66.2,55.1,58.9,90.5,77.2,82.4,59.7,60.1,79.5,83.1,79.7,46.8,58,58.6,77.4,74.3,37.4,24.2,54.1,85.6,143,277.8,110.7,179.2,89,76.9,66,58.9,53.7,57.1,87.1,47.8,50.2,72.2,32.2,40.6,18.7,72.6,33,51.1,7.4,54.8,53.1,57.4,49.7,41,44.5,69.4,67.2,49.5,19.7,31.8,62.4,106.1,96.5,55.5,98.1,212.1,210.2,247.6,123.9,120.4,116.1,59.1,78,89.3,90.3,65.5,65.1,70.6,78.9,90.6,94.5,98.5,91.4,103.6,116.4,75.6,75.1,75.7,77.9,67.6,78.6,132,228.2,54.8,89.6,80.3,66.9,77.7,87.9,83.1,69.1,74,70.6,60.7,139.1,136.6,85.3,51.2,77.4,74.6,53.8,84.4,114.7,54,41.3,85,46.9,47.5,72.3,2,78.5,49.1,47.7,72.5,73.8,56.9,19.3,37.2,78.7,184.8,28.3,66.9,49.5,105.2,80.4,42.4,42.7,44.1,44.3,31.3,31.4,62.8,64.6,74.3,100.2,83.9,55.8,154.2,156.9,88.5,59.4,89.2,105.6,63.8,82.6,83.5,84,166.2,175.3,97.7,51.6,42.9,60.5,87.8,87.8,70.1,44.9,104.2,66.1,66.1,74.2,93.1,104.1,104.6,83.4,72.5,73.9,75.4,72.7,99.6,97.3,74.5,95.7,138.2,82.1,79.1,47.1,60.6,84,101.6,97.4,61.1,58.6,41.9,90.4,94.5,91.3,85.3,92.4,92,103.3,146.7,74.9,78.3,68.3,76.9,101.7,80.1,68.1,82.2,55.7,48.1,57.6,330.3,331.2,103.9,104.8,86.8,87.1,88,87.8,67.8,68,60.6,54.7,65.9,37.5,27,4.4,59.5,70.2,68.9,93.2,7.4,56.2,48.4,50.3,49.4,40.1,10.2,130,168.6,54.3,105.2,111.7,86.1,83.6,89,89.8,82.3,44.8,48.6,103,110.1,94,131.8,116.3,117.2,114.8,102.9,116.9,97.2,87.9,215.9,120.6,85.1,59.7,58.5,88.7,32.6,82,51.1,74.8,95.7,98.6,103.2,101.5,124.5,126.9,138,89.5,78.1,104.7,86,85.6,83,85.6,95,94.5,96.4,99.8,47.3,56.7,81.9,83.7,145.1,102.9,78.9,63.4,55.9,32.4,48.5,53.9,16.2,69.9,89.6,67.2,60.9,15.9,76.7,70,84.5,56.3,44.6,45.6,64,69.5,98.2,104.8,80.7,29.2,49.6,51.6,66.1,64.7,55.6,62.1,60.9,59.1,69,71.5,75.8,88.4,42.9,340.4,171,198.6,731,14.3,159.9,138.6,163.4,391,128.6,131.3,118.7,214.9,68.4,405.5,94,157.3,147.1,58.5,37.3,96.6,104.9,105.4,85.6,79.2,539.4,97.8,46.2,77,85.8,84.5,89,84.4,39.1,36.7,51.4,44.2,50.2,47.6,64.6,65.3,123.4,82.5,77.2,53.1,38.6,43.1,35.1,37.8,39.4,43.6,46.7,45.5,49,52,84.1,82.1,87.2,85.7,48.4,46.9,53.6,51.3,53.7,51.8,62.4,59.9,58.4,56,40.2,42.5,54.6,29.1,31.1,59,44.6,39.7,45.8,42.5,47.5,31.7,72.2,166.1,49.6,202.6,578.6,83.8,83.7,73.2,36.1,34.2,44,47.4,52,54.8,59.8,57,48.9,51.4,63.1,52.7,46.9,46,63.2,87,157.3,25.4,101.9,77.3,113.1,53.6,53.2,106.7,54.7,52.8,78.2,82.7,42.2,40.7,59.8,75.4,73.5,69.2,70.4,47.5,83.3,84,67.3,66.1,57.8,56.6,62.3,56.8,57.7,54.3,53.2,51.5,53.8,54.7,75.5,73.9,47.9,49.1,71.4,67.3,39.5,38,73.9,5.9,52.9,8.6,43.3,41.6,57.8,54.9,88.2,71.6,66.9,112.4,158.8,64.7,64.1,86.1,75.7,7.7,82.8,79.4,54,24.8,92.4,68.2,79.4,126.6,128.6,89,100,54.4,55.7,117.6,201.2,82.5,165.3,93,87,221,270.9,139.1,11.6,118,120.3,129.8,484.1,89.6,149.6,134.6,104.2,106.5,94.8,82.8,118.5,124.5,118.5,124.9,103.8,217.6,123.5,130,90.8,105.3,53.8,98.2,122.6,115.6,133.3,119.8,114.1,37.3,142.3,111.9,112.4,158.8,157.2,165.6,130.5,466.9,100.8,147.1,326,81,79.9,77.3,84.4,71.5,67.7,56,45.4,20.5,36.3,80.7,14.4,38.3,46,64.5,51.2,74.3,76.5,117.7,190.4,80.6,74.3,73.6,20.9,37.6,57.2,108.2,78.3,76.4,52.3,79.2,95.9,137.6,314,583.9,169,72,96.5,317.6,79.2,686.7,60.8,60.5,59.5,58.8,63.1,63.2,64.4,57.9,57.8,73.1,47.2,47.4,47.1,46.9,47.7,47.6,47.7,47.8,51.4,53.9,32.4,37.5,28.5,39,67.8,67.5,28.6,22.1,38,25.2,38.3,38.4,27.8,34.9,43.8,85.7,87.2,88.3,88.5,120.1,89.3,111.1,24.1,68.8,67.8,506.4,208.8,210.9,74.4,74.1,88.6,106.2,105,104.9,103.9,94.3,91.2,66.1,61.8,79,58.9,58.2,58,58.9,52.8,54.2,50.7,56.7,43.7,4.3,48.5,48.1,49.5,52.5,53.1,52.6,52.2,64.3,64.2,63.8,65.3,72.3,374.4,152.4,545.1,46.4,46.3,47.3,47.3,47.2,47.2,59.6,51.7,51.9,49.1,49.4,49.7,50.2,55.7,56,56.2,55.2,44.8,45.2,44.8,44.8,53.3,52.5,53.4,53.7,61.5,62.2,60,60.7,74.3,74.8,149.7,67,66.7,67,67,120.8,120.9,799.5,605.3,116.8,116.9,116.7,117.3,669.4,106.3,105.7,59.4,58.5,111.6,111.1,101.9,107.2,106.2,129.8,80.8,79.1,110.3,110.7,130.7,83.9,83.5,91.8,94.2,46.8,59.5,262.2,117.3,395.5,177.2,40.9,130.4,126.1,125.7,109.7,108.7,108.4,27,27,27.2,27.1,51.4,51.5,29.5,29.6,29.6,29.5,29.4,29.7,59.6,32.7,32.7,32.9,32.6,59.5,29.7,31,36.1,40.3,34.4,33.8,32.2,32.8,32.2,34,31.9,33,33.5,33,32.8,33,32.9,32.9,35.9,36,35.7,35.8,192.7,27.8,27.1,37.5,27.3,27,37.6,30,29.8,29.5,29.2,26.6,26.6,26.6,26.6,32.4,32.3,32.2,31.9,29.8,29.8,29.8,29.7,39.1,39,39,38.9,26.4,26.1,26.3,26,26.3,26.3,26.1,26.1,27.1,27,27.1,27,26,25.9,51.9,37.9,28.9,28.2,28.2,47.4,47,92.3,41.7,41.6,65.8,37.2,102.6,111.1,268,146.8,74.1,229.4,29.5,29.5,92.5,36.7,36.4,35.6,37.9,29.3,23,22.7,23.1,23.1,46.1,46.2,29.4,29.5,29.6,29.8,28.2,37.5,26.5,27.4,39.5,39.6,28.9,37.7,32.5,32.4,32.5,32.8,39.2,39.2,39.3,39.4,46.2,46.3,110.8,31.6,31.6,32,31.5,46.7,1,93.8,277.9,38.3,18.9,19.1,38.2,19,19,22.9,22.8,22.3,0.4,22.6,26.1,26.1,25.9,25.6,37.4,37.3,36.6,36.6,38.4,38.2,38.1,38.4,161,173.5,193.5,15.6,57.3,72.7,17.4,17.8,34.8,36.2,36.4,32.5,31.9,32.9,32.9,51,26.5,24.1,44.2,47.2,22.2,21.7,22.6,24.6,44.1,28.9,38.5,43.1,51.5,41.4,39.5,62.3,56.3,20.9,27.4,38,25.9,41.1,26.8,40.7,15.7,19.8,20,19.8,19.9,19.7,37.2,36.9,37.1,37,42.1,163.2,53,106,13.6,18.8,70.9,35.7,35.6,29.7,30.5,44.5,31.1,54.5,42.5,30.7,26.3,26.1,13.9,31.1,31.6,31.7,17.3,43.4,33.9,34,32,31.2,36.8,18.4,18.3,33,32.9,33.1,16.5,16.6,33.3,16.8,16.5,38.3,37.9,15,24.5,23.8,32.4,32.7,34.6,31.7,26.6,26.6,33.2,33.2,22.9,22.9,22.8,23.2,24.4,24.6,24.6,24.5,26.4,26.4,26.5,26.4,26.4,26.4,26.6,26.4,29.4,29.5,29.4,29.6,27.9,28,28.1,28,28,27.9,27.9,28,27.9,28,56.2,242.3,84.3,112.3,60,59.1,51.4,51.6,75.3,37.6,37.5,73,36.5,36.6,29.7,29.8,59.4,29.6,29.7,59,14.4,49,63,33.2,33.3,32.9,33,32.9,32.7,33,32.7,39.1,39.1,39.1,39.1,29.4,29.4,58.7,59.4,29.6,29.3,61.2,30.4,30.3,30.5,30.3,30.3,30.4,27.7,27.6,55.1,27.9,27.6,27.7,27.7,28.1,27.7,55.5,56.9,56.7,44.4,44.3,44.4,44.2,44.6,44.5,44.9,44.9,62.4,62.5,62.6,62.8,72.8,73,145.8,97,48.6,48.7,48.5,48.6,48.4,48.5,37.7,60.3,53.6,62.8,22.9,23.6,15,54.3,110.9,32.6,20,23.7,44.1,9,11.8,14.8,29.1,130.5,13.6,14,15.4,16.1,13.3,10.9,10.6,15,11.4,9.4,8.4,14.2,18.5,22,48.4,27.4,36.3,36.2,37.7,35.2,41.2,13.5,13.4,23.5,24.2,18.6,18.5,13.7,15,13.2,11.2,27,37,38.5,43.4,43.9,103.9,19.6,25.3,25.2,28,22.9,25.7,26,26,26.3,26.4,27,27,26.6,26.7,53.2,50.4,51.9,25.9,25.8,25.8,25.6,25.7,25.7,49.3,28,26.3,26.1,26.3,25.8,25.7,25.8,51.5,50.7,36,16.9,25.8,26,26.1,25.9,26,25.8,25.9,25.9,25.9,51.8,25.8,26.1,25.8,25.8,9.2,42.6,27.7,27.8,53.6,51.8,54.6,25.6,26.2,26.2,51.4,103.9,104,52.3,51.7,51.7,103.8,97.9,105.8,136.7,52,52.5,52.5,61,42.1,51.9,52.5,52.5,51.6,52,35.7,53.1,7.7,49.8,57.9,46.1,46.3,52.3,52.8,39.6,26.1,25.9,25.9,26,26,25.9,26.3,26.4,26,25.9,52.4,46.8,4.9,52.1,51.8,52,52,51.9,52,103.8,194.8,67.9,67,52.9,53,25.2,26,26.1,26.1,26.2,26.1,26.1,25.9,25.8,25.9,26.1,27.6,27.7,25.9,25.9,26.6,26,26,26.2,26.3,26.4,26.2,25.8,25.9,26.2,25.8,26,26.2,26,25.7,25.8,26.1,26.1,26,25.9,26.1,26,26.3,25.8,25.8,26.1,26.1,26,25.9,26,26.1,25.8,26,25.9,25.8,26.1,26.1,25.9,26,25.9,25.9,51.6,52.2,51.8,52.2,28.1,27.3,27.4,26.1,26.9,26.8,25.9,26.1,26.2,25.9,26.3,26.2,10,18.5,24.4,25.7,36.8,15.9,26.1,25.9,25.9,26.4,26.4,25.8,26.4,26.2,25.7,26.2,35,16.8,26.1,38.1,63.5,52.6,104.3,51.7,51.5,52.8,51.6,26,26.2,42.5,35.4,26.2,21.1,30.9,25.8,25.9,26.2,25.5,26.1,26.2,26.1,26.2,25.6,25.9,25.9,25.3,25.5,25.6,25.3,25.6,25.6,15.3,27.1,27.4,40.5,47.5,7,40.2,25.6,25.5,25.5,25.5,26,26,31.8,44.7,25.6,42.7,11.2,35.7,27.8,39.1,87.2,68,101.6,79.2,103.5,51.5,51.6,51.6,51.7,51.3,54.3,53.8,53.6,52.5,51.1,51,51.6,51.4,26.6,25.4,25.4,25.9,25.8,25.7,31.2,32.1,26.1,26,26,25.9,25.8,24.9,26.2,26.3,25.7,25.9,25.8,26.3,26.1,26.3,26.2,25.6,25.7,26,26,37.5,40.4,25.5,38.4,26.3,25.7,25.6,26.2,17.9,36.6,26.3,26.3,25.7,25.6,26.3,25.9,25.7,69.7,54.6,52.7,52.4,52.5,52.4,52.1,52.2,52.1,52.1,52.5,52.7,51,182.7,51.8,103.9,168.7,116.7,114.2,87.1,52.8,51.7,53.4,52.3,52.1,52.1,78.3,52,52,52.1,51.6,26.6,26.7,26.6,25.7,52.4,51.8,51.7,52.6,26.2,26.4,24.6,42.3,35.5,25.1,25.2,26.8,27.5,27.5,27.3,27.5,25.8,25.8,26.3,32.4,32.4,30.3,30.3,51.4,25.6,25.8,25.5,25.5,22.2,29.7,52.3,32.7,19.2,51.4,51.1,51.4,196.6,62.9,26.1,25.7,25.8,26.4,26.9,26.1,26.4,26.2,26.2,26.1,25.9,29,29,28.3,28.2,26.6,26.7,25.9,26.1,26,25.6,25.5,26.3,26.3,25.7,26.8,25.7,25.8,25.6,25.5,26.4,26,25.9,26.1,25.5,26.1,26.1,26.3,25.9,25.8,26.7,25.5,26.2,26,25.7,26.5,26.1,26.1,26.1,25.6,26,25.9,26.6,25.3,25.5,26.4,26.2,26.1,26,37.7,40.3,52.7,76.9,52,55.8,53.7,26,25.9,25.8,26.2,25,25.7,26.1,26.4,23.4,2.5,26,26.4,25.7,26.6,25.7,26.1,26.1,25.8,25.8,26.2,25.7,25.6,26,25.3,26.1,25.7,25.8,26.1,26.3,25.6,25.9,26.1,25.9,25.3,20.8,31.3,27.1,25.7,26.2,25.5,26,25.7,25.8,25.4,26.5,25.7,25.1,25,25.5,26.6,26,25.7,12.9,27.8,26.1,12.2,13.5,25.4,26,25.8,25.9,25.4,26.2,23.6,23.6,31,24.6,25.4,26.2,25.7,25.8,26,25.6,25.8,25.8,51.7,26.2,25.5,25.4,26.5,39,51.8,77.3,109.5,52.5,38.4,38.7,52,26.2,26.3,28.3,28.8,28.8,26.6,25.6,26.3,26.8,25.7,26.6,26.2,25.6,26.5,26,26,26.6,26.6,26.3,26,26.8,26.8,26.6,26.6,25.7,25.5,26.6,26,26.2,26.3,26.6,25.7,26.4,27.3,26.5,26,25.9,26,27.1,25.7,25.6,54.5,26.8,26.4,26.9,26.9,26.4,26.3,105.4,26.6,78.9,25.3,25.9,26.8,71.3,52.3,27.1,25.9,51.6,79.2,52.7,50.9,24.7,27.2,25.7,25.5,25.9,25.3,38.4,25.6,26.2,25.7,25.7,17.8,27.7,25.1,26.8,25.8,25.7,26.2,25.9,26.5,25.7,26.5,25.2,25.7,26.3,25.9,26.2,26.1,25.4,25.8,25.4,26.1,25.5,26.7,25.6,25.2,26,25.9,25.7,25.8,26,25.6,29.7,27.3,26.8,26,26.2,26.5,25.9,26.6,26.4,26.2,25.3,26.4,25.3,25.8,25.9,26.9,24.9,25,104,25.5,26,25.9,25.6,26,25.1,26.1,25.4,26,25.4,26.3,25.2,26.2,25.9,26,25.8,25.8,25.2,25.6,25.5,25.2,23.7,27.3,25,26.8,24.4,21.5,25.8,26.3,25.8,25.9,25.6,26.1,26,76.7,25.8,25.8,25.6,26.4,25.3,18.8,27,27.3,13.8,11.9,26.5,25.4,26.4,26.3,25.7,25.6,26.4,102.6,26.2,26,26.1,25.1,25.6,24.9,26.8,35.1,5.2,42.1,27.9,38.2,38.2,42.1,35.9,14.2,14.3,15.4,15.5,15.9,15.8,31.6,25.3,25.6,25.9,26.1,25.3,48.1,56.7,49.5,26,24.9,25.2,25.4,25.4,25,14.8,21.5,37.2,37.7,37.8,22.7,23.2,29.1,30.9,29.9,34.7,25.3,25.7,26.7,92.2,51.4,26.3,25.7,25.9,25.9,26,26.5,26,26,26,26.2,25.7,25.7,26.1,25.3,26.3,25.9,26,26,25.9,25.5,25.6,25.7,25.9,25.9,26.1,25.5,26.2,25.9,25.7,26.1,56.8,85.8,52,25.8,25.7,26,25.8,26.2,26.1,26,26.3,26.1,26.1,26.2,26.2,25.9,18.2,28.2,26.3,26.2,26.7,27.2,25.7,26.5,26.1,12.7,26.1,26.5,26.4,26.1,26.9,26,26,26.3,26.1,26.1,25.4,25.8,25.7,25.5,25.7,26.2,25.9,25.2,26.4,25.5,57.1,27.2,27.1,39.9,39.7,50,25.8,25.5,25.2,25.8,25.4,27.5,26.2,26.2,26.6,26,25.8,25.6,26.7,25.8,27,25.9,25.9,26,25.7,25.9,25.7,25.5,25.9,34,25,26.4,25.8,26.3,25.5,25.3,26.5,25.5,25.4,18.5,26.6,24.1,28,25.9,26.4,26.3,26,26.2,26.1,26.1,25.6,25.9,25.9,25.4,26.5,25.4,25.2,25.3,26.1,26.4,28.2,29.2,26.3,26.2,26.3,26.2,26.2,26.1,26.1,25.4,26.2,26.3,25.5,26.2,25.9,26,50.8,51.6,44.4,26.3,26.3,26.1,26.1,52.8,52.3,27,25.3,51.6,52.7,51.8,52.5,26.1,25.5,26.5,26.4,168.7,27.3,52.5,26.5,26.3,25.8,26.6,26,25.9,26.5,26.2,26.3,26.9,25.9,26.2,26.3,26.4,26,26.7,26.6,25.5,26.7,26.5,26.1,26.4,25.8,26,25.1,25.1,26.5,31.6,25.5,26.1,26,26.2,25.8,25.5,26,25.8,26,25.8,26.2,26,26.2,27,25.9,26.4,26.4,26.1,26.3,26.2,24.1,2.2,26.3,26.7,52.2,52,52.1,52.8,25.4,26,26.3,26.1,26,26.1,26,24.7,26.2,26.3,25.7,20.9,25,26,26.7,25.9,26.2,26.4,26.2,25.5,27.1,26,26.5,25.9,26,26.1,26.1,26.1,26.6,25.7,26.3,26.3,52.6,78.3,26.5,26.4,26.6,26.1,26.5,26.4,26.5,26.3,26.3,26.2,26.2,26.4,26.1,26.4,26.5,26.6,26.1,26.3,26,26.4,26.4,26,28,24.7,26.8,25.7,26.3,25.8,26.7,26.4,27.4,24.9,26.6,25.9,26.6,26,26.5,26.3,26,28.8,28.7,27.9,26.6,25.5,27.5,7.9,17.5,26.1,26.1,53.1,52.6,52.8,106.2,53.9,52.3,52,52,51.7,52.1,25.5,25.5,25.5,26.6,25.7,26.2,25.8,25.7,25.4,25.9,26.4,25.2,25.8,39,25.5,25.2,26.1,26.4,25.5,25.1,25.9,25.9,25.9,26.1,25.2,25.3,25.8,25.8,25.9,25.3,25.4,26.3,25.7,25.3,25.4,26.2,25.7,25.6,25.6,25.8,24.3,25.6,25.8,25.4,25.8,25.8,25.6,25.8,26.1,7.1,18.6,25.6,19.5,60.1,51.6,25.5,26.3,25.6,25.6,26.2,25.9,26.1,25.9,25.8,26.1,26.8,25.9,26.1,25.7,26.1,26,25.8,25.7,26.2,25.4,26.3,25.4,26.5,8.9,17.4,25.7,25.6,26,25.9,25.9,25.9,25.9,25.4,25.9,26.1,25.7,25.7,25.7,25.9,25.7,25.9,26.2,25.7,25.9,25.7,25.8,26,26.5,24.9,25.7,25.7,25.6,25.9,26,25.8,25.7,25.9,25.7,25.6,26.5,51.4,51.4,51.9,25.3,26.2,26.3,25.7,25.6,26.3,26.3,26.1,26.6,26.2,26.1,25.8,26.1,25.8,26.7,25.6,26.5,26.2,26,26.2,26.1,26,26,27.1,26.4,26,26,26.3,26.5,25.9,26.5,25.9,26.1,25.9,26,25.9,26.1,25.7,26.2,25.8,25.9,25.8,32.4,20.3,25.8,26,30.9,42.8,53.6,55.2,26.3,26,26.2,26.4,33.1,10.3,9,26.2,25.9,25.9,26.2,27.3,24.9,26.6,25.8,25.5,25.8,26.2,25.8,102.6,27.7,27.3,25.3,26.6,26.5,25.9,26.5,26.1,26.3,34.1,41.4,40.7,24.4,16.4,33.7,27,27.3,27.5,13.4,13.5,13.6,13.6,13.2,13.2,13.6,13.4,13.3,13.3,27.1,26.3,26.5,27.2,13.3,13.6,13.5,13.8,13.7,33.4,20.3,27,25.9,26.6,26.7,26,56.7,32.9,27.9,27.5,26.9,26.2,26.1,26.1,14.9,11.5,26,26.7,26.1,27.1,26.6,26.7,26.5,26.5,41.6,32.8,22.7,23.7,19.1,25.4,66.6,26.8,26.8,28,31.4,26.8,26.5,26.5,27.5,26.2,26.2,27.4,31.7,26.9,26.9,26.8,27.7,27.4,27.9,23.4,23.5,109,41.2,29.5,32,27.3,27.5,27.1,28.1,27.9,27,26.9,29.5,29.4,26.7,26.6,27.5,27.5,27,27.1,140.3,55.2,35.8,36.1,33.7,33.8,35,17.8,17.7,24,24,32.3,43.9,21.8,22.1,27.6,27.6,36.2,36.3,40.3,30.3,149.5,131.7,59.6,39.5,39.3,25.6,27.1,26.2,27.8,27.5,26.1,27.6,26.5,26.7,26.4,26.5,26.3,26.2,25.8,25.9,26.4,27.5,24.1,93.5,77.8,51.8,50.6,24.1,24.2,38.8,39.3,79.2,24.4,26.6,26.7,19.8,6.1,26,35.7,35.9,43.6,22,44.5,37.7,37.5,38.6,38.3,27.5,27.5,31.1,31.3,38.4,25.7,26,25,23.5,27.7,25.2,26.4,25.3,12.8,16.1,16.1,25.4,25.7,25.7,38.4,38.6,145.6,45.9,41.5,52.2,44.5,26.4,38.7,38.5,38.8,25.7,38.6,39.9,37,40.2,25.6,25.3,25.3,27.4,141.4,24.8,26.4,37.4,25.6,25.9,25.5,24.9,26,25.2,25.2,25.5,25.5,26.3,25.5,25.4,25.1,25.6,11.3,13.9,26.6,25,25.9,25,25.2,25.2,25.7,25.2,24.5,25.7,24.3,25.2,20.2,20.8,25.3,24.4,27.9,24.2,26,25.4,26,26.3,88.4,38.8,25.1,22,227.3,92.3,53.5,31.1,20.1,38.5,39.1,39,38.7,38.9,25.6,25.2,37.9,26.7,25.6,26.4,25.9,26.2,25.6,25.6,27.3,25.7,25.5,26.1,26,26.5,27.7,25.2,25.2,26.1,26.7,26.2,36.5,29.7,36.2,14.1,1.3,48.2,52.1,34.7,21.3,2.2,6.7,2.5,34.4,31.5,29.7,3.7,12.5,22.2,37.1,28.4,25.8,49,109.5,118.5,37.3,106.3,115.6,46.3,45.2,36.1,110.1,76.1,30.1,30.5,50.7,51.1,58.3,54.8,68.1,67.3,34.5,35.2,34.1,34.2,24.8,25.1,50.1,182.6,29.8,30.3,30.4,30.4,36.9,36.4,34.3,35,30.4,31.5,31.3,31,116.6,91.7,46.6,46.5,35.2,36.3,36.2,36.6,26.6,26.7,27.1,26.3,25.9,26.7,26.6,26.9,21.7,21.9,75.1,147.3,188.5,106.7,84.1,87.8,29,29.2,28.8,28.6,29.1,29.2,29.8,28.2,60.6,31.2,30.5,26.3,27.3,26.8,27.5,25.1,26.5,27.4,27,28.3,26.1,54.8,108.4,28.7,29.9,44,44.2,42,42.4,46.4,45.9,45.1,45.6,33.7,33.5,38.2,28.5,117.2,45.5,12.5,30.7,32.3,32.5,37.5,37.6,36.3,34.6,28.3,28.4,27.7,28,5.7,22.3,27.8,31.5,32.9,32.3,31.7,30.6,32.5,31.4,31.4,31.6,32.1,32,32.1,41.4,42.4,14.5,70.4,353.2,43.4,25.7,33,25.9,30.3,36.4,36.5,29,29.2,29.1,34.2,23.7,29.3,29,29.1,30,31.3,31.1,31,35,34.6,68.5,172.7,141.1,144,73.4,114.4,114.2,126.3,125.4,74.5,78,35.5,72.8,73,55.9,90.3,100.2,101.2,123.2,61.3,61.5,68.1,69.3,138.7,155.4,156.2,105,103.2,208.7,172.8,42.5,43.9,43.7,44.1,40.2,41.5,26.9,55.4,36.5,36.9,36.9,36.7,50.3,51,59.8,40.9,101.9,50.5,51,102.4,51.2,51.7,42.1,42.7,42,41.2,36.7,37.3,36.7,37.5,43.7,30.7,55.5,67.1,178.6,43.5,43.5,43.1,22.2,22.4,34.2,35.4,35.2,35.3,57.6,58.6,180.6,61.2,61.4,37.7,38,23,41.6,33.4,22.3,44.6,60.7,30.2,30,41.6,42.8,42.3,42.2,88,93.1,91.2,45.2,44.7,52.6,54.1,53.4,53.7,45.2,45.7,45.9,44.5,66.9,69.7,275.1,17.8,91.7,23.2,34.7,66.9,68,100.2,60.6,60.7,44,59.9,35,60.9,56.7,61.3,61.6,53,51.5,51.6,51.6,81.6,82.1,72.6,35.5,36.7,34.2,35.2,70.3,44.2,45.1,44.1,45.5,102.3,50.2,51.3,83.3,230.5,91.7,45,45.6,54.1,54.6,54.5,54.7,57.1,57.9,57.3,57.9,78.5,79.8,117.5,119.5,646,90.9,92.3,65.4,65.7,73.4,63.2,118.1,240.4,91.6,106.5,135.4,131.6,63,67.8,62.3,62.4,62.9,63,66.9,67.2,67.1,67.4,47.2,48.6,47.7,48.6,37.1,37.4,37.9,37.7,42.9,43.3,44.4,43.2,67.3,67,71.5,72.1,144.2,149.4,140.5,73.7,67.5,100,50.3,50.6,50.9,51,50.7,51.4,56.9,56.1,51.6,53.9,54.3,54.4,30.3,78.6,47.2,48,49.4,47.9,32.8,34.5,67.9,37.9,56.9,47.6,48,86.6,144.9,34.9,46.8,46.4,70.7,48.2,47.8,42.6,41.3,41.7,41.8,20.8,21,42,39.4,40.1,39.1,39.9,39.8,40.3,48.8,49.8,49,49.9,27.2,116.1,35.2,35.9,36,35.5,36.5,37.3,37.3,37.7,32.6,34.1,33.3,34.3,31.5,32.4,32.6,32.1,34.7,35,35.5,35.1,22.6,22.5,23,23.1,66.2,33.3,35.9,34.5,33.9,25.7,25.4,17.1,34.2,38.5,38.8,39.9,38.9,39.9,40,37.9,37.4,42.9,43.7,43.5,43.9,22.7,40.7,40.1,39.8,40.5,27.4,28,27.2,26.3,63,63.6,62.6,63.1,180.6,46.7,45.9,23.2,23.4,22.6,23.8,29.2,28.9,29.7,28.6,28.1,28.6,28.3,28.6,43.7,29.3,72.7,36.5,36.9,36.9,36.6,25.2,24.9,29.9,21.1,26.3,26.4,27,26.3,23.9,23.8,24.4,23.6,24.5,23.9,24.1,23.4,26.4,27,27.4,26.4,28.4,27.1,28.6,27.1,27.2,26.8,27.2,26.6,26.4,27,53.9,26.8,30.2,16.6,17.1,16.7,17.3,15.7,16.6,16.9,19.7,19.6,18.9,19.6,20.6,20.6,20.4,20.7,37.4,36.9,36.9,36.8,22.8,22.4,22.5,22.3,22.5,22.3,22.2,22.7,15.1,14,13.7,14.7,109.3,121.3,47.5,61.4,55.1,55,48.7,44.2,114.5,30.3,57.5,1.1,29.5,27.4,64.2,33.5,33.5,34,33.6,28.3,27.8,27.6,27.5,35.7,35.2,71.1,35.8,35,35.9,35.5,34.7,36,35.8,35.1,139,33.7,34.3,33.9,17.4,17.5,32.6,32.7,33,32.9,35,35.5,35.1,34.8,34.9,34.9,35,35.1,45.3,45.7,45.4,45.8,46,47.5,93.6,44.1,44.2,43.6,43.2,50,49.8,50.6,49.3,40.9,40.4,29.9,33.8,62.2,44.2,88.1,76.2,77.8,148,74.1,73.3,47.9,48.8,48.2,48.9,51.4,51.8,51.6,52.2,42.1,42.4,42.3,42.8,167,149.2,54.9,8.9,18.3,52,15.6,7.2,121.8,5.1,45.1,28.9,18.3,32.8,64.3,49.7,53.3,14.3,44,72.9,41,41.5,41.6,20.4,22,29.8,30.7,28.1,27.3,24.6,25.4,24.9,25.8,26.8,23.3,25.5,25.2,27.6,27.4,28,27.7,20,21.1,20.5,20.6,21.4,21.7,22.1,22.1,26.6,26.2,26.8,26.4,28.4,27.7,29.6,28,24.5,24.8,24.9,24.1,97.3,26.1,26.1,51.9,26.4,26,26.9,26.1,30.7,31.7,32.2,31.8,33.5,32,32.7,32.8,26,26.2,26.3,26.4,25.9,25.8,26,26.8,34.8,36.1,35.8,35.8,31.4,31.9,31.8,32.1,27.6,28.3,28.4,28.2,21.6,22,22.1,22.1,44.1,44.8,26.2,26.2,26,26.4,25.7,25.8,25.5,26,165.8,29,30,31.9,26.8,35,32.9,35.9,35.4,32.1,27,31.6,24.7,33,29.3,27,26.3,29.5,27.9,28.1,27.5,29.5,28.9,34.1,32.5,20,19.6,33.8,33.7,18.5,17.2,18.6,17.9,19.3,18.5,19,18.9,17.7,17.5,17.8,17.2,16,16.4,16.5,16,17.1,17,17,16.6,75,37.4,27.8,24.5,31.5,23.4,22.9,15.9,15.8,16.1,15.3,28.3,13.8,14.2,13.9,14.2,13.8,12.8,19.7,18.5,19.8,18.2,13.4,13.7,13.4,13.3,17.1,17,18.3,17.7,16.5,17.2,17.1,17.3,68.7,37.4,19.2,18.4,38.6,38.7,26.5,26.7,27,27,13.5,12.9,13.7,13.4,27.8,14,13.9,23,14.9,8.3,44.5,28.4,28.4,14.3,14,14.3,14,12.9,13.3,13.3,13.5,15.2,15.4,15,15.5,11.1,11,11,11.1,21.6,21.4,13.1,17.4,23.5,50.8,39.1,45.5,38.3,36.5,32.3,27.1,49,103.9,56.4,25.1,25.1,25.4,25.1,40,34,33.1,33.5,55.3,22.5,22.1,28.9,39.4,40.5,8.5,33.4,18.8,20.2,32.9,35.3,35.5,29.7,8,20.7,23,23.1,23.6,24.2,8.5,26.5,36.1,18.3,18.2,17.7,16.9,70.3,47.3,47,42.5,43.1,46.3,46.7,66.4,66.4,81.2,40.6,41.5,50.6,25,25.7,21.5,21.4,21.4,22,32,31.4,39,19.3,19.8,16.9,17.3,18,17.2,23.8,3.2,54.8,92.4,2.6,69.5,74.7,65,49.4,36.2,131.2,19.3,20,19.7,19.9,32.3,16.5,16.7,15.3,15.9,15.8,16.5,16,16.4,16.2,16.3,12.3,12.8,12.4,13.4,16.8,16.8,21.2,20.9,24.2,24.9,17.9,18,18,18.2,18.8,18.7,18.8,18.1,15.5,15.6,15.8,15.8,11.6,8.6,21.4,42.2,41.8,42,15.6,15.7,15.8,16,23.2,23.6,23.5,23.3,26.8,13.5,13.5,18.1,18.4,18.6,18.4,15.4,15.7,15.4,15.8,18.2,19.5,19.2,19.9,15.6,16,16.2,15.9,16.7,17.1,17.1,17,13.8,13.8,14,13.9,17.8,18.2,18.5,18.6,13,13.1,26.2,26.1,26.1,15.5,15.7,30.1,62.3,68.7,39.5,171.4,37.6,192.9,24.1,23.9,22.4,1.7,24.7,51.1,52.6,51.6,48.4,49.9,48.1,49.6,47.2,38.8,43.7,90.4,59.5,62.3,90.6,74.2,67.8,81.4,82.3,67.1,102.3,83.4,120.7,60.3,90.5,92.2,163,80.8,40.7,41.1,39,39.2,46.7,47.4,40.3,40.8,87.9,48,48.8,37.4,38.2,38.1,38,36.3,36.7,38.6,34.6,35.2,34.8,31.8,31.9,42.2,40.9,41.5,20.8,21.2,35.9,21.7,55.6,57.1,65.1,123.6,72.9,45.2,62.6,38,58.2,52.3,38.8,30.2,17.2,14.6,18.6,51.8,42.7,48.1,44,27.1,27.7,32.4,67.8,61.5,54.3,28.3,27.2,42.5,42.5,111.3,55.5,56.1,35.5,35.9,35.7,36,28.4,28.4,28.4,29.2,29.9,31,30.2,30.6,46.2,47.6,42.8,37.2,39.7,40.6,28,29.4,29,29.3,54.8,55.6,52.2,41,27.9,14.4,126.7,204.3,153.6,118.3,77,46.6,45.6,51.3,40.5,36.7,35.7,36.5,36.3,23.3,23.1,24.2,23.5,32.4,32.5,33.2,32.8,22.8,22.9,23.4,23,27.4,27.3,27.4,26.9,26.1,26.7,28.5,25.9,53.4,53.6,58.4,58.3,125.2,96.2,95.3,344.5,344.7,125,93.5,47.1,46.9,41.3,41.2,49.8,32.5,25.5,25.8,25.5,25.7,36.4,37,31.7,35.6,47.4,23.9,23.8,26.8,26.9,26.5,26.8,33.3,33.2,33.2,33.7,35.2,35.7,38.6,33.9,42.7,42.7,44.9,34.2,34.9,34.9,35.2,28.8,28.5,29.2,28.7,29.2,25.4,28.4,27.1,41.5,41.8,43,42.1,22.9,23.6,23.6,23.5,23.7,19.7,44.4,44.2,43.6,188.3,88.8,88.3,48,48.4,54,42.8,30.3,31.1,61.8,30.7,30.2,31,31.6,27.6,28,28.1,27.7,27.3,28.2,27.8,27.6,29.9,31.7,30.9,31,25,26.2,25.3,27.1,40.8,41,40.8,41.3,38.2,39.4,39,39.4,38.4,39.4,32.5,33,33.6,32.8,32.7,32.3,32.9,32.4,39.3,38.7,18.7,19.1,19.2,19.5,20.7,20.6,20.8,19.7,26.1,25.6,26.8,26.1,26.7,21.3,59.9,97.7,6.3,148.2,51.1,78.5,43,42.3,179.8,19.9,27.7,14.2,14,29.4,29.1,29.3,29.8,26.9,27.7,27.1,27.4,20,19.8,20.9,20.2,35.2,33.6,1.8,23.3,23.9,24.3,23.7,17.2,17.9,19.2,16.8,18.4,18.2,17.5,17.8,22.6,23.3,24.4,22.8,27.9,13.2,13.3,26.7,26.5,20.2,19.3,19.3,18.4,14.5,13.9,14,13.7,12.6,12,12.5,12.1,14.2,13,26.6,15.4,14.2,14.8,13.8,13.8,13.7,28.9,15.9,15.8,15.8,15.7,10.7,10.6,21.4,21.7,21,25.6,60,20.9,21.4,10.6,10.6,10.3,10.5,12.8,12.3,12.8,12.4,13.3,12.6,16.3,16.3,13.5,13.6,14.7,12.2,8.8,9.2,9.5,9,14.8,14.7,14.6,14.6,13.7,12.8,13.6,13,14,13.1,13.8,13.3,14.3,13.6,13.9,13.9,13.2,13.1,13.6,12.9,19.6,20,38.9,44.8,44.9,10.7,10.4,10.9,10.8,10.9,10.6,9.7,9.8,18.8,19.2,18.6,17.9,15.9,15.7,16.5,15.7,15.6,15.6,15.7,15.5,47,47.4,46.8,46.8,34.2,32.3,19.7,25.4,13.4,16.9,25,25.3,25.4,23.9,19.2,20,19.4,19.6,22.9,24.1,25.3,22.5,15.7,15.4,15.7,16.5,19.2,20.4,36.7,25.5,26.5,51.6,113.4,28.2,28.6,29.4,28.7,19.6,20.7,20.5,20.7,22,22.8,22.2,23.8,25.9,24.1,25.3,24.7,39.8,39.9,37.3,19.1,18.5,22.3,22.7,23.3,23.2,19.7,19.3,19.4,18.4,39,38.2,20.3,20,23.5,22.9,18.3,19.2,39.5,35.4,35.3,31.2,31.8,62,46.7,5.1,66.2,57.3,54.9,47.7,41.3,48.9,40.7,25.7,35.3,41.8,29.2,34.1,38,31,35.6,41,35.5,30.1,39.3,48,42.2,40.2,50.6,38.3,53.2,3.4,15.4,70.9,50.4,9.7,29.1,25.1,23.7,25.4,24.9,27.8,28.1,29.1,28,26.9,25.5,45.6,46.1,27.7,28,28.4,25.9,53.1,52.6,5.4,15.9,21.1,42.1,51.4,51.5,52.3,25.7,25.8,37.1,38.2,38,38,45,44.1,23.2,21.5,21.8,20.2,23.6,22.1,24.1,22.5,40.3,40.5,39.2,41.1,36.2,19.2,18.4,22.6,25.2,24.9,25.2,24.7,19.7,20,19.8,19.6,17.7,16.9,35.8,22.8,23.3,47.7,91.7,40.1,7.5,94,24.7,19.3,19.7,14.4,14.5,15.3,14,51.9,48.9,35.2,56.8,60.8,55.6,125.8,34.2,32.8,23.7,39.6,39.4,40.9,46.8,33.1,53.7,102.9,88.2,75.5,71.1,36.9,40.8,38.4,49,51.5,48.3,42.5,96.7,100.2,69.8,56.6,48.7,27.9,44.9,67,46.3,48.6,74.2,94.1,86.1,78.9,77.7,64.5,81.4,63.2,68.1,82.1,57.1,66.5,64.5,67.4,63.1,109.5,87.9,140.3,67.3,130.7,112.7,109.2,99.1,77.8,138.6,52.5,97.1,20.1,64.6,98.5,109.9,179.8,82.9,50,51.2,57.1,40,25,60.1,41.4,39.1,38.1,43.9,59.6,65.2,57.6,32.2,58.2,18.6,83.4,52.2,55.7,62.8,84.5,79.6,63.5,5.8,82,37.6,74.1,31.8,53.6,30,24.6,50.5,52.5,67.5,27.5,126.1,45.8,51.2,49.2,51.6,51.7,62.7,100.4,141.9,31.2,55.8,33.8,40.9,65.9,49.8,59,72.7,66.9,46.9,97.1,144.5,178.3,17,64.2,91.3,91.3,91.3,91.2,91.3,95.1,52.7,45.3,78.8,86.4,114.1,133.7,46,118.2,150.9,52.8,0.4,187.3,125,73.4,83.7,28.9,19,60.8,24.1,33.6,67.8,112.4,90.5,0.8,138.5,183.6,105,111.1,45.1,87.5,56.1,65.1,98.8,101.4,72.8,123.6,175.2,179.6,174.5,116.4,112.5,50.4,166,197.9,130.6,157.3,107.4,151.1,135.2,49.7,96,101.7,103.6,102.1,86.1,105.2,89.1,75.7,40.8,51.2,75,25.5,97.8,108.1,58.2,60.2,89.1,80.1,152.2,79,77.8,80.7,78.1,78.7,38.7,40.8,67.4,78.7,82.4,72.4,61.4,55.1,51.6,55.9,51.8,51.7,84.8,93.2,42.2,31.8,42.1,55.3,62.2,54.3,68.5,75.1,61.6,68.8,40.3,46.8,74.6,9,28.3,41.1,52.3,43.6,70.9,39.7,41.8,48.2,32.5,59.4,42.8,36.1,68.7,136.1,55.8,48,17.7,36.6,50.8,52,72.4,16.7,58.1,66.8,13.3,20.3,65.5,41.2,93.4,178.9,61.1,56.8,48.2,47.6,25.8,60.9,58.8,50.6,51,100.3,72.4,95,66.5,81.8,83.2,36.4,37.5,79.8,43.2,49.5,60.9,52.5,32.6,72.9,80.3,69.1,76.5,71.6,68.9,73.5,65.6,66.2,88.7,77.7,48.7,28.2,36.4,39,52,51.8,42.8,67.2,43.5,44.7,55.1,44.2,57.6,55,44.9,51.5,25.9,66.7,56.4,56.2,33.8,57.8,48.9,106,41.7,53.5,43.6,41.6,42.6,61,69.2,61.5,53.7,58,66.5,63.4,76.3,61.5,63.2,86.3,92.7,56.4,50.2,63.5,48.2,73.9,41.6,38.8,91.3,87.5,46.6,46.1,34.8,29.8,13.6,34.6,50.6,49.2,89.3,88.7,41.2,79,66.7,38.5,53,51.5,52.4,60.6,60.1,55.9,51,38.5,64.7,53.1,53.3,53.1,69.7,18.4,42,75.3,68.2,99,72.4,47,79,95.7,69.1,103.5,92.2,115.7,25.2,32.6,51.7,72.7,51.6,71.9,56.5,17,52.6,170.1,65.2,53.8,187,160.6,178.2,32.1,114.9,203.1,103.2,150.2,155.1,201.6,132,177.2,54.6,113.3,100.3,102.1,102.1,114.8,126.5,113.9,93.4,83.8,99.2,98,159,97.5,70.2,5.9,256.9,66.5,69.3,100.7,134.1,57,104.3,97.6,91.3,103.9,101,139.6,262.2,138.5,143.5,103.1,108.6,113.8,124.5,52.9,141.4,97.8,73.4,87.6,5,102.4,109.9,46.2,95.2,9.2,96,115.8,139.2,164.9,244.9,176,171.8,165.2,95.6,93.8,102.6,80.2,102,100.8,99.1,94.8,94.3,96.1,88.7,86.6,95.2,96.3,79.2,93.5,107.8,111.5,125.2,57,74.3,5.5,187.2,53.5,62.3,97,60.8,61.8,51.6,68.7,67.9,70.2,82.3,83.7,58.7,89.9,71.1,17,123,138,55.6,90.9,107.5,159.5,87,115.3,100.3,142.4,66.7,65.3,56.3,37.8,50.2,47.2,68.2,73.5,59.2,89.9,66.9,54.4,57.3,53.1,60.2,43.2,52,64.5,57.7,56.9,65.1,57.6,54.4,70.1,60.8,67.8,61.4,57.7,103,101.5,92.3,86.5,132.1,87.2,274.9,163.6,103,108.9,114,78.4,80.9,73.9,129,123.9,116.7,133.6,142.9,124.2,122.3,112.4,117.7,76.6,69.6,23.3,34.8,56.2,65.1,84.5,83.5,69.2,65.2,125.3,120.5,65.4,95,88,32.1,92.6,128.8,137,171.5,191.4,134.7,101.7,101.4,68.4,54,100.8,108.5,81.6,80.9,126.6,74.4,84.1,80.9,100.1,41.4,80.5,104.7,114.2,213.9,113.9,114.6,193.4,195.6,94.6,93.8,92.5,46.8,48.1,69.6,72,74.5,89,47.5,87.3,58.5,21.1,78.9,102.3,17.4,83.3,7,87,55.8,59.3,120,85.5,86.3,93.8,144.1,136.7,134,140.6,125.9,65.1,184.1,135.5,140.1,114.2,110.2,109.3,80.6,96.3,28.7,14.4,66.8,98.5,136.2,72.2,71,125.2,7.2,175.4,210.2,31.3,191.7,175.5,179.4,150.1,144.8,151.4,113.2,119,85.5,72.6,126.3,119.8,192.1,96.6,68.6,174.8,148.1,236,239.9,202.2,126.1,235.3,117.1,100.7,94.4,111.5,109.4,104.8,153.6,101.1,82.7,60.2,68.6,33.5,59.5,18.8,74,126.8,67.7,129.5,15.6,77.4,103.7,14.9,64.3,99.5,71.2,78.7,125.7,131.4,49.9,64.3,21.4,66.9,180.2,124.9,5,50.8,5.5,79.4,0.1,150.4,11.4,99,26.4,70.2,97.5,94.5,84.3,101,63.7,134.5,84.2,65.1,66.6,55.3,60.1,33.3,60.4,109.1,94.4,72.8,76,144.5,61.7,57.8,53.1,61.3,37.8,43.7,67.2,48.7,56.6,66,71,51.8,63.5,91.3,113,130.4,92,69.2,44,40.3,47.4,83.4,75.7,63.7,51.1,54.4,111.8,42.3,16.7,22.5,7.8,82.9,8.4,5.2,28.4,45.5,88.7,154.4,15.2,8.9,95.8,45.2,8.7,41.1,39.4,41.1,40.5,40.6,38.9,51.6,37.1,100,71.8,59.8,65,60.3,58.3,54.8,76.9,75.4,52.4,47.5,37.9,52.1,42.3,58.8,0,22.2,40.4,37.1,55.5,63.6,25.2,64,82.3,128.9,79.3,58,69.4,93.5,61.6,71.3,50.6,59.3,52.6,49.4,33.9,43.8,9.8,28.8,41.8,46.4,58.4,48.7,5.4,59.7,60.6,65.5,43.1,56.2,82.6,71.1,0.8,66.6,66.2,92.7,66.1,120.3,90.1,65.9,10.2,207.6,143.8,189.7,113.8,79,72.5,82.7,526.9,255.9,312.2,24.4,94.4,74.5,95.4,22.6,84.1,215.6,200.2,45.4,70,179.3,88.2,121.4,111.9,79.2,91.7,101,122.4,68.5,68.7,136.2,93.1,102.3,227.6,125,107,288.2,297.6,292.8,295.2,723.3,581.9,706.1,580.8,289.4,51.6,74.3,15.3,112.8,166.8,168.1,95.6,59.3,59.7,107.8,90.8,81.8,9.6,56.5,33.9,59.6,79.2,76,147.6,240.4,191.6,60.8,57,35,36.9,26.3,26.3,33.6,24.8,24.8,21.8,24.1,32.8,11.4,76.5,31.5,33.1,31.7,41.2,53,25.7,37.6,20.3,26.9,23.4,27.9,17.7,16.9,19.3,14.2,16.4,16,18.5,16,17.7,15.7,18.9,15.9,18.2,17.3,16.7,17.2,16.2,17.9,22,28.4,22.2,29.7,22.2,29.5,37.9,46.8,51,33.1,25.5,35.4,29.9,24.2,71,104.1,104.6,147,128.8,220.7,96,174.2,19.8,4.4,161.5,173.4,237.4,137.9,231.9,124.3,32.6,185.2,184.3,292.3,145.1,204.9,93.6,20.2,23,7.8,201.7,185,131.4,53.3,171,183.8,34.4,222.8,3,144.6,192.8,166.1,342.4,171.3,253.7,79.5,194,146.8,183.3,195.1,205.1,182.3,188,143.4,66,143.7,167.4,155.4,139.9,231.4,207.2,182.7,137.2,140.4,149.6,30.2,175.2,98.8,48.4,1.5,71.2,116.4,96.4,1.3,18.6,88.6,150.6,170.3,39.3,1.2,89.9,209.8,103,135.6,58.5,244.8,48,0.9,22.7,109.3,103.1,47,136.3,303.7,179,120.1,153.3,128.4,105.7,20.9,178.6,114.6,109.7,138.7,132.4,171.5,139,154,141.8,147.1,254.5,208.5,112.3,261.3,118.4,61.6,313.4,33.7,116,149,151.5,149,164.8,15.5,178.9,92.3,125.5,154.5,133.6,119,132,90.4,55.6,53.7,112.3,100,99.4,109.2,115.1,128.1,142.3,144.4,157.1,142.5,131.6,107.1,71.8,15.5,166.8,152.1,104.3,81.5,29,173.8,173.1,210.4,181.5,161.8,22.1,130.2,105.7,139.9,141,279.6,120.6,34,155.2,95.7,210.9,129.5,53.4,208.9,204.2,129.9,138.2,23.8,56,76.2,48.5,39.3,50.1,33.6,97.9,35.2,213.9,97.7,82.4,9.7,124.9,121.3,139.1,136.4,125.9,130.9,96.1,205.8,215,172.2,159.9,8.6,216.7,30.7,211.1,182.6,126.1,26,128,149.7,162.5,190.3,201.2,171.6,162.3,32.9,21.9,87.9,205.5,144.5,99.2,156.2,32.6,59.6,29.2,67.8,174.3,102.9,17.6,19.8,20.9,144.1,152.5,101.8,83.3,27.5,29.6,93.9,213.7,6.7,237.3,222.1,259.9,139.2,293.4,140.8,161.8,226.5,207.2,278.9,22,150.6,228.5,193.6,206.6,374.3,180.6,97.3,104.2,19.9,134.1,152,149.6,135.7,76.1,75.8,139.2,78,77.7,140.9,128,142.3,142.7,58,31.6,84.9,32,26.7,23.1,22.3,25.9,51.9,109.1,41.7,29.7,23.9,20.9,19.9,34.8,31.6,113.2,36.4,80.4,95.3,75.7,85.1,189.5,89.7,48,14.7,29,74.6,126.6,115.4,231.4,180.9,140,37.3,99.9,39.8,83.5,14.8,47,80.3,7.6,10.5,36.3,29.1,74.4,40.3,47.7,48.6,50.6,51.7,62.9,30.2,66,101.6,51,25.5,115.5,69.9,941.3,99,127.1,46.6,45.2,60.1,34.5,39.3,96,139.7,32.2,108.7,85.3,32.4,41.1,10.7,13.9,6.9,24.4,24.9,14.4,28.8,2.9,20.3,19.2,0.9,25.3,0.7,17.9,9.8,29.2,16.1,42.3,17.8,21,40,49.1,27.8,54.6,29.3,7.3,18.9,8.2,4.1,23.4,6.9,5,24.6,10,8.2,5.2,2.3,5.5,4.7,1.9,5,12.4,9.1,10.7,53.8,36.8,0.1,30,34.6,14.8,41.2,18,6.8,3.3,2,1.7,3.8,4.7,58.9,61.2,131.5,13.7,50.5,50.8,18,17.3,24.9,9,6.7,7.9,14.9,8.1,8,12.9,36.2,73.3,13.6,20.4,13.1,14.1,0.3,10.8,10.1,16.2,6.7,16.4,19.5,18.6,19.9,11.3,20,22,16.1,16.1,22.5,45.3,43.9,22.5,5.4,7.7,12.7,6.8,26.1,37.5,14.8,14.4,2,16.4,10.9,18.6,9.3,8.5,14.4,10,11.1,16.4,17.7,12,12.5,16.1,11.8,15.7,13.4,7.8,49.5,5.8,417.1,110.6,176.9,141.3,85.4,100.1,100.1,147.2,146.8,102,27.3,35.3,53.6,38.1,55.9,56.4,57.3,81.4,78.5,76.6,239.4,644.9,115.6,125.3,97.7,55.8,51.8,27.9,62.6,47.4,23.9,22.1,25.2,39.2,48.1,30.8,41,16.4,27.7,22.4,61.8,62.6,197.2,99.1,65.6,34.5,44.8,56.8,48.6,89.4,65,38,9.1,8.4,77,66.2,68,73.3,74.1,93.4,34.2,46.7,23.6,104,82.2,70.8,80.1,10.8,98.6,150.7,125.3,51.7,20.4,139.4,19,100.6,74.4,139.1,131.8,167.3,154.3,54.3,47.8,4.2,56.4,56.2,27.2,80,87.4,115.2,19.4,125.2,103.1,80.8,93.1,26.3,69.3,44.4,118.4,69.5,131.7,67.2,46.8,23.4,25.9,42.3,47.4,59.9,37.1,35.6,65.3,21.5,18.3,57.7,41.4,44.1,46.8,67.6,40,38.6,34.6,51.4,30.5,15.1,22.4,19.5,45.5,50.7,63.8,37.6,39.1,29.4,52,54.5,27.6,22.1,37.8,21.4,20.7,34.9,17.9,25.6,94.2,38.6,66,8.3,16.1,43.2,59.4,32,28.7,17,9.3,30.4,58.4,72.1,35.6,137.8,10.4,9.2,1.5,21.9,13.2,15.5,15.6,13.8,11.4,6.5,20.7,16.3,25.7,19.6,19.6,16.9,55.3,12.9,10.4,33.8,16.3,6.5,19.3,40.4,34.3,27,13.8,18.1,22.3,30.5,17.1,14,17.7,6.4,22.3,20.7,23.2,26.8,20.6,17.3,3.2,3.8,5.7,10.9,22.8,33.9,36.3,29.9,20.2,25.6,20.8,23.9,95.9,52.5,20.3,21.2,22.9,18.7,16.5,18.4,33.3,28.7,24.9,19.4,45.3,12.7,13.5,8.4,8.3,7.6,13.8,18.1,19.5,21.2,20.9,18.3,3.6,13.2,1.2,15.5,55.9,10.7,17.6,38.5,20.7,16.8,16.4,9.2,9.3,18,35.1,41.6,49.7,15.3,16.2,30.6,35.3,7,13.7,39.3,57.8,62.2,34.5,24.8,21.9,18.4,20.4,2.4,18.2,25.9,17.8,10.6,11.5,19.2,3.4,13.3,87.2,60.1,17.2,14.5,12.2,12.1,11.1,14.4,15.3,11.6,11.4,17.1,15.2,12.8,13.9,37.6,17.1,20.5,15.7,11.6,10.9,10.7,17.4,28.9,14.8,10.6,9.8,10.2,12,18.5,11.1,10.8,11.3,11.2,7.4,6.5,10.6,10,20,17.8,17.6,47.3,15.2,16,14.7,14,19.1,18.5,20.9,22.5,23.7,25.7,13.7,14,7.7,11.4,22.7,23.1,22.7,25.5,23.7,37,37.5,22.1,22.5,88.3,22.1,21.6,18.3,20.6,21.2,19.9,18.4,15.1,14,23.2,12.9,6.5,19.2,17.4,36.9,34.4,22.5,14.5,20.2,20.3,14.5,32.7,18.5,24,23,25.7,32.1,19.7,95.6,32.6,22,21.6,20.3,26.3,25.6,1,37,28.4,9.3,49,22.5,34.4,39.1,11.5,32,22,15.1,10.5,9.2,9.9,20.4,12.4,16.4,20.9,23.8,42.2,28,20.4,8.4,34.2,27.3,9.2,84.6,45,5.9,7.8,48.6,77.4,43.8,85.2,11.3,38.8,30.1,24.4,35.7,69.7,41.9,48.6,26.3,46.8,39.3,44.3,34.6,39.9,38.5,35.9,50.5,50.3,13.6,9.7,15.2,15.7,9.7,7.7,23.3,41.6,40.4,23.1,22.8,27.6,15,11.5,19.7,41,49.2,29.1,37.2,6.8,72.9,102.2,73.8,185.1,102.5,114.6,52.9,78,48.3,27.5,14.1,24.3,24.2,58.6,66.3,28.8,38,39.7,51.6,33.6,28.9,16.4,6.6,6.2,50,38.2,55.9,34.1,19.6,16.1,4.2,28,44.7,58.2,32.5,31.3,49.8,8,10.7,67.7,26.2,25.2,24.9,30.7,26.7,23,22.1,48.5,11.8,46.8,8.8,19.9,19.5,12.1,20.5,7.9,5,8.1,5.8,5.7,4.5,10.5,3.7,3.8,6.7,8.2,3.6,8.1,7.5,10.6,9.2,17.5,55.6,38.6,15.7,28.4,35.9,44.3,48,17.7,16.3,14.2,13.5,14.1,10.6,16.2,14.2,11.9,14.4,13.5,9,13.1,15.7,13.3,14.7,7.9,12.8,18.9,4.3,6.4,7.6,5.4,6.8,7.1,4.3,5.1,5.1,6.9,5.1,14.2,26.1,22.9,37.9,29.4,27.9,29.8,15.5,10.2,7.1,10.2,10.3,9.7,7.8,8.7,30.2,14.3,11.8,14.5,9.2,8.9,16.7,9.3,7.5,9.2,13.5,8.9,7.2,7,6.4,4.8,6.1,4,6.1,8.1,7,6.5,7.9,5.9,5.6,7.7,4.3,8.3,5.8,7,9.6,9.6,33.4,15.5,8.2,11.6,13.4,7.3,6.5,6.1,8.2,9.6,7.1,3.6,10.1,14.1,24.7,26.8,27.1,22.1,22,13.5,25.9,34.1,23,17.3,21.7,13.5,16.5,16.4,16.2,13,7.7,8.4,9.6,7.6,8.3,6.8,13.7,10,5.5,13.2,8.4,9.5,13.2,16.4,10.5,11.5,9.2,8.5,4.3,6.3,7.4,14.9,13.4,19.8,13.9,18.4,12.3,17.9,16.6,21.6,24.4,22.4,81.7,2,39.6,35.3,27.1,24.6,33.7,35.5,21.7,23.6,33.1,26.7,37,24.7,31.3,26.8,8.3,31.6,16.7,21.4,14.1,14.6,12.1,12.3,14.6,12.2,13.3,0.6,14.4,17.6,13.7,14.6,15.1,18.6,1.1,22,23.8,23.1,22.2,22.8,11.9,0.3,10.5,23.5,31.1,23.8,12.3,9.1,20.4,20.8,18.3,12.2,11.2,14.6,14.8,14.7,1.1,10.4,9.9,10.2,9.4,10.5,10.5,11.8,16.9,6.2,0.5,6.3,13.3,13.6,13,66.2,29.4,30.6,19.5,23.4,26.1,28.1,33.7,44.2,48.6,5.7,48.5,35.1,41.5,39.4,21.2,45.5,49.8,28.8,17.6,46.1,9.1,29.7,57.8,59,59.8,62.2,46.2,75.8,27.7,160,232,32.2,130.1,121.5,89.3,48.2,35.2,6.5,18.8,24.7,27.5,27.8,29.4,28.4,27.1,28.1,2.1,41.5,28.4,28.6,48.2,45.9,39.5,38.6,20.6,54.8,43.8,42.5,37.6,27.7,23.2,35.2,26.2,48.1,89.5,53.7,46.3,5,34.9,25.2,39.1,39,56.8,35.7,35.7,51.7,47.2,40.8,45.1,44.8,40.9,46.1,40.2,158.2,15.9,45.3,58.7,27.6,34.7,16.5,36.4,60.1,41.5,38.2,48.6,53.2,37.3,34.8,8.6,40,21.5,46.9,54.7,45.5,36,41.2,34.2,37.4,42.1,21,45.3,52.4,99,29.6,24.9,30.6,21.5,26.3,22.5,27.4,16.6,22.2,21,33.3,15.6,21.1,29.2,31.7,22.9,17,23,50.8,62.4,32.7,47.2,10.4,32.8,35,45.6,83.5,34.2,51.3,35,32.7,43.1,23.3,23.8,33.5,108.6,53.5,49.5,52.4,51.5,121.5,29.1,46.8,36.4,39.5,28.8,43,54.8,11,43.7,49.3,34.3,39.1,37.6,32.5,16,33.7,7.4,34.4,41,35.4,43.4,44.1,27.5,27.3,35,41,20.1,20.8,21.3,23.6,21.1,20.5,23.7,25.7,27.5,30.5,35.1,37.8,89.4,70.1,38.2,116.2,71.8,59.4,27.5,22,40,51,40.2,45.9,37.8,31.1,25.2,51,52.6,38.5,38.6,45.2,61.3,55.2,52,39.4,36.1,46.7,49.2,10.9,18.2,67.5,56.4,63.3,31.1,32.1,31.1,30.8,31.5,20.6,19.2,24.7,23.9,34.5,13.2,26.1,41.5,50.8,52.6,112,59.2,71.9,34.9,37.1,39.3,34.2,34.2,64,55.4,8.3,37.8,23.8,25.2,45.2,24.2,13.6,66.4,19.3,9.2,22.1,35.5,41.9,9.6,46.1,102.8,90,54.2,53.1,182.3,71.8,58.4,55,40.3,50.9,42.9,11.4,43.1,84.7,52.6,27.2,47,44.1,41.5,26.6,26.6,27.9,43.5,32.8,36.1,32.8,37.8,39,31.8,38,29.9,50.2,39,44.7,37.5,61.3,39.5,47.8,60.7,9.5,19.6,28.6,31.6,24.1,6.6,12,11.2,21.6,26.9,23.6,12.2,8,20.8,22.4,23.8,19,52.9,24.5,9.5,33.2,25.2,15.1,60,41.9,24.9,30.5,19.8,32.1,43.5,41.2,42.1,36.7,42,48.2,69.1,49.5,45.3,45.4,58.9,52,51.7,94.6,47.7,39.3,31.2,26.6,27.8,28.2,14.4,17.4,27.3,28.3,32.8,39.2,57,26.6,13.9,16.6,29.8,32.4,35,3.3,33.3,38.4,35.1,115.9,97,75.9,37.9,23.9,24.4,26.7,8.2,22.4,29.9,29.9,23.3,34.4,48.9,31.7,53,46.7,81.1,83.2,69.2,64.5,27.1,34.2,85.2,59.5,54,19.7,13.7,45.8,26.5,31.1,36.7,24.2,35.1,53.6,92.5,84.7,29.4,110.2,62.9,29.7,48.4,25.7,39.7,47.3,43.9,47.3,58.1,70,92.5,72.5,50.4,91.9,71.4,47.2,43.3,46.1,34,42,38.1,5,26.7,27.1,6.9,40.1,57.3,31.5,22.2,45.7,17.3,36.6,33.8,32.8,31.4,39.9,46,47.5,48.8,45.2,40.6,29.9,33.7,36.7,37.4,32.3,20.2,26.3,32.3,40.6,48.7,51.2,68.1,43.5,43.2,60.1,55.8,59.6,61.2,84,78.8,77.9,61,70.6,65.3,32.1,101.2,59.1,41.4,49.8,55.5,83.1,92.7,91.3,50.4,25.8,112.5,62.6,135.8,18.3,52.1,15.9,111.2,40.1,9.3,28.3,62.3,42.1,53.2,9.3,31.5,33,19.3,23.8,53.6,25.6,57.1,35.7,25.4,29.2,41.8,42.9,42.6,45.2,44,43.4,42.3,42.3,31.9,23.9,38.1,24.6,62.4,30.4,29.3,32.4,68.6,58.8,96.3,79.6,93.5,52,34.7,26.8,51.7,76.5,70.4,47.3,48.8,73.8,77.3,79.3,83.9,102.2,189.8,128.2,71.6,67.4,166.6,152.6,27.1,65.8,83.4,47.1,43.3,33.4,29.5,41.1,62.4,89.3,83.2,35.8,28,31.5,27.9,46.3,29,31.6,44.4,24.7,127,82.1,92.4,49.4,142.3,23.1,62,8.9,149.5,40.2,12.5,50.2,47.4,22.7,26.2,20.7,18.1,16.5,12.1,9.4,21.5,22,18.6,17.3,29.4,25.9,41.6,18.6,19,62.1,65,67.9,43.1,36.3,27.5,6,17.8,31.7,31.9,35.4,35.6,27.6,14,8.3,36.1,28.7,36,11.8,17,23.8,14.1,18,10.5,9.9,12.8,7.9,14.1,10.3,10.2,21.2,27,44,55.2,45.8,62.4,55.5,57.3,46.5,42.4,34.4,40.7,47.4,60.7,52.7,35.2,21.1,30.8,34.4,48.4,91.9,35.2,18.3,28.4,30.9,30.5,17.7,36.7,37.3,28.2,42,24.3,48.4,12.2,164.6,148.3,170.2,119.1,43.5,93.7,60.9,84.7,24.6,60,46,97.4,50.6,28.1,28.8,47,41.1,41.1,44.3,46.7,47.4,318,72.7,82,52.4,59.3,55.2,83.4,37.9,39.3,35.1,47.2,31.1,55,105.7,180,30.1,24.8,119.7,68.1,41.4,35.8,100.3,82.7,73,39.8,45,67.9,56.9,53.4,61.6,57,42.8,36.5,30.7,44.3,17.9,48.9,21.3,33.5,27.8,39.3,38.7,31.2,19.6,17.5,59.7,52.3,60.3,111.7,68.6,25.4,26.7,46,56.9,72,40.8,38.5,36.5,38.1,40.2,39.3,17.2,57.8,58.1,36.7,43.1,42.8,45.6,50.3,56.6,8.7,10.6,23.5,30.5,16.4,54.6,16,67.4,23.6,15.9,34.3,8,18.8,38,54.1,54.6,15.8,22.7,30.1,35.1,15.4,71,61.6,57.5,54.5,55.4,46.3,77.1,111.3,15.3,46.5,38.1,27.9,44.1,110.8,100.5,69.8,45.2,48.5,58.5,60.9,85.4,83.2,211.2,79.3,55.6,28.7,25.8,12.1,73.3,41.2,39.8,157.5,88.3,20.2,39.5,8.4,16.4,35.3,28.6,35.3,16.6,94,26.2,33.2,19.7,19.5,26.3,26.9,26.3,26.4,26.2,25.9,27,26.6,24.8,23.8,23.8,11.7,23.5,23.7,11.4,12.5,11.7,11.8,23.8,11.9,11.7,11.6,24,23.7,23.9,53.4,76.1,76.2,80.9,53.9,41,37.1,51.3,51.4,56.9,59.4,60,49.4,33.9,47,47.2,35.5,46.9,59.4,47.5,23.6,36.1,118.2,118.4,71.3,84,41,33.7,43,47.5,43.4,44.1,48.5,60.7,66.1,37.1,41.3,14,15.3,11.4,21.6,37.6,21.3,40.1,40.6,23.8,78,215,254.3,53.5,30.4,17.1,14.1,40.6,24.4,12.4,41.8,54.3,58.9,13.7,16.7,37.7,63.3,54.2,57.3,30,42.5,20.5,27.8,51.7,36.1,85.5,15.6,3.8,5.5,107.7,129.3,78.7,76.3,44.1,46.1,85.4,67.3,64,50.6,50.9,60.4,60.7,125.4,73.4,83.4,24.6,64.6,63.3,137.5,1.5,72.1,39,40.7,49.3,51.9,42,38.9,39.9,24,36.6,36.7,53.4,51.5,37.3,35.6,43.8,47.4,50.7,116.1,95.9,91.2,49.3,52.3,61.3,58,51,20.4,24,48.1,50.9,63.1,18.6,17.7,5.3,5.4,20.1,47.4,33.4,29.4,57.4,94.1,55.1,14.5,25.3,84,51.2,54.1,24.7,75.2,18.7,19.8,54.1,41.5,37.9,67.5,97.8,91.9,48.5,60.8,34.6,35.2,43.3,14.9,8.1,22.2,34.2,99.4,11,9.9,57.5,26.5,113.2,33,85.5,80.7,71.5,90.6,30.5,22.9,12,17.1,15.4,6,6.1,6,6.1,6.1,6,6,6.1,6.1,6,12.9,13,13.2,13.8,8.1,14.1,25,52.2,30.3,57.1,13,30.6,31.2,50.3,49.8,43.5,20.3,21.9,56.8,43.4,17.1,12.9,8.1,10,17.7,51.5,11.3,11.5,16,11.1,11.8,14.1,13.4,13.2,26.2,15.9,8.9,9,8.7,7.8,7.3,10.9,10,10.2,14.2,15.6,42.4,29.2,36.4,31.8,19.7,19.4,22.5,24.6,22.3,22.2,39.2,27.8,27.7,36.1,8.3,27.5,55.5,48.7,75.3,26.3,27,18.9,19.1,26.9,26.8,35.1,26.3,26.4,19.4,19.5,39,25.3,25.7,43.3,33.2,33.2,22.3,22.4,21.5,21.5,21.9,22.1,21.8,22,50.3,50.5,55.7,55.2,29.3,29.3,29.2,29,37.2,36.7,35.9,43.1,21.8,21.7,44,51.1,25,25,23.6,23.6,47.1,49.3,49.2,36.3,36.1,36.4,36.2,48.8,48.4,49.1,48.8,72.5,36.4,36.2,19.9,19.8,18.1,18.1,18,17.9,17.9,17.8,42.5,46.4,25.5,25.5,25,25.2,25.8,25.7,55.8,55.8,37.4,37.9,38,27.1,51.8,39.1,20.2,20.1,21.6,21.8,40.5,25.5,25.9,18.8,19.1,19.1,19.5,31.8,35.6,17.8,17.9,46.2,47.6,33.6,28,37.8,16.6,16.8,33.4,28.8,38.8,25.5,25.4,19.7,19.8,21.6,21.7,21.4,21.5,27.1,27,36.2,39.8,31.9,34.2,26.8,27.1,27.6,27.7,29.9,30.1,32.1,32.1,80.7,40.5,40.3,16.8,16.7,32.4,19.9,19.7,17.4,17.3,16.6,17.8,17.7,17.6,17.6,19,18.8,16.2,17.3,17.3,18.1,18.1,18.4,18.3,17.7,17.7,18.7,18.5,18.3,17.7,17.6,17.8,17.6,18.7,16.9,19,18.9,21.6,21.4,36.3,35.2,54.8,46.1,21.4,21.7,19,7.4,26.4,26.9,28.2,36.7,17.8,17.8,27.5,27.7,35.5,23.6,23.7,35.3,30.5,30.4,33,33.2,35.7,36.9,35.6,36.2,36.1,26.9,27.1,37,31.3,29.7,28.9,17.9,17.8,27.3,27.9,35.3,36.8,53.8,36.3,35.4,37.2,36.4,35.9,36.1,36.6,37.4,30.5,35.8,36.8,72.3,35.3,17.6,17.7,18.3,18.5,18.3,18.5,17.6,17.7,17.9,18.1,17.1,17,17,16.9,19.9,17.4,17.5,18,18.1,18.1,17.9,17.8,17.6,18.1,18,18.1,17.9,17.9,17.9,17.9,36,21.2,21.1,37.1,35.6,35.4,26.8,26.8,36,26.7,26.5,34.4,15.5,15.1,21.8,23.3,32.5,35.1,34.6,36.1,18.6,18.4,35.7,26.5,26.3,40.5,31.3,26.4,11.5,17.8,22.4,22.2,21.9,21.8,35.6,36.8,19.4,21,31.1,30.3,26,25.3,28.2,27.5,34,34.4,36.4,34.3,33.3,29.1,24.3,27.9,29.4,29.9,33.3,32.6,32.3,32.6,32.9,40.8,40.5,36.9,34.5,35.8,34.5,36.7,19,33.7,38.5,39.1,35.9,32.2,32,36.5,77.6,50.6,68.1,55.5,35.3,35.5,36.8,17.6,17.6,34.8,38.6,37.7,26.4,26.3,37.1,35.7,40.7,49.2,40.1,25.8,25.6,39.3,38.5,0.4,86.4,42.1,41.6,30.6,39.5,46.5,46.5,94.7,126.8,47.4,57,66.2,73.5,23.5,106.3,50,7.6,19.9,22.9,41.8,67,65.7,66.2,106.8,45.4,45.5,112,69.4,0.3,48.7,40.9,76.1,315.9,46.5,47.2,81.5,77,46.4,193.9,31.7,64.3,140.4,85.1,48.8,54.2,27,26.9,55.3,55,53.1,52.9,36.8,53.8,52.4,53.2,53.8,54.7,46.1,46,51.7,53.7,53.6,54.3,52.8,53.9,53.4,53.5,53.9,53.5,90.1,91.4,187.5,27.2,107.1,61.5,61.9,75,75,72.5,72.7,70.7,35.3,35.5,35.6,35.7,54,125.5,63,63.4,64.4,64.5,50.8,70.8,54.5,54.7,87.5,74.5,68.9,56.4,53.8,54.1,51.8,71.5,26.3,47,52.6,32.2,75.2,73.1,65.7,65.4,44.7,189,222.8,488.2,200.8,127.1,57.4,44.2,33.6,21.6,17.1,16.9,35.7,17.7,17.9,17.8,18.1,17.9,18,17.9,17.9,17.8,25.9,28.5,53,21.6,18,18,18,16.6,17,18.5,17.6,17.5,18.2,18.1,17.6,17.7,18,18.1,18.1,14.9,14.7,25.2,17.7,18.1,17.9,17.9,17.6,18,17.5,18,21.3,23.5,13.9,14.3,17.1,17,18.4,18.4,17.5,17.9,17.9,17.9,18.5,17.6,17.8,18.4,14.8,15.1,17.6,17.7,25.1,29,17.7,17.9,18.3,18,18.1,18.5,18.9,20,17.6,18.3,16.7,17.2,17.7,18,18.1,20.3,20.9,31.4,32.7,20.9,17.9,17.7,36.6,33.7,32.7,21.4,19.6,20.4,25,23.4,19.7,19,83.3,93.2,33.6,42.5,238.9,48.8,105.5,123.6,109.4,113.1,225.1,243.2,187.1,122.8,118.4,51.9,114.5,106.7,81.7,82.9,88.8,64.2,51.3,62,57.8,42.6,78.5,58.4,50.7,66.9,58.7,67.8,59.2,63.4,78.7,130.4,87.8,65.2,65.4,69.9,61.7,78.1,76.9,63.9,72.4,58,111.3,81.6,70.4,72.7,41.7,38.4,43.9,55.3,65.2,52.7,49.1,76.2,63.6,68.2,59.9,65.4,63.2,60.2,119.1,237.2,88.7,88.6,72.8,81.7,91.8,72.8,82.9,105.6,73.4,91.8,126.8,116,97.3,110.8,127.4,102.9,203.3,202.2,37,153.5,0.3,414.5,136.2,136.6,377.5,132.2,176.7,152.7,39.4,161,74.1,81.5,90.3,87.1,54.9,52.8,88.3,87.3,72.6,74.2,85.4,83.2,70.4,68.2,67.7,68.6,117.9,114.9,125.9,107.9,92.1,82.9,78.5,79.5,77.4,83.6,58.9,57,26.9,69.8,120.7,34.6,104.9,45.6,35.4,18.5,68.1,108.5,58.3,43,47.2,39.6,40.8,41.5,41.9,38.1,36.5,42.8,37,53.6,35,33.2,35.7,34.8,33.2,35.6,36.7,41.2,71.1,27.7,63.4,32,31.9,57.4,51.3,41.7,42.4,52.3,49.3,51.4,47.1,27.1,56.7,32.5,24.7,53.6,101.6,99.6,110.4,72.7,129.5,152.7,154.5,66.6,168.8,33.8,205.2,125.7,122.5,121.1,121.3,84.4,83.3,68.5,66.7,81.3,70.8,35.6,92.7,83.8,103.8,105.3,111.1,178.9,27.7,81.7,17.3,10.3,120.6,44.9,20.9,32.2,393.1,197.3,201.3,32.3,112.7,147,82.1,73.8,80.9,21.2,49.6,59.3,61.1,67.5,194.1,169.3,79.1,73.6,67.3,29.1,56.9,83.2,70.4,75.8,67.6,37.7,40.5,42.6,82.7,86.9,91.7,84.4,87,53.6,15.4,130.6,49.2,52,49.3,50.6,41.6,82.7,37.2,10.4,9.1,101.3,54.6,51.3,62.4,50.9,79.6,78.5,109.3,110.5,116,75.6,69.4,45.4,49.3,50.6,50.5,57.7,51.2,43.7,37.3,56.2,64.8,61.6,58.6,61,0.2,62,43.5,41.5,81.7,48.9,44.6,16.8,7.8,34.6,24.9,30.1,27.1,34.1,42.8,15.4,33.1,39.4,25,11,7.9,20.9,23.9,37.1,30.1,29,47.5,48,112.7,57.1,57,61,38.4,49.8,58.2,50.1,59,26.7,29.2,35.6,22,28.2,16.6,27.4,39.6,24.3,42.6,19.9,28.8,27.9,39.8,29.6,33.5,31.6,32.5,41.8,85.5,71.3,59,40.7,26.7,27,24.2,23,21.3,21.7,31.5,33.4,23.3,56.1,88,42.1,28.8,42.3,105.1,52.4,72.6,45.3,15.3,19.5,33.6,43,34.1,77.4,46.6,44.6,51.9,48.4,45.3,31.9,57.7,34.1,48.9,27.8,25.9,25.2,27.3,26.8,34.3,31.5,38.2,69.3,43.9,40,57.3,25.1,8.1,27.3,34,47.1,12.3,21,54.4,50.8,50.4,24.7,48.6,43.9,40.7,49.9,55.1,35.5,38,36.7,36.7,36.7,1.5,31.6,33.1,33.2,43.3,27.4,24.2,45.4,43.8,56.4,138.4,32.4,55.2,29,37.1,73.5,36.9,74,14.5,25.4,38.2,37.3,51.5,59.7,16.2,19.1,23.4,24,55.5,52.8,77,39.4,69.7,19.4,13.4,79.3,36.1,95.6,144.8,205.6,78.8,56.3,46.2,14.6,16.9,16.8,16.9,16.8,15.5,15.5,16.3,16.3,19.1,65.5,42.1,36.1,22.2,19.7,21.7,17.8,14.7,16.7,9.9,12.9,13.6,15.6,12.1,2.2,15.7,17.8,22,21.5,20.2,19.1,24,22.8,43.1,36,58.4,53.9,81.4,34.5,31.4,40.7,32,33.2,24,22,16.5,29.3,34.6,30.2,39.1,86.4,84.3,28.1,24.8,34,25.6,54,45.6,13.5,16.1,24.9,21.9,29.7,15.7,19.6,57.5,33.7,46.7,23.6,26.6,32,20.1,16.3,17.6,20.1,18.7,53.5,34,31,40.5,34.8,34.3,46.2,35.5,38.4,43.8,35.8,35.7,37.9,130.1,156.7,164.3,108.4,47.2,82.5,42.7,21.9,26.2,15.1,17.1,12.4,12.5,10.9,11,8.2,7.7,7.7,16.9,16.7,16.7,16.8,16.8,49.5,0.1,32.3,114.1,0.1,66.7,0.2,16.7,1.8,44.8,243.4,96.9,34.3,24,0.9,15.9,67,102.4,44.2,54.6,42.7,50.2,41.5,22.5,26.6,30.8,28.4,38.4,33.1,33.3,50.4,9.8,42.3,45.9,43.4,13.6,13.4,31.8,35.1,37.2,46.4,42.9,41.2,42.9,42.8,40,29.4,76.8,12.1,27.3,95.8,62.2,72.9,74.1,64.5,61.2,94.3,64.6,35.3,20.2,26.2,50.9,39,14.5,28.1,48.3,58.9,69.2,76.5,75.7,58.7,58.2,116.1,96.4,174.8,185.4,122.7,63.7,65,67.2,69.3,42.3,14.7,59,160.3,112.7,52,92.9,35,60.9,94.8,12.2,129.1,70.8,72,16,27.4,78.6,127.6,78.4,78.1,39.5,38.8,19.9,19.8,38.4,26,59.5,58.4,51.7,50,56.7,27.1,26.7,31.4,46.4,70.8,23.3,64.8,26.3,17.1,35,27.5,13.2,17.2,29.1,23.1,17.5,18.5,27.8,60.6,23.3,43.6,19,17.4,28.6,28.1,27.2,39.4,59.3,10,70.5,62.1,27.9,25,25.9,24.6,26.5,28.5,31.7,60.8,29.3,35,19.9,33,32.9,23.7,29.4,35.7,34.1,31.8,32.7,25.2,27.1,23.2,34.7,54,43.3,42.1,51.3,46.3,137.5,72.3,39.4,31.5,72.8,103.2,67.3,106.8,23.8,59.8,60,88.5,33.2,32.5,36,37.9,57.4,81.1,25.5,36.5,39.3,24.8,13.3,13.2,21,15.7,21,33.3,12.6,27.1,14.6,41.2,30.3,17.5,14.5,29.1,9.5,10.6,41.8,23.2,9.2,3,8.8,51.6,27.7,21.8,3.7,10.3,12.8,14.1,0.3,2.5,14,24.7,0.8,27.5,45.9,36.7,16.5,16.4,45.1,6.3,25.8,46.7,57.5,20.7,86.2,31.6,74.7,52.1,52,82.7,35.7,17,51.8,43.5,41.6,39.2,103.8,140.8,38.8,40.6,59,53.6,108,155,41.9,68.8,3,37.2,8.5,52.3,58.3,156.4,92.8,25.2,82.1,28.6,36.8,48.6,69.2,34.2,171,14.1,15.2,10.2,108.4,51,29.7,30,28.2,25.3,32.2,33.6,28.2,2.3,21.5,26.4,16.7,10.9,31.7,1.9,17.8,48.1,13.9,23.1,11.7,17.6,11.5,6.1,11.7,11.8,11.2,11.2,22.5,11.2,11.4,11.2,11.1,17.2,17,17.1,17,17.7,8.7,8.7,31.7,31.2,52.1,26.1,25.4,27.3,27.3,19.4,19.3,10.4,6.4,3.9,3,12.9,15.6,22.9,22.6,26.9,26.7,32.9,16.3,16.3,26.9,13.1,13.1,22.1,22,20.8,10.9,9.8,19.2,12.6,12.7,19.3,18.2,18.8,18.7,14.1,13.9,13.9,13.8,14.1,14,14.1,13.8,22.5,27.4,27.2,14.2,14.1,28.4,14.9,14.5,14.8,14.7,29.2,29.5,43.2,43.5,34.3,34.3,22.8,22,25.6,9.7,19,9.6,9.6,18.8,19,15.5,15.4,15.7,15.6,15.6,17.8,5.6,18.9,6.6,10.8,10.3,14,18.5,20,20.4,6.9,11.1,28.3,9.5,27.9,41.4,27.3,10.7,11.2,13,0.1,22.3,13.1,16.4,16.1,3,17.5,24.7,29.1,4.7,36.2,13.2,48.1,47.9,11.5,46.6,40,46.6,41.1,39.4,29.5,93.9,53.5,13.6,11.1,91.5,25.1,13.7,18.9,13,26.7,18.1,39.2,32.9,27.9,34.4,12.5,15.3,15.9,20.6,24.8,25.3,23.5,25.3,27.4,25.5,66.3,158.4,50.9,53.9,46.2,47.6,51.8,47.3,45,49.3,42.4,128.5,45.8,39.4,43.5,43.2,52.7,54,49.5,163,19.4,64.2,24.6,21.4,24.2,26.4,26.3,45.2,41.2,35.5,27.3,21.9,93.8,116.8,60.7,60.2,58,48.7,47,28.3,56.8,35.9,36.6,36.6,43.7,109.2,162.2,50.9,159.7,105.2,101.1,176.2,37.6,140.2,130.2,119.6,121.5,188,77.8,82.3,33.6,51,54.7,61.2,81.6,174.8,47.5,21.1,26.3,126.7,61.2,39.3,111.5,19.6,44.1,34.9,7.2,48.1,76.5,46.6,40.2,39.5,54.7,52.1,43.2,142.3,55.4,56.5,80.3,179.2,122.3,57,134.1,7.5,56.3,68.9,73.6,49.6,49.8,84.1,7.7,12.6,34.1,10.5,31.4,18.5,30.5,55.6,92.2,111.9,65.3,29.1,27.2,51.4,62.8,66.7,62.9,30.7,43.6,45.5,26.8,25.6,27.3,25.1,24.8,27.7,22.4,54.1,31.2,29.9,30.3,33,15.1,9.8,20.9,27.8,28.7,29.5,26.7,26.1,1.5,31.3,52.2,17.9,19,15.6,62.3,19.2,26.8,33.6,21.8,35.2,43.3,84.3,13.8,13,73.2,148.7,101.6,122.7,8.1,5.3,15.3,14.9,67.5,76.2,28,118.8,35.3,37.8,35.7,97,52.2,57.6,130.5,171.7,33.9,58.2,96.8,82.8,33.8,82.1,50.4,34.5,108.5,92.9,68,45.2,75.7,35,100.1,51.2,71.6,81.6,33.4,23.8,86.9,176.2,583.6,111.4,102.7,47.9,28.5,27.9,23.6,49.6,10.4,35.1,26,26,87.2,131.4,44.5,35,81.4,163.6,43.7,107.2,70.2,28.6,58.2,123.9,40.7,70.2,76.2,42,53.9,43.3,47.1,60.3,32.2,90.5,100.9,9.2,19.7,66.4,44.2,54.6,159.9,214.8,105.8,61.2,24.7,185.9,13.3,185,61.5,62.7,59,66.4,69.7,75.3,73.5,93.1,54.8,75.7,26.9,25.6,76.9,64.8,77.7,82.7,25,244.6,30.6,74.3,77.2,158.6,157.2,114.1,91.9,39.8,43.9,70.5,43.9,29.8,27.8,36.7,59.7,53,53.3,28.1,67.1,31.2,33.7,41.9,80,72.4,43.6,83.4,32.3,45.3,40.3,38.8,38.6,27.3,40.6,27.1,27.8,63.6,42.7,48,52.8,54.3,49.6,82,94.1,92.1,45.7,51.2,36.2,49.9,48.8,50.7,75.1,62.6,65.1,53.9,28.8,49.7,54.8,43,56,56.1,55.2,62.5,47.8,59.9,61.3,49.3,59.3,66.2,62.5,60.4,62.9,64.4,53.6,58.5,46.5,72,7.2,60.4,46.3,43.3,55.4,55.8,64.3,56,60.7,25.7,17.6,38.2,53.5,56.4,76.5,78.3,56.4,49.4,31.5,13.1,17.6,35.6,44.2,56.1,56.4,52.9,48.1,55,99.7,48.7,69.4,41.6,41.2,9.9,48.3,56,60,122.8,82.5,59.7,72.5,54.5,64.9,6.3,38.9,64.7,47.8,3.5,58.7,73.7,73.1,92.2,113.5,101.3,98,64.9,91.6,122.7,33.4,50.2,85.9,126,79.1,69,48,56.6,52.6,74.5,80.5,22.6,133.8,53.6,53.5,34.6,24.5,75.9,109.8,117.3,150,150,81.9,11.1,36.9,37.6,35.4,101.7,57.2,57.7,59.4,47.4,67.3,43.3,39,16.9,169.9,16.6,13.3,34.8,49,9.2,30.9,29.9,28.6,27.5,34.9,43,48.5,41.6,40.7,43.5,42.5,32.6,85.7,51.6,55.9,23.8,74.2,79.1,181.2,59,44.6,28.9,37.3,46.4,38.5,40,28.3,40.6,40.6,20.8,34.9,23.2,104.5,16.4,38.6,69.3,69.8,107.8,168.5,110.9,24.5,69.7,61.2,59.2,74.3,30.1,31.8,59.8,59.6,52.1,35.2,53.7,52,56.6,32.5,37.2,90.5,100.5,60.2,45.2,23.7,33.3,31,45.9,30.2,9.8,7.4,27.3,69.7,8.5,2,6.6,4.2,10.1,11.5,18.6,6.6,28.9,33.7,7.8,24.3,7,6.6,7.5,6.5,20,5.6,14.9,14.2,14.7,6.1,14.7,14.5,13,8.1,12.5,10.4,8.4,11.2,11,13.2,10.5,13,9.6,7.4,20.8,32.1,36.4,68.6,71.6,242,98.1,98.4,85.3,109.8,52.2,41,82.4,89.9,51.9,63.1,66.4,40.7,88.4,45.2,55.3,25.3,80.4,130.9,175.3,55.6,59.2,40.3,39.8,39.4,67.2,44.1,95.3,85.6,84.5,89.8,89.7,74.7,99.1,93.4,188.4,56.5,228,132.2,132.9,129.4,129.4,153.4,151.8,203.7,126.8,127.9,258.1,104.6,105.3,83.7,84.3,103.6,36.2,33.3,32.2,65.8,8.6,39.2,25.6,3.7,87.3,108.3,120,133.8,15.5,76.6,41.2,49.7,69.7,70.1,103.5,3.3,128.5,161.5,207.1,146.3,145.2,141.9,89.1,88.4,88.4,42.5,46.7,108.1,28.9,45.4,34.1,115.6,116.5,228.5,65.3,16.7,275.4,210.8,135.9,135.2,224.8,102.1,101.3,148.3,147.7,73.1,101.8,101.7,137.3,104.5,104.3,128.7,128.4,124.6,124.1,115.4,79.8,35,79.2,79.7,78.5,78.9,80.3,15.2,96.5,118.4,117.2,201.7,181.6,101.9,48.1,48.6,62.7,62.8,26.3,16.7,37.3,37.7,45.8,34.3,48.5,77,38.8,92.4,94.8,175.6,251.1,151.5,112.4,86.1,86.3,118.1,122.2,128.7,123.5,145.3,57.8,57.7,95.8,95.9,115,87.5,44.3,58.8,49,49.3,20.5,12.1,61.7,44.1,81.5,19.6,44.7,105.3,32.1,52.3,36.7,52.9,67.8,57.5,31.2,116.5,101.7,154.5,60.2,65.1,153.5,55.5,43.7,95.3,90.1,106.2,130.5,115.4,62.6,63,50.8,71,71.9,77.3,77.8,88.9,92.1,84.1,79.7,43.5,399.9,85.9,85.5,110.4,132.1,74.3,71.2,92.1,95.2,64.6,183.7,85.1,78.8,69.5,70,92.8,92.2,70.3,70.4,77.8,77.2,93.5,93.2,83,83.1,61.5,65,47.4,41.9,25.8,94.6,69.1,38.8,36.1,153.3,43.1,134.6,15.9,179.3,156.5,162,60.8,115.4,159.2,178.6,10.5,217.5,153.5,48.9,216.8,63.5,100,110.2,87.5,188.4,267.7,125.5,130.9,167,207,149.8,41.6,38.6,42.1,105.8,31.1,8.6,56.1,136.4,18,19.5,144.5,42.4,53.2,51.5,172.3,153.9,182,161.4,578.2,308.6,147,73.8,185.7,154.4,211,163.7,162.3,144.1,111.3,99.2,96.7,80.2,91.1,48.4,303.9,162.3,103.9,106,126.9,143.2,114.7,115.7,96.2,144.4,146.8,148.3,140.5,119.2,76.2,59.4,86.8,139.9,237.8,89.5,110.1,130.1,112.4,139.4,95.9,55.5,102.3,84.3,242.2,64.8,51.5,52.2,45.2,38.6,37.6,54.9,86.7,127.3,143.3,79.7,43.9,42.7,41.3,42.7,54.3,115.2,149.1,152.8,154.8,88.1,143.7,144.5,62.5,87.6,105.2,53.1,34.5,49.4,65.9,29.8,48.2,49.1,58.1,102,36.3,173.4,123.6,209,211.2,9.8,203.9,212.5,200.8,139.3,40.1,146.4,11.5,71.4,171.3,79.7,328.3,210.7,212.3,144.1,123.3,124.3,78.8,55,67.5,64.9,124.7,132.2,62.2,61.9,127.9,181.3,181.3,132.2,84.1,54.1,74.1,47.5,44.8,88,116.1,120.9,144,72.7,23,49.5,117.8,48,84.7,83.3,125.3,122.7,115.5,112.7,108.1,231.6,99.7,20.5,86.5,34.4,52.2,83.1,103,34.8,46.4,75.7,8.3,119,175.2,199,171.9,126,59.5,58.1,51.3,50.6,64.6,56.6,114.2,28.6,36.9,51.1,145.5,101,41.4,47.9,156.8,56.9,84.3,52.2,69.7,77.8,216.9,122.5,133.7,81.2,40.4,69.7,78.1,113.4,114.9,73.4,73.6,181.4,130,117.6,82.5,84.1,37.1,37.1,73,75.9,76.1,73.9,73.6,72.9,75.4,94.5,92.4,74.9,80.7,120.9,134.5,160.8,86.8,82.6,107.1,110.1,70,91,88,100,122.7,120.9,129.7,128.3,279.7,40.3,86.7,148,346.2,346,167.9,159,124.7,55.9,46.9,35.7,31.2,5.2,69.2,50.3,37.6,27.6,82.8,140.2,50.1,49.2,64.2,44.5,60,90.2,22.7,32.6,23.6,138,135.7,27.5,34.6,63,48.6,52.8,100.6,29.1,155.5,162.2,99,98.7,123.2,145.2,168.4,224.3,214.6,99.7,85.1,102,109.5,123.1,126.7,113.3,28.1,195.5,634.8,224.9,121,120.5,211,24.1,28.7,233.7,144.3,187.5,140.4,139.8,21.1,205,33.8,146.7,149.2,33.2,76.1,38.1,24.2,140.2,47.3,72.6,58.1,27.8,12.2,69.5,74.1,41,126.9,151,160.7,160.9,57.9,44.1,77.6,23.7,13.1,43,41.9,18.9,23.4,39.7,24.7,38.6,135.2,22.2,29.6,37.4,74.6,27.3,85.8,47.4,31.6,49.2,36.4,60.5,53.8,70.1,34.9,42.9,83,25.8,49.5,58.3,55.8,62.5,37.7,47.5,71.9,56.6,59,32.4,57.1,14.9,51.7,34.6,41.3,55.1,59.9,66.6,70.3,53.6,52.7,55.6,44.7,360.3,59.2,78.2,71.5,627.9,60.5,71.3,22.3,39,40,17.3,73.9,0.1,54.2,154.5,35.6,40,69.5,60.3,14.5,33,20.8,24.7,63.5,68.6,31.5,24.9,30,37.8,18,49,32.2,31.9,30.8,40.9,39.9,43.6,39.9,42.2,38.2,24.7,24.6,48.6,75.8,24.2,25,44.1,25.3,27.3,39.7,39.3,27.7,30.6,42.9,39.4,36.4,37.5,69.4,57.3,49.3,43.2,35.7,35,37.7,35.3,55.2,47.1,103,155.9,154.1,9.4,206.7,195.7,133.3,36.5,213.5,140,36.7,168.7,135.3,140.9,107.8,67,39.1,34.3,74.3,56.8,54,49.2,46.5,81.9,43.7,98.2,92.4,104.2,60.3,65.6,60,66,46.5,46.7,55.9,67.1,79.2,45.6,38.6,39.8,95.8,95.4,73.8,126.8,187.7,142.8,41.8,76.9,121.2,92.5,57.8,8.6,23.2,58.2,110.4,69,89.5,55.9,72.8,70.6,90,108.7,109.3,52.8,52.5,73.5,53.2,54.3,51.7,55.1,32.2,21,38.6,69.6,71.3,106.1,89,92.3,126.2,99,81.2,73.4,72.5,61.4,103,135.8,156.9,196.9,159.7,94.8,88.4,93.8,91.3,146.5,41.8,135.9,15.3,58.9,28.8,59.2,77.6,46.8,115.5,38.8,53.6,105,300.5,42,57,21,72,52.3,278.4,138.8,158.9,461.6,229.4,598.7,235.1,63.9,54.1,108.7,53,52.4,0.8,62.6,65.1,58.2,93.1,9.6,53.4,89.7,96.5,140.5,155.8,153.3,155.7,82.3,52.5,69.5,84.2,97.5,35.7,169.1,102.8,113.3,60.7,76.2,81.2,46.6,50.3,60.1,63.3,52,68.6,58.2,52.5,238.2,54.8,52,69.8,65.3,51.1,52.2,40.4,65.6,28.2,79.2,18.9,116.6,215.7,56.6,124.2,42.1,455.2,687.4,112.2,42.2,37.5,160.2,19.4,42.5,41.9,74.9,282.6,66,122.6,91.9,107,116.7,125.1,114.7,113,125.5,41,37.2,109.4,153.7,160,144.2,74.9,71.9,74.9,73.7,68.7,73.4,158.6,85.9,88.3,100.7,88.4,48.6,42.7,79.7,62.2,417.7,46.5,36.2,1228.1,120.3,89.6,92.7,158.8,95.8,72.1,63.7,75.3,85.2,230.9,255.2,148.9,111.2,110.6,158.3,87.7,94.4,72.5,158.4,97.7,91.8,91.3,88.5,263.6,29.8,301.4,234.9,224.2,211.1,212.2,101.4,97.4,102.3,97.5,154.7,161.8,122.7,120.8,128.4,131.6,66.7,66.9,98.5,77.8,175.7,176.9,351,117.4,107.7,104.2,141.9,121.1,188,205.8,105.1,275.6,448.6,182.6,61.5,50.4,65.6,76.1,45.8,69.5,99.2,58.3,80.1,43.9,102.5,57.1,57.4,57.4,56.5,126.2,44.9,56,93.7,46.4,45.9,91.5,46.3,45.6,81.7,81.2,70,18.7,198.1,82.3,82.9,84.9,182.3,96.1,31.7,45,14.1,124.3,137.6,194.3,78.9,286.1,158.9,49.6,88.5,58.8,57.6,69.1,108,46.2,25.8,104.7,87.8,88,136,149.6,244.4,152.6,107.3,292.2,22.7,123.4,126.4,197.2,144.1,102.6,89.8,91.1,76.6,52.5,56.6,72.8,65.7,30,36.8,38.7,37.7,34.6,50.7,48.6,38.2,39.7,20.1,46.2,32.7,49,60,34.6,37.7,56.7,66.7,30.1,50.3,44,136.4,70.3,68.8,89.7,97.5,135.7,51,43.9,88.5,1.2,63.2,18.3,35.4,33.9,51.1,33.7,56.1,71.3,54.3,68.7,22.6,19.4,35.8,32.8,38.7,23.3,35.4,34.4,75.6,48.1,63.6,55.8,55.3,40.7,128.2,80.9,65.6,54.2,47,88,54.8,70.6,39.1,50.6,55.1,72.2,33.1,55.7,69.1,25.2,46.4,28.3,73.6,43.5,47.7,56.6,43.9,64.1,55.2,54.6,54.3,150.3,74.2,75,68.6,69.3,69.1,71.8,108,107.2,104.5,104.8,68.9,65.2,69.5,66.2,71.3,72.2,68.7,69,71.8,26.6,128.7,127.9,74.7,75.3,78.4,76.1,93.5,101.5,74.2,85.9,32.6,62.7,116.7,47.7,49.3,40.4,40.7,78.4,78.7,78.9,43.1,32.4,68.7,63.3,73.7,73.5,73.7,73.2,70.1,73.4,79.1,115.7,116.9,119.6,60.4,60.5,57.2,59.1,58.1,57.1,67.1,66.4,79.1,67,24.6,24.8,55.4,12.6,75.9,138.2,65.7,75.5,75.8,76.4,77.6,70.8,52.7,67.4,71.2,54.9,42.1,80.8,41.9,49.4,77.9,52.2,18.5,41.3,55.5,31.8,38.3,55.4,85.3,10.5,43.2,33.5,37.6,67.8,38.1,26.4,56.7,8.9,7,22.6,61.3,39,61.8,71.8,106.9,31.6,86.6,135,68.9,93.8,48.8,52.5,52.2,51.5,67.7,55.7,41.6,25.2,23.9,37.1,36,34.8,76.4,30.2,43.9,47.8,55.6,50.6,55,58.3,59.1,55.5,53.9,45.9,46.1,43,42.3,30.7,68.8,52.5,49.6,26.9,82.8,37.7,35.1,49.5,45.8,26.7,46.9,11.6,47.1,42.9,66.2,29.9,70.2,72.1,91.2,94.2,34,92.5,105.3,92.8,61.7,47.3,75.8,116.8,209.6,80.8,78.2,124.5,119.4,123.6,80.6,38.5,120.6,122.2,93.5,24.6,21,53.6,49.6,55.8,59.7,40.8,71.5,1.4,51.5,46.4,23,48,45.7,60.9,90.2,20.3,49,62.4,63.4,19.4,35.5,65.2,46.9,56.6,66.2,48.1,35.7,40.4,48.6,42.8,43,49.4,42.3,37.4,34.6,44.1,187.7,86.8,81.6,104.7,117.4,277.3,135.7,194.7,164.7,220,54,59,60.5,60.4,54.7,58.6,68.1,63.7,246.6,194.1,228.8,99.2,103.1,208.3,499.3,333.4,203.1,125.2,16.1,100.1,96.8,149.2,162.4,76.9,157.8,73.6,83.1,323.9,238.7,115.4,150.5,122.7,83.6,103.8,21.2,51.6,45.1,45.1,45.3,61.1,37.8,31.6,55.1,37.3,38.6,40.9,38.3,50.3,59.7,59.5,43.4,111.3,275,87.7,46.6,58.3,55.3,54.9,49.7,49.3,57.5,43,55.8,64.1,58.9,54.8,59.1,180.6,184.5,28.5,317.7,77.8,40.9,43,63.3,44.8,51.2,43.5,48.4,42.1,46.9,56.3,48.7,43.4,33.9,32.7,31.8,35.1,70.5,18.9,55.9,40.9,39.3,58.6,51.7,59.4,53.3,44.6,56.8,47.4,62.5,53.4,50.7,88.2,139.7,166.3,104.6,91,67.1,52.1,32.2,25.8,46.8,41.5,51.2,33.3,32.3,25.8,59.6,79.6,78.5,47.2,46.5,48.6,48.2,48.1,48.1,36.1,36,72,91,180.7,3,116.3,48.1,54.7,30.5,34.5,90.7,47.9,45.8,42.1,82.8,124.2,66.1,73.1,62.1,28.9,49.2,46.4,50.2,42.6,108.5,71.2,68.1,51.8,56.4,30.3,10.6,29.6,30.1,37.4,36.6,38.7,37,34.2,31.1,21,7.3,52,110.3,44.5,27.4,71,41.3,43.1,30.7,27.5,46.7,26.5,29.2,37.4,22.3,43.2,59.6,59.2,108.4,120.6,154.6,132.5,197.2,97.2,21.8,138.9,78.6,216.8,58.4,73,145.5,142.2,91.6,88.9,72.8,60.1,66.1,59.2,66.1,41.8,120.5,143.5,132.1,54.9,52.6,47.9,53.4,60.1,77.3,25.6,67.4,76.2,51.5,22.7,14.7,24.1,40,42.7,40.6,17.4,17.9,26.2,49,29.9,39.4,30.5,30.6,25.4,45.9,42.9,46.1,44.3,51,42.8,168.8,24.9,74,78,68.1,35.7,39.4,12.9,19.2,21.9,45.5,45.6,44.9,55.4,49.6,29.3,43.5,113.6,261,85.6,97.6,83.4,24.9,46.8,63.9,62.8,11.8,121.8,24.4,86.5,31.6,74.4,13.9,216.2,217.8,43.6,263.2,84.5,115.5,111.5,58.8,60.7,73.2,189.5,83.7,22.4,139.6,139.2,76.4,57.7,63.6,67.3,91.3,48.7,111.9,61.9,66.2,52.6,51.1,38.2,39.3,35.2,30,15.6,67.9,37.3,36.8,46.3,30.4,22.9,36.6,44.1,76.6,13.2,45.2,35.7,75.5,131.6,205.8,131,133.2,91.9,138.9,43.7,6.8,62.5,56,49.1,49.6,44.7,26.7,67.4,52.2,49.2,86.6,83.1,119.1,5.3,71.3,60.5,66.1,63.8,63.6,51.9,155.7,80.4,82.8,68.5,132.4,67.7,60.9,56.6,56.3,89.8,24.5,70.6,57.3,143.4,67,51.1,51.1,45.9,55.5,53.6,57.2,65.1,74.2,65.5,141.9,59.6,50.7,36.1,41.3,22,49.4,47.7,47,76.4,59.9,32,70.4,55.4,48.8,159.5,112.1,112.4,164.1,126,58.6,27.3,29.7,50.9,51.9,22.1,69,95.9,52.6,54.1,43.9,39.8,39.9,40.5,48.7,14.3,24.5,13.9,16.1,24.2,14,41.1,45.5,34.3,28.8,14.6,42.7,43,31.6,35.3,15.4,24.7,94.1,46.3,54.9,45.6,48.6,69.1,43.1,58.7,41.4,44.8,50.2,56.3,53,148.8,0.9,29.5,2.1,99.3,125.1,106.8,121.3,36.3,121.9,112.2,118.5,135.1,25.8,164,308.9,106,61.9,27.1,42.8,51.8,1.4,31,58.6,87.2,28.3,45.6,40.9,48.8,50.8,37.1,41.7,81,59.7,52.6,94.9,38.6,158.1,396.8,362.6,113.6,144.5,137.3,57.6,33.2,61.1,68.5,60.7,77.2,38.6,79.5,262.7,210.2,171.4,23.7,99.3,43.1,77.4,49.4,76.7,158.5,92.3,75.5,92,92.3,63.2,63.2,67.2,53.5,69.4,50.7,47.2,68.4,58.7,126,83.4,72.5,68.2,55.6,48.4,28,10.7,111.1,62.8,50.8,22,13.1,21.9,31,42.5,40.5,40.2,59.9,79.4,89.4,62.9,64.8,74,90.3,81.5,4.2,60.9,43.1,45.6,63.3,67.5,68.2,69.8,50.5,40.9,43.7,22.3,27.5,58.6,59.6,61.2,86,278.3,67,57.9,56,49.5,68,56.2,59.2,64.4,28.5,26.2,142.1,50.3,45.8,69.1,41.6,42.6,66.3,60.9,56.3,35.2,43.2,36.1,48.7,131.7,94.9,71,79.4,38.2,38.9,63.7,42.1,43.1,88.4,74.8,62.4,195.1,205.6,115.7,28.7,130.5,91,70.4,95.2,134.1,147.7,239.6,239.3,219.2,141.8,129.6,77.4,77.6,80.7,34.1,43.9,61.3,67.3,73.5,166.3,20.6,96,44.3,54.5,50.6,44.4,41.7,31.4,32.4,49.1,37.2,59.6,80.6,75.9,95.1,55.8,73.1,10.2,28.3,74.4,94.4,136.2,59.3,193.4,129.3,114,43.8,36,35.5,23.8,18,19.1,14.6,14.3,10.7,11.6,10.3,9.9,10.8,9,9.3,11.2,10.3,10,11.3,19.2,28.6,23.9,11.9,11.7,11.7,8,11.2,9,8.4,12.2,7.2,35.1,17.4,19,16.9,23.8,44.2,46.1,28.2,36.2,50.9,50.6,84.8,23.8,25.7,37.2,44.2,106.1,24,23.6,34.6,71.6,71.4,145.3,15,42.9,22.9,18.4,24.3,31.6,63.2,39.5,15.8,12.2,79.1,113.3,19.6,33,52.2,38.7,24,39.4,115.7,97.6,39.5,34.7,73.8,55.2,21,13.5,19.4,60.5,54.3,26.8,11.7,22.9,26.9,33.3,32.4,37.7,28.1,21.6,18.5,13,16.8,22.7,17.2,32.6,30.7,26.6,28.6,26,22.7,22.3,20.8,29.6,23.4,22.5,8.3,18.5,7.5,12.9,17.3,5.8,8.2,44.6,38.7,28.4,16.4,25.9,9,17.7,30.2,49,9.2,10,5.5,5.5,6.8,11,14.5,14.8,16.1,2.9,62.1,25.4,97.5,55.1,5.8,7,26.1,72.6,38.6,37.9,43,28.7,75.5,34.7,25.2,4.3,13.8,11,3.8,13.9,3.1,64.7,5.1,30.6,5.6,9.8,23.5,8,9.9,11.4,33.5,32.9,73.6,42.4,28.3,38.6,46.7,10.3,41.5,7.7,24.4,30.7,72.9,8.9,10.6,12.8,7,5.5,53.2,47.9,5.8,8.2,5.5,21.9,45.9,4.6,4.9,10,7.7,2.8,9.9,1.8,7.2,3.7,3.2,17.5,29,5.3,25.8,21.8,6.2,64.2,10.6,8.8,37.1,6,36.3,14.2,14.3,54.2,8.6,5.7,4.1,7.6,4.8,4.6,5.9,5,5.7,3.7,6.3,5.5,4.8,8.2,7,5.2,4.8,5.4,5.1,8.9,6.4,6.3,9.9,25.4,96.5,7.7,6.4,8.8,26.8,18.6,30.2,5.3,55.9,11,2.6,7.5,4.5,7.1,6.4,7.1,6.5,3.9,3.9,3.2,7.1,7.3,2,3.5,4.9,4.9,6.4,6.4,6.5,5.3,7.9,7.7,7.5,4.3,6.4,6.4,6.3,6.3,6.3,3.2,10.7,6.9,5,58.3,20.9,15.5,1.7,98.2],"duration":[2.162,0.667,0.704,11.429,12.367,2.413,9.933,6.146,2.118,2.558,2.564,4,1.24,4.255,1.217,4.728,1.211,0.86,0.719,1.011,0.862,0.915,1.366,3.808,1.378,1.628,1.004,4.865,1.723,2.411,1.411,0.983,1.558,4.24,2.347,1.715,2.689,2.623,6.705,9.908,5.486,15.041,2.16,4.669,10.225,0.287,1.996,2.351,0.875,0.496,0.177,4.251,2.568,0.427,0.767,0.491,7.653,1.182,1.293,1.53,1.449,2.534,20.789,0.393,0.218,1.87,8.907,0.421,2.936,0.347,19.421,1.861,3.352,2.307,11.066,3.349,2.063,8.565,1.372,13.214,1.12,0.611,1.871,3.584,0.571,8.386,3.184,0.816,15.69,7.422,6.403,6.95,4.103,0.285,2.362,0.176,1.29,0.64,4.346,9.333,1.331,0.714,0.785,0.777,0.808,2.923,0.836,0.632,0.608,0.63,0.636,0.864,0.902,1.072,0.991,0.577,3.342,0.848,0.605,0.348,4.71,0.712,0.712,0.624,0.567,0.602,0.505,0.546,1.158,0.551,2.28,7.986,2.778,1.155,1.115,0.965,1.735,1.159,0.548,0.769,0.795,0.756,1.877,1.37,1.831,1.494,1.349,1.769,1.503,1.301,2.01,10.755,3.404,2.219,1.352,2.256,2.072,1.563,1.647,1.28,1.124,0.975,2.651,2.508,1.763,1.106,1.209,1.127,0.89,0.5,0.384,7.795,10.933,1.965,2.099,22.149,36.897,24.533,12.767,63.662,7.496,4.41,1.514,0.864,0.641,1.753,0.965,1.895,0.985,0.736,1.702,2.88,2.197,3.276,2.524,1.262,1.16,0.69,1.011,0.687,0.754,0.547,0.668,1.249,4.296,1.24,1.386,1.604,2.492,3.648,0.816,0.804,1.425,0.917,1.461,1.209,1.227,0.974,1.044,0.833,0.976,1.28,1.539,1.437,2.011,1.824,0.288,0.589,1.054,1.058,0.897,0.931,1.313,1.243,1.886,1.876,1.38,1.4,10.996,1.83,0.083,2.743,2.025,1.318,1.997,1.521,3.176,2.403,1.697,0.691,6.252,0.596,3.328,0.381,0.599,0.687,0.849,0.624,1.142,1.42,1.014,0.996,0.615,1.011,0.907,1.075,0.878,1.473,1.324,1.519,1.497,1.736,4.532,1.026,0.543,0.616,0.648,0.469,0.492,0.6,0.472,0.652,0.584,0.582,0.766,0.579,0.62,0.656,0.644,0.701,0.711,0.868,1.362,1.603,1.497,1.195,0.613,1.709,1.52,1.302,0.88,0.748,0.746,1.025,0.847,0.955,0.978,1.058,1.044,0.287,0.536,1.839,1.047,1.997,1.532,1.583,1.02,1.045,1.437,1.127,1.139,1.54,1.513,4.705,1.529,1.618,3.674,3.633,1.065,1.582,0.96,0.635,0.908,0.84,1.201,1.231,1.229,1.24,1.47,1.063,0.865,0.881,1.244,3.536,2.834,1.953,0.942,1.055,2.227,1.737,2.043,1.557,1.055,1.126,0.489,1.913,1.016,1.107,1.64,0.981,1.799,3.663,0.106,5.206,2.12,2.214,2.844,2.879,2.185,2.238,2.344,3.355,8.345,3.64,2.414,0.408,1.913,1.083,1.245,1.996,1.802,1.72,1.606,3.241,0.406,0.821,1.636,1.173,1.293,2.566,1.055,3.62,3.479,2.969,1.62,1.775,1.303,1.723,2.512,0.984,1.211,5.511,7.058,9.665,0.861,1.604,0.991,1.238,1.215,1.905,2.207,1.014,1.022,1.224,0.588,1.678,3.769,3.765,4.791,2.243,3.944,3.483,2.483,3.621,6.41,2.003,7.943,0.203,3.632,1.01,2.448,2.06,2.528,0.997,2.133,2.34,2.449,2.712,4.64,3.732,2.666,4.1,2.479,1.54,4.349,0.367,5.475,6.421,3.341,2.977,2.922,2.703,1.639,1.485,1.218,0.876,1.726,1.087,5.152,3.523,1.839,1.089,4.355,3.333,2.718,2.858,2.817,1.25,0.733,1.472,1.256,1.833,0.971,1.118,1.518,1.974,0.495,0.673,0.865,0.489,1.613,1.113,1.336,1.092,1.402,0.205,1.648,2.012,2.414,4.004,1.644,1.876,1.468,1.8,7.063,10.076,1.198,2.04,2.923,3.005,2.987,4.076,0.396,1.147,9.115,7.345,0.346,2.782,2.732,6.609,1.68,7.797,5.051,0.437,2.664,0.081,5.249,6.102,2.649,0.327,0.226,0.101,0.295,3.738,8.699,5.786,9.137,1.342,19.106,16.213,4.347,5.196,5.893,9.511,5.066,8.536,1.568,1.118,2.132,4.344,5.181,0.622,5.42,3.102,2.256,2.711,2.377,2.333,3.677,1.848,2.099,2.517,0.038,3.18,4.273,2.925,1.469,1.859,4.796,3.594,2.141,1.517,6.842,6.77,1.313,7.984,4.608,3.704,2.067,4.194,6.695,5.64,4.937,7.78,8.294,2.604,2.353,1.804,1.156,0.855,3.46,2,2.223,3.275,3.902,6.897,17.676,6.782,1.817,0.862,3.921,3.46,1.472,0.3,0.89,3.498,8.648,0.521,2.114,6.768,5.749,1.538,3.448,4.549,4.504,4.506,3.747,3.592,4.297,3.969,3.231,5.951,5.131,2.25,5.561,6.024,6.43,7.794,8.296,8.167,4.066,2.724,1.679,1.729,1.658,2.684,1.853,1.945,2.689,3.334,1.717,1.411,3.003,4.01,2.77,2.705,2.856,2.511,5.502,3.538,7.487,9.347,4.611,2.742,2.193,3.808,2.032,1.101,0.41,2.305,2.209,3.23,2.806,2.013,1.834,0.593,3.932,2.149,2.138,1.329,1.282,1.531,1.759,1.885,1.732,1.913,2.194,3.25,2.774,2.683,1.069,1.29,2.57,5.513,4.244,1.116,0.845,2.88,2.541,1.546,1.346,2.21,1.494,1.455,1.42,9.533,3.09,3.268,1.953,1.911,1.799,1.744,2.719,3.951,7.037,6.853,0.131,6.911,5.227,2.673,2.696,3.806,3.898,2.699,3.799,1.811,1.717,1.314,1.864,1.936,1.81,1.048,0.526,1.97,6.034,9.429,0.714,4.934,0.687,4.21,5.706,6.179,0.262,0.35,1.097,1.888,1.559,0.332,3.145,5.682,3.157,5.899,0.84,1.35,1.98,2.252,8.765,4.53,5.541,6.624,4.07,2.583,3.026,8.145,3.17,4.599,4.292,3.561,3.514,3.403,4.07,3.95,4.909,4.521,15.362,5.939,5.306,3.087,4.49,6.783,10.106,20.512,10.22,3.632,0.916,4.703,0.97,9.497,0.976,2.316,23.786,4.097,3.658,4.449,4.381,5.07,3.43,0.553,2.624,4.759,2.367,2.332,1.365,2.68,3.802,5.649,1.169,2.241,3.007,2.845,3.045,3.084,6.33,6.27,11.809,1.303,2.224,1.419,8.195,5.622,5.155,5.642,5.379,5.923,5.824,0.051,4.353,6.185,6.593,8.073,18.249,2.04,3.161,2.48,1.986,4.481,3.094,3.998,2.46,4.823,7.38,7.071,5.009,3.513,2.265,3.619,5.157,2.599,21.646,5.711,5.584,3.325,2.983,3.179,3.505,1.905,3.389,3.196,2.222,2.48,2.735,3.416,3.304,5.88,4.766,0.106,8.483,3.527,0.544,2.688,2.901,2.718,4.606,4.121,4.135,6.224,3.232,2.998,3.233,2.684,0.826,2.392,2.801,2.484,2.327,2.626,2.905,3.185,6.155,6.926,4.686,3.368,3.759,2.668,3.446,3.416,3.996,0.907,2.196,4.946,1.281,0.336,1.098,1.312,3.288,2.632,1.44,4.054,8.541,0.739,6.186,3.133,2.782,3.059,2.862,5.078,4.924,3.927,3.057,2.887,3.324,2.926,2.539,4.035,2.634,9.7,6.438,6.009,7.191,6.56,6.272,4.936,0.985,5.54,5.437,17.985,1.82,1.746,4.563,2.555,2.61,3.14,3.647,4.051,8.545,5.135,1.452,1.87,3.125,3.243,2.82,2.849,2.057,1.938,2.359,1.852,2.074,2.646,2.836,2.718,2.709,3.11,5.879,3.946,3.428,1.147,2.624,3.41,3.384,3.296,4.299,3.85,6.738,3.023,3.352,3.713,3.231,5.735,3.395,4.699,6.044,3.729,2.976,2.897,1.278,1.497,1.985,2.039,2.102,2.092,2.455,0.571,2.718,2.957,0.823,2.093,1.948,2.459,2.527,2.011,2.526,3.757,7.999,0.84,3.2,1.994,2.48,2.475,2.468,2.149,2.484,4.043,2.554,1.816,2.346,2.832,3.106,3.064,3.64,3.532,3.448,3.051,3.694,3.373,2.973,2.395,2.865,2.729,2.935,3.429,5.76,3.68,3.491,2.254,2.462,1.143,2.296,2.361,2.189,2.341,1.933,7.151,3.055,3.135,2.781,2.843,3.082,2.903,6.064,5.287,5.815,2.418,2.083,1.333,2.561,4.202,3.517,3.077,6.822,12.603,12.875,3.646,3.723,4.688,4.368,2.753,4.036,2.68,2.366,2.002,2.57,2.529,2.029,2.048,2.94,3.076,2.052,1.742,0.922,0.867,0.138,1.237,1.117,0.858,1.057,1.161,1.998,2.192,2.165,2.144,1.703,1.686,1.516,1.362,0.826,2.948,2.554,2.317,2.749,3.148,2.616,3.048,4.535,4.566,3.476,2.168,1.937,1.738,1.779,0.655,2.8,1.062,1.366,1.648,1.659,1.745,2.634,1.132,1.115,2.539,1.096,0.75,1.122,1.125,0.758,0.927,0.849,1.435,0.944,1.011,0.949,1.171,0.9,1.028,0.804,0.94,0.876,1.271,1.026,0.974,1.091,1.127,0.95,1.227,1.035,1.053,0.834,1.048,0.957,1.436,1.943,4.152,3.683,3.301,1.278,12.961,2.021,1.784,1.708,1.777,3.352,10.527,26.548,3.385,28.618,3.33,26.435,1.683,1.64,1.632,1.491,1.497,1.799,1.015,2.035,12.19,16.706,28.419,0.05,2.675,1.225,1.016,2.06,9.79,6.62,0.946,4.508,1.127,20.961,14.794,16.25,3.442,2.856,4.195,0.688,1.74,1.417,1.691,2.031,1.904,1.759,1.575,1.906,18.82,8.765,0.769,5.973,2.203,0.185,0.64,7.91,2.514,1.584,1.531,1.644,2.311,11.206,4.358,0.994,2.023,0.719,2.074,2.53,3.422,2.103,6.379,5.946,4.682,1.798,2.213,2.426,0.985,3.588,4.602,0.892,3.423,1.604,2.032,1.69,1.209,1.259,0.895,1.277,0.465,2.067,1.982,1.692,1.876,1.7,1.876,1.493,3.245,5.355,1.159,2.175,1.219,2.276,1.995,1.714,1.909,1.458,1.484,1.79,1.927,2.82,3.278,15.426,7.776,4.15,2.169,3.32,1.128,1.567,1.799,1.687,2.401,1.809,1.714,4.479,2.836,2.063,1.092,1.549,3.742,4.338,4.392,13.585,9.889,4.14,4.733,1.46,1.718,3.264,7.408,1.717,2.726,0.003,0.236,1.211,1.918,2.457,2.867,2.002,2.41,3.808,4.519,2.517,1.891,4.085,1.736,1.858,1.921,1.774,2.26,1.534,3.282,2.652,3.758,2.14,23.343,1.948,2.497,1.421,2.125,1.237,2.184,0.773,1.517,2.204,1.638,1.573,1.889,0.443,2.694,3.112,3.859,3.625,7.164,2.447,7.358,3.18,3.277,2.71,8.166,4.297,10.31,0.923,0.568,3.399,3.542,2.631,2.67,2.096,2.324,2.203,2.257,2.482,1.721,2.666,2.621,1.327,1.209,3.699,2.351,2.338,2.349,2.602,2.818,2.523,3.197,1.607,3.1,2.024,0.909,11.333,0.915,2.39,3.554,11.596,7.838,2.34,1.8,3.258,3.519,2.643,4.972,2.287,1.662,0.94,0.983,1.05,1.121,2.09,1.585,1.625,2.451,4.145,8.272,1.935,1.604,1.935,1.513,1.766,1.968,2.397,3.454,3.582,3.951,2.564,0.472,7.756,1.68,1.511,1.873,2.915,0.59,7.544,2.704,1.193,0.955,1.172,0.988,1.888,2.03,4.435,4.633,4.885,5.068,3.683,3.884,12.662,5.736,0.945,2.144,3.339,5.854,5.022,0.66,3.017,2.456,2.422,6.312,0.327,1.458,3.922,3.238,1.735,1.523,1.598,1.523,1.346,1.317,2.205,1.88,1.232,1.138,1.16,1.611,2.164,2.165,1.912,2.151,0.109,2.032,1.516,1.917,1.9,1.976,1.979,1.573,1.539,1.131,1.082,1.635,0.872,0.87,0.915,0.868,1.216,2.466,2.44,3.504,1.497,2.078,2.177,2.15,1.516,2.092,1.91,1.321,1.626,1.111,1.158,1.598,0.727,0.676,1.235,1.191,1.03,0.726,0.878,0.891,0.956,0.925,0.758,0.688,1.202,1.202,0.679,0.776,1.128,0.634,0.679,0.711,0.694,0.716,0.718,1.192,1.018,0.996,1.757,1.665,2.821,1.246,1.147,1.095,0.908,0.792,1.049,1.252,1.145,0.799,0.569,0.007,0.166,1.163,1.052,1.424,1.273,0.021,1.537,1.644,0.908,1.028,1.16,1.225,1.445,1.453,1.398,1.147,1.858,0.861,1.452,1.841,1.679,2.176,2.104,1.603,3.977,3.924,2.373,2.131,2.268,1.346,1.845,1.963,2.303,1.904,1.967,1.852,2.088,2.966,1.737,2.019,5.422,0.575,3.12,0.931,1.911,0.448,2.132,1.972,1.877,1.954,2.063,2.447,1.618,1.639,2.202,1.727,1.953,1.972,1.987,4.708,3.532,1.764,0.931,3.775,2.453,2.078,2.731,1.766,1.79,2.294,2.057,1.916,1.222,1.597,2.509,3.759,7.543,6.786,2.003,7.7,3.869,3.669,1.938,3.411,2.746,1.55,5.26,7.53,6.409,8.921,9.111,7.076,1.915,1.872,3.533,3.301,2.93,6.198,3.159,3.135,3.059,4.16,5.475,5.234,2.831,0.463,2.24,4.31,4.171,6.047,3.827,2.574,1.328,0.007,0.215,2.4,1.249,1.244,1.837,1.717,1.51,1.163,1.235,0.953,0.028,1.029,0.974,1.02,1.17,1.156,0.844,0.866,1.507,1.926,1.468,1.544,2.327,0.861,1.099,3.498,3.128,1.51,3.029,2.798,1.456,1.464,1.557,1.546,1.511,1.494,1.527,2.079,1.923,2.084,0.201,1.363,1.386,2.198,5.442,5.629,4.12,3.799,2.038,1.661,2.452,1.87,2.157,2.103,1.746,2.205,2.144,0.41,0.961,2.086,0.305,1.903,3.388,6.111,2.661,3.035,2.565,3.332,7.282,5.39,1.754,3.49,3.44,0.051,5.411,5.998,4.421,6.329,7.186,6.211,4.362,0.638,2.519,2.138,0.849,3.72,1.002,3.909,3.913,4.381,4.004,3.511,4.115,1.286,2.167,3.975,3.77,3.865,4.774,6.599,5.084,1.606,2.001,3.495,2.703,2.976,2.988,3.572,3.605,7.158,6.201,5.868,2.015,5.617,6.762,8.66,2.931,4.892,7.419,8.098,4.277,2.638,2.58,1.792,2.226,2.064,2.053,1.97,1.884,2.648,2.323,2.135,2.905,2.042,2.126,1.424,2.258,3.306,2.01,2.121,2.894,2.771,1.523,1.652,1.308,1.046,3.293,3.813,3.637,2.351,2.522,2.642,2.482,3.844,2.249,2.67,2.652,3.46,2.898,1.251,3.61,1.707,2.396,4.216,2.969,4.501,3.186,4.936,3.854,2.704,3.887,4.339,4.23,3.858,1.263,0.957,0.798,1.935,3.633,3.146,3.645,1.982,1.915,3.104,3.352,3.321,3.327,4.65,4.483,4.169,1.773,1.818,0.194,1.425,0.93,0.692,3.491,1.774,2.043,2.657,3.061,2.65,2.077,1.705,3.59,2.038,1.932,0.457,4.597,5.712,0.031,5.595,5.298,4.042,2.183,2.833,2.374,2.283,1.413,3.215,2.22,1.495,1.39,1.717,1.47,1.296,0.281,0.72,2.077,0.579,2.78,4.807,4.55,3.615,4.969,2.972,3.141,10.957,5.181,2.968,2.725,2.805,3.607,4.158,3.096,3.262,2.333,2.519,2.716,2.58,2.776,2.387,2.146,2.4,2.355,1.953,1.686,2.127,1.415,3.139,3.302,3.541,1.672,1.632,2.036,2.195,1.732,3.226,1.957,2.185,1.451,2.23,0.362,1.366,2.296,1.401,1.592,1.569,1.809,2.045,2.391,2.576,4.015,2.882,2.158,5.338,2.543,1.773,2.107,2.052,2.999,1.547,1.966,2.308,2.515,2.544,3.992,3.855,5.085,4.895,4.438,4.802,2.714,2.287,2.771,2.627,2.749,1.954,1.965,3.005,3.944,1.033,1.29,1.055,0.972,2.908,3.058,3.067,6.745,3.516,3.337,4.633,2.916,3.162,5.152,0.924,4.467,4.39,2.77,2.575,2.487,2.461,2.606,2.199,1.814,1.35,1.963,0.795,2.152,2.453,2.109,2.059,3.484,3.64,3.512,2.468,2.926,3.357,2.413,1.98,2.26,2.67,2.655,2.413,3.252,2.754,2.43,2.469,1.843,1.662,2.792,2.793,2.376,2.79,3.343,3.394,6.127,6.208,7.841,1.471,5.15,6.302,0.993,2.103,0.51,2.134,2.149,1.8,0.016,1.166,1.755,2.372,3.1,3.061,1.941,1.907,3.6,4.371,3.173,2.826,2.856,2.913,2.781,2.603,2.362,2.705,2.405,3.35,2.742,2.947,2.4,0.844,2.018,1.852,1.964,2.205,2.457,2.309,2.902,2.464,2.086,2.517,2.848,2.972,3.389,3.465,2.695,2.847,2.526,2.059,2.519,3.925,2.598,2.567,2.273,1.565,2.865,3.846,3.605,3.288,6.643,4.654,8.437,7.926,8.349,1.583,2.095,1.688,0.458,1.464,2.753,2.062,2.688,2.403,2.008,2.063,1.757,1.649,2.106,2.219,0.554,1.922,2.004,2.365,3.323,2.25,6.603,6.513,4.752,4.666,3.34,1.96,1.829,3.686,4.559,4.257,4.126,3.43,2.907,0.861,2.831,5.801,8.184,1.052,2.287,2.575,4.355,2.898,1.834,1.681,2.326,1.935,2.018,2.341,1.798,1.941,1.873,2.415,2.232,2.259,2.695,2.801,2.882,2.774,2.305,2.07,2.006,5.009,5.067,3.981,3.263,2.573,2.394,1.912,2.067,1.916,2.558,2.105,0.584,3.168,2.204,1.96,1.895,2.448,1.814,1.618,0.28,0.496,3.099,5.004,4.932,2.528,1.633,1.503,1.069,3.061,3.213,2.687,2.024,1.351,1.312,2.423,1.958,2.577,3.095,2.457,2.387,1.909,0.128,1.275,1.579,0.443,2.104,2.082,1.984,2.804,2.665,3.414,2.291,2.291,1.653,2.352,2.789,1.833,1.234,1.948,1.908,1.744,3.248,2.57,1.872,3.014,3.431,2.633,2.609,2.062,1.966,1.525,0.567,1.779,1.588,1.954,1.679,1.655,1.711,1.599,2.34,3.814,1.878,4.172,3.637,2.058,2.193,1.89,1.741,1.93,1.368,2,0.854,2.157,2.103,3.247,2.369,2.028,2.15,2.44,3.309,2.364,6.79,0.846,1.441,2.947,2.343,0.637,1.508,1.139,1.323,3.256,3.112,1.715,1.358,2.801,4.012,2.172,1.868,1.671,1.011,3.01,2.845,1.407,6.548,2.318,0.182,0.669,4.124,3.854,3.487,3.925,3.654,2.005,2.484,2.853,2.903,2.658,3.315,1.956,2.263,1.824,3.091,2.179,3.582,2.716,2.482,1.064,1.835,2.594,3.502,4.808,0.993,4.644,4.686,3.828,1.932,1.905,2.635,1.69,2.291,2.32,0.458,1.287,1.763,2.303,2.379,1.806,1.919,2.645,1.724,1.736,1.121,0.834,1.815,2.16,1.455,1.864,3.584,3.481,3.541,3.58,1.634,3.363,2.748,2.752,5.31,3.34,3.81,3.702,3.048,2.603,2.398,3.935,4.095,3.706,2.737,2.774,4.04,3.64,3.694,4.044,6.923,9.657,7.723,3.313,1.951,3.02,4.014,4.326,7.735,12.55,8.08,6.374,6.488,2.312,4.434,2.971,2.419,1.8,5.363,11.659,9.011,6.462,4.492,6.641,4.019,2.097,4.001,3.387,3.494,3.41,2.966,1.118,2.199,1.918,2.201,0.471,1.078,0.971,0.277,5.688,6.608,4.637,2.417,1.526,2.585,2.803,1.739,2.069,2.501,2.509,1.803,2.619,2.171,3.023,3.128,3.323,2.624,1.682,0.924,2.508,3.403,1.448,0.707,2.251,2.686,4.178,4.657,11.356,8.214,3.241,2.204,6.828,2.486,1.472,4.59,4.234,2.563,2.916,2.178,2.314,4.16,1.99,0.479,2.708,0.218,6.098,1.976,2.831,8.913,3.183,1.782,1.491,0.396,3.119,3.885,3.765,2.272,2.596,2.086,1.815,3.614,7.093,7.278,3.569,3.419,2.275,1.945,3.584,2.731,3.834,2.792,2.717,0.253,3.865,1.331,2.324,2.144,3.373,3.13,0.844,3.521,3.02,3.507,5.809,4.624,4.252,2.204,2.455,4.505,2.325,2.415,2.295,2.505,2.658,2.756,2.128,1.742,2.332,2.512,3.246,3.911,1.982,3.573,2.534,2.542,3.343,4.484,2.629,0.875,1.432,1.895,1.979,2.096,2.064,2.097,1.922,1.921,2.009,2.676,2.738,2.681,2.887,2.254,2.587,6.079,6.044,3.926,2.713,2.486,2.628,2.577,5.722,3.061,1.12,1.745,2.709,2.636,2.229,3.045,1.871,2.426,2.378,1.08,1.208,0.056,2.302,2.037,2.225,2.44,1.599,2.771,3.087,2.794,3.701,5.345,1.471,2.202,1.685,1.801,1.848,1.61,1.315,1.331,1.444,1.899,2.066,1.65,1.657,2.222,1.87,2.171,1.113,2.227,4.906,2.985,0.7,1.161,0.771,0.568,1.043,0.826,0.908,3.148,3.2,2.857,3.479,2.527,6.18,3.249,1.74,1.905,1.847,1.96,1.21,0.964,1.057,1.642,1.776,1.767,3.181,5.311,3.687,2.841,2.644,2.573,3.003,1.461,2.098,3.073,2.345,0.94,2.043,2.733,2.682,3.789,4.073,2.59,2.81,4.244,4.185,4.746,4.766,3.836,2.222,2.771,3.054,2.977,2.199,1.306,0.708,1.904,2.939,5.098,4.408,1.957,1.729,2.636,2.548,2.518,1.172,2.721,2.309,2.248,3.925,1.999,1.975,2.218,2.319,4.271,3.336,2.784,2.949,2.952,2.43,1.377,1.06,5.152,0.32,5.415,4.634,3.679,2.55,2.668,3.579,2.125,2.124,1.979,2.517,5.037,7.755,4.192,5.795,6.615,6.553,3.295,3.498,3.638,2.51,3.124,3.807,3.678,2.597,2.252,2.603,2.262,1.425,1.513,2.454,1.733,0.656,1.103,3.601,1.387,1.371,1.82,0.934,1.344,1.324,0.822,1.468,1.67,1.653,1.717,1.649,1.673,1.683,1.907,1.998,2.08,1.933,1.88,1.208,1.039,1.776,1.435,1.49,2.289,1.992,1.854,2.846,2.176,1.73,2.044,1.749,2.018,2.088,1.749,1.947,1.66,2.464,1.724,1.767,1.689,1.701,2.088,1.981,1.718,0.034,1.791,1.714,2.458,1.669,1.764,1.741,1.625,1.656,1.882,3.191,1.048,2.031,2.165,1.776,1.545,1.573,1.699,1.853,1.806,1.888,1.648,1.669,1.472,2.605,2.495,10.239,3.31,6.738,3.441,3.356,3.067,3.054,2.866,1.968,3.46,4.134,2.384,1.215,0.878,1.184,0.483,1.755,2.016,0.641,0.599,2.466,3.11,2.695,2.932,2.636,3.317,2.283,1.649,3.505,3.719,0.486,3.033,2.352,2.24,3.344,3.235,4.696,3.562,3.339,7.041,5.396,5.427,4.611,1.284,3.638,4.879,3.541,3.459,2.547,2.686,2.499,2.597,3.691,4.201,4.19,3.477,2.437,2.632,1.77,2.196,2.743,2.807,3.275,3.777,1.688,2.071,0.32,3.84,4.801,5.281,4.662,2.032,1.973,4.054,3.537,4.605,0.884,6.442,6.522,6.529,6.406,2.478,2.589,1.766,1.387,2.419,1.701,1.668,1.443,1.537,1.764,1.676,2.45,2.002,1.66,2.586,2.223,1.981,1.969,0.98,1.371,1.946,2.419,1.651,1.413,1.7,1.728,1.608,1.364,1.47,1.711,2.115,2.342,3.129,1.4,2.188,1.881,2.748,2.118,1.767,1.825,1.508,3.19,4.875,3.853,4.536,1.994,2.189,3.1,2.134,2.009,2.007,1.66,1.644,1.931,1.844,1.08,1.23,1.808,1.908,2.152,1.971,1.458,1.813,2.57,3.253,1.679,1.247,2.595,2.149,2.38,1.925,1.443,1.622,2.064,1.769,1.705,1.737,1.883,2.077,1.958,2.313,1.708,1.678,2.349,2.613,1.852,1.532,1.396,1.609,1.737,2.092,2.264,2.021,1.658,1.831,1.8,1.729,1.44,2.937,3.114,1.726,1.777,3.019,2.589,2.242,2.153,3.035,2.263,1.926,0.05,1.215,1.411,1.899,1.729,2.222,1.698,2.034,1.424,1.805,5.014,4.567,4.894,4.366,3.533,3.757,2.978,1.536,2.139,3.648,1.334,1.521,2.238,3.541,3.047,3.344,3.406,4.298,4.262,3.536,2.31,2.678,2.696,2.932,2.724,2.759,10.589,5.391,2.662,2.724,2.574,2.3,1.006,1.587,1.837,1.688,2.02,2.589,2.084,2.328,1.013,1.695,2.638,1.607,1.81,1.407,2.003,2.594,1.509,1.861,1.393,1.504,1.687,1.58,2.05,2.193,1.857,2.22,2.248,1.964,1.646,2.352,2.273,1.905,1.902,2.009,2.205,2.903,5.61,1.735,2.399,6.112,4.484,1.818,1.574,2.243,2.057,2.143,2.73,1.991,2.273,2.64,2.231,2.593,2.294,2.237,1.743,1.749,2.198,2.36,2.781,1.708,1.463,1.724,1.02,0.231,3.401,2.666,2.572,5.174,7.707,11.199,1.775,2.461,1.576,1.23,1.099,1.851,1.902,1.578,1.016,0.918,2.309,2.091,1.489,1.581,1.157,1.296,1.357,1.292,1.483,1.292,1.879,2.318,2.669,2.041,3.046,3.102,1.852,1.215,1.071,1.282,1.477,1.288,1.165,1.135,0.992,1.415,1.603,0.835,1.637,1.466,0.421,0.713,1.323,1.362,1.321,1.386,1.115,1.286,1.373,1.213,1.076,1.243,1.434,1.549,1.621,4.899,4.842,2.062,1.772,1.441,1.362,1.677,1.557,1.129,0.51,1.595,1.871,1.001,1.518,1.877,2.121,2.222,1.985,1.825,1.708,1.249,1.304,1.337,1.388,1.136,1.178,1.537,2.338,3.708,4.056,3.917,2.935,0.97,1.971,1.116,3.15,2.511,1.52,0.297,2.212,1.124,1.466,1.144,1.482,1.611,3.719,4.537,2.938,1.798,1.558,1.967,2.348,2.854,3.072,1.802,3.132,2.235,2.228,1.656,2.58,2.727,3.371,5.471,0.064,3.278,0.844,1.64,2.42,6.829,7.405,7.312,9.699,1.979,8.676,3.569,2.247,2,2.175,2.304,1.357,1.378,2.524,1.531,1.666,3.104,4.932,3.771,3.276,2.868,1.782,1.589,1.987,2.155,2.213,1.372,3.987,5.334,1.321,1.317,1.037,0.971,1.098,0.841,0.654,1.273,1.041,0.99,0.963,1.218,1.675,1.538,0.916,1.188,1.323,3.681,1.843,1.24,1.215,1.135,1.151,1.38,0.926,0.976,1.315,1.075,0.888,1.064,1.142,1.51,2.185,3.137,1.779,2.999,3.239,1.926,2.043,1.274,1.767,1.265,1.405,1.679,1.935,1.767,1.48,1.794,1.352,1.094,1.13,1.415,1.344,1.426,1.028,0.645,1.549,1.314,2.038,1.587,2.232,1.114,2.437,1.73,1.694,2.043,1.468,1.683,1.66,1.882,1.423,2.393,2.809,6.236,4.369,2.029,4.031,4.033,5.092,0.737,8.245,8.257,2.353,1.967,1.153,1.967,1.816,0.876,5.727,2.924,2.83,4.22,1.655,1.589,0.961,1.376,1.765,1.529,1.101,1.036,1.14,1.208,1.624,1.96,1.66,1.291,1.337,1.555,1.071,1.074,1.617,1.48,1.608,1.187,1.06,1.217,1.317,1.25,0.987,1.234,1.04,1.094,2.058,1.39,2.757,2.688,2.494,2.268,1.849,1.477,1.295,1.679,1.23,1.955,0.916,0.924,2.07,0.828,1.412,1.165,1.317,1.211,1.728,1.092,0.942,1.154,1.738,1.883,1.895,6.295,6.031,4.253,2.5,2.539,2.687,2.2,2.432,2.654,5.812,8.523,8.937,4.772,2.598,2.395,2.676,1.225,2.953,0.173,3.469,2.234,2.084,2.484,2.29,1.568,1.486,2.527,2.28,2.693,0.871,2.128,1.157,2.354,2.265,0.327,1.952,1.493,1.587,0.36,2.059,4.861,2.274,0.773,2.619,4.604,4.804,3.281,3.078,2.941,2.951,11.226,3.115,1.422,1.112,3.344,2.065,2.811,2.648,1.74,4.832,0.862,0.355,0.993,0.724,0.681,0.879,0.894,1.227,0.949,0.902,0.854,0.875,1.102,1.316,1.384,4.049,2.818,2.117,1.513,1.373,0.999,1.337,1.167,0.953,0.746,0.283,1.333,1.071,0.933,1.233,1.173,1.147,1.289,1.508,1.713,1.477,1.465,1.756,2.283,3.8,1.959,0.181,1.761,1.58,1.251,1.1,0.962,0.856,0.294,0.522,0.58,1.062,0.92,1.027,1.004,0.759,1.299,1.174,1.923,4.034,7.047,1.503,1.118,0.812,1.214,0.958,0.861,0.929,1.269,1.32,1.114,0.45,0.478,0.794,1.271,1.093,0.781,0.761,0.707,0.859,0.969,0.815,1.26,0.837,1.133,1.075,1.6,1.355,1.01,0.999,1.23,1.167,1.21,1.018,0.976,2.206,1.697,2.445,0.375,3.175,1.837,1.133,1.14,0.979,1.207,1.33,1.036,1.343,1.038,1.261,2.069,2.261,2.528,5.459,1.485,1.451,1.084,1.426,1.397,1.452,1.281,1.142,1.344,1.382,1.502,1.777,2.075,1.206,1.473,1.2,1.217,1.133,2.095,2.006,1.857,1.473,1.384,1.248,0.182,1.037,1.157,1.274,1.618,3.349,3.201,2.084,1.6,1.506,1.168,1.237,1.384,1.163,1.229,1.125,1.171,1.273,1.422,1.429,1.114,1.545,1.33,1.444,1.284,1.226,1.127,1.338,1.048,1.206,1.509,1.553,2.721,0.468,2.84,1.627,1.355,1.458,1.23,1.834,2.183,3.552,1.073,1.553,11.963,0.88,0.852,0.699,0.74,0.763,0.683,0.804,0.724,0.996,1.374,0.723,0.667,0.77,0.843,0.973,0.983,0.909,0.671,0.7,0.989,0.797,0.856,0.553,0.929,0.893,0.742,0.826,0.83,1.179,2.452,1.974,0.628,0.662,0.886,0.854,0.596,0.633,1.03,0.63,0.705,0.789,1.154,1.109,1.217,1.045,1.127,2.252,2.05,1.962,1.123,2.009,0.88,1.202,1.727,1.966,1.654,2.37,0.802,1.725,1.927,0.334,1.526,2.206,2.421,1.641,1.64,2.446,2.308,2.307,1.889,2.063,2.524,2.458,2.121,2.31,2.954,2.249,2.296,4.487,2.898,3.86,4.425,2.85,2.887,2.437,5.113,4.342,3.529,2.887,1.362,1.443,2.593,1.757,1.823,1.146,1.146,1.848,1.99,1.456,1.439,0.859,1.641,1.445,1.437,1.495,1.241,1.234,1.872,1.337,1.555,1.242,1.441,1.341,0.452,1.152,1.087,0.93,0.892,1.379,0.841,0.783,1.266,1.464,1.121,1.162,1.184,1.156,0.576,2.341,2.028,1.501,1.625,1.632,1.447,0.917,0.911,1.154,1.481,1.388,0.895,0.909,0.698,0.892,1.01,1.062,0.857,1.016,0.854,0.774,1.908,2.067,2.501,2.542,3.711,2.598,1.853,4.565,0.017,2.389,0.368,2.661,2.012,1.36,3.508,2.178,2.657,0.49,1.462,1.479,1.146,0.744,0.697,0.683,0.744,0.667,0.754,0.738,0.698,0.695,0.738,0.725,0.719,0.735,0.678,0.737,0.711,0.732,0.733,0.709,0.709,0.719,0.722,0.801,0.746,0.809,0.796,0.774,0.882,0.735,1.616,1.287,1.056,2.341,1.484,1.335,1.449,1.019,0.95,1.565,1.302,1.627,1.507,1.595,1.426,3.356,1.679,0.765,1.562,2.153,1.956,1.596,2.119,1.636,2.136,1.868,1.617,1.619,2.31,1.635,2.03,1.143,1.343,0.937,1.115,1.512,1.503,1.544,2.488,1.763,1.839,8.113,2.067,2.48,1.245,1.206,2.5,1.818,3.165,1.36,1.273,1.609,3.51,2.036,1.954,2.453,1.389,1.825,1.893,1.73,1.611,1.622,1.299,1.278,1.589,1.66,1.728,1.708,1.741,2.123,1.904,1.963,2.032,2.082,2.171,1.332,1.453,1.487,1.174,1.542,2.098,1.975,1.128,1.192,0.955,0.92,1.483,1.375,1.4,1.867,1.389,2.064,0.443,2.053,2.048,3.711,1.788,1.695,1.781,1.776,1.833,2.237,3.825,1.101,1.041,1.128,1.147,1.184,1.293,1.479,6.176,1.147,1.225,1.128,1.084,1.386,1.581,1.427,1.136,1.223,1.602,1.905,0.77,0.829,0.881,1.194,1.668,1.387,1.84,1.821,1.657,1.08,1.193,0.92,0.907,1.015,0.969,1.024,0.966,1.014,0.929,0.999,0.988,1.007,1.006,0.985,1.421,1.189,1.786,1.614,5.495,2.732,2.69,3.648,3.721,3.138,3.176,1.2,2.981,2.626,1.412,1.414,0.905,0.89,1.169,1.104,1.201,1.16,1.911,1.954,1.99,1.87,2.039,2.11,2.589,2.166,1.67,1.646,1.486,0.96,1.021,1.594,2.023,1.904,2.235,2.254,1.413,1.423,2.783,2.13,2.648,2.063,2.281,1.697,1.652,1.566,2.337,1.953,1.981,2.171,12.193,12.454,4.017,2.277,1.839,1.696,1.87,1.829,1.825,1.385,1.477,1.903,1.212,1.87,1.907,1.911,1.758,1.632,2.028,1.999,1.819,2.017,1.264,1.264,1.949,1.95,2.135,2.277,1.766,1.736,1.409,2.761,4.082,1.06,0.345,2.63,4.243,4.198,3.835,6.256,2.408,2.227,1.852,1.86,1.21,1.597,1.436,1.481,2.04,1.368,2.524,2.055,1.38,1.71,1.816,2.44,1.288,1.287,1.26,1.147,1.345,2.17,2.356,7.355,2.769,1.347,4.094,2.019,7.46,3.56,2.24,3.52,0.407,2.146,2.893,5.976,3.035,0.521,1.787,0.383,1.423,1.733,0.927,1.35,1.402,1.173,1.481,1.259,1.262,1.473,1.125,1.31,1.924,1.641,1.758,1.24,1.772,1.254,1.227,1.26,1.442,1.233,1.5,1.281,1.307,1.512,4.894,8.53,5.034,8.522,4.192,1.209,0.245,2.517,3.537,3.352,8.266,4.253,3.878,1.308,1.34,1.314,1.063,1.616,1.117,1.379,1.431,1.511,1.399,5.793,1.486,0.933,2.18,1.652,1.693,1.575,1.604,1,1.255,1.55,0.967,0.898,1.321,0.985,0.997,0.889,0.903,0.979,1.685,1.975,2.587,0.833,1.436,1.321,1.15,1.202,0.99,1.279,1.366,1.409,1.521,1.437,1.27,1.31,1.334,0.447,0.772,1.162,1.465,1.738,4.683,2.365,1.222,1.253,1.359,1.753,1.197,1.225,1.117,1.086,0.836,2.734,1.411,1.168,1.325,1.193,1.265,1.19,0.865,1.022,1.013,1.112,1.371,1.15,1.016,1.42,1.29,1.25,1.028,2.161,3.081,0.853,1.307,1.368,1.185,0.883,1.18,1.133,1.367,2.163,2.699,3.326,5.3,1.396,4.632,3.992,0.075,4.135,0.729,5.014,5.182,2.567,4.042,9.22,2.303,4.14,3.282,2.937,4.861,5.486,3.881,3.208,2.531,2.552,5.378,4.92,0.42,4.354,3.156,1.828,2.077,3.6,2.11,2.612,2.453,4.108,2.449,3.643,2.05,6.212,10.06,3.629,2.467,3.077,1.587,2.058,4.452,14.277,15.24,1.294,3.194,2.037,2.618,2.282,2.021,2.171,2.488,2.461,1.831,0.414,3.072,1.273,2.1,2.548,1.82,2.712,2.296,5.501,1.596,1.346,1.503,1.608,1.037,1.505,1.641,0.632,1.984,3.216,1.08,3.457,0.871,1.432,5.299,0.688,5.063,9.748,5.884,2.109,22.864,3.56,5.389,5.389,1.314,7.613,3.952,2.686,1.266,0.8,1.243,1.397,0.704,1.79,1.322,0.712,0.761,0.962,1.523,1.849,1.499,1.342,1.409,1.354,1.551,1.613,1.59,1.268,1.863,2.065,1.775,1.824,2.583,7.661,5.854,5.747,6.451,1.985,1.949,9.061,1.654,1.693,1.623,2.194,1.494,1.2,1.547,1.411,1.63,2.774,1.163,1.941,2.202,1.036,2.039,1.738,1.866,2.264,1.921,1.62,1.588,1.413,0.716,0.246,2.35,0.759,0.949,1.607,2.457,1.842,1.23,1.588,1.608,1.43,0.428,4.912,2.302,1.971,1.754,1.623,1.61,1.256,1.352,0.914,0.829,1.432,1.638,1.516,0.802,0.908,1.215,1.59,0.827,0.908,1.335,1.491,1.084,1.087,0.985,0.89,0.941,1.451,1.424,2.528,2.321,2.213,5.905,3.328,2.628,3.289,2.248,2.726,1.617,1.354,1.176,2.131,0.972,0.885,1.206,1.399,1.164,1.923,1.647,1.622,1.023,0.501,1.588,2.012,1.488,1.732,1.66,1.675,3.978,1.762,1.87,1.178,1.224,1.176,1.353,1.356,1.654,0.891,1.009,1.352,1.455,1.494,1.435,1.406,1.713,1.616,2.107,3.218,0.785,7.929,7.714,5.8,0.814,1.186,0.715,0.643,0.618,0.92,1.16,0.968,1.359,1.147,1.556,1.602,1.439,0.845,0.762,0.997,0.977,2.206,2.175,1.474,1.006,2.581,2.322,1.48,2.571,3.089,2.083,2.028,4.916,4.865,2.094,3.3,0.489,1.587,2.615,3.934,5.83,4.916,2.827,3.321,2.359,2.882,2.995,2.985,3.124,3.11,5.076,5.21,6.877,5.62,4.477,7.301,10.941,6.631,2.413,5.641,4.175,5.561,3.673,2.374,2.298,2.699,5.517,3.484,1.352,0.66,2.137,2.03,2.306,2.024,0.847,4.875,5.835,3.257,9.532,3.292,3.209,1.694,5.297,1.794,1.582,4.462,0.415,2.721,1.46,1.465,3.034,2.14,1.909,3.177,3.119,13.374,1.925,5.607,2.804,2.708,2.991,3.004,1.654,1.59,3.079,2.909,2.805,2.718,0.067,3.718,1.661,2.588,5.612,6.057,2.425,2.68,3.38,2.103,2.726,4.197,2.448,4.774,2.022,3.47,1.744,1.736,1.791,1.685,1.43,2.381,2.071,0.934,2.946,2.706,1.832,1.734,1.407,2.276,3.364,0.917,4.451,1.028,1.456,2.892,4.128,4.024,4.626,7.044,2.892,2.603,3.225,2.249,4.396,0.828,2.166,1.176,3.487,3.959,4.063,3.211,1.561,2.46,3.218,0.879,2.285,3.262,2.388,2.953,2.8,8.235,3.909,4.022,3.893,4.191,2.23,2.571,0.466,0.382,5.586,2.319,4.406,5.143,11.456,5.111,4.317,4.281,4.655,4.671,2.848,3.279,4.432,4.404,5.522,7.173,3.11,7.299,4.528,4.035,2.743,2.679,2.621,2.393,2.564,2.689,2.045,2.296,2.462,2.207,1.638,1.72,1.916,1.852,2.728,2.029,2.007,2.358,3.568,1.2,2.565,2.41,2.231,1.439,0.667,2.613,5.906,6.148,8.088,4.465,4.786,3.873,2.387,1.963,2.254,1.905,2.23,2.065,3.122,1.964,0.227,1.939,2.07,2.66,2.807,2.051,2.066,2.146,4.818,1.872,2.258,1.902,1.955,1.876,2.838,2.127,3.522,3.806,2.781,2.404,2.677,2.915,2.992,2.826,1.326,1.527,1.709,2.736,2.71,4.267,6.816,3.452,3.371,3.035,2.949,2.942,3.164,3.515,3.787,3.421,3.973,4.127,4.23,1.937,5.491,5.068,6.145,2.881,2.907,4.993,4.041,3.217,3.252,3.347,3.665,3.28,3.297,3.546,3.202,3.256,3.131,3.164,3.606,1.758,2.103,3.334,3.957,4.542,4.755,1.718,1.184,4.5,2.143,1.479,1.824,0.339,10.041,5.291,3.163,7.53,3.544,1.76,1.754,1.375,3.882,2.96,6.082,8.491,8.011,2.661,15.223,5.62,3.627,4.668,4.615,2.783,2.406,0.205,2.896,2.554,2.672,2.896,5.781,3.901,1.586,1.532,2.052,2.063,2.235,2.182,1.695,1.702,3.309,3.231,3.308,2.586,2.69,2.396,2.962,2.53,2.452,2.596,2.668,3.254,1.919,2.382,2.477,2.397,1.978,1.968,1.179,2.673,2.892,2.903,2.614,2.568,3.116,2.785,1.55,2.863,2.697,4.059,4.207,1.984,3.154,2.762,4.116,4.141,17.345,17.338,9.84,2.635,1.521,3.165,3.888,1.932,2,1.649,3.049,3.957,4.05,5.096,2.877,3.891,1.316,2.888,2.008,2.855,2.983,0.126,4.618,4.218,4.329,2.906,4.355,1.801,8.385,8.685,8.213,8.014,5.218,5.158,4.591,4.841,4.547,4.457,2.442,2.385,4.2,3.453,3.478,3.524,3.612,4.737,4.62,3.126,3.041,2.177,2.179,3.949,2.762,4.527,2.015,3.322,3.316,6.141,3.872,12.094,5.826,3.223,3.349,5.321,0.379,1.516,2.809,2.217,2.713,1.384,3.637,2.343,3.349,1.072,1.453,1.46,2.567,1.152,8.095,5.505,3.976,4.124,3.371,2.265,2.024,1.08,1.052,2.033,1.406,1.304,0.685,1.519,1.265,1.231,1.492,1.416,0.88,1.412,0.956,0.853,0.475,0.198,2.177,0.845,1.286,1.576,1.178,1.829,0.876,0.845,1.455,1.678,1.998,1.85,1.593,2.397,1.691,2.19,2.069,4.268,1.835,1.803,3.468,1.686,2.754,1.036,2.804,4.725,3.158,1.106,2.531,0.471,11.255,10.986,5.428,2.397,2.593,1.912,1.888,1.652,1.629,2.787,1.433,1.34,2.937,1.345,1.326,1.68,2.662,2.032,2.244,2.605,2.209,2.292,2.278,2.317,2.146,1.922,1.858,1.697,1.689,1.836,1.764,1.394,1.369,1.09,1.526,2.211,2.212,2.771,6.725,6.585,1.535,9.164,0.823,8.937,7.416,7.362,2.183,1.509,2.85,1.691,1.199,1.283,0.209,1.634,0.726,2.029,1.981,2.475,1.808,1.856,1.494,1.459,1.663,2.435,1.374,1.199,1.404,1.416,1.336,1.381,2.077,2.25,2.329,1.998,1.951,2.677,2.364,2.666,2.297,2.733,2.772,2.616,2.336,1.511,1.434,1.728,1.519,1.814,1.781,1.542,1.507,1.38,1.128,1.539,3.063,2.926,0.945,1.928,4.229,1.837,1.292,0.561,1.833,2.356,1.543,2.844,5.361,5.517,6.647,0.369,2.793,2.118,1.967,2.319,0.764,2.276,0.873,0.677,1.367,2.016,2.977,2.844,5.404,5.429,5.582,5.332,2.268,2.018,2.642,3.081,1.895,4.43,2.863,1.535,2.112,4.656,4.709,11.26,3.598,2.536,2.586,2.443,2.514,2.102,2.08,1.119,1.587,1.555,1.615,1.595,1.929,1.617,2.45,1.206,1.925,1.625,2.004,1.959,2.662,2.352,1.7,2.947,4.237,2.014,2.22,2.739,2.729,1.45,2.934,2.387,1.945,1.971,1.876,1.826,1.392,1.66,1.435,2.353,2.839,1.636,0.294,4.008,1.273,1.884,3.003,1.773,0.886,2.104,6.599,6.251,4.725,1.523,1.767,3.601,2.579,5.8,2.172,3.093,4.05,3.118,2.809,6.33,2.317,2.674,3.27,0.828,3.055,3.675,3.14,3.39,2.751,2.921,2.933,3.402,3.328,2.207,4.307,3.155,4.242,2.856,4.424,3.64,1.612,1.534,0.563,2.631,2.352,4.078,1.873,0.966,2.533,2.519,2.54,2.693,2.548,1.712,2.825,0.068,3.089,1.808,5.445,5.348,12.047,5.993,2.983,3.063,2.814,2.177,1.707,2.313,3.505,2.52,3.451,2.611,2.396,2.017,2.074,1.608,2.018,1.378,2.701,1.973,1.857,1.373,2.013,1.855,1.95,1.51,1.446,1.954,1.947,2.656,1.666,1.119,2.502,2.593,1.548,1.834,2.977,3.491,3.268,2.03,2.365,3.239,3.158,3.274,3.343,3.145,3.743,3.839,3.841,3.859,2.25,1.481,3.613,2.16,2.101,3.786,2.329,1.839,3.279,3.661,1.952,1.641,0.339,0.382,2.05,2.301,3.595,3.939,3.493,3.168,3.452,2.307,2.071,2.148,2.295,3.047,3.07,2.956,2.05,2.585,2.59,3.866,3.951,3.962,3.914,4.524,4.357,5.32,2.935,2.349,2.532,4.103,3.557,1.69,2.038,2.211,5.328,3.421,0.646,2.26,2.45,0.067,4.065,4.119,1.407,1.673,3.068,1.625,1.654,2.524,2.328,0.981,2.702,2.644,3.482,3.021,2.281,1.449,0.359,3.269,3.532,3.493,3.325,3.339,3.193,1.678,3.935,4.14,1.905,6.085,6.363,3.327,3.004,3.396,2.071,1.544,1.818,1.726,1.495,1.426,1.522,1.454,1.471,1.606,1.868,2.644,3.006,2.415,1.679,2.074,2.038,2.271,1.915,1.724,1.617,1.695,2.115,2.157,1.549,1.515,1.498,2.063,1.865,2.128,1.911,2.124,2.13,2.311,1.709,2.531,2.695,2.029,1.893,3.575,3.259,1.619,2.868,2.723,2.162,2.067,2.017,0.542,1.21,1.384,0.328,2.017,1.961,2.188,1.936,2.033,1.974,2.07,2.276,2.215,2.154,2.199,1.387,1.863,1.511,2.784,1.993,1.808,3.011,2.885,1.575,1.49,1.798,1.765,2.227,2.233,2.139,4.337,4.218,2.379,1.92,2.081,1.92,0.191,2.158,2.208,4.838,4.442,2.796,2.798,2.92,1.605,2.649,2.174,2.127,2.233,1.686,2.179,3.654,1.681,2.004,5.126,2.298,2.126,2.079,2.1,2.088,2.129,1.246,1.374,1.609,2.325,1.439,1.401,2.066,1.87,2.28,2.472,2.695,2.739,4.216,4.049,0.205,3.752,2.789,2.132,2.22,2.601,2.241,1.892,1.358,1.771,1.98,2.215,1.535,1.506,1.489,2.041,2.031,2.253,2.228,2.086,1.936,2.311,1.567,1.865,2.298,1.44,1.468,1.092,1.069,1.739,1.778,1.661,1.143,0.943,2.148,1.81,1.807,0.716,0.527,2.044,1.444,1.211,1.515,2.695,0.9,2.7,0.807,2.306,2.41,1.461,3.256,3.258,2.651,2.474,3.158,1.21,1.826,2.092,1.969,2.597,2.551,2.503,2.525,2.032,2.265,2.076,2.46,2.208,2.698,0.745,2.383,1.793,1.697,2.533,2.262,2.594,2.226,1.83,2.599,2.513,2.115,2.97,2.858,2.833,2.846,3.548,2.159,2.056,1.711,1.826,2.81,2.396,2.558,1.852,1.867,2.468,2.579,2.473,1.452,1.801,1.819,2.403,2.306,1.16,0.753,1.68,2.655,4.44,8.622,3.436,5.56,2.764,2.386,2.049,1.829,1.666,1.773,2.703,1.484,1.556,2.243,0.998,1.26,0.59,2.266,1.063,1.613,0.233,1.731,1.678,1.813,1.57,1.295,1.403,2.194,2.12,1.564,0.624,1.002,1.971,3.284,2.968,1.706,3.02,6.526,6.469,7.617,3.813,3.705,3.572,1.818,2.401,2.746,2.781,2.015,2.004,2.172,2.427,2.787,2.91,3.03,2.811,3.19,3.582,2.324,2.311,2.331,2.395,2.081,2.418,4.062,7.02,1.687,2.757,2.472,2.057,2.39,2.704,2.558,2.126,2.278,2.173,1.866,4.28,4.205,2.625,1.576,2.379,2.295,1.658,2.596,3.529,1.661,1.27,2.615,1.444,1.485,2.228,0.06,2.419,1.511,1.469,2.23,2.272,1.751,0.596,1.146,2.424,5.692,0.79,1.852,1.37,2.915,2.226,1.173,1.18,1.221,1.227,0.867,0.87,1.739,1.787,2.058,2.775,2.322,1.545,4.268,4.345,2.78,1.862,2.795,3.306,2.001,2.586,2.616,2.63,5.202,5.488,3.058,1.618,1.341,1.893,2.75,2.75,2.192,1.407,3.261,2.069,2.07,2.322,2.915,3.259,3.272,2.613,2.268,2.314,2.36,2.276,3.12,3.043,2.333,2.996,4.327,2.569,2.478,1.473,1.897,2.63,3.18,3.05,1.912,1.836,1.31,2.831,2.959,2.859,2.671,2.894,2.881,3.234,4.592,2.346,2.45,2.138,2.409,3.184,2.508,2.13,2.573,1.745,1.505,1.804,10.343,10.369,3.251,3.283,2.716,2.727,2.755,2.751,2.123,2.128,1.896,1.712,2.022,1.145,0.825,0.133,1.817,2.144,2.104,2.844,0.227,1.714,1.479,1.534,1.51,1.224,0.312,3.968,5.146,1.707,3.29,3.497,2.695,2.615,2.786,2.808,2.577,1.401,1.521,3.221,3.449,2.94,4.127,3.642,3.666,3.594,3.223,3.658,3.043,2.751,6.759,3.776,2.662,1.87,1.83,2.777,1.022,2.565,1.601,2.341,2.994,3.089,3.23,3.177,3.895,3.973,4.319,2.802,2.446,3.314,2.714,2.702,2.62,2.704,2.997,2.985,3.045,3.151,1.493,1.788,2.587,2.644,4.58,3.25,2.491,2.001,1.763,1.042,1.549,1.717,0.518,2.229,2.855,2.139,1.944,0.504,2.444,2.228,2.693,1.683,1.329,1.357,1.904,2.07,2.921,3.122,2.4,0.871,1.474,1.537,1.969,1.925,1.655,1.848,1.814,1.758,2.105,1.977,2.101,2.447,1.19,9.424,4.736,5.5,20.241,0.397,4.426,3.838,4.524,10.829,3.562,3.634,3.286,5.951,1.894,11.23,2.603,4.356,4.074,1.619,1.033,2.676,2.905,2.919,2.371,2.192,14.937,2.709,1.278,2.132,2.377,2.338,2.467,2.336,1.082,1.017,1.425,1.222,1.39,1.32,1.789,1.807,3.418,2.285,2.136,1.472,1.069,1.192,0.971,1.047,1.091,1.207,1.294,1.262,1.355,1.44,2.33,2.273,2.414,2.375,1.339,1.3,1.483,1.419,1.49,1.434,1.727,1.659,1.618,1.551,1.114,1.175,1.512,0.806,0.863,1.633,1.235,1.101,1.268,1.176,1.317,0.876,2.001,4.599,1.385,5.621,16.023,2.319,2.319,2.027,1,0.947,1.216,1.313,1.44,1.518,1.656,1.578,1.353,1.426,1.745,1.461,1.299,1.274,1.749,2.409,4.357,0.763,3.134,2.379,3.478,1.651,1.635,3.284,1.681,1.625,2.408,2.545,1.298,1.251,1.842,2.32,2.26,2.129,2.168,1.461,2.563,2.585,2.07,2.034,1.781,1.741,1.917,1.747,1.777,1.668,1.638,1.585,1.655,1.686,2.323,2.275,1.474,1.509,2.198,2.072,1.214,1.17,2.274,0.185,1.676,0.273,1.356,1.301,1.809,1.718,2.763,2.239,2.094,3.52,4.971,2.024,2.008,2.694,2.37,0.241,2.592,2.488,1.69,0.706,2.559,1.889,2.198,3.508,3.559,2.467,2.77,1.506,1.542,3.256,5.572,2.284,4.578,2.575,2.41,6.118,7.502,3.854,0.32,3.267,3.331,3.595,13.406,2.481,4.144,3.726,2.887,2.95,2.624,2.292,3.282,3.45,3.279,3.46,3.174,6.637,3.764,3.966,2.769,3.214,1.641,2.994,3.739,3.528,4.065,3.654,3.481,1.174,4.455,3.503,3.518,4.972,4.922,5.183,4.085,14.617,3.155,4.605,10.209,2.534,2.501,2.421,2.643,2.237,2.119,1.755,1.419,0.651,1.146,2.578,0.455,1.21,1.451,2.039,1.616,2.348,2.417,3.716,6,2.421,2.227,2.203,0.625,1.147,1.731,3.274,2.368,2.312,1.584,2.396,2.902,4.165,9.5,17.823,5.153,2.196,2.944,9.72,2.39,21.124,1.87,1.863,1.831,1.808,1.941,1.944,1.981,1.781,1.777,2.251,1.451,1.457,1.45,1.444,1.467,1.466,1.467,1.471,1.579,1.659,0.998,1.153,0.875,1.2,2.085,2.078,0.88,0.68,1.171,0.775,1.177,1.183,0.854,1.074,1.348,2.637,2.683,2.716,2.722,3.695,2.749,3.417,0.732,1.906,1.877,14.021,5.783,5.839,2.06,2.052,2.455,2.939,2.909,2.903,2.878,2.612,2.523,1.83,1.711,2.189,1.63,1.61,1.608,1.63,1.462,1.5,1.405,1.57,1.21,0.12,1.342,1.332,1.369,1.456,1.469,1.456,1.446,1.78,1.776,1.767,1.809,2.001,10.368,4.22,15.097,1.286,1.283,1.308,1.311,1.307,1.307,1.65,1.433,1.436,1.36,1.368,1.375,1.391,1.544,1.55,1.557,1.528,1.24,1.252,1.241,1.24,1.475,1.456,1.478,1.487,1.704,1.722,1.662,1.681,2.057,2.071,4.147,1.856,1.846,1.856,1.856,3.345,3.349,22.139,16.765,3.234,3.237,3.232,3.248,18.54,2.943,2.926,1.646,1.619,3.092,3.077,2.842,2.969,2.94,3.595,2.238,2.192,3.054,3.066,3.62,2.325,2.311,2.543,2.61,1.295,1.656,7.262,3.25,10.955,4.907,1.152,3.612,3.493,3.479,3.039,3.011,3.001,0.75,0.746,0.755,0.748,1.424,1.428,0.816,0.82,0.82,0.817,0.815,0.823,1.649,0.906,0.906,0.911,0.902,1.647,0.824,0.858,1,1.117,0.952,0.935,0.892,0.909,0.891,0.942,0.884,0.914,0.928,0.913,0.909,0.914,0.912,0.909,0.996,0.996,0.989,0.993,5.336,0.77,0.75,1.039,0.755,0.748,1.043,0.831,0.824,0.816,0.809,0.738,0.735,0.737,0.738,0.896,0.894,0.894,0.881,0.826,0.826,0.826,0.822,1.083,1.077,1.082,1.077,0.73,0.723,0.727,0.722,0.729,0.726,0.723,0.723,0.75,0.749,0.749,0.748,0.721,0.717,1.436,1.175,0.895,0.872,0.875,1.438,1.429,2.807,1.274,1.27,2.006,1.136,3.131,3.357,8.18,4.481,2.258,7.047,0.906,0.908,2.861,1.13,1.126,1.097,1.171,0.885,0.712,0.707,0.715,0.715,1.432,1.433,0.912,0.916,0.919,0.923,0.875,1.165,0.82,0.853,1.223,1.231,0.895,1.172,1.007,1.004,1.01,1.016,1.219,1.212,1.22,1.221,1.431,1.433,3.445,0.876,0.874,0.884,0.873,1.291,0.028,2.596,8.936,1.06,0.524,0.53,1.059,0.529,0.525,0.636,0.631,0.618,0.011,0.626,0.726,0.722,0.718,0.709,1.037,1.033,1.016,1.015,1.062,1.059,1.057,1.066,4.461,4.804,5.358,0.44,1.586,2.009,0.481,0.492,0.963,1.004,1.005,0.899,0.883,0.912,0.91,1.555,0.807,0.736,1.347,1.441,0.675,0.663,0.691,0.749,1.343,0.882,1.174,1.313,1.569,1.262,1.203,1.9,1.783,0.645,0.843,1.168,0.798,1.264,0.823,1.252,0.485,0.608,0.615,0.609,0.613,0.608,1.143,1.138,1.139,1.141,1.293,5.112,1.659,3.316,0.445,0.583,2.199,1.109,1.105,0.924,0.944,1.383,0.964,1.694,1.318,0.952,0.819,0.81,0.462,0.986,1.004,1.008,0.551,1.405,1.096,1.099,1.035,1.008,1.177,0.576,0.576,1.033,1.031,1.037,0.52,0.519,1.045,0.525,0.519,1.199,1.188,0.479,0.768,0.743,1.017,1.024,1.081,1.012,0.833,0.835,1.038,1.038,0.719,0.717,0.714,0.725,0.766,0.77,0.769,0.768,0.827,0.825,0.829,0.827,0.828,0.827,0.831,0.828,0.919,0.923,0.922,0.926,0.875,0.875,0.881,0.877,0.875,0.875,0.871,0.878,0.872,0.879,1.758,7.586,2.638,3.517,1.878,1.851,1.61,1.615,2.358,1.177,1.173,2.287,1.142,1.146,0.931,0.931,1.862,0.927,0.927,1.848,0.45,1.534,1.973,1.038,1.043,1.03,1.034,1.028,1.025,1.032,1.024,1.225,1.223,1.226,1.224,0.919,0.92,1.837,1.859,0.925,0.917,1.918,0.951,0.947,0.954,0.947,0.949,0.954,0.866,0.865,1.722,0.875,0.865,0.865,0.869,0.877,0.869,1.736,1.781,1.774,1.391,1.386,1.39,1.383,1.397,1.393,1.406,1.405,1.953,1.955,1.96,1.964,2.279,2.286,4.56,3.036,1.52,1.525,1.519,1.519,1.516,1.517,1.181,1.886,1.677,1.979,0.72,0.752,0.69,2.448,4.996,1.466,0.901,1.068,1.991,0.404,0.523,0.642,1.259,5.661,0.589,0.608,0.669,0.697,0.577,0.472,0.461,0.647,0.497,0.406,0.364,0.618,0.803,0.953,2.1,1.188,1.573,1.57,1.634,1.528,1.787,0.586,0.58,1.017,1.051,0.807,0.804,0.684,0.738,0.65,0.552,1.331,1.824,1.895,2.14,2.162,5.119,0.966,0.838,0.817,0.905,0.743,0.835,0.842,0.842,0.854,0.857,0.874,0.875,0.862,0.867,1.724,1.636,1.682,0.839,0.839,0.834,0.833,0.832,0.832,1.6,0.907,0.852,0.849,0.851,0.838,0.833,0.835,1.671,1.644,1.167,0.547,0.838,0.842,0.845,0.84,0.843,0.838,0.839,0.84,0.839,1.68,0.836,0.846,0.839,0.836,0.298,1.381,0.898,0.901,1.74,1.68,1.773,0.831,0.85,0.847,1.67,3.371,3.372,1.698,1.679,1.677,3.367,3.176,3.444,4.434,1.688,1.701,1.706,1.977,1.367,1.683,1.703,1.705,1.674,1.686,1.159,1.721,0.251,1.614,1.878,1.494,1.501,1.694,1.711,1.316,0.853,0.848,0.849,0.852,0.85,0.848,0.861,0.862,0.85,0.849,1.714,1.532,0.159,1.705,1.698,1.702,1.7,1.699,1.703,3.394,6.377,2.221,2.194,1.73,1.735,0.825,0.849,0.853,0.857,0.856,0.855,0.854,0.845,0.846,0.847,0.856,0.903,0.904,0.849,0.848,0.871,0.849,0.851,0.86,0.861,0.863,0.856,0.845,0.849,0.858,0.842,0.854,0.856,0.853,0.84,0.844,0.854,0.853,0.853,0.845,0.855,0.853,0.86,0.843,0.845,0.855,0.853,0.851,0.846,0.852,0.855,0.845,0.851,0.846,0.846,0.853,0.853,0.849,0.85,0.85,0.846,1.688,1.709,1.694,1.709,0.921,0.893,0.897,0.854,0.881,0.875,0.848,0.855,0.858,0.848,0.86,0.859,0.325,0.606,0.798,0.843,1.204,0.521,0.852,0.848,0.848,0.865,0.863,0.844,0.864,0.858,0.841,0.86,1.145,0.55,0.855,1.247,2.076,1.721,3.41,1.693,1.684,1.729,1.687,0.852,0.855,1.39,1.157,0.86,0.689,1.012,0.85,0.851,0.857,0.835,0.856,0.855,0.855,0.857,0.838,0.847,0.849,0.828,0.837,0.838,0.828,0.837,0.837,0.502,0.891,0.892,1.316,1.547,0.227,1.304,0.828,0.829,0.826,0.827,0.842,0.843,1.032,1.449,0.832,1.381,0.365,1.158,0.905,1.267,2.831,2.209,3.297,2.576,3.357,1.67,1.675,1.672,1.677,1.663,1.76,1.747,1.739,1.702,1.658,1.654,1.673,1.667,0.864,0.821,0.826,0.841,0.835,0.833,1.014,1.039,0.848,0.843,0.845,0.838,0.836,0.809,0.85,0.85,0.836,0.839,0.837,0.853,0.849,0.85,0.85,0.83,0.833,0.844,0.843,1.219,1.308,0.828,1.244,0.854,0.832,0.833,0.848,0.582,1.185,0.853,0.853,0.835,0.832,0.851,0.84,0.834,2.261,1.772,1.707,1.703,1.7,1.7,1.692,1.691,1.692,1.689,1.704,1.71,1.652,5.927,1.681,3.368,5.473,3.786,3.701,2.826,1.714,1.678,1.73,1.697,1.69,1.689,2.54,1.687,1.685,1.691,1.672,0.865,0.866,0.86,0.834,1.7,1.68,1.677,1.705,0.85,0.856,0.802,1.372,1.189,0.839,0.838,0.895,0.915,0.915,0.912,0.915,0.859,0.86,0.876,1.081,1.078,1.009,1.01,1.713,0.852,0.859,0.851,0.85,0.741,0.988,1.743,1.088,0.641,1.711,1.704,1.711,5.451,1.741,0.722,0.714,0.712,0.731,0.745,0.724,0.729,0.726,0.726,0.723,0.717,0.803,0.803,0.783,0.78,0.737,0.738,0.719,0.722,0.72,0.707,0.706,0.73,0.727,0.713,0.74,0.712,0.714,0.709,0.708,0.731,0.719,0.718,0.721,0.707,0.721,0.725,0.726,0.718,0.715,0.739,0.706,0.726,0.718,0.714,0.732,0.723,0.725,0.723,0.708,0.72,0.717,0.735,0.702,0.706,0.732,0.724,0.721,0.721,1.045,1.115,1.458,2.132,1.439,1.545,1.486,0.721,0.717,0.714,0.725,0.693,0.711,0.722,0.731,0.649,0.069,0.72,0.731,0.713,0.735,0.714,0.721,0.724,0.715,0.714,0.724,0.714,0.708,0.719,0.703,0.722,0.713,0.714,0.721,0.73,0.709,0.716,0.722,0.719,0.699,0.578,0.866,0.752,0.711,0.725,0.705,0.722,0.71,0.715,0.704,0.733,0.711,0.697,0.692,0.706,0.736,0.721,0.71,0.358,0.771,0.723,0.336,0.374,0.704,0.721,0.713,0.718,0.704,0.723,0.654,0.653,0.861,0.681,0.704,0.724,0.713,0.715,0.718,0.709,0.715,0.715,1.433,0.724,0.706,0.705,0.732,1.081,1.435,2.141,3.032,1.455,1.061,1.074,1.439,0.727,0.727,0.786,0.796,0.797,0.739,0.708,0.729,0.741,0.712,0.735,0.726,0.709,0.735,0.721,0.72,0.736,0.736,0.729,0.721,0.741,0.74,0.737,0.737,0.713,0.705,0.738,0.718,0.725,0.731,0.736,0.711,0.732,0.756,0.732,0.723,0.717,0.718,0.753,0.711,0.707,1.51,0.744,0.73,0.747,0.744,0.732,0.728,2.92,0.737,2.185,0.7,0.718,0.742,1.973,1.448,0.752,0.716,1.43,2.191,1.461,1.409,0.683,0.754,0.712,0.705,0.716,0.702,1.063,0.71,0.724,0.714,0.71,0.493,0.766,0.697,0.741,0.715,0.712,0.724,0.719,0.734,0.711,0.731,0.699,0.711,0.73,0.717,0.725,0.724,0.702,0.715,0.702,0.724,0.706,0.74,0.707,0.699,0.721,0.715,0.712,0.713,0.722,0.707,0.824,0.755,0.742,0.721,0.725,0.734,0.719,0.737,0.73,0.728,0.7,0.729,0.702,0.715,0.716,0.744,0.691,0.693,2.879,0.706,0.719,0.718,0.708,0.719,0.696,0.722,0.705,0.719,0.832,0.86,0.826,0.855,0.848,0.852,0.843,0.845,0.825,0.839,0.834,0.824,0.778,0.891,0.819,0.878,0.801,0.701,0.845,0.862,0.844,0.847,0.839,0.852,0.852,2.512,0.843,0.846,0.838,0.865,0.826,0.615,0.883,0.896,0.45,0.392,0.867,0.831,0.865,0.858,0.842,0.839,0.864,3.36,0.861,0.851,0.855,0.819,0.839,0.818,0.877,1.151,0.183,1.442,0.95,1.299,1.297,1.434,1.218,0.486,0.484,0.526,0.525,0.54,0.538,1.075,0.86,0.871,0.88,0.886,0.859,1.635,1.924,1.682,0.884,0.847,0.856,0.862,0.862,0.85,0.504,0.728,1.266,1.282,1.285,0.774,0.788,0.99,1.051,1.016,1.18,0.718,0.713,0.739,2.551,1.42,0.728,0.712,0.726,0.717,0.72,0.734,0.72,0.719,0.72,0.726,0.711,0.713,0.722,0.701,0.728,0.717,0.719,0.721,0.717,0.707,0.708,0.711,0.717,0.718,0.722,0.706,0.725,0.717,0.714,0.721,1.572,2.377,1.438,0.714,0.712,0.719,0.715,0.726,0.722,0.719,0.729,0.724,0.721,0.726,0.726,0.718,0.503,0.779,0.729,0.725,0.74,0.752,0.714,0.734,0.721,0.351,0.723,0.735,0.731,0.721,0.744,0.722,0.718,0.729,0.724,0.721,0.705,0.714,0.71,0.708,0.712,0.725,0.717,0.696,0.731,0.706,1.581,0.753,0.751,1.103,1.1,1.387,0.712,0.709,0.697,0.714,0.703,0.762,0.726,0.726,0.736,0.72,0.714,0.709,0.739,0.714,0.748,0.719,0.717,0.718,0.712,0.716,0.714,0.701,0.711,0.941,0.693,0.729,0.716,0.729,0.705,0.701,0.735,0.704,0.703,0.514,0.735,0.669,0.774,0.719,0.732,0.727,0.721,0.725,0.723,0.722,0.709,0.719,0.718,0.702,0.735,0.702,0.699,0.701,0.723,0.73,0.78,0.809,0.729,0.726,0.728,0.725,0.727,0.721,0.723,0.704,0.725,0.729,0.706,0.727,0.717,0.719,1.409,1.429,1.228,0.729,0.729,0.721,0.725,1.462,1.447,0.75,0.7,1.43,1.458,1.435,1.454,0.723,0.708,0.733,0.732,4.671,0.758,1.453,0.734,0.729,0.714,0.736,0.721,0.716,0.734,0.726,0.727,0.743,0.718,0.725,0.729,0.731,0.718,0.739,0.738,0.704,0.741,0.734,0.722,0.731,0.714,0.72,0.696,0.693,0.755,0.876,0.704,0.724,0.72,0.724,0.714,0.707,0.72,0.714,0.72,0.715,0.727,0.72,0.726,0.747,0.716,0.731,0.733,0.723,0.728,0.726,0.665,0.062,0.728,0.739,1.447,1.439,1.442,1.462,0.705,0.72,0.726,0.723,0.721,0.723,0.722,0.684,0.724,0.731,0.71,0.577,0.694,0.72,0.741,0.715,0.725,0.733,0.725,0.706,0.748,0.722,0.734,0.716,0.721,0.722,0.723,0.723,0.737,0.71,0.729,0.729,1.455,2.17,0.731,0.733,0.735,0.723,0.735,0.73,0.733,0.73,0.729,0.724,0.727,0.729,0.725,0.73,0.733,0.737,0.722,0.73,0.719,0.731,0.731,0.72,0.774,0.687,0.741,0.711,0.729,0.716,0.739,0.731,0.76,0.689,0.735,0.717,0.738,0.718,0.736,0.727,0.722,0.796,0.794,0.774,0.736,0.707,0.762,0.27,0.596,0.887,0.885,1.803,1.788,1.794,3.609,1.829,1.777,1.766,1.768,1.754,1.77,0.867,0.866,0.866,0.903,0.875,0.889,0.875,0.875,0.862,0.88,0.898,0.855,0.876,1.326,0.865,0.857,0.885,0.897,0.867,0.852,0.878,0.882,0.877,0.886,0.857,0.859,0.877,0.875,0.881,0.86,0.863,0.891,0.874,0.86,0.864,0.888,0.874,0.868,0.87,0.878,0.823,0.869,0.877,0.862,0.878,0.875,0.872,0.876,0.886,0.242,0.633,0.876,0.666,2.097,1.786,0.881,0.911,0.886,0.885,0.906,0.894,0.904,0.894,0.893,0.905,0.927,0.893,0.905,0.889,0.902,0.897,0.894,0.89,0.905,0.879,0.911,0.879,0.917,0.306,0.621,0.89,0.888,0.899,0.896,0.896,0.896,0.897,0.879,0.899,0.903,0.888,0.892,0.888,0.896,0.89,0.897,0.906,0.892,0.895,0.89,0.893,0.902,0.918,0.862,0.888,0.892,0.885,0.898,0.899,0.892,0.889,0.9,0.887,0.888,0.917,1.779,1.779,1.796,0.879,0.905,0.91,0.89,0.888,0.91,0.911,0.905,0.918,0.907,0.903,0.895,0.905,0.89,0.926,0.885,0.918,0.907,0.901,0.906,0.905,0.901,0.898,0.938,0.914,0.899,0.903,0.908,0.918,0.897,0.918,0.896,0.905,0.897,0.899,0.895,0.905,0.889,0.906,0.895,0.895,0.894,1.122,0.701,0.894,0.899,1.07,1.482,1.854,1.912,0.912,0.899,0.908,0.913,1.147,0.356,0.321,0.908,0.895,0.896,0.908,0.943,0.863,0.922,0.892,0.881,0.894,0.908,0.892,3.553,0.956,0.945,0.877,0.919,0.92,0.897,0.917,0.904,0.908,1.18,1.446,1.4,0.841,0.559,1.157,0.923,0.937,0.941,0.462,0.462,0.465,0.466,0.452,0.455,0.464,0.458,0.459,0.454,0.928,0.903,0.907,0.932,0.457,0.463,0.462,0.473,0.469,1.146,0.695,0.923,0.889,0.911,0.915,0.889,1.943,1.125,0.953,0.942,0.918,0.899,0.891,0.892,0.511,0.398,0.884,0.905,0.886,0.92,0.905,0.908,0.9,0.899,1.412,1.116,0.77,0.805,0.648,0.861,2.263,0.908,0.912,0.951,1.066,0.909,0.902,0.901,0.933,0.89,0.887,0.932,1.076,0.915,0.912,0.91,0.943,0.928,0.947,0.795,0.799,3.701,1.398,1.002,1.087,0.928,0.934,0.92,0.952,0.949,0.915,0.916,0.999,0.999,0.907,0.904,0.934,0.935,0.915,0.922,4.764,1.873,1.216,1.228,1.144,1.148,1.189,0.603,0.602,0.815,0.816,1.105,1.49,0.741,0.749,0.937,0.937,1.227,1.235,1.368,1.026,5.076,4.471,2.025,1.339,1.336,0.867,0.921,0.888,0.946,0.933,0.886,0.935,0.9,0.908,0.897,0.898,0.895,0.89,0.879,0.879,0.897,0.936,0.819,3.174,2.644,1.76,1.72,0.818,0.823,1.319,1.336,2.692,0.828,0.904,0.906,0.674,0.209,0.886,1.215,1.221,1.491,0.746,1.513,1.281,1.272,1.311,1.304,0.932,0.934,1.056,1.064,1.304,0.875,0.881,0.85,0.801,0.941,0.854,0.898,0.86,0.447,0.554,0.551,0.857,0.711,0.712,1.061,1.067,4.029,1.268,1.148,1.446,1.234,0.731,1.072,1.068,1.074,0.711,1.071,1.104,1.025,1.113,0.708,0.701,0.703,0.758,3.919,0.685,0.734,1.035,0.709,0.717,0.707,0.689,0.722,0.696,0.699,0.707,0.705,0.728,0.708,0.703,0.696,0.709,0.312,0.386,0.736,0.69,0.717,0.694,0.696,0.698,0.712,0.696,0.68,0.709,0.673,0.698,0.56,0.575,0.701,0.675,0.771,0.67,0.719,0.705,0.72,0.728,2.446,1.074,0.695,0.608,6.292,2.556,1.481,0.861,0.556,1.07,1.084,1.083,1.072,1.078,0.707,0.7,1.049,0.741,0.708,0.732,0.719,0.725,0.71,0.709,0.756,0.712,0.708,0.722,0.722,0.734,0.767,0.697,0.697,0.722,0.742,0.726,1.009,0.823,1.003,0.475,0.045,1.723,1.86,1.243,0.76,0.079,0.241,0.07,1.231,1.129,1.062,0.157,0.445,0.775,1.293,0.994,0.899,1.71,3.824,4.135,1.339,3.787,4.116,1.649,1.604,1.003,3.049,2.107,0.835,0.844,1.403,1.416,1.614,1.519,1.884,1.864,0.953,0.975,0.944,0.949,0.687,0.693,1.388,5.056,0.824,0.838,0.844,0.841,1.021,1.007,0.95,0.969,0.842,0.871,0.869,0.858,3.229,2.539,1.289,1.287,0.976,1.004,1.002,1.014,0.736,0.739,0.751,0.728,0.718,0.739,0.736,0.746,0.602,0.605,2.08,4.079,5.22,2.953,2.331,2.429,0.804,0.808,0.798,0.792,0.807,0.809,0.826,0.778,1.68,0.865,0.844,0.729,0.754,0.743,0.762,0.696,0.734,0.759,0.747,0.784,0.723,1.515,3.001,0.796,0.83,1.217,1.225,1.163,1.172,1.286,1.271,1.25,1.262,0.934,0.926,1.059,0.79,3.249,1.263,0.346,0.855,0.899,0.904,1.039,1.04,1.003,0.96,0.781,0.787,0.766,0.777,0.158,0.729,0.908,1.032,1.075,1.057,1.037,1,1.061,1.029,1.026,1.034,1.049,1.047,1.05,1.354,1.384,0.475,1.948,9.777,1.202,0.709,0.915,0.717,0.838,1.008,1.012,0.802,0.809,0.805,0.947,0.774,0.96,0.968,0.968,1.001,1.042,1.036,1.035,1.166,1.152,2.282,5.757,4.705,4.798,2.449,3.811,3.807,4.21,4.182,2.481,2.6,1.184,2.425,2.435,1.861,3.009,3.342,3.373,4.107,2.041,2.05,2.271,2.31,4.624,5.179,5.207,3.498,3.44,6.956,5.76,1.416,1.465,1.458,1.467,1.341,1.384,0.897,1.846,1.216,1.231,1.232,1.221,1.679,1.697,1.995,1.369,3.397,1.681,1.701,3.412,1.706,1.723,1.402,1.425,1.398,1.375,1.223,1.242,1.224,1.249,1.455,1.024,1.855,2.244,6.136,1.493,1.49,1.481,0.761,0.767,1.175,1.213,1.209,1.21,1.975,2.01,6.195,2.099,2.106,1.295,1.302,0.789,1.41,1.125,0.751,1.499,2.045,1.016,1.009,1.402,1.44,1.424,1.42,2.961,3.132,3.071,1.519,1.506,1.769,1.821,1.798,1.806,1.523,1.536,1.547,1.497,2.249,2.347,9.258,0.598,3.086,0.783,1.178,2.254,1.89,2.77,1.675,1.681,1.218,1.656,1.196,2.069,1.928,2.082,2.092,1.802,1.75,1.753,1.752,2.77,2.792,2.464,1.208,1.244,1.164,1.195,2.39,1.502,1.532,1.496,1.546,3.475,1.702,1.742,2.829,7.829,3.114,1.526,1.55,1.835,1.854,1.85,1.858,1.939,1.965,1.948,1.965,2.668,2.71,3.989,4.056,21.937,3.089,3.131,2.222,2.23,2.496,2.144,4.012,8.164,3.11,3.615,4.599,4.467,2.138,2.302,2.115,2.118,2.137,2.137,2.272,2.284,2.277,2.29,1.602,1.652,1.617,1.652,1.26,1.269,1.287,1.282,1.455,1.47,1.509,1.466,2.286,2.273,2.43,2.448,4.896,5.073,4.773,2.503,2.29,3.398,1.706,1.72,1.726,1.735,1.719,1.745,1.932,1.905,1.752,1.829,1.845,1.849,1.026,2.653,1.588,1.614,1.66,1.612,1.103,1.161,2.282,1.276,1.913,1.604,1.614,2.913,4.871,1.162,1.546,1.531,2.335,1.591,1.577,1.407,1.363,1.379,1.379,0.687,0.696,1.386,1.301,1.324,1.291,1.318,1.315,1.328,1.614,1.645,1.616,1.65,0.893,3.835,1.162,1.184,1.19,1.173,1.204,1.232,1.233,1.242,1.08,1.125,1.099,1.131,1.041,1.072,1.074,1.06,1.146,1.156,1.173,1.159,0.746,0.744,0.758,0.764,2.186,0.943,0.993,0.956,0.94,0.71,0.704,0.474,0.948,1.065,1.076,1.104,1.076,1.105,1.108,1.05,1.035,1.187,1.212,1.204,1.215,0.629,1.126,1.112,1.102,1.123,0.757,0.776,0.754,0.726,1.746,1.76,1.732,1.748,5.001,1.294,1.271,0.642,0.646,0.628,0.657,0.809,0.801,0.822,0.793,0.779,0.791,0.783,0.793,1.211,0.811,2.013,1.01,1.023,1.02,1.015,0.698,0.691,0.826,0.585,0.729,0.731,0.749,0.728,0.663,0.659,0.675,0.652,0.679,0.662,0.668,0.647,0.731,0.749,0.76,0.73,0.786,0.752,0.792,0.75,0.753,0.741,0.754,0.736,0.732,0.747,1.493,0.742,0.838,0.458,0.474,0.463,0.478,0.436,0.461,0.467,0.547,0.542,0.524,0.541,0.573,0.57,0.564,0.573,1.036,1.022,1.022,1.019,0.632,0.62,0.623,0.62,0.621,0.619,0.614,0.628,0.418,0.39,0.377,0.407,3.028,3.358,1.318,1.699,1.526,1.522,1.348,1.221,3.163,0.838,1.593,0.03,0.815,0.76,1.776,0.926,0.926,0.941,0.931,0.781,0.769,0.764,0.77,0.989,0.974,1.97,0.989,0.971,0.994,0.982,0.961,0.998,0.992,0.971,3.85,0.933,0.951,0.937,0.482,0.486,0.901,0.905,0.915,0.91,0.971,0.981,0.974,0.962,0.967,0.966,0.97,0.972,1.254,1.267,1.258,1.269,1.271,1.317,2.593,1.219,1.225,1.206,1.196,1.385,1.379,1.401,1.365,1.132,1.119,0.829,0.935,1.723,1.224,2.438,2.113,2.152,4.1,2.05,2.03,1.329,1.35,1.336,1.354,1.424,1.434,1.428,1.447,1.165,1.175,1.172,1.185,4.622,4.132,1.521,0.246,0.498,1.439,0.436,0.201,4.069,0.171,1.502,0.965,0.612,1.092,2.147,1.661,1.777,0.478,1.488,2.449,1.381,1.394,1.398,0.688,0.74,1.001,1.034,0.946,0.921,0.828,0.857,0.838,0.869,0.903,0.785,0.861,0.848,0.784,0.759,0.775,0.767,0.555,0.583,0.567,0.573,0.592,0.601,0.612,0.61,0.736,0.726,0.742,0.731,0.785,0.769,0.819,0.777,0.677,0.688,0.689,0.667,2.693,0.723,0.725,1.437,0.731,0.718,0.747,0.723,0.85,0.878,0.892,0.88,0.926,0.887,0.907,0.908,0.719,0.725,0.73,0.73,0.717,0.715,0.719,0.742,0.964,1.002,0.992,0.991,0.869,0.884,0.881,0.889,0.764,0.782,0.786,0.782,0.6,0.609,0.611,0.612,1.221,1.242,0.724,0.726,0.72,0.732,0.713,0.714,0.706,0.72,4.592,0.802,0.83,0.883,0.744,0.968,0.911,0.993,0.98,0.889,0.747,0.875,0.684,0.914,0.813,0.746,0.728,0.818,0.774,0.776,0.763,0.817,0.8,0.943,0.902,0.552,0.543,0.936,0.934,0.511,0.478,0.514,0.497,0.534,0.514,0.525,0.525,0.488,0.486,0.494,0.476,0.442,0.455,0.456,0.444,0.472,0.471,0.471,0.459,2.078,1.036,0.769,0.68,0.872,0.648,0.633,0.441,0.437,0.446,0.424,0.784,0.382,0.392,0.386,0.393,0.381,0.355,0.545,0.513,0.547,0.505,0.37,0.381,0.371,0.368,0.475,0.471,0.507,0.488,0.459,0.476,0.473,0.478,1.902,1.037,0.533,0.51,1.069,1.071,0.734,0.738,0.75,0.748,0.374,0.355,0.379,0.372,0.771,0.386,0.385,0.638,0.412,0.23,1.232,0.788,0.786,0.394,0.389,0.397,0.386,0.357,0.368,0.368,0.374,0.419,0.427,0.415,0.431,0.305,0.304,0.306,0.308,0.599,0.593,0.362,0.482,0.651,1.406,1.083,1.26,1.06,1.011,0.895,0.75,1.357,3.449,1.862,0.827,0.83,0.836,0.831,1.319,1.122,1.091,1.108,1.823,0.744,0.73,0.952,1.238,1.26,0.265,1.033,0.641,0.686,1.12,1.202,1.208,1.017,0.274,0.702,0.785,0.788,0.796,0.821,0.286,0.902,1.226,0.619,0.619,0.602,0.574,2.384,1.607,1.597,1.442,1.464,1.57,1.586,2.254,2.256,2.756,1.38,1.408,1.716,0.85,0.873,0.731,0.726,0.725,0.747,1.085,1.067,1.325,0.654,0.674,0.573,0.588,0.609,0.586,0.806,0.102,1.864,3.141,0.089,2.362,2.536,2.206,1.678,1.231,4.457,0.656,0.677,0.669,0.678,1.098,0.561,0.565,0.519,0.542,0.536,0.561,0.542,0.559,0.547,0.554,0.42,0.433,0.422,0.456,0.571,0.571,0.717,0.712,0.821,0.848,0.608,0.611,0.61,0.618,0.639,0.636,0.638,0.616,0.526,0.529,0.539,0.537,0.408,0.292,0.727,1.431,1.421,1.426,0.53,0.534,0.535,0.544,0.789,0.8,0.797,0.793,0.909,0.46,0.457,0.615,0.624,0.633,0.626,0.521,0.532,0.525,0.535,0.619,0.66,0.653,0.678,0.527,0.545,0.55,0.539,0.569,0.582,0.581,0.575,0.469,0.47,0.474,0.473,0.604,0.617,0.627,0.635,0.442,0.443,0.889,0.889,0.884,0.53,0.532,1.023,2.116,2.331,1.344,5.821,1.232,7.716,0.965,0.954,0.899,0.067,0.986,2.047,2.104,2.063,1.933,1.997,1.924,1.984,1.886,1.554,1.746,3.616,1.945,2.034,2.959,2.498,2.283,2.739,2.769,2.255,3.442,2.807,4.062,2.028,3.046,3.1,5.485,2.718,1.37,1.385,1.309,1.321,1.571,1.594,1.354,1.375,2.956,1.616,1.643,1.257,1.285,1.28,1.281,1.22,1.234,1.298,1.167,1.184,1.169,1.072,1.073,1.421,1.375,1.395,0.702,0.714,1.206,0.74,1.877,1.926,2.278,4.284,2.521,1.565,2.164,1.315,2.015,1.809,1.342,1.046,0.589,0.503,0.639,1.775,1.459,1.629,1.492,0.92,0.938,1.099,2.306,2.088,1.845,0.961,0.924,1.444,1.444,3.782,1.884,1.907,1.206,1.219,1.212,1.225,0.965,0.965,0.964,0.993,1.016,1.053,1.024,1.039,1.571,1.617,1.452,1.265,1.35,1.377,0.953,0.997,0.988,0.994,1.86,1.888,1.777,1.39,0.947,0.475,4.192,6.749,5.073,3.908,2.6,1.569,1.532,1.728,1.363,1.233,1.204,1.228,1.221,0.784,0.777,0.816,0.789,1.092,1.092,1.116,1.105,0.766,0.772,0.786,0.773,0.922,0.92,0.922,0.904,0.878,0.9,0.959,0.871,1.797,1.804,1.963,1.961,4.214,3.236,3.206,11.592,11.597,4.205,3.147,1.584,1.579,1.388,1.385,1.677,1.092,0.859,0.865,0.858,0.867,1.224,1.241,1.069,1.196,1.592,0.804,0.8,0.903,0.902,0.894,0.901,1.118,1.116,1.117,1.134,1.183,1.203,1.3,1.142,1.439,1.439,1.512,1.152,1.176,1.173,1.188,0.97,0.956,0.979,0.965,0.979,0.85,0.955,0.91,1.396,1.411,1.446,1.421,0.771,0.795,0.795,0.791,0.798,0.663,1.49,1.486,1.467,6.333,2.988,2.969,1.617,1.628,1.817,1.439,1.021,1.044,2.081,1.033,1.018,1.043,1.062,0.928,0.942,0.947,0.93,0.92,0.946,0.936,0.93,1.006,1.067,1.04,1.042,0.842,0.881,0.851,0.91,1.373,1.378,1.376,1.389,1.283,1.326,1.313,1.323,1.293,1.325,1.094,1.112,1.13,1.104,1.151,1.14,1.163,1.143,1.387,1.366,0.658,0.677,0.675,0.69,0.729,0.727,0.733,0.697,0.919,0.906,0.943,0.922,0.941,0.753,2.704,4.406,0.27,13.662,4.707,7.218,4.166,4.104,9.988,1.051,1.421,0.73,0.722,1.511,1.494,1.509,1.531,1.387,1.424,1.393,1.41,1.024,1.02,1.077,1.037,1.808,1.732,0.091,1.199,1.228,1.247,1.22,0.884,0.922,0.986,0.863,0.947,0.934,0.901,0.915,1.162,1.199,1.253,1.17,1.435,0.681,0.681,1.376,1.363,1.037,0.99,0.992,0.946,0.747,0.714,0.719,0.706,0.648,0.619,0.639,0.624,0.728,0.67,1.369,0.792,0.729,0.763,0.706,0.709,0.704,1.488,0.816,0.813,0.814,0.808,0.551,0.543,1.102,1.116,1.078,1.315,3.085,1.077,1.099,0.546,0.546,0.53,0.535,0.661,0.631,0.659,0.637,0.688,0.647,0.837,0.84,0.691,0.698,0.76,0.627,0.454,0.473,0.488,0.459,0.764,0.757,0.751,0.75,0.702,0.659,0.699,0.671,0.719,0.671,0.711,0.686,0.735,0.702,0.715,0.714,0.68,0.67,0.699,0.666,1.005,1.03,2.003,2.304,2.311,0.55,0.534,0.562,0.551,0.564,0.542,0.502,0.504,0.965,0.988,0.956,0.925,0.815,0.809,0.849,0.805,0.803,0.807,0.807,0.794,2.418,2.437,2.412,2.407,1.759,1.658,1.016,1.305,0.687,0.87,1.286,1.302,1.307,1.231,0.987,1.028,0.999,1.008,1.179,1.237,1.3,1.157,0.81,0.79,0.81,0.846,0.991,1.05,1.885,1.31,1.367,2.654,5.832,1.448,1.472,1.514,1.475,1.01,1.065,1.053,1.063,1.132,1.174,1.144,1.223,1.334,1.242,1.305,1.272,2.047,2.054,1.926,0.983,0.95,1.149,1.168,1.199,1.19,1.014,0.997,0.997,0.947,2.003,1.963,1.046,1.027,1.212,1.175,0.942,0.987,2.034,1.818,1.816,1.606,1.637,3.188,2.435,0.258,3.395,2.063,1.959,1.698,1.475,1.744,1.451,0.914,1.26,1.488,1.042,1.217,1.355,1.104,1.27,1.462,1.263,1.075,1.401,1.711,1.507,1.43,1.808,1.362,1.876,0.105,0.543,2.495,1.773,0.342,1.023,0.876,0.829,0.886,0.869,0.974,0.98,1.016,0.98,0.937,0.891,1.595,1.608,0.97,0.976,0.991,0.907,1.855,1.837,0.19,0.555,0.736,1.473,1.797,1.798,1.829,0.897,0.903,1.297,1.336,1.325,1.329,1.572,1.541,0.811,0.751,0.763,0.707,0.824,0.774,0.841,0.785,1.408,1.418,1.37,1.435,1.266,0.669,0.644,0.797,0.89,0.877,0.889,0.871,0.696,0.705,0.698,0.69,0.623,0.596,1.262,0.805,0.821,1.681,3.242,1.416,0.246,3.318,0.84,0.649,0.664,0.485,0.487,0.517,0.47,1.747,1.646,1.184,1.915,2.045,1.874,4.233,1.152,1.103,0.8,1.341,1.315,1.365,1.558,1.105,1.789,3.432,2.943,2.516,2.37,1.23,1.361,1.281,1.635,1.717,1.61,1.416,3.224,3.343,2.328,1.886,1.625,0.93,1.498,2.233,1.542,1.695,2.521,3.192,2.924,2.679,2.639,2.187,2.764,2.146,2.312,2.787,1.973,2.258,2.191,2.288,2.142,3.718,2.985,4.763,2.285,4.436,3.829,3.709,3.364,2.648,4.721,1.877,3.436,0.709,2.279,3.475,3.808,6.231,2.925,1.768,1.807,2.016,1.413,0.884,2.122,1.459,1.381,1.348,1.547,2.117,2.303,2.038,1.152,2.088,0.727,3.056,1.915,2.044,2.314,3.103,2.922,2.352,0.213,3.013,1.379,2.725,1.169,1.969,1.1,0.906,1.855,1.929,2.478,1.029,4.462,1.615,1.783,1.749,1.84,1.839,2.234,3.573,5.054,1.113,1.96,1.187,1.461,2.33,1.847,2.19,2.699,2.48,1.741,3.602,5.364,6.613,0.631,2.375,3.294,3.285,3.283,3.285,3.283,3.424,1.895,1.633,2.836,3.076,4.058,4.775,1.607,3.871,4.941,1.73,0.014,6.13,4.092,2.403,2.74,0.949,0.621,1.996,0.804,1.099,2.221,3.675,2.961,0.028,4.532,6.006,3.435,3.871,1.562,3.034,1.936,2.252,3.42,3.509,2.521,4.277,6.065,6.215,6.042,4.026,3.897,1.743,5.746,6.852,4.519,5.446,3.718,5.229,4.681,1.72,3.321,3.522,3.584,3.535,2.98,3.641,3.085,2.619,1.412,1.772,2.597,0.882,3.387,3.742,2.013,2.083,3.084,2.773,5.271,2.732,2.695,2.791,2.706,2.724,1.339,1.412,2.334,2.722,2.855,2.504,2.128,1.907,1.785,1.933,1.796,1.79,2.934,3.226,1.461,1.1,1.457,1.914,2.154,1.88,2.37,2.598,2.134,2.383,1.371,1.63,2.598,0.314,0.984,1.429,1.749,1.453,2.364,1.323,1.391,1.607,1.083,1.981,1.426,1.202,2.293,4.534,1.869,1.606,0.591,1.31,1.797,1.834,2.558,0.59,2.053,2.358,0.473,0.713,2.31,1.453,3.29,6.16,2.094,1.95,1.655,1.635,0.884,2.089,2.016,1.735,1.75,3.439,2.485,3.259,2.282,2.804,2.854,1.249,1.286,2.736,1.482,1.694,2.087,1.8,1.117,2.499,2.749,2.368,2.621,2.452,2.362,2.518,2.249,2.272,3.049,2.667,1.706,1.018,1.316,1.408,1.874,1.924,1.587,2.493,1.614,1.66,2.042,1.639,2.139,2.037,1.668,1.91,0.962,2.456,2.076,2.066,1.24,2.124,1.799,3.855,1.368,1.752,1.429,1.362,1.395,1.995,2.265,2.013,1.758,1.898,2.176,2.072,2.498,2.013,2.066,2.824,3.035,1.844,1.643,2.079,1.575,2.421,1.36,1.27,2.988,2.861,1.526,1.508,1.139,0.976,0.459,1.145,2.067,1.991,3.613,3.592,1.534,2.936,2.477,1.398,1.929,1.873,1.905,2.204,2.185,2.032,1.854,1.396,2.351,1.93,1.937,1.929,2.531,0.671,1.524,2.738,2.479,3.596,2.629,1.627,2.929,3.55,2.563,3.842,3.419,4.292,0.935,1.209,1.918,2.697,1.914,2.669,2.096,0.631,1.967,6.077,2.325,1.918,6.535,5.632,6.235,1.136,4.017,7.099,3.606,5.251,5.42,7.045,4.612,6.197,1.906,3.963,3.506,3.566,3.571,4.013,4.423,3.981,3.264,2.928,3.467,3.428,5.557,3.409,2.447,0.209,9.065,2.346,2.445,3.552,4.729,2.017,3.68,3.44,3.221,3.663,3.565,4.925,9.255,4.886,5.281,3.793,4.198,4.396,5.59,2.375,6.346,11.346,8.518,11.735,0.666,6.448,5.307,2.207,3.983,0.344,3.386,4.089,4.915,5.821,8.645,6.214,6.064,5.833,3.374,3.311,3.622,2.829,3.601,3.56,3.497,3.346,3.331,3.391,3.131,3.056,3.36,3.4,2.799,3.301,3.803,3.937,4.418,2.011,2.626,0.176,6.49,1.849,2.158,3.358,2.105,2.139,1.784,2.379,2.736,2.81,3.293,3.352,2.347,3.596,2.844,0.68,4.923,5.517,2.225,3.635,4.3,6.382,3.479,4.61,4.015,5.695,2.667,2.61,2.253,1.513,2.009,1.885,2.73,2.937,2.37,3.597,2.674,2.175,2.293,2.126,2.405,1.729,2.08,2.578,2.309,2.275,2.604,2.304,2.177,2.804,2.432,2.711,2.455,2.31,4.117,4.062,3.692,3.46,5.283,3.486,10.995,6.544,4.121,4.356,4.557,3.137,3.236,2.955,5.159,4.958,4.667,5.344,5.714,4.968,4.89,4.499,4.707,3.062,2.784,0.932,1.223,1.986,2.296,2.981,2.95,2.44,2.302,4.423,4.254,2.306,3.355,3.106,1.086,3.301,4.589,4.88,6.111,6.82,4.796,3.625,3.613,2.435,1.924,3.672,3.946,2.967,2.942,4.604,2.707,3.061,2.941,3.64,1.512,2.898,3.769,4.115,7.696,4.102,4.124,6.963,7.037,3.408,3.373,3.33,1.684,1.733,2.503,2.595,2.678,3.203,1.709,3.136,2.103,0.759,2.835,3.678,0.611,2.988,0.252,3.205,2.054,2.179,4.409,3.143,3.173,3.445,5.296,5.024,3.725,3.898,3.488,1.801,5.096,3.751,3.878,3.162,3.05,3.028,2.23,2.666,0.796,0.399,1.85,2.727,3.771,1.999,1.966,3.467,0.199,4.857,5.819,0.867,5.308,4.861,4.966,4.156,4.011,4.192,3.135,3.294,2.369,2.008,3.499,3.317,5.32,2.674,1.899,4.843,4.099,6.536,6.643,5.598,3.492,6.518,3.242,2.789,2.613,3.088,3.029,2.902,4.252,2.799,2.291,1.667,1.899,0.927,1.648,0.525,2.049,4.691,2.492,4.824,0.64,3.047,3.961,0.565,2.442,3.774,2.7,2.986,4.455,4.634,1.766,2.278,0.757,2.36,6.36,4.409,0.176,1.801,0.211,3.573,0.008,6.769,0.359,3.24,0.852,2.393,3.315,3.212,2.867,3.435,2.159,4.565,2.855,2.188,2.218,1.838,2.001,1.107,2.015,3.637,3.146,2.426,2.53,4.815,2.058,1.925,1.77,2.043,1.261,1.456,2.239,1.625,1.886,2.199,2.367,1.725,2.118,3.041,3.767,4.344,3.067,2.307,1.466,1.387,1.63,2.889,2.623,2.207,1.769,1.855,3.836,1.453,0.574,0.754,0.273,2.854,0.277,0.174,0.966,1.544,3.023,5.23,0.537,0.318,3.272,1.536,0.297,1.391,1.334,1.396,1.37,1.379,1.32,1.753,1.258,3.4,2.438,2.031,2.207,2.049,1.978,1.863,2.613,2.561,1.779,1.614,1.286,1.769,1.438,1.999,0.007,0.767,1.396,1.283,1.919,2.215,0.883,2.195,2.821,4.419,2.72,1.987,2.38,3.204,2.112,2.444,1.735,2.032,1.803,1.693,1.163,1.512,0.339,0.993,1.441,1.533,1.904,1.59,0.176,1.956,1.984,2.143,1.411,1.84,2.705,2.329,0.027,2.18,2.166,3.177,2.242,4.081,3.058,2.235,0.34,7.051,4.876,6.432,3.859,2.71,2.471,2.808,17.905,8.698,10.912,0.838,3.297,2.601,3.329,0.805,2.936,7.399,6.862,1.557,2.399,6.147,3.024,4.162,3.805,2.689,3.112,3.431,4.158,2.325,2.333,4.625,3.161,3.473,7.73,4.247,3.632,9.786,10.107,9.943,10.026,24.563,19.761,23.981,19.722,9.827,1.754,2.514,0.51,3.838,5.97,5.988,3.375,2.16,2.147,3.883,3.266,2.944,0.347,2.016,1.225,2.143,2.854,2.738,5.316,8.83,7.039,2.237,2.096,1.329,1.403,1.002,1.002,1.27,0.941,0.939,0.828,0.911,1.213,0.436,3.001,1.229,1.297,1.24,1.612,2.074,1.001,1.464,0.798,1.051,0.917,1.095,0.69,0.662,0.755,0.555,0.645,0.627,0.722,0.628,0.694,0.613,0.741,0.623,0.71,0.68,0.651,0.676,0.632,0.702,0.86,1.114,0.869,1.164,0.869,1.153,1.483,1.834,1.998,1.296,0.997,1.391,1.171,0.949,2.79,3.732,3.733,5.243,4.595,7.807,3.388,5.973,0.691,0.154,5.754,6.181,8.46,4.913,8.264,4.427,1.161,6.601,6.567,10.414,5.168,7.301,3.335,0.713,0.805,0.285,7.199,6.594,4.642,1.871,6.175,6.623,1.166,6.686,0.089,4.34,5.786,4.984,10.274,6.008,8.866,2.647,6.407,4.852,6.056,6.445,6.776,6.023,6.21,4.738,2.199,4.79,5.583,5.18,4.663,7.716,6.91,6.091,4.754,4.858,5.177,1.01,5.249,2.96,1.451,0.029,2.137,3.492,2.89,0.029,0.556,2.655,4.516,5.105,1.178,0.029,2.701,6.299,3.407,4.479,1.93,8.327,1.632,0.033,0.781,3.754,3.537,1.611,4.672,10.413,6.137,4.118,5.258,4.401,3.626,0.721,6.123,3.932,3.762,4.755,4.539,5.881,4.766,5.28,4.863,5.044,8.727,7.149,3.853,8.949,4.593,2.384,12.668,1.366,4.69,6.027,6.129,6.026,6.666,0.529,6.576,3.478,4.701,5.79,4.966,4.417,4.899,3.351,2.066,1.99,4.169,3.71,3.688,4.053,4.271,4.753,5.283,5.356,5.83,5.288,4.885,3.971,2.667,0.574,6.46,5.893,4.038,3.159,1.1,6.661,6.633,8.06,6.955,6.197,0.861,5.043,4.089,5.417,5.458,10.821,4.668,1.225,6.011,3.705,8.543,5.242,2.16,8.468,8.259,5.255,5.52,0.992,2.316,3.211,2.03,1.644,2.162,1.359,4.01,1.385,8.192,3.743,3.154,0.371,4.638,4.504,5.162,5.065,4.673,4.859,3.568,7.64,7.982,6.392,5.936,0.342,8.123,1.15,7.917,6.846,4.726,0.984,4.752,5.553,6.029,7.058,7.467,6.366,6.012,1.291,0.834,3.338,7.788,5.474,3.758,5.81,1.206,2.208,1.076,2.515,6.472,3.817,0.668,0.758,0.779,5.635,5.947,3.796,3.088,0.848,0.9,2.82,6.42,0.271,9.182,8.594,10.056,5.381,11.361,5.523,6.329,8.856,8.106,10.909,0.861,5.894,8.946,7.576,8.086,14.649,7.069,3.807,4.077,0.773,5.36,6.078,5.984,5.425,3.046,3.031,5.564,3.121,3.107,5.635,5.119,5.688,5.721,4.291,2.334,5.773,2.583,2.138,1.846,1.788,2.073,4.146,8.735,3.33,2.381,1.91,1.676,1.589,2.787,1.667,5.821,1.873,4.134,4.899,3.891,4.377,8.961,4.212,2.247,0.701,1.355,3.488,5.927,5.405,11.243,8.805,7.191,1.917,4.952,1.973,4.143,0.74,2.419,4.12,0.412,0.514,1.836,1.456,3.724,2.016,2.388,2.431,2.535,2.585,3.148,1.5,3.47,5.315,2.831,1.439,6.846,4.131,55.535,8.689,11.155,4.099,3.98,6.392,3.653,4.159,10.172,14.824,3.389,11.491,9.016,3.423,4.341,1.266,1.583,0.78,2.699,2.779,1.608,3.262,0.331,2.257,2.143,0.107,2.813,0.081,2.056,1.125,2.877,1.571,4.133,1.801,3.62,6.857,8.426,4.774,9.428,5.502,1.333,3.559,1.557,0.765,4.357,1.326,0.955,4.755,1.656,1.309,2.826,0.378,0.845,0.75,0.263,0.783,1.751,1.335,1.55,6.493,4.423,0.016,3.606,7.024,3,8.199,3.83,3.503,0.549,0.359,0.37,0.721,0.757,10.832,9.176,21.016,2.217,9.917,7.927,2.789,2.69,3.919,1.432,1.072,3.259,2.578,1.219,1.19,2.08,5.644,8.777,1.624,2.446,1.571,1.682,0.033,1.284,1.203,2.511,3.115,2.691,3.166,3.038,3.237,1.831,3.242,3.624,4.223,2.31,3.287,6.532,6.353,3.247,0.774,1.16,1.869,0.986,3.789,5.481,2.165,2.016,0.296,2.323,1.584,2.544,1.304,1.177,1.978,1.242,1.383,2.039,2.206,1.483,1.56,2.006,1.21,1.612,1.374,0.802,5.082,0.532,38.515,9.702,15.504,8.926,5.393,6.323,6.323,9.3,9.272,6.444,1.723,2.234,3.382,2.411,3.529,3.565,3.616,5.144,4.961,5.306,16.577,44.651,8.004,8.677,4.41,2.52,2.34,1.26,3.018,2.277,1.147,1.034,1.167,1.815,2.232,1.432,1.893,0.766,1.29,0.994,2.749,2.783,8.764,4.407,2.916,1.534,1.99,2.526,2.157,3.978,2.885,1.692,0.395,0.371,3.375,2.903,2.984,3.216,3.248,4.098,1.391,1.922,0.968,4.255,3.365,2.898,3.282,0.477,4.124,6.3,5.245,2.165,0.838,6.433,0.832,4.363,3.226,6.027,5.715,7.249,6.686,2.354,2.069,0.176,2.321,2.438,1.172,3.382,3.69,4.988,0.834,5.18,4.263,3.341,3.851,1.17,3.165,2.031,5.377,3.189,5.725,2.908,2.019,1.014,1.122,1.83,2.054,2.593,1.608,1.542,2.829,0.982,0.804,2.533,1.815,1.939,2.055,2.967,1.752,1.697,1.517,2.257,1.339,0.664,0.982,0.857,1.999,2.225,2.808,1.652,1.717,1.292,2.284,2.398,1.229,0.967,1.662,0.938,0.911,1.537,0.791,1.291,4.593,2.2,3.61,0.436,0.881,2.364,3.246,1.746,1.576,0.934,0.575,1.935,3.485,4.32,2.16,8.257,0.624,0.754,0.168,1.848,1.108,1.314,1.286,1.142,1.171,0.869,2.607,1.986,3.229,2.839,2.801,2.429,7.939,1.871,1.259,6.24,1.986,0.744,2.388,5.01,4.249,3.342,1.709,2.242,2.762,3.787,2.118,1.727,2.198,0.802,2.798,2.589,2.888,3.343,2.57,2.146,0.39,0.47,0.71,1.341,2.817,4.239,4.499,3.714,2.504,3.181,2.578,2.971,11.907,6.517,2.515,2.632,2.844,2.315,2.052,2.289,4.616,3.968,3.429,2.688,6.238,1.809,3.945,1.139,1.147,1.036,1.938,2.5,2.692,2.942,2.903,2.539,0.522,1.852,0.17,2.183,7.754,0.811,1.321,2.892,1.55,1.264,1.226,0.694,0.699,1.346,2.635,3.119,3.681,1.102,1.164,2.195,2.531,0.512,1.015,2.809,4.171,4.477,2.484,1.782,1.58,1.322,1.469,0.186,1.334,1.859,1.28,0.758,0.847,1.393,0.222,0.943,6.273,4.326,1.238,1.04,0.88,0.868,0.8,1.036,1.098,0.836,0.823,1.233,1.09,0.923,0.999,2.706,1.231,1.474,1.135,0.832,0.79,0.768,1.262,2.089,1.071,0.77,0.709,0.734,0.953,1.332,0.791,0.776,0.815,0.804,0.536,0.464,0.766,0.719,1.434,1.284,1.266,3.395,1.099,0.855,0.789,0.752,1.023,0.991,1.12,1.21,1.267,1.377,0.736,0.75,0.416,0.602,1.202,1.227,1.204,1.351,1.257,1.96,1.99,1.17,1.164,4.679,1.206,1.179,1.003,1.12,1.158,1.086,1.004,0.826,0.766,1.268,0.702,0.353,1.048,0.954,2.014,1.878,1.224,0.793,1.092,1.092,0.779,1.756,0.996,1.29,1.233,1.384,1.723,1.061,5.14,1.755,1.187,1.158,1.092,1.419,1.373,0.073,1.997,1.538,0.503,2.633,1.426,2.141,2.42,0.684,2.109,1.439,0.985,0.694,0.597,0.653,1.333,0.812,1.078,1.367,1.557,2.766,1.667,1.199,0.48,1.506,1.203,0.408,3.723,1.984,0.266,0.35,2.133,3.399,1.924,3.739,0.497,1.705,1.325,1.073,1.569,3.068,1.842,2.135,1.171,2.052,1.721,1.945,1.514,1.773,1.683,1.572,2.221,2.212,0.615,0.447,0.658,0.703,0.414,0.332,0.981,1.725,1.654,0.951,0.981,1.16,0.635,0.467,0.846,1.71,2.057,1.215,1.55,0.299,3.015,4.229,3.055,7.66,4.242,4.739,2.191,3.219,1.994,1.182,0.58,1.011,1.001,2.421,2.74,1.191,1.585,1.644,2.139,1.392,1.196,0.72,0.289,0.268,2.242,1.697,2.481,1.531,0.877,0.704,0.185,1.215,1.928,2.525,1.441,1.377,2.193,0.354,0.494,3.139,1.254,1.213,1.193,1.477,1.383,1.17,1.126,3.069,0.735,2.927,0.538,1.229,1.206,0.751,1.27,0.492,0.312,0.503,0.359,0.355,0.276,0.652,0.315,0.324,0.56,0.541,0.234,0.532,0.494,0.889,0.612,1.174,3.719,2.585,1.066,1.825,2.309,2.844,3.087,1.137,1.051,0.915,0.868,0.903,0.684,1.042,0.91,0.762,0.928,0.871,0.579,0.839,1.012,0.85,0.947,0.517,0.832,1.426,0.356,0.478,0.558,0.398,0.504,2.124,0.322,0.388,0.385,0.511,0.386,1.067,1.963,1.718,2.85,2.206,2.096,2.24,1.165,0.77,0.736,0.949,0.953,0.903,0.726,0.8,2.49,1.174,0.962,1.187,0.753,0.728,1.366,0.764,0.612,0.759,1.11,0.726,0.592,0.573,0.524,0.397,0.497,0.332,0.498,0.665,0.577,0.535,0.641,0.485,0.466,0.627,0.356,0.698,0.473,0.571,0.79,0.78,2.736,1.272,0.668,0.953,1.093,0.599,0.53,0.506,0.669,0.783,0.581,0.295,0.826,1.156,2.027,2.188,2.218,1.812,1.801,1.105,2.124,2.791,1.877,1.421,1.779,1.102,1.349,1.348,1.321,0.998,0.573,0.625,0.711,0.57,0.616,0.508,1.185,0.759,0.418,1.124,0.628,0.703,0.985,1.199,0.766,0.825,0.674,0.623,0.171,0.226,0.262,0.532,0.48,0.72,0.505,0.664,0.44,0.644,0.598,0.779,0.875,0.808,2.94,0.07,1.427,1.268,0.978,0.884,1.212,1.278,0.782,0.846,1.194,0.961,1.359,0.896,1.598,1.374,0.423,1.651,0.913,1.149,0.755,0.807,0.653,0.67,0.779,0.655,0.706,0.032,0.73,0.939,0.72,0.762,0.798,0.976,0.053,1.152,1.242,1.208,1.163,1.189,0.62,0.053,0.521,1.252,1.68,1.284,0.645,0.477,1.078,1.131,0.996,0.662,0.6,0.798,0.802,0.8,0.057,0.573,0.552,0.581,0.544,0.569,0.565,0.638,0.917,0.335,0.029,0.34,0.722,0.742,0.704,3.601,1.582,1.691,1.037,1.35,1.482,1.581,1.905,2.488,2.744,0.328,2.717,1.969,2.363,2.193,1.182,2.555,2.77,1.559,0.949,2.49,0.484,1.597,3.106,3.178,3.218,3.341,2.487,3.914,1.427,8.245,11.932,1.664,6.428,5.991,4.397,2.377,1.736,0.319,0.929,1.217,1.412,1.411,1.484,1.437,1.376,1.418,0.124,2.099,1.441,1.45,2.444,2.323,2.006,2.011,1.068,2.74,2.184,2.127,1.947,1.427,1.196,1.814,1.338,2.482,4.615,2.825,2.416,0.285,1.978,1.416,2.119,2.094,2.975,1.824,1.829,2.536,2.299,1.988,2.2,2.183,1.996,2.25,1.958,7.71,0.822,2.325,3.015,1.419,1.779,0.914,1.929,3.182,2.192,2.026,2.57,2.815,1.974,1.842,0.477,2.123,1.141,2.489,2.899,2.413,1.899,2.177,1.801,2.031,2.275,1.165,2.384,2.74,5.111,1.537,1.291,1.572,1.102,1.347,1.155,1.406,0.866,1.134,1.057,1.681,0.788,1.037,1.373,1.468,1.063,0.786,1.061,2.341,2.875,1.548,2.224,0.487,1.431,1.521,1.976,3.625,1.492,2.255,1.535,1.435,1.895,1.022,1.047,1.473,4.768,2.347,2.176,2.3,2.259,5.337,1.276,2.063,1.6,1.74,1.27,1.889,2.408,0.483,1.922,2.167,1.506,1.718,1.649,1.427,0.702,1.482,0.323,1.514,1.799,1.552,1.908,1.938,1.207,1.199,1.537,1.801,0.883,0.914,0.935,1.035,0.927,0.9,1.04,1.129,1.207,1.342,1.542,1.658,3.928,3.076,1.678,5.104,3.153,2.611,1.244,1.002,1.824,2.323,1.884,2.142,1.771,1.456,1.175,2.491,2.553,1.872,1.896,2.25,3.051,2.595,2.434,1.848,1.689,2.345,2.463,0.549,0.908,3.4,2.795,3.127,1.534,1.579,1.528,1.601,1.594,1.04,0.973,1.247,1.208,1.746,0.663,1.301,2.076,2.536,2.63,5.596,2.96,3.59,1.748,1.85,2.006,1.711,1.711,3.204,2.774,0.4,1.902,1.198,1.217,2.169,1.159,0.657,2.849,0.826,0.397,0.941,1.512,1.789,0.413,1.974,4.408,3.859,2.324,2.28,8.09,3.644,2.965,2.79,2.047,2.58,2.18,0.576,2.189,4.301,2.688,1.308,2.254,2.114,1.993,1.276,1.278,1.336,2.089,1.576,1.733,1.57,1.816,1.868,1.528,1.824,1.432,2.408,1.874,2.146,1.796,2.944,1.822,2.207,2.8,0.465,0.938,1.312,1.442,1.1,0.3,0.546,0.51,0.979,1.22,1.074,0.551,0.367,0.944,1.019,1.083,0.867,2.414,1.154,0.443,1.58,1.17,0.711,2.169,1.507,0.895,1.098,0.712,1.159,1.577,1.495,1.517,1.318,1.513,1.729,2.507,1.794,1.633,1.63,2.114,1.871,1.861,3.405,1.719,1.422,1.124,0.959,0.999,1.017,0.518,0.628,0.983,1.018,1.181,1.411,2.051,0.958,0.5,0.848,1.517,1.686,1.795,0.168,1.708,1.971,1.8,5.877,4.916,3.846,1.924,1.21,1.238,1.399,0.424,1.156,1.547,1.544,1.204,1.724,2.454,1.569,2.617,2.305,4,4.105,3.417,3.183,1.35,1.731,4.302,3.043,2.749,1.003,0.709,2.339,1.222,1.507,1.752,1.053,1.539,2.352,4.056,3.714,1.29,4.835,2.759,1.301,2.124,1.186,1.7,2.026,1.882,2.023,2.487,3.002,3.961,3.104,2.159,3.939,3.059,2.021,1.854,1.975,1.455,1.802,1.631,0.214,1.145,1.157,0.299,1.719,2.452,1.352,0.949,1.96,0.74,1.57,1.444,1.405,1.342,1.707,1.965,2.031,2.085,1.935,1.738,1.285,1.441,1.573,1.604,1.383,0.869,1.186,1.552,1.951,2.336,2.459,3.268,2.089,2.073,2.883,2.682,2.86,2.936,4.034,3.783,3.74,2.925,3.392,3.134,1.889,8.08,4.719,3.316,3.982,4.438,6.644,7.41,7.297,4.035,2.463,10.12,5.627,12.213,1.644,4.685,1.477,10.255,3.69,0.837,2.584,5.723,3.998,5.023,0.863,2.851,3.211,1.85,2.336,5.661,2.71,5.148,3.207,2.284,2.628,3.77,3.864,3.838,4.065,3.968,3.909,3.814,3.81,2.872,2.147,3.433,2.067,5.224,1.537,1.47,1.6,3.449,2.942,4.825,3.983,4.673,2.596,1.731,1.186,2.357,3.487,3.208,2.159,2.22,3.362,3.524,3.611,3.823,4.655,8.645,5.844,3.258,3.074,7.59,6.948,1.246,3.081,3.906,2.206,2.028,1.563,1.418,1.974,3,4.296,4,1.729,1.356,1.525,1.369,2.351,1.49,1.612,2.23,1.285,6.439,4.134,4.635,2.469,7.11,1.154,3.099,0.444,7.474,2.043,0.63,2.535,2.429,1.156,1.332,1.049,0.922,0.836,0.616,0.475,1.094,1.119,0.943,0.879,1.556,1.367,2.205,0.98,1.008,3.286,3.438,3.591,2.277,1.923,1.452,0.321,0.95,2.073,2.082,2.319,2.323,1.806,0.916,0.523,2.37,1.883,2.358,0.785,1.117,1.567,1.482,1.578,0.896,0.849,1.09,0.678,1.279,0.863,0.454,0.94,1.218,1.978,2.484,2.063,2.806,2.5,2.579,2.092,1.906,1.55,1.827,2.137,2.731,2.371,1.583,0.951,1.384,1.548,2.178,4.137,1.583,0.907,1.411,1.523,1.501,0.872,1.809,1.836,1.385,1.948,1.112,2.211,0.56,7.426,6.679,7.665,5.367,1.941,4.23,2.747,3.823,1.181,2.857,2.184,4.61,2.397,1.334,1.362,2.227,1.946,1.945,2.097,2.212,2.243,15.06,3.445,3.88,2.484,2.809,2.613,3.951,1.792,1.854,1.652,2.237,1.473,2.604,5.01,8.525,1.426,1.173,5.672,3.224,1.963,1.697,4.751,3.916,3.461,1.89,2.135,3.211,2.692,2.529,2.938,2.699,2.037,1.869,1.551,2.343,0.946,2.594,1.111,1.652,1.367,2.072,2.064,1.641,1.022,0.908,3.36,2.938,3.394,6.279,3.858,1.433,1.451,2.628,3.244,4.116,2.326,2.202,2.086,2.176,2.291,2.247,0.9,3.068,3.082,1.95,2.283,2.27,2.42,2.662,3.537,0.559,0.732,1.6,1.982,1.058,3.685,1.171,4.824,1.729,1.152,3.327,0.464,1.059,2.072,2.945,3,0.873,1.254,1.637,1.908,0.771,3.657,3.169,2.958,2.803,2.853,2.379,3.971,5.725,0.783,2.428,1.986,1.459,2.298,5.78,5.248,3.64,2.358,2.531,3.051,3.18,4.452,4.345,11.017,4.138,2.922,1.514,1.541,0.692,4.257,2.381,2.322,9.115,5.109,1.162,2.58,0.496,0.841,1.845,1.495,1.826,0.887,4.904,1.368,1.73,1.031,1.018,1.369,1.406,1.374,1.372,1.37,1.348,1.413,1.386,1.293,1.241,1.242,0.612,1.224,1.241,0.593,0.65,0.614,0.613,1.242,0.619,0.611,0.607,1.251,1.238,1.244,2.786,3.974,3.975,4.216,2.818,2.264,2.05,2.83,2.853,3.152,3.3,3.313,2.724,1.88,2.603,2.617,1.966,2.594,3.29,2.634,1.304,1.999,6.551,6.555,3.95,4.651,2.273,1.866,2.385,2.628,2.404,2.445,2.684,3.364,3.895,2.184,2.424,0.823,0.885,0.832,1.768,2.408,1.326,2.525,2.203,1.275,4.192,11.551,13.663,2.848,1.65,0.93,0.752,2.307,1.35,0.683,2.335,3.002,3.256,0.813,0.972,2.194,3.686,3.275,3.448,1.809,2.58,1.272,1.713,3.127,2.164,5.135,0.937,0.226,0.318,6.057,7.274,4.427,4.288,2.482,2.593,4.804,3.784,3.599,2.849,2.859,3.396,3.415,7.052,4.128,4.692,1.475,2.326,2.278,4.949,0.054,2.595,1.403,1.468,1.773,1.867,1.513,1.4,1.438,0.865,1.317,1.321,1.92,1.854,1.344,1.281,1.575,1.707,1.825,4.178,3.452,3.285,1.773,1.887,2.214,2.091,2.807,1.125,1.325,2.665,2.816,3.494,1.199,1.137,0.334,0.322,1.269,2.969,2.084,1.832,3.086,5.06,2.957,0.784,1.36,4.513,2.748,2.912,1.323,4.042,1.007,1.064,2.91,2.23,2.034,3.629,5.257,4.936,2.608,3.269,1.856,1.881,2.321,0.796,0.437,1.182,1.826,5.399,0.601,0.56,3.156,1.744,7.264,2.126,5.502,5.189,4.605,5.85,1.992,3.456,1.803,3.059,2.738,0.986,0.985,0.977,0.982,0.987,2.29,0.987,0.988,1.527,0.899,1.604,1.51,1.406,1.417,0.839,1.008,1.773,3.69,2.148,4.023,0.852,1.83,1.83,2.951,2.951,2.577,1.201,1.298,3.364,2.537,1.883,1.355,0.861,1.055,1.791,4.62,1.029,1.042,1.396,0.951,1.016,1.212,1.155,1.135,2.247,1.367,0.752,0.748,0.723,0.631,0.565,0.848,0.778,0.796,1.101,1.252,1.7,1.149,1.336,1.151,0.714,0.701,0.815,0.892,0.811,0.805,1.427,1.011,1.007,1.31,0.302,0.998,2.019,1.746,2.639,0.925,0.942,0.66,0.669,0.941,0.938,1.225,0.919,0.924,0.676,0.684,1.362,0.885,0.899,1.513,1.161,1.161,0.778,0.784,0.75,0.752,0.766,0.771,0.763,0.768,1.761,1.765,1.947,1.928,1.024,1.026,1.022,1.013,1.298,1.285,1.255,1.505,0.763,0.758,1.54,1.785,0.873,0.874,0.827,0.826,1.646,1.724,1.718,1.271,1.261,1.274,1.266,1.705,1.692,1.717,1.705,2.536,1.271,1.266,0.697,0.69,0.635,0.633,0.629,0.625,0.626,0.623,1.484,1.607,0.882,0.88,0.867,0.87,0.892,0.891,1.93,1.934,1.295,1.312,1.315,0.938,1.797,1.352,0.698,0.699,0.745,0.756,1.401,0.882,0.896,0.651,0.66,0.664,0.672,1.149,1.257,0.63,0.634,1.635,1.682,1.186,0.991,1.351,0.585,0.589,1.175,1.014,1.377,0.892,0.891,0.689,0.694,0.756,0.758,0.751,0.751,0.948,0.946,1.241,1.364,1.095,1.17,0.921,0.929,0.947,0.95,1.025,1.029,1.1,1.103,2.767,1.387,1.382,0.576,0.571,1.11,0.683,0.676,0.595,0.596,0.568,0.611,0.606,0.602,0.604,0.651,0.644,0.557,0.593,0.591,0.622,0.619,0.631,0.628,0.608,0.606,0.639,0.637,0.625,0.607,0.604,0.611,0.601,0.642,0.579,0.654,0.647,0.738,0.736,1.245,1.205,1.879,1.579,0.735,0.744,0.649,0.255,0.906,0.92,0.967,1.26,0.608,0.609,0.945,0.946,1.219,0.807,0.812,1.209,1.044,1.044,1.13,1.136,1.225,1.263,1.22,1.24,1.236,0.921,0.929,1.27,1.026,0.972,0.944,0.587,0.584,0.891,0.913,1.158,1.202,1.761,1.189,1.158,1.216,1.193,1.174,1.182,1.196,1.224,1.001,1.171,1.203,2.367,1.154,0.576,0.578,0.598,0.605,0.599,0.605,0.577,0.58,0.587,0.589,0.561,0.556,0.556,0.555,0.651,0.569,0.571,0.591,0.591,0.591,0.588,0.581,0.576,0.594,0.589,0.59,0.587,0.584,0.587,0.585,1.179,0.693,0.692,1.213,1.166,1.159,0.874,0.877,1.18,0.871,0.868,1.125,0.507,0.496,0.744,0.799,1.104,1.19,1.171,1.225,0.633,0.624,1.212,0.9,0.892,1.375,1.088,0.903,0.394,0.612,0.767,0.762,0.751,0.746,1.221,1.264,0.665,0.72,1.066,1.03,0.881,0.861,0.96,0.934,1.157,1.167,1.237,1.165,1.129,0.987,0.826,0.945,0.998,1.014,1.131,1.106,1.096,1.107,1.117,1.39,1.375,1.25,1.189,1.223,1.169,1.247,0.643,1.143,1.307,1.327,1.22,1.092,1.085,1.24,2.633,1.718,2.312,1.885,1.199,1.207,1.252,0.598,0.599,1.182,1.313,1.278,0.899,0.747,1.029,0.988,1.127,1.363,1.112,0.713,0.71,1.088,1.068,0.01,2.395,1.164,1.154,0.976,1.257,1.481,1.481,3.017,4.039,1.512,1.815,2.094,2.328,0.743,3.359,1.581,0.252,0.631,0.738,1.305,2.096,2.057,2.072,3.339,1.422,1.422,3.506,1.935,0.008,1.344,1.42,2.631,10.834,1.594,1.616,2.79,2.641,1.588,6.64,1.116,2.23,4.866,2.842,1.628,1.807,0.898,0.899,1.842,1.833,1.769,1.765,1.225,1.792,1.748,1.774,1.793,1.821,1.537,1.532,1.724,1.79,1.786,1.808,1.76,1.796,1.782,1.781,1.797,1.782,3.002,3.047,6.25,0.943,3.744,2.15,2.163,2.623,2.62,2.533,2.543,2.468,1.234,1.241,1.244,1.248,1.888,4.385,2.203,2.215,2.25,2.255,1.775,2.471,1.907,1.91,3.059,2.605,2.409,1.97,1.879,1.891,1.809,2.505,0.921,1.668,1.846,1.119,2.627,2.552,2.291,2.282,1.655,6.873,8.109,17.751,7.309,4.635,2.092,1.6,1.369,0.854,0.673,0.668,1.411,0.7,0.708,0.703,0.715,0.709,0.711,0.707,0.705,0.704,1.023,1.121,2.089,0.793,0.651,0.655,0.655,0.603,0.618,0.673,0.638,0.637,0.66,0.659,0.641,0.643,0.653,0.659,0.658,0.539,0.536,0.936,0.657,0.672,0.666,0.663,0.654,0.669,0.65,0.669,0.791,0.876,0.51,0.525,0.626,0.628,0.674,0.677,0.645,0.657,0.656,0.66,0.679,0.646,0.654,0.676,0.546,0.556,0.647,0.649,0.923,1.041,0.637,0.641,0.657,0.649,0.648,0.667,0.677,0.719,0.653,0.679,0.622,0.64,0.656,0.67,0.673,0.755,0.775,1.168,1.216,0.778,0.663,0.66,1.36,1.251,1.217,0.795,0.731,0.758,0.928,0.871,0.742,0.714,3.006,3.365,1.199,1.564,8.691,1.68,3.777,4.425,3.899,4.032,8.023,8.666,6.668,4.377,4.22,1.871,4.079,3.803,2.913,2.954,3.166,2.287,1.827,2.212,2.059,1.52,2.798,2.08,1.806,2.387,2.092,2.415,2.111,2.258,2.806,4.646,3.132,2.324,2.333,2.491,2.203,2.781,2.744,2.277,2.582,2.069,3.968,2.91,2.508,2.593,1.485,1.37,1.566,1.969,2.327,1.878,1.752,2.656,2.264,2.433,2.134,2.332,2.254,2.143,4.246,8.459,3.161,3.159,2.593,2.915,3.27,2.597,2.953,3.765,2.619,3.271,4.614,4.222,3.573,4.068,4.644,3.738,7.4,7.346,1.271,5.262,0.011,14.213,4.669,4.683,12.947,4.533,6.068,5.755,1.423,5.797,2.675,2.94,3.375,3.134,1.98,1.901,3.179,3.143,2.614,2.671,3.074,2.997,2.535,2.455,2.438,2.47,4.243,4.138,4.532,3.887,3.315,2.985,2.826,2.863,2.787,3.096,2.179,2.11,0.953,2.583,4.467,1.299,3.944,1.931,1.499,0.884,3.139,4.521,2.437,1.798,1.977,1.656,1.705,1.736,1.751,1.595,1.527,1.791,1.545,2.244,1.463,1.389,1.525,1.524,1.458,1.56,1.611,1.805,3.12,1.215,2.974,1.494,1.491,2.683,2.397,1.953,1.98,2.442,2.303,2.405,2.201,1.267,3.018,1.517,1.155,2.504,4.748,4.656,5.161,3.396,6.054,7.136,7.222,3.112,7.9,1.699,10.25,6.289,6.129,6.056,6.072,4.222,4.167,3.427,3.339,4.051,3.32,1.826,4.575,4.138,5.128,5.194,5.475,8.828,1.482,4.085,0.864,0.505,5.719,2.131,0.969,1.404,17.262,8.668,8.841,1.746,5.65,6.804,4.217,3.329,3.645,0.945,2.233,2.671,2.75,3.04,8.745,7.605,3.561,3.309,3.031,1.582,3.197,4.678,3.957,4.265,3.802,2.119,2.274,2.399,4.65,4.888,5.156,4.743,4.891,3.195,0.965,7.347,2.769,2.924,2.771,2.852,2.339,4.65,2.097,0.581,0.517,5.699,3.07,2.888,3.507,2.865,4.477,4.421,6.146,6.217,6.529,4.251,3.904,2.553,2.778,2.845,2.84,3.25,3.166,1.313,1.118,1.686,1.943,1.849,1.758,1.83,0.005,1.862,1.305,1.241,2.449,1.464,1.336,0.501,0.233,1.026,0.75,0.9,1.231,1.515,1.903,0.675,1.45,1.722,1.108,0.477,0.348,0.909,1.037,1.615,1.305,1.259,2.068,2.086,4.89,2.481,2.474,2.642,1.665,2.155,2.523,2.172,2.555,1.157,1.267,1.545,0.957,1.224,0.719,1.19,1.721,1.057,1.844,0.866,1.249,1.208,1.726,1.284,1.451,1.367,1.408,1.808,3.701,3.093,2.558,1.765,1.161,1.17,1.048,1,0.923,0.941,1.367,1.449,1.014,2.434,3.815,1.826,1.251,1.835,4.558,2.277,3.148,1.967,0.65,0.879,1.49,1.907,1.512,3.427,2.046,1.956,2.279,2.127,1.988,1.402,2.534,1.497,2.125,1.209,1.123,1.089,1.184,1.165,1.487,1.363,1.656,3.006,1.905,1.729,2.477,1.085,0.349,1.177,1.466,2.175,0.566,0.965,2.525,2.648,2.621,1.234,2.385,2.13,1.969,2.393,2.647,1.705,1.831,1.765,1.765,1.765,0.096,1.517,1.591,1.595,2.034,1.285,1.13,1.662,1.582,2.036,4.969,1.828,3.143,1.723,2.193,4.357,2.176,4.375,0.826,1.499,2.257,2.205,3.855,4.467,1.207,1.431,1.725,1.915,4.248,4.043,5.889,3.016,5.329,1.268,0.886,4.907,2.232,5.925,8.971,12.318,4.722,3.359,2.74,0.849,1.077,1.076,1.079,1.075,0.95,0.955,1.001,0.999,1.16,3.819,2.448,2.102,1.529,1.342,1.477,1.217,0.998,1.14,0.672,0.876,0.921,1.055,0.817,0.137,1.064,1.214,1.488,1.459,1.371,1.298,1.63,1.547,2.926,2.442,3.984,3.646,5.542,2.351,2.129,2.766,2.178,2.259,1.627,1.496,1.126,1.926,2.268,1.974,2.563,5.659,5.519,2.024,1.793,2.452,1.854,3.901,2.985,0.883,1.047,1.645,1.447,1.944,1.028,1.282,3.771,2.205,3.055,1.547,1.74,2.092,1.351,1.065,1.152,1.354,1.229,3.009,1.915,1.742,2.277,1.969,1.912,2.595,1.995,2.159,2.464,2.011,2.008,2.134,7.316,8.808,9.243,6.11,2.666,4.628,2.398,1.226,1.471,0.847,0.96,0.703,0.706,0.614,0.622,0.482,0.453,0.457,0.948,0.943,0.941,0.948,0.944,2.857,0.006,1.882,6.132,0.013,3.648,0.012,0.916,0.072,2.455,13.923,5.543,1.964,1.37,0.054,0.95,3.599,5.503,2.377,2.936,2.295,2.688,2.078,1.117,1.316,1.515,1.399,1.892,1.635,1.641,2.479,0.485,2.084,2.261,2.139,0.668,0.663,1.567,1.729,1.836,2.292,2.117,2.03,2.116,2.114,1.974,1.449,3.787,0.609,1.408,5.152,3.344,3.706,3.759,3.276,3.107,4.788,3.276,1.797,1.023,1.335,2.581,1.984,0.76,1.652,2.491,3.023,3.558,3.935,3.892,3.019,2.989,5.974,4.957,8.986,9.532,6.312,3.274,3.341,3.459,3.563,2.175,0.771,3.033,8.243,5.796,2.676,4.783,1.883,3.275,5.093,0.657,6.967,3.805,3.872,0.859,1.469,4.221,6.847,4.211,4.191,2.123,2.084,1.065,1.062,2.066,1.418,3.194,3.139,2.775,2.688,3.045,1.456,1.433,1.771,2.616,3.994,1.254,3.482,1.414,0.918,1.887,1.481,0.709,0.914,1.535,1.306,0.985,1.041,1.568,3.415,1.311,2.247,0.971,0.88,1.451,1.426,1.376,2.001,3.007,0.5,3.687,3.252,1.652,1.451,1.502,1.431,1.538,1.658,1.841,3.534,1.967,2.323,1.313,2.17,2.155,1.57,1.931,2.34,2.235,2.086,2.143,1.774,1.905,1.623,2.667,4.149,3.713,3.611,4.402,3.97,11.793,6.198,3.378,2.699,6.248,8.845,5.767,9.147,1.879,6.714,6.75,9.951,3.734,3.647,4.055,4.255,6.45,9.12,2.871,4.103,4.731,2.995,1.597,1.597,3.454,2.601,3.6,5.477,2.071,4.418,2.572,7.786,5.693,3.314,2.749,3.548,1.156,1.276,5.03,2.783,1.117,0.386,1.073,8.412,4.523,3.607,0.661,1.722,2.212,2.421,0.055,0.376,2.124,3.708,0.117,4.13,6.9,5.541,2.485,2.465,6.778,0.908,3.9,6.516,7.6,2.05,8.401,3.08,7.26,5.058,5.057,8.027,3.502,1.201,3.582,3.014,2.872,2.715,7.22,10.13,2.793,2.917,4.291,3.869,8.835,12.683,3.44,5.642,0.223,2.573,0.584,3.622,4.037,10.841,6.43,1.746,5.69,1.98,2.552,3.364,4.796,2.366,11.848,0.98,1.174,0.719,7.644,3.591,2.09,2.119,2.368,2.125,2.706,2.82,2.372,0.168,1.81,2.21,1.541,0.999,2.913,0.186,1.662,4.694,1.255,2.035,1.035,1.192,0.779,0.408,0.794,0.803,0.762,0.759,1.528,0.766,0.771,0.761,0.756,1.166,1.16,1.16,1.156,1.201,0.593,0.592,2.15,2.122,3.543,1.771,1.727,1.854,1.852,1.32,1.313,0.701,0.421,0.25,0.197,0.827,1.004,1.467,1.457,1.727,1.715,2.115,1.051,1.048,1.725,0.843,0.845,1.419,1.415,1.338,0.696,0.631,1.233,0.812,0.814,1.243,1.172,1.204,1.206,0.906,0.892,0.892,0.892,0.901,0.903,0.904,0.888,1.447,1.763,1.747,0.913,0.908,1.823,0.956,0.938,0.951,0.941,1.877,1.899,2.776,2.794,2.204,2.206,1.464,1.417,1.647,0.756,1.493,0.749,0.75,1.475,1.488,1.22,1.205,1.227,1.219,1.226,1.397,0.432,1.488,0.613,0.945,0.906,1.223,1.621,1.826,1.866,0.741,1.153,2.922,0.971,2.879,4.219,2.777,1.177,1.223,1.423,0.008,2.39,1.397,1.691,1.632,0.292,1.703,2.367,2.746,0.449,3.433,1.063,3.934,3.922,0.98,3.814,3.279,3.817,3.368,3.226,2.419,7.684,4.385,1.145,0.91,7.516,2.145,1.199,1.715,1.172,2.855,1.91,4.158,3.486,2.942,3.624,2.347,2.743,2.835,1.003,1.184,1.199,1.113,1.196,1.296,1.209,3.138,7.504,2.409,2.552,2.187,2.254,2.45,2.24,2.131,2.333,2.011,6.081,2.17,1.866,2.058,2.048,2.495,2.553,2.345,7.721,0.785,2.72,1.04,0.908,1.026,1.121,1.112,1.917,1.746,1.506,1.157,0.926,3.977,4.953,2.573,2.543,2.584,2.168,2.087,1.258,2.508,1.583,1.603,1.608,1.919,4.788,7.118,2.086,6.682,4.405,4.232,7.369,1.574,6.006,5.577,5.12,5.206,8.049,3.33,3.525,1.391,2.16,2.318,2.587,3.454,7.395,2.016,0.898,1.113,5.441,2.613,1.897,5.356,1.245,2.754,2.172,0.449,2.985,4.744,2.89,2.498,2.45,3.392,3.237,2.679,11.386,4.429,4.522,6.427,14.332,9.785,4.561,11.258,0.629,4.732,5.755,6.195,4.589,4.57,7.423,0.678,1.102,2.983,0.918,2.723,1.681,3.047,5.573,9.229,11.197,6.538,2.917,1.984,3.78,4.615,4.905,4.626,2.27,3.213,3.348,1.977,1.91,1.984,1.779,1.752,1.947,1.579,3.81,2.196,2.117,2.127,2.318,1.059,0.707,0.961,1.252,1.297,1.328,1.206,1.176,0.066,1.415,2.346,0.81,0.855,0.7,2.804,1.464,2.013,2.527,1.64,2.649,3.462,6.732,1.096,1.039,6.12,14.468,9.883,11.942,0.882,0.579,1.545,1.49,6.777,8.302,3.055,12.617,3.707,3.517,2.919,7.947,4.271,4.064,9.217,12.128,2.309,3.617,6.016,5.147,2.103,5.09,3.09,2.107,6.61,5.666,4.535,3.332,5.567,2.701,7.66,3.922,5.492,6.261,2.555,1.812,3.936,7.922,26.3,5.018,4.618,2.297,1.358,1.355,1.142,2.398,0.493,1.667,1.222,1.199,4.016,6.066,2.042,1.603,4.023,8.068,2.262,5.426,3.55,1.535,3.027,5.875,2.322,4.013,4.352,2.399,3.086,2.457,2.536,3.223,1.693,4.438,5,0.445,0.984,3.254,2.168,2.696,7.88,10.587,5.301,3.051,1.213,9.06,0.633,9.004,2.991,3.05,2.872,3.233,3.388,3.666,3.578,4.532,2.663,3.687,1.352,1.613,3.921,3.086,3.695,4.058,1.193,11.603,1.488,4.774,4.958,10.191,10.096,7.333,8.281,2.923,3.229,5.172,3.223,1.801,1.563,2.058,3.356,2.969,2.992,1.471,3.493,1.629,1.734,2.16,4.117,3.724,2.24,4.314,1.665,2.329,2.073,1.998,1.983,1.387,2.1,1.397,1.432,3.272,2.197,2.472,2.715,2.792,2.556,4.215,4.841,4.733,2.349,2.632,1.906,2.497,2.441,2.535,3.755,3.132,3.255,2.694,1.441,2.5,2.741,2.154,2.804,2.801,2.758,3.125,2.389,2.99,3.064,2.464,2.962,3.308,3.121,3.019,3.14,3.214,2.675,2.921,2.332,3.552,0.355,2.977,2.283,2.133,2.733,2.753,3.17,2.759,2.997,1.265,0.873,1.889,2.636,2.784,3.771,3.861,2.778,2.436,1.552,0.647,0.887,1.756,2.182,2.769,2.783,2.608,2.369,2.715,4.917,2.401,3.421,2.055,2.03,0.492,2.377,2.752,2.962,6.067,4.071,2.949,3.579,2.91,3.492,0.335,2.02,3.41,2.434,0.172,2.895,3.631,3.608,4.542,5.599,4.993,4.832,3.2,4.515,6.053,1.629,2.476,4.232,6.212,3.9,3.4,2.365,2.788,2.593,3.672,3.968,1.168,6.881,2.758,2.752,1.78,1.258,4.273,6.081,6.495,8.305,8.306,4.406,0.589,1.95,1.991,1.876,5.463,3.072,3.101,3.191,2.633,3.738,2.472,2.225,0.959,9.891,0.968,0.727,1.896,2.666,0.492,1.642,1.589,1.535,1.459,1.85,2.274,2.569,2.205,2.157,2.299,2.254,1.726,4.621,2.825,3.065,1.309,4.045,4.316,9.883,3.216,2.431,1.605,2.125,2.645,2.194,2.28,1.611,2.316,2.313,1.199,2,1.312,5.802,0.909,2.233,3.784,3.806,5.808,9.044,5.948,1.289,3.743,3.283,3.182,3.987,1.613,1.708,3.111,3.096,2.931,1.976,3.017,2.922,3.183,1.828,2.093,5.089,5.645,3.389,2.539,1.334,2.023,1.892,2.795,2.039,0.707,0.492,1.906,6.768,0.833,0.193,0.707,0.398,1.024,1.175,1.898,0.642,2.686,3.131,0.824,3.258,0.918,0.874,0.994,0.697,1.907,0.52,1.344,1.274,1.319,0.545,1.319,1.297,1.171,0.723,1.129,1.083,0.839,1.114,1.101,1.313,1.045,1.296,0.959,0.741,2.064,1.199,1.327,2.5,2.61,8.799,3.569,3.579,3.101,3.99,1.898,1.494,2.993,3.269,1.801,2.225,2.342,1.433,3.121,1.599,1.952,0.912,2.843,4.628,6.136,1.94,2.066,1.406,1.39,1.374,2.344,1.539,3.333,2.993,2.955,3.142,3.135,2.614,3.465,3.219,6.587,1.975,7.968,4.62,4.645,4.521,4.523,5.36,5.303,7.121,4.432,4.468,9.021,3.655,3.682,2.924,2.945,3.621,1.264,1.168,1.123,2.303,0.301,1.395,0.897,0.141,3.072,3.788,4.196,4.678,0.54,2.298,1.236,1.491,2.089,2.102,3.104,0.098,3.853,4.844,6.212,5.016,4.983,4.866,3.055,3.033,3.031,1.458,1.605,3.711,0.992,1.543,1.204,4.082,4.113,8.069,2.305,0.591,9.536,7.299,4.708,4.681,7.784,3.537,3.507,5.133,5.116,2.504,3.559,3.554,4.796,3.654,3.643,4.498,4.488,4.352,4.338,4.033,2.791,1.221,2.768,2.785,2.745,2.757,2.807,0.531,3.372,4.137,4.098,7.048,6.359,3.564,1.681,1.697,2.191,2.193,0.918,0.574,1.269,1.282,1.558,1.166,1.648,2.615,1.317,3.139,3.221,5.963,8.528,5.148,3.818,2.922,2.934,4.01,4.151,4.376,4.201,4.939,1.999,1.999,3.314,3.317,3.98,3.093,1.567,2.08,1.732,1.744,0.724,0.422,2.212,1.572,2.899,0.742,1.682,3.959,1.201,1.962,1.371,1.981,2.542,2.153,1.189,4.367,3.813,5.79,2.257,2.438,5.695,2.057,1.622,3.534,3.345,3.977,4.692,4.147,2.251,2.264,1.781,2.484,2.515,2.699,2.72,3.108,3.222,2.937,2.789,1.496,14.401,3.096,3.079,3.975,4.527,2.525,2.42,3.128,3.233,2.195,6.236,2.893,2.675,2.359,2.378,3.151,3.131,2.39,2.389,2.644,2.621,3.177,3.166,2.822,2.824,2.088,2.211,1.611,1.425,0.875,3.22,2.353,1.321,1.29,5.451,1.571,4.766,0.559,6.322,5.522,5.712,2.143,4.075,5.621,6.307,0.373,7.66,5.434,1.711,7.734,2.258,3.532,3.889,3.085,6.651,9.444,4.43,4.62,5.892,7.304,5.289,1.465,1.364,1.485,3.733,1.098,0.316,1.964,4.753,0.629,0.896,6.507,1.907,2.398,2.317,7.754,6.929,8.194,7.264,26.024,13.893,6.616,2.539,6.492,5.399,7.374,5.724,5.672,5.039,3.891,3.468,3.381,2.802,3.184,1.676,10.622,5.672,3.631,3.705,4.432,5.005,4.007,4.045,3.359,5.048,5.131,5.183,4.91,4.167,2.663,2.063,3.034,4.889,8.313,3.127,3.849,4.547,3.931,4.872,3.352,1.887,3.512,2.89,8.307,2.223,1.766,1.789,1.55,1.325,1.291,1.882,2.973,4.368,4.909,2.733,1.505,1.465,1.414,1.467,1.86,3.948,5.11,5.24,5.306,3.022,4.923,4.954,2.145,3.002,3.609,1.823,1.185,1.749,2.32,1.051,1.699,1.732,2.05,3.563,1.273,6.067,4.321,7.304,7.384,0.342,7.13,7.43,7.018,4.859,1.399,5.166,0.405,2.518,5.996,2.786,11.474,7.367,7.419,5.038,4.311,4.343,2.757,1.923,2.359,2.268,4.36,4.618,2.177,2.161,4.471,6.337,6.335,4.618,2.941,1.89,2.591,1.659,1.568,3.074,4.059,4.227,5.035,2.539,0.804,1.75,4.109,1.66,2.959,2.907,4.376,4.301,3.958,3.864,3.706,7.94,3.42,0.7,2.968,1.177,1.791,2.848,3.533,1.193,1.59,2.595,0.286,4.08,6.003,6.823,5.895,4.318,2.04,1.994,1.759,1.734,2.214,1.939,3.923,0.979,1.27,1.823,5.143,3.568,1.418,1.676,5.481,1.991,2.946,1.832,2.416,2.698,7.505,4.239,4.623,2.809,1.383,2.345,2.63,3.815,3.866,2.47,2.475,6.105,4.376,3.956,2.777,2.827,1.249,1.249,2.457,2.551,2.562,2.485,2.477,2.454,2.537,3.18,3.108,2.52,2.718,4.067,4.524,5.413,2.919,2.78,3.603,3.705,2.356,3.063,2.958,3.366,4.127,4.071,4.363,4.316,9.413,1.354,3.012,5.076,11.866,11.857,5.755,5.451,4.275,1.914,1.608,1.225,1.074,0.176,2.423,1.758,1.318,0.966,2.942,4.948,1.81,1.748,2.283,1.584,2.135,3.207,0.808,1.152,0.827,4.825,4.745,0.962,1.199,2.16,1.676,1.82,3.496,1.004,5.383,5.615,3.428,3.417,4.267,5.029,5.83,7.763,7.433,3.45,2.948,3.53,3.791,4.262,4.388,3.923,0.98,6.897,22.396,7.941,4.239,4.202,7.464,0.848,1.023,8.33,5.146,6.686,5.005,4.983,0.751,7.309,1.205,5.23,5.319,1.184,3.008,1.504,0.96,5.552,1.875,2.887,2.302,1.1,0.57,3.441,3.661,2.204,6.824,9.382,9.98,9.998,3.797,2.7,4.745,1.429,0.766,2.546,2.476,1.115,1.355,2.062,1.266,1.983,6.95,1.006,1.335,1.686,3.36,1.229,3.857,2.011,1.335,2.082,1.543,2.528,2.249,2.927,1.437,1.758,3.399,1.239,2.346,2.762,2.641,2.958,1.79,2.249,3.408,2.684,2.799,1.516,2.706,0.704,2.448,1.639,1.955,2.611,2.835,3.155,3.33,2.536,2.498,2.632,2.118,18.009,2.958,3.909,3.573,32.766,2.694,3.173,0.859,1.754,1.197,0.516,2.212,0.004,1.621,4.631,1.068,1.416,2.45,2.124,0.51,1.141,0.749,0.89,2.287,2.472,1.134,0.898,1.08,1.362,0.647,1.76,1.152,1.137,1.1,1.46,1.425,1.557,1.422,1.505,1.366,0.879,0.879,1.734,2.706,0.846,0.873,1.54,0.885,0.956,1.387,1.375,0.968,1.071,1.498,1.379,1.27,1.313,2.424,2.003,1.726,1.509,1.246,1.226,1.317,1.235,1.928,1.647,3.6,5.45,5.39,0.329,7.225,6.852,4.674,1.275,7.456,4.872,1.272,5.841,4.683,4.881,3.732,2.318,1.356,1.188,2.569,1.969,1.868,1.706,1.607,2.836,1.496,3.367,3.168,3.57,2.068,2.248,2.058,2.261,1.593,1.604,1.915,2.3,2.715,1.561,1.323,1.371,3.281,3.272,2.529,4.347,6.434,4.898,1.433,2.634,4.155,3.234,2.016,0.306,0.799,1.998,3.795,2.363,3.069,1.916,2.497,2.421,3.085,3.728,3.747,1.812,1.799,2.52,1.823,1.864,1.772,1.888,1.104,0.718,1.336,2.431,2.494,3.708,3.11,3.227,4.411,3.461,2.839,2.566,2.531,2.148,3.6,4.748,5.483,6.882,5.582,3.314,3.088,3.28,3.19,5.122,1.463,4.754,0.531,2.043,1.048,2.118,2.773,1.64,4.027,1.357,1.874,3.671,10.504,1.48,2.012,0.742,2.565,1.865,9.924,4.946,5.665,16.454,8.507,25.374,10.988,1.922,1.95,3.918,1.907,1.884,0.03,2.254,2.34,2.097,4.262,0.442,2.438,4.096,4.403,6.401,7.098,6.982,7.09,3.612,2.304,3.053,3.695,4.279,1.566,7.424,4.513,4.973,2.663,3.346,3.566,2.043,2.207,2.639,2.781,2.28,3.012,2.556,2.306,10.454,2.408,2.282,3.061,2.868,2.244,2.288,1.773,2.882,1.24,3.478,0.83,5.259,9.702,2.536,5.526,1.869,20.239,30.56,4.974,1.87,1.688,7.132,0.882,1.891,1.801,2.969,11.175,2.611,4.848,3.641,4.232,4.616,4.953,4.536,4.471,4.967,1.622,1.47,4.33,6.08,6.332,5.704,2.965,2.844,2.962,2.918,2.716,2.905,6.273,3.4,3.494,3.986,3.496,1.921,1.69,3.154,2.459,16.526,1.691,1.328,45.105,4.422,3.293,3.417,5.821,3.603,2.705,2.387,2.822,3.189,7.926,8.753,5.104,3.814,3.793,5.427,3.007,3.236,2.486,5.429,3.351,3.149,3.13,3.033,9.039,1.02,10.337,8.054,7.685,7.24,7.275,3.476,3.339,3.507,3.344,5.305,5.546,4.209,4.142,4.403,4.512,2.287,2.293,3.376,2.669,6.024,6.067,12.032,4.026,3.694,3.574,4.864,4.153,6.445,7.057,3.604,9.45,15.379,6.261,2.109,1.728,2.254,2.617,1.573,2.591,3.686,2.079,2.846,1.566,3.653,2.036,2.042,2.046,2.013,4.498,1.601,1.994,3.337,1.655,1.637,3.259,1.649,1.624,2.913,2.894,2.496,0.664,6.913,2.872,2.902,2.965,6.366,3.356,1.129,1.571,0.494,4.346,4.81,6.794,2.758,10.001,5.555,1.734,3.093,2.055,2.014,2.414,3.775,1.617,0.901,3.756,3.136,3.141,4.852,5.249,8.537,5.328,3.75,10.206,0.797,4.312,4.419,6.894,5.036,3.588,3.138,3.187,2.675,1.836,1.98,2.543,2.298,1.048,1.288,1.358,1.32,1.209,1.814,1.728,1.359,1.414,0.749,1.679,1.192,1.782,2.117,1.229,1.337,2.031,2.297,1.029,1.727,1.509,4.678,2.412,2.36,3.077,3.343,4.657,1.747,1.507,3.031,0.042,2.161,0.63,1.254,1.185,1.787,1.176,1.938,2.647,2.018,2.55,0.839,0.748,1.341,1.23,1.451,0.873,1.328,1.236,2.721,1.731,2.286,2.003,1.985,1.464,4.618,2.912,2.364,1.951,1.645,3.129,1.948,2.512,1.391,1.803,1.965,2.576,1.213,2.025,2.51,0.917,1.658,1.007,2.62,1.548,1.702,2.018,1.564,2.285,1.97,1.945,1.935,5.359,2.646,2.676,2.444,2.47,2.465,2.557,3.852,3.822,3.726,3.734,2.458,2.323,2.478,2.36,2.544,2.572,2.449,2.46,2.562,0.953,4.587,4.558,2.663,2.682,2.794,2.71,3.332,3.615,2.644,3.063,1.188,2.236,4.164,1.699,1.76,1.439,1.45,2.797,2.807,2.811,1.539,1.152,2.402,2.214,2.576,2.569,2.574,2.559,2.453,2.564,2.764,4.047,4.087,4.18,2.112,2.113,2.001,2.065,2.033,1.996,2.344,2.324,2.764,2.343,0.861,0.867,1.935,0.465,2.708,4.927,2.339,2.693,2.702,2.725,2.764,2.525,1.933,2.473,2.613,2.019,1.546,2.971,1.694,1.973,3.112,2.084,0.719,1.434,1.917,1.095,1.325,1.917,2.953,0.348,1.488,1.477,1.627,2.927,1.473,0.996,2.117,0.328,0.258,0.829,2.259,1.434,2.276,2.645,3.93,1.152,3.102,4.814,2.456,3.318,1.722,1.853,1.841,1.818,2.39,1.964,1.47,0.889,0.851,1.307,1.268,1.225,2.692,1.068,1.548,1.687,1.964,1.783,1.941,2.06,2.086,1.958,1.902,1.622,1.626,1.518,1.49,1.086,2.428,1.857,1.752,0.952,2.993,1.358,1.267,1.784,1.652,0.961,1.735,0.427,1.733,1.577,2.435,1.102,2.581,2.652,3.353,3.465,1.199,3.332,3.797,3.38,2.246,1.722,2.761,3.503,6.285,2.425,2.344,3.736,3.579,3.71,2.415,1.156,3.616,3.667,2.804,0.739,0.63,1.607,1.488,1.674,1.789,1.224,2.147,0.043,1.545,1.392,0.693,1.697,1.601,2.13,3.155,0.731,1.746,2.22,2.26,0.692,1.269,2.293,1.649,1.987,2.316,1.68,1.25,1.412,1.696,1.495,1.503,1.728,1.478,1.307,1.207,1.543,6.56,3.035,2.85,3.659,4.103,9.692,4.741,6.807,5.753,7.689,1.889,2.061,2.114,2.11,1.912,2.048,2.381,2.227,8.616,6.785,7.995,3.469,3.6,7.282,17.448,11.651,7.1,4.375,0.57,3.5,3.381,5.218,5.677,2.686,5.515,2.575,2.906,11.323,8.344,4.034,5.261,4.287,2.925,3.628,0.741,1.8,1.578,1.575,1.582,2.143,1.318,1.107,1.923,1.302,1.35,1.43,1.338,1.755,2.085,2.081,1.523,3.859,9.52,3.033,1.612,2.019,1.914,1.901,1.719,1.708,1.989,1.488,1.93,2.219,2.041,1.895,2.047,6.251,6.385,0.996,10.791,2.641,1.388,1.463,2.15,1.521,1.739,1.476,1.645,1.43,1.593,1.911,1.654,1.476,1.148,1.112,1.082,1.19,2.394,0.668,1.955,1.43,1.373,2.049,1.807,2.076,1.863,1.56,1.985,1.659,2.184,1.868,1.774,3.083,4.887,5.814,3.656,3.183,2.346,1.819,1.127,0.903,1.634,1.447,1.83,1.189,1.154,0.781,1.79,2.388,2.354,1.418,1.394,1.457,1.449,1.442,1.444,1.082,1.081,2.159,2.731,5.422,0.089,3.492,1.442,1.642,0.915,1.033,2.723,1.437,1.373,1.262,2.485,3.728,1.983,2.191,1.863,0.867,1.476,1.39,1.505,1.278,3.255,2.134,2.041,1.555,1.987,1.064,0.395,1.066,1.087,1.344,1.321,1.394,1.334,1.233,1.121,0.757,0.254,1.871,4.012,1.616,0.997,2.576,1.502,1.567,1.113,1.001,1.695,0.963,1.06,1.36,0.816,1.585,2.185,2.171,3.977,4.671,5.988,5.134,7.314,3.603,0.809,5.16,2.829,7.809,2.104,2.656,5.034,4.923,3.17,3.078,2.518,2.083,2.287,2.05,2.287,1.448,4.168,4.968,4.573,1.901,1.82,1.658,1.848,2.077,2.677,0.886,2.335,2.642,1.785,0.786,0.539,0.875,1.413,1.507,1.436,0.615,0.635,0.916,1.697,1.037,1.369,1.057,1.061,0.867,1.587,1.488,1.597,1.533,1.767,1.483,5.845,0.891,2.587,2.725,2.38,1.247,1.379,0.449,0.676,0.787,1.635,1.643,1.615,1.993,1.785,1.054,1.565,4.087,8.983,2.936,3.532,3.002,0.896,1.679,2.295,2.259,0.441,4.47,0.893,3.178,1.161,2.734,0.511,7.937,8.001,1.601,9.666,3.135,4.284,4.138,2.181,2.253,2.716,6.91,2.921,0.782,4.882,4.864,2.67,2.02,2.22,2.355,3.19,1.703,3.913,2.163,2.316,1.838,1.786,1.336,1.372,1.231,1.048,0.545,2.376,1.307,1.289,1.623,1.062,0.838,1.303,1.571,2.727,0.468,1.606,1.268,2.685,4.689,7.327,4.668,4.745,3.27,4.963,1.561,0.25,2.228,1.997,1.75,1.769,1.596,0.945,2.021,1.567,1.475,2.597,2.495,3.571,0.16,2.139,1.816,1.982,1.915,1.908,1.555,4.67,2.413,2.484,2.055,3.972,2.029,1.827,1.697,1.69,2.694,0.801,2.355,1.909,4.781,2.234,1.706,1.702,1.532,1.848,1.787,1.91,2.169,2.479,2.189,4.734,1.99,1.693,1.203,1.377,0.736,1.815,1.732,1.704,2.769,2.105,1.115,2.451,1.934,1.707,5.575,3.92,3.928,5.736,4.406,2.048,0.934,1.02,1.748,1.784,0.738,2.367,3.177,1.737,1.791,1.449,1.318,1.319,1.336,1.61,0.474,0.761,0.43,0.527,0.793,0.462,1.36,1.506,1.135,0.955,0.482,1.411,1.423,1.044,1.176,0.504,0.84,3.156,1.555,1.852,1.538,1.637,2.328,1.452,1.975,1.397,1.499,1.67,1.874,1.764,4.965,0.031,0.961,0.059,3.216,4.049,3.463,3.931,1.148,3.886,3.577,3.776,4.308,0.801,5.319,10.024,3.438,2.009,0.852,1.284,1.553,0.042,0.93,1.76,2.619,0.941,1.507,1.348,1.612,1.678,1.225,1.374,2.675,1.967,1.732,3.234,1.324,5.366,13.47,12.309,3.935,5.001,4.749,1.994,1.141,2.177,2.441,2.164,2.749,1.375,2.834,9.358,7.734,6.281,0.932,3.712,1.612,2.907,1.855,2.874,5.941,3.458,2.83,3.45,3.457,2.376,2.374,2.524,2.004,2.605,1.899,1.77,2.568,2.202,4.725,3.153,2.72,2.558,2.083,1.815,1.06,0.401,3.966,2.24,1.811,0.788,0.473,0.789,1.117,1.53,1.457,1.451,2.154,2.862,3.219,2.288,2.335,2.669,3.249,2.933,0.152,2.191,1.553,1.641,2.282,2.434,2.462,2.848,2.063,1.491,1.58,1.009,1.241,2.631,2.677,2.747,3.871,11.504,2.774,2.394,2.318,2.05,2.815,2.326,2.452,2.663,1.18,1.086,5.88,2.082,1.895,2.863,1.719,1.766,2.744,2.524,2.332,1.463,1.789,1.483,1.994,5.389,3.879,2.905,3.248,1.565,1.589,2.607,1.723,1.762,3.615,3.06,2.48,7.797,8.219,4.624,1.218,5.484,3.809,2.951,3.988,5.62,6.195,10.155,10.135,9.287,6.004,6.332,3.768,3.78,3.928,1.661,2.133,2.981,3.271,3.573,8.085,1.023,5.082,2.822,3.446,3.196,2.81,2.634,1.988,2.044,3.105,2.354,3.789,5.108,4.806,6.007,3.528,4.602,0.64,1.77,4.672,9.221,13.274,8.922,29.006,19.386,17.104,6.336,4.801,4.562,3.064,2.313,2.459,1.876,1.844,1.376,1.486,1.324,1.28,1.391,1.158,1.196,1.432,1.334,1.277,1.461,2.459,3.681,3.072,1.533,1.5,1.502,1.031,1.447,1.158,1.096,1.604,0.898,2.65,1.273,1.391,1.239,1.745,3.24,3.375,2.068,2.658,3.728,3.703,6.215,1.699,1.818,2.622,3.121,7.488,1.714,1.67,2.435,5.045,5.037,10.234,1.059,3.242,1.727,1.418,1.831,2.398,4.855,3.036,1.233,0.931,6.053,8.677,1.495,2.531,3.995,2.967,1.843,4.275,8.887,7.167,2.9,2.533,5.401,4.068,1.552,0.993,1.395,4.978,4.456,2.063,0.893,1.746,2.06,2.549,2.489,2.888,2.152,1.661,1.417,0.998,1.283,1.746,1.315,2.498,2.353,2.031,2.185,1.991,1.738,1.706,1.591,2.261,1.762,3.386,1.234,2.786,1.13,1.936,2.585,1.121,1.557,8.534,6.39,4.665,2.697,4.262,2.5,4.895,8.351,13.551,2.559,2.792,3.983,0.73,0.931,1.457,1.919,1.97,2.141,0.318,6.58,3.121,12.171,8.257,0.835,1.012,3.746,9.069,4.847,5.492,6.215,4.159,14.281,5.746,3.605,0.568,1.839,1.671,0.583,2.124,0.406,10.639,0.834,6.206,1.206,2.007,3.191,3.113,1.304,1.474,4.318,4.249,8.898,5.046,3.741,6.39,8.468,3.249,5.097,1.011,2.983,3.855,13.172,1.605,2,1.878,1.059,0.834,7.633,6.91,0.87,1.159,1.36,4.949,10.248,1.032,1.102,2.257,1.262,0.459,1.715,0.349,1.367,0.698,0.605,3.251,5.504,0.957,4.934,4.168,0.944,13.558,2.337,3.495,6.063,0.98,5.91,2.296,2.296,9.267,1.807,1.183,0.836,3.72,1.013,0.977,1.262,1.081,1.16,1.015,1.26,1.109,0.967,1.624,1.398,1.048,0.959,1.073,1.026,1.586,1.137,1.119,1.748,5.411,20.452,1.698,3.085,1.624,4.866,3.425,5.405,0.905,10.085,2.478,0.559,1.704,0.889,1.556,1.363,1.484,1.372,0.346,2.76,0.601,1.402,1.334,0.449,0.733,1.049,0.996,1.124,1.03,1.044,0.847,1.144,1.112,1.032,0.603,1.283,1.224,1.206,1.211,1.209,0.281,4.509,1.566,1.146,10.525,3.784,2.624,2.53,18.608]},"incidents":[{"id":"11043062738629137","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2022-11-18T04:30:00Z","end_time":"2023-11-06T06:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Bauarbeiten zwischen A96 und 12,Autobahnkreuz Memmingen A7 128","long_description":"Fahrbahnverengung von auf eine Fahrspur wegen Bauarbeiten auf der A96 in Richtung Osten zwischen A96 und 12,Autobahnkreuz Memmingen A7 128.","impact":"low","alertc_codes":[743],"traffic_codes":{"incident_primary_code":743},"lanes_blocked":[],"length":804,"south":47.989521,"west":10.136236,"north":47.993835,"east":10.144827,"congestion":{"value":101},"geometry_index_start":16008,"geometry_index_end":16016,"affected_road_names":["A 96/E 43/E 54/Buxachtalbrücke","A 96/E 43/E 54","A 96/E 54"],"affected_road_names_de":["A 96/E 43/E 54/Buxachtalbrücke","A 96/E 43/E 54","A 96/E 54"]},{"id":"853490101331390","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-05-31T05:00:00Z","end_time":"2024-04-11T16:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Gegenverkehr zwischen 13 und 14","long_description":"Gegenverkehr wegen Brückeninstandhaltungsarbeiten auf der A96 in Richtung Osten zwischen 13 MM30 Europastrasse Anschlussstelle Memmingen-Nord und 14 ST2009.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[517,707],"traffic_codes":{"incident_primary_code":517},"lanes_blocked":[],"length":2016,"south":47.998569,"west":10.167442,"north":47.999103,"east":10.194488,"congestion":{"value":101},"geometry_index_start":16054,"geometry_index_end":16075,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"17520281103509368","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T05:57:35Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Instandhaltungsarbeiten in Schwaighausen","long_description":"Instandhaltungsarbeiten auf der A96 in Richtung Osten in Schwaighausen.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":536,"south":48.001953,"west":10.23018,"north":48.004482,"east":10.236305,"congestion":{"value":101},"geometry_index_start":16136,"geometry_index_end":16139,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"7537612629209856","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-13T03:30:00Z","end_time":"2023-11-29T19:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Abschnitte mit Asphaltierungsarbeiten zwischen A96 und 19 B16","long_description":"Abschnitte mit Asphaltierungsarbeiten auf der A96 in Richtung Osten zwischen A96 und 19 B16.","impact":"low","alertc_codes":[704],"traffic_codes":{"incident_primary_code":704},"lanes_blocked":[],"length":5441,"south":48.029598,"west":10.39151,"north":48.037052,"east":10.463298,"congestion":{"value":101},"geometry_index_start":16274,"geometry_index_end":16327,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"1758850640418506","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-03-20T06:00:00Z","end_time":"2023-11-03T19:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Bauarbeiten in Kirchstetten","long_description":"Parkplatz gesperrt wegen Bauarbeiten auf der A96 in Richtung Osten in Kirchstetten.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":332,"south":48.03371,"west":10.4166,"north":48.033946,"east":10.42105,"congestion":{"value":101},"geometry_index_start":16301,"geometry_index_end":16303,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"11525298095640482","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T07:48:17Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Instandhaltungsarbeiten zwischen 35 A99 4 und 36A Hans-Steinkohl-Strasse","long_description":"Instandhaltungsarbeiten auf der A96 in Richtung Osten zwischen 35 A99 4 und 36A Hans-Steinkohl-Strasse.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":104,"south":48.130111,"west":11.416193,"north":48.130229,"east":11.417581,"congestion":{"value":101},"geometry_index_start":17329,"geometry_index_end":17331,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"17505886838271484","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-16T10:41:48Z","end_time":"2023-10-31T16:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"Nymphenburger Strasse: Bauarbeiten in Neuhausen","long_description":"Fahrspur gesperrt wegen Bauarbeiten auf der Nymphenburger Strasse in beiden Richtungen in Neuhausen.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":240,"south":48.151359,"west":11.535882,"north":48.151966,"east":11.538993,"congestion":{"value":101},"geometry_index_start":17557,"geometry_index_end":17566,"affected_road_names":["Nymphenburger Straße"],"affected_road_names_de":["Nymphenburger Straße"]}],"admins":[{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"}],"via_waypoints":[]},{"via_waypoints":[],"admins":[{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"}],"incidents":[{"id":"4291694849469836","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-06-02T13:17:51Z","end_time":"2023-10-25T13:17:51Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"Gabelsbergerstrasse: Bauarbeiten zwischen Türkenstrasse und Oskar-Von-Miller-Ring","long_description":"Bauarbeiten auf der Gabelsbergerstrasse in beiden Richtungen zwischen Türkenstrasse und Oskar-Von-Miller-Ring.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":126,"south":48.145484,"west":11.573184,"north":48.146076,"east":11.574621,"congestion":{"value":101},"geometry_index_start":11,"geometry_index_end":15,"affected_road_names":["Gabelsbergerstraße"],"affected_road_names_de":["Gabelsbergerstraße"]},{"id":"14704333601012295","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T06:24:17Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten in Göggelsbuch","long_description":"Bauarbeiten auf der A9 in Richtung Norden in Göggelsbuch.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":522,"south":49.185817,"west":11.249337,"north":49.189922,"east":11.252802,"congestion":{"value":101},"geometry_index_start":1426,"geometry_index_end":1430,"affected_road_names":["A 9/E 45"],"affected_road_names_de":["A 9/E 45"]},{"id":"12303394303881589","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-10T20:30:00Z","end_time":"2024-10-10T04:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Brückeninstandhaltungsarbeiten in Nerreth","long_description":"Brückeninstandhaltungsarbeiten auf der A9 in Richtung Norden in Nerreth.","impact":"low","alertc_codes":[707],"traffic_codes":{"incident_primary_code":707},"lanes_blocked":[],"length":444,"south":49.352329,"west":11.203218,"north":49.356307,"east":11.20373,"congestion":{"value":101},"geometry_index_start":1530,"geometry_index_end":1535,"affected_road_names":["A 9/E 45"],"affected_road_names_de":["A 9/E 45"]},{"id":"7328765336011248","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T07:10:44Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten in Neuenreuth","long_description":"Bauarbeiten auf der A9 in Richtung Norden in Neuenreuth.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":544,"south":49.882953,"west":11.589944,"north":49.885978,"east":11.595806,"congestion":{"value":101},"geometry_index_start":2345,"geometry_index_end":2354,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"13911959664172729","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2022-11-30T06:30:00Z","end_time":"2024-02-01T14:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Brückeninstandhaltungsarbeiten zwischen 42 B2 und 41 B2","long_description":"Brückeninstandhaltungsarbeiten auf der A9 in Richtung Norden zwischen 42 B2 und 41 B2.","impact":"low","alertc_codes":[707],"traffic_codes":{"incident_primary_code":707},"lanes_blocked":[],"length":523,"south":49.956546,"west":11.605739,"north":49.961177,"east":11.606938,"congestion":{"value":101},"geometry_index_start":2476,"geometry_index_end":2485,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"5091020753035724","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-21T13:00:00Z","end_time":"2023-11-30T22:30:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Fahrspur gesperrt zwischen A9 und 40A,40A/40B,40B","long_description":"Fahrspur gesperrt, Gegenverkehr und Fahrbahnverengung von auf zwei Fahrspuren wegen Asphaltierungsarbeiten auf der A9 in Richtung Norden zwischen A9 und 40A,40A/40B,40B A70 26,Autobahndreieck Bayreuth/Kulmbach.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[500,779,515],"traffic_codes":{"incident_primary_code":500},"lanes_blocked":[],"length":4922,"south":49.986122,"west":11.604267,"north":50.029003,"east":11.610665,"congestion":{"value":101},"geometry_index_start":2521,"geometry_index_end":2607,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"15331284714688288","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T05:47:43Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten in Gottersdorf","long_description":"Bauarbeiten auf der A9 in Richtung Norden in Gottersdorf.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":455,"south":50.188774,"west":11.763781,"north":50.192348,"east":11.766878,"congestion":{"value":101},"geometry_index_start":2942,"geometry_index_end":2949,"affected_road_names":["A 9/E 51","A 9/E 51/Münchberger Senke"],"affected_road_names_de":["A 9/E 51","A 9/E 51/Münchberger Senke"]},{"id":"10747413286900560","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-18T11:57:18Z","end_time":"2023-11-06T18:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 24 A4 56A und 25B B175","long_description":"Fahrspur gesperrt wegen Bauarbeiten auf der A9 in beiden Richtungen zwischen 24 A4 56A und 25B B175.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":7593,"south":50.803825,"west":11.851946,"north":50.86481,"east":11.895605,"congestion":{"value":101},"geometry_index_start":3912,"geometry_index_end":4000,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"8070726696213233","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-07T11:17:47Z","end_time":"2023-12-15T11:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 15 und 17","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A9 in beiden Richtungen zwischen 15 A14 20,Schkeuditzer Kreuz und 17 B181 Anschlussstelle Leipzig-West.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":8044,"south":51.351951,"west":12.180686,"north":51.422115,"east":12.195098,"congestion":{"value":101},"geometry_index_start":4554,"geometry_index_end":4637,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"3366451722945719","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-24T07:22:40Z","end_time":"2023-10-25T16:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 9 L133 und 6 L831","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A9 in Richtung Norden zwischen 9 L133 und 6 L831.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":26474,"south":51.845447,"west":12.327476,"north":52.014865,"east":12.576786,"congestion":{"value":101},"geometry_index_start":5030,"geometry_index_end":5250,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"9694743701479123","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-19T05:29:46Z","end_time":"2023-12-18T17:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen A9 und 2 L88","long_description":"Bauarbeiten auf der A9 in Richtung Norden zwischen A9 und 2 L88.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":6433,"south":52.215442,"west":12.899624,"north":52.269145,"east":12.917621,"congestion":{"value":101},"geometry_index_start":5503,"geometry_index_end":5566,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"16639668173810584","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-01-06T11:55:08Z","end_time":"2025-01-10T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"B2 Strasse Des 17. Juni: Bauarbeiten zwischen Bachstrasse und Hofjägerallee","long_description":"Fahrbahnverengung von auf eine Fahrspur wegen Bauarbeiten auf der B2 Strasse Des 17. Juni in Richtung Osten zwischen Bachstrasse und Hofjägerallee.","impact":"low","alertc_codes":[743],"traffic_codes":{"incident_primary_code":743},"lanes_blocked":[],"length":936,"south":52.513435,"west":13.335547,"north":52.514328,"east":13.34923,"congestion":{"value":101},"geometry_index_start":6335,"geometry_index_end":6368,"affected_road_names":["Straße des 17. Juni/B 2/B 5","B 2/B 5"],"affected_road_names_de":["Straße des 17. Juni/B 2/B 5","B 2/B 5"]}],"annotation":{"maxspeed":[{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,1,1,1,1,null,null,null,null,null,null,0,0,0,0,0,0,null,9,9,9,9,0,19,0,0,0,0,9,9,9,9,19,20,9,9,null,4,4,4,4,null,14,14,null,null,null,null,null,null,1,1,6,6,6,6,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,41,41,50,50,50,50,50,50,50,50,41,41,41,41,41,41,41,37,37,37,37,37,43,43,43,35,35,37,35,35,35,35,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,38,38,35,35,35,35,35,35,35,35,35,29,29,29,29,12,null,20,20,20,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,14,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,29,17,17,17,17,17,17,17,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,16,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,12,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,null,null,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,12,12,12,12,null,30,30,30,30,30,30,30,30,30,30,30,30,30,32,32,32,32,32,32,32,32,32,32,32,32,30,30,30,30,30,33,33,33,33,33,33,33,30,30,30,30,33,30,30,0,27,33,27,30,27,27,25,25,25,25,25,25,25,null,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,30,30,30,30,30,30,30,30,30,30,30,30,30,30,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,30,30,30,30,30,30,30,30,30,null,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,14,14,0,6,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,20,17,17,20,6,6,17,17,17,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,6,6,6,6,6,6,0,14,14,20,20,20,20,20,20,20,20,20,20,20,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,16,6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,17,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,14,14,14,0,0,0,0,0,0,null,14,14,14,14,24,24,24,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,null,null,0,0,0,0,0,null,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,null,null,0,0,0,32,32,32,32,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,null,22,22,22,22,22,22,22,22,6,6,6,6,6,6,6,6,6,6,6,6,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,32,32,32,32,32,32,32,32,32,32,32,32,50,50,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,35,35,null,41,41,41,41,0,0,0,41,41,41,41,41,41,41,41,41,41,41,40,40,40,40,40,40,40,40,40,40,40,40,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,38,38,38,38,38,38,38,38,38,38,38,30,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,null,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,0,0,0,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,null,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,null,null,null,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,null,0,0,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,33,33,33,null,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,20,20,20,20,27,27,27,27,19,19,19,19,19,19,32,32,32,32,16,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,19,19,19,19,19,19,19,19,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,41,41,41,41,41,41,41,0,40,40,40,40,40,40,40,40,40,40,40,40,40,null,41,41,41,41,41,41,41,null,41,41,41,41,41,41,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,33,38,38,38,38,38,38,38,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,45,45,45,45,37,37,37,37,37,37,37,37,37,37,37,null,35,35,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,33,33,33,33,33,33,30,30,30,null,32,32,32,32,32,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,null,35,35,35,35,35,35,35,35,null,null,33,33,33,33,null,33,33,33,33,33,33,33,33,null,32,32,32,32,32,32,0,0,0,0,null,0,0,35,35,35,35,35,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,35,35,35,35,0,0,0,0,0,0,0,0,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,46,46,46,46,46,46,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,null,33,38,37,37,37,37,37,37,37,37,37,37,null,14,14,14,45,45,45,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,24,24,24,24,24,24,24,24,24,24,24,62,62,51,51,51,51,null,8,8,8,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,8,8,8,12,12,12,12,12,8,30,30,30,30,30,30,30,30,null,null,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,12,12,12,30,30,30,30,25,25,25,25,33,17,17,17,17,17,17,17,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,11,11,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,null,0,0,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,0,32,32,32,32,32,32,32,32,32,32,32,32,null,35,35,35,35,35,37,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,25,25,38,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,29,null,22,22,22,22,22,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,32,40,40,22,22,22,22,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,51,51,51,51,51,50,50,50,50,50,50,51,51,54,54,54,54,54,54,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,null,null,null,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,22,27,27,25,25,25,17,17,17,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,20,20,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,null,null,19,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,29,29,29,29,29,29,29,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,58,58,58,58,58,58,58,null,51,46,46,46,46,0,0,41,41,41,41,41,41,41,43,43,43,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,22,16,16,8,37,37,37,37,37,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,27,19,19,19,19,8,8,8,8,8,8,8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,12,12,22,22,null,25,25,25,25,25,25,null,48,48,48,48,null,16,16,16,16,16,16,null,53,53,22,22,22,22,22,22,22,22,16,8,8,8,12,12,0,0,0,0,0,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,43,43,43,43,43,43,43,43,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,12,12,12,12,12,20,20,20,20,8,8,8,8,0,0,0,0,0,0,0,null,null,3,3,3,4,4,null,null,null,null,null,12,12,12,12,12,12,null,null,null,20,20,20,20,20,20,17,17,17,17,17,17,17,null,12,12,12,12,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,9,9,9,9,9,9,9,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,1,1,1,1,1,1,null,null,null,null,null,null,null,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,12,12,12,12,9,9,9,9,9,9,9,9,9,4,4,1,1,1,6,6,12,12,0,0,0,17,24,0,0,0,0,1,1,1,1,1,25,25,25,25,25,25,25,0,8,8,8,19,22,22,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,22,22,22,22,22,22,null,null,null,null,null,null,0,0,0,0,0,0,0,0,30,30,30,30,30,30,30,30,40,40,35,35,35,33,30,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,null,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"speed":[5.3,5.3,5.4,5.5,5,4.3,4.3,4.3,4.2,4.6,4.6,3.6,3.6,3.5,3.6,5,5,5,7.4,7.4,7.4,8.5,8.5,8.9,8.9,8.9,8.9,8.4,8.4,8.4,8.4,8.4,8.3,8.3,8.3,9.1,9.1,9.1,9.1,8.6,8.4,8.4,7.9,7.4,5.8,5.5,5.5,5.4,5.4,5.4,5.4,6.8,9.2,8.9,8.9,8.9,6.4,7.8,5.5,5.5,5.5,5.5,9.3,9.5,9.5,9.5,11.1,11.9,11.9,11.9,12.7,13.6,13.6,13.6,13.6,15.5,15.5,15.5,7.8,7.8,7.8,7.8,8,8.3,13.9,13.9,13.3,13.3,13.3,13.4,13.4,13.4,13.4,10,10,14,14,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,12.8,12.8,12.8,12.9,12.9,14.6,13.9,14.4,14.4,14.4,14.5,14.5,14.5,15.1,15.1,15.1,15,15,15,15,15.3,15.3,15.3,15.3,15.3,15,15,15,15.1,15.1,15.5,15.5,15.4,15.6,15.6,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.7,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,10,10,10,10,10,10,10,10,10,10,12.3,12.2,12.1,12.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22,22,22,22,22,22,22,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.1,21.1,23.4,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.8,23.8,23.8,23.8,23.7,23.7,24.2,24.2,24.2,25.1,25.1,25.9,25.9,25.9,25.9,25.9,25.9,27,27,27,27,27,27,26.7,26.7,26.9,26.9,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,27.8,27.8,27.8,27.8,27.8,27.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.7,29.1,29.1,29.1,29.1,29.1,29.1,29.3,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.3,28.3,28.4,28.4,28.4,28.4,28.4,27.8,27.8,28.1,28.1,27.8,27.8,27.7,27.8,26.5,27.2,27.2,27.2,27,27,27,26.9,27,27.1,27,27,27,27,26.9,26.9,27.5,27.5,27.5,27.5,27.5,29.3,29.6,29.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,27.8,27.8,27.3,27.3,27.3,27.8,28.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.3,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.6,26.6,26.4,26.2,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,27.9,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,29.2,28.1,28.9,28.9,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28.1,28.1,28.1,27.9,27.9,28.4,28.4,28.4,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,29.7,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.4,29.2,28.7,29.1,29.1,29.1,29.1,29.1,29.1,30,30,30,30,30,30,30,30,29.4,29.4,29.4,28.6,29.4,29.1,29.4,29.5,29.5,29.5,28.3,28.9,28.9,28.9,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.2,29.2,29.2,29.2,28.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.1,28.6,28.6,28.6,28.6,28.6,28.5,28.7,28.6,28.9,28.9,28.9,28.9,28.6,28.9,28.9,29.4,29.1,27.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,29,29,29,28.6,28.6,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,30.7,29.1,26,26.1,26.1,26.1,25.8,25.8,25.8,25.8,26.2,27.1,27.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.2,27.3,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,26.6,26.6,26.6,26.7,26.7,23.5,23.3,23.3,23.3,23.3,23.3,23.3,28.1,26.7,27.1,25.3,26.4,26.7,26.6,26.5,26.7,26.4,26.3,26.9,26.5,26.5,26.9,26.9,27.2,27.2,27.2,27.5,27.2,27.1,27.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.4,27.4,27.4,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.7,28.7,28.5,28.3,28.5,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29,29,28.2,27.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.4,25.8,25.8,25.8,25.8,25.8,25.8,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.8,24.5,24.5,24.5,24.5,26.1,26.1,26.5,26.5,26.5,26.5,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.2,27.2,27.5,27.7,27.7,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.6,27.6,27.4,27,27,28,28,28,28,28,28,28,28,28,28,28,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,24,23.4,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,23,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.9,23.3,23.3,23.3,23.3,25.7,25.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.8,27.8,27.8,27.9,27.9,27.8,27.8,27.8,28,28,28,28,28,28,28.6,29.2,29.2,33.3,29.7,27.8,27.8,22.3,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.1,28.1,28.1,28.1,27.5,29.2,29.2,29.2,29.2,28.6,28.6,29.2,29.5,29.5,29.5,29.6,28.6,28.6,28.6,28.2,28.9,28.9,28.9,28.9,29,29,29.2,29.2,31.4,29.3,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.6,28.6,28.8,28.3,28.6,27.7,27.7,27.6,28.4,28.4,28.7,28.3,28.9,28.6,28.6,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.3,28.1,28.1,28.1,28.1,29.6,28.1,28.1,28.1,28.1,28.1,28,28.1,28.1,28.1,28.1,27.5,27.5,27.5,27.5,27.5,27.6,27.6,27.6,26.7,26.7,26.7,26.6,26.7,26.7,26.7,25,25,25,25,25,25,23.4,23.6,23.6,23.6,24,25.3,25.3,25.3,26.3,26.3,25.9,26.3,26.9,26.7,26.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.4,29.2,29.2,29,28.4,28.9,28.9,28.9,28.9,28.9,29.4,29.4,29.6,28.9,29.6,29.6,29.5,29.5,26.6,27.3,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27,27,26.9,27,27,27,27,27,27,27,27,27,27.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.2,14.3,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.1,14.1,14.1,17.8,17.8,22.7,22.5,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,27.2,27.1,26.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.3,28.6,28.6,28.6,28.6,28.5,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29,29,28.9,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.5,29.5,29.5,29.1,30.8,29.5,29.5,29.3,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,22.2,29.2,29.2,29.2,29.2,29.2,29.2,16.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.3,32.3,32.1,32.1,32.1,32.1,32.5,32.5,32.5,32.5,32.5,32.6,32.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.6,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,30,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,30.1,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,31.4,31.4,31.4,31.4,31.4,31.4,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.3,29.2,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.1,28.9,28.9,28.2,28,28.3,28.3,30,30,30,30,30,30,30,30,30,30,30,30,30,29.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,35.2,35.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,29.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.5,30.2,31.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.9,30.9,30.1,30.8,30.5,30.5,30.5,30.9,30.9,30.9,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,35.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30,31.4,31.4,29.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31,29.7,29.3,29.7,29.7,29.7,29.7,29.7,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.5,28.5,28.7,28.7,28.7,27.3,28.7,28.7,29.1,28.3,28.3,28.3,28.4,27.6,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.8,27.8,27.8,27.8,27.8,27.8,28.3,25.5,25.7,25.1,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25.6,25.6,25.6,25.5,25.1,25,25,24.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.9,24.9,25,25,25,25,25,24.8,25,25,25,25,25.1,24.9,24.9,25,25,25,25,25,25,25,25,25,22.5,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.3,21.6,21.6,21.7,21.7,21.7,21.7,21.7,21.6,21.6,21.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,24.2,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.9,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.4,24.4,24.4,24.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.4,33.1,33.3,33.3,33.3,33.3,33.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.5,27.5,27.4,27.4,27.5,27.4,28.1,28,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29,29,27.7,28,28,28,28,28.1,28.1,28.1,28.1,27.7,28.2,28,28,28,28,28,28.1,28.1,28,27.8,27.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,28.2,27.9,27.9,27.5,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.1,30.8,30.2,30.2,30.2,29.5,29.5,29.8,29.9,26.2,28,29.2,29.2,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.7,30,30,30,30,30,29.2,29.2,29.2,29.2,29.2,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,29.2,29.7,29.7,29.7,29.7,29.7,29.7,28.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.8,29.1,29.1,29.1,29.1,30,30,30,30,30,30,30,30,30.1,30,30,29.7,29.7,29.7,30.2,30,30,30,29.4,29.2,29.2,29.2,29.2,28.7,29,29,28.8,28,28,28,28,28.5,28.5,28.5,29,29.2,29.2,29.2,29.2,29.2,29.6,29.6,28.9,28.9,28.9,27.9,27.8,27.8,27.8,28.8,28.5,28.6,28.6,28,28,29.2,29.3,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.8,30.3,30.3,29.9,30.3,30.3,30.3,30.2,30.2,28.6,28.6,28.6,28.6,28.8,28.8,28.6,28.6,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,32.4,29.5,29.5,29.5,29.5,29.5,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.8,31.8,31.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,26.3,26.3,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,27.2,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.7,27.6,27.6,27.3,28,28,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29.2,29.2,29.2,29.2,29.2,28.5,28.9,28.9,28.9,28.9,28.6,28.7,28.7,28.7,27.9,29,29.2,28.8,28.8,28.8,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,28.9,28.9,28.9,28.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.1,28.4,28.4,28.4,28.1,28.1,28,28,28,28,28,28,28,28,28,28,27.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.5,31.1,31.5,33,33.3,33.3,33.5,29.3,29.3,22.1,22.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.2,28.3,28.3,28.5,28.9,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.9,29.1,29.5,27.8,27.8,27.8,27.8,27.6,27.2,27.2,27.2,27.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,27.5,27.5,27.5,27.5,28.6,27.5,27.5,27.5,27.5,27.6,27.6,27.6,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28,28,28,28,28,28.2,28,28,28,28,28,28,28,28,28,28,28,28,28.2,28.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.3,27.2,26.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.2,24.2,24.2,24.2,24,24.4,24.4,24.4,24.4,24.4,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,23.8,24.5,24.5,24.5,24.5,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,24.4,24.4,24.4,24.4,24.4,23.3,23.3,23.3,23.3,23.3,23.3,23.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,22.1,22.2,23.2,23,23.2,22.9,22.9,33.3,24.5,24.4,24.4,24.4,24.5,24.5,24.3,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.7,23.1,23.1,23.1,23.6,23.3,23.3,23.3,23.3,21.3,21.5,21.4,21.4,21.4,21.3,21.5,21.5,22.3,22.3,22.2,22.2,22.2,22.2,22.2,22.3,22.3,22.2,21.7,22,22,21.9,23.1,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.3,23.1,23.1,26.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.8,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.3,33.5,33.3,33.3,33.3,33.3,33.3,33.1,28.2,27.9,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.1,27.9,28.9,29,28.5,28.8,28.9,28.9,29.2,28.5,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.8,29.4,29.4,29.4,29.4,29.4,29.5,29.1,29.4,29.2,29.2,29.2,29.2,29.2,29.2,28.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,28.4,28,28.7,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.8,33.4,33.4,33.4,33.4,33.4,33.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,27.2,27.2,28.9,27.6,27.6,27.5,27.5,27.6,27.5,27.4,28.1,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,28.3,27.5,27.4,27.4,27.5,27.5,27.5,26.5,27.5,27.5,28.3,28,27.8,27.8,27.8,27.8,28.5,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.2,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,27.8,27.8,27.8,27.8,28.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.3,27.5,27.5,27.5,27.5,27.5,27.5,27,27.2,27.2,27.2,27.4,29.2,29.2,28.3,28.7,28.7,28.6,28.6,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.2,28.3,28.3,28.1,28.2,29.6,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.4,28.4,28.1,28.1,27.8,27.8,27.6,27.6,27.7,27.8,28.3,28.3,28.3,28.3,28.3,28.2,28.3,28.3,28.4,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,30.4,30.6,30.6,30.4,29,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,26.5,26.7,26.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,24.3,17.6,17.8,17.8,3.6,3.6,3.7,9.3,9.4,9.5,9.5,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,18.5,16.1,12.9,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.7,12.7,12,12,15,15,15,15,16.9,14.7,14.7,14.7,17.9,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,17.2,15,15,15,16.3,13.1,13.1,13.1,14.2,14.2,20.3,20.3,20.3,15.6,19.4,19.4,19.4,19.4,19.9,19.5,19.5,19.5,18.6,18.7,18.1,18.1,18.1,18.1,18,18,18,18,18,18,22.4,5,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,22.3,16.9,16.7,16.7,16.7,19.4,19.4,19.4,19.4,20.2,23.1,23.1,23.1,23.1,23.1,23.1,23.2,26,27.1,27.3,27.3,27.3,25.9,25.9,25.9,25.9,26,25.8,25.8,25.8,26,25.9,25.9,25.9,25.9,25.8,25.8,25.9,25.9,26.6,28.6,29.1,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.1,28.1,28.1,28.1,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.3,30.3,29.8,29.8,29.8,29.8,29.7,29.7,29.2,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,28.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.2,29.2,29.2,29.2,33.5,33.4,33.4,33.3,33.3,33.3,33.3,33.3,28.7,28.6,28.6,28,28,28,28,28.1,28.6,28.8,28.8,28.8,29.5,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.3,29.4,29.4,29.4,29.1,30,28.5,29.7,29.7,29.7,29.4,29.7,29.4,30,30,29.1,29.2,29.2,29.2,29.2,29.2,29.3,29.2,29.2,29.2,29.2,29.3,29,29.2,29.2,28.9,29.1,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,28.8,28.7,28.9,28.3,29.9,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.8,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.4,29.4,29.4,29.4,29.4,28.9,29.5,29.5,29.5,30.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29,29.2,29.1,28,27.7,29.2,28.6,28.4,29.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,28,28.3,28.3,28.3,28.3,28.2,28,28,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28.4,26.4,26.4,25.6,26.9,26.9,26.9,27,27,27,27,26.8,27,27,27,26.9,26.9,26.9,26.9,27,26.9,26.9,26,26,26.9,26.9,26.9,26.9,27.4,26.8,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.3,25.3,25.3,25.5,25.5,25.5,25.8,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,32.8,32.9,32.9,32.9,32.9,29.3,29.2,29.2,29.2,29.2,29.2,29.1,29.1,32.5,32.5,32.5,32.5,32.5,32.3,32.3,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,31.1,31.6,31.2,32.9,33.1,33.1,33.1,33.4,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,32.1,32.2,32.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.8,31.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.4,29.2,29.2,29.2,29.2,29.2,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29,30,30,30,30.2,29.4,30.1,30.1,30.1,29.5,30.2,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.5,29.4,29.4,29.4,28.8,28.9,28.9,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,29.2,29.3,29.3,29.1,28.1,27.2,29.9,22.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,11.4,24.7,24.7,24.7,24.7,24.7,24.7,24.7,23.2,23.1,22.7,23,23,23,23,23,23,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23,23.3,23.1,23.1,23.1,23.1,23,23,22.9,22.6,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23,23,23,23,23,23,23,23,23,23,23,23,23,23,22.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.7,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.1,24.7,24.7,24.8,24.7,24.6,24.3,24.4,24.3,24.6,25,24.7,24.7,24.7,24.7,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.5,25.6,25.6,25.6,25.6,25.6,27.5,27.5,27.5,27.5,27.5,27.5,27.6,27.4,27.7,27.7,27.8,27.8,27.8,27.8,28.1,28.1,28,28,28,28,28,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.9,28.9,28.9,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.9,28.5,28.5,28.5,28.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.9,28.3,28.3,27,27,27,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.6,27.7,27.9,28.9,28.9,28.9,28.9,28.9,28.9,30,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.6,29.1,29.1,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29,28.7,28.7,28.8,28.9,29.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.7,28.7,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.6,28.3,27.9,27.9,27.9,27.9,28.2,27.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,29.1,29.1,29.1,33.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,22.6,22.3,22.3,22.3,22.3,22.3,22.3,22.1,25.2,24.7,24.8,24,26.2,26.1,26.1,26.2,26.4,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,24.4,24.4,24.4,25.1,25.1,21.9,21.9,22.7,22.1,20.8,20.8,20.8,20.8,20.8,20.7,20.7,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,24,23.8,24.7,24.7,25.9,25.6,25.6,25.6,25.6,25.6,25.6,26,26.1,26.1,26.1,26.1,26.5,25.5,25.5,25.5,25.6,25.9,25.9,26.1,26.4,26.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25.2,25,25,24.4,24.4,24.4,22.8,22.8,22.8,22.9,22.9,18.3,18.3,18.3,18.4,16.6,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,15.9,16.7,16.7,16.6,16.6,16.6,16.6,16.6,15.6,15.6,15.6,15.6,14.2,14.2,14.2,16.7,16.7,16.7,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,9.6,9.3,9.3,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.8,13.8,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,14,14,14,14,18.1,18.1,18.1,18.1,18.1,10,10,10,10,9.4,9.4,9.4,11.9,11.4,11.4,11.4,11.4,11.4,11.4,11.4,3.7,4.4,8.2,8.3,8.4,9.2,9.2,5.3,5.3,5.5,5.8,5.5,8.5,9.1,8.6,8.6,8.6,8.6,8,8.1,8.3,7.8,7.8,7.8,7.8,7.8,7.8,7.2,7.3,7.5,7.5,7.5,7.5,7.3,8,9,10.3,8.9,8.9,6.1,3.6,3.3,3.5,8,7,8.3,6.9,7.1,7.1,7.2,7.4,8.6,8.9,7.6,8.7,6.1,5.5,5.8,5.8,5.8,5.8,5.7,5,4.9,5.1,5.2,4.9,5.3,5.3,6,5.2,7.3,8.1,7.3,7.8,8.1,8.1,7.4,8.2,8,8.1,8.1,8.6,8,8.2,8.2,7.9,8.6,9.3,9.3,9.2,9.2,9.3,9,9.2,9.2,9.4,9,4.4,4.5,4.5,4.5,4.1,4.5,6.3,8.2,7.9,8.7,8.6,8.6,8.7,8.4,8.2,4.3,4.1,4.1,4.2,4.2,4.1,4.1,4.1,4.2,4.3,4.2,4.2,4.2,4.2,4.8,4.8,4.8,4.5,4.7,4.7,4.7,4.7,7.5,7.5,7.5,8,8,8,8,8,8,8,8.8,8.8,8.8,8.8,8.8,8.8,8.8,8.8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,8.6,8.6,8.6,8.6,8.5,8.4,8.4,8.4,8.4,8.4,8.7,8.2,8.2,11.1,11.1,12.2,12.2,12,11.7,11.7,8.3,8.3,4.8,4.7,4.6,7,8,4.4,5.4,5.4,5,8.4,8.4,7.8,8,8,9.1,9.2,9.2,9.2,9.2,8.4,9.4,6.1,6.1,7,7.2,9.4,8.9,9.1,9.2,9.2,9.2,9.2,8.2,7.9,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.7,7.9,7.9,7.2,7.8,7.8,7.8,7.8,7.8,7.8,7.3,7.3,7.3,7.3,7.3,7.1,7.1,8.6,8.6,8.6,8.6,8.6,8.6,8.3,8.3,8.3,8.3,8.3,8.3,8.3,8.3,11,11,11,11,11,10.9,10.8,10.8,13.9,14,13.9,13.9,13.9,11.4,10,5.1,5,5,5,5,5,5.1,6.3,6.7,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.6,5.6,4.8,6,6.4,6.5,6.5,6.4,6.3,7.5,7.5,7.5,7.4,7.4,7.4,7.4,7.2,7,7.4,7.5,7.6,7.6,7.6,7.6,7.2,7.2,7.2,7.2,7.2,7.2,7.6,6.9,7.2,7.4,7.4,7.4,7.4,5.2,5.2,4.9,5.3,5.3,5.3,6.1,6.1,6.1,6.1,6,6.1,6.1,6.1,4.3,4.3,4.3,4.4,4.4,4.4,5.8,5.8,5.8,5.8,5.8,5.3,4.7,4.7,4.8,5.5,5.7,5.6,5.6,6.9,6.6,5],"distance":[59.5,50,6.1,4.4,86,4.6,2.9,3.2,2.8,3.8,7.5,9,18.2,13.6,33.2,12.2,12.6,11.1,11.4,7.1,6,3.8,7.8,6.1,17,83.7,19.4,22.2,19.6,10.8,8.7,91.1,160.1,169.9,124.6,102.4,33.4,35.3,15.5,8.3,7.1,11.1,4.2,15.4,16.9,1.3,30.4,7.9,10.5,3.1,1.1,1.6,14.4,47,23.5,69.4,128.2,97,20.4,1.4,47.8,12.8,11.9,71.8,85.1,67.4,152,134,109.8,21.1,22.9,14.2,14.6,28.9,157.1,29.5,181.8,113.8,61.1,3.3,99.2,4.7,14.3,14.1,49.1,130.9,81.4,187,51.7,24.3,26.4,21.8,21.8,21.9,23.9,25.6,18.9,24.9,15.4,16.5,19.1,13.1,22.2,15.2,12.3,14.2,12.1,27.5,11.4,9.9,32.7,24.5,21.7,23,26.2,13.5,9.5,23.7,80.5,86.7,36.9,33.8,24.7,30.3,25.3,33.9,19.8,27.1,19.3,25.3,49.4,52.1,95,84.9,166.8,42.7,31.1,10.3,80.1,9.8,4,34.6,33.3,34,9.8,8.8,19.3,25.2,12.2,21.3,10.4,10.9,8.3,9.6,10.8,9.1,10.1,14.9,10.6,18.6,17.5,12.3,13.6,20.4,23.9,60.1,75.1,21,10.1,15.7,11.1,12.7,13.3,15.8,11.8,7,6.1,5.8,5.2,13.9,95.2,27.3,25.3,47.3,20.8,8.5,9,8.5,8.4,6.6,8.1,6.8,6.4,6.7,6.6,11.5,70.2,88.8,27.5,12.1,3.6,44.4,56.5,54.3,137.6,100.2,52.1,51.9,31.7,39,89.5,25.4,22.2,34.4,22.3,35.4,1.1,29.1,25.9,37.6,28.4,32.5,31.3,43.5,38.5,3.5,50.1,26.2,45.7,40.3,29.6,27.8,42.6,37.2,18.8,11.9,44.4,26.9,16.7,11.3,28.1,15.2,22.1,34.8,67.3,42.1,53.4,53,37.7,23.7,23.3,38.7,15.6,43.5,19.4,5.6,8.2,82.3,334.3,35.5,38.9,39.6,61.8,87.4,27.6,1.2,48.5,91.5,95.3,18.2,12.1,28.7,191.4,128.9,159.9,51.2,0.9,13.4,56.8,90.5,45.7,37.7,22.2,186.2,49.1,58.1,55.3,250,68.9,9.4,41.1,171.5,1.3,17.2,67.3,35.9,126,141,58.8,50.5,34.7,132.7,174.8,6.5,34.4,6.9,318.5,108.7,16.8,0.4,94.5,232.2,138.9,15,245,57.7,137.6,30.6,26.7,232.9,264,44.7,18.9,25.5,103.4,48.4,135,270.4,107.9,47.7,295.6,149.1,200.6,45.2,111.3,122.6,137.7,130.8,64.6,66.6,59.4,36.4,76,96.5,66.2,91.6,62.4,69.8,73.7,21.4,35,39,44.7,77.5,38.7,50,31.5,24.2,45.7,162.6,136.7,218,53.6,253.1,198.1,35.6,146.3,125,108.3,177.5,169.1,106,90.1,66.3,24.2,127.5,74.3,141.4,169,177,195.2,71.4,71.9,266.4,192.8,80.2,71.6,119.5,41.9,2.8,158.4,142.8,2.7,150,96,129.7,151.7,148,121.2,35.8,48.6,234.5,29.6,61.1,181.2,279.5,249.4,89.5,261.4,385.4,12.1,74.4,55,309.4,203.6,240.3,37.2,150,69.4,11.2,32.7,157.6,3.2,38.6,557.5,46.8,7.8,238.2,29.1,24.4,30,161.7,1823.3,134.4,118.5,99.3,135.6,123.3,98.4,109.2,86.5,112.7,452.6,1116,128.2,196.9,108.5,76.3,126.7,128.2,18.3,21.2,31.1,20,36.5,81,54.5,71.8,48.5,45.8,89.5,85.8,100.6,94.1,51.1,204.1,56.5,62.1,39.6,76.6,39.2,41.8,97.3,53.8,56.9,55.8,54.4,118.8,63.6,57.2,695.1,489,251.5,133.8,69.4,165.1,440.2,151.7,38.9,72.9,156.6,192.2,49.6,192,9.8,551.2,318.2,34.3,67.9,141.9,142.9,142.1,138.1,162.6,131.2,507.9,98.4,77,72.7,70.9,89.2,74,70.8,0,68.2,41.4,105.7,59,186,400.3,86.6,139.6,385.6,79.7,45.7,46.9,40.6,33.5,46.3,87,143.8,62.5,47.8,87.9,78.7,64,78.5,102.1,668.5,114,195.4,197.9,70.6,74.2,127.7,64.1,35.5,36.5,32.5,32.8,66,37.7,39.3,39.9,38.4,69.5,80.6,91.3,83.2,70,56.8,53.4,71.2,90.5,128.4,125.4,60.8,46.1,69,219.1,42.8,6.6,123,75.2,74.8,77.6,81.2,40.5,88.3,40.5,49.3,32.8,37.7,72.1,56.3,42,160.7,138.4,49.9,48.2,47,61,46.7,52.9,39.1,35.7,30.9,56.5,39.2,56.2,51,55.4,68.1,73.5,68.5,83.5,58,297,285.3,22.6,108.2,20.8,64.1,53.3,55.4,52.6,54.4,34.3,54.3,52,74,37.9,50.5,39.3,36.7,68.6,92.4,215.9,251.3,451.4,72.7,67.2,67.6,54,147.8,68.3,57.5,233.7,44.7,6.5,127,11.2,72.6,77.6,53.1,52.6,72.9,40.3,59.3,45.7,76.3,24.2,17.3,34.8,44.6,43.9,39.6,262.1,188.5,71.4,89.8,59.2,49.1,67.7,55.3,35.6,33.6,35.4,178.5,112.5,26.9,20.4,51.8,74.4,2.9,164.9,8.8,42.7,17.1,46.4,79.5,53.3,34.6,21.2,32.2,36.1,36.1,53.4,42.3,41.3,22.2,22.1,31.7,37.9,24.7,16.8,17.7,37.9,26.3,25.5,36.1,42.2,30.3,37.4,37.3,26.5,19.9,148.6,62.5,82,15.9,139.8,66.2,95.8,85.2,9.3,10,9.6,68.8,85.4,87,79.7,126.2,159.1,250,82.9,24.3,510.4,34.6,353.9,26.4,76,144.8,127.1,126.4,65,222.2,174.1,169.6,25.8,82.5,92.4,71.2,86.8,147.7,123.2,38,12.1,21.8,202.3,143.1,69.5,19.2,20.3,32.7,91.4,35.4,73.8,52,56.3,103.4,19.6,216.5,76.6,84.9,75.8,64.5,66.1,64.6,78,82.7,76.3,75.1,79.6,80.6,91.4,47.1,47.9,31.9,14.2,33.5,37.5,48.8,169.8,101.6,115.5,58.1,119,37.3,179.5,855.9,18.9,206.8,17.7,69,104.7,31.3,9,30.1,53.1,157.9,81,83.7,84.2,30.6,90.7,161,65.5,57.4,29.5,371.2,630.9,163.8,124.5,180.2,125.7,108.2,179.5,35.2,88.3,126.3,143,459.2,130.7,41.3,131.7,4.4,30.6,441.9,50.8,11.3,108.9,206.2,6.8,616,114.9,83.1,116.8,145.7,76.3,129.7,106.1,420.8,474.2,7.1,82.6,9.5,116.9,27.9,109.9,60.6,30.2,41.6,6.1,101.8,52,48.6,62.7,39.3,406.3,329.7,123.1,93.3,161.3,90.2,91.9,103.1,45.5,423.8,116.2,917.2,150.1,350.1,905.5,39.9,22.2,59.5,56.8,70.9,58.6,36.3,14.9,141.4,73.7,58.6,49.6,48.4,79.4,62.4,8.4,48.3,101.2,117,143.4,3.1,27.1,6.1,245,383.4,353.1,93.6,49.6,87.1,174.2,96.7,60.5,40,26.3,108.9,64,166.1,78.9,200.7,44.4,352.1,5.4,12.7,108.7,100.4,109.3,104.6,104.7,114.2,251.8,520.6,249.2,590.8,72.5,74,134,125.3,2,556.4,84.8,72.2,76.9,61.4,57.1,19.7,102.9,75.5,47.8,128.8,40.9,115.5,179,144.5,271.2,70,37.3,53.2,53.1,56.3,68.8,53.7,55.8,88.1,71.7,49.5,58.4,56.8,73.8,52.2,55.4,121.8,46,188.3,107.7,79.5,99,188.7,47,2.5,135.2,67.3,258.5,233.8,92.9,70,92.2,115.7,94.5,24.4,93.7,142.5,107.7,88.5,161.9,248.6,202.7,683.7,471,26.1,307.2,70.7,102.2,88,87,49.2,51.8,46,44.5,241.3,57.3,58.8,42.8,45.3,61,52.2,93.6,131.6,27.2,101.9,180.5,47,114.3,322.8,118.2,185.9,32.7,137.9,99.3,52.9,159.9,164.8,90.1,54.2,101,95.3,72.9,108,70.7,247.1,624.9,63,118,116.5,88.4,89.7,90.4,339.3,143.2,82.4,7.9,91.2,89.6,142.2,81.2,83.8,15.3,39.9,68.8,53.4,110.5,86.4,40.5,33.9,13.9,19.9,174.3,315.7,150.4,169.6,277,229.3,109.2,55.8,95.5,400.8,91.6,93.6,53.3,54.4,94.5,194.5,73.6,83.4,96.7,40.9,49.6,176.4,100.5,25.8,20.2,37.9,53.3,56.9,49.4,34.9,35.6,100.7,107.4,77.2,78.5,60.4,59.5,73.6,56.4,2,65.1,20.6,38.2,14.4,27,121.1,27.9,42,61.1,86.6,38.2,54.6,73,57.3,182.5,98.1,43.9,55.5,79.7,83.1,68,50.8,46.5,18.9,202.7,586.7,247.2,98.8,81.8,35.2,22.3,94,49,68.3,49.3,32.7,0.8,36.9,39.8,29.8,36.7,23.9,34.9,45,32.8,43.4,45.7,80.8,34.8,79.6,44.7,54.3,25.1,24.5,56.7,32.4,20.8,63.4,50.2,27,43.8,47.2,65.2,61,97.3,5.1,57,76.6,78,141.5,18.1,29.4,21.6,35.6,76.4,68.6,58.9,69.5,72.7,57.5,93.2,82,102.8,92.4,89.3,33.5,55.3,72.7,108.2,122.7,121.8,21.2,75,36.9,41,56.7,6.7,48.9,156,66.3,5.7,57.9,70.1,60.2,61.9,67.3,70.1,60.1,53.4,40.1,25,32.7,36.1,35.8,40.4,61.6,147.3,162.7,73.9,51.5,55.3,50.5,54.9,48.9,54.9,38.6,43.7,32.1,34.8,33.5,57.1,48.8,42.2,41.7,45.7,56.3,96.5,201.4,117.2,95.3,95.9,41.6,24.1,45.3,37.1,43,49.9,33.8,45.3,45.3,43.4,47.4,33.2,56.3,52.9,42.4,40.6,49,52.2,48.4,39.6,32.5,37.3,37.4,49.4,40.2,33.2,53.9,252.7,96.5,62.9,48.2,45.6,66.7,58.6,51,56.7,179.4,78.4,95.3,79.4,32.1,23.3,41.1,78.8,34.8,40.2,32.2,58.8,76.7,34.7,59.8,92.3,71.7,69.9,145.4,24.1,55.9,104.4,110.7,102.2,51.9,46.3,46.2,42.7,69.5,90.8,60.5,68.1,114.4,67.6,40.1,134.4,114.5,175.3,102.1,45.7,53.5,44.5,38.9,50.9,48.4,43.9,54.6,71.2,380.1,161.6,38.8,65.8,93.8,56.1,76.6,41.2,73.8,78.9,63.2,75.8,228.1,51.1,341.3,37,275.9,282.2,298.8,347.4,108.9,85.6,87.9,67.1,78.9,124.4,52.8,166.3,119.9,164.6,92.2,71.2,109.4,108.2,206.7,526.7,23.8,655.7,199.6,386.2,257.4,42.4,36.1,96.2,90.8,161.1,202.6,173.9,159.7,173.9,502.4,253.3,56.5,56.7,68.2,22.3,24.8,43,134,43.6,135.7,180.8,135.2,24.6,22.9,279.7,116.7,133.8,100.3,81.4,319.7,359.1,168.9,357.8,42.4,403.7,24.3,502.8,6.4,248.6,248,211.3,219.6,171.9,125.9,463.6,345,84.5,57.2,125.4,186.3,135.8,91.4,66,70.6,152.9,144.6,70.8,23,150.8,288,51.2,88.1,22.5,259.3,152,204.1,135,233.3,424.1,33.4,174.7,553.4,337.3,28.2,422.9,535.1,52.1,21.6,72.3,101.3,108.1,64.2,112.3,55.1,344.1,186.4,5.3,27.8,154.7,36.2,847.8,315.3,308.5,206.2,218.9,24.1,590.8,52.4,39.9,127.1,104.2,54.6,76.6,169.5,131,26.3,232.1,32,467.2,160,26.7,483.6,240.2,0.5,529.3,141.5,156.2,172.4,110.6,84.7,93.5,372.7,695.3,229.8,242.1,334.9,20.6,248,909.7,594,110.5,9.5,150.2,126.2,216.2,121.3,110.1,313.5,133.9,247.3,219.1,42.1,319.7,136.9,679.4,103.1,49.5,98.4,48.4,4.6,56.5,215,9.7,163.8,19.7,33.9,45.3,9.3,117.6,143.3,69.9,103,62,19.8,25,108.7,92.5,83.3,66.2,94,268.3,26.8,30.6,43.7,35.6,27.2,213.2,22.6,107,192.7,154.5,726.7,568.2,65.6,65.8,85,41,59.3,67,68.1,162.8,28.5,53.6,62.2,29.5,103.7,37.1,70.2,77.6,41.3,97.5,15.1,50.4,22.6,94.9,32.6,25,2.1,5.8,48,71.8,15.6,28.9,10.2,54.8,69.1,72.7,404.2,134.1,151.3,153.9,86.2,23.5,30.6,27.1,59,32.5,87.6,94.7,52.3,56.1,66,84.7,50.5,64.3,44.8,58.1,98.2,26.2,46.3,52.6,132,159,187.5,149.8,117.6,190.5,97,105.4,55.7,49.6,274,25,140.9,21.7,227.4,266.7,788.4,37.6,149.9,125.8,223.7,129.1,253.2,214.8,241.7,268.6,69.8,93.5,173.7,78.5,70.2,180.7,63.2,78.8,54.4,87.7,63.9,112.3,64.7,80.3,81.4,102.7,104.7,170.4,183.9,6.4,194.6,114.1,67.5,41,63.7,37,46.1,64.2,1.6,169.5,124.9,91.7,15.8,130.2,67.3,105,323.7,83,11.1,138.9,211.1,179.2,297.4,74.9,238.7,226.4,348.1,75.2,270.2,370.2,330.9,76.5,114,97.2,135.5,135.8,54.7,64.9,105.9,115.1,148.9,516.9,142.5,119.9,409.7,291.5,80.5,9.4,30.8,72.6,53.4,123.8,87.5,52.9,173.8,160,111.4,343.3,209.3,172.8,151.7,128,176.3,128.4,844,524.1,442.8,189.8,480.9,81.8,82.6,220.1,31.6,139.4,219.2,142.3,143,84.1,108.9,28.6,44.2,66.3,26.5,44.5,73.8,74.6,82,25,38.7,46.3,101.5,22.2,240.8,320.6,180.6,190.2,189.5,177.5,113.7,74.7,52.8,56.5,75.4,58.1,50.3,42,55.3,47.2,54.5,54.1,69.8,62.1,95.4,52,65.4,58.9,65.4,34.3,32.6,66.2,49.5,57,47.3,49.7,63.3,67.3,64.2,42.5,27.5,53.2,71.2,76.7,42.9,51,45.8,71.2,79.5,73.3,74.2,69.6,101.5,62.2,50.5,43,46.2,81.9,86.8,97.2,120.8,91.4,96.5,19.7,0.8,356.4,111.6,111.1,83.3,87.5,11.8,0.5,46.2,50,63.9,53.3,2.2,68.6,56.8,68.4,66.8,70.4,56.1,68.5,80.5,110.8,140,155.4,94.4,16.9,115.8,109.9,101,4,97.5,108.6,98.9,108.8,257.2,96.7,195.5,180,30.3,84.6,70.4,51.4,21.1,60.1,38.7,42.7,23.6,35.1,38.3,16.2,60.6,252.3,2.2,114.4,38.2,279.7,229.6,40.9,116.1,125.8,155.4,31.8,51.2,38.7,48.2,99.8,142.2,4.2,205.9,44,53.2,68.9,81.5,68.6,131.3,81.4,53.6,56.5,43.8,48.8,61.2,55.6,58.8,42.3,78.3,71.2,31.2,53.6,46,50.5,40.3,47.7,34.2,37.3,25.2,41,49.4,51.1,64,55.9,53,47.9,47.7,74.9,65.7,77.7,59.6,63.8,49.2,66.3,52.7,45.2,30.9,29.8,52.4,50.3,52.5,60.1,56.2,101.9,53.9,40.2,153.5,181.7,170.9,156.9,157.7,110,43,130.3,75.5,88.9,56.9,26,33.9,43.1,61,48.1,71.5,71.3,27.2,105.2,54.3,50.9,85.1,44.1,119.4,308.5,42.3,86.2,24.8,368.4,386.5,72.1,54.5,130.9,364.4,253.6,49.4,147.5,83.3,104.7,138.2,142.2,123.6,102.4,80.8,99.3,72.3,73,40.2,53.6,78.3,55.7,41.1,58.8,54.4,68.1,22.7,84.7,10.6,76.3,71.2,66,43.9,169.7,61.5,233.6,267.9,125.4,364.9,67.4,110.2,80.4,59.7,59.6,84.6,40.4,84.9,86.2,76,83.7,92.9,98.3,330.6,144,12.9,474.1,145.2,72.2,80.2,75.3,86.1,34.4,55.6,85,37.9,33.9,64.1,38,58.9,63.2,20.4,62.2,101.6,200.5,26.4,62.5,59.8,24.9,35.1,73,42.9,50.3,50,64,45.3,59.9,71.1,39.4,116,73.6,62.3,209.9,217.9,155.1,31.8,124.9,84.3,60.5,88.2,95,61,18.2,12.9,18.3,27.3,12,16.8,37,175,167.7,95.9,36.3,106.2,81.9,82.2,118.2,63,51.7,55,56.3,49.6,50.4,31.5,68,83.7,79.1,60.4,68.1,75.5,47.3,62.6,63.5,117.1,85.2,67.4,99.5,115.7,45.6,46.8,67,74.7,81.8,73.8,193.6,80.3,71.9,53.8,77.4,37.8,34.3,32.2,47.6,28.9,22.5,68.1,57.9,55.8,69.9,68.1,34.9,41.1,35,43.2,38.6,57.7,4.9,19.4,113.9,83.3,54.1,58.9,55.4,76.5,47.7,61.3,91.1,102.5,74.4,161.1,4.8,25.3,73.3,70.3,17.2,50.8,46.9,52.1,65.8,50.8,65,67.6,65,54.1,28.1,33.1,50.8,63.4,47.5,66.5,44.4,40.3,46.2,49.1,43.5,43.2,68.2,38.7,32.1,60,44.8,152.8,153.4,93.5,52.7,44.7,78.4,42.2,38,46.3,45.7,78.3,70.9,75.2,27.1,54.2,95.6,124.8,42.7,54.4,45.2,36.4,147.3,77.6,68.4,56.9,70,106.4,49.3,43.9,47.6,45,51.9,42.8,45.3,46.5,123.2,46.2,81.4,77.5,82.6,39.4,33.4,58.3,94.4,24.8,97.6,44.3,23.4,58.3,71.3,38,31.6,107.3,232.5,37.4,62.4,115.1,72.5,105.6,5.6,165.4,79.5,80.5,65.9,105.7,84.2,73,77.8,79.2,69.4,44.5,35.1,120.8,83.7,215.8,109.2,109.3,90.7,76.3,97.9,71.6,80.4,79.9,73.6,75.1,84.8,52.6,37.7,97.3,167.1,179.1,49.5,120.3,192.4,98.8,76.6,63.6,65.4,68.1,76.9,61.2,46.3,84.2,75.2,98.2,75.4,85.9,59.1,107,78.5,87.5,80.7,52.4,55,56.8,49.5,34.1,110.6,105.9,69.8,59.1,63.2,57.7,66.9,68.1,67.5,65.4,59.3,80.5,87.9,51.6,54.6,208.3,125.6,56.2,61.9,35.4,40.1,32.4,39.9,40.5,33.7,44.8,41.2,71.5,58.8,63.8,68.8,61.7,74,75,75.4,72.8,70.8,89.7,68.7,101.3,51.2,91.1,127.8,84.6,146,54.2,173.3,90.1,53.2,47,161.5,105.9,70.1,42.1,56.4,79.7,44.4,46.1,69.7,40.4,30.2,7.7,36.3,88.7,71,69.7,46.5,42,75.8,64.9,49.1,8.6,40.3,40.3,47.9,36,54.8,57.9,56.7,85.7,76.4,75.7,81.6,88.3,280.3,163.4,79.6,0.4,90,119.4,43,82.4,82.7,153.2,15.5,63.9,27.3,72.8,28.8,41.4,80.3,89.6,112,71,88.3,123.3,67.7,75.8,41.8,88.1,105,18,90.9,97.2,95.6,56.3,115.5,51.9,107.8,101.4,106.2,110.5,48.3,112,165.8,107,87.7,60.9,38.5,34.8,24.7,25.1,34.5,43.3,69,66.6,41.9,48.1,31.7,20.5,39.7,35,57,30,69.1,31,61.9,70.6,70.7,25.2,81.2,101.9,101.2,63.9,95.2,38.3,21.4,62.4,76.3,25.7,44.7,24.7,51.4,13.4,34.2,126.8,16.7,97.3,57.2,122.7,92.9,116.2,18.7,102.4,66.1,59.8,29.4,26.5,48.9,54.5,0.5,40.7,14.9,18.4,46.9,62.4,44.7,36.9,52,83.5,88.4,99,13.1,24.8,49,151.2,59.6,52.8,40.2,61.9,63,20,76,61.1,101.4,52.8,78,34.2,73.6,117.2,45.6,7.7,55.2,51.1,228.4,236.5,43.4,116.2,39.4,67.1,114.7,43.9,47.6,51.6,139.6,99.3,27.7,68.5,125.1,94.2,102.9,41.4,24.7,97.2,43.7,47.6,94.4,37,60.5,72.4,29,43.9,40.2,96.7,86.3,104.1,103.6,44.2,19.9,36,75.4,73.9,101.3,95.2,56.3,54,52.8,39.8,45.6,34.3,31.9,28.7,60.2,57,53,62.8,56.7,43.9,100.5,14.4,77.9,45.6,24.5,27.7,56.7,36.9,50,60.8,43.4,42,41.7,37.5,30.9,8.8,50.5,77.2,128.9,38.6,39.8,53.8,17.1,37,188.6,67.9,16.4,29,73.4,20.3,154.9,91.1,74.3,66.7,32.5,33.5,34.5,10.2,6.1,14.4,31,25.3,36.3,46.7,49.5,50.2,135.9,112.1,50.5,24.4,130.9,77.7,77.8,59.7,151.4,46.1,82.3,104.2,35,37.3,24,45.2,52.3,79.9,64.5,62.6,73.9,23.2,23.4,49.7,103,61.9,61.8,62,61.7,95,46.1,20.3,120.3,92.9,95.3,92.3,75.4,64.3,104.9,72.3,102,97.8,46.8,68.3,84.4,99.7,90.9,67.4,65.3,85.3,10.5,50.1,83.2,33.7,39.8,83.4,161.7,37.1,51.8,66.8,49,46.5,74.8,48.8,82,34,36.5,71,49.6,68.3,55.3,46.6,3.6,64,59.5,55.5,70.5,51.6,47.6,95.5,102.9,107.8,42.1,78.1,133.2,56.4,57.6,51.3,60.6,50.1,55.2,56.5,46.2,43.6,52.7,66.2,92.8,46.9,39.3,76.4,124.9,57.6,53.3,52.5,68.2,60,7.7,8.6,40,65.1,89.3,120.7,92.9,77.7,125.6,62.8,64.8,54.5,56.1,64.5,64.8,134,116.4,89.9,20.2,105.4,45.5,62.4,55.4,125.1,35.5,37.7,185.7,1.8,192.3,97.2,67.2,116.1,115.2,126.3,102.1,30.9,107.1,36.3,65.3,297.8,163.7,73.7,71.9,71.3,66.7,86.9,101.9,34.2,79.2,94.2,208.5,35.2,79.5,70.6,70.8,52.8,64.3,60.2,65.9,55.8,19,31.6,59.2,67.3,55.5,202.5,27,24.2,76.7,95.5,75.7,88.4,62,16.2,81.7,53,23.2,60.2,30.5,74.2,98.2,71.4,46.1,29.3,31.4,13.7,51.2,83.5,101.5,94.4,83.9,83.7,39.9,55.2,77.8,64.3,124.1,127.2,44.2,89.6,111.3,279.7,485.6,185.3,58.7,54.3,72.9,72.5,38.9,47.1,74.8,71.6,37.9,49.3,30.2,45.1,73.7,51.8,45.4,30.2,22.5,38.7,42.4,39.6,59.1,36.4,42.6,48.1,49.8,70.9,94.4,102.3,43.4,27.8,70.5,79.3,92.4,34.3,64.1,40.9,31.4,48.4,41.2,40.5,44.4,69.1,58.7,47.8,46.9,72.6,87.3,83.2,187.4,30.4,94.3,106.3,72.9,54.2,103.7,63.6,55.4,85.7,63.4,6.2,55.3,47.4,61.2,26.3,48.9,67.7,28.8,28.6,27.1,73,79.8,50.8,48.4,186.5,40.7,124.7,35.5,85.5,24.5,21.6,51,40.7,39.8,10.8,12.2,39,18.4,33.2,37.2,54.1,53.4,41.6,37.4,49.2,37.5,84.3,39.8,33,49.5,31.8,29.7,31.7,36.2,54.5,71.5,60.1,44.9,69,51,52,54.9,51.3,96.9,101.1,7,33.7,97.9,74.5,125.6,118.8,62.8,63.7,71.9,93.2,117.5,115.6,71.3,125.8,118.6,121.8,37.5,62.9,19.5,23.2,19,47.8,25.7,114.6,80.8,107.9,53.3,24.8,29.8,115.5,117.1,62.9,117.9,66.5,43.8,112.9,102.1,118.4,109.8,120.2,76.2,71.3,52.3,98.5,6.7,29.5,50.3,10.4,54,53.2,8.3,23.1,22.1,5.6,214.7,105,65.4,19.3,114.3,104.2,41.3,58.3,60.7,52.8,43.7,103.1,109.2,74.6,16.2,98.7,29.9,64.2,104.5,81.1,110.7,86.7,26.1,69.5,104.2,61.5,40.9,92.1,76.2,120.7,59.3,108.6,52.7,86.8,82.4,77.3,88.2,39.7,29.6,74.2,71.3,53.4,45.6,84.9,12.9,77,0.1,76.8,36.5,38.5,50.8,74.9,71.1,88.6,17.7,54.1,87.2,84.6,46,82.3,39.9,76.8,105.4,109.7,104.9,144.3,9.5,31.3,92.5,31.4,13.5,11.9,33.4,58.8,98,86.7,33.2,64.2,89.4,94.3,87.3,104.1,106.8,100.3,78.1,36.7,117.8,109.6,48.7,59.4,100,19.3,15.9,28.8,98.8,110.5,77.7,29.9,106.7,101.3,82.3,108.9,83.2,23.2,64.8,42.9,76,108.8,107.5,65.1,46.3,65.2,37.7,74.3,106.4,109.6,57,51,109.6,104.1,111.9,94.3,90.3,115.2,119,32.5,48.2,74.6,81.2,97.4,43.7,48,51.5,46.8,56.8,46.6,44.4,82,12.6,41.6,64,45.2,77,53.3,58.2,29,43.4,29.6,49.3,65.7,129.3,274,193.3,250.4,47.9,136.9,34.9,325,26.9,46.3,196.9,219,213.4,27.9,141.1,91,37.5,303.8,17.7,59.9,39.7,21.7,40.7,58.2,122.1,173.5,51.9,86.5,72.1,85.6,45.3,64,63.6,77.1,59,35.8,29.6,98.6,91.4,169.1,72.2,28.7,4.2,163.6,26.7,168.6,113.3,140.4,65.3,162.2,39.4,40.8,60.8,36.5,22.6,13.3,35.9,34.7,35.6,34.6,35.4,34,32.5,73,105.2,57.9,39.5,84.4,55.4,34.9,72.3,47.3,45.3,48.1,41.1,46.7,47,43.2,36.7,60,82.1,71.3,116,45.1,108.7,53.7,49.7,48.1,45.2,63,54.6,61.7,66.3,31.2,49.4,53,44.4,61.3,48.2,47,46.7,46.8,41.9,34.9,47.1,70,59.3,62.3,45.2,32.8,72.2,209,118.7,7.7,152,48.9,15.9,57,56,21.2,46.2,63.3,82.4,60.2,73.8,12.4,63.8,18.9,0.6,40.8,68,35.9,56.7,53.5,49.9,53.4,42.4,40.3,45.1,50.1,80.3,52.2,38.4,56.3,47.2,18.3,1.9,105.6,54.4,122.8,111.1,91.2,28.9,66.9,46.2,58.6,48.5,47.2,32.2,69.5,48.8,50.5,109.4,92.3,54.6,51.9,28.2,36.3,71.5,64.3,79,37,59.8,40.2,48.9,54,72.6,60.2,70.5,54,38.7,43,40.6,36.1,50.2,36.4,35.5,36.1,35.2,60.1,36,30,52,101.9,285.2,37.1,39.8,28.8,32.4,31.2,24.9,30.6,33.6,35.9,0.5,35.6,47.1,60.4,34.6,29,30.8,33.5,23.4,24.2,44.5,34.6,30.9,71.9,35.9,33.5,21.4,37.1,32.7,47.6,49.6,43.4,5.9,2.1,15.1,24.7,36.2,28.6,21.5,27.8,24.6,21.6,40.7,42.8,46.7,32.1,49.3,50,34.7,33.9,53.7,45.4,46,0.4,44.6,43.3,57.3,61,13.3,56.6,34.6,3.7,23.4,49.7,42.7,27.5,28,28.6,30,31.2,31.6,76.8,71.1,256.3,65.5,24.4,90,50.7,57.3,70.7,25.5,31.9,53.6,73.4,48.2,152.2,55.6,151.3,43.7,34.6,94.6,119,102.7,30.5,20.7,131.4,44.1,81.7,29.2,40.6,74.1,55,90.3,19.5,34.5,34.3,4.2,25.7,51.4,36.2,73.3,160.1,132,59.6,52.3,53.8,58.5,52,44.5,79.1,61.7,60,67.7,62.1,139.5,68.5,53.9,110.6,111.1,210.9,50.2,101.8,73.6,136.9,105.2,91.1,80.6,37.2,55.3,64.2,48.3,111.9,107.2,142.4,399.8,119.4,162,56.4,65.9,121.6,106.8,105.1,125.9,123.9,100.5,41.9,56.8,122.9,123,40.7,87,63.1,81.2,82.3,73.1,145.3,102,206.9,291.7,56.1,33.1,42.5,55.6,61.1,68.6,55.9,59.9,60.9,67.9,73.8,39.8,39.8,79.3,56.5,72.3,75.4,64.1,71.5,119.5,104.7,58.6,70.1,73.5,71,62.4,70.7,69.1,71.5,57.5,32.2,26.8,47.4,28.9,43.6,50.5,50.7,53.6,52.8,47.8,47.9,43.2,42.5,76.9,52.1,46.8,35.2,57.2,172.5,167.2,46.5,46.6,40.4,40.8,43.5,42.9,85,0,463.8,21.7,61.9,449.7,90.8,90.6,83.4,86.2,32.5,129.5,229.3,143.4,144.8,150,153.6,3.6,134.5,82.9,58,126.2,127.3,137.1,67.3,87.3,129.8,141.4,97.6,39.5,60.3,62.7,81.9,46.6,100.4,102.8,34,4.7,35.5,101.8,45.1,61.3,63.6,98.2,91.9,94.7,87.6,320.4,232.8,13.7,48.6,51.9,48.4,48.9,38.4,42.2,28.5,43.4,38.5,24.2,35.5,51.7,62.8,64.3,54.4,71,80.3,247.9,89.4,92.7,88.4,74.2,52,49.9,1.7,55.5,50.2,30.7,37.3,40.9,48.7,9.3,63.9,33.5,9.5,39.7,57,55.6,57,18,27.8,44.6,32.6,48.3,49.7,47.3,48.1,149.6,73.3,55.8,20.1,14.9,167.4,35.6,218.4,125.4,32.2,54.2,98.4,56.7,94.5,66.7,272,162.7,97.4,327.5,129.8,106.3,127,266.5,506.3,68.1,42.9,41.9,77.7,140.8,113.4,50.5,59.2,109.3,106.4,223.3,376.9,118.9,255.3,186.4,46.5,23.5,26.4,39,40.5,60.7,74.4,46.6,220.4,500.2,494.2,18.5,10.3,477.8,448.9,49.1,50.1,49.7,49.6,50.1,50,49.3,50.5,49.3,49.9,62.2,36.7,49.7,49.8,59.3,49.3,50,49.5,147.5,22.8,173,82.6,99.5,90.9,32.9,27.9,69.3,83.8,41.9,57,52,29.1,65,71,76.7,420.6,458.6,445.4,57.6,50.5,70.6,55.9,62.8,108.1,31.8,172.9,461.9,23.3,290.7,206.6,199.3,20.4,203.5,72.9,511,507.8,224,81.5,76.6,73.2,77.3,224.4,232.7,46.9,139.6,60.7,59.9,60.5,60.5,60,60.4,60.9,60.2,60.1,60.9,60.4,60.4,60.5,60,60.5,5.6,33.3,61.1,60.3,121.3,60.3,60.5,56.9,3.7,70.3,69.9,318.7,182.3,79.4,59.6,70.2,69.2,27.6,121.8,59.5,60,59.3,59.1,59.4,60.8,59.8,59.9,59.2,59.9,59.3,59.8,59.3,59.2,62.6,117.4,45.1,141.6,31.4,103.1,20.5,95,201.6,29.8,171.1,165.8,39,121.8,90.1,36.2,47.7,230.7,75.7,157,34,10.6,188.4,72.1,55.7,42,123.8,55.3,109.1,19.3,150.5,67.6,143.1,76.8,42.1,198,66.5,108.5,27.4,72.8,37.6,54.1,53.2,56.7,52.2,47.6,42.5,25.8,23,18.5,18.1,167.6,216.6,90.8,243.2,115.6,69.8,36.7,52.2,53.7,36,21.8,34.5,33.7,48,42.2,51.1,47.9,55.3,49.4,4.5,50.3,27.8,30.7,26.2,51.1,41.1,172.9,92.6,196.7,61.5,73,55.8,73,19.6,54.3,70.5,72.8,71.6,88.2,57.4,55.1,49.2,41.3,36.1,93.7,215.2,27,66.1,24.3,506.5,497.5,76.3,148,79.4,37.1,156.3,17.7,146.4,55.5,63.8,38.1,41.6,33.1,32.8,36.1,37.9,21.1,32,38.3,33.9,36.8,56.2,33.1,36.4,35.1,36.1,53.6,107,121.3,382.7,90.6,70.4,72.6,71.8,125.7,30.5,42.3,38.2,178.7,112.1,86.7,65.4,61.8,64.6,76.9,74.3,71.2,72.1,96,3.8,40.2,72.9,72.2,213.3,39.5,52.3,217.4,209.5,75.8,198.9,199,31.8,77.2,77.9,91.1,88,100.2,122.3,158.6,44.2,25.9,283.2,147.9,390.9,107.2,109.5,105.2,125.5,51.5,35.3,42.8,184.6,33.2,102,62.3,37.1,4.6,1.4,5,6,246,41.9,170.9,45.3,116.5,38.6,272.8,395.5,116,9.8,84.2,54.3,49.2,59.6,240.4,51.9,45,6,53.9,189.8,104.3,60.2,256.5,17.3,22.2,151.7,37.3,19,50.9,43.8,62.5,352.2,5.2,207.1,186.5,72.8,12.5,55.6,58.3,360,393.6,110.6,211.8,211.7,88.7,71.7,36.9,35.6,30.2,52,39,55.1,153.9,2.7,179.2,376.7,133.8,127.1,235.8,13.8,498.5,477.2,200.5,294.2,13,26.6,204.8,103.4,11.4,142.4,260.9,104.7,72.8,38.4,39.3,67.9,94.9,76.6,252.4,303.8,70.5,69,50,17.6,42.9,31.7,18.6,27.9,42.2,50.3,28.8,29.5,26.9,30.3,41,30.9,35.2,48.8,29.5,0.5,86.6,117.5,34.7,28.2,27.8,156,18,163.1,150.7,48,34,62.6,33.3,54.2,43.2,46.1,56.1,50.4,50.4,34.5,51,49.3,51.8,46.8,174.2,25.8,39.9,91.4,28.6,48.7,37.2,3.9,122.3,11.8,40.1,43.3,56,54.3,50.7,36.9,53.5,48.3,5.5,54.7,54.2,53.3,42.4,24.8,37.5,31.2,45.1,52.8,49.9,38.7,39.4,55.6,186.9,104.4,69.5,181.9,29.7,274.7,577.3,205.9,156.8,106.7,243.3,36.5,88.1,117.7,68.9,96,94.2,210.1,150.7,31.2,168.9,114.3,32.4,48.1,87.6,92.8,119.2,166,150.5,315.4,49.2,501.8,100.6,32.3,195.7,192.1,410.4,57.8,184.9,69.2,118.7,30.2,86.2,74.3,406.9,407.1,133.5,413,26.4,17.8,84.9,425.1,22.3,135.3,132.1,100.8,87.2,56.8,37,12.1,48.5,32.9,64.1,27.6,11.2,36,178.8,102,99.3,122.6,100.7,70.3,30.5,42.7,37.6,16.4,55.1,71.6,40.9,40.5,29.3,185.6,45.9,71.9,71.8,142.8,110.5,79.7,12,11,235.5,14.2,249.8,20.5,35.3,80.8,45.9,162.3,76.7,76.9,22,1.7,106.9,31.8,70.7,71.3,143.2,63.6,0,59.5,4.1,121.6,130.7,133.3,77.2,155.6,167.9,169.9,344.4,17.2,137.2,231.1,19.3,229.1,25.4,159.1,34.8,64.3,126.9,61.7,15.4,30.4,160.9,137.7,19.4,75.9,84.5,5.5,302,14.1,94.8,84.4,91.3,72,316.2,484.7,7.7,4.2,168.8,41.4,30.2,78.1,216.6,188.3,37.2,48.2,106.6,106,39.9,110.7,8.8,99.8,131.3,110.6,29.1,119,4.5,92.6,111,14.5,91.8,13.7,45.6,118.6,134.6,138.6,70.3,115,25.2,21.4,340.1,216.6,278.6,494.8,11.4,490.7,265.1,68.8,17,33.8,111.2,107.3,78.8,47,13,22.9,228.9,211.3,221.2,63.3,365.3,146.7,408.8,13.1,54.9,502.3,34.7,128.2,41.8,163,57.6,77.8,193.2,167.7,59.5,91.3,404.9,30.7,78.1,107.1,343.6,69.7,17,415.5,216.4,66.4,234.1,195.8,177.6,116.3,55,16.8,106.1,60.3,101.5,172.5,454.8,185.3,211.7,29.9,76.2,188.4,30.8,57.6,9.4,150.5,76.6,40,179.1,97.9,214.5,282.2,195.7,464.3,45.9,4.6,36.4,33.4,164.4,108.4,103.5,42.4,6.4,22.9,444.3,33.2,18.6,222.2,272.1,184,57.7,256.5,198.9,66,34.8,169,31.4,122.9,369.5,22.4,49.9,83,92,70.1,36.9,107.6,99.8,23.5,73,109.3,78.4,90.9,169.7,240.9,142.1,214.1,247.5,58.1,192.6,321.9,104.6,107.7,276.2,344.8,160.8,13.2,258.8,180.2,51.4,38.8,75.6,126.1,115.6,149.2,8.8,249.5,24.6,129.3,77.9,15.4,291.9,216.9,167.2,3,304.3,19.7,107.4,111.9,50.4,21.9,103.1,62.3,22.9,27.5,36.1,149,160.3,152.3,79.2,365.5,55.2,238.9,236,243.4,160.3,90.4,25.8,31.9,103.1,52.2,286.5,498.6,19.2,362.1,75.9,271.2,264.8,81.5,160.1,28.5,16.5,46.5,169.7,26.6,53.5,271,31.5,24.7,72.7,29.3,82.2,44.5,147.6,147.3,65,250.5,248.3,43.9,461.7,185.5,36.5,105.3,21.5,76.1,38.2,32.8,80.8,120,126.7,111,35,49.5,47.9,47.8,83.8,83.3,192.4,48.7,2.7,126.5,53.7,98.7,11.5,508.8,154.7,44.6,10,91.6,133.1,102,93.9,42.9,52.9,64.1,125.5,184,30,42.2,133.4,179.2,54.9,125.2,170.9,258.9,81.3,53.8,187.7,51.4,132.2,58.1,23.2,174.9,218.1,93.5,5.1,7.1,42,282.4,23.4,9.2,61.1,61,26.6,33.3,21,85.2,93,90.4,14.7,77.3,5,0.2,61.8,12.1,124.4,70.6,102.8,18.2,97.3,80.8,36.4,34.5,42.7,112.2,49.2,167.8,26.1,20.9,239.7,67.7,167.2,12.8,166.5,313.5,504.5,125.3,24.1,6.7,56.6,15.6,275.5,105.4,70.2,115.3,209.1,34,12.1,43.9,159,36.7,48.3,115.2,50.7,27.3,13,113.1,301.5,45.1,38.1,165.7,166.8,10.2,119.5,81.8,422.9,108.5,386.5,14.9,42,13.7,52,377.1,23.6,196,296.5,132.1,160.4,175.7,12.6,95.9,105.8,37.9,92.5,95.9,41.8,35.3,29.4,55.5,53.6,57.8,49.7,44.3,60.2,153.3,130.2,367.8,13.8,175,183.6,128.9,104.5,117.2,113.2,120.1,6.2,36.8,108.6,105.9,184.8,68.8,37.1,243.5,108.8,148.3,54.1,70.1,135.5,121.6,59.3,59.7,2.2,32.7,49.8,59.5,40.4,37,90.8,121.9,62.6,74.9,328.7,97,322.4,25.8,155.4,124.2,11.4,356.2,202,201.5,99.9,56.4,177.5,100.8,166.6,346,154.3,194.5,302.2,36.5,56.8,143.9,191.6,59.1,174.6,62,279.2,309.7,193.9,5.8,35.3,304,196.9,172.4,202.5,82.1,42.3,15.7,317.3,132.6,52.8,70.9,98.4,147,98.4,67.1,21.2,104.8,76.4,78.4,33.5,79.4,117.2,30.4,443.9,452.3,75.9,60.5,56.2,76,57.9,57.6,62.1,51.7,51.9,44.9,7.1,57,49.8,70.7,59.5,52.7,192.7,499.1,81.7,357.8,47.6,349.7,71.1,40.3,91.8,79.6,70.2,93.9,59.9,63.9,48.8,85.7,75.6,41.7,70.4,67.6,63.9,17.7,52.5,16.5,130.6,46.5,296.1,125.3,89.9,80,40.2,11.4,170.8,44.2,489.9,0.8,529.2,195.7,55.5,241.1,305.9,142.8,29.1,131.9,53.6,44,31.7,134.3,56.9,11.5,39,127,53.9,58.8,123.7,62.8,53.1,275.7,33.7,44.2,137.2,151.9,363.7,39.3,385,80.4,325.9,55.7,956.2,180,228.6,32.6,2112.9,30.5,890.6,50.8,21.6,30.3,730.7,192.9,27.5,181.1,45.9,190.4,226.8,498,190.1,75.7,56.2,44.3,263.2,129.5,6.5,40.1,62.6,78.4,219.9,59.5,17.9,41.1,81.2,74.2,277.4,241.7,91,133.1,194.8,125.3,125.2,93,93,94.2,93.8,118.4,40.7,77.3,240.5,185.6,186.2,152.7,46.5,177,35.3,107.4,16.1,31.6,32.5,91.5,46.6,710.8,151.3,145.5,145.8,143.1,111,106,167.9,167,229.1,59.9,1016.6,28.8,351.2,146.3,152.2,232.2,156.1,74.4,74.7,237.1,67.6,178.1,22.2,38.5,20.5,125.2,142.8,152.1,170.2,40.8,60.1,268.4,437.1,335.8,48.3,62.9,72,72.4,66.8,65.8,69.6,72,128.6,385.5,51.4,394.2,35.8,51.8,51.3,55.5,51.8,84.8,40.5,42.5,76.9,122,203.5,41.7,136,28.9,59.9,12.9,42.6,83,29.8,38.1,23.3,126.4,127.6,228.8,26,510.1,78.9,78.8,19.1,20.4,39.8,28.1,53.8,58.3,59.8,26.5,82,97.7,8.6,92.8,37.5,43.5,45,40.7,85.4,101.3,46.7,48,94.1,87.8,76.1,18.2,77.9,95.5,116.3,29.6,22,52.8,55.1,26.8,23.9,89.8,131,65.9,66.3,66.7,65.4,56.9,58.6,59,48.2,42.7,43.3,74.4,79.3,86.5,75.4,173.1,13.4,138.6,277.4,722.4,47.5,39.3,33.8,88.6,118.8,192.9,77.9,29.9,18.1,88.9,0.4,41,10.9,103.4,102.4,27,50,83.6,17.6,29.5,43.7,123.7,113.1,154.2,28.4,44.1,67.7,67,41.5,59.5,59.1,59,59.1,136.2,135.4,220.5,214.5,180,166.7,482,133.8,34.8,200.3,211.9,44.8,100.3,73.5,31.3,52.3,144.9,170.9,138.4,469.5,154.8,156.2,75.2,120.2,75.1,56.2,59.5,58.8,95.3,65.6,42.2,57.9,43.8,63.6,41.3,87.6,66.3,932.7,412.6,70.6,62.4,80,69.2,77.1,69.7,63.6,63.2,68.6,69.6,94.8,103.8,53,53.7,113.6,60.1,51.6,175.8,146.8,134.8,228.8,37.2,252,144,291.7,77,370.3,51.8,247.7,18.5,425.3,237.1,242.9,381.5,141.4,62.3,44.4,31.3,54.2,24.7,55.8,57.5,56.6,120.4,115,101.2,69.4,78.1,74.5,75,31.7,28.8,57.3,31.4,25.9,54.3,31.9,157.6,409.1,163.5,407.9,82.9,119.8,53,74.4,88,157.9,97.8,39.7,37.7,153.3,305,239.5,221.3,195.4,86.4,192.5,100.6,117.1,171.4,227.2,109.9,115.8,227.9,178.7,295.6,49.5,128.4,116.2,118.7,172.6,119,136.9,48.3,42.9,93.1,56.9,150.3,174.4,82.7,193.2,156,68.1,66,183.5,230.8,86.1,190.7,183.5,149.8,105.6,115.9,215.1,233.6,135.4,104.8,158.2,136.9,161.4,147,84.3,206.5,14.1,37.3,150.4,46.5,39.3,29.8,127.5,441.5,234.6,129.3,27.5,17.6,176.3,96.4,89.5,64.2,58.5,57.1,54.7,55,55,315.5,66,52.9,69.9,42.8,49.1,55.8,39.4,52.2,36.8,40.8,41.4,33.8,67.4,48.3,170.9,62.7,54.9,67.9,87.1,24.3,22.9,39.1,50.8,79.6,43.7,40.2,37.1,36.4,36.2,37.4,60,60.1,43,61.1,164,58.1,23.4,75.3,56.2,53.2,50.4,61.9,122.3,486,298.5,25.2,160.5,76.8,95.9,107.6,87.2,97.6,107.8,95,2.6,111.7,173.5,326.6,317.5,310.2,121.9,102.5,307.9,62.3,93.8,198.4,194,192.2,124.8,29.8,74.1,81,222.3,168.3,172.4,175.9,198,160.8,180.4,353.2,209.5,284.8,37.1,165.6,104.9,93.3,40.3,23.5,21.8,121.3,29.2,135.4,64.3,160.6,274.8,118.1,281.7,382,514.1,377,221.7,91.3,153.6,96.6,184.4,185.5,345.2,487.4,376.4,140.2,69.7,63.6,66.4,94.4,24.7,26.7,220.5,358.4,232.8,73.9,600.3,87.2,232.5,475.6,154.4,185.3,235.2,394.5,117.6,348.9,154.6,243.5,78.9,158.4,85,39.1,62.4,37,54.8,48.7,11.5,31,142.1,77.7,201,134.9,65.8,61.3,49.4,13.5,73.1,81.1,69.3,65.7,97.6,60.5,55.2,93.4,102.5,500.4,239.2,241.3,354.8,391.9,216,218.2,82.5,129.5,94.5,13.9,73.4,139.5,87.6,108.7,52,130.6,63.6,123,195.9,35.7,30.3,804,46,58.6,23.4,30.4,145.8,50.2,111.8,119,70.2,95.1,14,0.5,47.1,65.6,29.7,37.6,54.5,108.7,285.1,33.3,193.3,19.7,7.5,92.4,70.4,46.3,33.9,70,97.4,94.7,101.7,82.1,35.7,28.3,90.2,118,118.2,116.1,120.6,142.2,37,149.4,160.1,196.4,434.7,154.6,65.1,91.7,356.3,57.8,56.9,168.6,178.1,229.4,429.1,45.9,207.8,153.5,21.8,21.6,94.4,73.1,83.9,69.7,26.1,47.4,71.7,71.6,74.7,67.7,67.5,71.8,73.1,75.9,70.6,71.7,72.3,75.7,72.7,68.3,29.1,37.2,28.4,38.5,32.5,38,82.6,38.2,58.6,27.8,50.4,37.2,46.5,55.9,296.1,38.8,31.5,251.3,355.3,254.3,49.1,60.3,142,103.1,107,71.4,142.3,138.1,150,61.4,111.1,391.4,164,59.9,59.7,92.1,103.9,46.1,91.1,82.6,98.5,126.7,59.7,99.5,379,575.3,65.2,73.5,17.4,29.1,27.6,29.6,21.7,23.3,23.7,19.8,22.6,27,22,26.3,19.8,27.3,26.1,27.3,25.4,31.7,31,31.3,32.4,30.7,29.9,35.9,73.7,189.1,122.1,65.7,34.5,409.6,27.1,112.5,273.4,586.9,1267.4,154.9,91.6,136.5,141.4,100.2,14.7,45.9,45.8,24,52.3,69.8,60.4,76.6,87.4,108,215.8,258,191.2,121.6,158.7,345.6,208.7,134.8,95.3,31.9,117.9,0,49.6,52.8,23.4,33.3,51.2,62.3,41.2,32.8,67.4,52.9,111.6,91.6,184.7,123.3,90.9,151.1,16.6,140.7,82.2,86.3,54.4,70,70.2,47.9,78.2,40.5,36.5,61,43.4,8.7,62.3,43.7,24.8,8.3,61.5,68.8,138.7,18.5,37,60.7,51.5,55.5,70.6,60,52.7,55.9,72.4,181.8,228,147.3,190.9,34.1,209,422.2,74.6,61.1,45.7,10.9,43.3,101.8,43.9,33.3,33.3,33.2,33.3,33.2,33.3,33.3,33.2,33.3,31.5,31.6,31.6,31.6,31.5,27.9,29.2,25,25.1,20.7,25,21.6,33.2,43.7,35.4,99.3,40.9,52.2,165.3,228.2,170.7,125.4,340.5,44.1,54.4,208.2,36.1,35.5,37.1,34.6,36.9,100.9,63.8,158.9,46.2,342.8,177.8,55.8,269.1,117.5,52.7,35,37.4,35.6,34.3,37.2,35.4,34.9,35.7,39.7,34.4,35.4,34.8,37.9,37.6,41.5,63.7,93.7,62.1,40.1,203.4,163.5,152.3,27.8,250.4,70.3,313.1,113,67.1,92.1,74.7,75.7,68.2,70,63.6,61.7,96.6,113.6,71.2,80,59.6,70,78.4,399.2,197.9,183.4,177.7,730.8,56,60.2,51.6,53.6,66,19.5,40.4,54.6,59.3,50.2,183,143.9,68.9,57,34.3,29.9,28.4,14.9,23.7,59.4,42.5,37.1,32.1,78.5,53.1,43.4,503.4,65.4,214.5,35,31.5,39.6,26.4,26.3,14.8,52.3,28,24.8,14,65.2,42.5,90,85.6,75.2,286.8,57.3,72.3,9,46.5,36.5,35.1,35.1,38.3,35.9,37.7,35.4,36.4,39.3,33.3,28.7,29.6,33.1,33.3,34,45.7,558.5,85.8,303.7,35.2,55,38.2,37.2,33.4,35,34.5,33.2,37.2,35.9,39.5,40.2,36,36.7,36.7,23.7,16.3,5.9,39.2,40,35.9,39.2,47.2,47.7,105.6,146,181.3,35.2,181.3,377.4,302.2,54.1,9.1,65.1,38.2,28.2,27.5,31.8,35.1,35.3,37.3,36.8,38.4,34.8,29.4,23.4,29.1,32.9,23.9,31.3,74.9,49.4,27.5,15.3,2.2,55.2,29.6,14.4,32.2,55.2,57.5,7.2,112.2,346.9,39.2,53.4,15.7,22.3,44.6,33.4,24.7,25.2,35.4,45.9,28.8,34.9,22.7,21.8,34.1,33.5,35.5,18.3,18,19.8,16.6,24.3,27,25.4,23.1,18.8,26.5,67.8,99,126.2,96.1,56.2,50.9,8.9,17.6,50.1,50.8,37.1,33.5,48,36.6,30.3,23,30,18.2,17.6,118.6,54.9,58.3,55.9,55.2,61.8,55.2,62.3,52.7,91.7,50.9,25.4,224,331.5,334.9,333.5,286.1,255.8,40.3,366.3,266.3,104.9,350.9,50.3,379.9,75.4,180.2,122.4,57.1,209.2,37,160.7,88.6,133,88.8,433.4,572.7,132.2,106.2,101.6,448.6,26.7,280.1,154.8,11.1,139.5,16,210,155.5,163.7,59.1,33.3,26.2,121.1,215.5,78.1,56.8,36,21.6,13.8,17.2,12.7,10.4,13.2,12.2,12.9,12.2,13.6,12.1,13.2,15,14.7,16.4,4.8,12.2,36,19.8,53.8,25.7,25.1,36.3,19.3,21,22.4,21.4,14.5,16,22.6,29.2,16.5,15.4,10.4,16.1,11.3,11.7,12.5,11.6,11,10,13.4,10.9,10.8,8.4,9.5,13.2,15.9,13.8,115.7,16.3,22.7,24,22,15.1,16,14.1,15.7,14.3,20,42.6,42,29,31.2,21.3,25,34.3,228.3,104.1,18.8,101,24.8,28.7,33.8,35.2,67.8,57.6,76.4,72.6,28.7,45.2,42.1,45.8,27.9,34.2,59.9,32.7,29.8,15.2,22.8,31.6,43.3,32.7,25.8,25.4,2.5,9,16.7,39.8,21.1,19.6,31.6,56.4,13.5,5.1,4.5,11.3,11.9,4.2,41.6,37,37.9,100.8,19.9,12,3,13.1,57,4.3,30.9,8.4,9,8.6,4.8,154.5,34.6,10.4,4.8,9.7,30.6,10.1,3.5,86,30.2,57.9,21,4.5,13.7,12.9,12.6,3.4,8.6,24.8,7.9,51.1,6.2,9.6,57,2.5,8.8,9.3,2.9,84.8,31.9,13.7,5.1,20.5,34.1,20.5,33.4,7.3,20.5,20.1,2.9,3.4,12.7,15.2,17.2,4.5,8.7,21.1,20.1,5.5,10.2,51.8,29,38.1,7.5,32.9,8.4,3.8,23.7,12.6,7.1,21.3,31.6,15.7,35.4,18.7,31.1,40.9,13.4,7.8,20.8,41.3,43.2,8.1,4.6,8.2,8.5,8.6,4.5,12.2,61.8,8.9,41.2,16.5,9.5,9.4,10.5,21.1,24.4,16.3,42.5,22.7,18.8,18.2,17.5,11.1,18.8,4.4,6,11.1,0.2,4,4.8,3.9,4.5,7.4,7,8.7,7.8,8.3,7.9,6.4,6.2,4.8,7.3,6.5,7.6,7.2,7.2,7,6.6,7.8,8.4,6.4,6,7.8,7.3,7.6,9,7,8.9,12.1,10.6,9.2,3.9,6,6.6,8.3,14.2,4.4,7.1,10.2,0.4,3.3,4.2,5.5,5.2,194.4,8.4,11.5,8.8,20.1,6.5,91.7,87.6,10.5,3.3,4.2,11.3,21.1,52.7,2.6,10.3,4.1,4.7,3.4,3.1,6,2.5,9.7,17.8,137.4,35.2,47.4,4.6,4.6,3,8.1,3.8,4.4,2.2,22.9,9,15.3,71.9,4.2,7.8,10.3,8.5,6.1,2.4,39.2,210.1,29.1,9.1,152.7,104.2,72.1,53.7,16.9,4.4,5.6,6,7.8,7.9,8.1,8.7,17.6,9.1,9.2,9.2,9.2,4.5,4.6,9.2,9.6,9.5,11.4,4.6,3.1,9.6,5.6,5.7,5.6,5.6,5.6,5.7,5.6,5.7,22.3,13.9,8.9,11.5,2.1,5,182.1,172.9,147.2,38.4,38,2.7,262.7,133.8,163.5,5.1,38.9,22.6,4.6,3.9,1.1,13.2,11.3,4.4,3,78.5,49.9,302.9,5.7,5.2,1.9,3.9,7.6,1.5,5.8,4.7,1.9,4.7,6.1,7.6,12.4,8.1,4.6,5.1,4.4,4.2,5.9,5.9,16.1,75,14.4,7.7,4.7,7.1,4.5,12.7,46.1,24.5,15.9,20.8,8.2,10.1,4.4,4.4,24.7,3.8,2.8,11.8,45.9,11.8,2.3,1.2,13.2,12.7,2.7,1,26.7,12.6,56.4,7.4,4.8,64.7,0.7,3.9,4.2,7.6,2,72.5,5.6,8.4,1.9,15.7,12.3,3.3,90.9,35.1,43.6,6.6,3.3,8,12.5,3.7,10.8,92.2,1.9,7.1,12.3,1.8,22.9,66.3,2.4,28.2,28.6,52.7,17.5,8.9,17.5,36.3,37.2,97.6,100.6,93.5],"duration":[11.198,9.481,1.144,6.195,17.219,1.132,0.675,0.72,0.693,0.842,1.65,2.699,4.985,3.877,9.138,2.515,2.511,2.231,1.577,0.958,0.819,0.437,0.913,0.717,1.903,9.402,2.177,2.65,2.351,1.29,1.047,10.902,19.207,20.393,15.008,11.194,3.658,3.85,1.698,0.96,0.871,1.315,0.55,2.101,2.914,0.237,5.523,1.44,1.936,0.57,0.201,0.259,1.575,5.267,2.627,7.762,20.042,14.479,3.723,0.236,8.663,2.347,8.781,7.596,9,7.129,13.699,11.238,9.223,1.765,1.811,1.07,1.08,2.132,11.535,1.898,11.704,7.325,7.829,0.42,12.78,0.599,1.807,1.687,3.545,9.422,6.115,14.016,3.876,1.821,1.97,1.627,1.631,2.201,2.399,1.822,1.346,1.798,1.111,1.19,1.377,0.943,1.604,1.096,0.889,1.021,0.869,1.974,0.816,0.79,2.547,1.919,1.701,1.772,1.824,0.969,0.657,1.647,5.589,5.99,2.546,2.332,1.649,2.014,1.678,2.256,1.321,1.807,1.283,1.657,3.24,3.411,6.227,5.56,11.137,2.848,2.081,0.698,5.321,0.632,0.257,2.271,2.131,2.176,0.703,0.611,1.33,1.744,0.843,1.475,0.721,0.751,0.573,0.663,0.747,0.634,0.698,1.027,0.734,1.284,1.213,0.851,0.942,1.406,1.653,4.152,5.181,1.426,0.632,0.945,0.671,0.763,0.806,0.955,0.708,0.424,0.365,0.346,0.308,0.834,5.704,1.639,1.515,2.833,1.244,0.509,0.941,0.846,0.844,0.667,0.809,0.683,0.65,0.669,0.66,1.16,5.727,7.282,2.278,0.995,0.188,1.997,2.544,2.442,6.191,4.504,2.344,2.338,1.426,1.753,4.025,1.144,0.994,1.546,1.001,1.592,0.045,1.309,1.164,1.693,1.276,1.464,1.409,1.955,1.733,0.157,2.257,1.179,2.059,1.811,1.332,1.254,1.917,1.674,0.845,0.537,1.997,1.227,0.759,0.514,1.28,0.693,1.004,1.587,3.065,1.921,2.438,2.415,1.717,1.081,1.063,1.769,0.709,1.986,0.885,0.289,0.39,3.514,14.336,1.522,1.665,1.693,2.642,3.74,1.182,0.05,2.056,3.836,3.997,0.764,0.527,1.214,7.916,5.332,6.615,2.043,0.037,0.536,2.196,3.5,1.768,1.456,0.86,6.922,1.819,2.153,2.053,9.271,2.557,0.352,1.541,6.373,0.048,0.635,2.395,1.28,4.488,5.025,2.094,1.802,1.237,4.734,6.238,0.23,1.228,0.256,10.906,3.721,0.575,0.014,3.233,7.954,5.02,0.543,8.827,2.081,4.946,1.102,0.972,8.393,9.512,1.611,0.68,0.914,3.717,1.741,4.86,9.456,3.727,1.64,10.143,5.114,6.885,1.55,3.806,4.163,4.673,4.444,2.192,2.262,2.017,1.236,2.579,3.276,2.249,3.112,2.119,2.368,2.502,0.726,1.188,1.325,1.516,2.683,1.33,1.717,1.08,0.83,1.569,5.609,4.691,7.48,1.837,8.682,6.795,1.222,5.018,4.311,3.713,6.089,5.815,3.629,3.083,2.27,0.829,4.373,2.546,4.85,5.796,6.068,6.691,2.45,2.464,9.136,6.611,2.75,2.454,4.094,1.435,0.095,5.539,4.989,0.101,5.306,3.387,4.574,5.351,5.218,4.271,1.283,1.747,8.353,1.057,2.201,6.517,10.08,8.964,3.375,9.602,14.162,0.444,2.761,2.034,11.468,7.571,8.907,1.373,5.567,2.569,0.415,1.21,5.856,0.119,1.413,20.273,1.7,0.284,8.664,1.013,0.823,1.029,5.554,62.515,4.609,4.061,3.405,4.649,4.228,3.375,3.743,2.966,3.866,15.518,38.264,4.395,6.751,3.722,2.621,4.584,4.616,0.693,0.775,1.136,0.72,1.296,3.038,2.044,2.69,1.819,1.717,3.355,3.215,3.772,3.527,1.915,7.65,2.117,2.328,1.455,2.84,1.455,1.551,3.61,1.998,2.112,2.07,2.017,4.408,2.359,2.123,25.791,18.144,9.344,4.966,2.574,6.127,16.337,5.644,1.445,2.759,5.885,7.295,1.895,6.589,0.336,18.902,10.915,1.176,2.329,4.866,4.9,4.872,4.738,5.589,4.495,17.402,3.372,2.639,2.492,2.432,3.061,2.537,2.427,0,2.338,1.42,3.624,2.024,6.377,14.124,3.108,4.99,13.745,2.84,1.629,1.673,1.449,1.192,1.651,3.101,5.126,2.228,1.703,3.133,2.806,2.28,2.799,3.641,23.826,4.066,6.965,7.051,2.517,2.647,4.549,2.285,1.268,1.3,1.158,1.169,2.354,1.341,1.402,1.423,1.366,2.479,2.871,3.254,2.967,2.494,2.025,1.904,2.539,3.224,4.578,4.47,2.174,1.577,2.459,7.593,1.483,0.239,4.312,2.63,2.616,2.713,2.842,1.415,3.085,1.417,1.724,1.145,1.317,2.519,1.971,1.466,5.619,4.836,1.744,1.685,1.642,2.13,1.633,1.849,1.366,1.247,1.073,1.972,1.371,1.967,1.782,1.936,2.38,2.57,2.397,2.92,2.025,10.381,9.961,0.804,3.812,0.735,2.261,1.883,1.955,1.859,1.92,1.211,1.915,1.836,2.613,1.339,1.78,1.388,1.297,2.419,3.263,7.623,8.871,15.936,2.568,2.373,2.385,1.908,5.216,2.433,2.051,8.325,1.591,0.232,4.556,0.404,2.556,2.732,1.924,1.898,2.63,1.45,2.135,1.642,2.746,0.873,0.621,1.255,1.605,1.578,1.426,9.435,6.768,2.57,3.235,2.131,1.764,2.438,1.99,1.281,1.21,1.275,6.425,4.048,0.992,0.686,1.777,2.552,0.099,5.659,0.302,1.488,0.584,1.592,2.727,1.827,1.188,0.726,1.104,1.236,1.239,1.832,1.451,1.406,0.761,0.759,1.086,1.302,0.849,0.574,0.607,1.302,0.903,0.876,1.237,1.45,1.041,1.28,1.283,0.908,0.69,5.078,2.126,2.812,0.554,4.8,2.274,3.292,2.926,0.319,0.346,0.32,2.291,2.85,2.898,2.658,4.21,5.302,8.338,2.819,0.825,17.344,1.211,12.023,0.909,2.581,4.912,4.313,4.291,2.294,7.694,6.028,5.87,0.909,2.856,3.203,2.465,3.008,5.118,4.258,1.314,0.416,0.755,6.937,4.91,2.384,0.655,0.717,1.119,3.139,1.215,2.526,1.779,1.929,3.538,0.692,7.422,2.63,2.91,2.601,2.211,2.268,2.215,2.674,2.839,2.615,2.576,2.728,2.766,3.135,1.613,1.644,1.108,0.485,1.148,1.287,1.672,5.825,3.483,3.96,1.994,4.078,1.28,6.155,29.351,0.671,7.235,0.626,2.414,3.665,1.096,0.322,1.049,1.853,5.469,2.806,2.9,2.914,1.073,3.143,5.58,2.229,1.973,1.059,12.849,21.841,5.67,4.312,6.238,4.351,3.745,6.214,1.22,3.057,4.37,4.951,15.888,4.535,1.427,4.55,0.15,1.075,15.438,1.774,0.407,3.726,7.071,0.233,21.12,3.941,2.849,4.005,4.997,2.616,4.446,3.638,14.429,16.261,0.245,2.846,0.309,4.011,1.092,4.216,2.323,1.159,1.624,0.235,3.955,2.013,1.857,2.314,1.433,14.926,12.115,4.52,3.43,5.926,3.312,3.376,3.787,1.653,15.575,4.261,33.012,5.4,12.6,32.616,1.44,0.802,2.149,2.053,2.556,2.114,1.309,0.538,5.315,2.77,2.197,1.861,1.815,3.393,2.679,0.364,2.069,4.34,5.017,6.145,0.113,1.012,0.225,9.692,14.514,13.238,3.525,1.875,3.262,6.601,3.695,2.25,1.507,0.994,4.064,2.377,6.121,2.9,7.384,1.616,12.931,0.198,0.47,3.724,3.442,3.747,3.585,3.588,3.918,8.632,17.844,8.544,20.253,2.486,2.534,4.594,4.298,0.069,19.072,2.908,2.474,2.637,2.103,1.958,0.676,3.521,2.581,1.763,4.693,1.491,4.261,6.583,5.307,9.965,2.574,1.367,1.957,1.951,2.067,2.526,1.976,2.05,3.236,2.635,1.817,2.146,2.088,2.712,1.916,2.037,4.48,1.692,6.924,3.954,2.917,3.636,6.931,1.727,0.097,4.917,2.448,9.406,8.505,3.379,2.543,3.354,4.212,3.437,0.882,3.409,5.182,3.92,3.217,5.891,9.043,7.375,24.877,17.13,0.927,11.061,2.543,3.681,3.167,3.13,1.771,1.864,1.655,1.604,8.684,2.065,2.116,1.541,1.631,2.196,1.878,3.371,4.736,0.979,3.667,6.5,1.692,3.921,11.067,4.054,6.373,1.121,4.726,3.406,1.814,5.48,5.651,3.09,1.857,3.465,3.268,2.499,3.702,2.424,8.473,21.425,2.16,4.044,3.994,3.032,3.076,3.098,11.634,4.91,2.823,0.272,3.127,3.071,4.878,2.783,2.871,0.526,1.368,2.358,1.829,3.878,3.012,1.414,1.196,0.489,0.699,6.082,11.032,5.26,5.925,9.684,8.014,3.816,1.951,3.339,14.009,3.2,3.274,1.861,1.901,3.304,6.799,2.572,2.915,3.381,1.407,1.709,6.092,3.572,0.936,0.724,1.365,1.918,2.047,1.777,1.256,1.28,3.63,3.866,2.779,2.824,2.176,2.14,2.652,2.027,0.073,2.346,0.741,1.376,0.518,0.97,4.362,1.073,1.611,2.339,3.318,1.461,2.093,2.795,2.198,6.989,3.759,1.678,2.127,3.052,3.187,2.604,1.944,1.782,0.743,7.858,22.716,9.571,3.827,3.166,1.364,0.958,4.032,2.103,2.928,2.118,1.404,0.035,1.581,1.707,1.277,1.573,1.024,1.498,1.929,1.405,1.86,1.96,3.462,1.492,3.414,1.915,2.331,1.075,1.05,2.431,1.391,0.891,2.719,2.15,1.16,1.877,2.024,2.796,2.614,4.172,0.214,2.328,3.133,3.192,5.787,0.694,1.126,0.816,1.344,2.905,2.587,2.164,2.554,2.673,2.112,3.427,2.984,3.739,3.359,3.25,1.217,2.01,2.647,3.934,4.465,4.43,0.764,2.76,1.354,1.491,2.05,0.241,1.803,5.727,2.432,0.227,2.085,2.525,2.168,2.229,2.423,2.525,2.163,1.924,1.445,0.898,1.179,1.298,1.288,1.458,2.215,5.305,5.858,2.658,1.857,1.988,1.82,1.978,1.758,1.977,1.391,1.571,1.156,1.253,1.209,2.052,1.758,1.519,1.502,1.646,2.026,3.476,7.25,4.219,3.43,3.455,1.495,0.869,1.631,1.336,1.549,1.794,1.219,1.629,1.633,1.559,1.709,1.195,2.026,1.906,1.526,1.459,1.766,1.88,1.74,1.426,1.17,1.344,1.346,1.78,1.446,1.196,1.939,9.097,3.476,2.265,1.735,1.642,2.399,2.109,1.838,2.04,6.459,2.823,3.43,2.859,1.156,0.837,1.469,2.811,1.244,1.529,1.211,2.208,2.879,1.305,2.245,3.464,2.691,2.626,5.28,0.873,2.036,3.884,4.103,3.655,1.854,1.654,1.648,1.524,2.478,3.238,2.16,2.427,4.081,2.413,1.455,4.873,4.164,6.371,3.714,1.661,1.944,1.619,1.414,1.851,1.76,1.598,1.985,2.587,13.82,5.876,1.411,2.391,3.413,2.038,2.785,1.498,2.685,2.87,2.297,2.754,8.293,2.135,14.614,1.605,12.111,12.391,13.115,15.253,4.781,3.759,3.858,2.943,3.462,5.462,2.299,7.13,5.138,7.05,3.952,3.051,4.687,4.64,8.856,22.568,1.041,28.103,8.554,16.555,11.03,1.652,1.406,3.427,3.238,5.738,7.223,6.195,5.693,6.197,17.902,9.026,2.013,2.023,2.428,0.797,0.883,1.532,4.777,1.584,4.877,6.498,4.86,0.882,0.82,10.072,4.199,4.816,3.59,2.905,11.398,12.804,6.023,12.76,1.482,13.841,0.833,15.09,0.216,8.957,8.935,9.495,7.622,6.019,4.402,16.202,12.059,2.954,1.997,4.382,6.514,4.745,3.194,2.308,2.469,5.343,5.052,2.475,0.812,5.374,10.263,1.826,3.138,0.82,8.88,5.21,6.995,4.628,8.148,14.815,1.142,5.931,18.787,11.452,0.951,14.78,18.703,1.818,0.769,2.501,3.51,3.744,2.222,3.877,1.904,11.808,6.384,0.177,0.951,5.314,1.241,29.068,10.81,10.578,7.07,7.506,0.815,20.656,1.817,1.412,4.439,3.763,1.968,2.772,5.982,4.614,0.917,8.188,1.108,16.324,5.591,0.926,16.58,8.231,0.02,18.141,4.852,5.354,5.912,3.79,2.904,3.207,12.78,23.839,7.877,8.303,11.48,0.756,8.84,32.42,21.17,3.938,0.321,5.355,4.497,7.706,4.324,3.924,11.192,4.768,8.812,7.806,1.497,11.628,4.979,24.713,3.752,1.799,3.569,1.756,0.166,2.127,8.055,0.363,6.15,0.739,1.274,1.7,0.377,4.71,5.72,2.8,4.119,2.481,0.868,1.058,4.601,3.913,3.475,2.617,3.712,10.603,1.025,1.166,1.685,1.35,1.013,7.987,0.845,3.813,6.869,5.507,25.903,20.255,2.336,2.346,3.029,1.464,2.114,2.387,2.429,5.536,0.977,1.834,2.146,1.039,3.594,1.287,2.43,2.685,1.428,3.343,0.516,1.698,0.781,3.211,1.102,0.848,0.069,0.24,1.759,2.634,0.572,1.06,0.376,2.012,2.538,2.671,14.847,4.973,5.604,5.715,3.191,0.871,1.134,1.004,2.188,1.204,3.252,3.51,1.942,2.057,2.854,3.669,2.188,2.784,1.94,2.52,4.258,1.128,3.266,3.712,9.32,11.225,13.241,10.573,8.296,13.447,6.846,7.45,3.939,3.505,15.429,1.409,6.198,0.966,9.985,11.705,34.613,1.649,6.585,5.532,9.834,5.671,11.107,9.421,10.598,11.778,3.06,4.101,7.622,3.009,2.688,6.912,2.421,3.018,2.08,3.361,2.447,4.29,2.434,3.011,3.054,3.85,3.924,6.389,6.896,0.24,7.306,4.282,2.535,1.506,2.351,1.398,1.581,2.2,0.057,5.81,4.282,3.144,0.54,4.465,2.306,3.6,11.097,2.848,0.379,4.765,7.239,6.142,10.196,2.568,8.185,7.764,11.936,2.576,9.267,12.692,11.347,2.626,3.909,3.326,4.649,4.649,1.897,2.242,3.658,3.985,5.152,17.892,4.935,4.151,14.182,10.088,2.787,0.312,1.073,2.539,1.87,4.329,3.076,1.841,6.024,5.493,3.819,11.767,7.178,5.922,5.204,4.386,6.045,4.401,28.938,17.969,15.18,6.514,16.499,2.833,2.852,7.615,1.097,4.781,7.517,4.877,4.906,2.883,3.734,0.978,1.516,2.272,0.909,1.508,2.5,2.529,2.832,0.811,1.315,1.571,3.464,0.754,8.249,10.985,6.191,6.519,6.498,6.087,3.896,2.561,1.814,1.934,2.586,1.993,1.738,1.452,1.914,1.635,1.884,1.871,2.413,2.15,3.299,1.795,2.261,2.037,2.262,1.187,1.139,2.317,1.731,1.995,1.651,1.74,2.217,2.353,2.247,1.485,0.963,1.857,2.489,2.681,1.5,1.783,1.599,2.489,2.777,2.562,2.593,2.435,3.544,2.175,1.764,1.506,1.612,2.863,3.035,3.396,4.222,3.194,3.371,0.686,0.034,12.223,3.83,3.808,2.858,3.002,0.404,0.034,1.584,1.713,2.19,1.828,0.076,2.351,1.948,2.348,2.288,2.415,1.922,2.351,2.761,3.798,4.801,5.328,3.237,0.579,3.971,3.767,3.463,0.138,2.949,3.286,2.991,3.291,7.778,2.926,5.912,5.439,0.915,2.626,2.181,1.593,0.657,1.871,1.206,1.329,0.746,1.081,1.181,0.499,1.869,7.746,0.069,3.403,1.137,8.32,6.833,1.215,3.455,3.742,4.623,0.976,1.556,1.072,1.335,2.764,3.936,0.116,5.7,1.22,1.471,1.91,2.255,1.902,3.635,2.255,1.483,1.563,1.215,1.35,1.695,1.539,1.626,1.173,2.171,1.973,1.047,1.783,1.531,1.68,1.342,1.587,1.138,1.265,0.849,1.377,1.662,1.721,2.152,1.881,1.782,1.614,1.604,2.52,2.213,2.613,2.004,2.148,1.655,2.233,1.771,1.524,1.037,1.003,1.766,1.692,1.766,2.024,1.891,3.428,1.814,1.353,5.164,6.111,5.747,5.277,5.305,3.7,1.45,4.383,2.537,2.99,1.914,0.876,1.142,1.447,2.052,1.618,2.459,2.424,0.931,3.534,1.823,1.709,2.865,1.484,4.019,10.386,1.424,2.903,0.849,12.277,12.881,2.403,1.815,4.365,12.143,8.45,1.649,4.92,2.777,3.489,4.61,4.742,4.119,3.416,2.693,3.311,2.411,2.436,1.341,1.785,2.613,1.856,1.368,1.955,1.812,2.265,0.771,2.848,0.357,2.618,2.435,2.258,1.507,5.817,2.11,8.009,9.185,4.299,12.514,2.309,3.779,2.757,2.046,2.043,2.902,1.385,2.914,2.953,2.606,2.869,3.187,3.37,11.333,4.937,0.444,16.255,4.979,2.474,2.752,2.58,2.953,1.177,1.902,2.907,1.294,1.164,2.196,1.303,1.874,2.012,0.671,1.983,3.24,6.393,0.836,1.989,1.901,0.791,1.117,2.329,1.367,1.603,1.595,2.04,1.445,1.91,2.266,1.257,3.695,2.349,2.125,7.2,7.474,5.227,1.067,4.203,2.836,2.037,2.965,3.196,2.053,0.613,0.446,0.632,0.945,0.431,0.607,1.305,6.177,5.588,3.197,1.208,3.54,2.727,2.739,3.94,2.099,1.722,1.832,1.877,1.652,1.679,1.077,2.265,2.791,2.634,2.015,2.27,2.516,1.574,2.086,2.117,3.904,2.839,2.244,3.319,3.855,1.518,1.56,2.235,2.488,2.726,2.462,6.451,2.7,2.4,1.791,2.58,1.261,1.142,1.075,1.587,0.962,0.751,2.27,1.93,1.86,2.331,2.27,1.164,1.37,1.166,1.439,1.288,1.923,0.163,0.644,3.501,2.559,1.663,1.812,1.706,2.354,1.468,1.887,2.803,3.155,2.292,4.954,0.136,0.721,2.294,2.2,0.539,1.592,1.467,1.632,2.06,1.59,2.034,2.116,2.037,1.692,0.882,1.037,1.589,1.986,1.486,2.081,1.39,1.261,1.448,1.537,1.361,1.352,2.137,1.21,1.087,1.931,1.44,4.91,4.934,3.006,1.692,1.439,2.521,1.356,1.22,1.49,1.467,2.52,2.277,2.418,0.872,1.74,3.074,4.039,1.447,1.8,1.421,1.158,4.651,2.449,2.162,1.798,2.208,3.361,1.584,1.41,1.531,1.445,1.67,1.373,1.457,1.495,3.959,1.485,2.615,2.512,2.677,1.312,1.08,1.913,3.098,0.815,3.167,1.432,0.76,2.012,2.452,1.304,1.084,3.678,7.972,1.283,2.139,3.944,2.486,3.621,0.192,5.67,2.726,2.761,2.259,3.624,2.887,2.5,2.668,2.716,2.378,1.527,0.992,3.955,2.74,7.062,3.575,3.579,2.969,2.498,3.203,2.344,2.631,2.615,2.41,2.456,2.778,1.72,1.235,3.184,5.471,5.861,1.622,3.936,5.97,3.066,2.378,1.972,2.029,2.114,2.385,1.901,1.435,2.612,2.332,3.049,2.34,2.666,1.831,3.32,2.438,2.712,2.505,1.625,1.706,1.764,1.534,1.061,3.429,3.292,2.169,1.834,1.962,1.791,2.078,2.114,2.094,2.029,1.843,2.5,2.728,1.601,1.694,6.463,3.898,1.743,1.924,1.095,1.247,1.005,1.238,1.256,1.048,1.39,1.279,2.218,1.823,1.98,2.135,1.914,2.299,2.327,2.339,2.258,2.199,2.783,2.133,3.143,1.587,2.829,3.964,2.627,4.53,1.681,5.378,2.798,1.65,1.46,5.011,3.286,2.177,1.305,1.75,2.476,1.378,1.428,2.164,1.253,0.937,0.24,1.127,2.752,2.204,2.163,1.441,1.304,2.352,2.014,1.524,0.267,1.251,1.251,1.487,1.117,1.7,1.795,1.762,2.66,2.37,2.349,2.533,2.743,8.713,5.074,2.211,0.012,2.492,3.306,1.189,2.283,2.288,4.241,0.429,2.134,0.869,2.317,0.976,1.332,2.58,2.879,3.6,2.283,2.837,3.961,2.178,2.434,1.343,2.834,3.374,0.576,2.923,3.124,3.071,1.811,3.711,1.668,3.464,3.259,3.413,3.551,1.552,3.599,5.327,3.441,2.816,1.959,1.237,1.117,0.795,0.807,1.113,1.394,2.321,2.275,1.429,1.621,1.067,0.688,1.336,1.254,2.009,1.06,2.437,1.095,2.184,2.493,2.496,0.89,2.866,3.599,3.572,2.258,3.359,1.345,0.751,2.174,2.659,0.899,1.637,0.862,1.794,0.459,1.21,4.482,0.59,3.424,2.072,4.515,3.415,4.277,0.687,3.757,2.424,2.195,1.076,0.954,1.759,1.96,0.018,1.468,0.537,0.648,1.839,2.426,1.78,1.464,2.057,3.308,3.497,3.918,0.52,0.981,1.96,6.054,2.383,2.113,1.611,2.479,2.519,0.803,3.039,2.396,3.96,2.064,3.052,1.368,2.946,4.693,1.84,0.307,2.206,2.043,9.132,9.454,1.732,4.645,1.578,2.681,4.584,1.756,1.906,2.063,5.589,3.973,1.109,2.745,5.015,3.765,4.112,1.652,0.987,3.885,1.76,1.907,3.785,1.482,2.426,2.88,1.161,1.759,1.608,3.866,3.454,4.16,4.145,1.766,0.793,1.439,3.009,3.289,4.676,4.391,2.6,2.493,2.436,1.835,2.107,1.585,1.469,1.327,2.779,2.628,2.449,2.896,2.618,2.025,4.64,0.664,3.596,2.103,1.13,1.279,2.62,1.701,2.309,2.806,2.004,1.935,1.927,1.731,1.424,0.415,2.338,3.569,5.945,1.783,1.836,2.481,0.786,1.712,8.716,3.141,0.71,1.228,3.11,0.857,6.567,3.857,3.151,2.825,1.38,1.418,1.463,0.432,0.254,0.606,1.312,1.071,1.536,1.979,2.094,2.123,5.751,4.746,2.11,0.999,5.35,3.176,3.181,2.441,6.188,1.887,3.364,4.261,1.43,1.527,0.985,1.85,2.143,2.996,2.412,2.345,2.772,0.867,0.878,1.865,3.861,2.319,2.318,2.322,2.316,3.453,1.679,0.737,4.375,3.38,3.465,3.36,2.742,2.338,3.816,2.631,3.71,3.56,1.699,2.559,3.164,3.734,3.405,2.523,2.443,3.191,0.394,1.883,3.112,1.275,1.207,2.502,4.852,1.113,1.554,2.01,1.47,1.396,2.243,1.46,2.46,1.019,1.096,2.127,1.488,2.051,1.659,1.396,0.11,1.918,1.785,1.665,2.117,1.547,1.427,2.867,3.088,3.232,1.264,2.345,3.994,1.694,1.726,1.539,1.818,1.503,1.657,1.697,1.384,1.309,1.582,1.985,2.784,1.408,1.179,2.293,3.747,1.727,1.601,1.904,2.474,2.179,0.279,0.314,1.453,2.369,3.246,4.391,3.377,2.827,4.569,2.284,2.356,1.983,2.04,2.345,2.357,4.877,4.234,3.269,0.728,3.835,1.657,2.274,2.017,4.546,1.296,1.341,6.648,0.081,6.852,3.429,2.372,4.097,4.064,4.457,3.606,1.091,3.779,1.281,2.304,10.509,5.779,2.599,2.538,2.516,2.353,3.066,3.596,1.209,2.795,3.324,7.341,1.25,2.804,2.49,2.499,1.862,2.268,2.134,2.326,1.971,0.673,1.117,2.091,2.381,1.962,7.131,0.951,0.878,2.71,3.374,2.674,3.125,2.196,0.572,2.882,1.868,0.819,2.139,1.055,2.565,3.396,2.47,1.592,1.014,1.089,0.473,1.774,2.889,3.514,3.266,2.905,2.896,1.379,1.913,2.693,2.225,4.293,4.403,1.53,3.102,3.853,9.681,16.804,6.416,2.029,1.881,2.522,2.512,1.346,1.63,2.587,2.478,1.312,1.707,1.046,1.559,2.552,1.793,1.571,1.043,0.781,1.36,1.466,1.374,2.047,1.258,1.475,1.668,1.722,2.456,3.27,3.544,1.504,0.959,2.443,2.743,3.198,1.187,2.218,1.414,1.088,1.677,1.424,1.403,1.537,2.392,2.03,1.657,1.623,2.512,3.022,2.877,6.487,1.053,3.264,3.68,2.522,1.875,3.592,2.201,1.918,2.97,2.196,0.213,1.908,1.64,2.111,0.912,1.688,2.339,0.993,1.033,0.965,2.608,2.849,1.811,1.724,6.643,1.45,4.441,1.283,3.029,0.875,0.772,1.823,1.454,1.421,0.384,0.436,1.39,0.664,1.19,1.325,1.925,1.902,1.478,1.352,1.752,1.338,3,1.416,1.179,1.757,1.143,1.067,1.152,1.309,1.968,2.569,2.162,1.615,2.481,1.833,1.868,1.976,1.85,3.488,3.638,0.253,1.212,3.523,2.684,4.52,4.279,2.259,2.294,2.59,3.353,4.231,4.164,2.566,4.529,4.267,4.387,1.349,2.263,0.705,0.834,0.682,1.723,0.926,4.125,2.909,3.496,1.728,0.805,0.966,3.744,3.796,2.038,3.894,2.197,1.448,3.729,3.37,3.912,3.629,3.97,2.517,2.355,1.727,3.252,0.231,0.958,1.665,0.345,1.788,1.812,0.282,0.773,0.74,0.233,7.663,3.613,2.234,0.651,3.919,3.572,1.416,1.997,2.08,1.812,1.496,3.533,3.744,2.556,0.558,3.381,1.025,2.2,3.583,2.782,3.795,2.969,0.896,2.384,3.569,2.108,1.405,3.155,2.613,4.138,2.033,3.723,1.808,2.975,2.822,2.652,3.023,1.362,1.028,2.546,2.444,1.832,1.562,2.913,0.444,2.639,0.004,2.636,1.251,1.32,1.742,2.568,2.439,3.039,0.607,1.856,2.992,2.9,1.579,2.822,1.346,2.559,3.515,3.655,3.494,4.81,0.335,1.069,3.168,1.077,0.461,0.407,1.116,1.96,3.27,2.891,1.105,2.143,2.981,3.144,2.908,3.473,3.56,3.344,2.606,1.257,3.963,3.689,1.64,2,3.368,0.649,0.549,0.971,3.322,3.717,2.615,1.007,3.588,3.407,2.769,3.663,2.799,0.781,2.178,1.445,2.556,3.661,3.616,2.19,1.558,2.195,1.267,2.498,3.581,3.687,1.918,1.715,3.688,3.501,3.765,3.171,3.037,3.877,4.003,1.087,1.621,2.51,2.733,3.276,1.468,1.615,1.732,1.574,1.91,1.569,1.491,2.756,0.422,1.399,2.151,1.571,2.643,1.833,1.998,0.989,1.445,0.988,1.644,2.19,4.313,9.14,6.447,8.333,1.597,4.57,1.182,10.941,0.906,1.541,6.566,7.294,7.106,0.951,4.834,3.138,1.291,10.407,0.617,2.061,1.368,0.754,1.454,2.077,4.355,6.193,1.825,3.029,2.528,2.948,1.553,2.196,2.182,2.641,2.022,1.207,1.001,3.411,3.163,5.853,2.612,1.03,0.151,5.875,0.926,5.907,3.986,4.912,2.341,5.793,1.357,1.393,2.041,1.226,0.759,0.447,1.205,1.169,1.198,1.162,1.191,1.145,1.095,2.453,3.541,1.946,1.33,2.839,1.865,1.188,2.388,1.563,1.495,1.589,1.36,1.541,1.552,1.428,1.212,1.982,2.713,2.356,3.831,1.488,3.591,1.774,1.643,1.589,1.491,2.083,1.802,2.04,2.19,1.032,1.632,1.749,1.467,2.026,1.592,1.552,1.541,1.546,1.385,1.151,1.555,2.313,1.959,2.059,1.492,1.086,2.384,6.904,3.921,0.265,5.022,1.617,0.528,1.879,1.849,0.697,1.533,2.1,2.907,2.105,2.584,0.434,2.237,0.657,0.02,1.427,2.31,1.222,1.925,1.817,1.692,1.813,1.44,1.37,1.533,1.701,2.726,1.771,1.305,1.911,1.603,0.622,0.06,3.584,1.848,4.169,3.773,3.098,0.985,2.008,1.39,1.76,1.456,1.418,0.968,2.084,1.462,1.517,3.281,2.768,1.635,1.556,0.847,1.089,2.273,2.03,2.492,1.169,1.885,1.271,1.543,1.704,2.291,1.899,2.224,1.704,1.219,1.354,1.279,1.137,1.806,1.311,1.276,1.298,1.269,2.163,1.296,1.079,1.869,3.668,10.264,1.336,1.43,1.038,1.167,1.124,0.895,1.102,1.214,1.291,0.017,1.282,1.699,2.176,1.244,1.044,1.111,1.207,0.842,0.871,1.604,1.248,1.11,2.584,1.288,1.204,0.837,1.407,1.24,1.804,1.881,1.645,0.223,0.082,0.568,0.937,1.375,1.087,0.814,1.055,0.932,0.82,1.545,1.626,1.776,1.221,1.785,1.806,1.252,1.223,1.934,1.633,1.657,0.013,1.604,1.557,2.061,2.194,0.477,2.103,1.271,0.134,0.854,1.824,1.569,1.009,1.03,1.048,1.105,1.145,1.161,2.818,2.583,9.308,2.363,0.889,3.263,1.874,2.041,2.521,0.883,1.106,1.854,2.542,1.669,5.27,1.924,5.227,1.517,1.187,3.24,4.076,3.515,1.045,0.727,4.542,1.523,2.825,1.011,1.419,2.606,1.919,3.152,0.699,1.188,1.177,0.147,0.891,1.782,1.258,2.512,5.484,4.519,2.044,1.79,1.843,2.003,1.808,1.525,2.713,2.114,2.056,2.32,2.131,4.781,2.347,1.852,3.853,3.851,7.304,1.748,3.394,2.448,4.563,3.502,3.034,2.685,1.239,1.853,2.141,1.61,3.73,3.572,4.747,13.324,3.98,5.4,1.881,2.196,4.053,3.56,3.503,4.197,4.127,3.352,1.397,1.893,4.095,4.099,1.393,2.928,2.123,2.733,2.772,2.459,4.889,3.433,6.963,9.815,1.89,1.132,1.444,1.889,2.074,2.329,1.899,2.036,2.067,2.306,2.506,1.353,1.353,2.693,1.918,2.455,2.563,2.178,2.429,4.078,3.556,1.989,2.382,2.495,2.413,2.116,2.402,2.348,2.429,1.954,1.093,0.909,1.611,0.985,1.309,1.514,1.524,1.608,1.585,1.436,1.436,1.297,1.276,2.308,1.563,1.405,1.058,1.96,5.91,5.73,1.595,1.599,1.383,1.397,1.492,1.472,2.911,0,15.898,0.769,2.184,15.881,3.208,3.198,2.947,3.041,1.153,4.755,8.422,5.265,5.32,5.508,5.644,0.131,4.966,3.047,2.128,4.637,4.678,5.038,2.471,3.209,4.766,5.194,3.586,1.452,2.216,2.305,3.01,1.68,3.541,3.624,1.2,0.172,1.261,3.633,1.607,2.188,2.267,3.501,3.277,3.375,3.124,11.426,8.302,0.499,1.696,1.812,1.69,1.711,1.339,1.475,0.995,1.517,1.377,0.726,1.066,1.551,1.885,1.929,1.632,2.132,2.406,7.437,2.68,2.781,2.653,2.223,1.56,1.499,0.051,1.665,1.506,0.962,1.169,1.281,1.54,0.293,2.02,1.058,0.301,1.282,1.831,1.783,1.833,0.576,0.895,1.432,1.048,1.551,1.596,1.519,1.547,4.804,2.355,1.8,0.658,0.478,5.32,1.099,6.554,3.766,0.96,1.87,3.36,2.565,4.275,2.29,9.333,5.589,3.338,11.233,4.45,3.644,4.352,9.137,17.356,2.337,1.47,1.435,2.663,4.828,3.889,1.728,2.031,3.748,3.647,7.655,12.92,4.077,8.749,6.39,1.594,0.807,0.905,1.336,1.387,2.082,2.549,1.599,7.565,17.151,16.947,0.651,0.363,16.701,15.687,1.715,1.751,1.739,1.734,1.751,1.746,1.723,1.765,1.723,1.745,2.174,1.282,1.735,1.743,2.07,1.723,1.748,1.731,5.155,0.797,6.046,2.886,3.478,3.179,1.149,0.977,2.421,2.932,1.503,2.012,1.835,1.023,2.271,2.462,2.661,14.56,15.874,15.417,1.991,1.749,2.444,1.936,2.173,3.741,1.118,5.927,15.843,0.797,9.969,7.087,6.835,0.699,7.165,2.579,18.036,17.925,7.905,2.876,2.705,2.583,2.729,7.919,8.212,1.656,4.928,2.145,2.116,2.134,2.139,2.118,2.132,2.151,2.126,2.122,2.151,2.133,2.131,2.136,2.119,2.139,0.197,1.11,2.056,2.03,4.08,2.027,2.035,1.913,0.124,2.364,2.353,10.72,6.129,2.671,2.005,2.36,2.327,0.93,4.142,2.02,2.037,2.013,2.007,2.016,2.066,2.031,2.032,2.011,2.035,2.014,2.03,2.013,2.01,2.123,3.988,1.459,4.868,1.063,3.71,0.737,3.42,7.253,1.08,6.287,6.093,1.434,4.48,3.396,1.358,1.788,8.646,2.839,5.884,1.274,0.397,7.061,2.704,2.1,1.546,4.496,2.012,3.964,0.696,5.472,2.456,5.208,2.792,1.546,7.186,2.414,3.934,0.987,2.624,1.355,1.948,1.917,2.039,1.882,1.711,1.531,0.931,0.825,0.666,0.655,6.032,7.804,3.272,8.76,4.131,2.49,1.309,1.861,1.916,1.283,0.777,1.224,1.201,1.713,1.504,1.824,1.707,1.97,1.764,0.159,1.792,0.994,1.092,0.936,1.817,1.461,6.372,3.401,7.22,2.263,2.681,2.052,2.682,0.718,1.996,2.591,2.674,2.634,3.24,2.109,2.02,1.805,1.516,1.323,3.437,7.898,1.023,2.763,1.023,21.212,20.834,3.193,6.183,3.319,1.538,6.46,0.732,6.05,2.317,2.625,1.563,1.709,1.358,1.342,1.478,1.546,0.864,1.308,1.562,1.385,1.506,2.297,1.354,1.487,1.436,1.475,2.193,4.375,4.962,15.649,3.706,2.879,2.968,2.937,5.141,1.283,1.729,1.562,7.306,4.581,3.708,2.798,2.645,2.763,3.296,3.182,3.047,3.086,4.114,0.16,1.647,2.986,2.955,8.734,1.614,2.241,9.319,8.981,3.247,8.524,8.53,1.371,3.471,3.505,4.097,3.961,4.507,5.504,7.131,1.98,1.155,9.707,5.07,13.4,3.675,3.755,3.605,4.305,1.765,1.21,1.935,8.325,1.439,4.424,2.696,1.622,0.2,0.041,0.204,0.248,10.063,1.716,6.984,1.852,4.786,1.655,11.556,16.752,4.907,0.417,3.559,2.299,2.083,2.523,10.18,2.198,1.906,0.256,2.286,8.046,4.404,2.61,11.127,0.75,0.962,6.503,1.601,0.815,2.181,2.058,2.898,16.45,0.241,9.678,8.743,3.39,0.584,2.489,2.61,16.21,17.72,4.977,9.531,9.522,3.983,3.218,1.665,1.663,1.37,2.366,1.777,2.392,6.68,0.117,7.777,16.342,5.805,5.516,10.227,0.599,21.626,20.698,8.697,12.762,0.568,1.144,8.877,4.483,0.426,5.512,10.096,4.052,2.818,1.487,1.521,2.628,3.671,2.963,9.769,11.763,2.732,2.672,1.937,0.68,1.662,1.141,0.656,0.983,1.489,1.778,1.011,1.04,0.947,1.066,1.443,1.094,1.057,1.464,0.885,0.016,2.598,3.527,1.05,1.017,0.998,5.563,0.639,5.816,5.376,1.712,1.211,2.232,1.19,1.93,1.542,1.644,2.001,1.796,1.797,1.231,1.818,1.759,1.847,1.668,6.202,0.927,1.403,3.15,1.004,1.703,1.284,0.135,4.183,0.415,1.412,1.527,1.975,1.917,1.792,1.301,1.887,1.707,0.193,1.929,1.913,1.883,1.494,0.857,1.308,1.093,1.576,1.845,1.744,1.35,1.378,1.943,6.53,3.652,2.429,6.361,1.038,9.51,19.986,7.127,5.435,3.692,8.424,1.269,3.049,4.078,2.386,3.323,3.261,7.276,5.22,1.053,5.79,3.92,1.114,1.646,3.004,3.184,4.086,5.692,5.162,10.815,1.685,17.208,3.448,1.087,6.645,6.524,13.94,1.963,6.282,2.351,4.087,1.028,2.956,2.549,13.951,13.956,4.577,14.16,0.918,0.627,2.996,14.997,0.789,4.772,4.66,3.56,3.081,2.01,1.306,0.43,1.714,1.172,2.259,0.988,0.396,1.283,6.317,3.601,3.503,4.326,3.553,2.481,1.076,1.506,1.329,0.576,1.945,2.528,1.441,1.429,1.023,6.551,1.62,2.536,2.532,5.038,3.902,2.81,0.424,0.328,7.052,0.432,7.494,0.617,1.059,2.424,1.375,4.871,2.301,2.305,0.663,0.048,3.208,1.002,2.118,2.14,4.291,1.908,0.001,1.783,0.147,4.379,4.705,4.801,2.781,5.602,6.045,6.121,12.399,0.594,5.035,8.484,0.671,8.315,0.921,5.787,1.268,2.334,4.618,2.255,0.558,1.115,5.902,5.056,0.711,2.79,3.105,0.205,11.093,0.499,3.454,3.074,3.326,2.639,11.499,17.628,0.297,0.154,6.137,1.461,1.08,2.808,7.798,6.776,1.338,1.694,3.801,3.78,1.422,3.948,0.314,3.557,4.682,3.94,1.04,4.241,0.162,3.301,3.958,0.516,3.271,0.489,1.627,4.226,4.799,4.941,2.506,4.101,0.891,0.748,12.242,7.798,10.029,17.812,0.409,17.666,9.54,2.479,0.608,1.209,3.999,3.86,2.832,1.694,0.454,0.84,8.406,7.759,8.122,2.324,13.419,5.39,15.013,0.463,1.998,18.267,1.262,4.654,1.524,5.93,2.149,2.858,7.097,6.172,2.167,3.131,13.875,1.09,2.725,3.741,12,2.435,0.594,14.38,7.489,2.297,8.102,6.777,6.149,4.023,1.904,0.582,3.672,2.088,3.511,5.972,15.739,6.415,7.339,1.078,2.692,6.66,1.094,2.054,0.317,5.234,2.649,1.384,6.197,3.388,7.423,9.766,6.775,16.071,1.607,0.162,1.285,1.188,5.846,3.902,3.73,1.531,0.232,0.828,15.984,1.197,0.66,7.837,9.604,6.489,2.047,9.07,7.023,2.329,1.218,5.794,1.074,4.206,12.651,0.769,1.712,2.844,3.153,2.406,1.263,3.691,3.421,0.806,2.502,3.75,2.686,3.116,5.818,8.26,4.872,7.342,8.487,1.992,6.601,11.039,3.585,3.693,9.471,11.823,5.513,0.452,8.873,6.177,1.762,1.33,2.593,4.322,3.966,5.115,0.301,8.554,0.849,4.434,2.671,0.526,10.009,7.437,5.734,0.104,10.433,0.676,3.68,3.838,1.714,0.727,3.369,2.032,0.753,0.957,1.244,5.108,5.494,5.222,2.716,12.528,1.893,8.19,8.088,8.343,5.497,3.099,0.884,1.2,3.862,1.95,12.581,21.888,0.847,15.895,3.332,11.91,11.626,3.579,7.042,1.256,0.678,2.644,9.532,1.493,14.685,75.046,8.585,2.654,7.729,3.083,8.67,4.708,15.631,15.59,6.88,26.521,26.279,4.655,48.867,19.646,3.866,11.169,1.163,4.717,2.981,2.564,6.331,9.4,9.92,8.693,2.739,3.873,3.751,3.751,6.58,6.967,16.074,3.257,0.183,8.444,3.59,5.843,0.776,34.569,10.504,2.492,0.953,8.671,12.614,9.665,8.896,4.06,5.006,6.075,11.895,17.428,1.742,2.81,8.897,11.96,3.355,9.593,13.09,19.828,5.737,3.792,9.251,2.535,6.51,3.729,1.196,8.996,11.223,4.814,0.257,0.362,2.158,14.503,1.255,0.491,3.386,3.375,1.473,1.846,1.164,4.724,5.159,5.014,0.814,4.281,0.225,0.045,2.779,0.547,5.6,3.175,4.626,0.823,4.368,3.625,1.637,2.047,2.561,6.739,2.94,8.642,1.342,1.076,12.347,3.354,7.256,0.555,7.222,13.601,21.882,5.437,1.041,0.255,2.094,0.573,10.106,3.868,2.717,4.459,8.086,1.313,0.465,1.703,6.162,1.424,1.858,4.455,1.957,1.058,0.503,4.382,11.683,1.741,1.471,6.247,5.837,0.35,4.178,2.859,14.777,3.794,13.505,0.522,1.489,0.484,1.835,13.194,0.828,6.851,10.366,4.618,5.606,6.142,0.44,3.351,3.697,1.325,3.227,3.344,1.511,1.258,1.048,1.98,1.786,1.903,1.642,1.463,1.99,5.062,4.302,12.148,0.456,5.782,6.064,4.261,3.451,3.872,3.738,3.969,0.204,1.217,3.587,3.499,6.103,2.274,1.225,8.044,3.6,4.887,1.785,2.362,4.552,4.086,1.994,2.01,0.076,1.128,1.694,2.024,1.377,1.257,3.081,4.14,2.124,2.541,11.16,3.295,10.948,0.918,6.989,5.591,0.512,16.028,9.089,9.069,4.494,2.538,7.985,4.538,7.496,15.57,6.943,8.752,13.596,1.643,2.557,6.484,8.623,2.661,7.854,2.792,12.564,13.943,8.725,0.262,1.212,10.419,6.745,5.911,6.926,2.832,1.45,0.537,10.876,4.541,1.81,2.431,3.371,5.038,3.373,2.299,0.729,3.56,2.598,2.661,1.138,2.699,3.98,1.032,15.066,15.358,2.578,2.056,1.908,2.581,1.964,1.958,2.107,1.756,1.763,1.525,0.24,1.936,1.693,2.399,2.021,1.79,6.544,16.949,2.774,12.151,1.615,11.874,2.412,1.368,3.125,2.706,2.386,3.19,2.034,2.171,1.66,2.911,2.566,1.419,2.389,2.299,2.169,0.603,1.782,0.561,4.431,1.583,10.148,4.292,3.079,2.744,1.22,0.342,5.119,1.328,14.694,0.025,15.874,5.881,1.938,8.427,10.692,5.094,1.037,4.712,1.917,1.568,1.114,4.658,1.971,0.398,1.332,4.315,1.832,1.999,4.201,2.131,1.802,9.362,1.145,1.499,4.661,5.157,12.348,1.335,13.074,2.731,11.066,1.902,32.478,6.117,7.765,1.121,70.434,1.072,29.962,1.711,0.727,1.029,24.594,6.555,0.916,6.04,1.595,6.514,7.78,17.081,6.522,2.594,1.92,1.515,9.01,4.439,0.223,1.371,2.165,2.684,7.533,2.057,0.617,1.235,2.43,2.221,8.324,7.253,2.729,3.995,5.846,3.758,3.759,2.789,2.791,2.826,2.815,3.555,1.22,2.32,7.215,5.571,5.586,4.58,1.398,6.068,1.243,3.74,0.559,1.119,1.105,3.105,1.582,24.146,5.139,4.941,4.955,4.859,3.771,3.601,5.704,5.673,7.785,2.076,33.9,0.961,11.709,4.878,5.072,7.741,5.203,2.481,2.489,7.905,2.253,5.939,0.748,1.306,0.698,4.249,4.85,5.164,5.885,1.387,2.036,9.108,14.303,11.518,1.654,2.159,2.468,2.483,2.29,2.258,2.388,2.469,4.41,13.219,1.766,13.521,1.228,1.775,1.761,1.905,1.774,2.908,1.391,1.457,2.638,4.184,6.994,1.459,4.662,0.994,2.146,0.463,1.461,2.9,1.049,1.279,0.8,4.333,4.375,7.844,0.893,17.489,2.704,2.703,0.654,0.699,1.367,0.962,1.843,1.999,2.05,0.91,2.81,3.351,0.296,3.179,1.288,1.49,1.543,1.396,2.93,3.471,1.603,1.643,3.227,3.01,2.609,0.625,2.671,3.278,3.992,1.067,0.778,1.869,1.95,0.945,0.848,3.21,4.673,2.348,2.357,2.382,2.331,2.028,2.092,2.101,1.721,1.521,1.547,2.653,2.827,3.082,2.69,6.173,0.473,5.252,10.511,28.252,1.768,1.463,1.259,3.295,4.407,7.156,2.889,1.113,0.67,3.288,0.013,1.523,0.407,3.842,3.803,1.002,1.862,3.111,0.676,1.137,1.63,4.595,4.203,5.725,1.039,1.655,2.546,2.517,1.557,2.233,2.216,2.209,2.219,5.106,5.077,8.267,8.042,6.749,6.249,18.072,5.016,1.326,7.912,8.387,1.767,3.931,2.878,1.213,1.791,4.971,5.859,4.748,16.097,5.306,5.357,2.577,4.122,2.574,1.928,2.04,2.018,3.267,2.25,1.445,1.988,1.5,2.18,1.415,3.005,2.273,31.979,14.148,2.421,2.14,2.741,2.374,2.641,2.391,2.18,2.168,2.351,2.385,3.251,3.559,1.817,1.84,3.896,2.059,1.772,6.024,5.036,4.621,7.842,1.277,8.64,4.938,9.999,2.642,12.695,1.778,8.49,0.637,14.583,8.127,8.33,13.079,4.85,2.133,1.523,1.073,1.86,0.847,1.911,1.973,1.939,4.128,3.945,3.47,2.378,2.684,2.559,2.574,0.974,0.874,1.742,0.954,0.787,1.871,1.09,5.391,14.019,5.604,13.977,2.849,4.112,1.639,2.289,2.705,4.859,3.008,1.23,1.175,4.707,9.385,7.37,6.807,6.014,2.658,5.924,3.093,3.604,5.274,6.993,3.38,3.562,7.013,5.499,9.096,1.524,3.948,3.575,3.653,5.312,3.662,4.21,1.488,1.318,2.867,1.749,4.624,5.367,2.545,5.942,4.802,2.095,2.032,5.644,7.101,2.651,5.866,5.647,4.608,3.247,3.566,6.62,7.187,4.164,3.225,4.868,4.212,4.966,4.523,2.595,6.356,0.434,1.148,4.673,1.515,1.242,0.955,3.873,13.349,7.094,3.911,0.824,0.559,5.519,3.021,2.801,2.009,1.833,1.785,1.713,1.721,1.724,9.875,2.066,1.657,2.189,1.339,1.538,1.747,1.233,1.635,1.152,1.278,1.306,1.064,2.148,1.537,5.443,1.999,1.747,2.163,2.764,0.773,0.713,1.215,1.578,2.562,1.393,1.28,1.183,1.16,1.156,1.193,1.913,1.915,1.37,1.95,5.18,1.824,0.734,2.315,1.729,1.635,1.551,1.903,3.759,14.946,9.177,0.775,5.504,2.633,3.292,3.689,2.991,3.346,3.697,3.257,0.09,3.832,5.948,11.202,10.886,10.639,4.171,3.509,10.561,2.125,3.214,6.802,6.648,6.588,4.28,1.01,2.401,2.629,7.21,5.459,5.593,5.707,6.421,5.217,5.85,11.46,6.794,9.238,1.281,5.524,3.497,3.113,1.334,0.801,0.726,4.035,0.972,4.594,2.14,5.367,9.161,3.936,9.392,12.734,17.137,12.568,7.39,3.042,5.122,3.218,6.148,6.185,11.505,16.249,12.546,4.673,2.326,2.117,2.214,3.147,0.823,0.936,7.492,12.172,7.914,2.567,20.77,3.012,7.632,15.568,5.054,6.067,7.698,12.914,3.851,11.423,5.059,7.968,2.584,5.176,2.777,1.343,2.131,1.263,1.885,1.738,0.424,1.033,6.391,2.665,6.891,4.627,2.253,2.104,1.693,0.463,2.506,2.781,2.378,2.253,3.345,2.074,1.893,3.202,3.515,17.158,8.201,8.274,12.168,13.437,7.404,7.484,2.829,4.438,3.241,0.478,2.518,4.782,3.004,3.726,1.785,4.477,2.18,4.217,6.719,1.224,1.038,27.569,1.577,2.008,0.804,1.059,5.896,2.032,4.521,4.812,2.84,3.845,0.566,0.041,1.906,2.651,1.203,1.517,2.203,4.393,11.528,1.432,8.371,0.867,0.328,4.014,3.059,2.011,1.47,3.04,4.224,4.108,4.415,3.56,1.551,1.227,3.909,5.113,5.146,5.036,5.227,6.168,1.61,6.463,6.939,8.524,18.86,6.705,2.824,3.98,15.458,2.507,2.473,7.242,7.74,9.939,18.609,1.993,9.021,6.68,0.955,0.955,4.09,3.169,3.639,3.021,1.131,2.056,3.106,3.101,3.24,2.932,2.924,3.113,3.17,3.293,3.062,3.11,3.139,3.284,3.154,2.962,1.263,1.615,1.234,1.669,1.408,1.65,3.584,1.658,2.559,1.203,2.188,1.612,2.016,2.427,12.839,1.682,1.364,10.902,15.413,11.029,2.076,2.712,6.39,4.641,4.813,3.213,6.403,6.217,6.75,2.759,5.003,17.609,7.381,2.699,2.699,3.733,4.203,1.869,3.682,3.357,4.051,5.195,2.455,4.051,15.16,23.265,2.637,2.97,0.704,1.176,1.112,1.198,0.872,0.944,0.956,0.8,0.911,1.091,0.889,1.063,0.797,1.104,1.056,1.106,1.026,1.282,1.254,1.269,1.31,1.241,1.208,1.452,2.984,7.65,4.938,2.603,1.35,16.023,1.057,4.405,10.699,21.346,46.078,5.631,3.336,4.972,5.147,3.637,0.539,1.657,1.656,0.87,1.876,2.51,2.168,2.738,3.115,3.852,7.696,9.2,6.817,4.335,4.762,10.366,6.26,4.041,2.859,0.954,3.533,0,1.484,1.837,0.812,1.152,1.774,2.159,1.426,1.136,2.334,1.833,3.868,3.172,6.404,4.286,3.143,5.225,0.6,4.872,2.846,2.986,1.885,2.422,2.43,1.661,2.706,1.439,1.277,2.132,1.502,0.306,2.181,1.532,0.873,0.279,2.156,2.407,4.856,0.648,1.293,2.121,1.797,1.939,2.466,2.099,1.84,1.953,2.528,6.353,7.967,5.145,6.676,1.225,7.377,14.895,2.773,2.264,1.692,0.404,1.607,3.783,1.628,1.232,1.235,1.233,1.232,1.233,1.233,1.233,1.233,1.234,1.171,1.174,1.174,1.172,1.172,1.015,1.061,0.912,0.911,0.754,0.909,0.789,1.207,1.591,1.287,3.6,1.477,1.871,5.711,7.9,5.911,4.342,11.793,1.527,1.816,7.135,1.238,1.215,1.27,1.186,1.265,3.456,2.193,5.451,1.563,11.763,6.1,1.885,9.228,4.029,1.808,1.199,1.284,1.219,1.176,1.277,1.216,1.196,1.222,1.362,1.18,1.215,1.193,1.298,1.291,1.424,2.183,3.223,2.125,1.371,7.032,5.702,5.313,0.961,8.654,2.377,10.944,3.948,2.345,3.221,2.61,2.648,2.384,2.447,2.223,2.155,3.376,3.971,2.49,2.795,2.083,2.449,2.739,13.955,6.92,6.355,6.229,25.54,1.956,2.103,1.804,1.873,2.305,0.691,1.413,1.91,2.078,1.755,6.405,5.027,2.409,1.988,1.201,1.043,0.99,0.521,0.828,2.071,1.557,1.322,1.144,2.8,1.891,1.547,17.939,2.207,7.588,1.261,1.13,1.422,0.945,0.936,0.539,1.844,0.987,0.877,0.491,2.307,1.5,3.181,2.946,2.578,9.842,1.719,2.174,0.271,1.395,1.096,1.054,1.051,1.152,1.076,1.129,1.065,1.091,1.178,1.001,0.86,0.887,0.995,1,1.018,1.371,16.758,2.575,9.119,1.267,1.983,1.374,1.343,1.202,1.262,1.243,1.194,1.34,1.295,1.423,1.447,1.295,1.322,1.322,0.855,0.721,0.267,1.759,1.793,1.615,1.759,2.121,2.16,4.193,5.906,7.339,1.472,6.932,14.462,11.581,2.068,0.344,2.519,1.476,1.089,1.065,1.231,1.356,1.367,1.443,1.421,1.489,1.345,1.136,0.905,1.125,1.275,0.922,1.211,3.068,2.025,1.125,0.606,0.089,2.543,1.349,0.639,1.459,2.679,2.766,0.345,5.382,16.639,1.889,2.575,0.71,0.966,1.934,1.449,1.072,1.092,1.537,1.99,1.248,1.515,0.982,0.949,1.479,1.45,1.538,0.792,0.783,0.857,0.723,1.051,1.17,1.104,1.001,0.816,1.147,2.939,4.295,5.469,4.143,2.407,2.185,0.382,0.754,2.148,2.179,1.593,1.429,2.056,1.562,1.296,0.985,1.282,0.779,0.756,5.074,2.352,2.494,2.394,2.364,2.642,2.364,2.601,2.219,3.721,2.064,0.979,8.767,12.972,13.105,13.052,11.197,10.011,1.549,14.023,10.194,4.016,13.435,1.895,14.876,2.954,7.057,4.773,2.23,8.089,1.418,6.083,3.353,4.803,3.198,15.598,20.611,4.76,3.823,3.654,16.148,1.057,11.209,6.191,0.455,5.727,0.654,9.215,6.825,7.184,2.582,1.457,1.442,6.607,11.764,4.254,3.42,2.089,1.25,0.803,0.998,0.739,0.601,0.768,0.705,0.75,0.704,0.791,0.701,0.77,0.866,0.856,0.952,0.301,0.735,2.153,1.193,3.229,1.546,1.507,2.186,1.271,1.351,1.432,1.379,1.02,1.124,1.596,1.8,0.985,0.923,0.626,0.97,0.676,0.705,0.752,0.697,0.666,0.596,0.809,0.652,0.649,0.509,0.573,1.377,1.697,1.479,8.892,1.25,1.735,1.843,1.683,1.157,1.229,1.077,1.207,1.09,1.454,3.081,3.023,2.091,2.245,1.534,1.799,2.463,16.436,7.498,1.358,7.271,1.782,2.054,2.428,2.52,3.774,3.189,4.232,4.02,1.585,4.527,4.193,4.599,2.801,3.635,6.346,3.467,2.512,1.333,2.003,2.822,3.818,2.879,2.251,2.228,2.676,2.03,5.043,4.818,2.539,2.131,3.434,10.739,2.548,0.947,2.758,2.103,1.4,0.484,6.857,4.317,4.412,11.748,2.502,1.49,0.379,1.679,7.297,0.549,3.965,1.069,1.164,1.218,0.685,20.533,4.635,1.384,0.646,1.351,3.872,1.133,0.357,9.657,3.394,9.511,5.824,3.385,3.884,1.644,1.815,0.433,1.246,3.465,1.103,7.063,0.837,1.144,6.419,0.338,1.02,1.562,0.521,14.572,5.498,2.362,0.882,3.608,6.818,4.199,6.6,1.4,4.199,3.811,0.554,0.568,2.474,2.1,2.116,2.628,1.117,2.612,2.483,0.744,1.259,6.462,3.607,4.724,0.874,4.096,1.03,0.465,2.985,1.482,0.771,2.296,3.432,1.703,3.837,2.079,3.388,4.48,1.418,0.878,4.732,9.225,9.661,1.814,3.125,1.806,1.358,1.052,0.599,1.393,7.21,1.036,4.767,1.975,1.179,2.191,2.581,5.119,5.779,3.84,10.328,5.527,4.568,4.331,4.08,2.672,4.46,1.053,1.422,2.325,0.054,0.819,1.077,0.873,0.963,1.572,1.501,1.253,1.048,1.115,1.099,0.808,0.768,0.605,0.914,0.815,0.949,0.877,0.81,0.8,0.737,0.893,0.952,0.723,0.676,1.212,1.057,1.114,1.304,1.064,1.289,1.746,1.533,1.333,0.56,0.699,0.775,0.967,1.696,0.516,0.845,1.207,0.042,0.391,0.493,0.682,0.648,17.534,0.754,0.965,0.728,1.693,0.579,7.841,10.523,1.256,0.681,2.9,2.483,3.043,6.58,0.568,1.921,0.751,0.966,0.425,0.366,0.791,0.336,1.226,1.982,14.945,3.818,5.173,0.499,0.564,0.345,1.328,0.646,0.632,0.322,2.436,1.012,1.688,7.852,0.46,0.852,1.118,1.052,0.771,0.317,5.054,27.018,3.751,1.156,19.672,13.378,9.258,6.943,2.146,0.553,0.791,0.787,1.001,1.009,1.047,1.111,2.259,1.282,1.262,1.265,1.267,0.622,0.649,1.288,1.171,1.115,1.325,0.538,0.367,1.116,0.744,0.681,0.672,0.669,0.675,0.681,0.675,0.675,2.048,1.269,0.818,1.049,0.186,0.476,16.813,15.988,10.603,2.755,2.755,0.215,18.884,11.785,16.42,1.019,7.801,4.48,0.921,0.79,0.229,2.619,1.818,0.675,0.499,12.926,8.182,49.645,0.937,0.875,0.3,0.643,2.422,0.27,1.058,1.033,0.334,0.857,1.106,1.372,2.238,1.469,0.828,0.919,0.791,0.753,1.074,1.066,2.899,13.446,2.574,6.875,0.806,1.104,0.732,1.958,7.218,3.931,2.126,2.782,1.092,1.375,0.601,0.584,3.326,0.541,0.423,1.608,6.133,1.546,0.306,0.162,1.726,1.773,0.368,0.141,3.682,1.744,7.811,0.988,0.712,9.007,0.121,0.525,0.563,1.025,0.409,13.821,1.157,1.589,0.349,2.987,2.029,0.533,14.803,5.746,7.218,1.106,0.55,1.328,2.943,0.887,2.507,20.707,0.429,1.588,2.129,0.315,3.917,11.437,0.41,5.324,8.246,11.23,3.6,1.627,3.068,6.501,6.64,14.119,15.158,23.988]},"weight_typical":21411.186,"duration_typical":22768.014,"weight":21411.186,"duration":22768.014,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive southeast on Prinz-Ludwig-Straße. Then Turn left onto Türkenstraße.","announcement":"Drive southeast on Prinz-Ludwig-Straße. Then Turn left onto Türkenstraße.","distanceAlongGeometry":115.581}],"intersections":[{"entry":[true],"bearings":[114],"duration":11.198,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":12.318,"geometry_index":0,"location":[11.571182,48.145544]},{"entry":[true,true,false],"in":2,"bearings":[114,204,294],"duration":9.481,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":11.421,"geometry_index":1,"location":[11.571912,48.145323]},{"bearings":[23,114,203,294],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":2,"location":[11.572525,48.145138]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"turn","modifier":"right","text":"Gabelsbergerstraße"},"primary":{"components":[{"type":"text","text":"Türkenstraße"}],"type":"turn","modifier":"left","text":"Türkenstraße"},"distanceAlongGeometry":115.581}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive southeast on Prinz-Ludwig-Straße.","bearing_after":114,"bearing_before":0,"location":[11.571182,48.145544]},"speedLimitSign":"vienna","name":"Prinz-Ludwig-Straße","weight_typical":26.99,"duration_typical":21.823,"duration":21.823,"distance":115.581,"driving_side":"right","weight":26.99,"mode":"driving","geometry":"ogqyzA{}faUxLsl@pJie@j@uC"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Gabelsbergerstraße. Then Keep left to stay on Gabelsbergerstraße.","announcement":"Turn right onto Gabelsbergerstraße. Then Keep left to stay on Gabelsbergerstraße.","distanceAlongGeometry":101.389}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[24,204,294],"duration":6.195,"turn_weight":10,"turn_duration":5.395,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":10.88,"geometry_index":3,"location":[11.5726,48.145116]},{"entry":[true,false,false,false],"in":2,"bearings":[23,113,204,296],"duration":17.219,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":20.92,"geometry_index":4,"location":[11.572624,48.145152]},{"entry":[false,true,false],"in":2,"bearings":[20,54,203],"duration":2.527,"turn_weight":1.5,"turn_duration":0.052,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":4.222,"geometry_index":5,"location":[11.573074,48.145864]},{"entry":[false,true,false,false],"in":3,"bearings":[18,67,201,234],"duration":0.693,"turn_weight":2,"turn_duration":0.018,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":2.743,"geometry_index":8,"location":[11.57319,48.14592]},{"bearings":[80,189,247,344],"entry":[true,false,false,false],"in":2,"turn_weight":2,"turn_duration":0.018,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":9,"location":[11.573225,48.14593]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"fork","modifier":"left","text":"Gabelsbergerstraße"},"primary":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"turn","modifier":"right","text":"Gabelsbergerstraße"},"distanceAlongGeometry":115.226}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn left onto Türkenstraße.","modifier":"left","bearing_after":24,"bearing_before":114,"location":[11.5726,48.145116]},"speedLimitSign":"vienna","name":"Türkenstraße","weight_typical":43.488,"duration_typical":29.126,"duration":29.126,"distance":115.226,"driving_side":"right","weight":43.488,"mode":"driving","geometry":"wlpyzAoviaUgAo@ok@c[u@_B_@}@YiASeAU_BMiE"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to stay on Gabelsbergerstraße.","announcement":"Keep left to stay on Gabelsbergerstraße.","distanceAlongGeometry":53.333}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[131,260,315],"duration":2.699,"turn_weight":9,"turn_duration":0.207,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":11.742,"geometry_index":11,"location":[11.573374,48.145948]},{"entry":[true,false],"in":1,"bearings":[126,311],"duration":4.985,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.983,"geometry_index":12,"location":[11.573466,48.145895]},{"entry":[true,false],"in":1,"bearings":[122,306],"duration":3.877,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.765,"geometry_index":13,"location":[11.573665,48.1458]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"bearings":[115,302],"entry":[true,false],"in":1,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":14,"location":[11.573821,48.145736]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"fork","modifier":"left","text":"Gabelsbergerstraße"},"distanceAlongGeometry":73.996}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Gabelsbergerstraße.","modifier":"right","bearing_after":131,"bearing_before":80,"location":[11.573374,48.145948]},"speedLimitSign":"vienna","name":"Gabelsbergerstraße","weight_typical":33.042,"duration_typical":20.699,"duration":20.699,"distance":73.996,"driving_side":"right","weight":33.042,"mode":"driving","geometry":"w`ryzA{fkaUhBwD|DmK~BwHzFiX"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1562.658},{"ssmlAnnouncement":"In a quarter mile, Turn left onto Widenmayerstraße.","announcement":"In a quarter mile, Turn left onto Widenmayerstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left onto Widenmayerstraße.","announcement":"Turn left onto Widenmayerstraße.","distanceAlongGeometry":46.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[11.574226,48.14561],"geometry_index":15,"admin_index":0,"weight":8.67,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.056,"turn_weight":0.75,"duration":7.256,"bearings":[101,118,295],"out":0,"in":2,"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"location":[11.5747,48.145547],"geometry_index":18,"admin_index":0,"weight":10.667,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.021,"turn_weight":7,"duration":3.354,"bearings":[32,65,100,220,281],"out":2,"in":4,"entry":[false,false,true,true,false]},{"entry":[true,false],"in":1,"bearings":[93,278],"duration":1.35,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.985,"geometry_index":21,"location":[11.575026,48.145513]},{"entry":[true,false,false],"in":2,"bearings":[88,251,273],"duration":14.199,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.592,"geometry_index":23,"location":[11.575181,48.145508]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.576876,48.145584],"geometry_index":27,"admin_index":0,"weight":25.564,"is_urban":true,"turn_weight":5.5,"duration":18.24,"bearings":[92,269],"out":0,"in":1,"classes":["tunnel"],"entry":[true,false],"tunnel_name":"Altstadtringtunnel"},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.578864,48.145286],"geometry_index":32,"admin_index":0,"weight":44.51,"is_urban":true,"turn_weight":0.95,"duration":39.6,"bearings":[108,288],"out":0,"in":1,"classes":["tunnel"],"entry":[true,false],"tunnel_name":"Altstadtringtunnel"},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.583034,48.144269],"geometry_index":34,"admin_index":0,"weight":17.45,"is_urban":true,"classes":["tunnel"],"turn_duration":0.008,"turn_weight":0.95,"duration":15.008,"bearings":[114,292],"out":0,"in":1,"entry":[true,false],"tunnel_name":"Altstadtringtunnel"},{"entry":[true,false],"in":1,"bearings":[107,294],"duration":20.4,"turn_weight":5.95,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":28.39,"geometry_index":35,"location":[11.584572,48.143822]},{"entry":[true,false],"in":1,"bearings":[105,285],"duration":0.96,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.556,"geometry_index":39,"location":[11.586982,48.143351]},{"entry":[true,false,false],"in":2,"bearings":[98,275,285],"duration":2.186,"turn_weight":0.75,"turn_duration":0.026,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.126,"geometry_index":40,"location":[11.58709,48.143332]},{"entry":[true,false,true],"in":1,"bearings":[110,278,297],"duration":0.55,"turn_weight":0.75,"turn_duration":0.017,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.337,"geometry_index":42,"location":[11.587333,48.14331]},{"entry":[true,true,true,false],"in":3,"bearings":[15,106,221,290],"duration":2.101,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.285,"geometry_index":43,"location":[11.587386,48.143297]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":2.914,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.706,"geometry_index":44,"location":[11.587585,48.143258]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":5.76,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.836,"geometry_index":45,"location":[11.587803,48.143215]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":1.44,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.084,"geometry_index":47,"location":[11.588213,48.143134]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.588314,48.143114],"geometry_index":48,"admin_index":0,"weight":3.97,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":2.707,"bearings":[15,107,197,287],"out":1,"in":3,"entry":[false,true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.588503,48.143075],"geometry_index":51,"admin_index":0,"weight":1.264,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":1,"duration":0.259,"bearings":[23,106,197,287],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[true,false],"in":1,"bearings":[108,286],"duration":1.575,"turn_weight":0.95,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.682,"geometry_index":52,"location":[11.588524,48.143071]},{"entry":[false,true,false,false],"in":3,"bearings":[17,108,199,288],"duration":7.894,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.663,"geometry_index":53,"location":[11.588709,48.143032]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":7.762,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.039,"geometry_index":55,"location":[11.589614,48.142842]},{"entry":[true,true,false],"in":2,"bearings":[107,196,287],"duration":20.042,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":22.538,"geometry_index":56,"location":[11.590508,48.142661]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.592161,48.142329],"geometry_index":57,"admin_index":0,"weight":15.719,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":2,"duration":14.479,"bearings":[24,108,201,287],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,true,true,false],"in":3,"bearings":[17,106,197,288],"duration":12.622,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":14.86,"geometry_index":58,"location":[11.593402,48.142058]},{"bearings":[17,106,197,286],"entry":[false,true,false,false],"in":3,"turn_weight":1,"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":61,"location":[11.594303,48.141886]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Widenmayerstraße"}],"type":"turn","modifier":"left","text":"Widenmayerstraße"},"distanceAlongGeometry":1572.658},{"sub":{"components":[{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Widenmayerstraße"}],"type":"turn","modifier":"left","text":"Widenmayerstraße"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Gabelsbergerstraße.","modifier":"slight left","bearing_after":101,"bearing_before":115,"location":[11.574226,48.14561]},"speedLimitSign":"vienna","name":"Gabelsbergerstraße","weight_typical":259.066,"duration_typical":205.007,"duration":205.007,"distance":1572.658,"driving_side":"right","weight":259.066,"mode":"driving","geometry":"skqyzAc|laUh@cIl@iId@eHh@mHP{DFaDDcBBqECeDKgMcCeeACiOJsQToOV_H`@eFvN}gAtZc_Czb@ocC|Zc_BnOoqAlD}YfDq[fAsKd@wEP}DXgHXiBlAmKtAsLDa@zCqWf@iEv@mGNoAD[Fi@lAqJ`Gsd@xB}QhJ{v@vSifB|OqlAfBoODa@hFwe@~@kI"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":659.241},{"ssmlAnnouncement":"In a quarter mile, Keep left to stay on Widenmayerstraße.","announcement":"In a quarter mile, Keep left to stay on Widenmayerstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to stay on Widenmayerstraße.","announcement":"Keep left to stay on Widenmayerstraße.","distanceAlongGeometry":88.889}],"intersections":[{"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"secondary"},"location":[11.594469,48.141854],"geometry_index":62,"admin_index":0,"weight":11.398,"is_urban":true,"traffic_signal":true,"turn_duration":7.51,"turn_weight":10,"duration":8.781,"bearings":[16,107,194,286],"out":0,"in":3,"entry":[true,true,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[17,107,196,301],"duration":23.725,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":27.089,"geometry_index":63,"location":[11.594514,48.141956]},{"entry":[true,false,false,true],"in":2,"bearings":[9,97,189,280],"duration":13.699,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.048,"geometry_index":66,"location":[11.595167,48.143921]},{"entry":[true,false,false,true],"in":2,"bearings":[8,99,189,282],"duration":11.238,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.34,"geometry_index":67,"location":[11.595486,48.145269]},{"entry":[true,false,false,false],"in":2,"bearings":[7,97,188,277],"duration":10.988,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.064,"geometry_index":68,"location":[11.595751,48.14646]},{"bearings":[18,191,329],"entry":[true,false,true],"in":1,"turn_weight":0.5,"turn_duration":0.011,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":70,"location":[11.595988,48.147625]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Widenmayerstraße"}],"type":"fork","modifier":"left","text":"Widenmayerstraße"},"distanceAlongGeometry":675.908}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Widenmayerstraße.","modifier":"left","bearing_after":16,"bearing_before":106,"location":[11.594469,48.141854]},"speedLimitSign":"vienna","name":"Widenmayerstraße","weight_typical":83.42,"duration_typical":70.242,"duration":70.242,"distance":675.908,"driving_side":"right","weight":83.42,"mode":"driving","geometry":"{`jyzAimtbUkEyAse@gPym@oMkd@aHgsA}RmiAqOe|@qJsJgBeK_E"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":705.921},{"ssmlAnnouncement":"In a quarter mile, Stay straight to take the ramp.","announcement":"In a quarter mile, Stay straight to take the ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Stay straight to take the ramp.","announcement":"Stay straight to take the ramp.","distanceAlongGeometry":71.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[17,34,198],"duration":4.282,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.187,"geometry_index":71,"location":[11.596084,48.14782]},{"entry":[true,false],"in":1,"bearings":[31,208],"duration":11.535,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.188,"geometry_index":74,"location":[11.596387,48.148296]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[30,211],"duration":1.898,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.588,"geometry_index":75,"location":[11.59748,48.149504]},{"entry":[true,false],"in":1,"bearings":[31,210],"duration":19.029,"turn_weight":5.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":25.956,"geometry_index":76,"location":[11.597681,48.149732]},{"entry":[true,false,false],"in":2,"bearings":[28,206,210],"duration":8.249,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.846,"geometry_index":78,"location":[11.599709,48.152017]},{"entry":[true,true,false],"in":2,"bearings":[28,118,208],"duration":13.378,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":14.874,"geometry_index":80,"location":[11.600117,48.152528]},{"bearings":[28,117,208,297],"entry":[true,false,false,false],"in":2,"turn_weight":1,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":82,"location":[11.600772,48.153352]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Ifflandstraße"}],"type":"turn","modifier":"straight","text":"Ifflandstraße"},"distanceAlongGeometry":722.588},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Ifflandstraße"}],"type":"turn","modifier":"straight","text":"Ifflandstraße"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Widenmayerstraße.","modifier":"slight left","bearing_after":17,"bearing_before":18,"location":[11.596084,48.14782]},"speedLimitSign":"vienna","name":"Widenmayerstraße","weight_typical":74.574,"duration_typical":60.178,"duration":60.178,"distance":722.588,"driving_side":"right","weight":74.574,"mode":"driving","geometry":"wuuyzAgrwbUuFgBuFkCkMiJojAicAgMqKwvAemAav@qo@i]eWs@i@ep@cf@iAy@cFuD"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Keep left to take Isarring.","announcement":"In 600 feet, Keep left to take Isarring.","distanceAlongGeometry":163.363},{"ssmlAnnouncement":"Keep left to take Isarring.","announcement":"Keep left to take Isarring.","distanceAlongGeometry":83.333}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.600863,48.153466],"geometry_index":83,"admin_index":0,"weight":2.306,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":0.5,"duration":1.687,"bearings":[28,208,298],"out":0,"in":1,"entry":[true,false,false]},{"bearings":[28,208,298],"entry":[true,false,true],"in":1,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":84,"location":[11.600952,48.153577]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Isarring"}],"type":"fork","modifier":"left","text":"Isarring"},"distanceAlongGeometry":194.043}],"speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Stay straight to take the ramp.","modifier":"straight","bearing_after":28,"bearing_before":28,"location":[11.600863,48.153466]},"speedLimitSign":"vienna","name":"Ifflandstraße","weight_typical":18.238,"duration_typical":14.654,"duration":14.654,"distance":194.043,"driving_side":"right","weight":18.238,"mode":"driving","geometry":"sv`zzA}|`cU}EqDkWkRm`Acq@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2502.098},{"ssmlAnnouncement":"In a quarter mile, Take the A 9 ramp.","announcement":"In a quarter mile, Take the A 9 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 9 ramp toward Nürnberg, Flughafen.","announcement":"Take the A 9 ramp toward Nürnberg, Flughafen.","distanceAlongGeometry":120}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[28,39,207],"duration":24.007,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":0,"weight":25.2,"geometry_index":86,"location":[11.602064,48.155014]},{"entry":[true,false],"in":1,"bearings":[18,202],"duration":7.05,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":0,"weight":7.403,"geometry_index":89,"location":[11.604017,48.157575]},{"entry":[false,true],"in":0,"bearings":[179,354],"duration":4.6,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":4.83,"geometry_index":93,"location":[11.604205,48.158406]},{"entry":[false,true],"in":0,"bearings":[159,330],"duration":3.168,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":3.326,"geometry_index":95,"location":[11.604059,48.158803]},{"entry":[false,true],"in":0,"bearings":[142,308],"duration":10.008,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":10.508,"geometry_index":97,"location":[11.603727,48.159134]},{"entry":[false,true],"in":0,"bearings":[101,306],"duration":4.68,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":4.914,"geometry_index":105,"location":[11.601986,48.159445]},{"entry":[false,false,true],"in":0,"bearings":[140,153,327],"duration":5.255,"turn_weight":22.6,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"weight":28.237,"geometry_index":109,"location":[11.601414,48.159873]},{"entry":[false,true,true],"in":0,"bearings":[145,320,346],"duration":3.473,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":3.705,"geometry_index":112,"location":[11.600912,48.160375]},{"entry":[false,false,true],"in":1,"bearings":[97,140,315],"duration":1.824,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"weight":1.935,"geometry_index":114,"location":[11.600524,48.160681]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[135,316],"duration":0.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":1.042,"geometry_index":115,"location":[11.600276,48.160849]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[136,313],"duration":7.892,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":8.484,"geometry_index":116,"location":[11.600149,48.160936]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[131,309],"duration":10.869,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":11.684,"geometry_index":119,"location":[11.599001,48.161611]},{"entry":[false,true,true],"in":0,"bearings":[131,312,332],"duration":5.341,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":5.733,"geometry_index":122,"location":[11.597368,48.162512]},{"entry":[false,true],"in":0,"bearings":[147,331],"duration":6.667,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":7.167,"geometry_index":125,"location":[11.596672,48.163059]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[164,350],"duration":20.095,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":21.602,"geometry_index":129,"location":[11.596156,48.163886]},{"entry":[true,false],"in":1,"bearings":[25,204],"duration":16.067,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":17.272,"geometry_index":134,"location":[11.597027,48.166529]},{"entry":[true,false,false],"in":2,"bearings":[25,197,206],"duration":6.019,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":6.45,"geometry_index":137,"location":[11.598403,48.168486]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[26,204],"duration":0.632,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.679,"geometry_index":139,"location":[11.598908,48.169225]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[27,206],"duration":0.257,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.276,"geometry_index":140,"location":[11.598966,48.169304]},{"entry":[true,true,false],"in":2,"bearings":[26,115,207],"duration":2.271,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.419,"geometry_index":141,"location":[11.59899,48.169336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[23,206],"duration":4.307,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":4.63,"geometry_index":142,"location":[11.599194,48.169615]},{"entry":[true,true,false],"in":2,"bearings":[21,39,205],"duration":17.541,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":18.829,"geometry_index":144,"location":[11.599561,48.170168]},{"entry":[false,true],"in":0,"bearings":[142,315],"duration":12.392,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":13.322,"geometry_index":163,"location":[11.599575,48.172286]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[128,307],"entry":[false,true],"classes":["tunnel"],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":167,"location":[11.597687,48.17329]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Nürnberg"},{"type":"text","text":"/"},{"type":"text","text":"Flughafen"}],"type":"turn","modifier":"slight right","text":"Nürnberg / Flughafen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"turn","modifier":"slight right","text":"A 9"},"distanceAlongGeometry":2518.765},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Nürnberg"},{"type":"text","text":"/"},{"type":"text","text":"Flughafen"}],"type":"turn","modifier":"slight right","text":"Nürnberg / Flughafen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"turn","modifier":"slight right","text":"A 9"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take Isarring.","modifier":"slight left","bearing_after":28,"bearing_before":27,"location":[11.602064,48.155014]},"speedLimitSign":"vienna","name":"Isarring","weight_typical":211.181,"duration_typical":176.811,"duration":176.811,"distance":2518.765,"driving_side":"right","weight":211.181,"mode":"driving","geometry":"kwczzA_hccUig@k_@{{AghA{YmO_LkEoMmCeKk@gKLgK~@qKbFmKvIgG~HsGnOoC`JgB~Ks@zNC~Ib@rQSvKy@~HcCfI}C~EmLjJgCbFwClCkN|MgJ~JiHvJyHnKoInNmD|FsBxDaHrMo\\hr@u]tw@cL~VoKjTgHnN_LnO}JnJuOtLeIvEkMpFmIfC_MpBwZh@{[yE_r@qVqj@}[}sAcz@sTmNwNmJeDuB_h@{Z}CsB_Ao@mPwKePaJkP{JgDmAqC}AyHwE}KsGkEwBmJiDuDaA_Es@sCYkDMaEBcDTsD^cGxAuDtAsH~DsGbFuDzDwDpFcG`KuGjNgSng@uX`q@cF`M"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 59 miles.","announcement":"Continue for 59 miles.","distanceAlongGeometry":94874.625},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 9.","announcement":"In 1 mile, Keep left to stay on A 9.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 9.","announcement":"In a half mile, Keep left to stay on A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 9.","announcement":"Keep left to stay on A 9.","distanceAlongGeometry":188.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[11.597462,48.173404],"geometry_index":168,"admin_index":0,"weight":5.87,"is_urban":true,"mapbox_streets_v8":{"class":"trunk_link"},"duration":5.479,"bearings":[127,307,323],"out":2,"in":0,"turn_duration":0.019,"classes":["tunnel"],"entry":[false,true,true]},{"entry":[false,true],"in":0,"bearings":[134,309],"duration":15.72,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":16.899,"geometry_index":175,"location":[11.596636,48.173995]},{"entry":[false,false,true],"in":0,"bearings":[121,137,323],"duration":7.928,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":2,"weight":8.69,"geometry_index":186,"location":[11.593802,48.1754]},{"entry":[true,false],"in":1,"bearings":[26,202],"duration":5.727,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":6.3,"geometry_index":196,"location":[11.593707,48.176039]},{"entry":[true,false],"in":1,"bearings":[26,206],"duration":7.282,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":8.01,"geometry_index":197,"location":[11.594116,48.176608]},{"entry":[true,false],"in":1,"bearings":[23,206],"duration":3.273,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.6,"geometry_index":198,"location":[11.594633,48.177327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.594784,48.177662],"geometry_index":200,"admin_index":0,"weight":16.376,"is_urban":true,"turn_weight":14,"duration":2.185,"bearings":[30,192,210],"out":0,"in":1,"turn_duration":0.025,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":28.71,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":30.863,"geometry_index":202,"location":[11.595106,48.178036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":7.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.224,"geometry_index":212,"location":[11.600181,48.182632]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,242],"duration":26.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":28.541,"geometry_index":219,"location":[11.602096,48.18347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,233],"duration":7.063,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":7.593,"geometry_index":237,"location":[11.609267,48.185668]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,223],"duration":16.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.986,"geometry_index":244,"location":[11.610805,48.18661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":2.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.014,"geometry_index":253,"location":[11.613376,48.189277]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.613712,48.189796],"geometry_index":255,"admin_index":0,"weight":1.437,"is_urban":false,"turn_weight":0.75,"duration":0.679,"bearings":[20,191,204],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":3.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.69,"geometry_index":257,"location":[11.613777,48.189912]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":15.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.65,"geometry_index":258,"location":[11.614154,48.190607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":10.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.52,"geometry_index":260,"location":[11.615743,48.193756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.61683,48.195943],"geometry_index":266,"admin_index":0,"weight":11.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.653,"bearings":[17,37,198],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[18,177,198],"duration":0.527,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.534,"geometry_index":270,"location":[11.617862,48.198114]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":1.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.275,"geometry_index":271,"location":[11.617912,48.198217]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":19.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.359,"geometry_index":272,"location":[11.618038,48.198461]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":2.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.132,"geometry_index":275,"location":[11.620101,48.20255]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.620314,48.202996],"geometry_index":277,"admin_index":0,"weight":10.554,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.316,"bearings":[18,39,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[19,177,199],"duration":6.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.076,"geometry_index":283,"location":[11.621454,48.205264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":3.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.07,"geometry_index":284,"location":[11.622261,48.206848]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":13.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.88,"geometry_index":286,"location":[11.622709,48.207763]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.893,"geometry_index":289,"location":[11.624314,48.21095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":6.421,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.421,"geometry_index":291,"location":[11.624528,48.211381]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.625259,48.212854],"geometry_index":293,"admin_index":0,"weight":15.5,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.916,"bearings":[19,39,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":15.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.696,"geometry_index":299,"location":[11.627173,48.216654]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.629023,48.220349],"geometry_index":305,"admin_index":0,"weight":11.586,"is_urban":false,"turn_weight":1,"duration":11.162,"bearings":[18,184,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.166,"geometry_index":307,"location":[11.630411,48.223122]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.557,"geometry_index":311,"location":[11.631349,48.225001]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.632335,48.226981],"geometry_index":312,"admin_index":0,"weight":6.267,"is_urban":false,"turn_weight":1,"duration":5.563,"bearings":[19,190,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":10.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.363,"geometry_index":314,"location":[11.633006,48.228289]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":6.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.746,"geometry_index":316,"location":[11.6343,48.230868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,198],"duration":0.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.923,"geometry_index":318,"location":[11.635014,48.232302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,201],"duration":20.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.186,"geometry_index":319,"location":[11.635141,48.232526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,197],"duration":6.372,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.213,"geometry_index":323,"location":[11.637514,48.237307]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":4.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.739,"geometry_index":326,"location":[11.638279,48.238816]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.638851,48.239967],"geometry_index":327,"admin_index":0,"weight":9.201,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.456,"bearings":[18,46,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.63998,48.242277],"geometry_index":328,"admin_index":0,"weight":5.715,"is_urban":false,"turn_weight":0.5,"duration":5.368,"bearings":[18,166,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":15.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.876,"geometry_index":330,"location":[11.640656,48.2436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":8.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.223,"geometry_index":332,"location":[11.642597,48.24738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":3.806,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.711,"geometry_index":334,"location":[11.643653,48.249473]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":39.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.233,"geometry_index":335,"location":[11.644127,48.250422]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,357],"duration":4.755,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.398,"geometry_index":349,"location":[11.647366,48.260492]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.647238,48.261748],"geometry_index":353,"admin_index":0,"weight":8.499,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.211,"bearings":[1,175,352],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.646628,48.264116],"geometry_index":359,"admin_index":0,"weight":6.169,"is_urban":false,"turn_weight":1,"duration":5.609,"bearings":[152,168,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":12.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.954,"geometry_index":360,"location":[11.646136,48.26554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":17.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.583,"geometry_index":362,"location":[11.645082,48.268648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":6.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.616,"geometry_index":365,"location":[11.643565,48.273069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.643024,48.274662],"geometry_index":367,"admin_index":0,"weight":12.33,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.112,"bearings":[1,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.641829,48.278266],"geometry_index":370,"admin_index":0,"weight":6.07,"is_urban":false,"turn_weight":1,"duration":5.815,"bearings":[152,168,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":8.983,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.86,"geometry_index":371,"location":[11.641322,48.279747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":57.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":52.741,"geometry_index":374,"location":[11.640476,48.282036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,338],"duration":5.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.342,"geometry_index":387,"location":[11.633176,48.296159]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.632362,48.297531],"geometry_index":390,"admin_index":0,"weight":9.994,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.528,"bearings":[158,339,352],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[141,159,339],"duration":5.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":5.265,"geometry_index":392,"location":[11.63088,48.300051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":18.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.066,"geometry_index":394,"location":[11.630132,48.301329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":4.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.271,"geometry_index":398,"location":[11.627573,48.305731]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.283,"geometry_index":399,"location":[11.626979,48.306746]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,338],"duration":1.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.747,"geometry_index":400,"location":[11.626804,48.307045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":9.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.41,"geometry_index":401,"location":[11.626559,48.30745]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.625192,48.309642],"geometry_index":403,"admin_index":0,"weight":8.494,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.719,"bearings":[156,336,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,337],"duration":10.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.828,"geometry_index":405,"location":[11.623865,48.311631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,339],"duration":8.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.74,"geometry_index":406,"location":[11.622403,48.313946]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.291,"geometry_index":407,"location":[11.621187,48.316035]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":24.208,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.998,"geometry_index":408,"location":[11.620757,48.316787]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.617599,48.322321],"geometry_index":411,"admin_index":0,"weight":5.548,"is_urban":false,"turn_weight":1,"duration":4.795,"bearings":[138,160,340],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":11.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.608,"geometry_index":413,"location":[11.616989,48.32341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,341],"duration":7.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.003,"geometry_index":414,"location":[11.615589,48.326029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":8.907,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.239,"geometry_index":415,"location":[11.614687,48.327757]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,339],"duration":1.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.27,"geometry_index":416,"location":[11.613623,48.329796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":5.567,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.15,"geometry_index":417,"location":[11.613443,48.330108]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":4.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.879,"geometry_index":418,"location":[11.612715,48.331366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,339],"duration":5.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.527,"geometry_index":421,"location":[11.612161,48.332315]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.611395,48.333666],"geometry_index":423,"admin_index":0,"weight":29.095,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.334,"bearings":[159,339,353],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.607128,48.341131],"geometry_index":428,"admin_index":0,"weight":1.895,"is_urban":false,"turn_weight":1,"duration":1.013,"bearings":[153,159,338],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":0.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.741,"geometry_index":429,"location":[11.606983,48.341374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,339],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.926,"geometry_index":430,"location":[11.60686,48.341577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,338],"duration":5.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.999,"geometry_index":431,"location":[11.606716,48.341829]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":162.343,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":146.109,"geometry_index":432,"location":[11.605915,48.34318]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":6.343,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.709,"geometry_index":446,"location":[11.597303,48.384389]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.597455,48.386046],"geometry_index":448,"admin_index":0,"weight":8.262,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.201,"bearings":[1,13,183],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.597366,48.388333],"geometry_index":450,"admin_index":0,"weight":3.324,"is_urban":false,"turn_weight":1,"duration":2.604,"bearings":[168,176,353],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":0.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.648,"geometry_index":453,"location":[11.597234,48.388961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,350],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.166,"geometry_index":454,"location":[11.597198,48.389139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,349],"duration":39.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":35.269,"geometry_index":455,"location":[11.597114,48.389462]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,336],"duration":1.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.345,"geometry_index":468,"location":[11.591885,48.39814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,341],"duration":70.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":65.193,"geometry_index":469,"location":[11.591668,48.398466]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[0,160,179],"duration":39.348,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.39,"geometry_index":482,"location":[11.589694,48.415381]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":7.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.557,"geometry_index":487,"location":[11.58961,48.424903]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.589591,48.426615],"geometry_index":489,"admin_index":0,"weight":7.978,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.644,"bearings":[13,180,359],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.589565,48.428677],"geometry_index":491,"admin_index":0,"weight":7.73,"is_urban":false,"turn_weight":1,"duration":7.295,"bearings":[170,180,359],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.753,"geometry_index":492,"location":[11.589515,48.430403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":6.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.406,"geometry_index":493,"location":[11.589499,48.430848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":52.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.427,"geometry_index":495,"location":[11.589482,48.432661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":5.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.03,"geometry_index":503,"location":[11.589847,48.446452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":25.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":22.742,"geometry_index":504,"location":[11.590044,48.447907]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":24.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":22.495,"geometry_index":507,"location":[11.59091,48.454507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,345],"duration":6.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.739,"geometry_index":518,"location":[11.590095,48.460996]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.589444,48.46261],"geometry_index":519,"admin_index":0,"weight":12.706,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.125,"bearings":[3,165,345],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.588054,48.466086],"geometry_index":520,"admin_index":0,"weight":3.791,"is_urban":false,"turn_weight":1,"duration":3.108,"bearings":[139,165,346],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,345],"duration":4.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.491,"geometry_index":521,"location":[11.587763,48.46684]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":150.487,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":139.201,"geometry_index":522,"location":[11.587275,48.468051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.065,"geometry_index":566,"location":[11.590276,48.503956]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,330],"duration":1.577,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.498,"geometry_index":567,"location":[11.589854,48.504425]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,329],"duration":2.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.275,"geometry_index":568,"location":[11.58954,48.504783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.58906,48.505315],"geometry_index":569,"admin_index":0,"weight":8.389,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.076,"bearings":[149,329,342],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.587244,48.507337],"geometry_index":571,"admin_index":0,"weight":5.316,"is_urban":false,"turn_weight":1,"duration":4.551,"bearings":[139,149,329],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,328],"duration":10.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.99,"geometry_index":573,"location":[11.586349,48.508339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":39.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":36.824,"geometry_index":577,"location":[11.584457,48.510808]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.993,"geometry_index":596,"location":[11.583304,48.520901]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,192],"duration":21.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.721,"geometry_index":597,"location":[11.583393,48.521173]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,215],"duration":10.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.343,"geometry_index":607,"location":[11.586798,48.526126]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":9.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.965,"geometry_index":608,"location":[11.589227,48.528255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":0.804,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.723,"geometry_index":609,"location":[11.591578,48.530291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,216],"duration":3.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.431,"geometry_index":610,"location":[11.591757,48.530455]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":22.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.425,"geometry_index":611,"location":[11.592647,48.531228]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[182,358],"duration":53.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":48.473,"geometry_index":624,"location":[11.595397,48.536609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,339],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.96,"geometry_index":635,"location":[11.592279,48.550085]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,336],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.309,"geometry_index":639,"location":[11.590116,48.553421]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.589404,48.554523],"geometry_index":641,"admin_index":0,"weight":5.114,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.691,"bearings":[10,157,341],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.588837,48.555922],"geometry_index":644,"admin_index":0,"weight":6.8,"is_urban":false,"turn_weight":1,"duration":6.452,"bearings":[149,167,350],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,359],"duration":9.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.521,"geometry_index":647,"location":[11.588575,48.557515]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":15.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.77,"geometry_index":653,"location":[11.588838,48.559867]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":6.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.091,"geometry_index":658,"location":[11.590494,48.563521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":28.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.531,"geometry_index":659,"location":[11.59128,48.565132]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,181],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.893,"geometry_index":670,"location":[11.592695,48.572105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,182],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.617,"geometry_index":671,"location":[11.592708,48.572347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,181],"duration":10.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.35,"geometry_index":672,"location":[11.592712,48.57253]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.59282,48.575249],"geometry_index":677,"admin_index":0,"weight":15.274,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.994,"bearings":[10,182,359],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,325],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.265,"geometry_index":689,"location":[11.591052,48.579471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,325],"duration":16.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.595,"geometry_index":690,"location":[11.590728,48.579774]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.585721,48.582334],"geometry_index":706,"admin_index":0,"weight":6.184,"is_urban":false,"turn_weight":1,"duration":5.768,"bearings":[99,114,295],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":2.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.913,"geometry_index":708,"location":[11.583645,48.58297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,295],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.53,"geometry_index":709,"location":[11.582869,48.583197]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":0.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.499,"geometry_index":710,"location":[11.581862,48.583513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.32,"geometry_index":711,"location":[11.581667,48.583574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":8.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.93,"geometry_index":712,"location":[11.579946,48.584103]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,303],"duration":0.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.312,"geometry_index":716,"location":[11.576882,48.585194]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,302],"duration":28.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":25.98,"geometry_index":717,"location":[11.576767,48.585243]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,322],"duration":2.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.607,"geometry_index":725,"location":[11.568383,48.590627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":18.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.807,"geometry_index":726,"location":[11.567688,48.591212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.121,"geometry_index":728,"location":[11.563189,48.594983]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":12.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.121,"geometry_index":729,"location":[11.562897,48.595227]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.841,"geometry_index":730,"location":[11.559925,48.597725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,319],"duration":2.581,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.387,"geometry_index":731,"location":[11.559703,48.597912]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,319],"duration":13.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.503,"geometry_index":732,"location":[11.559031,48.59843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":2.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.122,"geometry_index":735,"location":[11.555361,48.601057]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":19.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.123,"geometry_index":736,"location":[11.55475,48.601478]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,317],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.841,"geometry_index":739,"location":[11.549408,48.605134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,316],"duration":16.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.401,"geometry_index":740,"location":[11.549169,48.605304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,325],"duration":5.989,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.539,"geometry_index":745,"location":[11.545072,48.608658]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.543706,48.609925],"geometry_index":748,"admin_index":0,"weight":14.462,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.641,"bearings":[144,324,335],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.539976,48.613193],"geometry_index":753,"admin_index":0,"weight":2.681,"is_urban":false,"turn_weight":1,"duration":1.836,"bearings":[121,140,318],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,316],"duration":4.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.028,"geometry_index":755,"location":[11.53949,48.613545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,313],"duration":9.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.794,"geometry_index":757,"location":[11.538277,48.614354]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,306],"duration":0.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.623,"geometry_index":761,"location":[11.535292,48.615989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,306],"duration":44.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":40.361,"geometry_index":762,"location":[11.535076,48.616093]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.997,"geometry_index":778,"location":[11.525272,48.625473]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,352],"duration":60.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":56.166,"geometry_index":779,"location":[11.525199,48.625756]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":0.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.637,"geometry_index":791,"location":[11.519228,48.641036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":7.235,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.873,"geometry_index":792,"location":[11.519135,48.641194]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.518116,48.642926],"geometry_index":793,"admin_index":0,"weight":7.21,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.801,"bearings":[159,339,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.517033,48.644794],"geometry_index":797,"admin_index":0,"weight":1.291,"is_urban":false,"turn_weight":1,"duration":0.322,"bearings":[145,159,339],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":1.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.97,"geometry_index":798,"location":[11.516989,48.644869]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":1.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.713,"geometry_index":799,"location":[11.51684,48.645121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.059,"geometry_index":800,"location":[11.516589,48.645568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":8.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.973,"geometry_index":801,"location":[11.515814,48.646891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.993,"geometry_index":804,"location":[11.514822,48.649027]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,349],"duration":8.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.069,"geometry_index":805,"location":[11.514725,48.649295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":2.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.062,"geometry_index":807,"location":[11.514127,48.651521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,350],"duration":1.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.825,"geometry_index":808,"location":[11.513979,48.652101]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,351],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.979,"geometry_index":809,"location":[11.51385,48.652609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":78.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":70.937,"geometry_index":810,"location":[11.513784,48.652871]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,337],"duration":15.888,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.3,"geometry_index":822,"location":[11.506523,48.672695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,338],"duration":4.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.968,"geometry_index":823,"location":[11.504116,48.676501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":6.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.361,"geometry_index":824,"location":[11.503455,48.677591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.502529,48.679063],"geometry_index":827,"admin_index":0,"weight":15.995,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.287,"bearings":[157,338,346],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.499618,48.683353],"geometry_index":830,"admin_index":0,"weight":4.703,"is_urban":false,"turn_weight":1,"duration":4.133,"bearings":[148,156,335],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,334],"duration":85.851,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":79.413,"geometry_index":832,"location":[11.498928,48.684332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":2.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.775,"geometry_index":845,"location":[11.487267,48.705386]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.301,"geometry_index":846,"location":[11.486972,48.706102]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":4.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.911,"geometry_index":847,"location":[11.486938,48.706184]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.486519,48.707197],"geometry_index":848,"admin_index":0,"weight":1.045,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.092,"bearings":[165,343,358],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":7.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.505,"geometry_index":849,"location":[11.486409,48.707437]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.485621,48.709163],"geometry_index":852,"admin_index":0,"weight":6.161,"is_urban":false,"turn_weight":0.5,"duration":5.814,"bearings":[153,163,343],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":2.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.963,"geometry_index":855,"location":[11.485017,48.710446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,341],"duration":1.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.81,"geometry_index":856,"location":[11.484805,48.710891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":2.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.256,"geometry_index":857,"location":[11.484589,48.711304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,342],"duration":1.433,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.397,"geometry_index":858,"location":[11.484326,48.71184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,342],"duration":51.392,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":50.107,"geometry_index":859,"location":[11.484159,48.712175]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":1.653,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.612,"geometry_index":867,"location":[11.477606,48.723961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,333],"duration":15.575,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.186,"geometry_index":868,"location":[11.47734,48.72433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,334],"duration":4.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.155,"geometry_index":869,"location":[11.474721,48.727723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,333],"duration":33.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":32.187,"geometry_index":870,"location":[11.474017,48.728658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.265,"geometry_index":871,"location":[11.468425,48.736025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":12.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.285,"geometry_index":872,"location":[11.46751,48.737231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":32.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":32.616,"geometry_index":873,"location":[11.465375,48.740043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,335],"duration":1.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.476,"geometry_index":874,"location":[11.459852,48.747317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":5.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.129,"geometry_index":875,"location":[11.459625,48.747642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,341],"duration":6.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.679,"geometry_index":878,"location":[11.458916,48.748795]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.458194,48.750346],"geometry_index":882,"admin_index":0,"weight":10.789,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.282,"bearings":[165,347,356],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":3.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.859,"geometry_index":885,"location":[11.457505,48.75276]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[169,177,358],"duration":3.393,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":3.555,"geometry_index":887,"location":[11.457392,48.753637]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,178],"duration":3.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.195,"geometry_index":888,"location":[11.45736,48.75435]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,182],"duration":17.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":18.45,"geometry_index":890,"location":[11.457388,48.754986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":0.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.118,"geometry_index":894,"location":[11.458091,48.758636]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":1.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.063,"geometry_index":895,"location":[11.458098,48.758664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":0.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.236,"geometry_index":896,"location":[11.458162,48.758903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":9.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.177,"geometry_index":897,"location":[11.458176,48.758957]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":14.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.239,"geometry_index":898,"location":[11.458724,48.761128]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":13.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.899,"geometry_index":899,"location":[11.459576,48.764526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,190],"duration":3.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.701,"geometry_index":900,"location":[11.460393,48.767652]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.969,"geometry_index":901,"location":[11.460566,48.768485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":3.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.426,"geometry_index":902,"location":[11.460652,48.768927]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.460778,48.769705],"geometry_index":903,"admin_index":0,"weight":6.923,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.601,"bearings":[5,23,186],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.460975,48.771265],"geometry_index":904,"admin_index":0,"weight":4.86,"is_urban":false,"turn_weight":1,"duration":3.695,"bearings":[3,158,185],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.363,"geometry_index":905,"location":[11.461044,48.772132]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":2.501,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.626,"geometry_index":906,"location":[11.461077,48.772675]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.461103,48.773271],"geometry_index":908,"admin_index":0,"weight":6.742,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.441,"bearings":[0,24,181],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.461108,48.774824],"geometry_index":910,"admin_index":0,"weight":10.45,"is_urban":false,"turn_weight":1,"duration":9.021,"bearings":[153,180,358],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,355],"duration":7.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":7.938,"geometry_index":912,"location":[11.46097,48.777023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,356],"duration":1.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.738,"geometry_index":913,"location":[11.460746,48.778819]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":12.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":13.9,"geometry_index":914,"location":[11.460699,48.779217]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.701,"geometry_index":915,"location":[11.460259,48.782367]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":48.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":49.692,"geometry_index":917,"location":[11.460237,48.782529]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":74.606,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":72.74,"geometry_index":925,"location":[11.462825,48.79504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,191],"duration":6.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.95,"geometry_index":939,"location":[11.466813,48.814343]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.467472,48.815885],"geometry_index":941,"admin_index":0,"weight":6.275,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.456,"bearings":[18,28,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.454,"geometry_index":943,"location":[11.468276,48.81738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":4.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.155,"geometry_index":944,"location":[11.468464,48.817726]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[20,191,200],"duration":6.583,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.411,"geometry_index":945,"location":[11.469005,48.818701]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":50.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":47.81,"geometry_index":946,"location":[11.469827,48.820215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,344],"duration":6.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.708,"geometry_index":964,"location":[11.472247,48.832144]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.471623,48.833594],"geometry_index":966,"admin_index":0,"weight":23.473,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.089,"bearings":[163,344,351],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.468935,48.839724],"geometry_index":972,"admin_index":0,"weight":7.709,"is_urban":false,"turn_weight":1,"duration":7.462,"bearings":[155,164,344],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":34.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":31.353,"geometry_index":975,"location":[11.468146,48.84149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":0.882,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.815,"geometry_index":982,"location":[11.465108,48.849844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":38.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":35.184,"geometry_index":983,"location":[11.465073,48.850062]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":42.007,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.8,"geometry_index":990,"location":[11.465765,48.85942]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":0.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.834,"geometry_index":992,"location":[11.467585,48.869723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":69.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.11,"geometry_index":993,"location":[11.467624,48.869956]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":1.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.48,"geometry_index":1014,"location":[11.466531,48.887225]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":154.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":138.703,"geometry_index":1015,"location":[11.466561,48.887646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,334],"duration":5.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.138,"geometry_index":1050,"location":[11.465317,48.927321]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.464276,48.928606],"geometry_index":1053,"admin_index":0,"weight":7.662,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.304,"bearings":[150,329,339],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.462521,48.9304],"geometry_index":1056,"admin_index":0,"weight":2.099,"is_urban":false,"turn_weight":1,"duration":1.196,"bearings":[120,144,325],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,324],"duration":0.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.453,"geometry_index":1057,"location":[11.462253,48.930648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,324],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.646,"geometry_index":1058,"location":[11.462142,48.930749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,322],"duration":6.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.625,"geometry_index":1059,"location":[11.461983,48.930894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,320],"duration":92.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":83.013,"geometry_index":1060,"location":[11.460499,48.93212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,314],"duration":3.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.804,"geometry_index":1078,"location":[11.434999,48.94872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,319],"duration":6.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.483,"geometry_index":1080,"location":[11.434148,48.949309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.432566,48.950506],"geometry_index":1081,"admin_index":0,"weight":3.208,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.572,"bearings":[139,320,329],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,320],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.842,"geometry_index":1082,"location":[11.431677,48.951195]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,320],"duration":10.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.331,"geometry_index":1083,"location":[11.431449,48.951372]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.429135,48.953462],"geometry_index":1090,"admin_index":0,"weight":7.739,"is_urban":false,"turn_weight":1,"duration":7.496,"bearings":[141,149,331],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"bearings":[156,337],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":1092,"location":[11.427861,48.955133]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"fork","modifier":"left","text":"A 9"},"distanceAlongGeometry":94894.625}],"destinations":"A 9: Nürnberg, Flughafen, Allianz Arena","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 9 ramp toward Nürnberg/Flughafen/Allianz Arena.","modifier":"slight right","bearing_after":323,"bearing_before":307,"location":[11.597462,48.173404]},"speedLimitSign":"vienna","name":"","weight_typical":3233.777,"duration_typical":3408.856,"duration":3408.856,"distance":94894.625,"driving_side":"right","weight":3233.777,"mode":"driving","ref":"A 9","geometry":"wtg{zAkhzbUeDpBeEjHoCnE_DpFiD|FeEpHqCbFoArCeA|BaAvBy@jBwChHq_@p~@iHhQkGdPqNf_@uEhM_AnEoBpD{B`CeCfBsBh@oCTyBEqBa@sBk@mB_AyDiCqb@qX}k@i_@eMeHwEGy@k@qTwQkZcWaYuVg`Aa}@ym@um@uVwXeVqYwL}OoOqTkb@ot@gHiOaGeMmJkVcFmNqIiXGWaGkT{EgR}Gu[eE_UmEsXeDeXyEcb@aEc^QyA_H_g@_DwS{Hqb@qHu]qFeUkFuSkKu]kJgYaE}K}BcGaNw\\mHwPcEsI_CkFuImP{DiHoGoLgMcSk[id@yQoTsWwXeXuVkQuNyJeHuJyGwRwLaG_DqUcM{H{E}As@iCmAmj@qVypDiyA_R_HuSqIcTiIy_@yOum@wUwMeFSI_YgK{o@sVar@_WwHsCmEcBgN{FaeBmq@ocAab@_tAmj@kZcLOEcFqBg]cNio@sVgWsK_SgIyJaE_bBmq@iYgK{]wNk\\eNadC{aAwc@gQ_DoA}T{IkzAkl@UIeHuCwb@cQeRkH_bA_a@cjAqd@g^{N{YsLmQkHseAsb@e|Aim@mBu@kQ_HuBy@shD}sA}x@}[}GoCGCiq@aXwzBs|@whAyd@_GcCoaCe`Au]uNihAmc@iOeG_M}Fg{Bi|@skCkeAyV}JcIuCoL_F}u@g[{XqK}fAwb@koCqeAmx@y[gXmL}{CepAinAcg@wiB_u@aW_Kiz@s\\i`As_@ihAuc@ydAma@ma@_Pub@yOi_@kKyRqFsh@}Lmt@iL{c@eFgr@yE_b@oAcf@}@kh@V_K^sRp@{TfA_XdBcj@rGmTlDuZ~EiPfDiL~BcXxF_xAv]}iA|WivB|g@i\\`IoiC|n@okBxc@qRbE_oAtZocAfViz@|Rm`Bn^q{At^}x@nScp@`Q_c@hMcLdDucAj]{f@fQijAzd@sxAzm@u|Avp@kfBpu@wd@lSae@bSelChiAceB|t@ii@bVqd@lTm}@~c@{T~Km@ZyqAto@uiA|j@k@ZomAzl@mq@t[_cAbf@gnA|m@mlAdl@m~@bd@uQ|IiXhNwxBjjAgN`Ie^hTc|Ar|@uoCjzAqaC~jA_n@zYihCxlAeiE`sBkEnBgf@nTy[rOubDnvA_kBjw@m~BnaAoRfJsmAnl@kc@`T{DjBaPdIwqA|m@u@\\iSnJycHjeDsWtLcCfAu{BzgAeN`HuKtFwN~GmsA`q@kw\\|sPofAjc@e_AbYqu@fPkjA`OadAfFgv@t@g|@kBmo@gDc~@gFm|FyZ{oRsdAyfAcFimB_Jw{@aEyi@mBcfAg@yfAxEgIp@wJzAgPxBcJfAeSfDuk@zKy\\lI}e@rNcYrJkWjKin@nX{k@hYer@~b@in@jb@aX~SaeBlmAk[hTg_@|RkSpLsg@bTwS`JgUfJ{s@rSm\\jIm^tGy]lGe]tEiaAxIsb@lBc_@LgeKbBoqGhFglCGcjAE}e@Tu{AAcvF`DetA\\yTF}g@`@}vAP{jBbByZ^yjB^oD@mtHxCuqDtAgRDce@BsnAoBcoA{DonAuHelAqJ}yAiKkhAuHa{Gsd@av@yEaj@kDwg@eByf@Baq@dBmh@jCof@lE??yd@`H_VbD{x@vRg_@lJ{cBtg@gxEzuAcn@dQujAn]ipElrAqj@jNeXjFaYxDsUnCuQtA}XxAyo@zAsoAsE{a@_EoYgEko@uM{i@eOea@qOkh@}Uys@w`@_vIwdFmy@qf@kcByaAeeBs`Akd@}R_g@wP_eAcVqb@mGyRyBkSeBeQ_AkQ}@ad@g@cTDaUf@kUdAmTvAwe@hFqk@rJ{p@zPyk@~Rcd@jRo\\hQiZtQcc@zXck@|d@_}@pv@i{@xu@i\\jYkUrRg`@~\\uhB~}AuSnQeBzAmz@`t@}b@l`@}c@d]cf@z[ii@vXaTzKan@lV}TbH_ZhH{PnEwSfE_g@hHm^rDmVnBeyAjDslAzC_[n@aZGkYa@ca@wBcYsBo\\eDsTsDsRcE_PqDu]yJcTkHa]sM}YqM_\\}O_b@eV{c@_[w`@}Zmf@ie@uYa[adCyvCg~B}qCgIeJio@sv@iHuIg]k\\qXqVwZeTwY_Rq[iOcQyHe\\cLm[_I}g@yIcTcCg[}AaU]sSZme@rAsr@zFqwBfRkkCbT_{Fpg@gg@nIyc@nKkc@fOw[rMmkAto@wb@|Sc]vPcwBvnAoUvOgBlAs`A`i@{DlBaf@pPoi@lMk\\tFi\\pD{g@bBsUTi`@[qXsAqi@kFmLkBoH{AeRyDmWgGuVcIeTgI{jCadAucBcp@_e@iRio@_Ug_@eK_Z_Gqd@_Hy]wD{R_ByQgA{Rg@ecBoBc~@eAcNYmJGa\\e@wh@m@s@Aq{A{B}CE_WLqHD_YzAek@tHc\\hIwQxFiJnD{OxH}QxIeQpLsYzSiSrQ}QfSeIxIyHnJsLfPyNpTwH|MoEfIwE~IyLnWaHrPsGhPkJhXeKv]cGrUsHb[uGz[aEnSuCjNab@jqBeMno@wR|}@yBdKa`@pjBuN|q@{WbgAyWx|@yArEaBdFyA|E_T|o@yZbz@i]xx@k\\`r@up@lkAw`AhzAwlBjcCqc@lj@uIxK_`FjkGgNfQc{CvxDuJzLk_@~h@u|@~nAor@tiA_r@tiAiYde@uxAdbCgeAxeBqcAzbBsI|Mk`@no@ye@bs@i^nd@}e@jk@ebAphAkw@p{@iPzQoD|D{H|IwzAfdBm_AtgA}\\zd@gGjImGtJqLtQuc@hu@{LnT_[dm@}Qp`@yRhd@mb@ndAoEnL_gA`sCeZnq@i`@nr@o]|k@qYdd@}[db@w[l`@mc@tc@wf@lc@ge@`\\oe@`Ykh@lX{i@`Usp@xRwXxGmYpFuPpC{Fr@sQzB}SnBiZ|Ag~AlF}w@rCm_AxIe_@fGi`A~SmS`Fw_Bti@}_MjbG{HxDgkBt~@gHlDcc@bT_v@l^kOtHuCvAwNhH}ZtNuqAlo@{i@~U{k@dTwl@xPwO`E}p@`NexAhUgc@fHw^`GkObCklEjt@c|IryAgyAtYgcAbV}`Ble@ubAd]}x@pZy~Ahn@yQhH}m@dWkaArd@oiAjl@{lFluCccAhh@mTlLicA~i@gAl@{NzHgaFhyC_YvPwDbCmv@~e@egBnkAmBnA}wH|}Eoy@fh@yi@`[q{@be@wkA|i@qg@zSkdAl`@kx@fWkcFtzAc`GtgB{Bp@wk@lQcDbAi~@dY_NzEaz@`Zq_@xMgOjFkUfIgBn@qu@~XyZfLyXnLo`@lO}SlIywEljBwnDfwAg`Aja@ep@nZasA`r@mm@n]{m@t_@gs@vd@aVrOasEtbDmy@~j@mkMn|IkjAdx@wnDldCseMdxIiSdMiJ|F{]jR{\\~Oud@hRo^lMuR|FaGlBklAzY{g@fIs_@|DuZtCcZjAqk@~@_b@k@wCKaZ_Aqw@mGa`A}LmnAqRw@M}M_CkB[ufCga@ksEgt@kbEar@as@yIsZkDso@{Fo`BiKeu@iC}`@aAmUe@yMMc|@W}b@Le|AtCgk@|BgoB~L{W|A{cEnZ_BJcF^w{@jGiw@`Ck|@Esy@{Cmy@kHi~@yN_iCqm@c|Gk`BogCym@qbI{mB}f@_K_h@yHyiAcKieAyCc@AgwHiKqn@_Cig@eEyi@sG_a@kGk^cI{IcB_w@uTkg@oRoXyK}bAmd@sTwJ}{@y`@s}Akr@akAwi@cnC_nAed@mR_SeH}[mJ_\\qI_^gHce@eH}\\_Eg^iBmp@o@gg@t@uZbBs_@~Cq^bFyg@|Ik[|Ie]pJ{`AxZwWdJodB`l@ay@pX{i@tQmt@hV{dBhk@kX`Ji@RygAn_@gc@dOqjCv{@g}Bru@mq@dSke@pKwq@nNc_AdOss@`IsLdAms@tE{nA~Do{@Gsp@wAwyAmGuiCwV_pBwSg|JacAueGul@qMmAkjDc]of@qDkx@}Akp@hAso@pEiZhEu[dFeXrGkWpG}aCts@q^xHo_@tGyVzCiXzBca@jCg\\lAqs@s@yhAeCgNe@cx@oCgdB{FiY{@c_AyC_tDyLiaAsCufB_QeQwBgkAeSqu@sP{[sIouAkc@ixA{c@yo@gSq\\yIsv@_P{s@qKug@qEo{@uDuf@_@wiCfAy}InFkb@VeaApB}_AzJgp@nHwp@`K{p@bM_yDt}@qmA~X{k@~OiCr@kp@tS{n@lVajAph@wh@xZqi@j]yFnDaSdNea@jZaYnU}s@jp@wg@~f@mQhSoNvOiE|EaH|HskAv{AogC~jDu_AvqAghAn{A_wBtuC}aBj|Bok@d_AaUz`@gd@vy@a{CxuFka@dy@c`@d}@cQdc@}Prd@m\\fbAq{@jiCyWhq@c\\xv@wc@z{@_O~WySd[yiAzaBaj@pv@aJfMsGbJoOnSgVt[aYb[iU`XuOrNePnNop@rh@}u@~d@wf@hYwg@lXs]fUu\\fV}b@d^sY~X]\\a]v^gHpIaPxRoEhFuJrMmr@xbA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 63 miles.","announcement":"Continue for 63 miles.","distanceAlongGeometry":100677.859},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 9.","announcement":"In 2 miles, Keep left to take A 9.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 9.","announcement":"In a half mile, Keep left to take A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 9, E 51.","announcement":"Keep left to take A 9, E 51.","distanceAlongGeometry":210}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[139,319,322],"duration":44.012,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":39.604,"geometry_index":1105,"location":[11.422945,48.960418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,316],"duration":0.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.669,"geometry_index":1122,"location":[11.413419,48.968587]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,315],"duration":7.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.072,"geometry_index":1123,"location":[11.41324,48.968709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":40.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":36.581,"geometry_index":1124,"location":[11.411273,48.969993]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,308],"duration":13.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.85,"geometry_index":1129,"location":[11.400999,48.976581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,311],"duration":54.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.963,"geometry_index":1135,"location":[11.397501,48.978242]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":0.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.193,"geometry_index":1164,"location":[11.387179,48.987404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,329],"duration":14.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.997,"geometry_index":1165,"location":[11.387145,48.987444]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,329],"duration":1.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.637,"geometry_index":1169,"location":[11.384716,48.990186]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.944,"geometry_index":1171,"location":[11.384385,48.990553]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.383995,48.990999],"geometry_index":1173,"admin_index":0,"weight":3.592,"is_urban":false,"turn_weight":1,"duration":2.904,"bearings":[141,151,327],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[147,325],"duration":2.587,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.329,"geometry_index":1174,"location":[11.383421,48.991572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,325],"duration":12.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.638,"geometry_index":1175,"location":[11.382881,48.992077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,314],"duration":32.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":28.833,"geometry_index":1180,"location":[11.379765,48.99448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":0.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.688,"geometry_index":1190,"location":[11.369672,48.998707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,292],"duration":4.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.703,"geometry_index":1191,"location":[11.369402,48.998777]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,292],"duration":1.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.342,"geometry_index":1193,"location":[11.367978,48.999146]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,292],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.062,"geometry_index":1194,"location":[11.367456,48.999282]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.366647,48.999489],"geometry_index":1196,"admin_index":0,"weight":8.959,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.962,"bearings":[111,291,300],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.363192,49.000382],"geometry_index":1199,"admin_index":0,"weight":7.286,"is_urban":false,"turn_weight":1,"duration":7.005,"bearings":[106,112,292],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,303],"duration":26.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":23.717,"geometry_index":1203,"location":[11.36079,49.001119]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":60.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":52.763,"geometry_index":1216,"location":[11.355478,49.006462]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,227],"duration":84.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":75.816,"geometry_index":1241,"location":[11.364536,49.018927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,332],"duration":5.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.11,"geometry_index":1282,"location":[11.358315,49.037942]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.357149,49.039099],"geometry_index":1285,"admin_index":0,"weight":8.429,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.132,"bearings":[141,320,328],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,303],"duration":11.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.198,"geometry_index":1290,"location":[11.354723,49.040571]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.351088,49.041683],"geometry_index":1294,"admin_index":0,"weight":5.877,"is_urban":false,"turn_weight":1,"duration":5.28,"bearings":[101,110,291],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,289],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.807,"geometry_index":1295,"location":[11.349224,49.042143]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":2.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.884,"geometry_index":1296,"location":[11.348912,49.042214]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.34819,49.042381],"geometry_index":1297,"admin_index":0,"weight":7.381,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.987,"bearings":[109,290,303],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.345422,49.043046],"geometry_index":1299,"admin_index":0,"weight":9.144,"is_urban":false,"turn_weight":1,"duration":8.811,"bearings":[99,110,290],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,299],"duration":18.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.947,"geometry_index":1303,"location":[11.342286,49.043867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,318],"duration":1.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.345,"geometry_index":1310,"location":[11.336987,49.046854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,319],"duration":4.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.507,"geometry_index":1311,"location":[11.336621,49.047123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,319],"duration":82.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":74.52,"geometry_index":1312,"location":[11.335403,49.048028]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,308],"duration":2.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.868,"geometry_index":1337,"location":[11.317388,49.0644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,307],"duration":14.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.788,"geometry_index":1338,"location":[11.316834,49.064682]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":1.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.404,"geometry_index":1339,"location":[11.313107,49.066536]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":77.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":67.495,"geometry_index":1340,"location":[11.312704,49.066737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,322],"duration":2.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.011,"geometry_index":1350,"location":[11.294115,49.076719]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,327],"duration":67.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":58.688,"geometry_index":1351,"location":[11.293672,49.077094]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,350],"duration":1.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.911,"geometry_index":1360,"location":[11.287242,49.090337]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,351],"duration":64.243,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":56.212,"geometry_index":1361,"location":[11.287188,49.090548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,347],"duration":3.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.676,"geometry_index":1365,"location":[11.283758,49.103824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,344],"duration":79.093,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":69.207,"geometry_index":1367,"location":[11.283507,49.10451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":1.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.386,"geometry_index":1383,"location":[11.275554,49.123677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":11.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.954,"geometry_index":1384,"location":[11.275351,49.124045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,340],"duration":4.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.252,"geometry_index":1386,"location":[11.273886,49.126721]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,341],"duration":0.882,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.772,"geometry_index":1387,"location":[11.273246,49.127861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.738,"geometry_index":1388,"location":[11.273135,49.12807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.273035,49.128265],"geometry_index":1389,"admin_index":0,"weight":17.172,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.087,"bearings":[161,340,355],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.270729,49.13278],"geometry_index":1392,"admin_index":0,"weight":6.838,"is_urban":false,"turn_weight":1,"duration":6.496,"bearings":[148,165,349],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":42.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":38.688,"geometry_index":1394,"location":[11.270271,49.134384]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":1.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.334,"geometry_index":1398,"location":[11.2678,49.145092]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":14.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.207,"geometry_index":1399,"location":[11.26772,49.145469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":15.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.581,"geometry_index":1401,"location":[11.266802,49.149267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":0.216,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.194,"geometry_index":1402,"location":[11.265789,49.153734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":17.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.103,"geometry_index":1403,"location":[11.265776,49.153791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":9.495,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.545,"geometry_index":1405,"location":[11.2648,49.158206]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.264412,49.160087],"geometry_index":1406,"admin_index":0,"weight":6.854,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.622,"bearings":[7,172,352],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.263982,49.16204],"geometry_index":1407,"admin_index":0,"weight":6.411,"is_urban":false,"turn_weight":1,"duration":6.019,"bearings":[162,172,352],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,353],"duration":74.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":64.835,"geometry_index":1408,"location":[11.263655,49.163569]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,332],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.71,"geometry_index":1422,"location":[11.256204,49.181781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,331],"duration":20.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.027,"geometry_index":1423,"location":[11.256055,49.181964]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,332],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.717,"geometry_index":1427,"location":[11.252216,49.18651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,331],"duration":8.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.77,"geometry_index":1428,"location":[11.252069,49.186688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":12.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.985,"geometry_index":1429,"location":[11.250347,49.188728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":4.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.166,"geometry_index":1431,"location":[11.247981,49.191528]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,330],"duration":22.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.667,"geometry_index":1432,"location":[11.247086,49.19259]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":1.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.028,"geometry_index":1434,"location":[11.242722,49.197761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,330],"duration":36.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":32.553,"geometry_index":1435,"location":[11.242504,49.198025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.856,"geometry_index":1438,"location":[11.235403,49.206396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":35.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":31.771,"geometry_index":1439,"location":[11.235215,49.206617]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.692,"geometry_index":1442,"location":[11.228509,49.214563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,335],"duration":11.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.779,"geometry_index":1443,"location":[11.228372,49.214736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,346],"duration":5.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.203,"geometry_index":1447,"location":[11.226636,49.217626]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.22609,49.219087],"geometry_index":1449,"admin_index":0,"weight":16.354,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.192,"bearings":[0,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.224504,49.223738],"geometry_index":1451,"admin_index":0,"weight":1.153,"is_urban":false,"turn_weight":1,"duration":0.177,"bearings":[153,167,349],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,347],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.856,"geometry_index":1452,"location":[11.22449,49.223785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.783,"geometry_index":1453,"location":[11.224405,49.224029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":66.274,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":59.647,"geometry_index":1454,"location":[11.22394,49.225385]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,350],"duration":0.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.754,"geometry_index":1460,"location":[11.218143,49.24233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,351],"duration":20.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.107,"geometry_index":1461,"location":[11.218083,49.242543]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":1.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.681,"geometry_index":1462,"location":[11.216835,49.247787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.306,"geometry_index":1463,"location":[11.216724,49.248252]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":4.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.106,"geometry_index":1464,"location":[11.216643,49.248607]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.216376,49.249735],"geometry_index":1465,"admin_index":0,"weight":5.295,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.731,"bearings":[6,171,351],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":2.772,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.564,"geometry_index":1467,"location":[11.216036,49.251144]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.215872,49.251824],"geometry_index":1468,"admin_index":0,"weight":10.794,"is_urban":false,"turn_weight":1,"duration":10.596,"bearings":[160,171,351],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":0.917,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.849,"geometry_index":1470,"location":[11.215246,49.254492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":8.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.574,"geometry_index":1471,"location":[11.21519,49.254726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.024,"geometry_index":1472,"location":[11.214709,49.256787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":21.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.271,"geometry_index":1473,"location":[11.214648,49.257072]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.833,"geometry_index":1475,"location":[11.213317,49.262639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":53.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":46.53,"geometry_index":1476,"location":[11.213259,49.262875]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":80.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":70.08,"geometry_index":1482,"location":[11.21001,49.276648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":0.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.662,"geometry_index":1491,"location":[11.208429,49.297594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":66.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":58.072,"geometry_index":1492,"location":[11.208418,49.297779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,356],"duration":0.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.281,"geometry_index":1496,"location":[11.207574,49.314498]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":25.806,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.58,"geometry_index":1497,"location":[11.207566,49.314583]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":11.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.793,"geometry_index":1502,"location":[11.206667,49.32106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":21.386,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.713,"geometry_index":1503,"location":[11.206292,49.323866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":1.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.31,"geometry_index":1506,"location":[11.205552,49.329237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":46.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":41.014,"geometry_index":1507,"location":[11.205501,49.329614]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":5.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.942,"geometry_index":1512,"location":[11.203956,49.341144]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.203933,49.342504],"geometry_index":1515,"admin_index":0,"weight":9.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.545,"bearings":[13,179,360],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":6.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.535,"geometry_index":1518,"location":[11.203903,49.34503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":3.712,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.341,"geometry_index":1519,"location":[11.203865,49.346501]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.203853,49.34739],"geometry_index":1522,"admin_index":0,"weight":5.572,"is_urban":false,"turn_weight":1,"duration":5.087,"bearings":[175,179,359],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":5.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.148,"geometry_index":1524,"location":[11.20383,49.34853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,179],"duration":2.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.59,"geometry_index":1525,"location":[11.203805,49.349817]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":6.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.105,"geometry_index":1526,"location":[11.203809,49.350445]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.203787,49.351927],"geometry_index":1528,"admin_index":0,"weight":0.784,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.868,"bearings":[6,178,355],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":9.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.854,"geometry_index":1529,"location":[11.203762,49.352104]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":3.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.214,"geometry_index":1532,"location":[11.203494,49.354128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":16.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.662,"geometry_index":1533,"location":[11.203398,49.354874]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.202914,49.35871],"geometry_index":1536,"admin_index":0,"weight":3.074,"is_urban":false,"turn_weight":1,"duration":2.19,"bearings":[166,175,356],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":1.685,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.601,"geometry_index":1538,"location":[11.202841,49.359224]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.283,"geometry_index":1539,"location":[11.202793,49.359615]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":1.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.962,"geometry_index":1540,"location":[11.202749,49.359933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":7.987,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.588,"geometry_index":1541,"location":[11.202714,49.360177]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,356],"duration":0.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.803,"geometry_index":1542,"location":[11.202479,49.362086]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":78.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":74.529,"geometry_index":1543,"location":[11.202455,49.362288]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,191],"duration":5.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.397,"geometry_index":1555,"location":[11.200892,49.38198]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,190],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.741,"geometry_index":1556,"location":[11.201274,49.383421]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":2.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.092,"geometry_index":1558,"location":[11.201441,49.38415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.013,"geometry_index":1559,"location":[11.201574,49.384702]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":4.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.637,"geometry_index":1560,"location":[11.201636,49.384964]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,188],"duration":6.542,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.215,"geometry_index":1562,"location":[11.201926,49.386215]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":3.858,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.646,"geometry_index":1565,"location":[11.202211,49.387902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":1.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.613,"geometry_index":1567,"location":[11.202227,49.388914]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.742,"geometry_index":1568,"location":[11.202203,49.389366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,356],"duration":4.313,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.098,"geometry_index":1569,"location":[11.202192,49.389569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":0.917,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.871,"geometry_index":1571,"location":[11.202031,49.390709]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.201981,49.39095],"geometry_index":1573,"admin_index":0,"weight":0.209,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.24,"bearings":[172,351,356],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":6.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.723,"geometry_index":1574,"location":[11.201968,49.391002]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":22.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":21.323,"geometry_index":1578,"location":[11.201549,49.392452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":4.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.725,"geometry_index":1583,"location":[11.198956,49.397672]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":5.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.324,"geometry_index":1584,"location":[11.198348,49.39881]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":5.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.43,"geometry_index":1585,"location":[11.197673,49.400096]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":5.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.936,"geometry_index":1586,"location":[11.196988,49.401405]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,345],"duration":13.101,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.446,"geometry_index":1589,"location":[11.196401,49.402606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":2.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.954,"geometry_index":1595,"location":[11.195614,49.405732]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,358],"duration":11.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.919,"geometry_index":1596,"location":[11.19556,49.406235]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,185],"duration":8.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.282,"geometry_index":1600,"location":[11.195691,49.408616]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,191],"duration":1.128,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.071,"geometry_index":1603,"location":[11.19614,49.410397]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.196231,49.410625],"geometry_index":1604,"admin_index":0,"weight":4.084,"is_urban":false,"turn_weight":1,"duration":3.266,"bearings":[15,184,195],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":48.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":44.465,"geometry_index":1605,"location":[11.196392,49.411028]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":28.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.729,"geometry_index":1610,"location":[11.200418,49.41652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,215],"duration":14.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.405,"geometry_index":1613,"location":[11.20352,49.419548]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.205097,49.421138],"geometry_index":1616,"admin_index":0,"weight":15.137,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.838,"bearings":[33,53,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.207368,49.423382],"geometry_index":1618,"admin_index":0,"weight":6.571,"is_urban":false,"turn_weight":1,"duration":6.198,"bearings":[34,193,212],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":0.966,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.869,"geometry_index":1619,"location":[11.208464,49.424427]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":57.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.708,"geometry_index":1620,"location":[11.208633,49.424588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":6.585,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.762,"geometry_index":1624,"location":[11.2193,49.434205]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":5.532,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.84,"geometry_index":1625,"location":[11.220518,49.435294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":9.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.605,"geometry_index":1626,"location":[11.22154,49.436208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":16.779,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.674,"geometry_index":1627,"location":[11.223361,49.437831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":20.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.517,"geometry_index":1629,"location":[11.226463,49.440611]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,216],"duration":14.839,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.984,"geometry_index":1631,"location":[11.230175,49.443926]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":11.722,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.55,"geometry_index":1633,"location":[11.232704,49.446483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.234627,49.448532],"geometry_index":1635,"admin_index":0,"weight":11.34,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.61,"bearings":[28,38,212],"out":1,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":13.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.995,"geometry_index":1638,"location":[11.237324,49.450915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,207],"duration":4.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.86,"geometry_index":1643,"location":[11.239867,49.453562]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.240509,49.45448],"geometry_index":1644,"admin_index":0,"weight":26.595,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.557,"bearings":[24,32,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":14.362,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.285,"geometry_index":1651,"location":[11.245819,49.460652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":1.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.393,"geometry_index":1655,"location":[11.248565,49.46359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,210],"duration":2.351,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.175,"geometry_index":1656,"location":[11.248852,49.463907]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.249338,49.464384],"geometry_index":1657,"admin_index":0,"weight":2.27,"is_urban":false,"turn_weight":1,"duration":1.397,"bearings":[30,204,214],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":41.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":38.787,"geometry_index":1658,"location":[11.249596,49.464671]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":5.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.886,"geometry_index":1670,"location":[11.259638,49.473476]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":56.606,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":53.775,"geometry_index":1672,"location":[11.260978,49.474504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":35.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.135,"geometry_index":1680,"location":[11.273678,49.486791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":3.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.811,"geometry_index":1684,"location":[11.281053,49.494894]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":3.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.243,"geometry_index":1685,"location":[11.281853,49.495776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.282535,49.496528],"geometry_index":1686,"admin_index":0,"weight":9.059,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.298,"bearings":[31,51,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.284469,49.498617],"geometry_index":1688,"admin_index":0,"weight":8.988,"is_urban":false,"turn_weight":1.2,"duration":7.796,"bearings":[32,194,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":63.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.594,"geometry_index":1691,"location":[11.286212,49.500296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.304,"geometry_index":1699,"location":[11.301595,49.513259]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.046,"geometry_index":1700,"location":[11.301669,49.513329]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":8.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.52,"geometry_index":1701,"location":[11.301909,49.513557]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":3.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.999,"geometry_index":1704,"location":[11.303851,49.515413]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.30453,49.516064],"geometry_index":1705,"admin_index":0,"weight":7.465,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.865,"bearings":[34,53,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.306295,49.517748],"geometry_index":1707,"admin_index":0,"weight":5.711,"is_urban":false,"turn_weight":0.5,"duration":5.493,"bearings":[34,191,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":110.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":102.5,"geometry_index":1708,"location":[11.307548,49.518933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":6.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.026,"geometry_index":1719,"location":[11.321066,49.546205]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.321593,49.547875],"geometry_index":1720,"admin_index":0,"weight":15.254,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.499,"bearings":[11,27,192],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.322873,49.552115],"geometry_index":1721,"admin_index":0,"weight":6.251,"is_urban":false,"turn_weight":1,"duration":5.685,"bearings":[12,172,191],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":7.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.234,"geometry_index":1723,"location":[11.323318,49.553563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":1.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.042,"geometry_index":1724,"location":[11.323905,49.555503]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":28.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.262,"geometry_index":1725,"location":[11.323985,49.555782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,205],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.527,"geometry_index":1731,"location":[11.327355,49.562951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.328246,49.564058],"geometry_index":1734,"admin_index":0,"weight":7.066,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.446,"bearings":[30,44,208],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.329849,49.565732],"geometry_index":1738,"admin_index":0,"weight":3.671,"is_urban":false,"turn_weight":1,"duration":2.832,"bearings":[33,199,214],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,213],"duration":0.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.771,"geometry_index":1739,"location":[11.33047,49.566348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.743,"geometry_index":1740,"location":[11.330669,49.566532]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.291,"geometry_index":1742,"location":[11.33134,49.56716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.717,"geometry_index":1743,"location":[11.332142,49.567909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":19.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.792,"geometry_index":1744,"location":[11.332319,49.568072]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":40.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.072,"geometry_index":1746,"location":[11.336782,49.572202]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":15.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.552,"geometry_index":1756,"location":[11.346374,49.580645]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":12.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.558,"geometry_index":1764,"location":[11.349857,49.583768]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,225],"duration":18.874,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.986,"geometry_index":1770,"location":[11.352772,49.586466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,226],"duration":56.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.771,"geometry_index":1780,"location":[11.356634,49.590554]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.617,"geometry_index":1803,"location":[11.365651,49.603134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,205],"duration":0.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.031,"geometry_index":1804,"location":[11.365767,49.603295]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,208],"duration":26.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":22.86,"geometry_index":1805,"location":[11.365772,49.603301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,217],"duration":0.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.03,"geometry_index":1811,"location":[11.370786,49.609303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":54.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":48,"geometry_index":1812,"location":[11.370791,49.609307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,251],"duration":29.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":26.22,"geometry_index":1834,"location":[11.390689,49.614999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":6.353,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.718,"geometry_index":1841,"location":[11.402654,49.618831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.405236,49.619709],"geometry_index":1843,"admin_index":0,"weight":5.754,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.4,"bearings":[62,242],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.592,"geometry_index":1846,"location":[11.407715,49.620634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,236],"duration":4.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.966,"geometry_index":1847,"location":[11.407956,49.620741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":5.375,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.818,"geometry_index":1850,"location":[11.409445,49.621569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":7.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.034,"geometry_index":1855,"location":[11.41104,49.622737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":32.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.455,"geometry_index":1857,"location":[11.413233,49.624528]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.878,"geometry_index":1865,"location":[11.422419,49.63241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":1.556,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.4,"geometry_index":1866,"location":[11.422647,49.632655]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":40.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.039,"geometry_index":1867,"location":[11.423012,49.633049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":5.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.785,"geometry_index":1887,"location":[11.43386,49.643855]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.434671,49.645496],"geometry_index":1890,"admin_index":0,"weight":9.09,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.109,"bearings":[23,42,199],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.436875,49.647804],"geometry_index":1897,"admin_index":0,"weight":7.005,"is_urban":false,"turn_weight":1,"duration":6.873,"bearings":[43,203,219],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,233],"duration":45.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":39.802,"geometry_index":1902,"location":[11.439019,49.648995]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,220],"duration":45.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":40.909,"geometry_index":1926,"location":[11.45549,49.653903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":6.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.632,"geometry_index":1938,"location":[11.46691,49.663518]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.46796,49.665044],"geometry_index":1942,"admin_index":0,"weight":4.371,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.883,"bearings":[19,31,203],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.468552,49.666268],"geometry_index":1944,"admin_index":0,"weight":1.817,"is_urban":false,"turn_weight":1,"duration":0.931,"bearings":[13,170,196],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,193],"duration":7.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.359,"geometry_index":1945,"location":[11.46864,49.666506]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,185],"duration":23.081,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.772,"geometry_index":1948,"location":[11.469068,49.668374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":0.849,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.764,"geometry_index":1954,"location":[11.468435,49.674513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":54.333,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.542,"geometry_index":1955,"location":[11.468397,49.674734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":48.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":42.146,"geometry_index":1962,"location":[11.466301,49.689317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":7.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.475,"geometry_index":1978,"location":[11.465795,49.702235]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.466574,49.704167],"geometry_index":1982,"admin_index":0,"weight":3.474,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.977,"bearings":[17,49,197],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.467133,49.705163],"geometry_index":1985,"admin_index":0,"weight":7.39,"is_urban":false,"turn_weight":1,"duration":7.311,"bearings":[23,182,201],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":127.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":111.36,"geometry_index":1988,"location":[11.468378,49.706902]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,240],"duration":1.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.059,"geometry_index":2017,"location":[11.506665,49.726767]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":6.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.493,"geometry_index":2018,"location":[11.507068,49.726933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,226],"duration":3.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.024,"geometry_index":2021,"location":[11.509007,49.727928]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,222],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.172,"geometry_index":2023,"location":[11.50994,49.728569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[36,219],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"geometry_index":2024,"location":[11.510272,49.728834]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 9 / E 51"},"distanceAlongGeometry":100711.195},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 9 / E 51"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 9.","modifier":"slight left","bearing_after":319,"bearing_before":319,"location":[11.422945,48.960418]},"speedLimitSign":"vienna","name":"","weight_typical":3319.469,"duration_typical":3661.983,"duration":3661.983,"distance":100711.195,"driving_side":"right","weight":3319.469,"mode":"driving","ref":"A 9","geometry":"cyhk|AamexTwJtNcQ`VmYf`@ee@zl@gPhRkXfYya@z_@kZzX_vAjqAil@vn@cRpVoWj\\ea@|j@ib@pm@eZxg@iSl]iQj[sFdJgoA|yB}fFhcJ}`BxtC}e@f{@g]rs@uKbVwF~Ms]l`AyNha@oTho@iOba@yJlTINsLvVeN~WwJbQ_NnTgIdLgNxQkSvUgNtN{SbRoUxQ}g@t\\oPfLuf@j^{SdTcVj]eIxM_IjMoUha@{KrRgGpKuXpd@mSn\\gJpNkR`VoTrVs]p]q\\hY{n@bg@oAbAoZxW{c@v`@ee@v_@ycAn{@wGzFeMxKmIlHmP|Myb@zb@q^v`@}Yd\\u]tc@a^jg@aWv_@md@vv@{^tq@sd@taA__@d}@c\\f}@iI|VaPnf@eTft@_\\hpAw\\v}AgYf_BkCzOoNtz@qFh\\oGr_@uJdl@g@jD_I~e@w^l{BaMns@e@pCcK|l@uOhu@aOhl@cRfk@aVrl@uYbk@kXz`@wV|ZsQhRwJrJaOrL}PhMeQ~K_TfL}_@zNmnAdb@uvA`f@mg@zLw[jD}]`Bk[Hw]wBaZsEg]aHcTqFgVwJ{OuH}PyJ{OyKe[cVyUeVcRiTyPeV_RiYsUs`@ed@c{@ylAa|Bqk@yhAid@my@oc@m{@yNcYuHmMoQsY{NqSiRcUsV{UoOkM{U{OaWwK{UqKqXoJeQgE}]wHq\\wCwViAwUZmZrBa\\zDqYlGoTrGkPnGmR|JkRhKuWjRiRvP_OrMgXjX_uBbwBul@nk@u]tYsVbSsUhQw`@rWc]bSoYtOy\\|Og~A~p@ai@xRsq@jYuh@bWeObKwJtGmSlOsc@vd@gNtQePhUoLjQ{Vva@gZxq@eIjXgQ~i@eVteA{M`x@eLlw@w[nsBmCnRmIbl@gS~rAiT~wAoRhqAoInh@_Irc@iJpb@qJ`_@mStq@_]z}@kU`f@eYli@eo@x_A}Zff@yOzUqw@bkAio@v_A{iAj`Bmi@zy@}RrWyVzZcSrU}P~QcWjViVhToTnQqZlS_c@lYy`EhgCkqA`y@qRrMk_@`Zyk@hi@aY|Yga@tf@cQ|Te^th@o^pn@kWhf@qZlp@ilAxzCsPra@{rB|gFqKdXy|Ab{Dw~Av_EqdBvjE}tBdlFkd@zhAc^|v@aa@nu@gYdh@q_@xl@mt@tcAmVtZsmA~kAwy@dq@aqAv_Agn@h_@wd@`Sqy@d[}y@vUcqB~^sbHriAeLjBcjJn{AkmBn\\stE~w@smCjb@gVzFsRxF}r@nUso@pV_sA`r@{fB~eAgzAzs@kuA|c@y~At[otG~kAckC`d@a^xHa^|Icd@`M{JfEmLnDaVzIyeA|e@_VtKifA|g@}~Arq@gfA~f@aL|EeKfEwrChpA}|@r_@ogAd]ev@bPal@nJgpD`j@gfE`n@{|ArS{eEtj@qV~C{~Ehu@oL`BevGh~@qBXaiCj^{hCr\\qtBfWayBzYq~AlSeeAbLs`Gpw@}~D`g@{m@hJq^xGucApVucBpj@yfA`f@qn@l\\{`@`Vwb@fYyjAp|@_fAb{@{a@d\\mJhHkiAz|@klC~vBeXjTej@tc@cJdHo~BrjBuiAb~@icBvsAkaA|v@{pB~aBipEvlDoOrLgtAfiAcoGndFydD`kCyLvJynExnD{eGv}E}XpSyIpG{c@xXms@x`@ex@d^ca@tPc|@rVe]nIq{Dh_AceBxa@}AZgNhDwsA`\\yRzEeoMd`DukDpz@ehDzw@woBfg@mwBpd@iLvBwfI~lAa\\|EeU`DoeAtOyx@rLg]rFoi@fIa}AhUugAxOsMnBy_C`]yPxBebGx|@wwAjTwMrB}kGtx@adCh`@I@gdHhhAsmAxPsuAzSy~AdTu|@lIin@jFis@|EapErMeeKfQ}_CzD{fChF}zDxEqJTejC|Em}NdYklI`M}|@pDiDNasAtIqeAnHywB|P{bAtGo|@jHknDlV{iAxHkiC`QmyBjQqVdByqDlVqkAfIuzJzv@yx@fDwZv@gv@`@eZHqA@w^JuwBj@mDB}zAjAaJHaR@mXJeDBaaAh@moAp@gf@Gyx@Kya@v@aJp@_M~@w{@pGwr@dEsm@~Dad@pCqs@tEcuC~Q_Nr@cP|AmW~A{RvAgNdAivBtMsKn@yz@hGyjB~LmuAfJsuKjr@_}Htf@wc@|A}c@v@un@mA_VmAa`@_Ecd@cHod@sJayA{V{NeBu\\gFoa@iGkO{Bqx@oLsSsC_f@wGij@cFcV}@wu@m@oGLg[n@uKTct@jEcQtB}LzAc@FgBXqYvEsf@lJqGxA{NdDsDx@{\\fJid@hOye@lRsuEfpBcfA~d@koAdi@ypAxi@_m@~UsK|DmOvFuM~Di_@dJyP|Dqo@jKus@nIi\\dBm^jB_d@p@qn@w@i[wA}b@gD}WsCi_@{Eau@qOgMuDeXaIq[mJ_eAmd@gqAit@szAwnAyeAudAqv@wu@ywAuzA{k@mn@sp@op@cYmYsVsUi_CoaC}JmJi`AocAaIqIohBsmBwwBagCwdJ}oKaPaRacAckAcx@{~@mdBypBwy@i`A_rBq_Co`BelBulByyBg}B}}Bq`@c^}k@uh@crAomAua@uh@a_@kb@eqAozAw[__@ic@{e@wXcXqi@ee@a_@wWkx@cg@g`@qU{g@g\\ah@}]}p@ik@mq@km@{pAckAiwAiqAaB{Ao|AavAuu@ir@k_@k]yR}Py\\k]}PcOkUaSw]{[YW_pAykAwz@ow@ki@_l@_FiGwy@_bAc\\_d@kl@}x@khCavDsb@im@wCcEoz@slAmyA}tBcmAo`BwgCmrCma@cd@iqBujBilB}bBegDgxCkc@{_@yaCkuBuqDibD__DkpC}c@{`@cv@_q@_n@si@m`A{z@c`A_|@}XiXo]u]oo@}s@_s@cz@o_AypA{uEkkHy|@imAou@{{@_}DufEofCglC_d@_g@kCsCgM_N}`@wa@_XqXax@a|@ug@mi@sWsXsoAusAaiAimAur@gu@i~C_fDqaBuaButA}dAolAsu@_cAsb@q~Ayf@qeAsUepMgjCq_HywA{rFgiAkgB}_@_hG_oA_l@cMol@uLgxBuc@mP_DwkAyV}vBui@ikAgc@yjA}g@uj@qZqv@kf@gMgJ_UwP}_@uY{KsJuTcRmb@a`@sa@kc@oe@ye@oJmK{PcRkTyUym@cq@eIaJsmByvBorCc~CmqA_zA{uAu~A_vAo}AkqAquA}r@cx@oa@wc@wVoZcXw\\k^{j@iUwc@wQo_@uNcZ{T_a@}R_ZeXwY}XkWwb@uWa_@gTop@s^sXmTy\\a`@eWya@yXig@uL}SoL_Rq\\ya@eWaTe\\iSuW{McYeNs_@{Ty^k^gZmc@qOmYsHuQePsd@uTyr@sWou@qNk[gSg^sRqXa`@ua@}f@u]af@_S}g@}Jaf@iB}w@E}a@Ye[oC{V_EiXmG_k@uScl@o[{p@ca@}|@si@sm@a`@yo@ec@aIgFKIktDiaCov@_l@_u@ao@if@cf@yf@mk@cDmEGIaSkX}Sy[mX_f@gS}`@[m@iWam@kQgg@mSgq@iQmq@sPsu@mKsk@wLov@{M{`AcQyzAwRmtBySwaCiKqnAoAcM}O{_BgQ}yAqQuqAYgBcSqmAgXutAmVulA_[yrAyaAqdEcXiiAwq@euC_n@ciC{FgVgUw_AyRys@wNkd@uEaNkTig@kMeX_OqZcHwMmMuS}NiUuEoHyYm_@}mB{fC_@e@_r@g{@{OmSmzBytC_dBwzB}PaUyr@c|@yw@w_AwhA}fAiNgMsWyU{QsOoVwS}n@yk@eeAuy@aAw@oeBoqAkTgRiXkWe_@g`@cb@el@uZmh@os@{nAi_@}p@_V}\\{Xg[sSySyV{Ss]cWu[_Re^qOsUeJgi@}Qud@qScOqI_ZmSsUgReWyUcQ}SiT_X{MwQkN_U{HuN{MaZePs`@cPsb@{Qen@eMgj@wJei@gHaf@{Fof@kHi~@gDmw@{AebAoAor@wBav@_D}h@{G{v@uHcj@wG{c@mFcWcFkVsMof@sNic@mPuc@{Twf@iUma@ci@wz@_Vk]ePsUocAyoAenAibBwiA{{A{cAysAodAwsAyo@my@wQsVuw@mfAaa@{e@uh@ki@eZ}X}KoI_PiLyT_Os^iS}W_O_e@cSoe@{O{MoDay@yOg]yDm[cCwn@sAwWA{aAzEokDjWsVrBeo@jFyLjA}lEt\\cwEf]ig@rDm]rCehA~IujEj\\wlClSsZdCoqAnJqm@rEoy@fGilAxIonApJcdAtGmx@rCil@hAwv@Bqg@kA}g@}BoUaBu\\iFmj@wIs]sHsUcFc_@qJm\\yKqc@ePeKyDqk@qXoDqBqf@kXec@eY}_@gY}ToPeqAmiAg\\m[anB{jB{~BmyBmz@iy@slDigDa_@_^ms@yq@{d@_e@uYi^}Xu_@}`@mr@mNuXo\\_y@_Za}@wSux@_Sw`AiR_jAuQioAq|@ymG}Y{tBmAsIswAgcK_Z_vBaLiz@wNi`AiPsz@{Va`AkIeXoP_g@_]mx@uMwVkL_TuYid@qOwSuYg]y\\{\\"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 90 miles.","announcement":"Continue for 90 miles.","distanceAlongGeometry":145525.219},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 9.","announcement":"In 1 mile, Keep left to stay on A 9.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 9.","announcement":"In a half mile, Keep left to stay on A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 9, E 51 toward Berlin, Halle (Saale).","announcement":"Keep left to stay on A 9, E 51 toward Berlin, Halle (Saale).","distanceAlongGeometry":255.556}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.511234,49.729738],"geometry_index":2026,"admin_index":0,"weight":11.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.288,"bearings":[30,46,213],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.513621,49.732829],"geometry_index":2030,"admin_index":0,"weight":1.766,"is_urban":false,"turn_weight":1,"duration":0.836,"bearings":[27,191,206],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":5.798,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.363,"geometry_index":2031,"location":[11.513788,49.73304]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":21.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.216,"geometry_index":2035,"location":[11.514794,49.734542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.966,"geometry_index":2046,"location":[11.514826,49.740604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.66,"geometry_index":2047,"location":[11.514628,49.741149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":7.474,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.914,"geometry_index":2048,"location":[11.514004,49.742991]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.513365,49.744904],"geometry_index":2049,"admin_index":0,"weight":22.376,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.198,"bearings":[1,168,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.412,"geometry_index":2058,"location":[11.511232,49.751214]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":1.577,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.459,"geometry_index":2059,"location":[11.511196,49.751328]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.511055,49.751727],"geometry_index":2061,"admin_index":0,"weight":1.392,"is_urban":false,"turn_weight":1,"duration":0.431,"bearings":[151,167,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.555,"geometry_index":2062,"location":[11.51102,49.751832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":7.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.921,"geometry_index":2063,"location":[11.510973,49.75198]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":33.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":30.42,"geometry_index":2065,"location":[11.510334,49.753839]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,335],"duration":1.077,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.969,"geometry_index":2078,"location":[11.508072,49.762787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,332],"duration":55.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":50.28,"geometry_index":2079,"location":[11.507885,49.763043]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,216],"duration":35.259,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.71,"geometry_index":2100,"location":[11.510551,49.777184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":0.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.727,"geometry_index":2121,"location":[11.511155,49.786195]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,327],"duration":7.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.951,"geometry_index":2123,"location":[11.510997,49.786388]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,313],"duration":17.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.729,"geometry_index":2126,"location":[11.508856,49.788165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,292],"duration":4.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.458,"geometry_index":2134,"location":[11.502042,49.79066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,293],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.771,"geometry_index":2135,"location":[11.499962,49.791199]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,294],"duration":42.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.81,"geometry_index":2137,"location":[11.499577,49.791306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.978,"geometry_index":2163,"location":[11.494526,49.801448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,210],"duration":40.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.276,"geometry_index":2164,"location":[11.494751,49.801697]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,340],"duration":4.039,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.616,"geometry_index":2182,"location":[11.499939,49.811749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":1.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.302,"geometry_index":2183,"location":[11.49934,49.812801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.62,"geometry_index":2184,"location":[11.499137,49.813162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":1.421,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.279,"geometry_index":2185,"location":[11.49887,49.813619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":17.787,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.001,"geometry_index":2186,"location":[11.498648,49.813999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,180],"duration":20.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":18.022,"geometry_index":2193,"location":[11.497107,49.818913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,196],"duration":5.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.67,"geometry_index":2204,"location":[11.499206,49.824324]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.181,"geometry_index":2206,"location":[11.499534,49.825746]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,187],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.972,"geometry_index":2207,"location":[11.499598,49.826098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,182],"duration":5.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.243,"geometry_index":2208,"location":[11.499615,49.826397]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.499651,49.827991],"geometry_index":2211,"admin_index":0,"weight":4.816,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.358,"bearings":[0,18,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.499717,49.829475],"geometry_index":2214,"admin_index":0,"weight":6.184,"is_urban":false,"turn_weight":1,"duration":5.769,"bearings":[7,170,185],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,194],"duration":58.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.85,"geometry_index":2217,"location":[11.500133,49.830954]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,216],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.868,"geometry_index":2237,"location":[11.507787,49.845195]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":67.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":59.363,"geometry_index":2238,"location":[11.508092,49.845441]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":60.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":52.654,"geometry_index":2259,"location":[11.518359,49.862037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,267],"duration":5.462,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.916,"geometry_index":2284,"location":[11.534206,49.873241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,268],"duration":24.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.842,"geometry_index":2286,"location":[11.536654,49.873292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,220],"duration":139.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":125.941,"geometry_index":2298,"location":[11.54582,49.876628]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":5.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.748,"geometry_index":2365,"location":[11.598971,49.890725]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.599523,49.892209],"geometry_index":2367,"admin_index":0,"weight":12.746,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.787,"bearings":[14,25,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.601006,49.896079],"geometry_index":2369,"admin_index":0,"weight":5.354,"is_urban":false,"turn_weight":1,"duration":4.715,"bearings":[14,183,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":13.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.705,"geometry_index":2372,"location":[11.601564,49.897563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,196],"duration":2.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.973,"geometry_index":2378,"location":[11.603222,49.90189]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":3.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.947,"geometry_index":2379,"location":[11.603423,49.90245]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,195],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.902,"geometry_index":2381,"location":[11.603763,49.903322]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":84.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":80.614,"geometry_index":2382,"location":[11.603856,49.903573]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":2.507,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.444,"geometry_index":2415,"location":[11.602547,49.927064]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":2.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.264,"geometry_index":2417,"location":[11.602481,49.927761]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,178],"duration":2.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.219,"geometry_index":2418,"location":[11.602452,49.928381]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.602478,49.928979],"geometry_index":2419,"admin_index":0,"weight":5.97,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.143,"bearings":[2,21,182],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.602653,49.930608],"geometry_index":2424,"admin_index":0,"weight":2.235,"is_urban":false,"turn_weight":1,"duration":1.255,"bearings":[6,168,187],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,186],"duration":5.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.506,"geometry_index":2425,"location":[11.602708,49.930921]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":24.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":24.812,"geometry_index":2428,"location":[11.603047,49.932306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":2.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.097,"geometry_index":2438,"location":[11.60474,49.938524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":5.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.875,"geometry_index":2440,"location":[11.604873,49.939054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,188],"duration":1.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.677,"geometry_index":2443,"location":[11.605246,49.940511]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,191],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.723,"geometry_index":2444,"location":[11.605361,49.940905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,192],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.47,"geometry_index":2446,"location":[11.605562,49.941577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":6.282,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.439,"geometry_index":2447,"location":[11.605594,49.941695]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":3.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.509,"geometry_index":2450,"location":[11.606014,49.943268]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":2.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.125,"geometry_index":2451,"location":[11.606252,49.944129]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":12.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.216,"geometry_index":2452,"location":[11.606388,49.944635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":8.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.585,"geometry_index":2456,"location":[11.607212,49.947739]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.104,"geometry_index":2459,"location":[11.607669,49.949768]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,186],"duration":6.696,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.863,"geometry_index":2460,"location":[11.607711,49.950031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,181],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.664,"geometry_index":2466,"location":[11.607867,49.951698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":1.839,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.931,"geometry_index":2467,"location":[11.607868,49.951863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,357],"duration":2.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.548,"geometry_index":2468,"location":[11.607859,49.952284]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,357],"duration":1.78,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.869,"geometry_index":2469,"location":[11.607812,49.952844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,355],"duration":1.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.5,"geometry_index":2470,"location":[11.607776,49.953245]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[175,352],"duration":14.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.639,"geometry_index":2471,"location":[11.607732,49.953575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":1.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.009,"geometry_index":2477,"location":[11.606874,49.956768]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,349],"duration":14.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.006,"geometry_index":2478,"location":[11.606752,49.957201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":6.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.519,"geometry_index":2483,"location":[11.605867,49.960436]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.605622,49.961855],"geometry_index":2486,"admin_index":0,"weight":8.623,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.42,"bearings":[6,174,355],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,358],"duration":3.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.129,"geometry_index":2489,"location":[11.605418,49.963785]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.605386,49.964485],"geometry_index":2490,"admin_index":0,"weight":1.894,"is_urban":false,"turn_weight":0.5,"duration":1.368,"bearings":[163,178,359],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,179],"duration":7.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.831,"geometry_index":2491,"location":[11.605375,49.964792]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,181],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.886,"geometry_index":2493,"location":[11.605411,49.966506]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":29.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.52,"geometry_index":2494,"location":[11.605441,49.966915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,185],"duration":10.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.335,"geometry_index":2501,"location":[11.606323,49.973524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":14.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.908,"geometry_index":2505,"location":[11.606661,49.975896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":7.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.372,"geometry_index":2510,"location":[11.607125,49.979168]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.68,"geometry_index":2512,"location":[11.60737,49.9809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":1.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.672,"geometry_index":2517,"location":[11.607783,49.984127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.12,"geometry_index":2518,"location":[11.607808,49.984519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":2.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.736,"geometry_index":2522,"location":[11.60788,49.98667]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":2.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.701,"geometry_index":2523,"location":[11.607856,49.98732]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.575,"geometry_index":2525,"location":[11.607826,49.987974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":5.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.847,"geometry_index":2531,"location":[11.607394,49.992233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":3.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.042,"geometry_index":2534,"location":[11.607261,49.993409]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":72.185,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":66.771,"geometry_index":2535,"location":[11.607195,49.994072]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":0.415,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.384,"geometry_index":2566,"location":[11.610073,50.007575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,333],"duration":5.907,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.465,"geometry_index":2567,"location":[11.610024,50.007648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,330],"duration":12.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.868,"geometry_index":2569,"location":[11.609152,50.008648]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":13.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.552,"geometry_index":2574,"location":[11.60741,50.010875]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.606344,50.013421],"geometry_index":2577,"admin_index":0,"weight":5.445,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.906,"bearings":[165,344,359],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,345],"duration":21.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.51,"geometry_index":2581,"location":[11.605856,50.01463]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.235,"geometry_index":2589,"location":[11.604353,50.01899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":21.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.097,"geometry_index":2590,"location":[11.604344,50.019045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":2.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.899,"geometry_index":2599,"location":[11.604861,50.023522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":32.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.05,"geometry_index":2600,"location":[11.604984,50.023969]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":6.505,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.854,"geometry_index":2610,"location":[11.606821,50.030962]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.607189,50.032369],"geometry_index":2614,"admin_index":0,"weight":5.86,"is_urban":false,"turn_weight":1,"duration":5.408,"bearings":[11,182,189],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,192],"duration":21.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.223,"geometry_index":2616,"location":[11.607593,50.03364]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":40.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.875,"geometry_index":2626,"location":[11.611063,50.038356]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,194],"duration":12.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.897,"geometry_index":2640,"location":[11.616734,50.047754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":8.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.909,"geometry_index":2644,"location":[11.617623,50.050784]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.617997,50.052822],"geometry_index":2648,"admin_index":0,"weight":4.738,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.994,"bearings":[5,30,186],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":1.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.211,"geometry_index":2650,"location":[11.618123,50.054017]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.618145,50.054319],"geometry_index":2651,"admin_index":0,"weight":2.14,"is_urban":false,"turn_weight":1,"duration":1.207,"bearings":[3,158,183],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":10.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.519,"geometry_index":2652,"location":[11.618171,50.054676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,357],"duration":2.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.909,"geometry_index":2656,"location":[11.61815,50.057676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,357],"duration":14.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.022,"geometry_index":2657,"location":[11.618107,50.058275]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,196],"duration":65.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":60.218,"geometry_index":2666,"location":[11.618797,50.06265]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,245],"duration":6.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.152,"geometry_index":2700,"location":[11.640949,50.074877]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,254],"duration":48.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":43.462,"geometry_index":2704,"location":[11.643433,50.075439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.654,"geometry_index":2721,"location":[11.660684,50.079451]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":5.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.941,"geometry_index":2722,"location":[11.66092,50.079551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":4.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.862,"geometry_index":2724,"location":[11.662689,50.080291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":4.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.091,"geometry_index":2726,"location":[11.664074,50.080865]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.166,"geometry_index":2727,"location":[11.665537,50.081483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.207,"geometry_index":2728,"location":[11.665955,50.081656]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.666396,50.081842],"geometry_index":2729,"admin_index":0,"weight":5.967,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.648,"bearings":[57,70,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.668576,50.082751],"geometry_index":2730,"admin_index":0,"weight":7.224,"is_urban":false,"turn_weight":1,"duration":6.934,"bearings":[57,221,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":70.765,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":63.688,"geometry_index":2732,"location":[11.670857,50.083699]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,222],"duration":7.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.607,"geometry_index":2753,"location":[11.693052,50.094581]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.695022,50.095963],"geometry_index":2754,"admin_index":0,"weight":11.849,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.172,"bearings":[42,222],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":6.431,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.781,"geometry_index":2760,"location":[11.698415,50.09851]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":8.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.401,"geometry_index":2763,"location":[11.699765,50.099894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,204],"duration":8.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.274,"geometry_index":2768,"location":[11.701172,50.101778]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.702537,50.103644],"geometry_index":2770,"admin_index":0,"weight":11.467,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.762,"bearings":[25,46,207],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.704682,50.106576],"geometry_index":2775,"admin_index":0,"weight":3.024,"is_urban":false,"turn_weight":1,"duration":2.196,"bearings":[28,186,206],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,208],"duration":6.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.681,"geometry_index":2776,"location":[11.705087,50.107068]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":2.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.979,"geometry_index":2780,"location":[11.706382,50.108393]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,215],"duration":11.077,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.969,"geometry_index":2781,"location":[11.706864,50.108836]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,224],"duration":1.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.912,"geometry_index":2786,"location":[11.70984,50.110986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,227],"duration":107.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":94.016,"geometry_index":2787,"location":[11.710138,50.111167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":23.144,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.232,"geometry_index":2824,"location":[11.741154,50.130141]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":56.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.656,"geometry_index":2836,"location":[11.742302,50.136069]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":12.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.589,"geometry_index":2861,"location":[11.747714,50.1501]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,193],"duration":6.784,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.106,"geometry_index":2866,"location":[11.74937,50.153262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":5.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.518,"geometry_index":2871,"location":[11.749612,50.155016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.931,"geometry_index":2874,"location":[11.749433,50.156315]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,348],"duration":8.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.41,"geometry_index":2875,"location":[11.74936,50.156568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,344],"duration":14.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.832,"geometry_index":2879,"location":[11.748557,50.158574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,347],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.155,"geometry_index":2883,"location":[11.747027,50.162034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,344],"duration":3.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.727,"geometry_index":2884,"location":[11.746913,50.162345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":6.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.71,"geometry_index":2885,"location":[11.74659,50.163084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":0.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.738,"geometry_index":2890,"location":[11.745991,50.164632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,351],"duration":1.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.251,"geometry_index":2892,"location":[11.74593,50.164835]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.668,"geometry_index":2893,"location":[11.745847,50.165181]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,355],"duration":6.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.967,"geometry_index":2895,"location":[11.745748,50.16564]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.745648,50.167311],"geometry_index":2899,"admin_index":0,"weight":7.956,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.858,"bearings":[2,21,181],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.746048,50.169523],"geometry_index":2904,"admin_index":0,"weight":3.637,"is_urban":false,"turn_weight":1,"duration":2.937,"bearings":[11,173,191],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":2.21,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.989,"geometry_index":2906,"location":[11.746315,50.170244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.037,"geometry_index":2908,"location":[11.74656,50.170774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":3.276,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.948,"geometry_index":2909,"location":[11.746694,50.171045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.275,"geometry_index":2911,"location":[11.747145,50.171807]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":77.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":71.762,"geometry_index":2917,"location":[11.749392,50.174582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":16.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.744,"geometry_index":2946,"location":[11.765611,50.190887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.2,"geometry_index":2953,"location":[11.769092,50.194903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.231,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.22,"geometry_index":2965,"location":[11.776118,50.203584]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":0.958,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.91,"geometry_index":2966,"location":[11.77615,50.203641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":3.798,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.608,"geometry_index":2967,"location":[11.776278,50.203893]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.776766,50.204875],"geometry_index":2970,"admin_index":0,"weight":1.981,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.094,"bearings":[18,197],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":0.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.735,"geometry_index":2972,"location":[11.777035,50.2054]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.703,"geometry_index":2973,"location":[11.777134,50.205597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.777231,50.205786],"geometry_index":2974,"admin_index":0,"weight":0.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.233,"bearings":[18,38,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.089,"geometry_index":2975,"location":[11.777255,50.205834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.778175,50.20767],"geometry_index":2976,"admin_index":0,"weight":6.392,"is_urban":false,"turn_weight":1,"duration":5.848,"bearings":[18,182,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,197],"duration":0.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.603,"geometry_index":2978,"location":[11.778894,50.20913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":26.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":23.513,"geometry_index":2979,"location":[11.778977,50.209295]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,192],"duration":60.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":54.864,"geometry_index":2989,"location":[11.782044,50.215851]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,351],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.926,"geometry_index":3013,"location":[11.777591,50.231294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":42.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.924,"geometry_index":3014,"location":[11.777524,50.231556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,215],"duration":1.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.211,"geometry_index":3035,"location":[11.781301,50.242017]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":18.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.23,"geometry_index":3036,"location":[11.781645,50.2423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":6.109,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.492,"geometry_index":3041,"location":[11.786576,50.245998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,220],"duration":0.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.367,"geometry_index":3046,"location":[11.788213,50.247209]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,223],"duration":34.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.05,"geometry_index":3047,"location":[11.788327,50.247287]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":1.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.131,"geometry_index":3060,"location":[11.795108,50.255448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":15.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.395,"geometry_index":3061,"location":[11.795301,50.255754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":0.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.48,"geometry_index":3067,"location":[11.797727,50.259533]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":87.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.777,"geometry_index":3068,"location":[11.797808,50.259666]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.979,"geometry_index":3100,"location":[11.811314,50.281441]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":21.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.35,"geometry_index":3101,"location":[11.811443,50.281721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,357],"duration":6.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.056,"geometry_index":3112,"location":[11.812475,50.2874]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.812221,50.289191],"geometry_index":3116,"admin_index":0,"weight":7.221,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.044,"bearings":[10,173,351],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.811634,50.291256],"geometry_index":3120,"admin_index":0,"weight":1.87,"is_urban":false,"turn_weight":1,"duration":0.989,"bearings":[142,169,346],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":6.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.64,"geometry_index":3121,"location":[11.811536,50.291509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":19.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.91,"geometry_index":3125,"location":[11.810849,50.293139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,342],"duration":8.333,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.5,"geometry_index":3128,"location":[11.808256,50.298235]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,341],"duration":6.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.55,"geometry_index":3129,"location":[11.807144,50.30037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.80631,50.301942],"geometry_index":3131,"admin_index":0,"weight":11.719,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.028,"bearings":[4,161,342],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.80458,50.305236],"geometry_index":3134,"admin_index":0,"weight":2.38,"is_urban":false,"turn_weight":1,"duration":1.541,"bearings":[144,161,341],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":6.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.91,"geometry_index":3135,"location":[11.804371,50.30563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.96,"geometry_index":3136,"location":[11.803481,50.307305]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,343],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.855,"geometry_index":3138,"location":[11.801536,50.310985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,342],"duration":4.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.351,"geometry_index":3139,"location":[11.801421,50.311225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,341],"duration":3.139,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.808,"geometry_index":3140,"location":[11.800792,50.312427]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":11.699,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.522,"geometry_index":3141,"location":[11.800374,50.3132]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,340],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.556,"geometry_index":3143,"location":[11.798833,50.316104]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":3.429,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.086,"geometry_index":3144,"location":[11.798746,50.316253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,334],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.679,"geometry_index":3146,"location":[11.798222,50.317082]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,333],"duration":14.079,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.671,"geometry_index":3147,"location":[11.798087,50.317257]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.795264,50.320307],"geometry_index":3151,"admin_index":0,"weight":6.638,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.382,"bearings":[149,329,339],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":2.948,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.653,"geometry_index":3154,"location":[11.793728,50.321924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,330],"duration":5.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.338,"geometry_index":3155,"location":[11.793109,50.322583]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,341],"duration":4.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.196,"geometry_index":3158,"location":[11.792016,50.323969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":2.208,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.986,"geometry_index":3160,"location":[11.791446,50.325136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":12.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.185,"geometry_index":3162,"location":[11.791218,50.325705]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.790146,50.328857],"geometry_index":3165,"admin_index":0,"weight":3.397,"is_urban":false,"turn_weight":1,"duration":2.612,"bearings":[160,168,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":7.056,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.526,"geometry_index":3166,"location":[11.789925,50.32949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.856,"geometry_index":3169,"location":[11.789339,50.331215]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":5.907,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.464,"geometry_index":3170,"location":[11.789256,50.331449]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.788752,50.332929],"geometry_index":3171,"admin_index":0,"weight":8.212,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.898,"bearings":[168,347],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.787959,50.335151],"geometry_index":3173,"admin_index":0,"weight":7.518,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.134,"bearings":[1,167,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.787283,50.337149],"geometry_index":3175,"admin_index":0,"weight":2.249,"is_urban":false,"turn_weight":1,"duration":1.356,"bearings":[159,168,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.288,"geometry_index":3176,"location":[11.787168,50.337495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":4.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.027,"geometry_index":3177,"location":[11.78705,50.337854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,356],"duration":22.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.925,"geometry_index":3181,"location":[11.786767,50.339036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.069,"geometry_index":3194,"location":[11.787805,50.344895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,185],"duration":85.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.541,"geometry_index":3195,"location":[11.787848,50.345207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":0.265,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.238,"geometry_index":3238,"location":[11.78762,50.3662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":6.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.975,"geometry_index":3239,"location":[11.787684,50.366255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":0.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.476,"geometry_index":3241,"location":[11.789364,50.367708]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,217],"duration":4.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.983,"geometry_index":3242,"location":[11.789497,50.367822]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.27,"geometry_index":3245,"location":[11.79053,50.368831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.791218,50.369711],"geometry_index":3247,"admin_index":0,"weight":7.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.03,"bearings":[21,34,205],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.792146,50.371674],"geometry_index":3251,"admin_index":0,"weight":2.994,"is_urban":false,"turn_weight":1,"duration":2.237,"bearings":[9,182,191],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,189],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.592,"geometry_index":3252,"location":[11.792279,50.372241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,188],"duration":1.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.303,"geometry_index":3253,"location":[11.792318,50.372409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,185],"duration":2.31,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.078,"geometry_index":3255,"location":[11.792367,50.372779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[181,359],"duration":24.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.008,"geometry_index":3256,"location":[11.792383,50.37339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,319],"duration":0.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.056,"geometry_index":3271,"location":[11.788832,50.379304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,315],"duration":16.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.236,"geometry_index":3272,"location":[11.788814,50.379317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":0.985,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.911,"geometry_index":3277,"location":[11.783602,50.382127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,309],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.325,"geometry_index":3278,"location":[11.783283,50.382288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,324],"duration":15.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.014,"geometry_index":3284,"location":[11.780258,50.384153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,324],"duration":1.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.008,"geometry_index":3292,"location":[11.776673,50.388064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,320],"duration":2.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.104,"geometry_index":3293,"location":[11.776369,50.388326]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,315],"duration":20.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.694,"geometry_index":3294,"location":[11.775717,50.388816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,303],"duration":4.989,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.615,"geometry_index":3305,"location":[11.768084,50.391798]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,318],"duration":31.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.993,"geometry_index":3309,"location":[11.766339,50.392679]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,186],"duration":22.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.023,"geometry_index":3323,"location":[11.763445,50.400027]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,257],"duration":5.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.695,"geometry_index":3342,"location":[11.768968,50.403843]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.770919,50.404097],"geometry_index":3345,"admin_index":0,"weight":8.413,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.119,"bearings":[72,82,256],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,224],"duration":0.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.525,"geometry_index":3353,"location":[11.7737,50.405266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":8.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.708,"geometry_index":3354,"location":[11.773827,50.405374]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":4.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.161,"geometry_index":3362,"location":[11.775079,50.407216]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.775468,50.40828],"geometry_index":3365,"admin_index":0,"weight":8.192,"is_urban":false,"turn_weight":1,"duration":8,"bearings":[17,182,194],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,211],"duration":11.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.076,"geometry_index":3370,"location":[11.776725,50.410093]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,202],"duration":3.509,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.141,"geometry_index":3378,"location":[11.77894,50.412496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.769,"geometry_index":3381,"location":[11.779379,50.413301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":12.71,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.439,"geometry_index":3382,"location":[11.779491,50.413499]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":11.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.702,"geometry_index":3391,"location":[11.782373,50.415952]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":2.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.127,"geometry_index":3393,"location":[11.785827,50.417904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":4.152,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.73,"geometry_index":3394,"location":[11.786515,50.418296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,225],"duration":1.874,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.669,"geometry_index":3396,"location":[11.787672,50.419012]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,223],"duration":4.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.106,"geometry_index":3397,"location":[11.788156,50.419347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,214],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.794,"geometry_index":3399,"location":[11.789224,50.420272]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":14.365,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.929,"geometry_index":3400,"location":[11.789415,50.420466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":5.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.704,"geometry_index":3406,"location":[11.791752,50.423877]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.792531,50.425142],"geometry_index":3407,"admin_index":1,"weight":1.357,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.517,"bearings":[23,42,201],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":13.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.757,"geometry_index":3408,"location":[11.792769,50.425504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.654,"geometry_index":3413,"location":[11.795437,50.428469]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":9.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.91,"geometry_index":3414,"location":[11.795606,50.428621]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,211],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.277,"geometry_index":3418,"location":[11.797892,50.43074]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.79816,50.431062],"geometry_index":3419,"admin_index":1,"weight":7.889,"is_urban":false,"turn_weight":1,"duration":7.677,"bearings":[26,189,208],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.629,"geometry_index":3422,"location":[11.799325,50.432885]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.069,"geometry_index":3423,"location":[11.79941,50.433052]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.06,"geometry_index":3424,"location":[11.799561,50.433346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,198],"duration":1.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.935,"geometry_index":3425,"location":[11.799712,50.433639]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,201],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.604,"geometry_index":3427,"location":[11.799863,50.43389]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,198],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.133,"geometry_index":3428,"location":[11.800088,50.434329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.263,"geometry_index":3429,"location":[11.800282,50.434629]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,205],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.912,"geometry_index":3432,"location":[11.802504,50.437589]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.803354,50.439525],"geometry_index":3436,"admin_index":1,"weight":1.604,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.809,"bearings":[6,25,191],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":19.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.989,"geometry_index":3437,"location":[11.803437,50.439989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.666,"geometry_index":3445,"location":[11.802578,50.445167]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.802377,50.445634],"geometry_index":3446,"admin_index":1,"weight":7.416,"is_urban":false,"turn_weight":0.5,"duration":7.704,"bearings":[149,165,344],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":7.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.573,"geometry_index":3448,"location":[11.801493,50.447545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,344],"duration":1.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.573,"geometry_index":3449,"location":[11.800617,50.449355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,345],"duration":20.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.78,"geometry_index":3450,"location":[11.800426,50.449789]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,182],"duration":78.709,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":68.862,"geometry_index":3457,"location":[11.799286,50.455343]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.219,"geometry_index":3478,"location":[11.80233,50.476064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,349],"duration":40.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":35.003,"geometry_index":3479,"location":[11.802193,50.476419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,197],"duration":1.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.019,"geometry_index":3489,"location":[11.805438,50.486744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,194],"duration":19.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.912,"geometry_index":3490,"location":[11.805554,50.487032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":15.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.64,"geometry_index":3500,"location":[11.804555,50.492145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,304],"duration":31.773,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.785,"geometry_index":3507,"location":[11.800168,50.49511]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,352],"duration":0.985,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.861,"geometry_index":3521,"location":[11.792771,50.501733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,353],"duration":19.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.905,"geometry_index":3522,"location":[11.792712,50.50199]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":41.349,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.18,"geometry_index":3535,"location":[11.794323,50.507587]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.673,"geometry_index":3547,"location":[11.798535,50.517892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":30.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.651,"geometry_index":3548,"location":[11.798547,50.518087]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,202],"duration":1.153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.009,"geometry_index":3554,"location":[11.800228,50.525704]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,206],"duration":35.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.664,"geometry_index":3555,"location":[11.80043,50.525967]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,189],"duration":45.173,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.632,"geometry_index":3562,"location":[11.80527,50.533895]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[148,324],"duration":7.53,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.777,"geometry_index":3574,"location":[11.801033,50.544354]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.799224,50.545791],"geometry_index":3577,"admin_index":1,"weight":1.493,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.68,"bearings":[140,317,335],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,316],"duration":7.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.448,"geometry_index":3578,"location":[11.798772,50.546095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,314],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.08,"geometry_index":3580,"location":[11.796733,50.54738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.796386,50.547592],"geometry_index":3581,"admin_index":1,"weight":2.283,"is_urban":false,"turn_weight":1,"duration":1.433,"bearings":[110,134,314],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,318],"duration":5.239,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.716,"geometry_index":3583,"location":[11.795979,50.547843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,324],"duration":37.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.715,"geometry_index":3585,"location":[11.794595,50.548827]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.449,"geometry_index":3593,"location":[11.790149,50.557735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":12.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.01,"geometry_index":3594,"location":[11.790108,50.557856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,324],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.239,"geometry_index":3602,"location":[11.788347,50.560777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,322],"duration":10.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.828,"geometry_index":3603,"location":[11.788025,50.561056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,317],"duration":26.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":23.814,"geometry_index":3610,"location":[11.784602,50.563495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,332],"duration":3.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.071,"geometry_index":3621,"location":[11.776496,50.569495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,338],"duration":5.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.689,"geometry_index":3624,"location":[11.775817,50.570372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,344],"duration":7.305,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.566,"geometry_index":3629,"location":[11.77503,50.571766]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,358],"duration":16.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.072,"geometry_index":3634,"location":[11.774499,50.573774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.62,"geometry_index":3643,"location":[11.77592,50.578327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":0.658,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.573,"geometry_index":3644,"location":[11.776184,50.5788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":0.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.43,"geometry_index":3645,"location":[11.776275,50.578971]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":5.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.788,"geometry_index":3646,"location":[11.776344,50.579097]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.77712,50.580518],"geometry_index":3647,"admin_index":1,"weight":0.972,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.1,"bearings":[19,46,199],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":10.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.288,"geometry_index":3648,"location":[11.777286,50.58082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.864,"geometry_index":3650,"location":[11.778881,50.583738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.779029,50.584011],"geometry_index":3651,"admin_index":1,"weight":2.666,"is_urban":false,"turn_weight":1,"duration":1.87,"bearings":[19,177,199],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":3.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.024,"geometry_index":3652,"location":[11.779283,50.584471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":2.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.309,"geometry_index":3653,"location":[11.779744,50.585305]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":4.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.848,"geometry_index":3654,"location":[11.780009,50.585785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":11.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.461,"geometry_index":3655,"location":[11.780462,50.586584]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":5.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.029,"geometry_index":3657,"location":[11.782082,50.589448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":14.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.114,"geometry_index":3658,"location":[11.782798,50.590837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":12.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.89,"geometry_index":3660,"location":[11.784743,50.594448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":74.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":65.49,"geometry_index":3663,"location":[11.78642,50.597531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":31.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.54,"geometry_index":3677,"location":[11.792552,50.616606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":41.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.45,"geometry_index":3688,"location":[11.793962,50.624789]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":1.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.887,"geometry_index":3691,"location":[11.797845,50.63542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":85.526,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":74.835,"geometry_index":3693,"location":[11.797935,50.635672]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":7.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.545,"geometry_index":3719,"location":[11.811936,50.65535]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.813713,50.656906],"geometry_index":3723,"admin_index":1,"weight":1.297,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.503,"bearings":[33,48,214],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,213],"duration":3.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.366,"geometry_index":3724,"location":[11.814039,50.65722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,210],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.896,"geometry_index":3726,"location":[11.814819,50.658065]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.815008,50.658298],"geometry_index":3727,"admin_index":1,"weight":2.969,"is_urban":false,"turn_weight":1,"duration":2.271,"bearings":[26,187,207],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":5.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.482,"geometry_index":3728,"location":[11.815412,50.658822]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,203],"duration":59.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":52.399,"geometry_index":3730,"location":[11.816269,50.660032]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":1.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.979,"geometry_index":3739,"location":[11.824942,50.674562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":46.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.65,"geometry_index":3740,"location":[11.825137,50.67482]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.611,"geometry_index":3746,"location":[11.833321,50.685828]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":7.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.27,"geometry_index":3747,"location":[11.833441,50.685995]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":80.054,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":70.041,"geometry_index":3748,"location":[11.834625,50.687662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":32.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.165,"geometry_index":3760,"location":[11.849436,50.705681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,360],"duration":1.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.972,"geometry_index":3776,"location":[11.85336,50.713352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":46.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":41.515,"geometry_index":3777,"location":[11.853358,50.713651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,349],"duration":38.589,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":35.688,"geometry_index":3793,"location":[11.848156,50.72546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":1.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.35,"geometry_index":3810,"location":[11.850488,50.735327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":4.868,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.504,"geometry_index":3811,"location":[11.850758,50.735694]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.983,"geometry_index":3812,"location":[11.851644,50.736836]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":15.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.986,"geometry_index":3813,"location":[11.851834,50.737091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,206],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.026,"geometry_index":3817,"location":[11.854442,50.740486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":12.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.761,"geometry_index":3818,"location":[11.854633,50.740725]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":5.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.618,"geometry_index":3820,"location":[11.856706,50.743452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.857726,50.744744],"geometry_index":3822,"admin_index":1,"weight":3.206,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.396,"bearings":[26,34,207],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":31.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.554,"geometry_index":3823,"location":[11.858285,50.745472]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":2.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.942,"geometry_index":3832,"location":[11.864564,50.751985]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.865062,50.752373],"geometry_index":3833,"admin_index":1,"weight":2.413,"is_urban":false,"turn_weight":1,"duration":1.547,"bearings":[39,206,219],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":6.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.021,"geometry_index":3834,"location":[11.865441,50.752665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":3.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.666,"geometry_index":3836,"location":[11.867054,50.753909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":0.696,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.626,"geometry_index":3837,"location":[11.868032,50.754668]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":7.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.333,"geometry_index":3838,"location":[11.868205,50.754803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.2,"geometry_index":3840,"location":[11.870169,50.756318]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.872155,50.757842],"geometry_index":3842,"admin_index":1,"weight":1.375,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.547,"bearings":[39,56,219],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.64,"geometry_index":3843,"location":[11.872534,50.758135]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.874906,50.759977],"geometry_index":3845,"admin_index":1,"weight":7.771,"is_urban":false,"turn_weight":1,"duration":7.545,"bearings":[38,194,219],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,214],"duration":21.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.343,"geometry_index":3848,"location":[11.876673,50.76148]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":19.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.356,"geometry_index":3860,"location":[11.878923,50.766589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":13.766,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.039,"geometry_index":3863,"location":[11.879677,50.771512]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":1.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.071,"geometry_index":3870,"location":[11.880604,50.774917]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":15.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.754,"geometry_index":3871,"location":[11.880772,50.775208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,226],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.819,"geometry_index":3882,"location":[11.884237,50.778468]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":1.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.591,"geometry_index":3883,"location":[11.88451,50.778628]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.278,"geometry_index":3884,"location":[11.885038,50.778944]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":16.992,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.85,"geometry_index":3885,"location":[11.88547,50.779192]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":25.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.436,"geometry_index":3888,"location":[11.89029,50.782011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,191],"duration":10.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.839,"geometry_index":3899,"location":[11.895133,50.787336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":7.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.911,"geometry_index":3904,"location":[11.895361,50.789803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,180],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.896,"geometry_index":3905,"location":[11.895383,50.791736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,181],"duration":2.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.417,"geometry_index":3906,"location":[11.895388,50.791978]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":46.263,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":41.63,"geometry_index":3907,"location":[11.895396,50.792572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":9.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.552,"geometry_index":3911,"location":[11.895529,50.802494]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.895553,50.804537],"geometry_index":3913,"admin_index":1,"weight":1.378,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.538,"bearings":[1,15,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":13.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.917,"geometry_index":3914,"location":[11.89556,50.80487]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":2.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.086,"geometry_index":3917,"location":[11.895599,50.807748]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.895605,50.808247],"geometry_index":3918,"admin_index":1,"weight":2.856,"is_urban":false,"turn_weight":0.5,"duration":2.625,"bearings":[170,180,360],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,358],"duration":5.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.375,"geometry_index":3919,"location":[11.895601,50.80882]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,349],"duration":11.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.751,"geometry_index":3923,"location":[11.895408,50.810121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,333],"duration":50.563,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":44.243,"geometry_index":3931,"location":[11.894117,50.812608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,336],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.122,"geometry_index":3944,"location":[11.883926,50.821622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,338],"duration":15.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.28,"geometry_index":3945,"location":[11.883748,50.821872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":11.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.425,"geometry_index":3949,"location":[11.881974,50.825013]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":16.886,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.775,"geometry_index":3953,"location":[11.880698,50.827381]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,328],"duration":16.322,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.282,"geometry_index":3959,"location":[11.878481,50.830626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":1.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.412,"geometry_index":3963,"location":[11.875145,50.833519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":40.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":35.737,"geometry_index":3964,"location":[11.874803,50.8338]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[143,324],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.2,"geometry_index":3970,"location":[11.866537,50.840584]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,325],"duration":32.175,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.153,"geometry_index":3971,"location":[11.86627,50.840815]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,337],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.732,"geometry_index":3978,"location":[11.861703,50.846533]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,338],"duration":1.155,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.011,"geometry_index":3979,"location":[11.861462,50.8469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":14.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.93,"geometry_index":3980,"location":[11.861324,50.847116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":31.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.75,"geometry_index":3982,"location":[11.859028,50.850707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":1.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.741,"geometry_index":3989,"location":[11.854442,50.85849]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":8.325,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.492,"geometry_index":3990,"location":[11.854287,50.858862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.853651,50.860471],"geometry_index":3991,"admin_index":1,"weight":1.288,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.438,"bearings":[13,166,346],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":4.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.981,"geometry_index":3992,"location":[11.853538,50.860761]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.853191,50.86165],"geometry_index":3993,"admin_index":1,"weight":3.42,"is_urban":false,"turn_weight":1,"duration":2.696,"bearings":[137,166,346],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":1.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.64,"geometry_index":3994,"location":[11.852976,50.862193]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":0.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.037,"geometry_index":3996,"location":[11.852834,50.862557]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.185,"geometry_index":3997,"location":[11.85283,50.862569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,346],"duration":12.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.824,"geometry_index":3998,"location":[11.852815,50.862613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":8.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.953,"geometry_index":4001,"location":[11.851802,50.865175]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[167,346],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":4003,"location":[11.851067,50.867061]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Berlin"},{"type":"text","text":"/"},{"type":"text","text":"Halle (Saale)"}],"type":"fork","modifier":"left","text":"Berlin / Halle (Saale)"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"fork","modifier":"left","text":"A 9"},"distanceAlongGeometry":145560.219},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Berlin"},{"type":"text","text":"/"},{"type":"text","text":"Halle (Saale)"}],"type":"fork","modifier":"left","text":"Berlin / Halle (Saale)"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"fork","modifier":"left","text":"A 9"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 9/E 51.","modifier":"slight left","bearing_after":30,"bearing_before":33,"location":[11.511234,49.729738]},"speedLimitSign":"vienna","name":"","weight_typical":4614.033,"duration_typical":5081.81,"duration":5081.81,"distance":145560.219,"driving_side":"right","weight":4614.033,"mode":"driving","ref":"A 9; E 51","geometry":"skgz}Ac{q}T{H{G_^{Wgr@we@adBukAeLmIu^mVw]ySyKqGsQaIgf@kQkV{GuZoGyZaEyb@gCmXm@s`@r@uf@nE_UtBw~@fSmg@lLaa@jKcrB~e@qvB|f@atA~[mPrDocAfVem@~Ng`@|Iio@pOcs@nPo`@`J_IjBcFfA_InB}MhDqEdAgH|AiSrE{~Ah`@a{Ar]ws@|O}RjE_z@pLwl@tEcm@jAkaAfAib@`Bw[bEe]|Hq]pKiY`McYxO_OtJs`@|Zih@va@qg@zZk_@xNid@|K_i@|GoYf@cb@{@mb@iE__AmV}l@sSmc@sNev@{Lu_A{GmX_C}XsEsc@oL{f@_Sqh@g]sb@{_@gwAgaBye@kb@gb@s]qZ_Reh@mTkSgHwQuEuP}DkYwEaOgBsKg@ee@}Ao_@Tg^pB}e@vFid@zK_RlFaUlImQnImUdMyRtLq[rVmA~@sHzFkt@ru@{b@lm@yTv_@oUnd@yRdd@cX|t@mLzb@aPhm@}SfgAoTtqAqNb{@u`@~`Ca@xBsDfS}O`y@oTfr@{DzJuOzb@wOl^ySz^uZzd@uUvYm]b^o`@rZo`@pU{[lM_NvF}PpF_[dGkb@nEsY~@id@o@yWuBiUuDqX_FsYaJeVyJsUoLma@aYyQwOqNaMwZu\\gRaXm_AuvAgaAktA_k@kk@iYySwUqOih@qVuUoIsSgGqXsFkXoD{j@iDwf@~@}h@xFaNpBy\\dHor@nVw`Ald@qUtKq[tOwVzLgRtI{lAbj@{h@lQsd@dKs^dFcf@|Cwz@GsZsAoW_CkY}EwWwFi[}IeVoHcWqK}WaKm`Aua@_XwI}j@kRyi@aKam@mG_U_CuQa@u_@sA_t@D}LDyu@IyW_AcLy@o_@}Dif@yJsSgGaPsFox@yZcxBojA}RgIm`@eOy}@iVag@eJsy@wLcBWwzAcUuj@gM{j@_Pib@aPuv@y^_j@o]oc@w[wd@ca@ad@ce@o^ob@gSwUkNaR{r@ybAwa@ap@{xA}|Bom@_}@qn@e{@gh@im@_c@ac@un@ii@yb@k[yh@iYai@eWyf@gP_h@_N}m@yKg\\}D_TgCmu@wEy|AgCocB}ByZ[obAaA_kByAkv@gDyi@uEib@_Gwb@_Luc@wOmg@kVg^iUwUmRkg@ce@ga@ge@kh@sw@c\\un@{]ox@_Rci@o]ioA{Pq}@qOufAeKwbA}Duk@qCkn@iBgp@gA}i@[w\\yAe_Bo@g{Au@w{@aBgr@{Diu@aFap@{Iyv@cMcv@}Oqs@oRgo@qR{h@c]is@yb@us@cU_\\mVs]a|A{lBgt@wfA_Uab@qUch@{JsWwK{[qH_WyIm]kIk^mFaZyH}b@_Gu`@oKez@gHcp@yG{t@yGky@mEys@gEy~@uC}_AqBm`AgAi~@o@u|@KcmA[{z@EgwA?qk@?mnACinB@whACe~BKen@Q_vCBqmAHim@A_h@KukCSg{As@a|@q@qc@sByo@aGkcAmDwd@}Ese@iKux@kGu_@{EaWy@cEoGw[_WubAyTyr@mVso@kOo^yNeZa]wm@gZqd@sToYyBsCiQsSwQuR_VuTwP_NmZqTs\\sSq\\oQ}l@gUoh@uOch@uOok@wOgo@wPywCqy@axAca@mj@gOGAap@qQe`AkWmVyG}k@iPal@ePorA__@iG}B_b@qK_N}Cof@iOuNyDuU_G{j@aOcp@wOs|@oRef@oJap@{IwcAeK}d@uCmi@eCmVu@op@_@}y@~@aIL_r@|Bku@bFit@lHk^jEe_AfMy[tE}z@`Liw@bL_z@jLk|@~LyYhEe}@jMa{A`Toz@hLuo@~I{`@rFoThBkRrByLhAaMn@iRpAgWp@we@x@kd@s@oVg@_Z_AwPaAmJo@cUcCqRmBs^kFuOyBge@_IePkCga@{Gaf@oIaf@{I}L{B}k@yJiw@{N}v@kNib@aIss@eMgTkD{J}Aqa@sGei@kJiMiBsWeFuLqBi[_HkF_A}QaDceA{QgHiAyt@{Ms^oG}bA_Qkr@uLk_A{OiI}Auw@yMwc@{Fk`@{DmOsAwMaBkZ}Aq]oAG?{Ug@kG?iIAiYP_b@|AaXfAsSvA{[lEkm@`J{o@dLou@zOgFbAuL|BaZrFkrA`X{_@jHc\\pGiUrDoa@tEcb@`EeJ|@ki@hFea@zCyw@nDs\\jAwj@~@eRTih@[y`Ak@qX{@iCI}]sAs[aBw~ByPgcCoQgWcB}_AuHaUiBod@gDc_A_HqWqBsY{By[aCamAcJov@{FoNaAie@cD}dAeIus@uFqx@}FcVeByL{@ou@cDoWq@uYu@_t@kAwSE_a@Gsg@n@gORsWf@qUj@eu@|Cko@lDgy@tEay@`EwWnAcJb@eS`Aei@bDmh@bCuw@hFgt@jEq^bBg]jBq\\fBiUf@sXYgRu@yPiA_OiBk`@iGc^kJs[yKg`@cQk\\cRgUmO{p@ch@eFwDoe@i_@sUqQgKuHiMoHk]_NeSaFwZwEca@o@iWtAgVvDyUjGcSrH}NpIqC`BeXhSid@da@k}@bx@gRrNiSnMc[bPcHnCyRxHmeBph@{c@fNyG|BwNlE}f@`OaJ`CasAza@op@vRug@nMuc@nJaQjCqQlCgRpBuD\\mBP_Gf@kPr@eMf@kSTgYSwZ_Aa[wBujA{Mc}@{N}ZuFoLwBmgAcR_j@kJaj@mJa`@sGyrAyTqXsEql@{Jux@gNkR}CsSqDiLqB_XsE_\\gFak@eLkb@aK{`@mMkf@oScKgFgKmFoXwPqr@wg@g]qY}\\kZy\\{Za]}Yym@uf@aVkQcIaGu{@cm@mn@y`@cp@}_@go@s\\of@sV_a@yQ{v@_\\we@{Qav@mWet@oToXqHmd@_Lmm@}Mav@oNmq@cKmd@wGmc@cEsn@qF{D]a[qBsm@iC{Qk@iUs@ym@u@yyABySf@a\\r@md@tAoZ|@cYd@_i@]iZaAyl@mFyQ{CgSgDye@{LyYyJqc@eQa\\_PwV_P{@i@g_@qWa\\sXuYaXs_@_b@}UoZqSqY}f@yv@ii@i|@ck@m_AiPcXc_@qm@wu@gnAyUia@uUyb@wQaa@yS}h@wNic@cOgh@mMak@sIyc@oHeb@wHqj@uImv@yMylAgG_f@}Fa_@ePg|@y]caByMwk@oKmi@oJgi@yKew@uHiq@c@oEa@kFkD}`@cGqv@_IokA{LkfBoIqnAqGuaAmMqjB_Got@gIku@}Hcl@yKyk@qN}q@qQwo@sg@waBkb@stAuZw`AgEwMm_@alAyLo`@{Q_m@_Pqg@se@mzAyIcYsJqZyw@ggCQg@uy@ilCk]seAiUmn@{g@cnAoh@glAol@wsAob@geAsIkT_b@ekA_JwYyRao@}sAm_Fom@szB}Tsu@kVir@uWcp@iWkk@u`@_v@uh@a|@gMcS}_@qm@if@cv@kuAczByMmSa`@wm@g\\uh@}\\yg@_Vc\\c\\g`@wZc]k^o]kZwViHeG}NcKy\\yUia@wWk[aSafBwiAqLqIkK{Ggf@sZoo@sb@qe@yZqk@ca@w]iX}F}Ekf@wc@uW{XyIkJuZc]sLeOs_@kg@kh@{w@i[ik@mQg[iJsQqJyS_DaH{Q{`@{[qx@g`@egAi]wbAuYq{@gZuz@oLyZwQqe@wY{t@wUuj@}j@gsAal@muAsNa]w^{{@mf@sjA_bBc}DykDygIy`Aw|BcU_e@wTk`@}\\oj@a^ch@_PkT}SeXwa@uc@aa@i`@iQ}OkWoSaNeKsUsP_e@sX{YkP}VsLaOiG_KkEySuH{UaIqTwGq_@}H_SgEsVyD{YsCwZyCuf@}C}s@oCmx@_AkWKqNGsf@Cok@I{r@i@gR_@}b@{A{UoAoPoB_ZcDyUwDmU_EmWuFyd@qLw^sLuXiK{WmLge@}Tul@wZsj@{XeaBaz@{NyHep@q]uv@q`@ce@eVk[cPgu@a`@k`@uRe\\wOam@}Twa@aKkBe@s]uFqYqBga@eByMNmZ\\yd@fE}N~ByNpC{MvC}f@pMcj@~QmZzJeYjJwcBpk@_UtHibA~\\mRbFem@dSgLvDuJ`DuZpJeUnG}TpE}Dx@wE~@sTdDgIlAmQvByS~Ai]|A_]^iVU_Tc@qZwA}S_Cym@sI}ToEeQsD{YaJgPiF{N_G}OkGeRqIm[sP{c@uWq]kUmU_Q_a@_\\wWmUyW}VeYkXiWgW}k@{n@im@cr@gBqBeNqPek@_r@o`@ef@uw@m`Awt@w|@w[y^e\\i_@e`@}b@ij@wl@qv@qv@sv@is@oa@u^c|@gv@ey@mq@wz@as@kQ_Oy]{YsHiGkJ{HiHaGoViSsK}Igw@wo@uf@ia@}s@}l@eYsUeKqIsMuKuw@ep@ox@yp@{]wYsx@{q@s_@k[oTuQkv@eo@aq@oj@ey@gq@{t@}m@mz@}p@ee@c]qc@mXcZoP_s@i\\qB_AwN_GyYyLqDyA_\\{Lk[qMmCgAiKeEyJaE_Bo@wqBox@ew@c[ab@yOiIeDc|@s]wv@wZcU{Ic^wNo_@}Ng[gMiVyJkv@gYgz@wW}g@uL}G_Buu@qLuO}Ayb@gEqy@{Dql@k@c}@`Boo@rDqMvAwe@nFsx@jNy`@|IiUvGwp@xTug@vSk~@nd@u]dS}v@|d@cZpQal@~[kj@|Wmh@hS_o@~QyThFkOdCch@rIyf@fE}\\xAqXh@un@SgFUaj@kDA?yi@mGgSyCeTqE{ZkHsg@{Oce@oQ{m@aY{G_FyZcRyj@ga@kh@kc@}TkTwd@sh@uPoTy`@yh@_l@e{@qm@_~@ok@g{@g|@}qAaCoDgL}Pgf@et@iLcQyDqF{CcFwMeQsXo_@_k@wr@eg@}i@{NeNy]k\\}j@}d@on@qc@yk@{]}t@ib@sv@}a@cs@i`@{g@}WcRaKy{@og@_x@gc@kX}N}]oR}r@m`@cI_EiGaDeNyGgr@a`@ox@mc@mg@uXqN}Hov@eb@ss@u`@ui@uZkw@_d@gj@sZaKwFw`@cTkUaMwf@eWuw@ub@wv@cc@y`@uTaWmNy`@aUqRqKwe@aWov@ua@ax@_c@s\\_RoY}Oyw@ad@gu@}`@sy@kb@cp@y]mn@}Zc|@e`@c_Ai\\oPaGeYsIug@uNwk@yLcu@gKiWwCyYiC{[mAgYo@{^g@eY^{Wb@_m@zB_Fh@gVzBub@xEaX|Dsi@bJi\\xHa_@xHyNbEuVtG_ObFwYbJmb@~NsdAd_@}pCbkA}eBvt@mdCndAmXnLygAre@sQlH}kDbzAiMpFsW`LugBrv@osBp|@opB~z@_NdFcjAhf@io@bY}RpIq`DvtAiHlDk^xQmS|L}IlGmS`Oi[pXuy@jv@erAlnA}WrVoh@lf@sa@|_@eh@te@}TbS__@rXu_@pU}g@`U__@pLmRxFcOlEeu@nPaq@rPw{Az^qf@xLuNtDiAVyxAd]sMdDo{An^a}@|TykArZ{b@~J_xAf]sTdFmUjFo`@bIiShCsK`AmFd@aSdAoRL_SDkRm@yRmA_RcBcQuBmg@_Iey@eO__@wG{T}D{m@wI}]kDoRuAqg@iAqYLkXbA{YbCyUzDwXpFoXrIiVpIkR|Ig^tRmh@t^ya@~]_v@ru@aT|Tyq@~s@iXtXeWzT{VxRaVlOw_@`Ta\\bNo`@~Lqc@zIiPlCsZzBu\\lA}WGka@eB{Y_D_YaFsXmGkXuImUeJkQqIgWoOqb@gYw[iYu\\a\\{SqU_N{Os_@ud@m}AelBmt@m}@mB_CycAenA_UyXcFiGgYu[mYyYkIaHuUwRi_@gVcj@cYi_@mNkg@wM{Eu@mb@iGoImAICyU}Aee@_@eSXw^jBw\\pEqZnFc\\bJ}U~HoTdJwVzLwXvPgg@x^gXfVaQnQqXb\\kSpYyFnIYb@ei@f`AcS`c@_j@nsAue@vkAs^d~@aI|RoVzl@wOb^kUxd@wRj\\{RnZiMjPm^fc@gVrUwWxTsu@`k@am@fd@}YxUmWzW}KjMkO~Qs]vg@qX~f@a\\ns@{KrXqQxj@cK|\\sKfe@eLxi@mOny@{Lho@aP~v@_Nhh@wJt[gMp]yMdZgMrU{St\\eOrRsOdPqPxNqPhMi^vRcRhIiOnEs[vGuw@hKc~Cd[ySp@iUUcOmA_QcCcPwDkLeEiOmGmPoJ_QcMGEgPyNqTcWeXsb@{KwUiIwR{HiUwHgXmE}PsDkRgHmc@}Da\\}BmYeFk}@aC}]sCs[wB}PoFo]kGsXkMib@iQ}_@mPuYmAoB[i@wE}F_JgLiPwOcMaKaJoFqMyGcLsEsJmDiUyFkVsGsXyGoP{EoYmKkYgNqPgL}OsL}X_WcTkUcTkVEEqSmUoSoSk[yVi^wT_F_C}\\{OmQoH}@a@kK_F}XaOoTuOkLaKaLyLaLqMuKoPuK}QeKgSy[gq@qYym@m~AahDoW_j@aHaOub@gw@}Sg]_Xu^y_@ab@cK}JkNoMmYoUyd@wXyW_PsnAwo@c\\qPanAuo@sU{M{PaKun@uc@my@{q@kn@or@}LsNoHqIiz@{cAgSiUwe@qe@cMcLcSwOmd@k[q[mQ}n@_YmIiDkQmHiQmHgAe@mLgGmZaMwQcK}d@cX{nAw_AebA_p@m^eQ_[wLi\\oJg_@uH_\\eDyWqCmk@a@sa@Vq`@jCyd@xDoa@hGwkAlWcd@rNe\\pKuz@~Ywz@f[cpBvu@cZ|Jiv@|Ugg@hMujAnTuy@zHar@pCgl@U{Sg@}]kCwb@mFwY}Ek|@aTay@yW}kAea@}vEc_Bs_Aa[}vAoc@a^{Hmc@aIwbAeL{z@iD_z@WseAzCadAnKqv@vN{UtGe^lIwaAhZqaAz[eUpG_o@hMeb@lEql@lAcm@cDgg@mK_nA{^uu@wYomBiw@{zC{mAc]sM_QgFkVqF{]iFea@eCoe@Bi^lBg`@bGk`@nJmc@rPie@vW}R|N}R|Ned@le@{Wz]c]vi@k[lp@{T|k@}Uxr@yd@bvAub@lhAaUhe@g[bj@g^hi@m_@nc@o\\p\\wa@d]ib@hXod@pU_^fMqPtEsMjDeYpFaOtBiWpCg[`Bo[Ja]w@o\\sCsYqDmYoFsVsG_VaIwg@mUeZ}O}VaPsPcMs[{UetAigAkrAybAkWyMmWyMqT}I}TgIuVoHsVqFen@yI??acGqTeKWua@iAc{FcToq@gJkp@cRsk@mUwk@y[mOsKu~@cv@gpBi_BkhA_s@ukAqi@mpAs`@atAuU_AEijAkGqm@g@o_@bAqeAfIqeA`Q_jAjZwb@bRam@nYoaAvm@ydAlz@im@bm@wQtQgZr^qZna@_b@|m@_Rf[mg@x|@{f@r`AgLtTy@|A{LnUsi@~z@{QnY{Zz^{\\v]ap@pf@mn@|^wq@xW}n@hP_oDpy@y~B`j@qFpAsYdHg[dJ{X~KwXdNwRlLgTpO{LnKeT~QmPbSwI`LsNnRaUt\\iY~c@oYpe@}Tl`@g\\ti@}_@jo@wdBptCoc@du@ee@tv@{c@js@g^fj@sV~YyUvXWZaY|YgWrUgNrKwQrMySdNiXjO{CzA_a@bQyPlHcDjAmTpHi^nIw]dG}^fCaITsN`@_Xt@iQY_ZuBqZuE_YmGgYeIwnAkh@af@kSq\\oOuIuD{FiCywAoo@{QkIwrBs~@saAac@aPgHw[{Ncs@y[_]qO}p@i[gb@_SwnCgpAyuAwk@sr@e[amDk|A_dA_d@gw@m^mbAkc@ilCqlAskGmqCuc@ePaV{IsUaIwh@{RglAsYw}@cP_[oE_`@sEa|@yHqz@_Fg|BuGgrE{QsaAeFanC}KmgB{I}XuCcLqAuMaBqTyDkUgEm`@qIug@yMoXkHqwB_k@qpG}bBimGwaBcIoBsDcAkdGo~AotFwxAuYwIaZaKuY_LoYoLmYeNeYyNmXeP{XiQ}W}Q_X_S{]wXsPyO_WkUuVqVsZe\\oUmXmUsYwTiZ}_AapAaIoKwkA{|A}b@em@yj@uu@eg@up@oM_QuKqMe^sc@{e@{h@sRkSsZoXeXgVqMyJw_@gX{b@kZwf@eYk}Em|B{pFijC}iFefCg]yPmYgOsc@}Vw[}Ra_@cVyu@ah@cOeKuvAq`AohFeqDwJ}GcrConByhBcjAceBegAmIoFegB_iAid@oYsdGyxDsbGayD{qBwoAqh@e]ie@}]sb@i_@cd@ob@}fBkoBmkB_rB_U{Uw`AkbAo[q\\u[wZm\\sYe]wWo]qUe^}Sa_@wQc_@sOk_@_Ng`@sKg`@oIm`@uGw`@aEq`@qC_a@GcB?uQBia@h@y`@hBqbApLg`@|Hc`@zJw]pL_AZsd@xQad@pSqgDx}Ak_Bfu@}h@|Vs^hPod@`Rmd@jOcNpDebA|Rc`@zEq`@pCg`@tAe`@Fi`@u@aa@aCk`@}De`@gGu_@uHu_@sKa_@eM}^iOg^cQs]mS__@yUez@}l@}U{OkfAkv@}N{Jcs@yf@iIaGyn@md@}dBulA}M}JkuAkaAasAe~@uRcNa|@so@ol@}a@oQkL_WyQasByyAkd@a_@ajA_hAsNiP{CkDgsAadBi^sg@gWc^gQuVst@ydAcW_^mn@c|@mGyIm`AqsAg\\ee@_}@yoAg`@ij@iQuV_uAinBc\\}c@wn@yz@eKyM_a@yb@eQ_P{YkUaZaSo\\wQ{ZoMuXmJgVqGgMmCuKkBgIsAcIcAq|AkNaxBoQwq@wF{fC{Ss_AyH}e@aFkSyCw[{Ge\\_KiRkHsJ_EeQoIqPcJqWsPaTcPyW{UuUyUgXo[yTeZ{@sA_Ty\\eJiP}JqR_IaPwR_`@oN_Z_aAsoBgb@m{@}iAe_CoVcg@e\\ml@uVo_@y_@ye@eHoHoXmYwa@_]gd@qYsd@qUun@_Ts^wHs]wEoZkCeVs@gS]ss@QywBk@cNIcd@OsLEk{GyBivGwByi@QarA_@sk@OySMwvAi@}HAeqAa@e^Kyb@FkTl@iVzAmQtBeQ`C}RbEuStFoJtCiPrFkStI{PhIaRvKu[xSoOpLwP|NyOhOyOzPgWf[en@xy@gt@fbAyfDhsE{f@~p@y^bd@}`@tb@qa@z_@y}@|q@sNbJ}TjMaS`Kw}Ahs@qz@b_@am@xWwa@vQ{_@rPia@pQ{g@dUgf@jU}c@`Wqc@lZkn@xg@y@t@gRtQaa@~b@s_@`e@{}AvrBqPjTgVj[u_B~tBe|AtpBw`@~g@mwA|jBuwArjBmMtOqb@df@wc@pd@gk@pg@wj@lc@_r@pd@s~@~g@mqAbt@}U`NoLrGmrCf}A_lAfp@mjEjaC{v@lb@kx@`b@sv@h^ebAx`@yZlKcRdGgVtHqcBvf@cQ`Fqv@tT}`@lLgS|FoA\\WFwA\\iBd@}dC`t@{U`Hc|Apc@wWjHo~@zW"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 124 miles.","announcement":"Continue for 124 miles.","distanceAlongGeometry":199123.062},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 16.","announcement":"In 2 miles, Keep right to take exit 16.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 16.","announcement":"In a half mile, Keep right to take exit 16.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 16 onto A 115 toward Berlin-Zentrum (Zoo), Zehlendorf.","announcement":"Keep right to take exit 16 onto A 115 toward Berlin-Zentrum (Zoo), Zehlendorf.","distanceAlongGeometry":320}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.850669,50.868077],"geometry_index":4004,"admin_index":1,"weight":27.698,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.964,"bearings":[166,343,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":11.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.343,"geometry_index":4007,"location":[11.848214,50.874234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,351],"duration":16.983,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.71,"geometry_index":4011,"location":[11.84738,50.876549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.811,"geometry_index":4015,"location":[11.846738,50.880128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":10.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.059,"geometry_index":4016,"location":[11.846674,50.88053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":4.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.185,"geometry_index":4019,"location":[11.846324,50.882762]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":14.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.763,"geometry_index":4020,"location":[11.846177,50.883695]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.845719,50.886681],"geometry_index":4023,"admin_index":1,"weight":1.896,"is_urban":false,"turn_weight":1,"duration":0.962,"bearings":[163,176,355],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":11.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.545,"geometry_index":4024,"location":[11.845693,50.88688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":2.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.954,"geometry_index":4028,"location":[11.845362,50.889196]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.754,"geometry_index":4029,"location":[11.8453,50.889588]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":16.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.856,"geometry_index":4030,"location":[11.845211,50.890146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":9.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.436,"geometry_index":4032,"location":[11.844637,50.893336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":8.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.306,"geometry_index":4033,"location":[11.844279,50.895183]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":3.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.775,"geometry_index":4034,"location":[11.843978,50.896848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":2.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.364,"geometry_index":4036,"location":[11.843858,50.89761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":2.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.479,"geometry_index":4037,"location":[11.843776,50.898107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":33.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":31.385,"geometry_index":4038,"location":[11.843682,50.898627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":24.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.228,"geometry_index":4040,"location":[11.842642,50.905365]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.66,"geometry_index":4043,"location":[11.841905,50.91014]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,356],"duration":1.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.54,"geometry_index":4045,"location":[11.841682,50.911574]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[17,176,354],"duration":1.663,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":1.518,"geometry_index":4046,"location":[11.841643,50.911905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":3.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.456,"geometry_index":4047,"location":[11.841587,50.912223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":1.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.644,"geometry_index":4049,"location":[11.84148,50.912958]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.841435,50.913307],"geometry_index":4050,"admin_index":1,"weight":3.207,"is_urban":false,"turn_weight":1,"duration":2.393,"bearings":[158,175,356],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.179,"geometry_index":4051,"location":[11.841376,50.913801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,354],"duration":7.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.104,"geometry_index":4052,"location":[11.841204,50.915179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":102.839,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":89.983,"geometry_index":4054,"location":[11.840953,50.916805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,353],"duration":1.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.001,"geometry_index":4064,"location":[11.835673,50.937828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,352],"duration":13.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.689,"geometry_index":4065,"location":[11.835625,50.938065]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.383,"geometry_index":4067,"location":[11.834989,50.940804]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":44.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":40.064,"geometry_index":4068,"location":[11.834965,50.940905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":21.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.301,"geometry_index":4078,"location":[11.836383,50.950921]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,215],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.026,"geometry_index":4084,"location":[11.839982,50.955336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":4.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.415,"geometry_index":4085,"location":[11.840275,50.955553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,228],"duration":5.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.955,"geometry_index":4089,"location":[11.841662,50.956443]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.984,"geometry_index":4094,"location":[11.843437,50.957293]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.843802,50.957449],"geometry_index":4095,"admin_index":1,"weight":0.945,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.058,"bearings":[58,83,236],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,238],"duration":8.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.641,"geometry_index":4096,"location":[11.844227,50.957617]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.05,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.945,"geometry_index":4101,"location":[11.847604,50.959006]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.848021,50.959175],"geometry_index":4102,"admin_index":1,"weight":1.898,"is_urban":false,"turn_weight":1,"duration":1.018,"bearings":[57,208,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.898,"geometry_index":4103,"location":[11.848357,50.959313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,238],"duration":6.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.582,"geometry_index":4104,"location":[11.848693,50.959446]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":36.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.913,"geometry_index":4106,"location":[11.850772,50.960299]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,198],"duration":6.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.737,"geometry_index":4123,"location":[11.860514,50.966823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":0.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.857,"geometry_index":4124,"location":[11.861203,50.968326]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.861305,50.968549],"geometry_index":4125,"admin_index":1,"weight":1.281,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.403,"bearings":[16,42,196],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":3.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.914,"geometry_index":4126,"location":[11.861461,50.968894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.929,"geometry_index":4127,"location":[11.861818,50.969683]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.86193,50.96993],"geometry_index":4128,"admin_index":1,"weight":2.569,"is_urban":false,"turn_weight":1,"duration":1.703,"bearings":[17,166,196],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,197],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.312,"geometry_index":4129,"location":[11.862134,50.970349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":4.183,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.869,"geometry_index":4131,"location":[11.862292,50.970704]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,196],"duration":0.415,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.384,"geometry_index":4132,"location":[11.862784,50.971758]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,194],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.306,"geometry_index":4133,"location":[11.862826,50.971861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,196],"duration":19.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.054,"geometry_index":4134,"location":[11.862985,50.972207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,225],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.793,"geometry_index":4146,"location":[11.867009,50.976411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":18.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.361,"geometry_index":4147,"location":[11.867273,50.97656]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":12.442,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.82,"geometry_index":4156,"location":[11.87399,50.978815]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":1.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.986,"geometry_index":4159,"location":[11.878701,50.980005]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":36.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.792,"geometry_index":4160,"location":[11.879095,50.980105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":5.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.163,"geometry_index":4163,"location":[11.893109,50.983635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":12.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.51,"geometry_index":4164,"location":[11.895186,50.98416]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":1.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.205,"geometry_index":4166,"location":[11.899817,50.985336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,248],"duration":28.593,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.448,"geometry_index":4167,"location":[11.9003,50.98546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":1.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.947,"geometry_index":4174,"location":[11.909944,50.989628]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,224],"duration":66.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":60.079,"geometry_index":4175,"location":[11.910251,50.989831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.979,"geometry_index":4188,"location":[11.922166,51.005507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":35.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":31.819,"geometry_index":4189,"location":[11.922334,51.005778]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":2.351,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.109,"geometry_index":4194,"location":[11.927747,51.014486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":4.087,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.672,"geometry_index":4195,"location":[11.9281,51.015066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.926,"geometry_index":4196,"location":[11.928705,51.016062]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":52.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":46.934,"geometry_index":4197,"location":[11.928861,51.016315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.826,"geometry_index":4203,"location":[11.936587,51.029085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":32.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.16,"geometry_index":4204,"location":[11.936721,51.029307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,189],"duration":8.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.688,"geometry_index":4211,"location":[11.940825,51.037121]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.941138,51.039281],"geometry_index":4216,"admin_index":2,"weight":1.048,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.172,"bearings":[3,28,183],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":2.259,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.033,"geometry_index":4217,"location":[11.941162,51.039576]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":0.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.89,"geometry_index":4218,"location":[11.941209,51.040151]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.941228,51.040399],"geometry_index":4219,"admin_index":2,"weight":1.35,"is_urban":false,"turn_weight":1,"duration":0.396,"bearings":[3,155,183],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.155,"geometry_index":4220,"location":[11.941236,51.040499]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":6.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.686,"geometry_index":4221,"location":[11.94126,51.040822]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":29.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.364,"geometry_index":4222,"location":[11.941391,51.042426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.921,"geometry_index":4235,"location":[11.943301,51.049741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":24.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.489,"geometry_index":4236,"location":[11.943446,51.049988]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,202],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.381,"geometry_index":4243,"location":[11.947312,51.055867]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,204],"duration":7.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.642,"geometry_index":4244,"location":[11.947381,51.055966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":26.798,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.441,"geometry_index":4246,"location":[11.948697,51.05802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,198],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.877,"geometry_index":4258,"location":[11.953237,51.065514]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":12.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.71,"geometry_index":4259,"location":[11.953362,51.065789]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,191],"duration":46.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":42.282,"geometry_index":4265,"location":[11.954691,51.069359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,180],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.55,"geometry_index":4274,"location":[11.955672,51.081044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,181],"duration":13.519,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.505,"geometry_index":4275,"location":[11.955675,51.081199]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":0.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.62,"geometry_index":4277,"location":[11.955712,51.084507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":9.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.544,"geometry_index":4278,"location":[11.955713,51.084681]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":7.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.525,"geometry_index":4280,"location":[11.955742,51.086967]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955753,51.088709],"geometry_index":4282,"admin_index":2,"weight":2.152,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.334,"bearings":[0,14,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":4.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.271,"geometry_index":4283,"location":[11.955759,51.089286]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":2.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.086,"geometry_index":4284,"location":[11.955772,51.090426]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955777,51.09098],"geometry_index":4285,"admin_index":2,"weight":1.01,"is_urban":false,"turn_weight":0.5,"duration":0.558,"bearings":[0,168,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":7.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.49,"geometry_index":4286,"location":[11.955778,51.091119]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":5.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.335,"geometry_index":4288,"location":[11.955795,51.092837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":17.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.902,"geometry_index":4290,"location":[11.955811,51.094248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":0.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.462,"geometry_index":4294,"location":[11.955859,51.098451]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":3.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.195,"geometry_index":4295,"location":[11.955859,51.098578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":6.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.92,"geometry_index":4296,"location":[11.955867,51.09943]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955889,51.101008],"geometry_index":4298,"admin_index":2,"weight":2.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.639,"bearings":[0,13,181],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":29.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.215,"geometry_index":4299,"location":[11.955893,51.101655]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955975,51.108849],"geometry_index":4301,"admin_index":2,"weight":1.262,"is_urban":false,"turn_weight":1,"duration":0.298,"bearings":[1,168,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":6.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.662,"geometry_index":4302,"location":[11.955976,51.108918]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,180],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.315,"geometry_index":4304,"location":[11.955988,51.110472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[184,359],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.972,"geometry_index":4305,"location":[11.956029,51.110843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":2.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.527,"geometry_index":4306,"location":[11.956024,51.111115]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,179],"duration":15.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.32,"geometry_index":4307,"location":[11.956012,51.111816]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":1.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.524,"geometry_index":4310,"location":[11.956091,51.115787]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,181],"duration":64.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":56.544,"geometry_index":4311,"location":[11.956104,51.11622]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.779,"geometry_index":4333,"location":[11.964352,51.131452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":0.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.655,"geometry_index":4334,"location":[11.964531,51.131648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":77.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":68.229,"geometry_index":4335,"location":[11.964684,51.131815]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":1.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.591,"geometry_index":4343,"location":[11.979664,51.148853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":12.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.836,"geometry_index":4345,"location":[11.98003,51.149247]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":0.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.397,"geometry_index":4349,"location":[11.982417,51.151954]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":25.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.985,"geometry_index":4350,"location":[11.982506,51.152056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":36.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":31.629,"geometry_index":4354,"location":[11.987244,51.157437]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":0.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.417,"geometry_index":4358,"location":[11.994048,51.165179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":21.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.375,"geometry_index":4359,"location":[11.994139,51.165282]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,209],"duration":4.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.189,"geometry_index":4362,"location":[11.998229,51.16994]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,208],"duration":7.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.896,"geometry_index":4363,"location":[11.99909,51.170957]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.00032,51.172628],"geometry_index":4365,"admin_index":2,"weight":1.971,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.149,"bearings":[25,38,205],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,205],"duration":9.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.208,"geometry_index":4366,"location":[12.000663,51.173098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":6.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.709,"geometry_index":4368,"location":[12.002199,51.175334]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":2.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.005,"geometry_index":4369,"location":[12.00315,51.176718]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":17.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.73,"geometry_index":4370,"location":[12.003485,51.177209]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.006295,51.181304],"geometry_index":4372,"admin_index":2,"weight":2.029,"is_urban":false,"turn_weight":1,"duration":1.091,"bearings":[24,189,203],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":6.466,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.143,"geometry_index":4373,"location":[12.006475,51.181555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":14.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.713,"geometry_index":4375,"location":[12.007542,51.183079]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.564,"geometry_index":4377,"location":[12.00987,51.186493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":89.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":82.418,"geometry_index":4378,"location":[12.009969,51.186632]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":7.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.604,"geometry_index":4393,"location":[12.027656,51.206773]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.02952,51.208274],"geometry_index":4394,"admin_index":2,"weight":0.953,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.078,"bearings":[37,59,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":9.353,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.418,"geometry_index":4395,"location":[12.029778,51.208488]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.984,"geometry_index":4397,"location":[12.032101,51.210368]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.032367,51.210588],"geometry_index":4398,"admin_index":2,"weight":2.843,"is_urban":false,"turn_weight":1,"duration":2.055,"bearings":[38,187,217],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.286,"geometry_index":4399,"location":[12.032872,51.210998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":5.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.704,"geometry_index":4400,"location":[12.032954,51.211065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":30.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.727,"geometry_index":4401,"location":[12.034272,51.212136]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":22.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.562,"geometry_index":4407,"location":[12.041286,51.21881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":1.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.487,"geometry_index":4409,"location":[12.046229,51.223866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":1.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.339,"geometry_index":4410,"location":[12.046572,51.224218]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.099,"geometry_index":4412,"location":[12.046886,51.22453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":5.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.407,"geometry_index":4413,"location":[12.047137,51.224785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":7.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.06,"geometry_index":4414,"location":[12.048386,51.226038]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":1.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.632,"geometry_index":4416,"location":[12.049982,51.227658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,212],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.766,"geometry_index":4418,"location":[12.050353,51.228029]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,210],"duration":15.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.785,"geometry_index":4419,"location":[12.050519,51.228207]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.053879,51.231598],"geometry_index":4420,"admin_index":2,"weight":1.697,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.856,"bearings":[31,46,212],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":23.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.135,"geometry_index":4422,"location":[12.054266,51.231996]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":2.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.894,"geometry_index":4425,"location":[12.059383,51.237178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":9.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.391,"geometry_index":4426,"location":[12.059821,51.237618]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":7.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.321,"geometry_index":4427,"location":[12.061745,51.239583]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":2.329,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.097,"geometry_index":4428,"location":[12.063251,51.2411]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.063761,51.2416],"geometry_index":4429,"admin_index":2,"weight":2.08,"is_urban":false,"turn_weight":1,"duration":1.219,"bearings":[32,201,213],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":5.794,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.215,"geometry_index":4430,"location":[12.064022,51.241866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":5.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.752,"geometry_index":4431,"location":[12.065295,51.243159]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":12.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.387,"geometry_index":4433,"location":[12.066466,51.244335]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":164.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":147.651,"geometry_index":4434,"location":[12.069259,51.247156]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.849,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.764,"geometry_index":4471,"location":[12.117633,51.277471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,217],"duration":41.349,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":37.214,"geometry_index":4472,"location":[12.117845,51.277648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":8.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.375,"geometry_index":4480,"location":[12.129802,51.285479]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,223],"duration":1.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.543,"geometry_index":4483,"location":[12.132165,51.287037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.132646,51.287375],"geometry_index":4484,"admin_index":2,"weight":0.648,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.727,"bearings":[42,63,222],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,222],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.86,"geometry_index":4485,"location":[12.132854,51.287522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.678,"geometry_index":4487,"location":[12.134346,51.288678]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[38,194,217],"duration":2.202,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.975,"geometry_index":4488,"location":[12.134543,51.288843]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":5.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.598,"geometry_index":4490,"location":[12.135103,51.289294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":61.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":55.759,"geometry_index":4491,"location":[12.136417,51.290351]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,211],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.11,"geometry_index":4502,"location":[12.151895,51.303375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":3.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.573,"geometry_index":4503,"location":[12.152118,51.303625]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":1.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.804,"geometry_index":4504,"location":[12.152839,51.304434]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":81.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":73.493,"geometry_index":4505,"location":[12.15321,51.304842]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":8.298,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.468,"geometry_index":4513,"location":[12.166275,51.319417]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":0.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.61,"geometry_index":4515,"location":[12.167608,51.320892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":2.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.379,"geometry_index":4516,"location":[12.167724,51.321021]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":11.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.923,"geometry_index":4517,"location":[12.168052,51.321385]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.169424,51.322926],"geometry_index":4519,"admin_index":3,"weight":13.209,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.685,"bearings":[29,48,209],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":75.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":67.542,"geometry_index":4520,"location":[12.1698,51.323345]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":8.585,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.727,"geometry_index":4521,"location":[12.171703,51.32547]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.171932,51.325714],"geometry_index":4522,"admin_index":3,"weight":3.383,"is_urban":false,"turn_weight":1,"duration":2.654,"bearings":[30,182,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":7.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.956,"geometry_index":4523,"location":[12.172111,51.325905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":11.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.578,"geometry_index":4524,"location":[12.172623,51.326475]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":168.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":156.118,"geometry_index":4526,"location":[12.173408,51.327348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":15.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.283,"geometry_index":4535,"location":[12.18283,51.340398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":1.163,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.104,"geometry_index":4537,"location":[12.183656,51.341562]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":4.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.481,"geometry_index":4538,"location":[12.183779,51.341739]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.184205,51.342369],"geometry_index":4539,"admin_index":2,"weight":2.825,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.98,"bearings":[23,39,203],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":47.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":44.906,"geometry_index":4540,"location":[12.184424,51.342684]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,189],"duration":10.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.813,"geometry_index":4548,"location":[12.186909,51.34786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.18715,51.349033],"geometry_index":4550,"admin_index":2,"weight":7.602,"is_urban":false,"turn_weight":1,"duration":6.968,"bearings":[6,179,187],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":16.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.271,"geometry_index":4551,"location":[12.18728,51.349777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.187609,51.351493],"geometry_index":4552,"admin_index":2,"weight":15.443,"is_urban":false,"turn_weight":0.75,"duration":15.474,"bearings":[7,175,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":5.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.551,"geometry_index":4556,"location":[12.188017,51.353558]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":45.849,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":43.557,"geometry_index":4557,"location":[12.188162,51.35444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.368,"geometry_index":4560,"location":[12.189327,51.360459]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,187],"duration":85.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":78.868,"geometry_index":4561,"location":[12.189403,51.360857]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":1.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.567,"geometry_index":4571,"location":[12.188201,51.368866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":23.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":20.708,"geometry_index":4572,"location":[12.188112,51.36913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":3.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.937,"geometry_index":4575,"location":[12.187108,51.372255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":42.511,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":37.197,"geometry_index":4576,"location":[12.186947,51.372737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":9.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.576,"geometry_index":4579,"location":[12.185391,51.377627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":11.786,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.607,"geometry_index":4581,"location":[12.184974,51.378813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":6.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.858,"geometry_index":4583,"location":[12.184292,51.380918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":3.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.355,"geometry_index":4584,"location":[12.18392,51.382083]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":26.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":23.605,"geometry_index":4585,"location":[12.183761,51.382595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":0.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.238,"geometry_index":4589,"location":[12.18232,51.387085]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.331,"geometry_index":4590,"location":[12.182306,51.38713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":14.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.415,"geometry_index":4592,"location":[12.182167,51.387562]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":1.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.16,"geometry_index":4593,"location":[12.181368,51.390049]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":0.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.454,"geometry_index":4594,"location":[12.181301,51.390255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":10.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.324,"geometry_index":4595,"location":[12.181275,51.390336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":16.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":14.856,"geometry_index":4599,"location":[12.180867,51.391951]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,181],"duration":5.096,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.713,"geometry_index":4603,"location":[12.180709,51.394548]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,183],"duration":0.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.208,"geometry_index":4605,"location":[12.180775,51.395373]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":0.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.042,"geometry_index":4606,"location":[12.180782,51.395418]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":17.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":16.233,"geometry_index":4607,"location":[12.180782,51.39542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":9.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.148,"geometry_index":4613,"location":[12.181791,51.39886]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.182756,51.40069],"geometry_index":4616,"admin_index":3,"weight":1.938,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.048,"bearings":[20,46,199],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":9.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.835,"geometry_index":4617,"location":[12.182926,51.400981]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":2.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.793,"geometry_index":4619,"location":[12.183685,51.402289]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.18393,51.402704],"geometry_index":4620,"admin_index":3,"weight":9.979,"is_urban":false,"turn_weight":0.5,"duration":9.984,"bearings":[20,189,200],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":13.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.752,"geometry_index":4622,"location":[12.18486,51.404346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":3.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.186,"geometry_index":4624,"location":[12.186119,51.406552]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":55.952,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":53.154,"geometry_index":4625,"location":[12.186447,51.407124]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.989,"geometry_index":4631,"location":[12.192734,51.418027]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.242,"geometry_index":4632,"location":[12.192852,51.418231]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":2.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.989,"geometry_index":4633,"location":[12.192884,51.418287]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":14.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.819,"geometry_index":4634,"location":[12.19316,51.418766]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.195099,51.422116],"geometry_index":4637,"admin_index":3,"weight":2.574,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.717,"bearings":[20,34,200],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":13.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.165,"geometry_index":4638,"location":[12.195444,51.422709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.441,"geometry_index":4641,"location":[12.197188,51.425739]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":9.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.594,"geometry_index":4642,"location":[12.197248,51.425841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.719,"geometry_index":4645,"location":[12.19841,51.427868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":7.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.911,"geometry_index":4646,"location":[12.198643,51.428277]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":0.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.466,"geometry_index":4649,"location":[12.199594,51.429908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":16.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.859,"geometry_index":4650,"location":[12.199658,51.430018]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":3.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.053,"geometry_index":4652,"location":[12.201663,51.433526]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.202079,51.434227],"geometry_index":4654,"admin_index":3,"weight":6.758,"is_urban":false,"turn_weight":1,"duration":6.247,"bearings":[19,190,201],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":5.837,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.399,"geometry_index":4655,"location":[12.202875,51.43563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.332,"geometry_index":4656,"location":[12.203685,51.437041]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":39.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":36.662,"geometry_index":4657,"location":[12.203734,51.437127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.489,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.371,"geometry_index":4663,"location":[12.209257,51.446716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.448,"geometry_index":4664,"location":[12.209464,51.44707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.697,"geometry_index":4665,"location":[12.20953,51.447186]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[20,108,200],"duration":14.022,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.965,"geometry_index":4666,"location":[12.209784,51.447626]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":6.851,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.337,"geometry_index":4668,"location":[12.211735,51.451014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":35.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":32.88,"geometry_index":4669,"location":[12.212692,51.45267]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":6.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.078,"geometry_index":4677,"location":[12.216549,51.461456]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.216789,51.463142],"geometry_index":4679,"admin_index":3,"weight":5.197,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.797,"bearings":[2,18,184],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.216841,51.464597],"geometry_index":4683,"admin_index":3,"weight":4.3,"is_urban":false,"turn_weight":1,"duration":3.688,"bearings":[163,181,359],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,357],"duration":3.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.794,"geometry_index":4685,"location":[12.216812,51.465597]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":81.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":73.123,"geometry_index":4687,"location":[12.216729,51.46644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.24,"geometry_index":4707,"location":[12.208374,51.487726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":6.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.005,"geometry_index":4708,"location":[12.207711,51.488612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.206484,51.490262],"geometry_index":4710,"admin_index":3,"weight":2.119,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.362,"bearings":[155,335,353],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":10.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.568,"geometry_index":4711,"location":[12.206058,51.490833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,340],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.877,"geometry_index":4714,"location":[12.204184,51.493424]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.203879,51.493947],"geometry_index":4716,"admin_index":2,"weight":2.009,"is_urban":false,"turn_weight":1,"duration":1.128,"bearings":[148,160,340],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,342],"duration":5.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.585,"geometry_index":4717,"location":[12.203715,51.494222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":38.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":33.729,"geometry_index":4720,"location":[12.203105,51.495512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.803,"geometry_index":4728,"location":[12.200314,51.50556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,350],"duration":123.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":107.966,"geometry_index":4729,"location":[12.200248,51.505788]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[87,176,356],"duration":63.907,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":2,"weight":57.51,"geometry_index":4746,"location":[12.196901,51.530279]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,346],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.121,"geometry_index":4755,"location":[12.192865,51.542767]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":23.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":21.344,"geometry_index":4756,"location":[12.192745,51.543075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":6.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.579,"geometry_index":4759,"location":[12.190525,51.548964]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.189879,51.550738],"geometry_index":4760,"admin_index":2,"weight":2.671,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.832,"bearings":[1,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":35.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":33.939,"geometry_index":4761,"location":[12.189607,51.551456]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.187292,51.56067],"geometry_index":4771,"admin_index":2,"weight":16.803,"is_urban":false,"turn_weight":0.75,"duration":17.363,"bearings":[5,166,183],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":16.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.891,"geometry_index":4778,"location":[12.188346,51.565209]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":97.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.786,"geometry_index":4780,"location":[12.189531,51.569406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.17,"geometry_index":4803,"location":[12.184343,51.59459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,348],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.48,"geometry_index":4804,"location":[12.184074,51.595207]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,353],"duration":27.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.819,"geometry_index":4807,"location":[12.183477,51.597071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,193],"duration":4.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.493,"geometry_index":4820,"location":[12.18413,51.604304]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.184655,51.605585],"geometry_index":4822,"admin_index":2,"weight":1.419,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.584,"bearings":[14,31,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":20.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.236,"geometry_index":4823,"location":[12.184822,51.605989]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.186953,51.611134],"geometry_index":4827,"admin_index":2,"weight":2.08,"is_urban":false,"turn_weight":1,"duration":1.221,"bearings":[14,177,195],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":5.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.914,"geometry_index":4828,"location":[12.187098,51.611483]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":31.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.728,"geometry_index":4830,"location":[12.187749,51.613069]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":5.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.292,"geometry_index":4834,"location":[12.191593,51.622325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.793,"geometry_index":4835,"location":[12.192291,51.624029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":19.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.685,"geometry_index":4836,"location":[12.192486,51.624513]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":6.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.671,"geometry_index":4838,"location":[12.194477,51.629269]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":6.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.133,"geometry_index":4840,"location":[12.195095,51.630764]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":1.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.451,"geometry_index":4842,"location":[12.19576,51.632379]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.195918,51.632762],"geometry_index":4843,"admin_index":2,"weight":1.024,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.115,"bearings":[14,38,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":7.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.5,"geometry_index":4844,"location":[12.19603,51.633038]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.196761,51.634801],"geometry_index":4847,"admin_index":2,"weight":1.726,"is_urban":false,"turn_weight":0.5,"duration":1.332,"bearings":[15,173,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":6.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.532,"geometry_index":4848,"location":[12.196905,51.63514]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,193],"duration":72.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":65.259,"geometry_index":4850,"location":[12.197522,51.636719]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":1.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.712,"geometry_index":4864,"location":[12.202501,51.655632]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":46.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":40.563,"geometry_index":4865,"location":[12.202595,51.656129]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":1.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.98,"geometry_index":4868,"location":[12.20493,51.668303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":70.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":61.629,"geometry_index":4869,"location":[12.204983,51.668594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":1.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.938,"geometry_index":4870,"location":[12.208572,51.687443]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":32.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.35,"geometry_index":4871,"location":[12.208617,51.687716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.926,"geometry_index":4874,"location":[12.210271,51.696306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":24.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.135,"geometry_index":4875,"location":[12.21032,51.696576]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":6.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.899,"geometry_index":4876,"location":[12.21153,51.703097]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":0.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.825,"geometry_index":4877,"location":[12.21185,51.704819]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.211896,51.705064],"geometry_index":4878,"admin_index":2,"weight":5.43,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.041,"bearings":[7,32,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.212211,51.706679],"geometry_index":4879,"admin_index":2,"weight":2.419,"is_urban":false,"turn_weight":1,"duration":1.596,"bearings":[6,151,187],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":6.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.863,"geometry_index":4880,"location":[12.212281,51.707089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":33.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.579,"geometry_index":4881,"location":[12.2126,51.708788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":1.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.728,"geometry_index":4885,"location":[12.214281,51.717625]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":10.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.473,"geometry_index":4886,"location":[12.214374,51.718127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":4.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.196,"geometry_index":4888,"location":[12.21488,51.720871]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.234,"geometry_index":4890,"location":[12.215108,51.722085]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.215177,51.722443],"geometry_index":4891,"admin_index":2,"weight":1.944,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.166,"bearings":[7,27,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":10.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.195,"geometry_index":4892,"location":[12.215283,51.723001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":2.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.852,"geometry_index":4894,"location":[12.215791,51.725662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.556,"geometry_index":4895,"location":[12.215892,51.726193]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.215923,51.726353],"geometry_index":4896,"admin_index":2,"weight":2.107,"is_urban":false,"turn_weight":1,"duration":1.236,"bearings":[7,163,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.187,"geometry_index":4897,"location":[12.216,51.726719]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":2.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.998,"geometry_index":4898,"location":[12.216133,51.727444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":51.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":45.202,"geometry_index":4899,"location":[12.216254,51.728106]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":26.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.336,"geometry_index":4912,"location":[12.22139,51.743187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":6.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.31,"geometry_index":4918,"location":[12.22662,51.750483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.227756,51.751909],"geometry_index":4919,"admin_index":2,"weight":1.07,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.244,"bearings":[24,48,206],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,204],"duration":3.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.272,"geometry_index":4920,"location":[12.227961,51.752199]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.489,"geometry_index":4921,"location":[12.228637,51.753068]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.979,"geometry_index":4922,"location":[12.228738,51.753199]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.22894,51.753454],"geometry_index":4923,"admin_index":2,"weight":1.951,"is_urban":false,"turn_weight":1,"duration":1.105,"bearings":[26,191,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":4.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.101,"geometry_index":4924,"location":[12.229147,51.753716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":70.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":61.752,"geometry_index":4926,"location":[12.23002,51.754833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,229],"duration":2.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.817,"geometry_index":4936,"location":[12.246961,51.769948]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,230],"duration":33.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.662,"geometry_index":4937,"location":[12.247626,51.770294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,229],"duration":56.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":50.97,"geometry_index":4938,"location":[12.258823,51.776243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":0.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.673,"geometry_index":4949,"location":[12.272522,51.788589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,202],"duration":16.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.642,"geometry_index":4950,"location":[12.272642,51.788774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":5.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.296,"geometry_index":4955,"location":[12.275524,51.792685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":12.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.279,"geometry_index":4956,"location":[12.276684,51.794035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":14.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.872,"geometry_index":4959,"location":[12.279125,51.79699]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":47.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":42.583,"geometry_index":4960,"location":[12.282079,51.800465]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":36.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":32.678,"geometry_index":4971,"location":[12.294211,51.810187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":6.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.295,"geometry_index":4983,"location":[12.304285,51.817319]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.305838,51.818875],"geometry_index":4984,"admin_index":2,"weight":1.296,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.459,"bearings":[32,51,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":4.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.196,"geometry_index":4985,"location":[12.306163,51.819191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":0.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.895,"geometry_index":4986,"location":[12.307222,51.820222]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.307436,51.820446],"geometry_index":4987,"admin_index":2,"weight":2.425,"is_urban":false,"turn_weight":0.5,"duration":2.146,"bearings":[31,186,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":0.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.417,"geometry_index":4988,"location":[12.307891,51.820905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.314,"geometry_index":4989,"location":[12.307989,51.821003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":2.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.611,"geometry_index":4990,"location":[12.308308,51.821331]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":1.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.943,"geometry_index":4991,"location":[12.308944,51.821965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":1.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.15,"geometry_index":4992,"location":[12.309167,51.822194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":88.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":77.67,"geometry_index":4993,"location":[12.309457,51.822486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.36,"geometry_index":5026,"location":[12.326028,51.843258]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.327162,51.845026],"geometry_index":5028,"admin_index":2,"weight":0.953,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.066,"bearings":[25,45,203],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":5.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.987,"geometry_index":5029,"location":[12.327341,51.845268]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,208],"duration":0.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.763,"geometry_index":5033,"location":[12.328355,51.846528]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.328527,51.846715],"geometry_index":5034,"admin_index":2,"weight":8.09,"is_urban":false,"turn_weight":1,"duration":7.885,"bearings":[30,182,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,212],"duration":4.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.234,"geometry_index":5036,"location":[12.3302,51.848407]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":33.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.834,"geometry_index":5038,"location":[12.331331,51.849367]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.426,"geometry_index":5051,"location":[12.341223,51.854995]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":15.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.188,"geometry_index":5052,"location":[12.341382,51.855065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,236],"duration":28.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.427,"geometry_index":5054,"location":[12.34637,51.857179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,235],"duration":4.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.042,"geometry_index":5055,"location":[12.354985,51.860895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,233],"duration":17.748,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.522,"geometry_index":5058,"location":[12.356391,51.861543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.975,"geometry_index":5062,"location":[12.362081,51.864014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":3.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.475,"geometry_index":5063,"location":[12.362436,51.864169]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.688,"geometry_index":5066,"location":[12.363729,51.86471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":7.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.689,"geometry_index":5068,"location":[12.364357,51.864969]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.877,"geometry_index":5070,"location":[12.3669,51.865944]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,239],"duration":4.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.352,"geometry_index":5071,"location":[12.367238,51.866068]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,240],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.59,"geometry_index":5073,"location":[12.368923,51.866666]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,241],"duration":1.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.994,"geometry_index":5074,"location":[12.369146,51.866743]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.36952,51.866874],"geometry_index":5075,"admin_index":2,"weight":14.127,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.152,"bearings":[62,83,240],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.91,"geometry_index":5079,"location":[12.375112,51.868696]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.375477,51.868816],"geometry_index":5080,"admin_index":2,"weight":2.443,"is_urban":false,"turn_weight":1,"duration":1.656,"bearings":[62,222,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,242],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.43,"geometry_index":5081,"location":[12.376045,51.869001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,240],"duration":73.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":63.887,"geometry_index":5083,"location":[12.377752,51.869594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":1.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.193,"geometry_index":5096,"location":[12.395278,51.882974]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":7.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.121,"geometry_index":5097,"location":[12.395517,51.88325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":8.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.549,"geometry_index":5098,"location":[12.396883,51.88484]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.398334,51.886519],"geometry_index":5099,"admin_index":2,"weight":1.584,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.768,"bearings":[28,44,208],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":6.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.127,"geometry_index":5100,"location":[12.398643,51.886874]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":1.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.092,"geometry_index":5102,"location":[12.399839,51.888249]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.400045,51.8885],"geometry_index":5103,"admin_index":2,"weight":2.105,"is_urban":false,"turn_weight":0.5,"duration":1.791,"bearings":[28,189,207],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":4.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.475,"geometry_index":5104,"location":[12.400402,51.888915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":310.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":271.98,"geometry_index":5105,"location":[12.40139,51.890065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,220],"duration":7.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.84,"geometry_index":5174,"location":[12.46215,51.959719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.464452,51.96119],"geometry_index":5177,"admin_index":2,"weight":0.848,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.975,"bearings":[48,69,226],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":3.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.123,"geometry_index":5178,"location":[12.464793,51.961382]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,231],"duration":0.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.688,"geometry_index":5181,"location":[12.466103,51.962063]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.466403,51.962204],"geometry_index":5182,"admin_index":2,"weight":2.119,"is_urban":false,"turn_weight":0.5,"duration":1.871,"bearings":[53,206,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.67,"geometry_index":5183,"location":[12.467032,51.9625]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":33.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.24,"geometry_index":5185,"location":[12.469259,51.963507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,234],"duration":6.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.09,"geometry_index":5188,"location":[12.480753,51.968744]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.483215,51.969751],"geometry_index":5190,"admin_index":2,"weight":1.428,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.639,"bearings":[60,76,238],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,240],"duration":12.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.254,"geometry_index":5191,"location":[12.483886,51.969988]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":1.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.076,"geometry_index":5195,"location":[12.489426,51.97155]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.489959,51.97169],"geometry_index":5196,"admin_index":2,"weight":2.023,"is_urban":false,"turn_weight":1,"duration":1.176,"bearings":[66,229,247],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":4.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.119,"geometry_index":5197,"location":[12.490462,51.971826]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":117.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":99.646,"geometry_index":5198,"location":[12.492518,51.972367]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":109.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":93.369,"geometry_index":5223,"location":[12.540221,51.989525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,233],"duration":7.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.945,"geometry_index":5248,"location":[12.574118,52.013762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.577242,52.015053],"geometry_index":5251,"admin_index":4,"weight":4.074,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.674,"bearings":[56,79,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.57906,52.015811],"geometry_index":5252,"admin_index":4,"weight":2.311,"is_urban":false,"turn_weight":1,"duration":1.516,"bearings":[57,215,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.088,"geometry_index":5253,"location":[12.579631,52.016037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.836,"geometry_index":5254,"location":[12.580113,52.016228]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":3.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.389,"geometry_index":5255,"location":[12.580476,52.016375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":24.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.309,"geometry_index":5256,"location":[12.582013,52.017022]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,236],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.721,"geometry_index":5259,"location":[12.591788,52.021042]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.488,"geometry_index":5260,"location":[12.592123,52.021178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":47.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":41.854,"geometry_index":5261,"location":[12.592335,52.021266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,236],"duration":2.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.072,"geometry_index":5281,"location":[12.607603,52.031064]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,241],"duration":15.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.158,"geometry_index":5283,"location":[12.608555,52.0314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,246],"duration":3.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.094,"geometry_index":5289,"location":[12.614959,52.032964]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.625,"geometry_index":5291,"location":[12.616378,52.033452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,236],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.443,"geometry_index":5292,"location":[12.616654,52.033568]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.617707,52.034049],"geometry_index":5294,"admin_index":4,"weight":13.213,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.123,"bearings":[49,66,232],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.621954,52.037369],"geometry_index":5304,"admin_index":4,"weight":2.686,"is_urban":false,"turn_weight":1,"duration":1.949,"bearings":[28,187,211],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.531,"geometry_index":5305,"location":[12.622375,52.037853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":2.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.238,"geometry_index":5306,"location":[12.62353,52.039144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,210],"duration":12.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.281,"geometry_index":5308,"location":[12.624115,52.039781]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,230],"duration":24.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.107,"geometry_index":5314,"location":[12.628215,52.042542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":0.775,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.68,"geometry_index":5316,"location":[12.637558,52.046621]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,236],"duration":71.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.131,"geometry_index":5317,"location":[12.637864,52.046747]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.721,"geometry_index":5331,"location":[12.653549,52.062219]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,202],"duration":10.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.24,"geometry_index":5333,"location":[12.65477,52.06409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.859,"geometry_index":5334,"location":[12.656413,52.066664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":27.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.09,"geometry_index":5335,"location":[12.656753,52.067184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":5340,"location":[12.661525,52.073771]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":73.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":64.73,"geometry_index":5341,"location":[12.661725,52.074009]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.152,"geometry_index":5353,"location":[12.681552,52.090405]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,221],"duration":12.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.92,"geometry_index":5354,"location":[12.681906,52.090658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,226],"duration":1.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.199,"geometry_index":5357,"location":[12.685528,52.093049]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.721,"geometry_index":5358,"location":[12.685968,52.09329]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":5.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.16,"geometry_index":5359,"location":[12.686221,52.093433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.688133,52.09444],"geometry_index":5362,"admin_index":4,"weight":4.127,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.594,"bearings":[51,75,229],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.689667,52.095209],"geometry_index":5363,"admin_index":4,"weight":2.92,"is_urban":false,"turn_weight":1,"duration":2.141,"bearings":[51,206,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":5.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.83,"geometry_index":5364,"location":[12.690399,52.095572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":151.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":132.68,"geometry_index":5365,"location":[12.692203,52.096495]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.818,"geometry_index":5386,"location":[12.741614,52.123525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":19.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.207,"geometry_index":5387,"location":[12.741872,52.123705]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":7.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.924,"geometry_index":5389,"location":[12.746968,52.127854]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.748951,52.129555],"geometry_index":5390,"admin_index":4,"weight":2.242,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.568,"bearings":[35,46,216],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":20.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.174,"geometry_index":5391,"location":[12.749574,52.130097]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.635,"geometry_index":5392,"location":[12.75464,52.134503]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.755375,52.135143],"geometry_index":5393,"admin_index":4,"weight":7.672,"is_urban":false,"turn_weight":1,"duration":7.633,"bearings":[35,207,215],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":62.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.752,"geometry_index":5394,"location":[12.757333,52.136852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":15.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.051,"geometry_index":5401,"location":[12.77336,52.150927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":7.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.158,"geometry_index":5404,"location":[12.777402,52.154421]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.779456,52.156208],"geometry_index":5406,"admin_index":4,"weight":1.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.344,"bearings":[35,53,215],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.055,"geometry_index":5407,"location":[12.779787,52.156494]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,214],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.697,"geometry_index":5409,"location":[12.78062,52.157226]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.781092,52.157625],"geometry_index":5410,"admin_index":4,"weight":2.557,"is_urban":false,"turn_weight":1,"duration":1.738,"bearings":[36,203,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.381,"geometry_index":5411,"location":[12.78151,52.157979]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.93,"geometry_index":5412,"location":[12.781609,52.158063]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":6.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.752,"geometry_index":5413,"location":[12.78187,52.15829]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":197.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":172.711,"geometry_index":5414,"location":[12.783059,52.159338]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.926,"geometry_index":5456,"location":[12.850566,52.187945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,224],"duration":24.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.449,"geometry_index":5457,"location":[12.850873,52.188142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":0.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.035,"geometry_index":5464,"location":[12.857896,52.191442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,241],"duration":25.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.227,"geometry_index":5465,"location":[12.857902,52.191444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":1.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.252,"geometry_index":5472,"location":[12.866402,52.193599]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":8.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.324,"geometry_index":5473,"location":[12.866861,52.1937]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.781,"geometry_index":5474,"location":[12.869529,52.194283]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,251],"duration":9.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.471,"geometry_index":5475,"location":[12.869801,52.194342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":23.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.646,"geometry_index":5479,"location":[12.872724,52.195099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":9.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.895,"geometry_index":5487,"location":[12.879339,52.197794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.881526,52.199096],"geometry_index":5489,"admin_index":4,"weight":18.861,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.578,"bearings":[42,56,224],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.885859,52.202678],"geometry_index":5493,"admin_index":4,"weight":2.445,"is_urban":false,"turn_weight":1,"duration":1.611,"bearings":[34,201,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":6.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.816,"geometry_index":5494,"location":[12.886159,52.202955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":6.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.246,"geometry_index":5495,"location":[12.887368,52.204074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":58.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.5,"geometry_index":5496,"location":[12.888662,52.205273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.164,"geometry_index":5503,"location":[12.899625,52.215441]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":7.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.338,"geometry_index":5504,"location":[12.900089,52.215866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.901418,52.217143],"geometry_index":5505,"admin_index":4,"weight":6.756,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.74,"bearings":[33,61,213],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.902858,52.218477],"geometry_index":5506,"admin_index":4,"weight":9.691,"is_urban":false,"turn_weight":1,"duration":9.939,"bearings":[34,196,213],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":20.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.027,"geometry_index":5507,"location":[12.904719,52.220194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":9.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.895,"geometry_index":5509,"location":[12.908574,52.223748]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.844,"geometry_index":5510,"location":[12.910246,52.225308]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":0.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.834,"geometry_index":5511,"location":[12.911481,52.226461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":0.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.834,"geometry_index":5512,"location":[12.911654,52.226626]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,213],"duration":15.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.17,"geometry_index":5513,"location":[12.911829,52.226788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":20.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.914,"geometry_index":5518,"location":[12.914473,52.22945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,195],"duration":6.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.654,"geometry_index":5525,"location":[12.916835,52.233429]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,190],"duration":32.791,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.691,"geometry_index":5527,"location":[12.917248,52.234743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,347],"duration":2.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.238,"geometry_index":5541,"location":[12.916965,52.241493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,344],"duration":25.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.164,"geometry_index":5542,"location":[12.916765,52.242005]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":37.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.676,"geometry_index":5550,"location":[12.914049,52.24698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":2.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.867,"geometry_index":5553,"location":[12.909773,52.254257]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,342],"duration":66.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":59.859,"geometry_index":5554,"location":[12.909515,52.254669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":10.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.072,"geometry_index":5565,"location":[12.90879,52.267702]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.43,"geometry_index":5567,"location":[12.909449,52.269673]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.909625,52.270198],"geometry_index":5568,"admin_index":4,"weight":7.135,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.936,"bearings":[12,41,192],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.910217,52.271921],"geometry_index":5570,"admin_index":4,"weight":2.674,"is_urban":false,"turn_weight":1,"duration":1.869,"bearings":[12,170,191],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":3.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.312,"geometry_index":5571,"location":[12.910355,52.272327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":3.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.021,"geometry_index":5572,"location":[12.910631,52.273127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":4.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.645,"geometry_index":5573,"location":[12.910881,52.273853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.676,"geometry_index":5574,"location":[12.911172,52.27472]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":2.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.209,"geometry_index":5575,"location":[12.911547,52.275835]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":4.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.645,"geometry_index":5576,"location":[12.911725,52.27636]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":15.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.645,"geometry_index":5577,"location":[12.912021,52.277235]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.913154,52.280569],"geometry_index":5578,"admin_index":4,"weight":26.611,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.576,"bearings":[12,32,192],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":11.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.631,"geometry_index":5582,"location":[12.915342,52.287001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,217],"duration":28.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.992,"geometry_index":5594,"location":[12.917024,52.289388]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.926261,52.29223],"geometry_index":5608,"admin_index":4,"weight":3.324,"is_urban":false,"turn_weight":1,"duration":2.604,"bearings":[69,239,250],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":17.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.637,"geometry_index":5609,"location":[12.927163,52.29244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":1.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.951,"geometry_index":5611,"location":[12.933264,52.293852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":15.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.594,"geometry_index":5612,"location":[12.933638,52.293933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,249],"duration":21.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.211,"geometry_index":5614,"location":[12.938955,52.295134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":51.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.246,"geometry_index":5615,"location":[12.947032,52.296978]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":13.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.773,"geometry_index":5617,"location":[12.966607,52.301442]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.182,"geometry_index":5620,"location":[12.971702,52.302587]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.473,"geometry_index":5621,"location":[12.973086,52.302894]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,251],"duration":3.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.898,"geometry_index":5622,"location":[12.973291,52.302937]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.974577,52.303182],"geometry_index":5624,"admin_index":4,"weight":6.488,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.424,"bearings":[75,99,253],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.977553,52.303532],"geometry_index":5628,"admin_index":4,"weight":6.115,"is_urban":false,"turn_weight":1,"duration":5.854,"bearings":[85,244,262],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,268],"duration":31.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.711,"geometry_index":5630,"location":[12.979957,52.303619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,270],"duration":28.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.168,"geometry_index":5635,"location":[12.993098,52.30352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":5.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.672,"geometry_index":5640,"location":[13.006951,52.303389]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.00988,52.30336],"geometry_index":5644,"admin_index":4,"weight":20.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.504,"bearings":[92,101,271],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,296],"duration":6.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.084,"geometry_index":5655,"location":[13.018587,52.301907]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.021055,52.301219],"geometry_index":5656,"admin_index":4,"weight":12.002,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.654,"bearings":[115,124,295],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,295],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.57,"geometry_index":5659,"location":[13.025922,52.299837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,295],"duration":21.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.717,"geometry_index":5660,"location":[13.026143,52.299773]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.034974,52.298333],"geometry_index":5668,"admin_index":4,"weight":5.582,"is_urban":false,"turn_weight":1,"duration":4.848,"bearings":[86,253,270],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,259],"duration":1.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.428,"geometry_index":5671,"location":[13.03698,52.298502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,255],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.818,"geometry_index":5672,"location":[13.037597,52.2986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,249],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.83,"geometry_index":5675,"location":[13.039194,52.298928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":0.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.266,"geometry_index":5676,"location":[13.039528,52.299017]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,247],"duration":10.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.562,"geometry_index":5677,"location":[13.039639,52.299046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,242],"duration":1.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.229,"geometry_index":5681,"location":[13.043325,52.300306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,243],"duration":36.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.494,"geometry_index":5682,"location":[13.043809,52.300457]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,273],"duration":6.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.176,"geometry_index":5693,"location":[13.05884,52.300766]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,272],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.133,"geometry_index":5694,"location":[13.061641,52.300693]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":7.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.822,"geometry_index":5695,"location":[13.062142,52.300674]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[93,273],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":5696,"location":[13.065206,52.300562]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Berlin-Zentrum (Zoo)"},{"type":"text","text":"/"},{"type":"text","text":"Zehlendorf"}],"type":"fork","modifier":"right","text":"Berlin-Zentrum (Zoo) / Zehlendorf"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"16"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"fork","modifier":"right","text":"Exit 16 A 115"},"distanceAlongGeometry":199156.391},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["straight","slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Berlin-Zentrum (Zoo)"},{"type":"text","text":"/"},{"type":"text","text":"Zehlendorf"}],"type":"fork","modifier":"right","text":"Berlin-Zentrum (Zoo) / Zehlendorf"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"16"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"fork","modifier":"right","text":"Exit 16 A 115"},"distanceAlongGeometry":3218.688}],"destinations":"A 9: Berlin, Halle (Saale), Leipzig, Bad Klosterlausnitz","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 9/E 51 toward Berlin/Halle (Saale)/Leipzig/Bad Klosterlausnitz.","modifier":"slight left","bearing_after":343,"bearing_before":346,"location":[11.850669,50.868077]},"speedLimitSign":"vienna","name":"","weight_typical":6815.756,"duration_typical":7556.717,"duration":7556.717,"distance":199156.391,"driving_side":"right","weight":6815.756,"mode":"driving","ref":"A 9; E 51","geometry":"yuv_`ByyhrUuSdIqsC~y@qvEfsAe~@~WkDbAcm@dO_]xGgZbFc`@jFieC`T_\\pCcX~BkBNc]rC_iBvOiy@dHs`@`DinCpUuH^mKr@ysA`K{S~AsIn@m[bCoWzB{a@pDocEjb@{ANmrBjUagBxQsg@lE_F`@a^bDo_@zDehEb^}zEz`@y|@nHkuBfQguBhQqp@zFag@`EuSlA{RnByO~Ac\\tByTxA{]tBcuAvIo@FccBlNmqEt`@wiA|J{eArLgaCjd@sFdAkrGnnAqfGbkAwmB|^abDvh@gFz@yM~AwpBjYmx@jLiEn@cnAjQ}oCn`@oy@bH{g@v@oTuA_UyAqd@mIsr@wSqg@sUi`Ca{AszCwmBib@o[u`@k]qVgWaG_HuRaUqLiQ{F{IwJkO_PeY_Rg`@iIuRwIaSaHeRcIuT{Ki]wHyUoIqY_Nkc@qHmTEMkYw_Aub@awAqIaYsG_TiG_Tyn@qsBoDkLsp@eyBam@woB}Msb@eJoWyTwj@qKaUcTua@_Q{XsRyY_Xm]kVgXgWcVwOoN}XgRiX{PeZkO_XyK}|Aaj@}LkEqTwHip@iUmN_FeYwKaS_HcA[{`Aw]mEsAsT}HcVyJq\\}Oi[_QuXsRgQoN_YyVsU{VqAuAwWy[kV}]yTs_@uO{YiHoOwLgX_JwTwMu_@mOef@gMie@_Iq]mHy^uKil@se@}yCsTquAoMox@ge@kuCgEsW{w@ubFuwBy|Maj@kiDy_@y`CiUgwAer@ehEwFe]wR_gAq]c|A{Pou@u[mgAk]wcA_iA}pCgz@__BuKeRigAk`Bgr@k|@cNeOkU{Vei@eg@}l@ef@k{@yl@quA{u@omAwp@scDsfBuX_OeeG}bDss@o_@}OoIieBo~@icB}}@iuEqeCi]kQ_`B}y@gc@aUg}@yd@yNwHel@sZ}e@{VutEo_CwtEq_C_eAqi@qwEwbC{LkGiHuDmk@mZq}E_hC}JeEggAed@_gAe[{v@yMoo@gIy^cCuSmAyEQeZeAmQo@}b@}AoNe@gEOeSo@gcBeGgx@sBuv@oBscAmGew@}H}e@iIwOsDkVmGqS{F{GuBy\\eLie@oRsTcKeTcLmNaHw_Bu|@{VmNmd@}Ved@uWqhAuq@ex@me@mh@wYeEiCuDuBuyBqmAkFuCcaCgrAuI}EkQyJai@aZ{ViNysAet@mg@qVyg@eUwJgE[Mex@a\\ePyFge@uOwe@gOimAw[_b@oJ??y_@{HgAUkbAqPugAwNoiAoJgj@}CgvAeEg}As@m~Aa@i`E_AuHE_lAQw`Cw@{IAs_Cs@gMEixAOqREac@KgfAYsa@IuGAaPEiyA[ilA[{ICsi@Omn@ScBAohDy@}F?gt@Okn@Ogr@[mg@GopDaAcoGaBiCAkACw}ASeVqA_PHyj@VsxBmAuhBcA{SKaZYwz@sDiz@cGiUaBi|@kO{Cg@iv@cM{fAgY{z@}XuNoF__Am]mAe@ko@i]_y@kc@qFwC{m@aa@_FcDiV}O}y@gp@aaAoy@_cAg{@qa@k]qw@up@gKeJmIqHofDaqCuiBa|AugCexBwqFivEqD_DmpFsrEkaCiqB{`@u\\gGsFkOgNsu@eo@ws@mm@ue@ca@cVmSkEqDgJ{HqoB}aB}fBezAqkBc_Ba^oZirDy}CggAc~@ghEynDmEuDaZsV_vF_xEaP_Nq~@yt@kTsNarAg|@k\\mTcg@qZsbBmcAouAmz@u]}Scn@i_@yoEinCuNgJig@oZ}u@ef@kpD_xB_c@oWuGeEwuEkpCenBcmAaa@cW{wBkqAcdBycAezAo_Agy@}m@qZgUmGwEcr@yo@a\\wZqn@_q@knAswA}hEkxFiqAsdBy|AosBkLcOy`@yh@urAkfBwLsOsXq^eCcD}aAkqAia@ih@}PqTyoAo~A_m@ao@yeBccBgfCybCw|AozAg}EmxE_UmTeAeAiPmP}NuNimAamAkr@_s@{p@wn@aSiScB{AcJkI}rE_qE}NoN}GuGwhBqhBeaCy~B}vAmuAoZkZyyBgwBy}Ac}Ag^{^sOiOyoAqnA}M}Mqy@gy@ioDqmDwIoI}ViVse@qh@mi@_n@}^{c@oO}Rwn@ez@ij@ww@_IwLa^ui@gl@iaAs_@cn@cc@qx@g`A}mBeyAa`Dau@w|A}nAonCo{AwdDyTwe@igAk_CqwBgvEcf@}dAkg@}fAqfBowDg`CkeF_{@yjB}CyGw_BglDsbAgwBoR_a@wMsXy\\io@gs@ikAeq@{`A_aAmqA{B{CwlBcjCaJgL}v@_iAq_@um@cEuHatBkvDyvA{eCwaAqhBe@}@_yBe~D_GgKqj@saAyl@ycAcTa]eH_Lsk@az@sZea@iIiKeKeN_OyRaaAcqAofAkvA_cA}qAkb@cj@caDchEwW{\\_jBk`CqgBaaCmlB{aCqjAimAij@ii@kK_KsN}Lqq@al@oXeVokCk|BgsFsyEmHoGmpDs}Cad@s`@mcCiwB}`CqrB{f@}b@imAoeA{LyKaGgFwUoSgrAeiAaLqJeYoVycC}uBgNiM}JeJsb@__@iM{Kgg@ec@wTsRihA}|@kiAyx@m`@kV{_CeyAw~BexAsUyN{lFucDs~AgaAwQcL_u@oe@aJuFkf@sYuRuL}OmJuh@w[a~@ae@acAa`@q{@qViRuDiZ_GqYwEsYkDum@uHom@cGgjBqScZiDo@IoeAuL}\\eEcv@aHkEa@uzGgu@cuAoP{WwCsDYer@gFwiAs@gx@~Aqs@pE{VxCm\\|Dob@rHcdAdUgdBt_@oOpDeVlFmhAnVuaBx^c]`I}cAdU_}Ax]umCfk@sk@tNo\\jIgfBp`@i[`HygAfV__@|HwKlCg_B|]cwBbe@or@pOyAZ{Bf@cVlFmzC|p@{KdCaDr@w`@bIy`@nGyM`BqQxBuJlAun@tDes@bBwq@k@gGEij@}ByAMC?oa@oDwEs@cdAcOye@uK_w@iUyHyCgs@qXyi@{ViR{IeQsIsUqKcz@{a@}XiNwwAsq@{LoFaJgEy}BmgAwb@oSiwAer@wE}B{vAar@udDi~AqiGkxCgaAae@wKkFoB_A}\\gPgGwCqpCwrAqv@u_@ad@qTa|@oa@kmBc_A}PkIkEwBeVoLasAao@mRaJqXqM}{@ya@sY}NkMuG{E_Ca{@_`@e~Ci{AyVyL_SeKuvAwp@ewAsq@kDaBe~@ic@gj@yWm~Eu_Ckx@_`@ekEwtB{FsCcU}KgFcCoZ{NgfEuqBoKgFofByz@{{CqxA{dA}f@ouAcg@e_Beb@}EeAys@sOyy@gLcTeCur@oGut@oEmVc@yR[oOUe^Qa]Xm_@^{ZnAyWtAw`@tBotAhNqgAnMukElj@uFr@m`BlSeeBnTqfAxPsx@rPc_AtVo|@rXi_At_@iBr@qRvIcx@da@_v@hc@m}AzcAeb@tX{QbM}zBt{Akv@lh@qjA`w@qZrSub@rY_dAjr@e}@dl@w]pSo^jQe@TePfIqY~La_@~M_UbHeS|F{p@vOmbA~Qsa@lHmh@fJauDno@wt@hMsqDfn@gMbC_uAfVycAfQiEt@gdE`t@{nBx\\{nBhZuv@nIo^dDibB|Kqw@jCo|A~BgaEzCsuAbAelBrAshDvCoSRy^xBqoAxHoiBfWm_@hJw~Aj`@}`@rKuwCzw@mhDb~@_iBtf@eBd@gRnFgeDf}@qjBvg@g}Avb@{mBjg@{k@~OcVtGqGfBslDh_AogAzYc\\~Gcf@~Juu@jKgqAzIgv@@sd@wA{Jq@sy@{Foi@yHqj@uHoQmD{j@{Kw_AsQyOwCotFidA_yFofAei@{Hu`@gFk^iDqi@cDm_@iAk_@Qya@t@_\\hAa\\lBaXjC}BTu^fFsZhF}e@dKs_@pJw[hJkgBzl@imGzuBgk@lRu`EztAwXjJo|DrqAqe@xOaUvFkq@xPak@vJcf@|Fos@rFq`@xA{b@XmZEao@sBgi@yDiVcCaf@eHkd@}Iab@aKwHiBu[wI_HuBafAc\\gXmIa`DqaAccAc[{o@eSoj@iQyTaHeEuA}{A_e@aW_IiiGqmBMEu~GovBoiBsj@g]eK}aCkv@ieDadAslAc_@yNoEwfAq\\e\\_K}V{HgP_F_hAo]}]sKgEqAeT_HgdAgZm\\iJc_@oKsbAqXia@{Ka\\sIgvCct@oQoEkWeFyjAiU{rAwWyhE}p@yTkDyuEcf@{k@eGytDc`@a^{D}sOwfBkcBoRq~BuUeQiBayc@i_FaPyAooNe~Ai[aEaKcA{OaBqvKsjAsjB_SiN{A}cBuRsXkCeiB}Ri}BeYytGwq@_iBkSei@wFk^yDuWqCyqCaZggAqLsBUkUiC{a@sEuj@mGsyBiVe`@iE_I}@{UyCil@iGkh@qFuyCi\\weC_Yqq@qJyhA_RkjBs`@qcAeXgcAkZgq@uUcq@uVkq@}X}p@_Zq}@mc@iTeLqg@_Xs{B{rAi~AecAs}AwfAklAoz@oVqQcxA_fAcQyKiu@gi@eGiE}NsKkO}Kgm@cc@qVmQafJkxGykAqy@{gAqz@mdAceAo_AilAgo@w~@gj@aaAu`AglBu{@orBcsAi|CsTqh@yrJyzTcJ_Ry_CipFqx@w}Ag~@y{AuiBcxB}jAueAid@k]yd@g\\wzBknAob@uT{|Ayv@qJoFiSyJwIyEk`Aqh@ggAgw@wjAu~@ksAogAmS{Oa]sWeeCanBexEswDggDuhCmV}Ti]k\\{`@sb@a`@ge@y\\wc@m[ee@q\\kh@o\\uk@sq@grAwuCczFcSq`@kyCo_G_MiV{Su_@aTy^gVs`@mUy\\od@mn@mQsToReUic@yd@{x@gz@g`Ba`BwRiSm_AeaA_MkLu[m[cEcEoS}Rsf@wf@iM}LgQcQ_JoJm{@c{@}{@}{@glBilBmKmKqrFwrFwd@md@ke@ub@cHaHeImG{RuOcMiJaZsT}\\mTc^kS}LoGaj@gYir@k^qCwAuo@y\\uRgKsUyMwV}LmTyK_l@}Ygt@e_@mWoNiXwMop@}\\am@k[}f@qWqH{D}g@}Wkq@u\\c{@eh@cNeJeJoG{YiSoZ_VeLqJuJwIsj@{g@c}@u~@m]ea@q\\oc@y\\yc@i[yd@iWo`@oWsb@aWwc@iRw]{OoZsOy[_[eq@s[ev@g]m|@gXav@yv@y_CkC}Huk@cfBmvAsoEggFmyO{Nua@gLq[kJsWy[u`Aoe@ewA}|@{nCeX{x@uHeU{DmL{ZabAAI{K{]iBkGo^_nAm\\}nAwFcTgMef@cVcaAyC}LeGkVsJ}a@w_@ebBe\\kzAig@_{BoFyUqJob@eQau@{Qss@cKg_@_Qsl@mQuk@yQak@{Rcj@yn@s_Bcq@q{A_xAkjCk|AezBgrAy{AeoAcmAomFcnEwaAyv@gP}MkbBktA}gBuyAeUiRqp@ij@kc@m^uN{K}XiU{fAw|@_sAcjAscAez@ugFugEukAeaAqlAkaAad@u_@mz@yr@ic@ua@oYyZyZ_]uYq^ci@mt@e[me@oPyXuVec@ePm[_Xih@mN_[a_@o{@gVcn@ydIowSupC_cHqXcp@mVgi@_^ss@a[sj@c_@}m@c]qg@e[ob@w[w`@{^_b@_`@{`@em@}i@}r@{i@}YoSwZaRqz@ad@__@gPwZwLi~Agh@ynAu`@ehAe^i{Bgs@gSoGugCez@ulAkc@s{CmlAyg@gVihEasAe[{JkeC}x@aIiCmfFm~Ak`Csq@_cCyv@inEevAokAqa@a`@iQgVsMkOiIe[wQqKqHi[sTs[iW{ZuWcy@_w@wt@cy@wk@yw@u\\{g@u_@on@e]_n@a\\kp@_KiTuIuRyS{f@aJiUyGwQoQif@qImVks@wrB_hCejHku@awB}fCcjH{Yw|@ac@c{AyM}h@kRa{@oTcgAmb@}bCiTcqAwGi`@oGm^y`@o_CyaA}~Fqs@}gEop@}wD_m@w`D{SafAwq@}yCkZcoAu_@s{Ain@agCu~@orDy]wuAi_@qzAu~@esDeq@alCeqAciFwLgf@ad@icBmb@}wAme@mwAc{@mzBij@sqAks@gzAkR{]iPcZme@sx@mVeb@q}@}zAegAojBy`@ur@ioAiuBa`Ai~Ak[sh@qY_i@gkAmoBa_BglCqb@gt@soAkqBmmAqkBiaA_sA_o@mw@ct@a|@kaB{pBejBwyBe}@}eAun@_w@_fAwuAox@{qAa~@whB}s@{eBe[y|@w_Ae{CkCuIqJk[kn@spBcMub@}Jc]eHuUmg@a_ByhCwmIihAypDcg@kaBoG}SoDgLyu@}dCw_@ceAo_@g}@sWwi@qVgd@kVqb@_We^oWo]_Xq\\ysCa{Cq]aa@{Vw[y\\oh@iPaZeRe_@eTod@_MyZ}Pud@wJsZyK{]wJs_@gH{YsNaw@uHch@y_@qqCkKst@uJim@qNqw@}UeeAqFoQgFgPoKi\\qPoc@k\\yu@gPk[uOsWyNaUaOoScOeSoP{Qq[a\\k\\}YwS_Sg]iYuoAegAo[wXiJyIwb@uc@iXu]oV}\\}S_^cVei@}j@wtAq|CgiJk`Bu|E{FcR}s@quBaZqu@ec@}_Aci@keAwc@ss@ih@oy@co@uz@mk@{n@g@i@ct@gu@yuAwfAugDatBkeD}fBy`D{gBq~@gh@kt@ab@{_DueBo_@gTuo@q_@ifBybAccBsdAm`BmjAc}@ys@{MoKqc@c_@_g@ib@qjB}eBwoAynAepAytAepAqzA_xAikBoeAyzA_lA_jB}tCirEmxAg{BsxB}gDyNcUsdAicBij@{_Aoc@e|@aNoZ}GyNmGmMuj@_tAyIaSao@{~AuUwl@ux@woBoaBi`E{k@mnAerBooDw_DcfFgyEorHi_Da`FmyAgjCub@{z@gw@oiBg`@udAcz@miC{y@}jCokBmdGy|CckJ_yB_xGqn@ceByWkp@oVuj@{Xwj@id@i|@oIwMgJcOc~Ac`CecDk|DiiB}zB{`@}e@krGs{H_g@}l@yiBkyBa{EkuFqfAunAktA}_B}jB{zBatD{nEut@u}@__DgwD{eAspAknBc`Ccc@{h@ogA_sAef@kk@{PuSq[a`@eP_R}Wo\\cUcYgDeEeMiOo`AiiA{b@og@kyAcmBiw@sqAkYai@aWeg@mQw`@aDeHqY_r@e[iy@kU}r@qS}p@_[wkAgOso@gM{k@}TslA}TwuA{dB{iL}n@okEio@kmEqfAenH}mA{mIsj@mwDek@kyD{PudAu^siBaYkjAyBcJoTkx@ok@ahB{]m}@of@yjA{R}a@at@oqA{Yie@st@}eAuuAomByNaSgLkPibJceMiS_YyWeb@oH{MiKeR}w@}~AwQka@if@ynA}e@qwAaTku@qZqiAuBiJCKmKce@eO}t@qFiWuGi^aK{l@wT_|A_w@usFiEu[mc@weDuB_Pm@oE{QymA{Naz@cJie@cGa[_Qax@qZ_lA}[wgA{`@ajAg[kz@eLuWoImRu`@u|@un@_jAsp@{fA}r@i_A{v@i}@maAigAiPwQ}dAqjA}iA{oAo{AaaB_jEc|E_hAqkAm]_`@aj@cm@_fDwrDoYq]qY_\\ynAarAkrA_yAijBisBqgEyxEqTcVo`BogBagAelAiIyIcI}Ick@yn@ma@mc@mg@of@ga@{]cLsI{ViRsc@gZgd@qWef@qWgc@qQoc@qO_f@yOcg@_M_i@yJgf@yG_g@iFqg@sBmi@sByg@Pie@~@iOt@yS`B}Nn@mThCcQ`BaTtDwl@nKaTtE__@nK_NxEiZfK_SvHyWfLw\\nOa|CzwAmShKqO~HkcCxnAc{DlkBieC~mAwXbOc_@jPyjAhg@sv@hYuy@xSmf@xJmnA|LolAjDesAqBia@oC}|@sKovE}dAeyAe]_`@_Jy_@_Joq@cQex@{QkXsG_q@gPkl@sNeu@eQudAmVy_@cJuu@oQkoEyeAk{HeiB{b@aKeg@eNqHiB_OoDaNuDaOgFqJ_EkKcFgKmGeIiFeJuHcLmKkI_JeKuLyG_JwJaOsIoOyIyPmHmPeJsUeIaV_HwWwGaYiFoXmEiXgFw]kMo~@id@oaDeVmhBcLkw@{Es\\kpAu~IaDkVcTk`B}t@}iFgrBywN}wF_aa@a]mdCwP}mAiYwtBoZwxBeRouAuAyKyFcg@oFgg@mBiTuEum@gFa~@oC}u@uBaeAw@eoAXebBdAceEh@{kFfAonDKsnBXwpC`Cg|HXs~Dh@uzBd@ovAFg\\^ikB??Pol@b@mo@VoTz@k]vBsm@vDmw@pCad@nCe\\rIkz@rIkl@|Wa}AhUwjA~i@gyCb\\weBjTwjAzb@u|B~ByL~_@ktBbRucAzNyiAtFko@rF_~@rC__Az@}j@DwfAq@ad@wAg`@gEav@cEqe@g@wFqIou@uGqd@qD{Sy@}EsNmq@_R}u@kf@{lBwCcNmHg]kK}r@_Iik@gGcp@cGm~@yByu@{Aco@Tir@`BgaAxHeeDtG{oEzBafCpCanDd@i^~Eo~D|JebK"},{"ref":"A 115; E 51","mode":"driving","weight":569.705,"distance":17145.604,"geometry":"eddwbBqay|WvEqbAvDiv@pD}g@h@wHdEme@fPexApEye@lB_]fAk]^o]Io]o@m]yAe]aCy\\gDi\\mEu[eFmYgGuXgHwWeIuVaJsUoI_RuJwQqIeN_JiMmHcJwJoKoIaIqO}LmUgOkQiKyr@w`@iT_MeZ{PcuAmw@_vBylAcxAqx@q`A{h@mpDmsBsUmOk[qQwkBceAuQ{K_Q}LuQ_NwOcOuPuPyn@sp@g]m^yiAonA{T{UkaD_hDwrAywAmYqZa~BwdCov@iy@sW{YuNiRmOmTaNmTaMoTyMcWwLqVsKoWoKqXeLm\\}IaYwIkZuHwZ}Hw]iHa^}Hoa@oNus@iU}lAyMur@qHi`@_p@ygDke@mgCec@{}BuE_Vg{@}nEsOqy@_jAecGw[o{AyRms@g]ucAwYys@q\\aq@o[{h@y]}f@c\\y`@o\\s\\yn@{h@}y@}f@_e@mSuj@{Ow_@eJ_f@mG}j@{Bc_FpDanBP}eBtCwbBbAiyKvGk^_Bk`@qGc[oJa\\wKea@iV_IkF_SoPoYeXiZi^eTk]}fAewBax@s|Ae[mj@gXa_@_N{ReMuMwLeLsFuD{J{Hc]iV}UyIaScHmPmFmj@qKq\\aEiW}AqyG~Guc@r@mwBhAsRJuPQgUa@wMy@wM}@gGg@a\\yEkNkDoL{DoFsB_b@wPoU{Kan@c]wk@{[ef@qX}tCi_Bm\\iT{d@}VuCcBoVmQ{PoOsOkPeOiQePiTmNeTsNiVwLsVmLeXkMkZcJuW{G_UyGaV{GyYoGiZ{Fm[cIse@}rBm|MsPohAg}@ccGeFc]aKsm@eHu^oHq]cHyY{H{ZyHkZmIgXcK{ZyJyYkL_\\mMk[mLuWkMeWcN}UwH{MuEgImAwBaOsW{PeU{NmSuPmTuT_X{TgXkp@wt@kbAqkA}rAm}AkOaQ}rAm}AkmDidEijCw}C}Wo[eCwCe]y`@iQgQqLiLyLkJoOgJiQyJsQgJ_SeI}RsGiT{DgRkDkOeBcLc@iOa@oQKkLTqPl@uh@fHoZ`EiN|AoGt@g@Dw]tEmOrBaGr@}PtB","duration":604.936,"driving_side":"right","duration_typical":604.936,"weight_typical":569.705,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 16 onto A 115 toward Berlin-Zentrum (Zoo)/Zehlendorf/Potsdam-Zentrum.","modifier":"slight right","bearing_after":99,"bearing_before":93,"location":[13.071401,52.300371]},"speedLimitUnit":"km/h","destinations":"A 115: Berlin-Zentrum (Zoo), Zehlendorf, Potsdam-Zentrum","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 115 / E 51"},"distanceAlongGeometry":17145.604},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 115 / E 51"},"distanceAlongGeometry":1609.344}],"exits":"16","voiceInstructions":[{"ssmlAnnouncement":"Continue for 11 miles.","announcement":"Continue for 11 miles.","distanceAlongGeometry":17105.604},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 115.","announcement":"In 1 mile, Keep left to stay on A 115.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 115.","announcement":"In a half mile, Keep left to stay on A 115.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 115, E 51.","announcement":"Keep left to stay on A 115, E 51.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[13.071401,52.300371],"geometry_index":5697,"admin_index":4,"weight":6.213,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":6.729,"bearings":[93,99,273],"out":1,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,283],"duration":7.422,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":6.865,"geometry_index":5700,"location":[13.074022,52.300082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,285],"duration":11.098,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":9.986,"geometry_index":5704,"location":[13.076841,52.299581]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,250],"duration":5.863,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":5.277,"geometry_index":5713,"location":[13.081158,52.2998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,231],"duration":10.436,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":9.393,"geometry_index":5718,"location":[13.083129,52.300535]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":3.6,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":3.24,"geometry_index":5728,"location":[13.085424,52.30266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":1.477,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.328,"geometry_index":5729,"location":[13.085964,52.303489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":1.871,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.686,"geometry_index":5730,"location":[13.086188,52.30383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":5.711,"turn_weight":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.141,"geometry_index":5731,"location":[13.086474,52.304265]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.087377,52.305643],"geometry_index":5732,"admin_index":4,"weight":8.104,"is_urban":false,"turn_weight":1,"duration":7.9,"bearings":[22,191,202],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":23.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.215,"geometry_index":5733,"location":[13.088622,52.307547]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,204],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.635,"geometry_index":5737,"location":[13.092339,52.313223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":16.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.09,"geometry_index":5738,"location":[13.092636,52.313677]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.029,"geometry_index":5745,"location":[13.095762,52.317619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":5.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.043,"geometry_index":5746,"location":[13.096265,52.318103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.445,"geometry_index":5747,"location":[13.097537,52.3193]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,213],"duration":17.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.076,"geometry_index":5748,"location":[13.097903,52.31965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.695,"geometry_index":5750,"location":[13.102028,52.323588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.4,"geometry_index":5751,"location":[13.102469,52.324011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,244],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.98,"geometry_index":5770,"location":[13.113029,52.330593]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.967,"geometry_index":5771,"location":[13.114276,52.33095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.27,"geometry_index":5772,"location":[13.115103,52.331187]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.115636,52.33134],"geometry_index":5773,"admin_index":4,"weight":6.5,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.033,"bearings":[65,83,245],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.118337,52.332124],"geometry_index":5774,"admin_index":4,"weight":6.127,"is_urban":false,"turn_weight":1,"duration":5.703,"bearings":[65,234,245],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":5.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.781,"geometry_index":5775,"location":[13.12052,52.332738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.863,"geometry_index":5776,"location":[13.12255,52.333317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":8.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.789,"geometry_index":5777,"location":[13.122918,52.333424]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":2.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.139,"geometry_index":5778,"location":[13.126245,52.334388]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":68.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":61.906,"geometry_index":5779,"location":[13.127182,52.334654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":6.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.229,"geometry_index":5797,"location":[13.140926,52.348355]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.140917,52.350132],"geometry_index":5798,"admin_index":4,"weight":5.701,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.355,"bearings":[180,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":6.229,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.754,"geometry_index":5799,"location":[13.140842,52.351779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":35.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":33.801,"geometry_index":5800,"location":[13.140808,52.353375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.676,"geometry_index":5806,"location":[13.141614,52.362438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,204],"duration":13.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.223,"geometry_index":5807,"location":[13.141732,52.362598]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,226],"duration":10.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.359,"geometry_index":5812,"location":[13.145325,52.365269]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,219],"duration":5.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.316,"geometry_index":5816,"location":[13.148349,52.367277]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.149417,52.368518],"geometry_index":5821,"admin_index":4,"weight":27.455,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.199,"bearings":[16,30,205],"out":0,"in":2,"turn_duration":0.041,"classes":["motorway"],"entry":[true,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":2.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.152,"geometry_index":5828,"location":[13.150056,52.375563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":7.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.398,"geometry_index":5829,"location":[13.15003,52.37615]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.149993,52.378077],"geometry_index":5830,"admin_index":4,"weight":5.633,"is_urban":false,"turn_weight":1,"duration":4.76,"bearings":[168,179,359],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,184],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.936,"geometry_index":5834,"location":[13.150042,52.379266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.539,"geometry_index":5835,"location":[13.150073,52.379502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,185],"duration":4.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.096,"geometry_index":5836,"location":[13.150093,52.379634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":6.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.814,"geometry_index":5840,"location":[13.15044,52.380681]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.151412,52.382354],"geometry_index":5843,"admin_index":4,"weight":14.592,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.367,"bearings":[21,37,201],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[24,177,201],"duration":1.719,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.625,"geometry_index":5846,"location":[13.153824,52.386096]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,204],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.648,"geometry_index":5847,"location":[13.154165,52.386567]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,206],"duration":36.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.633,"geometry_index":5850,"location":[13.154893,52.387624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":9.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.436,"geometry_index":5868,"location":[13.16987,52.393036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":21.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.58,"geometry_index":5869,"location":[13.174032,52.394032]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.666,"geometry_index":5885,"location":[13.181153,52.396938]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":9.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.617,"geometry_index":5886,"location":[13.181317,52.397045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.053,"geometry_index":5892,"location":[13.183196,52.398511]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":4.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.984,"geometry_index":5893,"location":[13.1836,52.398861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":5.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.609,"geometry_index":5894,"location":[13.18446,52.399651]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.185685,52.400729],"geometry_index":5895,"admin_index":4,"weight":6.955,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.34,"bearings":[34,51,215],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.187196,52.402072],"geometry_index":5896,"admin_index":4,"weight":2.393,"is_urban":false,"turn_weight":1,"duration":1.473,"bearings":[34,204,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":6.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.586,"geometry_index":5897,"location":[13.187485,52.402334]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":26.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.391,"geometry_index":5898,"location":[13.188996,52.403677]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.068,"geometry_index":5900,"location":[13.194693,52.408696]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.344,"geometry_index":5901,"location":[13.195149,52.409095]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":22.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.375,"geometry_index":5902,"location":[13.195225,52.409162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,352],"duration":3.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.068,"geometry_index":5919,"location":[13.197541,52.414043]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":3.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.15,"geometry_index":5920,"location":[13.197393,52.41471]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.695,"geometry_index":5922,"location":[13.197249,52.415395]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.197219,52.415551],"geometry_index":5924,"admin_index":5,"weight":3.873,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.893,"bearings":[17,173,352],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,353],"duration":0.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.639,"geometry_index":5926,"location":[13.197054,52.416306]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[173,353],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":5927,"location":[13.197028,52.416435]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 7 miles.","announcement":"Continue for 7 miles.","distanceAlongGeometry":10483.636},{"ssmlAnnouncement":"In 1 mile, Take exit 1.","announcement":"In 1 mile, Take exit 1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 1.","announcement":"In a half mile, Take exit 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 1 onto A 100 toward Hamburg, Wedding.","announcement":"Take exit 1 onto A 100 toward Hamburg, Wedding.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.196969,52.416722],"geometry_index":5928,"admin_index":5,"weight":5.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.445,"bearings":[173,350,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":22.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.367,"geometry_index":5930,"location":[13.196708,52.417721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":4.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.465,"geometry_index":5933,"location":[13.195789,52.421872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.195613,52.422697],"geometry_index":5935,"admin_index":5,"weight":12.971,"is_urban":false,"turn_weight":1,"duration":11.998,"bearings":[163,173,348],"out":2,"in":1,"turn_duration":0.026,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,315],"duration":30.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":29.307,"geometry_index":5944,"location":[13.193558,52.424777]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[9,17,188],"duration":15.791,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.377,"geometry_index":5963,"location":[13.191857,52.430526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,192],"duration":7.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.145,"geometry_index":5971,"location":[13.192727,52.433786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,212],"duration":10.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.986,"geometry_index":5976,"location":[13.193781,52.435179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":12.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.645,"geometry_index":5981,"location":[13.195908,52.436893]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[38,214,218],"duration":2.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.465,"geometry_index":5986,"location":[13.198492,52.438927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":2.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.107,"geometry_index":5987,"location":[13.199054,52.439369]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":5.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.494,"geometry_index":5988,"location":[13.199531,52.439743]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":0.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.93,"geometry_index":5990,"location":[13.200803,52.440763]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":69.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":63.922,"geometry_index":5991,"location":[13.201032,52.440943]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.393,"geometry_index":5997,"location":[13.216907,52.453513]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":41.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.502,"geometry_index":5998,"location":[13.217274,52.453798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.705,"geometry_index":6002,"location":[13.227066,52.461543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":24.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.775,"geometry_index":6003,"location":[13.227518,52.461901]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,217],"duration":4.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.178,"geometry_index":6006,"location":[13.233238,52.466423]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.234365,52.467282],"geometry_index":6007,"admin_index":5,"weight":9.01,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.318,"bearings":[36,49,219],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.24,"geometry_index":6009,"location":[13.236738,52.469187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":9.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.256,"geometry_index":6010,"location":[13.237073,52.46945]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[37,199,218],"duration":72.596,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":67.133,"geometry_index":6012,"location":[13.239319,52.471223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,218],"duration":1.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.029,"geometry_index":6020,"location":[13.256642,52.485941]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":17.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.965,"geometry_index":6021,"location":[13.256875,52.486134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,218],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.455,"geometry_index":6023,"location":[13.260805,52.489222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":5.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.727,"geometry_index":6024,"location":[13.260907,52.4893]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":0.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.672,"geometry_index":6025,"location":[13.262155,52.490297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":23.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.385,"geometry_index":6026,"location":[13.262298,52.490411]},{"bearings":[38,218],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6029,"location":[13.267063,52.494177]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hamburg"},{"type":"text","text":"/"},{"type":"text","text":"Wedding"}],"type":"off ramp","modifier":"right","text":"Hamburg / Wedding"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"100","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 100"}],"type":"off ramp","modifier":"right","text":"Exit 1 A 100"},"distanceAlongGeometry":10510.303}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 115/E 51.","modifier":"slight left","bearing_after":350,"bearing_before":353,"location":[13.196969,52.416722]},"speedLimitSign":"vienna","name":"","weight_typical":399.369,"duration_typical":421.736,"duration":421.736,"distance":10510.303,"driving_side":"right","weight":399.369,"mode":"driving","ref":"A 115; E 51","geometry":"clg~bBqindXo]~G}^hF_C\\m}@vL_`Evi@yTvCw\\fEuGxAeKpCoVbMwOxLaKfJsJdLwN|R}Qr[oIbS{LvU{G|M{G|LmMrScNfQcPtOeHnFgHxEkIlE}GpCcLzD{MvCeMxA}Kl@qIEyMu@wd@_G}u@eMaeA_Pkt@gLe^mFg[iF}Ci@wHoAyZ{Ea[kGkSiFyPuHcXeOmQwMwM}L}IiJyLwNgG{H}FwHus@uaAmW{]}Xu_@yWq^oWe^kZ{a@oWe^sZcb@kVy\\wg@ur@_VyZgJiMwbBu|BmrCiyD}sCg{DmsCizDg~B{_DypBwnCyP}U_bDwlEkuBytCsm@az@a{CkdEkUg[}gDutEk`@yi@ioA_dBut@meA_Yw]a|AqtBmO}SkfAsyAmf@wp@qz@yhAwf@op@kgEsaFchGsiHe|@adAso@uw@{l@qv@kfEy{FaKqMk{Bc}CscAovA{CkEi}@_mAcF}Gm|AauBcdAsvAygAc{AgYi`@{MuQ"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take A 100.","announcement":"In a quarter mile, Keep left to take A 100.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take A 100 toward Hamburg, Wedding.","announcement":"Keep left to take A 100 toward Hamburg, Wedding.","distanceAlongGeometry":126.667}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[30,45,217],"duration":19.812,"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":1,"weight":21.285,"geometry_index":6031,"location":[13.267895,52.494835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":4.254,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":4.68,"geometry_index":6034,"location":[13.271298,52.497349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":3.42,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":3.762,"geometry_index":6035,"location":[13.272013,52.497899]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,217],"duration":14.342,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":15.775,"geometry_index":6036,"location":[13.272523,52.498304]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":0.301,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":0.33,"geometry_index":6052,"location":[13.275495,52.49945]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[68,84,262],"duration":2.889,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":1,"weight":3.168,"geometry_index":6053,"location":[13.275565,52.499456]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":9.66,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":10.627,"geometry_index":6055,"location":[13.276273,52.499493]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[72,251,260],"duration":5.434,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":6.074,"geometry_index":6060,"location":[13.278627,52.499655]},{"bearings":[55,241],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6064,"location":[13.279759,52.499959]}],"exits":"1","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hamburg"},{"type":"text","text":"/"},{"type":"text","text":"Wedding"}],"type":"fork","modifier":"left","text":"Hamburg / Wedding"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"100","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 100"}],"type":"fork","modifier":"left","text":"A 100"},"distanceAlongGeometry":1095.766}],"destinations":"A 100: Hamburg, Wedding, Zentrum, Messedamm ICC","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 1 onto A 100 toward Hamburg/Wedding.","modifier":"slight right","bearing_after":45,"bearing_before":37,"location":[13.267895,52.494835]},"speedLimitSign":"vienna","name":"AVUS Nordkurve","weight_typical":69.91,"duration_typical":63.852,"duration":63.852,"distance":1095.766,"driving_side":"right","weight":69.91,"mode":"driving","geometry":"e~_ccBmzxhXkIcPct@sdAs|A}|Bka@uk@iX{^yNuSiHuKuDuGuEmJyCuGoBsFkC{HqBqHkBqIyAeIyAuJkAmI}@yJ_AkLi@mLg@_NKkC[cJm@c`@YgQ_Amp@s@qVaA{UsB_`@iB}OcCeQqDmQ_EePmCeJmDuJqGmN"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Take exit 6.","announcement":"In 1 mile, Take exit 6.","distanceAlongGeometry":1986.243},{"ssmlAnnouncement":"In a half mile, Take exit 6.","announcement":"In a half mile, Take exit 6.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 6 toward Spandauer Damm. Then Turn right onto Spandauer Damm.","announcement":"Take exit 6 toward Spandauer Damm. Then Turn right onto Spandauer Damm.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,44,228],"duration":3.709,"turn_duration":0.048,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":4.117,"geometry_index":6067,"location":[13.280372,52.500254]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,203],"duration":8.881,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":9.99,"geometry_index":6070,"location":[13.280811,52.500729]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,183],"duration":1.377,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":1.549,"geometry_index":6083,"location":[13.280695,52.502039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,194],"duration":3.176,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":3.574,"geometry_index":6084,"location":[13.280741,52.502154]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.280876,52.502407],"geometry_index":6086,"admin_index":5,"weight":35.533,"is_urban":true,"turn_weight":11.75,"duration":21.164,"bearings":[37,199,214],"out":0,"in":1,"turn_duration":0.023,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,188],"duration":4.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.104,"geometry_index":6096,"location":[13.282773,52.504559]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,180],"duration":29.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":33.291,"geometry_index":6098,"location":[13.282814,52.50512]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,202],"duration":8.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":9.963,"geometry_index":6105,"location":[13.2846,52.508617]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":7.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.182,"geometry_index":6107,"location":[13.285266,52.509644]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,202],"duration":6.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.047,"geometry_index":6108,"location":[13.285822,52.510485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.836,"geometry_index":6111,"location":[13.286135,52.511245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.286217,52.511557],"geometry_index":6112,"admin_index":5,"weight":18.459,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":16.801,"bearings":[9,31,189],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.286467,52.514265],"geometry_index":6117,"admin_index":5,"weight":10.07,"is_urban":true,"turn_weight":0.5,"duration":8.721,"bearings":[153,173,350],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,337],"duration":7.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":8.141,"geometry_index":6119,"location":[13.286182,52.515029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,326],"duration":13.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":14.791,"geometry_index":6121,"location":[13.285712,52.515625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,325],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":2.764,"geometry_index":6124,"location":[13.284549,52.516516]},{"bearings":[145,331],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6125,"location":[13.284297,52.516736]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight","slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"6"},{"type":"text","text":"Spandauer Damm"}],"type":"off ramp","modifier":"right","text":"Exit 6 Spandauer Damm"},"distanceAlongGeometry":2006.243}],"destinations":"A 100: Hamburg, Wedding, Flughafen Tegel","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 100 toward Hamburg/Wedding.","modifier":"slight left","bearing_after":35,"bearing_before":48,"location":[13.280372,52.500254]},"speedLimitSign":"vienna","name":"","weight_typical":179.08,"duration_typical":149.561,"duration":149.561,"distance":2006.243,"driving_side":"right","weight":179.08,"mode":"driving","ref":"A 100","geometry":"{pjccBgfqiXoLiN_GqFeGqCsDsA_Hs@iE@qEZ}Ex@iEpAaEfAmD|@mFdAaEZaEAwC?iD_@eF{AqG}BgFoCcs@w~@uFeG{IyIyJwIcJwG}F{CsGgCuF}AuGwA}Fo@eJgA{VIqVq@gOkAiPkCuJgCiLiF}PiJouBmoAku@cb@yHoEqs@wa@iL{EmNmFwQgDoRcDsd@oHc_@aEyi@yCwg@j@}NjB_XhFwUnIsVtOsLtK{NzPkXdc@mMrQwLvNgFhFoJdH"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Spandauer Damm.","announcement":"Turn right onto Spandauer Damm.","distanceAlongGeometry":100}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[154,336,358],"duration":9.52,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.037,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":2,"weight":10.432,"geometry_index":6127,"location":[13.284033,52.517036]},{"entry":[false,true],"in":0,"bearings":[165,347],"duration":4.479,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":1,"weight":4.926,"geometry_index":6130,"location":[13.283729,52.51798]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.283515,52.51842],"geometry_index":6132,"admin_index":5,"weight":0.742,"is_urban":true,"mapbox_streets_v8":{"class":"secondary_link"},"traffic_signal":true,"turn_duration":2,"duration":2.676,"bearings":[160,346],"out":1,"in":0,"entry":[false,true]},{"bearings":[84,166,265,346],"entry":[false,false,false,true],"in":1,"turn_weight":1,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":3,"geometry_index":6133,"location":[13.283506,52.518442]}],"exits":"6","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Spandauer Damm"}],"type":"turn","modifier":"right","text":"Spandauer Damm"},"distanceAlongGeometry":170.343}],"destinations":"Spandauer Damm","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 6 toward Spandauer Damm.","modifier":"slight right","bearing_after":358,"bearing_before":334,"location":[13.284033,52.517036]},"speedLimitSign":"vienna","name":"","weight_typical":19.326,"duration_typical":18.705,"duration":18.705,"distance":170.343,"driving_side":"right","weight":19.326,"mode":"driving","geometry":"wikdcBakxiXwPZoVlIwPtFaMjDmL~Fk@P{C`A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":1098.412},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Otto-Suhr-Allee.","announcement":"In a quarter mile, Bear right onto Otto-Suhr-Allee.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Otto-Suhr-Allee.","announcement":"Bear right onto Otto-Suhr-Allee.","distanceAlongGeometry":101.818}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.283473,52.51852],"geometry_index":6134,"admin_index":5,"weight":17.244,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":3.004,"turn_weight":15,"duration":5.043,"bearings":[84,166,267,345],"out":0,"in":1,"entry":[true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":4.818,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.279,"geometry_index":6135,"location":[13.283718,52.518535]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":2.539,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.271,"geometry_index":6136,"location":[13.284303,52.518572]},{"entry":[true,false],"in":1,"bearings":[77,264],"duration":5.564,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.619,"geometry_index":6137,"location":[13.284612,52.518592]},{"entry":[true,false,true],"in":1,"bearings":[85,247,266],"duration":13.287,"turn_weight":0.75,"turn_duration":0.023,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":15.34,"geometry_index":6139,"location":[13.285325,52.518741]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[85,264],"duration":0.947,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.543,"geometry_index":6141,"location":[13.286351,52.518801]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[13.286427,52.518805],"geometry_index":6142,"admin_index":5,"weight":1.334,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":2.758,"bearings":[84,265],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.286492,52.518809],"geometry_index":6143,"admin_index":5,"weight":3.293,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":1,"duration":2.104,"bearings":[84,264],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.286659,52.51882],"geometry_index":6144,"admin_index":5,"weight":3.033,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.4,"bearings":[86,170,264,351],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false],"in":1,"bearings":[84,266],"duration":0.484,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.512,"geometry_index":6145,"location":[13.286834,52.518828]},{"mapbox_streets_v8":{"class":"secondary"},"location":[13.286896,52.518832],"geometry_index":6146,"admin_index":5,"weight":10.592,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":11.174,"bearings":[85,264],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":4.412,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.354,"geometry_index":6148,"location":[13.28805,52.518899]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":11.748,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":13.402,"geometry_index":6149,"location":[13.288608,52.518931]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":2.502,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.23,"geometry_index":6150,"location":[13.290088,52.519018]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":1.49,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.139,"geometry_index":6151,"location":[13.29038,52.519038]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":0.379,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.896,"geometry_index":6152,"location":[13.290557,52.51905]},{"entry":[false,true,false],"in":2,"bearings":[69,92,264],"duration":9.525,"turn_weight":1.9,"turn_duration":0.011,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":12.365,"geometry_index":6153,"location":[13.290601,52.519053]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":5.035,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.516,"geometry_index":6156,"location":[13.291693,52.519096]},{"entry":[true,false],"in":1,"bearings":[84,263],"duration":1.164,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.273,"geometry_index":6158,"location":[13.292268,52.519139]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":1.219,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.32,"geometry_index":6159,"location":[13.2924,52.519147]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":0.686,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.732,"geometry_index":6160,"location":[13.292527,52.519154]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":20.533,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":23.086,"geometry_index":6161,"location":[13.292598,52.519158]},{"entry":[true,false],"in":1,"bearings":[86,264],"duration":6.666,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.834,"geometry_index":6162,"location":[13.294867,52.519293]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":1.352,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.467,"geometry_index":6165,"location":[13.2956,52.519329]},{"entry":[true,true,false,false],"in":2,"bearings":[82,173,264,353],"duration":3.871,"turn_weight":1.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.732,"geometry_index":6166,"location":[13.295742,52.519338]},{"entry":[true,false,false,true],"in":2,"bearings":[85,175,262,353],"duration":1.133,"turn_weight":1.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.738,"geometry_index":6167,"location":[13.29619,52.519374]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":0.357,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.371,"geometry_index":6168,"location":[13.296339,52.519382]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":13.051,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":14.855,"geometry_index":6169,"location":[13.29639,52.519385]},{"entry":[true,false],"in":1,"bearings":[85,266],"duration":9.512,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.939,"geometry_index":6171,"location":[13.298099,52.519482]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.29895,52.519525],"geometry_index":6172,"admin_index":5,"weight":6.896,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":0.5,"duration":5.824,"bearings":[87,265],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[13.29926,52.519535],"geometry_index":6173,"admin_index":5,"weight":2.023,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":3.385,"bearings":[87,267],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.299327,52.519537],"geometry_index":6174,"admin_index":5,"weight":5.264,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":3.885,"bearings":[87,267],"out":0,"in":1,"entry":[true,false]},{"bearings":[108,175,267,353],"entry":[true,true,false,false],"in":2,"turn_weight":7,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6175,"location":[13.299528,52.519543]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Otto-Suhr-Allee"}],"type":"turn","modifier":"slight right","text":"Otto-Suhr-Allee"},"distanceAlongGeometry":1108.412},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Otto-Suhr-Allee"}],"type":"turn","modifier":"slight right","text":"Otto-Suhr-Allee"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Spandauer Damm.","modifier":"right","bearing_after":84,"bearing_before":346,"location":[13.283473,52.51852]},"speedLimitSign":"vienna","name":"Spandauer Damm","weight_typical":212.271,"duration_typical":159.49,"duration":159.49,"distance":1108.412,"driving_side":"right","weight":212.271,"mode":"driving","geometry":"ofndcBahwiX]iNiAqc@g@iRkAuP}E{Y_Byr@WiKGwCGaCUmIO}IG{BeAee@_A}`@_A{a@mDo{Ag@gQWaJEwA\\}JkBks@G}BgAg[MuFOgGM}FGmCmGylCm@{^QoHGmCQ{GgA_[OiHEeBwC_nAi@yZuAet@SkRCeCKqKdAkJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1614.72},{"ssmlAnnouncement":"In a quarter mile, Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2.","announcement":"In a quarter mile, Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2, Mitte.","announcement":"Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2, Mitte.","distanceAlongGeometry":127.778}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.29971,52.519508],"geometry_index":6176,"admin_index":5,"weight":3.98,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.014,"turn_weight":2,"duration":1.814,"bearings":[119,175,288,353],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[117,299],"duration":0.434,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.457,"geometry_index":6177,"location":[13.299872,52.519453]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":1.246,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.871,"geometry_index":6178,"location":[13.299917,52.519439]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.568,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.525,"geometry_index":6179,"location":[13.30003,52.519403]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":7.062,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.268,"geometry_index":6181,"location":[13.300457,52.519267]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.838,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.914,"geometry_index":6182,"location":[13.301124,52.519052]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.145,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.238,"geometry_index":6183,"location":[13.301204,52.519026]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":6.42,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.055,"geometry_index":6184,"location":[13.301331,52.518987]},{"entry":[true,false],"in":1,"bearings":[116,297],"duration":0.338,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.871,"geometry_index":6185,"location":[13.30208,52.518754]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":1.02,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.113,"geometry_index":6186,"location":[13.302114,52.518744]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.562,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.697,"geometry_index":6187,"location":[13.302228,52.518707]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":0.521,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.566,"geometry_index":6188,"location":[13.302351,52.518669]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":14.572,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":16.529,"geometry_index":6189,"location":[13.302388,52.518657]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":8.742,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.117,"geometry_index":6190,"location":[13.303499,52.518306]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":3.607,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.961,"geometry_index":6193,"location":[13.304166,52.518099]},{"entry":[true,true,false,true],"in":2,"bearings":[117,176,298,356],"duration":6.818,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.48,"geometry_index":6194,"location":[13.304434,52.518013]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":4.199,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.119,"geometry_index":6195,"location":[13.304881,52.517873]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":6.6,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.76,"geometry_index":6196,"location":[13.30515,52.517788]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.4,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.039,"geometry_index":6197,"location":[13.305583,52.517645]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.199,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.119,"geometry_index":6198,"location":[13.305678,52.517614]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.305945,52.517527],"geometry_index":6199,"admin_index":5,"weight":5.293,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":0.5,"duration":4.365,"bearings":[119,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[113,298],"duration":0.568,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.125,"geometry_index":6201,"location":[13.306245,52.51743]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.306291,52.517418],"geometry_index":6202,"admin_index":5,"weight":3.709,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.011,"turn_weight":1,"duration":2.475,"bearings":[120,293],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.306454,52.517361],"geometry_index":6203,"admin_index":5,"weight":3.785,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.022,"turn_weight":1.5,"duration":2.1,"bearings":[117,176,300,358],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false,false,true],"in":2,"bearings":[117,176,297,358],"duration":2.117,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.822,"geometry_index":6204,"location":[13.306653,52.517299]},{"mapbox_streets_v8":{"class":"secondary"},"location":[13.306879,52.517229],"geometry_index":6205,"admin_index":5,"weight":1.684,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":2.629,"bearings":[118,297],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.117,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.729,"geometry_index":6206,"location":[13.306938,52.51721]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":5.096,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.098,"geometry_index":6207,"location":[13.307052,52.517174]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.744,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.318,"geometry_index":6209,"location":[13.307592,52.517003]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.26,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.865,"geometry_index":6210,"location":[13.307664,52.51698]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":6.463,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.602,"geometry_index":6211,"location":[13.307798,52.516939]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":3.607,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.461,"geometry_index":6212,"location":[13.308478,52.516726]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":4.725,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.689,"geometry_index":6213,"location":[13.308859,52.516607]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":0.875,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.455,"geometry_index":6214,"location":[13.309361,52.516452]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":4.096,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.006,"geometry_index":6215,"location":[13.309459,52.516422]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.30989,52.516286],"geometry_index":6216,"admin_index":5,"weight":2.139,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":0.5,"duration":1.496,"bearings":[118,297],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.31005,52.516235],"geometry_index":6218,"admin_index":5,"weight":4.277,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":2.986,"bearings":[118,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.310359,52.516136],"geometry_index":6219,"admin_index":5,"weight":2.109,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":0.5,"duration":1.482,"bearings":[117,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.310525,52.516085],"geometry_index":6220,"admin_index":5,"weight":1.84,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":0.771,"bearings":[117,297],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":2.297,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.52,"geometry_index":6221,"location":[13.310619,52.516056]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":5.135,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.141,"geometry_index":6222,"location":[13.310899,52.515968]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":3.838,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.699,"geometry_index":6224,"location":[13.311514,52.515767]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":2.08,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.279,"geometry_index":6225,"location":[13.311977,52.515621]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":3.389,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.221,"geometry_index":6226,"location":[13.312224,52.515545]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.48,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.42,"geometry_index":6227,"location":[13.312628,52.515413]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.418,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.061,"geometry_index":6228,"location":[13.313164,52.515243]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.879,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.961,"geometry_index":6229,"location":[13.313339,52.515187]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.732,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.197,"geometry_index":6230,"location":[13.313441,52.515154]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":9.225,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.648,"geometry_index":6231,"location":[13.313712,52.515066]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":11.475,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":13.123,"geometry_index":6232,"location":[13.314249,52.514892]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[13.314923,52.514681],"geometry_index":6234,"admin_index":5,"weight":1.738,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":3.125,"bearings":[119,297],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.314983,52.514661],"geometry_index":6235,"admin_index":5,"weight":2.98,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":1.807,"bearings":[118,299],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.315089,52.514627],"geometry_index":6236,"admin_index":5,"weight":2.984,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":1.5,"duration":1.357,"bearings":[28,119,201,298],"out":1,"in":3,"entry":[false,true,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.315199,52.51459],"geometry_index":6237,"admin_index":5,"weight":2.65,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.053,"bearings":[18,118,199,299],"out":1,"in":3,"entry":[true,true,false,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,117,203,298],"duration":0.6,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.639,"geometry_index":6238,"location":[13.315311,52.514554]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":1.393,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.033,"geometry_index":6239,"location":[13.315371,52.514535]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":8.246,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.57,"geometry_index":6240,"location":[13.315531,52.514486]},{"entry":[true,true,false],"in":2,"bearings":[117,207,297],"duration":4.768,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.738,"geometry_index":6242,"location":[13.316462,52.514199]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":1.975,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.672,"geometry_index":6243,"location":[13.317002,52.514029]},{"entry":[false,true,false,false],"in":3,"bearings":[25,117,206,298],"duration":1.18,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.277,"geometry_index":6244,"location":[13.317218,52.51396]},{"entry":[true,true,true,false],"in":3,"bearings":[23,110,206,297],"duration":2.191,"turn_weight":1,"turn_duration":0.03,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.377,"geometry_index":6245,"location":[13.317343,52.513921]},{"entry":[false,true,false,false],"in":3,"bearings":[23,109,201,290],"duration":7.701,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":9.447,"geometry_index":6246,"location":[13.317473,52.513892]},{"entry":[true,true,false],"in":2,"bearings":[105,199,287],"duration":5.779,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.836,"geometry_index":6248,"location":[13.317917,52.513804]},{"entry":[true,false],"in":1,"bearings":[103,285],"duration":3.84,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.725,"geometry_index":6249,"location":[13.318264,52.513747]},{"entry":[true,true,false],"in":2,"bearings":[104,194,283],"duration":10.328,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":11.852,"geometry_index":6250,"location":[13.318498,52.513713]},{"entry":[true,true,false],"in":2,"bearings":[105,193,284],"duration":5.527,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.572,"geometry_index":6251,"location":[13.319108,52.513623]},{"entry":[false,true,false],"in":2,"bearings":[15,105,285],"duration":4.568,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":5.516,"geometry_index":6252,"location":[13.319431,52.513569]},{"entry":[true,true,false],"in":2,"bearings":[110,176,285],"duration":4.33,"turn_weight":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.252,"geometry_index":6253,"location":[13.319699,52.513524]},{"entry":[true,false],"in":1,"bearings":[113,290],"duration":4.08,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.988,"geometry_index":6254,"location":[13.319951,52.513469]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.320189,52.513408],"geometry_index":6255,"admin_index":5,"weight":11.061,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":0.5,"duration":9.607,"bearings":[115,176,293],"out":0,"in":2,"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.320725,52.513251],"geometry_index":6259,"admin_index":5,"weight":4.244,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.02,"turn_weight":0.75,"duration":3.197,"bearings":[25,133,296],"out":1,"in":2,"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.320889,52.513159],"geometry_index":6262,"admin_index":5,"weight":2.164,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.017,"turn_weight":1,"duration":1.076,"bearings":[48,147,229,313],"out":1,"in":3,"entry":[false,true,false,false]},{"bearings":[42,172,221,327],"entry":[false,true,false,false],"in":3,"turn_weight":1,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.037,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6263,"location":[13.320928,52.513123]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Tiergarten"}],"degrees":260,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Mitte / Tiergarten"},"distanceAlongGeometry":1631.386}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Otto-Suhr-Allee.","modifier":"slight right","bearing_after":119,"bearing_before":108,"location":[13.29971,52.519508]},"speedLimitSign":"vienna","name":"Otto-Suhr-Allee","weight_typical":343.631,"duration_typical":267.664,"duration":267.664,"distance":1631.386,"driving_side":"right","weight":343.631,"mode":"driving","geometry":"gdpdcB{~vjXlBcIZyAfAaFlEgS`AmElLuh@r@_DlA}FpMym@RcAhAcFjAuFViA|TmdAfGcYlBiJf@gCjDwOvG}ZhDyO|GaZ|@}DlDuOlDgORoAV{ApBeIzBmKjCcMd@uBfAcFlDiPfDmOl@oCpAkGhLoi@lFyVtHk^z@cEnG}YdA{E^cBdEiRdBkIx@{DnDoPjGuXdCwKbH}[vCmNfGgXrIo`@nB}I`AkEnD}OzIq`@`Job@bAsEf@wBbAsEhA{EfA_Fd@wB`B_ItN{q@fAiFrIw`@hCoLlAyFx@cG`AcHlBsQpBuTbAsMrDce@jBeSxAwOlBwNxB{MrAkHpCqN`@uBp@{CvBeGBCz@}@fAmA~@o@lAc@bCM|BL"},{"destinations":"B 2, B 5: Mitte, Tiergarten","ref":"B 2; B 5","mode":"driving","weight":39.129,"distance":232.407,"geometry":"uhcdcBso`lX`CnCxBpBhC|AhCh@rB@lBMtAS~Bo@lBaAvBiBlBqBdB_C|AkCjAqCnA_EfAyEj@mDZiDRcFFuE?aFIgGYiEi@}FqAiI{AqG}A_Fs@oAsAmBcBiBaCuB","duration":30.492,"driving_side":"right","duration_typical":30.492,"weight_typical":39.129,"name":"","speedLimitSign":"vienna","maneuver":{"type":"rotary","exit":3,"instruction":"Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2/B 5/Mitte/Tiergarten.","modifier":"slight right","bearing_after":210,"bearing_before":174,"location":[13.32097,52.512923]},"speedLimitUnit":"km/h","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Tiergarten"}],"degrees":260,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Mitte / Tiergarten"},"distanceAlongGeometry":232.407}],"rotary_name":"Ernst-Reuter-Platz","intersections":[{"entry":[false,true,false],"in":2,"bearings":[44,210,354],"duration":3.416,"turn_weight":6.125,"turn_duration":0.082,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":9.791,"geometry_index":6267,"location":[13.32097,52.512923]},{"entry":[false,true,true],"in":0,"bearings":[28,183,231],"duration":5.957,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left","right"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.122,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":6.418,"geometry_index":6270,"location":[13.320794,52.512728]},{"entry":[true,false,false],"in":2,"bearings":[143,297,339],"duration":6.469,"turn_duration":0.056,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":7.055,"geometry_index":6277,"location":[13.320899,52.512324]},{"entry":[true,true,false],"in":2,"bearings":[94,117,293],"duration":4.686,"turn_duration":0.077,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":5.068,"geometry_index":6285,"location":[13.32154,52.512021]},{"entry":[true,false,true],"in":1,"bearings":[74,269,351],"duration":6.965,"turn_duration":0.052,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":7.604,"geometry_index":6289,"location":[13.322006,52.512012]},{"bearings":[36,218,239],"entry":[true,false,false],"in":2,"turn_duration":0.097,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6294,"location":[13.322648,52.51218]}],"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 2, Mitte.","announcement":"Exit the roundabout toward B 2, Mitte.","distanceAlongGeometry":94.444}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on B 2, B 5 for 1 mile.","announcement":"Continue on B 2, B 5 for 1 mile.","distanceAlongGeometry":1796.387},{"ssmlAnnouncement":"In a quarter mile, Enter Großer Stern and take the 2nd exit toward B 2.","announcement":"In a quarter mile, Enter Großer Stern and take the 2nd exit toward B 2.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Großer Stern and take the 2nd exit toward B 2, Potsdamer Platz.","announcement":"Enter Großer Stern and take the 2nd exit toward B 2, Potsdamer Platz.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[13,44,213],"duration":1.695,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.848,"geometry_index":6298,"location":[13.322855,52.512363]},{"entry":[true,false],"in":1,"bearings":[52,224],"duration":3,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.301,"geometry_index":6299,"location":[13.323001,52.512455]},{"entry":[true,false,false,false],"in":2,"bearings":[63,175,234,356],"duration":0.492,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.527,"geometry_index":6304,"location":[13.323296,52.512594]},{"entry":[true,false,false,false],"in":2,"bearings":[71,175,243,353],"duration":1.33,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.451,"geometry_index":6305,"location":[13.323351,52.512611]},{"entry":[true,true,false,true],"in":2,"bearings":[84,110,251,355],"duration":18.287,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":20.098,"geometry_index":6307,"location":[13.323501,52.512642]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":1.693,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.842,"geometry_index":6309,"location":[13.326475,52.512843]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,264,353],"duration":1.693,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.842,"geometry_index":6311,"location":[13.326774,52.512862]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":8.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.24,"geometry_index":6312,"location":[13.327068,52.512882]},{"entry":[true,true,false],"in":2,"bearings":[84,173,264],"duration":11.779,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":12.936,"geometry_index":6314,"location":[13.328509,52.512976]},{"entry":[true,false,false,true],"in":2,"bearings":[86,203,264,353],"duration":0.682,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.742,"geometry_index":6316,"location":[13.32995,52.513067]},{"entry":[true,false],"in":1,"bearings":[82,266],"duration":2.9,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.99,"geometry_index":6317,"location":[13.329998,52.513069]},{"entry":[true,false,false,false],"in":2,"bearings":[84,176,262,355],"duration":2.482,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.723,"geometry_index":6318,"location":[13.33006,52.513074]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.330226,52.513084],"geometry_index":6319,"admin_index":5,"weight":4.326,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":1,"duration":3.043,"bearings":[84,160,228,264,353],"out":0,"in":3,"entry":[true,true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":6.58,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.072,"geometry_index":6320,"location":[13.330536,52.513104]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[85,264],"duration":0.568,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.611,"geometry_index":6321,"location":[13.33131,52.513153]},{"entry":[true,false,false],"in":2,"bearings":[84,113,265],"duration":2.672,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.852,"geometry_index":6322,"location":[13.331347,52.513155]},{"entry":[true,false,false,false],"in":2,"bearings":[85,173,264,353],"duration":0.967,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.018,"geometry_index":6324,"location":[13.331559,52.513169]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.331628,52.513173],"geometry_index":6325,"admin_index":5,"weight":1.33,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":0.5,"duration":0.791,"bearings":[84,265,353],"out":0,"in":1,"entry":[true,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,353],"duration":0.791,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.83,"geometry_index":6327,"location":[13.331723,52.513179]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,264,353],"duration":1.562,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.658,"geometry_index":6328,"location":[13.331811,52.513185]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":1.982,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.111,"geometry_index":6330,"location":[13.331991,52.513197]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":14.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":16.066,"geometry_index":6331,"location":[13.332252,52.513214]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":3.818,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.105,"geometry_index":6332,"location":[13.334268,52.513349]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[84,264],"duration":5.672,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.098,"geometry_index":6333,"location":[13.334784,52.513384]},{"entry":[false,true,false,false],"in":3,"bearings":[3,84,183,264],"duration":0.564,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.586,"geometry_index":6335,"location":[13.335547,52.513435]},{"entry":[false,true,false,false],"in":3,"bearings":[1,84,179,264],"duration":0.346,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.352,"geometry_index":6336,"location":[13.335614,52.513439]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.335659,52.513442],"geometry_index":6337,"admin_index":5,"weight":1.908,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":0.5,"duration":1.328,"bearings":[84,264,356],"out":0,"in":1,"entry":[true,false,false]},{"entry":[true,true,false],"in":2,"bearings":[11,83,264],"duration":0.646,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.674,"geometry_index":6338,"location":[13.335777,52.51345]},{"entry":[false,true,false,false],"in":3,"bearings":[10,83,189,263],"duration":0.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.674,"geometry_index":6339,"location":[13.335833,52.513454]},{"entry":[false,true,false,false],"in":3,"bearings":[11,87,191,263],"duration":0.322,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.336,"geometry_index":6340,"location":[13.335897,52.513459]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[84,267],"duration":2.436,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.617,"geometry_index":6341,"location":[13.33593,52.51346]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":1.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.088,"geometry_index":6342,"location":[13.336266,52.513483]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":1.688,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.814,"geometry_index":6343,"location":[13.336398,52.513492]},{"entry":[true,true,false],"in":2,"bearings":[83,175,265],"duration":8.312,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.912,"geometry_index":6344,"location":[13.336623,52.513505]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,263,353],"duration":1.971,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.111,"geometry_index":6346,"location":[13.337739,52.513585]},{"entry":[true,true,false,true],"in":2,"bearings":[82,176,264,355],"duration":1.051,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.105,"geometry_index":6348,"location":[13.338004,52.513603]},{"entry":[true,false],"in":1,"bearings":[82,262],"duration":0.771,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.83,"geometry_index":6349,"location":[13.338128,52.513613]},{"entry":[true,false,false,false],"in":2,"bearings":[90,175,262,353],"duration":36.141,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":38.838,"geometry_index":6350,"location":[13.338217,52.513621]},{"entry":[true,false],"in":1,"bearings":[84,256],"duration":1.156,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.244,"geometry_index":6354,"location":[13.342328,52.513906]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":19.672,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":21.146,"geometry_index":6355,"location":[13.342461,52.513915]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,263,353],"duration":13.379,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":14.375,"geometry_index":6356,"location":[13.3447,52.514071]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":9.258,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.184,"geometry_index":6357,"location":[13.346229,52.514173]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":6.943,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.637,"geometry_index":6358,"location":[13.347287,52.514243]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[84,263],"duration":2.699,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.971,"geometry_index":6359,"location":[13.348075,52.514299]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,355],"duration":0.791,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.848,"geometry_index":6361,"location":[13.348387,52.51432]},{"bearings":[94,175,264,353],"entry":[true,false,false,false],"in":2,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6362,"location":[13.348469,52.514325]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Potsdamer Platz"},{"type":"text","text":"/"},{"type":"text","text":"Mitte"}],"degrees":179,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Potsdamer Platz / Mitte"},"distanceAlongGeometry":1813.054}],"destinations":"B 2, B 5: Mitte, Tiergarten","speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout toward B 2/B 5/Mitte/Tiergarten.","modifier":"slight right","bearing_after":44,"bearing_before":33,"location":[13.322855,52.512363]},"speedLimitSign":"vienna","name":"Straße des 17. Juni","weight_typical":234.787,"duration_typical":216.18,"duration":216.18,"distance":1813.054,"driving_side":"right","weight":234.787,"mode":"driving","ref":"B 2; B 5","geometry":"uebdcBmedlXwDcHw@yAqAaDeByFCGa@oAa@mBg@sCUwCcKeqDMuFUqIOcGg@kQK_EoDasAcDmoAQsHC_BI{BSkIg@kRaBko@CiASoHGwBGiCEcBEyAKoDCiAS}Ga@iOmG_}BeAg_@{Aoj@IeCGeCEyAOkFGoBI_CAaAm@_TQgGYaMwC{`AG{BOcFSmHSwFOqDAeABgc@yLm_EaCaYQiGwH}jCkEq~AkCcaAoBgp@a@oNG_CIcDCqD@eF^aF|@yEdAcFbD{L"},{"destinations":"B 2, B 5: Potsdamer Platz, Mitte, Reichstag","ref":"B 2; B 5","mode":"driving","weight":21.197,"distance":147.915,"geometry":"cvedcB}uwmX`CeDrB_EbBwEpAkF\\{B^}Bh@eGRwGAyG[kI[_CQwAeAaGq@oC{@gC_A_CeAuBkAmBqAcBuAwAyAkA","duration":18.736,"driving_side":"right","duration_typical":18.736,"weight_typical":21.197,"name":"Straße des 17. Juni","speedLimitSign":"vienna","maneuver":{"type":"rotary","exit":2,"instruction":"Enter Großer Stern and take the 2nd exit toward B 2/B 5/Potsdamer Platz/Mitte.","modifier":"slight right","bearing_after":137,"bearing_before":121,"location":[13.349231,52.514162]},"speedLimitUnit":"km/h","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Potsdamer Platz"},{"type":"text","text":"/"},{"type":"text","text":"Mitte"}],"degrees":179,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Potsdamer Platz / Mitte"},"distanceAlongGeometry":147.915}],"rotary_name":"Großer Stern","intersections":[{"entry":[true,false,false],"in":1,"bearings":[137,301,335],"duration":5.697,"turn_weight":0.75,"turn_duration":0.02,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":6.994,"geometry_index":6368,"location":[13.349231,52.514162]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[107,301],"duration":1.938,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":2.133,"geometry_index":6373,"location":[13.349698,52.513933]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.349892,52.513896],"geometry_index":6375,"admin_index":5,"weight":6.131,"is_urban":true,"mapbox_streets_v8":{"class":"roundabout"},"yield_sign":true,"out":0,"in":2,"turn_duration":0.056,"duration":5.631,"bearings":[92,137,287],"entry":[true,true,false]},{"bearings":[53,203,251],"entry":[true,false,false],"in":2,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.071,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6381,"location":[13.350576,52.513959]}],"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 2, Potsdamer Platz.","announcement":"Exit the roundabout toward B 2, Potsdamer Platz.","distanceAlongGeometry":100}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1744.482},{"ssmlAnnouncement":"In a quarter mile, Turn right toward Mitte.","announcement":"In a quarter mile, Turn right toward Mitte.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right toward Mitte, Potsdamer Platz.","announcement":"Turn right toward Mitte, Potsdamer Platz.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[15,49,214],"duration":2.049,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.234,"geometry_index":6389,"location":[13.351026,52.514248]},{"entry":[true,false],"in":1,"bearings":[55,229],"duration":3.322,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.656,"geometry_index":6390,"location":[13.351276,52.514378]},{"entry":[true,false,false,false],"in":2,"bearings":[76,175,244,355],"duration":0.477,"turn_duration":0.015,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.508,"geometry_index":6394,"location":[13.351736,52.514543]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,256,355],"duration":16.812,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":18.48,"geometry_index":6395,"location":[13.351808,52.514554]},{"entry":[true,false,false,false],"in":2,"bearings":[84,172,264,352],"duration":15.988,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":17.166,"geometry_index":6396,"location":[13.354482,52.514725]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":10.604,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":11.377,"geometry_index":6397,"location":[13.357019,52.514887]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,353],"duration":2.756,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.941,"geometry_index":6398,"location":[13.359181,52.515027]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,355],"duration":2.756,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.941,"geometry_index":6399,"location":[13.359744,52.515063]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,264,353],"duration":19.1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":20.512,"geometry_index":6400,"location":[13.360302,52.515099]},{"entry":[true,true,false,true],"in":2,"bearings":[84,168,264,353],"duration":11.785,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":12.648,"geometry_index":6402,"location":[13.364197,52.515351]},{"entry":[true,false,false,true],"in":2,"bearings":[84,175,264,353],"duration":16.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":17.631,"geometry_index":6403,"location":[13.366161,52.515479]},{"entry":[true,false,true],"in":1,"bearings":[84,264,351],"duration":1.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.074,"geometry_index":6404,"location":[13.368562,52.515633]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":7.801,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.385,"geometry_index":6405,"location":[13.368637,52.515638]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.805,"geometry_index":6406,"location":[13.369208,52.515675]},{"entry":[false,true,false,false],"in":3,"bearings":[7,84,187,265],"duration":1.02,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.074,"geometry_index":6408,"location":[13.369607,52.515698]},{"entry":[false,true,false,false],"in":3,"bearings":[7,85,187,264],"duration":2.619,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.795,"geometry_index":6410,"location":[13.369681,52.515703]},{"entry":[true,false,true],"in":1,"bearings":[84,265,356],"duration":1.818,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.936,"geometry_index":6411,"location":[13.369874,52.515714]},{"entry":[true,false,false,false],"in":2,"bearings":[83,175,264,353],"duration":0.676,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.703,"geometry_index":6412,"location":[13.370041,52.515724]},{"entry":[true,false,false,false,false],"in":3,"bearings":[84,175,208,263,353],"duration":13.426,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":14.424,"geometry_index":6413,"location":[13.370105,52.515729]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[84,264],"duration":8.182,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.795,"geometry_index":6415,"location":[13.371302,52.515807]},{"entry":[true,false,false,false],"in":2,"bearings":[84,182,264,359],"duration":50.582,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":54.355,"geometry_index":6416,"location":[13.372033,52.515855]},{"bearings":[84,173,264,353],"entry":[true,false,false,false],"in":2,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6418,"location":[13.376564,52.516145]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Potsdamer Platz"}],"type":"turn","modifier":"right","text":"Mitte / Potsdamer Platz"},"distanceAlongGeometry":1761.148},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Potsdamer Platz"}],"type":"turn","modifier":"right","text":"Mitte / Potsdamer Platz"},"distanceAlongGeometry":402.336}],"destinations":"B 2, B 5: Potsdamer Platz, Mitte, Reichstag","speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout toward B 2/B 5/Potsdamer Platz/Mitte.","modifier":"slight right","bearing_after":49,"bearing_before":34,"location":[13.351026,52.514248]},"speedLimitSign":"vienna","name":"Straße des 17. Juni","weight_typical":211.422,"duration_typical":196.43,"duration":196.43,"distance":1761.148,"driving_side":"right","weight":211.422,"mode":"driving","ref":"B 2; B 5","geometry":"o{edcBcf{mXcGsNwCeIsAaFsAuHIy@UoCuIcfDcIq}CwGcfCgAeb@gA{a@EoAqN}oF_GwyBsHauCIuCiAub@e@uSGgCGqBAa@UaKSmII_CCwAwCagA_Bul@yP}tGIgDIyCCu@EsB"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Turn left onto Behrenstraße.","announcement":"In 600 feet, Turn left onto Behrenstraße.","distanceAlongGeometry":179.314},{"ssmlAnnouncement":"Turn left onto Behrenstraße, B 5.","announcement":"Turn left onto Behrenstraße, B 5.","distanceAlongGeometry":88.889}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.376726,52.516155],"geometry_index":6421,"admin_index":5,"weight":4.971,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":1.051,"turn_weight":2,"duration":3.75,"bearings":[83,162,264,353],"out":1,"in":2,"entry":[true,true,false,false]},{"entry":[false,true,false,false],"in":3,"bearings":[82,133,263,342],"duration":16.738,"turn_duration":0.178,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":18.217,"geometry_index":6424,"location":[13.376795,52.516029]},{"bearings":[2,185],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6438,"location":[13.377455,52.515391]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Behrenstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 5"}],"type":"turn","modifier":"left","text":"Behrenstraße / B 5"},"distanceAlongGeometry":195.981}],"destinations":"Mitte, Potsdamer Platz, Kreuzberg, Unter den Linden","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right toward Mitte/Potsdamer Platz.","modifier":"right","bearing_after":162,"bearing_before":84,"location":[13.376726,52.516155]},"speedLimitSign":"vienna","name":"Ebertstraße","weight_typical":40.408,"duration_typical":36.508,"duration":36.508,"distance":195.981,"driving_side":"right","weight":40.408,"mode":"driving","ref":"B 5","geometry":"uridcBklmoXbCs@XI|AkAbAsAXa@|@_BbAmC~@eEpByH`BqDx@_BhAwAfAs@fAa@hBUhBA~GR~h@zD`GN"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on Behrenstraße for a half mile.","announcement":"Continue on Behrenstraße for a half mile.","distanceAlongGeometry":1047.533},{"ssmlAnnouncement":"In a quarter mile, Turn right onto Markgrafenstraße.","announcement":"In a quarter mile, Turn right onto Markgrafenstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right onto Markgrafenstraße.","announcement":"Turn right onto Markgrafenstraße.","distanceAlongGeometry":46.667}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[3,94,183],"duration":6.875,"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"turn_duration":5.275,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.721,"geometry_index":6440,"location":[13.377353,52.51459]},{"entry":[true,true,false,false],"in":3,"bearings":[1,91,183,274],"duration":0.805,"turn_weight":1.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.342,"geometry_index":6441,"location":[13.377467,52.514585]},{"entry":[false,true,false,false],"in":3,"bearings":[1,91,182,271],"duration":1.104,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.178,"geometry_index":6442,"location":[13.377536,52.514584]},{"entry":[false,true,false,false],"in":3,"bearings":[6,84,186,271],"duration":2.689,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.861,"geometry_index":6443,"location":[13.37764,52.514583]},{"entry":[true,false,false],"in":2,"bearings":[84,179,264],"duration":7.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.74,"geometry_index":6445,"location":[13.377893,52.5146]},{"entry":[true,false,false],"in":2,"bearings":[84,177,264],"duration":3.932,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.305,"geometry_index":6446,"location":[13.378569,52.514645]},{"entry":[true,false],"in":1,"bearings":[78,264],"duration":6,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.6,"geometry_index":6447,"location":[13.378929,52.514669]},{"entry":[true,true,false,false],"in":2,"bearings":[72,162,253,344],"duration":5.887,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.453,"geometry_index":6450,"location":[13.37957,52.514768]},{"entry":[true,false,false],"in":1,"bearings":[73,252,342],"duration":0.541,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.586,"geometry_index":6454,"location":[13.380183,52.514888]},{"entry":[true,true,false],"in":2,"bearings":[71,162,253],"duration":0.422,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.439,"geometry_index":6455,"location":[13.380237,52.514898]},{"entry":[true,false,true],"in":1,"bearings":[73,251,348],"duration":1.607,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.76,"geometry_index":6456,"location":[13.380276,52.514906]},{"entry":[true,false],"in":1,"bearings":[72,253],"duration":6.133,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.746,"geometry_index":6457,"location":[13.380442,52.514937]},{"entry":[true,false,false],"in":2,"bearings":[72,162,252],"duration":3.74,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.107,"geometry_index":6458,"location":[13.381088,52.515063]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.381488,52.515141],"geometry_index":6462,"admin_index":5,"weight":8.049,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.012,"turn_weight":1.5,"duration":5.965,"bearings":[80,162,252,342],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":9.555,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.51,"geometry_index":6466,"location":[13.382117,52.515195]},{"entry":[true,true,false],"in":2,"bearings":[84,173,264],"duration":0.988,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.066,"geometry_index":6468,"location":[13.38313,52.515264]},{"entry":[true,false,true],"in":1,"bearings":[83,264,353],"duration":0.713,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.762,"geometry_index":6469,"location":[13.383238,52.515271]},{"entry":[true,false,true],"in":1,"bearings":[84,263,353],"duration":9.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.9,"geometry_index":6470,"location":[13.383308,52.515276]},{"entry":[true,false,true],"in":1,"bearings":[84,264,355],"duration":2.234,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.438,"geometry_index":6471,"location":[13.384259,52.515333]},{"entry":[true,true,false],"in":2,"bearings":[84,169,264],"duration":14.23,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":15.631,"geometry_index":6475,"location":[13.384499,52.515349]},{"entry":[true,false,true],"in":1,"bearings":[83,264,351],"duration":1.158,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.25,"geometry_index":6477,"location":[13.385594,52.515419]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[84,263],"duration":4.926,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.42,"geometry_index":6478,"location":[13.385676,52.515425]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.386057,52.515451],"geometry_index":6481,"admin_index":5,"weight":21.08,"is_urban":true,"mapbox_streets_v8":{"class":"street"},"turn_duration":0.019,"turn_weight":2,"duration":17.365,"bearings":[84,172,264,353],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false,true],"in":1,"bearings":[84,264,355],"duration":5.746,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":7.301,"geometry_index":6484,"location":[13.387619,52.515556]},{"entry":[true,true,false],"in":2,"bearings":[32,84,264],"duration":7.219,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":8.92,"geometry_index":6485,"location":[13.388135,52.515591]},{"mapbox_streets_v8":{"class":"street"},"geometry_index":6486,"admin_index":5,"weight":2.801,"is_urban":true,"location":[13.388774,52.515634],"stop_sign":true,"out":0,"in":1,"turn_duration":0.019,"turn_weight":1,"duration":1.656,"bearings":[85,264,306],"entry":[true,false,true]},{"entry":[true,false,false],"in":2,"bearings":[84,175,265],"duration":1.328,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":2.439,"geometry_index":6488,"location":[13.38892,52.515642]},{"entry":[true,false,true,false,true],"in":3,"bearings":[85,166,183,264,353],"duration":2.943,"turn_weight":4,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":7.217,"geometry_index":6489,"location":[13.389037,52.515649]},{"entry":[true,false,false],"in":2,"bearings":[85,189,265],"duration":3.395,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":4.713,"geometry_index":6490,"location":[13.389221,52.515659]},{"entry":[true,false],"bearings":[85,265],"duration":22.725,"turn_weight":1,"in":1,"yield_sign":true,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":26.566,"geometry_index":6492,"location":[13.389435,52.51567]},{"entry":[true,false,false,false],"in":2,"bearings":[84,160,265,339],"duration":6.361,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":9.135,"geometry_index":6495,"location":[13.390922,52.515748]},{"entry":[true,false,false],"in":2,"bearings":[84,175,264],"duration":11.848,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":14.307,"geometry_index":6498,"location":[13.391466,52.515785]},{"bearings":[84,264,356],"entry":[true,false,true],"in":1,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6500,"location":[13.392473,52.515853]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Markgrafenstraße"}],"type":"turn","modifier":"right","text":"Markgrafenstraße"},"distanceAlongGeometry":1065.276}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Behrenstraße/B 5. Continue on Behrenstraße.","modifier":"left","bearing_after":91,"bearing_before":183,"location":[13.377353,52.51459]},"speedLimitSign":"vienna","name":"Behrenstraße","weight_typical":213.311,"duration_typical":181.641,"duration":181.641,"distance":1065.276,"driving_side":"right","weight":213.311,"mode":"driving","ref":"B 5","geometry":"{pfdcBqsnoXHcF@iC@oEGeCYsJyAgi@o@oUq@mMgBmQk@eFu@{GW}BWyBiCuTSkBOmA}@kI{Fkg@_AiIKaAGa@gAqJo@oJEmAA]s@mWWqJqBwr@MwEIkCqBmz@AUEqBGyBO}EC{@gCqaAKcDOuFCu@_@mMWiJE_BsDirAeAg_@uA}f@IaEEaBMiFSoJEmBO}HmCusACw@IoEWiJCu@m@_TcCw{@CeAu@{X"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left onto Mohrenstraße.","announcement":"In a quarter mile, Turn left onto Mohrenstraße.","distanceAlongGeometry":386.9},{"ssmlAnnouncement":"Turn left onto Mohrenstraße. Then Your destination will be on the left.","announcement":"Turn left onto Mohrenstraße. Then Your destination will be on the left.","distanceAlongGeometry":63.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[84,175,264],"duration":8.246,"turn_weight":7,"turn_duration":2.105,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":13.908,"geometry_index":6501,"location":[13.392887,52.51588]},{"entry":[false,true,false],"in":2,"bearings":[84,174,355],"duration":11.23,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":13.627,"geometry_index":6502,"location":[13.392927,52.515624]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":3.6,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":5.051,"geometry_index":6503,"location":[13.393007,52.515153]},{"entry":[true,true,true,false],"in":3,"bearings":[84,174,265,354],"duration":1.627,"turn_weight":3,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":4.822,"geometry_index":6504,"location":[13.393033,52.514997]},{"entry":[true,false,false],"in":2,"bearings":[174,265,354],"duration":3.068,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":4.443,"geometry_index":6505,"location":[13.393046,52.514917]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":13.141,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":15.783,"geometry_index":6506,"location":[13.393071,52.514761]},{"entry":[true,true,false,false],"in":3,"bearings":[86,174,252,354],"duration":14.119,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":17.877,"geometry_index":6508,"location":[13.393177,52.514104]},{"bearings":[84,174,354],"entry":[true,true,false],"in":2,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6509,"location":[13.393319,52.513231]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Mohrenstraße"}],"type":"turn","modifier":"left","text":"Mohrenstraße"},"distanceAlongGeometry":396.9}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Markgrafenstraße.","modifier":"right","bearing_after":175,"bearing_before":84,"location":[13.392887,52.51588]},"speedLimitSign":"vienna","name":"Markgrafenstraße","weight_typical":93.555,"duration_typical":70.189,"duration":70.189,"distance":396.9,"driving_side":"right","weight":93.555,"mode":"driving","geometry":"oaidcBm~lpX~NoAl\\_DvHs@~CYvHq@hSiBvSiBpu@{Gdw@cH"},{"voiceInstructions":[{"ssmlAnnouncement":"Your destination is on the left.","announcement":"Your destination is on the left.","distanceAlongGeometry":41.667}],"intersections":[{"bearings":[84,175,265,317,354],"entry":[true,true,true,false,false],"in":4,"turn_weight":10,"turn_duration":5.275,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6510,"location":[13.393465,52.512332]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Your destination will be on the left"}],"type":"arrive","modifier":"left","text":"Your destination will be on the left"},"distanceAlongGeometry":93.566},{"primary":{"components":[{"type":"text","text":"Your destination is on the left"}],"type":"arrive","modifier":"left","text":"Your destination is on the left"},"distanceAlongGeometry":41.667}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Mohrenstraße.","modifier":"left","bearing_after":84,"bearing_before":174,"location":[13.393465,52.512332]},"speedLimitSign":"vienna","name":"Mohrenstraße","weight_typical":31.053,"duration_typical":23.988,"duration":23.988,"distance":93.566,"driving_side":"right","weight":31.053,"mode":"driving","geometry":"wcbdcBqbnpXgD{tA"},{"voiceInstructions":[],"intersections":[{"bearings":[264],"entry":[true],"in":0,"admin_index":5,"geometry_index":6511,"location":[13.394839,52.512416]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"Your destination is on the left.","modifier":"left","bearing_after":0,"bearing_before":84,"location":[13.394839,52.512416]},"speedLimitSign":"vienna","name":"Mohrenstraße","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"_ibdcBmxppX??"}],"distance":585685.5,"summary":"Prinz-Ludwig-Straße, Türkenstraße, Gabelsbergerstraße, Widenmayerstraße, Ifflandstraße, Isarring, A 9, A 115, AVUS Nordkurve, A 100, Spandauer Damm, Otto-Suhr-Allee, Ernst-Reuter-Platz, B 2, Großer Stern, Straße des 17. Juni, Ebertstraße, Behrenstraße, Markgrafenstraße, Mohrenstraße"},{"notifications":[{"details":{"actual_value":"DE,FR","message":"Crossing the border of the countries of DE and FR."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":9050,"geometry_index_start":9049},{"details":{"actual_value":"FR,ES","message":"Crossing the border of the countries of FR and ES."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":22992,"geometry_index_start":22991},{"details":{"actual_value":"ES,PT","message":"Crossing the border of the countries of ES and PT."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":31475,"geometry_index_start":31473}],"summary":"Mohrenstraße, Jerusalemer Straße, B 1, Wexstraße, A 100, AVUS, E 51, A 4, A 7, A 5, A 3, A 67, A 60, A 63, B 48, A 6, E 50, A 26, A 19, A 10, E 05, AP-1, N-622, A-1, BU-30, A-62, E 80, A 23, A 1, E 01, IC 2, Avenida Infante Dom Henrique, Rua do Mar, Cais do Sodré, Rua do Alecrim","distance":2869761.75,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive east on Mohrenstraße. Then Turn right onto Jerusalemer Straße.","announcement":"Drive east on Mohrenstraße. Then Turn right onto Jerusalemer Straße.","distanceAlongGeometry":110.147},{"ssmlAnnouncement":"Turn right onto Jerusalemer Straße.","announcement":"Turn right onto Jerusalemer Straße.","distanceAlongGeometry":50}],"intersections":[{"bearings":[84],"entry":[true],"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":0,"location":[13.394839,52.512416]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Jerusalemer Straße"}],"type":"turn","modifier":"right","text":"Jerusalemer Straße"},"distanceAlongGeometry":110.147}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive east on Mohrenstraße.","bearing_after":84,"bearing_before":0,"location":[13.394839,52.512416]},"speedLimitSign":"vienna","name":"Mohrenstraße","weight_typical":24.848,"duration_typical":22.087,"duration":22.087,"distance":110.147,"driving_side":"right","weight":24.848,"mode":"driving","geometry":"_ibdcBmxppXcEcdB"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Turn right onto Leipziger Straße.","announcement":"In 600 feet, Turn right onto Leipziger Straße.","distanceAlongGeometry":163.758},{"ssmlAnnouncement":"Turn right onto Leipziger Straße, B 1.","announcement":"Turn right onto Leipziger Straße, B 1.","distanceAlongGeometry":56.667}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[18,174,264,353],"duration":16.805,"turn_weight":7,"turn_duration":2.105,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":23.538,"geometry_index":1,"location":[13.396457,52.512514]},{"mapbox_streets_v8":{"class":"street"},"location":[13.396615,52.511637],"geometry_index":2,"admin_index":0,"weight":12.658,"is_urban":true,"yield_sign":true,"out":1,"in":3,"turn_duration":0.008,"turn_weight":2,"duration":9.482,"bearings":[94,175,273,354],"entry":[true,true,true,false]},{"bearings":[84,175,265,355],"entry":[false,true,false,false],"in":3,"turn_weight":2,"lanes":[{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":4,"location":[13.396677,52.511191]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Leipziger Straße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 1"}],"type":"turn","modifier":"right","text":"Leipziger Straße / B 1"},"distanceAlongGeometry":173.758}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Jerusalemer Straße.","modifier":"right","bearing_after":174,"bearing_before":84,"location":[13.396457,52.512514]},"speedLimitSign":"vienna","name":"Jerusalemer Straße","weight_typical":43.738,"duration_typical":31.22,"duration":31.22,"distance":173.758,"driving_side":"right","weight":43.738,"mode":"driving","geometry":"cobdcBq}spXxu@{HbZwBVCjMgA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":5747.702},{"ssmlAnnouncement":"In a quarter mile, Turn right onto Wexstraße.","announcement":"In a quarter mile, Turn right onto Wexstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right onto Wexstraße.","announcement":"Turn right onto Wexstraße.","distanceAlongGeometry":77.778}],"intersections":[{"lanes":[{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.396713,52.510961],"geometry_index":5,"admin_index":0,"weight":13.254,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":2.105,"turn_weight":10.5,"duration":4.553,"bearings":[84,265,355],"out":1,"in":2,"entry":[false,true,false]},{"entry":[false,true],"in":0,"bearings":[85,265],"duration":8.928,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.044,"geometry_index":6,"location":[13.396469,52.510947]},{"entry":[false,true],"in":0,"bearings":[84,265],"duration":11.232,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":12.636,"geometry_index":8,"location":[13.395558,52.510893]},{"entry":[false,true],"in":0,"bearings":[85,266],"duration":1.44,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.62,"geometry_index":9,"location":[13.394418,52.510827]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[86,265],"duration":2.304,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.534,"geometry_index":10,"location":[13.39427,52.51082]},{"entry":[false,false,true,false],"in":0,"bearings":[85,175,264,353],"duration":3.031,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.326,"geometry_index":12,"location":[13.394035,52.510808]},{"entry":[false,true,true,true],"in":0,"bearings":[84,172,264,353],"duration":2.743,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.01,"geometry_index":13,"location":[13.39373,52.51079]},{"entry":[false,false,true,false],"in":0,"bearings":[84,173,263,353],"duration":8.947,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.821,"geometry_index":14,"location":[13.393454,52.510772]},{"entry":[false,true],"in":0,"bearings":[79,244],"duration":5.904,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.494,"geometry_index":16,"location":[13.392549,52.510695]},{"entry":[false,false,true,false],"in":0,"bearings":[67,175,232,355],"duration":2.077,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.061,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.218,"geometry_index":21,"location":[13.391996,52.510543]},{"entry":[false,true,true,true,true],"in":0,"bearings":[52,101,175,265,353],"duration":1.396,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.063,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.467,"geometry_index":22,"location":[13.391832,52.510464]},{"entry":[false,false,true,false],"in":0,"bearings":[85,175,265,353],"duration":0.674,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.733,"geometry_index":23,"location":[13.391692,52.510456]},{"entry":[false,true],"in":0,"bearings":[85,264],"duration":8.8,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.48,"geometry_index":24,"location":[13.391621,52.510452]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":3.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.52,"geometry_index":25,"location":[13.390867,52.510406]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[84,264],"duration":5.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.16,"geometry_index":26,"location":[13.390518,52.510385]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.389899,52.510348],"geometry_index":32,"admin_index":0,"weight":5.083,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":3.265,"bearings":[8,84,175,264,341],"out":3,"in":1,"entry":[true,false,true,true,false]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":8.857,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.543,"geometry_index":34,"location":[13.389619,52.510331]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":12.343,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":13.577,"geometry_index":36,"location":[13.389032,52.510295]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":2.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.206,"geometry_index":37,"location":[13.387977,52.510232]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":1.714,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.886,"geometry_index":38,"location":[13.387726,52.510217]},{"entry":[false,false,true,false],"in":0,"bearings":[84,144,265,322],"duration":2.236,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.451,"geometry_index":40,"location":[13.387583,52.510208]},{"entry":[false,true,true,true],"in":0,"bearings":[85,149,264,331],"duration":2.236,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.451,"geometry_index":41,"location":[13.387393,52.510197]},{"entry":[false,false,true,false],"in":0,"bearings":[84,149,265,332],"duration":0.693,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.754,"geometry_index":42,"location":[13.387205,52.510185]},{"entry":[false,true],"in":0,"bearings":[85,265],"duration":23.6,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":23.76,"geometry_index":43,"location":[13.387149,52.510182]},{"entry":[false,true],"in":0,"bearings":[84,265],"duration":2.743,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.017,"geometry_index":46,"location":[13.385293,52.510072]},{"entry":[false,true,false],"in":0,"bearings":[85,265,353],"duration":4.807,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.28,"geometry_index":47,"location":[13.385052,52.510058]},{"entry":[false,true],"in":0,"bearings":[85,265],"duration":2.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.206,"geometry_index":48,"location":[13.384644,52.510035]},{"entry":[false,false,true,false],"in":0,"bearings":[85,163,264,345],"duration":2.065,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.263,"geometry_index":50,"location":[13.384399,52.510021]},{"entry":[false,true,true,true],"in":0,"bearings":[84,162,264,344],"duration":2.789,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.56,"geometry_index":51,"location":[13.384216,52.510009]},{"entry":[false,false,true,false],"in":0,"bearings":[84,159,264,339],"duration":0.826,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.9,"geometry_index":52,"location":[13.383971,52.509993]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":4.455,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.7,"geometry_index":53,"location":[13.383896,52.509988]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":1.309,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.44,"geometry_index":54,"location":[13.38368,52.509974]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":22.745,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":25.02,"geometry_index":55,"location":[13.383556,52.509966]},{"entry":[false,true,true],"in":0,"bearings":[85,175,264],"duration":4.589,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.04,"geometry_index":59,"location":[13.381521,52.509845]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":2.455,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.7,"geometry_index":61,"location":[13.381112,52.509819]},{"entry":[false,true,true],"in":0,"bearings":[84,175,264],"duration":14.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.84,"geometry_index":62,"location":[13.380891,52.509805]},{"entry":[false,false,true,false],"in":0,"bearings":[84,175,262,353],"duration":3.166,"turn_duration":2.021,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.26,"geometry_index":64,"location":[13.379596,52.509724]},{"entry":[false,true,true,false],"in":0,"bearings":[82,175,261,353],"duration":5.035,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.516,"geometry_index":66,"location":[13.379487,52.509715]},{"entry":[false,true],"in":0,"bearings":[83,264],"duration":8.486,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.334,"geometry_index":69,"location":[13.378923,52.509667]},{"entry":[false,false,true],"in":0,"bearings":[84,253,271],"duration":6.49,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":8.128,"geometry_index":73,"location":[13.377957,52.509607]},{"entry":[false,true,true],"in":0,"bearings":[91,266,351],"duration":11.155,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":12.24,"geometry_index":77,"location":[13.377433,52.509613]},{"entry":[false,false,true,false],"in":0,"bearings":[86,170,273,353],"duration":3.284,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.6,"geometry_index":82,"location":[13.376932,52.509594]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.37679,52.509599],"geometry_index":83,"admin_index":0,"weight":4.329,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":2.594,"bearings":[93,175,270,353],"out":2,"in":0,"entry":[false,false,true,true]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.376571,52.509598],"geometry_index":84,"admin_index":0,"weight":3.84,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":2.15,"bearings":[90,177,268,358],"out":2,"in":0,"entry":[false,true,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[88,173,262,353],"duration":8.212,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":9,"geometry_index":86,"location":[13.376383,52.509594]},{"entry":[false,true],"in":0,"bearings":[82,263],"duration":19.636,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":21.6,"geometry_index":87,"location":[13.375656,52.50953]},{"entry":[false,false,true,false],"in":0,"bearings":[83,173,263,353],"duration":14.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.84,"geometry_index":90,"location":[13.373903,52.509392]},{"entry":[false,true],"in":0,"bearings":[83,263],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.94,"geometry_index":91,"location":[13.372617,52.509291]},{"entry":[false,true,true],"in":0,"bearings":[83,183,263],"duration":1.207,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.32,"geometry_index":92,"location":[13.37213,52.509255]},{"entry":[false,false,true,false],"in":0,"bearings":[83,172,263,353],"duration":1.34,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.467,"geometry_index":94,"location":[13.371996,52.509245]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.371849,52.509234],"geometry_index":95,"admin_index":0,"weight":3.76,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":2,"duration":1.608,"bearings":[25,83,170,264,351],"out":3,"in":1,"entry":[false,false,false,true,true]},{"entry":[false,true,true,false],"in":0,"bearings":[84,144,263,351],"duration":1.958,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.084,"geometry_index":96,"location":[13.371671,52.509222]},{"entry":[false,false,true,false],"in":0,"bearings":[83,172,263,353],"duration":5.545,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.954,"geometry_index":97,"location":[13.371466,52.509207]},{"entry":[false,true],"in":0,"bearings":[77,241],"duration":2.908,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.126,"geometry_index":101,"location":[13.370884,52.509143]},{"entry":[false,true,false],"in":0,"bearings":[60,232,327],"duration":1.086,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.155,"geometry_index":105,"location":[13.370614,52.50905]},{"entry":[false,true],"in":0,"bearings":[52,231],"duration":4.05,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.354,"geometry_index":106,"location":[13.370531,52.50901]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[51,231],"duration":2.25,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.419,"geometry_index":107,"location":[13.370218,52.508854]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[51,231],"duration":2.7,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.902,"geometry_index":108,"location":[13.370049,52.50877]},{"entry":[false,false,true,false],"in":0,"bearings":[51,128,228,308],"duration":1.672,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.774,"geometry_index":110,"location":[13.369842,52.508667]},{"entry":[false,false,true,true],"in":0,"bearings":[48,117,220,297],"duration":1.694,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.786,"geometry_index":111,"location":[13.369718,52.5086]},{"entry":[false,true,true,false],"in":0,"bearings":[40,117,209,287],"duration":20.057,"turn_duration":0.041,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":21.517,"geometry_index":113,"location":[13.369608,52.508521]},{"entry":[false,true,true,true],"in":0,"bearings":[19,108,190,289],"duration":2.09,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.211,"geometry_index":122,"location":[13.368887,52.507359]},{"entry":[false,true,true,false],"in":0,"bearings":[10,108,193,289],"duration":2.224,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.382,"geometry_index":123,"location":[13.368858,52.507257]},{"entry":[false,false,true,false],"in":0,"bearings":[13,108,195,289],"duration":25.762,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":27.685,"geometry_index":124,"location":[13.36883,52.507184]},{"entry":[false,false,true,false],"in":0,"bearings":[18,103,198,284],"duration":0.838,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.893,"geometry_index":128,"location":[13.368415,52.506386]},{"entry":[false,false,true,false],"in":0,"bearings":[18,103,197,277],"duration":2.788,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.977,"geometry_index":129,"location":[13.368403,52.506363]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.368361,52.506281],"geometry_index":130,"admin_index":0,"weight":3.629,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1.5,"duration":1.988,"bearings":[17,101,199,282],"out":2,"in":0,"entry":[false,false,true,true]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[19,200],"duration":1.906,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.049,"geometry_index":131,"location":[13.368307,52.506188]},{"entry":[false,true,true],"in":0,"bearings":[20,170,203],"duration":4.508,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.837,"geometry_index":132,"location":[13.368261,52.506109]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.368124,52.505898],"geometry_index":135,"admin_index":0,"weight":1.514,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2,"duration":3.409,"bearings":[21,196],"out":1,"in":0,"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.368087,52.505821],"geometry_index":136,"admin_index":0,"weight":3.512,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.879,"bearings":[16,89,196,270],"out":2,"in":0,"entry":[false,true,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[16,87,201,267],"duration":8.218,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":8.824,"geometry_index":137,"location":[13.368035,52.50571]},{"entry":[false,true],"in":0,"bearings":[26,209],"duration":6.048,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.502,"geometry_index":141,"location":[13.367697,52.505239]},{"entry":[false,true,true],"in":0,"bearings":[31,213,297],"duration":3.752,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.025,"geometry_index":144,"location":[13.367393,52.504914]},{"entry":[false,false,true,false],"in":0,"bearings":[33,125,213,306],"duration":1.447,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.548,"geometry_index":145,"location":[13.367187,52.504721]},{"entry":[false,true,true],"in":0,"bearings":[33,122,213],"duration":1.879,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.012,"geometry_index":146,"location":[13.367107,52.504646]},{"entry":[false,true,true],"in":0,"bearings":[33,214,301],"duration":4.184,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.489,"geometry_index":147,"location":[13.367001,52.504548]},{"entry":[false,true,true],"in":0,"bearings":[34,214,300],"duration":1.159,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.238,"geometry_index":149,"location":[13.366759,52.504332]},{"entry":[false,true,true],"in":0,"bearings":[34,212,298],"duration":3.907,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.18,"geometry_index":150,"location":[13.366695,52.504274]},{"entry":[false,true],"in":0,"bearings":[31,208],"duration":5.76,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.192,"geometry_index":152,"location":[13.366489,52.504067]},{"entry":[false,true,true],"in":0,"bearings":[21,45,205],"duration":3.231,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.463,"geometry_index":154,"location":[13.366246,52.503744]},{"entry":[false,true,true],"in":0,"bearings":[25,121,209],"duration":0.198,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.204,"geometry_index":155,"location":[13.366139,52.503605]},{"entry":[false,true,true],"in":0,"bearings":[29,208,303],"duration":2.294,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.444,"geometry_index":156,"location":[13.36613,52.503595]},{"entry":[false,true],"in":0,"bearings":[28,208],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.87,"geometry_index":157,"location":[13.366047,52.503501]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[28,208],"duration":1.137,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.222,"geometry_index":158,"location":[13.365913,52.503348]},{"entry":[false,true,true],"in":0,"bearings":[28,209,298],"duration":2.47,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.648,"geometry_index":159,"location":[13.365869,52.503298]},{"entry":[false,false,true,false],"in":0,"bearings":[29,106,208,286],"duration":2.673,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.852,"geometry_index":161,"location":[13.365776,52.503194]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.36568,52.503082],"geometry_index":162,"admin_index":0,"weight":2.514,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1,"duration":1.416,"bearings":[28,111,209,287],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,false,true,false],"in":0,"bearings":[29,101,211,282],"duration":0.477,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.505,"geometry_index":163,"location":[13.365614,52.503009]},{"entry":[false,true,true],"in":0,"bearings":[31,208,253],"duration":1.901,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.019,"geometry_index":164,"location":[13.365593,52.502988]},{"entry":[false,true],"in":0,"bearings":[28,208],"duration":6.73,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.235,"geometry_index":166,"location":[13.365511,52.502894]},{"entry":[false,true,false],"in":0,"bearings":[28,214,344],"duration":0.167,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.168,"geometry_index":167,"location":[13.365211,52.502551]},{"entry":[false,true,true],"in":0,"bearings":[34,213,315],"duration":0.332,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.337,"geometry_index":168,"location":[13.365201,52.502542]},{"entry":[false,true,true],"in":0,"bearings":[33,207,310],"duration":3.939,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.207,"geometry_index":169,"location":[13.365185,52.502527]},{"entry":[false,true,true],"in":0,"bearings":[27,118,208],"duration":0.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.673,"geometry_index":170,"location":[13.365015,52.502325]},{"entry":[false,true,true],"in":0,"bearings":[28,208,297],"duration":5.955,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.394,"geometry_index":171,"location":[13.364986,52.502292]},{"entry":[false,true,true],"in":0,"bearings":[28,208,297],"duration":4.39,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.711,"geometry_index":172,"location":[13.36472,52.501988]},{"entry":[false,true,true],"in":0,"bearings":[28,208,298],"duration":3.763,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.038,"geometry_index":173,"location":[13.364528,52.501767]},{"entry":[false,true,true],"in":0,"bearings":[28,120,208],"duration":3.763,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.038,"geometry_index":174,"location":[13.364365,52.50158]},{"entry":[false,true,true],"in":0,"bearings":[28,120,208],"duration":2.668,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.86,"geometry_index":175,"location":[13.3642,52.501392]},{"entry":[false,true,true],"in":0,"bearings":[28,208,296],"duration":0.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.673,"geometry_index":176,"location":[13.364084,52.501259]},{"entry":[false,true,true],"in":0,"bearings":[28,208,297],"duration":6.111,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.562,"geometry_index":177,"location":[13.364054,52.501225]},{"entry":[false,true],"in":0,"bearings":[28,208],"duration":2.626,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.673,"geometry_index":178,"location":[13.363783,52.500913]},{"entry":[false,false,true,false],"in":0,"bearings":[28,99,208,279],"duration":1.729,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.851,"geometry_index":179,"location":[13.363757,52.500883]},{"entry":[false,true,true,true],"in":0,"bearings":[28,101,207,286],"duration":1.724,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.833,"geometry_index":180,"location":[13.363681,52.500796]},{"entry":[false,false,true,false],"in":0,"bearings":[27,108,209,289],"duration":0.765,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.815,"geometry_index":181,"location":[13.36362,52.500723]},{"entry":[false,true],"in":0,"bearings":[29,208],"duration":18.105,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":17.313,"geometry_index":182,"location":[13.363594,52.500695]},{"entry":[false,true],"in":0,"bearings":[28,207],"duration":3.411,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.666,"geometry_index":183,"location":[13.363011,52.500017]},{"entry":[false,false,true,false],"in":0,"bearings":[27,110,203,290],"duration":2.298,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.444,"geometry_index":185,"location":[13.362894,52.499876]},{"entry":[false,false,true,true],"in":0,"bearings":[23,104,194,296],"duration":1.836,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.935,"geometry_index":187,"location":[13.362822,52.499773]},{"entry":[false,true,true,false],"in":0,"bearings":[14,101,194,296],"duration":3.093,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.317,"geometry_index":188,"location":[13.362785,52.49968]},{"entry":[false,false,true,false],"in":0,"bearings":[14,106,194,284],"duration":14.15,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.204,"geometry_index":190,"location":[13.362742,52.499574]},{"entry":[false,true,true],"in":0,"bearings":[14,104,194],"duration":1.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.382,"geometry_index":194,"location":[13.362549,52.499093]},{"entry":[false,true,true],"in":0,"bearings":[14,104,194],"duration":2.064,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.211,"geometry_index":195,"location":[13.362533,52.499053]},{"entry":[false,true,true],"in":0,"bearings":[14,194,284],"duration":1.035,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.106,"geometry_index":196,"location":[13.362503,52.498979]},{"entry":[false,true,true],"in":0,"bearings":[14,194,284],"duration":5.921,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.358,"geometry_index":197,"location":[13.362489,52.498944]},{"entry":[false,true,true],"in":0,"bearings":[14,194,287],"duration":0.778,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.829,"geometry_index":198,"location":[13.362407,52.49874]},{"entry":[false,true,true],"in":0,"bearings":[14,189,286],"duration":2.855,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.041,"geometry_index":199,"location":[13.362395,52.498711]},{"entry":[false,true,true],"in":0,"bearings":[9,106,191],"duration":16.208,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":17.415,"geometry_index":200,"location":[13.362368,52.498612]},{"entry":[false,false,true,false],"in":0,"bearings":[16,108,197,289],"duration":1.808,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.935,"geometry_index":204,"location":[13.362143,52.49806]},{"entry":[false,false,true,false],"in":0,"bearings":[17,107,199,279],"duration":2.322,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.488,"geometry_index":205,"location":[13.362112,52.497997]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.36207,52.497922],"geometry_index":206,"admin_index":0,"weight":7.305,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.021,"turn_weight":1.5,"duration":5.421,"bearings":[19,107,195,287],"out":2,"in":0,"entry":[false,false,true,true]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.361968,52.497691],"geometry_index":209,"admin_index":0,"weight":3.611,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.971,"bearings":[15,108,195,289],"out":2,"in":0,"entry":[false,true,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[15,108,195,289],"duration":0.662,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.72,"geometry_index":210,"location":[13.361922,52.497587]},{"entry":[false,true],"in":0,"bearings":[15,194],"duration":5.436,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.78,"geometry_index":211,"location":[13.361905,52.497548]},{"entry":[false,true,true],"in":0,"bearings":[14,195,283],"duration":7.862,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":8.64,"geometry_index":213,"location":[13.361829,52.497369]},{"entry":[false,true],"in":0,"bearings":[15,195],"duration":14.727,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.2,"geometry_index":215,"location":[13.361647,52.496952]},{"entry":[false,false,true],"in":0,"bearings":[15,177,208],"duration":3.102,"turn_weight":1.5,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.894,"geometry_index":216,"location":[13.361307,52.496175]},{"entry":[false,true],"in":0,"bearings":[28,194],"duration":2.514,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.566,"geometry_index":218,"location":[13.361183,52.496033]},{"entry":[false,false,true,false],"in":0,"bearings":[14,103,193,284],"duration":2.248,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.451,"geometry_index":219,"location":[13.361171,52.496003]},{"entry":[false,true,true],"in":0,"bearings":[13,187,277],"duration":1.468,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.584,"geometry_index":220,"location":[13.361129,52.49589]},{"entry":[false,false,true,false],"in":0,"bearings":[7,96,180,275],"duration":0.318,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.317,"geometry_index":221,"location":[13.361111,52.495798]},{"entry":[false,true],"in":0,"bearings":[0,169],"duration":2.304,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.534,"geometry_index":222,"location":[13.361111,52.49578]},{"entry":[true,true,false],"in":2,"bearings":[25,183,349],"duration":14.745,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.2,"geometry_index":223,"location":[13.361157,52.495636]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":0.818,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.9,"geometry_index":226,"location":[13.361094,52.494827]},{"entry":[false,false,true],"in":0,"bearings":[3,166,199],"duration":5.195,"turn_weight":1.5,"turn_duration":0.02,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":7.193,"geometry_index":227,"location":[13.36109,52.494782]},{"entry":[false,true],"in":0,"bearings":[17,190],"duration":0.45,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.495,"geometry_index":231,"location":[13.360987,52.494594]},{"entry":[false,true],"in":0,"bearings":[10,189],"duration":2.9,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.99,"geometry_index":232,"location":[13.360981,52.494573]},{"entry":[false,false,true,false],"in":0,"bearings":[9,97,187,277],"duration":1.144,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.237,"geometry_index":233,"location":[13.360972,52.494537]},{"entry":[false,false,true,false],"in":0,"bearings":[7,99,184,277],"duration":1.597,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.732,"geometry_index":234,"location":[13.360963,52.494492]},{"entry":[false,false,true,true],"in":0,"bearings":[4,99,183,277],"duration":3.998,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.877,"geometry_index":235,"location":[13.360956,52.494433]},{"entry":[false,true,true,false],"in":0,"bearings":[3,99,181,277],"duration":1.115,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.705,"geometry_index":236,"location":[13.360941,52.494248]},{"entry":[false,false,true,false],"in":0,"bearings":[1,99,180,277],"duration":0.802,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.861,"geometry_index":237,"location":[13.36094,52.494186]},{"entry":[false,false,true,false],"in":0,"bearings":[0,97,179,277],"duration":0.489,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.517,"geometry_index":238,"location":[13.36094,52.494139]},{"entry":[true,false],"in":1,"bearings":[180,359],"duration":0.313,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.344,"geometry_index":239,"location":[13.360941,52.494115]},{"entry":[false,true],"in":0,"bearings":[0,179],"duration":7.357,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":8.092,"geometry_index":240,"location":[13.360941,52.494101]},{"entry":[true,false],"in":1,"bearings":[161,356],"duration":0.36,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.396,"geometry_index":244,"location":[13.360967,52.493683]},{"entry":[true,true,false],"in":2,"bearings":[20,184,341],"duration":1.078,"turn_duration":0.032,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.15,"geometry_index":245,"location":[13.36098,52.49366]},{"entry":[false,true],"in":0,"bearings":[4,183],"duration":6.852,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.537,"geometry_index":247,"location":[13.360971,52.493582]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":3.716,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.181,"geometry_index":248,"location":[13.360923,52.493054]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":1.394,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.568,"geometry_index":249,"location":[13.360897,52.492768]},{"entry":[false,true,true],"in":0,"bearings":[3,183,273],"duration":8.557,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.619,"geometry_index":250,"location":[13.360886,52.492658]},{"entry":[false,true,true],"in":0,"bearings":[3,183,273],"duration":7.083,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.96,"geometry_index":251,"location":[13.360829,52.49198]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":1.862,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.095,"geometry_index":252,"location":[13.360785,52.491465]},{"entry":[false,true,true],"in":0,"bearings":[3,93,184],"duration":2.193,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.459,"geometry_index":253,"location":[13.360775,52.491332]},{"entry":[false,true],"in":0,"bearings":[4,192],"duration":4.243,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.773,"geometry_index":255,"location":[13.360759,52.491183]},{"entry":[false,false,true],"in":0,"bearings":[19,187,221],"duration":12.332,"turn_weight":1.5,"turn_duration":0.032,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.338,"geometry_index":261,"location":[13.360633,52.490899]},{"entry":[false,true],"in":0,"bearings":[29,210],"duration":3.2,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.35,"geometry_index":265,"location":[13.360295,52.490606]},{"entry":[false,false,true,false],"in":0,"bearings":[30,108,209,287],"duration":2.421,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.7,"geometry_index":266,"location":[13.360265,52.490574]},{"entry":[false,false,true,true],"in":0,"bearings":[29,115,209,289],"duration":4.174,"turn_weight":1.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":6.173,"geometry_index":267,"location":[13.360206,52.490509]},{"entry":[false,true,true,false],"in":0,"bearings":[29,117,210,289],"duration":0.487,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.04,"geometry_index":268,"location":[13.360099,52.490391]},{"entry":[false,true],"in":0,"bearings":[30,209],"duration":1.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.35,"geometry_index":269,"location":[13.360071,52.490361]},{"entry":[false,false,true,false],"in":0,"bearings":[29,113,209,291],"duration":0.381,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.405,"geometry_index":270,"location":[13.359995,52.490279]},{"entry":[false,true],"in":0,"bearings":[29,209],"duration":13.68,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.39,"geometry_index":271,"location":[13.359976,52.490258]},{"entry":[false,true,true],"in":0,"bearings":[29,209,298],"duration":5.061,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.67,"geometry_index":272,"location":[13.35916,52.48936]},{"entry":[false,true],"in":0,"bearings":[29,209],"duration":2.48,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.54,"geometry_index":273,"location":[13.358857,52.489027]},{"entry":[false,false,true,false],"in":0,"bearings":[29,107,208,287],"duration":0.501,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.54,"geometry_index":274,"location":[13.35883,52.488997]},{"entry":[false,false,true],"in":0,"bearings":[28,110,209],"duration":0.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.675,"geometry_index":275,"location":[13.358801,52.488964]},{"entry":[false,true,true],"in":0,"bearings":[29,113,209],"duration":0.89,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.978,"geometry_index":276,"location":[13.358766,52.488926]},{"entry":[false,true],"in":0,"bearings":[29,209],"duration":4.345,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.888,"geometry_index":277,"location":[13.358715,52.488869]},{"entry":[false,true,true],"in":0,"bearings":[29,209,294],"duration":1.138,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.257,"geometry_index":279,"location":[13.358461,52.488592]},{"entry":[false,false,true,false],"in":0,"bearings":[29,118,208,298],"duration":0.766,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.838,"geometry_index":282,"location":[13.358395,52.488519]},{"entry":[false,false,true,false],"in":0,"bearings":[28,120,208,298],"duration":0.255,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.279,"geometry_index":283,"location":[13.358355,52.488474]},{"entry":[false,true],"in":0,"bearings":[28,209],"duration":6.579,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.402,"geometry_index":284,"location":[13.35834,52.488457]},{"entry":[false,false,true,false],"in":0,"bearings":[29,120,210,301],"duration":9.566,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":10.753,"geometry_index":285,"location":[13.357961,52.488038]},{"entry":[false,true,true],"in":0,"bearings":[27,120,209],"duration":10.357,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":11.644,"geometry_index":287,"location":[13.357429,52.487429]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.357102,52.487063],"geometry_index":288,"admin_index":0,"weight":1.266,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2,"duration":3.125,"bearings":[29,210],"out":1,"in":0,"entry":[false,true]},{"entry":[false,false,true,false],"in":0,"bearings":[30,120,210,298],"duration":2.932,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.291,"geometry_index":289,"location":[13.357067,52.487026]},{"entry":[false,true,true],"in":0,"bearings":[30,121,210],"duration":2.298,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.327,"geometry_index":290,"location":[13.356971,52.486925]},{"entry":[false,false,true,false],"in":0,"bearings":[30,118,210,300],"duration":0.334,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.368,"geometry_index":291,"location":[13.356867,52.486815]},{"entry":[false,true],"in":0,"bearings":[30,200],"duration":13.909,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.648,"geometry_index":292,"location":[13.356849,52.486796]},{"entry":[false,true],"in":0,"bearings":[47,231],"duration":2.818,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.92,"geometry_index":299,"location":[13.356191,52.486163]},{"entry":[false,false,true,false],"in":0,"bearings":[51,141,231,320],"duration":1.971,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.209,"geometry_index":300,"location":[13.356139,52.486137]},{"entry":[false,true,true,true],"in":0,"bearings":[51,144,230,324],"duration":2.037,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.268,"geometry_index":301,"location":[13.356004,52.48607]},{"entry":[false,false,true,false],"in":0,"bearings":[50,141,232,322],"duration":0.583,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.648,"geometry_index":302,"location":[13.355845,52.48599]},{"entry":[false,true],"in":0,"bearings":[52,231],"duration":5.04,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.67,"geometry_index":303,"location":[13.355803,52.48597]},{"entry":[false,true,true],"in":0,"bearings":[51,232,320],"duration":6.487,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.29,"geometry_index":304,"location":[13.3554,52.485774]},{"entry":[false,true,true],"in":0,"bearings":[52,232,322],"duration":2.54,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.85,"geometry_index":306,"location":[13.354882,52.485526]},{"entry":[false,false,true,false],"in":0,"bearings":[52,144,233,322],"duration":6.808,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":7.65,"geometry_index":308,"location":[13.354661,52.485421]},{"entry":[false,true,true],"in":0,"bearings":[53,232,325],"duration":3.831,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.288,"geometry_index":309,"location":[13.354067,52.485145]},{"entry":[false,true,true],"in":0,"bearings":[52,233,320],"duration":3.608,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.05,"geometry_index":310,"location":[13.353862,52.485049]},{"entry":[false,true,true],"in":0,"bearings":[53,233,321],"duration":9.113,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.244,"geometry_index":311,"location":[13.353661,52.484957]},{"entry":[false,true],"in":0,"bearings":[53,232],"duration":2.847,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.953,"geometry_index":313,"location":[13.353158,52.484726]},{"entry":[false,false,true,false],"in":0,"bearings":[52,141,231,321],"duration":1.925,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.144,"geometry_index":314,"location":[13.353108,52.484702]},{"entry":[false,false,true,true],"in":0,"bearings":[51,135,231,322],"duration":3.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.6,"geometry_index":315,"location":[13.353003,52.484651]},{"entry":[false,true,true],"in":0,"bearings":[51,139,232],"duration":0.847,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.945,"geometry_index":316,"location":[13.352731,52.484518]},{"entry":[false,false,true,false],"in":0,"bearings":[52,139,232,321],"duration":0.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.405,"geometry_index":317,"location":[13.352649,52.484479]},{"entry":[false,true],"in":0,"bearings":[52,231],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.075,"geometry_index":318,"location":[13.352618,52.484464]},{"entry":[false,true,true],"in":0,"bearings":[51,231,320],"duration":4.447,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.995,"geometry_index":319,"location":[13.352098,52.48421]},{"entry":[false,true,true],"in":0,"bearings":[51,233,321],"duration":1.568,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.755,"geometry_index":320,"location":[13.351672,52.484001]},{"entry":[false,false,false,true,false],"in":0,"bearings":[53,141,203,231,320],"duration":8.901,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":9.99,"geometry_index":321,"location":[13.351524,52.483932]},{"entry":[false,true],"in":0,"bearings":[53,225],"duration":6.96,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.83,"geometry_index":323,"location":[13.350671,52.483524]},{"entry":[false,true,true],"in":0,"bearings":[41,220,315],"duration":0.499,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.54,"geometry_index":326,"location":[13.350081,52.483143]},{"entry":[false,true],"in":0,"bearings":[40,220],"duration":0.48,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.54,"geometry_index":327,"location":[13.350044,52.483116]},{"entry":[false,false,true,false],"in":0,"bearings":[40,113,220,307],"duration":1.327,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.485,"geometry_index":328,"location":[13.350007,52.483089]},{"entry":[false,false,true],"in":0,"bearings":[40,127,219],"duration":5.167,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.805,"geometry_index":329,"location":[13.349903,52.483014]},{"entry":[false,true,true],"in":0,"bearings":[42,142,220],"duration":2.421,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.7,"geometry_index":332,"location":[13.349495,52.482723]},{"entry":[false,false,true],"in":0,"bearings":[40,124,222],"duration":7.587,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.526,"geometry_index":333,"location":[13.349319,52.482596]},{"entry":[false,true,true],"in":0,"bearings":[43,221,313],"duration":0.78,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.853,"geometry_index":335,"location":[13.348919,52.48233]},{"entry":[false,true,true],"in":0,"bearings":[41,221,313],"duration":8.154,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.166,"geometry_index":336,"location":[13.34888,52.482303]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.348477,52.482001],"geometry_index":340,"admin_index":0,"weight":0.853,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2,"duration":2.758,"bearings":[37,219],"out":1,"in":0,"entry":[false,true]},{"entry":[false,false,true,false],"in":0,"bearings":[39,124,217,306],"duration":0.779,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.853,"geometry_index":341,"location":[13.348438,52.481972]},{"entry":[false,false,true,false],"in":0,"bearings":[37,125,216,306],"duration":1.158,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.279,"geometry_index":342,"location":[13.348399,52.48194]},{"entry":[false,false,true,true],"in":0,"bearings":[36,127,216,307],"duration":1.971,"turn_weight":2,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.194,"geometry_index":343,"location":[13.348343,52.481893]},{"entry":[false,true,true,false],"in":0,"bearings":[36,130,215,310],"duration":0.808,"turn_weight":2,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.886,"geometry_index":344,"location":[13.348226,52.481796]},{"entry":[false,false,true,false],"in":0,"bearings":[35,128,215,308],"duration":0.457,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.506,"geometry_index":345,"location":[13.348169,52.481747]},{"entry":[false,false,true,false],"in":0,"bearings":[35,128,217,308],"duration":0.233,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.253,"geometry_index":346,"location":[13.348133,52.481716]},{"entry":[false,true],"in":0,"bearings":[37,217],"duration":18.562,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":21.383,"geometry_index":347,"location":[13.348111,52.481698]},{"entry":[false,true],"in":0,"bearings":[39,219],"duration":0.787,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.386,"geometry_index":349,"location":[13.346604,52.480537]},{"entry":[false,true,true],"in":0,"bearings":[39,219,308],"duration":0.826,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.42,"geometry_index":350,"location":[13.346543,52.480491]},{"entry":[false,true],"in":0,"bearings":[39,219],"duration":20.618,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":24.211,"geometry_index":351,"location":[13.346492,52.480453]},{"mapbox_streets_v8":{"class":"secondary"},"location":[13.345327,52.479574],"geometry_index":355,"admin_index":0,"weight":1.253,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":0.5,"duration":2.662,"bearings":[39,220,358],"out":1,"in":0,"entry":[false,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[40,130,221,308],"duration":1.153,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.317,"geometry_index":356,"location":[13.345291,52.479548]},{"entry":[false,false,true,false],"in":0,"bearings":[41,130,221,308],"duration":2.298,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.635,"geometry_index":357,"location":[13.345224,52.479501]},{"entry":[false,false,true,true],"in":0,"bearings":[41,189,220,346],"duration":3.619,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.64,"geometry_index":358,"location":[13.34509,52.479407]},{"entry":[false,false,true],"in":1,"bearings":[10,40,222],"duration":2.168,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.234,"geometry_index":359,"location":[13.344854,52.479236]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[42,222],"duration":15.36,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":18.164,"geometry_index":361,"location":[13.344764,52.479175]},{"bearings":[42,122,219,303],"entry":[false,false,true,false],"in":0,"turn_weight":1,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":363,"location":[13.34413,52.478749]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Wexstraße"}],"type":"turn","modifier":"right","text":"Wexstraße"},"distanceAlongGeometry":5757.702},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Wexstraße"}],"type":"turn","modifier":"right","text":"Wexstraße"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Leipziger Straße/B 1.","modifier":"right","bearing_after":265,"bearing_before":175,"location":[13.396713,52.510961]},"speedLimitSign":"vienna","name":"Leipziger Straße","weight_typical":1087.88,"duration_typical":975.045,"duration":975.045,"distance":5757.702,"driving_side":"right","weight":1087.88,"mode":"driving","ref":"B 1","geometry":"an_dcBqmtpXZfNpAvk@XdKbCffALfHNbIFpCb@`Rb@fPdB`l@r@nJ~@fGpAjFpAlFx@xFPtB|CfINvGFlCzAbn@h@xTXfLLvF@FD`CBfATbJXnLF~BLbFx@p\\|B|`A\\tNHtCFfCTzJVvJDnBfB`w@x@~\\x@|\\Z`Nl@nXRfJF`CVlJ^hNHtCZnLNvFRpH`Ar`@PrHhCjiAj@vTFxBZxLh@~TvB|y@PrE?Dp@~MJdC`@`Ox@xZX`Mb@`Q?LC|U?nBAjBE|ACrB@|Af@dS@hAAfAIzG@tL@dEDpD~Bll@`GheBHnBFvBhEjoAfAl]DbBLfDTdHVbJ\\xKNzGj@~LZtEf@xE|@bFr@pC^hAf@zAnAdDvHpRfDpIjCnG`AlCdCvFpAxBjA`BhBtBpBbBzAdAxBjAhAl@bf@fUhFfClD`BzCtAjEx@pCv@lA`@|DhAbg@xTj@Vl@VbDrAxDjB|CzA|E`DvAv@nBv@xChA|EfBbElBxHvElHlF`CnBj@d@|H~G~GxG`KzKtC~CbErEdIhJhBxBrB~BlIpInAhAdGrF~JpFtGtERPzDdDpHjGbBvAtC`Cx@v@~E~DpCbCh@h@~@v@zBjBlTvQPR\\^rKrI`Ax@~QrOxL~JtJdIvJhIhGfFbAz@nR|Oz@r@lDvCpCxBv@r@ji@lc@nEjDhA|@tA`AvBlAxDhAv@VzC|@hA\\lF~AxC|@nNdEnA^rCz@dAZvKbDx@VdEt@bEt@fKvC~LjEbAf@|B|@tCrAlC|@lDlApC~@nEzAlA`@hA\\zGxBhFdBvQdGpo@fTjChCnClBz@V`FrAvDb@b@?~G{A`@@ho@xBd@@xAF`BbCbBZlARbBXh@JfAPxAPtBLpJ\\zB@|A?n@AZ?xJEr@AjIChAg@l@Yp@FhBH~_@~AzPr@zETji@pBd_@vAhGR~DRhBJ~@FrAPvA\\pClAfDhBPJfBjFdDvCpCdChDxC~@z@`CtBjFtEz@v@bDvCh@d@bw@~q@xS|Qz@t@`Ax@jAdApBdBbL`KdCxBxArA^XVTxAnA`@\\dYtVrH~Gl[fWzUlShAdAhE~DzEnEd@b@zEfCnFfCbEnD|DbE|BhD`DtFbC~Fr@fBdClG~C|Hf@rAfKdXhKrXdBvEfD|Ih@zAfPbd@~DxKvDpKlHlS~C~In@bBdBpEhG~OlAbD\\|@zNn_@`LrYhCfHbN~]jIhU`@fA|NlXxEdHt@hAt@hAtCnEdHjKfG`KV`@|F~IZd@vNxVt@lA|AlC|GjK`BtB|BtCx@lA~@lA|AnB`EhF`BpB|@fAb@j@hJdMf|@~nAzAxBjAdBzf@vs@rDnFBDhHjKr@fA|AdCzDjGtIvM^l@xAdCfXrd@j@~@|CpE"},{"voiceInstructions":[{"ssmlAnnouncement":"In 700 feet, Take the A 100 ramp on the left.","announcement":"In 700 feet, Take the A 100 ramp on the left.","distanceAlongGeometry":188.347},{"ssmlAnnouncement":"Take the A 100 ramp on the left toward Hamburg, Magdeburg.","announcement":"Take the A 100 ramp on the left toward Hamburg, Magdeburg.","distanceAlongGeometry":116.667}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.344025,52.47867],"geometry_index":364,"admin_index":0,"weight":8.999,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.613,"turn_weight":7,"duration":2.351,"bearings":[39,115,214,287,329],"out":3,"in":0,"entry":[false,false,true,true,false]},{"entry":[false,true],"in":0,"bearings":[107,285],"duration":12.064,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":14.848,"geometry_index":365,"location":[13.343822,52.478707]},{"entry":[false,true],"in":0,"bearings":[101,281],"duration":2.614,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.498,"geometry_index":369,"location":[13.342426,52.478892]},{"bearings":[101,278],"entry":[false,true],"in":0,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":370,"location":[13.342129,52.478928]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hamburg"},{"type":"text","text":"/"},{"type":"text","text":"Magdeburg"}],"type":"turn","modifier":"slight left","text":"Hamburg / Magdeburg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"100","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 100"}],"type":"turn","modifier":"slight left","text":"A 100"},"distanceAlongGeometry":205.014}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Wexstraße.","modifier":"right","bearing_after":287,"bearing_before":219,"location":[13.344025,52.47867]},"speedLimitSign":"vienna","name":"Wexstraße","weight_typical":35.213,"duration_typical":23.026,"duration":23.026,"distance":205.014,"driving_side":"right","weight":35.213,"mode":"driving","geometry":"{k`bcBqpmmXiAtK_ArJ{@rLcBfWqCvd@gApQyC|y@M~F"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":5137.74},{"ssmlAnnouncement":"In 1 mile, Take exit 10.","announcement":"In 1 mile, Take exit 10.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 10.","announcement":"In a half mile, Take exit 10.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 10 onto A 115 toward Magdeburg, Leipzig.","announcement":"Take exit 10 onto A 115 toward Magdeburg, Leipzig.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[97,263,275],"duration":15.82,"turn_weight":2.25,"turn_duration":0.052,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":20.383,"geometry_index":372,"location":[13.341058,52.479012]},{"entry":[false,true],"in":0,"bearings":[81,261],"duration":6.336,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":7.286,"geometry_index":377,"location":[13.337867,52.478735]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.336618,52.478529],"geometry_index":380,"admin_index":0,"weight":29.806,"is_urban":true,"turn_weight":19,"duration":9.41,"bearings":[71,82,260],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,257],"duration":5.919,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":6.954,"geometry_index":383,"location":[13.334387,52.478258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,261],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.586,"geometry_index":384,"location":[13.332991,52.478068]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":6.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.149,"geometry_index":385,"location":[13.33255,52.478026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":8.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.87,"geometry_index":388,"location":[13.330633,52.477939]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":24.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":29.089,"geometry_index":389,"location":[13.328152,52.477926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":0.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.927,"geometry_index":396,"location":[13.320758,52.478021]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,279],"duration":1.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.539,"geometry_index":397,"location":[13.320524,52.478036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,281],"duration":2.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.011,"geometry_index":398,"location":[13.3201,52.478075]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.319287,52.478169],"geometry_index":399,"admin_index":0,"weight":3.549,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":3.094,"bearings":[101,284,310],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,286],"duration":4.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.936,"geometry_index":401,"location":[13.318339,52.478314]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,293],"duration":10.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":12.097,"geometry_index":403,"location":[13.317036,52.478571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,304],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.707,"geometry_index":407,"location":[13.314114,52.479522]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[97,124,307],"duration":6.632,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":7.618,"geometry_index":408,"location":[13.313939,52.479594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,313],"duration":7.968,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.163,"geometry_index":410,"location":[13.312353,52.480367]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,317],"duration":3.792,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.361,"geometry_index":414,"location":[13.31068,52.481453]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[13.309856,52.481951],"geometry_index":416,"admin_index":0,"weight":4.968,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":4.361,"bearings":[132,301,329],"out":1,"in":0,"turn_duration":0.041,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,296],"duration":8.505,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.781,"geometry_index":419,"location":[13.308612,52.482368]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,321],"duration":8.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.66,"geometry_index":426,"location":[13.306314,52.483303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.304617,52.484653],"geometry_index":429,"admin_index":0,"weight":8.227,"is_urban":true,"turn_weight":1,"duration":6.305,"bearings":[134,143,323],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[143,320],"duration":9.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":10.736,"geometry_index":430,"location":[13.303714,52.485395]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.302256,52.486448],"geometry_index":431,"admin_index":0,"weight":12.042,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":10.725,"bearings":[140,317,338],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,320],"duration":22.128,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":24.894,"geometry_index":434,"location":[13.300141,52.487986]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[115,136,315],"duration":4.581,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":5.244,"geometry_index":438,"location":[13.295719,52.491127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,313],"duration":7.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.694,"geometry_index":439,"location":[13.294723,52.49173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,314],"duration":7.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.748,"geometry_index":440,"location":[13.292993,52.492717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.291231,52.493698],"geometry_index":442,"admin_index":0,"weight":28.35,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":25.23,"bearings":[129,303,334],"out":1,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"tunnel_name":"Tunnel Rathenauplatz","entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[116,304],"duration":11.791,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":13.265,"geometry_index":457,"location":[13.286133,52.494565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,334],"duration":9.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":11.122,"geometry_index":464,"location":[13.284089,52.496117]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[113,144,323],"duration":11.024,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":12.379,"geometry_index":471,"location":[13.282766,52.497554]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":2.513,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.827,"geometry_index":475,"location":[13.281502,52.498787]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.281251,52.499086],"geometry_index":476,"admin_index":0,"weight":3.498,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":3.128,"bearings":[1,153,332],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[152,333],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":477,"location":[13.280862,52.49954]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Magdeburg"},{"type":"text","text":"/"},{"type":"text","text":"Leipzig"}],"type":"off ramp","modifier":"right","text":"Magdeburg / Leipzig"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"10"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"off ramp","modifier":"right","text":"Exit 10 A 115"},"distanceAlongGeometry":5157.74},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Magdeburg"},{"type":"text","text":"/"},{"type":"text","text":"Leipzig"}],"type":"off ramp","modifier":"right","text":"Magdeburg / Leipzig"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"10"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"off ramp","modifier":"right","text":"Exit 10 A 115"},"distanceAlongGeometry":1609.344}],"destinations":"A 100: Hamburg, Magdeburg, Leipzig, Flughafen Tegel, Wilmersdorf","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 100 ramp on the left toward Hamburg/Magdeburg/Leipzig/Flughafen Tegel.","modifier":"slight left","bearing_after":263,"bearing_before":277,"location":[13.341058,52.479012]},"speedLimitSign":"vienna","name":"","weight_typical":336.877,"duration_typical":275.257,"duration":275.257,"distance":5157.74,"driving_side":"right","weight":336.877,"mode":"driving","ref":"A 100","geometry":"gaabcBcwgmXt@`UlAb_@lEbaAfDh~@n@xNVhGzA~XfHvj@pCdj@rC|e@vFhx@zJfvArApZbBf`@z@x\\Lvw@X`zCOv_FGve@[`gAMrb@k@dh@SdQ{@p^]rMmAnY{Dxq@_BfSaE~e@kF`i@uGjf@aMzt@mGr\\cI~]yYbcAoC|IyVbs@oW~m@yLfWyU|`@aSj]eJ~NoSx^sItRmG|U{FfWwHp]wInc@cKpa@wEnPCHsGhR{GzPeJpPgRxXgWb]{g@bq@km@lw@y`AbzAuHzMse@|s@yn@j_AqgBdnC}a@zn@s]jj@eY|h@ud@f}@u|@bkBsi@tgAuQld@yF|RsFrSeFl[sApNcAlNq@dNc@fNm@ra@IvQ_@vRk@`TsApVsBlSkD~TkG~ZoD|L}F|P}Nf[iJhN_KbMkRdS}W~PmPtLiRxLyKrJiKfJ_IlIoNhRmApA}U`[mWdXyNhM{LlJuQtNk[hWcK~H"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4664.958},{"ssmlAnnouncement":"In 1 mile, Keep left to take E 51.","announcement":"In 1 mile, Keep left to take E 51.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take E 51.","announcement":"In a half mile, Keep left to take E 51.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take E 51.","announcement":"Keep left to take E 51.","distanceAlongGeometry":177.778}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[13.280702,52.499734],"geometry_index":478,"admin_index":0,"weight":2.471,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.227,"bearings":[153,334,355],"out":2,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":35.245,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":38.77,"geometry_index":480,"location":[13.280652,52.500052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":0.523,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":0.575,"geometry_index":513,"location":[13.275145,52.500672]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.617,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":1.779,"geometry_index":514,"location":[13.275068,52.500611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":4.8,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":5.28,"geometry_index":515,"location":[13.274789,52.500391]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.273958,52.499735],"geometry_index":516,"admin_index":0,"weight":7.271,"is_urban":true,"turn_weight":6,"duration":1.163,"bearings":[24,38,219],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":5.511,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":6.062,"geometry_index":517,"location":[13.273716,52.499551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":1.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.858,"geometry_index":518,"location":[13.272568,52.498678]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.412,"geometry_index":519,"location":[13.27221,52.498421]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":21.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":22.71,"geometry_index":520,"location":[13.271727,52.498043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":27.099,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.776,"geometry_index":524,"location":[13.266892,52.49426]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.435,"geometry_index":526,"location":[13.260745,52.489376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":3.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.244,"geometry_index":527,"location":[13.260648,52.489299]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.8,"geometry_index":528,"location":[13.259901,52.488715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":8.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.643,"geometry_index":530,"location":[13.258782,52.487829]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":0.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.951,"geometry_index":531,"location":[13.256725,52.4862]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":63.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":58.442,"geometry_index":532,"location":[13.256488,52.486012]},{"bearings":[36,216],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":541,"location":[13.241435,52.473191]}],"exits":"10","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"E 51"},"distanceAlongGeometry":4684.958},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"E 51"},"distanceAlongGeometry":1609.344}],"destinations":"A 115: Magdeburg, Leipzig, Potsdam","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 10 onto A 115 toward Magdeburg/Leipzig/Potsdam.","modifier":"slight right","bearing_after":355,"bearing_before":333,"location":[13.280702,52.499734]},"speedLimitSign":"vienna","name":"AVUS","weight_typical":200.503,"duration_typical":192.719,"duration":192.719,"distance":4684.958,"driving_side":"right","weight":200.503,"mode":"driving","geometry":"kpiccB{zqiXoHd@kI|@eLvA_Iv@mHZiMf@kFv@gIpAiF|BiEvBiDzBiErDsE`IeEnHuCpF{BxF{ClJmCxJyBhKcBfKiA~Jy@rIw@vJYnKF~Mp@pPbAfKhAtHfArHhBbHhCtHpHrOhJhNrY`_@v^nf@xBxCvLlP~g@|r@nJbNpu@vfA`OjUrVd]~v@bhA`q@|_A|xAnpBlg@rq@~nCfsDf`D|jExC`Enc@tm@z_@ph@nUj[xdBp_CvJxMlcChgDlfBl`CdB~Bre@jl@j`@ld@tp@dw@zyHhbJvtAb`B|f@rn@ry@|dAnh@ts@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 138 miles.","announcement":"Continue for 138 miles.","distanceAlongGeometry":221543.344},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 24.","announcement":"In 1 mile, Keep right to take exit 24.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 24.","announcement":"In a half mile, Keep right to take exit 24.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 24 onto A 4 toward Erfurt. Then Keep right to take A 4.","announcement":"Keep right to take exit 24 onto A 4 toward Erfurt. Then Keep right to take A 4.","distanceAlongGeometry":261.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.239473,52.471589],"geometry_index":543,"admin_index":0,"weight":9.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.77,"bearings":[38,218,231],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.359,"geometry_index":545,"location":[13.236839,52.469504]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":9.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.478,"geometry_index":546,"location":[13.236472,52.469212]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[23,40,217],"duration":6.266,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":5.464,"geometry_index":548,"location":[13.234167,52.467424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":21.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.125,"geometry_index":549,"location":[13.23266,52.466202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.637,"geometry_index":551,"location":[13.227304,52.46197]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":38.78,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":34.902,"geometry_index":552,"location":[13.226872,52.461631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.236,"geometry_index":557,"location":[13.217086,52.453888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":64.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":60.11,"geometry_index":558,"location":[13.216746,52.453624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.978,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.929,"geometry_index":565,"location":[13.20084,52.441029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":20.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.814,"geometry_index":566,"location":[13.200614,52.440848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":3.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.148,"geometry_index":569,"location":[13.195825,52.437057]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[37,218,231],"duration":7.462,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.268,"geometry_index":571,"location":[13.195095,52.436477]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":22.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.175,"geometry_index":574,"location":[13.193555,52.435203]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[8,189,358],"duration":28.492,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.773,"geometry_index":588,"location":[13.191681,52.430557]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,320],"duration":10.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.662,"geometry_index":606,"location":[13.192642,52.425161]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.194913,52.423497],"geometry_index":614,"admin_index":0,"weight":33.11,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":33.133,"bearings":[150,169,334],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.196603,52.417323],"geometry_index":624,"admin_index":0,"weight":3.756,"is_urban":false,"turn_weight":1,"duration":2.762,"bearings":[173,344,354],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":1.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.778,"geometry_index":625,"location":[13.196719,52.416773]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,353],"duration":0.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.622,"geometry_index":626,"location":[13.196794,52.416416]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":3.911,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.911,"geometry_index":627,"location":[13.196825,52.416288]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[172,339,353],"duration":0.788,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.769,"geometry_index":628,"location":[13.196985,52.415502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":5.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.42,"geometry_index":629,"location":[13.197022,52.415335]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[173,229,353],"duration":0.631,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.624,"geometry_index":630,"location":[13.197275,52.414138]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,353],"duration":0.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.795,"geometry_index":631,"location":[13.1973,52.41402]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[177,306,356],"duration":21.109,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.102,"geometry_index":632,"location":[13.19732,52.413864]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":28.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.192,"geometry_index":646,"location":[13.194998,52.409231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":6.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.076,"geometry_index":648,"location":[13.188674,52.403658]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":1.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.36,"geometry_index":649,"location":[13.187283,52.402417]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.844,"geometry_index":650,"location":[13.186991,52.402163]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.186825,52.402017],"geometry_index":651,"admin_index":1,"weight":2.954,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.116,"bearings":[35,215,229],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":3.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.342,"geometry_index":652,"location":[13.186189,52.401455]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.185465,52.400816],"geometry_index":653,"admin_index":1,"weight":6.201,"is_urban":false,"turn_weight":1,"duration":5.482,"bearings":[18,35,215],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":3.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.625,"geometry_index":654,"location":[13.184236,52.399742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,216],"duration":80.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":76.434,"geometry_index":655,"location":[13.183376,52.398952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,204],"duration":6.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.489,"geometry_index":695,"location":[13.154721,52.387746]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.153576,52.386066],"geometry_index":699,"admin_index":1,"weight":14.82,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.621,"bearings":[22,202,220],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[6,22,203],"duration":1.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":1.304,"geometry_index":701,"location":[13.15109,52.382266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,199],"duration":5.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.583,"geometry_index":702,"location":[13.150868,52.381942]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.142,"geometry_index":707,"location":[13.150121,52.380511]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,186],"duration":1.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.454,"geometry_index":710,"location":[13.149867,52.379686]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":10.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.8,"geometry_index":712,"location":[13.14981,52.379312]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":2.495,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.433,"geometry_index":715,"location":[13.149802,52.376776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":2.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.364,"geometry_index":716,"location":[13.149823,52.376151]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":2.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.26,"geometry_index":717,"location":[13.149825,52.375554]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.149832,52.375028],"geometry_index":718,"admin_index":1,"weight":23.342,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.959,"bearings":[0,179,196],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.316,"geometry_index":730,"location":[13.149453,52.369083]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,199],"duration":5.22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.09,"geometry_index":731,"location":[13.149415,52.369006]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.14857,52.367816],"geometry_index":737,"admin_index":1,"weight":6.952,"is_urban":false,"turn_weight":0.75,"duration":6.368,"bearings":[18,28,209],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,224],"duration":19.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.492,"geometry_index":741,"location":[13.146995,52.366499]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,205],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.613,"geometry_index":747,"location":[13.141503,52.36265]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,202],"duration":22.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.265,"geometry_index":748,"location":[13.141392,52.362502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":7.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.385,"geometry_index":754,"location":[13.140496,52.356941]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.140541,52.354926],"geometry_index":755,"admin_index":1,"weight":5.583,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.042,"bearings":[179,359],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":6.788,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.272,"geometry_index":756,"location":[13.140578,52.353386]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":80.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.884,"geometry_index":757,"location":[13.140619,52.351645]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,245],"duration":2.388,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.15,"geometry_index":775,"location":[13.127071,52.334778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":8.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.683,"geometry_index":776,"location":[13.126149,52.334515]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":0.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.841,"geometry_index":777,"location":[13.122827,52.333566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":6.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.103,"geometry_index":778,"location":[13.122464,52.333463]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":6.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.473,"geometry_index":779,"location":[13.119887,52.332714]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.117576,52.332046],"geometry_index":780,"admin_index":1,"weight":6.175,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.683,"bearings":[65,245],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":2.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.03,"geometry_index":781,"location":[13.11503,52.331318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":7.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.365,"geometry_index":782,"location":[13.114178,52.331074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,242],"duration":5.8,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.347,"geometry_index":785,"location":[13.111117,52.330187]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,231],"duration":26.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":23.989,"geometry_index":790,"location":[13.109016,52.329411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.745,"geometry_index":802,"location":[13.102157,52.323971]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":17.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.583,"geometry_index":803,"location":[13.101707,52.323547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.445,"geometry_index":805,"location":[13.097707,52.319726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":5.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.209,"geometry_index":806,"location":[13.097343,52.319375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":2.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.085,"geometry_index":807,"location":[13.096091,52.318178]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":16.325,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.692,"geometry_index":808,"location":[13.09558,52.317683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.032,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.829,"geometry_index":813,"location":[13.092603,52.314007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":1.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.433,"geometry_index":814,"location":[13.092287,52.313536]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.016,"geometry_index":815,"location":[13.092046,52.313151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":16.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.707,"geometry_index":816,"location":[13.09187,52.312885]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":8.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.211,"geometry_index":818,"location":[13.08932,52.309027]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.088099,52.307126],"geometry_index":819,"admin_index":1,"weight":10.601,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.786,"bearings":[21,202,217],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,207],"duration":6.116,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":5.505,"geometry_index":822,"location":[13.086226,52.304321]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,220,327],"duration":34.008,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":30.6,"geometry_index":829,"location":[13.084851,52.303002]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.072311,52.300508],"geometry_index":851,"admin_index":1,"weight":21.232,"is_urban":false,"turn_weight":6,"duration":16.476,"bearings":[88,93,273],"out":2,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,274],"duration":8.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.55,"geometry_index":854,"location":[13.065538,52.300737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.153,"geometry_index":855,"location":[13.06218,52.300866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":7.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.886,"geometry_index":856,"location":[13.061654,52.300888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":18.524,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.135,"geometry_index":857,"location":[13.058533,52.30099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":18.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.555,"geometry_index":859,"location":[13.050765,52.301297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,241],"duration":9.856,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.364,"geometry_index":869,"location":[13.043033,52.300424]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,248],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.094,"geometry_index":873,"location":[13.039413,52.299198]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,250],"duration":5.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.282,"geometry_index":874,"location":[13.038972,52.299089]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,261],"duration":3.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.454,"geometry_index":877,"location":[13.036786,52.298676]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.035301,52.298558],"geometry_index":880,"admin_index":1,"weight":7.571,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.978,"bearings":[83,267,276],"out":1,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,282],"duration":4.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.648,"geometry_index":885,"location":[13.031964,52.298646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":1.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.428,"geometry_index":888,"location":[13.029974,52.298966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,292],"duration":6.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.91,"geometry_index":889,"location":[13.029378,52.299088]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.026972,52.299721],"geometry_index":891,"admin_index":1,"weight":1.609,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.702,"bearings":[114,295,306],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":0.577,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.549,"geometry_index":892,"location":[13.026329,52.299901]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":17.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.698,"geometry_index":893,"location":[13.026096,52.299966]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.019466,52.301862],"geometry_index":896,"admin_index":1,"weight":6.834,"is_urban":false,"turn_weight":1,"duration":6.149,"bearings":[97,115,295],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.12,"geometry_index":897,"location":[13.017155,52.30253]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.01344,52.30343],"geometry_index":900,"admin_index":1,"weight":9.151,"is_urban":false,"turn_weight":1,"duration":8.604,"bearings":[82,108,284],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":2.79,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.581,"geometry_index":904,"location":[13.009309,52.303866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,268],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.33,"geometry_index":907,"location":[13.007951,52.303905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":32.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":29.67,"geometry_index":910,"location":[13.006194,52.303857]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":17.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.39,"geometry_index":915,"location":[12.993119,52.303701]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.106,"geometry_index":917,"location":[12.986148,52.303765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":7.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.512,"geometry_index":918,"location":[12.985191,52.303769]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,271],"duration":9.792,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.568,"geometry_index":919,"location":[12.982232,52.303782]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,264],"duration":7.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.426,"geometry_index":921,"location":[12.97824,52.303765]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.975285,52.303495],"geometry_index":924,"admin_index":1,"weight":4.082,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.686,"bearings":[78,255,276],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.973486,52.303191],"geometry_index":926,"admin_index":1,"weight":1.964,"is_urban":false,"turn_weight":1,"duration":1.126,"bearings":[48,74,251],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.482,"geometry_index":927,"location":[12.973072,52.303102]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.754,"geometry_index":928,"location":[12.972859,52.303055]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":5.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.676,"geometry_index":929,"location":[12.972122,52.302888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":30.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":26.67,"geometry_index":930,"location":[12.970143,52.302441]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":10.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.925,"geometry_index":932,"location":[12.959648,52.300054]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":7.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.895,"geometry_index":934,"location":[12.956134,52.299254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.555,"geometry_index":935,"location":[12.953425,52.298635]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.5,"geometry_index":936,"location":[12.95242,52.298406]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":14.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.708,"geometry_index":937,"location":[12.947252,52.297228]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":18.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.884,"geometry_index":938,"location":[12.942404,52.296115]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":14.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.104,"geometry_index":940,"location":[12.935944,52.294641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":24.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.96,"geometry_index":941,"location":[12.930936,52.293502]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":3.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.132,"geometry_index":943,"location":[12.922545,52.291594]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.921355,52.291318],"geometry_index":944,"admin_index":1,"weight":5.298,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.909,"bearings":[69,246,259],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,242],"duration":1.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.296,"geometry_index":948,"location":[12.91949,52.29081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,235],"duration":8.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.456,"geometry_index":949,"location":[12.919044,52.290666]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[6,40,218],"duration":3.407,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":3.049,"geometry_index":956,"location":[12.916934,52.289543]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":9.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.348,"geometry_index":960,"location":[12.916258,52.288957]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.915131,52.287129],"geometry_index":969,"admin_index":1,"weight":10.874,"is_urban":false,"turn_weight":1,"duration":10.992,"bearings":[0,13,192],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":2.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.353,"geometry_index":971,"location":[12.914372,52.284876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":8.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.676,"geometry_index":972,"location":[12.914193,52.284343]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":17.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.93,"geometry_index":973,"location":[12.913606,52.282592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":3.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.893,"geometry_index":974,"location":[12.912372,52.278957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,190],"duration":2.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.54,"geometry_index":975,"location":[12.912148,52.278297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.995,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.795,"geometry_index":977,"location":[12.911985,52.277788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":24.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.286,"geometry_index":978,"location":[12.91186,52.277424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":11.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.202,"geometry_index":980,"location":[12.910331,52.272951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.909623,52.270905],"geometry_index":981,"admin_index":1,"weight":2.233,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.503,"bearings":[12,190,218],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":4.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.378,"geometry_index":983,"location":[12.909483,52.270457]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.90919,52.269574],"geometry_index":984,"admin_index":1,"weight":3.138,"is_urban":false,"turn_weight":1,"duration":2.383,"bearings":[11,192,351],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.685,"geometry_index":985,"location":[12.908996,52.268992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.333,"geometry_index":986,"location":[12.908843,52.268534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":15.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.071,"geometry_index":987,"location":[12.908527,52.267584]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":6.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.71,"geometry_index":990,"location":[12.907305,52.263558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":0.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.041,"geometry_index":993,"location":[12.907157,52.262293]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,182],"duration":2.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.365,"geometry_index":994,"location":[12.907157,52.262291]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,181],"duration":7.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.168,"geometry_index":995,"location":[12.907118,52.261637]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,356],"duration":7.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.844,"geometry_index":998,"location":[12.907217,52.260049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,351],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.175,"geometry_index":1000,"location":[12.907531,52.258543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,350],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.1,"geometry_index":1001,"location":[12.907608,52.258283]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,345],"duration":10.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.234,"geometry_index":1004,"location":[12.908264,52.25653]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,341],"duration":2.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.089,"geometry_index":1006,"location":[12.90933,52.254586]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,339],"duration":5.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.216,"geometry_index":1007,"location":[12.909585,52.254172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":5.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.702,"geometry_index":1008,"location":[12.91024,52.253054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":2.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.134,"geometry_index":1009,"location":[12.91083,52.252048]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.553,"geometry_index":1010,"location":[12.911093,52.251594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":26.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.587,"geometry_index":1011,"location":[12.911162,52.251475]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,340],"duration":0.351,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.307,"geometry_index":1015,"location":[12.914211,52.246289]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":12.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.025,"geometry_index":1016,"location":[12.914249,52.246222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":2.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.266,"geometry_index":1017,"location":[12.915633,52.243784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,342],"duration":6.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.839,"geometry_index":1019,"location":[12.915913,52.243279]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,345],"duration":2.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.228,"geometry_index":1023,"location":[12.916541,52.241972]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,348],"duration":18.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.288,"geometry_index":1024,"location":[12.916723,52.241461]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":38.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.69,"geometry_index":1033,"location":[12.917372,52.237677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":18.966,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.595,"geometry_index":1046,"location":[12.914669,52.23004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":0.966,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.845,"geometry_index":1053,"location":[12.91145,52.226707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":4.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.833,"geometry_index":1054,"location":[12.911272,52.226545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":13.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.107,"geometry_index":1055,"location":[12.910461,52.225787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":21.47,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.786,"geometry_index":1060,"location":[12.907886,52.223392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":19.952,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.458,"geometry_index":1063,"location":[12.903876,52.219681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":2.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.163,"geometry_index":1068,"location":[12.900161,52.216233]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,213],"duration":2.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.087,"geometry_index":1069,"location":[12.899683,52.215813]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":6.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.685,"geometry_index":1070,"location":[12.899235,52.215398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.898045,52.214285],"geometry_index":1072,"admin_index":1,"weight":7.135,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.162,"bearings":[32,213,239],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.896532,52.212871],"geometry_index":1073,"admin_index":1,"weight":10.488,"is_urban":false,"turn_weight":1,"duration":10.851,"bearings":[4,33,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":30.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":26.87,"geometry_index":1076,"location":[12.894533,52.21099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":12.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.852,"geometry_index":1079,"location":[12.888814,52.205686]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.886541,52.203609],"geometry_index":1080,"admin_index":1,"weight":10.93,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.164,"bearings":[34,213,235],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":9.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.666,"geometry_index":1082,"location":[12.884297,52.201502]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.882373,52.199895],"geometry_index":1084,"admin_index":1,"weight":3.381,"is_urban":false,"turn_weight":1,"duration":2.654,"bearings":[18,38,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,222],"duration":6.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.883,"geometry_index":1085,"location":[12.881789,52.199486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,228],"duration":1.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.632,"geometry_index":1087,"location":[12.880222,52.19848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":40.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":35.865,"geometry_index":1088,"location":[12.879759,52.198221]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.846,"geometry_index":1097,"location":[12.867804,52.194078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.223,"geometry_index":1098,"location":[12.866781,52.193844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.981,"geometry_index":1099,"location":[12.866321,52.193741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":44.128,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":38.612,"geometry_index":1100,"location":[12.865477,52.193549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,223],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.878,"geometry_index":1113,"location":[12.850629,52.188201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":162.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":142.44,"geometry_index":1114,"location":[12.850341,52.188011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":15.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.053,"geometry_index":1148,"location":[12.793402,52.165608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,229],"duration":8.37,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.533,"geometry_index":1152,"location":[12.789227,52.163838]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,223],"duration":20.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.063,"geometry_index":1154,"location":[12.787204,52.162715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":7.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.763,"geometry_index":1158,"location":[12.7831,52.159609]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":1.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.975,"geometry_index":1159,"location":[12.781662,52.158401]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":3.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.81,"geometry_index":1160,"location":[12.781397,52.158175]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.780686,52.157552],"geometry_index":1161,"admin_index":1,"weight":0.794,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.901,"bearings":[35,214,245],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":4.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.717,"geometry_index":1162,"location":[12.780482,52.157363]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.779484,52.156509],"geometry_index":1164,"admin_index":1,"weight":9.244,"is_urban":false,"turn_weight":1,"duration":9.181,"bearings":[7,37,215],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":82.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":72.45,"geometry_index":1166,"location":[12.777332,52.154614]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,216],"duration":10.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.107,"geometry_index":1173,"location":[12.75783,52.13752]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.755323,52.135393],"geometry_index":1174,"admin_index":1,"weight":21.952,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.112,"bearings":[36,213,241],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.749685,52.13048],"geometry_index":1176,"admin_index":1,"weight":9.082,"is_urban":false,"turn_weight":1,"duration":9.243,"bearings":[11,35,215],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":24.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.255,"geometry_index":1177,"location":[12.747557,52.128607]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,223],"duration":0.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.818,"geometry_index":1181,"location":[12.741706,52.1238]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":78.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":68.279,"geometry_index":1182,"location":[12.741439,52.123624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":6.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.096,"geometry_index":1198,"location":[12.714066,52.111048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":50.933,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":44.567,"geometry_index":1200,"location":[12.711983,52.10967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,225],"duration":14.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.87,"geometry_index":1206,"location":[12.69718,52.099391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":8.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.95,"geometry_index":1209,"location":[12.692488,52.096837]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.689514,52.095314],"geometry_index":1210,"admin_index":1,"weight":6.162,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.854,"bearings":[50,231,265],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.687312,52.094214],"geometry_index":1212,"admin_index":1,"weight":3.287,"is_urban":false,"turn_weight":1,"duration":2.548,"bearings":[30,51,231],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,229],"duration":1.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.334,"geometry_index":1213,"location":[12.686499,52.093805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,227],"duration":0.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.762,"geometry_index":1214,"location":[12.686042,52.093557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,226],"duration":3.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.526,"geometry_index":1215,"location":[12.685781,52.093409]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":10.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.339,"geometry_index":1217,"location":[12.684626,52.092706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":1.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.142,"geometry_index":1220,"location":[12.681723,52.090753]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":74.749,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":65.406,"geometry_index":1221,"location":[12.681368,52.0905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":1.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.892,"geometry_index":1232,"location":[12.661511,52.074081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":27.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.15,"geometry_index":1233,"location":[12.661305,52.073845]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.86,"geometry_index":1238,"location":[12.656541,52.06724]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":88.903,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":77.79,"geometry_index":1239,"location":[12.656204,52.066719]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":0.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.712,"geometry_index":1252,"location":[12.637729,52.046868]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":5.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.711,"geometry_index":1253,"location":[12.63742,52.046736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":7.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.527,"geometry_index":1254,"location":[12.635436,52.045873]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.632678,52.044694],"geometry_index":1256,"admin_index":1,"weight":12.6,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.419,"bearings":[55,234,258],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.627426,52.042362],"geometry_index":1258,"admin_index":1,"weight":2.918,"is_urban":false,"turn_weight":1,"duration":2.217,"bearings":[18,54,229],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":6.774,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.928,"geometry_index":1259,"location":[12.626682,52.04197]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,214],"duration":11.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.679,"geometry_index":1263,"location":[12.624677,52.04059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.3,"geometry_index":1266,"location":[12.622186,52.03797]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,214],"duration":12.442,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.887,"geometry_index":1269,"location":[12.620536,52.036191]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":0.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.636,"geometry_index":1278,"location":[12.616515,52.033694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,239],"duration":18.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.109,"geometry_index":1279,"location":[12.616245,52.033577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,241],"duration":2.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.082,"geometry_index":1287,"location":[12.608442,52.031516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,236],"duration":39.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":34.539,"geometry_index":1290,"location":[12.607479,52.031182]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,232],"duration":9.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.455,"geometry_index":1308,"location":[12.595654,52.022876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":0.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.74,"geometry_index":1311,"location":[12.591997,52.021294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":13.89,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.154,"geometry_index":1312,"location":[12.591668,52.021161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":8.347,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.304,"geometry_index":1316,"location":[12.586375,52.018992]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.583191,52.017682],"geometry_index":1317,"admin_index":1,"weight":3.429,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.926,"bearings":[56,236,265],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.581696,52.017065],"geometry_index":1318,"admin_index":1,"weight":2.997,"is_urban":false,"turn_weight":1,"duration":2.29,"bearings":[31,56,237],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.153,"geometry_index":1319,"location":[12.58082,52.016719]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,236],"duration":0.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.829,"geometry_index":1320,"location":[12.58031,52.016521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":3.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.094,"geometry_index":1321,"location":[12.57995,52.016372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":125.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":107.046,"geometry_index":1323,"location":[12.578619,52.015799]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,223],"duration":119.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":101.847,"geometry_index":1353,"location":[12.540082,51.989642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":6.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.965,"geometry_index":1376,"location":[12.493043,51.972654]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.490174,51.971897],"geometry_index":1377,"admin_index":2,"weight":0.864,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.995,"bearings":[67,248,270],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,247],"duration":12.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.039,"geometry_index":1378,"location":[12.489752,51.97179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.254,"geometry_index":1381,"location":[12.484483,51.970337]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.483898,51.97015],"geometry_index":1382,"admin_index":2,"weight":2.23,"is_urban":false,"turn_weight":1,"duration":1.43,"bearings":[44,63,240],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":4.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.32,"geometry_index":1383,"location":[12.483376,51.969963]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":17.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.66,"geometry_index":1385,"location":[12.481588,51.969282]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":17.417,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.675,"geometry_index":1392,"location":[12.475454,51.966503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":6.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.06,"geometry_index":1396,"location":[12.469505,51.963791]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.46713,51.962719],"geometry_index":1397,"admin_index":2,"weight":0.926,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.066,"bearings":[54,234,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,232],"duration":3.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.176,"geometry_index":1398,"location":[12.466719,51.962534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,229],"duration":0.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.715,"geometry_index":1400,"location":[12.465349,51.96187]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.46505,51.96171],"geometry_index":1401,"admin_index":2,"weight":1.91,"is_urban":false,"turn_weight":0.5,"duration":1.618,"bearings":[27,49,230],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":5.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.13,"geometry_index":1402,"location":[12.464521,51.961436]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,221],"duration":298.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":260.85,"geometry_index":1405,"location":[12.462746,51.960355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":15.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.071,"geometry_index":1466,"location":[12.404313,51.893731]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":8.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.282,"geometry_index":1469,"location":[12.401183,51.890118]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.399556,51.888251],"geometry_index":1470,"admin_index":2,"weight":0.519,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.595,"bearings":[28,207,248],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":5.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.536,"geometry_index":1471,"location":[12.399448,51.888121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":1.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.102,"geometry_index":1473,"location":[12.3985,51.887011]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.398273,51.886741],"geometry_index":1474,"admin_index":2,"weight":1.847,"is_urban":false,"turn_weight":0.5,"duration":1.504,"bearings":[11,27,208],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":5.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.101,"geometry_index":1475,"location":[12.397985,51.886404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":8.198,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.378,"geometry_index":1476,"location":[12.396892,51.885146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,207],"duration":1.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.123,"geometry_index":1477,"location":[12.395287,51.883329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":67.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":58.977,"geometry_index":1478,"location":[12.395056,51.883049]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":6.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.551,"geometry_index":1497,"location":[12.378218,51.869952]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.375974,51.869146],"geometry_index":1500,"admin_index":2,"weight":1.544,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.771,"bearings":[61,241,259],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":13.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.982,"geometry_index":1501,"location":[12.375332,51.868929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,243],"duration":1.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.173,"geometry_index":1504,"location":[12.370335,51.867305]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.369842,51.867147],"geometry_index":1505,"admin_index":2,"weight":2.368,"is_urban":false,"turn_weight":1,"duration":1.583,"bearings":[42,63,242],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.636,"geometry_index":1507,"location":[12.369288,51.866965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.55,"geometry_index":1508,"location":[12.369024,51.86688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":3.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.961,"geometry_index":1509,"location":[12.368801,51.866802]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":38.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":33.799,"geometry_index":1510,"location":[12.367619,51.866374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,235],"duration":25.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.875,"geometry_index":1519,"location":[12.354635,51.861034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,233],"duration":14.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.991,"geometry_index":1521,"location":[12.346226,51.857392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.409,"geometry_index":1525,"location":[12.341259,51.855179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":24.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":21.885,"geometry_index":1526,"location":[12.3411,51.855109]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,221],"duration":15.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.244,"geometry_index":1536,"location":[12.33316,51.850977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":6.147,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.532,"geometry_index":1543,"location":[12.329116,51.847622]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":1.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.467,"geometry_index":1546,"location":[12.327832,51.8462]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.327534,51.845814],"geometry_index":1547,"admin_index":2,"weight":0.321,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.365,"bearings":[25,209,246],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,205],"duration":5.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.068,"geometry_index":1548,"location":[12.32746,51.845733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,201],"duration":1.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.412,"geometry_index":1550,"location":[12.326509,51.844437]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[4,21,203],"duration":6.998,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":2,"weight":6.117,"geometry_index":1551,"location":[12.326279,51.844065]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":6.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.291,"geometry_index":1553,"location":[12.325233,51.842392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":56.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":49.534,"geometry_index":1554,"location":[12.324355,51.840936]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":12.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.34,"geometry_index":1573,"location":[12.312443,51.825739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.153,"geometry_index":1576,"location":[12.309234,51.822525]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":0.944,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.849,"geometry_index":1577,"location":[12.308944,51.822244]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":2.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.58,"geometry_index":1578,"location":[12.308738,51.822037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.284,"geometry_index":1579,"location":[12.308084,51.821416]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":2.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.982,"geometry_index":1580,"location":[12.307761,51.821091]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.307278,51.820606],"geometry_index":1581,"admin_index":2,"weight":0.654,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.751,"bearings":[32,209,242],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":4.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.175,"geometry_index":1582,"location":[12.307127,51.82044]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.028,"geometry_index":1583,"location":[12.306098,51.819416]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.305844,51.819161],"geometry_index":1584,"admin_index":2,"weight":6.116,"is_urban":false,"turn_weight":0.5,"duration":6.248,"bearings":[1,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":17.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.768,"geometry_index":1585,"location":[12.304259,51.817565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,226],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.388,"geometry_index":1592,"location":[12.299189,51.813381]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.902,"geometry_index":1593,"location":[12.298661,51.81307]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":15.005,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.505,"geometry_index":1594,"location":[12.298355,51.812886]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":45.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":41.09,"geometry_index":1596,"location":[12.293715,51.810088]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":14.706,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.235,"geometry_index":1608,"location":[12.281795,51.800512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":11.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.606,"geometry_index":1609,"location":[12.278909,51.797056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":6.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.229,"geometry_index":1612,"location":[12.276594,51.794286]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":16.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.519,"geometry_index":1613,"location":[12.275274,51.792707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":0.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.672,"geometry_index":1618,"location":[12.272413,51.788825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,200],"duration":58.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":53.067,"geometry_index":1619,"location":[12.272299,51.788637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":35.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":30.919,"geometry_index":1634,"location":[12.258667,51.776389]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.76,"geometry_index":1635,"location":[12.247555,51.770451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":63.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":55.844,"geometry_index":1636,"location":[12.246923,51.77012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":15.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.64,"geometry_index":1646,"location":[12.231505,51.75706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":7.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.392,"geometry_index":1648,"location":[12.228688,51.75345]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.227354,51.751765],"geometry_index":1650,"admin_index":2,"weight":0.795,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.928,"bearings":[26,204,229],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":4.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.768,"geometry_index":1651,"location":[12.227202,51.751556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":1.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.513,"geometry_index":1652,"location":[12.226425,51.750576]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.226121,51.750179],"geometry_index":1653,"admin_index":2,"weight":5.8,"is_urban":false,"turn_weight":1,"duration":5.493,"bearings":[10,25,205],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.75,"geometry_index":1654,"location":[12.225126,51.748877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":13.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.06,"geometry_index":1655,"location":[12.224969,51.74867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":8.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.74,"geometry_index":1658,"location":[12.222565,51.74538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":59.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":51.72,"geometry_index":1660,"location":[12.221152,51.74323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":6.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.863,"geometry_index":1674,"location":[12.216035,51.728123]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.215721,51.726427],"geometry_index":1675,"admin_index":2,"weight":1.187,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.326,"bearings":[7,187,210],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.41,"geometry_index":1676,"location":[12.21566,51.726096]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":1.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.123,"geometry_index":1677,"location":[12.215266,51.724034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.215185,51.723726],"geometry_index":1678,"admin_index":2,"weight":7.147,"is_urban":false,"turn_weight":1,"duration":6.851,"bearings":[9,186,344],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":21.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":18.925,"geometry_index":1680,"location":[12.21486,51.721918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":15.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.717,"geometry_index":1685,"location":[12.213797,51.716341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":8.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.661,"geometry_index":1687,"location":[12.212998,51.712301]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.212575,51.710047],"geometry_index":1689,"admin_index":2,"weight":5.209,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.807,"bearings":[7,186,217],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.212313,51.708584],"geometry_index":1690,"admin_index":2,"weight":1.81,"is_urban":false,"turn_weight":1,"duration":0.907,"bearings":[6,186,334],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":2.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.95,"geometry_index":1691,"location":[12.212271,51.708345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":4.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.35,"geometry_index":1692,"location":[12.212162,51.707767]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":37.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":32.433,"geometry_index":1693,"location":[12.211916,51.706472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.926,"geometry_index":1694,"location":[12.210036,51.696553]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,185],"duration":31.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":27.686,"geometry_index":1695,"location":[12.209983,51.696283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.967,"geometry_index":1698,"location":[12.208363,51.687734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":74.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":65.409,"geometry_index":1699,"location":[12.208309,51.687459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.029,"geometry_index":1701,"location":[12.204725,51.668559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":48.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":42.416,"geometry_index":1702,"location":[12.204671,51.668268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.796,"geometry_index":1704,"location":[12.202384,51.656132]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":62.163,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":55.946,"geometry_index":1705,"location":[12.202288,51.655633]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":15.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.147,"geometry_index":1714,"location":[12.198546,51.640144]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.678,"geometry_index":1718,"location":[12.1971,51.636284]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.648,"geometry_index":1719,"location":[12.196482,51.634738]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.196299,51.634304],"geometry_index":1720,"admin_index":2,"weight":5.407,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.853,"bearings":[15,195,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.352,"geometry_index":1723,"location":[12.195712,51.632874]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.195559,51.632519],"geometry_index":1724,"admin_index":2,"weight":1.357,"is_urban":false,"turn_weight":0.5,"duration":0.934,"bearings":[15,195,358],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":6.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.638,"geometry_index":1725,"location":[12.195464,51.632293]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":25.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":23.903,"geometry_index":1726,"location":[12.194855,51.630805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":1.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.747,"geometry_index":1731,"location":[12.192277,51.62449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":48.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":44.002,"geometry_index":1732,"location":[12.19207,51.624014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":2.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.283,"geometry_index":1738,"location":[12.18692,51.611613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":0.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.586,"geometry_index":1739,"location":[12.186637,51.610976]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.845,"geometry_index":1740,"location":[12.186571,51.610812]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.18602,51.609445],"geometry_index":1741,"admin_index":2,"weight":0.578,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.648,"bearings":[14,194,231],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.026,"geometry_index":1742,"location":[12.185954,51.609286]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":7.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.544,"geometry_index":1743,"location":[12.18584,51.609009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.642,"geometry_index":1745,"location":[12.185103,51.607239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":11.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.041,"geometry_index":1746,"location":[12.185029,51.607061]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":1.925,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.732,"geometry_index":1749,"location":[12.183909,51.604333]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.183725,51.603862],"geometry_index":1750,"admin_index":2,"weight":2.429,"is_urban":false,"turn_weight":1,"duration":1.61,"bearings":[14,192,358],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":6.741,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.067,"geometry_index":1751,"location":[12.18359,51.603467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,186],"duration":116.929,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":105.236,"geometry_index":1754,"location":[12.183135,51.601773]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":10.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.117,"geometry_index":1788,"location":[12.190222,51.572655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":8.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.621,"geometry_index":1789,"location":[12.189497,51.570113]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":1.315,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.217,"geometry_index":1791,"location":[12.188899,51.568012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":9.208,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.517,"geometry_index":1792,"location":[12.188803,51.567677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":19.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":17.771,"geometry_index":1794,"location":[12.188132,51.565321]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.187013,51.560385],"geometry_index":1800,"admin_index":2,"weight":2.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.172,"bearings":[4,179,191],"out":1,"in":0,"turn_duration":0.026,"classes":["motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":4.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.538,"geometry_index":1801,"location":[12.187027,51.559827]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,356],"duration":31.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.122,"geometry_index":1803,"location":[12.187096,51.558593]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,347],"duration":3.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.866,"geometry_index":1810,"location":[12.189728,51.550536]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.190001,51.549767],"geometry_index":1811,"admin_index":2,"weight":7.873,"is_urban":false,"turn_weight":1,"duration":7.242,"bearings":[167,341,348],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":4.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.407,"geometry_index":1812,"location":[12.190678,51.547956]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":15.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.896,"geometry_index":1814,"location":[12.191116,51.546782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.11,"geometry_index":1816,"location":[12.192541,51.542987]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":7.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.771,"geometry_index":1817,"location":[12.192654,51.542681]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":73.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":66.388,"geometry_index":1819,"location":[12.193471,51.540548]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":61.524,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":53.833,"geometry_index":1830,"location":[12.196933,51.522343]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,350],"duration":5.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.788,"geometry_index":1842,"location":[12.199663,51.507112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,351],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.844,"geometry_index":1843,"location":[12.200019,51.505767]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,349],"duration":40.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":35.579,"geometry_index":1844,"location":[12.200089,51.505539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,348],"duration":1.099,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.989,"geometry_index":1851,"location":[12.202674,51.496036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,348],"duration":8.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.571,"geometry_index":1852,"location":[12.202757,51.495783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.203663,51.493875],"geometry_index":1857,"admin_index":2,"weight":1.67,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.876,"bearings":[159,176,341],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":12.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.956,"geometry_index":1858,"location":[12.203927,51.493455]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,336],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.737,"geometry_index":1860,"location":[12.205853,51.490764]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.206179,51.490341],"geometry_index":1861,"admin_index":3,"weight":2.136,"is_urban":false,"turn_weight":1,"duration":1.27,"bearings":[156,322,334],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,336],"duration":6.161,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.545,"geometry_index":1862,"location":[12.206376,51.490066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":4.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.008,"geometry_index":1864,"location":[12.207391,51.488712]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.203,"geometry_index":1865,"location":[12.208118,51.487731]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":90.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":81.167,"geometry_index":1866,"location":[12.208339,51.487434]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,356],"duration":7.015,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.313,"geometry_index":1885,"location":[12.216498,51.466392]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.216613,51.4647],"geometry_index":1889,"admin_index":3,"weight":6.678,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.427,"bearings":[0,180,196],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.216536,51.462889],"geometry_index":1892,"admin_index":3,"weight":7.868,"is_urban":false,"turn_weight":1,"duration":7.434,"bearings":[2,184,345],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":35.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":33.022,"geometry_index":1895,"location":[12.216254,51.461122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":25.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":23.241,"geometry_index":1902,"location":[12.212588,51.452907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.486,"geometry_index":1905,"location":[12.20932,51.447247]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":38.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":35.84,"geometry_index":1906,"location":[12.209252,51.447133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":4.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.725,"geometry_index":1912,"location":[12.204175,51.438303]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.356,"geometry_index":1914,"location":[12.20352,51.437175]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.73,"geometry_index":1915,"location":[12.20347,51.43709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":7.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.403,"geometry_index":1916,"location":[12.203258,51.436726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":7.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.961,"geometry_index":1917,"location":[12.202357,51.435173]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.006,"geometry_index":1919,"location":[12.201517,51.433712]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.201398,51.433504],"geometry_index":1920,"admin_index":3,"weight":2.97,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.133,"bearings":[20,200,222],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":10.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.26,"geometry_index":1921,"location":[12.201074,51.432942]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":5.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.039,"geometry_index":1923,"location":[12.199956,51.431017]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":0.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.57,"geometry_index":1924,"location":[12.199383,51.430045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":9.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.369,"geometry_index":1925,"location":[12.199321,51.429933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.274,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.16,"geometry_index":1927,"location":[12.198398,51.428316]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":9.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.64,"geometry_index":1928,"location":[12.198163,51.427908]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.25,"geometry_index":1930,"location":[12.197223,51.42629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.54,"geometry_index":1931,"location":[12.196978,51.425867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":7.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.335,"geometry_index":1932,"location":[12.196919,51.425765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":3.079,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.925,"geometry_index":1934,"location":[12.196119,51.424386]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.195815,51.423832],"geometry_index":1935,"admin_index":3,"weight":18.186,"is_urban":false,"turn_weight":1,"duration":18.098,"bearings":[19,200,353],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":4.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.574,"geometry_index":1939,"location":[12.193858,51.420431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.825,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.634,"geometry_index":1940,"location":[12.193335,51.419524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.479,"geometry_index":1941,"location":[12.192923,51.418809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.315,"geometry_index":1942,"location":[12.19264,51.418318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":15.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":14.601,"geometry_index":1943,"location":[12.192608,51.418262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.71,"geometry_index":1945,"location":[12.190988,51.415448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":43.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":40.909,"geometry_index":1946,"location":[12.190803,51.415127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.981,"geometry_index":1951,"location":[12.186258,51.40724]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.087,"geometry_index":1952,"location":[12.185929,51.406669]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":26.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":25.628,"geometry_index":1953,"location":[12.1857,51.406274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":10.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.949,"geometry_index":1956,"location":[12.182894,51.401393]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.181825,51.399493],"geometry_index":1959,"admin_index":3,"weight":1.539,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.639,"bearings":[19,197,220],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":6.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.284,"geometry_index":1960,"location":[12.181673,51.399185]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":2.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.762,"geometry_index":1962,"location":[12.18113,51.397906]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.180957,51.397346],"geometry_index":1963,"admin_index":3,"weight":0.83,"is_urban":false,"turn_weight":0.5,"duration":0.354,"bearings":[11,191,355],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,190],"duration":6.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.339,"geometry_index":1964,"location":[12.180936,51.397279]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,185],"duration":27.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":24.995,"geometry_index":1967,"location":[12.180593,51.395873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":1.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.518,"geometry_index":1976,"location":[12.181032,51.390303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":37.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":33.92,"geometry_index":1977,"location":[12.181122,51.39003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.264,"geometry_index":1982,"location":[12.183528,51.382565]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":16.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.699,"geometry_index":1983,"location":[12.183686,51.382055]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":5.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.27,"geometry_index":1985,"location":[12.184755,51.378783]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":25.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.932,"geometry_index":1987,"location":[12.18513,51.377591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":2.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.936,"geometry_index":1990,"location":[12.186712,51.37269]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":16.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.06,"geometry_index":1991,"location":[12.18686,51.372243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.146,"geometry_index":1994,"location":[12.1879,51.369022]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":39.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":36.183,"geometry_index":1995,"location":[12.187984,51.368765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,187],"duration":1.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.858,"geometry_index":2004,"location":[12.189144,51.36084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":30.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":29.113,"geometry_index":2005,"location":[12.189063,51.360449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.275,"geometry_index":2009,"location":[12.18791,51.354373]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.676,"geometry_index":2010,"location":[12.187743,51.353482]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":10.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.88,"geometry_index":2011,"location":[12.187717,51.353336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.187293,51.351254],"geometry_index":2014,"admin_index":2,"weight":2.926,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.099,"bearings":[7,186,196],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":40.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":38.156,"geometry_index":2015,"location":[12.18718,51.350619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":1.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.772,"geometry_index":2026,"location":[12.18408,51.342576]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.183837,51.342223],"geometry_index":2027,"admin_index":2,"weight":3.143,"is_urban":false,"turn_weight":1,"duration":2.262,"bearings":[7,23,203],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,204],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.948,"geometry_index":2028,"location":[12.183548,51.341797]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":5.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.351,"geometry_index":2029,"location":[12.183416,51.341608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":6.903,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.386,"geometry_index":2030,"location":[12.182656,51.340516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":39.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":35.335,"geometry_index":2032,"location":[12.18172,51.339169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":21.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":19.326,"geometry_index":2038,"location":[12.176408,51.331532]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":8.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.005,"geometry_index":2043,"location":[12.173209,51.327441]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.171737,51.325792],"geometry_index":2045,"admin_index":3,"weight":1.355,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.513,"bearings":[29,210,237],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":10.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.059,"geometry_index":2046,"location":[12.171444,51.325469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":1.249,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.124,"geometry_index":2047,"location":[12.169501,51.323327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.16926,51.323061],"geometry_index":2048,"admin_index":3,"weight":1.76,"is_urban":false,"turn_weight":1,"duration":0.866,"bearings":[8,30,209],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":6.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.282,"geometry_index":2049,"location":[12.169096,51.322879]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.62,"geometry_index":2051,"location":[12.167756,51.321391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.54,"geometry_index":2052,"location":[12.167423,51.321005]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,209],"duration":73.62,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":66.258,"geometry_index":2053,"location":[12.167302,51.320874]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,210],"duration":1.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.748,"geometry_index":2062,"location":[12.152954,51.304844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":3.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.13,"geometry_index":2063,"location":[12.15258,51.304433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,209],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.035,"geometry_index":2064,"location":[12.151885,51.303706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":52.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":47.029,"geometry_index":2065,"location":[12.151663,51.303459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":9.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.804,"geometry_index":2072,"location":[12.13944,51.293072]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.137082,51.291155],"geometry_index":2075,"admin_index":2,"weight":1.62,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.808,"bearings":[37,218,237],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,216],"duration":0.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.324,"geometry_index":2076,"location":[12.136726,51.290873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":6.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.196,"geometry_index":2077,"location":[12.136659,51.290816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":2.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.228,"geometry_index":2079,"location":[12.135319,51.28973]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[23,38,217],"duration":6.431,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":2,"weight":5.771,"geometry_index":2080,"location":[12.134837,51.28934]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":18.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":16.848,"geometry_index":2083,"location":[12.13319,51.288011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":4.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.06,"geometry_index":2089,"location":[12.127818,51.284445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":2.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.442,"geometry_index":2090,"location":[12.126535,51.283623]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":7.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.882,"geometry_index":2091,"location":[12.125773,51.283123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":20.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":18.73,"geometry_index":2093,"location":[12.123593,51.281735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":0.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.779,"geometry_index":2098,"location":[12.117645,51.277751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.443,"geometry_index":2099,"location":[12.117431,51.277574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,218],"duration":160.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":144.003,"geometry_index":2100,"location":[12.11702,51.277262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":24.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.231,"geometry_index":2135,"location":[12.071053,51.249131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":8.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.218,"geometry_index":2141,"location":[12.065717,51.243876]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.064045,51.242149],"geometry_index":2144,"admin_index":2,"weight":1.879,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.096,"bearings":[31,212,225],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":19.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":17.366,"geometry_index":2145,"location":[12.063607,51.241706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":2.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.932,"geometry_index":2147,"location":[12.059534,51.237619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":6.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.594,"geometry_index":2148,"location":[12.059097,51.23718]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":2.124,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.965,"geometry_index":2149,"location":[12.057849,51.235892]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.057398,51.235444],"geometry_index":2150,"admin_index":2,"weight":8.198,"is_urban":false,"turn_weight":1,"duration":7.789,"bearings":[20,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":3.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.464,"geometry_index":2151,"location":[12.055784,51.233812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,213],"duration":2.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.984,"geometry_index":2153,"location":[12.055009,51.233023]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.054551,51.232573],"geometry_index":2154,"admin_index":2,"weight":2.748,"is_urban":false,"turn_weight":1,"duration":1.896,"bearings":[18,33,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":16.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.035,"geometry_index":2155,"location":[12.054149,51.232167]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.352,"geometry_index":2157,"location":[12.050697,51.228689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":2.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.704,"geometry_index":2158,"location":[12.050402,51.228371]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":7.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.056,"geometry_index":2160,"location":[12.049793,51.227737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":5.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.374,"geometry_index":2161,"location":[12.04818,51.226106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.089,"geometry_index":2162,"location":[12.046936,51.224867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.175,"geometry_index":2163,"location":[12.046679,51.224609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":1.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.522,"geometry_index":2165,"location":[12.046403,51.224333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":54.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":49.081,"geometry_index":2166,"location":[12.046033,51.223972]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":8.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.539,"geometry_index":2175,"location":[12.034261,51.212383]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.032204,51.210712],"geometry_index":2176,"admin_index":2,"weight":1.283,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.433,"bearings":[38,218,239],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":8.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.892,"geometry_index":2177,"location":[12.031857,51.21043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.604,"geometry_index":2179,"location":[12.029701,51.208677]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.029255,51.208323],"geometry_index":2180,"admin_index":2,"weight":1.866,"is_urban":false,"turn_weight":1,"duration":0.981,"bearings":[14,38,217],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":4.669,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.202,"geometry_index":2181,"location":[12.029021,51.208131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.668,"geometry_index":2182,"location":[12.02788,51.207199]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":4.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.721,"geometry_index":2183,"location":[12.027425,51.20683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":16.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.628,"geometry_index":2185,"location":[12.026404,51.206004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":34.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":31.816,"geometry_index":2187,"location":[12.022376,51.202774]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":8.163,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.754,"geometry_index":2197,"location":[12.015606,51.195245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":29.085,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":27.631,"geometry_index":2199,"location":[12.014306,51.193355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.604,"geometry_index":2203,"location":[12.009673,51.18662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":15.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.889,"geometry_index":2204,"location":[12.009568,51.186468]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":1.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.967,"geometry_index":2206,"location":[12.007133,51.182912]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":6.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.218,"geometry_index":2207,"location":[12.006975,51.18268]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.005963,51.181195],"geometry_index":2209,"admin_index":2,"weight":7.054,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.432,"bearings":[23,203,215],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":8.685,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.034,"geometry_index":2210,"location":[12.005023,51.179836]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":4.905,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.537,"geometry_index":2212,"location":[12.003926,51.178248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.998,"geometry_index":2214,"location":[12.003305,51.177347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":12.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.488,"geometry_index":2216,"location":[12.002965,51.176855]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.429,"geometry_index":2217,"location":[12.001013,51.174012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":2.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.098,"geometry_index":2219,"location":[12.00026,51.172914]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.999909,51.172395],"geometry_index":2220,"admin_index":2,"weight":2.517,"is_urban":false,"turn_weight":1,"duration":1.648,"bearings":[13,23,206],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":5.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.813,"geometry_index":2221,"location":[11.999622,51.17202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":3.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.4,"geometry_index":2222,"location":[11.998721,51.170841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":9.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.982,"geometry_index":2224,"location":[11.998021,51.17]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":11.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.073,"geometry_index":2226,"location":[11.996075,51.167805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.385,"geometry_index":2229,"location":[11.993897,51.165341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":59.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":52.022,"geometry_index":2230,"location":[11.993815,51.165248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.374,"geometry_index":2234,"location":[11.982264,51.152133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":12.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.931,"geometry_index":2235,"location":[11.982179,51.152037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.638,"geometry_index":2237,"location":[11.979763,51.14931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":77.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":67.429,"geometry_index":2239,"location":[11.9794,51.1489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.452,"geometry_index":2245,"location":[11.964482,51.131887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":65.085,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":56.95,"geometry_index":2246,"location":[11.964158,51.131522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,180],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.668,"geometry_index":2261,"location":[11.955792,51.116186]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":14.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.796,"geometry_index":2262,"location":[11.955786,51.115716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":5.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.138,"geometry_index":2266,"location":[11.95577,51.112208]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":1.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.361,"geometry_index":2267,"location":[11.955765,51.1108]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":0.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.389,"geometry_index":2268,"location":[11.955758,51.11042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955754,51.110309],"geometry_index":2269,"admin_index":2,"weight":25.596,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.459,"bearings":[1,180,193],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.56,"geometry_index":2273,"location":[11.955691,51.103214]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955678,51.102502],"geometry_index":2274,"admin_index":2,"weight":8.756,"is_urban":false,"turn_weight":1,"duration":8.638,"bearings":[1,180,351],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":7.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.232,"geometry_index":2275,"location":[11.955655,51.100377]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":0.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.471,"geometry_index":2277,"location":[11.955631,51.098445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":7.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.86,"geometry_index":2278,"location":[11.95563,51.098317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":2.772,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.564,"geometry_index":2279,"location":[11.955614,51.096465]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":3.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.164,"geometry_index":2280,"location":[11.955606,51.095771]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955594,51.094916],"geometry_index":2282,"admin_index":2,"weight":2.464,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.684,"bearings":[1,180,199],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":3.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.263,"geometry_index":2283,"location":[11.955586,51.09425]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,180],"duration":2.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.198,"geometry_index":2285,"location":[11.955574,51.093372]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955568,51.09278],"geometry_index":2286,"admin_index":2,"weight":3.467,"is_urban":false,"turn_weight":0.5,"duration":3.215,"bearings":[0,180,344],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":4.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.484,"geometry_index":2287,"location":[11.955561,51.091975]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,180],"duration":8.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.484,"geometry_index":2289,"location":[11.955544,51.090752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":16.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.035,"geometry_index":2291,"location":[11.955523,51.088716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,179],"duration":0.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.626,"geometry_index":2294,"location":[11.955466,51.084623]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":12.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.818,"geometry_index":2295,"location":[11.955469,51.084455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":0.642,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.593,"geometry_index":2297,"location":[11.955436,51.081205]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,180],"duration":76.905,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":69.214,"geometry_index":2298,"location":[11.955433,51.081042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":1.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.96,"geometry_index":2312,"location":[11.953124,51.065824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":21.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":18.603,"geometry_index":2313,"location":[11.952999,51.065544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.476,"geometry_index":2317,"location":[11.949881,51.060277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":14.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.481,"geometry_index":2318,"location":[11.949792,51.060141]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.262,"geometry_index":2321,"location":[11.94755,51.056639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":0.415,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.374,"geometry_index":2323,"location":[11.947157,51.056024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":24.706,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.235,"geometry_index":2324,"location":[11.947093,51.055924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,200],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.953,"geometry_index":2329,"location":[11.943271,51.050111]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,201],"duration":32.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":29.604,"geometry_index":2330,"location":[11.943122,51.04986]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":3.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.113,"geometry_index":2342,"location":[11.941093,51.04164]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.283,"geometry_index":2343,"location":[11.94101,51.040758]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":4.349,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.914,"geometry_index":2344,"location":[11.940982,51.040398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.940898,51.039304],"geometry_index":2346,"admin_index":2,"weight":1.176,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.312,"bearings":[3,183,208],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.97,"geometry_index":2347,"location":[11.940867,51.038974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,186],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.571,"geometry_index":2349,"location":[11.940814,51.038418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":1.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.264,"geometry_index":2350,"location":[11.940789,51.038255]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.940741,51.03791],"geometry_index":2351,"admin_index":2,"weight":8.122,"is_urban":false,"turn_weight":1,"duration":7.92,"bearings":[5,187,346],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,194],"duration":27.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.541,"geometry_index":2353,"location":[11.940232,51.035939]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":53.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.384,"geometry_index":2360,"location":[11.936566,51.029472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":1.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.947,"geometry_index":2366,"location":[11.928591,51.016311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":6.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.462,"geometry_index":2367,"location":[11.928429,51.016048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":2.011,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.804,"geometry_index":2368,"location":[11.927507,51.014565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":30.912,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.815,"geometry_index":2369,"location":[11.927203,51.014075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":2.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.598,"geometry_index":2373,"location":[11.922488,51.006461]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":1.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.987,"geometry_index":2374,"location":[11.922045,51.005747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.055,"geometry_index":2375,"location":[11.92188,51.005475]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":34.183,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":30.765,"geometry_index":2377,"location":[11.921349,51.004655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":28.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.519,"geometry_index":2382,"location":[11.916134,50.99632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,224],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.926,"geometry_index":2389,"location":[11.910131,50.989985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,225],"duration":27.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.815,"geometry_index":2390,"location":[11.909834,50.989794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.173,"geometry_index":2396,"location":[11.90037,50.985649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,249],"duration":54.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":52.089,"geometry_index":2397,"location":[11.899895,50.985522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.912,"geometry_index":2402,"location":[11.878911,50.980239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":20.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.698,"geometry_index":2403,"location":[11.878537,50.980146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":10.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.254,"geometry_index":2408,"location":[11.87062,50.978125]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.856,"geometry_index":2415,"location":[11.867171,50.976716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":6.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.434,"geometry_index":2416,"location":[11.866887,50.976557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,216],"duration":14.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":13.514,"geometry_index":2420,"location":[11.865014,50.975224]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.415,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.384,"geometry_index":2428,"location":[11.862568,50.971828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.552,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.36,"geometry_index":2429,"location":[11.862519,50.971727]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.52,"geometry_index":2430,"location":[11.862222,50.971096]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.377,"geometry_index":2431,"location":[11.86204,50.970693]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.874,"geometry_index":2433,"location":[11.861867,50.970324]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.861389,50.969282],"geometry_index":2434,"admin_index":4,"weight":0.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.081,"bearings":[16,197,227],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":2.319,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.146,"geometry_index":2435,"location":[11.861259,50.969012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.929,"geometry_index":2436,"location":[11.860991,50.968431]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.860877,50.968177],"geometry_index":2437,"admin_index":4,"weight":2.176,"is_urban":false,"turn_weight":1,"duration":1.278,"bearings":[16,196,353],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.354,"geometry_index":2438,"location":[11.860737,50.967865]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,200],"duration":3.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.232,"geometry_index":2440,"location":[11.860074,50.966456]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,207],"duration":16.765,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.508,"geometry_index":2443,"location":[11.859547,50.965632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,235],"duration":7.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.147,"geometry_index":2453,"location":[11.85533,50.962349]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.852653,50.961231],"geometry_index":2456,"admin_index":4,"weight":1.091,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.219,"bearings":[57,237,260],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":10.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.128,"geometry_index":2457,"location":[11.852238,50.96106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":2460,"location":[11.848725,50.959633]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.848418,50.959505],"geometry_index":2461,"admin_index":4,"weight":1.654,"is_urban":false,"turn_weight":1,"duration":0.734,"bearings":[30,56,237],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":0.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.85,"geometry_index":2462,"location":[11.848167,50.959402]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":5.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.346,"geometry_index":2463,"location":[11.847846,50.959268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":14.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.636,"geometry_index":2464,"location":[11.845476,50.958309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.241,"geometry_index":2476,"location":[11.840225,50.955739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,217],"duration":60.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":54.564,"geometry_index":2477,"location":[11.83989,50.955492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":23.693,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.731,"geometry_index":2490,"location":[11.834193,50.943066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":1.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.989,"geometry_index":2492,"location":[11.835362,50.938039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,352],"duration":78.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":68.531,"geometry_index":2493,"location":[11.835416,50.937803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":20.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.837,"geometry_index":2501,"location":[11.840012,50.921251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,354],"duration":18.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.577,"geometry_index":2503,"location":[11.84073,50.916786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,356],"duration":10.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.37,"geometry_index":2506,"location":[11.841266,50.912849]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.841586,50.910682],"geometry_index":2509,"admin_index":4,"weight":1.083,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.178,"bearings":[175,201,355],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":3.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.49,"geometry_index":2510,"location":[11.841623,50.910438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,355],"duration":1.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.364,"geometry_index":2511,"location":[11.841741,50.909661]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.84179,50.909356],"geometry_index":2512,"admin_index":4,"weight":3.507,"is_urban":false,"turn_weight":1,"duration":2.719,"bearings":[174,334,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":6.649,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.15,"geometry_index":2513,"location":[11.841886,50.908782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.123,"geometry_index":2514,"location":[11.842103,50.907375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":39.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.979,"geometry_index":2515,"location":[11.842144,50.90712]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,354],"duration":2.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.307,"geometry_index":2518,"location":[11.843477,50.89858]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,355],"duration":30.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.514,"geometry_index":2519,"location":[11.843554,50.898058]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":3.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.04,"geometry_index":2525,"location":[11.844728,50.891663]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":17.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.91,"geometry_index":2526,"location":[11.844844,50.890948]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":7.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.688,"geometry_index":2531,"location":[11.845466,50.886972]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[174,354],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":2534,"location":[11.845722,50.885403]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Erfurt"}],"type":"fork","modifier":"right","text":"Erfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"Exit 24 A 4"},"distanceAlongGeometry":221576.672},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Erfurt"}],"type":"fork","modifier":"right","text":"Erfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"Exit 24 A 4"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E 51.","modifier":"slight left","bearing_after":218,"bearing_before":218,"location":[13.239473,52.471589]},"speedLimitSign":"vienna","name":"","weight_typical":7323.59,"duration_typical":8084.451,"duration":8084.451,"distance":221576.672,"driving_side":"right","weight":7323.59,"mode":"driving","ref":"E 51","geometry":"iqracBajagXp|@dmAvcAluAfQ|UdqAzfBp\\dg@jkAd}AnaBp{B~dDdqEdT~Y|~C|hEheAdxAbr@j|@`i@fw@n_DziEnOfTrtBpsCz{Bn|CrkCzpDhxCt`EbShXh_CfaDheB|_ChJbMl`A`rAhcCxeDdf@lp@fT|Y~MtQhp@b}@hPjS~KvLfHzH`HxF`QbNnNnI~PlIbHnD|IbDbV`G`JnBfKjBn`@`GhDr@h`@jGzpAvRp}Bt^|d@hGbN~@xJQ|Ms@|D]jFm@tE_AxGwAhDkA`E{AnIyDxKyFxF_EzHcGrOmOdMaPzQgYbJoOjWah@lIyOlKcQpNySjJwKlJwIfFcDbKqJjIoEzHiDfM_EdGwApXsEhjDme@hj@oHf}@sLr[iDja@gFhUuC~F}@bp@_IlIiAxiAyNjFq@vHg@hEYbLUnN?zZ`At_@lEhRjDnXhIfWdK`_@jStNxJ`NxJhQvQtPtPdYx\\vkDlaEpnDxgEplA|uAzNfQbHjIbb@vf@|f@fl@bbAxkAjp@vt@zTrXdUdYfUhZjOlSjMdQvKzQxNxV|OhZxOh[rLlU`Nn\\nI`VbJdXlIdXzG~TbIvXxHzYnI|[zFjZnGhZtNpz@fxAzoJpuBfkNnJpf@zFjZnGvXxJt_@nItWvJxYlJtWbL`VnIfQlIdPvKvQlLfQxJnMlK`O~OxQxKfJjLzKdTjN~OtK|YtPzf@xXti@d[xaEd~BfSzLtQnIzTnKvPvHvNnFjNlElKjDjQzCvSrDnJbAzJl@|a@|BtR?zfBmB`f@i@hd@Cz_@MfDA|v@{@`s@s@phAi@pe@Qno@HzQnA~QfBjMfCtRnF~NlEvHzCxCjAxClAxMzGxIxEdCpAdOrJpVnS|LtK`\\j_@dWz^bNnTvNrWr_CvuE`Tz[nYr]fWjVjW~SfH|Erb@~Vt[jL`c@dLr_@lF`[fAnyDgC||ByAf_BiAxkBqAjnLgItk@hCja@~Ehd@vKpe@hNbc@pSpz@vf@zp@hj@z\\z^b^nc@|Ytb@vYne@dZfo@v[nv@rZf~@xRbs@d[rzA`kAtcGlOrx@hz@rnElEtUxm@``Dvh@loCnl@b~CfNft@jUlmAlN~s@rPzz@~@~DrHd]rIv\\pIfZtNbe@xGtPdL~YfLzWbLrVlL~T`NbWbN|S`OxRtO|Sn_@lb@`eBjjBtoAzsAnYb[ppAjtAf|CrcD|TvUxiAfmA|]|^hz@h|@tShRvO~MhQ|LtqBnkAl\\vR`W`NrO~IhlDxqBxbApk@xuBhkAxcCvuAhUdNdSbNnNzKhKdJvJpJrIfJhKzLdJvLvGlJfJpNnKvQ~L~UbMpXvLtZ`IjUpGrSxGdVxHn[nGpZtFd[zFh`@|Ela@|Cr\\`Cn\\fBt\\lAj\\|@~d@n@jq@\\pcAJfbApAroBY|WiAd`AeJdlIaGzpEk@z_@kE`bEsJ~vIqFnlCoBnxARpp@bAtr@pCbp@vDbl@dEjf@vHjt@~Fv`@fKbi@xGr\\nKvc@xa@z|AxMhl@nMhq@xEpZtJnt@pG~i@pDbg@v@nNv@bXzBds@x@dy@?xy@qAra@wBxo@_@bGcDtg@gIf|@sClUsFfd@gOr`AiVvsAgJdg@aCpMsKdl@cLpn@w{Ar`Iwh@loC}`@f}BgKnw@aIlp@gH|{@}G`cA}DzeAcBhy@QvJ{@~w@?bOZxo@?NbAn{@hCp_BnDhbCx@tvBM`kIm@phCw@~zCgAtvGGxz@Y|wDc@hrBdAdeC~Bv_AhD`|@pFzy@|IxaA`Grl@pDzX|AhLlI`m@|ZtzBnmBvcNte@djDjQfpAr^jiCte@hhDhMx}@rhA~aIpdA~mHlE`[ttAtvJdfA~wHzcBhzLjQbpAfPjiAzOj|@|CrRfFfZtAhG~GzZhHbUfIxVzIpUbInQhJ~QvItNpFdIlC|DvGvI`KxLjJvJ`LrK~J~H~IjGbKjG~KxF~JhElO`FrGxB~N`EpzA|]fp@nOh`@dJllBtc@dbFblAfh@~LfQnDpLtCvUxF`aEraAntA|[z~Bfk@|NvC`K~Bdv@hQjc@bKr[pHjz@vRvjDtx@h^dGpo@nIxKvA`b@rCd^z@B?zg@lAxFLrn@y@xj@yCtdAkLlWgEfOyCbV{EvfAwZtMkEdj@iUhmAik@zX}NzdA}g@z}@{c@j[mOlFiChnC}qAh{Ce|AvQeJvDgBdCkAjwCouAhOgHfNgGhPkHrRmHnWwJfSuG|^kJlYkH`W}EfS{D~ScChNmB|WqBbm@}C~e@kAjR@|S@li@r@bg@hDzf@rE|e@jGvh@jKbd@lKtf@hPtf@bRzh@lTxc@jW|c@xVbT`OjPdL|b@z\\ta@h^p[~Yna@~b@b`@vd@bW`YbIbJjn@tq@dj@hm@fp@vs@jX|ZhUrVpHhIhsAryA`}A`dBpt@|y@z_@bb@bl@bo@xo@|r@bk@xo@pk@do@fYz\\|X~Zhu@zy@fNnNjwAp}A`g@bh@th@`l@xb@ve@hr@rt@rpE|bFpeAzjAx`C`mC`xBn_CrIvJ~i@rn@lx@rgApXnc@|Sr]|h@hbAdO|[nj@jpAz_@hdAd[~_AlZ~dAvZvkAlPnw@lRpaApNlw@vm@flErM|~@lEv[~Jvs@nj@t~DnUn}AlGva@bIjd@`Jpd@|Mtp@lPxs@bYtfAtRzp@dh@h|Adb@xfAbb@`~@|o@znAzJ~PxJ~P|R|Zxv@|iAnaIhwK`\\jd@dtApjB~r@jdArZlf@rr@fpA~Upg@rf@liAj^p`AnMt_@h\\tfAlCvI`j@vyBzc@n{BzXtfBnd@v~Cxd@p~CpnAtqIjb@ztC@D~a@rsCrCtRzj@dzDdn@hmEnvAzmJ@HxPtiAzPteAtUnkA`Oxr@pLbd@bh@pjBvMhb@bZz{@rZdx@`n@|uAbVnf@|z@j{AzXtb@t^rg@rkAxvAnjAzxAbMpO|e@lk@xJvKnSbUz_@fg@ps@b{@z`AjiA|h@zo@riBh{Bf~Er_Gt`G|iH|p@~v@lnDveEntEjjF|cCt{Cf]l_@xsG|~H`tB~cCz{D`{ElVj\\xg@|r@hn@h_A~ItOhEfHnYph@x]tt@fYdo@xf@tlAhb@~iAx{@xhCpz@hjCjDxKvtCt~I|rB`mGjz@|lCry@`gC~`@fgA~u@dhBpUhe@fRr_@zaAp`BnMdT``D|gFptExnHdoAhrBfoAbqBz{AxhCdd@zz@h`@|{@bxAlkDd~AzxDze@hlAz\\h{@pXxq@nNp[fHhOhQt]rXnh@`Vzc@~\\~k@~cApbBxNdU|wBfiD|sApvBhuCfoElkAfgBrkA|dBzqA|bBboAxyArpAnuAxpAxpAfyChqCfc@l^vMzKboAp`A|lA~z@dfBjgA~iBffApk@p[p_@`TxuErjC``FzrCrhDthBhbDznBfrApeAfpAloAr@r@l_A`kAdk@r|@fYte@~j@tfAhk@xnApmAbhDfGhR|t@~zBbi@paBp^xhA`~Bn}GtQvh@nWnm@vGpOnRn_@dWra@x`@rh@d`@xb@b_@|]laB|wAft@dn@z[vY`\\d\\tOpQtNvRdOfThNbSvNlWrPd[`\\ls@rP`d@bKn\\hFzOpEtPnV|cAnMhr@lL|s@tJ`r@p_@~pC~Mnx@pJfi@fHtZdIl[l@`CfKr\\jK`\\zPrd@xMx\\nS|c@tRj`@`QpZv\\rh@|X~^x\\z_@jsCdzCvWd\\zW`]fVz^bVfa@dVdc@jW`i@bYvp@re@toAfk@jlB~Nne@hGpStg@fbB|Mnc@jx@jjCpUtv@zpA~eEpe@l|ArTvu@jKz^hHnUlFjOj[xaAnm@tpBxHxVff@f~Atr@~rBvt@riBnz@`bBn~@x{AjeAxtAdo@zv@h_AvhAnjBb{BpcB|qBrl@ls@jp@xz@le@~n@v_@li@xhAjbBnmAbrBld@fv@paBzpCriAtkBzs@foA~bAbbBvmA|tBdPlXlMlT|HvMd_Az~Al}@dzA|Ux`@`g@h|@jPl[vhAvyBlh@~lAh}@~aC~b@nsA|a@btAfb@~_BvaBzuGjo@biCb{@riDbc@ndB|X~hA~aAf|Ddo@biCt`@b~Ad]dvAzj@hgClWzmArk@`|Clq@j_E~r@vcEzw@rxEhn@hrDtEjY~[`lBbb@bcCtYbwAtJpc@tJr_@h[lmAfMh`@nG|RRl@f[t~@py@r~Bz{@ldCzDbL~IbW|h@~{AjaAnoCbd@hqA`W~r@~aAlsCpJtXnLh[~Zhx@~HtQbP``@jF|Ld]|o@~\\`o@t_@zm@b]bh@tm@ty@lYx\\bYd[zYdZ~[bZh]`[b`@|Yhg@n]~W~O|eAxh@xlA|c@`qEbvAl_G`mBzBt@jgFr~AhuCh|@`|El~AlsG~cCzfCry@jVvHptGbsB|aBlk@dw@~Zbx@vb@rZjQp[`Utp@xg@zl@ri@h_@b`@dOrP|MrOzYn^f^vf@b_@`j@v\\|i@zZzj@|\\hq@hW|j@~Vdn@hpC|dHhfIjwS|R`g@fa@z`AjPd^xVzf@zPd\\xWje@pPhX|Y`d@lj@xu@`Yz]~Z|\\f^n_@`_@f]nz@fs@be@d`@hkAlaAvmAbcA|}ClhC~dAp{@|cAjz@zuAtjAtsBtdBbGvExj@bd@pXbUzOdM`T~PrmAhcAppBhcBnPlMh`Anv@h|Ep~D~SdQbmAnjAno@dt@n`@ze@lf@vo@pd@~q@pu@joAfs@zrAzFlMlV|i@fOv\\hP|a@d]v{@hRvi@|Rpm@tPth@~Mvh@jMxf@bQto@zPvr@pLbg@nm@bnCj\\dzArX~lAzHx]dEpQdD`OhDnOzC|LvYzhAhJx]t`AfkDvl@xnBzj@|dBv}@xnCdq@~tB~Xn}@~HdWdQdm@fwBptGjjB~vF|`@|hAb^xdAz[v_Ajk@|dBjC|Hpu@r}BfZ`z@xZ`x@fj@vpArNrZxOp\\`Q|[nRf^~Rz]jNnV`d@rr@pZlc@zYba@x^`e@``@pc@|\\`_@jVzVbn@|j@~]xZvInGbWrQ`DrCll@xa@pb@rWfVjMhn@b_@fx@f`@~yAzu@|wApt@tx@fb@~y@pb@lZnOxSjLhp@x]~Az@~jAbl@nv@ha@j\\|Rp\\`Tt^tWnb@t\\vi@zf@rVfVpOdO`sFpsF|N|N`j@|i@bcA~bA`}@h}@teAfeApPbQ|KzKxe@zg@hSdSh]d]jIlH~~@h_A|NzNvbB`bBhq@rq@pp@rr@di@|n@zf@lq@vh@ly@lRv[jQ`\\lR~_@nJbRzkClhF~`@pw@pjCbgFtp@rpAl`@`q@tWna@`^dh@h]pd@x\\fa@|OzQtRvRnv@vs@t{@ts@bjBrxA~vEjsDleClnB|SxPvPlNtaBnqA`dAnw@pkA`{@t`Azi@|FdDjVdMvJbF`eBt{@`~@|d@ptAdw@dg@x]fc@v[be@nb@hc@zb@pXfZv]ta@zm@nz@|c@jp@zc@~w@tJ`Qfb@|z@~jClcGbrJnuTtSnf@zxAzdDpx@|kBl}@vjBho@pgAno@n_Ap|@tfAviArjAty@~p@pxAnfA~_FdnDx}C|zBxaAbs@xp@jg@nv@~i@`LnHf|@po@xW~QjpAd}@|KxH~mAxz@v}AbdAz^hTj|An}@~g@xXvS~KrMpGvn@vZrq@pZfr@~Xpp@lVzp@dUfcA|ZfdAjXzjBt`@`iAjQdr@bJ~eCdXbyCr\\~hBrRtSxBz_CrWfR`Dry@bIju@dIp_A`KdUdCr{BrVbWvC`pBxTfbAlLfxDnc@t{AtOdo@vHlzAjO|MrAbc@xE|oAjN|jRntBzOhBrHj@j[`DhoNx}AdPjB|qRnuBhiPnhBdQjB|zBbWpyRxuBd^~DrsDtc@zcBnSb}Cn[xTnCneCn]j}B~`@rWhFvbBt]jxBdh@zp@xPv}@nU~aAtXr|@jWr_Bre@bZlJvMjE`}@~WpKhDdUpHbM|D~{A`e@hPbF~jBjk@`fCvw@nGrBx|Bfp@v\\|KdfBvi@||G`vBbAZdjGfnBxV|Hx{A~d@xf@tPfIbCltAla@|HbChPbFtWdI|tAzb@bJrClyA`d@rcAf[lJtCl\\nJtWlGpRpEfd@lI`p@lJ~LdAvi@|Dh^tAlPP|YZfc@e@da@{A|s@gFve@qG|k@sJtq@aQzTyFrbF_bBnYwJx`EstAlk@qRrmGavB`gBwl@f[wIt_@aKpe@{JfZiFx^iFj[qC`\\mB|[qAha@c@|^Rh_@x@fi@hDp]bD`a@|E~h@jIjo@vLz}Chl@ri@bKtwAfX|S~D`gCve@dJdBddAvQp~@hQjj@dJfl@rHxw@lGh]rBza@[nc@Nrg@yCzl@gEfu@kKdg@sKf\\gHthAkYtsDobArnAc]`o@aPdpBii@r_@eKvg@eNpoAa]r{C_z@bRaFd{Bun@bHkB|kCqr@xcEagA`tAe[v`@eJ|hBwY`nBkLpSUjkDuDfiBsAxtAeAfnAaA~rB_Bn|A_Cf{@sCd}@yDv`@sEp^{Dz}@wJdkBiYdhBe[|AYrdEus@zlA}S`sAgUfMkCpqDin@zs@aMxuDwo@di@uJv`@iHzcA_Rza@mJxNeDnf@eO|\\gMv[sMnRwIp@YfYoOhc@_WzbCk_BlYkSdPiK`QqLpaA{p@h|@ml@pQyLhlBupAjQwLfbCm~A|s@_c@tw@_`@zQ_JrbA}`@b}@mYf_AyVnv@wOfFeAn`AsNrfEii@vEm@jkEwi@~bAuM|JsAzmAuKzb@yB~o@qDr^e@tSOlC@jd@JbSf@tv@dBjb@~BnW~Bpq@rHdy@vLvr@jN`GjAn|Aza@xsAng@tgA|g@loChpApK`F~qBnaAdaFtaCbFfCf]jPvjEdtBfz@~`@ltCxtAthAhi@nb@rSfFdCf~@vc@hDbBvUfL``Bhw@rjAlj@tN`H~KlFbb@fSrUjLt`Bnw@v{@xb@~EzBlKdFrwAnq@nXtM~Q|IbqAxn@lYhNjEtBbP|H`dA`g@ra@~Qxa@~Rp{Abt@r^fQpt@|]tw@t_@tk@vXt]tPnB~@vlAvk@baBnw@`SpJtsCptAbeDt~ArvAjq@|E~BprAlo@tb@pStWhMflBn~@flBl~@puAlo@|y@r`@|L|Fzl@fXfRnH~YrK|s@hT~a@xIdCh@la@dIbg@nGhLvAx\\|Bvj@`Cfz@h@bs@wAjn@sDf_@gE`LoA~b@yGna@yI`PsDdrDax@fx@mQpxB}f@b}Ag]lMuCz^{HddBq`@hfBg`@v[_Hvl@mMjmCmm@b{Ao\\xfA}U|ZgHnaBq^jgAqVl]{H`OgDtpCkn@rr@mM~_@uEzV{Cls@cFdv@aB`kApApr@tFzDXlW`DfsA~MrgDd_@prBvUhJbAtv@lIbHr@`xAlQhPjBvVtCtf@`Frr@tGl|AlQdYhDtY~E`YvF~TpEpz@~U|`Ab_@f|@nc@po@p`@jTxM`UdNrY`QxJfGfcAnn@|ChBfnAdv@pMbItcAzn@lgDbtBlW`Pt~B|wAnhAzq@jw@~e@~U|NfmAlz@piAv_AnVxSjh@|c@t|@`v@dShQzdClxBrO`NjJfItCfChwAnnAbWxSdGpF~JtIpqB`fBx`CxsBlcCfuBxd@v`@hpD|}CvHvGhrFdxEzoCh`CtXjVll@lj@lNzLnKjKnoB~mBjpBbhCvhBb`CtmBziCzOdTnpDfuEfW|\\fdAjtAhY`_@rPfUpBdCnCfDj~@nmAjWb]~MjQtl@|v@jUr[`a@nl@v^hl@b`@`r@nk@pcADFfnA`|Bjr@doAf^rn@fd@ly@np@xlA|c@lx@|sBlvDjDjG`b@`r@tu@lfA`JjLnRtXbxAfoBdDnEp`AbqAxp@b_Ahr@hjAl`@`u@vJxSxTne@zbAzvBb}A`gDvE`Kn{@rkBz}B|`FtmC`}FnThe@rRbb@jwBzuEbgA``CxT|e@v}AdgDzmAdlCbq@rxArNd[dkAvfCvGrNfy@|`Bv`AfdBpPlXv^|l@fe@ds@zDtFlc@|n@th@|q@vTfZha@df@dk@|o@`i@~j@lUvUzJ`KxkDziD`b@za@xW|Vzf@pe@fj@~h@tZjZn~B`~B|~Bn~BlZhZnoA~lA~Zd[~dBzcBzS`Tl[jZb[r[jXbXrNpNvhEdgEzRlQ~KnKrYpX|dBxcBllAvlAbO`OjOhOZ\\pUbVtErEdOzNtgErcE`~CzzCrdAldArmCdmCzvAnaBnNzQ`Yv^lgBp_CrPtTfqAddBhZp`@bUzZ~JrMfy@hfA`Vl[rLlO~d@jn@tZla@dmDhxE`Zh_@zY`_@f|@xbAfu@dt@ziArfAjYrSrg@x^~z@tl@jBbAz~Az`Alt@vc@t_Ank@ryChiB`t@lc@beEfgCbNpInHpEx]bTl~D`bCnMzHpZxQf`Alk@|sAvy@~nAfv@fRhLjMzH|h@|[pQxKdKlGtpD~xBvKvGzv@he@l_@|TlV|PthAhw@tYxSzX|U`PbNbwBniBl~ApsA`]lYn[bXxDbDjgEloDd|F~}EbsF|uE~xBpjB~DhD|rBteBnu@ho@`P`NpGrF~`DxmC`hH|dGh`E|gD|qCj_Cd_B|rAxfDjqCxUfSlv@|o@niDfuC`{@dp@bUtOrs@vf@hsBjfAt|@n_@bUrHpy@pXtfApYhx@bNdaAdQlUlBty@`Hv}@rEj\\JrcAfAnr@O~tAYbL@~vAHvVL|EFxJBngARzuGnAfoATnk@XxcCl@lJ@hlBl@~F@vrB^jj@N`D@jo@Trh@NdJBtj@R~c@Jhq@Ltb@Hvg@VzlARjp@TzRHpfBh@jcC|@nIEd}Bl@|kARdIDz_EdAr~AZr~Ar@dfBbGdZhBhhApJ~gArNv`AlPna@lINB~a@hJ`lAl[ze@lOre@xOnPxF|v@|Znu@f]rh@jVbpDhpBnGpDzg@tYvnArq@faBx}@z_@~SpDpBfE~Bj`Bl_AhvAh{@`}@rf@jTvLd~Av{@tNhHx]bRpQdIjb@dQ`f@~O|HvBt_@nK`n@lLhm@tHlh@|EbhBnGtRp@tvA|Dbv@dDnUv@~c@xAj^lArS|@tER`[tAdIp@pT~Apn@pHrjAfU|c@lMhdA`a@~K~FjnEb|BfFlC`Y~Nfk@`ZnmFfpCtkAtk@fnE|~B~iA`m@fyDhnBze@dVlObIt{Arx@r]~QpqA`r@laDvcBlcAbi@laDvcBrk@tZ~OhItn@z]pBhA|~@nh@jvEfdCfsA`s@zgB`bAns@`_@`PlIv_@~R~fAjq@hsArdAxw@~x@dt@f|@xnAnhB|JpQ`~@zbBnhAjqCny@rlCrNhn@n]l|AzPz}@|Ft\\to@peEbeB~rKz\\ttBpyAfdJ|y@~hFxDjV|h@zbDnHrc@p{@fpFvKvn@p@hDnFpXzI|_@fNbh@tNxd@dNv_@hJzUfKnU|HvP`Pd[hTl_@nV~]lTlXpIlK~UvVfYjWdSzOtXzQf[~P`\\~Nfp@pUhE`Blf@pQdXjJzAh@dSnHb`Az\\zObGhc@vOzNbFnRvGfn@~Sxg@lSfN|GrHzDrYbQxYhTzMxKtVfVtTjVtYf_@bQjWxPfYvQl]rMdYbUhj@tLv]xJn[jk@`kBtI|Xd_@jnAdWvy@x_@lpA~FdRlEtNjG`S|z@bsCdJzYxG~S~ZjdAfStn@tHnT~HbS~H`StJxT~Q`_@nPlZfHpKfDtFlN|SfV`[zJpMxwApqA`pC|cBnoCdcBdb@zR~q@fTll@|KfIh@bb@zCng@q@bv@kGnyAqS|w@eLf`G{z@vMkBdSeDj`Dah@hpAyV|iGilArfHstAzbCae@zgAoNhCU|bA{IbrE_a@~aBaN`hBaM~h@kCt_BgMzVoBzMgAfNiApo@kF`RaBzb@_E|vAqL|NqAro@_GzxG}j@fjEk^r_@yCzQ}A|OcBtqCkYxhBiSvI_ArcBsQtk@gFv[mCnW_C|sA{Lrg@_EtdAqIx[kCrh@cFrZoCvd@eE"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep right to take A 4 toward Erfurt.","announcement":"Keep right to take A 4 toward Erfurt.","distanceAlongGeometry":122.182}],"intersections":[{"bearings":[175,191,354],"entry":[true,true,false],"classes":["motorway"],"in":2,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.023,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":2535,"location":[11.845821,50.884799]}],"exits":"24","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Erfurt"}],"type":"fork","modifier":"right","text":"Erfurt"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"A 4"},"distanceAlongGeometry":155.515}],"destinations":"A 4, A 9: Erfurt, Frankfurt am Main, Dresden, Gera","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 24 onto A 4 toward Erfurt.","modifier":"slight right","bearing_after":191,"bearing_before":174,"location":[11.845821,50.884799]},"speedLimitSign":"vienna","name":"","weight_typical":6.929,"duration_typical":7.316,"duration":7.316,"distance":155.515,"driving_side":"right","weight":6.929,"mode":"driving","geometry":"}jw``Byj_rUvTnEb`AgC"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 16 miles.","announcement":"Continue for 16 miles.","distanceAlongGeometry":25699.406},{"ssmlAnnouncement":"In 2 miles, Take exit 52.","announcement":"In 2 miles, Take exit 52.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 52.","announcement":"In a half mile, Take exit 52.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 52 onto L 2309 toward Bucha, Milda. Then Turn left to take the A 4 ramp.","announcement":"Take exit 52 onto L 2309 toward Bucha, Milda. Then Turn left to take the A 4 ramp.","distanceAlongGeometry":274.167}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[11.845785,50.883409],"geometry_index":2537,"admin_index":4,"weight":27.736,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":30.001,"bearings":[175,192,358],"out":1,"in":2,"turn_duration":0.017,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.839571,50.879587],"geometry_index":2558,"admin_index":4,"weight":11.978,"is_urban":false,"turn_weight":11,"duration":1.07,"bearings":[69,80,259],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,259],"duration":2.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.316,"geometry_index":2559,"location":[11.839199,50.879542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,259],"duration":10.448,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.664,"geometry_index":2560,"location":[11.838304,50.879433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":6.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.61,"geometry_index":2562,"location":[11.834563,50.878988]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":2563,"location":[11.832384,50.878743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":22.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":20.569,"geometry_index":2564,"location":[11.831954,50.87869]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,263],"duration":9.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.836,"geometry_index":2569,"location":[11.823616,50.877861]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":2.625,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.356,"geometry_index":2571,"location":[11.819806,50.87755]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":9.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.738,"geometry_index":2572,"location":[11.818793,50.877468]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,262],"duration":3.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.306,"geometry_index":2573,"location":[11.815027,50.877166]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.813611,50.877043],"geometry_index":2575,"admin_index":4,"weight":4.222,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.698,"bearings":[82,263],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.811792,50.876896],"geometry_index":2576,"admin_index":4,"weight":12.351,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.729,"bearings":[83,263,277],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.806352,50.87646],"geometry_index":2579,"admin_index":4,"weight":3.053,"is_urban":false,"turn_weight":1,"duration":2.302,"bearings":[55,84,262],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,262],"duration":6.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.774,"geometry_index":2580,"location":[11.805448,50.876383]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,260],"duration":14.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.703,"geometry_index":2581,"location":[11.802914,50.876145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":1.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.048,"geometry_index":2586,"location":[11.79752,50.875134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,244],"duration":51.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":46.591,"geometry_index":2587,"location":[11.797083,50.875016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,253],"duration":4.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.855,"geometry_index":2605,"location":[11.778877,50.869161]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.271,"geometry_index":2606,"location":[11.777254,50.868841]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.34,"geometry_index":2607,"location":[11.776714,50.868736]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.776126,50.86862],"geometry_index":2608,"admin_index":4,"weight":5.877,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.536,"bearings":[73,253,277],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.773609,50.86812],"geometry_index":2612,"admin_index":4,"weight":2.526,"is_urban":false,"turn_weight":1,"duration":1.703,"bearings":[53,73,254],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,253],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.922,"geometry_index":2613,"location":[11.772934,50.867996]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":16.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.424,"geometry_index":2614,"location":[11.770792,50.867572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.903,"geometry_index":2616,"location":[11.764499,50.866332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":16.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.549,"geometry_index":2617,"location":[11.764105,50.866252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":53.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":49.374,"geometry_index":2620,"location":[11.75772,50.865091]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[129,309],"duration":4.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.566,"geometry_index":2650,"location":[11.737546,50.868927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[129,310],"duration":5.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.884,"geometry_index":2651,"location":[11.735952,50.869743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,308],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.929,"geometry_index":2652,"location":[11.734268,50.870626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,309],"duration":6.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.404,"geometry_index":2653,"location":[11.733944,50.870788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,302],"duration":45.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":42.041,"geometry_index":2655,"location":[11.7317,50.871897]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":0.874,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.786,"geometry_index":2666,"location":[11.713756,50.874665]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":20.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.567,"geometry_index":2667,"location":[11.713396,50.874693]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":7.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.671,"geometry_index":2669,"location":[11.704995,50.875411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":13.876,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.488,"geometry_index":2671,"location":[11.70203,50.875661]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.949,"geometry_index":2673,"location":[11.696431,50.876141]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":1.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.321,"geometry_index":2674,"location":[11.696018,50.876172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":54.44,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.978,"geometry_index":2675,"location":[11.695423,50.876222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,272],"duration":5.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.284,"geometry_index":2683,"location":[11.673449,50.878053]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.921,"geometry_index":2686,"location":[11.671055,50.878046]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.08,"geometry_index":2687,"location":[11.670646,50.878026]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.670166,50.877998],"geometry_index":2689,"admin_index":4,"weight":1.133,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.279,"bearings":[84,262,283],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.692,"geometry_index":2690,"location":[11.669657,50.877951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":13.106,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.796,"geometry_index":2691,"location":[11.669343,50.877921]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":0.804,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.724,"geometry_index":2696,"location":[11.664136,50.877182]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.663813,50.877133],"geometry_index":2697,"admin_index":4,"weight":2.838,"is_urban":false,"turn_weight":1,"duration":2.05,"bearings":[48,76,257],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":5.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.203,"geometry_index":2698,"location":[11.662998,50.877016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,259],"duration":2.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.306,"geometry_index":2700,"location":[11.660689,50.876677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":4.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.738,"geometry_index":2701,"location":[11.659652,50.876546]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,263],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.882,"geometry_index":2703,"location":[11.657963,50.876366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,262],"duration":30.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.189,"geometry_index":2704,"location":[11.657577,50.876335]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":9.481,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.771,"geometry_index":2718,"location":[11.645438,50.876198]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":7.065,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.706,"geometry_index":2721,"location":[11.641685,50.876536]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":0.292,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.271,"geometry_index":2723,"location":[11.638892,50.876901]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":0.642,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.609,"geometry_index":2724,"location":[11.638779,50.876917]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":0.981,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.933,"geometry_index":2725,"location":[11.638526,50.876956]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":11.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.47,"geometry_index":2726,"location":[11.638152,50.877012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":17.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.891,"geometry_index":2727,"location":[11.633996,50.877642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":2.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.185,"geometry_index":2730,"location":[11.627299,50.878658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":7.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.593,"geometry_index":2731,"location":[11.62645,50.878787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.623517,50.879237],"geometry_index":2733,"admin_index":4,"weight":8.29,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.509,"bearings":[104,284,293],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":11.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.604,"geometry_index":2735,"location":[11.620451,50.879706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":3.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.175,"geometry_index":2740,"location":[11.616241,50.880303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.615209,50.880414],"geometry_index":2741,"admin_index":4,"weight":4.724,"is_urban":false,"turn_weight":0.5,"duration":4.143,"bearings":[83,100,277],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,271],"duration":3.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.823,"geometry_index":2744,"location":[11.613867,50.880488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,266],"duration":2.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.712,"geometry_index":2746,"location":[11.612647,50.880481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":0.367,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.355,"geometry_index":2748,"location":[11.611784,50.880422]},{"tunnel_name":"Lobdeburg-Tunnel","entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[81,257],"duration":27.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.526,"geometry_index":2749,"location":[11.611675,50.880411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":0.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.461,"geometry_index":2758,"location":[11.604336,50.877769]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":0.58,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.587,"geometry_index":2759,"location":[11.604226,50.877704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,229],"duration":3.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.059,"geometry_index":2760,"location":[11.604085,50.877621]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":27.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.63,"geometry_index":2761,"location":[11.603141,50.877099]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.106,"geometry_index":2765,"location":[11.596565,50.87346]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":4.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.285,"geometry_index":2766,"location":[11.596046,50.873182]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.595042,50.87263],"geometry_index":2767,"admin_index":4,"weight":1.327,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.368,"bearings":[49,230,251],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,231],"duration":3.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.878,"geometry_index":2768,"location":[11.594701,50.872452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,235],"duration":1.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.376,"geometry_index":2770,"location":[11.593917,50.872076]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.593532,50.871909],"geometry_index":2771,"admin_index":4,"weight":3.309,"is_urban":false,"turn_weight":1,"duration":2.438,"bearings":[32,55,238],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,242],"duration":7.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.524,"geometry_index":2772,"location":[11.592871,50.871653]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,252],"duration":17.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.4,"geometry_index":2777,"location":[11.590595,50.870994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,276],"duration":17.595,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.275,"geometry_index":2786,"location":[11.585066,50.870554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,287],"duration":3.652,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.372,"geometry_index":2794,"location":[11.57967,50.87138]},{"tunnel_name":"Jagdbergtunnel","entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[107,286],"duration":162.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":146.182,"geometry_index":2796,"location":[11.578566,50.87159]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,271],"duration":2.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.883,"geometry_index":2811,"location":[11.536543,50.879036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":9.177,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.012,"geometry_index":2812,"location":[11.535753,50.879045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,261],"duration":28.878,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.269,"geometry_index":2817,"location":[11.532438,50.878912]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":49.032,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":44.129,"geometry_index":2826,"location":[11.522635,50.87665]},{"bearings":[110,293],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":2850,"location":[11.503846,50.87606]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bucha"},{"type":"text","text":"/"},{"type":"text","text":"Milda"}],"type":"off ramp","modifier":"right","text":"Bucha / Milda"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"52"},{"type":"icon","text":"L 2309"}],"type":"off ramp","modifier":"right","text":"Exit 52 L 2309"},"distanceAlongGeometry":25732.74},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Bucha"},{"type":"text","text":"/"},{"type":"text","text":"Milda"}],"type":"off ramp","modifier":"right","text":"Bucha / Milda"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"52"},{"type":"icon","text":"L 2309"}],"type":"off ramp","modifier":"right","text":"Exit 52 L 2309"},"distanceAlongGeometry":3218.688}],"destinations":"A 4: Erfurt, Frankfurt a.M., Jena","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 4 toward Erfurt.","modifier":"slight right","bearing_after":192,"bearing_before":178,"location":[11.845785,50.883409]},"speedLimitSign":"vienna","name":"","weight_typical":942.753,"duration_typical":1008.17,"duration":1008.17,"distance":25732.74,"driving_side":"right","weight":942.753,"mode":"driving","ref":"A 4; E 40","geometry":"att``Bqh_rUdKdC`HbBjRvCvKlD|JvDxLbGvNjJdKtHrLpLlMhPlJrNjJpPzIhSjHxQ~FrRzHtZ`GdZpFd_@vFfb@pJpy@zFf_@xAfVxE|v@dMxuBrL~qBhNdgChBzYzLp{BbClf@tChm@hN~|CxLxwC~IrdClGngBbDh~@zQjjFpDf_AbAfWdHtpBnE`pA`QjyEtApg@xCnw@zMj}ChChe@nG|}@pNfrAvK~{@`UrzAjFhZfUxeA~VjfAnKza@bnBfyH`p@`hCtp@xjCtKpe@tKdf@fHh]|Ff[zFl\\xFl\\hEjXhEfYdFn^hFta@xDb[bEp[~RldBpEv`@fFvc@|Gjl@bEh^jEt]xH|p@vFdi@nYzdCzl@fgFr^``D~CrWxm@lpFvL|lA~JtnAvBn[xC|g@bChl@zAdf@hAtj@f@jg@Tn{@g@fn@e@na@y@l`@{@vY_Bpd@sCzj@gDrh@eDrb@_Fnh@}F|i@mHhk@sIlk@yGra@}Hfb@eKlf@kLdg@kMtf@cKl^{Mhb@eNla@uOrb@mPjb@k`Ad~B_r@rbBev@fhBcIfS_]|y@if@hpAwXn_A}Mhf@uKvd@kNrp@}QrnAcMbjAwEzh@uEtv@gGtpAic@vxLeLpyCw@nUgUdbGsUzhGaIfwBqD``A{LxbDcObyD}@xXcBdd@s@fTqYhwH{HdqBed@nvLyUhhGeHbyBgDbhA}@pXe@`v@Et\\x@z_Af@pXRjKb@rP|Ax^z@rR~Dxr@tCj`@nLf{AlOrnBpDjc@`BdShF|q@zCn^hOxoBdGx_AhEnu@|C`r@|@bWxBni@dBpe@vArg@hApb@~BlwA\\zVXdZj@h`AZl|@Idu@[pq@m@reAsBtrAgDbkAcEdwAkEheAsG`kAiIpyAoK~rA_@`FmAxNoBjVkf@vbGyMxcB{Wz_DyVz{CaG`t@{KbtAgNdaBmO~gB{KruAcBbT{Qr~B{HnaAgChd@e@pI}En_A_AlZm@|Ye@n\\Q`c@^dg@XfSzAt`@TxEvJfrAdGlf@hGr`@xZvtAdSdm@tN|c@tPpb@lf@xeA`ObZ`CzEdDxGr_@~y@hfB~yDP`@~cA`|Bpu@z`BjPl_@na@v}@bJhTtIzSxKb[lI`W~Nhh@bKlb@tHn^rElVrEfXbErYvCrUpDp\\fDv_@|Etu@dCzm@bA`l@Trh@U|f@i@l_@kAp`@wBhg@yCvd@kEbi@aNlqAiI`u@{@hHaFtd@cI`t@_B|Nax@juH{mA~hLcnAnjLiNvqAmBnRgZtsCuPf_BsMpnAitAzoMui@vgFeItv@_Ih|@iL`xAsFngA{Arz@Qjp@?rf@Pjg@t@re@~@vc@`Cxr@jEd~@dHddAbHnv@~Gnn@~Kf{@tMdz@vVzqApEhTtp@txCnD`PjP`y@xMzw@pJbq@jIfp@zFvh@fEvc@nCz]`C|^~Bn`@|@dOlCrq@nBhm@lAxv@l@lx@I|w@cAt|@{BneA}FppAkGb_AmKpjAkEdb@}Fnd@yLty@iMtt@gPny@}YvkA"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left to take the A 4 ramp toward Frankfurt a.M..","announcement":"Turn left to take the A 4 ramp toward Frankfurt a.M..","distanceAlongGeometry":76.34}],"intersections":[{"bearings":[119,298,326],"entry":[false,true,true],"classes":["motorway"],"in":0,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.042,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":2,"geometry_index":2853,"location":[11.500823,50.876996]}],"exits":"52","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Frankfurt a.M."}],"type":"turn","modifier":"left","text":"Frankfurt a.M."},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"turn","modifier":"left","text":"A 4"},"distanceAlongGeometry":111.34}],"destinations":"L 2309: Bucha, Milda","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 52 onto L 2309 toward Bucha/Milda.","modifier":"slight right","bearing_after":326,"bearing_before":299,"location":[11.500823,50.876996]},"speedLimitSign":"vienna","name":"","weight_typical":7.652,"duration_typical":8.544,"duration":8.544,"distance":111.34,"driving_side":"right","weight":7.652,"mode":"driving","geometry":"gch``Bmp}|TqKjLaCvAcCfAkEf@gD]{CaA_CkAmCsCwBcDgDaG"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 98 miles.","announcement":"Continue for 98 miles.","distanceAlongGeometry":157196.062},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 7.","announcement":"In 1 mile, Keep left to take A 7.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 7.","announcement":"In a half mile, Keep left to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 7 toward Frankfurt, Gießen.","announcement":"Keep left to take A 7 toward Frankfurt, Gießen.","distanceAlongGeometry":168.889}],"intersections":[{"mapbox_streets_v8":{"class":"motorway_link"},"location":[11.50088,50.877871],"geometry_index":2863,"admin_index":4,"weight":32.542,"is_urban":false,"turn_weight":24.5,"duration":16.421,"bearings":[73,222,243],"out":2,"in":1,"turn_duration":7.485,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.498993,50.877703],"geometry_index":2872,"admin_index":4,"weight":13.868,"is_urban":false,"turn_weight":11.75,"duration":2.389,"bearings":[99,122,302],"out":2,"in":0,"turn_duration":0.035,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,303],"duration":3.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.583,"geometry_index":2873,"location":[11.498168,50.878026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":21.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.409,"geometry_index":2874,"location":[11.496792,50.87859]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":1.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.558,"geometry_index":2877,"location":[11.489309,50.881593]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":43.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":37.681,"geometry_index":2878,"location":[11.48871,50.881832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,297],"duration":1.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.499,"geometry_index":2886,"location":[11.473336,50.887791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,298],"duration":49.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":43.524,"geometry_index":2887,"location":[11.472717,50.887991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,288],"duration":1.315,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.184,"geometry_index":2901,"location":[11.453695,50.892699]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":6.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.986,"geometry_index":2902,"location":[11.453181,50.892806]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":1.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.541,"geometry_index":2905,"location":[11.450615,50.893448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,294],"duration":10.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.275,"geometry_index":2906,"location":[11.449969,50.893615]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,300],"duration":7.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.416,"geometry_index":2910,"location":[11.446241,50.894776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.443773,50.895716],"geometry_index":2913,"admin_index":4,"weight":3.956,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.403,"bearings":[122,303,320],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[37,125,306],"duration":2.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":2.461,"geometry_index":2917,"location":[11.442277,50.896353]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.441373,50.896773],"geometry_index":2920,"admin_index":4,"weight":3.212,"is_urban":false,"turn_weight":1,"duration":2.477,"bearings":[99,127,306],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":5.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.233,"geometry_index":2922,"location":[11.440568,50.897155]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,308],"duration":10.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.876,"geometry_index":2924,"location":[11.438665,50.898063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,308],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.957,"geometry_index":2927,"location":[11.435074,50.899796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,307],"duration":7.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.449,"geometry_index":2928,"location":[11.434729,50.899967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":21.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.595,"geometry_index":2930,"location":[11.43236,50.901106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,309],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.091,"geometry_index":2934,"location":[11.42519,50.904582]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[129,311],"duration":16.532,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.879,"geometry_index":2935,"location":[11.424814,50.904775]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,319],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.73,"geometry_index":2941,"location":[11.420003,50.90774]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,320],"duration":17.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.047,"geometry_index":2942,"location":[11.419793,50.907894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.684,"geometry_index":2949,"location":[11.415639,50.911451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":15.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":13.558,"geometry_index":2950,"location":[11.415451,50.911624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":2.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.791,"geometry_index":2954,"location":[11.411979,50.914903]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.575,"geometry_index":2955,"location":[11.411525,50.915333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":50.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":44.427,"geometry_index":2956,"location":[11.41137,50.915477]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":0.792,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.713,"geometry_index":2970,"location":[11.398301,50.926029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":11.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.49,"geometry_index":2971,"location":[11.398079,50.926169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.392,"geometry_index":2975,"location":[11.394781,50.92825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,315],"duration":9.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.703,"geometry_index":2976,"location":[11.394663,50.928328]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.571,"geometry_index":2977,"location":[11.391888,50.930061]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,314],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.426,"geometry_index":2978,"location":[11.39171,50.930172]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.391578,50.930252],"geometry_index":2979,"admin_index":4,"weight":6.008,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.695,"bearings":[134,313,341],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.389604,50.93144],"geometry_index":2982,"admin_index":4,"weight":2.398,"is_urban":false,"turn_weight":1,"duration":1.561,"bearings":[120,134,314],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,315],"duration":1.31,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.178,"geometry_index":2983,"location":[11.389186,50.931698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,314],"duration":5.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.984,"geometry_index":2984,"location":[11.388817,50.931929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,314],"duration":2.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.273,"geometry_index":2985,"location":[11.387182,50.932935]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,312],"duration":19.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.187,"geometry_index":2987,"location":[11.386446,50.933374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,290],"duration":1.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.144,"geometry_index":2997,"location":[11.379596,50.936041]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":19.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.049,"geometry_index":2998,"location":[11.379136,50.936147]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":2.556,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.364,"geometry_index":3002,"location":[11.371775,50.937612]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,282],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.076,"geometry_index":3005,"location":[11.370801,50.937772]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,280],"duration":24.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.836,"geometry_index":3006,"location":[11.370356,50.937832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":7.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.155,"geometry_index":3014,"location":[11.36117,50.93794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.358156,50.937817],"geometry_index":3015,"admin_index":4,"weight":12.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.3,"bearings":[86,267,298],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.352507,50.937606],"geometry_index":3019,"admin_index":4,"weight":1.827,"is_urban":false,"turn_weight":1,"duration":0.927,"bearings":[62,87,269],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,268],"duration":0.353,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.317,"geometry_index":3020,"location":[11.352161,50.937603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,270],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.218,"geometry_index":3021,"location":[11.35203,50.9376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.725,"geometry_index":3022,"location":[11.351928,50.9376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,274],"duration":17.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.599,"geometry_index":3024,"location":[11.349709,50.937628]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.864,"geometry_index":3032,"location":[11.342523,50.938507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,291],"duration":29.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":26.352,"geometry_index":3033,"location":[11.342144,50.938592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.979,"geometry_index":3038,"location":[11.33073,50.941254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,291],"duration":7.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.134,"geometry_index":3039,"location":[11.330299,50.94135]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,287],"duration":0.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.55,"geometry_index":3042,"location":[11.327205,50.942004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,288],"duration":27.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":24.473,"geometry_index":3043,"location":[11.326955,50.942051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.306,"geometry_index":3052,"location":[11.316057,50.943266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,272],"duration":27.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.693,"geometry_index":3053,"location":[11.315488,50.943288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,274],"duration":13.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.536,"geometry_index":3061,"location":[11.304264,50.943306]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":4.235,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.918,"geometry_index":3064,"location":[11.298906,50.943984]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":1.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.448,"geometry_index":3066,"location":[11.297245,50.944258]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.197,"geometry_index":3067,"location":[11.296693,50.944352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.295807,50.944498],"geometry_index":3068,"admin_index":4,"weight":5.604,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.08,"bearings":[105,285,308],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.293455,50.944881],"geometry_index":3070,"admin_index":4,"weight":2.647,"is_urban":false,"turn_weight":1,"duration":1.788,"bearings":[82,104,284],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":0.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.172,"geometry_index":3071,"location":[11.292786,50.94499]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.755,"geometry_index":3072,"location":[11.292715,50.945002]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.718,"geometry_index":3073,"location":[11.292414,50.945051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":1.433,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.325,"geometry_index":3074,"location":[11.290833,50.94531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.725,"geometry_index":3075,"location":[11.290271,50.945403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":1.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.584,"geometry_index":3077,"location":[11.287404,50.945873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":4.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.3,"geometry_index":3078,"location":[11.286729,50.945982]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":37.153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":34.367,"geometry_index":3079,"location":[11.284893,50.946283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":1.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.365,"geometry_index":3089,"location":[11.270015,50.947915]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":25.829,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.892,"geometry_index":3090,"location":[11.269435,50.947935]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.407,"geometry_index":3094,"location":[11.258916,50.948332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":20.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.802,"geometry_index":3095,"location":[11.258338,50.948358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":5.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.662,"geometry_index":3101,"location":[11.247949,50.949156]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":1.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.948,"geometry_index":3103,"location":[11.245382,50.949372]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.244855,50.949415],"geometry_index":3104,"admin_index":4,"weight":5.262,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.695,"bearings":[97,278,303],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.242619,50.949601],"geometry_index":3106,"admin_index":4,"weight":2.303,"is_urban":false,"turn_weight":1,"duration":1.416,"bearings":[69,97,278],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":1.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.396,"geometry_index":3107,"location":[11.242117,50.949643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":4.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.259,"geometry_index":3108,"location":[11.241562,50.94969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":3.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.554,"geometry_index":3109,"location":[11.239678,50.949852]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":21.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.782,"geometry_index":3110,"location":[11.238108,50.949989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":1.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.123,"geometry_index":3116,"location":[11.229095,50.950465]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,268],"duration":19.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":17.962,"geometry_index":3117,"location":[11.228594,50.950459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":0.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.841,"geometry_index":3121,"location":[11.220469,50.950117]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":38.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":34.705,"geometry_index":3122,"location":[11.220088,50.9501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.277,"geometry_index":3126,"location":[11.204245,50.949376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.103,"geometry_index":3127,"location":[11.203658,50.949352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.523,"geometry_index":3128,"location":[11.203185,50.949329]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":3.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.437,"geometry_index":3129,"location":[11.202951,50.949318]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.201461,50.949246],"geometry_index":3130,"admin_index":4,"weight":23.459,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.072,"bearings":[86,266,291],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.190828,50.948418],"geometry_index":3137,"admin_index":4,"weight":2.508,"is_urban":false,"turn_weight":1,"duration":1.694,"bearings":[53,76,255],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,253],"duration":6.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.614,"geometry_index":3138,"location":[11.19018,50.948309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":1.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.476,"geometry_index":3140,"location":[11.187813,50.947822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.534,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.481,"geometry_index":3141,"location":[11.187197,50.947683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":10.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.207,"geometry_index":3142,"location":[11.186991,50.947637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.949,"geometry_index":3145,"location":[11.183132,50.946786]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.961,"geometry_index":3146,"location":[11.182738,50.946702]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":0.624,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.562,"geometry_index":3148,"location":[11.179825,50.946058]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":11.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.646,"geometry_index":3149,"location":[11.179594,50.946007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.24,"geometry_index":3151,"location":[11.175268,50.945049]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":1.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.324,"geometry_index":3152,"location":[11.173949,50.944754]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.24,"geometry_index":3153,"location":[11.173441,50.944643]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.172201,50.944355],"geometry_index":3154,"admin_index":4,"weight":5.728,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.383,"bearings":[70,249,272],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.169914,50.943728],"geometry_index":3158,"admin_index":4,"weight":2.874,"is_urban":false,"turn_weight":1,"duration":2.089,"bearings":[45,65,245],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.86,"geometry_index":3160,"location":[11.169159,50.943496]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,237],"duration":3.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.212,"geometry_index":3162,"location":[11.167257,50.942823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.787,"geometry_index":3163,"location":[11.166017,50.942307]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":31.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.393,"geometry_index":3164,"location":[11.165713,50.942176]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,226],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.059,"geometry_index":3173,"location":[11.15566,50.93734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.318,"geometry_index":3174,"location":[11.155319,50.937135]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,218],"duration":12.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.243,"geometry_index":3178,"location":[11.153407,50.935862]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":3183,"location":[11.150529,50.933333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":12.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.022,"geometry_index":3184,"location":[11.150325,50.933149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":1.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.959,"geometry_index":3190,"location":[11.147499,50.930785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,224],"duration":24.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.827,"geometry_index":3191,"location":[11.147221,50.930595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":7.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.196,"geometry_index":3198,"location":[11.140018,50.927092]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.137531,50.926027],"geometry_index":3200,"admin_index":4,"weight":6.347,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.07,"bearings":[56,235,260],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.135284,50.925076],"geometry_index":3206,"admin_index":4,"weight":2.687,"is_urban":false,"turn_weight":1,"duration":1.881,"bearings":[32,58,239],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,241],"duration":6.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.422,"geometry_index":3207,"location":[11.134664,50.92484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":20.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.097,"geometry_index":3210,"location":[11.13257,50.924183]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":0.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.856,"geometry_index":3216,"location":[11.124825,50.922918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":30.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.103,"geometry_index":3217,"location":[11.124427,50.922876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":1.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.653,"geometry_index":3226,"location":[11.11288,50.920216]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":11.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.707,"geometry_index":3227,"location":[11.112199,50.920005]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.6,"geometry_index":3230,"location":[11.108295,50.918866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":75.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":66.211,"geometry_index":3231,"location":[11.108029,50.918791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":7.759,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.789,"geometry_index":3242,"location":[11.079212,50.911889]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.076169,50.911342],"geometry_index":3244,"admin_index":4,"weight":1.35,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.563,"bearings":[74,254,276],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":11.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.23,"geometry_index":3245,"location":[11.075554,50.911234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,261],"duration":1.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.049,"geometry_index":3248,"location":[11.070844,50.910496]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.07036,50.910446],"geometry_index":3249,"admin_index":4,"weight":2.73,"is_urban":false,"turn_weight":1,"duration":1.943,"bearings":[62,81,260],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,262],"duration":5.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.284,"geometry_index":3250,"location":[11.069592,50.910363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,264],"duration":0.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.314,"geometry_index":3251,"location":[11.067216,50.910165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":1.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.176,"geometry_index":3252,"location":[11.067076,50.910156]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,266],"duration":20.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.101,"geometry_index":3253,"location":[11.066554,50.910123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":33.825,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":30.437,"geometry_index":3256,"location":[11.058301,50.909751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":10.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.818,"geometry_index":3262,"location":[11.045081,50.909194]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":27.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":24.774,"geometry_index":3264,"location":[11.040818,50.908957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.424,"geometry_index":3269,"location":[11.030145,50.907981]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":57.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":51.307,"geometry_index":3270,"location":[11.02958,50.907925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":5.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.727,"geometry_index":3277,"location":[11.010668,50.90595]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":0.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.687,"geometry_index":3278,"location":[11.008931,50.905767]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":2.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.28,"geometry_index":3279,"location":[11.008683,50.905741]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":0.544,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.49,"geometry_index":3280,"location":[11.007884,50.905657]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.055,"geometry_index":3281,"location":[11.007703,50.905638]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.007312,50.905597],"geometry_index":3282,"admin_index":4,"weight":0.894,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.014,"bearings":[81,261,296],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":6.331,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.698,"geometry_index":3283,"location":[11.006972,50.905563]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.004824,50.905345],"geometry_index":3284,"admin_index":4,"weight":2.93,"is_urban":false,"turn_weight":1,"duration":2.164,"bearings":[56,81,260],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":1.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.129,"geometry_index":3285,"location":[11.004074,50.905261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":5.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.842,"geometry_index":3286,"location":[11.003646,50.905212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,258],"duration":28.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.92,"geometry_index":3287,"location":[11.001787,50.904995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.818,"geometry_index":3295,"location":[10.992146,50.903029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":28.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.887,"geometry_index":3296,"location":[10.991824,50.902954]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.239,"geometry_index":3299,"location":[10.981367,50.900519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":4.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.352,"geometry_index":3300,"location":[10.980849,50.900396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.381,"geometry_index":3302,"location":[10.979023,50.899968]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":19.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":17.882,"geometry_index":3303,"location":[10.978861,50.89993]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":8.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.261,"geometry_index":3306,"location":[10.971195,50.898149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.362,"geometry_index":3307,"location":[10.967753,50.897345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":4.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.041,"geometry_index":3308,"location":[10.966369,50.897023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":2.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.716,"geometry_index":3309,"location":[10.964698,50.896625]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":1.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.339,"geometry_index":3310,"location":[10.963571,50.896362]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.397,"geometry_index":3311,"location":[10.963052,50.896245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.961692,50.895939],"geometry_index":3312,"admin_index":4,"weight":2.129,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.321,"bearings":[70,248,262],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,249],"duration":13.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.736,"geometry_index":3313,"location":[10.960874,50.895735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.716,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.438,"geometry_index":3318,"location":[10.955917,50.894575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,248],"duration":13.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.479,"geometry_index":3320,"location":[10.954636,50.894283]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.949631,50.893206],"geometry_index":3325,"admin_index":4,"weight":2.93,"is_urban":false,"turn_weight":1,"duration":2.04,"bearings":[56,73,255],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,257],"duration":4.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.74,"geometry_index":3326,"location":[10.948846,50.893073]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,260],"duration":5.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.943,"geometry_index":3329,"location":[10.94689,50.892808]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.944834,50.892607],"geometry_index":3331,"admin_index":4,"weight":3.457,"is_urban":false,"turn_weight":1,"duration":2.605,"bearings":[63,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":2.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.457,"geometry_index":3332,"location":[10.943788,50.892531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,267],"duration":9.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.832,"geometry_index":3333,"location":[10.942745,50.892464]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,273],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":13.32,"geometry_index":3336,"location":[10.93896,50.892435]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":1.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.819,"geometry_index":3340,"location":[10.933121,50.892759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":8.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.938,"geometry_index":3342,"location":[10.932364,50.89281]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.929018,50.893019],"geometry_index":3343,"admin_index":4,"weight":1.165,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.267,"bearings":[96,276,304],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":2.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.198,"geometry_index":3344,"location":[10.928518,50.893052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":1.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.365,"geometry_index":3345,"location":[10.92758,50.893114]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,277],"duration":1.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.632,"geometry_index":3346,"location":[10.927003,50.893148]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[72,97,276],"duration":2.224,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":2.039,"geometry_index":3347,"location":[10.926306,50.893202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.916,"geometry_index":3348,"location":[10.92545,50.893254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":28.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.91,"geometry_index":3349,"location":[10.923256,50.893395]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,270],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.958,"geometry_index":3360,"location":[10.911674,50.894034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":13.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.584,"geometry_index":3361,"location":[10.911269,50.894034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,262],"duration":9.886,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.125,"geometry_index":3366,"location":[10.905685,50.89382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,262],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.306,"geometry_index":3369,"location":[10.901678,50.893437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":5.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.251,"geometry_index":3370,"location":[10.901115,50.893387]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.199,"geometry_index":3373,"location":[10.898227,50.893103]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":3.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.63,"geometry_index":3374,"location":[10.897724,50.893053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.547,"geometry_index":3375,"location":[10.89619,50.892904]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":5.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.379,"geometry_index":3376,"location":[10.895545,50.892841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,270],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.031,"geometry_index":3379,"location":[10.893134,50.8926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,261],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.48,"geometry_index":3380,"location":[10.893131,50.8926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,261],"duration":1.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.426,"geometry_index":3383,"location":[10.890227,50.892315]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":4.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.225,"geometry_index":3384,"location":[10.889602,50.892255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":23.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.378,"geometry_index":3385,"location":[10.887723,50.892074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,255],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.103,"geometry_index":3393,"location":[10.878279,50.891069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":6.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.54,"geometry_index":3394,"location":[10.87782,50.890994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":55.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.888,"geometry_index":3398,"location":[10.875502,50.890531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":1.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.096,"geometry_index":3414,"location":[10.85699,50.883007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":20.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.129,"geometry_index":3415,"location":[10.856624,50.882838]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":9.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.711,"geometry_index":3421,"location":[10.850101,50.879877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,239],"duration":0.929,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.812,"geometry_index":3426,"location":[10.846949,50.878481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":36.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":31.597,"geometry_index":3427,"location":[10.84666,50.878373]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":6.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.521,"geometry_index":3443,"location":[10.833156,50.876907]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":0.587,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.528,"geometry_index":3445,"location":[10.830794,50.877057]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":2.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.229,"geometry_index":3446,"location":[10.830587,50.87707]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.829673,50.877124],"geometry_index":3447,"admin_index":4,"weight":0.969,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.084,"bearings":[95,276,301],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":4.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.008,"geometry_index":3448,"location":[10.829262,50.877151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":1.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.035,"geometry_index":3450,"location":[10.827568,50.877263]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.827135,50.877286],"geometry_index":3451,"admin_index":4,"weight":3.138,"is_urban":false,"turn_weight":1,"duration":2.383,"bearings":[72,95,276],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.309,"geometry_index":3453,"location":[10.826233,50.877345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.902,"geometry_index":3454,"location":[10.8244,50.877464]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":1.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.703,"geometry_index":3455,"location":[10.824017,50.877486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":1.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.197,"geometry_index":3456,"location":[10.823296,50.877534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":13.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.001,"geometry_index":3457,"location":[10.822812,50.877566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,277],"duration":4.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.166,"geometry_index":3460,"location":[10.817667,50.877895]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,275],"duration":1.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.197,"geometry_index":3461,"location":[10.815884,50.878024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":23.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":20.946,"geometry_index":3462,"location":[10.815409,50.878052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":1.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.542,"geometry_index":3465,"location":[10.80627,50.878645]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":105.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":95.27,"geometry_index":3466,"location":[10.805611,50.878689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[124,305],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.841,"geometry_index":3491,"location":[10.767403,50.888084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,306],"duration":12.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.134,"geometry_index":3492,"location":[10.767126,50.888206]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,313],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.996,"geometry_index":3497,"location":[10.763442,50.890064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,313],"duration":47.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":44.139,"geometry_index":3498,"location":[10.762189,50.8908]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,301],"duration":1.113,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.012,"geometry_index":3513,"location":[10.74784,50.898849]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,301],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.995,"geometry_index":3514,"location":[10.747461,50.89899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,299],"duration":29.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.142,"geometry_index":3515,"location":[10.747106,50.899122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,278],"duration":7.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.982,"geometry_index":3525,"location":[10.736976,50.901368]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.734211,50.901555],"geometry_index":3527,"admin_index":4,"weight":3.248,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.53,"bearings":[95,273,283],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,271],"duration":12.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.265,"geometry_index":3528,"location":[10.733093,50.901586]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.729189,50.901581],"geometry_index":3532,"admin_index":4,"weight":2.207,"is_urban":false,"turn_weight":0.5,"duration":1.852,"bearings":[68,89,269],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":8.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.2,"geometry_index":3533,"location":[10.728607,50.901575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":23.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.604,"geometry_index":3534,"location":[10.725802,50.901555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":27.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":24.381,"geometry_index":3539,"location":[10.718411,50.901485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":2.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.123,"geometry_index":3542,"location":[10.709836,50.901418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":23.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":20.787,"geometry_index":3544,"location":[10.709024,50.901412]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":1.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.761,"geometry_index":3548,"location":[10.700897,50.901339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":35.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.09,"geometry_index":3549,"location":[10.700183,50.901337]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":1.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.31,"geometry_index":3558,"location":[10.687007,50.902052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,284],"duration":19.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.812,"geometry_index":3559,"location":[10.686482,50.902125]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,291],"duration":1.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.084,"geometry_index":3564,"location":[10.67959,50.90349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":52.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":45.726,"geometry_index":3565,"location":[10.679161,50.903592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,283],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.206,"geometry_index":3576,"location":[10.661127,50.90779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":55.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.91,"geometry_index":3577,"location":[10.66063,50.907864]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":3591,"location":[10.640198,50.907479]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":17.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.654,"geometry_index":3592,"location":[10.639858,50.907455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":5.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.241,"geometry_index":3599,"location":[10.63293,50.907092]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,269],"duration":26.308,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.677,"geometry_index":3601,"location":[10.630581,50.907045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.026,"geometry_index":3607,"location":[10.619766,50.906736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":2.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.454,"geometry_index":3608,"location":[10.619307,50.906715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,266],"duration":8.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.232,"geometry_index":3609,"location":[10.618244,50.906655]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,267],"duration":0.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.72,"geometry_index":3611,"location":[10.615105,50.906496]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.614797,50.906485],"geometry_index":3612,"admin_index":4,"weight":1.394,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.568,"bearings":[87,265,280],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":5.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.217,"geometry_index":3613,"location":[10.614189,50.906452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.6119,50.906331],"geometry_index":3616,"admin_index":4,"weight":1.802,"is_urban":false,"turn_weight":1,"duration":0.899,"bearings":[72,84,266],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":6.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.614,"geometry_index":3617,"location":[10.611545,50.906314]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,268],"duration":3.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.465,"geometry_index":3620,"location":[10.609057,50.90621]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,271],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.617,"geometry_index":3623,"location":[10.607526,50.906189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,273],"duration":34.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":31.331,"geometry_index":3624,"location":[10.607246,50.906191]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,300],"duration":7.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.16,"geometry_index":3638,"location":[10.594094,50.908478]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,304],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.799,"geometry_index":3641,"location":[10.59144,50.90954]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.591156,50.909662],"geometry_index":3642,"admin_index":4,"weight":1.144,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.244,"bearings":[124,306,327],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,309],"duration":24.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.974,"geometry_index":3644,"location":[10.590765,50.909842]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,312],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.976,"geometry_index":3651,"location":[10.583525,50.913934]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.583225,50.914107],"geometry_index":3652,"admin_index":4,"weight":1.933,"is_urban":false,"turn_weight":1,"duration":1.016,"bearings":[103,132,313],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,313],"duration":5.724,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.295,"geometry_index":3653,"location":[10.58294,50.914277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,311],"duration":10.62,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.823,"geometry_index":3655,"location":[10.581265,50.915236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,302],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.214,"geometry_index":3660,"location":[10.577907,50.916824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,301],"duration":8.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.866,"geometry_index":3661,"location":[10.577488,50.916987]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,295],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.82,"geometry_index":3665,"location":[10.574618,50.917973]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":1.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.535,"geometry_index":3666,"location":[10.574305,50.918066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,292],"duration":0.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.587,"geometry_index":3668,"location":[10.573732,50.918226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,293],"duration":3.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.489,"geometry_index":3669,"location":[10.573508,50.918284]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.829,"geometry_index":3671,"location":[10.572166,50.918611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":53.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":49.819,"geometry_index":3672,"location":[10.571841,50.918681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":7.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.986,"geometry_index":3682,"location":[10.550281,50.919986]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.54723,50.920066],"geometry_index":3684,"admin_index":4,"weight":1.078,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.173,"bearings":[92,273,289],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":5.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.63,"geometry_index":3685,"location":[10.546743,50.920082]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":2.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.935,"geometry_index":3687,"location":[10.544659,50.920149]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.54379,50.920175],"geometry_index":3688,"admin_index":4,"weight":4.855,"is_urban":false,"turn_weight":1,"duration":4.292,"bearings":[82,93,274],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.166,"geometry_index":3689,"location":[10.542095,50.92025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":1.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.935,"geometry_index":3690,"location":[10.541581,50.920273]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.102,"geometry_index":3691,"location":[10.541152,50.920297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":0.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.421,"geometry_index":3692,"location":[10.54067,50.920321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.288,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.152,"geometry_index":3693,"location":[10.54049,50.92033]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.4,"geometry_index":3694,"location":[10.539968,50.920356]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":0.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.74,"geometry_index":3706,"location":[10.525531,50.922321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,292],"duration":53.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":47.22,"geometry_index":3707,"location":[10.525207,50.922394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,318],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.75,"geometry_index":3726,"location":[10.507105,50.930066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,317],"duration":66.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":57.76,"geometry_index":3727,"location":[10.506869,50.93023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,334],"duration":15.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.199,"geometry_index":3745,"location":[10.489178,50.943148]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":3752,"location":[10.486936,50.946901]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":6.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.221,"geometry_index":3753,"location":[10.486849,50.947117]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,352],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.777,"geometry_index":3757,"location":[10.486293,50.948808]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.486247,50.949022],"geometry_index":3758,"admin_index":4,"weight":0.857,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.96,"bearings":[23,172,354],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,352],"duration":3.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.731,"geometry_index":3759,"location":[10.486205,50.949261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.953,"geometry_index":3761,"location":[10.486062,50.950026]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[153,174,356],"duration":1.115,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":0.997,"geometry_index":3762,"location":[10.486018,50.950296]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":5.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.109,"geometry_index":3763,"location":[10.485987,50.950586]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,180],"duration":8.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.321,"geometry_index":3766,"location":[10.485917,50.952058]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":6.728,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.048,"geometry_index":3769,"location":[10.486113,50.954162]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":26.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.223,"geometry_index":3773,"location":[10.48651,50.955907]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":0.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.477,"geometry_index":3780,"location":[10.488427,50.962854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,189],"duration":51.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.91,"geometry_index":3781,"location":[10.48846,50.962988]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,334],"duration":16.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.659,"geometry_index":3798,"location":[10.486024,50.976153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[147,325],"duration":89.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":78.688,"geometry_index":3802,"location":[10.482667,50.979944]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":0.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.36,"geometry_index":3828,"location":[10.451817,50.990933]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":7.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.644,"geometry_index":3829,"location":[10.451648,50.990963]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.448737,50.991499],"geometry_index":3832,"admin_index":4,"weight":0.997,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.127,"bearings":[107,286,306],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":14.157,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.742,"geometry_index":3833,"location":[10.448304,50.991579]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.966,"geometry_index":3836,"location":[10.442702,50.992617]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.442269,50.992688],"geometry_index":3837,"admin_index":4,"weight":2.759,"is_urban":false,"turn_weight":1,"duration":1.961,"bearings":[82,105,286],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,287],"duration":5.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.999,"geometry_index":3839,"location":[10.441483,50.992833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,286],"duration":16.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.904,"geometry_index":3840,"location":[10.439269,50.993248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":0.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.463,"geometry_index":3845,"location":[10.432653,50.994469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,286],"duration":48.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":43.771,"geometry_index":3846,"location":[10.432441,50.994505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,297],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.48,"geometry_index":3859,"location":[10.413748,50.998312]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,302],"duration":7.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.885,"geometry_index":3861,"location":[10.411232,50.999169]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.408779,51.000151],"geometry_index":3864,"admin_index":4,"weight":1.31,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.462,"bearings":[123,303,318],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":3.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.88,"geometry_index":3865,"location":[10.408306,51.000346]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.8,"geometry_index":3866,"location":[10.407254,51.00078]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.406594,51.001051],"geometry_index":3867,"admin_index":4,"weight":1.484,"is_urban":false,"turn_weight":0.5,"duration":1.104,"bearings":[111,123,306],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,303],"duration":4.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.479,"geometry_index":3868,"location":[10.406231,51.001215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,304],"duration":38.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":34.306,"geometry_index":3870,"location":[10.404552,51.001909]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,311],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.315,"geometry_index":3879,"location":[10.392091,51.007603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,311],"duration":76.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":68.688,"geometry_index":3881,"location":[10.391651,51.007843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,273],"duration":1.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.112,"geometry_index":3911,"location":[10.364521,51.017265]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":96.282,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":86.654,"geometry_index":3912,"location":[10.364039,51.01728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":1.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.375,"geometry_index":3944,"location":[10.325575,51.015184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,271],"duration":64.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":57.666,"geometry_index":3945,"location":[10.324981,51.015201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,252],"duration":23.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.805,"geometry_index":3960,"location":[10.298913,51.012995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.034,"geometry_index":3967,"location":[10.289833,51.010809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":32.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":30.497,"geometry_index":3968,"location":[10.289417,51.010688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,248],"duration":5.774,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.341,"geometry_index":3977,"location":[10.277635,51.006935]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.076,"geometry_index":3980,"location":[10.275465,51.006434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":4.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.737,"geometry_index":3981,"location":[10.275026,51.006344]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,256],"duration":2.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.073,"geometry_index":3983,"location":[10.273521,51.006077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,257],"duration":7.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.034,"geometry_index":3984,"location":[10.272679,51.005947]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.269768,51.005614],"geometry_index":3989,"admin_index":4,"weight":0.824,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.898,"bearings":[82,263,282],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":4.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.36,"geometry_index":3990,"location":[10.26943,51.005588]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.267628,51.005493],"geometry_index":3994,"admin_index":4,"weight":1.099,"is_urban":false,"turn_weight":1,"duration":0.131,"bearings":[66,86,262],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,267],"duration":1.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.604,"geometry_index":3995,"location":[10.267592,51.00549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,273],"duration":0.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.133,"geometry_index":3996,"location":[10.267016,51.00547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,268],"duration":5.112,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.729,"geometry_index":3997,"location":[10.266961,51.005472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":18.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.883,"geometry_index":3999,"location":[10.264928,51.005451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,284],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.532,"geometry_index":4008,"location":[10.257767,51.006012]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.167,"geometry_index":4009,"location":[10.257136,51.006112]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,285],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.021,"geometry_index":4010,"location":[10.256659,51.006184]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.255455,51.006401],"geometry_index":4013,"admin_index":4,"weight":1.514,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.644,"bearings":[106,286,300],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,287],"duration":21.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.879,"geometry_index":4014,"location":[10.254837,51.006509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,286],"duration":1.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.422,"geometry_index":4018,"location":[10.246755,51.008024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,287],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.231,"geometry_index":4019,"location":[10.24619,51.008123]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.245303,51.008295],"geometry_index":4020,"admin_index":4,"weight":2.599,"is_urban":false,"turn_weight":1,"duration":1.747,"bearings":[84,107,286],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.099,"geometry_index":4021,"location":[10.244637,51.008413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.84,"geometry_index":4022,"location":[10.24418,51.008491]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,283],"duration":13.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.635,"geometry_index":4023,"location":[10.242974,51.008695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,279],"duration":3.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.068,"geometry_index":4028,"location":[10.237572,51.00944]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":26.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.803,"geometry_index":4031,"location":[10.236245,51.009573]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":1.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.508,"geometry_index":4034,"location":[10.225812,51.010731]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":6.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.191,"geometry_index":4035,"location":[10.225145,51.010806]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,278],"duration":42.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":37.959,"geometry_index":4038,"location":[10.222437,51.011103]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":0.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.581,"geometry_index":4058,"location":[10.206938,51.009791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":13.187,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.867,"geometry_index":4059,"location":[10.206755,51.009735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":26.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.192,"geometry_index":4065,"location":[10.20289,51.008295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":3.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.97,"geometry_index":4084,"location":[10.191171,51.005931]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,283],"duration":3.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.754,"geometry_index":4086,"location":[10.189634,51.006124]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.18822,51.006328],"geometry_index":4087,"admin_index":5,"weight":6.093,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.776,"bearings":[103,283,293],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":5.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.036,"geometry_index":4088,"location":[10.185817,51.006675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":0.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.569,"geometry_index":4089,"location":[10.183827,51.006962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":12.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.571,"geometry_index":4090,"location":[10.183599,51.006995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":0.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.614,"geometry_index":4092,"location":[10.179081,51.007647]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":4.187,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.769,"geometry_index":4093,"location":[10.178836,51.007686]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.177345,51.007902],"geometry_index":4095,"admin_index":5,"weight":8.818,"is_urban":false,"turn_weight":1,"duration":8.694,"bearings":[92,103,283],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":6.222,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.6,"geometry_index":4096,"location":[10.174251,51.008348]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.172044,51.008672],"geometry_index":4098,"admin_index":5,"weight":8.079,"is_urban":false,"turn_weight":1,"duration":7.872,"bearings":[82,103,283],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,283],"duration":16.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.475,"geometry_index":4101,"location":[10.169245,51.009064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":7.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.114,"geometry_index":4105,"location":[10.16359,51.010031]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":5.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.543,"geometry_index":4107,"location":[10.160875,51.010656]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,291],"duration":74.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":67.328,"geometry_index":4108,"location":[10.15915,51.011058]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":4.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.023,"geometry_index":4122,"location":[10.133831,51.016729]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.096,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.959,"geometry_index":4123,"location":[10.13223,51.016816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":5.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.086,"geometry_index":4124,"location":[10.131835,51.016837]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":8.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.704,"geometry_index":4128,"location":[10.129932,51.016963]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,276],"duration":10.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.957,"geometry_index":4132,"location":[10.127043,51.017089]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.123685,51.01729],"geometry_index":4134,"admin_index":5,"weight":6.808,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.584,"bearings":[95,273,280],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,264],"duration":3.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.167,"geometry_index":4136,"location":[10.12131,51.017334]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,258],"duration":12.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.394,"geometry_index":4138,"location":[10.120072,51.017235]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,237],"duration":12.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.218,"geometry_index":4152,"location":[10.115835,51.016205]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":8.64,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.769,"geometry_index":4156,"location":[10.112152,51.014476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":11.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.964,"geometry_index":4158,"location":[10.109605,51.013275]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":2.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.904,"geometry_index":4161,"location":[10.106323,51.011752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":21.867,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.674,"geometry_index":4163,"location":[10.105673,51.01144]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":7.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.527,"geometry_index":4172,"location":[10.100048,51.007522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.779,"geometry_index":4175,"location":[10.097735,51.006457]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":16.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.113,"geometry_index":4176,"location":[10.097447,51.006328]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,212],"duration":0.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.811,"geometry_index":4185,"location":[10.092643,51.00359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":18.136,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.869,"geometry_index":4186,"location":[10.092447,51.003392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":2.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.12,"geometry_index":4191,"location":[10.089969,50.99888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":19.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.65,"geometry_index":4192,"location":[10.089716,50.998274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":7.256,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.331,"geometry_index":4200,"location":[10.087136,50.99358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":33.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.926,"geometry_index":4203,"location":[10.085723,50.991966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,233],"duration":68.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":61.934,"geometry_index":4216,"location":[10.075414,50.986616]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":2.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.697,"geometry_index":4245,"location":[10.065723,50.97055]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":31.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.827,"geometry_index":4246,"location":[10.064956,50.970004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,227],"duration":5.647,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.224,"geometry_index":4251,"location":[10.056596,50.964069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.054833,50.963161],"geometry_index":4254,"admin_index":4,"weight":1.715,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.862,"bearings":[54,237,248],"out":1,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":6.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.231,"geometry_index":4255,"location":[10.054211,50.962904]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.923,"geometry_index":4259,"location":[10.051819,50.962126]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.051453,50.962018],"geometry_index":4260,"admin_index":4,"weight":1.718,"is_urban":false,"turn_weight":1,"duration":0.783,"bearings":[42,65,245],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":5.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.093,"geometry_index":4261,"location":[10.051164,50.961932]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":4263,"location":[10.049154,50.961327]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":20.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.236,"geometry_index":4264,"location":[10.048717,50.961191]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":25.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.199,"geometry_index":4266,"location":[10.04106,50.958888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,287],"duration":0.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.591,"geometry_index":4285,"location":[10.029637,50.957655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,289],"duration":6.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.827,"geometry_index":4286,"location":[10.029382,50.957705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,301],"duration":10.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.046,"geometry_index":4291,"location":[10.026645,50.958455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,298],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.055,"geometry_index":4300,"location":[10.022384,50.960283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,296],"duration":0.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.306,"geometry_index":4301,"location":[10.021986,50.960417]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,296],"duration":7.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.743,"geometry_index":4302,"location":[10.021845,50.96046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,277],"duration":1.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.609,"geometry_index":4308,"location":[10.018547,50.961108]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,273],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.934,"geometry_index":4309,"location":[10.017728,50.961171]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,270],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.681,"geometry_index":4310,"location":[10.017304,50.961183]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.016531,50.961184],"geometry_index":4311,"admin_index":5,"weight":1.696,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.856,"bearings":[90,267,284],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,263],"duration":2.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.073,"geometry_index":4313,"location":[10.015758,50.961156]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":1.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.414,"geometry_index":4316,"location":[10.014825,50.961069]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.0142,50.960988],"geometry_index":4318,"admin_index":5,"weight":5.934,"is_urban":false,"turn_weight":1,"duration":5.354,"bearings":[69,78,255],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,244],"duration":0.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.277,"geometry_index":4322,"location":[10.012047,50.960517]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":11.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.822,"geometry_index":4323,"location":[10.01193,50.960481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.069,"geometry_index":4326,"location":[10.007457,50.959073]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":3.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.357,"geometry_index":4327,"location":[10.007009,50.958931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":14.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.446,"geometry_index":4330,"location":[10.005467,50.958445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,257],"duration":4.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.807,"geometry_index":4336,"location":[9.999001,50.95662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":1.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.123,"geometry_index":4340,"location":[9.997021,50.956403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,266],"duration":5.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.684,"geometry_index":4341,"location":[9.996528,50.95637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,270],"duration":1.112,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.994,"geometry_index":4344,"location":[9.994446,50.956324]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":23.382,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":21.044,"geometry_index":4345,"location":[9.994007,50.956322]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":17.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.623,"geometry_index":4359,"location":[9.984936,50.955254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":17.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.168,"geometry_index":4370,"location":[9.97897,50.953035]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":13.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.158,"geometry_index":4378,"location":[9.972584,50.950994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,230],"duration":2.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.694,"geometry_index":4382,"location":[9.96837,50.948858]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,231],"duration":19.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.354,"geometry_index":4384,"location":[9.967447,50.948374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":17.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.43,"geometry_index":4393,"location":[9.960867,50.945891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":18.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.328,"geometry_index":4403,"location":[9.954176,50.945037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":15.755,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.179,"geometry_index":4411,"location":[9.946919,50.945116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":18.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.034,"geometry_index":4421,"location":[9.940679,50.944777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,217],"duration":0.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.763,"geometry_index":4434,"location":[9.934514,50.942122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":0.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.159,"geometry_index":4435,"location":[9.934303,50.941948]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,218],"duration":7.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.321,"geometry_index":4436,"location":[9.934256,50.941911]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":6.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.622,"geometry_index":4437,"location":[9.932492,50.940513]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.604,"geometry_index":4439,"location":[9.930947,50.939253]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.381,"geometry_index":4440,"location":[9.930781,50.939114]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.930678,50.939029],"geometry_index":4441,"admin_index":5,"weight":5.536,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.172,"bearings":[37,215,239],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.929272,50.937715],"geometry_index":4444,"admin_index":5,"weight":3.359,"is_urban":false,"turn_weight":1,"duration":2.629,"bearings":[18,32,213],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":3.181,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.862,"geometry_index":4445,"location":[9.928694,50.93715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":8.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.801,"geometry_index":4446,"location":[9.927992,50.936467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":14.155,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.74,"geometry_index":4449,"location":[9.926078,50.934596]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":3.216,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.894,"geometry_index":4459,"location":[9.921835,50.932161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":1.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.144,"geometry_index":4460,"location":[9.920762,50.931682]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,235],"duration":30.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.54,"geometry_index":4461,"location":[9.920346,50.931493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,193],"duration":23.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.676,"geometry_index":4474,"location":[9.91385,50.926035]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,231],"duration":7.161,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.267,"geometry_index":4487,"location":[9.909566,50.921375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":68.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":59.979,"geometry_index":4489,"location":[9.90751,50.920329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":13.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.604,"geometry_index":4514,"location":[9.885736,50.91102]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,217],"duration":6.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.979,"geometry_index":4520,"location":[9.881734,50.909022]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.880304,50.907619],"geometry_index":4523,"admin_index":5,"weight":13.357,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.286,"bearings":[30,208,221],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.575,"geometry_index":4528,"location":[9.877074,50.904234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.876886,50.904106],"geometry_index":4529,"admin_index":5,"weight":1.593,"is_urban":false,"turn_weight":1,"duration":0.685,"bearings":[23,43,225],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,227],"duration":4.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.148,"geometry_index":4530,"location":[9.876692,50.903985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,235],"duration":2.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.121,"geometry_index":4533,"location":[9.87524,50.903216]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.039,"geometry_index":4534,"location":[9.874441,50.902867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":6.522,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.707,"geometry_index":4535,"location":[9.874058,50.902695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.545,"geometry_index":4536,"location":[9.871908,50.901764]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":0.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.16,"geometry_index":4538,"location":[9.871708,50.901677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":16.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.86,"geometry_index":4539,"location":[9.871652,50.901653]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,237],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.48,"geometry_index":4544,"location":[9.866077,50.899202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":6.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.981,"geometry_index":4547,"location":[9.86355,50.898236]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.861193,50.897365],"geometry_index":4549,"admin_index":5,"weight":0.717,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.816,"bearings":[59,237,246],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":10.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.593,"geometry_index":4551,"location":[9.860914,50.897251]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.85746,50.895643],"geometry_index":4554,"admin_index":5,"weight":1.999,"is_urban":false,"turn_weight":1,"duration":1.101,"bearings":[30,51,230],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":5.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.762,"geometry_index":4555,"location":[9.857136,50.895471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.716,"geometry_index":4559,"location":[9.85559,50.894636]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":9.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.464,"geometry_index":4561,"location":[9.855046,50.894333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":22.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.682,"geometry_index":4564,"location":[9.851792,50.892516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":3.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.97,"geometry_index":4576,"location":[9.84264,50.888809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,249],"duration":10.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.374,"geometry_index":4577,"location":[9.841201,50.888417]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,256],"duration":70.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":61.516,"geometry_index":4580,"location":[9.837168,50.887589]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":8.431,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.149,"geometry_index":4601,"location":[9.808837,50.884453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":2.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.795,"geometry_index":4603,"location":[9.805741,50.883478]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,237],"duration":9.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.386,"geometry_index":4604,"location":[9.804979,50.883212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":4.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.659,"geometry_index":4607,"location":[9.801597,50.881801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":0.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.604,"geometry_index":4608,"location":[9.800231,50.881227]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.764,"geometry_index":4609,"location":[9.800004,50.881131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":52.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":46.018,"geometry_index":4610,"location":[9.799722,50.881013]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,198],"duration":11.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.143,"geometry_index":4629,"location":[9.78678,50.872397]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":2.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.677,"geometry_index":4636,"location":[9.786284,50.869848]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":1.397,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.258,"geometry_index":4638,"location":[9.786317,50.869169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":14.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.768,"geometry_index":4639,"location":[9.786318,50.868873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,213],"duration":1.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.423,"geometry_index":4648,"location":[9.785128,50.866038]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,217],"duration":4.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.855,"geometry_index":4649,"location":[9.784851,50.86577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,226],"duration":1.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.741,"geometry_index":4651,"location":[9.784009,50.865116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,229],"duration":34.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":31.127,"geometry_index":4652,"location":[9.783566,50.864847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,220],"duration":132.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":122.14,"geometry_index":4667,"location":[9.773635,50.861431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,235],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.003,"geometry_index":4725,"location":[9.733494,50.855885]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":27.942,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.942,"geometry_index":4726,"location":[9.733217,50.855763]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.651,"geometry_index":4737,"location":[9.724794,50.853681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":0.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.09,"geometry_index":4739,"location":[9.724586,50.853675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":2.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.16,"geometry_index":4740,"location":[9.72456,50.853674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":4.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.185,"geometry_index":4741,"location":[9.723884,50.853653]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.733,"geometry_index":4742,"location":[9.722569,50.853612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.037,"geometry_index":4743,"location":[9.722022,50.853592]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,267],"duration":2.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.52,"geometry_index":4744,"location":[9.722003,50.853591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.721208,50.853563],"geometry_index":4745,"admin_index":5,"weight":5.726,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.593,"bearings":[87,267,289],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.373,"geometry_index":4747,"location":[9.719289,50.853507]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.718841,50.853493],"geometry_index":4748,"admin_index":5,"weight":1.539,"is_urban":false,"turn_weight":1,"duration":0.545,"bearings":[70,87,266],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,267],"duration":6.513,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.675,"geometry_index":4749,"location":[9.718653,50.853485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.866,"geometry_index":4750,"location":[9.716365,50.853409]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.078,"geometry_index":4751,"location":[9.715725,50.853386]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":0.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.771,"geometry_index":4752,"location":[9.715359,50.853374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":5.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.677,"geometry_index":4753,"location":[9.715088,50.853365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":8.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.88,"geometry_index":4755,"location":[9.713102,50.853304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,269],"duration":1.684,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.703,"geometry_index":4758,"location":[9.709981,50.853258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":1.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.066,"geometry_index":4759,"location":[9.709382,50.853253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":2.245,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.302,"geometry_index":4760,"location":[9.709011,50.853251]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":4.993,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.118,"geometry_index":4761,"location":[9.708189,50.853245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":5.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.535,"geometry_index":4762,"location":[9.706357,50.853239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.543,"geometry_index":4764,"location":[9.704317,50.853229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,271],"duration":0.712,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.712,"geometry_index":4765,"location":[9.703757,50.853229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":0.198,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.198,"geometry_index":4766,"location":[9.703494,50.853231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.385,"geometry_index":4767,"location":[9.70342,50.853231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.812,"geometry_index":4768,"location":[9.70292,50.853221]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,265],"duration":1.433,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.433,"geometry_index":4769,"location":[9.702622,50.853215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,263],"duration":2.807,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.787,"geometry_index":4770,"location":[9.702094,50.853187]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,261],"duration":2.252,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.245,"geometry_index":4772,"location":[9.701087,50.853092]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,254],"duration":12.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.19,"geometry_index":4774,"location":[9.700273,50.852994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":3.481,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.395,"geometry_index":4779,"location":[9.695876,50.852165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,254],"duration":8.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.364,"geometry_index":4780,"location":[9.694676,50.851924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":3.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.085,"geometry_index":4783,"location":[9.691605,50.851347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":14.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.383,"geometry_index":4784,"location":[9.69048,50.851133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":2.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.738,"geometry_index":4787,"location":[9.685591,50.850172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":12.456,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.521,"geometry_index":4788,"location":[9.684589,50.849978]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":3.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.363,"geometry_index":4795,"location":[9.680014,50.848856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":6.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.827,"geometry_index":4797,"location":[9.678801,50.848366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,241],"duration":1.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.992,"geometry_index":4801,"location":[9.676705,50.847521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":16.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.463,"geometry_index":4802,"location":[9.676355,50.847401]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.47,"geometry_index":4810,"location":[9.670409,50.846505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.268,"geometry_index":4811,"location":[9.669785,50.846466]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":18.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.232,"geometry_index":4812,"location":[9.668793,50.846398]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,272],"duration":4.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.018,"geometry_index":4821,"location":[9.661701,50.846004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,275],"duration":1.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.231,"geometry_index":4822,"location":[9.659942,50.846041]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":9.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.845,"geometry_index":4823,"location":[9.6594,50.846069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,279],"duration":47.124,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":41.233,"geometry_index":4826,"location":[9.655546,50.846387]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":30.096,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":25.582,"geometry_index":4842,"location":[9.637911,50.848705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":6.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.91,"geometry_index":4853,"location":[9.62739,50.845403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":19.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.33,"geometry_index":4854,"location":[9.625266,50.844252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":24.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.858,"geometry_index":4860,"location":[9.619346,50.841459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,250],"duration":29.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.161,"geometry_index":4871,"location":[9.609961,50.840723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,288],"duration":5.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.502,"geometry_index":4883,"location":[9.599095,50.84001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":13.983,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.585,"geometry_index":4885,"location":[9.597334,50.840427]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,261],"duration":2.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.699,"geometry_index":4893,"location":[9.59223,50.84101]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[77,252,269],"duration":7.146,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.587,"geometry_index":4895,"location":[9.591154,50.840878]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":8.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.16,"geometry_index":4900,"location":[9.58874,50.840333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.464,"geometry_index":4905,"location":[9.585746,50.839685]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":0.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.757,"geometry_index":4906,"location":[9.585199,50.839601]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,257],"duration":13.121,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":12.137,"geometry_index":4907,"location":[9.584923,50.839558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,239],"duration":4.297,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":3.975,"geometry_index":4913,"location":[9.581214,50.838756]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,232],"duration":9.619,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":8.897,"geometry_index":4915,"location":[9.580322,50.838405]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,216],"duration":10.037,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":9.262,"geometry_index":4920,"location":[9.57861,50.83732]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,187],"duration":5.625,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":5.203,"geometry_index":4927,"location":[9.577515,50.835896]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,352],"duration":1.177,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":0,"weight":1.089,"geometry_index":4931,"location":[9.577532,50.835002]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,348],"duration":5.184,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":0,"weight":4.795,"geometry_index":4932,"location":[9.577583,50.834854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,353],"duration":4.32,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":0,"weight":3.996,"geometry_index":4935,"location":[9.577785,50.834223]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[9.577777,50.833685],"geometry_index":4938,"admin_index":5,"weight":17.59,"is_urban":false,"turn_weight":0.75,"duration":18.24,"bearings":[4,32,208],"out":2,"in":0,"turn_duration":0.035,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":1.895,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":1.753,"geometry_index":4939,"location":[9.576583,50.832283]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[27,207],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":4940,"location":[9.576452,50.832119]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Gießen"}],"type":"fork","modifier":"left","text":"Frankfurt / Gießen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"left","text":"A 7"},"distanceAlongGeometry":157231.062},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Gießen"}],"type":"fork","modifier":"left","text":"Frankfurt / Gießen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"left","text":"A 7"},"distanceAlongGeometry":1609.344}],"destinations":"A 4: Frankfurt a.M.","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left to take the A 4 ramp toward Frankfurt a.M..","modifier":"slight left","bearing_after":243,"bearing_before":42,"location":[11.50088,50.877871]},"speedLimitSign":"vienna","name":"","weight_typical":5230.523,"duration_typical":5741.791,"duration":5741.791,"distance":157231.062,"driving_side":"right","weight":5230.523,"mode":"driving","ref":"A 4; E 40","geometry":"}yi``B_t}|T`BdJzCxKfB`JlAzL`@bJHfJUrHyAnZ_@nHeSpr@gb@~tAqChJgnBlsG{fA|rD}Mld@}~@v~Ckl@znB{sAxsEad@f|Asd@n_B}p@jdC}XxgAuZnoAoKte@uJhb@q]n`By\\tcBiK~j@{TpnAeg@x~Cw[bzBqC`Ss^bnCg_@vvCoFbb@iVzlB{MnaA}ClUuEb_@aKnr@{OlaAeJli@mIjg@iJdg@qJrf@yZjxA{Tx~@sMzg@{Mlg@g\\|gAcFrPgHzUuHjTwLr^u@pB}JpYsKjYyG|QaNj^e`@bdAqVxp@uWjq@uKrY}eAlrCuIpTob@`iAub@~hAeoAheDwiAfzCuQre@sj@|vAaKnVos@j~Ao\\np@k\\xm@{JbQ{Yhg@eb@pq@sHbLqe@|q@ae@jn@ue@vl@kb@bf@i]r_@g]d_@aJrJyIvJyA~AazBjaCyLpMg`A`dA{Yj[_HtHwj@bm@ccA`gAcd@tf@w|@f`AwlAtqA_l@to@ai@`o@kx@dfAul@l}@od@lt@{_@hq@cn@djAmm@riA}O`ZwGzL}[lm@a\\zm@g\\dm@yi@raA{CjFikBllD}EbJ_DfGgGxLcd@t|@{[zn@cObYmM`V{}@deBuPd\\wHxOeJjRaRbb@wRzf@oGrPoTbo@aWn{@oXdiAuPvx@{Hhd@qHfe@sEv[uR`|AsLjcAov@~yGwArNeBfPoAtNiC|ZwBxZuEly@kCnp@uC~uA_@dt@En^Rhd@p@~t@~FdjEtFj{DtApoA`Cz|AbB~oAhBr`BDrTDdG?jE?b_Aw@piAmAly@uDljAqFjiA_Gz|@yG~{@eGrl@sG|k@sDlZiDtVqKdt@cXjlBaq@vqEqfA~qHaF``@_E|Y{E~[uRbyAiMfiA}ArNqDzZaOd_BiMh_B_Dle@uKljBkF`mAeEhmAgDhsAoBdiAk@pb@iAt{ABfhC@xkALrwAL`qABj`AJ`}BKr_@yA`~@}GbpAs]t}DqEvf@qI`_A{Dna@cHjv@qJxdAkKdlAyExh@WlCaBxQeOxaByDbb@eLjpAeOx`ByEdi@yQvqBuDza@md@`dFeTtcCwJhuAmFxdA_Cbm@aB~m@_Bh}@gCxmBeCzmBg@fc@gFjdEoGruEwGpmFIzEs@bc@uDtlBwCjfAgNrxDgPvjEEdAwEtkAaIxyBmBrd@uA|_@aEzfAqDzbAsAj^}Ata@cIvtBqGbaBqJxiCmHryBuDpiBq@xi@k@`mACliAJh^l@bv@bAvdAbFltCtInhF`@xVvGf_EbP`}JxHpoEpHhnEn@tc@l@p\\TrMnCb|AbCxcB|JloFjCxjApGpoArGnhAzEpn@fFzl@xEng@xNtpArMfaAtGne@zAzKfSt{AzOdjA`OhhAfDrW~PdpAfUzcBdBlMtt@dsFdEdYlQlqA|Ev^~PnlApDlUbFxZpObz@|Hp`@vErUvFpWfS`{@xTxy@f_@nlAdG~QvUxq@lQ|e@rd@xmAht@hnBzrAtnDxV~p@z\\f|@~Q|b@pLpXxKhTdUlc@bU|`@pUv^tKjPba@ph@pWxZdXl[bX`[`p@~t@nJvKrRvTza@|e@r_@fd@xVf\\|Uj]zL`RzJjPlJlP`MdU`[xm@bY`p@z[zz@t^hgAtmAnuDlf@b{AbZh~@xAtEjOrc@xHfVzO|f@bE|MlF~QvMve@rPxq@`Lxh@jIfe@xLxq@jNzcAhL~fAnJviAhHvmAvNziCrAzW|JfhB`JrsA|H~~@~H`t@rLn{@|Nh}@~SjeA`b@bhBtd@lsBdLpi@fH|[lr@dpDnIzd@tCrO~QpbAd[diBvK|p@z_BzvJtq@xhEht@tjEld@`pCxu@fuFzP~uAx`@~mDrYtmC~PncBdOtxAvEle@lSbqBbLlwApKxzAbBf]dD~n@jKnsCPvG`Ar_@rDhtB`Hh`EpGdlEhBbtAlHxxFbDzgBxAfv@xKdkHh@~]dEfmCrGd{BpBnr@xOr|Ez\\r}GtHt_B`@rInBhb@bBx[pc@bbJbIp}AnG~pAvc@z|InVr_FzC~m@lJpkBr@nNfD|p@d@hJpAlWbAfTrLfeCfDzm@`BvYpLdsBbEzk@bEzi@xEpi@nNxsA`PnmAnPdlAn\\f_CfWnfBtCbS|CfUvx@htFnxA~`KtFj_@vClS~Tt|AjAbIxXdqB|w@`nFp[z|Bfq@bvEbSnuAzWlgBlOleAhFl_@bR~sAvKbr@vAnJfJrn@`TrxAzStxApOjfA`F~]dJ`p@vD|UdVv`BnKly@rN|mAfIvu@hG`p@pGx{@hCt`@tBvZdIl|AjA`b@vCj`AdCd`AhAzqANtvA_@~`A}BfkBoCjmA_Ev}AyDprAYlJkAzb@aLbpEaAf^{Bry@cA`c@kBpj@gBnt@yGbhCsHboC{B`{@mBpt@kDjsAoDprA{Bh|@q@la@cAhl@gA~q@q@f~@Wzi@?hXDt_Al@v_ApA|bAbCvmA`DzgA|DvbAhGpzAtHbzAbBdb@~Gf|AvE~aA~@fSbBl^hHz~A|Bhg@hCdj@`En}@tC~k@?Dz@zPhLnkCrAbVvB`f@hJltBd@dKlL~dChGjuAhEt}@nKt}B`Fj}@jGt|@rDfk@tCt[nClWnDj[fLvbAtDhW|Itm@`QlcAhWzqAbSbz@xId\\xH~YxYfcA|Zz~@v]jcAhb@zmAn^ndAxd@tqAjaCj~G~Ozd@nPnf@dTjn@pIzU|HrT|g@lyAjn@vfBlXjx@pTbn@xf@jvA~Z~|@pX`w@vRbm@pK~[j@xBvE`Q|Jx^lUlcArNtx@vIzj@jHdl@rGpl@`CvXhBpShCv^`Dfl@rCv}@hAln@p@~y@q@bkA{FxfC}A~m@eClbAeDdoAY|KkBbx@u@tXyAvj@eCb}@m@`ZeAf`@o@bVmFpqBk@|V_B`l@_Af]wEjnB{DtzA}FnuBaGlnBw@t\\kMtaFoNvmFeFvhBwAdh@kBtv@gB`n@wI|gD_D`dAgEdoAeFpaA_Cbf@cJxnAyUt~B}XdqBsS|jAgcAtfFaq@leDufA|jFgi@vjCmRx~@_Ktg@so@x_D{]faBmNjm@iO~n@sT~z@iUtw@ySls@eZz}@sFhPuUnp@sXps@qPlb@iR~c@}]vv@_m@hmAom@bmAkH~MeMzUqYth@{dB`_Dqf@b_AqXxh@_p@xqAgh@rgAcr@f_Bi`@lcAuMn_@kP~f@_N|b@uPpk@yGtVgGdUgXzeAeRp`AoLtp@aHx_@wRtrA{OrkA}LhqAcKfnA}FvaAwApXsEdnAaDr|A}@zdAUb}@D~u@J|hAL|s@Jjc@f@hnDDnP^p~BL|d@?f@vAttGn@zeDVtpC|@j~EH~n@@vATflAt@tmD`@`pCb@|mBBrk@LnqBQlvBm@`|AsCzoBkEfvAaHdmBcF|_A_Gx_A}Flw@qCx_@_Ezd@eJjaAcOxwAiTbdBu]pgCkExYg]r|Bei@~nDan@zdEk_@beCcO|bAwKjs@{[lxBkPvhAgIlm@cNhkA_Ifv@sC`^eF|s@{D`o@}FznAiCv|@kApo@k@fn@o@toAZ|m@d@vp@~Cd_BpJheD`Cjv@dQp}FvLv{Dn@fTB~@^hKThKfIzoC|C`_B`CboAr@htAH~LrAxcCtAvtDtAx`CTjZ~C|aDlCr{AxBlpAh@t[vBlaAfBlfAtEv{BTfR`A~d@vAjr@bAln@tAfk@`@dUt@`a@nAry@hAx}@Rv`@Fxf@LbUCnPaAj`AsA~l@mDnpAqFlkAmIjoAgHv{@kIp{@eK~x@eOjeAsCrQsOp{@yPxz@_M~j@wLrf@{Rbv@}Mhe@q^lgAsFvPaAnCeH|R}CrHoMl[iW|l@wa@b}@qg@beAgy@tcBmmApfCyIvQsIxPi`@bx@sYpn@mSbd@qKbXs[|{@oRvi@cQ|j@eIdY}Ttx@{Obo@qLfj@gHh]yDpRg@jCwGl^sB~LgGf^eKrs@kChS{Jfv@mLfiAwIreAaH|fAqGlwAiDfwAeBjpAyDfdF{GhjKuCx_EiBf~Bu@l~@_@l]cAf~@aA~aAs@hu@uC|hBm@b_@o@xYo@b]QfJs@r_@ItDoCnbAqErrAeFrsAkG`wAqHhrAsLhdBcKxpAaLhlAeLteAyNzkAoQnpAqCfSObAyMty@cJlj@cThkAeZnxA_V`fAg\\`sAgXrbA{Sbu@sZxaAwZ`_Acd@bnAuHlRySni@we@vhAqm@~rAkp@poA}Ufb@wX|e@gIvM}x@`tAikAviBer@tjAysAb{Byy@`zAov@fzAmh@fcAgj@beAoZvi@{b@hu@ae@hs@cY~_@ot@z}@ua@`d@}\\h]_X|Uug@|b@wYzT}X`S}ZbSc[vQ{_@vSyk@`Xwj@xTc^pLoLlDsVfGm[dIoX|Fc[jGkLzA}MrAkSlCmZnC{OvAcQ|@yYvAc\\x@ac@E_k@{@cj@mBkk@}Eu^cEiVmD}RgCca@_H}F}@miBi\\unAqTCAotBk`@mcBwZaUyDkGaA{e@cHmxAcPoh@oCs]aBw\\m@w{@Hep@nByt@hEgc@`Faa@~Es{@`Oqy@xRwx@jW_n@dU}y@j_@uo@r[_ZzRc{AreAcS`Pct@to@qfAlhAyGxHoWbYgh@jr@mn@h}@w]jj@qU~_@gi@tcAeb@hz@ep@t|AcN`^e]d`A_b@nqAa_@bqAaXrfAeVlfAcUrhA{RpiAkQzjA}O|iAuNnkAqHzm@kE|^kJx{@qYjlCgm@xxFc^diD{@pIyK~eA{R|iBY~B_D`Zy[bzCoXfiCqIvw@mC`ZqAdMoE|a@}XjiCwPr_BgYjpCqIjv@{RvhB{@jIgAfLiWpbCy`@lwDwOvwAcKb_AoL~jAaMxkAcHlp@yNrtAoZdhCg[~yBgOh{@uBtLwUjlAyU|eAw]huA}Vp|@ob@~uA}@vCeKp\\cZv`A}Ofh@gItU}Lz`@m\\`fAsa@`rAgqAzdEgq@psBsO~b@wi@p{Aim@j}A}^~}@y^n{@iRza@uKhViAdC{KlVau@x}Aei@feAeo@|mAoT`b@wMnVca@jy@oa@|{@w[rv@gT|g@gVzq@uVdu@uDdM_Ozf@cc@v~AyR`w@iUjfAuW`vAsMhw@eChOeMn}@uKx{@}Oh{AuHh{@uGt}@}Dro@gEf}@mD`}@cBbq@kB`q@]b]q@hn@QrlABlp@b@~}@zAb~@zBl`AfE`nAbEpz@tHbpAtDrd@jEnh@xMvzAxO`{Ax]ffDnGzp@~Flk@hLd|ApEnn@~Dps@lDrw@pBpj@fCrdAfCriBTjyAe@`yAiA`_AcIbvDgFteCcBl`AeBlaAkBnlAm@ls@a@bd@s@vcCB~~BlAl~BjBxeBzGfhDlHt~BjHnmBnJnkBfBv]vDdp@xLllBjN|kBfUpjC~O`|A|OjzAdXvyBtO`lAtS~vAvQriApU|wA~[pfBvBpKpF~X|Lvo@h]xaBrZruA~UnaAfEfQzVrdAlt@tzCp]``BpX`~ArLrt@zK`y@xC|VrDlZxChXzJvcAbGrs@nE`m@lDnm@`Dnn@hBbc@NvDr@bTn@pRfAnj@r@ja@PdNDfAf@~b@ClBp@xfAGfv@?lUk@zn@q@bj@mCjoAcCnr@aCto@mDjl@wDrn@iGp{@gElf@oCx\\yAhOs@|GcH~p@wEre@}d@viEwW`_C_KzcA_SlhBeEhb@wIlv@kFrh@{Cp[wKjjAsS~hC}Gz}@qFxz@_E|m@mB~\\_AvQoAv\\yBla@_Dvk@mn@xjL}RnrDuCth@qGniAwCtl@gD`p@cCdk@oBfm@_DrnAaAnn@Sl]En|@R~n@^n_@`DrlAvCv|@zE|z@tBd`@pFfn@zKljA~Ghl@zHbk@|Ijj@fGd^pJdi@lDhPnBlJpGpZdMvi@tWnbAdOjh@fUns@bCzHve@~xA|^zgAfPzh@~R~u@tL|i@xFf[~E`]|Gnm@nCj]dCn_@jAr[D|@v@r_@@x^MdXI|Ug@h_@mCfo@gCje@kB|]uGb`AwKjwAuTduC}Pj{BaAfMiQ~}BmUjzCmAhNiAfNeJ|lA{Zj`EuHbaAqIxfAg@nFqIhkAuKbzAyS|lC}OxgB}I`u@wJrs@{G|g@e]v_CcXxjB}CnS{aBzaLmd@`zC_j@n~CsYv{AoFfYkwAp}HwJjr@{CjVoIt{@aFxr@wBjl@gBbp@oEdlBmD`cBi@tWKbDiBfn@_Av\\eAxc@SvIaBp~@aAnt@cAvs@wEhaByDpnBmBzmBTpd@hAfa@zBbj@rBrZhCvZ|ClZpDdZ~@tGtAtJn@lEtCnQ`A~FbDdQfAzF~FpXnGdXbHtWzIlYzXtu@fd@vlA`a@hfAz[b|@dm@`aBjp@jgBvNp`@`]dbAdKdYhFlMtFhNfYzm@`g@pw@xw@zeAv]zd@h\\`f@|T|]rTta@lIjRjIfRnUzo@t`@lkA`G~P`\\j`AlMf_@bLj\\fRzc@pSxb@fOxXvTt]xOvTzRhUjKfKb_@f]v_@xWfs@n]fiAd^ryAbe@zd@xN|c@pNtd@|NzlAn_@jQ`Hd\\tNd[rQra@`Zn]xYhF|DpWhT~cA`|@ji@~c@rc@dc@t^ne@tYbh@|Rvb@|Lx[zMva@fYbdAhg@lkBrc@~aBfClJrSxt@dSjq@nLj[zMvZpQn_@dTf_@fQjVxVnZtXrYtXrU`XtQrY|O|VhKnXhIn`@hIpRvBvf@pD`~@xDd_AhEpmCxLzb@bCdg@zFte@zMpb@fO`X|Mb[`Rp_@|YrZfYfc@~h@da@|l@tk@r}@ba@|n@`lAfjB|kArjBxbCpvDtn@dbAld@zw@jQv^|P|`@lSnk@`Oze@hJt]xIv^nSxaA~DfSvEzUjD`Q`VrkAvM~o@nGhZxy@pbEbtA~yGxZf{AH`@dKfh@vKrk@jFrZvEd[~C~VrCfW`D|]lC`^bDhn@dAx]`Axo@Av^Sb^a@l_@_Clt@{Chh@_Gtr@cB|NmGpf@eF`]_Hn`@kOns@{DlNcEfOGR{Mrb@kP|e@wRni@yNza@mRhj@aJrZqHpYkGzWuAxGsDlQmF`[oFh_@eEl]_Ih{@wBpc@}Bdr@WnYAho@NtOf@r^jAx]fAtSXxElApRrAnR|BbWrA~NbFna@vN|z@fAhFpRd_AnZpuA|g@x_CzG~ZlIh`@zOht@`BvHdXrnAtu@dkDrIbg@hJfo@tGji@pBpTbA`LrD~j@fB`^pArb@`Ax]h@f[DxSj@`pABlZFtm@b@ppAH|n@h@zn@bAbc@hCrn@|C|i@zCf^pDh^~E~^tE~Z~Gz_@pGn\\tIf^|BpJnI|YlO~g@jXx}@lOhg@xK`^jMpc@lIpZ`Hf[`Qf}@f@pCf^fqBvZzeBfJbe@pIn_@fGjV|Id[~Kb]pMt\\tBpFl_@l~@zq@dbBnm@d|AlZbs@xApDx[xw@vMv\\xSfn@|Odg@tO~k@`Nnh@tOft@~Nny@lH~e@h@jD`I~k@`Hfm@vGzq@bEli@fE|m@`Djr@zAdj@~Abs@Zra@DpFT|s@a@v~@S`_Au@xzAg@`sA]ngAGzOOxf@Wvh@Szo@V~r@^|`@lB`o@pCjj@`Cp^pDr^tB~QfAtJtEz\\tFn]jGp\\fHt[nHlZ~Jj_@lOre@xQxe@bQv`@pL|UbPxXbYfb@zIdLhA|AjvAfmBvk@tu@~`@zh@tGjIhDlE~Yj]~`@dc@bThThb@bc@ti@zj@d[d[rx@ry@b^x_@vB~BzSbW~V|`@pPfXrLvUrPba@jRvh@jNla@bMr^zDdL|\\`bAxJ~XxThp@tPtg@va@|jAxK~ZjPr_@pNdXpRhZfQfSrXlXjX|ThW`Otc@dQhfA`X~MhDn\\|HfRnFhR`GfPjHl[tO|YfR~RdO|QzQnPrUjXdg@|Uvf@x]~t@d[`v@dd@lhAfc@|kAha@`oAv`@zwAxRbt@bQ`u@tJtj@~Mr}@|RxqAvEl[dGr[fIv]fMpb@rPtd@nNjZvQz[pb@hs@~b@vs@dj@h~@jV`b@hPv]`W`p@`T|q@fShu@rg@zjBdg@~gBj[pjAlWpv@rOx_@bNjYbSb_@dStZdZn_@vZfZv_@r\\tv@lm@zlAx_A`m@zo@fOhStNlT~FvJpFbKhPt\\nKlVfQrd@xT|p@vI|Vdy@jeC?@lDlKn@nBvGbRt{@d`C|]|dAv`@~nA`Rdq@lPfj@nRdq@lVn_AnShw@|`@~yAjBfGvBdHz`@rrAdWzo@li@jrAvIfStIhSfKtU|Qpb@hI`QhHtOrHhP`iApcC`D~Gla@x|@fSvd@tY`s@r]tcAn`@phAbVfw@jZfcAfStw@fH~XtKpd@~Lbm@FVtLho@nW|xAjR`qAjXfaC~Evf@xGjw@dHffAzJhqB|G~~B`I~rEdAztA`CbdBxChwAhDhaBtCxfAhDxbAtJxrB|HhmAfG|{@tI|bA|Ipx@tLpeAlPlmAvMfw@|Nx~@lFzXfYxwAta@tgBrOrn@l[pcAfJdZno@rrBzb@jtA~DdMjFrPbJrXzk@nfBbx@`dCdT|p@jNv_@rMfZtLjVdKzQfLjRxz@jlAt|@~lAp{@bkArV|\\dQ~U~UnWtR|QtOnLd\\|SrUxK|E|B|RrGvYnHnRzClTpBr\\p@bb@a@fXg@dPYnQArQJbM\\vO|AdSxDrR|E~RzG`\\fPfUbPpObMvOhPnStWjS|ZxOtZrMvYhMz\\xQjp@dHp\\hHf`@`NrlAdNnkAzMpgA~Kzn@hLzd@hMdb@zOz`@nQh_@fUz_@zBdDzTd\\drA|lBzUh^jUt]fOxZbSve@dN|`@tMvd@lI`_@tHna@vEpYrDb[hDt]rCn^hBl^nAp_@^rc@@fi@gCl`Bk@r\\w@bf@q@h_@Q~^Rn^f@~YbB|_@nC|a@hD`^tD`YrGf`@rOru@hPxw@xGd\\rThfAfMjy@bEb_@nH|aAlD~iAX~f@W~m@cAlh@wAf^}Bp]iCr^mDd]}Kn}@yOpmAuZxhCcEph@sBnf@}@xj@Zl|@fDt{@bGvn@`Et[zH`g@|E|V|Jb`@rFhPzGfSnu@xwBtKd^vMff@|Hr`@bIhh@jD~\\bDb`@lBhd@`Abk@fBl~A?BJzK@r@h@fi@pAdqAf@da@@d@v@tp@p@dq@|@vdAZ~ZNvJvC~mCl@~f@VzUP|O`Bj`BVvYnApsAZvt@Ovw@Hld@BdVJjr@JnqB?zGRruB?~a@ClO?rCRf^JrQv@~_@`AlZzBnb@pAjXpBnX|Cb[pIxw@zDx^fM~jAdO`qA`N~iA~WfeCdGti@zA~MjLheAb`@pgDbKj}@xMriAbKr}@~Jv|@~Iny@|D~[dGta@hJzf@bMjj@pFvQfXp}@jDfLjCxIhLp_@|HfWdXj~@nFzTfHz\\~I`h@lGvf@rFvf@`Dnd@fBva@pAd`@xGvrBlA~e@fC~|@v@`Y@VnCn_AlD|nAfDjmAtBnr@v@pj@~@``ADn`@iA|lBw@z`@oBlbAgBta@cLviC{YboGoO~sAcQ~x@On@ueAd}DoNbp@oGb\\oEj`@oDx`@oB`e@qAh{@@p]pAhd@zDtp@~IhjAjIty@~LpkA~QddBzMjdA~Hzm@|Op}@?@xPvw@tU~y@d\\x~@x[p{@``@x{@|fAvcC`{AxeD`^h{@~Z~~@nD~MzLfl@`CrQjGfk@bExv@bArj@v@|_Cv@t`Aj@ju@R|MzAxc@bDvj@zEpl@~Gxs@`d@~`DjI`n@dApIpIh_AdCvf@dCnu@jAzo@Axg@y@bs@qFz|@aChb@{K||@}ClVcTruAyQ|lA_Gti@mDrb@q@tIyArd@o@nb@G`k@|@za@rBxb@rCl^jCdTvEnb@fHjg@|DlYvFjZpDxRvM|z@nG|e@zE~c@xCl^fDda@tAfP`Gru@hFxm@dEb^nGjb@vF|XhK|d@|Iz[~IzYzLb[tHdP~InPlNbTxP`VxQnT~I`J|JfIrI~EdJ~E`KxEjLxC|LrA`MT~Lg@zLcBfHeB|KwDdLgChLsAdJ]fJBdJh@rvAriAfIdGbi@l`@|o@ze@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":3266.293},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 5.","announcement":"In 1 mile, Keep left to take A 5.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 5.","announcement":"In a half mile, Keep left to take A 5.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 5 toward Frankfurt, Wiesbaden.","announcement":"Keep left to take A 5 toward Frankfurt, Wiesbaden.","distanceAlongGeometry":211.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.575295,50.830662],"geometry_index":4942,"admin_index":5,"weight":17.64,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":19.089,"bearings":[27,206,213],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[9.574088,50.829074],"geometry_index":4944,"admin_index":5,"weight":6.078,"is_urban":false,"turn_weight":0.5,"duration":6.051,"bearings":[11,25,203],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,196],"duration":2.43,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":2.248,"geometry_index":4946,"location":[9.573718,50.828524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.76,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":5.328,"geometry_index":4947,"location":[9.573612,50.82829]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.573361,50.827736],"geometry_index":4948,"admin_index":5,"weight":14.064,"is_urban":false,"turn_weight":6,"duration":8.729,"bearings":[16,23,202],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":7.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.009,"geometry_index":4952,"location":[9.572405,50.826037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.556,"geometry_index":4954,"location":[9.571621,50.82449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,199],"duration":18.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.503,"geometry_index":4955,"location":[9.571353,50.823924]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":8.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.716,"geometry_index":4966,"location":[9.568099,50.820698]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,237],"duration":4.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.635,"geometry_index":4970,"location":[9.565964,50.819661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":30.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.264,"geometry_index":4972,"location":[9.564861,50.819217]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,268],"duration":36.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.993,"geometry_index":4991,"location":[9.555373,50.818755]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":9.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.219,"geometry_index":5007,"location":[9.545382,50.815109]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,222],"duration":1.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.961,"geometry_index":5012,"location":[9.54332,50.813771]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[42,221],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":5013,"location":[9.543065,50.813589]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"left","text":"Frankfurt / Wiesbaden"},"distanceAlongGeometry":3292.96},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"left","text":"Frankfurt / Wiesbaden"},"distanceAlongGeometry":1609.344}],"destinations":"A 7: Frankfurt, Gießen, Würzburg, Fulda","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 7 toward Frankfurt/Gießen/Würzburg/Fulda.","modifier":"slight left","bearing_after":206,"bearing_before":207,"location":[9.575295,50.830662]},"speedLimitSign":"vienna","name":"","weight_typical":153.89,"duration_typical":161.603,"duration":161.603,"distance":3292.96,"driving_side":"right","weight":153.89,"mode":"driving","ref":"A 7; E 40; E 45","geometry":"ksm}_B}vlgQhdAht@|\\bU`@Th`@lUrMrEra@tNxZlPlRtInZxMl^xOlaA`a@f]|Mjb@vO|UpKrHrDrIzEjP~JvMfJfRzOfXlXzOpQvN`Rj]hj@xQx^tEhJpYls@rKjZ|Qhi@lXx}@hAbEjLpb@hLxh@jFx[pBfOnBbPpCf[vBh]xA~]r@fZJnN?pMe@|d@y@x]eBj_@eH~lAsBz^mBh_@kAn`@Qv\\^zj@~@jb@hBh\\nBvZdClXbCfSbEhXvF`\\dLrg@|Ljc@bS`h@nYbo@hA~BlmAlmCt`@h}@tFbLxQ`_@`HdMvItOli@d}@pAvBjJ|NbGhJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 78 miles.","announcement":"Continue for 78 miles.","distanceAlongGeometry":126265.852},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 22.","announcement":"In 2 miles, Keep right to take exit 22.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 22.","announcement":"In a half mile, Keep right to take exit 22.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 22 onto A 3, B 43 toward Wiesbaden, Frankfurt. Then Keep left at the fork.","announcement":"Keep right to take exit 22 onto A 3, B 43 toward Wiesbaden, Frankfurt. Then Keep left at the fork.","distanceAlongGeometry":291.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.542884,50.813459],"geometry_index":5014,"admin_index":5,"weight":2.238,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.51,"bearings":[41,217,231],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":2.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.639,"geometry_index":5015,"location":[9.542311,50.812979]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.734,"geometry_index":5016,"location":[9.54161,50.812425]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":0.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.066,"geometry_index":5017,"location":[9.541419,50.812274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":11.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.294,"geometry_index":5018,"location":[9.541401,50.81226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,225],"duration":2.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.517,"geometry_index":5022,"location":[9.538619,50.810153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,231],"duration":7.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.948,"geometry_index":5024,"location":[9.537878,50.809696]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,244],"duration":12.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.484,"geometry_index":5029,"location":[9.535623,50.80872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.531298,50.807948],"geometry_index":5036,"admin_index":5,"weight":5.26,"is_urban":false,"turn_weight":1,"duration":4.752,"bearings":[79,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":36.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.509,"geometry_index":5038,"location":[9.529644,50.807822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":0.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.704,"geometry_index":5056,"location":[9.517095,50.807824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,282],"duration":1.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.585,"geometry_index":5057,"location":[9.51682,50.807867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,281],"duration":1.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.162,"geometry_index":5058,"location":[9.516197,50.807952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,278],"duration":5.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.142,"geometry_index":5059,"location":[9.515737,50.808008]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":11.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.107,"geometry_index":5063,"location":[9.513668,50.80809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,246],"duration":5.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.282,"geometry_index":5071,"location":[9.509695,50.807567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,240],"duration":0.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.298,"geometry_index":5074,"location":[9.507803,50.80694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,233],"duration":8.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.412,"geometry_index":5075,"location":[9.507708,50.806905]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.505422,50.805837],"geometry_index":5078,"admin_index":5,"weight":8.337,"is_urban":false,"turn_weight":1,"duration":8.393,"bearings":[39,54,234],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,232],"duration":8.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.146,"geometry_index":5081,"location":[9.503221,50.804828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,220],"duration":26.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.587,"geometry_index":5086,"location":[9.501258,50.803713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.778,"geometry_index":5097,"location":[9.495778,50.799478]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":20.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":18.27,"geometry_index":5098,"location":[9.495531,50.799361]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.008,"geometry_index":5112,"location":[9.486358,50.797288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":8.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.241,"geometry_index":5113,"location":[9.485914,50.79722]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":4.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.56,"geometry_index":5117,"location":[9.483583,50.796632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":0.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.409,"geometry_index":5119,"location":[9.482483,50.796268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":8.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.476,"geometry_index":5120,"location":[9.482357,50.796225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":0.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.658,"geometry_index":5121,"location":[9.480376,50.795544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":6.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.112,"geometry_index":5122,"location":[9.480202,50.795484]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.478583,50.794913],"geometry_index":5124,"admin_index":5,"weight":25.954,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.67,"bearings":[61,242,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,227],"duration":4.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.505,"geometry_index":5136,"location":[9.472366,50.791478]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.471525,50.791015],"geometry_index":5139,"admin_index":5,"weight":10.223,"is_urban":false,"turn_weight":1,"duration":10.549,"bearings":[31,51,235],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,259],"duration":8.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.666,"geometry_index":5147,"location":[9.468414,50.790107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":0.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.228,"geometry_index":5156,"location":[9.465566,50.790032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,280],"duration":0.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.415,"geometry_index":5157,"location":[9.465482,50.790039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,281],"duration":18.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.581,"geometry_index":5158,"location":[9.465317,50.790058]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,297],"duration":7.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.577,"geometry_index":5170,"location":[9.45909,50.791762]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":2.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.423,"geometry_index":5174,"location":[9.456666,50.792512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,289],"duration":2.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.8,"geometry_index":5176,"location":[9.455752,50.792759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,284],"duration":20.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.966,"geometry_index":5178,"location":[9.45505,50.7929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,233],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.975,"geometry_index":5198,"location":[9.447991,50.792167]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":6.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.902,"geometry_index":5199,"location":[9.447651,50.792006]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.445808,50.790912],"geometry_index":5203,"admin_index":5,"weight":8.256,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.457,"bearings":[44,223,239],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.443312,50.78933],"geometry_index":5207,"admin_index":5,"weight":5.49,"is_urban":false,"turn_weight":1,"duration":5.141,"bearings":[32,49,231],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":6.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.932,"geometry_index":5210,"location":[9.441774,50.78863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.857,"geometry_index":5215,"location":[9.439496,50.78797]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":0.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.321,"geometry_index":5217,"location":[9.438307,50.787723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":55.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":48.248,"geometry_index":5218,"location":[9.438168,50.787695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.374,"geometry_index":5233,"location":[9.417457,50.783057]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":167.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":146.621,"geometry_index":5234,"location":[9.417299,50.783021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,256],"duration":6.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.578,"geometry_index":5291,"location":[9.365041,50.760927]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.362754,50.760546],"geometry_index":5294,"admin_index":5,"weight":20.008,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.256,"bearings":[74,250,259],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.355002,50.758336],"geometry_index":5301,"admin_index":5,"weight":1.262,"is_urban":false,"turn_weight":1,"duration":0.301,"bearings":[62,68,252],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,250],"duration":4.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.255,"geometry_index":5302,"location":[9.354898,50.758314]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":96.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":84.35,"geometry_index":5304,"location":[9.353167,50.75792]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,270],"duration":1.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.936,"geometry_index":5344,"location":[9.316967,50.756846]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":31.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":28.458,"geometry_index":5345,"location":[9.316534,50.756847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,222],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.882,"geometry_index":5364,"location":[9.303165,50.753177]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":10.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.721,"geometry_index":5365,"location":[9.302903,50.752994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,209],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.296,"geometry_index":5370,"location":[9.300507,50.750892]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.266,"geometry_index":5371,"location":[9.299829,50.750122]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":2.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.564,"geometry_index":5372,"location":[9.299574,50.749823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.29905,50.749215],"geometry_index":5373,"admin_index":5,"weight":5.77,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.258,"bearings":[29,208,225],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.297874,50.747833],"geometry_index":5374,"admin_index":5,"weight":1.866,"is_urban":false,"turn_weight":1,"duration":0.943,"bearings":[13,28,210],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,209],"duration":2.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.431,"geometry_index":5375,"location":[9.297691,50.747631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.857,"geometry_index":5376,"location":[9.297184,50.747063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":2.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.638,"geometry_index":5377,"location":[9.297003,50.74686]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,217],"duration":29.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.267,"geometry_index":5379,"location":[9.296377,50.746263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,270],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.973,"geometry_index":5395,"location":[9.286314,50.742969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":22.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.346,"geometry_index":5396,"location":[9.285907,50.742968]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,255],"duration":10.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.113,"geometry_index":5405,"location":[9.276826,50.742567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.254,"geometry_index":5410,"location":[9.272932,50.741698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":13.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.61,"geometry_index":5411,"location":[9.272472,50.741574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":2.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.135,"geometry_index":5416,"location":[9.267507,50.740249]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":20.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.191,"geometry_index":5417,"location":[9.266737,50.740043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.123,"geometry_index":5422,"location":[9.259339,50.738251]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":26.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.885,"geometry_index":5423,"location":[9.258902,50.738163]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,259],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.793,"geometry_index":5432,"location":[9.248365,50.736538]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,258],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.824,"geometry_index":5433,"location":[9.248015,50.736495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,258],"duration":6.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.867,"geometry_index":5434,"location":[9.247647,50.736447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.245078,50.736085],"geometry_index":5437,"admin_index":5,"weight":5.923,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.588,"bearings":[76,256,267],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.242765,50.735652],"geometry_index":5439,"admin_index":5,"weight":0.986,"is_urban":false,"turn_weight":0.5,"duration":0.561,"bearings":[65,73,251],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":5.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.184,"geometry_index":5440,"location":[9.242559,50.735606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":16.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.066,"geometry_index":5444,"location":[9.240449,50.735076]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,231],"duration":55.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":50.285,"geometry_index":5452,"location":[9.234776,50.732957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.77,"geometry_index":5472,"location":[9.216476,50.725328]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":9.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.767,"geometry_index":5473,"location":[9.216177,50.725226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.187,"geometry_index":5477,"location":[9.212715,50.724059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":89.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":78.435,"geometry_index":5478,"location":[9.212251,50.7239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,278],"duration":1.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.103,"geometry_index":5508,"location":[9.183853,50.711707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":4.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.843,"geometry_index":5509,"location":[9.183362,50.711752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,284],"duration":1.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.369,"geometry_index":5513,"location":[9.181674,50.711981]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":36.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.217,"geometry_index":5514,"location":[9.181081,50.712078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.693,"geometry_index":5531,"location":[9.166551,50.711962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,263],"duration":51.256,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":43.566,"geometry_index":5532,"location":[9.166242,50.711941]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.02,"geometry_index":5555,"location":[9.146226,50.713037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,291],"duration":69.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":58.984,"geometry_index":5556,"location":[9.145778,50.713153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":5.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.439,"geometry_index":5576,"location":[9.117595,50.715647]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.414,"geometry_index":5578,"location":[9.115499,50.71555]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,263],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.287,"geometry_index":5579,"location":[9.115319,50.715539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.115191,50.715529],"geometry_index":5580,"admin_index":5,"weight":12.76,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.604,"bearings":[83,262,277],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.109659,50.714868],"geometry_index":5586,"admin_index":5,"weight":5.977,"is_urban":false,"turn_weight":1,"duration":5.695,"bearings":[70,79,259],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,267],"duration":25.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.166,"geometry_index":5589,"location":[9.107451,50.714641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,282],"duration":8.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.775,"geometry_index":5601,"location":[9.097495,50.715674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":0.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.43,"geometry_index":5603,"location":[9.094163,50.716139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":18.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.785,"geometry_index":5604,"location":[9.09399,50.716164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,279],"duration":23.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.166,"geometry_index":5609,"location":[9.087587,50.717011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,252],"duration":30.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.432,"geometry_index":5620,"location":[9.079311,50.716747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":0.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.338,"geometry_index":5632,"location":[9.070239,50.713023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":2.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.762,"geometry_index":5633,"location":[9.070146,50.712963]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":13.164,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.512,"geometry_index":5634,"location":[9.069675,50.712658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,225],"duration":2.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.512,"geometry_index":5638,"location":[9.066617,50.7107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,227],"duration":3.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.963,"geometry_index":5639,"location":[9.065937,50.710274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":38.365,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":33.562,"geometry_index":5640,"location":[9.065112,50.709788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.705,"geometry_index":5651,"location":[9.054619,50.705286]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,237],"duration":19.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.01,"geometry_index":5652,"location":[9.05439,50.7052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,227],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.479,"geometry_index":5658,"location":[9.049328,50.702616]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,223],"duration":2.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.402,"geometry_index":5659,"location":[9.049184,50.702531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":13.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.463,"geometry_index":5661,"location":[9.048476,50.702046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":1.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.521,"geometry_index":5668,"location":[9.045467,50.699522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":82.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":73.807,"geometry_index":5669,"location":[9.045123,50.699173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,213],"duration":1.322,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.189,"geometry_index":5701,"location":[9.031685,50.680922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,211],"duration":42.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":38.361,"geometry_index":5702,"location":[9.031407,50.680654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,205],"duration":1.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.219,"geometry_index":5713,"location":[9.024331,50.671016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,204],"duration":55.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":50.172,"geometry_index":5714,"location":[9.02411,50.670709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,214],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.826,"geometry_index":5733,"location":[9.016301,50.657899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":4.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.408,"geometry_index":5734,"location":[9.016104,50.657714]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":14.52,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.061,"geometry_index":5737,"location":[9.015006,50.656756]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,227],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.156,"geometry_index":5742,"location":[9.011237,50.654193]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,226],"duration":35.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":31.508,"geometry_index":5743,"location":[9.01087,50.653975]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,227],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.893,"geometry_index":5749,"location":[9.001121,50.64805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,226],"duration":25.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.777,"geometry_index":5750,"location":[9.00084,50.647884]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":3.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.98,"geometry_index":5762,"location":[8.992816,50.644275]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.047,"geometry_index":5764,"location":[8.991566,50.644027]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":2.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.148,"geometry_index":5765,"location":[8.991127,50.643941]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.990274,50.643773],"geometry_index":5766,"admin_index":5,"weight":4.973,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.543,"bearings":[73,252,276],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.988189,50.643344],"geometry_index":5768,"admin_index":5,"weight":7.383,"is_urban":false,"turn_weight":1,"duration":7.1,"bearings":[61,72,252],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,256],"duration":21.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.793,"geometry_index":5771,"location":[8.985493,50.642811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.668,"geometry_index":5776,"location":[8.976975,50.641559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":19.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.301,"geometry_index":5777,"location":[8.976689,50.641519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":6.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.285,"geometry_index":5780,"location":[8.96931,50.640473]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.966597,50.640201],"geometry_index":5783,"admin_index":5,"weight":17.092,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.996,"bearings":[83,263,282],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.960654,50.63983],"geometry_index":5788,"admin_index":5,"weight":5.891,"is_urban":false,"turn_weight":1,"duration":5.441,"bearings":[75,84,265],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":3.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.412,"geometry_index":5789,"location":[8.958349,50.639703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":0.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.736,"geometry_index":5790,"location":[8.956705,50.63961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,265],"duration":37.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.678,"geometry_index":5791,"location":[8.956358,50.639585]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.932,"geometry_index":5804,"location":[8.940987,50.637799]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,244],"duration":18.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.334,"geometry_index":5805,"location":[8.940554,50.637675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.752,"geometry_index":5808,"location":[8.93346,50.635415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":12.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.711,"geometry_index":5809,"location":[8.933129,50.635309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":6.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.119,"geometry_index":5811,"location":[8.928619,50.633867]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.926036,50.633046],"geometry_index":5813,"admin_index":5,"weight":4.26,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.875,"bearings":[64,243],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,241],"duration":1.27,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.125,"geometry_index":5814,"location":[8.924243,50.632469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":0.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.463,"geometry_index":5815,"location":[8.923826,50.632325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.09,"geometry_index":5816,"location":[8.923645,50.632269]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":4.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.277,"geometry_index":5817,"location":[8.923218,50.632129]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":52.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":45.752,"geometry_index":5818,"location":[8.921501,50.631581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.07,"geometry_index":5825,"location":[8.902609,50.625508]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.23,"geometry_index":5826,"location":[8.902158,50.625358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":10.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.789,"geometry_index":5827,"location":[8.901645,50.625186]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.898053,50.623876],"geometry_index":5830,"admin_index":5,"weight":14.242,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.283,"bearings":[59,239,255],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.892859,50.621943],"geometry_index":5834,"admin_index":5,"weight":1.061,"is_urban":false,"turn_weight":1,"duration":0.104,"bearings":[51,60,232],"out":2,"in":1,"turn_duration":0.036,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,240],"duration":0.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.225,"geometry_index":5835,"location":[8.892841,50.621934]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.145,"geometry_index":5836,"location":[8.89275,50.6219]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":4.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.271,"geometry_index":5837,"location":[8.892313,50.621737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":82.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":72.389,"geometry_index":5839,"location":[8.89059,50.6211]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":57.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":52.09,"geometry_index":5856,"location":[8.860328,50.612134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,271],"duration":0.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.801,"geometry_index":5872,"location":[8.836659,50.61222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":12.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.539,"geometry_index":5873,"location":[8.836305,50.612224]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.1,"geometry_index":5884,"location":[8.831404,50.611867]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.828958,50.611267],"geometry_index":5888,"admin_index":5,"weight":11.166,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.1,"bearings":[65,240,246],"out":1,"in":0,"turn_duration":0.028,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":1.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.262,"geometry_index":5898,"location":[8.825074,50.609454]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,220],"duration":11.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.338,"geometry_index":5899,"location":[8.82469,50.609202]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.822141,50.606764],"geometry_index":5904,"admin_index":5,"weight":7.09,"is_urban":false,"turn_weight":1,"duration":6.59,"bearings":[23,30,210],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":7.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.756,"geometry_index":5905,"location":[8.820789,50.605266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.043,"geometry_index":5906,"location":[8.819279,50.603605]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":16.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.373,"geometry_index":5907,"location":[8.819056,50.603359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,203],"duration":5.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.242,"geometry_index":5911,"location":[8.815738,50.599583]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.814848,50.598221],"geometry_index":5914,"admin_index":5,"weight":6.066,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.406,"bearings":[21,199,215],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.814025,50.596616],"geometry_index":5916,"admin_index":5,"weight":4.617,"is_urban":false,"turn_weight":1,"duration":3.826,"bearings":[3,18,197],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.039,"geometry_index":5917,"location":[8.81356,50.595675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":1.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.51,"geometry_index":5918,"location":[8.813299,50.595147]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":0.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.93,"geometry_index":5919,"location":[8.813108,50.59476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":46.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":43.289,"geometry_index":5920,"location":[8.81299,50.594522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.283,"geometry_index":5932,"location":[8.806316,50.582802]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":24.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.363,"geometry_index":5933,"location":[8.806256,50.58273]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.219,"geometry_index":5940,"location":[8.802687,50.576867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":36.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.777,"geometry_index":5941,"location":[8.802664,50.576803]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.787,"geometry_index":5951,"location":[8.797284,50.568141]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":52.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":47.088,"geometry_index":5952,"location":[8.797118,50.567944]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.424,"geometry_index":5959,"location":[8.78891,50.555269]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":28.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26,"geometry_index":5960,"location":[8.788845,50.555162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.152,"geometry_index":5966,"location":[8.784528,50.548405]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":9.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.988,"geometry_index":5967,"location":[8.784306,50.548115]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":4.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.912,"geometry_index":5969,"location":[8.782604,50.545866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.908,"geometry_index":5971,"location":[8.781827,50.544901]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":1.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.682,"geometry_index":5972,"location":[8.781647,50.54469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.781295,50.544301],"geometry_index":5973,"admin_index":5,"weight":6.094,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.596,"bearings":[30,213,225],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.77987,50.542924],"geometry_index":5975,"admin_index":5,"weight":2.1,"is_urban":false,"turn_weight":1,"duration":1.195,"bearings":[13,34,214],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":5.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.914,"geometry_index":5976,"location":[8.779599,50.542668]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":25.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.762,"geometry_index":5977,"location":[8.778403,50.541538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.42,"geometry_index":5980,"location":[8.772615,50.536052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":52.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":47.15,"geometry_index":5981,"location":[8.772516,50.535958]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.666,"geometry_index":5986,"location":[8.760483,50.524561]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":1.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.227,"geometry_index":5987,"location":[8.760061,50.524161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":6.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.787,"geometry_index":5988,"location":[8.759754,50.52387]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":1.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.943,"geometry_index":5989,"location":[8.758309,50.522499]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.758078,50.522273],"geometry_index":5990,"admin_index":5,"weight":14.611,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.242,"bearings":[33,213,234],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.754674,50.518657],"geometry_index":5994,"admin_index":5,"weight":2.215,"is_urban":false,"turn_weight":1,"duration":1.371,"bearings":[15,29,209],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":5.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.328,"geometry_index":5995,"location":[8.754404,50.518352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.598,"geometry_index":5996,"location":[8.753215,50.517011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":40.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":36.75,"geometry_index":5997,"location":[8.753087,50.516866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,203],"duration":0.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.418,"geometry_index":6009,"location":[8.744865,50.50755]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,205],"duration":22.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.889,"geometry_index":6010,"location":[8.744792,50.507442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":29.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.273,"geometry_index":6014,"location":[8.74147,50.50229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.568,"geometry_index":6017,"location":[8.737797,50.49531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":15.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.02,"geometry_index":6018,"location":[8.737719,50.495165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":7.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.832,"geometry_index":6022,"location":[8.735751,50.491442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.295,"geometry_index":6023,"location":[8.734796,50.489625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.826,"geometry_index":6024,"location":[8.734755,50.489548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":15.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.521,"geometry_index":6025,"location":[8.734644,50.489338]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.486,"geometry_index":6027,"location":[8.732812,50.485858]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.949,"geometry_index":6028,"location":[8.732748,50.485738]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":13.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.037,"geometry_index":6029,"location":[8.732366,50.485018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":9.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.775,"geometry_index":6031,"location":[8.730805,50.482066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":8.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.701,"geometry_index":6033,"location":[8.729667,50.479915]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.728674,50.478021],"geometry_index":6034,"admin_index":5,"weight":14.479,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.66,"bearings":[18,199,215],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.789,"geometry_index":6036,"location":[8.72688,50.474611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":10.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.934,"geometry_index":6037,"location":[8.726673,50.474225]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.725583,50.472144],"geometry_index":6039,"admin_index":5,"weight":3.752,"is_urban":false,"turn_weight":1,"duration":2.904,"bearings":[10,18,199],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":2.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.791,"geometry_index":6040,"location":[8.725267,50.471551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.422,"geometry_index":6041,"location":[8.724948,50.470951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.135,"geometry_index":6042,"location":[8.724899,50.47086]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.172,"geometry_index":6043,"location":[8.724758,50.470595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.684,"geometry_index":6044,"location":[8.724613,50.470323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":20.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.094,"geometry_index":6045,"location":[8.724411,50.469921]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":1.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.367,"geometry_index":6050,"location":[8.721989,50.465329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.938,"geometry_index":6051,"location":[8.721817,50.464996]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.658,"geometry_index":6053,"location":[8.720922,50.463295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.625,"geometry_index":6054,"location":[8.720842,50.463136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.52,"geometry_index":6055,"location":[8.720764,50.462979]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.109,"geometry_index":6056,"location":[8.720696,50.462853]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":2.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.311,"geometry_index":6057,"location":[8.720548,50.46258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,201],"duration":2.791,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.582,"geometry_index":6058,"location":[8.720224,50.462003]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.719812,50.461369],"geometry_index":6060,"admin_index":5,"weight":1.242,"is_urban":false,"turn_weight":1,"duration":0.283,"bearings":[14,24,202],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":10.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.656,"geometry_index":6061,"location":[8.719768,50.461298]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":37.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":33.52,"geometry_index":6068,"location":[8.71775,50.458739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":10.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.338,"geometry_index":6083,"location":[8.706195,50.451786]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":46.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":42.623,"geometry_index":6086,"location":[8.702509,50.450167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":0.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.744,"geometry_index":6116,"location":[8.694735,50.439478]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.219,"geometry_index":6117,"location":[8.694769,50.439282]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.555,"geometry_index":6118,"location":[8.694825,50.438958]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":1.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.273,"geometry_index":6119,"location":[8.694994,50.43802]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":3.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.18,"geometry_index":6120,"location":[8.695054,50.437685]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.695204,50.436852],"geometry_index":6121,"admin_index":5,"weight":6.102,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.432,"bearings":[174,353],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":4.178,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.961,"geometry_index":6122,"location":[8.695486,50.435224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.422,"geometry_index":6123,"location":[8.695671,50.434177]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":85.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":78.963,"geometry_index":6124,"location":[8.695736,50.433802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.578,"geometry_index":6136,"location":[8.699457,50.412422]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":16.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.58,"geometry_index":6137,"location":[8.699486,50.41226]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":7.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.354,"geometry_index":6139,"location":[8.700199,50.40816]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.700522,50.406373],"geometry_index":6141,"admin_index":5,"weight":5.865,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.523,"bearings":[174,187,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.700799,50.404761],"geometry_index":6142,"admin_index":5,"weight":6.25,"is_urban":false,"turn_weight":1,"duration":6.008,"bearings":[174,345,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.09,"geometry_index":6143,"location":[8.70107,50.403196]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":24.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.09,"geometry_index":6145,"location":[8.701232,50.402273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.355,"geometry_index":6150,"location":[8.702319,50.395992]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":42.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.459,"geometry_index":6151,"location":[8.702383,50.395607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.67,"geometry_index":6157,"location":[8.704236,50.385011]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.704509,50.383446],"geometry_index":6158,"admin_index":5,"weight":4.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.783,"bearings":[174,189,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.704721,50.382253],"geometry_index":6159,"admin_index":5,"weight":4.363,"is_urban":false,"turn_weight":1,"duration":3.645,"bearings":[174,344,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.252,"geometry_index":6160,"location":[8.704877,50.381343]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":11.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.414,"geometry_index":6161,"location":[8.704936,50.381001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.418,"geometry_index":6165,"location":[8.705437,50.378151]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":31.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.826,"geometry_index":6166,"location":[8.705502,50.377769]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,198],"duration":1.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.094,"geometry_index":6180,"location":[8.704486,50.370154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":26.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.959,"geometry_index":6181,"location":[8.704352,50.369887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":1.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.986,"geometry_index":6189,"location":[8.699863,50.363876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":1.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.262,"geometry_index":6190,"location":[8.699675,50.363649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":11.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.604,"geometry_index":6191,"location":[8.699414,50.363341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":8.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.051,"geometry_index":6193,"location":[8.697268,50.36073]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.695636,50.35875],"geometry_index":6196,"admin_index":5,"weight":19.373,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.547,"bearings":[28,205,217],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.693112,50.353755],"geometry_index":6204,"admin_index":5,"weight":1.264,"is_urban":false,"turn_weight":1,"duration":0.318,"bearings":[4,11,187],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.156,"geometry_index":6205,"location":[8.693098,50.353682]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,187],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.416,"geometry_index":6206,"location":[8.69302,50.353376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":68.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":60.037,"geometry_index":6210,"location":[8.692761,50.351591]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":118.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":106.406,"geometry_index":6234,"location":[8.695799,50.334534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":53.322,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":49.324,"geometry_index":6268,"location":[8.681261,50.306897]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.109,"geometry_index":6283,"location":[8.672803,50.294794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":14.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.188,"geometry_index":6284,"location":[8.672708,50.294501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.143,"geometry_index":6286,"location":[8.671515,50.290987]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.67132,50.29042],"geometry_index":6287,"admin_index":5,"weight":6.99,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.576,"bearings":[12,192,207],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.670678,50.288564],"geometry_index":6288,"admin_index":5,"weight":3.355,"is_urban":false,"turn_weight":1,"duration":2.566,"bearings":[12,192,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.715,"geometry_index":6289,"location":[8.670478,50.287946]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.531,"geometry_index":6290,"location":[8.670329,50.287496]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":3.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.877,"geometry_index":6291,"location":[8.670189,50.28709]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[12,192,215],"duration":6.701,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.18,"geometry_index":6292,"location":[8.669919,50.286307]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[12,192,358],"duration":8.129,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.5,"geometry_index":6294,"location":[8.669339,50.284611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":29.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.416,"geometry_index":6295,"location":[8.66865,50.282571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.85,"geometry_index":6303,"location":[8.666118,50.275126]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":32.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":30.844,"geometry_index":6304,"location":[8.66604,50.274898]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.783,"geometry_index":6312,"location":[8.663168,50.26643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,190],"duration":14.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.604,"geometry_index":6313,"location":[8.663104,50.266225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":21.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":21.127,"geometry_index":6321,"location":[8.662579,50.262285]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.291,"geometry_index":6327,"location":[8.662664,50.256556]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":5.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.496,"geometry_index":6328,"location":[8.662668,50.256208]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.662682,50.254718],"geometry_index":6329,"admin_index":5,"weight":9.604,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.855,"bearings":[0,180,193],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.662721,50.252109],"geometry_index":6332,"admin_index":5,"weight":7.008,"is_urban":false,"turn_weight":1,"duration":6.182,"bearings":[0,179,339],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.248,"geometry_index":6333,"location":[8.662748,50.250514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":4.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.623,"geometry_index":6334,"location":[8.66275,50.250186]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":0.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.619,"geometry_index":6336,"location":[8.662768,50.248955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":64.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":60.877,"geometry_index":6337,"location":[8.662771,50.248793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.797,"geometry_index":6348,"location":[8.663009,50.232006]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":40.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.607,"geometry_index":6349,"location":[8.663012,50.231794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.887,"geometry_index":6355,"location":[8.663159,50.221248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":3.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.543,"geometry_index":6356,"location":[8.663163,50.221017]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,184],"duration":37.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":36.35,"geometry_index":6357,"location":[8.663173,50.220077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.953,"geometry_index":6378,"location":[8.659676,50.210781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,211],"duration":5.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.117,"geometry_index":6379,"location":[8.659491,50.210565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.164,"geometry_index":6381,"location":[8.658419,50.209457]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":2.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.111,"geometry_index":6382,"location":[8.658159,50.209211]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":1.496,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.488,"geometry_index":6384,"location":[8.657655,50.208763]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":1.635,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.627,"geometry_index":6385,"location":[8.657296,50.208458]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,222],"duration":23.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.227,"geometry_index":6386,"location":[8.656884,50.208125]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.650104,50.203948],"geometry_index":6396,"admin_index":5,"weight":17.32,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.918,"bearings":[47,224,235],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":2.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.516,"geometry_index":6403,"location":[8.645341,50.201158]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.801,"geometry_index":6404,"location":[8.644882,50.200881]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.643483,50.200102],"geometry_index":6406,"admin_index":5,"weight":5.633,"is_urban":false,"turn_weight":1,"duration":4.658,"bearings":[34,52,228],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,223],"duration":7.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.912,"geometry_index":6408,"location":[8.642126,50.199318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,232],"duration":0.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.963,"geometry_index":6412,"location":[8.639838,50.197964]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":0.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.143,"geometry_index":6414,"location":[8.639543,50.197817]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.639493,50.197794],"geometry_index":6415,"admin_index":5,"weight":9.223,"is_urban":false,"turn_weight":1,"duration":8.463,"bearings":[32,54,227],"out":2,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":19.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.221,"geometry_index":6417,"location":[8.636947,50.196299]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":67.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":65.721,"geometry_index":6422,"location":[8.630959,50.192833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":18.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.783,"geometry_index":6447,"location":[8.615015,50.178849]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":12.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.758,"geometry_index":6453,"location":[8.612507,50.174345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.648,"geometry_index":6454,"location":[8.610937,50.171505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":27.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.969,"geometry_index":6455,"location":[8.610468,50.170613]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.312,"geometry_index":6460,"location":[8.606842,50.164042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,197],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.311,"geometry_index":6461,"location":[8.606801,50.163969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,200],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.244,"geometry_index":6462,"location":[8.606764,50.163892]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":22.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":21.477,"geometry_index":6463,"location":[8.60673,50.163833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.771,"geometry_index":6468,"location":[8.603839,50.158601]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.602908,50.156906],"geometry_index":6469,"admin_index":5,"weight":5.486,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.781,"bearings":[19,199,225],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":11.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.039,"geometry_index":6471,"location":[8.602141,50.155533]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.086,"geometry_index":6473,"location":[8.600611,50.152773]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.600325,50.152262],"geometry_index":6474,"admin_index":5,"weight":4.721,"is_urban":false,"turn_weight":1,"duration":3.836,"bearings":[13,20,199],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":2.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.879,"geometry_index":6475,"location":[8.599844,50.151357]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":42.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":42.084,"geometry_index":6476,"location":[8.599465,50.150666]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":7.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.127,"geometry_index":6485,"location":[8.593995,50.140771]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":3.908,"geometry_index":6487,"location":[8.593004,50.138943]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.592525,50.138092],"geometry_index":6488,"admin_index":5,"weight":20.527,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":19.115,"bearings":[20,199,214],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.590425,50.133919],"geometry_index":6495,"admin_index":5,"weight":8.74,"is_urban":true,"turn_weight":1,"duration":7.207,"bearings":[13,193,356],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":0.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.152,"geometry_index":6500,"location":[8.590012,50.132289]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.590004,50.132251],"geometry_index":6501,"admin_index":5,"weight":7.791,"is_urban":true,"turn_weight":1,"duration":6.342,"bearings":[8,185,358],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,359],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.188,"geometry_index":6505,"location":[8.589932,50.130641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,355],"duration":6.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.906,"geometry_index":6507,"location":[8.590028,50.129887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":0.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.531,"geometry_index":6512,"location":[8.59038,50.128273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,351],"duration":34.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":37.371,"geometry_index":6513,"location":[8.590408,50.128153]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,337],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.037,"geometry_index":6529,"location":[8.5954,50.119911]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":3.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.854,"geometry_index":6530,"location":[8.595405,50.119903]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.595954,50.119039],"geometry_index":6532,"admin_index":5,"weight":15.158,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.465,"bearings":[152,170,338],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.598141,50.115718],"geometry_index":6539,"admin_index":5,"weight":1.391,"is_urban":false,"turn_weight":1,"duration":0.398,"bearings":[152,328,338],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,332],"duration":1.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.91,"geometry_index":6540,"location":[8.598204,50.115641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":3.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.131,"geometry_index":6541,"location":[8.598446,50.115242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,338],"duration":1.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.221,"geometry_index":6542,"location":[8.59901,50.114361]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,336],"duration":1.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.693,"geometry_index":6543,"location":[8.599184,50.11411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":3.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.977,"geometry_index":6544,"location":[8.599412,50.113755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":7.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.539,"geometry_index":6546,"location":[8.59995,50.11292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":7.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.143,"geometry_index":6551,"location":[8.600961,50.111375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.602044,50.1097],"geometry_index":6553,"admin_index":5,"weight":5.598,"is_urban":true,"turn_weight":1,"duration":4.283,"bearings":[157,322,338],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":5.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.709,"geometry_index":6555,"location":[8.602694,50.108704]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":33.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":35.941,"geometry_index":6558,"location":[8.603502,50.107468]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,323],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.195,"geometry_index":6571,"location":[8.610536,50.100385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,323],"duration":17.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":18.916,"geometry_index":6572,"location":[8.611013,50.099982]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,333],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.264,"geometry_index":6579,"location":[8.614329,50.096709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,332],"duration":5.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.033,"geometry_index":6580,"location":[8.614547,50.096447]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,338],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.049,"geometry_index":6583,"location":[8.615446,50.095136]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":0.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.91,"geometry_index":6584,"location":[8.615698,50.094682]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,340],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.832,"geometry_index":6585,"location":[8.615809,50.094483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,344],"duration":1.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.303,"geometry_index":6587,"location":[8.616226,50.093637]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.616331,50.093345],"geometry_index":6588,"admin_index":5,"weight":4.418,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":4.137,"bearings":[160,187,347],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":3.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.518,"geometry_index":6593,"location":[8.616721,50.09236]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,350],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.602,"geometry_index":6595,"location":[8.61695,50.091568]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,351],"duration":0.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.088,"geometry_index":6596,"location":[8.616987,50.091425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,349],"duration":3.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.641,"geometry_index":6597,"location":[8.616992,50.091408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":10.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.488,"geometry_index":6599,"location":[8.617194,50.090561]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,353],"duration":12.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.859,"geometry_index":6600,"location":[8.617752,50.087798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":6.627,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.783,"geometry_index":6606,"location":[8.618237,50.08465]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,184],"duration":2.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.619,"geometry_index":6608,"location":[8.618173,50.083016]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":13.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.127,"geometry_index":6610,"location":[8.618094,50.082374]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,198],"duration":1.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.561,"geometry_index":6616,"location":[8.617115,50.079192]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.616926,50.078817],"geometry_index":6617,"admin_index":5,"weight":8.947,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.195,"bearings":[18,197,208],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.135,"geometry_index":6620,"location":[8.615837,50.07659]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":14.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.582,"geometry_index":6621,"location":[8.615699,50.076311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":27.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":25.73,"geometry_index":6626,"location":[8.613917,50.072743]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.113,"geometry_index":6632,"location":[8.610533,50.065987]},{"bearings":[18,197],"entry":[false,true],"classes":["motorway"],"in":0,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6633,"location":[8.609855,50.064647]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Wiesbaden"},{"type":"text","text":"/"},{"type":"text","text":"Frankfurt"}],"type":"fork","modifier":"right","text":"Wiesbaden / Frankfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"22"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"43","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 43"}],"type":"fork","modifier":"right","text":"Exit 22 A 3 / B 43"},"distanceAlongGeometry":126299.188},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Wiesbaden"},{"type":"text","text":"/"},{"type":"text","text":"Frankfurt"}],"type":"fork","modifier":"right","text":"Wiesbaden / Frankfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"22"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"43","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 43"}],"type":"fork","modifier":"right","text":"Exit 22 A 3 / B 43"},"distanceAlongGeometry":3218.688}],"destinations":"Frankfurt, Wiesbaden, Basel, Gießen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 5 toward Frankfurt/Wiesbaden.","modifier":"slight left","bearing_after":217,"bearing_before":221,"location":[9.542884,50.813459]},"speedLimitSign":"vienna","name":"","weight_typical":4200.438,"duration_typical":4545.742,"duration":4545.742,"distance":126299.188,"driving_side":"right","weight":4200.438,"mode":"driving","ref":"A 5","geometry":"e`l|_BgmmeQ~\\xb@ra@xj@lH|JZb@zPbV`n@x|@nf@lr@fZnd@nNvW`LpTdKrVjJbVfN|a@hJr\\zIr\\tIba@nFfZnJhp@tExd@hDfc@hBlc@fBbp@hA~\\pDjhAxCt~@`D|_AzCz~@`D|~@jCvx@pCpx@hBdl@v@jb@Xh]Kr[[zZe@|TsAf`@_AtQcBjX}C~^iInz@iHlu@uAdPiD|e@oBv[sAp\\s@f`@_@ra@Bz^Vx[rAff@zAt^nBt[rCz]lD~]fEp\\rEl[tH`a@nIf`@~Q|q@dA|DfZzw@zXxv@rLd]t`@fhAjGvQ~Spl@lOl`@vHnRlIdQlPp[rN~UfLzPfc@jf@fXpWzXtWdZrYbXdZ|`@rh@hT|^dJdR~Zxt@hPrb@hFlN~Mf`@bPxg@bKh]hR`r@tFjXF\\lGd[dIrh@~Edb@fDt_@|IfaBzFlxA`Ebr@hA`NfCvZnHtp@~Hpf@tHd`@pFfVnHn\\fLff@tAzFpi@xzBvBzIrRbv@`O`m@tBdJ~GtXtJr^vJx\\~IrXbOr_@lOd]hOxZ|MbV`k@f~@rf@dy@`Sl\\lA~B~KrUnL|XlG`RrKt^dEjPpE~TfD`QrFh\\jDxZtCb\\xBz\\r@lOd@jOV|PHnO?rX_@b\\w@tUGlBMfDe@hIUhEcAfPgBtTsCxWsBbPgBjMcDfRgF|WiIva@sRr|@wRj}@{YtsAgQzx@yG~ZiHf]oIjb@eGh\\gFxZ_DrVyBfSmBnTsAhSgAvUu@tRc@fTOlSEhWHhRd@jTh@bRjAvW|AzVfBzRtBhSlCjTpBrNjDdSvFpYnHrZ|J|]`IfTrJbVbUpe@`M~TpSn^p[zi@b]hm@j^|q@xGzNtSng@fNlb@xFdS|G|V|FvWlLfm@lDvVnDtVnGpf@|Eva@v@tGzJ~z@hVpyBvJh}@vKr~@nJ|x@pKr|@`Sv|AdS~wAtW|`Bl\\ttBx\\~tBpf@dbDxQnpAbGnc@lNxcAfAzHn_@zsChYtrB|XlvBlZhyBtL`z@fQtiAlJnk@hT`uA`RjlAfQzhAzMfy@bJje@bJb`@bRhp@zOhg@hYrt@lYnm@pRp]nP|Wbh@|y@rWra@|Vbc@nWhi@jWro@tQzi@`Yx}@r[peAx_@tnA`o@juBjU`u@tY`aAlk@vgB|d@bwAhb@tqAt`@pmAtO~d@|Nna@vX|p@rU|d@h[jj@r^ng@l_@nc@`r@hr@jw@~x@jXvZhXz_@bUf_@nYbh@pTvf@pWzq@bOxe@xQdo@|Ktg@xI`f@rGz`@pFba@jHrq@vHrz@tEph@jFvh@xPlnAhLnn@dJbc@vc@zrB|Y|tAxJre@hS~oAj@nErLjy@~Ixp@zLd|@xZt{BfVjcBhLxz@vZlxB~NfgA|Z|wBbYnrB`QroAjGni@bF|l@|Cta@pA`WhAvVfB`n@f@h^P|_@?z_@[j]q@r^gAf_@aAtTaAvRkErm@cD|]aJ|{@_TtnBoS~jBePtyAaMliAiGxk@gJvz@_KbeAgD|a@_Ct]mCnh@wB~m@{@|]m@tc@]bb@A`Zd@b~@rAvi@xAhc@xB|i@lDzm@|Cda@hFhi@rGfl@|Kjz@pK|o@nJre@nMdj@nOfl@jM|c@zOle@jYxv@hRjc@fSza@lZ~j@lJjObSlZnVh]nWh[~]|_@f_@v]bo@ji@tQ|N~d@v_@juAnhArKlJnb@t^tKhJtMtMrUlW`R~UtKhO~Vrb@|Q|]vTdf@xNx`@zOvg@tI~XxL|i@lPrz@bKpv@tFdl@lDrb@tDvw@bAf_@v@jv@@lXNnpADdzADjpAx@|nAfAzk@bBpl@zEtaAlCdb@tDfh@dExc@dFdc@~K|z@fMny@tL|r@vFv[tQbcAdJzh@lU|rA`Kjo@lQ~bAzKbo@nl@bjDfQvgAtMl~@fPjkAhOtmAnDhZjTbnBfGvl@xFbn@jFrl@xGny@`NzfB`IrjA~Fxz@xMbnBtAzT~A~UdJjsAbDxb@hEjg@~E`j@`SndBzAzK~Hbj@|DjXvHpc@lFxYxMbr@nIpa@`Krc@lM`g@jGpUnWr{@xRto@|Zh{@t\\zy@pXvn@fN~YxRrb@lUrf@pShb@tZdp@fXnp@bRze@pZv|@dZz_AtRfs@vOxn@hQ~u@vQ`v@bQfu@`UbaAnXljApy@xjD|Qrx@jEtQhV~bAzVreAvLzg@~Jzc@|H~[vXbiAfXfaAv[`aA~Pvb@zRpd@jPx]|c@l}@ls@vvAlx@n_Bra@~x@vh@heAbcAzqBpbAzoBb`CxvE|MrXhVzj@rKdZdLj\\vK`a@dKd`@bJlf@nGr]~Gdf@tJp~@rErv@rCtu@bAvl@Qny@Yl\\gArb@yAt]oAr\\mB|XiC|\\aC~RaE`d@oD~a@}Etl@uEpm@gDjm@_Bna@kAzh@e@n_@?pn@x@fy@v@vc@`Cv|@rAh]`Bvm@vEvwAbDhlArCr_AjGppBh@hRzAbf@bC`x@`Fb|AvBbq@lCdy@lEt`Bh@vh@^j|@]|lAkAhaAkA~h@gBnm@cCzl@_Dpq@{Fv|@aEvi@_Dj_@yCb\\wGfm@kF|d@wInq@uLny@cPd_AgF~ZsR~pAmUvuAyWzbBkKts@s@~EiHll@iDd^{Fjo@yElo@mD`p@_Chn@aCfy@_CxoByBrtBsDzhDsDj~CsFr~EwEduEHvy@\\xo@lAt_ArBhaATfJR~FfCrm@dDbo@nHliAvHtlA~Cfc@rFr}@hFny@nC|m@jAp_@d@p^NfUCh}@eAhk@mAjc@aBd^aCr_@yEdm@aM`wAoKjmA}RdlCa@xFeI|hA{QheCq@xIqJjwAwIlkAuEzo@sMziBiHrnAa@`HsCjr@mBr}@a@hj@Ktc@d@|hAnAnn@bC~n@vC`n@bFvr@jF|l@vJfw@hF|`@bIdf@dKvk@vLbj@lMhh@~Njg@h[v_Ah_@t|@la@py@tUtc@l\\jm@vBxD`Rl\\rPdZfb@rv@nj@tbA~Xrg@rYni@j]pr@vS|c@j[bt@dh@~tAfQhi@hOpg@bTdt@rSvs@t_@`rAl^doA|ZlfAtUfw@jDhMzSdq@nUjq@b]n|@j^|z@l\\dr@dZdj@hD~GdRl[bJxNxGnKtP`WpTr[|Xt^lWl[dW`Zbb@tb@xTnThd@j`@df@n^tr@dg@jv@nj@l|@hn@tZzRtZpRxd@dWz^jQr\\hNra@tOjo@bShj@`Off@|LjaB|a@zy@xSlp@~PhR|GbRhIta@~UpRnL|JbIlRzPxNhN|NhQvPhTda@~q@pbAx}Ajk@t|@vMtR|K|NjThWvOjP~NlN~WfT`d@l[to@bb@~k@|_@|u@te@vlBrnAzu@ff@v}@~k@hlBtmA~e@xZdRxL~QfLnd@pXpj@bYre@xTdr@dZpq@zWzhAhd@vkA~d@z[~Lle@vRze@tRds@jYbj@`Xrj@j[dk@v_@tj@rb@n^f[fXpWxRnRpJhKxRjT|TrXbQrTld@ln@tWna@hUl_@da@|s@ph@fcArL|UpvBrcEpa@zw@dh@lcA|o@roArq@trAljA`zBjIpPr_@|s@~_@tu@tb@dy@tWvl@dNl]lPbf@nM~b@vLpf@lHt[~Gd^`J`k@dHzg@jC~TbJbw@jDlZnIht@nGbh@hQdxAvRj`BvDv\\xFjh@fFxm@fGht@rQt}BnQl_CrXbpDnAzP~]buE|YvxDlFh|@dHlnAfCfi@pBzn@xBnm@@RpBd_AjFx{BjGhfC|F`oCxDveBp@tTfDrzAxElmBnH`aDvGzgCnFhqAbFdx@bIfaAzFbm@pDd]pKhz@hIpk@tHxc@pI|c@vF`Zdb@joBpb@lnBneApzErEtSdb@dmB|u@tjDxSh_An]b`B`c@`oB~G`YnBhJvGtYfa@hjB|bBlwHdgAx~Exs@ddD~q@h}Ctp@dyChZtsArYbqAjHd[vI`_@|Nll@n]xsAlb@f}ApKh`@lVp_Az^`tA|s@tlCPb@bAtDdIhZdOjj@rVh_A`~@hgDzdBfpGvoDjxM`g@vjBr{@b_DjSlz@~Rd}@vLfp@fPhhA~MbhAlJlbAjHtnAbClj@|Alk@x@zd@r@fu@Hb_AI|jAO|nA_@r~AIf}BYt~EJ`nAi@`bBUbj@U|^k@bcAU`jASlyAN`eAf@hfAd@fbBKluCGbUAhd@DhXJd[\\n]`@hTj@jThAhYlAjUpAxR`Cv]`F`j@dHbm@bKxq@fJlf@|CnO|EhRnJj_@dHlVrFrQpF~OrShl@xHjR~HrQtMtWjN~VvN~VrVv^v\\t`@v`@|_@|WlWhg@nc@r|AnsAxfBj}AjN|L~wC`jC`VbSb\\jWx]xV~g@xZbTxL~U~Lf`@xP`bAr`@xy@`\\~_@hOdW|JzMjF~n@tVl|@z\\`uAzh@xu@rY|_Brn@feAx`@`fApb@r}@`c@zZfQdb@pX|t@rj@h_Apu@nCvB|pA~cA`p@lg@f]hUfZnPjd@zRpg@zO~bB`d@~Bl@`j@tNtp@dQdy@tUvk@nTbh@~T|ZbPda@nU~w@xi@t~AnmAvxAfjAhKjI~e@r^`p@xc@fi@f^n\\zSziAjq@bdGd_DjgHztDtE`CjjCxsA`qCxxAvd@vVj]`Sda@`Xpa@hYbQzLtlAny@z}@zn@v[|Tp^rYdLfJhW~Tro@~p@ld@`f@~N|OreAviA~sA`yAnqDvzDjnA|rAzDdEpsD|}DfhG`wGpeCrlCnaAjeAl`A`dA~WjYdQdRttAhyAbMlMbYnYr{@b{@l{@bw@xmA~dA`RzOxrAhiA`H~FjsAxiAzy@zu@hy@fv@d@b@xx@xy@vZv[b_@j^hi@bh@rk@rc@`u@xh@nx@bi@h~@dn@vEpCbmAjx@jsA`z@bbAlh@j{Avp@jdAvc@vrCvlAbzE`rB`HzCzHjDlo@jXx|Avp@poAni@ppBtz@xCpAbL|EteBfu@xqBf{@nF~B~k@zVn|CnrA~Y`M~y@x]ljAhg@juB`}@`{ClqA`x@t\\bW|KdXfLzgBzu@`d@vRnd@|RtD`BpOxG~O`HbXrK~L~EpaAnb@luA`l@lt@l[paAjb@xSvIxr@nZnu@l[|H~CxHzCzFfC`PfH`c@fStQhJ|SlMlCvAzEhC~OxIxa@zW|XlSlYbT`YhVxUfTtVjVxV`Wrb@xf@h_@|e@b[jc@pWv`@rXpd@h[rk@``@vw@jKvTbg@dmAhOz`@tVvs@ne@bwAlo@foBnz@lfC~^tgAtHfUvHhUbNja@rK~\\|InWnPxd@fLpZ~Pb`@~Qv^jPhY~PdXtQ|VhRtUzRhTnS~R~SrQnTdPzTvNjUfMtUvK`VdJhVtHpV`GvVnEzV|C`WhB`Wt@bW@bWq@pZiBdvAcMfKcAfSoBry@qI|SwB`s@kHvdBsPl`AqJlVaC|yA{NfcB}OdcBsPnlBcRrzCiZzzCaZvnAaMvgDi\\xxAuNfyA}NzwA}MliBuQbIy@veEqa@nx@_I~e@mFtgAwKvcBiPx`B}OlPaBfg@aFbiBsQp@GhmAqL|kBwQr`BwO`W_Cx}@iJrdBaQvaCmUpdDu\\xmBgRtyAaNx`BaPpiAgLzw@wHjTuBdx@yH|x@kI``@_E|\\cDzVaCdg@yExl@yDhUq@l^SxR@|e@z@`i@~Bxz@zIpe@tHf_@pHp[nH|[zIvUnInWjJtOjG~UzJlRtIbm@v[lj@`]nh@n_@~uAngAncAhw@tm@zd@dMvJfRhOpqB||Aro@dg@zm@he@hv@xl@pTzPzh@t]xZbQbh@fXf\\`Odd@tQ~|@vX`b@xJzd@jJpCZbRzCf\\|Dp^jDl\\~AhTz@|^j@xh@@j`@i@f\\qAbj@qE~i@aHhe@eIte@oKtgAqZjs@aSrsCcx@hk@aPbk@iN~d@gJxc@sG|i@wFpa@aCzc@sAvb@[`g@p@ji@pBf[tBra@rEda@vFhT|C~t@`Lbj@|H|aApNlrAbSb`AnNvp@zJzg@pHvq@dKdq@|Jxp@vJtr@zJlr@hKjq@zJtq@~JdlA`Q`_A|N~_@hGzd@lKnf@dNxf@tP|d@dRv]lPdm@f\\naAfo@rb@v\\~[zXxV`Vv]f^zy@haA~n@vw@rw@n`Ad_BnnBb_BjoBhkAbxAvr@l{@`a@zd@na@dc@jb@ra@fc@d_@`d@~\\td@zZhe@tX|e@lVlf@bT|f@zQhg@pOn`@dK~uDl}@hQ|DbgEvbAnRxElb@dK~rBbg@re@nKb[hHjXvG|o@zOxh@lMd_AxTn~B`j@`{@lShr@|O~kApYvlA`Y|o@zOjq@|Orw@nRfj@|MfMzCdS|Ep}@tStcAnVdeApVrpB|e@jpBje@|n@lOt_@`JxK~Bli@jJdUtDnTlCne@tDp\\jB|Rd@|\\Zdi@DxA?~jAi@bdBk@tiBm@f`@Wde@MvTGb|A[df@M|pAm@|h@QtbBu@nSClSInw@YbIEbv@Yxz@MrcBy@phAYfeBq@plAi@vkC{@n~Aq@|nDgAnqAm@ptA_@fLEtx@UvyE_BnbDqA`qA_@hw@]xoA_@lMGvy@SlJl@d]Er]Tz[dAxWfAr]hCt`@jEv]dFn^rGz\\vHlVjGdWpHrYxJfTdI`TvIp]~OdX`Np[dQzd@bZ~b@rZzVfSnLpJfb@t_@~`@ha@jNfOtLbNhMjO`RlUxSvXtRtZhc@tq@h]~l@~\\np@xXbk@hS`b@h\\zq@x^zu@vYxm@vIbQpRb\\zQn_@xSvb@nf@xcAnQ|^`Y|k@`^ru@hPt[re@hbA`IbSz^nu@bPh]pF~IjAlBlShb@fu@f|AtBjEnD`Kl@bBxt@vyArf@jcAj\\dq@xi@fiAt]ht@f{@lgBnt@`{AfXxj@l`@|x@d`@fx@|aAjsB|bAtsBjd@f_And@`z@jWta@rRlZ|N`Tbe@fn@vVnZdWfY~XvYxYnXp`@`^l`@~ZbRnMfYnRt[|RtZrPfl@xXve@xT~w@`^x~@jb@zh@`V`dA`e@zwApp@TJr`@nQjn@dZnpDbaBvv@h\\bMlFtdBrw@~}CvvAfdA|d@raAzc@pCpAxChAtBbAjh@pVz}BzdAffCxhAfKfFfJdE|hBdy@n\\fOhw@t^hiArg@daB~u@|^zPpw@`]dj@tVt[vNxzAnq@z}@xb@f~@`b@p_Bvr@x`Bju@~`@lQztAhn@px@z_@hvAtn@|YfMdt@|\\`SzItjAbh@p~@bb@d]|Mna@pN|\\bJzEnAnKpCre@nIrRdCrPzBnLtAjANvSpAlZbAj[R`WYtQmAl[qB`a@gD`I{@n]yFfMgC~JyAnFw@`XeHvXgJhVwIpc@oRrVuLpg@sXlQyJ`[oQhXoOzRaLlr@a`@r_Aoi@b]kSbb@_U`\\}Qde@gXNIzQgKbb@aUFEnIwGzZmQjb@sU`[}Pzu@oc@rq@g_@xC}B|WcN`v@gb@tN{IdUgMrb@aVpOqIlQcK`T{LjPsJvRoK|RaLznAks@xWiNpWkOtd@gW|[}QpQcKv\\mRn`@eUbOoJzYoSbOcL~QeO`ZwVhq@wn@pj@ck@tg@gk@rp@ku@~{@igArQqTdg@_o@dXy\\vn@ow@z^ac@hPeQp_@y_@HIlc@u_@he@u]jOsLhXyQl[mRd[}Pj[wNlK}ExXeM`Z{JfQqEdJgEb@Spg@{MjFgAh@Kd\\yGhSoD|GiA`@IzS{D`_@wEtkD{a@jt@}Jli@oFb\\yClRkAfT}@b^w@dz@L|i@pBx[bBhJx@dBN``@xEx^tFre@vIbh@bM`r@hTlVxJxeAfa@t`@tOta@bPlPrG`]bNl_@vNrc@rQfp@|WriA|c@vmAnf@`n@tVn@VbdA|`@tkAze@btCviAvrAji@nx@zZpsBry@bIdD"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left at the fork.","announcement":"Keep left at the fork.","distanceAlongGeometry":118.077}],"intersections":[{"bearings":[18,199,205],"entry":[false,true,true],"classes":["motorway"],"in":0,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":2,"geometry_index":6636,"location":[8.608388,50.0617]}],"exits":"22","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Keep left at the fork"}],"type":"fork","modifier":"left","text":"Keep left at the fork"},"distanceAlongGeometry":147.744}],"destinations":"A 3, B 43: Wiesbaden, Frankfurt, München, Köln, Würzburg, Offenbach, Mainz, Frankfurt-Süd","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 22 onto A 3/B 43 toward Wiesbaden/Frankfurt.","modifier":"slight right","bearing_after":205,"bearing_before":198,"location":[8.608388,50.0617]},"speedLimitSign":"vienna","name":"","weight_typical":6.326,"duration_typical":6.672,"duration":6.672,"distance":147.744,"driving_side":"right","weight":6.326,"mode":"driving","geometry":"gwon~AggllOpn@xa@r[|N"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep right to take A 3.","announcement":"In a quarter mile, Keep right to take A 3.","distanceAlongGeometry":389.005},{"ssmlAnnouncement":"Keep right to take A 3 toward Köln, Wiesbaden.","announcement":"Keep right to take A 3 toward Köln, Wiesbaden.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.607576,50.060481],"geometry_index":6638,"admin_index":5,"weight":3.598,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":3.709,"bearings":[20,199,211],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,201],"duration":1.732,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":1.688,"geometry_index":6639,"location":[8.6072,50.059784]},{"bearings":[21,198],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6640,"location":[8.607009,50.059466]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Köln"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"right","text":"Köln / Wiesbaden"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"}],"type":"fork","modifier":"right","text":"A 3"},"distanceAlongGeometry":418.671}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left at the fork.","modifier":"slight left","bearing_after":199,"bearing_before":200,"location":[8.607576,50.060481]},"speedLimitSign":"vienna","name":"","weight_typical":18.57,"duration_typical":19.066,"duration":19.066,"distance":418.671,"driving_side":"right","weight":18.57,"mode":"driving","geometry":"akmn~AotjlOpj@nVzR|JdoBhv@zJxD~b@pO"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep left to take A 3.","announcement":"In 1 mile, Keep left to take A 3.","distanceAlongGeometry":1536.737},{"ssmlAnnouncement":"In a half mile, Keep left to take A 3.","announcement":"In a half mile, Keep left to take A 3.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 3 toward Köln, Wiesbaden.","announcement":"Keep left to take A 3 toward Köln, Wiesbaden.","distanceAlongGeometry":211.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[8.605766,50.056905],"geometry_index":6643,"admin_index":5,"weight":22.078,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":22.666,"bearings":[16,197,212],"out":2,"in":0,"turn_duration":0.023,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,246],"duration":15.34,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":15.34,"geometry_index":6661,"location":[8.601629,50.0541]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[8.5977,50.053417],"geometry_index":6669,"admin_index":5,"weight":1.889,"is_urban":false,"turn_weight":0.5,"duration":1.4,"bearings":[88,97,276],"out":2,"in":0,"turn_duration":0.011,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,274],"duration":2.777,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":2.777,"geometry_index":6670,"location":[8.597326,50.053441]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":0.9,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":0.9,"geometry_index":6671,"location":[8.596571,50.053477]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":32.131,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":32.934,"geometry_index":6672,"location":[8.59632,50.053488]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[93,273],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6682,"location":[8.586358,50.053932]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Köln"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"left","text":"Köln / Wiesbaden"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"}],"type":"fork","modifier":"left","text":"A 3"},"distanceAlongGeometry":1563.403}],"destinations":"A 3: Köln, Wiesbaden, Mainz","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 3 toward Köln/Wiesbaden/Mainz.","modifier":"slight right","bearing_after":212,"bearing_before":196,"location":[8.605766,50.056905]},"speedLimitSign":"vienna","name":"","weight_typical":77.113,"duration_typical":76.381,"duration":76.381,"distance":1563.403,"driving_side":"right","weight":77.113,"mode":"driving","ref":"A 3","geometry":"qkfn~AkcglOxMjMlDfDpD`EdDxDzD|EvEnH~KnPz_AhwAbHvKtEhItD|GpC~FjCfGnCxG`EhLxC~J`DtL|AvGpAtGnChO|EdYvNv}@`Gnc@rAxTd@~R`@ht@o@jVgAdn@UtNIbFcA`r@wApv@aD~eBgBthAwBlrAgBjcAaCluAaAjy@c@pb@QvR"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6562.898},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 67.","announcement":"In 2 miles, Keep right to take A 67.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 67.","announcement":"In a half mile, Keep right to take A 67.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 67 toward Mainz, Rüsselsheim.","announcement":"Keep right to take A 67 toward Mainz, Rüsselsheim.","distanceAlongGeometry":221.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.586042,50.053941],"geometry_index":6683,"admin_index":5,"weight":2.443,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.391,"bearings":[93,273,289],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,275],"duration":10.922,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":11.195,"geometry_index":6684,"location":[8.585353,50.053961]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.58159,50.053922],"geometry_index":6689,"admin_index":5,"weight":9.766,"is_urban":false,"turn_weight":6,"duration":3.686,"bearings":[83,89,269],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":12.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.82,"geometry_index":6692,"location":[8.580202,50.053892]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,257],"duration":12.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.277,"geometry_index":6702,"location":[8.57553,50.053474]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.686,"geometry_index":6707,"location":[8.570824,50.052651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":2.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.891,"geometry_index":6709,"location":[8.570575,50.052606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,253],"duration":36.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":37.053,"geometry_index":6710,"location":[8.569555,50.052418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":17.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":18.26,"geometry_index":6717,"location":[8.556506,50.049886]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.533,"geometry_index":6718,"location":[8.550107,50.048566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":7.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.266,"geometry_index":6719,"location":[8.549916,50.048524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.637,"geometry_index":6723,"location":[8.547437,50.047883]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":0.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.928,"geometry_index":6726,"location":[8.546186,50.047516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":2.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.441,"geometry_index":6727,"location":[8.545878,50.047415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,241],"duration":4.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.428,"geometry_index":6728,"location":[8.545137,50.047177]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.543834,50.046707],"geometry_index":6729,"admin_index":5,"weight":3.713,"is_urban":false,"turn_weight":0.75,"duration":2.982,"bearings":[53,61,239],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":1.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.613,"geometry_index":6730,"location":[8.542884,50.046339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":9.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.113,"geometry_index":6731,"location":[8.54238,50.046136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":3.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.824,"geometry_index":6733,"location":[8.539494,50.044982]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":5.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.301,"geometry_index":6734,"location":[8.538283,50.044502]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":0.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.398,"geometry_index":6735,"location":[8.536563,50.043816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":1.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.266,"geometry_index":6736,"location":[8.536436,50.043765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":25.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.01,"geometry_index":6737,"location":[8.536023,50.0436]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":32.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":30.441,"geometry_index":6741,"location":[8.527778,50.040295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":1.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.816,"geometry_index":6747,"location":[8.517041,50.035998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":2.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.221,"geometry_index":6748,"location":[8.516392,50.035744]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.639,"geometry_index":6749,"location":[8.515607,50.035437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.119,"geometry_index":6750,"location":[8.515385,50.03535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":3.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.162,"geometry_index":6751,"location":[8.514625,50.035055]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[58,238],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6753,"location":[8.513507,50.034612]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"distanceAlongGeometry":6596.231},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"distanceAlongGeometry":3218.688}],"destinations":"A 3: Köln, Wiesbaden, Mainz","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 3 toward Köln/Wiesbaden/Mainz.","modifier":"slight left","bearing_after":273,"bearing_before":273,"location":[8.586042,50.053941]},"speedLimitSign":"vienna","name":"","weight_typical":247.398,"duration_typical":245.156,"duration":245.156,"distance":6596.231,"driving_side":"right","weight":247.398,"mode":"driving","ref":"A 3; E 42","geometry":"ir`n~Asr`kOg@`j@mA|k@Yf[BrdA~Apy@pAx`@Png@b@|g@DhDf@h]xAti@x@p\\h@jQ`ApTdApUtBz_@xA~\\~Bn^dCp_@xGxx@pFjl@rDf^vLfjAtNlsAd@lEr@bHvJv~@nS~iB|RliBhUruBrVnvBpXlcC`TbjBfXl{BnqA|nKrA|JtD`Y~DdXdL|q@dNvs@rEzVbG`ZdGfZhEfRzMhm@j\\lpA~Ujz@tKn^fXh}@zm@`uB~\\tjAzi@njBdB|FhIxXvv@pgCpw@pmCjqAnmEzJt\\~aAdfD|x@pnCjy@vpClTlt@|Sft@zi@zjBzNpg@dR`p@lDzLlQnn@~Rpq@tFhRjUzu@`^bnAtg@jcB~y@vrC|Qjm@x\\xhAhK`]`f@haB|Kn`@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6345.088},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 3.","announcement":"In 1 mile, Keep right to take exit 3.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 3.","announcement":"In a half mile, Keep right to take exit 3.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 3 onto A 60 toward Mainz, Rüsselsheim.","announcement":"Keep right to take exit 3 onto A 60 toward Mainz, Rüsselsheim.","distanceAlongGeometry":244.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.50288,50.030353],"geometry_index":6762,"admin_index":5,"weight":2.609,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.832,"bearings":[59,237,246],"out":2,"in":0,"turn_duration":0.011,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,246],"duration":4.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.395,"geometry_index":6764,"location":[8.501905,50.030078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.549,"geometry_index":6765,"location":[8.500267,50.029606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.48,"geometry_index":6766,"location":[8.500063,50.029547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":8.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.746,"geometry_index":6767,"location":[8.499889,50.029497]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.497072,50.02867],"geometry_index":6770,"admin_index":5,"weight":7.744,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.404,"bearings":[66,238,246],"out":1,"in":0,"turn_duration":0.033,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":12.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.488,"geometry_index":6776,"location":[8.494902,50.027556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,354],"duration":0.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.885,"geometry_index":6788,"location":[8.493946,50.02522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,351],"duration":4.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.605,"geometry_index":6789,"location":[8.494001,50.024999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,330],"duration":4.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.428,"geometry_index":6793,"location":[8.494615,50.023909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,334],"duration":0.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.354,"geometry_index":6799,"location":[8.495508,50.022948]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":3.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.977,"geometry_index":6800,"location":[8.495564,50.022869]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.496019,50.022177],"geometry_index":6802,"admin_index":5,"weight":7.854,"is_urban":false,"turn_weight":2,"duration":6.336,"bearings":[68,159,332,337],"out":1,"in":3,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,348],"duration":3.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.91,"geometry_index":6805,"location":[8.496686,50.02074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,354],"duration":16.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.529,"geometry_index":6807,"location":[8.496827,50.020001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,193],"duration":6.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.559,"geometry_index":6814,"location":[8.496314,50.016199]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,199],"duration":4.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.229,"geometry_index":6817,"location":[8.495746,50.014778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,202],"duration":3.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.771,"geometry_index":6818,"location":[8.495184,50.013721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,205],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.17,"geometry_index":6819,"location":[8.494755,50.01303]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":36.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.182,"geometry_index":6820,"location":[8.494542,50.012733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,228],"duration":9.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.443,"geometry_index":6835,"location":[8.486098,50.005756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.483419,50.004181],"geometry_index":6837,"admin_index":5,"weight":10.309,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.475,"bearings":[48,227,246],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.480217,50.002238],"geometry_index":6840,"admin_index":5,"weight":1.602,"is_urban":false,"turn_weight":1,"duration":0.688,"bearings":[27,46,225],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":4.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.443,"geometry_index":6841,"location":[8.480042,50.002126]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,223],"duration":29.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.32,"geometry_index":6842,"location":[8.478742,50.001267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":7.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.969,"geometry_index":6850,"location":[8.472102,49.995641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.470708,49.99405],"geometry_index":6852,"admin_index":5,"weight":11.043,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.961,"bearings":[29,207,214],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.468778,49.991409],"geometry_index":6855,"admin_index":5,"weight":8.285,"is_urban":false,"turn_weight":1,"duration":7.895,"bearings":[15,24,203],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":16.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.055,"geometry_index":6859,"location":[8.467735,49.989643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":5.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.521,"geometry_index":6863,"location":[8.466094,49.985894]},{"bearings":[11,190],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6864,"location":[8.465673,49.984528]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"3"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"right","text":"Exit 3 A 60"},"distanceAlongGeometry":6380.088},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"3"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"right","text":"Exit 3 A 60"},"distanceAlongGeometry":1609.344}],"destinations":"Mainz, Rüsselsheim, Darmstadt, Raunheim","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 67 toward Mainz/Rüsselsheim.","modifier":"slight right","bearing_after":246,"bearing_before":239,"location":[8.50288,50.030353]},"speedLimitSign":"vienna","name":"","weight_typical":223.152,"duration_typical":241.383,"duration":241.383,"distance":6380.088,"driving_side":"right","weight":223.152,"mode":"driving","ref":"A 67","geometry":"aprl~A_e~eOzHra@hFhYn\\jeBtBvKbBzIbCxLfRp_Ah[t`BjNzd@vNpb@dKdVrGnM|EpIvI|LhIpKxGvGvHhFjHfFrInEbLvF`MjDjLfChLlAhPRnMa@lJ_AxLmBrOoD`VaJrLkGxMmLpBgBrMqNdLiLxI}HtKcIdDsB|CoBh[wQ|MuHbE_C`l@mWre@gLjXoDxSiBrd@eA~o@bAna@nC~\\bDbT~BjUpD~i@|KdMbDhR|Ehv@lV`aAbb@dj@xYpQhLzZ`SnYzSp[|Vju@vq@pVxWfU`Wj_@je@b[pa@lV~]nJtNp^tk@n]~l@|g@x_Atf@b`AxM~Ud{At{CfEvIlf@p`A~g@hcA~g@faA~E|Itt@fpArNrUfy@ppAf}@pnAz[ra@`_@td@ldAtiAtf@vg@ll@nj@~k@zg@lu@fm@th@``@nn@lb@zjAbs@rKdGzx@pa@vJrEb[xNhRtIl{Ajl@z{Ahd@t\\dHjtAhYpOpC~fAfQ"},{"ref":"A 60; E 42","mode":"driving","weight":361.062,"distance":9326.777,"geometry":"mgvi~AwxtcOd]rIri@bMfT|DrTdFxK`DtLrDjOrG~N`IpNrJ`N`LpMlM~LxNhL`PtKhQzJlRbJnShIpTlHnUrGhVrF`WjElWtDnXnC~XxBlYpAnYdArYjAvf@z@po@tAzeA~@xh@x@vdA`Afq@dCfq@nCdq@~C`p@~Czg@hDdg@hHl_ApMp{A`Ih}@|PxmBtL||AnPnzBfElo@dAdPdFj{@`Cra@rBl_@fDdu@f@|KfAfU|Btn@~@`WnCfy@fAj^pBx}@jB|{@z@~m@|@~l@d@z\\`Aj{AJzzAF~lAw@lyBkCdrEgBtmCo@bmCQ`gA?pB`@`bBf@pbAnBr_BtB`rAnBl_AbCry@~HdaCrHnjBhLzfC`Hb{AdHh|Ab@tKlJ||BvHx}BhAhb@|A`j@jBh}@bCnmA|CrdDhA`mCOp{BgBp~C{BxgBu@nb@sEzwB}CrpA]bK_E`kAqFzqAkK~wByGlhAcHxjAyKn~AkOjjBgMzvAob@jcEuUnkBkRxsAgUlrAqR|~@wRlv@ePdl@{Rvm@{V`q@kQpb@wTxf@o\\hr@}[xn@c^pr@sLhWsL|TsQva@qPtb@oMdb@gM`c@oQjs@","duration":356.557,"driving_side":"right","duration_typical":356.557,"weight_typical":361.062,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 3 onto A 60 toward Mainz/Rüsselsheim.","modifier":"slight right","bearing_after":193,"bearing_before":189,"location":[8.465308,49.983111]},"speedLimitUnit":"km/h","destinations":"A 60: Mainz, Rüsselsheim, Bingen, Wiesbaden","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Koblenz"},{"type":"text","text":"/"},{"type":"text","text":"Bingen"}],"type":"fork","modifier":"left","text":"Koblenz / Bingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"left","text":"A 60"},"distanceAlongGeometry":9326.777},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Koblenz"},{"type":"text","text":"/"},{"type":"text","text":"Bingen"}],"type":"fork","modifier":"left","text":"Koblenz / Bingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"left","text":"A 60"},"distanceAlongGeometry":3218.688}],"exits":"3","voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":9291.777},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 60.","announcement":"In 2 miles, Keep left to stay on A 60.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 60.","announcement":"In a half mile, Keep left to stay on A 60.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 60 toward Koblenz, Bingen.","announcement":"Keep left to stay on A 60 toward Koblenz, Bingen.","distanceAlongGeometry":266.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.465308,49.983111],"geometry_index":6866,"admin_index":5,"weight":41.686,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":42.766,"bearings":[9,187,193],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":1.941,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":1.941,"geometry_index":6895,"location":[8.45565,49.977498]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.454981,49.977466],"geometry_index":6896,"admin_index":5,"weight":28.838,"is_urban":false,"turn_weight":6,"duration":22.846,"bearings":[86,92,268],"out":2,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":19.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.473,"geometry_index":6905,"location":[8.44686,49.976638]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,259],"duration":3.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.658,"geometry_index":6910,"location":[8.439836,49.975591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.438595,49.975441],"geometry_index":6912,"admin_index":5,"weight":4.955,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.842,"bearings":[80,260,277],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":0.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.527,"geometry_index":6915,"location":[8.436655,49.975234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.436448,49.975214],"geometry_index":6916,"admin_index":5,"weight":2.354,"is_urban":false,"turn_weight":1.3,"duration":1.049,"bearings":[70,81,261],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,263],"duration":7.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.543,"geometry_index":6917,"location":[8.436092,49.975178]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,265],"duration":38.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":39.17,"geometry_index":6921,"location":[8.43351,49.974975]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":6.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.65,"geometry_index":6931,"location":[8.42003,49.974839]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.417747,49.974891],"geometry_index":6932,"admin_index":5,"weight":9.094,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.113,"bearings":[92,271,283],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.41432,49.974924],"geometry_index":6934,"admin_index":5,"weight":1.146,"is_urban":false,"turn_weight":1,"duration":0.168,"bearings":[77,91,270],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":7.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.016,"geometry_index":6935,"location":[8.414263,49.974924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":36.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":35.637,"geometry_index":6937,"location":[8.411597,49.974887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,262],"duration":0.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.531,"geometry_index":6946,"location":[8.397809,49.973831]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,262],"duration":10.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.459,"geometry_index":6947,"location":[8.397606,49.973813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":1.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.453,"geometry_index":6949,"location":[8.393562,49.973474]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":32.693,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":31.059,"geometry_index":6950,"location":[8.392997,49.973437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":5.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.619,"geometry_index":6957,"location":[8.380586,49.973214]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.378341,49.973303],"geometry_index":6959,"admin_index":5,"weight":8.131,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.566,"bearings":[94,275,283],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[89,95,277],"duration":0.545,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":2,"weight":0.523,"geometry_index":6961,"location":[8.375101,49.973488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":7.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.871,"geometry_index":6962,"location":[8.374907,49.973503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,279],"duration":39.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":38.125,"geometry_index":6964,"location":[8.372364,49.97372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":43.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":43.123,"geometry_index":6972,"location":[8.35851,49.975831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[123,302],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6989,"location":[8.345589,49.981423]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 5 miles.","announcement":"Continue for 5 miles.","distanceAlongGeometry":8351.225},{"ssmlAnnouncement":"In 1 mile, Take exit 21.","announcement":"In 1 mile, Take exit 21.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 21.","announcement":"In a half mile, Take exit 21.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 21 onto A 63 toward Kaiserslautern, Ludwigshafen.","announcement":"Take exit 21 onto A 63 toward Kaiserslautern, Ludwigshafen.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.344174,49.981947],"geometry_index":6991,"admin_index":5,"weight":4.732,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.764,"bearings":[119,293,304],"out":1,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":0.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.414,"geometry_index":6996,"location":[8.342642,49.982312]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,283],"duration":19.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.787,"geometry_index":6997,"location":[8.342511,49.982334]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,244],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.457,"geometry_index":7011,"location":[8.336669,49.981949]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.334965,49.981334],"geometry_index":7014,"admin_index":5,"weight":12.572,"is_urban":false,"turn_weight":1,"duration":11.312,"bearings":[51,59,236],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.331868,49.979862],"geometry_index":7017,"admin_index":5,"weight":2.312,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.262,"bearings":[52,232,248],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":2.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.023,"geometry_index":7018,"location":[8.331291,49.979575]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.330545,49.979204],"geometry_index":7019,"admin_index":5,"weight":8.045,"is_urban":false,"turn_weight":1,"duration":6.893,"bearings":[32,52,231],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":2.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.432,"geometry_index":7021,"location":[8.328705,49.978261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":34.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":34.221,"geometry_index":7022,"location":[8.328073,49.977932]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":5.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.463,"geometry_index":7027,"location":[8.319065,49.973281]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":0.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.248,"geometry_index":7029,"location":[8.317621,49.972551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":7.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.861,"geometry_index":7030,"location":[8.317555,49.972518]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.315352,49.971569],"geometry_index":7034,"admin_index":6,"weight":1.82,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.828,"bearings":[60,242,259],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,243],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.699,"geometry_index":7035,"location":[8.314782,49.971377]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":1.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.742,"geometry_index":7037,"location":[8.313917,49.97111]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,249],"duration":1.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.471,"geometry_index":7038,"location":[8.313334,49.97095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":0.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.311,"geometry_index":7039,"location":[8.312844,49.970831]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.312744,49.970807],"geometry_index":7040,"admin_index":6,"weight":1.779,"is_urban":false,"turn_weight":1,"duration":0.787,"bearings":[52,70,250],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,252],"duration":1.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.553,"geometry_index":7041,"location":[8.31247,49.970744]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,255],"duration":7.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.889,"geometry_index":7042,"location":[8.311925,49.970631]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.309104,49.970267],"geometry_index":7047,"admin_index":6,"weight":5.668,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.676,"bearings":[82,264,284],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.307035,49.970197],"geometry_index":7051,"admin_index":6,"weight":8.314,"is_urban":false,"turn_weight":0.75,"duration":7.572,"bearings":[75,89,272],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,281],"duration":4.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.004,"geometry_index":7055,"location":[8.304439,49.970347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,286],"duration":0.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.762,"geometry_index":7057,"location":[8.303083,49.97052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,288],"duration":25.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.91,"geometry_index":7058,"location":[8.302826,49.970566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,297],"duration":6.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.148,"geometry_index":7067,"location":[8.294762,49.97314]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.292549,49.973787],"geometry_index":7071,"admin_index":6,"weight":8.664,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.271,"bearings":[113,291,298],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":1.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.246,"geometry_index":7075,"location":[8.289843,49.974352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,283],"duration":11.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.705,"geometry_index":7076,"location":[8.289445,49.97442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,274],"duration":0.768,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.783,"geometry_index":7082,"location":[8.285903,49.974801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":9.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.68,"geometry_index":7083,"location":[8.285669,49.974811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":3.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.549,"geometry_index":7087,"location":[8.28274,49.974827]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":17.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.887,"geometry_index":7089,"location":[8.281672,49.97478]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.276376,49.974063],"geometry_index":7097,"admin_index":6,"weight":7.881,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":7.352,"bearings":[73,250,259],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[67,245],"duration":6.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":6.594,"geometry_index":7099,"location":[8.274216,49.973508]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[65,245],"duration":11.217,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":12.051,"geometry_index":7100,"location":[8.272465,49.972987]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":8.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":8.756,"geometry_index":7101,"location":[8.269355,49.972047]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":6.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":7.43,"geometry_index":7102,"location":[8.267068,49.971352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":11.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.756,"geometry_index":7103,"location":[8.264638,49.970624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":6.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.031,"geometry_index":7104,"location":[8.260703,49.969439]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.258355,49.968714],"geometry_index":7105,"admin_index":6,"weight":8.889,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.473,"bearings":[64,245,262],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.256156,49.968052],"geometry_index":7106,"admin_index":6,"weight":1.283,"is_urban":false,"turn_weight":1,"duration":0.277,"bearings":[52,65,246],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.213,"geometry_index":7107,"location":[8.256084,49.968031]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":7.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.998,"geometry_index":7108,"location":[8.255749,49.967934]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":10.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.268,"geometry_index":7109,"location":[8.253898,49.967379]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.338,"geometry_index":7110,"location":[8.251477,49.966643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":0.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.428,"geometry_index":7111,"location":[8.251163,49.966547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":10.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.014,"geometry_index":7112,"location":[8.251057,49.966517]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,248],"duration":11.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.539,"geometry_index":7114,"location":[8.248591,49.965802]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":4.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.494,"geometry_index":7116,"location":[8.246345,49.965247]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.24545,49.96507],"geometry_index":7117,"admin_index":6,"weight":4.16,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.166,"bearings":[73,254,265],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,256],"duration":17.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.279,"geometry_index":7118,"location":[8.244748,49.964941]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,263],"duration":11.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.6,"geometry_index":7123,"location":[8.241801,49.964515]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,268],"duration":8.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.73,"geometry_index":7126,"location":[8.239791,49.96439]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[88,270],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7127,"location":[8.238434,49.964362]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Kaiserslautern"},{"type":"text","text":"/"},{"type":"text","text":"Ludwigshafen"}],"type":"off ramp","modifier":"right","text":"Kaiserslautern / Ludwigshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"21"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"63","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 63"}],"type":"off ramp","modifier":"right","text":"Exit 21 A 63"},"distanceAlongGeometry":8391.225},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Kaiserslautern"},{"type":"text","text":"/"},{"type":"text","text":"Ludwigshafen"}],"type":"off ramp","modifier":"right","text":"Kaiserslautern / Ludwigshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"21"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"63","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 63"}],"type":"off ramp","modifier":"right","text":"Exit 21 A 63"},"distanceAlongGeometry":1609.344}],"destinations":"A 60: Koblenz, Bingen, Mainz, Ginsheim-Gustavburg","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 60 toward Koblenz/Bingen/Mainz/Ginsheim-Gustavburg.","modifier":"slight left","bearing_after":293,"bearing_before":299,"location":[8.344174,49.981947]},"speedLimitSign":"vienna","name":"","weight_typical":398.582,"duration_typical":383.494,"duration":383.494,"distance":8391.225,"driving_side":"right","weight":398.582,"mode":"driving","ref":"A 60","geometry":"u~si~A{eh|NkBfKgFnYoCtQ_DjUuA|Nk@dGwB`Y}AjYaApYe@tYKvYLvYj@rYdApY~AhYzB`YrCvXnDjXhEzW`FjWrGfZvHzY`Sjs@ba@hlAvQff@bf@~kA|P`c@dVrm@jb@|cApV`m@pSnf@ju@`hBlk@buAvm@nzAviAjpCjeA|eCzPba@vZbw@`AbCfX~s@dL`^bGzRvKv`@~Jrb@bLtg@pBjL~Hlc@lFr]n@fE|BbP`F`a@tCtYrEfl@rCxc@vBt_@`Bza@v@lXp@v^Xra@Fnd@Wde@_Ark@kAfb@gCdk@qEfu@gCn]{A`OwKv|@gI~j@qKpm@wMfo@uXthAa]hoAeXxbAcLlc@oOdl@yGdZiIt_@eJlg@cI~d@iHre@eIpm@kF`d@mGzm@gCzWiFvq@sCvc@uBl_@yB`j@MbD}Bft@SrMWdRm@zx@@vz@b@fm@`@za@z@z^~Bnx@fC`l@lCbg@~Enp@tDra@~Dlc@dGnh@fDfY~OzeAtPb_Ap_@llBvy@jaElj@|mCnl@zvC`iA|tFhl@vqCjh@lhCh@nC`E|Sta@trB~l@hvC~DrRz@rEbV`mApT`kAfQncAlOzfA`J|v@`Gzj@vGzs@tDjh@tCb\\dCxZhB~_@zApb@zAdl@`Azk@v@xsAApUGzQ"},{"ref":"A 63","mode":"driving","weight":1916.365,"distance":57573.164,"geometry":"}sqh~AukxuNyBpRuBxIqA~BqBdCkCp@kC]aCmAcDgE}CwGyCaJ{BgIiCiMyDeXcGeb@s@{FOgFBaFf@oErA_FhBaDvBkBrBy@vCG~Dh@bH~B`|@nkAzv@l_Axh@bq@pGnIvbAjqA|[pa@|{@rgArf@pm@b_@|b@n^|`@|j@lm@ny@~y@neArcAbOhOxqAtqAnnAdtAbj@xq@hTvXJLn]vf@xU|]~\\pj@d]tn@t^~t@b[ns@jJvVdKfYbU~q@~]|oA|Qvu@~F~WvLxi@dJhb@jTxbAtTjbAvIt^tXndAfW~w@d_@xaAvV~h@dZ~i@bf@|u@`[ra@j]r`@fSxRrW~Tfm@rc@h\\dR`h@nVjf@hQdf@tMbe@tJxu@~L~mAjRf[pF~UfFtr@pQlr@pVl}@t`@h~@jd@|yBffA`eArf@riAxf@fjBhv@vf@vSzy@t[jp@`Vbw@hWrFpBdq@hTjr@rSdy@rTf}@bT|r@|Nxy@nPzqA`Tv`@rFl]rErH`A`{@hLtL~A~NdBpNhBbt@lJnsBtVvV~Cz\\nE`a@xEhmAtQpr@|Ktt@~Mld@fIdgA`WfrA`^pu@pTd\\vK~b@lOb`@jN~]|Mj\\|MtZxM`^zN|^tQ|eAhi@pfAfl@h]nRnfA|p@x{AfdAlsAjbA|FtEdi@db@lj@fd@hm@|g@dl@~g@|f@zc@pdAx`Al{@|y@vaAlaA~`ApbAfmCdsCzhF`yF|yAp`BxyAl`BpoAluA~oAvuAlJhKrXdZbi@zk@vh@hj@tsAtsA`r@~o@lp@dm@`\\bYdj@~e@~g@|b@t\\xW~a@t\\di@|`@he@p]nZhT~QnMpGhEfbBhhAxi@v]zy@~f@rs@ja@zp@r^v`Arf@jaAle@rm@vYphB|u@dx@b[|bA`_@ny@hYrvArc@`cCxo@nyAb]blBp_@jx@dMfq@pKdb@xGr}@zKbwAdPjCZvx@`Hp`@tCn}AzJpdC|Ins@rAfnArAzcCe@liDiH`g@oArbBcErIStbBwE|gBoF|jEaLxhEqK~gA}C~z@uBvfAuBzi@{@bw@m@b{@Ona@Src@Zr{@jB|z@nCpt@|DxaAtI|_AzLx_AjPpz@|QjdAj[d]vKzc@|Plc@zQtz@ha@t`@xS|x@rf@vU|Nff@f]tb@f\\hd@|^|j@lg@tObOph@~h@x`@jc@d_@fc@|w@~cA|h@nv@lg@pv@bZdg@hd@tw@bi@pcA|e@r`Az_A~tB|g@tkAbd@tgAp]||@r`@bdAhXfq@f|@z}BxvBdyFxj@dyA`HlR`Unm@pFpNrEbLtJjWxVfp@fEdLdRvf@`Tfk@dHjRhMb]be@rmAj{@pzB|}@lzB|x@vkBv`@|y@f^hr@li@rbAvj@~_Apf@du@fe@~p@vc@hl@zh@|o@~m@xr@ll@dm@nn@pl@z`@r]hY|Uz\\|Wrb@fZth@`^rd@hYpYvPzq@x]ls@x\\pf@nSfs@vWnc@nN|lAp]zvAh]rq@jNxuAnVtdBdYxf@|H`h@dInmBnZlkBtYt{AbVljAnQbnCbb@pbAtOnEn@rdAjOztCzd@nrDnk@p_Fnx@reAxRxq@xN`GnAdf@rLbl@nO|eAf\\LDrf@|Ppv@fZbf@nSrc@~Sjo@h\\~nAxr@po@z`@zd@l[vh@b`@pu@dl@fvAtnAbf@he@|s@vt@tMzNzf@vi@jh@nl@lWl[p~@fjAvu@`bA`m@zy@ft@ldArq@haAfeA|xAblAbdBttAdmB`[fc@rcAzxAbhAb~Av{@dnAjbAfwAzRdXxs@xbAdt@hdAxhAx~Ad}@hpArVb]bt@~cAvrAnkBjaBt~BxkAzbBbeAtyAhnA~fB|~@|pAtpAbiBpPtTf{@xgAlSvVvp@tu@zcAvcAnfAt~@~b@`\\db@|Yfb@|Wx`@hVnkArm@bw@x\\hx@v\\nt@bXjs@tSlPfEfv@vRbi@hK`_@nGjXpD|gAtMh^bDtWtBd]jBt_@xAxe@~Ath@b@xr@FlHEbn@cAb`AuDngBsOrmAiRfmAyUteAoXzcA{ZjmAab@roAsf@naBgr@t_Bis@|y@y^`d@mR`cBcr@pw@iZvt@oX|nAg`@ro@sQfj@kMff@cKnp@eLvvBkWhk@uElu@sDtmA{Ar`@G~m@j@ri@pAhk@zBzj@~Efp@fGfu@vIbv@hMr}@hRpfAxYjgAl\\tp@rV|x@f]nx@|`@xv@lb@rk@l]tn@~a@bj@|_@~m@nf@zj@xe@jj@hh@tr@`r@vu@lz@xaA`mAn^lf@~d@jp@`z@bqA|s@xoAl[~k@v[vn@|k@hnAz`@v}@p\\dx@`^n}@d\\h{@tc@`oAte@rvAVt@d[h`Ahc@~vAzj@plBjv@noCr|@r`D|BrI`l@lxBpFfSd_AjlDpc@raBjeA~{Dnu@ppCxr@jjCp[pkAnYjgAlp@ddCfU`z@lPvm@nY~fAbk@|tB~YhfAz]zrAl\\`oAhg@rkBl`@pzAr[npAvVbiAfVxmA|UrwAl]phC|BfR~Hvr@vLriAhG`n@tCj[pQtcB~QzaBxKr|@rOfhArXpbBb\\haB`Tv~@lN|j@pQ`q@`N|e@pOff@~Zf~@|Wnt@r]b{@re@dfA~e@xcAxWji@vYdl@tm@nnA~_@jx@b_@px@hZds@`[`x@v[t}@dZ`_AtXd`AhOnk@fVnbA~XprAzXn|AzL~w@dLfy@jIfo@xKzcA~O|fBbNpgBhMfhBdP`wBbKbnA~Hzy@~H`v@vGtj@vI~n@|Krt@nNdw@rLpk@jB~I|VzaAfPjk@rZx}@d[vw@r[tq@nPz\\lOpX~[|h@`b@tm@dh@~n@ro@jp@br@pk@df@~[lj@`[pTzKra@|P`\\nLjq@fUjf@|Ohx@bYdZfMhb@|Rrl@h]jY`Sd]nWhZ`Wh[h[~_@db@hUzXbP~Tb^ji@xM|Tf[tj@h^vu@~Xbr@`Zny@|S`s@pVd_ApVrhAjJdg@vHje@zJvr@~KtaAlHz|@rGz~@bPpuCzHvkAjCz[zHvu@tKb{@dPv`ArQrz@jJd_@dN~e@zZb`A","duration":2085.377,"driving_side":"right","duration_typical":2085.377,"weight_typical":1916.365,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 21 onto A 63 toward Kaiserslautern/Ludwigshafen/Alzey.","modifier":"slight right","bearing_after":287,"bearing_before":271,"location":[8.237771,49.964367]},"speedLimitUnit":"km/h","destinations":"A 63: Kaiserslautern, Ludwigshafen, Alzey","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Winnweiler"},{"type":"text","text":"/"},{"type":"text","text":"Rockenhausen"}],"type":"off ramp","modifier":"right","text":"Winnweiler / Rockenhausen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"13"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"}],"type":"off ramp","modifier":"right","text":"Exit 13 B 48"},"distanceAlongGeometry":57573.164},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Winnweiler"},{"type":"text","text":"/"},{"type":"text","text":"Rockenhausen"}],"type":"off ramp","modifier":"right","text":"Winnweiler / Rockenhausen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"13"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"}],"type":"off ramp","modifier":"right","text":"Exit 13 B 48"},"distanceAlongGeometry":3218.688}],"exits":"21","voiceInstructions":[{"ssmlAnnouncement":"Continue for 36 miles.","announcement":"Continue for 36 miles.","distanceAlongGeometry":57559.832},{"ssmlAnnouncement":"In 2 miles, Take exit 13.","announcement":"In 2 miles, Take exit 13.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 13.","announcement":"In a half mile, Take exit 13.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 13 onto B 48 toward Winnweiler, Rockenhausen. Then Turn right toward Bad Bergzabern.","announcement":"Take exit 13 onto B 48 toward Winnweiler, Rockenhausen. Then Turn right toward Bad Bergzabern.","distanceAlongGeometry":247.917}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.237771,49.964367],"geometry_index":7129,"admin_index":6,"weight":40.096,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":40.115,"bearings":[91,272,287],"out":2,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.239613,49.964863],"geometry_index":7154,"admin_index":6,"weight":16.988,"is_urban":false,"turn_weight":6.75,"duration":10.543,"bearings":[13,38,219],"out":2,"in":0,"turn_duration":0.042,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":16.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.941,"geometry_index":7155,"location":[8.238389,49.963886]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.236556,49.962323],"geometry_index":7157,"admin_index":6,"weight":1.793,"is_urban":false,"turn_weight":1,"duration":0.82,"bearings":[20,38,218],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":9.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.109,"geometry_index":7158,"location":[8.236388,49.962186]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":31.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":29.762,"geometry_index":7160,"location":[8.234517,49.960639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.25,"geometry_index":7167,"location":[8.228707,49.955245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":33.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":31.771,"geometry_index":7168,"location":[8.228446,49.954987]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,233],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.162,"geometry_index":7179,"location":[8.220233,49.94858]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":7.775,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.387,"geometry_index":7180,"location":[8.219853,49.948398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.217322,49.947353],"geometry_index":7183,"admin_index":6,"weight":3.707,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.912,"bearings":[59,242,255],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":3.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.6,"geometry_index":7185,"location":[8.216046,49.946922]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.214796,49.946523],"geometry_index":7187,"admin_index":6,"weight":6.744,"is_urban":false,"turn_weight":1,"duration":6.055,"bearings":[49,64,244],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.361,"geometry_index":7189,"location":[8.212633,49.945834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":5.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.645,"geometry_index":7190,"location":[8.212126,49.945662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,233],"duration":32.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":29.68,"geometry_index":7192,"location":[8.210102,49.944863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":67.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":62.074,"geometry_index":7205,"location":[8.203236,49.938131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.469,"geometry_index":7222,"location":[8.195622,49.921634]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":26.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.168,"geometry_index":7223,"location":[8.195565,49.921512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,188],"duration":2.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.025,"geometry_index":7230,"location":[8.193338,49.914862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.826,"geometry_index":7231,"location":[8.193216,49.914322]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.576,"geometry_index":7232,"location":[8.19311,49.913835]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":3.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.693,"geometry_index":7233,"location":[8.193077,49.913681]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.192864,49.91272],"geometry_index":7234,"admin_index":6,"weight":5.936,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.254,"bearings":[8,188,204],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[8,187,352],"duration":7.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.939,"geometry_index":7238,"location":[8.192529,49.911146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":1.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.428,"geometry_index":7239,"location":[8.19215,49.909282]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.793,"geometry_index":7240,"location":[8.19207,49.908902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":44.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":42.299,"geometry_index":7241,"location":[8.191966,49.908424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":9.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.658,"geometry_index":7257,"location":[8.187739,49.896993]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":6.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.4,"geometry_index":7259,"location":[8.186338,49.894713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":6.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.756,"geometry_index":7261,"location":[8.185227,49.893084]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.184119,49.891599],"geometry_index":7262,"admin_index":6,"weight":5.369,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.973,"bearings":[26,207,225],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[13,27,208],"duration":6.521,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":5.863,"geometry_index":7263,"location":[8.183041,49.890248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,210],"duration":81.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":73.439,"geometry_index":7266,"location":[8.181775,49.888751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.801,"geometry_index":7279,"location":[8.163471,49.870933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":43.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":40.186,"geometry_index":7280,"location":[8.163274,49.87075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.539,"geometry_index":7295,"location":[8.154456,49.861156]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":64.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":57.889,"geometry_index":7296,"location":[8.154355,49.861019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":5.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.092,"geometry_index":7310,"location":[8.145687,49.845162]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.145205,49.843714],"geometry_index":7311,"admin_index":6,"weight":6.48,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.221,"bearings":[12,191,206],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.144684,49.841968],"geometry_index":7312,"admin_index":6,"weight":5.836,"is_urban":false,"turn_weight":1,"duration":5.393,"bearings":[11,189,353],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":53.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":46.936,"geometry_index":7314,"location":[8.144256,49.840246]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":0.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.576,"geometry_index":7328,"location":[8.143257,49.822895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":55.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":48.178,"geometry_index":7329,"location":[8.143267,49.822725]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":54.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":47.582,"geometry_index":7336,"location":[8.144102,49.809683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":6.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.035,"geometry_index":7351,"location":[8.142019,49.796932]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.141168,49.795394],"geometry_index":7353,"admin_index":6,"weight":8.199,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.379,"bearings":[20,202,225],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[0,24,204],"duration":1.893,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":1.65,"geometry_index":7355,"location":[8.140201,49.793928]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.625,"geometry_index":7356,"location":[8.139946,49.793564]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":76.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":69.082,"geometry_index":7358,"location":[8.138994,49.792365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":7.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.215,"geometry_index":7377,"location":[8.121987,49.780801]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.119957,49.779821],"geometry_index":7378,"admin_index":6,"weight":15.895,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.191,"bearings":[53,233,246],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":6.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.771,"geometry_index":7379,"location":[8.115954,49.777904]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.059,"geometry_index":7380,"location":[8.114511,49.777203]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.498,"geometry_index":7381,"location":[8.1142,49.777058]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.113456,49.776705],"geometry_index":7382,"admin_index":6,"weight":0.779,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.85,"bearings":[54,233,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":0.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.688,"geometry_index":7383,"location":[8.113207,49.776584]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":4.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.756,"geometry_index":7384,"location":[8.112997,49.776478]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.111819,49.77591],"geometry_index":7386,"admin_index":6,"weight":1.658,"is_urban":false,"turn_weight":1,"duration":0.721,"bearings":[35,53,234],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":2.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.977,"geometry_index":7387,"location":[8.111608,49.77581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.119,"geometry_index":7388,"location":[8.110972,49.775503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":0.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.914,"geometry_index":7389,"location":[8.110264,49.775166]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":1.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.404,"geometry_index":7390,"location":[8.109954,49.775019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":16.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.41,"geometry_index":7391,"location":[8.109472,49.77479]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.104262,49.772207],"geometry_index":7394,"admin_index":6,"weight":6.238,"is_urban":false,"turn_weight":1,"duration":5.684,"bearings":[38,52,230],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":93.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":86.709,"geometry_index":7395,"location":[8.102522,49.77128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":5.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.721,"geometry_index":7423,"location":[8.086313,49.750229]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.085991,49.748935],"geometry_index":7425,"admin_index":6,"weight":10.117,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.945,"bearings":[9,189,200],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[9,189,348],"duration":5.844,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.398,"geometry_index":7427,"location":[8.085124,49.745432]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":4.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.396,"geometry_index":7428,"location":[8.084754,49.743949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":9.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.342,"geometry_index":7429,"location":[8.084458,49.742742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":4.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.553,"geometry_index":7430,"location":[8.083896,49.740452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":41.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":37.193,"geometry_index":7432,"location":[8.083605,49.739267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,190],"duration":6.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.482,"geometry_index":7436,"location":[8.081105,49.72929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,192],"duration":34.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":30.705,"geometry_index":7438,"location":[8.080535,49.727347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,211],"duration":4.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.486,"geometry_index":7453,"location":[8.074607,49.717014]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.073332,49.715618],"geometry_index":7454,"admin_index":6,"weight":7.434,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.268,"bearings":[31,212,232],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[13,33,215],"duration":1.449,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":1.297,"geometry_index":7456,"location":[8.071859,49.714145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":7.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.168,"geometry_index":7457,"location":[8.071605,49.71391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,217],"duration":85.725,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":75.01,"geometry_index":7459,"location":[8.070193,49.71261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,219],"duration":2.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.789,"geometry_index":7473,"location":[8.053308,49.699431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":54.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":47.439,"geometry_index":7474,"location":[8.052905,49.699113]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":6.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.828,"geometry_index":7484,"location":[8.039463,49.688748]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.037799,49.687479],"geometry_index":7485,"admin_index":6,"weight":11.775,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.092,"bearings":[40,220,232],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.034443,49.684868],"geometry_index":7488,"admin_index":6,"weight":6.67,"is_urban":false,"turn_weight":1,"duration":6.318,"bearings":[25,39,218],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,215],"duration":43.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":39.473,"geometry_index":7490,"location":[8.032898,49.683577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":6.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.668,"geometry_index":7503,"location":[8.025704,49.673279]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.025191,49.671721],"geometry_index":7505,"admin_index":6,"weight":8.119,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.564,"bearings":[11,190,206],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.024731,49.669635],"geometry_index":7508,"admin_index":6,"weight":3.129,"is_urban":false,"turn_weight":1,"duration":2.26,"bearings":[7,186,353],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":1.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.602,"geometry_index":7509,"location":[8.024649,49.669134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,184],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.793,"geometry_index":7510,"location":[8.02459,49.668739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,183],"duration":10.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.762,"geometry_index":7511,"location":[8.024536,49.668256]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":0.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.51,"geometry_index":7515,"location":[8.024421,49.665616]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":215.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":199.518,"geometry_index":7516,"location":[8.024424,49.665465]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,231],"duration":2.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.617,"geometry_index":7573,"location":[8.015539,49.612833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":26.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":23.914,"geometry_index":7574,"location":[8.014624,49.61236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":6.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.986,"geometry_index":7582,"location":[8.005743,49.608444]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.003431,49.607558],"geometry_index":7583,"admin_index":6,"weight":6.998,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.783,"bearings":[59,240,260],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.000845,49.606572],"geometry_index":7584,"admin_index":6,"weight":1.445,"is_urban":false,"turn_weight":1,"duration":0.516,"bearings":[44,60,240],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":5.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.146,"geometry_index":7585,"location":[8.000675,49.606509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.857,"geometry_index":7586,"location":[7.998732,49.605788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":48.303,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":43.455,"geometry_index":7587,"location":[7.998408,49.605667]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":2.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.461,"geometry_index":7595,"location":[7.981959,49.599556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":34.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":31.186,"geometry_index":7596,"location":[7.981014,49.5992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,244],"duration":6.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.074,"geometry_index":7605,"location":[7.968956,49.594756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.966509,49.594004],"geometry_index":7607,"admin_index":6,"weight":8.83,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.82,"bearings":[66,248,267],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.96289,49.59315],"geometry_index":7609,"admin_index":6,"weight":1.746,"is_urban":false,"turn_weight":1,"duration":0.836,"bearings":[55,71,252],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":5.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.924,"geometry_index":7610,"location":[7.962582,49.593087]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,255],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.814,"geometry_index":7612,"location":[7.96056,49.592707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,256],"duration":1.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.125,"geometry_index":7613,"location":[7.959807,49.592574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,254],"duration":162.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":146.293,"geometry_index":7614,"location":[7.959353,49.592499]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,213],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.543,"geometry_index":7671,"location":[7.902597,49.572704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,206],"duration":31.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.938,"geometry_index":7673,"location":[7.901094,49.571108]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.797,"geometry_index":7686,"location":[7.896682,49.563434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,213],"duration":24.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":22.094,"geometry_index":7687,"location":[7.896297,49.562997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,240],"duration":9.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.918,"geometry_index":7698,"location":[7.889324,49.558513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,251],"duration":31.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":28.303,"geometry_index":7702,"location":[7.885862,49.557421]},{"bearings":[64,241],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7713,"location":[7.874012,49.555298]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right toward Bad Bergzabern, Enkenbach-Alsenborn.","announcement":"Turn right toward Bad Bergzabern, Enkenbach-Alsenborn.","distanceAlongGeometry":168.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[7.871831,49.554427],"geometry_index":7716,"admin_index":6,"weight":8.527,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":9.24,"bearings":[57,234,254],"out":2,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true,true],"in":0,"bearings":[137,170,343],"duration":3.949,"turn_duration":0.042,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"weight":3.613,"geometry_index":7722,"location":[7.870538,49.554603]},{"bearings":[163,341,360],"entry":[false,false,true],"turn_weight":0.75,"turn_duration":0.022,"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"geometry_index":7723,"location":[7.870336,49.555043]}],"exits":"13","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bad Bergzabern"},{"type":"text","text":"/"},{"type":"text","text":"Enkenbach-Alsenborn"}],"type":"turn","modifier":"right","text":"Bad Bergzabern / Enkenbach-Alsenborn"},"distanceAlongGeometry":209.428}],"destinations":"B 48: Winnweiler, Rockenhausen, Enkenbach-Alsenborn","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 13 onto B 48 toward Winnweiler/Rockenhausen/Enkenbach-Alsenborn.","modifier":"slight right","bearing_after":254,"bearing_before":237,"location":[7.871831,49.554427]},"speedLimitSign":"vienna","name":"","weight_typical":23.922,"duration_typical":25.137,"duration":25.137,"distance":209.428,"driving_side":"right","weight":23.922,"mode":"driving","geometry":"u~po}Amtm_NvBjR|@tOQbKyAlIsCzIuGhJoZrK}DZcBEqBWaC}@}EmBoDW"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 5 miles.","announcement":"Continue for 5 miles.","distanceAlongGeometry":7605.053},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward B 48.","announcement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward B 48.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 3rd exit toward B 48, A 6.","announcement":"Enter the roundabout and take the 3rd exit toward B 48, A 6.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false,true,true],"in":2,"bearings":[18,117,192,220,296],"duration":8.703,"turn_weight":15,"turn_duration":4.001,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":19.35,"geometry_index":7729,"location":[7.870435,49.555509]},{"entry":[true,false],"in":1,"bearings":[122,302],"duration":2.496,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.309,"geometry_index":7733,"location":[7.87142,49.555154]},{"entry":[true,false],"in":1,"bearings":[127,306],"duration":1.277,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.182,"geometry_index":7736,"location":[7.871917,49.554937]},{"entry":[true,false],"in":1,"bearings":[130,307],"duration":3.234,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.992,"geometry_index":7737,"location":[7.872159,49.554818]},{"entry":[true,false],"in":1,"bearings":[136,310],"duration":7.057,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.527,"geometry_index":7738,"location":[7.872812,49.554462]},{"entry":[true,false],"in":1,"bearings":[146,320],"duration":2.016,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.865,"geometry_index":7741,"location":[7.873714,49.55381]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[146,326],"duration":3.889,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.596,"geometry_index":7742,"location":[7.87393,49.553602]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.874329,49.553192],"geometry_index":7744,"admin_index":6,"weight":2.912,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1,"duration":2.074,"bearings":[52,151,330],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[7,154,332],"duration":0.883,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":0.811,"geometry_index":7746,"location":[7.874539,49.552945]},{"entry":[true,false],"in":1,"bearings":[156,334],"duration":3.795,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.51,"geometry_index":7747,"location":[7.874644,49.552803]},{"entry":[true,false],"in":1,"bearings":[166,341],"duration":6.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":5.43,"geometry_index":7749,"location":[7.875032,49.552147]},{"entry":[true,false],"in":1,"bearings":[169,349],"duration":6.811,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.129,"geometry_index":7751,"location":[7.8754,49.551059]},{"entry":[true,false],"in":1,"bearings":[158,345],"duration":30.145,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":27.102,"geometry_index":7755,"location":[7.875843,49.549831]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":4.191,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.766,"geometry_index":7771,"location":[7.880512,49.545327]},{"entry":[false,true],"in":0,"bearings":[0,184],"duration":3.551,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.195,"geometry_index":7773,"location":[7.880543,49.54456]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.880471,49.543905],"geometry_index":7774,"admin_index":6,"weight":2.32,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":0.5,"duration":2.029,"bearings":[4,184],"out":1,"in":0,"entry":[false,true]},{"entry":[false,true],"in":0,"bearings":[4,183],"duration":5.869,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.281,"geometry_index":7775,"location":[7.880428,49.54354]},{"entry":[true,false],"in":1,"bearings":[169,356],"duration":10.484,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":9.41,"geometry_index":7778,"location":[7.880451,49.542469]},{"entry":[true,false],"in":1,"bearings":[156,335],"duration":8.334,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.5,"geometry_index":7781,"location":[7.881407,49.540676]},{"entry":[false,true],"in":0,"bearings":[0,189],"duration":2.959,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":2.662,"geometry_index":7786,"location":[7.881899,49.539203]},{"entry":[false,true],"in":0,"bearings":[16,205],"duration":8.967,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.057,"geometry_index":7788,"location":[7.881714,49.538676]},{"entry":[false,true],"in":0,"bearings":[6,177],"duration":5.727,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.123,"geometry_index":7794,"location":[7.880756,49.537166]},{"entry":[true,false],"in":1,"bearings":[153,333],"duration":19.752,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":17.775,"geometry_index":7797,"location":[7.881141,49.536159]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":20.635,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":18.564,"geometry_index":7805,"location":[7.883119,49.532768]},{"entry":[true,false],"in":1,"bearings":[148,328],"duration":2.627,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.365,"geometry_index":7811,"location":[7.886293,49.529591]},{"entry":[false,true,false],"in":2,"bearings":[51,150,328],"duration":3.414,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.064,"geometry_index":7812,"location":[7.886685,49.529176]},{"entry":[false,true,false,false],"in":3,"bearings":[66,150,231,330],"duration":1.127,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.008,"geometry_index":7814,"location":[7.887172,49.528634]},{"entry":[true,true,false],"in":2,"bearings":[147,234,330],"duration":3.879,"turn_weight":0.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.221,"geometry_index":7815,"location":[7.887333,49.528455]},{"entry":[true,false],"in":1,"bearings":[145,327],"duration":1.156,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.041,"geometry_index":7816,"location":[7.887782,49.528006]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":4.822,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.34,"geometry_index":7817,"location":[7.887925,49.527873]},{"entry":[true,false],"in":1,"bearings":[147,325],"duration":12.248,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":11.016,"geometry_index":7818,"location":[7.888517,49.527319]},{"entry":[true,false],"in":1,"bearings":[152,338],"duration":2.713,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.443,"geometry_index":7825,"location":[7.890234,49.525704]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.890551,49.52531],"geometry_index":7826,"admin_index":6,"weight":1.508,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.03,"turn_weight":0.5,"duration":1.148,"bearings":[62,145,332],"out":1,"in":2,"entry":[true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[46,145,234,325],"duration":4.191,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.766,"geometry_index":7827,"location":[7.890736,49.525138]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":18.486,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":16.639,"geometry_index":7829,"location":[7.891421,49.524506]},{"entry":[false,true],"in":0,"bearings":[20,199],"duration":13.816,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":12.436,"geometry_index":7837,"location":[7.891293,49.521248]},{"entry":[false,true],"in":0,"bearings":[12,186],"duration":12.436,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":11.164,"geometry_index":7842,"location":[7.89047,49.518759]},{"entry":[false,true],"in":0,"bearings":[4,175],"duration":11.955,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":10.727,"geometry_index":7848,"location":[7.890482,49.516477]},{"entry":[false,true],"in":0,"bearings":[11,191],"duration":4.184,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.766,"geometry_index":7853,"location":[7.890477,49.514287]},{"entry":[false,true],"in":0,"bearings":[11,191],"duration":22.482,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":20.229,"geometry_index":7854,"location":[7.890248,49.513533]},{"entry":[true,false],"in":1,"bearings":[164,342],"duration":3.016,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.715,"geometry_index":7860,"location":[7.891842,49.509679]},{"entry":[true,false],"in":1,"bearings":[173,350],"duration":1.217,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.094,"geometry_index":7862,"location":[7.892021,49.509136]},{"entry":[true,false],"in":1,"bearings":[174,353],"duration":0.973,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.875,"geometry_index":7863,"location":[7.89206,49.508915]},{"entry":[true,false],"in":1,"bearings":[173,354],"duration":11.451,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":10.301,"geometry_index":7864,"location":[7.892091,49.508732]},{"entry":[true,false],"in":1,"bearings":[168,348],"duration":5.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.6,"geometry_index":7868,"location":[7.892525,49.506837]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":0.059,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.053,"geometry_index":7870,"location":[7.892869,49.506077]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":2.09,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.881,"geometry_index":7871,"location":[7.892873,49.506069]},{"entry":[true,false],"in":1,"bearings":[161,342],"duration":1.242,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.117,"geometry_index":7872,"location":[7.893032,49.505758]},{"entry":[true,false],"in":1,"bearings":[163,341],"duration":2.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.16,"geometry_index":7873,"location":[7.893122,49.505586]},{"entry":[true,false],"in":1,"bearings":[164,343],"duration":1.59,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.414,"geometry_index":7874,"location":[7.893279,49.505256]},{"entry":[true,false],"in":1,"bearings":[167,345],"duration":0.785,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.707,"geometry_index":7876,"location":[7.893368,49.505045]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":1.113,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.002,"geometry_index":7877,"location":[7.893406,49.504938]},{"entry":[true,false],"in":1,"bearings":[169,347],"duration":2.094,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.885,"geometry_index":7878,"location":[7.893459,49.504786]},{"entry":[true,false],"in":1,"bearings":[174,350],"duration":1.121,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.002,"geometry_index":7880,"location":[7.893539,49.504506]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":0.654,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.59,"geometry_index":7881,"location":[7.893565,49.50435]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[174,354],"duration":1.963,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.768,"geometry_index":7882,"location":[7.89358,49.504264]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.893626,49.503993],"geometry_index":7883,"admin_index":6,"weight":5,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.009,"turn_weight":1,"duration":4.453,"bearings":[79,177,263,354],"out":1,"in":3,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[190,357],"duration":2.307,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.133,"geometry_index":7884,"location":[7.893675,49.503282]},{"entry":[false,true],"in":0,"bearings":[11,196],"duration":7.426,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":6.867,"geometry_index":7886,"location":[7.893576,49.502923]},{"entry":[false,true],"in":0,"bearings":[10,190],"duration":11.426,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":10.562,"geometry_index":7889,"location":[7.893092,49.501777]},{"entry":[true,false],"in":1,"bearings":[179,359],"duration":0.676,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.625,"geometry_index":7893,"location":[7.892804,49.499965]},{"entry":[true,false],"in":1,"bearings":[178,359],"duration":9.225,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":8.533,"geometry_index":7894,"location":[7.892806,49.499857]},{"entry":[true,false],"in":1,"bearings":[162,348],"duration":10.49,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":9.678,"geometry_index":7897,"location":[7.893139,49.498403]},{"entry":[false,true,false],"in":2,"bearings":[139,159,328],"duration":1.023,"turn_weight":1.5,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":2.432,"geometry_index":7900,"location":[7.894195,49.496891]},{"entry":[true,false],"in":1,"bearings":[149,339],"duration":2.25,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.045,"geometry_index":7901,"location":[7.894263,49.496776]},{"entry":[true,true,false,true,false,true],"in":4,"bearings":[61,153,220,265,320,336],"duration":3.752,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.455,"geometry_index":7903,"location":[7.894603,49.496466]},{"entry":[false,true,false],"in":2,"bearings":[151,163,336],"duration":2.572,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.369,"geometry_index":7905,"location":[7.894932,49.496019]},{"entry":[true,false,true],"in":1,"bearings":[162,334,346],"duration":1.234,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.131,"geometry_index":7908,"location":[7.895117,49.495716]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":3.748,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.461,"geometry_index":7909,"location":[7.895194,49.495563]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":1.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.109,"geometry_index":7910,"location":[7.895423,49.495106]},{"entry":[true,false],"in":1,"bearings":[167,342],"duration":13.619,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":12.588,"geometry_index":7911,"location":[7.895497,49.494958]},{"entry":[true,false],"in":1,"bearings":[171,352],"duration":0.596,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.533,"geometry_index":7915,"location":[7.895932,49.493287]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":0.668,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.6,"geometry_index":7916,"location":[7.895948,49.493219]},{"entry":[false,true,false],"in":2,"bearings":[151,169,350],"duration":3.621,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.33,"geometry_index":7917,"location":[7.89597,49.493137]},{"bearings":[166,346],"entry":[true,false],"in":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":7919,"location":[7.896048,49.492917]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":222,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":7628.386}],"destinations":"Bad Bergzabern, Enkenbach-Alsenborn, Münchweiler","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right toward Bad Bergzabern/Enkenbach-Alsenborn/Münchweiler.","modifier":"right","bearing_after":117,"bearing_before":12,"location":[7.870435,49.555509]},"speedLimitSign":"vienna","name":"","weight_typical":390.576,"duration_typical":410.797,"duration":410.797,"distance":7628.386,"driving_side":"right","weight":390.576,"mode":"driving","ref":"B 48","geometry":"ibso}Ae}j_Nj@oC|EiSxEaR`FuPrDiMnDyJlA}ClFcNfUyg@~HaNlKqPhQwV~KoLbPwPnGeF|DmDnHuFzGqEhNoItXwLla@}Kp`@aI`QmDrZuH|TsGbH}BhO}HhKoHbIcIzTyUzR_ZrOwZx`@k|@dI{OfUg_@bJ_LvKkKxMyKfVoNrTcJvVsFxIw@pHw@je@E|g@nCxUtA|F\\v]Pf[}A|[kGf^mMzr@}c@jHsE~ZwMpXqF`YqA`BVvNvBdPxFzP~KxCnCvY`X|JfFnOnFnOpA`ZmAbXiLvIiGlMeJpe@_]z^}XrTsKrUkHpd@gKl\\cLxNcHrL_Gxa@sXjYwWdXg[|r@sbArm@ck@|XoWhSgQpLeKdJaI`[a[hG}Gra@_d@tHwHxLsP|JsOtL}RvLkO`J}H~YaPrWyRvIqJzAeBrc@sf@zGqHzM_LxLiFbLcCpjAlAnL~Bnc@|RjZrNbGrCbKzChe@pIzT~DbjAjXbMjAlPYbd@oCb]}@xT|@~TdAb\\cCzx@qEdW|CbObBpH|Abn@hMzm@tMrX~AnVyDpLyGptB}~AvLwEbHmCxWwExLmAlJ}@fFg@f~@{JhOyBr^eI`N_Dl_@oONGlR}HvIsDrSyHtD}AnFsAtEkAnHiBvBi@vLuBvHs@jD]|O{Alk@aBlKfB~H|At\\bLp]|LjJdBbQvCjf@zFph@rDdMGvEChSg@bY_Dlk@qMrn@kWdUoPtWcWdFgCjOiN~A}DnLoIlMaIvCi@fHwD|CoCpHyCp[iMfHsCtU{FzUoDjj@iInNoBfC_@bDk@nGm@fDmBvAw@`Dg@"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 48, A 6.","announcement":"Exit the roundabout toward B 48, A 6.","distanceAlongGeometry":36.647}],"intersections":[{"entry":[false,true,false],"in":2,"bearings":[53,192,346],"duration":1.066,"turn_weight":5.75,"turn_duration":0.037,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":6.701,"geometry_index":7921,"location":[7.896096,49.492792]},{"entry":[false,true,true],"in":0,"bearings":[12,160,258],"duration":1.633,"turn_duration":0.223,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":1.303,"geometry_index":7923,"location":[7.896073,49.492722]},{"entry":[true,true,false],"in":2,"bearings":[116,175,340],"duration":2.682,"turn_duration":0.582,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"weight":1.943,"geometry_index":7925,"location":[7.896116,49.492647]},{"bearings":[83,200,296],"entry":[true,false,false],"in":2,"turn_duration":0.223,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":7928,"location":[7.896279,49.492595]}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern, Alsenborn","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":222,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":36.647}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":3,"instruction":"Enter the roundabout and take the 3rd exit toward B 48/A 6/Bad Bergzabern.","modifier":"slight right","bearing_after":192,"bearing_before":166,"location":[7.896096,49.492792]},"speedLimitSign":"vienna","name":"","weight_typical":10.572,"duration_typical":6.279,"duration":6.279,"distance":36.647,"driving_side":"right","weight":10.572,"mode":"driving","ref":"B 48","geometry":"orxk}A_a}`NbAd@fAFlAYfA{@v@yAb@mBJ}B@_AOcB"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 1st exit toward B 48.","announcement":"In a quarter mile, Enter the roundabout and take the 1st exit toward B 48.","distanceAlongGeometry":514.777},{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit toward B 48, A 6.","announcement":"Enter the roundabout and take the 1st exit toward B 48, A 6.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[35,115,263],"duration":3.865,"turn_weight":5,"turn_duration":0.059,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.52,"geometry_index":7930,"location":[7.896361,49.492602]},{"entry":[true,false,true],"in":1,"bearings":[128,299,317],"duration":2.713,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.498,"geometry_index":7932,"location":[7.89682,49.492451]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.994,"geometry_index":7933,"location":[7.897241,49.492238]},{"entry":[true,false],"in":1,"bearings":[112,296],"duration":2.836,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.604,"geometry_index":7936,"location":[7.898152,49.491869]},{"entry":[true,false],"in":1,"bearings":[115,292],"duration":17.541,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":16.227,"geometry_index":7937,"location":[7.898704,49.491727]},{"entry":[true,false],"in":1,"bearings":[165,347],"duration":1.637,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.555,"geometry_index":7942,"location":[7.900231,49.489683]},{"bearings":[145,165,345],"entry":[false,true,false],"in":2,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7944,"location":[7.900319,49.489467]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":172,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":531.444}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern, Alsenborn","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward B 48/A 6/Bad Bergzabern.","modifier":"slight right","bearing_after":115,"bearing_before":83,"location":[7.896361,49.492602]},"speedLimitSign":"vienna","name":"","weight_typical":42.789,"duration_typical":39.676,"duration":39.676,"distance":531.444,"driving_side":"right","weight":42.789,"mode":"driving","ref":"B 48","geometry":"sfxk}Aqq}`Nl@kE~FiUhLiYhIoSbEiNrEcTzGoa@dJic@bIkMxKiI~HeDrrAg\\tCs@xG{BzDe@nKkGtB]"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 48, A 6.","announcement":"Exit the roundabout toward B 48, A 6.","distanceAlongGeometry":27.776}],"intersections":[{"bearings":[61,183,341],"entry":[false,true,false],"in":2,"turn_weight":5.75,"turn_duration":0.03,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7947,"location":[7.900487,49.489114]}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":172,"driving_side":"right","type":"roundabout","modifier":"straight","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":27.776}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":1,"instruction":"Enter the roundabout and take the 1st exit toward B 48/A 6/Bad Bergzabern.","modifier":"slight right","bearing_after":183,"bearing_before":161,"location":[7.900487,49.489114]},"speedLimitSign":"vienna","name":"","weight_typical":9.434,"duration_typical":3.906,"duration":3.906,"distance":27.776,"driving_side":"right","weight":9.434,"mode":"driving","ref":"B 48","geometry":"slqk}AmseaNtAjA`BZbBSxAcAdAkB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":738.238},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward Bad Bergzabern.","announcement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward Bad Bergzabern.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 3rd exit toward Bad Bergzabern, Neustadt (Weinstraße).","announcement":"Enter the roundabout and take the 3rd exit toward Bad Bergzabern, Neustadt (Weinstraße).","distanceAlongGeometry":178.889}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[99,168,341],"duration":3.705,"turn_weight":5,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.51,"geometry_index":7952,"location":[7.900533,49.488892]},{"entry":[true,true,false],"in":2,"bearings":[10,172,347],"duration":3.25,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.078,"geometry_index":7955,"location":[7.900654,49.488559]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":1.289,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.225,"geometry_index":7957,"location":[7.900772,49.48816]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":0.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.867,"geometry_index":7958,"location":[7.900854,49.487948]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":20.633,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":19.602,"geometry_index":7959,"location":[7.900912,49.487799]},{"entry":[true,false],"in":1,"bearings":[171,340],"duration":1.289,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.225,"geometry_index":7966,"location":[7.903149,49.484714]},{"entry":[true,false],"in":1,"bearings":[177,351],"duration":0.439,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.408,"geometry_index":7967,"location":[7.903199,49.484503]},{"entry":[true,false],"in":1,"bearings":[179,357],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.42,"geometry_index":7968,"location":[7.903206,49.484427]},{"entry":[false,true],"in":0,"bearings":[16,205],"duration":2.049,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.945,"geometry_index":7972,"location":[7.90309,49.483836]},{"entry":[false,true],"in":0,"bearings":[25,212],"duration":6.127,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.82,"geometry_index":7973,"location":[7.902899,49.48357]},{"bearings":[53,236],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7976,"location":[7.902149,49.48306]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bad Bergzabern"},{"type":"text","text":"/"},{"type":"text","text":"Neustadt (Weinstraße)"},{"type":"text","text":"/"},{"type":"text","text":"Hochspeyer"}],"degrees":269,"driving_side":"right","type":"roundabout","modifier":"right","text":"Bad Bergzabern / Neustadt (Weinstraße) / Hochspeyer"},"distanceAlongGeometry":754.905}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward B 48/A 6/Bad Bergzabern.","modifier":"straight","bearing_after":168,"bearing_before":161,"location":[7.900533,49.488892]},"speedLimitSign":"vienna","name":"","weight_typical":50.945,"duration_typical":48.395,"duration":48.395,"distance":754.905,"driving_side":"right","weight":50.945,"mode":"driving","ref":"B 48","geometry":"w~pk}AiveaNlCyAdK{@dC{AvIcAdMgDfLcDhHsBlz@{UpT}JxVgSdPmOlXu[r`@e`@vJmEdLcBvCMzGUzIx@fGt@|GlCrO|JvJbJxHhMhIlThC`InEpM"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward Bad Bergzabern, Neustadt (Weinstraße).","announcement":"Exit the roundabout toward Bad Bergzabern, Neustadt (Weinstraße).","distanceAlongGeometry":39.904}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[56,176,280],"duration":3.895,"turn_weight":5.75,"turn_duration":0.131,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":9.326,"geometry_index":7978,"location":[7.901755,49.482887]},{"entry":[false,true,true],"in":0,"bearings":[95,227,320],"duration":1.346,"turn_duration":0.625,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":0.684,"geometry_index":7982,"location":[7.901469,49.482911]},{"entry":[false,true],"in":0,"bearings":[47,179],"duration":3.168,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":3.01,"geometry_index":7983,"location":[7.901414,49.482878]},{"bearings":[100,228,357],"entry":[true,true,false],"in":2,"turn_duration":3.767,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":7987,"location":[7.901425,49.482697]}],"destinations":"Bad Bergzabern, Neustadt (Weinstraße), Hochspeyer","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bad Bergzabern"},{"type":"text","text":"/"},{"type":"text","text":"Neustadt (Weinstraße)"},{"type":"text","text":"/"},{"type":"text","text":"Hochspeyer"}],"degrees":269,"driving_side":"right","type":"roundabout","modifier":"right","text":"Bad Bergzabern / Neustadt (Weinstraße) / Hochspeyer"},"distanceAlongGeometry":73.237}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":3,"instruction":"Enter the roundabout and take the 3rd exit toward Bad Bergzabern/Neustadt (Weinstraße)/Hochspeyer.","modifier":"slight right","bearing_after":280,"bearing_before":236,"location":[7.901755,49.482887]},"speedLimitSign":"vienna","name":"","weight_typical":16.303,"duration_typical":15.631,"duration":15.631,"distance":73.237,"driving_side":"right","weight":16.303,"mode":"driving","ref":"B 48","geometry":"mgek}AubhaNgAxCUlCFnCd@bC`AlBvAbA~AR~A_@pAmAv@cB^uBHaCO_Cg@qB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":988.32},{"ssmlAnnouncement":"In a quarter mile, Take the A 6 ramp.","announcement":"In a quarter mile, Take the A 6 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 6 ramp toward Saarbrücken.","announcement":"Take the A 6 ramp toward Saarbrücken.","distanceAlongGeometry":94.444}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[46,133,272],"duration":1.191,"turn_weight":5,"turn_duration":0.1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":6.037,"geometry_index":7992,"location":[7.90172,49.482676]},{"entry":[true,false],"in":1,"bearings":[137,313],"duration":2.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.799,"geometry_index":7994,"location":[7.901919,49.482555]},{"entry":[true,false],"in":1,"bearings":[145,322],"duration":0.873,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.828,"geometry_index":7996,"location":[7.90241,49.482189]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":0.328,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.311,"geometry_index":7997,"location":[7.902534,49.482075]},{"entry":[true,false],"in":1,"bearings":[147,325],"duration":1.746,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.658,"geometry_index":7998,"location":[7.90258,49.482032]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":2.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.279,"geometry_index":7999,"location":[7.902822,49.481792]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":3.4,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.213,"geometry_index":8000,"location":[7.903155,49.481459]},{"entry":[true,false],"in":1,"bearings":[149,326],"duration":1.691,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.605,"geometry_index":8002,"location":[7.903632,49.480998]},{"entry":[true,false],"in":1,"bearings":[149,329],"duration":7.908,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.316,"geometry_index":8003,"location":[7.903856,49.480756]},{"entry":[true,false],"in":1,"bearings":[150,330],"duration":4.637,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.281,"geometry_index":8006,"location":[7.904874,49.479629]},{"entry":[true,false],"in":1,"bearings":[156,332],"duration":3.414,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.15,"geometry_index":8008,"location":[7.905543,49.478858]},{"entry":[true,false],"in":1,"bearings":[165,341],"duration":4.631,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.275,"geometry_index":8010,"location":[7.905916,49.478274]},{"entry":[true,false],"in":1,"bearings":[178,356],"duration":0.736,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.676,"geometry_index":8013,"location":[7.906133,49.477434]},{"entry":[true,false],"in":1,"bearings":[183,358],"duration":7.541,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.975,"geometry_index":8015,"location":[7.906139,49.477298]},{"entry":[false,true],"in":0,"bearings":[11,190],"duration":5.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.969,"geometry_index":8021,"location":[7.905817,49.475923]},{"entry":[false,true],"in":0,"bearings":[3,177],"duration":1.912,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.742,"geometry_index":8026,"location":[7.905658,49.47506]},{"entry":[true,false],"in":1,"bearings":[174,357],"duration":1.107,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.025,"geometry_index":8027,"location":[7.905679,49.474759]},{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[172,354],"duration":0.498,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.461,"geometry_index":8028,"location":[7.905708,49.474583]},{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"bearings":[169,352],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":8029,"location":[7.905727,49.4745]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Saarbrücken"}],"type":"turn","modifier":"slight right","text":"Saarbrücken"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"turn","modifier":"slight right","text":"A 6"},"distanceAlongGeometry":1011.653},{"sub":{"components":[{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Saarbrücken"}],"type":"turn","modifier":"slight right","text":"Saarbrücken"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"turn","modifier":"slight right","text":"A 6"},"distanceAlongGeometry":402.336}],"destinations":"Bad Bergzabern, Neustadt (Weinstraße), Hochspeyer","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward Bad Bergzabern/Neustadt (Weinstraße)/Hochspeyer.","modifier":"slight right","bearing_after":133,"bearing_before":92,"location":[7.90172,49.482676]},"speedLimitSign":"vienna","name":"","weight_typical":54.012,"duration_typical":52.814,"duration":52.814,"distance":1011.653,"driving_side":"right","weight":54.012,"mode":"driving","ref":"B 48","geometry":"gzdk}Ao`haNv@uAxDwHtNwUdF}FbFwFtA{A~McNxSySpIsIfQeRbN_MlGyFbQqOzj@gf@~b@}^dK{H~VyOnKoEpR}FnUuClI]tBKxC?hGTrLr@jQhC~TjEdQpDlDp@pCh@vGfAlL|AzKdAhMf@xQi@~Iy@dDe@hCg@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":74129.992},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on E 50.","announcement":"In 1 mile, Keep right to stay on E 50.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 50.","announcement":"In a half mile, Keep right to stay on E 50.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 50 toward Paris/Metz, Strasbourg.","announcement":"Keep right to stay on E 50 toward Paris/Metz, Strasbourg.","distanceAlongGeometry":233.333}],"intersections":[{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"mapbox_streets_v8":{"class":"primary_link"},"location":[7.905747,49.474431],"geometry_index":8030,"admin_index":6,"weight":9.619,"is_urban":false,"yield_sign":true,"out":1,"in":2,"turn_duration":0.026,"turn_weight":4.5,"duration":5.715,"bearings":[168,189,349],"entry":[true,true,false]},{"entry":[false,false,true],"in":0,"bearings":[32,55,226],"duration":1.195,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"weight":1.809,"geometry_index":8037,"location":[7.905409,49.473768]},{"entry":[false,true,true],"in":0,"bearings":[46,76,249],"duration":11.895,"turn_duration":0.032,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"weight":10.676,"geometry_index":8039,"location":[7.905248,49.473666]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[7.902721,49.472945],"geometry_index":8043,"admin_index":6,"weight":11.117,"is_urban":false,"turn_weight":0.75,"duration":11.551,"bearings":[50,199,224],"out":2,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.901397,49.471645],"geometry_index":8050,"admin_index":6,"weight":20.717,"is_urban":false,"turn_weight":11.75,"duration":9.996,"bearings":[47,69,249],"out":2,"in":0,"turn_duration":0.032,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":103.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":90.984,"geometry_index":8053,"location":[7.898326,49.470873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.199,"geometry_index":8059,"location":[7.866292,49.462847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":38.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":33.945,"geometry_index":8060,"location":[7.865875,49.462742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":8.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.301,"geometry_index":8064,"location":[7.854154,49.459629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.74,"geometry_index":8066,"location":[7.851705,49.458847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":8.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.152,"geometry_index":8067,"location":[7.851455,49.458763]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.849088,49.457966],"geometry_index":8068,"admin_index":6,"weight":12.307,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.072,"bearings":[63,243],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":10.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.275,"geometry_index":8072,"location":[7.844912,49.456638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.336,"geometry_index":8074,"location":[7.842102,49.455699]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.85,"geometry_index":8075,"location":[7.841696,49.455564]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.412,"geometry_index":8077,"location":[7.841443,49.45548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":27.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":24.738,"geometry_index":8078,"location":[7.839184,49.454742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,260],"duration":1.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.354,"geometry_index":8084,"location":[7.830854,49.452634]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,262],"duration":2.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.686,"geometry_index":8086,"location":[7.830323,49.452572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":7.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.09,"geometry_index":8088,"location":[7.829292,49.452486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":9.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.486,"geometry_index":8091,"location":[7.82656,49.452396]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.823294,49.452556],"geometry_index":8094,"admin_index":6,"weight":5.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.715,"bearings":[97,280,304],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.821276,49.452832],"geometry_index":8099,"admin_index":6,"weight":6.299,"is_urban":false,"turn_weight":1,"duration":5.586,"bearings":[94,104,287],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":4.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.359,"geometry_index":8101,"location":[7.819412,49.45321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,294],"duration":13.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.928,"geometry_index":8103,"location":[7.817923,49.453604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":0.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.561,"geometry_index":8108,"location":[7.813785,49.455117]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":5.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.527,"geometry_index":8109,"location":[7.813617,49.455188]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":4.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.959,"geometry_index":8110,"location":[7.811905,49.455914]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.810674,49.456436],"geometry_index":8111,"admin_index":6,"weight":18.289,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.766,"bearings":[123,303,315],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":3.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.66,"geometry_index":8115,"location":[7.804953,49.458873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":5.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.414,"geometry_index":8116,"location":[7.80382,49.459359]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.802129,49.460066],"geometry_index":8118,"admin_index":6,"weight":3.227,"is_urban":false,"turn_weight":1,"duration":2.309,"bearings":[108,122,299],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,299],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.906,"geometry_index":8119,"location":[7.801422,49.460325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,299],"duration":4.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.566,"geometry_index":8120,"location":[7.801132,49.460431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,295],"duration":10.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.719,"geometry_index":8123,"location":[7.799628,49.460913]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.795939,49.461765],"geometry_index":8128,"admin_index":6,"weight":1.555,"is_urban":false,"turn_weight":1,"duration":0.592,"bearings":[90,107,283],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"location":[7.795737,49.461795],"geometry_index":8129,"admin_index":6,"weight":2.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.076,"bearings":[103,283],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,280],"duration":11.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.789,"geometry_index":8132,"location":[7.794636,49.461948]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":9.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.127,"geometry_index":8137,"location":[7.790624,49.46218]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,260],"duration":22.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":21.582,"geometry_index":8141,"location":[7.787228,49.462014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":43.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":43.949,"geometry_index":8149,"location":[7.779067,49.460331]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,268],"duration":7.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.846,"geometry_index":8162,"location":[7.762898,49.457012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.012,"geometry_index":8164,"location":[7.759707,49.456917]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":22.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":22.027,"geometry_index":8165,"location":[7.75741,49.456805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":9.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.777,"geometry_index":8169,"location":[7.748922,49.456192]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":3.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.529,"geometry_index":8171,"location":[7.745154,49.455736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":0.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.744,"geometry_index":8172,"location":[7.743797,49.455579]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,257],"duration":25.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.334,"geometry_index":8173,"location":[7.743506,49.455543]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":24.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":24.369,"geometry_index":8182,"location":[7.734648,49.452538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":0.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.705,"geometry_index":8191,"location":[7.725539,49.449822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,258],"duration":28.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.605,"geometry_index":8192,"location":[7.725278,49.449774]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":5.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.812,"geometry_index":8197,"location":[7.714921,49.449064]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.712725,49.448952],"geometry_index":8199,"admin_index":6,"weight":26.953,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.672,"bearings":[86,261,267],"out":1,"in":0,"turn_duration":0.028,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.838,"geometry_index":8204,"location":[7.704284,49.447903]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,254],"duration":18.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.428,"geometry_index":8205,"location":[7.703689,49.44781]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.696506,49.446308],"geometry_index":8211,"admin_index":6,"weight":1.963,"is_urban":false,"turn_weight":1,"duration":0.996,"bearings":[53,72,252],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,250],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.512,"geometry_index":8212,"location":[7.69614,49.446232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,252],"duration":2.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.592,"geometry_index":8213,"location":[7.695949,49.446188]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":9.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.824,"geometry_index":8214,"location":[7.69492,49.445965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":78.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":75.012,"geometry_index":8219,"location":[7.691339,49.445316]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,257],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.994,"geometry_index":8236,"location":[7.659819,49.442662]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.657278,49.442253],"geometry_index":8239,"admin_index":6,"weight":6.279,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.809,"bearings":[75,254,267],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.654658,49.441745],"geometry_index":8242,"admin_index":6,"weight":6.404,"is_urban":false,"turn_weight":1,"duration":5.861,"bearings":[53,73,251],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,249],"duration":22.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":21.236,"geometry_index":8243,"location":[7.65241,49.44124]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":16.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.488,"geometry_index":8250,"location":[7.643907,49.438734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.996,"geometry_index":8254,"location":[7.638067,49.43646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":5.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.436,"geometry_index":8255,"location":[7.6377,49.436296]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.006,"geometry_index":8256,"location":[7.635719,49.435419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":141.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":134.432,"geometry_index":8257,"location":[7.635361,49.435255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,272],"duration":22.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":21.904,"geometry_index":8290,"location":[7.585249,49.420563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,277],"duration":4.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.287,"geometry_index":8296,"location":[7.576318,49.421003]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,276],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.084,"geometry_index":8297,"location":[7.574571,49.421145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,274],"duration":12.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.049,"geometry_index":8298,"location":[7.572908,49.421259]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":0.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.371,"geometry_index":8301,"location":[7.568006,49.421558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,274],"duration":5.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.637,"geometry_index":8302,"location":[7.567852,49.421568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.289,"geometry_index":8304,"location":[7.565548,49.421685]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.156,"geometry_index":8305,"location":[7.565445,49.421691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,273],"duration":16.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.205,"geometry_index":8306,"location":[7.565077,49.42171]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":1.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.795,"geometry_index":8312,"location":[7.560542,49.421814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.711,"geometry_index":8313,"location":[7.559964,49.421814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":4.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.703,"geometry_index":8314,"location":[7.559411,49.421812]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.557897,49.421785],"geometry_index":8315,"admin_index":6,"weight":9.227,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.732,"bearings":[88,267,284],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.554696,49.421667],"geometry_index":8317,"admin_index":6,"weight":1.043,"is_urban":false,"turn_weight":1,"duration":0.072,"bearings":[77,86,261],"out":2,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,265],"duration":0.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.236,"geometry_index":8318,"location":[7.554686,49.421666]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.949,"geometry_index":8319,"location":[7.554609,49.421662]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":6.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.619,"geometry_index":8320,"location":[7.554261,49.421641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,262],"duration":2.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.059,"geometry_index":8323,"location":[7.551786,49.421471]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,262],"duration":37.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":34.553,"geometry_index":8324,"location":[7.551022,49.421399]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,251],"duration":8.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.447,"geometry_index":8333,"location":[7.538064,49.419433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.535347,49.41883],"geometry_index":8335,"admin_index":6,"weight":18.988,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.535,"bearings":[71,250,258],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":1.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.145,"geometry_index":8340,"location":[7.528445,49.417098]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,247],"duration":21.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":19.674,"geometry_index":8341,"location":[7.528027,49.416988]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.520685,49.414926],"geometry_index":8345,"admin_index":6,"weight":1.799,"is_urban":false,"turn_weight":1,"duration":0.885,"bearings":[56,67,246],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":6.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.961,"geometry_index":8346,"location":[7.520385,49.414839]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":6.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.293,"geometry_index":8347,"location":[7.518128,49.414184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.791,"geometry_index":8348,"location":[7.515735,49.413501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":30.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.73,"geometry_index":8349,"location":[7.515429,49.413411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,246],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.826,"geometry_index":8352,"location":[7.5044,49.410244]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":36.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":32.432,"geometry_index":8353,"location":[7.504068,49.410149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.922,"geometry_index":8355,"location":[7.490935,49.406341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":45.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":40.881,"geometry_index":8356,"location":[7.49057,49.406234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.865,"geometry_index":8359,"location":[7.474327,49.401551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":21.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":19.564,"geometry_index":8360,"location":[7.473992,49.401453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":6.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.764,"geometry_index":8364,"location":[7.466123,49.399095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.463818,49.398372],"geometry_index":8365,"admin_index":6,"weight":9.977,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.092,"bearings":[64,244],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":6.139,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.67,"geometry_index":8368,"location":[7.45998,49.397129]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":11.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.584,"geometry_index":8369,"location":[7.457877,49.396417]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":1.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.299,"geometry_index":8371,"location":[7.453978,49.395047]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":33.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":31.303,"geometry_index":8372,"location":[7.45351,49.394869]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":7.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.49,"geometry_index":8378,"location":[7.442404,49.390501]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.43987,49.389422],"geometry_index":8379,"admin_index":6,"weight":8.48,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.934,"bearings":[57,237,252],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.437087,49.388208],"geometry_index":8381,"admin_index":6,"weight":7.771,"is_urban":false,"turn_weight":1,"duration":7.137,"bearings":[45,56,236],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":12.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.055,"geometry_index":8382,"location":[7.434799,49.387211]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.77,"geometry_index":8384,"location":[7.430742,49.385403]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.428754,49.384515],"geometry_index":8385,"admin_index":6,"weight":10.223,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.059,"bearings":[56,236],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":4.66,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.303,"geometry_index":8387,"location":[7.425257,49.382966]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":86.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":77.934,"geometry_index":8388,"location":[7.42333,49.382133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,267],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.867,"geometry_index":8417,"location":[7.383295,49.372726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":4.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.012,"geometry_index":8418,"location":[7.382885,49.37271]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":4.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.912,"geometry_index":8420,"location":[7.380672,49.372611]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.378512,49.372504],"geometry_index":8422,"admin_index":6,"weight":1.23,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.375,"bearings":[85,266],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":18.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":16.816,"geometry_index":8423,"location":[7.377991,49.37248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":7.295,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.547,"geometry_index":8430,"location":[7.370877,49.371989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,258],"duration":9.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.365,"geometry_index":8433,"location":[7.368196,49.371672]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.48,"geometry_index":8436,"location":[7.364796,49.371142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.362202,49.370637],"geometry_index":8438,"admin_index":7,"weight":11.029,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.275,"bearings":[73,250],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[48,67,245],"duration":1.014,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":2,"weight":0.893,"geometry_index":8442,"location":[7.35786,49.369546]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":7.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.707,"geometry_index":8443,"location":[7.357521,49.369444]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":16.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.709,"geometry_index":8447,"location":[7.35494,49.368648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.068,"geometry_index":8453,"location":[7.349543,49.366592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":29.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.746,"geometry_index":8454,"location":[7.349162,49.366423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.021,"geometry_index":8462,"location":[7.339883,49.361883]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":17.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.75,"geometry_index":8463,"location":[7.339547,49.361714]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":8.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.225,"geometry_index":8466,"location":[7.334411,49.359095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":8.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.092,"geometry_index":8468,"location":[7.331734,49.357725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.561,"geometry_index":8469,"location":[7.329095,49.356383]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":27.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.518,"geometry_index":8470,"location":[7.328604,49.356131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,231],"duration":1.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.02,"geometry_index":8474,"location":[7.320695,49.352107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,232],"duration":9.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.096,"geometry_index":8475,"location":[7.320396,49.351951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":35.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":33.494,"geometry_index":8477,"location":[7.317593,49.350526]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":3.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.244,"geometry_index":8483,"location":[7.307287,49.345265]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":7.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.664,"geometry_index":8484,"location":[7.306289,49.344757]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.30424,49.343713],"geometry_index":8485,"admin_index":7,"weight":9.945,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.477,"bearings":[52,232,238],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":0.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.375,"geometry_index":8486,"location":[7.301152,49.342134]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.30104,49.342077],"geometry_index":8487,"admin_index":7,"weight":1.355,"is_urban":false,"turn_weight":0.5,"duration":0.906,"bearings":[45,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":6.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.17,"geometry_index":8488,"location":[7.300808,49.341959]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.551,"geometry_index":8489,"location":[7.298898,49.340992]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.298416,49.340749],"geometry_index":8490,"admin_index":7,"weight":12.381,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.039,"bearings":[52,232],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":3.715,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.523,"geometry_index":8493,"location":[7.294489,49.338735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.162,"geometry_index":8495,"location":[7.293379,49.338164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,231],"duration":1.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.436,"geometry_index":8496,"location":[7.293013,49.337977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":8.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.416,"geometry_index":8497,"location":[7.292562,49.337739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.084,"geometry_index":8499,"location":[7.289874,49.336326]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":7.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.971,"geometry_index":8500,"location":[7.289529,49.336142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":9.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.307,"geometry_index":8502,"location":[7.28729,49.334922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":1.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.016,"geometry_index":8504,"location":[7.284343,49.333258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":34.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":31.65,"geometry_index":8505,"location":[7.284034,49.333074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":0.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.891,"geometry_index":8515,"location":[7.274552,49.326827]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":18.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.449,"geometry_index":8516,"location":[7.274313,49.326646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":3.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.047,"geometry_index":8521,"location":[7.269696,49.323026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,218],"duration":8.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.33,"geometry_index":8522,"location":[7.268923,49.322394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.934,"geometry_index":8523,"location":[7.266861,49.320644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":32.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.846,"geometry_index":8524,"location":[7.266634,49.320448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.664,"geometry_index":8529,"location":[7.258901,49.313792]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.062,"geometry_index":8530,"location":[7.258735,49.31365]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.471,"geometry_index":8531,"location":[7.258466,49.31342]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.35,"geometry_index":8532,"location":[7.258131,49.313131]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":3.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.537,"geometry_index":8533,"location":[7.258056,49.313067]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.257295,49.312413],"geometry_index":8534,"admin_index":7,"weight":8.939,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.672,"bearings":[37,217,224],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.255253,49.310643],"geometry_index":8535,"admin_index":7,"weight":2.846,"is_urban":false,"turn_weight":1,"duration":2.002,"bearings":[30,37,217],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":2.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.244,"geometry_index":8536,"location":[7.25483,49.310279]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.146,"geometry_index":8537,"location":[7.254315,49.309836]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":5.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.293,"geometry_index":8538,"location":[7.254059,49.309616]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.252803,49.30853],"geometry_index":8539,"admin_index":7,"weight":9.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.889,"bearings":[37,217,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.250551,49.306608],"geometry_index":8541,"admin_index":7,"weight":6.572,"is_urban":false,"turn_weight":1,"duration":6.031,"bearings":[30,38,218],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,221],"duration":13.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.43,"geometry_index":8543,"location":[7.249089,49.305429]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":6.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.773,"geometry_index":8550,"location":[7.245409,49.303041]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":1.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.939,"geometry_index":8554,"location":[7.243422,49.302069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":30.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":27.412,"geometry_index":8555,"location":[7.243092,49.301922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.906,"geometry_index":8566,"location":[7.232308,49.298703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":72.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":63.211,"geometry_index":8567,"location":[7.231942,49.298611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":9.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.16,"geometry_index":8575,"location":[7.204875,49.291783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":0.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.449,"geometry_index":8577,"location":[7.20138,49.290895]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":43.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":39.436,"geometry_index":8578,"location":[7.201191,49.290848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":2.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.314,"geometry_index":8593,"location":[7.185458,49.285853]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":0.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.578,"geometry_index":8594,"location":[7.184712,49.285412]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,225],"duration":13.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.541,"geometry_index":8595,"location":[7.184537,49.285305]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":6.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.412,"geometry_index":8602,"location":[7.181414,49.282866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.180032,49.28151],"geometry_index":8605,"admin_index":7,"weight":10.119,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.658,"bearings":[33,212],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":3.383,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.207,"geometry_index":8607,"location":[7.177964,49.279317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.781,"geometry_index":8608,"location":[7.1773,49.27863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,214],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.105,"geometry_index":8609,"location":[7.17693,49.278248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":21.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.141,"geometry_index":8610,"location":[7.176681,49.278009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,238],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.693,"geometry_index":8620,"location":[7.171218,49.274222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,241],"duration":1.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.814,"geometry_index":8621,"location":[7.170646,49.273992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":1.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.799,"geometry_index":8622,"location":[7.17002,49.273762]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,246],"duration":22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.9,"geometry_index":8623,"location":[7.169392,49.273565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":0.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.752,"geometry_index":8634,"location":[7.161252,49.272639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,272],"duration":5.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.393,"geometry_index":8635,"location":[7.160969,49.272637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,274],"duration":6.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.586,"geometry_index":8636,"location":[7.158925,49.272684]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.156419,49.272794],"geometry_index":8637,"admin_index":7,"weight":15.74,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.164,"bearings":[94,273,280],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.150439,49.272852],"geometry_index":8643,"admin_index":7,"weight":4.107,"is_urban":false,"turn_weight":1,"duration":3.209,"bearings":[77,87,265],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,261],"duration":19.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":18.574,"geometry_index":8644,"location":[7.149274,49.27278]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,238],"duration":6.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.617,"geometry_index":8654,"location":[7.142703,49.271306]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.140661,49.270374],"geometry_index":8657,"admin_index":7,"weight":7.924,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.152,"bearings":[53,229],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":5.402,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.248,"geometry_index":8661,"location":[7.138408,49.269069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,232],"duration":43.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":42.02,"geometry_index":8664,"location":[7.136795,49.268128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.225,"geometry_index":8692,"location":[7.120325,49.266342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,265],"duration":10.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.291,"geometry_index":8693,"location":[7.119859,49.266329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,249],"duration":5.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.6,"geometry_index":8700,"location":[7.116059,49.265822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,240],"duration":19.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.287,"geometry_index":8704,"location":[7.114125,49.265263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":8.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.475,"geometry_index":8717,"location":[7.108293,49.262223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":4.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.422,"geometry_index":8720,"location":[7.105793,49.260826]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.104376,49.260142],"geometry_index":8722,"admin_index":7,"weight":3.645,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.857,"bearings":[54,232],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":1.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.691,"geometry_index":8725,"location":[7.103299,49.25962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":4.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.285,"geometry_index":8726,"location":[7.10279,49.259385]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":2.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.9,"geometry_index":8727,"location":[7.101509,49.258795]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":0.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.836,"geometry_index":8728,"location":[7.100946,49.258534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":5.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.432,"geometry_index":8729,"location":[7.100701,49.258424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":0.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.645,"geometry_index":8731,"location":[7.0992,49.257712]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.781,"geometry_index":8732,"location":[7.099021,49.257625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":11.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.342,"geometry_index":8734,"location":[7.098242,49.257241]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,222],"duration":10.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.436,"geometry_index":8740,"location":[7.095553,49.255645]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":6.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.953,"geometry_index":8744,"location":[7.093918,49.254347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":15.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.229,"geometry_index":8747,"location":[7.093019,49.253467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":6.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.547,"geometry_index":8753,"location":[7.091329,49.251195]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":18.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.814,"geometry_index":8755,"location":[7.090831,49.250236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":18.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.92,"geometry_index":8759,"location":[7.089869,49.247604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,200],"duration":26.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":23.912,"geometry_index":8764,"location":[7.088901,49.244721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":27.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":24.828,"geometry_index":8777,"location":[7.084085,49.239535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":6.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.775,"geometry_index":8792,"location":[7.080899,49.233655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,183],"duration":23.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":21.096,"geometry_index":8793,"location":[7.080704,49.232184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":17.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.461,"geometry_index":8800,"location":[7.080136,49.226819]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.998,"geometry_index":8809,"location":[7.078339,49.223071]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":3.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.559,"geometry_index":8811,"location":[7.07815,49.222829]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.077419,49.221971],"geometry_index":8813,"admin_index":7,"weight":9.117,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.865,"bearings":[30,212],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,222],"duration":5.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.715,"geometry_index":8817,"location":[7.075124,49.219938]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,230],"duration":3.465,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.197,"geometry_index":8820,"location":[7.073738,49.219022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,227],"duration":2.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.932,"geometry_index":8822,"location":[7.072725,49.218475]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,230],"duration":17.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.23,"geometry_index":8823,"location":[7.072135,49.21812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,231],"duration":1.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.676,"geometry_index":8827,"location":[7.066886,49.215189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,225],"duration":8.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.914,"geometry_index":8828,"location":[7.066363,49.214916]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":7.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.492,"geometry_index":8832,"location":[7.064215,49.213246]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":26.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.633,"geometry_index":8836,"location":[7.062639,49.211454]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,234],"duration":5.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.537,"geometry_index":8846,"location":[7.056428,49.206088]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,242],"duration":10.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.984,"geometry_index":8850,"location":[7.054783,49.205404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,256],"duration":14.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":13.814,"geometry_index":8856,"location":[7.051532,49.204538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.046543,49.204224],"geometry_index":8864,"admin_index":7,"weight":3.246,"is_urban":false,"turn_weight":1,"duration":2.254,"bearings":[86,92,275],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,278],"duration":7.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.936,"geometry_index":8866,"location":[7.045743,49.204275]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,286],"duration":0.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.736,"geometry_index":8870,"location":[7.042986,49.204662]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":5.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.535,"geometry_index":8871,"location":[7.042737,49.204708]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[108,290],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"geometry_index":8874,"location":[7.04086,49.205093]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris/Metz"},{"type":"text","text":"/"},{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"right","text":"Paris/Metz / Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"fork","modifier":"right","text":"A 6"},"distanceAlongGeometry":74159.656},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Paris/Metz"},{"type":"text","text":"/"},{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"right","text":"Paris/Metz / Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"fork","modifier":"right","text":"A 6"},"distanceAlongGeometry":1609.344}],"destinations":"A 6: Saarbrücken","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 6 ramp toward Saarbrücken.","modifier":"slight right","bearing_after":189,"bearing_before":169,"location":[7.905747,49.474431]},"speedLimitSign":"vienna","name":"","weight_typical":2576.855,"duration_typical":2732.598,"duration":2732.598,"distance":74159.656,"driving_side":"right","weight":2576.855,"mode":"driving","ref":"A 6; E 50","geometry":"}vtj}Ae|oaNhEbApEV|CV~CbArExBbGrFzB|BfBlDbBrCv`@xeCfCxIrBhFlB~CvCfG~CbEhl@x^lF|EnDnF`E`IdF`KzMfz@nXddBzFn^`g@z~CnkAhpHfmArzHtiChdPbc@lqC~bCplOpE`Yl}ArwJne@boCvb@~_CzXxqAnb@npBjLpf@fDrNxp@|rCdMbj@rSn_AzPju@h]~aBfR~x@lf@rtBlGjXbBjHbAlEbm@dlCt~@rhErKjk@nN|z@zLx{@hOlxAvHl_Aj@dKnA~SlC|p@\\nMtCphAh@vx@Klf@m@nxAmA~d@cErkAiBj[cA|N{Dvj@cBbSyA|PwPhxA{DdZ_Ihi@sMvq@mIrb@{Qny@sQts@}j@lhBuAjEmCnIkl@~iBs_@|kA}IpXubAd|Csd@bwAac@tuAk]xeAw]fgAmLl`@eOdk@sEbQoH|XwIda@{Hz`@qGp[}Kxp@oNjeAcJhv@cDnY{@rKqBnWiDle@UzDmCje@cArUsDlqAkAfcA@`f@@hd@r@jy@hB`z@jDnx@rD`q@|Gf_AnIn{@bRvtA`Vx_BvFr_@fWb_B|D|VxXnfBl[tuBzn@`_E|f@vdD~d@t_DvClUxBhRhCjXjBpWdBf`@vAfe@jA`h@xAr`Ax@v`AbCtdC~EpnCdJhnF|LliDpEr|@rEbz@~V`dEnCle@xHxsAfAdQbIbcAjFfd@nNrx@nH`b@rHt\\`L`f@jRbp@zc@~sAjaAtwCj\\hcAtTbx@nXvdAnRt|@bNfn@lL|o@~Hrf@|OhlAdQhbB~AhO~L|`B|GlxAhExyAlHvfFtDjhCzB~iAbBf}@tHtaBdQ~cDrMbpBnLfyApHn{@xDdd@nZtoCpTrfB~\\daCdApHJx@fK`z@vCzUvA|J|Lh_AtFdc@|F`j@pDb]`MrpAhDx_@rIt`AhQvaCvClg@|Bf`@`G`mArDl`AvG|fCvInsD`HdbExP|mIrIxeDhMboDxGj|A|Lr|BjGf~@dEnl@|Dbf@bDna@pB~VzOhcBxMlnArG|h@hGji@p^nkC~_@xbCvPr`AdQn}@|Gp]lDnQlUlgAzq@~tC~AzGjh@zqBjl@prBjs@t|BfI|Uxu@xzBfIjU~}@vfCd`AxdCjuAhoDhxAvnD`fCxpGrq@ziB~p@xiBrd@zvAxZbbA~YpdAbJn[bHjX~VfbAfQfu@xOjs@nYjvAlNpu@dOzz@~Mn{@hY|oBvOzmAxM|lAnM~rAvK|nAvPfjCxIzgBlJhhCvC|qAzAtqAtApvBIz}B_@zu@IdYe@vu@wBlcBqCnbB{HvjDyChqAiBlp@{GdlBcF|fBsAz_AoKhxDqBdw@SrHo@v\\yDfqBKlEe@~UqAhdA_Ahw@]ju@K|d@EvOMvo@?bc@Bpa@t@r}AfBdeBbCz`B@RFxCh@vTr@zXfFrfBv@dXnCvn@bGvwAzGfrAlIvqA~H|iAlJtkAh]luDfRxdB|OpqAnFtc@tQltA~QjsAjT`{AdThtAnTzsA|TxsAfUhsAzEbYzg@nsCrd@`eCpg@dlCxHbb@lDvQ|g@`lCti@ptCrDbRzjAleGr|A`dIl[xdB|DvSruAlfHjvCjlOtExUbgCbyMb_A`}El{A~}HbE|Sbe@x`C~d@~~Blj@tnCxZhyAdl@`oC~\\z}Ax]j}AzOrq@nk@lbCnc@pfBbp@bkCbJf\\tm@h}B~h@lmBbl@rrBd_A~_Drj@~hBj^viAlbAj}Cba@nnAvh@l}Ah}@~mCffAj}Cvh@d~Anv@f{BtgAtbDbWzu@`s@lwBfThp@nh@`aBhm@`pBtj@fmB|Uxz@rt@zpCzi@h{Bl]h|A|]vbBnb@f{BfYzbBdXheB`Z|vB`Er\\zJby@nMniAnMxoAtLlqAdG~t@~Epo@jHzbAlGhaAfG`iArGfrAfEjcAbEbjAbDllAhDrzA`F|`C^rXhB`hAzAf`AxAx_AzBdeAn@p_@DnBtAzy@nDx~AdB`v@zEb}AxEhmAlD|y@bDno@vEhy@|Fv{@zKxzA`Ib~@dIpx@~MhpApOxoAbTbzAjSvrAlLjp@fLbn@jEdTlHj_@dJhe@`Mbl@`Nnl@vLhh@xMli@xVp`Ar^xoAlTbs@`V`v@pIxVfPzd@`i@dzAhX|s@f^r_Ad^j}@x_@r`Aj`@n`AneAxjCpI~S|`A`_C`_@|_At`A~~Bdy@hpBlZ~t@zrA|cDvNt]|n@j|AdcAleCviA|qCr{@pvBvHtQzz@buBd\\`x@nj@~sAd~@tzBjo@b}A~_Az_Cj|AfuDjNd]v^j}@f`A`_CtaB~_EpB~EjFnMl{@jvBdNb]j[|u@h~@vzBda@vaARb@`b@fcAtJzUzMd[xj@rrAnk@jsAnJpTtm@`uAp\\zt@fVli@voAvlCnJhRnShb@j[hn@hYrj@ja@lv@~d@fz@jn@`hA`q@~iAfp@veAri@hz@pt@phAhJ|Mj]ng@tu@|eAxd@lo@~e@do@j_AnoAnf@ho@jlBz_CfKdMj}@hhAr}A~lBnaAjkAfqCrhDfm@~t@zGjIjMxO`Q|S~BtCzg@pn@rmBr~BvUlYtZd_@vL~NzbAnmAlf@tl@toA`~A`a@rg@rf@vq@bObT`QpW`P`Wf`@lp@hWrf@`Ypk@jMrY|HjQbTbi@nP~c@dKtYdHrSjNjc@|Llb@zMxf@lMxg@zNbo@lIp`@hL|k@rLto@xXf_BhUtvAdh@haDvDzU`vAtxI|s@fqEdq@neEfeAjuGtaAffG~s@xpEd@pCll@ftDbb@zhCjSpoA|AxJdPncA`h@faD`m@~sDnU~tAlVhsAbN`q@tMvl@nLlg@rMxg@tN~f@dPbh@hT|n@jRre@pMd[zNh[pZrm@tE|IlOzWfQbZvTn\\`QlVxMfQt[|`@la@`e@d`@jb@j^~]dS~RrcA~_AlcAf_A|i@nh@zVbV|MpNfr@vu@pa@xg@fN~QdTxZjY|d@nVlc@lOzZ`LlVdRzd@zNnb@jMvb@jMbf@hKff@tHr`@`Lpt@tH`r@fF|m@pD~i@jCfj@fBng@lAhj@v@th@d@|e@KzgABtP}Av~B{Er{CoBjcBy@x{@]zq@@ps@Z|t@t@dv@nCxgAhErz@bDfg@`H|u@`Hbn@bGja@fHfd@vJ|g@`FjU`Knb@hMhe@bO`f@`Ojb@`Ydt@dVrg@lQt_@bPb\\xUje@xSfa@pNpYlU~f@nOd_@rNr^b@fA`IrTtJp[vItZrKdd@rKxh@|DtTfGx`@hFva@pFph@xDxi@bBxX~Aj_@`Al_@x@v^Lt\\W|h@i@dh@}@n^oAtd@}Ate@iIvfCqA|g@s@jb@[vc@B|f@Xb\\v@~`@fBfe@fCpg@fCf_@jEzc@vEf`@`DhUfGn`@tHnb@fGnXvGjY`I`ZfKv]pOzd@dIjTlGjOdKzVlLlXbPb^rRv`@nK`T|Vrf@|\\zp@vBhE`k@riAtUhh@pShg@bOv_@rYxv@|LpZ~B|FtMx^tMx^zc@`oAhOdb@zEhNpXdu@|Qrf@lDdJdOp`@xFbNlN|\\rTbf@~Udf@`HpMdIzNlSj\\fXbb@fYj`@vTbXzFpGtM|NbTzTdRjQjCdCvPzN|Q`ObYfSd[dSrm@`\\fObItj@~Sbc@nN~d@lM|j@pNlm@rMlnBx`@zHzBrWxGrI~BrV~H|WdMhW`Mr]dSb^bVdMtJfOjMfVxTpUhVrVzWf`@pf@pc@vi@n^vd@|JhLlU`XxS|S`NvMbOrMlRpNrSjNlRjLhSbK~YxLr^jMj_@zJrRhE`SlD`h@lGnh@`F|zAdKdi@`BpnAlCry@rBtx@bEfi@jEbb@xEzR`DhPjCjf@fKfXtHx^lLzZvLn^`QrWpNhWdOdK~GfFtDzFbEnZdUbYnVd`@`_@r^|`@d_@he@`]bf@pKnPjKbQh_@~q@lOl]vPz_@dUzc@|}@vpBfx@vhBjR`b@rj@nhA`Pt_@f\\tk@r_@ni@b`@vd@jHhHzEzEhPnOtj@~d@bk@bd@vIdHzw@~l@xrAtjAre@ff@v\\x`@fk@bx@dVva@hRza@rJjVdPba@jJfWbMxb@xKf]lCnKxCpL`Qrv@xLdt@bFh^rEv]tBvQzElj@BZrC|b@zBpf@pAha@z@xl@f@pt@q@hy@o@hXu@tWqBbe@_Fdw@cGlm@oDp^{ApNqD|[uDr[yKvz@qCrR"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 13 miles.","announcement":"Continue for 13 miles.","distanceAlongGeometry":20180.916},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 50.","announcement":"In 2 miles, Keep left to stay on E 50.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 50.","announcement":"In a half mile, Keep left to stay on E 50.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 50 toward Paris, Metz.","announcement":"Keep left to stay on E 50 toward Paris, Metz.","distanceAlongGeometry":244.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[7.040546,49.205166],"geometry_index":8875,"admin_index":7,"weight":5.477,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.486,"bearings":[110,289,295],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,295],"duration":0.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.729,"geometry_index":8878,"location":[7.038756,49.205698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,293],"duration":1.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.859,"geometry_index":8879,"location":[7.038516,49.205771]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":15.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.23,"geometry_index":8880,"location":[7.037923,49.205936]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,281],"duration":36.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":36.359,"geometry_index":8889,"location":[7.032894,49.206998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,298],"duration":5.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.076,"geometry_index":8916,"location":[7.019611,49.209226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,298],"duration":0.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.967,"geometry_index":8918,"location":[7.017622,49.20991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,297],"duration":13.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.158,"geometry_index":8919,"location":[7.017292,49.210023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,288],"duration":0.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.799,"geometry_index":8929,"location":[7.012549,49.211355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,285],"duration":17.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.971,"geometry_index":8930,"location":[7.012277,49.211413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":20.865,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.844,"geometry_index":8944,"location":[7.005644,49.211741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":1.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.809,"geometry_index":8957,"location":[6.998163,49.210009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,248],"duration":33.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":32.369,"geometry_index":8958,"location":[6.997511,49.209832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":0.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.293,"geometry_index":8983,"location":[6.985344,49.209788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":8.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.043,"geometry_index":8984,"location":[6.985238,49.209815]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":7.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.057,"geometry_index":8988,"location":[6.982428,49.210547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.68,"geometry_index":8993,"location":[6.979899,49.211056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,275],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.139,"geometry_index":8997,"location":[6.978166,49.211247]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":0.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.363,"geometry_index":8999,"location":[6.977437,49.211282]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,271],"duration":5.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.447,"geometry_index":9000,"location":[6.977317,49.211287]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.975457,49.211249],"geometry_index":9004,"admin_index":7,"weight":7.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.084,"bearings":[85,263,270],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":3.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.711,"geometry_index":9009,"location":[6.973067,49.210959]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.365,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.307,"geometry_index":9011,"location":[6.972102,49.210753]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.971516,49.210608],"geometry_index":9013,"admin_index":7,"weight":9.359,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.621,"bearings":[68,247,256],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,240],"duration":17.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.275,"geometry_index":9018,"location":[6.969541,49.209969]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.966689,49.208696],"geometry_index":9024,"admin_index":7,"weight":1.701,"is_urban":false,"turn_weight":1,"duration":0.738,"bearings":[34,53,232],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,229],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.771,"geometry_index":9025,"location":[6.966577,49.208638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,231],"duration":6.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.389,"geometry_index":9026,"location":[6.966459,49.208571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":0.596,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.562,"geometry_index":9028,"location":[6.965488,49.208057]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":1.102,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.053,"geometry_index":9029,"location":[6.965403,49.20801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":14.422,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.039,"geometry_index":9030,"location":[6.965246,49.207923]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":4.262,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.148,"geometry_index":9037,"location":[6.963226,49.206704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":1.061,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.025,"geometry_index":9038,"location":[6.962574,49.206301]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,225],"duration":3.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.402,"geometry_index":9039,"location":[6.962385,49.206184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,226],"duration":4.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.58,"geometry_index":9040,"location":[6.961766,49.205785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":10.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.141,"geometry_index":9042,"location":[6.960699,49.205127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":0.791,"turn_weight":5030.122,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5030.912,"geometry_index":9049,"location":[6.958204,49.203852]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.891,"geometry_index":9050,"location":[6.957962,49.203759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":9.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.039,"geometry_index":9051,"location":[6.957695,49.203661]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":36.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.52,"geometry_index":9059,"location":[6.954792,49.202959]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.742,"geometry_index":9071,"location":[6.941866,49.200422]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[70,247,252],"duration":19.285,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.262,"geometry_index":9072,"location":[6.941613,49.200361]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":5.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.9,"geometry_index":9081,"location":[6.935657,49.197867]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[18,38,212],"duration":11.781,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":11.756,"geometry_index":9084,"location":[6.934242,49.196778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":28.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.652,"geometry_index":9086,"location":[6.931955,49.194324]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":32.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":32.947,"geometry_index":9092,"location":[6.924649,49.189296]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":2.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.07,"geometry_index":9104,"location":[6.918178,49.18304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":2.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.291,"geometry_index":9105,"location":[6.9181,49.182546]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,187],"duration":2.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.836,"geometry_index":9106,"location":[6.918028,49.182022]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.917902,49.181374],"geometry_index":9108,"admin_index":8,"weight":14.918,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.562,"bearings":[8,192,213],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[32,52,235],"duration":5.936,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":6.076,"geometry_index":9117,"location":[6.915283,49.178519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,250],"duration":27.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.625,"geometry_index":9120,"location":[6.91334,49.177795]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":2.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.125,"geometry_index":9129,"location":[6.903019,49.17661]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[91,271,280],"duration":12.98,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.961,"geometry_index":9130,"location":[6.902233,49.176617]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.643,"geometry_index":9133,"location":[6.897532,49.176674]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.89696,49.176665],"geometry_index":9134,"admin_index":8,"weight":1.098,"is_urban":false,"turn_weight":0.75,"duration":0.371,"bearings":[82,89,266],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":6.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.869,"geometry_index":9135,"location":[6.896835,49.17666]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,257],"duration":16.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.404,"geometry_index":9138,"location":[6.894284,49.176444]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[61,238,245],"duration":18.059,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.135,"geometry_index":9143,"location":[6.888437,49.174969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,223],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.32,"geometry_index":9149,"location":[6.883303,49.172136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,222],"duration":12.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.234,"geometry_index":9150,"location":[6.882934,49.171877]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.879689,49.169598],"geometry_index":9152,"admin_index":8,"weight":7.178,"is_urban":false,"turn_weight":1,"duration":6.523,"bearings":[34,43,223],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":54.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":50.459,"geometry_index":9154,"location":[6.87803,49.16843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,237],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.447,"geometry_index":9174,"location":[6.860069,49.163264]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.199,"geometry_index":9176,"location":[6.859234,49.162915]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":2.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.879,"geometry_index":9177,"location":[6.858815,49.162736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.227,"geometry_index":9178,"location":[6.85816,49.162449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,221],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.332,"geometry_index":9182,"location":[6.855839,49.161236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":14.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.865,"geometry_index":9183,"location":[6.855743,49.161164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,212],"duration":10.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.809,"geometry_index":9191,"location":[6.852792,49.157555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,239],"duration":0.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.756,"geometry_index":9197,"location":[6.849777,49.155459]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,243,251],"duration":10.516,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.717,"geometry_index":9198,"location":[6.849477,49.155341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":74.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":72.529,"geometry_index":9202,"location":[6.84536,49.15432]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.818726,49.143853],"geometry_index":9220,"admin_index":8,"weight":3.135,"is_urban":false,"turn_weight":0.6,"duration":2.555,"bearings":[46,64,242],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":7.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.578,"geometry_index":9221,"location":[6.817888,49.143561]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":3.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.17,"geometry_index":9223,"location":[6.815549,49.142619]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.359,"geometry_index":9224,"location":[6.814627,49.142213]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":6.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.369,"geometry_index":9225,"location":[6.814238,49.142042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.898,"geometry_index":9227,"location":[6.812441,49.141207]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"location":[6.811896,49.140964],"geometry_index":9228,"admin_index":8,"weight":4.125,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.135,"bearings":[56,239,251],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.305,"geometry_index":9230,"location":[6.810695,49.140495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,243],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.277,"geometry_index":9231,"location":[6.810024,49.140239]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"bearings":[63,243],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":9232,"location":[6.809621,49.140103]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Metz"}],"type":"fork","modifier":"left","text":"Paris / Metz"},"primary":{"components":[{"type":"icon","text":"A 4"}],"type":"fork","modifier":"left","text":"A 4"},"distanceAlongGeometry":20214.25}],"destinations":"A 6: Paris/Metz, Strasbourg, SB-Goldene Bremm, Messegelände","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 50 toward Paris/Metz/Strasbourg/SB-Goldene Bremm/Messegelände.","modifier":"slight right","bearing_after":295,"bearing_before":290,"location":[7.040546,49.205166]},"speedLimitSign":"vienna","name":"","weight_typical":757.812,"duration_typical":767.322,"duration":767.322,"distance":20214.25,"driving_side":"right","weight":5787.934,"mode":"driving","ref":"E 50","geometry":"{yfz|AcavlLyGd\\cIja@iMho@qC~MiI`d@sDxSyEtY_Gx^kH~b@kI~l@}Ebb@qGzo@aCxVsEdl@u@hLaAtOcAvPcA`Tu@lQEv@{@|Sq@lUi@fSg@hRc@|QiAjf@kB~}@wA~t@iA|b@cBrd@aCpb@kBlW}Dz_@aDjWsEzZcGz]yFdYeIha@mRtz@sR|x@cQfv@_WldAwQzu@aFrSoGpXyF`V{Jxc@wJve@eHl`@uFfY}I`k@wEr[eEjZqAnKsB~OgDl\\aD`_@kCr_@eBfYqBx`@w@zTo@hWg@j`@[xYAf]j@pn@l@n^bAn\\l@dNj@|LvBt_@lBvXzBhWxD~]lEz]hDbXjFj^xGha@fGv]~N~w@xOrw@~SxhA`Jvg@xLts@fE~X~Db[fE|]nDj\\~Cj_@fCj\\rBr`@pAv_@h@|VZzTVxWFhWGjVW`SYtOe@nVgBlf@gChb@cB~U_Fzh@{Db^oEp]uGhc@_K~o@u@rEeGj_@yVbwAkJ`l@kA`IaJbn@aEjZeF~d@aEnb@m@`IkCf]yB~_@kAp[k@nOo@x[UvOInFMje@NdZ\\xXj@zW|Atc@|Bxc@fDtf@xBnVdAtKhFxc@pDnVhDnUvBbMfElUxHx_@~GvYrE`RfGjUvMje@vFdR~FdQjShk@nIvTdQlc@rB~EdCjFhOf^xNl\\|AhDlDxHrShb@nRf`@jDvGdClEtFdKbLrStDtHdXvg@hFxJ|Wte@tXzg@lNxXlSfa@hKpTjKdWbHvQnHnS`Ll\\zAfFxDbNbEtO`E~OxBjK~CvN`FhW`EtVjE~\\`Dl[lCz\\bEhk@fGfhAlGhiAzDnk@`Gdq@tCzVfBtOhHvj@jVr`BfVbaB|p@tnE~Fp`@xBxNzKln@j]l`BnUhy@nVps@dJpU~C`I|Qp`@jRr^bKtQtFlJt^ni@t[na@nmAlkAziAnaAhcAf}@~w@j~@rk@v{@lk@~hAncAldCj^x}@pt@fjBb^tz@tVvg@nZpf@|^le@xk@hi@d\\vTx_@rRhV|I~^fJ~c@bH`WvBz]zCv_@nCl[bD`KvAvMxCp\\~J|TxKvUtOnTbS~OnPp\\zg@lIxP|I`TpMd_@lNfg@fN~o@`Mjy@~OpiAvMltAhGbu@~Dbt@hF|jAdDdyA~@z~AQlx@Mbp@w@nkBgAv}ALpyAPvb@HxFhBpz@`D|y@bD|g@xCz_@`Gnq@`VtgBz[bdBjZfkAzKl^x_@jhAne@rgAj_@pt@b[xi@j_@`n@dO`VfS`[dyBvmDrLdRjz@nsAfH`LxuAzyBfMvT|KhSfXxh@~O~^dQjg@~Nbl@`Jxg@vI|p@`Gvx@rBzm@fC~rA`ChtAtBvoAfC~v@jFby@pQbuApZdvA|Rjs@zQdl@|A~EdJdY|P|g@zLn\\jUjm@tPh`@zTzb@nC~D|OnUvOpR~LdLdShQz\\`W`l@t\\le@rXhk@n^rg@bf@t[ta@fTx^dTjg@tMv]pCtJjFvQ|Kjf@zIff@tL`}@hYrsBdMt}@lSvnApb@|rBxTv~@Lj@v_@jwAzs@vkCnhA|_Ef}@pvCz_@vhAtzAroDzm@pwAxU~g@fj@fvAt_@dpAbVtcAh\\t|AvPvw@fQjs@p`@`yAhXbw@jXrx@tIhWr`@reApQth@dN`a@~L~a@hN`g@~N|h@nGdXrS|{@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 26 miles.","announcement":"Continue for 26 miles.","distanceAlongGeometry":41105.062},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 4.","announcement":"In 2 miles, Keep right to take A 4.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 4.","announcement":"In a half mile, Keep right to take A 4.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 4 toward Paris, Luxembourg.","announcement":"Keep right to take A 4 toward Paris, Luxembourg.","distanceAlongGeometry":260}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[63,245,252],"duration":4.029,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.021,"geometry_index":9233,"location":[6.808646,49.139773]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.807357,49.139357],"geometry_index":9236,"admin_index":8,"weight":24.98,"is_urban":false,"turn_weight":16,"duration":8.992,"bearings":[62,70,249],"out":2,"in":0,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,253],"duration":10.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.652,"geometry_index":9238,"location":[6.804226,49.138617]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.800405,49.137982],"geometry_index":9242,"admin_index":8,"weight":11.301,"is_urban":false,"turn_weight":0.5,"duration":10.809,"bearings":[63,78,260],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":3.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.859,"geometry_index":9244,"location":[6.79646,49.137586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":0.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.529,"geometry_index":9245,"location":[6.795045,49.137453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":10.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.234,"geometry_index":9246,"location":[6.794848,49.137433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":21.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.336,"geometry_index":9250,"location":[6.791071,49.136628]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":53.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":51.133,"geometry_index":9253,"location":[6.783161,49.134577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,289],"duration":30.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":27.848,"geometry_index":9274,"location":[6.763855,49.138302]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,253],"duration":17.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.979,"geometry_index":9286,"location":[6.752367,49.13854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,250],"duration":24.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.822,"geometry_index":9289,"location":[6.745871,49.137012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,253],"duration":10.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.594,"geometry_index":9291,"location":[6.737025,49.134875]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,272],"duration":27.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.529,"geometry_index":9299,"location":[6.732957,49.134404]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,271],"duration":11.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.527,"geometry_index":9319,"location":[6.722642,49.136181]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":3.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.486,"geometry_index":9323,"location":[6.718329,49.136172]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269,273],"duration":15.621,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.832,"geometry_index":9324,"location":[6.7169,49.136161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":0.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.553,"geometry_index":9325,"location":[6.711595,49.136119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":9.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.299,"geometry_index":9326,"location":[6.711402,49.136117]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.84,"geometry_index":9327,"location":[6.708086,49.136089]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.641,"geometry_index":9329,"location":[6.705891,49.136084]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,275],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.156,"geometry_index":9330,"location":[6.705685,49.136085]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.703963,49.136189],"geometry_index":9331,"admin_index":8,"weight":26.027,"is_urban":false,"turn_weight":1,"duration":26.365,"bearings":[79,95,272],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.398,"geometry_index":9333,"location":[6.701751,49.13621]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.701625,49.136209],"geometry_index":9334,"admin_index":8,"weight":22.752,"is_urban":false,"toll_collection":{"name":"Saint-Avold","type":"toll_booth"},"turn_weight":15,"duration":8.16,"bearings":[89,270],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[90,265,291],"duration":11.514,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.914,"geometry_index":9335,"location":[6.700685,49.136211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,270],"duration":3.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.57,"geometry_index":9336,"location":[6.697722,49.136028]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.696749,49.136029],"geometry_index":9337,"admin_index":8,"weight":5.939,"is_urban":false,"turn_weight":1,"duration":5.219,"bearings":[80,90,269],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":0.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.229,"geometry_index":9338,"location":[6.694968,49.136016]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":11.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.471,"geometry_index":9339,"location":[6.694888,49.136015]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,251],"duration":5.566,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.262,"geometry_index":9345,"location":[6.68948,49.135597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":42.793,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.506,"geometry_index":9348,"location":[6.686922,49.134948]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":10.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.916,"geometry_index":9362,"location":[6.666721,49.132495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[6.661761,49.133114],"geometry_index":9364,"admin_index":8,"weight":13.836,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.82,"bearings":[102,281,291],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.655466,49.134032],"geometry_index":9368,"admin_index":8,"weight":10.012,"is_urban":false,"turn_weight":1,"duration":10.307,"bearings":[89,103,285],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,286],"duration":20.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.143,"geometry_index":9369,"location":[6.651361,49.134748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[108,288],"duration":65.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":57.518,"geometry_index":9371,"location":[6.643187,49.136378]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,267],"duration":18.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.838,"geometry_index":9388,"location":[6.617285,49.134919]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,292],"duration":152.143,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":133.117,"geometry_index":9395,"location":[6.609951,49.135519]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[107,286,304],"duration":15.826,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.832,"geometry_index":9429,"location":[6.549096,49.133305]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.542585,49.134003],"geometry_index":9437,"admin_index":8,"weight":36.426,"is_urban":false,"turn_weight":1,"duration":40.514,"bearings":[77,91,266],"out":2,"in":1,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":101.9,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":89.145,"geometry_index":9451,"location":[6.522821,49.131906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,274],"duration":0.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.199,"geometry_index":9481,"location":[6.475054,49.141159]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,270],"duration":6.242,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.596,"geometry_index":9482,"location":[6.474946,49.141164]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,267],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.832,"geometry_index":9484,"location":[6.472339,49.141135]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.5,"geometry_index":9486,"location":[6.469627,49.141009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":1.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.68,"geometry_index":9487,"location":[6.469394,49.140998]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":1.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.148,"geometry_index":9488,"location":[6.468611,49.140961]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":14.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.494,"geometry_index":9489,"location":[6.468076,49.140934]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[68,86,266],"duration":9.65,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":8.678,"geometry_index":9490,"location":[6.461859,49.140627]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":28.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.717,"geometry_index":9491,"location":[6.45775,49.14042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,280],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":9498,"location":[6.445589,49.140406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,282],"duration":70.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":61.553,"geometry_index":9499,"location":[6.445083,49.140465]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[59,241,256],"duration":15.121,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.225,"geometry_index":9514,"location":[6.416777,49.138436]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.410789,49.137027],"geometry_index":9520,"admin_index":8,"weight":2.52,"is_urban":false,"turn_weight":1,"duration":1.746,"bearings":[61,80,264],"out":2,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,264],"duration":47.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":41.598,"geometry_index":9521,"location":[6.410046,49.136974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,269],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.238,"geometry_index":9540,"location":[6.390558,49.140065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,267],"duration":5.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.359,"geometry_index":9541,"location":[6.389977,49.140056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,260],"duration":19.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.238,"geometry_index":9544,"location":[6.387488,49.139908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":1.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.691,"geometry_index":9550,"location":[6.379698,49.138143]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.688,"geometry_index":9551,"location":[6.37895,49.137934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,248],"duration":92.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":81.293,"geometry_index":9552,"location":[6.378651,49.137852]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,257],"duration":30.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":27.516,"geometry_index":9569,"location":[6.333329,49.133993]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.934,"geometry_index":9574,"location":[6.318771,49.131247]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,250],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.285,"geometry_index":9575,"location":[6.318386,49.131158]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":115.148,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":103.617,"geometry_index":9576,"location":[6.318274,49.131131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,282],"duration":11.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.004,"geometry_index":9604,"location":[6.274824,49.126472]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[6.270402,49.127344],"geometry_index":9608,"admin_index":8,"weight":0.688,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.762,"bearings":[112,292],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,294],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.383,"geometry_index":9609,"location":[6.270131,49.127417]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":9.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.441,"geometry_index":9610,"location":[6.269606,49.127567]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[109,288],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":9613,"location":[6.266237,49.128465]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Luxembourg"}],"type":"fork","modifier":"right","text":"Paris / Luxembourg"},"primary":{"components":[{"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"A 4"},"distanceAlongGeometry":41141.73}],"destinations":"A 4: Paris, Metz, St Avold, Carling","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 50 toward Paris/Metz/St Avold/Carling.","modifier":"slight left","bearing_after":245,"bearing_before":243,"location":[6.808646,49.139773]},"speedLimitSign":"vienna","name":"","weight_typical":1265.58,"duration_typical":1365.047,"duration":1365.047,"distance":41141.73,"driving_side":"right","weight":1265.58,"mode":"driving","ref":"E 50","geometry":"ybgv|Akcq~KpGd[zEbUpIf]v]r{BnN`fAnG`j@vHbq@tHz|@vJvrAvIbaB~LlsChGlwAf@hKxA|Y|Pv_BdJbl@jQfbAd`AdfF`d@nqC|XtsBjHti@bGpk@lEnl@vCte@lA~f@x@dg@Jt`@c@jh@}Ahe@qBvg@oCd`@wEhc@yEz\\{Irg@qGh\\wNpk@iuAvjFsnAtzE{L|h@iNbs@cInd@cQ~nAqF`k@oFdp@cGniAiCh~@y@~cAV~bAvA|q@`C|q@rJ~}AhIzx@`BdN`Ghg@~^ddClv@ngFjpBtsMdSdsA~Fze@zBfStCtZlC|[vCzl@nA|c@b@|_@@vUQrT[|UsAfe@_C`c@mCh`@{C~ZuEv_@gF|]kIfg@mJ`h@_K`i@yIzg@eJnm@eDzWiCpUwCd[eCpa@wAt]y@hZ]zTQz`@Gt_@Hpu@`@lsCThxArApjIB`Kv@fnELpjBCr\\AzKoErjBy@|eANhbA@zFCvy@lJdxDAx{@XhnB@~C\\rmAz@fq@pB`v@tBhe@fC`c@xJtnAzNpeAnPpaAdFvU`Onq@tT~y@vbAr~DdVdiAzXlrB\\dCrLxoAdGbgAxCn}@zBn}@l@p_AoBrhBiUprFiG|jA{V`hEyM|kB{NjwBkLvwAkKpqAwNvdBwk@p_Gis@lrGqp@ljFms@|oFqZtfCsIpnAaEbhAwBh`C`D|dBjJx~AtRfeBd]rxBxw@trDtS`hAnLlv@hFn_@hHto@xEfk@jDzj@nDb|@vA`fAFzu@kAzcA}C|~@aHvgAmH|t@uM|gA_ShkAip@~oDwJzm@}LxbAiJjbAoFp_AcDt`Au@xu@?zv@nBbkA|B`t@`Fdy@fKthA|LbgAhmEz_]`KvdArGr`AvDfr@|Cr_A|BpiBbA`{D~@z{@lBr_A`EpbA~Wp_FpGpmBpCzhA^jnBgDlsBqF`vAgKn|A{ObfBmLxgAuSxcBsCjWaJfw@sGpv@{Fdz@oDbz@yAhf@kAn|@Wrr@|@jn@lApb@fCpw@dFf{@bPptBlLfnAxZvoDtGv}@jIhhAfLrvBnIrtBhIlcDhBjfBLxS`@nw@mB~xFyDfuBoHp}BsJhuBsGhnA}Gn`AeIjfAmPdhBkLdhA]bD_XbyBiSdwAsTtvAoV~vAoXhuA{o@jwC}u@p{CetAblFkv@~{CwTfbAwShdAyXjgBaOljAeOz}AwJ`wAuBl`@}Dp}@eCtbAaBvlAIvEFdiBp@vw@HpJpF||CTpMhA|o@t@l`@dRpcK|Kx_GzCl_BnFbrCdD~oCRdo@Ul~AkDvoBgJbrBuBr^cIbfAyi@tzFsOxcBgMrdBsJdaC_C`yBb@pgAlBbiA~HbrB`IreAjKrkAdY`vBda@hxBtj@z}BdtAhvEjU`}@fRp}@fN`~@fMt_AdIz_AvE~w@hBlm@~@p[j@l|@Sdy@sAbhAaFrhAeInbAeKx|@uMt}@ePn{@iWrpA_VbjA_UzgA}Oj_AaOtiAuKrjAgFj{@sD~~@yAzm@i@~u@Phc@h@|k@zAdt@`Dlx@T|F|HbgAxKlgAdQtnAhSxlAjo@zoD`Lvm@bDtQdt@ldEzT~uA`SzvAhVniCpOlsCrEhtBz@huBqCzgEmAftEx@|wEtBpoCvDdrCvHjvDdKppDxNnmDhXnoFj]~mFxb@liFb_AnzID^da@n`Dhd@ldDpD`Wt@~Evt@dtE`e@vjCjf@bfCne@b_Chb@fbC~Fxa@nFfb@xLxdApTvnC`IviBtEdwBj@dcBcBbhB{KdmEoB`bAiA~_AKbkApAjiAzBbcAjExbAhGjdAzIl{AxN`~CtAzuA?f|@{Ab|@eBxn@aDtp@gLt_BoKv_AmM||@iM~s@qC|OkHx_@yUdnAoQhbAyM`_AcIvn@wF`o@cFvn@sAh["},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 99 miles.","announcement":"Continue for 99 miles.","distanceAlongGeometry":159580.203},{"ssmlAnnouncement":"In 2 miles, Take the A 26 exit.","announcement":"In 2 miles, Take the A 26 exit.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take the A 26 exit.","announcement":"In a half mile, Take the A 26 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the A 26 exit toward St Gibrien, Épernay.","announcement":"Take the A 26 exit toward St Gibrien, Épernay.","distanceAlongGeometry":260}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[98,275,279],"duration":4.732,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":4.488,"geometry_index":9617,"location":[6.263487,49.128907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,276],"duration":11.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.223,"geometry_index":9619,"location":[6.26178,49.12906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,286],"duration":7.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.57,"geometry_index":9624,"location":[6.257522,49.129508]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[116,296],"duration":12.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.918,"geometry_index":9627,"location":[6.254879,49.130177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[132,314],"duration":2.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.668,"geometry_index":9631,"location":[6.251224,49.13184]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[136,320],"duration":34.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.203,"geometry_index":9633,"location":[6.250515,49.132302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,178],"duration":2.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.184,"geometry_index":9643,"location":[6.246429,49.140019]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.246475,49.140583],"geometry_index":9645,"admin_index":8,"weight":54.676,"is_urban":false,"turn_weight":1,"duration":59.646,"bearings":[4,160,184],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":1.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.965,"geometry_index":9657,"location":[6.252288,49.153346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,195],"duration":103.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":93.516,"geometry_index":9658,"location":[6.252397,49.153618]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,320],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.477,"geometry_index":9684,"location":[6.24591,49.18094]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,318],"duration":1.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.445,"geometry_index":9685,"location":[6.2455,49.181261]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[138,315,328],"duration":22.025,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.805,"geometry_index":9686,"location":[6.245077,49.181565]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.237741,49.184882],"geometry_index":9694,"admin_index":8,"weight":5.734,"is_urban":false,"turn_weight":1,"duration":5.285,"bearings":[107,115,291],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,289],"duration":0.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.375,"geometry_index":9696,"location":[6.235795,49.185372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,290],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.453,"geometry_index":9697,"location":[6.235638,49.185408]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":6.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.027,"geometry_index":9698,"location":[6.235445,49.185453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":58.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":52.629,"geometry_index":9701,"location":[6.23287,49.18606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,306],"duration":8.352,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.5,"geometry_index":9717,"location":[6.213883,49.195336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,301],"duration":17.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.52,"geometry_index":9719,"location":[6.211132,49.196572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,288],"duration":6.941,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.402,"geometry_index":9725,"location":[6.204896,49.198507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,286],"duration":2.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.723,"geometry_index":9726,"location":[6.202277,49.199063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":4.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.129,"geometry_index":9728,"location":[6.201146,49.199268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.566,"geometry_index":9729,"location":[6.199435,49.199562]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":16.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.641,"geometry_index":9730,"location":[6.198399,49.199741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,275],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.574,"geometry_index":9735,"location":[6.192061,49.200571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":20.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.91,"geometry_index":9736,"location":[6.191834,49.200585]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":2.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.016,"geometry_index":9738,"location":[6.183786,49.201033]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[95,274,277],"duration":5.834,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.68,"geometry_index":9739,"location":[6.182995,49.201075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":3.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.668,"geometry_index":9740,"location":[6.180847,49.201181]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":11.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.969,"geometry_index":9741,"location":[6.179572,49.201244]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,259],"duration":2.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.863,"geometry_index":9746,"location":[6.175799,49.201162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,256],"duration":21.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.715,"geometry_index":9747,"location":[6.174786,49.201037]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.167654,49.199026],"geometry_index":9754,"admin_index":8,"weight":15.203,"is_urban":false,"turn_weight":1,"duration":13.865,"bearings":[48,62,242],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":11.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.902,"geometry_index":9756,"location":[6.163311,49.197506]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":13.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.492,"geometry_index":9760,"location":[6.159571,49.196378]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,272],"duration":8.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.406,"geometry_index":9766,"location":[6.154837,49.195867]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[99,282,289],"duration":5.863,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6,"geometry_index":9770,"location":[6.152031,49.19604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,289],"duration":0.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.941,"geometry_index":9773,"location":[6.150066,49.196382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,291],"duration":32.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":32.98,"geometry_index":9774,"location":[6.149754,49.196454]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.14101,49.20151],"geometry_index":9786,"admin_index":8,"weight":13.387,"is_urban":false,"turn_weight":0.75,"duration":12.336,"bearings":[135,145,326],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,321],"duration":6.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.41,"geometry_index":9789,"location":[6.138353,49.204012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[136,309],"duration":7.781,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.781,"geometry_index":9791,"location":[6.13676,49.205154]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,301],"duration":0.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.363,"geometry_index":9796,"location":[6.134364,49.206269]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[121,295,301],"duration":27.586,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.871,"geometry_index":9797,"location":[6.134241,49.206317]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.125053,49.206965],"geometry_index":9810,"admin_index":8,"weight":13.434,"is_urban":false,"turn_weight":0.5,"duration":13.637,"bearings":[61,76,252],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,251],"duration":212.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":196.227,"geometry_index":9813,"location":[6.120388,49.205808]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261,265],"duration":0.957,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.844,"geometry_index":9892,"location":[6.056559,49.180308]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":26.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":23.781,"geometry_index":9893,"location":[6.056202,49.180272]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.046228,49.179264],"geometry_index":9894,"admin_index":8,"weight":110.605,"is_urban":false,"turn_weight":1,"duration":118.502,"bearings":[76,81,263],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,307],"duration":1.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.656,"geometry_index":9931,"location":[6.000341,49.186491]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,309],"duration":13.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.227,"geometry_index":9932,"location":[5.999817,49.18675]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,318],"duration":1.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.25,"geometry_index":9937,"location":[5.995666,49.18924]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[138,318],"duration":10.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.582,"geometry_index":9938,"location":[5.995318,49.189492]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,325],"duration":4.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.535,"geometry_index":9942,"location":[5.992754,49.191568]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[146,327,344],"duration":27.111,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.426,"geometry_index":9944,"location":[5.991692,49.192583]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[97,118,296],"duration":2.756,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":2.668,"geometry_index":9953,"location":[5.984193,49.197481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,293],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.004,"geometry_index":9955,"location":[5.983216,49.197786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,291],"duration":8.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.504,"geometry_index":9956,"location":[5.982831,49.197891]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,281],"duration":97.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":92.207,"geometry_index":9962,"location":[5.97866,49.198618]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,264],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.352,"geometry_index":10013,"location":[5.933985,49.199568]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,264],"duration":9.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.785,"geometry_index":10014,"location":[5.9336,49.199542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,264],"duration":8.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.578,"geometry_index":10015,"location":[5.931116,49.199372]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,265],"duration":17.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.879,"geometry_index":10017,"location":[5.928967,49.199235]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.924458,49.199201],"geometry_index":10021,"admin_index":8,"weight":18.328,"is_urban":false,"toll_collection":{"name":"Péage de Beaumont","type":"toll_booth"},"turn_weight":15,"duration":3.6,"bearings":[85,264],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,255],"duration":5.105,"turn_duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.691,"geometry_index":10022,"location":[5.923486,49.199129]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,256],"duration":3.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.66,"geometry_index":10024,"location":[5.92215,49.198902]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,261],"duration":32.309,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":29.07,"geometry_index":10025,"location":[5.921116,49.198733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,275],"duration":2.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.918,"geometry_index":10035,"location":[5.912398,49.198409]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,277],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.031,"geometry_index":10036,"location":[5.911826,49.198444]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,276],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.637,"geometry_index":10037,"location":[5.909043,49.198668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.254,"geometry_index":10038,"location":[5.908397,49.198716]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276],"duration":14.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.203,"geometry_index":10039,"location":[5.907911,49.198752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,266],"duration":2.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.957,"geometry_index":10046,"location":[5.902702,49.198825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":1.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.914,"geometry_index":10047,"location":[5.90195,49.19879]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[86,264,270],"duration":16.793,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.676,"geometry_index":10048,"location":[5.901593,49.198772]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.895641,49.198187],"geometry_index":10052,"admin_index":8,"weight":12.988,"is_urban":false,"turn_weight":1,"duration":13.721,"bearings":[66,81,261],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":49.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.215,"geometry_index":10053,"location":[5.890323,49.197608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":5.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.586,"geometry_index":10067,"location":[5.871023,49.19633]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[77,255,272],"duration":16.809,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.691,"geometry_index":10069,"location":[5.869015,49.19603]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.862662,49.194708],"geometry_index":10075,"admin_index":8,"weight":22.262,"is_urban":false,"turn_weight":1,"duration":24.307,"bearings":[53,69,249],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":1.045,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.91,"geometry_index":10077,"location":[5.853666,49.192438]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":0.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.516,"geometry_index":10078,"location":[5.853277,49.192341]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":11.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.148,"geometry_index":10079,"location":[5.853057,49.192286]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,250],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.059,"geometry_index":10080,"location":[5.848762,49.191209]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,252],"duration":14.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.539,"geometry_index":10081,"location":[5.848304,49.191103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,259],"duration":0.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.207,"geometry_index":10088,"location":[5.842764,49.19012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,260],"duration":110.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":97.07,"geometry_index":10089,"location":[5.842672,49.190108]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":101.334,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":88.66,"geometry_index":10129,"location":[5.789612,49.181327]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,220],"duration":0.693,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.605,"geometry_index":10158,"location":[5.747416,49.164603]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.859,"geometry_index":10159,"location":[5.747228,49.164458]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.695,"geometry_index":10160,"location":[5.746956,49.164255]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":43.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.09,"geometry_index":10161,"location":[5.746741,49.164093]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,230],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.375,"geometry_index":10167,"location":[5.734355,49.155622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":49.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.18,"geometry_index":10168,"location":[5.73385,49.155342]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,237],"duration":1.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.164,"geometry_index":10178,"location":[5.713464,49.146533]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[57,237,244],"duration":32.244,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.207,"geometry_index":10179,"location":[5.712908,49.146298]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.701713,49.141326],"geometry_index":10184,"admin_index":8,"weight":5.578,"is_urban":false,"turn_weight":1,"duration":5.242,"bearings":[53,57,239],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,240],"duration":108.84,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":95.23,"geometry_index":10186,"location":[5.699868,49.140599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,260],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.273,"geometry_index":10204,"location":[5.659064,49.128668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":73.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":64.168,"geometry_index":10205,"location":[5.658931,49.128653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":2.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.012,"geometry_index":10223,"location":[5.628889,49.126884]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271,277],"duration":1.529,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.32,"geometry_index":10224,"location":[5.627944,49.126893]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":1.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.039,"geometry_index":10225,"location":[5.627338,49.126898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":15.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.449,"geometry_index":10226,"location":[5.626854,49.126903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,265],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.398,"geometry_index":10231,"location":[5.619244,49.12684]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,264],"duration":5.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.609,"geometry_index":10232,"location":[5.619052,49.126829]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.616896,49.126677],"geometry_index":10234,"admin_index":8,"weight":12.828,"is_urban":false,"turn_weight":1,"duration":13.535,"bearings":[70,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,255],"duration":51.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":45.473,"geometry_index":10239,"location":[5.611322,49.126005]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":5.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.496,"geometry_index":10258,"location":[5.590757,49.121339]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,242],"duration":0.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.352,"geometry_index":10261,"location":[5.588815,49.120733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":31.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":27.766,"geometry_index":10262,"location":[5.588671,49.120683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":40.707,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.629,"geometry_index":10276,"location":[5.578873,49.115123]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,279],"duration":17.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.254,"geometry_index":10296,"location":[5.564498,49.110762]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":20.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.113,"geometry_index":10306,"location":[5.558043,49.112683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":1.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.301,"geometry_index":10308,"location":[5.551322,49.116116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":97.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":85.426,"geometry_index":10309,"location":[5.550835,49.116365]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[91,270,277],"duration":12.137,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.602,"geometry_index":10338,"location":[5.514493,49.119283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":20.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.566,"geometry_index":10340,"location":[5.509693,49.119241]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.501745,49.11934],"geometry_index":10345,"admin_index":8,"weight":9.973,"is_urban":false,"turn_weight":1,"duration":9.977,"bearings":[89,96,278],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,289],"duration":172.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":151.297,"geometry_index":10350,"location":[5.496927,49.120036]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[116,297],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.203,"geometry_index":10437,"location":[5.417704,49.108303]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[5.41659,49.10868],"geometry_index":10438,"admin_index":8,"weight":5.211,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.965,"bearings":[117,298,306],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[84,118,298],"duration":0.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":0.25,"geometry_index":10439,"location":[5.414324,49.109461]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":1.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.227,"geometry_index":10440,"location":[5.414218,49.109498]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":3.256,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.848,"geometry_index":10441,"location":[5.413687,49.109681]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.301,"geometry_index":10443,"location":[5.412426,49.110116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":1.447,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.262,"geometry_index":10444,"location":[5.412295,49.110161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":8.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.512,"geometry_index":10445,"location":[5.411737,49.110353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,299],"duration":1.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.719,"geometry_index":10446,"location":[5.408559,49.111449]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,301],"duration":27.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":24.832,"geometry_index":10447,"location":[5.407841,49.111707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[131,309],"duration":0.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.621,"geometry_index":10463,"location":[5.399395,49.1171]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":18.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.961,"geometry_index":10464,"location":[5.399183,49.117213]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,278],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.523,"geometry_index":10475,"location":[5.392557,49.119127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,277],"duration":15.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.691,"geometry_index":10476,"location":[5.392332,49.119148]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.391,"geometry_index":10486,"location":[5.386454,49.118901]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":8.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.625,"geometry_index":10487,"location":[5.386274,49.118877]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":74.439,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":65.117,"geometry_index":10492,"location":[5.382772,49.118197]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.355,"geometry_index":10521,"location":[5.354276,49.109443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,260],"duration":50.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":44.047,"geometry_index":10522,"location":[5.354094,49.109424]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.539,"geometry_index":10538,"location":[5.332411,49.105659]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,250],"duration":1.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.617,"geometry_index":10539,"location":[5.332155,49.1056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":74.387,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":65.07,"geometry_index":10540,"location":[5.331415,49.105421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":5.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.523,"geometry_index":10569,"location":[5.302104,49.098339]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[87,269,297],"duration":13.637,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.266,"geometry_index":10572,"location":[5.299983,49.098223]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.294179,49.09806],"geometry_index":10576,"admin_index":8,"weight":12.484,"is_urban":false,"turn_weight":1,"duration":12.768,"bearings":[68,85,264],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":1.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.531,"geometry_index":10579,"location":[5.288789,49.097553]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":19.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.168,"geometry_index":10580,"location":[5.288096,49.097485]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.391,"geometry_index":10581,"location":[5.280414,49.096698]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261,265],"duration":3.656,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.27,"geometry_index":10582,"location":[5.279338,49.096588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":0.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.391,"geometry_index":10583,"location":[5.277911,49.096442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":11.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.508,"geometry_index":10584,"location":[5.277737,49.096424]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.273028,49.095942],"geometry_index":10585,"admin_index":8,"weight":13.336,"is_urban":false,"turn_weight":1,"duration":13.727,"bearings":[72,81,260],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,253],"duration":202.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":177.152,"geometry_index":10590,"location":[5.267474,49.095141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,275],"duration":102.691,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":89.848,"geometry_index":10650,"location":[5.185269,49.088671]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277,284],"duration":0.996,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.863,"geometry_index":10685,"location":[5.144277,49.091536]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":14.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.934,"geometry_index":10686,"location":[5.143861,49.09157]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":0.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.371,"geometry_index":10687,"location":[5.13755,49.092087]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.137375,49.092101],"geometry_index":10688,"admin_index":8,"weight":59.234,"is_urban":false,"turn_weight":1,"duration":64.715,"bearings":[92,97,277],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.285,"geometry_index":10704,"location":[5.109012,49.091528]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":8.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.465,"geometry_index":10705,"location":[5.108382,49.091536]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":12.816,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.516,"geometry_index":10706,"location":[5.104744,49.091586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,274],"duration":6.93,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.23,"geometry_index":10708,"location":[5.099388,49.091683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,282],"duration":65.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":56.895,"geometry_index":10713,"location":[5.095987,49.091968]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":0.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.77,"geometry_index":10742,"location":[5.065664,49.095752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,255],"duration":50.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":44.414,"geometry_index":10743,"location":[5.065377,49.095699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,289],"duration":3.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.395,"geometry_index":10759,"location":[5.048283,49.095383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":108.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":94.574,"geometry_index":10761,"location":[5.047029,49.095687]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,279],"duration":18.617,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.281,"geometry_index":10809,"location":[4.999081,49.091673]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,278],"duration":44.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":39.23,"geometry_index":10810,"location":[4.989965,49.092588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,240],"duration":18.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.871,"geometry_index":10838,"location":[4.970726,49.086649]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249,255],"duration":20.922,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.301,"geometry_index":10843,"location":[4.962484,49.084327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.954676,49.08237],"geometry_index":10844,"admin_index":8,"weight":9.238,"is_urban":false,"turn_weight":1,"duration":9.699,"bearings":[63,69,249],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":80.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":70.027,"geometry_index":10846,"location":[4.950186,49.081247]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":0.258,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.223,"geometry_index":10868,"location":[4.911803,49.075313]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":2.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.355,"geometry_index":10869,"location":[4.911691,49.075285]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":16.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.465,"geometry_index":10870,"location":[4.910671,49.075029]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,250],"duration":4.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.742,"geometry_index":10871,"location":[4.904142,49.073412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,250],"duration":34.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":30.613,"geometry_index":10872,"location":[4.902411,49.073002]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,275],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.68,"geometry_index":10888,"location":[4.887602,49.072028]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,276],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.883,"geometry_index":10889,"location":[4.886819,49.072077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276],"duration":2.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.402,"geometry_index":10890,"location":[4.885926,49.072139]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276,279],"duration":16.766,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.082,"geometry_index":10891,"location":[4.884801,49.072217]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.877435,49.072686],"geometry_index":10892,"admin_index":8,"weight":10.812,"is_urban":false,"turn_weight":0.5,"duration":11.465,"bearings":[80,96,276],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,276],"duration":175.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":157.688,"geometry_index":10894,"location":[4.872445,49.073008]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":1.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.578,"geometry_index":10947,"location":[4.797066,49.074465]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.184,"geometry_index":10948,"location":[4.796329,49.074333]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255,260],"duration":22.289,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.055,"geometry_index":10949,"location":[4.795775,49.074234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.786681,49.072619],"geometry_index":10950,"admin_index":8,"weight":20.73,"is_urban":false,"turn_weight":1,"duration":21.93,"bearings":[68,75,255],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,256],"duration":0.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.363,"geometry_index":10951,"location":[4.777656,49.07101]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":68.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":59.766,"geometry_index":10952,"location":[4.777481,49.070981]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.434,"geometry_index":10973,"location":[4.74808,49.069702]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":93.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":81.535,"geometry_index":10974,"location":[4.747865,49.069695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":146.832,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":128.473,"geometry_index":10999,"location":[4.704453,49.059982]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,244],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.086,"geometry_index":11029,"location":[4.638341,49.040655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":42.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":37.219,"geometry_index":11030,"location":[4.637865,49.0405]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,261],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.277,"geometry_index":11044,"location":[4.617938,49.036221]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.789,"geometry_index":11045,"location":[4.617361,49.036161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":66.297,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":58.004,"geometry_index":11046,"location":[4.616994,49.036124]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.559,"geometry_index":11056,"location":[4.589038,49.036102]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,272],"duration":110.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":96.535,"geometry_index":11057,"location":[4.58876,49.036107]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":11.859,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.371,"geometry_index":11085,"location":[4.535385,49.029281]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":3.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.641,"geometry_index":11089,"location":[4.529595,49.028696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.77,"geometry_index":11090,"location":[4.528137,49.028505]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[79,257,272],"duration":17.312,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.133,"geometry_index":11091,"location":[4.52715,49.028375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.519952,49.027348],"geometry_index":11093,"admin_index":8,"weight":12.262,"is_urban":false,"turn_weight":1,"duration":12.879,"bearings":[66,79,260],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,268],"duration":81.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":71.586,"geometry_index":11100,"location":[4.514463,49.026928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,280],"duration":81.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":71.531,"geometry_index":11115,"location":[4.479744,49.03018]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.867,"geometry_index":11134,"location":[4.445319,49.034116]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[98,279,291],"duration":9.914,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.918,"geometry_index":11136,"location":[4.443963,49.034236]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.439766,49.034724],"geometry_index":11140,"admin_index":8,"weight":7.035,"is_urban":false,"turn_weight":0.5,"duration":7.27,"bearings":[84,101,281],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.535,"geometry_index":11141,"location":[4.43665,49.035116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":11142,"location":[4.435441,49.035268]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,279],"duration":25.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":23.398,"geometry_index":11143,"location":[4.434936,49.035331]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.402,"geometry_index":11152,"location":[4.42382,49.03597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,269],"duration":150.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":131.887,"geometry_index":11153,"location":[4.423634,49.035969]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[123,304],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.461,"geometry_index":11198,"location":[4.350573,49.037366]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[124,303],"duration":50.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.883,"geometry_index":11199,"location":[4.350382,49.03745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":5.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.234,"geometry_index":11219,"location":[4.326734,49.041831]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,293],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.621,"geometry_index":11221,"location":[4.324026,49.042475]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.07,"geometry_index":11222,"location":[4.323313,49.04267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.098,"geometry_index":11223,"location":[4.322852,49.042799]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293,313],"duration":16.387,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.742,"geometry_index":11224,"location":[4.322376,49.042932]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.316015,49.044717],"geometry_index":11225,"admin_index":8,"weight":9.906,"is_urban":false,"turn_weight":0.5,"duration":10.457,"bearings":[97,113,293],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,291],"duration":44.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":39.828,"geometry_index":11227,"location":[4.311859,49.045851]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[124,306],"duration":2.938,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.637,"geometry_index":11238,"location":[4.294604,49.050996]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[127,307],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":11240,"location":[4.293587,49.051491]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"St Gibrien"},{"type":"text","text":"/"},{"type":"text","text":"Épernay"}],"type":"off ramp","modifier":"right","text":"St Gibrien / Épernay"},"primary":{"components":[{"type":"icon","text":"A 26"}],"type":"off ramp","modifier":"right","text":"A 26"},"distanceAlongGeometry":159623.531},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["straight","slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"St Gibrien"},{"type":"text","text":"/"},{"type":"text","text":"Épernay"}],"type":"off ramp","modifier":"right","text":"St Gibrien / Épernay"},"primary":{"components":[{"type":"icon","text":"A 26"}],"type":"off ramp","modifier":"right","text":"A 26"},"distanceAlongGeometry":3218.688}],"destinations":"A 4: Paris, Luxembourg, Thionville","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 4 toward Paris/Luxembourg/Thionville.","modifier":"slight right","bearing_after":279,"bearing_before":278,"location":[6.263487,49.128907]},"speedLimitSign":"vienna","name":"Autoroute de l’Est","weight_typical":4590.953,"duration_typical":5082.158,"duration":5082.158,"distance":159623.531,"driving_side":"right","weight":4590.93,"mode":"driving","ref":"A 4; E 50","geometry":"u{qu|A}jh}JmDtr@cC~u@qCd`AkBto@cEj~@uHraAgCfUaIps@qNd|@eOlr@qExS_[xgA{b@~lAo`@xw@eNdWuLbS}]lf@_Zb_@qp@`q@_s@fg@sy@nc@{k@fSki@tLmz@rL}h@pDqjAzByXq@mHi@gw@eEiw@aGqg@iG_]{GoeAuWsv@eWip@sYmk@cX__EywBsoBabA}k@uVcl@uR_PyEcb@iKaa@_KcdAsP_kBeMcsBhAwdAvJodAtOa`AfTmzAn`@{rAj`@w_AxT__AdM}q@dFo{AlAuuA[{uAnAuiArG{w@~Jem@jLuq@lTqu@d\\ax@vc@il@zb@a`A`z@sb@~e@w`@bg@aSrX_RlYsOdXuWrd@ed@p`Aw[pv@wc@vtA}P~m@iO~m@a\\x}AuJlm@}QdjAgAxHyA`KsGpd@{Uf`BmEbY{G~b@{Xd}A{Mpn@uPnu@eYbgAmZhdAic@fnAm_@n_Aae@xbAgb@p}@ie@l~@kgChzEey@v`Bue@bgAqb@jbAsHzQmy@|{ByQ~m@wQ|m@qg@rxBuR~}@yTnjAiKdq@yFn_@wa@tbDm@vEkJ|~@kQ|iBeJv_AqR~uB_IpbAmF~x@mJthBmBzl@[dMsIxkDkPdiIsAlp@sEfeC}BtnA_Az|@Hjy@n@nh@rAnh@tAp_@xFh~@tHz{@hEl^bIrk@pI~h@~XrtAz[~sAba@d_Bjc@vgBry@teD`XnfAvLri@zOby@xMn|@hIlq@xE`i@zCbf@~Cjn@fBxp@t@`bAi@`dA}Bhv@aC`d@o@|LeDtd@eFhh@_Hxj@oCnRiGd`@_Hd`@oPvu@oMpf@kPpi@iMj]wVbm@m[ro@qZxh@}Uh^mi@bq@{xAz}Aw~@~aAwz@t}@{_@jc@yYt_@qk@zaAa_@f{@aSzl@gI~XeD`KcApD_BtFmW|pAyFda@aGjg@cEdc@iD`f@sB`c@wApc@c@nb@Mnb@f@hh@pA`h@vDfw@rHf{@jIxo@zFla@`u@hoExUnbBjOvlA|_@pjDtFxc@zG|c@bLbj@bGfUjFxRdIzWhWzs@v[v}@~Rfs@hKze@z[fjBpKje@rKpb@jN~a@fOh`@hS`a@lcAvbBhTbb@|Tdh@hS`j@rQtr@|VrhAfI`]dJ~\\vTln@nP|^lJxQvWnb@lNzQrNjPpcBz_BbQ|RnTj[rSf^vWbl@hVrq@~|@lsCrMt^~Mv\\lTvc@pUt`@tUb[t]~]tY|UnqAn}@fb@rYpRnQjRxSxYha@bXjf@`Qp`@tOtb@|Rvt@`Pvx@dHpi@vFvp@hC|h@vAti@rAhkCrArs@|Adh@nC|g@lFfh@jGle@~Ovw@~v@x}Cbo@hbC~L|f@fL`f@pKnh@~Jtq@tHnp@~Hv_AbFbz@nG`wAtEh~@fAhU~}@jnRrAn_@|@lb@Xlm@Yn`AcBxq@mChh@}Ezo@oInx@aPzsAoz@l{G{Hhr@uIx}@gGbx@mEtu@cC~h@{DziAaCtsAaNrvMuBdqAmEhyAoCho@wDlu@{LvfBoKxmAoOzuAcFha@wHxj@{I`m@qUvtAuOzx@cUpdAeVdcAuW`bAmXd}@eVzt@cWzs@iPza@eOv_@m\\vv@i\\~r@e^`s@a_@|q@s`@to@wNvTeZhd@gc@jm@av@j_AgJdK}X~Zod@je@gbBncB_R`VwSdXkd@zq@q^ro@ge@deAc]|cAeNhf@sM~h@kO`r@uA~HqE`WuIti@gGfg@mFzc@cFfm@wD|h@eEts@qGrdAm@rJ}Fnv@iDn]wDf]cEx[kEfZcIjf@uMvp@_Svz@m|BzdJqSn{@uR~|@uTplAkL~w@sJtv@_Hdq@oGnr@}Ehu@aErv@wBbo@_Bzn@gCtfBwBhsB}AfqBSj_A`@xb@v@|_@pC|n@bDvf@lFjk@fFjb@lGda@vJth@lK`e@~In]nFjQ`HbT~GfRnJ~Vt|@r|Br]b~@vNr`@xHhV`Ntf@vJ|c@bIte@nH|k@zEpm@tB`^jD|`Ar@`WrIfzCjC|~@dCjeAvAfm@_@`lAyAt_BdBx|@nCv{@zKjjAh@bGpIr_ApEd}@nJdfD`Bjl@dAtl@j@pk@Fjj@Qti@k@pc@aApm@UtIeAvb@_M|lD_Bjg@gAj]qAzf@s@`_@m@~k@Yvs@I|v@Ttr@n@fo@dA~m@b@hU~DjqAtC|p@dD|n@tSv~Ddc@jkInJ|jBpDxaAjCbz@pCtxAr@|q@rBbaFpAhpAzAf}@dDn|AhCt~@~DnaA`Ctk@vI|~AzKv`BtAlS`O`hBxH~x@vKncA`LvaA`PjmAbM|{@xNn_AhaApgGpjAthH`EhWlBvLhbAlkGrEr[lJls@tGxi@dMpjAzF`m@zFjo@rD`g@vD|g@VvD`Efr@rDtv@bCnl@rCfx@bBvm@jAzm@zExuC~Azu@zBhu@nCrw@nDfu@bEpu@~GbfApIddA|H`{@tJ|`AjMdiAvc@nyDhIfy@tGrr@lIpaAxIhlAnGfbAbFl_Av\\vnHjFv`A|Fl~@|Ffx@|I|iAzKrjA`Fbf@dOlrAtOnnA`Jnp@|Gte@v@rF`Mzv@dLbr@tTjmAj|C`fP|a@hzBdPn}@bRxgAzPfiAlgCp_RrNnbA|ThvAtWdyAnNzs@hWxnAbUvbAf^rxA~[flAz_@`rArVbx@lUhr@``@xgAn^n`AzWrp@x\\rw@dWvk@xYdn@`i@`gAltAvcC~\\pj@zc@`r@j_AluAdqBtvCbL|P`HvJtK~ObIlLzpFtaIni@l{@zl@hbAxl@vdAnvAdkCz`AvpBnPp^xj@voAbq@f_B?@zeAzpCht@tsBrWbx@pbAlbDngDlsLry@lqCbL`^tMva@xh@`aB~pAdsDzzB`oG~_@hlA`]`gA`h@|fBjCjJzdAd{Dhq@hsC`n@duClnBzmKjXryAdXnsAh_@hcBnrEniR`e@b{BhXjyA~N~{@vPzhAvQptArL`cAvLbkAzIv~@zG|y@rH|cA\\hGtK`kBrEhiAhDxdApCjlAfB~lA~EbcG`Dl|ChDbkBfE|}A~HzxBdYdaG~C~z@~CvfA`DzaBdAddAj@jdABxs@Mjn@Q`z@Izd@If]{@reEE|dA`@|fAl@x}@nBhgAT~JbBho@jEluArDz`AfDru@dI~tApJhpAjHp{@vId}@lOntAhJbv@tN`fAbLjt@`K~n@vOp~@pb@rxBhKpk@xKdo@jQpkAnRpwAzHjq@t[j|ChJr{@fJlu@pNzaAxL|t@lEjVjFxYlKlg@`Qbu@bB~GrKlb@rK~_@`Pvi@pQpi@bY~w@jM`\\nStf@fRva@`Sha@`Qx\\pT``@hTr^p\\lh@x~Az~B|bB~bCnSv\\rRl_@jQb`@bL|XpKbZbQdk@dLlb@nN~o@xKbm@fKhu@nGhm@fEvj@nBb]~Bzu@x@po@Chm@{@ps@wAdh@wAhXwAhXuFpq@wHdq@sFba@eLdp@qOhr@aN`g@iQnj@sIzUoQhc@}rC|`HsaAbaCqNl]kl@xvAiQpd@}Xfy@iUzz@yQp}@oHvd@kKbw@mG|p@wFl}@gB`g@mAzr@W`{@dBnbAvDndApTnyEnFdxArCjwAl@tt@Bd[B`^Qhz@gB~nAgB|p@qQncFwEdqAiEjrAaH~oD{Af~BYnhARfpB~@vyDvAj{F@nj@k@p_AkAr{@gDtjAqD`z@kHxjAeHd|@qHhw@yHvo@_Z|xBsl@veEoJly@sE|i@sF`cAsBjo@Wb_@Oj\\T`m@lArl@fC~p@pErp@xJ~aAxOtiAbTlxAhGfg@zFzg@dHt`AxD~aA`Axt@?fy@uAvu@iCbu@qLn{BuE~bAuAbbANdbA`ChcAjFfaAxIn`AxL`}@zMtt@pN|o@vOdl@fZ`~@n`@zdA~\\h`AjNve@~Oho@~@xE@DxKrj@nGta@rCzQnHfv@bHf{@pE`|@lJfyB`K`}Bx@tQzFfaA~Dvf@hFje@~Ifq@jJ|j@|Ht`@vOdr@nOzj@vTrr@zX~v@tV`n@dOj]xWlm@ri@diAftAvrCxj@fnA|m@b|AbVds@~Xv`AhPjp@rM|o@zKjq@|Izr@hGhs@pEzs@lDbmAPxcA_A|k@?Je@|XsElbAuHb_AyJhx@cPhaAmEnSCJgCjLqVrdAyo@rlCiArEmJd`@aMxg@cL~d@yAdG_Kza@ocAreEcOzk@oNvf@iJ|YiJfXkL|ZiQnb@cTvc@wJnRcUda@uJhO_Zra@kSxWwx@lcAcb@zj@oVl`@mSd_@kOj[aFfLgO|]aOnb@eNde@}L~d@sKre@cIxc@yJlp@_Ff`@sFzi@oDxd@oBt_@i@`MkAt^m@z\\[dc@?la@`@ze@|@~e@bBld@~Btg@hD|k@tCfa@n@fJ~Dre@~Gzq@|Flg@lHrl@bIhj@vIhi@dMds@vKfi@jN`o@tNpj@jJ|\\jNxd@bP`e@~Pvc@xQ`d@vhC`iGdc@biArSrl@~Vbx@pPhl@nOpl@|Nvn@dI``@jK|h@xKzm@~Nr`AhGfd@`Itq@nHps@pGlu@vDth@xClf@`Evw@tWbnGd@jJlH`pAbE`k@`Evh@|Gpw@fE~c@dGhj@`p@d~F~QfpB~{@bvJnFnk@lFph@hGjj@nGjj@dFxa@xFjc@nMz~@tB~NdJfm@jSznApOh{@~f@nkCzNrz@zMfy@lKlu@rJfw@zIlx@fId~@hH|}@`UpnD`J~lAvJx}@vGjd@bHba@~Hj`@zL`h@pUry@d{@jqC~Svv@rPjq@~Lhn@|Jnj@zMl~@dFva@vI|}@hGf{@bChf@f@dM|Ap`@xAxs@n@dm@rAfeDhAztAn@be@vBngAxAbg@vC|y@bWxlFfChj@dp@b_NzEfbAbHdxAb@zIb]heHrJlbBfF~v@tH|aArNb}AzDr]pP|uAlLp}@nu@vnFjN`lAjIp_AlDdg@pGlkArM|eDhDlr@fE~s@vF`r@dKr|@pIpl@nOj|@je@hcCz[teB|K|t@xH`s@hDhc@~Bx_@pC`q@bAbh@Xr`@E`k@k@he@mAxb@{Bvg@yCvd@scAbdLoIxfAkD|m@aC~y@i@np@Ddy@fA`i@tDzjAxYr_HnBxh@lAf_@xBzz@vAbdAPft@?fo@a@rcEBzk@ZbeA`Bx_B`DjxAvCraAfDny@nIh}AvKv}AlrAnmOhJrrAtGnnAfExoA|AbaAz@nrAGdm@{@vfAgRpiIyBflAUfc@Hje@\\j\\nApo@zCpn@~F`w@zG|o@lJzq@nj@vtDbL||@dEjb@~Dfh@hCjf@~Bhu@v@dn@Fp]Wfe@oA~j@uBji@sDjn@yFtm@uIhs@sHhe@aItc@_dChcLwS~hAeMjy@mJru@cIhx@qEdi@eEdo@}Crk@mLx_DcA~Xi_@liK[|Io`@lkL{Bb`Am@~l@Irj@`@nx@lA|s@rB~o@jE|v@|Edu@lg@lrGzF~|@tDp~@rAti@nAtbAFdq@{CjeJOjf@cBjbFqBfgGoAneAkAnp@sBvu@AJoDtw@gEfr@mEnl@{Fti@}Gpl@eHxg@wM~y@wK|k@mRv|@}Ur`AadB|iGcW~aAoM~k@_Jtd@wHvc@cNj`AwJp|@eExc@sE|l@aEjy@}B|q@qAbr@a@bz@Tn}@jAvk@dAl`@hCjr@fCte@jG`z@tFpl@tp@hnGhB|P`d@xkEbJniAfFnx@zCln@|Bln@lBreAt@tt@Ch}@eAhlAgBvu@cCju@mDfs@mFxy@_Hzx@eInv@{Fdf@yHjj@eH~a@uq@x`E{mCpuOoQfhAsIbs@kGfq@gErt@{Bnu@aAv`AXhk@dAxm@tBfn@`D|h@~F|r@rGxi@tFl_@fFzZnKdj@`Odn@rPrk@lPhf@nNz]tSzc@`KlSnLvSjXra@nVr]rc@hl@leAbuAnYbb@pSj^|Rv_@`U`h@bRrg@xJ~ZnJx[jMrf@xKdh@hNzx@fJfs@pEzd@~Ett@xCbv@|Axv@H`m@o@dn@gBps@}ObiDuNl{Cex@vxPqD`|@y@ha@Mh`@Epm@h@vk@`Btr@vBbi@jCre@bDlb@|E`i@xK|{@bG`a@fHdb@rJje@jJla@hKpa@dOlg@`Pbf@jWfp@`Qn`@nQr^nWhe@`h@t{@pk@veAjZho@`Tbg@vPxc@rQ~l@vTrw@xObo@nK`g@xW`|AfdAftGhyB~fNvLzu@lw@v`F~_AhaGtb@|tCtZldCjJ|~@pIn_Ady@hnLhi@txH~TvoD~F~bArDny@ThF~Alo@x@pt@d@`jBrAd{@nBhv@|Crj@dEbj@lHhs@lJbr@zFr^v^z}Bv@~E~Nv~@`dB`wKrXdkB|BtOdFd`@|Fzc@|KhfAfF`k@lE`k@xDjk@dDbl@|FrqAvBh{@nAzx@r@`y@Nrw@g@jy@w@nv@cHn_DaB|o@{Bxv@{CheAi\\jkMkQ~zGw@zZyGreCiG~dBuGhqAiNztBsHp`AkZzoDeL`yAuFbw@{F~}@aDdo@qDdw@wBnm@gBlk@eBjv@y@de@k@fk@g@jv@[x|@?hg@|CxrMEhaAi@zm@{@dk@wAne@{Cpq@cE~n@mIj`AoK~}@iM~z@oEzWig@voCqKfp@yMr`AuKxfA}Cv_@qB`Z}Bt_@yCpx@mB`s@k@hp@Cnt@^tk@vA`q@pDdlA|S`nF|`@bcKrI`uBvDvv@bItwAxHbhAxHvbAnNh}AriAlfLfG`m@dEra@|cBjwPpcB`sPx@|I`_@lxDhNn`B`Kf{AfHhlAvFvlApDh_AbDhbA`DfpAjClhBp@r{@Tvp@Lfp@K`bAi@xgAeAtbAmKjhGsBhuAm@~`AKx~@V`qAt@fy@LlL`@t_@`Bpx@@X|Bt|@|Ft{A~Dbx@~D~s@rHhgAzGnz@lKlgArKtcAlMleA~PzmApRrlAnTvnA`Rp`A|TvcA`_@`_B~{AdmGnc@jtBzSvhA|RvkAxUh`BxgBpfN|yAvgLpuC~~TrPrkAtKnt@tKvp@jWlwArLfm@zNpq@~Z`qAfVn_A~`@hvA`xCb~J~h@|lBfc@feBvTp}@lb@flBnl@|vCbf@`qCbVhzApX|oBlNpgAxYbfCxQb_Bb\\`oCdTbzAnU|vAjRvdAdXdpAdb@dgBx|Bx`J~pBvbItHv\\la@`iBzN`s@rNjr@zh@zzCnVt{AvTj|A|V|nBX|B|T~nBvMnrA|LrtAbLrvAfM~jBrJjdBvB`c@hA|UlFzoA|DjiA`GdzBxBtoAz@|v@jB~dCHbeAGbhA}Ar~DgYh~YIjPaAv|AMx_Bf@ffAvAbcAjBp_AjD|gApCpv@pGtnAbGd`A~Lb~AxJlbAjKnbAhgA`tJj@`FnJb|@hIb}@lLxqAhMz{A`P~`CxZjhFrNtjBvGhw@`Hfs@`hA~|JrSl`ChN|}BvIflBrb@tnLpFvzAfI`kBdP`uCp@~J|JbzAbGt|@dn@|wH~O|gC|FtfAvDb~@rBdk@jAbd@fA`a@`Avb@fAbx@tAv}AXngAWrfAeBvcCsC~tAmHzwB}Dx{@sNrcCiIdhAu|@d~JmTbnCyLxeB}LriCiUdvGuVztGkItzAiHxcAkOpgBeR|fBiNlhAsTl`BeS`zA_[paCoVjwB_QplBwMpjBeJxdBsHdlB{DniBgCdiB}Ep}JiDxoC{BnhAiA~ZuB|j@yBxg@gFffAaExr@wEnv@mIvrAoWvaEoHpjA}Bp^qKpuBiEf`AcD|y@{Eh}AeBf_AqAp_AcAxhAe@pgA?nqA@rJXvq@jA|mAdEx`CzCtiAnE`mA|FnmAnKzkBfNzwBpp@dqJtFfbA|GzsAzGliBjD`iBbBt}ATv|Ae@x|A?t@}ClzBsFlnBgMpeDkSzhFkIfsC{C~sB}@ndB@vfAx@jmAzApcAlDp{AvXluIbFpjBzA|vAUpbBaAzo@}Afn@sFxxAeJxsAuK|kAaOfmAgVx|AcL~k@}L|k@wLzh@_Uj{@}U~v@cm@hkBgD|Jge@jzA{Rps@}Obp@{Mtm@_Pdy@yNj|@qMz_AyKfaA}Hf{@uGlbAeG`oAkFfwAwL|oDoHz}AsIr}AmIfiAiL|rAoLhjAaKb~@iEn[gJdr@_\\`uBeKpk@aGx[iGv\\qnBplK}p@prD}SdoAsShoAmbAjqHg[xoBoW~zAw[v}A}UtcAoV~bAcW~}@mW||@uVzu@i`@tjAkLxZqPvb@wSbi@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 60 miles.","announcement":"Continue for 60 miles.","distanceAlongGeometry":96551.516},{"ssmlAnnouncement":"In 2 miles, Take the exit toward Paris.","announcement":"In 2 miles, Take the exit toward Paris.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take the exit toward Paris.","announcement":"In a half mile, Take the exit toward Paris.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the exit toward Paris, Orléans.","announcement":"Take the exit toward Paris, Orléans.","distanceAlongGeometry":195.556}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.292913,49.051823],"geometry_index":11241,"admin_index":8,"weight":6.973,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.762,"bearings":[127,308,321],"out":2,"in":0,"turn_duration":0.018,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,313],"duration":6.758,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":6.082,"geometry_index":11244,"location":[4.291514,49.052704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,335],"duration":12.453,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":11.207,"geometry_index":11250,"location":[4.290454,49.053542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,257],"duration":2.699,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":2.43,"geometry_index":11263,"location":[4.288431,49.054656]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,240],"duration":6.375,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":5.738,"geometry_index":11265,"location":[4.287875,49.054549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":5.887,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":5.297,"geometry_index":11268,"location":[4.286623,49.054032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":0.07,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":0.066,"geometry_index":11269,"location":[4.285428,49.053532]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,238],"duration":18.801,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":16.922,"geometry_index":11270,"location":[4.285415,49.053527]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.283119,49.050206],"geometry_index":11287,"admin_index":8,"weight":22.957,"is_urban":false,"turn_weight":15.5,"duration":8.297,"bearings":[1,15,192],"out":2,"in":0,"turn_duration":0.014,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"location":[4.282664,49.0481],"geometry_index":11291,"admin_index":8,"weight":11.191,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"turn_weight":2,"duration":10.211,"bearings":[7,189],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":41.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.418,"geometry_index":11297,"location":[4.281785,49.045361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":24.531,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":21.445,"geometry_index":11318,"location":[4.283148,49.032024]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,335],"duration":76.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":67.047,"geometry_index":11326,"location":[4.288024,49.024748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.863,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.625,"geometry_index":11353,"location":[4.298046,49.001288]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.398,"geometry_index":11354,"location":[4.297868,49.000701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":22.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.652,"geometry_index":11355,"location":[4.297731,49.000243]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":3.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.906,"geometry_index":11358,"location":[4.295905,48.993792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":13.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.207,"geometry_index":11359,"location":[4.295661,48.992868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.336,"geometry_index":11364,"location":[4.294643,48.988997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":12.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.078,"geometry_index":11365,"location":[4.29461,48.988895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.195,"geometry_index":11373,"location":[4.292843,48.985502]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":10.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.609,"geometry_index":11374,"location":[4.292801,48.985442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":3.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.703,"geometry_index":11378,"location":[4.29057,48.982721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":28.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.863,"geometry_index":11379,"location":[4.289919,48.981977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":3.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.727,"geometry_index":11391,"location":[4.28478,48.974405]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.284452,48.97357],"geometry_index":11393,"admin_index":8,"weight":10.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.094,"bearings":[14,192,199],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.283781,48.97011],"geometry_index":11398,"admin_index":8,"weight":7.797,"is_urban":false,"turn_weight":0.5,"duration":8.113,"bearings":[2,181,356],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.367,"geometry_index":11401,"location":[4.283893,48.967791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.824,"geometry_index":11402,"location":[4.283911,48.967675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":48.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":43.5,"geometry_index":11403,"location":[4.283954,48.967412]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.789,"geometry_index":11414,"location":[4.289294,48.954027]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,350],"duration":2.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.887,"geometry_index":11415,"location":[4.289358,48.953776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.395,"geometry_index":11416,"location":[4.28945,48.95318]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.289469,48.953054],"geometry_index":11417,"admin_index":8,"weight":14.457,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.531,"bearings":[174,177,354],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.289665,48.948241],"geometry_index":11421,"admin_index":8,"weight":9.891,"is_urban":false,"turn_weight":1,"duration":10.168,"bearings":[3,185,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189],"duration":118.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":103.984,"geometry_index":11424,"location":[4.289279,48.945978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":38.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.461,"geometry_index":11437,"location":[4.283173,48.919702]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.344,"geometry_index":11440,"location":[4.283599,48.91112]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,186,356],"duration":13.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.641,"geometry_index":11441,"location":[4.283659,48.910518]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.284263,48.906719],"geometry_index":11443,"admin_index":8,"weight":7.922,"is_urban":false,"turn_weight":0.5,"duration":8.254,"bearings":[173,332,353],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":86.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":75.68,"geometry_index":11444,"location":[4.28474,48.904334]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,185],"duration":53.73,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":47.008,"geometry_index":11457,"location":[4.290003,48.879412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":19.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.961,"geometry_index":11464,"location":[4.286158,48.863943]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":1.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.727,"geometry_index":11470,"location":[4.285321,48.858318]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,179],"duration":21.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.035,"geometry_index":11472,"location":[4.285313,48.85775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":70.348,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":61.547,"geometry_index":11476,"location":[4.285948,48.851415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":59.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":52.328,"geometry_index":11484,"location":[4.288714,48.830961]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,193],"duration":1.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.645,"geometry_index":11493,"location":[4.288666,48.813701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":142.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":124.715,"geometry_index":11494,"location":[4.288479,48.813173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.68,"geometry_index":11518,"location":[4.254851,48.772823]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,218],"duration":28.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.039,"geometry_index":11519,"location":[4.254653,48.772645]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":2.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.629,"geometry_index":11523,"location":[4.24619,48.766438]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225,232],"duration":11.957,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.754,"geometry_index":11524,"location":[4.245274,48.765838]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.241605,48.763372],"geometry_index":11528,"admin_index":8,"weight":7.121,"is_urban":false,"turn_weight":0.5,"duration":7.375,"bearings":[27,43,223],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,219],"duration":83.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":74.77,"geometry_index":11531,"location":[4.239473,48.761778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.25,"geometry_index":11549,"location":[4.227523,48.739463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":22.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.484,"geometry_index":11550,"location":[4.227505,48.739382]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.027,"geometry_index":11556,"location":[4.225281,48.73303]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[19,201,207],"duration":14.566,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.102,"geometry_index":11557,"location":[4.224964,48.732418]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.222481,48.72858],"geometry_index":11561,"admin_index":8,"weight":7.324,"is_urban":false,"turn_weight":0.5,"duration":7.59,"bearings":[8,25,205],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":8.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.227,"geometry_index":11562,"location":[4.221134,48.726633]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.684,"geometry_index":11563,"location":[4.219699,48.724577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,203],"duration":41.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.25,"geometry_index":11564,"location":[4.219564,48.724383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":38.402,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.582,"geometry_index":11573,"location":[4.21252,48.711781]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.773,"geometry_index":11584,"location":[4.20198,48.701538]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,224],"duration":101.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":88.66,"geometry_index":11585,"location":[4.201714,48.701351]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.41,"geometry_index":11602,"location":[4.171232,48.675991]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,193],"duration":12.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.863,"geometry_index":11603,"location":[4.171179,48.67586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.754,"geometry_index":11607,"location":[4.170233,48.672328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":109.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":95.449,"geometry_index":11608,"location":[4.170198,48.672088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.895,"geometry_index":11630,"location":[4.178487,48.641138]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[169,173,349],"duration":35.852,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":31.363,"geometry_index":11631,"location":[4.178569,48.64085]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.180854,48.630593],"geometry_index":11636,"admin_index":8,"weight":49.879,"is_urban":false,"turn_weight":1,"duration":55.871,"bearings":[174,345,353],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":63.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":55.75,"geometry_index":11647,"location":[4.181355,48.61449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.844,"geometry_index":11658,"location":[4.180172,48.596135]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":85.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":74.438,"geometry_index":11659,"location":[4.180234,48.595863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.652,"geometry_index":11670,"location":[4.192069,48.569419]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":82.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":71.859,"geometry_index":11671,"location":[4.192158,48.569207]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.621,"geometry_index":11685,"location":[4.189607,48.545792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":1.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.359,"geometry_index":11686,"location":[4.189505,48.545594]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":3.887,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.492,"geometry_index":11687,"location":[4.189278,48.545172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":2.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.543,"geometry_index":11688,"location":[4.188689,48.54412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":17.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.172,"geometry_index":11689,"location":[4.188268,48.543353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":2.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.859,"geometry_index":11693,"location":[4.185665,48.538395]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198],"duration":10.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.414,"geometry_index":11694,"location":[4.185382,48.537836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":19.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.734,"geometry_index":11696,"location":[4.183979,48.534956]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.094,"geometry_index":11699,"location":[4.181472,48.529496]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196,207],"duration":13.137,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.816,"geometry_index":11700,"location":[4.181186,48.528854]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.179642,48.525193],"geometry_index":11701,"admin_index":8,"weight":7.754,"is_urban":false,"turn_weight":1,"duration":7.512,"bearings":[0,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":99.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":87.133,"geometry_index":11702,"location":[4.17865,48.522848]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":119.277,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":104.363,"geometry_index":11724,"location":[4.164918,48.49233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":98.18,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":85.898,"geometry_index":11750,"location":[4.157835,48.454237]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,201],"duration":3.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.738,"geometry_index":11765,"location":[4.148469,48.427064]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,198],"duration":4.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.652,"geometry_index":11767,"location":[4.147992,48.426221]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,195],"duration":30.73,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.871,"geometry_index":11768,"location":[4.147457,48.425098]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.367,"geometry_index":11775,"location":[4.145724,48.416555]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[176,183,359],"duration":9.699,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":8.707,"geometry_index":11776,"location":[4.145731,48.416119]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.43,"geometry_index":11780,"location":[4.146112,48.413428]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":4.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.484,"geometry_index":11782,"location":[4.146277,48.412678]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.146671,48.411307],"geometry_index":11784,"admin_index":8,"weight":6.84,"is_urban":false,"turn_weight":0.5,"duration":7.051,"bearings":[169,327,349],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":7.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.438,"geometry_index":11786,"location":[4.1473,48.409348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":85.27,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":74.605,"geometry_index":11787,"location":[4.147969,48.407305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":2.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.074,"geometry_index":11789,"location":[4.155724,48.383607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,348],"duration":132.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":115.836,"geometry_index":11790,"location":[4.155944,48.382931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.789,"geometry_index":11810,"location":[4.165405,48.345542]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":25.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":21.977,"geometry_index":11811,"location":[4.165445,48.345282]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.891,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.773,"geometry_index":11816,"location":[4.166756,48.337177]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,177,354],"duration":31.605,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":27.648,"geometry_index":11817,"location":[4.166795,48.336928]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.166897,48.328114],"geometry_index":11824,"admin_index":8,"weight":57.969,"is_urban":false,"turn_weight":1,"duration":63.305,"bearings":[5,186,358],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,353],"duration":55.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":50.375,"geometry_index":11836,"location":[4.164338,48.310123]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":0.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.34,"geometry_index":11846,"location":[4.16601,48.294214]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186,203],"duration":4.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.262,"geometry_index":11847,"location":[4.165993,48.294111]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":11.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.488,"geometry_index":11849,"location":[4.165774,48.29277]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.165218,48.28948],"geometry_index":11851,"admin_index":8,"weight":6.527,"is_urban":false,"turn_weight":0.5,"duration":6.707,"bearings":[1,6,186],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,186],"duration":5.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.988,"geometry_index":11853,"location":[4.164929,48.28757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":37.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.863,"geometry_index":11854,"location":[4.164676,48.285986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,358],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.988,"geometry_index":11862,"location":[4.16402,48.275218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,359],"duration":11.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.621,"geometry_index":11863,"location":[4.164031,48.274895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":2.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.957,"geometry_index":11864,"location":[4.164225,48.271511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":34.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":30.047,"geometry_index":11865,"location":[4.16427,48.270882]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.875,"geometry_index":11869,"location":[4.165361,48.261055]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,353],"duration":66.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":58.438,"geometry_index":11870,"location":[4.165418,48.260766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":33.715,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":30.324,"geometry_index":11882,"location":[4.170849,48.24181]},{"bearings":[152,332],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"geometry_index":11888,"location":[4.176587,48.233038]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Orléans"}],"type":"off ramp","modifier":"right","text":"Paris / Orléans"},"distanceAlongGeometry":96581.516}],"destinations":"A 26: St Gibrien, Épernay, Troyes, Orléans","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 26 exit toward St Gibrien/Épernay/Troyes/Orléans.","modifier":"slight right","bearing_after":321,"bearing_before":307,"location":[4.292913,49.051823]},"speedLimitSign":"vienna","name":"Autoroute des Anglais","weight_typical":2643.273,"duration_typical":2972.121,"duration":2972.121,"distance":96581.516,"driving_side":"right","weight":2643.285,"mode":"driving","ref":"A 26; E 17","geometry":"}i{p|Aar_eGiLtO_OxZwX|i@mNtXqDtGkExF{FzGiHnGyFtEwU~NoHvEiCnBqDhD}BxCyCnEaDfHkDfKcCbMqAvJs@dKUtJThKpAxPbC|O|CnLfLn_@bMf_@f^tiAHXfHnUxDpJxEvJdFdJlHvJ`IpHtGzFlIzF~I`FdLtE~HdChIzBvLdDfb@`JlNfDxVvFbFs@nJ|BpKvBjOvBdzA~OfPhCzS`E~ZzHtk@~NxWfGpb@lIv`@|GrWvD`p@xHvy@nHbo@`D~c@jAfo@p@tw@a@|Z{@v_@{Apa@uBHA`]qCfb@iEja@_Flb@kG~_@uG`w@_QxfAoYlj@aRhi@cSfl@qV|kAgl@h~@mi@he@sY|v@ag@zq@ud@v{@yj@j~@il@vDaCzbAim@j}@ug@j_Akh@v}@ag@~{@ug@`mMc{HbXsNh[oOb`@{Pl\\qM|`@sMnTiGnUaGhm@gMhl@oIbp@_Hro@qDv`@aAjc@GdY^|]|@|ZvBbXrBx[|Dhv@`Mh_@xHtc@bJr[pGphAvShfHbtAha@fGvx@fNtaAxNz{@|Mdp@|Kfd@lI|ZnHjE`AxT|Fb\\zJp\\pLx]`Nj\\hOx]vQzRlKtSnMvBrAjQ|Kh\\|T|b@n\\luA`jAnm@tg@j`A~x@j^dZdc@z[vOhLte@j[bh@~[b_@jTl^bSbe@bV|~@pb@vn@tUj]pLf[dJ|VhHb^xHxe@`Jzw@zJbo@nEhh@tAhdA^n^{@bk@cEfFc@lOuAhQ}A|}AcU|bA}TjhA_[lwBqv@t{@ub@xfB}w@nnAod@b~Agd@zrA}Xpe@{HtN_Cfd@wDzFe@lvAaMxvAqBvdARxv@vCnbAxGtt@bJfSdChO~BraBtZhdBde@zt@dWxwFv~Ab`FflArgDbm@|qDfb@hlCjRtxBvGdCH|iClDnoCUrh@GppHuFd|DuQrd@wBvtBmOtvBiT`tCy\\~sF}o@zfCo]~tBm`@nbCyi@pvEqkA`bCak@li@yKj}@_NtgAwLniBuMvuAcCh`Bs@poBjHvx@jGlkChZrxCnb@hyDbl@zrCph@rqDnu@deB|ZzfAtP`~AjPtcAfHfm@xBro@~A`Td@vCBv]Jbq@Y|rBcEzmEc\\~UsB|jCcUnfEi_@~qDoXjmDeYxyCiV~vAqLzxDkRz{CoIfyDwIdnEiMj`G{QfbBqBzsAfBpfAxE`gAjLdpAzT~QdD~_@tJbkCrt@niA~d@baB|y@v@`@xrAn{@~lBjzAjqAvnAhjBxqBdcBnjB`xBb_CbiBvkBziB|iBzsAttAbmAxkAhoBvcBzoBf|A~aBtkAllCtgBxtBpvAdwBbwAxeCv`BvrC|pBnaCxqB|lBhoBbJjKhpBrdCviAhaBp~AthChgBh~Cnd@fx@t^jn@xgArlBfa@tq@jNrT`a@tn@dq@r`AjN|RzSnXbc@li@f_BrhBxsAtpAxzAtlArmArz@fwAd{@djA~j@|iApf@x_Bnj@jgApYv_A`TpEbAbw@lNnwAnSl{Cx`@baCn]bkA`P`Db@jzAnSt_AnRl|Aj^doAda@`f@xQf[rMfe@xR~l@zYt{@zd@zx@fe@hjAds@txBdsAn_CtxAbKlG~dBbbAhcBt{@hhAfh@vdAxd@`tBtz@dgD~uArhAvd@jfAth@~JfFrPrIjy@~f@jv@tg@jeAry@`z@ls@xf@ff@t{@v`Anq@bx@dfAxtAfeA~xA|uAluBtJrO`zA~bCh`C`hEnyI`uOpC`FptF~_K`t@vjA|eAxwAlD|D|dAhoA~gAthAjoAjhAjeAzv@jdAlp@xeArk@~z@h`@du@vYnyA`e@dGhBt~@tTv_AjQ`m@tIfm@jG~MdAdj@zDhi@pBlw@~@p`@b@hoAsBvmAkHhsA}NnoAoT~pAwZjdBsi@prBer@zaCsz@~aAe]n`Beg@||Aka@|`Bq^dxDgm@`lCu]xsBi[fcBwZ`_B_ZlHuA~PcDflCgg@flBuZ~sB{VziCeYteCyW~wAmMbE_@l{BaTbdCaVpkBmNb`B{Drz@G~qAbDnyCzSv}B`SdWvBjlBbPjmCnY~eDz]roCfWzvApIhp@tBbtA|Bv{A}AvhBcHdeBcPx{@yL~O{BpjC_h@hg@sNdeAcZlqDesAf_Cy~@bxFmzBz}FsvBdtCucAniEgzA`EwAfiFeeBfLqDp{Ayc@`[qHf`Bc`@~eB_Yn{AqMrsBaIfxA?p`BfE`iAzHr|BdXhyB|d@j{Bbr@~cBvq@ffElkBjKjEjYdMv`Axc@|n@hYt^|Ot}Atq@xiBtv@tkAjf@|a@tPl`Al_@pqBfv@xjAlc@~oCraAlwBrt@bg@zPxcFn_BpqC~|@nm@dSdv@nXhx@|Zb_B|q@|jB|}@`vA~v@rcEnlCf[zUr~B~aBpeB|mApn@fb@lf@pYnf@rX~bAdg@xtAbj@~eAd]zoAf[|mA~SbiAfNplAfIvyA`ErwFiHle@m@vlBkDndCeC~}BgBvrBm@rtCwA`bCqAvbB?lz@vAzfA`Grx@dH|bAhNl|@xPdsAp\\lfAp]`rChfAfcCfaAdcAb_@frAxc@xoAx\\vs@`O|}Bb^|qDde@PB|xBpYhH`Aj_BfTdjBrRvv@xEtlAlGf`E|KxbBlFncAtEzp@~E|z@dKh_A`OhnAzWdkAp]xlAxd@jfBdy@|gNnzHx[`PzVvKdeAl`@toAp`@n~@rTf~@tQjsA~QliAnI|uAbEvoAe@fZMlI_@d`@}Arq@{D|hA_MxMyA`_@oFj~@}PhUuEzYaGp~Ag^t~Byh@fcg@scLzcEa_Afi@wLpxByc@hpBmYdfAwKjnBgNd{CmRvdA}JhyA_RddCmc@zmBme@d|Byp@`y@kUruD{fAr`Da}@bpAmZd~@yQ`t@_MltA_Rtz@{IrhJiy@l~BgSfOoAtAMnpBqQvdCqTjnCsVfpBwPpNmA|}AgL|fA{E~kA_BziAm@vq@`A|dBrElnAnHn`AtHv~@|JrxAjSnpEv{@~hCjg@xaAbP|cBdPhcAlFz`Bl@|}@{Av~@mEl`BaPx|@yN~yAgZnaFybAlz@uKtiAcKbbAaEf}AyAbfAxAjpAbI~eDbZlE`@n}@dIhTnBlw@hHdtClXrqAlLvc@rC~aBxN|x@hH|hCtTrp@vEvp@~Ct}@pCb}@bAbcCm@xwB_FdSUnrEcKhf@yA|lCsFx_E_PpoCeSzeCkV`QqBb@GrsC}^hvD}g@|kDee@zyBsYtpBg\\raAkSjkAmXhkAa[f}A}d@~yBqx@rD{Az{@m^plBw|@|zAow@tfBgeAhpAoy@zcBeoAzh@i`@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 43 miles.","announcement":"Continue for 43 miles.","distanceAlongGeometry":69435.289},{"ssmlAnnouncement":"In a quarter mile, Take the A 19 exit.","announcement":"In a quarter mile, Take the A 19 exit.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 19, E 511 exit toward Sens, Provins.","announcement":"Take the A 19, E 511 exit toward Sens, Provins.","distanceAlongGeometry":155.556}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[151,165,332],"duration":3.473,"turn_duration":0.017,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":3.109,"geometry_index":11889,"location":[4.17712,48.232368]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,338],"duration":23.09,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":0,"weight":20.777,"geometry_index":11894,"location":[4.177462,48.231768]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.17394,48.228901],"geometry_index":11921,"admin_index":8,"weight":32.582,"is_urban":false,"turn_weight":26.75,"duration":21.496,"bearings":[65,77,258],"out":2,"in":0,"turn_duration":15.017,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,250],"duration":28.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.043,"geometry_index":11925,"location":[4.170902,48.228343]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234,315],"duration":9.949,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.949,"geometry_index":11938,"location":[4.158917,48.223493]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,243],"duration":7.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.703,"geometry_index":11944,"location":[4.154855,48.221738]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,251],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.797,"geometry_index":11949,"location":[4.151532,48.22077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,252],"duration":8.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.652,"geometry_index":11950,"location":[4.15117,48.220685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,260],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.855,"geometry_index":11957,"location":[4.147594,48.220081]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,263],"duration":7.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.516,"geometry_index":11958,"location":[4.14721,48.220035]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,268],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.5,"geometry_index":11963,"location":[4.14416,48.219845]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":5.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.773,"geometry_index":11964,"location":[4.14393,48.219839]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,272],"duration":1.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.941,"geometry_index":11967,"location":[4.141747,48.219836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,272],"duration":20.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.105,"geometry_index":11968,"location":[4.14131,48.219844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,283],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.574,"geometry_index":11974,"location":[4.132578,48.220625]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,284],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.574,"geometry_index":11975,"location":[4.132332,48.220664]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.131211,48.220843],"geometry_index":11977,"admin_index":8,"weight":1.957,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.121,"bearings":[103,284,293],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":11.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.633,"geometry_index":11979,"location":[4.130368,48.220978]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.125799,48.221697],"geometry_index":11982,"admin_index":8,"weight":7.625,"is_urban":false,"turn_weight":0.5,"duration":7.707,"bearings":[90,103,283],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,279],"duration":0.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.117,"geometry_index":11986,"location":[4.122558,48.222147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":0.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.324,"geometry_index":11987,"location":[4.122504,48.222153]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,279],"duration":65.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":60.836,"geometry_index":11988,"location":[4.122361,48.222169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,279],"duration":3.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.387,"geometry_index":12001,"location":[4.094168,48.22343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,276],"duration":27.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":24.426,"geometry_index":12002,"location":[4.092607,48.223592]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,279],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.148,"geometry_index":12008,"location":[4.080957,48.224176]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":47.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":42.445,"geometry_index":12009,"location":[4.080429,48.224231]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,299],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.547,"geometry_index":12026,"location":[4.059263,48.229891]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[119,299,303],"duration":1.23,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":12028,"location":[4.058535,48.230163]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,299],"duration":22.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.609,"geometry_index":12029,"location":[4.058067,48.230337]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,286],"duration":6.609,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.934,"geometry_index":12044,"location":[4.048746,48.233061]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,281],"duration":84.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":73.953,"geometry_index":12047,"location":[4.045631,48.233584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":72.371,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":63.32,"geometry_index":12069,"location":[4.005802,48.239631]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,320],"duration":93.273,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":81.609,"geometry_index":12087,"location":[3.981266,48.253167]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":2.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.934,"geometry_index":12112,"location":[3.951344,48.271324]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[100,278,289],"duration":19.062,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.66,"geometry_index":12113,"location":[3.950395,48.27144]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.942284,48.271565],"geometry_index":12120,"admin_index":8,"weight":8.566,"is_urban":false,"turn_weight":1,"duration":8.652,"bearings":[72,86,266],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,270],"duration":14.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.465,"geometry_index":12122,"location":[3.938502,48.271417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,286],"duration":131.887,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":115.391,"geometry_index":12130,"location":[3.932312,48.271898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,265],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.688,"geometry_index":12153,"location":[3.875113,48.272895]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[85,264,270],"duration":20.723,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.641,"geometry_index":12154,"location":[3.874297,48.272846]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.864222,48.272755],"geometry_index":12160,"admin_index":8,"weight":7.844,"is_urban":false,"turn_weight":1,"duration":7.613,"bearings":[89,95,277],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,282],"duration":11.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.473,"geometry_index":12163,"location":[3.860957,48.273075]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,284],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.137,"geometry_index":12165,"location":[3.856023,48.273824]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,282],"duration":71.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":64.246,"geometry_index":12166,"location":[3.855492,48.273912]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,284],"duration":21.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.711,"geometry_index":12179,"location":[3.824378,48.273995]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[116,295],"duration":1.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.578,"geometry_index":12183,"location":[3.815339,48.2764]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,292],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.301,"geometry_index":12184,"location":[3.814628,48.276619]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,293],"duration":24.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.41,"geometry_index":12185,"location":[3.814493,48.276656]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,266],"duration":12.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.934,"geometry_index":12195,"location":[3.803572,48.277957]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,251],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.227,"geometry_index":12200,"location":[3.798194,48.277363]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,253],"duration":179.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":161.523,"geometry_index":12201,"location":[3.798094,48.27734]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,281],"duration":1.57,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.398,"geometry_index":12227,"location":[3.722618,48.269173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.539,"geometry_index":12228,"location":[3.72195,48.26926]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,279],"duration":56.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":49.613,"geometry_index":12229,"location":[3.72167,48.269296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,256],"duration":185.309,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":162.129,"geometry_index":12238,"location":[3.697205,48.268399]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,231],"duration":31.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.164,"geometry_index":12278,"location":[3.617484,48.245648]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.324,"geometry_index":12288,"location":[3.603912,48.241317]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[78,260,265],"duration":11.418,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.27,"geometry_index":12289,"location":[3.603734,48.241292]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.598735,48.240826],"geometry_index":12292,"admin_index":9,"weight":8.051,"is_urban":false,"turn_weight":1,"duration":7.844,"bearings":[72,84,265],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,269],"duration":13.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12.469,"geometry_index":12298,"location":[3.595254,48.240694]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,276],"duration":57.031,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":51.324,"geometry_index":12305,"location":[3.589088,48.240833]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.504,"geometry_index":12322,"location":[3.564252,48.244403]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[101,280,284],"duration":33.344,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":29.992,"geometry_index":12323,"location":[3.56303,48.244564]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.548604,48.246076],"geometry_index":12335,"admin_index":9,"weight":7.941,"is_urban":false,"turn_weight":1,"duration":7.512,"bearings":[96,102,282],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":43.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":39.578,"geometry_index":12339,"location":[3.545045,48.246642]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,251],"duration":217.625,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":195.844,"geometry_index":12367,"location":[3.524024,48.247112]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,273],"duration":57.523,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":51.766,"geometry_index":12475,"location":[3.420415,48.235025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.773,"geometry_index":12488,"location":[3.39246,48.234749]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,267],"duration":27.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":25.023,"geometry_index":12489,"location":[3.392039,48.234729]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":4.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.633,"geometry_index":12508,"location":[3.378813,48.236202]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,299],"duration":5.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.016,"geometry_index":12512,"location":[3.376997,48.236791]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.035,"geometry_index":12516,"location":[3.374592,48.237738]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":5.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.215,"geometry_index":12517,"location":[3.37458,48.237743]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.023,"geometry_index":12519,"location":[3.37288,48.238453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":18.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":16.258,"geometry_index":12520,"location":[3.372868,48.238458]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,299],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.035,"geometry_index":12524,"location":[3.365201,48.241658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,300],"duration":5.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.215,"geometry_index":12525,"location":[3.36519,48.241662]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,299],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.035,"geometry_index":12527,"location":[3.363433,48.24231]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,297],"duration":38.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":34.02,"geometry_index":12528,"location":[3.363422,48.242314]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,295],"duration":27.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":24.949,"geometry_index":12532,"location":[3.351499,48.245945]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[135,317],"duration":1.504,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.348,"geometry_index":12542,"location":[3.340503,48.251056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,320],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.023,"geometry_index":12543,"location":[3.340009,48.251411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[140,318],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.746,"geometry_index":12544,"location":[3.340004,48.251415]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[138,315],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.023,"geometry_index":12546,"location":[3.339374,48.251881]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[135,318],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.945,"geometry_index":12547,"location":[3.339368,48.251885]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[138,319,335],"duration":12.062,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":10.848,"geometry_index":12548,"location":[3.338988,48.252167]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,315],"duration":8.742,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.848,"geometry_index":12550,"location":[3.33568,48.254718]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[130,309],"duration":18.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":16.676,"geometry_index":12554,"location":[3.332901,48.256438]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,292],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.559,"geometry_index":12560,"location":[3.325983,48.259138]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,290],"duration":31.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":28.68,"geometry_index":12561,"location":[3.325729,48.259207]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,292],"duration":17.129,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":15.41,"geometry_index":12576,"location":[3.312584,48.261829]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,297],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.027,"geometry_index":12581,"location":[3.306018,48.264064]},{"bearings":[117,301],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"geometry_index":12582,"location":[3.306015,48.264065]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Sens"},{"type":"text","text":"/"},{"type":"text","text":"Provins"}],"type":"off ramp","modifier":"right","text":"Sens / Provins"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 19"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E511","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 511"}],"type":"off ramp","modifier":"right","text":"A 19 / E 511"},"distanceAlongGeometry":69464.953}],"destinations":"Paris, Orléans, Auxerre, Sens, Troyes-Centre","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit toward Paris/Orléans/Auxerre/Sens.","modifier":"slight right","bearing_after":165,"bearing_before":152,"location":[4.17712,48.232368]},"speedLimitSign":"vienna","name":"","weight_typical":1877.566,"duration_typical":2083.668,"duration":2083.668,"distance":69464.953,"driving_side":"right","weight":1877.566,"mode":"driving","ref":"A 5; E 54; E 511","geometry":"_zz~zA_m}}F`Fe@`HkEtG_ErHgE`Bq@~CqAbGoB~FoAxFs@hH]|EAtEPdGl@~GjAjFxAbGxBdIlEpGtElEbEdGxGhE`GfDlF|EhJ`DvHjDxJbClIvBhK`BtJtDd]jC~WnEdh@xC`LzCf`@|Ix~@nIlt@pGjf@|PhhAnLbp@pOxu@rKfd@jNjl@~HpZnIxZnO~g@`Qni@hY`x@tZxx@pQpd@nbBzdEn[tz@zMx^nNza@nNlc@lNzd@zRdt@jGlW~L`j@|Lzl@~Kno@dJxl@hDrUdDrVvCxUxFxh@~Ebh@|Cb`@bCx\\|Bd^zA~VrBlh@pA|`@dAh_@dAdk@h@ve@JjMXtl@Bri@Wbo@OhZQjWoB~zAuE~aBmJtwB_Fz_AsRxoCmAjNsBlUqFrn@}Fpp@ObByWtyCiLvuAyEbk@aOvfB}A~UsCrb@oCdg@KjB_@|G_B|YqD|u@iB|a@wJlhDmBl{CTnaC|Ad~B~B`uEaAtyC{BtiBeI`tCoT|wEwTf{EcIp`BiEbvAcC~gAiAjfAiCbqDeE~vCgLneDmB~_@ARuLxqBiKtsAiKfjAO`BePx|AkRd{AkUb_BkY|cBuPj|@iP`y@wUteAc`@v}Aw[jmAkv@luC{n@x`CuEzPUx@iOtj@{If\\W~@yI`\\aTjw@iSvx@_Lhe@qPvu@iGb[iFnWqLzn@oG~^eQpfAaMr|@yI~p@iDjXUfBeNzpAgHxv@gG~w@{I`sA}Ev|@oDj|@{C|`A_A`^q@l_@sEn~B{IltEqIfpEmLlqDyR~kDaOdpBqLntAwUnvBkaAb_I_^vmCm@|D_XzgBcVxtAg^rjB_m@tmCiG`VeVv_AmXvbAsd@~{AkWxv@qZz}@k]``Aob@peAsg@|kAqh@bjAovAzrCe|Af|CwvAdsCcp@|qAyo@hqAeeAtnBky@btA_h@ru@yVr^]f@ej@hu@e}@vfAuaBxoBwrGzyHcuCnjD_iAruAcl@vw@gVd^}l@vaAyg@paAua@r}@ke@piAq]x`AyZfbAgW``AyQtu@aQtx@aRdaA{Mpz@gKfs@cHtl@mJv|@qJreA}B~^gFhz@mDly@{Bxt@wBtnAi@zaABh}@rBzyBxA|}@|FjsDh@~v@Adb@O|c@s@rk@q@p[kAhd@eBzf@oH~vAgJjkAmL|eAsMtdAaq@ppEgQj{AqNt~AsNvkBaIfuAiFliAsFtsBcCn`BY|zA`CreD|IpiDtTjqEdZhbGdIlpBvCrzBt@baDaDxjX^~iB~DziChDdjAlFdyB`B~q@jHv{B~CzmC`@f~B?ZkAjhBkFp_CyDneA{Df{@iGhhAeElj@sg@|gGoDd`@{IdkAoMlsBgKvrCiF~xD|@nqDnJxuDzh@b}P`CrvApAbuAo@~aB{EzxA{Dhz@}Fz{@sO``BgOjrAw]prBuuA|kGuLlk@iAlG{Gd_@}P|~@uM~aAwMxnA}GbjAmG|nAuDdiAcBttAE~~@h@t{@rAxu@zBnu@|GnsAhKxwAjHnt@l@fErKd{@bLlv@jS`oA`z@z_FrM~w@jLvu@rIfm@fI`n@nP~sApUltBxsAfaM~vHzyr@~Mn}AfKnzAzKnyBfDrfAdDp{AtAzzAJzqBu@zjAyEt_BmEr}AgJhpBwLvkBkO`kBylAhvNmDvh@gAnPeKrqByNdwEcB`oBv@jnB|ChrBpH~jBly@hfStHvuAxAlPnVzqCf]pqCvSpwA`AxGtWd|ArX~rAd^j{Aph@foBbl@~qB|r@voBp{B~iFbj@d~Azi@nbBpc@pbBd`@~kBx\\`vB|[||C`Q~uC`Hd}CBnhB}HhnHyAl`CzAf_CbKhtDzh@`~LvI`fBjX`mChRbqA`UxqAxXhsAr[`rA~_@frApb@noAvuAjxCd|@h_BrzArtBjeCvyChj@hv@`o@d`A~o@bnArm@vuAjXlp@dc@znAbc@dxApd@|qBtPj|@jQfeApW~pB|O|cBfJnpAp@bJ~HzrAhHtxAxHziCtBldA\\zRXbU`@|_@TzT`@hr@Px|@I`q@c@r`A_A|jAe@zd@y@|d@yAbw@{Apj@aBni@mBdh@yBbj@_Ctg@}Bnd@yCxh@qDxk@}Dbl@sDnf@sDdd@cEhf@soCn_[kGrt@iExf@kDpe@sBlZaIjkAaHvhAwBja@oBt`@oCtm@iGp}AkK|iC{KjpCyDh{@sGhlAcFnz@qGx`A_IhfAeFnp@aFfi@mIr_AuI`aAkK|jA}KxlAuH|s@uFjl@cFnj@oG~u@_Efa@eElj@eCd`@aDrk@kCvk@aC~u@cA~k@e@pk@Sxc@H`g@Rlb@t@`k@dAzm@`Bbl@vClu@fF~aAlFpu@nEtj@~D~b@vEzd@lFxc@vGtf@jFp^|F|^dGh^~G|_@pS`hA|SlhAdIte@fHnb@lGnb@bGzb@nEl]|Df]pDr\\Db@nD|^hD`a@|Cra@`Ct_@rBz]`Ddr@jBfl@bBps@p@`o@`@jj@V~n@TvtAf@jlDj@fnDFpk@Lrl@^ni@p@|h@jAzk@zAfk@|C|v@nDzr@pIbmAdEhe@xEre@fEp_@~E|_@`Fh^tFp_@|Lhw@vMjw@bYx`BpLbr@xK`p@tIhk@lJ~q@lKv~@rEdd@~Etj@lC~^|Bd]xBz`@hBh_@|Bhl@vAtk@zAh_AhD~wD`A`{@bBn|@~Ahl@zBvk@|B`f@vCrf@|D`j@fEng@pCf[dD`\\tQrbBlRtcBtIpy@~ItaAfDha@vCba@bFfv@dEdv@~FxqAhHncB|Dtu@zEhv@lHz_AlI~aAvF|j@nG~k@zoAl_LxEjd@bE|d@jJnkA`D`d@~Cdf@zCrg@|Bde@bDvv@~Brv@zBbbApJxjFxIdiFjB~gApApgAz@ziAZpfADbx@Kxu@m@|oAgBp_BoAz|@{PxeLy@nr@c@dq@c@fwAD~xAL|p@\\vq@j@zq@x@bq@fP~nJlPdnJfAtl@f@hY~@l|@Xd`@R~`@A|_@Gfa@k@tk@q@xa@eA`d@_Bje@sBzf@{Bnd@}Ehv@yFfu@gHru@iIxs@}Ijq@mLzv@cLxo@wFlYoFnXsLni@uL|f@_ApDyLtd@aPlj@_Rvm@iHlUIVqIlXy`@xoAIVuDnLazCxqJkb@vsA{BbIGTa[|gAmKzc@GT{j@x`Ccj@fiCcuAnkHyt@roDeMlm@_ZprAe]~qAmX~~@}d@ztAke@xmAge@pgA}Yvm@qi@vcAqe@nx@eUz]GHkDlFwV|^GJsPvVwtCb`EuHrLyf@|y@}Rz^yWrh@}Ufh@mMpYim@f`B{e@x|AaZvjAeUtdA{RhdAiCzNuLzw@}Grf@_Hxj@qF~g@wFri@uB~TwC|[eHrv@kRhsBeJf_AwAtNgOpsA{PbqAcRfnAwKzo@sNbx@u[b~Ag]dxAqX~cAqf@|bBADgJh[Of@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 18 miles.","announcement":"Continue for 18 miles.","distanceAlongGeometry":28593.639},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 19.","announcement":"In 2 miles, Keep right to take A 19.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 19.","announcement":"In a half mile, Keep right to take A 19.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 19 toward Orleans, Montargis.","announcement":"Keep right to take A 19 toward Orleans, Montargis.","distanceAlongGeometry":274.444}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[121,301,304],"duration":8.676,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":2,"weight":7.801,"geometry_index":12584,"location":[3.305542,48.264253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":1.328,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":1.195,"geometry_index":12587,"location":[3.303518,48.265189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":31.199,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":28.078,"geometry_index":12588,"location":[3.303218,48.265347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":3.258,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":2.934,"geometry_index":12614,"location":[3.295953,48.268295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":8.23,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":7.406,"geometry_index":12616,"location":[3.295103,48.268087]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,240],"duration":3.137,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":2.824,"geometry_index":12620,"location":[3.29297,48.267391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":24.812,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":22.328,"geometry_index":12622,"location":[3.292191,48.267066]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.290362,48.262971],"geometry_index":12650,"admin_index":9,"weight":29.172,"is_urban":false,"turn_weight":21,"duration":9.09,"bearings":[19,25,207],"out":2,"in":0,"turn_duration":0.013,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215],"duration":6.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.719,"geometry_index":12655,"location":[3.288376,48.260731]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,221],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.867,"geometry_index":12657,"location":[3.286719,48.25928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,223],"duration":9.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.184,"geometry_index":12658,"location":[3.28644,48.25907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.832,"geometry_index":12662,"location":[3.283566,48.257206]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":4.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.891,"geometry_index":12663,"location":[3.283271,48.257035]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":37.684,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":34.84,"geometry_index":12664,"location":[3.281829,48.256233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217],"duration":20.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":19.391,"geometry_index":12672,"location":[3.269405,48.248735]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":3.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.02,"geometry_index":12680,"location":[3.264102,48.243614]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.387,"geometry_index":12682,"location":[3.26321,48.242879]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222,232],"duration":9.949,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.445,"geometry_index":12683,"location":[3.262478,48.242309]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.259632,48.240379],"geometry_index":12687,"admin_index":9,"weight":7.086,"is_urban":false,"turn_weight":1,"duration":6.586,"bearings":[41,47,227],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":4.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.578,"geometry_index":12690,"location":[3.257471,48.239131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":13.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12.902,"geometry_index":12691,"location":[3.255882,48.238241]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,228],"duration":8.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.633,"geometry_index":12692,"location":[3.251405,48.235736]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,223],"duration":43.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":40.113,"geometry_index":12695,"location":[3.248492,48.233896]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":14.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":13.211,"geometry_index":12709,"location":[3.237925,48.221828]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,211],"duration":45.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":41.059,"geometry_index":12714,"location":[3.235255,48.217967]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234],"duration":57.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":50.344,"geometry_index":12725,"location":[3.221801,48.208406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":121.133,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":105.988,"geometry_index":12738,"location":[3.201074,48.19912]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[178,183,358],"duration":29.91,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":26.902,"geometry_index":12770,"location":[3.176612,48.170394]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.17546,48.162334],"geometry_index":12779,"admin_index":9,"weight":43.812,"is_urban":false,"turn_weight":1,"duration":47.578,"bearings":[14,195,358],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.469,"geometry_index":12796,"location":[3.166802,48.149798]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215,218],"duration":12.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.363,"geometry_index":12797,"location":[3.166397,48.149411]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.162842,48.146067],"geometry_index":12801,"admin_index":9,"weight":7.828,"is_urban":false,"turn_weight":1,"duration":7.605,"bearings":[27,35,214],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,212],"duration":2.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.316,"geometry_index":12805,"location":[3.16084,48.143995]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":132.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":118.906,"geometry_index":12807,"location":[3.160195,48.143275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,340],"duration":98.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":88.602,"geometry_index":12847,"location":[3.135979,48.105507]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":40.52,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":37.477,"geometry_index":12883,"location":[3.122563,48.076324]},{"bearings":[28,208],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"geometry_index":12907,"location":[3.110178,48.066158]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Orleans"},{"type":"text","text":"/"},{"type":"text","text":"Montargis"}],"type":"fork","modifier":"right","text":"Orleans / Montargis"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 19"}],"type":"fork","modifier":"right","text":"A 19"},"distanceAlongGeometry":28623.639},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Orleans"},{"type":"text","text":"/"},{"type":"text","text":"Montargis"}],"type":"fork","modifier":"right","text":"Orleans / Montargis"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 19"}],"type":"fork","modifier":"right","text":"A 19"},"distanceAlongGeometry":3218.688}],"destinations":"A 19, E 511: Sens, Provins, Orléans","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 19/E 511 exit toward Sens/Provins/Orléans.","modifier":"slight right","bearing_after":304,"bearing_before":301,"location":[3.305542,48.264253]},"speedLimitSign":"vienna","name":"","weight_typical":812.324,"duration_typical":875.07,"duration":875.07,"distance":28623.639,"driving_side":"right","weight":812.324,"mode":"driving","ref":"A 19; E 511","geometry":"yby`{AkcwhEud@dsAkInUmIxR{HvQov@`hBaF~K{F~L}FjKsFjJyHpLoJlMo_@nf@kLnOcGhJoDbHoDvHwCzHkD`LiC`M_BvJsAdL_AhMa@fKIvK?rHNpHXzGv@vKzA`OpD|XdEzYxEfYdKpi@bJbb@pH|YrIt[bHpVdJbXzGnRlF~MfEjJpEnInEtG|FlHxD~D|FrEdEdCnFdCtGhCfH|AdGn@~FR`GCbHo@dG{@nGqA`UkFtF{@bGi@nDUnGHdEZrEn@bF`AbFzA~d@bRtVxPx^nYt^~ZvWjV`[l[re@fh@`s@h}@bLlPva@ro@hYff@~\\~n@lXvj@tIlQbq@byAxoGvfN`j@tiA`Y~h@fZ~h@vZnf@t\\nf@hSpXtTnXlUvXjWbYdiAtiA~nAdlAjk@zk@pUfWhYv[xXx\\pW~[jTvYrb@vl@h^xi@d]ni@rc@xv@nUvc@dTda@bSja@tc@naArv@hbBp{CxvGhf@h`Ala@bv@fh@r|@dj@lz@n`@~i@~a@fj@rcAbmAp\\t^nc@|c@jhAdcAjn@df@np@de@xm@``@vk@z]~nEbeCxAx@fb@pUv|Ad{@lm@h^tXbQlg@l\\~a@xZpg@zb@hd@v`@pfAhgAphA|tAjg@`s@xj@~{@nt@poA`s@nrAn|@zfB`{@rjBf~@j{Bn|@x{B|w@d{BhOzc@hf@twAno@tsBb`Ar_D`aA|~Che@xwA~g@zxAbp@poB~l@|tA|i@nxAfH|Od~AhmDn~B~rEteBdvCfvAx}BdjBl{C~gAfgBzw@tqAb~@nzAbe@hs@d_@zi@z`@li@r[t_@bo@bq@v_@n^xUlRnXxSjn@jb@`n@t]d\\vNxf@hT`w@xVh`AlUbb@zGdz@`Jbd@dCfi@nAvaAi@lr@qDxk@eEbnBwNlbAqGnSc@tbBaC|i@d@fg@dA~s@tDbx@zGpr@jIpfArQj{@xQfZhIphAx[|i@|Qvi@~R~eAte@pp@jZby@hb@rh@bZlh@f[|f@z[zf@n]nu@vg@fs@jk@p^n[da@r^f{@`{@zc@he@`LrLdWhXzjBfrB@@lo@zr@rs@~u@bq@lq@bQlPbe@zb@bVjT`TpR|VvSbwEh}DxfF|tEtiGjuFffBnyAreBdwAt~@nz@zz@t{@xw@f}@ds@fz@`h@bq@xg@fr@rqA|fBfZ|_@z^vb@j_@f`@|_@t]v`@d\\~YbUpZjSn`@vUr`@nShvAxk@zd@zMbf@dL`dAbO||@vHle@xAxi@Zrq@aAne@kClk@iFfWoDtWqEjV}EbWoGhc@_M|GmB|h@kQdi@eTbZqMjp@qYj[iMj^}Nv`@uM`_@uKz^qJrb@qIj_@kEn^eCzc@cCjd@s@df@Wlh@bAbq@dCno@dFbo@xHdi@rKrm@fOfl@vQ~h@pUrd@dT`e@`Vpe@vWtr@zc@br@hf@pnFhxD||@`o@z}@`p@tz@zo@dy@rq@hh@jd@ph@je@zv@vq@fr@dt@vfBpjBzm@~t@vM~Olw@~`Afz@hiApw@dhAblBvuC~kBbxCxY``@xNfSvFrHdGxH~GpIfHpI`HnIfHfIfRjR`QjQvHpH~JrJdKrJxKxJxKdJbKhIbLxI~KjItFbE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 72 miles.","announcement":"Continue for 72 miles.","distanceAlongGeometry":116374.094},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 10.","announcement":"In 1 mile, Keep left to stay on A 10.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 10.","announcement":"In a half mile, Keep left to stay on A 10.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 10, E 05 toward Bordeaux, Tours.","announcement":"Keep left to stay on A 10, E 05 toward Bordeaux, Tours.","distanceAlongGeometry":220}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[3.11008,48.066035],"geometry_index":12908,"admin_index":9,"weight":15.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":16.715,"bearings":[28,206,219],"out":2,"in":0,"turn_duration":0.015,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":0.066,"turn_weight":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.066,"geometry_index":12921,"location":[3.106997,48.062745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":23.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":22.422,"geometry_index":12922,"location":[3.106973,48.062731]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.16,"geometry_index":12953,"location":[3.102396,48.057625]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,191],"duration":2.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.484,"geometry_index":12954,"location":[3.102384,48.057578]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,207],"duration":10.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.715,"geometry_index":12960,"location":[3.102095,48.056912]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":2.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.68,"geometry_index":12978,"location":[3.099498,48.055646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,253],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.402,"geometry_index":12980,"location":[3.09859,48.055532]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.098041,48.055423],"geometry_index":12981,"admin_index":9,"weight":2.582,"is_urban":false,"turn_weight":1,"duration":1.676,"bearings":[73,82,259],"out":2,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":3.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.09,"geometry_index":12983,"location":[3.097376,48.055335]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":9.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.359,"geometry_index":12986,"location":[3.096028,48.055131]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.091949,48.054497],"geometry_index":12989,"admin_index":9,"weight":5.539,"is_urban":false,"turn_weight":1,"duration":4.785,"bearings":[70,77,257],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":9.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.316,"geometry_index":12990,"location":[3.089939,48.054185]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":3.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.332,"geometry_index":12991,"location":[3.085798,48.053542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,256],"duration":6.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.934,"geometry_index":12994,"location":[3.0843,48.053307]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.081714,48.052741],"geometry_index":13008,"admin_index":10,"weight":5.617,"is_urban":false,"turn_weight":0.5,"duration":5.406,"bearings":[62,68,247],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.984,"geometry_index":13009,"location":[3.079514,48.052119]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.945,"geometry_index":13010,"location":[3.078659,48.05188]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":9.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.055,"geometry_index":13011,"location":[3.078258,48.051765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,240],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.344,"geometry_index":13024,"location":[3.074411,48.050597]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":38.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":36.785,"geometry_index":13025,"location":[3.073875,48.050393]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.586,"geometry_index":13056,"location":[3.058218,48.046018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":54.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":51.504,"geometry_index":13057,"location":[3.057956,48.045997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,230],"duration":1.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.191,"geometry_index":13120,"location":[3.035558,48.041787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,232],"duration":5.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.879,"geometry_index":13121,"location":[3.035144,48.041556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,240],"duration":0.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.93,"geometry_index":13131,"location":[3.033334,48.040716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":24.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":22.609,"geometry_index":13132,"location":[3.032969,48.040574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.133,"geometry_index":13150,"location":[3.023328,48.038]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.022396,48.037784],"geometry_index":13151,"admin_index":10,"weight":15.051,"is_urban":false,"turn_weight":15,"duration":15.062,"bearings":[71,251,258],"out":1,"in":0,"turn_duration":15.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":9.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.18,"geometry_index":13152,"location":[3.022365,48.037777]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,255],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.027,"geometry_index":13161,"location":[3.0183,48.036938]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.018283,48.036935],"geometry_index":13162,"admin_index":10,"weight":4.238,"is_urban":false,"turn_weight":0.5,"duration":4.051,"bearings":[69,75,255],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,257],"duration":30.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":27.141,"geometry_index":13166,"location":[3.016381,48.036608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,261],"duration":8.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.727,"geometry_index":13178,"location":[3.001986,48.034883]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":74.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":66.969,"geometry_index":13179,"location":[2.997873,48.034424]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":18.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.625,"geometry_index":13231,"location":[2.962012,48.03409]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.023,"geometry_index":13257,"location":[2.954176,48.036933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":1.199,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.09,"geometry_index":13260,"location":[2.953349,48.037375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":8.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.426,"geometry_index":13261,"location":[2.952963,48.037587]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[125,304],"duration":102.102,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":91.875,"geometry_index":13268,"location":[2.95031,48.038997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":12.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.609,"geometry_index":13356,"location":[2.90781,48.044652]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.488,"geometry_index":13360,"location":[2.902287,48.044393]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":123.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":108.078,"geometry_index":13361,"location":[2.90206,48.044383]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[100,280],"duration":4.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.102,"geometry_index":13456,"location":[2.850129,48.051682]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":13.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.062,"geometry_index":13457,"location":[2.848129,48.051926]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[104,286],"duration":4.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.102,"geometry_index":13465,"location":[2.842228,48.052721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,287],"duration":61.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":53.793,"geometry_index":13466,"location":[2.840274,48.053088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,296],"duration":30.867,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":26.992,"geometry_index":13537,"location":[2.814913,48.063345]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,273],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.508,"geometry_index":13581,"location":[2.800546,48.065901]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":32.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":28.203,"geometry_index":13582,"location":[2.800268,48.065911]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":21.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":19.664,"geometry_index":13613,"location":[2.78481,48.064542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.672,"geometry_index":13616,"location":[2.774427,48.063113]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.27,"geometry_index":13618,"location":[2.774072,48.063064]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.508,"geometry_index":13619,"location":[2.773247,48.062951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.773103,48.062931],"geometry_index":13620,"admin_index":10,"weight":14.973,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.641,"bearings":[78,258,263],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,259],"duration":0.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.082,"geometry_index":13623,"location":[2.766049,48.061959]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.76601,48.061954],"geometry_index":13624,"admin_index":10,"weight":4.504,"is_urban":false,"turn_weight":0.5,"duration":4.465,"bearings":[72,79,258],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":4.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.281,"geometry_index":13629,"location":[2.764069,48.061701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":30.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":28.434,"geometry_index":13634,"location":[2.762037,48.061484]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":22.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":21.082,"geometry_index":13635,"location":[2.748736,48.06026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.688,"geometry_index":13657,"location":[2.738687,48.058776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":2.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.258,"geometry_index":13658,"location":[2.738366,48.058719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.737298,48.058531],"geometry_index":13659,"admin_index":10,"weight":0.223,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.25,"bearings":[75,256,262],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":17.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.285,"geometry_index":13660,"location":[2.737193,48.058513]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":4.574,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.227,"geometry_index":13662,"location":[2.729635,48.05718]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":54.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":48.789,"geometry_index":13664,"location":[2.727668,48.056832]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,275],"duration":80.145,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":72.125,"geometry_index":13713,"location":[2.70468,48.052513]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.68,"geometry_index":13790,"location":[2.672689,48.062432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":7.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.922,"geometry_index":13791,"location":[2.671939,48.062608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.684,"geometry_index":13794,"location":[2.668765,48.06335]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":2.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.219,"geometry_index":13795,"location":[2.668459,48.063421]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.667464,48.063654],"geometry_index":13797,"admin_index":10,"weight":0.027,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.051,"bearings":[109,287,297],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,289],"duration":2.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.586,"geometry_index":13798,"location":[2.667445,48.063658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":0.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.113,"geometry_index":13800,"location":[2.666296,48.063927]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":6.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.055,"geometry_index":13801,"location":[2.666248,48.063938]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.663539,48.064571],"geometry_index":13803,"admin_index":10,"weight":4.762,"is_urban":false,"turn_weight":1,"duration":4.188,"bearings":[103,109,289],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":103.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":90.914,"geometry_index":13804,"location":[2.661617,48.06502]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":87.434,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":76.496,"geometry_index":13896,"location":[2.616522,48.079604]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":24.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":21.25,"geometry_index":13952,"location":[2.580071,48.093989]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.473,"geometry_index":13986,"location":[2.568637,48.095686]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,270],"duration":80.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":70.77,"geometry_index":13987,"location":[2.568405,48.095688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":54.066,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":48.652,"geometry_index":14006,"location":[2.532672,48.091699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":87.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":78.652,"geometry_index":14014,"location":[2.508789,48.088969]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.973,"geometry_index":14101,"location":[2.471211,48.082847]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":2.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.297,"geometry_index":14102,"location":[2.470773,48.082853]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.469726,48.082869],"geometry_index":14103,"admin_index":10,"weight":15.516,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.262,"bearings":[91,271,282],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.462715,48.082973],"geometry_index":14108,"admin_index":10,"weight":4.961,"is_urban":false,"turn_weight":1,"duration":4.422,"bearings":[84,91,271],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":97.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":88.078,"geometry_index":14111,"location":[2.460584,48.083005]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.648,"geometry_index":14215,"location":[2.41737,48.094042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,291],"duration":15.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.633,"geometry_index":14216,"location":[2.41704,48.09413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,279],"duration":35.328,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":31.777,"geometry_index":14237,"location":[2.409969,48.095453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.652,"geometry_index":14262,"location":[2.392853,48.095689]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":48.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":42.258,"geometry_index":14263,"location":[2.392549,48.095688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":19.641,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.18,"geometry_index":14289,"location":[2.369195,48.096953]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,283],"duration":83.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":72.766,"geometry_index":14299,"location":[2.35985,48.098225]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,295],"duration":87.738,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":76.762,"geometry_index":14347,"location":[2.321547,48.106283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":63.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":55.414,"geometry_index":14408,"location":[2.280215,48.112644]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":100.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":90.695,"geometry_index":14445,"location":[2.249505,48.112857]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":2.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.922,"geometry_index":14491,"location":[2.200907,48.113996]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284,289],"duration":9.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.324,"geometry_index":14492,"location":[2.199933,48.114161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":7.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.836,"geometry_index":14495,"location":[2.196213,48.114789]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.193163,48.115307],"geometry_index":14497,"admin_index":10,"weight":21.59,"is_urban":false,"turn_weight":1,"duration":22.266,"bearings":[99,104,284],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,281],"duration":0.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.871,"geometry_index":14510,"location":[2.183875,48.11684]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.559,"geometry_index":14511,"location":[2.183491,48.116891]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.293,"geometry_index":14518,"location":[2.18095,48.117187]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":80.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":72.203,"geometry_index":14519,"location":[2.180814,48.1172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,248],"duration":59.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":52.098,"geometry_index":14592,"location":[2.142395,48.114105]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,224],"duration":17.73,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.508,"geometry_index":14654,"location":[2.120773,48.101656]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,237],"duration":50.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":44.609,"geometry_index":14677,"location":[2.114187,48.09797]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.629,"geometry_index":14739,"location":[2.091045,48.092686]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":18.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.523,"geometry_index":14740,"location":[2.090697,48.092683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":9.395,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.215,"geometry_index":14767,"location":[2.081607,48.093397]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,291],"duration":2.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.84,"geometry_index":14781,"location":[2.077259,48.094319]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293,298],"duration":0.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.855,"geometry_index":14784,"location":[2.076316,48.094574]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,294],"duration":18.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.203,"geometry_index":14786,"location":[2.075919,48.094688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,295],"duration":75.855,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":66.367,"geometry_index":14790,"location":[2.068503,48.096978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,256],"duration":133.855,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":117.105,"geometry_index":14855,"location":[2.032286,48.098681]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":109.043,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":95.398,"geometry_index":14900,"location":[1.976587,48.076553]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234],"duration":79.68,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":69.711,"geometry_index":14941,"location":[1.936057,48.053836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":16.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.129,"geometry_index":14998,"location":[1.899127,48.047277]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":24.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":22.258,"geometry_index":15002,"location":[1.891066,48.046432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,263],"duration":1.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.977,"geometry_index":15011,"location":[1.87921,48.045208]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":10.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.516,"geometry_index":15012,"location":[1.878802,48.045174]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.809,"geometry_index":15013,"location":[1.874493,48.044833]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":52.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":47.363,"geometry_index":15014,"location":[1.87415,48.044806]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.031,"geometry_index":15046,"location":[1.852666,48.044709]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,250],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.797,"geometry_index":15047,"location":[1.852648,48.044705]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":7.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.773,"geometry_index":15048,"location":[1.852313,48.044622]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,237],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.426,"geometry_index":15056,"location":[1.849832,48.043793]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,236],"duration":2.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.488,"geometry_index":15057,"location":[1.849685,48.043728]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":0.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.066,"geometry_index":15061,"location":[1.848849,48.043332]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.848831,48.043323],"geometry_index":15062,"admin_index":10,"weight":3.273,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.645,"bearings":[53,233,244],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":12.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.523,"geometry_index":15066,"location":[1.847784,48.042793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":8.824,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":7.941,"geometry_index":15084,"location":[1.843593,48.041514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,245],"duration":3.125,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":2.812,"geometry_index":15093,"location":[1.840711,48.040829]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,233],"duration":10.68,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":9.613,"geometry_index":15099,"location":[1.839783,48.040482]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,198],"duration":10.477,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":9.43,"geometry_index":15119,"location":[1.837607,48.038589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,348],"duration":11.934,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":10.738,"geometry_index":15139,"location":[1.837441,48.036297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":0.586,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":0.508,"geometry_index":15146,"location":[1.838605,48.033762]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,342],"duration":4.426,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":3.98,"geometry_index":15147,"location":[1.838657,48.033652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":10.445,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":9.398,"geometry_index":15148,"location":[1.839066,48.032782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,346],"duration":10.66,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":9.594,"geometry_index":15152,"location":[1.839976,48.030764]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.840514,48.028726],"geometry_index":15160,"admin_index":10,"weight":22.305,"is_urban":false,"turn_weight":21,"duration":1.461,"bearings":[175,345,355],"out":0,"in":1,"turn_duration":0.014,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":6.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.141,"geometry_index":15161,"location":[1.840555,48.028397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":67.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":58.855,"geometry_index":15165,"location":[1.840787,48.026789]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,344],"duration":53.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":47.18,"geometry_index":15198,"location":[1.845375,48.011162]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":63.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":57.168,"geometry_index":15218,"location":[1.851434,47.999758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,349],"duration":18.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":16.648,"geometry_index":15243,"location":[1.858034,47.98622]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[176,186,356],"duration":29.824,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":27.582,"geometry_index":15253,"location":[1.858872,47.981901]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.85877,47.97454],"geometry_index":15269,"admin_index":10,"weight":13.562,"is_urban":false,"turn_weight":1,"duration":13.23,"bearings":[5,186,352],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":19.07,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":18.113,"geometry_index":15277,"location":[1.858121,47.971332]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":52.953,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":51.621,"geometry_index":15289,"location":[1.856547,47.966791]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.617,"geometry_index":15316,"location":[1.850282,47.954413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.273,"geometry_index":15317,"location":[1.850227,47.954265]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.871,"geometry_index":15319,"location":[1.850115,47.953957]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":2.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.871,"geometry_index":15320,"location":[1.85004,47.95375]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.849805,47.953057],"geometry_index":15324,"admin_index":10,"weight":7.785,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.809,"bearings":[12,192,204],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":4.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.031,"geometry_index":15328,"location":[1.849281,47.951306]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.195,"geometry_index":15331,"location":[1.849053,47.950397]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.849042,47.950353],"geometry_index":15332,"admin_index":10,"weight":11.008,"is_urban":false,"turn_weight":0.75,"duration":10.277,"bearings":[10,189,358],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":86.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":86.168,"geometry_index":15337,"location":[1.848585,47.947989]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,183],"duration":2.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.129,"geometry_index":15379,"location":[1.849277,47.928028]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":5.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.324,"geometry_index":15380,"location":[1.849241,47.92752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.164,"geometry_index":15382,"location":[1.849142,47.926286]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.234,"geometry_index":15383,"location":[1.849115,47.926007]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":1.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.59,"geometry_index":15384,"location":[1.848924,47.924077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":18.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":18.891,"geometry_index":15385,"location":[1.848886,47.923698]},{"bearings":[1,180],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":15394,"location":[1.848587,47.919319]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bordeaux"},{"type":"text","text":"/"},{"type":"text","text":"Tours"}],"type":"fork","modifier":"left","text":"Bordeaux / Tours"},"distanceAlongGeometry":116404.094},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Bordeaux"},{"type":"text","text":"/"},{"type":"text","text":"Tours"}],"type":"fork","modifier":"left","text":"Bordeaux / Tours"},"distanceAlongGeometry":1609.344}],"destinations":"A 19, E 60: Orleans, Montargis","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 19 toward Orleans/Montargis.","modifier":"slight right","bearing_after":219,"bearing_before":208,"location":[3.11008,48.066035]},"speedLimitSign":"vienna","name":"","weight_typical":3219.344,"duration_typical":3538.25,"duration":3538.25,"distance":116404.094,"driving_side":"right","weight":3219.344,"mode":"driving","ref":"A 19","geometry":"e~utzA_ky|Dn@lDfpA`~@r_@vXfZxTxIfH`HjGhGpGhFxG`FzG`D|EdCtEhEpIzCpGZn@tGpNnHbPjd@zaAvQf`@tChGvCfGxCbGzC|FdD|FdDtFhDpFjD`FvD|EzDjE~DdEhExDhEhDpE|CpEjCxEdCzEtBzEdB`F`B`FtAbFlAdFhAhM~BjMzBtx@jMhMrBpJ~A|AVbF~@bFbA|EzA~EhBxErBrEbCtGfExExDfF`FpElF`EtFxDjGvDhH`CbFxBtF~BtHxB`IlBtIfBvIbBdKx@rGt@rHd@rG~@hNtBd\\lBpZxEha@jAxQbBvUbB`TdB`TlEbi@tEji@pEni@jY`iDnRr|Bdg@xaGnFdo@bF`l@@J~AfQx@lIz@lI|@dI~@nI`AlIdAbIhAfIjAfInAhIpA`IpAbItAdInD`Sze@nhC|Mlt@dF`XxTblAjJ~f@xDbSzDxR`BxH`BvHdBxHdBvHfBtHhBrHdB~G`BnGxAlFvKn`@jFfRfFhQxMxd@xMvd@b\\niAr\\rjAh\\ziAr\\rjAtMpd@dFvQ`FtQ~EfRpEjRfEjRzDvRrDbSbDbSzCnSnCnS`ChSvB|SlB`T~A`TvAjThA`T`AfT|@xTx@rTrB`j@rBfj@jC~t@h@jO|E~nAhFhuArBlj@rB|i@lB`j@hBhj@nBdj@rBdj@tB`j@rBbj@hBte@|Bbn@hFfuAjF|uApB`j@tB`j@x@pT~@pT`@tIb@vIf@tIh@vIl@tIp@tIt@tIv@tIv@`I|@pIdAzIdAhIfAjIjAdIlAbItAlItA`IvA|H|AdI`BzH`B|HdB~HhBtHlBrHrBxHnBnHrBjHxBhHzBdH|BdH`C~GbCzGdCxGnC`HnC~GpCnGnCjGvCpGxCjGvCbGxC|F~HfO~HbOpRn^nUfd@lMzXtFxMnCxGlCzGdCjGfCzGdCzG`C|G|B`HvFlQnF`QzGxUpEjPvEtQxEtRfEfR|DnR|D`SvD|RjJzf@xU~nAlDnRjDnS~C`SxClSxClSxCzSlHxg@~d@|bD~CrTnLfy@L|@fHzg@|G`h@jClSfCnSfCpShGvh@~BrS`ChT~C|YD`@fEta@rBzSpBzS~Eli@rEnh@jEji@bEni@xDdi@lDvi@pDfl@rGhkArIh~AdRtjDbRnjDnHltAxCzi@t[``GtCvi@lC~i@`Cti@xBjj@lBxi@fBrj@zAri@rAfj@fApj@~@~i@l@`b@HfGtExlDtE`lDvExkDhB~uAjBvuAhB~uAjBtuAlBvuAjBvuAhBruAVrTRtTJrTFjT@rTCbUKdTQrTWtT]zTa@jTg@tTm@jTw@zTy@hT_AfTgAnTmAjTqAfTuAxS_BlT_B`SoB`UoBbTuB~S{BxSaCvSgCtSmC|SuC|SyCrS}CdS_D`SoDlSmD`SqDvR{D~RcE`SaEfRmEtRmEdRsEdR}EbR_F`RgF|QgFrQsFvQmF|P_GvQ}F`Q}FlPgGxPqGzP{G|PmGtOkFfMo@xAaHdPaPt^gLbWoMjYgRpa@uQx`@cH~OaHjPsGlP{GfRuFbP{FhQwFtQuFbRaFxQaFbR}EpRuEzRgErRaEjSsDlSsDhTqDzT}C|S}DnY{BbQgCvSeCbT{BzSsBhTmB|SeBdT}AhTsAjTmAlTaAjS_ApTu@rTu@|Tq@hT}K`lDgBbj@u@rTy@rTaAjTiAjTuAnT{AfTcBdTiB~SsBdTgCvUqOjvAw^zeDaObsA{NhrAw^neDaGfi@}BxS{BzSuBdTsB`TiBrSmB~TeBlTaBfT{AbTwAnTsAfToAvTkAhTeAtTcApT{@tT}@vUs@vTo@rTk@rTg@rTa@~T_@tTWjTU~TO|TMvTEtTCnT?zTFxTH`UL~UT`VVhVZtT`@tTbCdwArBvjAN|I`Apj@^zT^pTbKdaGRdMhC~wA~BzuAbA`k@`A`j@\\lTXrTPzTJnTDrT?tTIlTMrTUtT[jTa@zTg@tTq@fTu@xT{@dTcAnTiAfTqAhTuA`T}A`TeBlTkBbToBzSyB~S{BtSgC~SiClSqCzSyCpS_DjScDfSqT~oAwIjg@iO|{@qQheAqIvg@iIrg@{B`NyBzN_DjSwBlNaE`X_DzSqH~g@oHdh@iHfh@sCzSqCnSmCvSmCvSmCzSkCtSgCvSgCtSgCvScCzScCzSaC|SgCzTcCzT}B~S_CnT{BfT{BdTwBdTwBfTkFni@cF|i@_Fpi@sEbi@sEti@mE~i@cEhi@aEfj@yDxi@sD|i@mDdj@kDlj@eDvi@qI`uAoI`uAqI|tAoIttAoIztAgDzi@g@bI}Bz_@iDzi@gD|i@oIrtA_JdyAgN~{BwTnpDkD`i@{Dri@aBfTgBnTgBvSoBpTsBpT}UbyB}CrVmCfTqCvSuCrSyCvS{CvSaDlSaDjSgDnSiDnSmDdSoDdSsD`SwD~R{D`S}D|RcE~ReEzRiEvRkEvRkEhRuEtRsEdR_F~R{E`R_FhRsFrS{FrSkGnTmFxQoFrQsFrQuFlQyFnQ}FjQ}FbQkGrQkGjQmGfQoGbQsG`Q}GfQ}GdQcQtb@kQ`b@uRnc@ajAzhCod@~cAkHfPgHhPkHtPcHvPkHnQgHtQ_HtQ{GvQaHrRiGhQaGdQaGpQyFlQwFrQyFdRqF`RqF|RgFlQgFpRaFjRcF`S{EzRmC~KuD`PqEbSmEdSqEfTuEhUkEvTwDhSwCfPYzAmDdSkDlSgDpSaDjS_D`TyCpSuCzSsC`TmC`TgCbTcApIaApIaCpT{BhTyBpTsBjTqBbUkB|TeBxTcBtUcBlVyAvTwAxVkArTiAnTcArT_AzTy@rTw@xTq@tTm@zTg@|Te@vT_@bU[pVSjPSlXO`UGtTCbU?|TBxTH~TJ`UR|TT`UX~T^hUf@`Uf@fUj@xTt@dUt@vTz@fU~@zTdA`UjA~UrAzU~AvWxAxTxAjT|Dbj@vJvtAlBxWfSprCzJbuA|AfTvVvkDzVllDth@vmHxAfSF|@`Fpr@f@~GzYzaErJfsAfUv`DHlAxCza@~AzU|A|UpAhSnAhStAzVpAzVjAxThA|TrBnb@nkAh~XlApYbAzT`AvTfAhTjAhTnAxTvArUxAlUzAlU`BjUbBhUtAhRzAhRfBnTjBlTnBnTpBlTtBxTxBxTpFri@hNruAvMzrApB`SvJvaAb@pExLlmAndA|hK~MzsAvE`e@~UjaCpFni@|B`TlCnVbC|SfC|SjC~SlCtSnCxSrCxSzCvSxCtS~CrS|CdSdDlShDnSjDnSnDbSnD`SnzAz_ItDbSjDvRbDhS|CfSvCtSnCtSfCvS~B`TxBdTlB~SfB`T~AfTxApTnAdTfAjT`AxTv@hTp@rTf@tT^lTVxTPxTB`N@vE@fUGfTOpTWnTUfPq@dYq@fUs@tScAjTgArToAlTwAnT_BfTiBfToBbTuB`T_CrSgCxSmCxSuCnS}CnSgDlSkD`SuD`S}D~R_EpRkEpRsErRwEbR_F|QiFbRsF|QwFvQ{FhQeGbQyaApnCk`@rfAm`@zfAiGbQiGdQaG`QcGhQ_GlQ}FpQwFlQwFpQuFtQqFxQoFzQmFxQiF|QeF`RcFbRaFfRaFhR{EdRwEfRyEvRwExRoEhRmElRmEzRkE|RgEzReE|R_ExR}D|RyDzRc@~BsC|NwDhSsDlSqDfSmDjSiDjSgDlSgDxSeDzS}ClS{CpSse@hdDo^`fC_Jzm@wSpwAiRrqAiEdZmCbRYlBwLvy@Gd@}F~`@{Gxd@U~AkRzqAeSluAa[bwBue@ldDwHzh@yHnh@mIni@qIbh@{I|g@eJfg@qJng@yJzf@gKvf@sKvf@_Llf@kLdf@sLte@}Lpe@kMje@sM|d@_Nvd@iNld@uNfd@}Nrc@kOtc@aPfd@wOdc@iPbd@yPje@qOvb@k`@pfAa^`bAoOlb@kOlb@oOpb@oOnb@eG~P_GxPaG~P_GfQ}FhQsEtNa@nAuFhQwFpQqFlQoFtQqF`RkFzQcFrQiF`RaFzQ}EzQyE~Q{EdRuE`RuElRuEpRqEpRyApGwBlJkEvReEpRgEvRaErRaE`S_EhSwDpRwDbS_E`TqDhS{DpTyD|TgDdSeDbSaDlS_DdS{ChSyCjSuCjSsClSqCnSmCnSmCxSiCzSeCxScCxScCfTyNxrAwNzrA{F|h@eGxh@oGjh@wGbh@_Ilk@kEpZ{ClS}ChS_DdSaD~RiDjSiDhSmDjSkDrRqDbSwDfSwD|RwDtR_EdSaEvRcExReEzRiErRkEpRmEnRoElRsEjRqLre@wLhe@eM`e@gF`RkF~QiFrQkFnQsF|QsFrQuFlQ{FrQuF`Q_GhQaGjQgGpQucC|kHw_CbcHsaChgHs_C|bHcOpc@_GfQ}FpQ{FvQqFrQkFrQkF`RcF`RcFhRwEfR{ExRoElRkEpRkEbSgGlZuErUuDlSoDfSmDvSgD|R}CnS}CxSuCpSqC~SsC~TeCbTkCrUeCdVsBdToBdTiBbTeBnT_BjTwAhTsAlToAhTiAxTeApT{@pTy@pTs@zTo@vTg@rTc@|T]tTWxTS|TKtTCpFCnMAvTBtTH`ULtTPzTXvT^xTb@|Th@rTn@xTr@zTx@xT`AvTbAtTjAnTnApTzpEfxt@pDnl@fMjuBvK|jBv\\v`Gbv@zcNtR`lD|^pwGtA`WbFt}@pJvdBpIv{AxHfuA~C`j@pApTrAnTtArT~ArTbB`UdB~ThBfTpBrU|BzVrBbTtBbTxBfT~B`T`CbTbCbThCzSlCzSnC|StCxStCvSxCtS~CxS~CjSdDpSfDlSjDjSnDlSpDbStD`SxDfS|D`S~D~RdE~RfE|RrKrf@tKxf@`XlmAhFzUhQdx@fX|mAfE~RbE~RfEfTtDdSzDpT|DtU`DdS|CrSxCvSnCfSlC`TfCzS~BvSxBzStBbTlBdThBfT`B|S|AhTvAjTpAnTjAnTbArT~@pTz@vTr@xTl@vTd@vTb@~TZ`UR|TNzTFvT@~TAnTGvTIxTUfk@i@fvASpj@Oh_@E`KSpj@Udl@KjZ_@l`AiAfxCUxm@i@tvAg@pvA]z}@U~m@?Bi@`uAcEx`LU|j@Szj@KxTOxTU|TYvT]~Tc@zTe@dUk@lTq@zTu@vTu@bT_A~TaApTeAvTkApToAnTsAlTyAxT}AnTaBlTeBlTkBjToBhTsBhTwBhT}B`T_C~ScCdTkC~SmC|SqCzSwCxSyCtS_DtScDrSiDrSkDnSqDjSuDdSwDfS{D~RcEbSeE|RiEzRkEtRyEdSyE`ScFbScF~RsFnSuFhSiF~QkFvQsFxQuFpQyFpQ{FhQaGjQeGfQgG|PiGxPsG|PuGxPmP|a@sPnb@iPxa@qPfb@uPpb@kP|a@wPnb@iP|a@iPva@uPlb@qPhb@wGrPwGzPkGnPqGfQoGnQ_GvPgGtQ{FfQ{FtQ{FzQsFzQiFnQoFlReF|QcFdR}EhR_FvRsEhRwEzRmEtRkEzReE|RcE`S}DzR_ErSsDzRqDpSoDrSgDhSgDzS_DlS{CrSyCxSuCdToC|SiCxSgCbTcCjT_ChTwB`TsB|SqBpTmBjTgBfTcBbT_B|T{AtTuAnTiAtRsAnViAbUcAvT_ArT{@zTw@xTq@zTm@rTg@|Te@`U_@|T[~TUvTQzTKvTIfUEvT?~TB~TF|TNzj@~BvfJ^pvANvj@^j~A@~Q?`sAE~j@Kpv@Qnk@Ubk@[hk@a@pm@g@bn@wAlvAkBnvA{@rj@cArj@gAxj@kAdk@qApj@wAzj@{A`k@}Abj@eBvj@gBfj@mBjj@qBhj@sFvuAgGfuA{GhuA_IpzAcK|eByIduAsDxi@wDri@}Dti@aEzi@gE~i@wKttAuKltAo@xHwfAdaN{q@fuIkX~iDmXdjDuKftAiEri@qEdj@mBjTqBhTuBfTwBxSyB`TgCpTcC|SgCvSkCvSmCjS{CrTqCzR}CtS_DtSeDrSgDfSkDhSmDhSsDjSwDfS{D`S{DxRaEvRiEdSgExRqEvRmEfRuEvRsElRgLte@kL`f@iL|e@uYbmAiLve@oLpf@cLpe@wEvRoEnRcLpf@_L`g@iIt_@iJjc@cKzf@}G|\\{Jvg@qJng@eJ`g@}Ilg@}Ibh@iI~f@sIhi@aIfh@wH`h@qHhh@iHdh@sCdTsCjTuCxTiCvSmChTgC~SgC`TaC|SaC|SaCdT_CdT}B`TyBbTyBfTwBfTqB`T}BzUmBvSkBjT}BfWgBbTiBjTeBlTeBlTcBlT}Dti@wDfj@oDdj@gDhj@_Ddj@wCtj@mChj@iCjj@uFdmAyG|xAeP|lDmGluAqGxuAoGruA_Rb`EGxAqG~uAqG~uAaC~i@_Cpk@yBxj@uBfj@uBjm@kBrj@cBjj@kAh_@{Avj@wAnj@qAtj@oAtj@gAtj@cAtj@_Arj@{@tj@u@vj@q@tj@k@vj@e@vj@c@vj@[|j@Wxj@Srj@M|j@Ixj@Ezj@@zj@Bnj@H~j@Nxj@Pnj@Xdk@Zrj@`@zj@|@r`Al@vj@r@tj@v@fj@|@bk@hNzjI~JnaGjCf}AvFlfDpa@veVx@rj@p@zj@TzTRxTPzTNzTJzTLhUNfj@Hxj@@zj@G`l@Mrj@W`k@]tj@g@vj@o@`l@{@hm@aApj@gAlj@Y|Mu@p[wAxi@aB~j@gBhj@oBrj@yBdj@_Cdj@iCtj@oCli@{Cbk@aD`j@eDji@sDlj@wDvi@_Eni@kEhj@qEni@{E|i@_Fji@w[xhDgEzc@iIz{@iFbj@gF|i@uWlqC_NdwAkPleBcJt`AcEhc@oFlk@eFvi@gFti@gFvi@_Gbn@kEzd@iF`j@eFri@}Evi@oE|i@aFnp@eB~VuBfZuAxTqArTmAfToAxTiAvTiAhVYnGgBt`@}@hTy@tTy@bUq@xTq@tTm@xTm@bUe@jTe@|Ta@bU_@~T[tTWvTWfUQ|TQzTK`UIrTEbUEzT?tTB~TD~TFtTXnj@N~TT~TVvTXvT\\zT`@xT`@xTh@fUf@rTl@lTn@dUr@rTt@rTx@vTz@~T~@~T`ArTdArTfArTjApThA`T~Crj@vMhaCfa@vmHjl@doKjAlTpAnTtAnTzAvT|AtTbBrTfBhTjBhTpBnTrBbTxBhT|BfT`C|SfCbTjCbTlC|SrCzSvCzSzCvS`DrSdDvSfDfShDdSrDlSh@rCjCpNzDhS|DbS~D|RfEzRfEvRpE~RzEhStErRzEnR|EfRpFjSzDpN|DnNjFvQpF|QrFrQvFnQxFfQ~FhQ`GbQfG~PhG|PlGxPpGtPpGjPxGlPxGdP~G`P`H~ObHxOfHrOpHzOnHhOxHvOtH`OxH~N`IdO|HpN~HjNpI`OlIjNlIfNtIdNpIxMxIvMvInMzIjMfH~Jt@dAhUr[bUh[rv@pfAvv@pfAryBj|Ct_@`i@|T~[|I~M~GzKtZzf@jInNbInN`IrN`I|N~H`OrH~NrHbOtHrOrHvOjHtOhHxO`H|O`HbP~GfP~GtPtGlPpGpPnGtPlG|PfG|PfGjQ~FdQzFfQ|FtQpFjQnFnQrFfRbFlQfF~QbFbRzEdRxEfRtElRtEpRbDlNl@jC~XjmA~e@xtB~Kdf@lEpRhEvRdEtR`EvRxDtRvDtRvDfSrDhShDzRhDhSbDjS~ChSzCjSxCzSrCvSnCxSjCxSdCvS`CvS|BtSxBbTvBdTrBpTjB`TfB`TbBfT~AhTxAbTvAjTrAjTjAnThApTdApT~@jT|@xTv@zTr@nTn@pTh@pTd@nT`@dUZrTl@dj@NrTJzTDvT?~A@vQ?xTGtTItTO|TS|TYvT[tTa@|Te@xTk@xTm@xTs@nTw@rT{@rTaA|TeAjTgAfToAvTqApTwAjTyAhTcBtTcBpTiBjTiCpYuA`OuBxSwBdTaC`TeCdTeC|SmCzSoCrSsCtSwCpS}CpScD|SgDxSm@lD{BzMmDdSsEzVoCzNsA|GcBvIqGp[}o@`}CoqAbiGcLri@sJpd@eE|RcE|R_E~RyD`SsDdSoDnSgDjScDrS}CtSoDbWoCrSkC`TeC~S_CfTwBzSsBfTkBfTgBhTcBbU{AlTsAlTqA|TgAlTaArT_AtTw@hUq@nTi@nUe@xT]tTWvTQ`UKzTQxj@iE`lOsBfgHOtj@C~TAxTBxTFdUJ`UPzTR|TXzT^~T`@vTf@dUj@rTn@pTr@zTx@zT~@tT`ApTfAtTjAzTnAnTtAzTvAbTzArT`BnTfBrTjCxZnAxMrBnTxBdTzBbT~B`TdCbTfCzSlCvSrC`TvC|SvChS|CrSfD|SbD~RlDxSjD|RxDrSxDhSxDxRbEbSbEtRdE~RnEzRtEzRnEfRzErR|EjR~EbRhFnRhF~QlFzQrF~QrFrQpOpf@|gPz~g@tkChlIvxFboQ`yAjtElB`GtNrc@xNnc@fOzc@ro@lkBzW~t@tVtq@f^p`AnTfk@va@neApPbb@xP~a@tPta@zPha@bQpa@dQja@~Pr`@jQba@tQ`a@rQv`@vQp`@jRfa@dRt`@fRn`@d|BdxErkAzcC~m@rpA~zBbvEv{BnwElx@tbBje@naAje@paApx@vbBlx@pbBvqB|eEvZ`o@nIdQhe@laAde@laAfRf`@bRj`@fHtOfHvObH~O~GbP~GnPtG`PzD~JzAtDpGxPpG|PjG`QhGdQdGhQ~FjQ|FpQxFrQpDpLbAdDvFjRrFnRhFbRjFxRfFzRdFdSbFhSpEjRpErRjEzRdEvRbE|R|DtRxD~RtD~RrDjSnDnSdD|RfDlS`DrSzClSvCnStCzSpCzSjCvSfCzSbCbT~BbTzBfTtBfTpBbTlBbTfB`TfB|T~AjTzAlTvAfTpApTnAvTjAxTjChj@hLnbCfr@nxNp^fvHr^|vHf@nK|PflDdQvkDfHhvAlFneA|JxoBjQxlDhQzkDtCzj@pCfj@nCbj@hCnj@`Clj@vDh_AbAnXhThlGt@lT@\\hBbj@r@`Ul@jTb@vTZ~TT|TJzTB~TEzTKzTSzT[~TkEbrCwHl`FsMhsIWdTQ~TGzT@bUN|TXbUh@~Tt@vT~@xTjAvTzA~T`BdTnBhT~BhThCfThCpRFb@dD|SjCbP|D`T`EbSlE`SxEvR~E~QnFfRtFtQ`CdHfCvHnGbQnGnPnBzEPb@lLjYtG`P|GxP`AdCnElLbG|P~BbHxBdHvBjHpBpHlBpHjBtHdBvH`BxH|A|HvA|HvAhIpAhInAjIjAhInHph@vJvr@dFl^lHjh@nHrh@jAjInAfInAfIrAfIvAbI|BlMv@`EbB|HjBvHrBrHxBjH~DfLzEpLrCxGtClGzCdG`D`GdDtFjDrFnDhFtD`FvDvE`ErE`EdEdE~DhEtDlElDpE`DpEvCtEpCzEfC|E|B`FpB|EfB`F|AfFtAhFfAfF|@fFt@fFh@hF\\jFRjFJjFAjFIjFUjFa@hFk@hFq@fEw@dFgAfEcA\\IdFyAdF}A`MeE~LoE~LqE`dBmn@zEgBju@qXfqAue@tLeExLyDjOeEnIsBvJqBrHwAhLiBrIcAb\\gD|O}AnXaIpSqAzL{@r[}Bz[gCb\\mCbx@qHr\\kDv[gDx[sDt[wDv[_Ev[gEv[oEt[sEv[{Et[gFf]wFxZkFvZmFr[aGp[iGl[kGj[uGf[yGn[cHl[kHj[sHh[wHd[{Hd[eI~ZkIh[uIl[_J`[_J`[iJd[sJnZoJtc@mNlRuGrZeKrZoKf[_L~YuKd[mLhZgLjZqL~Z}L~Y}LvZmM|YeMfZsMpZ_NfZcNnZmN~YoNnZ_Oj~Eq`CxAs@jtEwzBhu@m^bZuNbZqNdZgNdZcNjZ}MhZqMdZeMfZuLrZsLhZ}Kl[yKjZ{JbIgClJuC~Ag@~WaI|Z{If[iIj[_Ij[oHj[}Gp[oGn]uGhY_Ff\\gFl[qE|ZaEp\\{D`\\gD`\\wCd\\kCx[{BhKk@tO}@l\\}Ab\\iAj\\y@r[o@nZYv@A`\\Od\\?b\\L|^b@tw@hBd\\nA~[zAh\\jB`a@rCf]rCt[zCz[jD`\\|Dn[fEt\\`F@?jXlEt[tFjM~BjMdCbMdC`MjCl[`Hf[pHj[bIb[lI`[|I~ZlJ|[jKn[rKpZxKtZfLvZvLjZ~LhZjMvZxM|YtMfZbNju@r]hu@v]tu@v]dZdNhZ`NdZtMhZnMdZbMpZzL~\\rM|ZbLvZpK`[fKh[vJ`MvD`MrDbMnD`MjDfHlB~Cx@fMdD|KtCb@J~L|ClM|CvLlCp[dHp[xGt[fGrVnEzCh@v[hFdVrDvATr^`F|[zDt[tD`\\dDl\\vCp[fCz[xBf\\hBx[|Af\\lAd\\`Ab]r@l\\d@h\\Rf\\Dh\\GlMGtMKvMQvMWjZk@jZ_Ah\\kAd\\sAb\\{AvNw@|Km@|\\kBd\\sBd\\qBf\\{B~gAmHjy@mFpy@yErZ_Bd\\yAd\\uAf\\gAf\\y@d\\m@j\\]h\\Of\\E`\\Jl\\Xh\\f@pf@fAv^fAvf@|Ajd@fBlPt@rwB|JtVjAp_A~Dxy@|C`\\~@t`@|@nQ`@vINhMPxMPd\\b@lMDlMApM?rME|MI|MMh\\c@h\\q@|\\cAr[gAb\\sAp]eBt\\eBv[kBv_@{BjKq@`j@mDzx@{ErdAqF"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 86 miles.","announcement":"Continue for 86 miles.","distanceAlongGeometry":138823.531},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 10.","announcement":"In 1 mile, Keep left to stay on A 10.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 10.","announcement":"In a half mile, Keep left to stay on A 10.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 10, E 05.","announcement":"Keep left to stay on A 10, E 05.","distanceAlongGeometry":190}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.849316,47.910696],"geometry_index":15413,"admin_index":10,"weight":23.742,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.637,"bearings":[173,182,356],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.848709,47.90536],"geometry_index":15434,"admin_index":10,"weight":4.816,"is_urban":false,"turn_weight":1,"duration":3.645,"bearings":[4,20,201],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,207],"duration":9.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.469,"geometry_index":15438,"location":[1.848166,47.904524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.258,"geometry_index":15448,"location":[1.846268,47.902647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227],"duration":42.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":43.879,"geometry_index":15452,"location":[1.845467,47.902082]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,279],"duration":131.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":124.828,"geometry_index":15495,"location":[1.830395,47.90012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.223,"geometry_index":15579,"location":[1.774626,47.895002]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":2.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.484,"geometry_index":15580,"location":[1.774523,47.894978]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,250],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.168,"geometry_index":15583,"location":[1.773398,47.894708]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.773324,47.89469],"geometry_index":15584,"admin_index":10,"weight":12.543,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.941,"bearings":[70,250],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":9.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.793,"geometry_index":15594,"location":[1.76774,47.893186]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,245],"duration":314.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":282.805,"geometry_index":15598,"location":[1.765419,47.892476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":9.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.168,"geometry_index":15697,"location":[1.702734,47.857663]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":21.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":19.77,"geometry_index":15698,"location":[1.699408,47.856152]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,231],"duration":2.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.84,"geometry_index":15710,"location":[1.691564,47.852401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":9.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.785,"geometry_index":15712,"location":[1.690867,47.852027]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":64.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":59.32,"geometry_index":15719,"location":[1.687587,47.850174]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,222],"duration":0.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.695,"geometry_index":15744,"location":[1.668724,47.836189]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.668509,47.836028],"geometry_index":15745,"admin_index":10,"weight":1.754,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.867,"bearings":[42,219,227],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,220],"duration":11.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.641,"geometry_index":15746,"location":[1.668002,47.835614]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.664789,47.833161],"geometry_index":15754,"admin_index":10,"weight":7.457,"is_urban":false,"turn_weight":1,"duration":6.816,"bearings":[32,43,223],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,225],"duration":49.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":45.441,"geometry_index":15758,"location":[1.662762,47.831741]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.27,"geometry_index":15785,"location":[1.64647,47.822687]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.645212,47.822055],"geometry_index":15786,"admin_index":10,"weight":20.395,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.668,"bearings":[53,233],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,231],"duration":5.883,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.277,"geometry_index":15795,"location":[1.637674,47.818245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":47.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":42.621,"geometry_index":15799,"location":[1.635716,47.817177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217],"duration":193.395,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":169.203,"geometry_index":15829,"location":[1.621589,47.807323]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":2.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.082,"geometry_index":15924,"location":[1.55813,47.762014]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,226],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.27,"geometry_index":15926,"location":[1.557296,47.761487]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.557235,47.761448],"geometry_index":15927,"admin_index":10,"weight":11.461,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.105,"bearings":[46,226],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,224],"duration":57.043,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":49.906,"geometry_index":15935,"location":[1.553135,47.758709]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":88.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":77.273,"geometry_index":15951,"location":[1.543328,47.751238]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":3.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.039,"geometry_index":16004,"location":[1.510755,47.733001]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.509414,47.732379],"geometry_index":16007,"admin_index":10,"weight":7.789,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.426,"bearings":[55,235,246],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.506438,47.730911],"geometry_index":16013,"admin_index":10,"weight":7.52,"is_urban":false,"turn_weight":1,"duration":7.066,"bearings":[32,53,232],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":10.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.566,"geometry_index":16018,"location":[1.504018,47.729626]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,228],"duration":10.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.965,"geometry_index":16025,"location":[1.500587,47.727643]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":281.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":253.742,"geometry_index":16029,"location":[1.496776,47.725266]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.047,"geometry_index":16192,"location":[1.391319,47.668656]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.719,"geometry_index":16194,"location":[1.390995,47.668347]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.390471,47.667839],"geometry_index":16196,"admin_index":10,"weight":22.57,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.086,"bearings":[34,214,227],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.384658,47.661508],"geometry_index":16206,"admin_index":10,"weight":7.031,"is_urban":false,"turn_weight":1,"duration":6.707,"bearings":[18,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":120.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":111.301,"geometry_index":16210,"location":[1.382993,47.659646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.344,"geometry_index":16287,"location":[1.350348,47.627584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,220],"duration":1.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.828,"geometry_index":16288,"location":[1.350238,47.627492]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":0.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.18,"geometry_index":16290,"location":[1.34972,47.627071]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.238,"geometry_index":16291,"location":[1.349666,47.627028]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":1.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.41,"geometry_index":16292,"location":[1.3496,47.626977]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.349193,47.626661],"geometry_index":16295,"admin_index":10,"weight":8.785,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.254,"bearings":[41,222,237],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.346418,47.624743],"geometry_index":16302,"admin_index":10,"weight":35.32,"is_urban":false,"turn_weight":1,"duration":34.328,"bearings":[30,47,227],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,249],"duration":62.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":64.262,"geometry_index":16324,"location":[1.333788,47.619408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.109,"geometry_index":16366,"location":[1.306922,47.616162]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":9.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.68,"geometry_index":16367,"location":[1.306441,47.616146]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":1.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.551,"geometry_index":16374,"location":[1.302173,47.616052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":377.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":358.707,"geometry_index":16375,"location":[1.30151,47.616046]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,244],"duration":13.953,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.898,"geometry_index":16605,"location":[1.12308,47.606707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":324.809,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":292.324,"geometry_index":16614,"location":[1.117636,47.604786]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244,258],"duration":7.941,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.141,"geometry_index":16777,"location":[0.988095,47.546871]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.985004,47.545822],"geometry_index":16783,"admin_index":10,"weight":48.211,"is_urban":false,"turn_weight":0.5,"duration":53.016,"bearings":[49,63,243],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":3.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.105,"geometry_index":16803,"location":[0.965293,47.537193]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":0.246,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.215,"geometry_index":16804,"location":[0.964033,47.536599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":12.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.648,"geometry_index":16805,"location":[0.963943,47.536557]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":34.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":30.121,"geometry_index":16806,"location":[0.959476,47.534452]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":49.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":44.797,"geometry_index":16815,"location":[0.946771,47.528581]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,246],"duration":1.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.418,"geometry_index":16845,"location":[0.92658,47.522309]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":13.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.184,"geometry_index":16846,"location":[0.92594,47.522119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.672,"geometry_index":16855,"location":[0.920513,47.52032]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":211.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":189.938,"geometry_index":16856,"location":[0.920235,47.520218]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":4.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.738,"geometry_index":16973,"location":[0.827998,47.492513]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":7.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.055,"geometry_index":16976,"location":[0.826137,47.492025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.598,"geometry_index":16981,"location":[0.823659,47.491493]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.81928,47.490588],"geometry_index":16987,"admin_index":10,"weight":17.914,"is_urban":false,"toll_collection":{"name":"Péage de Monnaie","type":"toll_booth"},"turn_weight":15,"classes":["toll","motorway"],"turn_duration":15,"duration":18.238,"bearings":[69,248],"out":1,"in":0,"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,235],"duration":14,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.582,"geometry_index":16991,"location":[0.817907,47.490103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":94.34,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":84.898,"geometry_index":17001,"location":[0.814349,47.488933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,232],"duration":0.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.438,"geometry_index":17054,"location":[0.779748,47.476501]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,232],"duration":19.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.934,"geometry_index":17055,"location":[0.77959,47.476418]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":22.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":20.559,"geometry_index":17067,"location":[0.773358,47.472854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,219],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.328,"geometry_index":17081,"location":[0.766908,47.46821]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,219],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.16,"geometry_index":17082,"location":[0.766814,47.468131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,219],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.031,"geometry_index":17083,"location":[0.766486,47.467855]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,218],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.684,"geometry_index":17084,"location":[0.766474,47.467845]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":2.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.379,"geometry_index":17085,"location":[0.766283,47.467682]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217,227],"duration":16.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.07,"geometry_index":17087,"location":[0.765633,47.467117]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.761639,47.463186],"geometry_index":17097,"admin_index":10,"weight":52.602,"is_urban":false,"turn_weight":1,"duration":54.324,"bearings":[23,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[51,232,239],"duration":15.605,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":14.82,"geometry_index":17128,"location":[0.747339,47.451278]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.742405,47.448364],"geometry_index":17139,"admin_index":10,"weight":7.16,"is_urban":false,"turn_weight":0.5,"duration":7.027,"bearings":[24,42,221],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,212],"duration":4.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.902,"geometry_index":17148,"location":[0.740659,47.446784]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,206],"duration":29.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":28.207,"geometry_index":17153,"location":[0.739803,47.445776]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.574,"geometry_index":17178,"location":[0.736971,47.437674]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":71.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":68.25,"geometry_index":17179,"location":[0.736862,47.437216]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.094,"geometry_index":17210,"location":[0.730467,47.417434]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":13.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.832,"geometry_index":17211,"location":[0.730458,47.417409]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,199],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.035,"geometry_index":17217,"location":[0.729197,47.413977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,197],"duration":10.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.262,"geometry_index":17218,"location":[0.729195,47.413973]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214],"duration":1.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.309,"geometry_index":17229,"location":[0.727502,47.411476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,216],"duration":3.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.82,"geometry_index":17232,"location":[0.727214,47.411196]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.246,"geometry_index":17237,"location":[0.726293,47.410423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":1.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.977,"geometry_index":17238,"location":[0.726234,47.410378]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,226],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.281,"geometry_index":17241,"location":[0.725722,47.410019]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[0.725642,47.409967],"geometry_index":17242,"admin_index":10,"weight":9.137,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.145,"bearings":[46,227,237],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.746,"geometry_index":17253,"location":[0.722823,47.408569]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.72258,47.408481],"geometry_index":17255,"admin_index":10,"weight":1.777,"is_urban":false,"turn_weight":0.5,"duration":1.254,"bearings":[51,62,243],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,245],"duration":2.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.082,"geometry_index":17257,"location":[0.72217,47.408342]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.512,"geometry_index":17261,"location":[0.721488,47.408129]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.977,"geometry_index":17262,"location":[0.721316,47.408076]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.367,"geometry_index":17263,"location":[0.720983,47.407979]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":3.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.91,"geometry_index":17264,"location":[0.720866,47.407945]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.297,"geometry_index":17267,"location":[0.719579,47.407571]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.969,"geometry_index":17268,"location":[0.71948,47.407542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,246],"duration":4.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.566,"geometry_index":17269,"location":[0.719159,47.407448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":14.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.395,"geometry_index":17276,"location":[0.717732,47.406979]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.078,"geometry_index":17292,"location":[0.714071,47.404529]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.996,"geometry_index":17293,"location":[0.714057,47.404512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":7.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":8.098,"geometry_index":17294,"location":[0.713734,47.404116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.777,"geometry_index":17297,"location":[0.712432,47.402518]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.656,"geometry_index":17298,"location":[0.71214,47.402161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.969,"geometry_index":17299,"location":[0.71188,47.401842]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":18.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":20.547,"geometry_index":17302,"location":[0.711728,47.401654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":2.52,"geometry_index":17303,"location":[0.708739,47.397978]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.27,"geometry_index":17306,"location":[0.708377,47.397536]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.809,"geometry_index":17307,"location":[0.708335,47.397485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.844,"geometry_index":17308,"location":[0.708217,47.39734]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.707951,47.397014],"geometry_index":17309,"admin_index":10,"weight":1.641,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.48,"bearings":[29,209,222],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":4.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":4.801,"geometry_index":17310,"location":[0.707746,47.396765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.445,"geometry_index":17312,"location":[0.707129,47.396015]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.379,"geometry_index":17314,"location":[0.706942,47.395775]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":0.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.887,"geometry_index":17316,"location":[0.706773,47.395556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":12.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":14.223,"geometry_index":17318,"location":[0.706668,47.395415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":8.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":9.938,"geometry_index":17332,"location":[0.705724,47.392893]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.706245,47.391105],"geometry_index":17340,"admin_index":10,"weight":9.895,"is_urban":true,"turn_weight":0.5,"duration":8.016,"bearings":[159,324,340],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":7.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.902,"geometry_index":17343,"location":[0.707167,47.389504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":20.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":24.348,"geometry_index":17344,"location":[0.708047,47.387989]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,338],"duration":21.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":25.43,"geometry_index":17348,"location":[0.710453,47.38385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":26.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":30.539,"geometry_index":17351,"location":[0.712932,47.379581]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":10.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":11.301,"geometry_index":17372,"location":[0.715214,47.374181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":12.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":13.77,"geometry_index":17380,"location":[0.71545,47.372036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":4.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":5.383,"geometry_index":17391,"location":[0.715223,47.369447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[0.714987,47.368444],"geometry_index":17396,"admin_index":10,"weight":30.211,"is_urban":true,"turn_weight":15,"duration":13.527,"bearings":[10,191,200],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":2.188,"geometry_index":17407,"location":[0.713921,47.365636]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":17.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":19.863,"geometry_index":17408,"location":[0.713728,47.365239]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,203],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.922,"geometry_index":17416,"location":[0.711773,47.361784]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":37.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":42.148,"geometry_index":17417,"location":[0.711672,47.36162]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,204],"duration":4.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":4.852,"geometry_index":17428,"location":[0.706994,47.354232]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.706431,47.35339],"geometry_index":17430,"admin_index":10,"weight":2.969,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":2.648,"bearings":[24,205,215],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":52.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":58.078,"geometry_index":17431,"location":[0.70607,47.352854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":32.617,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":35.039,"geometry_index":17448,"location":[0.698878,47.342048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":10.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.871,"geometry_index":17463,"location":[0.695388,47.334953]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":6.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.059,"geometry_index":17465,"location":[0.694399,47.332615]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.693759,47.331099],"geometry_index":17466,"admin_index":10,"weight":9.059,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.066,"bearings":[16,196,208],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.469,"geometry_index":17467,"location":[0.692906,47.329077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":5.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.656,"geometry_index":17468,"location":[0.692864,47.328975]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.039,"geometry_index":17470,"location":[0.692344,47.327736]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":1.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.066,"geometry_index":17471,"location":[0.69234,47.327726]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.199,"geometry_index":17472,"location":[0.692249,47.327494]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,194],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.938,"geometry_index":17473,"location":[0.692231,47.327448]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.039,"geometry_index":17474,"location":[0.692155,47.327242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,194],"duration":1.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.184,"geometry_index":17475,"location":[0.692151,47.327232]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.039,"geometry_index":17476,"location":[0.692052,47.326961]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":6.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.449,"geometry_index":17477,"location":[0.692048,47.32695]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.691533,47.325468],"geometry_index":17481,"admin_index":10,"weight":5.344,"is_urban":false,"turn_weight":0.5,"duration":4.977,"bearings":[3,13,193],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":4.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.234,"geometry_index":17483,"location":[0.691151,47.324358]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.527,"geometry_index":17485,"location":[0.690815,47.323388]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":1.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.719,"geometry_index":17486,"location":[0.690695,47.32304]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":5.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.93,"geometry_index":17487,"location":[0.690559,47.322645]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":50.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":47.742,"geometry_index":17489,"location":[0.690138,47.321426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.898,"geometry_index":17536,"location":[0.690573,47.309214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.035,"geometry_index":17537,"location":[0.690781,47.308745]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[163,172,343],"duration":42.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":40.254,"geometry_index":17538,"location":[0.690894,47.308491]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":0.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.062,"geometry_index":17578,"location":[0.691235,47.298095]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,199],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.719,"geometry_index":17579,"location":[0.691229,47.298082]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.242,"geometry_index":17581,"location":[0.691022,47.297658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":6.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.262,"geometry_index":17582,"location":[0.690994,47.297597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,205],"duration":11.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.738,"geometry_index":17589,"location":[0.690104,47.296081]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214],"duration":24.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":23.504,"geometry_index":17601,"location":[0.688064,47.293652]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.683437,47.288389],"geometry_index":17618,"admin_index":10,"weight":8.742,"is_urban":false,"turn_weight":1,"duration":7.949,"bearings":[18,26,205],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,198],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.996,"geometry_index":17623,"location":[0.682302,47.286523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":5.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.387,"geometry_index":17624,"location":[0.682187,47.286278]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":7.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.039,"geometry_index":17627,"location":[0.681584,47.284949]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":46.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":42.625,"geometry_index":17628,"location":[0.68074,47.283131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":5.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.633,"geometry_index":17648,"location":[0.673469,47.27153]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":42.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":38.172,"geometry_index":17650,"location":[0.672508,47.270319]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":3.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.152,"geometry_index":17680,"location":[0.666445,47.259473]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[13,190,200],"duration":13.266,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.918,"geometry_index":17683,"location":[0.666141,47.258536]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.665283,47.254981],"geometry_index":17689,"admin_index":10,"weight":34.48,"is_urban":false,"turn_weight":1,"duration":37.219,"bearings":[8,187,358],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":68.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":61.676,"geometry_index":17703,"location":[0.662514,47.244859]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[2,182],"duration":4.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.195,"geometry_index":17729,"location":[0.658323,47.226168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":7.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.871,"geometry_index":17730,"location":[0.658249,47.22495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,183],"duration":4.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.664,"geometry_index":17732,"location":[0.658132,47.223063]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":3.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.316,"geometry_index":17733,"location":[0.65805,47.222057]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,187],"duration":4.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.852,"geometry_index":17735,"location":[0.657971,47.221269]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,198],"duration":18.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.035,"geometry_index":17738,"location":[0.657765,47.220491]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,187],"duration":3.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.82,"geometry_index":17742,"location":[0.657208,47.219082]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":4.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.867,"geometry_index":17743,"location":[0.657165,47.218839]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.657108,47.218513],"geometry_index":17744,"admin_index":10,"weight":17.594,"is_urban":false,"toll_collection":{"name":"Tours centre sorigny","type":"toll_booth"},"turn_weight":15,"duration":2.879,"bearings":[7,187],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,184],"duration":3.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.754,"geometry_index":17745,"location":[0.657055,47.218232]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[4,176,196],"duration":14.613,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.121,"geometry_index":17746,"location":[0.657022,47.217926]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.656842,47.21503],"geometry_index":17753,"admin_index":10,"weight":8.996,"is_urban":false,"turn_weight":1,"duration":8.891,"bearings":[1,9,190],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":130.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":117.801,"geometry_index":17757,"location":[0.656193,47.212653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":39.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":35.195,"geometry_index":17780,"location":[0.640959,47.178619]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211,224],"duration":19.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.527,"geometry_index":17796,"location":[0.633431,47.169309]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.62956,47.164654],"geometry_index":17803,"admin_index":10,"weight":55.078,"is_urban":false,"turn_weight":1,"duration":60.105,"bearings":[17,27,206],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"bearings":[9,189],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":17834,"location":[0.622639,47.148926]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 10"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"type":"fork","modifier":"left","text":"A 10 / E 05"},"distanceAlongGeometry":138853.531}],"destinations":"Bordeaux, Tours, Blois","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 10/E 05/L'Aquitaine toward Bordeaux/Tours/Blois.","modifier":"slight left","bearing_after":173,"bearing_before":176,"location":[1.849316,47.910696]},"speedLimitSign":"vienna","name":"L'Aquitaine","weight_typical":4240.008,"duration_typical":4484.957,"duration":4484.957,"distance":138853.531,"driving_side":"right","weight":4240.008,"mode":"driving","ref":"A 10; E 05","geometry":"oqfkzAg}zoBd{@_JpMy@rMs@pM[tMUtMEdNDjMVzMl@jMz@jMpAhM~AhMpB`M`CjMvC~LdDnLnDdMlEjMdFdKrEt@^`K|EpLlGlLbHdLlH~K|HpKjI`LfJlKrJrKhKzJlKnJzKjJvLjJdMnFzHjBnCvInMvIhNlIvNxHrNvHjOtH`PbH~OxGpPnGrPdG~PxFhQrFvQdFxQ|EjRpEvR~D`RzD`SlDbS`D|RvCnSnCpT`CxStBbThB`T~AzTnAbTdA|Tx@rTl@pT^bURvTFrP?xBErUMtS[bUm@pTu@`U{@nTgAlTsCri@yCpi@W|EcCzb@wCxi@aDfn@eCnf@kCtj@eClj@_ArTy@tTy@|Ty@xTu@xTu@tTm@rTk@tTg@tTi@fUc@fUc@pT_@pTYvTWxTY`UU`UOpTKpTKxTEvTIhUCfUA`U@bUDjTDjTHjTJzTNzTd@vj@V~SVbU\\pT^nT^tTd@tTf@`Uf@hTj@hTp@tTr@vTr@vTv@vTx@hTz@fT~@rT`AhT`AjTlCri@tCvi@|Cti@|Cdi@dDhi@dDfi@lj@zvIvFj|@jb@fvG`k@l{I~IjvAbJjvAtDzi@xDzi@bEvi@hEzi@pEli@tEbi@zE~h@bFbi@hFbi@nFrh@rFph@`Gbi@hGhi@hGlh@nGhh@zGph@bHth@dHfh@nHph@vAxJn@lElDbV|Hdh@n@~Db@rCjFz\\jIfh@pIbh@jDjSfDdS~Irg@|Izf@xJzh@tJxg@rH~_@jMbo@hKrg@tKrg@~CtNdDhOtNno@dL|f@jLzf@nLff@xLlf@vLte@dMdf@lM~e@nMze@tMde@zMje@fNne@hNzd@nNxd@xN|d@xNhd@`Ofd@pOtd@jOvc@vO|c@~Ovc@~Ofc@pPpc@tP`d@zPhc@~P`c@`Qrb@nQxb@pQpb@xQfb@~Q`b@fRbb@fRla@lRja@dRh`@fR|_@nRz_@~Rf`@xRh_@fSt_@fSb_@nS|^nSl^pSd^pSt]nSb]vSd]zS`]~S|\\zh@|z@la@jp@bq@tfAbTd]`Th]dTd]~`D`gFrElHvsApxBtsAfxB`Wta@h{@tuA`Tz]zSd^lSv]tSn^nSp^jSz^bSp^xRv^xRz^rR|^rRj_@lRt_@fRn_@`Rt_@~Qx_@~Qf`@xQn`@tQn`@pQp`@hQp`@bQz`@`Q`a@bQja@zPpa@zPva@tP|a@lPra@jPbb@dPhb@bPlb@pOva@zOxb@pO|b@pO|b@p_@jeAnI|UzRhj@l}AznEf^tdAbOtb@r_@pfAlOlb@pOhb@xOfb@~O`b@bPza@lPta@pPla@pPba@|Pba@bQz`@fDtH~KdWjQj`@hQz_@xQd`@xQx_@`Rr_@lH|NrHhOhRb_@nR|^nRp^vRn^~Rj^dSd^fS|]jSp]|Sb^|Sp]rTz]lTj]rTb]zT`]`Ux\\~Th\\bU|[jU|[pUt[rUh[|k@dw@`xAjnBhjGdmI`i@ps@`IlLzXt^dHfJzTnZtTxZpT`[~SvZ|SzZfT|[xNrTjYzc@~Sz\\pSp\\xSj]pSp]`Sb]tR~\\nRb]tRx]rRb^vRd_@tRf_@vQf^|Q|^nQp^hQz^bQd_@~Pf_@zPl_@nPp_@lPv_@jP``@hPh`@bPj`@~On`@zOt`@z`@nbApJ|UfUjk@hdAdiCdThi@nf@rmAxFpN`cAxfC|bAhfCfPja@zOp`@xP~a@lPz`@rPx`@hFxL|JhUzPf`@lQp`@nQf`@hQh_@dRn`@|Qr_@dRl_@~Qv^dRp^lRp^nR`^pRt]vRt]zRn]~R`]fS`]hSv\\jSl\\|Sx\\`Tn\\fTl\\`Tp[nTx[tTt[nT|Z`Uh[~TzZ~TfZ~SzXxUpZhVvZlVlZjPbSzDvElVpYtVpYzVfY~VdYdWtXfWtXhWrXf_BzdBz~AldBh_BxdBt}DthE`~ApcBl~AzcBbxAj}AfEnEn~A~cB~~AndB~VjX|VpXrVrXnV|XhV~XpVpYfm@ft@`VjZ`VlZtUpZtUrZnU|ZhUb[fUf[dUt[~Tv[bUl\\~Tn\\xTx\\vT|\\jTb]nTh]`Td]bTv]~S~]vSz]pS`^tSr^fSl^hSx^dSb_@zR~^xRp_@pRl_@tR``@lR~_@dRd`@`Rh`@|Qn`@xQv`@pQz`@vKpVrDjIlQja@lQ~a@`Qta@zPza@zPdb@tPjb@nPnb@za@dfAza@zeAd}At~Dbl@zzA`b@bfAnP`b@nOx_@`Rld@`Q|a@~Pra@dQla@hQja@lQha@nQ|`@vQba@tQn`@tQf`@~Qn`@|Q|_@dR``@fRz_@lRt_@lRl_@nRf_@vRh_@xR`_@|Rz^`Sx^zKhSlAxBvClFhSl^lSh^nSf^nSr]tS|]zSv]bj@n}@|Rj[fT~\\fTv\\rTx\\nTl\\nTb\\xTl\\|T`\\xTp[`Uv[hUv[tTtZZb@~j@vv@~wAzoBjiAl}AlMjQpk@lw@dUh[bUn[bUz[xT|[|Tf\\vTr\\tTx\\pT`]hTb]pTz]~Sn]~Sz]zS~]vSj^pSl^lSt^hS|^`S|^|R`_@`Sv_@vRx_@tR|_@xe@jaA`Rd`@|Ql`@xQr`@tQz`@nQ|`@jQda@`Qda@bQra@vPpa@|Phb@pPbb@lPfb@hPpb@`Prb@|Oxb@xO~b@rOdc@lOjc@fOnc@`Orc@|Npc@|Nrc@h_@hiAr_ArsCj_@liAl_@liAnO`d@rOzc@zOrc@xObc@dD`JdKnXxO|a@hPfb@lP`b@nPta@nIpSjFdM|Pna@bQfa@hQ`a@pQfa@pQn`@xQl`@zQ~_@dRb`@dRp_@fRd_@`IrOf\\vn@rf@j~@jf@v}@hg@h_AvnAd~BrnA`~BzR|^rRj_@tRz_@hRv_@hRp`@|Qh`@vQr`@tQba@pQla@bQja@`Qxa@zPbb@rPdb@jPnb@lGjPvGdQ~O~b@vO`c@nOlc@hOlc@bOvc@|N`d@pNvc@hN~c@hNnd@`Nxd@vM|d@rMde@fMde@fMxe@zLpe@rLze@jL|e@fLbf@hLlf@dYrlAts@~zChY~lAnYpmAhLbf@rLze@xLre@bMpe@hMde@vM~d@|Mzd@fNtd@jN~c@tNdd@~Nxc@hOrc@pOpc@vO|b@~Ovb@fPnb@pPfb@zPdb@dQ`b@hQna@pQha@tQp`@zQl`@jRl`@lRz_@pRn_@|Rh_@bS~^hSr^nSd^vS`^dTz]fTl]lTb]jTx\\nTb]hTv\\tTh]bkDtoF`uAjwB~i@h{@bMbSbFdIbT|]xSz]rSd^rSt^fSv^bSb_@|Rh_@vRr_@tR~_@jRb`@fRn`@|Qr`@|Qda@vQja@dQda@fQra@~Pza@rP|a@rPjb@lPtb@bPvb@~O~b@tOfc@pOpc@hOxc@bOvc@h|@`kCf{@lhCb_AfqCf_@thAfO~c@`Opc@v_@viAf_@nhAbOrc@lOnc@hOzb@xO`c@|Otb@jPxb@jPdb@rPdb@tPpa@|Pna@fQna@`EhJjKzUrQ|`@xQr`@bRr`@jRj`@lR|_@rRv_@xRl_@~Rb_@hSb_@hSn^fS~]bTn^xSt]bTt]fTd]jTz\\vT~\\tTf\\~Td\\dU|[jUp[nUh[tU`[xUtZ~UjZdVfZbVnYtVtYnVdYvVxXdWxX`EjE|PxQj@l@|UxVxG|GpNrNnWhWrW|VxWtVzWjVdX`VfXxUrq@hl@xcBbyAlnA`fApg@hc@fXpUjXtUdXnUdXrUdX`V~WdVvWlVrW~VpWfWpWtWdWxWdWdXzVlXnVjX`WrYjVfYhVtYhVdZ|UbZxUrZzU`[tUh[nUx[dUx[dU`\\fk@`y@pk@jy@vk@ry@rl@zz@lUl\\tUr\\vUb\\~Ux[bVv[hVh[pV~ZrVtZzVnZ|V~YpWfZtWvY`XxY~WdYjX|XnXtX~XrXnWtVfWbVlWrUnWlUhWxThWhTrWfTxW`T~WtSdXlSdXbShXvRhXhRlX`RrXzQ|k@d`@nEvCheBpjArXzQpX~QlXhRfXtRdXfSzWzSvWlTjWdUdWtUpV|UfUrUjVnW~U~WpUjXnUdYfDfEvDzEzTzYlCnDtAjBdBbC`ArAzHvKxF`IjLtPhT|[dTz\\rS`]dSp]zR`^hBfDnOrYbRd_@xQr_@hQ~_@nQha@bPf`@jPna@tOpa@rOrb@|Nlb@pNdc@`Nbc@vMvc@fMdd@vLpd@nLbe@bLpe@nKne@bK|e@tJff@dJtf@|Ijg@hIjg@vHlg@jHxg@dBnMtDlYjGdh@zFbh@nFvh@zEph@vExh@tE|h@hE`i@dErh@dE|h@zD|h@dDde@`Dhe@nDbi@hDhi@dDfi@zC|h@xChi@rCvi@x@~O~EhcAfCbj@~Bti@xBvi@rBzi@nB`j@jB`j@bB~i@`Bbj@xAtj@tAxi@nAzi@d@bU`@hTdAhj@`Ajj@v@xi@p@be@^`]@t@b@rd@f@bj@`@dj@\\nj@Vlj@Tdu@Jlh@Bvk@Arj@Cjj@Ijj@IdYGpPUlj@Ybj@_@bj@c@`j@i@`j@m@fj@y@rn@s@ze@y@bj@_Abj@cA`j@eA`j@iAvi@kAdj@qAdj@qAfj@wAtj@wAdj@yAbj@{Abj@}Abj@_E|uAoKllDuK|jDsKrkDqK~kDwKfmDuKdlDuKhlDuKvlDuKhlDqKjkDqKvjDcEjtAaBdj@_Bbj@{A|i@yAvi@wAbj@sAbj@mAxi@kAhj@eA`j@_A`j@y@|i@s@hj@o@`j@e@|j@]dj@Wlj@Opj@Cpj@Brj@Lpj@Xzj@`@tj@h@di@t@nj@|@~i@hA`j@nAti@r@pWf@tQdBfj@nBxi@xBbj@`Cxi@lCxi@tCri@|Cpi@hDri@rDvi@zDri@fEji@pEri@zEvi@`F~h@jFbi@tF|h@tF|h@xF|h@nFvh@lDr^t@bIzEni@tEhi@fEji@~Dni@tDri@jDhi@bD~i@vCji@jCji@fC~i@zBxi@pBri@dBxi@|Axj@tAbj@lA|i@`Afj@v@nj@l@fj@d@rj@Xlj@N~i@Fhj@Ajj@Khj@Wnj@_@jj@g@jj@s@dj@y@xi@_Apj@gAdj@mAfj@oAdj@uAfj@uAdj@wAfj@oDjuAwAzj@sA~i@oAbj@iAlj@gAfj@_Alj@w@lj@q@nj@g@vj@_@dj@Wpj@Otj@Gfj@@nj@Dnj@Rjj@Tpj@^rj@f@rj@l@nj@t@hj@|@nj@bAjj@jAjj@pAvj@xA|i@~Afj@dBhj@hBdj@rB`j@xBlj@~Bbj@dC`j@jCbj@pCpi@tCxi@zCzi@`Dri@fDvi@lDxi@v@vLxB~[tD`i@zDvi@bE|i@dEfi@fEdi@lEfi@rEbi@xEni@zEli@|Edi@dFfi@hFfi@jF|h@nFvh@tFdi@xFbi@vFfh@|Fhh@`Ghh@dGhh@fGrh@rGnh@rGlh@vGlh@vG~g@`Hth@`H`h@hHhh@jHdh@nHdh@pHvg@tHtg@xHvg@|Hxg@bI|g@fIzg@jIrg@nIrg@lIdg@vIfg@zIvg@|Ifg@`J|f@bJlg@`Jhf@xJbh@nJtf@nJnf@rJlf@|Jrf@bKbg@dKrf@fKlf@jKnf@nKlf@vKnf@xKnf@xK|e@|K|e@rFlUrD|OnLpf@vLfg@~Lbg@`Mdg@jM~f@bMlf@tMlg@|Nhj@bLjb@vMhf@|Mff@`Njf@lNtf@nNpf@hNze@pNve@nNje@rNfe@~Mhc@hNvc@nNtc@jNjc@vNvc@xNlc@|Njc@~Njc@`O|b@hOdc@x_@zfAd`@hfAr`@zeAv`@|dAra@heA~a@zdAhb@hdAvb@tcA|b@vbAvc@fcArc@zaA`d@xaA`d@faAzc@haA|c@zaAdQj`@bQl`@hQda@fQja@xP`a@vPfa@nPja@rPxa@hP|a@xGvPnGhP`Pdb@~Ojb@tObb@vOrb@lOlb@jOpb@lOvb@fO|b@hOzb@fO`c@t_@|gAlM`_@tPnf@h_@rfAdOxb@hOtb@rO`c@pOzb@xO~b@~O|b@zOrb@dPlb@hPlb@pPjb@fPra@tPva@zPta@lPj`@nPf`@vQ~a@xQ|a@jQv`@rQv`@vQr`@vQ~_@zQ|_@xQp_@dRt_@hRp_@lRj_@pRf_@rRb_@vR~^zR`_@`Sz^~f@h~@`Vfc@dP~YdoAb}BbnAr}BxRf_@vRn_@rRp_@pRx_@hRz_@hR``@bRj`@`Rr`@xQl`@vQz`@tQda@jQz`@fQba@`Qfa@~Pna@zPra@vPxa@hPja@lPbb@hPdb@dPnb@xOfb@zOrb@xOxb@pO|b@rOjc@hOfc@dOlc@bOtc@~N~c@vNtc@pNzc@rNjd@bNvc@dNrd@|Mfd@vMnd@tMld@pMtd@fMtd@bMxd@`Mxd@xL~d@tL|d@xLve@rLxe@jLne@hLpe@dLte@bLxe@`YvlAxX~lAtX|lApX`mArX`mAnX`mAneBpwHpeB|wHnt@fbD|o@btCvXrmAxXrmA`r@zzClr@r{CnXxlArXdmAbm@|jCNl@xCpM`YxlAjLdf@nLbf@hF`TxKrc@tLje@zLhe@`Mfe@hMde@fS|s@fOlh@|Mdd@dNbd@~Lr`@nNpc@~Nvc@~Ndc@dO~b@tOhc@pOnb@v}@fdC`bAnmC|dCt{Gf\\b}@bd@vmArArDpbCdvGzeCj}GreC||GpOzb@hObc@bOhc@|Njc@tNxc@pNdd@f@`B~L|`@|Mfd@xMld@pMrd@lM|d@bM~d@|Lfe@tLne@nLte@`Lle@|Kte@vKdf@pKdf@hKlf@fK~f@vJhf@rJbg@zIje@nJhh@fJhh@xItg@vIxg@fTxpAjTvpAtIxg@xIxg@~Irg@fJrg@|TpkAf@lCzJ~f@bKzf@jKxf@pKnf@zKpf@bLlf@hLbf@pL~e@xLze@tG~VjEjPbLlb@hMde@vMpe@tMxd@zMxd@~Mxd@bNvd@dNtd@fNtd@jNrd@~{@|sC|{@~sC~bC`aItq@h{B|Mjd@|Mld@tMnd@pMrd@jM~d@dMhe@zLne@rLte@hLle@bL~e@|Knf@nKhf@hKtf@~Jrf@tJtf@lJ|f@bJ~f@lJli@pJjk@fJjk@~Itk@xStxAhHfi@vGfh@tGbi@vGpk@vGnl@lGrl@lG|m@hG~m@hG`n@dG`n@hExb@z@xIvO~|AnGhm@tGfm@xGxl@`Hdm@hH~l@nHtl@vHhm@tHvk@`Ill@bIvk@nIjl@tHhh@zHhh@|Hpg@`Ipg@hIvg@nIrg@pIng@xIlg@|Ilg@bJfg@fJ~f@nJng@nJlf@vJ`g@zJrf@bKzf@bKff@jKlf@pKjf@rKff@zKdf@|K~e@bLxe@jLve@lLxe@pLte@rLve@tLte@dZrkAnLhe@lLne@hLte@fLxe@`Lze@|K~e@vKdf@rKjf@lKdf@bKbf@bKhf@|Jpf@xJpf@rJvf@nJ`g@nJbg@fJ|f@bJ`g@dJng@`Jrg@rThoApT~oAhTbpAjT`pAhTdpAhTbpAfTjpA`TloAJj@tT|qAlG~^r@fEtIpg@vC~UnC~UtJ`}@~L`iAfOntAbFzb@|Fvb@zIbh@Jj@~Hrc@rExQzF`QxDhKxI~UrFbQbFjQlEvQjEzQfFbVvEjVhDrRdDtRfIlf@xIhh@pI`g@pVzxAbT~nAhTdoAnTznAzIvf@|Ixf@~Ipf@bJpf@hJpf@jJpf@rJnf@rJff@zJdf@~Jbf@fK~e@jK~e@lKre@tKte@xKte@|Khe@bLde@jLje@lL`e@pLrd@xL`e@~Lxd@`Mpd@fMnd@jMhd@rMdd@zMhd@vMvc@bN~c@hN~c@fNbc@jNdc@rN`c@xN`c@zNzb@|Nrb@dOnb@vLx\\fRbh@vOhb@vOxa@~Oza@dPta@`Pfa@hPda@lP~`@rPx`@dDzHdL`XxPp`@dQx`@lQl`@pQj`@rQx_@xQ|_@|Qn_@bRj_@lRd_@hRr^hUxb@nQb\\tQz[lRp\\vPlYzSv]xS|\\|Sn\\fTn\\rTd\\pTp[|Tn[bU`[hUtZlUlZ|CzDfPnSRVdI|JjKlM|UdYvUlX|UbXrVlXxVxWja@bb@tXrXfWpVfWhVfWxUvRjQvUbTbXbVdX`VxWtUnp@fl@jp@vl@nW`VlWdVjWpVfWzV~VbW|VpWpVzWjVlXbVzXxUjYrU~YjUtZbUh[vTr[dTb\\zSt\\pSl]hS~]zRj^nRz^hRj_@vQr_@tQ|_@tQt`@nU`h@`cAb~BlQr`@tQr_@nH`OzH|N~HtNfIlNdI~MhIjMzIvM|DvFbDrEbJzLjJtLjJfLpJ|KxJtKzJfKzJvJrK`KfKhJlK~ItKxIzKnIvKzHbLrHhLjH`LvGlLrGfL~FrLzFvLnFvL`FxLtEzLhE~LzD~LpDbMdDbMzCbMlClMbCjMxBhMrBhMnBjMhBrZ`ErZ`Ejz@lLdx@jLjx@|Lr[xEt[dFr[fFt[jFt[nFr[pFt[xFt[xFr[|Fr[`Gr[dGt`AbRhw@|Ofw@jPtw@|Pp[dHp[jHl[jHl[nHj[pHj[vHh[vHh[zHpw@~Rrw@jSxh@`Nbx@pSnw@lSnw@hS~oBtg@tm@zOtA\\p@PvA^`t@bR|pB~g@dMjDfMpDhOvEFBpJbD|LrEnZvMxLjG|GxDjP~J~KvH|KfIpKrIdK|IfKpJlDlDlEpErD~DbElEnJ~KrJvL`JxL~FpIxAtBrItMnIhNh@~@fB~CbD|FtHvNtHpOhHtO~GdPpGbPjGxP~F`QtFlQlFpQnC`KpA|E|AfGvB|I|CtMn@pCrAlGnB~ItDrQhBvI`ExSbAhF~FpZ|E`WlGx[x@dEzD`SJh@xB|KdErRhElRrEhRrDlNJb@\\pAbFxQlFjQxF~PpGhQvGhPdHxOxHfOdIjNxI`N`JvLtJbL`KfKjKlJpK|IvKlI`@ZvWdSfr@ph@hWzRhW|RhUfQ|RfO`HhFx@n@ZTvdFxyDDBbTjPhEbDdBrA`HjFjSrOpNxK~MfKz^hY@@|MrJFDlLjIDBrGlE@@vMdIdLpGtL`G`MpFtLfEpCn@tH~BhMpCzMrBtGr@~RbAtMZj@?dLAtMi@nMmAlMyBdM_D`MaEzSwIxDcBjTaKlu@q^fW_Mt}A_v@jk@wXrkBc~@~p@_\\tv@o_@jhBg|@hkB{}@bt@y]p[gOlZuNvLyFxLsFrLgFrLeFxLcF~LyE~LuE~LkEhL{DlLqD`NwD`NkDfM{ChMsCjMiClM_CrMyB~[yE~KyAxYaDlMgAnM}@rMs@jMm@pMa@rM[bSOzN?tMDnMNvMVrM^pMf@vMp@jMx@rMbAtMjAjMrAtM`BpMfBnMnBhMvBrCd@jV|EdNtC|LvC|LzCjMdDjMpDfMtDfMzDbM~DbMfEpVxIxW`KxWvKnZjMdZvMfZfN|YrN|YzNdZnOb[`PfIhE~aCrpArgBl`AzYtOzYzO|YbPdYzObYxOtYbPrYfPpYrPfL|G`MlHpe@vXn`@pU`nB`jAvZpQnYzPxYzPhYrPhr@na@z@f@dt@rb@pt@|b@xs@nb@lt@zb@pt@zb@fYtP~YtPx^jSvTrLj]pQzVfMhZxNhZpNpZfNpZxMvZpMvZbMvZvLb[nLxZ|Kd[zKb[jKb[|Jnw@tVt\\tKjd@zNvkB|l@v}A~f@j}Bht@jErArj@nQx`@~LRFnMtDzAb@zKvCRF|OdETFj]vIr[zHnS`FbLnCzNnDnt@jQnBd@bx@xRvTnFtWnGb@J`jA|X`a@xJl[pHl[fHx[|GbM`ChM~BhMvBhMpBjMjBjM`BjMvAnMnAlMdAnM|@hMt@lMn@tM`@nMXrMRnMHpM?pMGrMOpMYnMa@nMk@nMo@nM_AlMeAnMmAlMwAlM}AnMgBjMsBjM{BjM_CfMkCfMuCdMyC`MkDnQ{EbMsDbMyDbM_Ef[iKb[kK`FcBh\\_LzNaFbPuFjNsEn[}Jj[gJfMgDhMcDpM{ClMmCnMiCtM_CrMsBxMkBrM_BpMsArMmA~MaAlMs@hMi@rMe@nMWtMKxMGvMBtj@fArMj@rMt@x[jCjMrApM~AjMdBhMpBnM|BjMfCjMlC~L|CjM~CvLlDfMtD|LxDhIbDXJdPrGhHhCxBv@fMpEjLvFtLrFnL~FpLjGlLvG|KpGdLfHdLlHzKrHxK~HzKjIzKrInKvIlK~IlKlJhKrJdKrJbKvJnWpWro@np@jWxWpWjWxKjKzKdK~K~JbLtJbLhJxKxI|LhJvK`IvLnIxLdIz\\lTjShMrWvPpXtPzSrLjRvJp^rPfRfIhNdFj[zKbZpKpZfKrpBvs@db@jNbv@xVvq@~TfXxIxWfJ|a@nOn^tPjAh@~t@b_@lVjNbVxMfm@l]|UxN|UbOxUfO~UnOrr@jf@xr@fg@|wAhfAfa@hZbv@|j@pSbOhW`R`l@ha@f_@~Vn_@jVxRzL|RpLfL|GdLxGhLrGhLlGtYrOrYlObPbI`PvHha@dRjS~IlSvInSlIlSfIpZjLrZxK|ZlK~ZzJpPdFnP`FrPzEpPrE|[nIr\\dIlFlAvJzBnX`GhT`F`mAvSvXhEx[vEz[pEj]tEh]pEri@zFhi@vGxsAfPfmAfPne@dHxf@bIda@fHra@zHl]hHbi@tL|h@jM|i@`Ndp@vQz]hK@?jQhFdhCpt@v[jJp]xJhV`H`ZfIdWfHra@vKdX|Gni@jMl[xGj[pGt[dGr[rFpx@dMr[hEv[~Dhj@dGtj@dFt[dCr[zB|j@|C|j@dClq@fCtgGvObkArC~u@hB|}@~Bz}@bDxUfAlYtAlHn@nUfCtObFlFnB`YlKr`@~L|SzCdNtAjSpBpPhBbR`Ah`@gBnZsB~KYhKRxW`BnZfDpi@~H|f@`I`g@zI~f@hJp[hGnL|B~h@xKrw@lRji@dNri@tN|v@zTdw@|UphKxiDbe@jOzrLr|DdzEl~A`lBhn@bmBxo@tkAbb@pkA|b@pn@`V|u@vZjm@~Wbm@pXzp@z[np@v\\~m@p\\hPfJn\\dRdf@zYff@nZfc@nY|b@|Yl]pVd]~V`TvO|S`P`UhQbUtQ|d@f_@td@|_@boAdfAnp@rk@tp@bk@pj@xe@l}@`u@rq@zi@vk@pc@jh@t_@`WrQbWhQ~b@`Ype@hZ~ZrQ`VlN`VbNvg@lX`S~JfSvJ|aAtc@jBz@jSzIjVpKhV`KjW~JhWpJtStHzSfH|h@`Qdi@~O~g@lN|TzFzTpFt[rHx[fHz[~Gvd@jJfSxDhSjDfnAdSrrArSb\\`Ftu@dLnaCp_@h_AnQj_@xHj_@hIfZbHvc@dLbX|H`XjIrXlIpX|Idt@nV"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 190 miles.","announcement":"Continue for 190 miles.","distanceAlongGeometry":306222.969},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 1.","announcement":"In 1 mile, Keep right to take exit 1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 1.","announcement":"In a half mile, Keep right to take exit 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 1 onto E 05 toward Toulouse, Bayonne.","announcement":"Keep right to take exit 1 onto E 05 toward Toulouse, Bayonne.","distanceAlongGeometry":220}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[17,194,199],"duration":14.262,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.816,"geometry_index":17846,"location":[0.619889,47.140401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.48,"geometry_index":17849,"location":[0.618077,47.136586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":12.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.527,"geometry_index":17850,"location":[0.617055,47.134683]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.61495,47.131376],"geometry_index":17855,"admin_index":10,"weight":7.426,"is_urban":false,"turn_weight":1,"duration":7.16,"bearings":[25,30,205],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":3.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.273,"geometry_index":17862,"location":[0.613545,47.129546]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,213],"duration":19.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.656,"geometry_index":17866,"location":[0.612758,47.128673]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":37.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":34.938,"geometry_index":17881,"location":[0.607621,47.124408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,211],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.945,"geometry_index":17907,"location":[0.597459,47.115964]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":13.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.109,"geometry_index":17908,"location":[0.597238,47.115715]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,207],"duration":4.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.051,"geometry_index":17917,"location":[0.594371,47.112307]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":3.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.27,"geometry_index":17920,"location":[0.593586,47.111221]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204,220],"duration":27.227,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":25.859,"geometry_index":17923,"location":[0.592982,47.110335]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.589262,47.103028],"geometry_index":17942,"admin_index":10,"weight":9.492,"is_urban":false,"turn_weight":1,"duration":8.957,"bearings":[8,15,194],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.5,"geometry_index":17948,"location":[0.588406,47.100511]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":125.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":116.004,"geometry_index":17949,"location":[0.588359,47.100363]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.754,"geometry_index":17989,"location":[0.588584,47.064269]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":41.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":37.457,"geometry_index":17990,"location":[0.588632,47.064031]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.121,"geometry_index":18021,"location":[0.588136,47.052074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":21.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":19.52,"geometry_index":18022,"location":[0.588009,47.051739]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,208],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.719,"geometry_index":18035,"location":[0.584759,47.046064]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209],"duration":2.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.641,"geometry_index":18036,"location":[0.584602,47.045864]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":1.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.07,"geometry_index":18038,"location":[0.584006,47.045142]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":42.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":39.344,"geometry_index":18039,"location":[0.583757,47.044851]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.562,"geometry_index":18062,"location":[0.572309,47.033485]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,209],"duration":15.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":14.301,"geometry_index":18063,"location":[0.572177,47.033328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":4.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.633,"geometry_index":18073,"location":[0.569212,47.029201]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":0.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.141,"geometry_index":18075,"location":[0.568533,47.028124]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[24,202,217],"duration":24.062,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":21.637,"geometry_index":18076,"location":[0.568506,47.028082]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.564742,47.021675],"geometry_index":18081,"admin_index":10,"weight":13.734,"is_urban":false,"turn_weight":1,"duration":14.172,"bearings":[18,22,202],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":6.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.059,"geometry_index":18082,"location":[0.562521,47.017907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201],"duration":19.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.168,"geometry_index":18083,"location":[0.561463,47.01612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":17.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.461,"geometry_index":18085,"location":[0.558558,47.011068]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":8.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.73,"geometry_index":18087,"location":[0.555886,47.006536]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[21,201],"duration":4.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.207,"geometry_index":18089,"location":[0.554584,47.004258]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,200],"duration":14.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.359,"geometry_index":18090,"location":[0.553896,47.003013]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.535,"geometry_index":18099,"location":[0.551965,46.998998]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":73.32,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":65.973,"geometry_index":18101,"location":[0.551625,46.99822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.484,"geometry_index":18140,"location":[0.546516,46.974758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":28.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":24.789,"geometry_index":18141,"location":[0.546531,46.974581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.41,"geometry_index":18146,"location":[0.548036,46.965452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":7.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.543,"geometry_index":18147,"location":[0.548062,46.965303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":76.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":68.688,"geometry_index":18149,"location":[0.548475,46.962893]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":16.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.578,"geometry_index":18178,"location":[0.547902,46.947748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":55.238,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":48.316,"geometry_index":18181,"location":[0.546293,46.942609]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.027,"geometry_index":18205,"location":[0.537755,46.925756]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":6.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.699,"geometry_index":18206,"location":[0.537746,46.925745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,212],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.035,"geometry_index":18209,"location":[0.536465,46.924187]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,209],"duration":38.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":33.496,"geometry_index":18210,"location":[0.536456,46.924177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.035,"geometry_index":18217,"location":[0.53027,46.916688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,209],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.91,"geometry_index":18218,"location":[0.530263,46.91668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,210],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.684,"geometry_index":18221,"location":[0.529031,46.915179]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":28.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.523,"geometry_index":18222,"location":[0.528905,46.91503]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[25,203,231],"duration":18.051,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.23,"geometry_index":18233,"location":[0.52451,46.909416]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.522054,46.904619],"geometry_index":18244,"admin_index":11,"weight":19.266,"is_urban":false,"turn_weight":1,"duration":20.316,"bearings":[0,16,193],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,190],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.445,"geometry_index":18257,"location":[0.520542,46.898836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":9.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.992,"geometry_index":18258,"location":[0.520507,46.898696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":43.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":38.938,"geometry_index":18262,"location":[0.519891,46.895835]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,180],"duration":145.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":134.863,"geometry_index":18274,"location":[0.517667,46.883411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,187],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.816,"geometry_index":18354,"location":[0.525506,46.841932]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186,191],"duration":13.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.973,"geometry_index":18355,"location":[0.525463,46.841688]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.524725,46.837908],"geometry_index":18360,"admin_index":11,"weight":80.406,"is_urban":false,"turn_weight":1,"duration":81.449,"bearings":[3,10,191],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.922,"geometry_index":18393,"location":[0.514788,46.815784]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,191],"duration":52.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":49.852,"geometry_index":18394,"location":[0.514693,46.815519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":3.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.125,"geometry_index":18418,"location":[0.512055,46.798605]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193,201],"duration":26.066,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":24.105,"geometry_index":18422,"location":[0.511723,46.797532]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":22.852,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.121,"geometry_index":18432,"location":[0.508429,46.790551]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,212],"duration":1.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.723,"geometry_index":18446,"location":[0.504032,46.784806]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214,218],"duration":21.48,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.859,"geometry_index":18449,"location":[0.503614,46.784359]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.498308,46.77959],"geometry_index":18454,"admin_index":11,"weight":96.758,"is_urban":false,"turn_weight":1,"duration":103.531,"bearings":[39,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,240],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.715,"geometry_index":18495,"location":[0.462542,46.763056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,240],"duration":96.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":89.418,"geometry_index":18496,"location":[0.462268,46.762946]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":24.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":22.441,"geometry_index":18543,"location":[0.430731,46.745669]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.754,"geometry_index":18555,"location":[0.421937,46.742188]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,245],"duration":51.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":46.516,"geometry_index":18556,"location":[0.421633,46.742088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":129.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":116.105,"geometry_index":18587,"location":[0.403171,46.734472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":2.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.258,"geometry_index":18641,"location":[0.371706,46.704884]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196,213],"duration":15.695,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.5,"geometry_index":18642,"location":[0.371403,46.704213]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.369865,46.699919],"geometry_index":18651,"admin_index":11,"weight":49.691,"is_urban":false,"turn_weight":1,"duration":51.273,"bearings":[12,192,358],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":31.133,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":30.348,"geometry_index":18674,"location":[0.362905,46.686192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.602,"geometry_index":18696,"location":[0.358802,46.676526]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[9,187,238],"duration":8.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.902,"geometry_index":18697,"location":[0.358527,46.675377]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.358032,46.672953],"geometry_index":18701,"admin_index":11,"weight":27.09,"is_urban":false,"turn_weight":1,"duration":26.098,"bearings":[9,188,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189],"duration":0.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.309,"geometry_index":18707,"location":[0.356587,46.665926]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,188],"duration":48.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":48.469,"geometry_index":18708,"location":[0.356569,46.665847]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":51.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":50.066,"geometry_index":18737,"location":[0.355365,46.652604]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.398,"geometry_index":18768,"location":[0.353613,46.638625]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.277,"geometry_index":18769,"location":[0.353487,46.63823]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.387,"geometry_index":18770,"location":[0.35346,46.638147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":9.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.367,"geometry_index":18771,"location":[0.353335,46.637753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.309,"geometry_index":18776,"location":[0.352546,46.635081]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":1.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.469,"geometry_index":18777,"location":[0.352448,46.634719]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.289,"geometry_index":18778,"location":[0.352342,46.634314]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":5.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.941,"geometry_index":18779,"location":[0.352322,46.634233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":16.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.363,"geometry_index":18782,"location":[0.351928,46.632616]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":3.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.562,"geometry_index":18796,"location":[0.350435,46.627275]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.16,"geometry_index":18801,"location":[0.349903,46.626147]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[20,201,214],"duration":6.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.191,"geometry_index":18802,"location":[0.349712,46.625785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":17.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.484,"geometry_index":18807,"location":[0.348735,46.624173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,218],"duration":2.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.027,"geometry_index":18815,"location":[0.34503,46.619971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,220],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.367,"geometry_index":18816,"location":[0.344531,46.619532]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.344183,46.619248],"geometry_index":18817,"admin_index":11,"weight":44.461,"is_urban":false,"turn_weight":1,"duration":43.469,"bearings":[34,40,219],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.863,"geometry_index":18840,"location":[0.330641,46.611677]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.57,"geometry_index":18841,"location":[0.330368,46.611539]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":2.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.617,"geometry_index":18842,"location":[0.33019,46.61145]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.973,"geometry_index":18844,"location":[0.329364,46.611039]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":21.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.84,"geometry_index":18845,"location":[0.329057,46.610887]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":3.605,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.691,"geometry_index":18858,"location":[0.322427,46.607225]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.492,"geometry_index":18859,"location":[0.321352,46.606586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":20.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.984,"geometry_index":18860,"location":[0.320899,46.606316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,224],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.148,"geometry_index":18870,"location":[0.314769,46.602316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,224],"duration":122.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":119.465,"geometry_index":18871,"location":[0.314439,46.60208]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":9.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.254,"geometry_index":18932,"location":[0.289479,46.573433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":37.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":36.641,"geometry_index":18933,"location":[0.288822,46.57087]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":2.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.539,"geometry_index":18946,"location":[0.285407,46.558909]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.285104,46.558094],"geometry_index":18949,"admin_index":11,"weight":1.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.535,"bearings":[14,198,206],"out":1,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":13.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.965,"geometry_index":18950,"location":[0.284913,46.55769]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.28271,46.554346],"geometry_index":18964,"admin_index":11,"weight":8.23,"is_urban":false,"turn_weight":0.75,"duration":7.68,"bearings":[20,32,213],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":5.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.129,"geometry_index":18972,"location":[0.28051,46.55237]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,231],"duration":0.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.379,"geometry_index":18977,"location":[0.27872,46.551195]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,232],"duration":46.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":44.434,"geometry_index":18978,"location":[0.278578,46.551116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.656,"geometry_index":19027,"location":[0.258449,46.54523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":16.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.652,"geometry_index":19028,"location":[0.258179,46.545097]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.641,"geometry_index":19038,"location":[0.252098,46.541542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":262.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":236.195,"geometry_index":19039,"location":[0.251848,46.541391]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,274],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.043,"geometry_index":19198,"location":[0.152375,46.51103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":22.879,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.574,"geometry_index":19201,"location":[0.151306,46.511078]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,264],"duration":8.305,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.469,"geometry_index":19219,"location":[0.141368,46.510944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":183.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":164.828,"geometry_index":19224,"location":[0.137842,46.510639]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.527,"geometry_index":19298,"location":[0.071716,46.484756]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":43.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":38.988,"geometry_index":19299,"location":[0.071555,46.48463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,241],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.879,"geometry_index":19326,"location":[0.05788,46.476134]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":92.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":83.305,"geometry_index":19327,"location":[0.057092,46.475828]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,239],"duration":3.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.746,"geometry_index":19379,"location":[0.020436,46.465794]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,238],"duration":1.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.371,"geometry_index":19382,"location":[0.019323,46.465319]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":6.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.898,"geometry_index":19383,"location":[0.018776,46.46508]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":69.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":62.418,"geometry_index":19388,"location":[0.016458,46.464022]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,246],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.023,"geometry_index":19421,"location":[-0.009339,46.454496]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,249],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.992,"geometry_index":19422,"location":[-0.009349,46.454493]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,249],"duration":2.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.199,"geometry_index":19424,"location":[-0.010318,46.454231]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,246],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.027,"geometry_index":19425,"location":[-0.011267,46.453974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,249],"duration":28.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.527,"geometry_index":19426,"location":[-0.011277,46.453971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,245],"duration":241.785,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":217.59,"geometry_index":19433,"location":[-0.022241,46.450934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.434,"geometry_index":19478,"location":[-0.07578,46.430691]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[72,251,262],"duration":21.68,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.496,"geometry_index":19479,"location":[-0.076161,46.430604]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.084951,46.428456],"geometry_index":19483,"admin_index":11,"weight":11.051,"is_urban":false,"turn_weight":0.5,"duration":11.754,"bearings":[68,69,242],"out":2,"in":1,"turn_duration":0.03,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,236],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.738,"geometry_index":19495,"location":[-0.089277,46.426778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":51.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.844,"geometry_index":19496,"location":[-0.089555,46.426648]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.082,"geometry_index":19519,"location":[-0.107501,46.418048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,245],"duration":21.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.438,"geometry_index":19520,"location":[-0.10795,46.417897]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,254],"duration":0.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.582,"geometry_index":19534,"location":[-0.116285,46.415756]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254,259],"duration":2.758,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.465,"geometry_index":19535,"location":[-0.116542,46.415704]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":18.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.562,"geometry_index":19536,"location":[-0.11766,46.415482]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":42.312,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.121,"geometry_index":19540,"location":[-0.125387,46.413956]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,242],"duration":49.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":45.527,"geometry_index":19567,"location":[-0.142286,46.40934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.98,"geometry_index":19588,"location":[-0.15972,46.401059]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":16.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.477,"geometry_index":19589,"location":[-0.160081,46.400871]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.016,"geometry_index":19596,"location":[-0.165988,46.398035]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,240],"duration":10.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.434,"geometry_index":19597,"location":[-0.16639,46.397871]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":1.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.305,"geometry_index":19606,"location":[-0.170336,46.396489]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,248],"duration":4.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.477,"geometry_index":19607,"location":[-0.170903,46.396322]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,247],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.035,"geometry_index":19611,"location":[-0.17237,46.395927]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,250],"duration":34.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":32.02,"geometry_index":19612,"location":[-0.172377,46.395925]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.664,"geometry_index":19638,"location":[-0.188232,46.393443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,254],"duration":57.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":53.102,"geometry_index":19639,"location":[-0.188554,46.393385]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":53.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":49.508,"geometry_index":19696,"location":[-0.207273,46.38096]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,235],"duration":7.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.746,"geometry_index":19724,"location":[-0.216588,46.370976]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,245],"duration":7.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.859,"geometry_index":19729,"location":[-0.219241,46.36987]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,254],"duration":56.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":52.348,"geometry_index":19737,"location":[-0.222179,46.369065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,262],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.707,"geometry_index":19751,"location":[-0.246064,46.366676]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,263],"duration":65.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":58.676,"geometry_index":19752,"location":[-0.246391,46.366646]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[46,225,227],"duration":24.879,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":22.371,"geometry_index":19802,"location":[-0.270578,46.358155]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.278246,46.353295],"geometry_index":19811,"admin_index":11,"weight":7.18,"is_urban":false,"turn_weight":1,"duration":6.688,"bearings":[44,52,233],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.395,"geometry_index":19815,"location":[-0.28056,46.352143]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":34.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":32.254,"geometry_index":19816,"location":[-0.28071,46.352074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,245],"duration":1.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.883,"geometry_index":19838,"location":[-0.293936,46.347413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,245],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.754,"geometry_index":19840,"location":[-0.294705,46.347172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,245],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.723,"geometry_index":19841,"location":[-0.295009,46.347076]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.2953,46.346981],"geometry_index":19842,"admin_index":11,"weight":20.941,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.051,"bearings":[65,245,248],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.303342,46.344074],"geometry_index":19853,"admin_index":11,"weight":10.207,"is_urban":false,"turn_weight":1,"duration":9.449,"bearings":[45,59,239],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,237],"duration":149.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":141.824,"geometry_index":19857,"location":[-0.307132,46.342481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.711,"geometry_index":19896,"location":[-0.355827,46.308431]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.816,"geometry_index":19897,"location":[-0.356025,46.308226]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.356822,46.307433],"geometry_index":19898,"admin_index":11,"weight":15.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.012,"bearings":[35,215,232],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.36119,46.303769],"geometry_index":19912,"admin_index":11,"weight":7.117,"is_urban":false,"turn_weight":1,"duration":6.445,"bearings":[28,43,224],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":26.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":24.156,"geometry_index":19914,"location":[-0.363133,46.302428]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[59,240,245],"duration":41.793,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":38.652,"geometry_index":19928,"location":[-0.372017,46.297828]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,230],"duration":203.973,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":188.652,"geometry_index":19943,"location":[-0.387094,46.291512]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214,217],"duration":11.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.359,"geometry_index":20021,"location":[-0.433477,46.241088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,212],"duration":14.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.691,"geometry_index":20025,"location":[-0.436051,46.238342]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.439223,46.234618],"geometry_index":20030,"admin_index":11,"weight":24.832,"is_urban":false,"turn_weight":1,"duration":26.488,"bearings":[25,29,210],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208,210],"duration":30.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":27.703,"geometry_index":20039,"location":[-0.444537,46.227742]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.450789,46.219776],"geometry_index":20045,"admin_index":11,"weight":40.551,"is_urban":false,"turn_weight":1,"duration":42.766,"bearings":[28,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[44,48,228],"duration":18.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":17.059,"geometry_index":20068,"location":[-0.463563,46.209159]},{"entry":[false,true,false],"classes":["toll","motorway"],"in":0,"bearings":[48,228,344],"duration":72.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":67.137,"geometry_index":20071,"location":[-0.470039,46.205198]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":23.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.773,"geometry_index":20093,"location":[-0.492718,46.187723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":204.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":189.043,"geometry_index":20102,"location":[-0.499488,46.181699]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189,206],"duration":22.645,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.941,"geometry_index":20138,"location":[-0.532684,46.120215]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.534187,46.113633],"geometry_index":20139,"admin_index":11,"weight":252.082,"is_urban":false,"turn_weight":1,"duration":271.449,"bearings":[6,9,189],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[15,194,199],"duration":20.895,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.309,"geometry_index":20186,"location":[-0.540132,46.026459]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.541663,46.020366],"geometry_index":20192,"admin_index":11,"weight":155.41,"is_urban":false,"turn_weight":1,"duration":166.953,"bearings":[5,185,351],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194,196],"duration":17.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.285,"geometry_index":20226,"location":[-0.548357,45.971258]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.550208,45.96619],"geometry_index":20228,"admin_index":11,"weight":28.293,"is_urban":false,"turn_weight":1,"duration":29.516,"bearings":[10,14,195],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.945,"geometry_index":20231,"location":[-0.553332,45.95785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":7.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.812,"geometry_index":20232,"location":[-0.553436,45.95757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.062,"geometry_index":20233,"location":[-0.554179,45.955507]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,193],"duration":6.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.406,"geometry_index":20234,"location":[-0.554294,45.955198]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.012,"geometry_index":20236,"location":[-0.554964,45.953272]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,192],"duration":203.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":188.375,"geometry_index":20237,"location":[-0.555069,45.952971]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[50,229,231],"duration":0.938,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.848,"geometry_index":20302,"location":[-0.598532,45.896653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.285,"geometry_index":20303,"location":[-0.598819,45.896477]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":36.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":33.555,"geometry_index":20304,"location":[-0.599601,45.895996]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,229],"duration":151.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":136.406,"geometry_index":20307,"location":[-0.611093,45.888917]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":0.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.691,"geometry_index":20347,"location":[-0.624934,45.846983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":10.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.395,"geometry_index":20348,"location":[-0.624995,45.846766]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":4.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.648,"geometry_index":20351,"location":[-0.625734,45.843681]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":63.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":57.324,"geometry_index":20352,"location":[-0.626003,45.84249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":10.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.324,"geometry_index":20382,"location":[-0.639577,45.82503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":10.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.102,"geometry_index":20385,"location":[-0.643041,45.823221]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,226],"duration":5.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.941,"geometry_index":20390,"location":[-0.646655,45.821185]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,219],"duration":70.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":63.152,"geometry_index":20393,"location":[-0.648258,45.820019]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206,211],"duration":24.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":22.398,"geometry_index":20422,"location":[-0.656792,45.800519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.662419,45.794649],"geometry_index":20433,"admin_index":11,"weight":5.641,"is_urban":false,"turn_weight":1,"duration":5.035,"bearings":[30,37,216],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,214],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.262,"geometry_index":20435,"location":[-0.663647,45.793458]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,212],"duration":44.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.844,"geometry_index":20436,"location":[-0.663964,45.793129]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.667856,45.780786],"geometry_index":20462,"admin_index":11,"weight":39.035,"is_urban":false,"turn_weight":1,"duration":41.145,"bearings":[0,178,353],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,196],"duration":49.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":46.672,"geometry_index":20482,"location":[-0.669357,45.768999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.727,"geometry_index":20506,"location":[-0.672215,45.755016]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":14.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":14.527,"geometry_index":20507,"location":[-0.672192,45.754798]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,354],"duration":118.402,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":115.438,"geometry_index":20512,"location":[-0.671638,45.750536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,344],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":2.105,"geometry_index":20545,"location":[-0.658928,45.717586]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":7.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":7.363,"geometry_index":20546,"location":[-0.658657,45.716968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,340],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.898,"geometry_index":20548,"location":[-0.657559,45.714815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":21.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":20.637,"geometry_index":20549,"location":[-0.657412,45.714557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,340],"duration":3.617,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":3.328,"geometry_index":20555,"location":[-0.654046,45.70867]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.199,"geometry_index":20557,"location":[-0.653509,45.707685]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[159,165,339],"duration":29.637,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":26.668,"geometry_index":20558,"location":[-0.653477,45.707627]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.023,"geometry_index":20570,"location":[-0.649845,45.698363]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.649842,45.698354],"geometry_index":20571,"admin_index":11,"weight":134.035,"is_urban":false,"turn_weight":1,"duration":147.824,"bearings":[168,345,347],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":157.961,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":146.098,"geometry_index":20595,"location":[-0.634886,45.65658]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[153,333],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":2.031,"geometry_index":20632,"location":[-0.605078,45.615592]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[151,191,333],"duration":31.992,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":29.57,"geometry_index":20633,"location":[-0.60466,45.615018]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.596226,45.607832],"geometry_index":20646,"admin_index":11,"weight":84.711,"is_urban":false,"turn_weight":1,"duration":90.504,"bearings":[137,298,317],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.203,"geometry_index":20669,"location":[-0.59831,45.580973]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197,200],"duration":19.973,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.457,"geometry_index":20670,"location":[-0.598343,45.580902]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.600151,45.57517],"geometry_index":20677,"admin_index":11,"weight":29.105,"is_urban":false,"turn_weight":0.5,"duration":30.945,"bearings":[6,9,186],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.504,"geometry_index":20680,"location":[-0.601422,45.566184]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":120.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":111.312,"geometry_index":20681,"location":[-0.601486,45.565719]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":50.867,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.047,"geometry_index":20688,"location":[-0.608732,45.530972]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[10,187,193],"duration":21.352,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.727,"geometry_index":20691,"location":[-0.612165,45.516321]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.613035,45.510018],"geometry_index":20695,"admin_index":11,"weight":57.77,"is_urban":false,"turn_weight":1,"duration":63.082,"bearings":[3,183,358],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,192],"duration":28.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.32,"geometry_index":20702,"location":[-0.614685,45.491352]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":6.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.691,"geometry_index":20705,"location":[-0.617699,45.483272]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":14.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.18,"geometry_index":20706,"location":[-0.61843,45.48147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":12.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.379,"geometry_index":20709,"location":[-0.619866,45.477242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.414,"geometry_index":20712,"location":[-0.620584,45.473523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":96.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":86.684,"geometry_index":20713,"location":[-0.620631,45.473068]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.574,"geometry_index":20726,"location":[-0.608576,45.443381]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[160,170,338],"duration":21.273,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.137,"geometry_index":20727,"location":[-0.608467,45.44319]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.606106,45.437166],"geometry_index":20733,"admin_index":11,"weight":140.266,"is_urban":false,"turn_weight":1,"duration":154.758,"bearings":[169,346,350],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,180],"duration":42.852,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.617,"geometry_index":20757,"location":[-0.604561,45.392411]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,336],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.32,"geometry_index":20767,"location":[-0.600889,45.380289]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,335],"duration":30.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":29.145,"geometry_index":20768,"location":[-0.60064,45.379911]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[148,153,328],"duration":20.781,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.738,"geometry_index":20775,"location":[-0.59401,45.372265]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.590316,45.366738],"geometry_index":20778,"admin_index":11,"weight":76.516,"is_urban":false,"turn_weight":0.5,"duration":82.188,"bearings":[160,334,337],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.418,"geometry_index":20791,"location":[-0.576069,45.345356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,325],"duration":147.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":136.301,"geometry_index":20792,"location":[-0.575703,45.344994]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[165,168,345],"duration":21.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.781,"geometry_index":20826,"location":[-0.556059,45.299799]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.553609,45.293797],"geometry_index":20829,"admin_index":11,"weight":74.176,"is_urban":false,"turn_weight":1,"duration":79.125,"bearings":[164,329,344],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,353],"duration":45.402,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":41.98,"geometry_index":20847,"location":[-0.549976,45.270904]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[155,159,335],"duration":19.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":17.684,"geometry_index":20858,"location":[-0.544882,45.258198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.541495,45.253205],"geometry_index":20860,"admin_index":11,"weight":68.375,"is_urban":false,"turn_weight":1,"duration":72.859,"bearings":[152,327,334],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,332],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.754,"geometry_index":20865,"location":[-0.528123,45.234339]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,330],"duration":150.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":138.914,"geometry_index":20866,"location":[-0.527955,45.234131]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[166,175,345],"duration":31.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":29.305,"geometry_index":20894,"location":[-0.493467,45.193159]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.489915,45.184421],"geometry_index":20902,"admin_index":11,"weight":81.031,"is_urban":false,"turn_weight":1,"duration":88.945,"bearings":[161,336,342],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":86.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":77.398,"geometry_index":20915,"location":[-0.47946,45.159605]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":82.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":74.188,"geometry_index":20932,"location":[-0.483455,45.134837]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[166,170,347],"duration":22.16,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.938,"geometry_index":20958,"location":[-0.484119,45.111032]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.481399,45.104864],"geometry_index":20965,"admin_index":11,"weight":233.586,"is_urban":false,"turn_weight":1,"duration":251.469,"bearings":[159,334,340],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":7.02,"geometry_index":21018,"location":[-0.43905,45.029296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":2.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":2.852,"geometry_index":21020,"location":[-0.438092,45.027711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,338],"duration":3.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":3.07,"geometry_index":21021,"location":[-0.437715,45.027059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":3.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":3.641,"geometry_index":21022,"location":[-0.437399,45.026472]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":7.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":7.371,"geometry_index":21023,"location":[-0.437025,45.025778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":13.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":13.477,"geometry_index":21024,"location":[-0.436264,45.024364]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.152,"geometry_index":21025,"location":[-0.435832,45.023562]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.435797,45.023497],"geometry_index":21026,"admin_index":11,"weight":15.387,"is_urban":false,"toll_collection":{"name":"Péage-de-Virsac","type":"toll_booth"},"turn_weight":15,"duration":0.387,"bearings":[156,339],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,336],"duration":11.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":11.27,"geometry_index":21027,"location":[-0.43575,45.023422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,336],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":8.398,"geometry_index":21028,"location":[-0.434415,45.02126]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":21.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":21.559,"geometry_index":21029,"location":[-0.433508,45.019621]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[160,165,339],"duration":5.727,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":5.719,"geometry_index":21030,"location":[-0.431176,45.015411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,340],"duration":5.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":5.137,"geometry_index":21031,"location":[-0.430427,45.013974]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.429847,45.012699],"geometry_index":21032,"admin_index":11,"weight":26.219,"is_urban":false,"turn_weight":0.5,"duration":25.098,"bearings":[163,335,342],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.427817,45.006609],"geometry_index":21037,"admin_index":11,"weight":25.887,"is_urban":false,"turn_weight":0.75,"duration":24.531,"bearings":[172,348,351],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":30.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":30.301,"geometry_index":21046,"location":[-0.426999,45.000768]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.427069,44.993509],"geometry_index":21050,"admin_index":11,"weight":32,"is_urban":false,"turn_weight":0.5,"duration":31.508,"bearings":[1,181,352],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.427834,44.985682],"geometry_index":21058,"admin_index":11,"weight":20.391,"is_urban":false,"turn_weight":0.5,"duration":20.41,"bearings":[6,9,191],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,202],"duration":1.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.844,"geometry_index":21065,"location":[-0.429775,44.980843]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[22,202,208],"duration":22.621,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.473,"geometry_index":21066,"location":[-0.430019,44.980412]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.433371,44.975481],"geometry_index":21072,"admin_index":11,"weight":10.902,"is_urban":false,"turn_weight":1,"duration":10.449,"bearings":[18,26,202],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":7.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.008,"geometry_index":21075,"location":[-0.434563,44.97313]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":8.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.805,"geometry_index":21078,"location":[-0.435328,44.971402]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":11.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.258,"geometry_index":21082,"location":[-0.436357,44.969521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.664,"geometry_index":21086,"location":[-0.438232,44.967093]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":38.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":35.246,"geometry_index":21087,"location":[-0.438402,44.966898]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,235],"duration":42.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.328,"geometry_index":21098,"location":[-0.449511,44.957462]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,222],"duration":7.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.168,"geometry_index":21105,"location":[-0.461615,44.951229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.762,"geometry_index":21109,"location":[-0.463435,44.949664]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":0.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.066,"geometry_index":21111,"location":[-0.463612,44.94949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,211],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.52,"geometry_index":21112,"location":[-0.463626,44.949476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":22.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.234,"geometry_index":21113,"location":[-0.463733,44.949349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,190],"duration":16.25,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.414,"geometry_index":21119,"location":[-0.46572,44.945909]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":18.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.941,"geometry_index":21122,"location":[-0.466248,44.94314]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[7,187],"duration":1.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.684,"geometry_index":21124,"location":[-0.466773,44.939909]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":27.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.543,"geometry_index":21125,"location":[-0.466842,44.939486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":0.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.625,"geometry_index":21128,"location":[-0.467673,44.934559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":0.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.898,"geometry_index":21129,"location":[-0.467696,44.934422]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":4.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.602,"geometry_index":21130,"location":[-0.467742,44.934215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.195,"geometry_index":21132,"location":[-0.467987,44.933172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,192],"duration":3.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.07,"geometry_index":21133,"location":[-0.468,44.933126]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,198],"duration":3.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.973,"geometry_index":21134,"location":[-0.468169,44.932572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,200],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.754,"geometry_index":21135,"location":[-0.468405,44.932054]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,204],"duration":20.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.988,"geometry_index":21136,"location":[-0.468731,44.931406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":23.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.422,"geometry_index":21138,"location":[-0.470923,44.928071]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,202],"duration":73.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":73.074,"geometry_index":21140,"location":[-0.473625,44.923997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":3.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.348,"geometry_index":21153,"location":[-0.483853,44.912406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,233],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.125,"geometry_index":21154,"location":[-0.484534,44.912063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":17.863,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.855,"geometry_index":21156,"location":[-0.484996,44.911817]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,231],"duration":14.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.184,"geometry_index":21157,"location":[-0.487566,44.910537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,223],"duration":28.184,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":28.16,"geometry_index":21159,"location":[-0.489436,44.909366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":11.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.523,"geometry_index":21168,"location":[-0.492653,44.904833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":10.496,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.75,"geometry_index":21169,"location":[-0.493449,44.902861]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.047,"geometry_index":21170,"location":[-0.494278,44.900823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":11.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.344,"geometry_index":21171,"location":[-0.494357,44.900622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":2.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.059,"geometry_index":21173,"location":[-0.495235,44.898474]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,201],"duration":36.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":37.746,"geometry_index":21175,"location":[-0.495481,44.897935]},{"bearings":[38,217],"entry":[false,true],"classes":["motorway"],"in":0,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"geometry_index":21183,"location":[-0.500763,44.892303]}],"bannerInstructions":[{"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"type":"text","text":"Toulouse"},{"type":"text","text":"/"},{"type":"text","text":" Bayonne"}],"type":"fork","modifier":"right","text":"Exit 1 Toulouse / Bayonne"},"distanceAlongGeometry":306252.969}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 10/E 05/L'Aquitaine.","modifier":"slight left","bearing_after":194,"bearing_before":197,"location":[0.619889,47.140401]},"speedLimitSign":"vienna","name":"L'Aquitaine","weight_typical":8882.996,"duration_typical":9529.227,"duration":9529.227,"distance":306252.969,"driving_side":"right","weight":8882.996,"mode":"driving","ref":"A 10; E 05","geometry":"abf|xAavyd@lp@nPlpBjw@pjAjf@|uBz~@~t@vZpa@lQre@tUpb@|W|j@vd@zPjK|PxKlPdLlPnLnPxLfPnM|GrFzFvEvOvMxOnNbLdKxBpBnZ~YbOvOzN`Pt^xa@tNnPfN~PxSxX`NzQzMfRvMdRrMxRnYdc@fYnc@vFvInQvXdYrc@lw@hmAd[re@h[he@jWh_@hKxNjKxNlUb[lU`[xLdP|LxOdMvObMnOpVzYzU`YjP`RlPxQjJdKjJ~JvPrQxPfQnWrW|LxL~LlLb[jYpNxLrTjRlXhUdX`UhXvTvz@lp@hYlTdLpIfL`I|AdAlXzQl[lS~LvHrSjMhPvJlPrJpTdMtTtLna@vSpTtKpTlKlSrJnSnJdSzIhSrI|[xM|[jMlZ`Lx]fMfVhIhVdItUpHnVvHvU~GvUxGtPrEtPjEpXbHnXtGjb@pJnb@bJfH|A``@~Hh_@fHf_@zGj_@pGh_@~Fxb@rGzb@bG`j@bHrTlCrTfCbc@zEdc@lExq@jGzq@~Fxf@rDxf@fDjkAxGjc@rBjc@hB``AhDfcA~B|dAbBty@f@py@NvsAMli@[fi@m@~h@_A|h@gA|h@{A~h@iBbj@{Bjn@uCln@oDdn@}DpgAgIx[oCfy@yHzx@qIjwMo~AzM_Bxp@{H|m@eGpTaCbR}AlMkApMcAlTyAnTsAnc@sBhQm@fQa@nMWnMMx\\Gx[HlMNlMVxTh@xTr@vTdAtTpAvVhBvVxB|h@xFhRfCdRnCp\\pFr\\jGhR|DlRhElb@lK|S|Fv[rJna@xMpVvInWzJtX`LpXxLtVpLrVzLhVlMdV|MlYxPhYrQpl@|`@nKxHvX~SjRfOdQpNrj@bf@z]d\\d_@r^`Q~PbQhQte@hg@je@vg@viAvpAf@h@vjAfrA`e@lh@de@`h@x\\b^~\\t]b]j]dNbNhNtMh]~[fNfMhNxLfShQlSrPlg@ja@xHfGzVrR`TnOjRdNnRpMff@p[vR~LxRxL`]fS`m@z]dR|JlZ~Ozf@lXrAt@pw@``@~s@h^nhBt|@heB~z@`rAdp@njFxiCtnBbaAh_DpzAlzC~xAlwDxkBxaBdy@h{Ajt@`q@~ZxlA~i@pb@nQr[pM|h@vSlZpLzS|Hxh@zQzN|E~RhHxQfGdYnJlUvHjVtH`dAlZta@xKxa@tKza@jK`b@|Jve@|KlR`EnRvDhm@|Lnm@bLh\\zFn\\rF~[hFd\\~Etd@rGvd@hGxd@rFzd@zF~v@rJxu@rJhnBbVnnBxVzZbEzZvD|ZpD~ZlDhZ`DjZtCf[rCn[xBxXjB|XjAx^pAt_@j@pYNrY?`d@o@r_@s@`J]lo@wDxi@qDfe@aEpe@mEnqKgeAhHs@r`B_P~s@yGvz@}H|bAsIl`@yCl`@aCb_@sBh_@sBdb@eBfb@kAn\\o@n\\_@r\\[r\\Un_@Hn_@d@r_@fAt_@vAxV|@zVlAt[nBv[|BlUpBjU|BrUpCvU`DtWvD|WzD|p@lL`p@fMrWjFhWhFt_FleAdgAxUfOdDhk@~Llk@hMdy@rQfy@fRzx@jS~x@zSxc@lMvc@|Mh`@zLd`@pMt\\rLv\\`Mjn@rVxm@vWbo@lZno@f[z}@df@l{@rg@hy@rh@ft@ve@`y@rk@n[bVfCnBTPrVnR`p@dg@tWjSRP|VvRtaBrpAn`BvoALJzaBlpAdwBbbBl[pVNLd]|Wt]lX|_@rYhHzFrmCduBJH`p@rf@tSlOxS~NpSvN|SdN`R~LhRfLlRjL~PpKvg@pXrStKhSlJlUlKjVpKp`@lP~OlGhP`Gvb@lO|b@~Mv_@lLfVbG~]zItN`DtNvCtTrEzTdErWrEzWfExp@xJ|^dFb_@zEh_@xEpc@hFvGdApc@bGxh@`HrpAhPxQ~BbvCd_@~_IzbAdaAdLl]pDl]~Cx]hC|]|B|]~AnNh@pNZh\\h@fWLbDBbOA`OGl_@[n[gAp[kAfOo@dO{@`OaA`OiAx_@wDn_@kEpViDzk@eJfQaDbQiD~PuDdM}CzBk@~b@uKdQ}EbQkF|QuF`RiGbUgIl^{Mh^sNfb@_Qdb@oQnrA{j@vh@_U|h@kTx^sNt^}Mf`@oNf`@}MlPsFnPgFnPgFpPyEbe@qMbR}EbRuEhTeFjTyE~`@mIvi@_KxYeFvYyElVsDnVgDzi@}Gbj@gGxeAwJbf@{Drf@qDvg@cDdSqAlSoAxh@uCxh@oBbv@{C|w@oBhs@qAbYk@bY_@rnAy@jrAIpoAx@hg@p@hg@z@|`@x@`a@fAxl@fB|Ux@|UhAlqAjGpe@rCze@bDxCXfNtAnnAhKnXrCfg@bGnl@zHnl@dJzVpE`WlE~t@dOh|@vSv]nJjj@vOpZlJlZzJvg@lQxg@bR|VfJ~VrJpo@~V~}Adn@lkCvdAbq@rW|YnL~YfLbgCrbAfiCbcAx[dMf\\fM|QpH|QnH`RdHdR~GhQdGrQxF`d@vNrUbHxUtGdUzFrU|FpO|DpLzB~LzBp[jFvYhE~YvDn\\bD`UnBpUjBpQnAzQhA~RlA|RhAl{Mxt@pt@vEl[pBf[jCd^|Dr^fE`ZnDr@Hx[nEn^pFl^jGxXdF|AXv[lGrPrDvPzDbb@~JpZ|HrZpIhZvIfZ~Ili@nQhi@lR|b@rP`c@lQteCrlApCjAt^fSp^xSt\\lSx\\vSbQ|KvQ|Lzc@|[h\\fVd\\zVbZzUbZrVpYtVtQ`PrF|ExPvOnAlAfnAlmAbd@te@b`@hc@fXf[hzB|tC|DdF`U~[|Tl\\lUz]zTd^fRzZ|QvZvSh^hSn^lXng@jWtf@nLhUpLvUjYll@~Vpk@~U~i@hZ|s@~Yft@zKdYvKxYdKfYfK~YtPff@pPxf@|Odf@vOtf@~Olh@`Pph@|Orh@~Ofi@zyB|xHr|@t{CnNlf@pN`f@nNdf@rNff@|Lnb@pLhb@tZzeAxv@bmCrmBjyGzEbPlRfp@lHvVrHxVng@laBlMra@tOff@~G|SpGlRzPdf@zO`d@`Pxc@tNv_@~Ppd@fSjg@nQzb@~Pla@rQfb@rHvPtHnPpR`b@~Rza@tHzOzH|OnR~_@`I|ObIrOfRp^|S|`@~f@t~@zg@b~@`{Bt}Dr|@x}Af|@|~AfeA|pBzMfWrMpW~MpXjUdf@j\\~r@l_@tz@pMrZbMvZpMb[`Ml[jO~_@vNx_@vO~b@r@lBtQbg@vQ`i@tQli@zSlp@xRjn@lP`k@bQpm@~Pln@pSlw@jWtcArSp|@fE~Qnx@hqDzYbrApKze@vKxe@rIz^~GbY|Hd[~H|ZnRxt@pQpo@hJ|[hJ~ZpD~LxD|LhIxWnJjZdKxZ|JnZfKjZtOhc@nPdd@tO|a@dPxa@pI`TrIvS`Tzf@zTng@`JnS`J|Rtd@``AnCpFnOtZjThb@fT|`@nTf`@bVjb@nVpa@fZ~e@xLrR|LdR|Sn[`T`[di@xv@tlAzdBjeF|kHneFnkH`g@xr@~RnXfS~WlRxVzRpVxRjVzR~UzZb^`[b^xp@ls@`XxX`XpXft@jq@nLpKhLfK~YnWn[zWz[pWp[tV|[lVhRhNxj@r`@rk@~_@bWbPlWvO|WzObXbOxVtMdWtM|V~MbWrMfVbMfVzKjVzKdVhKjn@jWpVjJjV~IhPxF|h@|QvRfGvKnD|ZdJlZnIhXfHvUhGjXxGlXpGrpAvXzdD~r@je@zLrSvFrSbG|\\bKz\\vKjTjHfTxHjSfHnSrH|UnJ|UdK|g@fUbTzJfTdKfTnKfSlKxRdKvRlK|g@nYtcCxwA`aAhj@dRbK`o@j\\~]|Ph^rPnQrHnQjH`e@pRd\\vMn[rLxc@lO`QxFbQpFdZ|IfZrIpZbIrYjHx@RtTfFd\\nGnYxFrWfFvd@xIxd@lHxfAdPvt@fIv[bExh@rGdZ|DtyCv^v}@~KrlBtUpt@dJrw@hJ|@J|Cb@RBh_@vEta@fFddAhM`fArMh`@tEb_@`Ez[bDtW`C`TfBpPnAbObAfTpAr`@tBnZjAfX|@f_@x@v\\b@~\\Rt[Fdc@Oh[[zUc@lb@aAf]cAp\\kAdQq@~Ni@\\Adg@gBzi@gBrXs@nSe@p[c@hYYbf@EpYF~WVt[^|[v@xb@vAlc@pBfUrAbW~AfVjB~R~A|`@vD`b@tEjTlCzTzCvP`CpO~B~_@nGbb@pHx\\vGzVdFjZnGtWtFni@pLnOhDtWzFdDt@rWxF|`@rIj[vGph@hKfZtFzb@|HrUbEhXrE`Df@n_@fGrZ|E|g@lHNBhpA~Pn@H`j@~Grh@rIvTpDbMzB`M`C`MhC`MlCvZnHxZhIjTtGxInC`Bh@zL~DlNdFjNlFvUhJrU|J|VjL`OfHzNrHpUdMhUrMj[vRlc@vYl[jUjWdStVvSxVrTbbAnbAj]r_@lZd^vPvTlPjStOhTlOpT`[zd@pMfTpMpT|MzUvM|UnMjV`MpVtM`XvGnNpGnNtO|]lOh^na@nbAzO`a@tOja@~aAzgCh`AfdCfTdj@tGhQvJxVrG`PpDbJlJ~UfMr[nHdRzZ|s@`J|SdJvSzJrU|JlU~Nn\\|Nb\\|Px_@bQh_@pc@j`AzJfSfO|ZfUjd@|f@dbAzOh[li@hcAdUdb@jPtZpRn]~Rp]x\\hl@jSl]dSd]dSz\\zd@`v@vMrSrfAtbBlXna@rX~`@|t@xeA~NxS`OnSle@ro@t_@rg@`StW`ShWf_@`f@xMlPxMdPfh@nn@`h@rm@vqAxyAto@~r@xo@`r@vb@~c@bc@zc@zb@zc@dc@xc@vQdRvQtQvQ|QtQrQrd@rd@|d@hd@lOxNhOnNj`@j^nR|PnRrPzf@|a@le@n_@bRtNlRnNrRnN`S`NvRnMfSlM|SnMxS`MrTzLpTrLnS`KxSrJzSfJnTfJ`]dMl\\bL`\\`KxLdDnMxCz\\~Hd\\`H|u@|Nzc@dIde@bIjXrD~p@zKd_D`h@zjAnRnb@lHpa@|HfnA~TzpAnSpmAnRpmAzS`WrE|VhFzm@dMxvB`f@bd@hLp^dJvS~FF@|\\zIfX|JlNhFnJjDtW|KfNjGdNrGtOjIbMnHtNnIlN~IbXpR~FhEvJ|HfJzHzG~FfUfTrJlJlJxJxQnSxLrNnLfOpTxYnIxLfNrSfKvPjVbc@pLdU~GdN|CzGnHlPtKtVlKxWbGxOfGlPbGbQlFfPlFtPxEfPvEtPrEjQlFvSrGtX`Hf\\vG|[lDbRnDrSzCtRtCvRvEl\\lEr\\~Dx\\tF`g@lVj`CtG`p@~Gxq@bH~p@vC`XzC|W~Dt[nCpS|AjMfBhMfD`UpChQbDzQbGv\\fEnTnEtSfEdRtEtRpEtQzErQbFnQjFfQpF|PxFdQxFpP~Nv`@hGzO`LdXfOr]jJrSzJlSrItQhIlP`DrGlNtXd`@bv@~}Ar|ClHrNboBfyDpVff@xVbf@~xBhiEbTjb@~Snb@jQ~^`Qb_@bQ|_@zPf`@lP``@nPz`@bPv`@zO`a@f`@|cAla@~gAz`AxiClKvXnKrXrG~OtGxO|GxOxGjObHrOdHjOzE|JdF`KdMnVzFpKvFhK~FjK`G`KxN~UhOrUbOtThObT|IvL~IlLfJhLhJ`LtJfLpOfQ|GlHzGfH~G~G~GvG~PnPdO~MfQjOlQtNfQ|MlQnM|PjLdQhLbSxLhS`LjVjMpS`Khn@nYbr@`ZrdBdu@n{Arp@d\\lO`TtKnR`KzKhGxKpGtXbQvXdRdX|RnTnPjXfU|W`VrTvSnT`UvRnTtRzTxTpX|SbY|IvLnIdM|OxUbIrLxH`MrN~VlWbd@|LpUbFtJpEnJxQb`@fLlW`LpWlNh]dKjXtEvL|Kh\\lJhYxFnQtErOzIvZlInZdIjZpHzZ~J|c@~Gt[rGz[dGr[rFf\\jEfYzE~ZvEv\\nEn]tDx\\jDb]fDz]vC~\\lCt]zArSlAxSbB`]`ApS|@rSxAh^h@pSh@tSr@h^h@p^^pc@JvTDjSE|RW`h@Yj]YpS]nSa@fQa@fQiA~\\qAh]{@rS_AlSgC`f@yCfh@ewBv}\\sAbTy|@vkN}b@f~G{Rh|CcDbh@}Cbh@uB`_@oBf_@}Cfn@oCdn@wB`j@mBdj@_Bnh@uArh@}BlaAc@xU_@tU[hTKrMe@vc@a@`d@Wd^KtRKrYEzY@pt@Dj_@Jp^f@j}@Pt^ZxZd@p]b@tVnAts@dA~g@jA~g@n@xTdCxt@rAr^xAr^|FnpA|l@ryLtQhsDlHn}AnClh@~Cni@lFn}@rAzSxAxSlCd^hEdi@xHj}@rIh}@jFph@vFdh@zF|f@pG~g@vGxg@fLvz@zGzc@rPleArFr\\xDlUvFn[|Fn[hGp\\rGf\\dQp{@nPlw@|Njo@xH|[`Iz[~Rbw@tS`w@lInZlKp^xTzt@bUdt@vgAzfD|a@rpAvNbc@dShl@`KzYdKtYjKxYlKpYlKfYrKzXlX|r@tWjo@jYrq@nLfXrLbX~LlXfMlXzL|WbMxWn[lp@bM`WfMxVz[fn@bi@vaAji@paA|qAv`C`jD|iGhj@x_Ath@|{@fTr]fT`]zi@hz@tYhc@tT`\\pj@dx@xoBrnC|FzHzF`IlxAdpBjj@fw@zt@tfAni@ly@jS|[hI|MfSf]`St]xM`VnMhV~Qf^rHfOlHlOtPd^dGtM|F|MdJzSzI~SzKrXvKvXvOhb@lKnYpJ`YxN~b@tFbQpFfQbItXbRfp@|HnYfL|c@xH|ZtHv[dHx[`H|[rHp^fHn^pIrd@fIbf@pPndAbHvd@|G~d@bM~|@fIvl@vHfm@zOtoAtBdR~BvR|Fdf@hQruAl`@jaDh`@x_DvDf\\fEh\\lClSpCfSrChSdHxf@nHvf@lRfmAzKro@~Kro@dOpy@|Ind@bM~n@bF|VfF|VtMjn@bNdn@rKje@zHx\\`Il\\rM|h@fPlo@rE|PdGlUzQbq@jMjd@jQpm@|Odi@hOtf@zN~d@fG`RpDnK|Mda@fK|ZhNha@pKdZpKbZlLh[bMl\\lGlPnGjPrOv`@|Oh`@~h@trAbh@vsAbe@rqArNxa@bRlj@jNpb@fGtQ|F|QxObh@pOdh@hMrc@dM|c@|Slv@|L`e@d[tnAdL|d@dLze@fKxd@rK`f@fP|t@TdAdIz_@dJvd@bJne@zIle@~Iff@zt@~fExg@xwCDRdF|YdHr`@`Ohz@DRpC|O|wAbhIxZpeBzYb`BrPd{@tJ~e@hKhg@tPfw@hKte@rKje@tKde@zKde@dL`e@lL|d@hSlw@hI~ZlIzZ`Tjv@nT|u@xM~c@dUnu@jd@bxAX~@pxQfhi@`]pdAzNnd@rNjd@fJnZdJrZrT~u@dTlv@jItZ`I|Ztc@pfBrPrs@hPrs@nK|e@`Kpe@xJxe@bP|x@rGf]rLzo@nDjRrDlSjDbShFt[fInf@dIfg@jE~WzDtWtHdh@dp@|uElDxVrTt{A|o@nsE`Hfe@ru@|lEbA~CfAhEhEnRtHv[fDpNjDjN|K`b@xI|ZbJhZhJxYlJtYfO`c@bGjPlKlYtKdYzG~PzKnXjPba@pYjq@du@pcBhu@bcBbx@hhB`h@hlA~^`}@~Mv\\p`@|cAzWtt@vJdYpJhYzUbu@fUfv@hJx[|I`\\hKb`@|J``@rRhx@lH`[fHh[bQhy@rGf\\nGj\\jGn\\~Fz\\bN|y@fFd\\bFf\\zLvz@nEx\\|CfUzIrr@fFnb@fB`OzLzdAxIru@bR``Brn@~pFxPfxArNtnAbOjoAzL|~@xEz^fF`_@nH|f@pHtf@tWxaBrFl\\vFf\\`Lzo@pDlRtDhRzLtn@fFnWlFhWrPbx@~Gr[bHn[`HzZbHxZbLtd@zK`d@`Lzc@`IzZbIvZrBxHbPxl@tW`_ArTxt@`J|YfJxYhJbZjJvYpRxk@fVbs@j[l|@rKvYrKjYrK`YtKtXfPja@lP|`@va@lbAbeAnfCbyAhlDlY|q@f^pz@vJpUrb@`dA~a@ddA|Wpq@n[vz@hKpYjNha@nXvz@fIbXjL|`@rEbPlEhPfId[rEnQnErQ|Hf\\fKnd@jMdm@lIlb@`K~j@jDrRdDxR`AfGBLvF`^xHbg@rCrRjCpRpDjY`En]~D`]BTvDn]tIj|@tBvUjCf\\vC`_@lCl^zFh{@|KxfBhJ~~AzJpaBzDnn@bBbVfBbVpCj]nCt]dBpSjBlSfD`^rBbS~BdS`C`ShCbShC`SxEt\\lF`]|CpRbDhRfGj\\rG`\\dEjRfEdRjHtZbIx[hIb[xIzZ~IfZtJpZdK`ZhKhYlGrPpGnPpG`PtGxO~GxO`HrOfHnOjHdOjRb_@vHhNjW~c@jNlUdKzO`KhObK`OpLjPhO`S~ObSdPzRrPrR|PtQbQjQlQnPdKjJnPhOxQ`OtKvItKjIpRrN`JrG~IjG~MfJzM`Jb`@pVf_@vU`]bSf`A`k@p|@rh@t_CpvAj]vSl]bTh`@pV|NvJzN|JnTrOdPrLbRxNhQzNtP`OnPnOlOpOnOlPrOlQvOrRlNbRfN~RxOvUjObW~FbKzFfKpMnV|EtJzE~J|GvNbL~VzV~o@fFxNfFvOnLjb@fPzo@zKzf@lGj[hC|M`CzMnD|SfFb\\hEtZp@xFbClSxD`^fDd^`Dz]dCp]fE~p@|Chh@nCji@rMl|CzMpfDr\\vjIj\\jeIxMpeDzDh`Az@lSdFrnA`B`_@hBj`@~Ed~@zCvh@jAtQrAxQlCv]rCr]jDha@pBvS|BnSrFtg@jFzb@`F~^nC~RtCxRpGn`@bDzR~CzQlGn]`DnPfDhPdIf`@nId`@zHp\\xHb[jIn[rId[tInZpMlb@vJvZjL~\\tMr^lNr_@nGhPvGdPxI|S~IrSrJnTxJbTzHbP~GnNrMjW~LvUfXhf@nSz^vSj^~g@tz@fq@ziA||AreCbq@|iAv[vk@pZvj@pM|V|NnY|[np@|Urh@~Srf@ja@paApIhTlIfTrOnb@hCjH|Rjj@xHbUvHfUdJdYfNhc@dJ~Y`Jf[tLvb@pId[xEpQrEtQ`L`e@`Ur`AxThaArR~|@xH|]nHb^pe@x|BlK|g@pIt`@nClMnB~IjDtOtHj^~D~Q|DdQfSl}@bLbf@rLdg@~K|d@rLle@dYtfA|Lzc@vIn\\h^ppAzJx]~L`a@dXv|@~Y``AtSvo@tYh|@`Shl@jSfk@na@dhAv~@bbC~aA`eCdaAhxBjlAljCzuLbtWpChGteAd~B~eAl|Bxb@h|@xc@|{@tXzh@dq@rkArk@``Afb@hp@pXda@hx@biAls@n~@rq@jy@t^db@x^|`@xp@dr@pY`YbYhXrYbXnVxTti@te@xa@`^rD~CfmAvcAbmA`cAbvA|jAz}@bv@d|@fu@tt@to@vd@va@dTlSxKjKpp@xp@\\\\`UxUhR|SfNpOrOvQfRxTrUlZrS`WxTbZfVp\\vExGfQbWlSpZx@nAlh@jy@ji@`~@dZbj@f[|k@`\\`q@fPl]pKlUrJfTr\\nv@b\\fy@nGfP|Q~f@~Olc@vWnv@rRpm@~Ln`@zS|r@|Ndg@fMtc@lQzn@rErPnF`SllBb_H|Shu@zUrw@jVbw@vXjy@lOrb@lc@niAdUti@t`@p|@lXjj@|R|_@fOnYrm@feAjR~Ytg@hv@fh@rs@pT~XzTnXnk@rp@|c@ne@jf@ze@d_@x\\hb@f^n`@|Zve@t]t\\rUvg@p]tb@`W|PrK`tCpeB`TdNda@xW|U|O`[~Sl|@fo@tpAzbAtp@pj@~a@t^`e@jb@vd@rd@`bAj`A`cAneAxn@dt@pYh]dQvSvW|[|j@tr@vi@hq@~j@hr@tqAzzAv]r_@z]~^r[b\\~VzVjQbQtN`Nti@jg@|m@xi@`o@fi@zb@d]hKpIn^~X`m@jc@jm@bc@noA~x@xcBvdA`SzLhnAnt@rb@hXfa@rWn]dUvc@hZ`g@p]lc@f[xb@`[phAhz@jd@|]|a@l\\f[bWl^dZhd@d`@rn@vi@ve@rb@zu@fr@fv@bt@l[b[``@v^jo@jm@fPbOr~@z{@ji@nd@db@n^dy@zq@nd@x^tq@li@dr@rh@zIdHzyAbfAle@l\\lPhLzbAds@vXtRxp@`e@jp@`e@hnA`|@fkG|kEhf@j]|q@`g@vh@p`@~k@tc@rs@bl@r]|Yd_@`\\f`@b^|LbLrPdP`]z\\h\\b]lh@pj@`QrRnUvWfU`XlPzRzYr^zFfHxNdR|Q~UrVl\\pPnU|_A|vAn_AjxA|v@hrAlP`Zjh@j`Ank@dfAzp@|rAdxCrxFltBh~Dh{@v~AnaA~bBny@ztA`{@dsAr_A`vAv`AjtApcAbtAvOhSnZ|_@hYv^PRh{@ncAdk@rp@hk@~p@pk@xp@jk@|p@dk@vp@tk@bq@bk@pp@~j@np@pk@hq@twAxbBfk@pp@fk@tp@`k@np@vk@jq@fk@vp@bTtVdVxX|T|Wr_BnlBrbA|gAteArgAljA`fAhxA|oA~kAd`A|kAz|@niA|v@xjAjt@bfAbn@jqAlq@dkAfk@zkA`h@`lAbe@rdK|rDzuAbg@rlA`e@phAlg@hhAng@rwAxt@bsAxs@lnJduFhbBn}@jhB|}@bcAdd@n@XljArb@rlArb@zgAn\\frAh]xtAlYbuAvUtvAtTv}Gt_AvaFzr@j|Cnc@jzK||Axj@vHn|Cn`@dgBzOj}AzJz{AbFtTVlkArA~yAoAr}AwEzyAqIbzAmNb_BwS|xAoVpxHozAjbBa[`iBuWdxAmQ`{AcMb`BkH`pAmBhoAl@fqApCzf@pBdh@tCzh@pD|i@xEfmArNtiAbPhRlC|qXxcF``BtWbcBzTbdB~Px_CbMzvAjCzmAh@lpPkSvrAKtpAv@~mA|CnmAjFfpAbLrpA`O~gA~Pj~A~\\|yAn_@hlEdmAze@bMdt@rQlbA|SxpAjS~kAjMn}@fFbMt@plAvBrkAw@vdAeDvgAeG~}CcUpmAwJfpA{FjgAmB~iAhAtbA`CxkAbIteArMniAdRt_ApRdzD`|@z|@xRr{@lP~z@|Nn}@jMnlApNnrAdLhqAxHfhA|FrmIxb@lxBhNz{AhMfiBpSt`AjLvgAfOzlBnYvtB~^dtAfYtqAzZz}Ap`@z|EbqAdfCpq@fcEbiAx|DpeAnPnE|_Clm@hRdFjz@zR~{@~TxQpE`~Av[zFjAlgLv}BfiAlVhhApWfz@fVjFjBri@hRtt@z[ry@tc@~p@fb@|s@jj@he@fa@~a@r`@ld@fh@xa@xg@jb@zm@~m@baA`d@jy@zk@rjA`fDtoHpf@zaA`]bp@j`@`q@xg@rw@vZta@b_@~b@xLnNfq@~s@xf@dc@ln@bb@|TrOfVvOrUlNjV`Ndg@xVlZrM`ZjL`t@b[`v@rSjo@vNbeAxRveC~\\fq@~Kfq@nLh~@fQjc@~Ihw@hSlmApa@xw@b[xm@fXlu@``@zp@~`@`u@tg@l{@bq@jr@~m@|l@rk@|o@bs@x}@phAjd@bp@n_@nk@pg@bz@hr@tmAfgBvhDxGfN~I|P`]zo@ziHzdNh_AhgBfnA`_ClSfa@jm@rjAnj@|dA|o@|hAxl@v}@zt@`aAvq@jv@pv@tv@zr@pl@pk@|a@xdA~m@dm@pY`s@nXbp@xR|v@~Qnx@bMj`ArJvt@fE~r@zA`_AcCjFYhjAiGvm@yF|fDsYjaCwUxcBgO|_@_Dh_@mCfeAcD`iAoCbv@r@jt@|Cdw@|Dp|@lJtcA`PnhAhVnoFzqArxAv\\r}Az\\`}@bPpLxBbQ~CzdBvWxgAlOliAxOblB`WbjCl_@~dAzPx[hGrf@|K`_@bL|u@fXlj@dUl_@pR`b@~T|^hUfa@xXzWpSj[pWrFpE|\\d[rZzZnWdYfTfWdUlYzOpTrAhB~RfYpYxc@~Q`[dRx\\`c@z{@`b@p}@|_@~z@vl@rwA`p@x}Ad[hu@xb@jbA`a@n_AzXbo@~U|g@`Znk@fPxZbJpOl^tk@h]|e@`b@ng@rb@dd@f^n\\pj@bc@jYxRbg@`Z`g@dVta@dPz[~KhZjIlYtGb]jHrx@tMhy@fJ~y@zHx_AdJ`[fD|}AfOlz@xKb~@lOhp@zNvl@pOnl@nRvn@~Urh@`UzTdL~XvNr[rQnZ`RbT~MnUdPbQjMbP`Mla@t\\vTvRvQzPln@~l@z_AzbAd~@vcApd@bh@tp@dr@vWpXpSxRtc@n_@zWdTrX`S`ZtSl[hRnQtJrSbKlXxMpTbJ|XtKtWlIjYhJjc@xK|MhCd[~F`^jF~SdCnTpBrVlBpb@fBt\\nAj\\Z|_Aa@b\\O`gAgBd[EbyAqDt\\cAv[m@f{@i@`]@l\\J|\\^nc@`Av\\dBt[fBv\\|B|b@|Dxj@nG|[xEj\\~F|^`Hb`@nIbf@pLrh@bOz\\zJ@?dpAp`@jp@pR|b@bMva@dL~g@rNnd@rLfg@zLdh@fL`TpDra@`Hpb@`GhXhDtVhC`n@vEh_@zBl_@vAn\\v@d`@p@hg@Dz~@k@ti@o@d`@qAzP}@rLm@B?r\\_Bvk@wC|fAoG|vBkQph@wFtOkBpb@iEdmAiQnsA}SfbAoStq@qO|l@oPxh@{OheAm_@`dAsb@xmA}k@hmAso@bnByeAlt@s`@xf@iWxe@aVzWkMnWoLhVcKzb@}Pjv@wXxz@mXfiA{YhrAkX~}A_WhtBoYhtB}YhzAeVddBw^fY_Hxm@{O~oAe`@re@}Op`Aq_@~cAac@bOeHt~E_~B|q@k]hc@qSte@uUjLcF|CsAn]gO`^iPrB_AzUgKhT{Iv^uNpd@qPl@UdgA{_@~lAa_@hp@cR|Z}Hbq@iQh_AqRdyBae@PExeEk}@tmEs~@diDmt@vuAy[t[wHdq@}PduAk`@jnBym@vjBkp@|q@cXvmFizBxzBk_AhjAwd@rjAqb@vqAmb@teA}ZzjAoZ`~@wSfd@qJtoAgUrrAoSjdHwaAvjDcg@vg@iIvc@qHhyAgXbpAkX~x@cSz`@qKjbA_Zny@iYdXuJlcAaa@hbA}c@`hAyj@hz@ce@~_Awk@~cA}q@lcAmu@`fAo{@zaAi|@lcAgbAvz@c}@b_A}dAzoBu_CdfBcyBjtBohCl{@yaAlfA{gAliAmcAd~@gs@diAuv@x`@oVvd@qW~rAar@b}DuhBtgAeg@|sBsaAx\\iQla@oUb`@cWzb@cYp\\sV|`@c\\t}@cz@n`@ib@j`@{d@j^md@nXq^|_@_j@j]_h@dp@qcAz\\gi@zj@_|@|KgPte@_r@n^{e@~d@oi@p_Bq}AduA_cAjiBoy@f`Boa@`hBkS`lAs@juAfFf|AdVfaBpe@z{Atv@z~A~~@xwCbqBdpAry@j]vTv[jRzt@xa@ht@t^hB|@xmAnk@|s@tWlC`Aje@bPtx@lUpx@xSrp@lNzp@|Lbh@lH~~@xL`OlAhkBnOftLn{@`\\~BbiKpu@luCdWjuBhUlqBxUvlBxXxuGz`Avl^hlFlnWzwDr_BvSrb@|GfcAnKjgCbTbjCvOdq@~BblAdEtjBvFvfNhLfcCxHjuBbMx}BfUrsBt\\xwBrb@liB`g@vtGtoBroBtl@p}Aje@zjBha@x|@`P~eArRhxBbTbg@bCl[|Afb@rBx_CxBbgBcClhC_PxrBiVnbC{c@f~Bcn@XIb_Ciz@~hDy}AjzCc_BraQydJhi@aW|JyE~z@i^p{Aqk@lCcAtmB_g@hu@}Nnu@sLbf@sI~hBeNxl@oBj|AcFztBuGjcBiDdRa@nO[`hCwK|yBaOdsB_V`|OsqC|iBeWb}AcL|bBoD`|AtBlyAlHb_AbGjyAvTpzJzfBvdAvOprApN~uAjKxqAnDl@BlqBc@|{AgJnhB_ShzAuW~vAq^`eBsl@l~@ca@faAkg@f_@{SrVqNbNsJ|FwDxu@ig@rmAa`AzkAwdAtlC}`CxeB}zApYyV`cCo_BxyDqmBjy@{]jqBqs@vlKczDffCohAhrBciAjp@uc@xx@ck@fx@in@br@al@b{@cu@hbDmeDvp@gs@pYgYrU{Uhk@il@pt@gr@tt@ui@p`A}m@`{@qb@`~@{_@|w@uT~EsAzhFonAlmAo\\`iAi_@|vAil@jqAoq@bjA_r@hgFgtDpmA{z@jxAuy@zrAkn@haBen@pxAy_@fx@{Nny@eNvjAwNd`A{If`AgGb`Ieg@b_BuOx_ByTjcBmYfw@kPvf@}Lb^cJnc@uLtOiEbr@_Svb@_Mf_HcvBf_@iLzeAsYbxAw_@~uAmWvoAeRtmAuOncAwIlgAaJpeAqExeAqE~eAyDb}@sBj|@eBhwEoLnyCuLtgAsGd_AgHrFm@p{@mJhuA_SlwAyXz{Ae^z_AcXdcAoZ|aAu\\dkA_d@zdAme@l_Agb@lv@}c@|hBsdAbmEamCpc@kZ`wBwsAdYmQn~]i|TxC{B~KoIx{@_p@plAeeAxfAikArdAm{AnmAuxBl_DkhHxz@_lBzx@y{A`iAi`BlbAwiAxkAkfAfuAu{@voAmm@bzAqk@jtDqoArE}AlpAue@vcByw@tpBciAffB_pAjuFelEznAu}@~dBo_Al{Akq@d|Asg@`y@iVdmAa\\rmBuh@js@yQtkBae@fW}Gr_AsWlhBek@r_Csy@l^}Mt]yLxqAch@laEqdBroMuoF``Bin@v|Ayj@raBgf@h}A{a@|kAuWlfAcTbcAsP~lAaPlhA{Mlx@mHdYiC~hB{JflBgFrmBuBra@e@b`BvBz|BbInfAdGxwAxL|jA|Ld_AjMtx@zLtpAhUznAlWl|Aj_@t{ErpAngBdf@l@NpeA`YfcAdVb_AzRlcAxQz_AjNz{@xKrbA`KxeA~If_ArE|cA`Dzb@fA~Zv@|fAn@nj@Wx[a@~z@eAjcAiDvfAmG`_AeIbw@iIrbAaLrx@qMz~@{Orx@aRli@qLpTyFx`A_Wpo@eRdr@kTdq@wUnu@cYt|Awo@jBq@jWaMndAqg@p}Ak{@t{Ai}@|iDazB`C}AbqAwy@`bAem@ju@ec@|p@c^lo@s\\pm@kYvd@}Sng@eTzcAc^jp@aU|JiDrt@yShw@qSd_AsSzoB{_@x{Dep@rsAsUtwAcYx`AkU~cAaXbcAe[baAc]~nAig@pw@}]bdAgh@j}@of@nfDsqB~`Fe|CpoAiw@rcCouAnbBwz@dk@oX`k@uWbdBut@~wCqnAthHwyCd~CerA|oCurAlsAgr@hqA}t@zpAcv@dhFkbDfhF}`DbS}KpeB}_Ad_@qR~wAau@`IyDvg@qVtc@wRjj@kVjwAqn@bq@_Z`CeAtC}AbfCmrAleBuw@bfGwpCxxAym@tnAgc@xr@wT`jAu\\reCko@dh@uH|lAkPjZsDx_@sFn^cEnf@mFnf@}Dra@wCphA{Fd\\wA~w@_Bpp@aAxaBCvdBNpjE`EjdBdBtfBfB`_@bAjg@vBrh@vBxs@xEzy@hJjy@rLb[jF~x@vPzn@bPzm@lR~r@`Vbt@n[lO`G|YfNrz@ra@r|@nk@xh@n[pPrK|l@f`@rpA~v@hn@hZl`Ah_@da@zMzU|H|q@bUda@vNhP|Fpp@pXh`@lRjPjJ|PpJh}@~l@hp@hg@dUhRdKrIrOnMp}EfzE`A~@z|Az{Azg@vk@~i@xr@~Vp]rWja@tg@x|@f`@bv@do@fvAteBbnE|sAboD`uAjmDxe@xiAbM~X|Xbk@~c@|t@~b@~l@xWx\\`RrR|PhQZZ~HdIZZ|FtE~WdTri@l^l_@`Sp`@dQhd@rP`k@tNbf@bId`BxOvc@`E~_DvX|g@`FlYhCbrB|Rns@pGhkClVpGl@|KzApq@hJrM~BzAXra@pIj_@vMng@jSjo@v\\`_DfjB`sAdu@piDtqB`nBx~@njA~j@dyCxoAps@rZtm@|Yde@p[l^r[nZj]x_@hc@dXt`@tWpb@f]lu@jiAnsClTpi@`BxDhK`V~nAr_DbXnk@`o@jgAdLfPpRlUnUjVj[pYvc@`[d_@vTdc@tSldAx]bXbIfzBvp@j~Bxr@pK|Cdr@bS`rAva@hK`DjThIb\\`OtV|M|c@dZzf@r^ta@j`@bb@|c@dX|Zj~B`mCrm@vp@leBrsBho@`q@t]`\\jUrSpm@~i@hNdN`N|N"},{"ref":"E 05","mode":"driving","weight":974.41,"distance":19816.781,"geometry":"q`urtA|t{]lVx_@dKzOpJvPxJfRbJhSxGvPpH~S|FdTvCpKhCdOpA`Mz@|Oh@fKAjWg@zRcAxU[hULhKf@xJjB`MjCtLxEzLlFtItHlItGnEvCnAzCdAxEv@dGf@tFIrFy@xH_CbHoDpNaK|X_Ujd@_\\jLyGxPmJdPwItOkHdWcL`W{KrVaMvAw@`VkMlQqJt`@uQje@}Svs@oZzFaCtTiJ|oAkk@vhAkg@fn@yXnoBu{@ncAs_@zXyJbWyHdm@iPfj@wLhm@_Ljc@oGxg@oGr_@wCz]iD|eAgDdoAo@rDHby@|A~jAfGju@zG~pEpp@nJlAbZxD`e@tD|^jAd^\\r^aAzY}Af[eDnf@mH`j@_Mtv@cU~M{Dzq@ySlR{FxWaIlVmHnj@qPvkAa^xr@}Svf@gOdX_Hfa@mJzJqBjYoDrYeCfXkAp^U|_@x@`j@dBzb@f@xc@sAh`@eDnc@sGjg@cMra@}NdUmJzb@mQjSwHvOoEfRaEjZ_E~VgBj^I|VpAlZxCpb@tIdl@rPzbA`]|[fMf[vNpWtOtNhKrIjH|UxUjS|W|Rr\\pLvVxLhZpIbXpNfm@zZfsArJ`\\dNf`@`Qta@jL|UzOtYzPzWhUzZbR~S~bAnaApWn[bPhUvXdf@vJlR|ItRpOha@pIvWzGpUlJx_@zJ~h@jF|XvI~b@nKra@pEdObIbTnK~UbLnTrLlRrKzNhXxYvOnNzSjOnQ|Jr]lNpWlHb\\nEtT~AfYHda@kCnH_A~U}CtWaBfCOjYc@rXVtMt@rXjDhc@~HpOrFhMvEzM~FhQ|IdY~RvOxLpTrSfE~DjWp[fRvXxKrQ|@xAnZhh@v^~n@vsAp}BxgCrlE|FrKpH|LhTn^|HjKvIbKvIpJlJbJvBfBvFvExJfHvWnPdKdF|^pSfRvLdRtMfOvLh^nZlh@jc@ls@~l@rCbCxx@dr@hOzL|d@d^xg@z]d\\lSnMdIpZlP`_@|Q|Ap@~[vNfq@nVxSdH`xAz]bHlApl@lKxl@vIhVfDnz@jL``Cn\\|nDfg@pUlEh`@`JlSjGdZtM``@dVfQnNzQ~PpMbOrSdXdWnc@dUpf@hTrn@zLlg@zMjv@nKxu@hS|zA|H|m@nEn]zPfuAxBjQ`q@rdFzKj~@pI|fAbC`x@z@hm@@l@?tg@iAbw@eEjaAmJxnA{Dn`@kHdt@sR`nBoRbpB_Ixq@yAbO_f@ryEoo@jhFgKju@cEfZcJjj@qJdk@iRrhAqY~cBoc@pzBgXzjAq\\`_BkQlr@qIn\\}YfhAgMnd@iMpd@_\\phAiBjGaJ|ZagAjnDyQjl@mTpr@oo@fsBq^rnAaTjx@qQvy@oJbg@iHzb@wKhx@cGlj@{Exi@eHdhAmAj\\_AnZm@v^aAbv@Ark@@|`@dCv`AvDdiA`FllAfTlgF","duration":902.461,"driving_side":"right","duration_typical":902.461,"weight_typical":974.41,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 1 onto E 05 toward Toulouse/ Bayonne/ Bassin d'Arcachon/ Périgueux.","modifier":"slight right","bearing_after":225,"bearing_before":217,"location":[-0.506207,44.887065]},"speedLimitUnit":"km/h","destinations":"Toulouse, Bayonne, Bassin d'Arcachon, Périgueux","bannerInstructions":[{"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"15"}],"type":"off ramp","modifier":"right","text":"Exit 15"},"distanceAlongGeometry":19816.781}],"exits":"1","voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":19786.781},{"ssmlAnnouncement":"In 1 mile, Take exit 15.","announcement":"In 1 mile, Take exit 15.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 15.","announcement":"In a half mile, Take exit 15.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 15.","announcement":"Take exit 15.","distanceAlongGeometry":130}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[37,220,225],"duration":16.957,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":2,"weight":18.215,"geometry_index":21191,"location":[-0.506207,44.887065]},{"entry":[false,true],"in":0,"bearings":[62,242],"duration":1.117,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":1.199,"geometry_index":21199,"location":[-0.508878,44.885522]},{"entry":[false,true],"in":0,"bearings":[62,250],"duration":3.66,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":3.934,"geometry_index":21200,"location":[-0.509079,44.885446]},{"entry":[false,true],"in":0,"bearings":[81,264],"duration":4.25,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":4.566,"geometry_index":21203,"location":[-0.509834,44.885306]},{"entry":[false,true],"in":0,"bearings":[95,277],"duration":13.199,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":14.191,"geometry_index":21206,"location":[-0.510738,44.885306]},{"entry":[false,true],"in":0,"bearings":[38,206],"duration":3.457,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":3.715,"geometry_index":21215,"location":[-0.51285,44.88482]},{"entry":[false,true],"in":0,"bearings":[14,183],"duration":19.711,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":21.191,"geometry_index":21219,"location":[-0.513057,44.884418]},{"entry":[true,false],"in":1,"bearings":[158,336],"duration":9.691,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":0,"weight":10.66,"geometry_index":21230,"location":[-0.511386,44.881703]},{"entry":[true,false],"in":1,"bearings":[156,337],"duration":2.492,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":0,"weight":2.742,"geometry_index":21235,"location":[-0.510567,44.880242]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":1.992,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":0,"weight":2.191,"geometry_index":21236,"location":[-0.510337,44.879873]},{"entry":[true,false,false],"in":1,"bearings":[159,336,341],"duration":11.281,"turn_weight":6,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":18.402,"geometry_index":21237,"location":[-0.510152,44.879578]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":0.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":1.062,"geometry_index":21240,"location":[-0.509078,44.877581]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":1.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":2.164,"geometry_index":21241,"location":[-0.509013,44.877455]},{"entry":[true,false],"in":1,"bearings":[159,340],"duration":7.363,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":8.578,"geometry_index":21242,"location":[-0.508832,44.877108]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":6.68,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":7.348,"geometry_index":21243,"location":[-0.508122,44.875813]},{"entry":[true,true,false],"in":2,"bearings":[159,179,339],"duration":14.082,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":15.484,"geometry_index":21244,"location":[-0.507476,44.874633]},{"entry":[true,false,false],"in":2,"bearings":[161,331,339],"duration":6.039,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":7.633,"geometry_index":21246,"location":[-0.506092,44.872077]},{"entry":[true,true,false],"in":2,"bearings":[162,182,341],"duration":15.352,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":16.879,"geometry_index":21247,"location":[-0.50557,44.870981]},{"entry":[true,false,false],"in":2,"bearings":[171,344,349],"duration":11.391,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":13.273,"geometry_index":21252,"location":[-0.504519,44.868009]},{"entry":[true,false,false],"in":2,"bearings":[177,332,353],"duration":11.688,"turn_weight":0.75,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":13.598,"geometry_index":21256,"location":[-0.504086,44.865758]},{"entry":[false,true],"in":0,"bearings":[0,182],"duration":30.852,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":1,"weight":33.938,"geometry_index":21259,"location":[-0.503983,44.86325]},{"entry":[false,true],"in":0,"bearings":[9,189],"duration":2.051,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":1,"weight":2.309,"geometry_index":21264,"location":[-0.505136,44.85669]},{"entry":[false,true],"in":0,"bearings":[9,186],"duration":24.395,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":1,"weight":26.809,"geometry_index":21265,"location":[-0.505229,44.856256]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":6.789,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":7.449,"geometry_index":21274,"location":[-0.504481,44.851037]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":3.812,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":4.102,"geometry_index":21277,"location":[-0.503928,44.849672]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":9.559,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":10.273,"geometry_index":21279,"location":[-0.503616,44.8489]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":4.113,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":4.422,"geometry_index":21281,"location":[-0.502838,44.846976]},{"entry":[true,true,false],"in":2,"bearings":[164,189,344],"duration":19.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":20.219,"geometry_index":21282,"location":[-0.502503,44.846147]},{"entry":[false,true,false],"in":0,"bearings":[2,183,352],"duration":5.844,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":6.875,"geometry_index":21291,"location":[-0.501684,44.842086]},{"entry":[false,true,false],"in":0,"bearings":[1,177,338],"duration":14.875,"turn_weight":0.75,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":15.973,"geometry_index":21293,"location":[-0.501755,44.840823]},{"entry":[true,false],"in":1,"bearings":[160,342],"duration":1.68,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":1.723,"geometry_index":21298,"location":[-0.501011,44.837917]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":92.84,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":92.84,"geometry_index":21299,"location":[-0.500828,44.837562]},{"entry":[false,true],"in":0,"bearings":[68,248],"duration":21.309,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":21.301,"geometry_index":21343,"location":[-0.515873,44.821889]},{"entry":[false,true],"in":0,"bearings":[25,200],"duration":14.25,"turn_weight":0.5,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":15.078,"geometry_index":21356,"location":[-0.520422,44.818999]},{"entry":[true,false],"in":1,"bearings":[171,352],"duration":3.82,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":3.918,"geometry_index":21363,"location":[-0.520875,44.816184]},{"entry":[true,false],"in":1,"bearings":[177,355],"duration":4.445,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":4.555,"geometry_index":21365,"location":[-0.520747,44.815421]},{"entry":[false,true,true],"in":0,"bearings":[1,185,206],"duration":15.234,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":15.609,"geometry_index":21368,"location":[-0.520733,44.814521]},{"entry":[false,false,true],"in":1,"bearings":[23,28,210],"duration":4.234,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":2,"weight":5.082,"geometry_index":21376,"location":[-0.521859,44.811851]},{"entry":[false,true],"in":0,"bearings":[34,217],"duration":7.824,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":8.023,"geometry_index":21378,"location":[-0.52241,44.811238]},{"entry":[false,true],"in":0,"bearings":[46,226],"duration":0.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":0.266,"geometry_index":21382,"location":[-0.523673,44.810235]},{"entry":[false,true],"in":0,"bearings":[46,227],"duration":3.711,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":4.297,"geometry_index":21383,"location":[-0.523718,44.810204]},{"entry":[false,true],"in":0,"bearings":[47,227],"duration":4.27,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":4.375,"geometry_index":21384,"location":[-0.524379,44.809764]},{"entry":[false,true],"in":0,"bearings":[47,227],"duration":11.312,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":11.879,"geometry_index":21385,"location":[-0.525147,44.809256]},{"entry":[false,true],"in":0,"bearings":[47,227],"duration":18.309,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":19.223,"geometry_index":21386,"location":[-0.527172,44.8079]},{"entry":[false,true,true],"in":0,"bearings":[47,228,246],"duration":1.074,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":1.117,"geometry_index":21387,"location":[-0.530462,44.805711]},{"entry":[false,true],"in":0,"bearings":[48,226],"duration":1.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":1.277,"geometry_index":21388,"location":[-0.530664,44.805584]},{"entry":[false,true],"in":0,"bearings":[46,226],"duration":2.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":2.699,"geometry_index":21389,"location":[-0.530887,44.805431]},{"entry":[false,true],"in":0,"bearings":[46,221],"duration":4.973,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":5.223,"geometry_index":21390,"location":[-0.531391,44.80509]},{"entry":[false,true],"in":0,"bearings":[34,211],"duration":20.793,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":21.836,"geometry_index":21395,"location":[-0.532198,44.804344]},{"entry":[false,true],"in":0,"bearings":[32,212],"duration":5.211,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":5.473,"geometry_index":21405,"location":[-0.534875,44.80089]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.535611,44.800051],"geometry_index":21406,"admin_index":11,"weight":1.977,"is_urban":false,"turn_weight":1.5,"duration":0.465,"bearings":[30,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":5.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.836,"geometry_index":21407,"location":[-0.535677,44.799977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.547,"geometry_index":21408,"location":[-0.536496,44.799052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,210],"duration":10.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.496,"geometry_index":21409,"location":[-0.536718,44.798791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.391,"geometry_index":21412,"location":[-0.538038,44.797064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,204],"duration":6.156,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.289,"geometry_index":21413,"location":[-0.538201,44.796832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":17.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.293,"geometry_index":21416,"location":[-0.538808,44.795831]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[7,14,191],"duration":16.344,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":16.73,"geometry_index":21420,"location":[-0.540077,44.792805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":10.902,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.164,"geometry_index":21425,"location":[-0.540785,44.789872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":53.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":54.535,"geometry_index":21426,"location":[-0.541257,44.787807]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":5.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.555,"geometry_index":21442,"location":[-0.548507,44.779907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.758,"geometry_index":21443,"location":[-0.549978,44.779582]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.891,"geometry_index":21444,"location":[-0.550729,44.779423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,254],"duration":5.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.285,"geometry_index":21445,"location":[-0.551217,44.779319]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[74,253,260],"duration":25.305,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.547,"geometry_index":21447,"location":[-0.552891,44.778972]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":0.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":0.098,"geometry_index":21452,"location":[-0.560384,44.7777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.560407,44.777699],"geometry_index":21453,"admin_index":11,"weight":7.406,"is_urban":true,"turn_weight":1.6,"duration":5.41,"bearings":[82,86,270],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[93,277,282],"duration":8.066,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":8.66,"geometry_index":21455,"location":[-0.561956,44.777736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,284],"duration":4.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":5.207,"geometry_index":21457,"location":[-0.564295,44.778018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":15.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":16.539,"geometry_index":21459,"location":[-0.565682,44.778262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":1.016,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":1.094,"geometry_index":21462,"location":[-0.570082,44.779048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":26.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":29.676,"geometry_index":21463,"location":[-0.57034,44.779093]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,288],"duration":3.023,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":3.316,"geometry_index":21465,"location":[-0.577572,44.780493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,288],"duration":10.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":11.648,"geometry_index":21466,"location":[-0.578442,44.780689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":17.832,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":19.609,"geometry_index":21470,"location":[-0.581457,44.781459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,293],"duration":15.621,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":17.551,"geometry_index":21473,"location":[-0.586264,44.782872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,298],"duration":2.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":2.734,"geometry_index":21477,"location":[-0.590268,44.784239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,298],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":8.102,"geometry_index":21478,"location":[-0.590868,44.784467]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[119,299,307],"duration":0.547,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":0.594,"geometry_index":21480,"location":[-0.592646,44.78516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,299],"duration":19.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":21.199,"geometry_index":21481,"location":[-0.59278,44.785213]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,300],"duration":16.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":17.723,"geometry_index":21485,"location":[-0.597584,44.787187]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,294],"duration":8.625,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":9.68,"geometry_index":21488,"location":[-0.601636,44.788805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,287],"duration":13.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":14.832,"geometry_index":21491,"location":[-0.603792,44.789435]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.60726,44.790026],"geometry_index":21495,"admin_index":11,"weight":14.328,"is_urban":true,"turn_weight":0.5,"duration":12.312,"bearings":[94,100,277],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":2.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":2.488,"geometry_index":21500,"location":[-0.610274,44.790154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,265],"duration":11.066,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":12.422,"geometry_index":21501,"location":[-0.610817,44.790153]},{"bearings":[83,263],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"geometry_index":21504,"location":[-0.614295,44.789881]}]},{"ref":"A 63; E 05; E 70","mode":"driving","weight":989.941,"distance":25333.633,"geometry":"iqvltAz`vd@`AleA~I|zBzBht@zBvr@rB~h@T`UEfPYxM]bIsAbVk@bHUzCsArNaBhR{@tLO`I?bILlKj@~Mz@bMHn@|BvPlCdO|DpN`EvLjCtGlErI~HxLtH~HxHpFvMtF~HjBlGr@vHF|Js@tJaB~HwC~H}D~IgD`HqBfG_AfLAhId@rKtB~IvDvErCnHbK~ExF|Zb^zNbSdFrIpGrKzEhIhInNnV~e@nUzg@lLhXxa@hkAtq@tsB|`@znAhd@lvAzgA`jDhhBzwFp`ApzCpfArfDbItVfZz_Afp@|qB~w@`dCdx@ndCrXd{@nw@faCxy@vaCho@|fB|p@ffBz`@vcAn^~|@`x@~gBvJvS|Ynn@fbA`rBrd@b}@`o@nlAdaAbhBjqCdaF~xBnvDjnBfiDbPvXreAvjBpkAztBf_Ah`BdBzCzRb]`BrC|@|AjdIfrNt[zk@pd@`}@pFrKlJ~Qzl@`oA`@z@hv@r`Bdc@h_AfDnHz]lu@`d@x`A~{@dhBfUle@dk@hhA~FhLzVne@`\\|k@`k@bcAn}@jzArdAjcBj^nk@NV`S|YvgB|qCxxBliDzcFv}Hr}BjmDhmApfBd]xd@~f@br@zp@f|@xz@neAxBfCvfA~nAruAz{Ar{A`_BtvGhxGn_En_EfAfAXXfAfAd~Bf~B`rA~sA|tCjyCvcBnhB|mClzCfvB~gC~ArB`r@f{@~oAxaB~kAnaBp|@vpAbp@~aAd_AvyAxy@pwArr@nnAjiAjxBbeA~tBjh@lgAdr@|zAr_BbrDvf@hlAreBlhE~rAtiDvk@|zABH~kClcHfw@bsBfBjElW~o@hWvo@lDdIdjArkCr]~u@h]pr@|{AnyCrqCdnF~F`LjbBbaDrjAjzB`nBltDb}AvwC`kAxxBzw@lxA|h@f~@zj@p_Ax]pj@x^vj@zc@~o@rfA|yAx`BznB|dA~iAt`@na@rb@nc@|[bZfq@zm@pw@vp@xy@rp@~lAv|@frA~{@h`Ank@pcAxi@loA`p@|mGxvCnjCrkA|~DfgB","duration":1042.035,"driving_side":"right","duration_typical":1042.035,"weight_typical":989.941,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 15.","modifier":"slight right","bearing_after":268,"bearing_before":263,"location":[-0.618014,44.789541]},"speedLimitUnit":"km/h","destinations":"Saint-Sébastien - Bayonne - Mont de Marsan - Bassin d'Arcachon","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E70","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 70"}],"type":"fork","modifier":"straight","text":"E 05 / E 70"},"distanceAlongGeometry":25333.633}],"exits":"15","voiceInstructions":[{"ssmlAnnouncement":"Continue for 16 miles.","announcement":"Continue for 16 miles.","distanceAlongGeometry":25303.633},{"ssmlAnnouncement":"In 1 mile, Keep straight to stay on E 05.","announcement":"In 1 mile, Keep straight to stay on E 05.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep straight to stay on E 05.","announcement":"In a half mile, Keep straight to stay on E 05.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep straight to stay on E 05, E 70.","announcement":"Keep straight to stay on E 05, E 70.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[83,262,268],"duration":3.57,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":2,"weight":3.914,"geometry_index":21505,"location":[-0.618014,44.789541]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[83,88,263],"duration":21.574,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":2,"weight":23.699,"geometry_index":21506,"location":[-0.619141,44.789508]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,275],"duration":4.172,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":4.691,"geometry_index":21512,"location":[-0.624106,44.789142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,283],"duration":8.57,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":9.645,"geometry_index":21516,"location":[-0.625021,44.789234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,253],"duration":6.801,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":7.648,"geometry_index":21526,"location":[-0.626889,44.78931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,224],"duration":6.266,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":7.051,"geometry_index":21532,"location":[-0.62821,44.788811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,192],"duration":18.672,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":20.539,"geometry_index":21536,"location":[-0.628835,44.788103]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.628937,44.785486],"geometry_index":21552,"admin_index":11,"weight":12.996,"is_urban":true,"turn_weight":6,"duration":6.379,"bearings":[23,41,218],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,226],"duration":1.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":2.059,"geometry_index":21556,"location":[-0.630052,44.784558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":1.387,"geometry_index":21558,"location":[-0.630419,44.784311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,230],"duration":47.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":51.438,"geometry_index":21559,"location":[-0.630667,44.784146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":48.121,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":50.52,"geometry_index":21567,"location":[-0.640852,44.779521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":1.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.613,"geometry_index":21570,"location":[-0.650005,44.775642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":11.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.926,"geometry_index":21571,"location":[-0.650384,44.77548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":8.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.863,"geometry_index":21573,"location":[-0.653261,44.774256]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":8.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.648,"geometry_index":21574,"location":[-0.65539,44.773344]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":41.18,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.145,"geometry_index":21575,"location":[-0.657526,44.772429]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":6.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.512,"geometry_index":21582,"location":[-0.668072,44.767556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,231],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.371,"geometry_index":21583,"location":[-0.669752,44.766643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":22.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.625,"geometry_index":21584,"location":[-0.670084,44.766455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":52.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":50.918,"geometry_index":21588,"location":[-0.674919,44.763577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":1.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.699,"geometry_index":21592,"location":[-0.68588,44.756442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":20.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.328,"geometry_index":21593,"location":[-0.686292,44.756168]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":7.133,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.938,"geometry_index":21595,"location":[-0.689902,44.753813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.477,"geometry_index":21596,"location":[-0.691459,44.752785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":36.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":35.004,"geometry_index":21598,"location":[-0.692019,44.752416]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[47,228,244],"duration":5.898,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.598,"geometry_index":21601,"location":[-0.700128,44.74713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.652,"geometry_index":21603,"location":[-0.701839,44.74607]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":27.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.625,"geometry_index":21604,"location":[-0.702041,44.745949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.676,"geometry_index":21613,"location":[-0.710006,44.741404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.648,"geometry_index":21615,"location":[-0.711794,44.740341]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.712007,44.740213],"geometry_index":21616,"admin_index":11,"weight":6.289,"is_urban":false,"turn_weight":1,"duration":5.898,"bearings":[45,50,229],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":22.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.926,"geometry_index":21618,"location":[-0.713342,44.739366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":87.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":79.102,"geometry_index":21623,"location":[-0.718224,44.736037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":53.254,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.91,"geometry_index":21633,"location":[-0.736811,44.722272]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":15.707,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.117,"geometry_index":21638,"location":[-0.745683,44.71372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.164,"geometry_index":21641,"location":[-0.748812,44.710591]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":169.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":148.66,"geometry_index":21642,"location":[-0.748848,44.710555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":23.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.441,"geometry_index":21666,"location":[-0.789769,44.68135]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[55,235,237],"duration":2.715,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.371,"geometry_index":21670,"location":[-0.796413,44.67814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":3.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.871,"geometry_index":21671,"location":[-0.797197,44.677749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":37.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":32.809,"geometry_index":21673,"location":[-0.79814,44.677273]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.707,"geometry_index":21678,"location":[-0.808394,44.671262]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.808603,44.671134],"geometry_index":21679,"admin_index":11,"weight":9.781,"is_urban":false,"turn_weight":1,"duration":9.762,"bearings":[48,49,229],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":34.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.461,"geometry_index":21680,"location":[-0.811197,44.669544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":29.488,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.52,"geometry_index":21684,"location":[-0.820467,44.663834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,219],"duration":8.371,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.516,"geometry_index":21691,"location":[-0.827579,44.658813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":8.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.715,"geometry_index":21692,"location":[-0.829369,44.657248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.676,"geometry_index":21694,"location":[-0.831121,44.65559]},{"bearings":[34,214],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"geometry_index":21696,"location":[-0.832139,44.654557]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 120 miles.","announcement":"Continue for 120 miles.","distanceAlongGeometry":193334.938},{"ssmlAnnouncement":"In 2 miles, Keep right to take AP-1.","announcement":"In 2 miles, Keep right to take AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take AP-1.","announcement":"In a half mile, Keep right to take AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take AP-1, AP-8 toward Bilbao, Vitoria-Gasteiz.","announcement":"Keep right to take AP-1, AP-8 toward Bilbao, Vitoria-Gasteiz.","distanceAlongGeometry":293.333}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[21,201,201],"duration":30.414,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":27.367,"geometry_index":21707,"location":[-0.843948,44.63626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":35.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.992,"geometry_index":21713,"location":[-0.847524,44.628872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.850226,44.619955],"geometry_index":21720,"admin_index":11,"weight":23.512,"is_urban":false,"turn_weight":1,"duration":25.746,"bearings":[6,8,186],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":212.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":185.777,"geometry_index":21730,"location":[-0.850618,44.611629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":22.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.211,"geometry_index":21773,"location":[-0.833852,44.544879]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[10,190,194],"duration":26.492,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.836,"geometry_index":21777,"location":[-0.83581,44.537727]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.837192,44.530199],"geometry_index":21781,"admin_index":11,"weight":44.031,"is_urban":false,"turn_weight":0.5,"duration":49.77,"bearings":[3,6,184],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":2.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.93,"geometry_index":21788,"location":[-0.840466,44.516045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":36.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.824,"geometry_index":21789,"location":[-0.840721,44.51543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":1.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.711,"geometry_index":21796,"location":[-0.842183,44.505063]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[172,177,352],"duration":22.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.285,"geometry_index":21797,"location":[-0.84207,44.504504]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.840574,44.49827],"geometry_index":21801,"admin_index":11,"weight":159.832,"is_urban":false,"turn_weight":1,"duration":181.547,"bearings":[168,346,351],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":6.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.84,"geometry_index":21824,"location":[-0.810727,44.444617]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.811337,44.442501],"geometry_index":21826,"admin_index":11,"weight":86.129,"is_urban":false,"turn_weight":0.5,"duration":97.871,"bearings":[6,14,194],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,353],"duration":36.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":32.969,"geometry_index":21837,"location":[-0.820269,44.415626]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.818463,44.405294],"geometry_index":21843,"admin_index":11,"weight":41.809,"is_urban":false,"turn_weight":15,"duration":29.797,"bearings":[185,193,358],"out":0,"in":2,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.823294,44.397863],"geometry_index":21856,"admin_index":11,"weight":118.875,"is_urban":false,"turn_weight":0.5,"duration":131.535,"bearings":[41,43,224],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.852,"geometry_index":21867,"location":[-0.848493,44.365537]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205,208],"duration":26.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.906,"geometry_index":21868,"location":[-0.84865,44.365294]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.852985,44.358623],"geometry_index":21870,"admin_index":11,"weight":28.395,"is_urban":false,"turn_weight":1,"duration":30.449,"bearings":[23,25,205],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":9.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.121,"geometry_index":21872,"location":[-0.856485,44.353172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":5.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.961,"geometry_index":21874,"location":[-0.857522,44.351559]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":3.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.32,"geometry_index":21875,"location":[-0.858154,44.350567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":15.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.902,"geometry_index":21876,"location":[-0.8586,44.349908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,207],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.285,"geometry_index":21879,"location":[-0.860552,44.347198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.860594,44.347139],"geometry_index":21880,"admin_index":11,"weight":18.109,"is_urban":false,"toll_collection":{"name":"Saugnac et Muret","type":"toll_booth"},"turn_weight":15,"duration":3.555,"bearings":[27,204],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,201],"duration":10.488,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.16,"geometry_index":21881,"location":[-0.860998,44.346501]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,204],"duration":7.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.254,"geometry_index":21882,"location":[-0.861849,44.344919]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.594,"geometry_index":21883,"location":[-0.862554,44.343778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,205],"duration":73.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":64.066,"geometry_index":21884,"location":[-0.863098,44.342899]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[36,212,222],"duration":17.141,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.402,"geometry_index":21901,"location":[-0.879737,44.322588]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[6,11,187],"duration":221.109,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":193.449,"geometry_index":21908,"location":[-0.882185,44.318084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.102,"geometry_index":21922,"location":[-0.901718,44.257047]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[15,195,201],"duration":20.949,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.324,"geometry_index":21923,"location":[-0.901963,44.25639]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.90413,44.250585],"geometry_index":21924,"admin_index":11,"weight":62.574,"is_urban":false,"turn_weight":1,"duration":70.379,"bearings":[8,15,195],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":45.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.879,"geometry_index":21928,"location":[-0.911604,44.23112]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":2.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.199,"geometry_index":21942,"location":[-0.922977,44.221116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,210],"duration":52.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":48.312,"geometry_index":21943,"location":[-0.923498,44.220544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,204],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.367,"geometry_index":21960,"location":[-0.92937,44.204247]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[24,203,210],"duration":9.43,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.703,"geometry_index":21961,"location":[-0.929823,44.203503]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[18,23,203],"duration":64.934,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":58.434,"geometry_index":21962,"location":[-0.931311,44.201049]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":19.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.367,"geometry_index":21967,"location":[-0.941496,44.183913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":115.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":100.828,"geometry_index":21969,"location":[-0.944612,44.178679]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[50,231,234],"duration":13.594,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.227,"geometry_index":21985,"location":[-0.964441,44.149075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,215],"duration":6.754,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.059,"geometry_index":21991,"location":[-0.968316,44.146353]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,206],"duration":201.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":181.723,"geometry_index":21994,"location":[-0.969714,44.144703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.168,"geometry_index":22016,"location":[-0.99854,44.091069]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[18,197,203],"duration":25.855,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.254,"geometry_index":22017,"location":[-0.998562,44.091019]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.002021,44.083013],"geometry_index":22021,"admin_index":11,"weight":93.324,"is_urban":false,"turn_weight":1,"duration":102.59,"bearings":[10,17,197],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":3.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.875,"geometry_index":22037,"location":[-1.006133,44.054083]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":8.176,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.352,"geometry_index":22038,"location":[-1.006601,44.05323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,204],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.07,"geometry_index":22040,"location":[-1.007878,44.051074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":2.828,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.531,"geometry_index":22041,"location":[-1.008069,44.050761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":202.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":177.25,"geometry_index":22042,"location":[-1.008507,44.050025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":64.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":56.531,"geometry_index":22068,"location":[-1.040972,43.990704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.559,"geometry_index":22077,"location":[-1.059126,43.974823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,226],"duration":15.156,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.242,"geometry_index":22078,"location":[-1.05935,43.974689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,204],"duration":64.273,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":56.215,"geometry_index":22084,"location":[-1.062984,43.971352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,225],"duration":46.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.707,"geometry_index":22103,"location":[-1.071089,43.952109]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,225],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.969,"geometry_index":22106,"location":[-1.085789,43.941357]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[45,225,245],"duration":35.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.988,"geometry_index":22107,"location":[-1.086479,43.940852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.096002,43.933919],"geometry_index":22109,"admin_index":11,"weight":221.754,"is_urban":false,"turn_weight":1,"duration":238.672,"bearings":[44,45,224],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.211,"geometry_index":22144,"location":[-1.132609,43.876256]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.132646,43.876199],"geometry_index":22145,"admin_index":11,"weight":26.527,"is_urban":false,"turn_weight":15,"duration":12.141,"bearings":[25,209,213],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,226],"duration":20.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.531,"geometry_index":22149,"location":[-1.135246,43.873534]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,254],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.109,"geometry_index":22158,"location":[-1.141532,43.870708]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.141964,43.870618],"geometry_index":22159,"admin_index":11,"weight":134.699,"is_urban":false,"turn_weight":0.5,"duration":149.133,"bearings":[68,74,254],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":2.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.25,"geometry_index":22178,"location":[-1.1767,43.840734]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,206],"duration":2.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.531,"geometry_index":22179,"location":[-1.177126,43.84008]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":5.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.066,"geometry_index":22180,"location":[-1.17757,43.839421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,209],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.199,"geometry_index":22181,"location":[-1.178463,43.838094]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":21.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.484,"geometry_index":22182,"location":[-1.178687,43.837802]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[29,206],"duration":0.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.07,"geometry_index":22184,"location":[-1.180565,43.835359]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[26,206],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.574,"geometry_index":22185,"location":[-1.180577,43.835341]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.180619,43.835279],"geometry_index":22186,"admin_index":11,"weight":15.859,"is_urban":false,"toll_collection":{"name":"Castets","type":"toll_booth"},"turn_weight":15,"duration":0.98,"bearings":[26,206],"out":1,"in":0,"classes":["tunnel","toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,203],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.844,"geometry_index":22187,"location":[-1.180649,43.835234]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,205],"duration":2.449,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.137,"geometry_index":22188,"location":[-1.181445,43.833849]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,204],"duration":6.738,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.879,"geometry_index":22189,"location":[-1.18177,43.833356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":2.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.324,"geometry_index":22190,"location":[-1.182631,43.831976]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":77.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":67.773,"geometry_index":22191,"location":[-1.183119,43.831193]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206,210],"duration":27.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":24.043,"geometry_index":22194,"location":[-1.198361,43.808598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.203226,43.801384],"geometry_index":22195,"admin_index":11,"weight":58.23,"is_urban":false,"turn_weight":1,"duration":63.598,"bearings":[24,26,206],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.285,"geometry_index":22209,"location":[-1.209657,43.78348]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,193],"duration":7.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.316,"geometry_index":22210,"location":[-1.209686,43.783393]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.449,"geometry_index":22213,"location":[-1.210471,43.781157]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":16.66,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.406,"geometry_index":22214,"location":[-1.210741,43.780414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":199.668,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":179.691,"geometry_index":22221,"location":[-1.213305,43.776048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":22.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.117,"geometry_index":22237,"location":[-1.227666,43.720664]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.086,"geometry_index":22238,"location":[-1.228067,43.714256]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[3,182,201],"duration":19.961,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.949,"geometry_index":22239,"location":[-1.228108,43.713594]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.228445,43.707975],"geometry_index":22240,"admin_index":11,"weight":21.629,"is_urban":false,"turn_weight":0.5,"duration":22.852,"bearings":[0,2,182],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.228798,43.701713],"geometry_index":22241,"admin_index":11,"weight":21.684,"is_urban":false,"turn_weight":15,"duration":22.043,"bearings":[2,182,186],"out":1,"in":0,"turn_duration":15.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,192],"duration":13.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.785,"geometry_index":22244,"location":[-1.229025,43.699435]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,221],"duration":9.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.762,"geometry_index":22249,"location":[-1.231357,43.695456]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.234341,43.693397],"geometry_index":22252,"admin_index":11,"weight":11.375,"is_urban":false,"turn_weight":1,"duration":10.934,"bearings":[37,53,239],"out":2,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":126.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":117.203,"geometry_index":22254,"location":[-1.238302,43.692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,259],"duration":33.238,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":30.738,"geometry_index":22277,"location":[-1.28675,43.681387]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[85,259,262],"duration":22.543,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.391,"geometry_index":22282,"location":[-1.300091,43.680538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.308726,43.678422],"geometry_index":22289,"admin_index":11,"weight":76.066,"is_urban":false,"turn_weight":1,"duration":79.043,"bearings":[53,63,239],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":4.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.75,"geometry_index":22305,"location":[-1.328343,43.660107]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,219],"duration":2.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.676,"geometry_index":22306,"location":[-1.329335,43.659146]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,221],"duration":33.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":29.992,"geometry_index":22307,"location":[-1.330073,43.658496]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":98.746,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":88.863,"geometry_index":22319,"location":[-1.340991,43.653149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,241],"duration":27.516,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.445,"geometry_index":22345,"location":[-1.376893,43.642511]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,219],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.625,"geometry_index":22355,"location":[-1.385301,43.637344]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,220],"duration":25.488,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.57,"geometry_index":22356,"location":[-1.385474,43.637191]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":6.176,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.551,"geometry_index":22359,"location":[-1.392018,43.631623]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":2.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.406,"geometry_index":22360,"location":[-1.393597,43.630272]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":6.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.559,"geometry_index":22362,"location":[-1.394249,43.62972]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,220],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.41,"geometry_index":22363,"location":[-1.395773,43.628453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":2.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.453,"geometry_index":22364,"location":[-1.395881,43.628361]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.102,"geometry_index":22365,"location":[-1.396507,43.627825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":7.926,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.129,"geometry_index":22366,"location":[-1.396789,43.627584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":8.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.656,"geometry_index":22368,"location":[-1.398209,43.626383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,219],"duration":20.27,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.227,"geometry_index":22370,"location":[-1.399788,43.625123]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.400834,43.624179],"geometry_index":22371,"admin_index":11,"weight":33.258,"is_urban":false,"toll_collection":{"name":"Péage de Bénesse-Maremne","type":"toll_booth"},"turn_weight":15,"duration":20.285,"bearings":[39,213],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,217],"duration":12.094,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.879,"geometry_index":22373,"location":[-1.403719,43.621074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,222],"duration":59.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":53.586,"geometry_index":22376,"location":[-1.405578,43.619452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,355],"duration":1.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.469,"geometry_index":22394,"location":[-1.416345,43.602708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":12.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":11.344,"geometry_index":22395,"location":[-1.416275,43.602273]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,356],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.68,"geometry_index":22400,"location":[-1.415707,43.598839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[181,359],"duration":28.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":26.492,"geometry_index":22401,"location":[-1.415689,43.59833]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":1.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.547,"geometry_index":22409,"location":[-1.418412,43.590481]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201,213],"duration":19.887,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.375,"geometry_index":22410,"location":[-1.418657,43.590035]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.420675,43.584686],"geometry_index":22417,"admin_index":11,"weight":8.82,"is_urban":false,"turn_weight":1,"duration":8.461,"bearings":[13,193,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":1.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.441,"geometry_index":22421,"location":[-1.421582,43.582423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,202],"duration":17.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.523,"geometry_index":22422,"location":[-1.421788,43.582023]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":57.332,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":53.023,"geometry_index":22432,"location":[-1.425827,43.577047]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,194],"duration":17.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.598,"geometry_index":22464,"location":[-1.430751,43.55944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":9.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.914,"geometry_index":22474,"location":[-1.432367,43.553766]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":15.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.09,"geometry_index":22475,"location":[-1.432603,43.550642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.613,"geometry_index":22482,"location":[-1.432004,43.54575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,349],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.383,"geometry_index":22483,"location":[-1.43185,43.545192]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[171,190,351],"duration":22.383,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":20.688,"geometry_index":22484,"location":[-1.431747,43.54471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.531,"geometry_index":22495,"location":[-1.432008,43.538426]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.431973,43.537962],"geometry_index":22496,"admin_index":11,"weight":7.129,"is_urban":false,"turn_weight":0.5,"duration":7.207,"bearings":[167,351,357],"out":0,"in":2,"turn_duration":0.038,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":13.098,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":12.098,"geometry_index":22499,"location":[-1.431457,43.536045]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,206],"duration":51.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.934,"geometry_index":22504,"location":[-1.431842,43.532548]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":104.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":101.402,"geometry_index":22517,"location":[-1.441858,43.520739]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,211,217],"duration":15.891,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.266,"geometry_index":22582,"location":[-1.448022,43.49527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,187],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.477,"geometry_index":22594,"location":[-1.449789,43.491435]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,182],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.074,"geometry_index":22596,"location":[-1.449808,43.491318]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":11.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.359,"geometry_index":22597,"location":[-1.449822,43.491054]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.449246,43.48816],"geometry_index":22606,"admin_index":11,"weight":5.266,"is_urban":false,"turn_weight":1,"duration":4.074,"bearings":[167,346,347],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":18.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.062,"geometry_index":22607,"location":[-1.448949,43.487242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,347],"duration":15.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":16,"geometry_index":22608,"location":[-1.447593,43.4831]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199,208],"duration":15.457,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.836,"geometry_index":22622,"location":[-1.447567,43.479459]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,233],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.633,"geometry_index":22634,"location":[-1.450637,43.476587]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.828,"geometry_index":22635,"location":[-1.450804,43.476497]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,236],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.922,"geometry_index":22637,"location":[-1.451284,43.47624]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":2.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.602,"geometry_index":22638,"location":[-1.451539,43.476115]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":15.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.797,"geometry_index":22641,"location":[-1.45225,43.475777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.457156,43.474347],"geometry_index":22653,"admin_index":11,"weight":1.508,"is_urban":false,"turn_weight":1,"duration":0.516,"bearings":[75,77,257],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":5.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.422,"geometry_index":22654,"location":[-1.457324,43.474319]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,248],"duration":11.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.633,"geometry_index":22658,"location":[-1.459103,43.473971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,229],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.617,"geometry_index":22670,"location":[-1.46242,43.472444]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":23.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":22.992,"geometry_index":22671,"location":[-1.462579,43.472342]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,266],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.258,"geometry_index":22681,"location":[-1.469726,43.470016]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":2.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.539,"geometry_index":22682,"location":[-1.470529,43.469977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,264],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.023,"geometry_index":22683,"location":[-1.471433,43.46993]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,258],"duration":32.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.938,"geometry_index":22684,"location":[-1.472508,43.469846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":3.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.438,"geometry_index":22689,"location":[-1.482519,43.465953]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":40.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.391,"geometry_index":22690,"location":[-1.483511,43.465432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,260],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.789,"geometry_index":22699,"location":[-1.495788,43.46106]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,265],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.43,"geometry_index":22700,"location":[-1.496385,43.460982]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,265],"duration":1.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.023,"geometry_index":22701,"location":[-1.496867,43.460952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,271],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.453,"geometry_index":22702,"location":[-1.497207,43.460931]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-1.498031,43.460937],"geometry_index":22703,"admin_index":11,"weight":13.68,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.059,"bearings":[91,268,276],"out":1,"in":0,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.502735,43.461235],"geometry_index":22707,"admin_index":11,"weight":6.727,"is_urban":false,"turn_weight":0.5,"duration":6.395,"bearings":[84,96,276],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,275],"duration":35.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":34.789,"geometry_index":22708,"location":[-1.504958,43.461401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,241],"duration":59.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":58.492,"geometry_index":22718,"location":[-1.517272,43.460721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":25.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.312,"geometry_index":22739,"location":[-1.534553,43.450325]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,266],"duration":6.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.453,"geometry_index":22749,"location":[-1.541875,43.447169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,280],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.984,"geometry_index":22754,"location":[-1.544115,43.447287]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,284],"duration":1.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.719,"geometry_index":22756,"location":[-1.544801,43.447378]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":9.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.375,"geometry_index":22757,"location":[-1.545313,43.447468]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,284],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.875,"geometry_index":22759,"location":[-1.548142,43.447962]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[104,282,291],"duration":5.621,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.461,"geometry_index":22760,"location":[-1.549011,43.448114]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,283],"duration":23.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.148,"geometry_index":22761,"location":[-1.550366,43.44832]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.553305,43.448795],"geometry_index":22765,"admin_index":11,"weight":22.977,"is_urban":false,"toll_collection":{"name":"Péage de La Négresse","type":"toll_booth"},"turn_weight":15,"duration":7.977,"bearings":[99,279],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[99,269,300],"duration":7.703,"turn_duration":0.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.664,"geometry_index":22766,"location":[-1.554308,43.448914]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.55615,43.448881],"geometry_index":22767,"admin_index":11,"weight":7.492,"is_urban":false,"turn_weight":1,"duration":6.512,"bearings":[70,89,265],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.558053,43.448731],"geometry_index":22769,"admin_index":11,"weight":8.43,"is_urban":false,"turn_weight":0.5,"duration":7.957,"bearings":[79,84,258],"out":2,"in":1,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,244],"duration":74.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":72.773,"geometry_index":22774,"location":[-1.560492,43.448185]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,238],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.719,"geometry_index":22799,"location":[-1.57617,43.432775]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,242],"duration":20.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.281,"geometry_index":22800,"location":[-1.576705,43.432536]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,242],"duration":27.422,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.047,"geometry_index":22806,"location":[-1.585094,43.430073]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233,238],"duration":22.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.305,"geometry_index":22814,"location":[-1.594712,43.424603]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.600227,43.420341],"geometry_index":22824,"admin_index":11,"weight":14.68,"is_urban":false,"turn_weight":1,"duration":14.406,"bearings":[31,37,217],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"tunnel_name":"Tranchée couverte de Guéthary","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[50,232],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.352,"geometry_index":22829,"location":[-1.603913,43.417696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,234],"duration":86.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":81.922,"geometry_index":22830,"location":[-1.604896,43.41713]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":2.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.43,"geometry_index":22858,"location":[-1.631097,43.404494]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[50,226,242],"duration":29.062,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":28.312,"geometry_index":22860,"location":[-1.631818,43.40406]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.637059,43.39765],"geometry_index":22868,"admin_index":11,"weight":3.031,"is_urban":false,"turn_weight":0.5,"duration":2.555,"bearings":[6,10,189],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,186],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.117,"geometry_index":22869,"location":[-1.637196,43.397039]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":40.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.039,"geometry_index":22870,"location":[-1.637276,43.396504]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":14.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.734,"geometry_index":22879,"location":[-1.64231,43.386593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,192],"duration":3.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.938,"geometry_index":22882,"location":[-1.644132,43.382897]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":95.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":95.656,"geometry_index":22883,"location":[-1.644439,43.381867]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244,249],"duration":10.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.734,"geometry_index":22910,"location":[-1.67233,43.373432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,243],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.133,"geometry_index":22912,"location":[-1.675781,43.372224]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,242],"duration":8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8,"geometry_index":22913,"location":[-1.676986,43.371786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.679568,43.370725],"geometry_index":22915,"admin_index":11,"weight":43.938,"is_urban":false,"turn_weight":1,"duration":44.062,"bearings":[46,59,236],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.195,"geometry_index":22922,"location":[-1.691426,43.362769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,228],"duration":146.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":135.703,"geometry_index":22923,"location":[-1.691755,43.362546]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,243],"duration":38.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":35.805,"geometry_index":22960,"location":[-1.727945,43.342009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,275],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.656,"geometry_index":22969,"location":[-1.741095,43.341128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,277],"duration":8.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.164,"geometry_index":22970,"location":[-1.742419,43.341217]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.672,"geometry_index":22974,"location":[-1.745369,43.341475]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.805,"geometry_index":22975,"location":[-1.745961,43.341538]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,277],"duration":8.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.445,"geometry_index":22977,"location":[-1.746598,43.341603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,234],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.344,"geometry_index":22983,"location":[-1.749493,43.34132]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.749637,43.341245],"geometry_index":22984,"admin_index":11,"weight":17.844,"is_urban":false,"toll_collection":{"name":"Péage de Biriatou","type":"toll_booth"},"turn_weight":15,"duration":2.914,"bearings":[54,235],"out":1,"in":0,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,231],"duration":4.258,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.148,"geometry_index":22985,"location":[-1.749804,43.341159]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,230],"duration":10.969,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.68,"geometry_index":22987,"location":[-1.750175,43.340937]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[37,59,249],"duration":2.641,"turn_duration":0.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":2.633,"geometry_index":22990,"location":[-1.75159,43.340133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,253],"duration":3.102,"turn_weight":5030.122,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5033.227,"geometry_index":22991,"location":[-1.752025,43.34001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":3.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.477,"geometry_index":22992,"location":[-1.752616,43.339876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":5.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.289,"geometry_index":22993,"location":[-1.753272,43.339728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.516,"geometry_index":22994,"location":[-1.75438,43.339476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.195,"geometry_index":22995,"location":[-1.754694,43.339406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":2.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.508,"geometry_index":22996,"location":[-1.755151,43.339301]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.755692,43.339179],"geometry_index":22997,"admin_index":12,"weight":19.484,"is_urban":false,"turn_weight":15,"duration":4.492,"bearings":[73,253,263],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,253],"duration":6.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.422,"geometry_index":22999,"location":[-1.756707,43.338937]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.759236,43.338368],"geometry_index":23005,"admin_index":12,"weight":5.258,"is_urban":false,"turn_weight":1.2,"duration":4.062,"bearings":[66,74,255],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,260],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.375,"geometry_index":23008,"location":[-1.760518,43.338144]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,261],"duration":151.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":155.367,"geometry_index":23011,"location":[-1.761601,43.338026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,262],"duration":60.578,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":62.086,"geometry_index":23154,"location":[-1.807499,43.32785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,243],"duration":1.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.156,"geometry_index":23213,"location":[-1.828941,43.319854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,243],"duration":8.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.398,"geometry_index":23214,"location":[-1.82904,43.319817]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,251],"duration":31.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":30.711,"geometry_index":23217,"location":[-1.829791,43.319575]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":11.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.906,"geometry_index":23224,"location":[-1.832721,43.319053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,261],"duration":28.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":27.453,"geometry_index":23226,"location":[-1.833773,43.318907]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.836458,43.318657],"geometry_index":23230,"admin_index":12,"weight":28.375,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":13.711,"bearings":[80,259],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.838321,43.318195],"geometry_index":23234,"admin_index":12,"weight":9.953,"is_urban":false,"turn_weight":0.75,"duration":9.461,"bearings":[56,67,244],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,248],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.336,"geometry_index":23239,"location":[-1.840235,43.317502]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[79,261,273],"duration":0.656,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.633,"geometry_index":23244,"location":[-1.841584,43.317219]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,264],"duration":34.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":33.406,"geometry_index":23245,"location":[-1.841777,43.317198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.851895,43.316791],"geometry_index":23283,"admin_index":12,"weight":11.297,"is_urban":false,"turn_weight":1,"duration":10.57,"bearings":[65,74,257],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,277],"duration":59.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":59.617,"geometry_index":23297,"location":[-1.855729,43.316821]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,201],"duration":1.789,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.812,"geometry_index":23340,"location":[-1.874216,43.310249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,202],"duration":4.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.039,"geometry_index":23342,"location":[-1.874444,43.309824]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":13.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.875,"geometry_index":23346,"location":[-1.875214,43.308684]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,267],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.984,"geometry_index":23357,"location":[-1.879243,43.306954]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,271],"duration":6.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.438,"geometry_index":23358,"location":[-1.879551,43.306941]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,288],"duration":1.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.289,"geometry_index":23364,"location":[-1.881632,43.307186]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[108,287],"duration":4.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.344,"geometry_index":23365,"location":[-1.882018,43.307276]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,279],"duration":4.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.078,"geometry_index":23369,"location":[-1.883386,43.307548]},{"bearings":[87,263],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"geometry_index":23373,"location":[-1.884976,43.307583]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria-Gasteiz"}],"type":"fork","modifier":"right","text":"Bilbao / Vitoria-Gasteiz"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":193361.609},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Bilbao"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria-Gasteiz"}],"type":"fork","modifier":"right","text":"Bilbao / Vitoria-Gasteiz"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep straight to stay on E 05/E 70.","modifier":"straight","bearing_after":201,"bearing_before":201,"location":[-0.843948,44.63626]},"speedLimitSign":"vienna","name":"","weight_typical":5971.992,"duration_typical":6291.504,"duration":6291.504,"distance":193361.609,"driving_side":"right","weight":11002.152,"mode":"driving","ref":"E 05; E 70","geometry":"gekctAvior@xqBj{@~cChaAjqAjf@hrAvc@vWrInV`Ips@pUdiB~f@zeEt|@~p@`Llp@fJ~o@tIfr@rHxhC|R~_A|D`bAfC`{@n@~d@F~TU~CBjo@o@rb@_Alh@iB|VgAzy@aF~h@iEdNuAnq@yGby@mKvw@aMjq@kLn{Ag[nu@wQfv@oSzvAeb@lkAaa@rnA}d@x\\gN`b@aQxi@iV~iBiz@xoH_wD~jBcaARKjhAyj@xoCsrAhnBuz@v`Cy{@p|B{u@|hC{r@bhCcf@`wA{TbtAuQpzDoa@vaD{XvuEm`@bzD_ThqDuFxiBz@lf@l@d{BdHnnBbKjiBdO|fBzWt|Bj`@h{@`Q`|@fPzu@nNpjE~w@n~Br_@pjC`a@jlArJdz@nJjaEd\\tcAnFbeH~^tgC`VrxBha@hwCv{@vy@tYls@hSle@|NvpBnl@vm@rPfs@bOliBpWxpBtIzsCwH`aAkL|a@aFbaAkLvaDyf@|dAcRxyAeTbXqFrrC_j@l`Dyw@zeEmtAzoDm{AtvD{oB|jDsyBphCgoB`hQofOxdJ_aIhC{BrwDawCbdB_gAfiCgkAjaBag@z`Bu_@d`AiPlz@mIt~BcMjlB[hiBrGh|AhOlTxBlcAtNx~@lU|hBfd@feIveChmY~bJpx@~Ufn@dNf_A`LpTpAlU^t\\Vx]y@r~BoVjnA{MpvBoWzpCk\\|bBwSlbBiRpdBaC`m@fDpSpBpOpB~N~BdTnEpSjF|h@fPdS`Ilm@bZtgAnu@rh@df@ji@tm@fy@zkAhRlYt`CftDpcD`dFdfA~tAl`Af~@paAnn@dtAxo@p`Cn`AzpBvbAda\\~wQxsFj}CdNxHtfAhm@fxIr_F~pFpyCtaBd_Abt@na@tn@h]~|@nf@dh@zZ~g@vZ|cAdr@lz@`j@tBrAzf@fXzaBdt@hfA`k@|u@~`@riC~xApvCbbBXNnrMjkHv_BtbAx}AntAbd@de@|b@lh@pT|YnUr\\jh@dy@li@x|@tUf^pTb[~QhVrT~Vp`@z`@`\\pXf\\fVdMnI|p@j_@|r@zX~}@fVbk@dK~e@hEbf@fA`q@Jrq@iDlkBmNvn@mBfn@Gvm@l@dl@~Cro@~Gxm@|IxrA`]fmaBtvc@bJdC`h@hNxiJlfCve@dMflKzuCnkVh|G`_@vOfh@jVtu@xd@|i@h`@bh@~c@ze@rf@t_@pd@no@b~@~_A~aBt}@n`Bb`@tr@t`@vm@pa@zj@pf@|m@pw@ft@vb@p_@xMvJpi@j[hh@~WzVdL|v@|Wrl@hNtHnAl`Ch`@zB^ttBbXtq@vIjwE~i@`n@dMrk@vPhx@d[peBj~@bNfHnm@h[jxC~{Aj{ClyAroFvnCtqF|oCzoCnuAl}G|iDt|FhvClhAlj@hvBffAzgJfuEzjNndHv_@lR~nAjn@`uM|uGn[dQj{@ni@ve@x`@hOvN~PxPtTfWvTjYbVr\\xZrg@`f@r`Az^`u@|[fn@pRt\\rYvc@p]pe@p_@zb@bd@|b@vSdPfl@fa@xxAzz@nt@d`@dT|M`TtNpm@ve@jXdXjc@df@xb@hg@`fAfqAbt@j|@tr@hy@vSpU~WpXt^v\\rn@zf@zo@lb@vfBj}@ppIzpChpTlkHndOnaF~nQh~FnoLz{DbBj@n|Et_B^LpwFliBh\\rKtbHp}BvvArd@jmAzXhcA~M`w@xF~qA`EnuJrY~{A`A~`BeLzgFqi@`_AgFrx@\\b`ArGfr@xLrt@~Rzs@~[ht@f\\f_@vQneB`|@pR|J~l@jZ`qBjcArdFjhCjqEh|Bn}BjiA~rBjdAtlA~b@tbArSrcAnIzkAPlqA_K``HseAhiAgQ|x@wHzt@oB~z@lBt_AnJj_A`TraAr^r}@|h@d`Afs@fq@fr@hl@jm@jk@fi@fu@~m@rsKrtIdw`@jm[dbSp{O`eApeAzo@z{@|l@bfAln@`{AtlAfvDvAnEfm@f{AjIlPjG~L`m@bbAfJbNnS~Wl`@lc@|c@db@j{@fo@pj@jZhh@tTrf@xO|h@nMfoArNne@~BpBJd|I~GvcA|Dpv@zJnk@`Ldx@dXjc@xRfh@vYpa@hYnl@jg@bx@l|@lf@dr@nsAfrBbdEfmGjvB`bDnbJldNp^bj@zxIdyMlvA~wBbyMzeSd|DvaGrzDv|F~m@rv@~aA|~@vr@~h@rva@dkYznC`jBdhBleA|wA|e@fnAzR`pAfElpAgFjnAoOriAka@zpBmr@tm@}TpaA_^tm@yQhj@kMlYiE`YsCtYoB~YkAnl@Hfl@bB~k@rGzThDjTxExQdEl`@tLz_@xNda@lRrNjIrC`BpBhAvf@b]tl@lg@`k@hm@`d@rl@~a@dq@rXvh@fY`o@nPjc@jQzi@|Ib[nJn`@xS~bArI~j@rD~YpK~{@xPvbCjj@nfI|SxqBrYx`Bl]zrAlb@`lA|i@~iAbr@xgAxx@~~@~b@fb@lf@p^jeApq@rkAdx@vxAd`AlnEtoCtoErlCjeVntN~x@xd@zg@rYdh@vZ|qAxv@fQ~L~sCnqBtBzAb@VzBrAxAz@puAvp@x]hSfuAxt@|o@n]tyAn|@zoIdbFrw]|vSzaM`oHhgJ`sFzsAvv@po@p[x{@~Z`{@pRlj@`H|z@|El}@Ov~AyFzvAaDrd@LbfApIpb@zGrInBlDx@z_AhTfr@bRrVrGlm@zOhz@|Thb@hLtg@~Qff@nWfs@he@pV|SnUfUdQxR`StV`_AppAdk@`w@v]pc@x]v^~\\b\\d`A`r@vbAti@drAv^fbCz^xbD`e@pko@pvInzAtPp|Vfm@rqH`OnoK`Xjh@pAd~I`TjfK`UvmAhC``@fCp]rD|cArSdu@bZrv@nb@VNddA~|@daAloAd[|i@ha@b~@`]xdAfx@vpDpWrlA`\\ftAvs@xlCjdAp`Edm@xwCt}@bnFjp@noD~w@bjD|bA|bElXrpA`Yl_B|PtnAnOjtA|LjwAlJd~AfIf_CvFbsEfE|jDhDvoAbFvqA~HhtAvLp|Ar_@zsExS|yC|IfbCnDhdCzEtyG|GrbCzRdlC~Jr`AdLr|@rP`}@vTvhA~Sn}@xY|gAp\\`bAn_@~eAt}@|kBtkApkBdnAzdBjlAl}Afm@tr@vt@xu@b|A~sAz~@ns@b}@lm@dpBtsAv_Cn_Bp}ApnAn|AfsApd@ve@`{@~|@rg@bm@dj@~q@zh@ds@`PvTrZrd@lQ~YhP|Y`Rl_@jRdc@zu@l~Bve@lvBfZfdBjHbp@lJzz@zVtdBrb@llBni@hxAbi@rsAjf@n_B~X~uApTj}AfLzpAhHfjBJ|eAgDjvB}@jdBzBpaAfFbdAnRdgBrJ|q@lNbw@bj@ziBhn@j~Adi@leAhm@rmAxv@beBfm@d{Api@l~AjXfs@`Qnk@lj@zyArVdn@f[hr@bc@~{@pZph@nd@~t@p~@rpA|e@xm@zDrEpHxIhsAjbBtq@tz@~sE|xFlsAtaB|V`[pItKdnAf~AvDvEn`@bf@`NrPb{@ldA|MhRtg@rs@`e@`m@~y@j`AfbBrvAx}At{Ang@`i@`l@ru@xNnRdTbYRXrd@jv@j{@``BxcAflBfw@`hA~eAlfA`nA~y@jaB`q@~~Cf}@~l@`Qb_AdVbl@dLpl@|Inh@nDbq@dC`k@?tw@qEdZkCv_@yD`i@{Gzo@{Hjq@gFpg@uBx^c@vm@b@d_AfH~i@zFhnAnWbgAt_@jsAph@r|@t^df@nTzZhNr}@l_@pl@`Td^rKff@`Mps@pNtiArTl[vGta@zIjf@bN`c@fNh^lN~WzKr\\rOv]pQnb@bWf@ZpW`Pl^dWp[rVbn@vh@ds@|s@~\\t_@zq@~w@tc@pf@na@z`@bb@~]na@tYdc@rW`_@|QtU|Jlh@`Rfa@lKp^zHjj@pIfh@zFdr@fHnd@dEnYnAp[~@bd@DpZeA~a@{CnQ_B|]eEjr@aJ`[{CbYkBtR_Az[_@vYUh\\T~i@zC`k@rGxb@fHbd@jKvt@bUbw@fWn^nK`W|F~`@jGtUnC`Op@pb@|Bvj@lBfbEvMdhAnDfe@I`Vo@lWqBbg@_Gtg@mJ~`AcQza@sHb]mEhXmDh]sBl_@y@nTB`[z@jeApIzx@pIvXdCtVh@tZ^vp@mA~[eAtb@kJfq@iLz`@qFzh@iHny@mA`g@xFrd@xIng@dP`k@t\\|t@nk@vt@xz@pm@p{@`r@`fA~w@dmApu@d|@jy@|r@l|@fo@f}@zd@d`An_@nlAd`@js@fPbN|CzdAfNhkAzJffAtN`jAfVzeAlYhaA|Mxk@zCra@Sxw@iEvz@uOb\\cI~LwEhSyIbMgGjL{GjQoKdHwExj@w`@d^iWxTqNzWcOlSmJlRgH|MaEjMkD`TmElMqBfMaBtMiAbMo@tMc@xMIjUJ`Qn@zPvA`UlCnThE`[fItSdHtStIrRzJjL|GhRbMbRtN|JxIxJhJfMzMlMhOlOdSpNjT~MhUzKdTpLlWhTvf@`Udh@nGzMlHtNdKtQdL`R`JzMjN~Q|ObRnPbQjPpOrQrN~QlMzLtHvRpKrSpJxS|HtY|ItSjFdW~EpUnDhRtBpLbAx@HnDZnOZ`IJtIHrTWtMm@tNkA~L}AhMuB|SgEzy@gRjx@qQzaGwsA~`@sJjJmBvLoBhNmB~LaAzMi@jIYdJE|Tl@vTlBdMlBhM~BjMbDbOhFhJbDjIvD|VhNvQfMtK`JnLrLhNzNvI~KrIvLxMfT~IdPlYtl@rDlIbGtM|FhNxF|NdElKlE|KnG`RpGbRvFtQ~F~RzG~UzFhTbGzV|F~WnDzRrC`QvCtRjDvX~JfgAv@nIjEle@nDh\\~BxQzDrWvEdVzDtQ`ExPpEzPhFjP`FtNvFxN|GdPlG~MnHnNpHhNrJzPjE|Hf^~m@fRx\\|LjV~LlW|J|VtWh}@`QdcAlGnfA~@v\\x@jaAlAdq@|Anw@fDdbArIzfAtSdwApY|sAz`@vuApvC|dHp_@~|@~i@hqAhq@tdBvPtj@|V`|@jl@~hCtk@buCt[~bBrIvi@zGtn@zChd@z@b]h@fTKnr@Zxh@gBzi@eDncAaJxkCkI|iCyCfiAeBpmA_EfuFP`nAlBrr@~Dfr@|Ffo@~Izp@hLnn@fM~i@lUfv@nRhh@n[vq@b]nk@`b@bk@fhAzrAve@~o@x`@zo@pYvn@jVln@tQvl@xj@|tB`]fiAz^daA|^lv@Xj@fT`a@pZjg@l`@vi@va@fh@dk@xn@`f@rh@rZta@t\\rh@zUde@lSzh@hPfk@xMjm@jKhv@`Hz_A~Bxo@^dKMbo@YfQqBhc@qBbXa@vFsCbb@sD~^mHtt@mTbzBoHhu@{KtsAmDh`@gEpd@mJxu@qE~x@mFt}@`AbrBHhE`HroB|Cv^lGrf@`DhWtDnT~Hfb@bOtk@xPjj@~Xvr@l[vl@p_@~l@pk@fq@xb@ta@bl@zb@pg@hYtn@~V~w@`[jo@z\\ln@nc@ho@vk@js@bv@~f@hg@l^fZhg@h\\js@db@nk@|^`b@`^|a@~c@hZp`@v\\|j@ff@hhA|Ml`@fXj`AxSrfApgAxyGDRxRl_AhNlf@tHzWn`@fbAzk@tdApTv\\|~@nzAxb@b~@r`@``AzaBz|DjWtk@`W|f@zN|W`OpVhSl[nRjXjYx^dYh\\js@~t@fh@ri@~a@zc@pVl\\xOzStRl[feAvqBjb@l|@hYtq@vTjz@vOzz@jc@xjCxLlm@rNtj@nOfe@bP`_@bUhc@jo@~dAjr@xjA`Zvl@|Ona@`O`d@n\\vkAnQbq@zYfaArQpg@hUph@n]fp@hl@pcAva@hu@~]rw@l^|_Ale@lpAby@hpBtg@xiAnPl\\zM`XfK~Rr}@fwA`j@lr@jn@hp@hj@ve@lz@`g@xu@d]xp@jRdg@dIde@pGl`@~Cb}AnIvs@bJvj@~Ldf@jPr]zNjx@zg@p~BhcB`m@r\\~~B|iApfBpz@p~@|[z~@jXj_AdRzy@vQvn@jUju@x`@bbA`s@tz@bx@`dBjvBha@|t@n[pu@zUxw@fGvXdN`u@jMtaAvBlf@tBdt@]rpAgFl~@sL~fA}NnfAkRrdAmPnjAoJzkAoCfnADtgAxHlpAlMzfAhRnbAdu@|vCrn@vdCzZ|pAjZhjAz[fjAld@buAhe@nmArw@f~Af`AjhB~nAvuBz{A|zBzpBfqChq@`hA|LpS|Sb_@lp@huAjy@xvB`n@zpBfR~u@pLvk@dXvjBlF`k@dE`z@zCl{@t@ju@}A`{A}B~sAw@poAhEjmAdNx_Bt\\fdCv]hoA|^lx@hh@pr@fn@`h@bk@`Xlq@pNbq@dDzdBn@xn@hDvp@tQxq@td@puAhjBtq@vv@dl@te@xfAhv@ln@hm@|b@jp@`l@lsAlk@fgBtLld@hUx{@|SpjAhMroAIxiAs@dpA~Bx_BpEdyAPpvAuJhmDqDvqAIbD}Bth@gD~jAsEp|@}B~c@}@~PcAxTc@bJwBlx@ZtYpAj[xG`a@hIfVtC~GjDlInHzNjChFhd@`}@pFpLjDxKtFdZjG|c@fH~g@vNfdAjCrRpEp[rFx`@~DxYbHrc@zGrf@F^~F|a@fE|ZvG|d@lBrObEz]|CvZ|AnTdAbOrApVpA~Z~ApZzAnWjBdXlDjY~CzTbExSvG|YfHvVbGtQdG`OdKvUhK~UfKrVtD|JrGdQpI`Z|G|Y~EnXpBxOhBxOfBzS`ArOt@|Qh@rYTb[LfQRtVBhRh@lU`@hUhA`WrAtXhBzW|BdVxA`N|ClU~BvPzDrTxDfTfEzRvEvRdFvRbHfUjExM~ClK`EvNpKzU~Sba@lOfZxKbT|HdNlH~N~IzTfHjThGtTxDbP`E~SbD|UvBvQlBlUtAvUf@bXLdMJzUCnQD`VNhVXdVd@hTjAnZzAnUzAnQfCjV~ClVbEhV~DbSnGbZvGdYjFpUxFdWbGhZtDzVxBxRjAjPpA~Wh@lXHhPCxWe@nVcAjWiBxXeCf[gBlU_BhS{AhTwAhW}@~T_@jM]pOW`VC`NCbRLtNVtPv@p[fAvUz@zNdB~WrBdTzBrSpB`PTpB`B`LtDxU`EpTfBpIbCpLvC`MzCzLtC|JbF`QjElMxE~NhFpNrEjLvC|GnFjMnIbR|JxT`ItPfFtL`ClGxClIrChIxCnJvCjKvC`LpBdJ~C|OfCjPxB`QjCfUfAvLl@hLjAhZdAtVZzg@^`f@d@hYt@fYpAvSjAxQpBlWbCzVlCrQlCdQ~DfWzFpWnFnUnGlUlH`VjHbSpJbW`Oz^bItSfAxCnJnXnKn[bDvKlBrGdH`YnEfRh@xBbFhTjIzb@fHld@rIzp@zFtd@~CrXvDz[nE|YrC`PpErSpFhTdEpNfGnQrHlStJxTpJrQtLhRzLnQhNhPhTlUlg@xd@xNhNtMdOzNhRtJhPfK~RjJbT`H|RhDpLhAdE`FtQ|E|Vb@hCfCpO~F~f@x@lIfCvVDj@rFtk@nEhm@x@~KhFvs@nDtm@vBvu@`A|`@hCl_@~ArSvHpi@jH|]vEhUnIl\\|HfYdHjWnF~SdEpQzChObBbMrCxTrAzMlAdPh@`KP|Cd@xQTrRCrOMbNUdNs@lQw@~L{AdQaD~XeFv^eAtIgBlNqBbPgBvS}@~J}@pL_@dMa@|LIpNKbLFhLLxLj@zQj@hNx@`N`C|U`B`MrBbN~C~PtDtRpBlK`CvJzD|PlGzXtClOdChPbCjRhBdRpBxVh@|Mh@pOVtMEnSEfLi@dR]lLo@zMaAbPkAnVsA|R]rGc@pIc@pOUdQAzRPbUxAnc@`Dha@tF~_@pHj_@dJn_@pLzd@pKbf@vDfTrCrT~Cz\\fBl^x@`^j@vd@n@fc@v@td@`Chg@pEzh@hGvj@rIlh@zJff@hHtZhL`a@pJhYxL~ZbK`VhEhJvItQdIpOlOzVxKnObNnQfRpTdT~StS~QhTfPxOpKnVrNv\\hPfThJhD|AjKzE`_@jRhP|KnH|GlKnKpMpOxNdTjKdR|LzZ`I`VnGtWnGh]`DfVdChYtAzYXfRGnU[pTq@vN_A`NqC`[aEbZsDbWy@tFeF|_@aEv^}@bLsAvV]lRArSl@pb@dBxb@hFxk@nElZtJfb@~K`_@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6898.593},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on AP-1.","announcement":"In 2 miles, Keep left to stay on AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on AP-1.","announcement":"In a half mile, Keep left to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on AP-1, AP-8 toward Lasarte-Oria, Bilbao.","announcement":"Keep left to stay on AP-1, AP-8 toward Lasarte-Oria, Bilbao.","distanceAlongGeometry":306.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[-1.887782,43.306916],"geometry_index":23378,"admin_index":12,"weight":12.023,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":11.203,"bearings":[61,231,236],"out":2,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,244],"duration":9.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":10.562,"geometry_index":23383,"location":[-1.890442,43.305547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":3.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":4.156,"geometry_index":23391,"location":[-1.893179,43.304983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,252],"duration":8.398,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":9,"geometry_index":23395,"location":[-1.894243,43.304828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,224],"duration":5.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":5.914,"geometry_index":23403,"location":[-1.896284,43.30396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,206],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":2.852,"geometry_index":23406,"location":[-1.897347,43.302986]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.897716,43.302443],"geometry_index":23407,"admin_index":12,"weight":11.289,"is_urban":false,"turn_weight":1,"duration":9.82,"bearings":[14,26,202],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,221],"duration":4.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.477,"geometry_index":23412,"location":[-1.899268,43.30037]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,212],"duration":20.789,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":36.312,"geometry_index":23414,"location":[-1.900159,43.299555]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,359],"duration":52.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":50.945,"geometry_index":23425,"location":[-1.901509,43.294207]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[78,260],"duration":17.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17,"geometry_index":23446,"location":[-1.912441,43.283956]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,272],"duration":29.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":27.734,"geometry_index":23452,"location":[-1.918897,43.28348]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[127,303],"duration":5.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.438,"geometry_index":23469,"location":[-1.928571,43.286808]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,295],"duration":12.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.344,"geometry_index":23472,"location":[-1.930364,43.287635]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[103,278],"duration":14.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.594,"geometry_index":23478,"location":[-1.93525,43.288902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,263],"duration":11.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.156,"geometry_index":23482,"location":[-1.94041,43.289074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":16.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17.148,"geometry_index":23487,"location":[-1.944246,43.288552]},{"bearings":[73,252],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":23492,"location":[-1.949946,43.287581]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lasarte-Oria"},{"type":"text","text":"/"},{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Lasarte-Oria / Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":6931.926},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight","right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lasarte-Oria"},{"type":"text","text":"/"},{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Lasarte-Oria / Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"destinations":"AP-1, AP-8, E-5, E-70, E-80: Bilbao, Vitoria-Gasteiz, Burgos, Hernani, Iruña/Pamplona","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take AP-1/AP-8 toward Bilbao/Vitoria-Gasteiz/Burgos/Hernani.","modifier":"slight right","bearing_after":236,"bearing_before":241,"location":[-1.887782,43.306916]},"speedLimitSign":"vienna","name":"","weight_typical":259.68,"duration_typical":243.164,"duration":243.164,"distance":6931.926,"driving_side":"right","weight":259.688,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"gyfrqAjafrBjS~g@fU`e@|Uri@bOv`@zBxIfIl[|CvPpCxPnBbQlBzTtA`RjA~PnB~\\J`BjArRjBnTpBhUbC`PfDlPpDrOjFzPvC`Iz@~BfE`K`Rl_@pVb^~]`^hEfC|`@`Vv]jPtZzOpVzMfX|VhU|VzYx^`WzV~\\rXtZdR`UbK|]xKjXbHd\\`El_@pApi@g@da@]nc@KhVQbJGla@hBbl@zFlWtEza@pHpUlG`U`IjaAla@dV`Odp@~b@db@~]fx@xw@xm@lz@hm@t`Ar[vr@nTjh@tTxp@lQrn@lQdbA~G~s@`CjZ~HpkAtE~{@jDj|@lChaAfBzpA?jw@[j`@ElHeA`WE|@yBz]mDl`@cPxkAeIjd@_Rrs@kQls@wIpVsGxRaPnb@gRnc@qRbb@}Yfp@m[ns@{O`b@qRlg@gNpc@wZnoA{Nfs@sLbu@Ib@yIxs@yIp_AaEbz@gFxtBAxtArAvz@vAh\\lApYzEfr@t@tKzQ|vBbL`oArNx}AzKlnAnIt}@pGff@dHtf@pXj{A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":5301.287},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on AP-1.","announcement":"In 1 mile, Keep left to stay on AP-1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on AP-1.","announcement":"In a half mile, Keep left to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on AP-1, AP-8.","announcement":"Keep left to stay on AP-1, AP-8.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-1.952059,43.287025],"geometry_index":23494,"admin_index":12,"weight":0.305,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.32,"bearings":[69,241,251],"out":1,"in":0,"turn_duration":0.033,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":12.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.555,"geometry_index":23495,"location":[-1.952147,43.286989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":13.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.961,"geometry_index":23501,"location":[-1.955856,43.285312]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,215],"duration":4.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.688,"geometry_index":23508,"location":[-1.959077,43.282925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,212],"duration":10.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.117,"geometry_index":23510,"location":[-1.95993,43.28205]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.96181,43.279756],"geometry_index":23516,"admin_index":12,"weight":9.82,"is_urban":false,"turn_weight":1,"duration":8.406,"bearings":[25,32,217],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":8.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.836,"geometry_index":23521,"location":[-1.963619,43.278239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,254],"duration":11.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.352,"geometry_index":23525,"location":[-1.966046,43.27723]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[95,281],"duration":5.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.633,"geometry_index":23530,"location":[-1.969899,43.27691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,282],"duration":20.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.227,"geometry_index":23531,"location":[-1.971626,43.277155]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[105,285,289],"duration":1.914,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.938,"geometry_index":23537,"location":[-1.978237,43.278471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.914,"geometry_index":23538,"location":[-1.978855,43.278594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":19.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":19.312,"geometry_index":23540,"location":[-1.9801,43.278841]},{"entry":[false,false,true],"classes":["tunnel","motorway"],"in":1,"bearings":[82,90,266],"duration":2.234,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":2,"weight":2.211,"geometry_index":23546,"location":[-1.986578,43.279419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,262],"duration":6.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.664,"geometry_index":23547,"location":[-1.98731,43.279386]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":11.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.547,"geometry_index":23550,"location":[-1.989583,43.279113]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,245],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.75,"geometry_index":23555,"location":[-1.993358,43.278179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":44.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":46.016,"geometry_index":23556,"location":[-1.993873,43.278005]},{"bearings":[103,283],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":23573,"location":[-2.008955,43.276141]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":5341.287}],"destinations":"AP-1, AP-8, E-5, E-70, E-80: Lasarte-Oria, Bilbao, Vitoria-Gasteiz, Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on AP-1/AP-8/E 05/E 70 toward Lasarte-Oria/Bilbao/Vitoria-Gasteiz/Burgos.","modifier":"slight left","bearing_after":241,"bearing_before":249,"location":[-1.952059,43.287025]},"speedLimitSign":"vienna","name":"","weight_typical":200.008,"duration_typical":192.875,"duration":192.875,"distance":5341.287,"driving_side":"right","weight":200.016,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"a~_qqAtrcvBfAnDdHtUdVx~@`Rtk@fPzc@jP|^vQx^j`@zt@|Rx\\dQ`X`TvZjP`TpN`QtVtXx]`]zVfV|KfJxOlL`NbKf_@lXfWpR`i@tb@vC`DlTlTl\\j_@zTp\\hPrW|KjQdSjc@bShw@xHrg@zGpi@fFph@zCfk@bAjz@cB`t@iN|jBuBtVgMxgA}TpiB}Ql~AwRh_BuBjQuFre@mDlZ_Ijq@aHxl@yKvkAmGvhA}DtsAEniAHjp@`Avl@zCvn@nEtx@tDrc@l@fHdHjq@bK~s@rLjs@~T|eAzId_@vWrbAtP|n@nRvv@rNlp@vLns@jGf`@xFh`@xE~b@dErb@~BhZzEfw@tDf}@hBdcAv@~oAeBjx@mJtmB_JbcAeArLmKd|@aFp^"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 28 miles.","announcement":"Continue for 28 miles.","distanceAlongGeometry":44257.594},{"ssmlAnnouncement":"In 2 miles, Take exit 69.","announcement":"In 2 miles, Take exit 69.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 69.","announcement":"In a half mile, Take exit 69.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 69 onto 69 toward Bergara, Vitoria-Gasteiz-Burgos.","announcement":"Take exit 69 onto 69 toward Bergara, Vitoria-Gasteiz-Burgos.","distanceAlongGeometry":266.667}],"intersections":[{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.010657,43.276488],"geometry_index":23576,"admin_index":12,"weight":24.828,"is_urban":false,"turn_weight":15,"duration":9.594,"bearings":[107,290,296],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,296],"duration":15.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.516,"geometry_index":23580,"location":[-2.013694,43.27746]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,289],"duration":33.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":33.945,"geometry_index":23587,"location":[-2.018473,43.279187]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[118,297],"duration":10.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.578,"geometry_index":23604,"location":[-2.027649,43.283818]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[110,292],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.062,"geometry_index":23607,"location":[-2.030945,43.284836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,349],"duration":2.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.758,"geometry_index":23619,"location":[-2.036123,43.288222]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.57,"geometry_index":23620,"location":[-2.036303,43.288899]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.039044,43.292323],"geometry_index":23631,"admin_index":12,"weight":192.555,"is_urban":false,"turn_weight":1,"duration":201.664,"bearings":[123,131,298],"out":2,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[65,250,262],"duration":41.227,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":38.125,"geometry_index":23739,"location":[-2.10306,43.283493]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,276],"duration":7.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.812,"geometry_index":23769,"location":[-2.119245,43.282359]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,264],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.273,"geometry_index":23776,"location":[-2.122183,43.282261]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,274],"duration":5.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.641,"geometry_index":23780,"location":[-2.124027,43.282217]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":21.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.195,"geometry_index":23784,"location":[-2.126449,43.282428]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,277],"duration":53.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":51.117,"geometry_index":23789,"location":[-2.133295,43.283149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,243],"duration":15.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.266,"geometry_index":23823,"location":[-2.148204,43.279702]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,271],"duration":1.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.422,"geometry_index":23833,"location":[-2.152824,43.279008]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[91,272,279],"duration":6.578,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.406,"geometry_index":23834,"location":[-2.153264,43.279015]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,277],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.359,"geometry_index":23838,"location":[-2.155054,43.279126]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":2.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.172,"geometry_index":23841,"location":[-2.155888,43.279215]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,281],"duration":34.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":33.266,"geometry_index":23842,"location":[-2.156423,43.279283]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.15905,43.279697],"geometry_index":23846,"admin_index":12,"weight":27.969,"is_urban":false,"toll_collection":{"name":"Zarautz","type":"toll_booth"},"turn_weight":15,"duration":13.305,"bearings":[100,281],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.160082,43.27984],"geometry_index":23847,"admin_index":12,"weight":7.43,"is_urban":false,"turn_weight":0.75,"duration":6.891,"bearings":[79,101,272],"out":2,"in":1,"turn_duration":0.036,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,272],"duration":76.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":72.555,"geometry_index":23849,"location":[-2.161303,43.279876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,263],"duration":57.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":53.391,"geometry_index":23901,"location":[-2.182465,43.282244]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.328,"geometry_index":23936,"location":[-2.199587,43.281442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":20.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.961,"geometry_index":23938,"location":[-2.200594,43.281453]},{"tunnel_name":"Meaga","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[87,271],"duration":20.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.867,"geometry_index":23947,"location":[-2.206346,43.281191]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,294],"duration":8.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.578,"geometry_index":23951,"location":[-2.212235,43.282093]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,292],"duration":32.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":30.398,"geometry_index":23955,"location":[-2.214642,43.282879]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,259],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.977,"geometry_index":23977,"location":[-2.224007,43.285481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":15.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.508,"geometry_index":23980,"location":[-2.225803,43.285249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,258],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.172,"geometry_index":23992,"location":[-2.231041,43.284929]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":64.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":61.562,"geometry_index":23993,"location":[-2.231103,43.284919]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,274],"duration":4.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.906,"geometry_index":24042,"location":[-2.249505,43.277735]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,278],"duration":59.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":56.25,"geometry_index":24046,"location":[-2.25069,43.277843]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,265],"duration":15.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.867,"geometry_index":24120,"location":[-2.263364,43.271472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,226],"duration":8.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.922,"geometry_index":24140,"location":[-2.267958,43.270042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,210],"duration":3.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.242,"geometry_index":24152,"location":[-2.269606,43.268482]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209,220],"duration":7.336,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.945,"geometry_index":24155,"location":[-2.270153,43.267777]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":4.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.414,"geometry_index":24160,"location":[-2.271425,43.266298]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,226],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.305,"geometry_index":24164,"location":[-2.27245,43.265476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":12.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.906,"geometry_index":24165,"location":[-2.272778,43.265246]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.276359,43.263441],"geometry_index":24178,"admin_index":12,"weight":144.883,"is_urban":false,"turn_weight":0.5,"duration":156.094,"bearings":[56,62,242],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,286],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.859,"geometry_index":24348,"location":[-2.323694,43.284145]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,284],"duration":18.797,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17.367,"geometry_index":24349,"location":[-2.324061,43.284222]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[77,90,268],"duration":2.438,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":2,"weight":2.234,"geometry_index":24362,"location":[-2.329973,43.284775]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":1.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.992,"geometry_index":24364,"location":[-2.330745,43.284752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,266],"duration":5.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.922,"geometry_index":24365,"location":[-2.331085,43.284737]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.391,"geometry_index":24369,"location":[-2.332796,43.284636]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,267],"duration":11.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.805,"geometry_index":24370,"location":[-2.332927,43.28463]},{"tunnel_name":"Itziar","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[90,263],"duration":20.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.82,"geometry_index":24376,"location":[-2.336692,43.2846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,282],"duration":50.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":46.258,"geometry_index":24380,"location":[-2.343069,43.284317]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,206],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.266,"geometry_index":24423,"location":[-2.357349,43.28436]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,209],"duration":13.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.375,"geometry_index":24424,"location":[-2.357537,43.284078]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,217],"duration":3.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.367,"geometry_index":24432,"location":[-2.359744,43.281353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.656,"geometry_index":24435,"location":[-2.360483,43.280673]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":14.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.727,"geometry_index":24436,"location":[-2.360636,43.280545]},{"tunnel_name":"Istiña","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[39,222],"duration":7.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.141,"geometry_index":24443,"location":[-2.363673,43.277977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,203],"duration":1.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.617,"geometry_index":24448,"location":[-2.36504,43.27644]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":33.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":30.039,"geometry_index":24450,"location":[-2.365257,43.276046]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,218],"duration":12.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.258,"geometry_index":24472,"location":[-2.371244,43.26944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,207],"duration":61.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":54.977,"geometry_index":24478,"location":[-2.373729,43.267098]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,252],"duration":112.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":100.852,"geometry_index":24528,"location":[-2.387183,43.256975]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,215],"duration":2.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.422,"geometry_index":24622,"location":[-2.403899,43.235056]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[30,199,206],"duration":0.844,"turn_duration":0.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.742,"geometry_index":24628,"location":[-2.404352,43.234527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":17.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.508,"geometry_index":24629,"location":[-2.404434,43.234351]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.403611,43.230361],"geometry_index":24648,"admin_index":12,"weight":4.828,"is_urban":false,"turn_weight":1,"duration":4.164,"bearings":[161,331,340],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,346],"duration":11.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":10.766,"geometry_index":24651,"location":[-2.403244,43.229441]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,185],"duration":22.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.781,"geometry_index":24656,"location":[-2.403079,43.226838]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,188],"duration":11.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.594,"geometry_index":24671,"location":[-2.402919,43.221588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,222],"duration":2.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.477,"geometry_index":24681,"location":[-2.404279,43.219273]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.289,"geometry_index":24684,"location":[-2.404837,43.218858]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,235],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.547,"geometry_index":24686,"location":[-2.4054,43.218514]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,230],"duration":25.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.992,"geometry_index":24687,"location":[-2.405546,43.21844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,235],"duration":6.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.578,"geometry_index":24708,"location":[-2.410257,43.21385]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,253],"duration":13.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.227,"geometry_index":24714,"location":[-2.412152,43.213119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,207],"duration":15.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.781,"geometry_index":24727,"location":[-2.415854,43.211743]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,216],"duration":39.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":37.773,"geometry_index":24744,"location":[-2.416995,43.208405]},{"bearings":[66,244],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":24780,"location":[-2.426638,43.203133]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bergara"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria-Gasteiz-Burgos"}],"type":"off ramp","modifier":"right","text":"Bergara / Vitoria-Gasteiz-Burgos"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"69"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"69","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"69"}],"type":"off ramp","modifier":"right","text":"Exit 69 69"},"distanceAlongGeometry":44297.594}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on AP-1/AP-8/E 05/E 70.","modifier":"slight left","bearing_after":290,"bearing_before":287,"location":[-2.010657,43.276488]},"speedLimitSign":"vienna","name":"","weight_typical":1614.082,"duration_typical":1682.086,"duration":1682.086,"distance":44297.594,"driving_side":"right","weight":1614.055,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"okkpqA`avyBgMvu@oL~j@iQzq@uMdg@cMnf@wMfa@w]ngA}HbXkGdXmJze@qQf~@sTbwA{DzUgDdQqE|ScEbPcJ|ZcLr[yKdWuKrTkLtS_LzPul@~u@sl@vx@oWpe@aRrc@qRhi@mL`b@c[zjAaPd|@mQ|cAuItc@}Ldn@sKpg@{Ljd@gOja@sHrOoOrWgT~Wi^xYg_@hSkUlH}IrCii@fJuPbCkDf@mh@lKwYlKwXxOc^zX_PzQwLfP{LzRaJbTeIfTsAhEiEpOmCfLiDpOcAfIcAfIeDzU{BdUuC|g@}Cbr@cBr^_D~]uEx`@wGjZmGhZcKvg@uE|^sBvTo@hQi@nV?pP\\tWp@fXlAx[LfPPn\\{@~XsBlYoEh[uG|YmGjSaTnp@eJb\\mF|ZmDn\\iBj[]xe@rB`{@f@d^C~]{@te@yCv|@mAbl@Mvc@N|^nA`d@J|CpEhh@`@tE|Fja@~Ipb@lKn`@~Kl[hYhn@f\\rr@n[xv@xShn@xMne@fLne@bIha@~Gfa@rIzp@zHbr@fGjn@vH|n@~I~o@~L|p@lHb]rM|h@lSdr@p[f`AhUvr@xRnr@lQvu@xKtj@vOjcAbLpgAbGvq@rHnw@`Ilo@jIri@dIta@`Nhu@xEpWtDvVfCpX`Bd_@j@xV[tc@kBfc@{Cnd@eCr_@wAd_@]z[ZzYbAfY~AzUjCzVxFn]fHd[dRvh@bc@hjAdM`c@fKjj@|]vyB~Y|gAxa@ryAhJz`@`Ibd@dGhe@bDfWrKdz@pOp{@bPht@bVjmAXvAzKbp@pItv@dFrf@rAlQlAfP|Bf^~@vQ~@~QdAtX|@jh@Mzb@UzQmAlV}BtYcEd]}Fp\\gGfXyFzTcHdZkId_@uGhe@uC`_@aAvYo@hYHjWdAz]jBn]rAv]d@`Mb@zK|@ze@Np\\Y|`@AbBu@x`@qB|d@{FnkAoJfqBgFncA}EfbAkH`yA_IxvAiBhe@aAb\\c@~\\Kf\\Nxc@dAh}@NvZYt]aBta@iJxqAiBl`@g@t[LnZn@lUnB|\\zEb_@fGz\\|DpQlG~T~KlZdHbPfMtTjNrS~[p^tR|RnBpBrStSzMvO|BlChOfUxQ`\\xH~PrH~R|DjK~Kjb@dFdV~D~U|CdVjCh\\jCxe@z@|[b@n\\PhZAb]MnZ]d]k@~XwA|c@{@vQq@xOmB`^QfCgCl`@iE~l@}G~p@_F`h@sBbZ}Gn_AaAzaAElHSpXh@l`@p@hX~AzTdGjs@vA|LdGx`@xInc@|Odt@|Inc@z@fExCxPvCjRfAnJdAxIvBdTvBvWjAvS`A`Vr@fTX~WDzROj_@o@t[y@vTmAxT}AbSqCj[gCvS_DfU_FpYaFhUeJl_@oJtYeN`a@mJ~UePr\\aOnXuRnZ{Yrd@qKdQmMxXwKrW_Kx\\wElVeFhZkDlYwBx^i@nUSlPPb[ZpJVxH`AtPdAjM~A|OnFz]xErU`Il]zLbj@lDpTvCbUbCbWjA`Vj@bU@zWI`ScDtbAm@zSUtNYx`@Lv^r@r^jA`]nC|h@dCjl@jA``@X`\\Dn^w@`_@iAb`@oCjh@mBn_@oBlh@iAxd@eB|s@k@ri@[tj@DfRHdd@^jv@h@f^`Adh@vCneAxAne@^vSt@jZl@jd@Wb`BmGz~AyR`rAkZ~zAsKtf@aZnnA_GnYm@vCuG|[uHv\\uGhUiKnY{LxVmJrQ__@|j@qJjOcH`NmFpKaMpZuFlQoGdVmF`XiFp_@kCh_@{AdYa@j^b@d^bB`]nCl_@vE`d@vDbg@dDhe@pBx`@zAhYp@hYX|Gj@pd@\\p_@D~Yd@|g@`@j[lAn`@xA|^jBnXj@lGRzBbBpQzB~RlHxg@zFz[zCnOxFnVjHbYtIjZvM``@~LpZvIpSdKfSrPpZbN~SpN|RxYx^~W|ZjBrBxP~QxFhG`ItIbAfA~^pb@|LjPdLvO|K`RdMfT`NnZrJ~WfHzThJf]jHh\\jHv^pF|Z~Er\\|El^~D~]|D|`@fBlWhB|VtA|ZbB`]d@zQ`@~OVnPJhQAbR_@|Ym@`Ta@jRmAzX{@rOk@dKw@dQ_@fMOnKAxKJtK`@hMl@nKx@vJfApJdA~H|AjKrBjJvGpTdJrTvHdOfKzOlGvH|HjHnGdFtEhDnGzDtHvDlHpChIhCvFfAhIdB`K`BfH~@xHhA|GjAtGvAzG`B`HzArIzCtIhDrFnCdDjB~D|B`F`DtExDpCbCzCnCrHrHbIjI~GdJpFvIpFjJrDjHzE|JbDtHzDfJdFdNtEdObEpNvBpItAzGrBrJbCnNvAvI|ArLhAxKlAdM|@zJr@dLj@~Ll@|Pb@zPb@rSPnVRhRPxQLnI\\pVPlK^rO|@nQx@pO|@hMvAxO|BxS`DjTzCxPnBdJpBjJbCbKhBxG|BhIpC`J~CvIrD|JfEjKxFnMbHnNfHjMzGvKnFzHpFjHlF|GdG`H`HzHdG~F~GnGtE~D|FxEhGtEvGbFjBxAvMlJ|X|RlJvG`J`HrFjDdm@ff@bO`PvJnKpNvRpLpPnIfMjMnS|K`SvHnNdKnSfFpKnH|PfDlHjLpYfFtN`FlNjEnM|D|LnHvWlE|O|BdIzEfP`Sxs@hF~O~Ld`@tMj]hR~b@hOtZzMtUjUj`@vPfY|MzUnJ|Q|LzXpIhU`HfTjGzTdErQ|DhSlDxVlBnS`AnKnBt[`@x]Dr\\k@fUkCte@oDd[yDjYuDtRqEbUuDrQwFtVyE|ReGpUmGnUyJx\\oHjUeE|K{FzNyEjKgEvIwGdLyFbJoEpGkHjJcKnKwHjJsLbKkJdIaLlJqLxJwJlIeKjJkKlK}LfNcMbO_O`TyHvLsI`OkGjL{J|SiIbRyGxPgI~S}FpOsD|JcHfRqIxTmHdRyGnO{GvNaG~LcHfN_HdMqKfQaHlL_LzQ_H|K{ErH}EjI{MrT{Rz\\gOtWoJtPgJxPsJ~Q{Qx\\eJnQ{G`NgJfS}IlRcJpRmJxRgIlPiJrQiHrMyGhLwEhHcGbJ}JpNyKxM_KdLcIfIwHrHiM`LgNhKwKxHcMtHaLrGaJlEqK~EaQvGmIvCqM|DwNbEiOxDoQ~E}NtDgJjC}JxCyJzCeNpE_J~CiJjD{KlEaR|HyG~CwFjCgGzCaIjEeLpGgItFiObKgMtJwKrJwKdKeQ`R_LdNqJbMiHdKiCdEuF|IoHnM{FnKaGnLsInRoJxUoI~TiFpOeGhQgGfR{JvYcJxV}HfToEnLwW|s@wSnl@}K`^yI`ZgOdj@oGnWeDfNeJ~a@uCbOsGr]{FvYeD|SmCnRmCfSyC|UwBbSu@tGaCpWqCzXwBtXqAhRcA`PuA|WcBf_@uAfd@}@~b@q@tu@A`j@b@xg@HlF\\fTTtMzAba@dAhl@PxKJdGb@lXZ|h@?hh@?th@K|[F~v@bLhxCnHdwANdbBmDzx@{@fKwBdWaDjYkDdX_DnT{E|XwIta@mMdl@aErRqDnTaCjQuAbQq@vRUxSPlSZhVJvZSdTw@lTwA~PyChSuDzQcGlVwEzQgFtVuC~QgCnWkAvYP`Vl@~T|@fPhBnOvAbLrB~JdBjIfFhPbHvPbEbJ`MlT|LnQfP~QfPbPnOzMrPvJpIfGvTnN|VtOdWrPlYxS~ZlWlGrG~Y~XjM~MbVdX~C~D~FpHdYx]~Vp[hVj[x[ra@fTxWtPlTfRdTfJ|L|KlNp_@rZnMjJxW`P`IbEpMlFjSjIjg@`RdPpHvPnK|LdKpHbIvJrLfUr[pS|VxNhOxMdKnJjGf\\~RnWzOdVzRdN`OzQxV~ItM~MhRpMhQbYf[hRbS|WhY|FlGr]la@`r@`y@tQ~PbL`ItLjHdTrK|LnFnGrCfIdEdGrDjKlHbJzInJ~KhHvK~FpMhF`KdEzJxEtLfIxRvIfQbJbOnLvNpLpLzM~KvJxIvGhFpSzQ`KpKpIlMpKfOjUx\\bQbWpSvSjLzIlQ`LnU~MvUhOdPzOzNxRlMtUnJhTfHjRzErL|InS|JbTnKhS~NxWpUlf@|Nja@hKvb@bCrNpBbMdFf`@tB~OpAxJfHr^xJ~\\zEhLbHlNvTvZbMdLzMpJdKnFnGjCbGzBbKdCpOtB`Jj@dMNlZq@~^o@bKl@xMbBfKvBzIzCxMfGvKnGbKfJpGlGfKrMlJrOfJ~PlWxe@|KtPrJzLrM`OjP|N~KdItQrKtVjKvXpHbYbGz[|HfR`FtRrGlIxCjRlI`N|GhO`JnJ~FtRnM~OzMlR~PvRbSzY~]bOdTlR~ZxZhg@jNfSxL|LjJtHpN~IvPxGrN~E~NfBfL`@hKAlLg@nJ{@nMcCnQqD|QqDzO_B`Mc@bLT|Kx@bKbBpJ|BpJzD`NxGtIhG~HfHfJxJ~ItLxHbMzI~PhK|UpGbN|HxPzGzN|MfYfI`OnJzQdQbZ`HnKrIxL`KzL`CnC~AfBzFfFjElDhFxDbChBjCfB~IbDnQpGnMrDdKxCzI`AzKf@tLPbPo@xEe@bGm@jOoDbIaDfJeDxBw@lMqFzUsM|EcCzEeCfOsHvXqK~NsFfQgFfVaGd\\eEv_@mDzXy@hf@Cpb@fBpQlAfVdApMt@hPLxX@`TaAhTsA~j@_Gh[iCtQw@jXw@jQE~KB~QRnRbBtQpBfVpFfK~CjMpEfMvFzJ~FtMhK~MjK~L|MhE|EdDtDjHrKjJpOpGlK|KvUrCbHtHbOpK~T`IpOhKjQrOjTlMzOxIpIlJ`IlJ|G~GtEhHrExJbF~^`RtUzLxNlJzIxGdK|ItHrHtK|LdNxRfOrXjMh[rEhMfJf\\~EtTfDfSd@rClD~WdExa@TfCbE|c@~B`QzC|OrDnN|DnMzGnP`IxMxHpLvEnFrJ~JxIrFvIrFdHfDnKtDpJzBrMvAbNp@zMZfZR`Ml@~JrApGdAhGzArGvCtHhDfLlHlFxE~AvApFtFhGlIdDzEnD|GtF`N`FjNdF`R`IvZvHzXhGnPtE~KnD`HlE|HrCpEdEtG|O|SvTpWxRrS`VbXvP|T|IpNpHfN`InPtHbQdIxRtH~S|HjVvGdUjIl[lEjThFjUtClO`C|MjEdR`BjHxBrJnGpSvFlN`IvQdNpUpKbOjM|N~L~OhIhLrJfPtD|HpBbF`FnNbF~OzGxV`GvSdHrUzHhUdKnRvK`P"},{"ref":"AP-1; E 05; E 80","mode":"driving","weight":1460.773,"distance":44801.66,"geometry":"gbvkqA`hmsCrLnTfKpK~LjLjWnSdThQlLjL|JvMnKhQtKvRxE|HxEzH|MrS~OzQrLpKhEfDtIjFjMhGlMdFfF|A|KdCnM`BfJr@|Gd@xJLbMc@zMkBfJ_CxKsEzJiFzMwHxN}JvHcHpI_J|IkLpFwI|FcJ`Xki@pKsTrKgWzO{]pJmTrJuSlH}PfJ{P|J}PhKiRnIsKnHsKdIeInOwMlNsKxN_LjMqIpOqJ~R{IzPcGl[oInNmD`QcBfOsAjf@kB`QU|PCbQWvWTxWSpq@aCr`@wCb`@sFj_@cId_@mLxa@yP|YkOxiAeq@bfEitApbBuSv~AZ`]`CbzAjMtJv@noh@duEfg@VfVOhXw@h\\yAl`@eD~j@}Hnh@cKzeBq[dxDkr@pbHibAlu@aDfq@Opd@]~d@eF~x@eTvx@oQ`\\gDf\\aApSB|Sp@di@dFnTrDjU`HhJjCbKpDvMxFfH|DvS~KhShM|FhEbLjIbl@hb@~a@jVjb@nTlWdKzW~Hl]pIv\\|Fdh@`Frh@hB~h@Irh@mB`yA}If{@aBrnA~O`pAj\\bbAfh@nnGx}E`hAfn@f_AbZ``AjP~cAhKrWjDlYzBlUpAlo@x@lo@uApWcBvUgCpo@}Lhw@mRpDcArTcGlZiI|WsHlWeF~V_ElWcChWkApWK|f@bBjg@pGrZvGjZzIzt@zVjWrHvWxF`WhDdXnBlk@^ll@`@fu@g@zDB|g@`@xDBvb@pBjDNxYhDnBTt`@fG`a@`Mz`@dP|^|RtKzHjQvKnH`GtVbSf\\p[d[p^nWl^`Xzc@`Wzf@|FrNbMzZfQjj@p^`iA``@`lAt@xBbQ|b@bG`Oj_@tq@pb@bo@lYxa@lk@`{@xLxQ|NpTpO~UjHtLrQfZlV|g@rQhm@pLff@nzDzyRnHz_@vJpb@zFfSdDlLfP`f@~Nb_@|F|NlExJrVlj@lGnOzKfZvHzVnHf[tFhZhGrb@xG~k@xJl~@~Izl@dIf`@fJb]`Nd`@jJhUxPj]rRz[nQjVrWnYhVpT|VjQ\\TnT|LnQjIfShH`d@bPld@vNfdBzl@jkAjl@ja@hZbb@n^n\\t^nf@zs@fYfg@`Qd_@xPz`@b^b}@flAbzCpa@z_A|`@zx@d_@rq@ph@vv@h^re@nc@bf@n^j]|UhSnp@fh@hgAdy@n}@zr@dZrX`XfYtQjTlY`_@nq@f`Aj_@tj@nb@xm@bfAv|Ad\\dg@tNjWhOjY`NfYpO|^hN~_@bMfa@xJv]|Pnv@lIr`@lQj`AdIhc@xJba@bLv^xGxQdKnUtKlWhAnChOh[fU~[p^r]pg@pa@lJzGzUxNxVtLn`@jO`c@~KtOdCzWxCxStAn[f@dXMh_@iC~{@wI`p@qJde@_F`o@iD|Pn@jR|Av\\xEjRlEzJpCrHvBzNrFvRvI|`@tUnMpJrQ`OtPpP`MtNtMfPlGdJhD~EjGtJjDxF`y@hsA|OhW~QzWhBlDzMxRfQbXfi@bv@zLhR~KvQpMrWjJ~SdKfXhK~[|FfThI|^vGb^`YtaBxJna@jKh^rFfOhJfUnIxQjDvHtJ|RnKnRxLvQ`KfMb`@bg@d~@jkA`k@pw@tTvY|\\bf@jV|`@rRn]~Xnj@vIvRlBpEpFfMbNp^dGhRtGbUjH~YnFpW~DhTnH`g@vCzWjCrYdBnVxAd[lAxb@Zr^GjXWzWsBvu@eAjW_C|b@qCtd@qDvh@cE|l@gCb`@gCfb@sBjf@qAdj@a@lg@HpX\\pU`Af\\rAxWxBnXbClVnDzXzGpa@`E|S|EfRxE`R`I~W~GlR`HnQ`Pv]~JdRxNpVpPdVhM`PvMzOzShU`[vZ~xAjsAbZ|XxWpXjNzNxUvXnYja@xSx[fWne@hKxU~MxZ~Tho@pPtl@zKrf@lSlfA~e@vkChVxoAbZtmAdRdm@`Prb@vSpd@pMrVjExHlHnMx[`f@dUxZfUpXxOnPzS|RzRlPlUbPz^nT|WdNfYnMnt@`Yls@|Vbu@rWvb@`O`d@xQ~_@~PpL`GxN`I`RvL~SxOjYfXvi@ji@ja@td@bb@te@x`@tb@rh@hb@r]fUp`Ani@br@xc@vh@|`@xVrTb[hZdRdSpZh\\rh@lp@xlXpg]x_BtrB~~ArnBtj@ro@xc@fg@r]d_@hr@rr@lp@|m@bYbXrm@rh@n[zWj_@~YpZfUh^hXh}Bd~AxYnTdWlTpRrQhS`U|MfOfU~Zd^tj@hHfNbOtYlLlXzK|XvIxVhEfNdOtf@jMpe@h\\ppAzRtu@tUzy@vSnp@|Tzn@nPta@vSjd@~Of[|Rb]hZje@b_@bg@zb@~e@f^z]zMlL~OdMz]tWvh@~Z~^xQdO|Gdp@nVfx@rUZJjHtBvxDj_A`vAf]hwAh]liAvXjpAr[`eCpm@dhBpi@nhBpo@pn@pZ~XzO``@fVzThOtSjOlh@lb@|VrUfW~UzTdVfTtUzf@pm@X\\fPtT~[he@nJdOha@xq@zVxe@lVjg@~MbZnNt\\bSrg@zKb[nKb[rJfZxUly@~Nfk@vGtYdHj\\jOrv@fIzd@rHfd@zb@rsCbNt~@rQbgApVvtA`UxhAn@`Dfh@d_CrYdlAxTl_Ara@hkB|SdfAtRhfAdWd{AnXnjB|NliAbOrmAdLjfAdKzgAfKjmAhF|u@dGn~@jGrdAdEn|@nGfaBvFvuBtC~|ApAv~CZju@Vxt@|@py@rBv{@fD`v@jBj_@fF|p@xIny@~Ivp@~RdjAvV|hAjXz_AxG~SfR|l@`Qvb@pAxCzAjDhXnm@fZpe@zUz`@rMvRpTf[dJdMvBjCdMrOxPzRbSdT|SrSvUlT~RfQdVtS`jBnxAd\\dX","duration":1559.203,"driving_side":"right","duration_typical":1559.203,"weight_typical":1460.781,"name":"Iparraldeko Autobidea / Autopista del Norte","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 69 onto 69 toward Bergara/Vitoria-Gasteiz-Burgos.","modifier":"slight right","bearing_after":229,"bearing_before":224,"location":[-2.432145,43.200052]},"speedLimitUnit":"km/h","destinations":"69: Bergara, Vitoria-Gasteiz-Burgos","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Vitoria-Gasteiz"},{"type":"text","text":"/"},{"type":"text","text":"Burgos"}],"type":"fork","modifier":"right","text":"Vitoria-Gasteiz / Burgos"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"101"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"}],"type":"fork","modifier":"right","text":"Exit 101 N-622"},"distanceAlongGeometry":44801.66}],"exits":"69","voiceInstructions":[{"ssmlAnnouncement":"Continue for 28 miles.","announcement":"Continue for 28 miles.","distanceAlongGeometry":44774.992},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on E 05.","announcement":"In 2 miles, Keep right to stay on E 05.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 05.","announcement":"In a half mile, Keep right to stay on E 05.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 101 to stay on E 05, E 80 toward Vitoria-Gasteiz, Burgos.","announcement":"Keep right to take exit 101 to stay on E 05, E 80 toward Vitoria-Gasteiz, Burgos.","distanceAlongGeometry":360}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[44,222,229],"duration":1.656,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":2,"weight":1.562,"geometry_index":24800,"location":[-2.432145,43.200052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,217],"duration":6.797,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.461,"geometry_index":24801,"location":[-2.432489,43.199834]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,216],"duration":5.359,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":5.086,"geometry_index":24805,"location":[-2.433525,43.198685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,227],"duration":1.539,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":1.461,"geometry_index":24809,"location":[-2.434584,43.197876]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[47,225],"duration":7.633,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":7.25,"geometry_index":24811,"location":[-2.434901,43.197658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,209],"duration":3.812,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":3.625,"geometry_index":24814,"location":[-2.435734,43.196929]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,195],"duration":9.641,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":9.156,"geometry_index":24818,"location":[-2.436184,43.196196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,336],"duration":9.406,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":0,"weight":8.938,"geometry_index":24829,"location":[-2.43604,43.19409]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.434129,43.19245],"geometry_index":24837,"admin_index":12,"weight":38.828,"is_urban":false,"turn_weight":6,"duration":35.5,"bearings":[129,300,309],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,179],"duration":18.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.891,"geometry_index":24865,"location":[-2.428772,43.185195]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,336],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":4.977,"geometry_index":24873,"location":[-2.427575,43.1809]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[163,334],"duration":25.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":24.008,"geometry_index":24874,"location":[-2.426772,43.179703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,186],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.875,"geometry_index":24877,"location":[-2.42509,43.173392]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,187],"duration":5.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.391,"geometry_index":24878,"location":[-2.425155,43.172911]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.703,"geometry_index":24879,"location":[-2.425385,43.171453]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[6,187],"duration":82.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":74.242,"geometry_index":24880,"location":[-2.425413,43.171266]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,181],"duration":15.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.945,"geometry_index":24881,"location":[-2.42884,43.15001]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[169,348],"duration":44.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":40.781,"geometry_index":24888,"location":[-2.428335,43.146217]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,179],"duration":12.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.023,"geometry_index":24893,"location":[-2.42589,43.135268]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,177,347],"duration":12.703,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":12.375,"geometry_index":24897,"location":[-2.425125,43.132207]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,199],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.773,"geometry_index":24905,"location":[-2.425455,43.129052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,205],"duration":2.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.047,"geometry_index":24907,"location":[-2.425669,43.128622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,207],"duration":11.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.281,"geometry_index":24909,"location":[-2.425972,43.128142]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,200],"duration":27.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":26.43,"geometry_index":24915,"location":[-2.427751,43.125632]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[189,358],"duration":54.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":53.477,"geometry_index":24925,"location":[-2.428284,43.118812]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,189],"duration":20.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":19.25,"geometry_index":24933,"location":[-2.434916,43.106481]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.328,"geometry_index":24943,"location":[-2.434405,43.101231]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":28.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":27.133,"geometry_index":24944,"location":[-2.434275,43.100885]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,181],"duration":9.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.547,"geometry_index":24960,"location":[-2.434938,43.093498]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,181],"duration":2.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.336,"geometry_index":24964,"location":[-2.434953,43.091098]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,183],"duration":4.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.422,"geometry_index":24965,"location":[-2.43497,43.090443]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,190,199],"duration":9.781,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.047,"geometry_index":24970,"location":[-2.435133,43.089207]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.436242,43.086867],"geometry_index":24975,"admin_index":12,"weight":2.242,"is_urban":false,"turn_weight":1,"duration":1.367,"bearings":[20,30,207],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[27,212],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.664,"geometry_index":24976,"location":[-2.436446,43.086573]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[32,212],"duration":8.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.922,"geometry_index":24977,"location":[-2.436575,43.086421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,227],"duration":5.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.211,"geometry_index":24981,"location":[-2.438362,43.084731]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":23.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.992,"geometry_index":24984,"location":[-2.43984,43.083818]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,225],"duration":6.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.07,"geometry_index":24994,"location":[-2.446429,43.080309]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.383,"geometry_index":24997,"location":[-2.448036,43.079122]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[45,227],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.664,"geometry_index":24998,"location":[-2.448404,43.078857]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[47,227],"duration":33.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":31.414,"geometry_index":24999,"location":[-2.448623,43.078707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,248],"duration":4.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.148,"geometry_index":25004,"location":[-2.461241,43.074519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,242],"duration":4.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.242,"geometry_index":25007,"location":[-2.46266,43.074053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.812,"geometry_index":25010,"location":[-2.464014,43.073438]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[56,233,239],"duration":0.68,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.625,"geometry_index":25011,"location":[-2.464269,43.073311]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":20.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":19.242,"geometry_index":25012,"location":[-2.464458,43.073208]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.471177,43.071076],"geometry_index":25024,"admin_index":12,"weight":45.492,"is_urban":false,"turn_weight":0.75,"duration":47.125,"bearings":[53,63,238],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[56,236],"duration":23.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":23.109,"geometry_index":25048,"location":[-2.481974,43.059887]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,218],"duration":44.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":42.625,"geometry_index":25054,"location":[-2.48874,43.055874]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,229],"duration":13.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.164,"geometry_index":25069,"location":[-2.498918,43.046413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":11.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.359,"geometry_index":25077,"location":[-2.503117,43.044448]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[53,235],"duration":1.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.281,"geometry_index":25084,"location":[-2.506997,43.043088]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[55,233],"duration":9.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.422,"geometry_index":25085,"location":[-2.507388,43.042885]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,210],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.742,"geometry_index":25090,"location":[-2.50942,43.041077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,207],"duration":14.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.734,"geometry_index":25091,"location":[-2.509562,43.040894]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,359],"duration":2.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.945,"geometry_index":25100,"location":[-2.510704,43.037177]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[173,354],"duration":11.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":11.391,"geometry_index":25101,"location":[-2.510635,43.03666]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[183,355],"duration":6.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":5.797,"geometry_index":25105,"location":[-2.510081,43.033519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":11.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.367,"geometry_index":25110,"location":[-2.510437,43.031946]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,225],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.109,"geometry_index":25120,"location":[-2.512583,43.029271]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227,234],"duration":0.477,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.445,"geometry_index":25122,"location":[-2.512882,43.029052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":9.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.117,"geometry_index":25123,"location":[-2.513007,43.028966]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.515547,43.027171],"geometry_index":25128,"admin_index":12,"weight":24.117,"is_urban":false,"turn_weight":1,"duration":24.344,"bearings":[37,44,225],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,237],"duration":6.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.836,"geometry_index":25142,"location":[-2.523019,43.02373]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,225],"duration":13.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.562,"geometry_index":25148,"location":[-2.524723,43.022786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,222],"duration":8.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.578,"geometry_index":25153,"location":[-2.52802,43.020126]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,231],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.359,"geometry_index":25157,"location":[-2.530105,43.018612]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234,239],"duration":0.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.352,"geometry_index":25159,"location":[-2.531117,43.018024]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":22.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.938,"geometry_index":25160,"location":[-2.531222,43.017969]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.538835,43.016597],"geometry_index":25177,"admin_index":12,"weight":28.25,"is_urban":false,"turn_weight":1,"duration":30.289,"bearings":[90,95,277],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,238],"duration":13.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.234,"geometry_index":25199,"location":[-2.549601,43.016278]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,214],"duration":10.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.445,"geometry_index":25209,"location":[-2.553099,43.013742]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":10.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.414,"geometry_index":25212,"location":[-2.555273,43.011471]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":6.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.688,"geometry_index":25218,"location":[-2.557931,43.009518]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,246],"duration":5.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.766,"geometry_index":25221,"location":[-2.55988,43.008645]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[69,249],"duration":16.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.18,"geometry_index":25223,"location":[-2.561657,43.008112]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,237],"duration":4.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.648,"geometry_index":25227,"location":[-2.5672,43.006374]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,230],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.711,"geometry_index":25229,"location":[-2.568371,43.005769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":14.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.109,"geometry_index":25231,"location":[-2.568906,43.005434]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,204],"duration":6.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.945,"geometry_index":25240,"location":[-2.572113,43.002321]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,198],"duration":20.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.078,"geometry_index":25243,"location":[-2.573005,43.000646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,216],"duration":23.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.5,"geometry_index":25253,"location":[-2.575811,42.995715]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[28,211],"duration":113.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":99.398,"geometry_index":25261,"location":[-2.580472,42.990355]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,213],"duration":23.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.477,"geometry_index":25277,"location":[-2.607097,42.966782]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.617,"geometry_index":25286,"location":[-2.611549,42.961391]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,226],"duration":59.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":53.805,"geometry_index":25288,"location":[-2.612257,42.960796]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":0.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.062,"geometry_index":25318,"location":[-2.627934,42.9495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.508,"geometry_index":25319,"location":[-2.62794,42.949486]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,194],"duration":31.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":28.5,"geometry_index":25320,"location":[-2.627999,42.949336]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[14,194],"duration":23.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.734,"geometry_index":25325,"location":[-2.630868,42.941065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,203],"duration":28.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":25.727,"geometry_index":25328,"location":[-2.633071,42.935549]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,226],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.898,"geometry_index":25342,"location":[-2.638428,42.929647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,227],"duration":10.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.625,"geometry_index":25343,"location":[-2.638687,42.929463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,236],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.461,"geometry_index":25348,"location":[-2.641676,42.927669]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.742,"geometry_index":25350,"location":[-2.642776,42.927141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,242],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.781,"geometry_index":25352,"location":[-2.643662,42.926755]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[62,244,248],"duration":17.875,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.523,"geometry_index":25353,"location":[-2.644597,42.92639]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.650672,42.924693],"geometry_index":25360,"admin_index":12,"weight":13.445,"is_urban":false,"turn_weight":1,"duration":13.461,"bearings":[63,72,252],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,247],"duration":80.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":72.867,"geometry_index":25364,"location":[-2.655398,42.923423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":20.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.406,"geometry_index":25386,"location":[-2.68454,42.917993]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,250],"duration":3.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.406,"geometry_index":25395,"location":[-2.69211,42.917275]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,246],"duration":4.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.742,"geometry_index":25396,"location":[-2.693313,42.916955]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,242],"duration":4.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.258,"geometry_index":25397,"location":[-2.694496,42.916575]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,240],"duration":3.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.961,"geometry_index":25398,"location":[-2.695534,42.916169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,240],"duration":12.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.664,"geometry_index":25399,"location":[-2.69587,42.916028]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.742,"geometry_index":25401,"location":[-2.697177,42.915431]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.697254,42.91539],"geometry_index":25402,"admin_index":12,"weight":15.836,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":0.922,"bearings":[54,234],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":7.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.039,"geometry_index":25403,"location":[-2.69734,42.915344]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,226],"duration":4.031,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.602,"geometry_index":25404,"location":[-2.698084,42.914939]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,227],"duration":6.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.281,"geometry_index":25405,"location":[-2.698701,42.914503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,221],"duration":19.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.422,"geometry_index":25410,"location":[-2.700308,42.913319]},{"bearings":[31,212],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":25418,"location":[-2.703959,42.909382]}]},{"ref":"E 05; E 80","mode":"driving","weight":19.945,"distance":502.109,"geometry":"en}ypAr}`dDnJjKbm@jp@hVvYnc@`q@nQj[lMdWzJjUbHrT|D`QxFd\\","duration":21.586,"driving_side":"right","duration_typical":21.586,"weight_typical":19.945,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 101 to stay on E 05/E 80 toward Vitoria-Gasteiz/Burgos.","modifier":"slight right","bearing_after":218,"bearing_before":212,"location":[-2.704362,42.908915]},"speedLimitUnit":"km/h","destinations":"N-622: Vitoria-Gasteiz, Burgos, Bilbao","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Vitoria-Gasteiz"},{"type":"text","text":"/"},{"type":"text","text":"Burgos"}],"type":"fork","modifier":"left","text":"Vitoria-Gasteiz / Burgos"},"distanceAlongGeometry":502.109}],"exits":"101","voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take N-622.","announcement":"In a quarter mile, Keep left to take N-622.","distanceAlongGeometry":476.442},{"ssmlAnnouncement":"Keep left to take N-622, E 05 toward Vitoria-Gasteiz, Burgos.","announcement":"Keep left to take N-622, E 05 toward Vitoria-Gasteiz, Burgos.","distanceAlongGeometry":188.222}],"intersections":[{"entry":[false,true,true],"classes":["toll"],"in":0,"bearings":[32,208,218],"duration":1.344,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":2,"weight":1.234,"geometry_index":25419,"location":[-2.704362,42.908915]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[38,218],"duration":5.352,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":4.945,"geometry_index":25420,"location":[-2.70456,42.908731]},{"bearings":[32,38,220],"entry":[false,false,true],"in":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":2,"geometry_index":25421,"location":[-2.70535,42.907993]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":3244.077},{"ssmlAnnouncement":"In 1 mile, Take exit 5.","announcement":"In 1 mile, Take exit 5.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 5.","announcement":"In a half mile, Take exit 5.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 5 onto A-1 toward Burgos, Madrid. Then Keep right to take A-1.","announcement":"Take exit 5 onto A-1 toward Burgos, Madrid. Then Keep right to take A-1.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[70,250,259],"duration":6.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.102,"geometry_index":25429,"location":[-2.70888,42.905953]},{"entry":[false,true],"in":0,"bearings":[83,262],"duration":4.852,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":4.492,"geometry_index":25434,"location":[-2.710837,42.905687]},{"entry":[false,true],"in":0,"bearings":[63,235],"duration":1.32,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":1.219,"geometry_index":25439,"location":[-2.712241,42.905389]},{"entry":[false,true],"in":0,"bearings":[54,227],"duration":2.719,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":2.516,"geometry_index":25441,"location":[-2.712537,42.905233]},{"entry":[false,true],"in":0,"bearings":[36,209],"duration":6.758,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.25,"geometry_index":25444,"location":[-2.713038,42.904819]},{"entry":[true,false],"in":1,"bearings":[164,351],"duration":3.867,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":3.578,"geometry_index":25451,"location":[-2.713366,42.903493]},{"entry":[true,false],"in":1,"bearings":[141,327],"duration":12.391,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":11.461,"geometry_index":25455,"location":[-2.712925,42.902802]},{"entry":[true,false,false],"in":2,"bearings":[127,290,301],"duration":1.852,"turn_weight":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":2.203,"geometry_index":25469,"location":[-2.709726,42.901664]},{"entry":[true,false],"in":1,"bearings":[139,313],"duration":10.117,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":9.359,"geometry_index":25471,"location":[-2.709321,42.901421]},{"entry":[true,false,false],"in":1,"bearings":[146,309,324],"duration":6.391,"turn_weight":6.75,"turn_duration":0.023,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":12.641,"geometry_index":25475,"location":[-2.70748,42.899794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[144,324],"duration":6.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":6.078,"geometry_index":25477,"location":[-2.70634,42.898609]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[144,324],"duration":8.469,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":7.828,"geometry_index":25478,"location":[-2.705152,42.8974]},{"entry":[true,false],"in":1,"bearings":[144,324],"duration":2.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":2.367,"geometry_index":25479,"location":[-2.703604,42.895845]},{"entry":[true,false],"in":1,"bearings":[143,324],"duration":31.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":29.383,"geometry_index":25480,"location":[-2.703153,42.895387]},{"entry":[true,false],"in":1,"bearings":[158,338],"duration":1.031,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":0.953,"geometry_index":25489,"location":[-2.698224,42.889177]},{"entry":[true,false],"in":1,"bearings":[158,338],"duration":5.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":4.836,"geometry_index":25490,"location":[-2.698107,42.888963]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":0.656,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":0.609,"geometry_index":25492,"location":[-2.697585,42.887965]},{"bearings":[160,340],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"geometry_index":25493,"location":[-2.697522,42.887836]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"},{"type":"text","text":"/"},{"type":"text","text":"Madrid"}],"type":"off ramp","modifier":"right","text":"Burgos / Madrid"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"5"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"off ramp","modifier":"right","text":"Exit 5 A-1"},"distanceAlongGeometry":3269.744},{"sub":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"A-1"},"secondary":{"components":[{"type":"text","text":"Burgos"},{"type":"text","text":"/"},{"type":"text","text":"Madrid"}],"type":"off ramp","modifier":"right","text":"Burgos / Madrid"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"5"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"off ramp","modifier":"right","text":"Exit 5 A-1"},"distanceAlongGeometry":1609.344}],"destinations":"Vitoria-Gasteiz, Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take N-622/E 05/E 80 toward Vitoria-Gasteiz/Burgos.","modifier":"slight left","bearing_after":250,"bearing_before":250,"location":[-2.70888,42.905953]},"speedLimitSign":"vienna","name":"","weight_typical":132.75,"duration_typical":135.664,"duration":135.664,"distance":3269.744,"driving_side":"right","weight":132.75,"mode":"driving","ref":"N-622; E 05; E 80","geometry":"auwypA~widDfCvMnB~RpBr[dBbc@bAxUb@tJzA|TtCtUlClPnD~LpF|MdApBpClFtGnJrKjKpKpHvJpE|HtBtJdBnMb@fK]dIuAbGyAnHwCpKmG~KqJ`GkGxGiK`EyI|DiJxCeL~BcLdB{JdBwLdC}StDu^nB{MvBaLnC_LlDsJ~DuJdHsLxH{Jbg@kg@vd@kf@~LmVpUySnr@mq@pjAgiAd`Bw_Br[e[xOaPrt@ct@ts@ar@he@w`@|g@a`@xw@ug@nz@qe@pk@cZzWsLjLiF~VcLje@oR`G}BtSiItVaJrq@sTtp@qRb~@sTt{@gQjHoA"},{"ref":"E 05; E 80","mode":"driving","weight":15.336,"distance":130.449,"geometry":"{rkxpAdipcDfJYdQi@|e@oEnCW","duration":16.148,"driving_side":"right","duration_typical":16.148,"weight_typical":15.336,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 5 onto A-1 toward Burgos/Madrid.","modifier":"slight right","bearing_after":177,"bearing_before":169,"location":[-2.695843,42.88339]},"speedLimitUnit":"km/h","destinations":"A-1: Burgos, Madrid, Donostia/San Sebastián, Iruña/Pamplona","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"},{"type":"text","text":"/"},{"type":"text","text":"Madrid"}],"type":"fork","modifier":"right","text":"Burgos / Madrid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"A-1"},"distanceAlongGeometry":130.449}],"exits":"5","voiceInstructions":[{"ssmlAnnouncement":"Keep right to take A-1 toward Burgos, Madrid.","announcement":"Keep right to take A-1 toward Burgos, Madrid.","distanceAlongGeometry":103.782}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[169,177,349],"duration":2.492,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":2.359,"geometry_index":25500,"location":[-2.695843,42.88339]},{"entry":[true,false],"in":1,"bearings":[177,357],"duration":12.664,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":12.031,"geometry_index":25501,"location":[-2.69583,42.88321]},{"bearings":[173,353],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"geometry_index":25503,"location":[-2.695705,42.882296]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 15 miles.","announcement":"Continue for 15 miles.","distanceAlongGeometry":23805.016},{"ssmlAnnouncement":"In 2 miles, Take exit 328.","announcement":"In 2 miles, Take exit 328.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 328.","announcement":"In a half mile, Take exit 328.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 328 onto A-4104, AP-1 toward Burgos.","announcement":"Take exit 328 onto A-4104, AP-1 toward Burgos.","distanceAlongGeometry":266.667}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[170,186,353],"duration":23.539,"turn_duration":0.017,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":22.344,"geometry_index":25504,"location":[-2.695693,42.882224]},{"entry":[false,true],"bearings":[14,210],"duration":7.078,"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.727,"geometry_index":25516,"location":[-2.696913,42.880814]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.697417,42.880466],"geometry_index":25520,"admin_index":12,"weight":20.352,"is_urban":false,"yield_sign":true,"out":2,"in":0,"classes":["motorway"],"turn_duration":0.042,"turn_weight":1.125,"duration":20.273,"bearings":[62,89,269],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.699412,42.880508],"geometry_index":25523,"admin_index":12,"weight":9.695,"is_urban":false,"turn_weight":6,"duration":3.898,"bearings":[92,96,277],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":25.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.586,"geometry_index":25525,"location":[-2.700732,42.880612]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.516,"geometry_index":25536,"location":[-2.709311,42.879547]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[66,242,252],"duration":27.875,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":26.453,"geometry_index":25537,"location":[-2.709474,42.879495]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.716982,42.87511],"geometry_index":25549,"admin_index":12,"weight":66.562,"is_urban":false,"turn_weight":1,"duration":69.039,"bearings":[30,39,217],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":0.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.195,"geometry_index":25573,"location":[-2.735651,42.86403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,230],"duration":13.086,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.406,"geometry_index":25574,"location":[-2.735708,42.864]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.914,"geometry_index":25577,"location":[-2.73913,42.861674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":12.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.531,"geometry_index":25578,"location":[-2.739361,42.861484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":23.477,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":22.297,"geometry_index":25582,"location":[-2.742017,42.858967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,196],"duration":6.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.484,"geometry_index":25592,"location":[-2.74656,42.854069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,188],"duration":2.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.18,"geometry_index":25596,"location":[-2.747052,42.852457]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.281,"geometry_index":25597,"location":[-2.747155,42.8519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,192],"duration":16.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.984,"geometry_index":25598,"location":[-2.747267,42.851317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":4.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.094,"geometry_index":25607,"location":[-2.74948,42.847434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":25.781,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.469,"geometry_index":25609,"location":[-2.750211,42.846489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,184],"duration":59.375,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":54.914,"geometry_index":25621,"location":[-2.75159,42.840016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.562,"geometry_index":25646,"location":[-2.76266,42.827178]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":26.539,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.539,"geometry_index":25647,"location":[-2.762833,42.827081]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.770643,42.823388],"geometry_index":25651,"admin_index":12,"weight":13.648,"is_urban":false,"turn_weight":1,"duration":13.695,"bearings":[56,59,237],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[51,58,238],"duration":49.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":2,"weight":46,"geometry_index":25653,"location":[-2.774704,42.821461]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,237,241],"duration":0.828,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.75,"geometry_index":25656,"location":[-2.790255,42.814434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":65.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":60.969,"geometry_index":25657,"location":[-2.790528,42.814305]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.812516,42.803049],"geometry_index":25679,"admin_index":12,"weight":26.336,"is_urban":false,"turn_weight":1,"duration":28.156,"bearings":[46,51,231],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":6.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.508,"geometry_index":25689,"location":[-2.819675,42.797391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,198],"duration":10.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.078,"geometry_index":25692,"location":[-2.820575,42.795778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":15.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.758,"geometry_index":25695,"location":[-2.821738,42.793034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":6.672,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.836,"geometry_index":25699,"location":[-2.823005,42.789182]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[10,187],"duration":10.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.422,"geometry_index":25701,"location":[-2.823408,42.787531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":8.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.117,"geometry_index":25704,"location":[-2.823862,42.784816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,182],"duration":38.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.883,"geometry_index":25707,"location":[-2.824044,42.782714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":2.242,"geometry_index":25716,"location":[-2.823276,42.772403]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":27.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":24.312,"geometry_index":25717,"location":[-2.823185,42.771746]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[183,187,359],"duration":0.25,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":0.219,"geometry_index":25722,"location":[-2.822392,42.764698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":7.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.094,"geometry_index":25723,"location":[-2.822396,42.764636]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,187],"duration":0.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.57,"geometry_index":25726,"location":[-2.822659,42.762583]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,193],"duration":5.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.711,"geometry_index":25727,"location":[-2.822689,42.762415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,198],"duration":1.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.156,"geometry_index":25730,"location":[-2.823159,42.761048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,201],"duration":12.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.18,"geometry_index":25731,"location":[-2.823304,42.760716]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.82543,42.757665],"geometry_index":25737,"admin_index":13,"weight":9.898,"is_urban":false,"turn_weight":0.5,"duration":10.453,"bearings":[28,33,217],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,230],"duration":28.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.859,"geometry_index":25743,"location":[-2.828089,42.7555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.992,"geometry_index":25753,"location":[-2.837246,42.751137]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,243],"duration":30.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.469,"geometry_index":25754,"location":[-2.837608,42.750998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1,"geometry_index":25759,"location":[-2.848286,42.747453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":60.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":54.898,"geometry_index":25760,"location":[-2.84866,42.747337]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,220],"duration":10.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.625,"geometry_index":25779,"location":[-2.867414,42.73954]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,209],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.914,"geometry_index":25783,"location":[-2.869648,42.737274]},{"bearings":[23,201],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":25786,"location":[-2.870871,42.735479]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"}],"type":"off ramp","modifier":"right","text":"Burgos"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"328"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"A-4104","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-4104"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"off ramp","modifier":"right","text":"Exit 328 A-4104 / AP-1"},"distanceAlongGeometry":23831.682}],"destinations":"A-1: Burgos, Madrid","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A-1 toward Burgos/Madrid.","modifier":"slight right","bearing_after":186,"bearing_before":173,"location":[-2.695693,42.882224]},"speedLimitSign":"vienna","name":"","weight_typical":783.742,"duration_typical":840.031,"duration":840.031,"distance":23831.682,"driving_side":"right","weight":783.742,"mode":"driving","ref":"A-1; E 05; E 80","geometry":"_jixpAx_pcDfGP~Ez@zD~B~BfCbE|HrLd[rDrG|AdB|BtBpDdBrEpApQdEzD~BfErDrDzH~B~JHlWw@ng@e@vz@mDr_Aa@zPmAph@m@xp@NraAxAjs@tA~]~Bxa@`Glt@lIdu@rJ|q@hKjl@~P`w@fBdIlY`dAtMta@xSbl@pTdj@jW|l@vSra@|Xdh@jUj`@zRxZjYpa@dYb_@tWpZpi@nk@pZfYpnAhdAfn@`g@bo@zi@te@nf@fc@zg@z_@`j@v[|j@dZ`m@hYfr@zVdv@vTlx@lLvg@nM`n@~VbqAtMdo@rMfn@xRjw@bZpeAxVpv@vNl`@fNn]v[tu@z@pBrbAtlBtq@`fA`Zb`@zJlMxSnXtY`[j\\p]loAzpAlTxVtcAxsAv\\~b@~[v\\hOvNjNbL~^bY|\\pSj`@~Qf]~M~VnHvVnGfVfEv\\nExa@lElc@~Ez`@tHlYhHtZzJrV`KlR|IhXnO~UlOve@l^pW`Svb@d\\hVnOpQ`K|b@hS|S~HhW~H~X`Hf[|Fz_@vExd@jCdn@rAtz@\\z_@Lbg@t@zQr@lZlBpSfBpZpDfS|CjYlF|]`Ih`@`Lb[pKv[jMte@xTff@`Y~`@tWlk@~c@n]n[rh@`j@fl@zp@df@dm@~e@ro@fe@fr@fd@jt@b`@lq@j^vq@tQz]p\\`t@`ExIjz@jsBpu@hrBv~@|eCbt@nxBtoAxfDvf@~tAnzCvoIhaCnyGjxCt_J`G`Pxc@|lAh{@jzBfq@`aB|Pv`@dAbClTde@zRp`@li@~`Apg@~{@zv@zsAnPb\\`Rj`@bTzf@`Sli@pLr\\vLn`@n[reArl@|nBrs@vbCzT`p@vWbq@jlA|bCnrAhjCjf@f_A`f@hx@zi@xt@pa@hd@`UvTnTnR~[~Vrd@rZ`CpApc@|Uz`@rQj]tMdi@rQxj@zQntAdb@bmAn\\j_Bb^tl@|KpSrD|X`FflAbQ|_@zDpjAlLd|@`H`t@dExt@`CnWb@jT`@|j@n@t_B?`x@aAxx@kBp{@aDry@wDlwBcO|~BeQ`h@uDr}Ey^hrAwIlz@sCxZk@hn@_@zBFzp@|Av\\lBto@`InIz@pPjDz^~H~b@~LvS`H~n@hXbV|LnYdPjZ|R~YvTte@va@zP`QhNxNhOzPxWr\\x^nh@d\\hj@h[pl@~Xtl@f]nx@zW~p@hY~u@hZfy@zS`n@hVbt@`Yf}@jf@z`BtGrUhe@vdBz[brAf[lsAru@lkDnfAr`FfFjVz{AjdH`n@psChUteAdXhkAvV~dAhRls@fS~s@pNhd@vLx_@rNfa@rQje@vSxg@nS|b@|Udf@l_@xo@`N|TpPfWtSdY`VzZxp@dw@xYzXx_@n\\d_@`[fl@ra@b`@|Tx`@zR~ZjM`ZpK"},{"ref":"E 05; E 80","mode":"driving","weight":18.289,"distance":422.015,"geometry":"k_iopAj_gnDfKnG`KjEt]`JdQdDpI~Ax^~EheA~Jrl@lG","duration":20.32,"driving_side":"right","duration_typical":20.32,"weight_typical":18.289,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 328 onto A-4104/AP-1/AP-68 toward Burgos.","modifier":"slight right","bearing_after":207,"bearing_before":199,"location":[-2.871302,42.734598]},"speedLimitUnit":"km/h","destinations":"A-4104, AP-1, AP-68: Burgos, Armiñón, Estavillo, Logroño, Bilbao","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Burgos"}],"type":"fork","modifier":"left","text":"Burgos"},"distanceAlongGeometry":422.015}],"exits":"328","voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to stay on E 05.","announcement":"In a quarter mile, Keep left to stay on E 05.","distanceAlongGeometry":388.682},{"ssmlAnnouncement":"Keep left to stay on E 05, E 80 toward Burgos.","announcement":"Keep left to stay on E 05, E 80 toward Burgos.","distanceAlongGeometry":186.667}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[19,196,207],"duration":6.586,"turn_duration":0.013,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":2,"weight":5.922,"geometry_index":25788,"location":[-2.871302,42.734598]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":9.742,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":8.773,"geometry_index":25792,"location":[-2.8718,42.733427]},{"bearings":[7,188],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":25795,"location":[-2.872152,42.731624]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 56 miles.","announcement":"Continue for 56 miles.","distanceAlongGeometry":89870.875},{"ssmlAnnouncement":"In 1 mile, Keep right to take A-62.","announcement":"In 1 mile, Keep right to take A-62.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take A-62.","announcement":"In a half mile, Keep right to take A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A-62 toward Valladolid.","announcement":"Keep right to take A-62 toward Valladolid.","distanceAlongGeometry":180}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[8,186,190],"duration":9.086,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":8.156,"geometry_index":25796,"location":[-2.872287,42.730894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,182],"duration":5.703,"turn_weight":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.133,"geometry_index":25798,"location":[-2.872559,42.728933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,345],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.766,"geometry_index":25804,"location":[-2.872299,42.72759]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,334],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.227,"geometry_index":25806,"location":[-2.872034,42.727149]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,329],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.586,"geometry_index":25808,"location":[-2.871801,42.72686]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,323],"duration":7.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":6.383,"geometry_index":25810,"location":[-2.871461,42.726512]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[119,300],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":5.086,"geometry_index":25816,"location":[-2.869637,42.725463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,311],"duration":5.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":5.297,"geometry_index":25820,"location":[-2.86816,42.724732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,335],"duration":10.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":9.852,"geometry_index":25826,"location":[-2.867018,42.723519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.866873,42.720808],"geometry_index":25837,"admin_index":12,"weight":26.172,"is_urban":false,"turn_weight":0.75,"duration":28.25,"bearings":[10,15,190],"out":2,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,203],"duration":4.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.188,"geometry_index":25855,"location":[-2.86754,42.71359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,209],"duration":19.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17.922,"geometry_index":25858,"location":[-2.86826,42.712442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,237],"duration":1.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.453,"geometry_index":25868,"location":[-2.872853,42.708289]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,239],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.977,"geometry_index":25869,"location":[-2.873352,42.708052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,245],"duration":2.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.281,"geometry_index":25871,"location":[-2.874062,42.70775]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,249],"duration":22.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20,"geometry_index":25872,"location":[-2.874903,42.707458]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,283],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.688,"geometry_index":25883,"location":[-2.883036,42.70706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":53.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":49.312,"geometry_index":25884,"location":[-2.883298,42.707106]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[69,250,256],"duration":37.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":35.562,"geometry_index":25907,"location":[-2.902709,42.706048]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.916647,42.703764],"geometry_index":25923,"admin_index":12,"weight":1.586,"is_urban":false,"turn_weight":1,"duration":0.609,"bearings":[84,88,269],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":2.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.219,"geometry_index":25924,"location":[-2.91687,42.703761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,271],"duration":15.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.82,"geometry_index":25925,"location":[-2.917685,42.703749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.07,"geometry_index":25932,"location":[-2.92345,42.704042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":8.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.086,"geometry_index":25933,"location":[-2.92421,42.704118]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.961,"geometry_index":25935,"location":[-2.927252,42.704416]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,276],"duration":12.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.664,"geometry_index":25936,"location":[-2.927994,42.70448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.781,"geometry_index":25939,"location":[-2.932907,42.704825]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[95,274,280],"duration":0.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.461,"geometry_index":25940,"location":[-2.933216,42.704843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":25.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.18,"geometry_index":25941,"location":[-2.933398,42.704852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.943241,42.705079],"geometry_index":25948,"admin_index":13,"weight":41.484,"is_urban":false,"turn_weight":1,"duration":43.789,"bearings":[86,90,269],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":0.406,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.359,"geometry_index":25959,"location":[-2.960122,42.704104]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,258],"duration":32.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.031,"geometry_index":25960,"location":[-2.960271,42.704082]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":9.648,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.906,"geometry_index":25977,"location":[-2.97191,42.70119]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,235],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.867,"geometry_index":25981,"location":[-2.975032,42.699837]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":4.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.969,"geometry_index":25982,"location":[-2.975315,42.699689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,232],"duration":5.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.953,"geometry_index":25985,"location":[-2.976614,42.699009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,230],"duration":145.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":127.391,"geometry_index":25986,"location":[-2.978188,42.698089]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,239],"duration":42.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":37.461,"geometry_index":26026,"location":[-3.026168,42.67263]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[37,220,225],"duration":83.438,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":73,"geometry_index":26046,"location":[-3.034873,42.661951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,239],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.078,"geometry_index":26085,"location":[-3.063982,42.652749]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,242,249],"duration":0.43,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":26086,"location":[-3.064396,42.652567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":30.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.523,"geometry_index":26087,"location":[-3.06454,42.65251]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.075702,42.650704],"geometry_index":26103,"admin_index":13,"weight":7.445,"is_urban":false,"turn_weight":1,"duration":7.391,"bearings":[77,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":29.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.148,"geometry_index":26107,"location":[-3.078265,42.650246]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,263],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.859,"geometry_index":26122,"location":[-3.085371,42.644742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":12.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.859,"geometry_index":26123,"location":[-3.085705,42.64471]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[85,259],"duration":2.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.227,"geometry_index":26130,"location":[-3.090012,42.644846]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[70,246],"duration":5.703,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.969,"geometry_index":26132,"location":[-3.090866,42.64469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,224],"duration":15.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.648,"geometry_index":26135,"location":[-3.092521,42.643932]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[44,227],"duration":9.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.906,"geometry_index":26141,"location":[-3.096278,42.640925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,231],"duration":30.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.305,"geometry_index":26142,"location":[-3.098614,42.639329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,205],"duration":6.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.289,"geometry_index":26157,"location":[-3.107571,42.636577]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[12,193],"duration":5.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.891,"geometry_index":26160,"location":[-3.108308,42.63493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,194],"duration":9.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.945,"geometry_index":26161,"location":[-3.1087,42.63363]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":17.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":15.492,"geometry_index":26166,"location":[-3.109086,42.631056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.68,"geometry_index":26175,"location":[-3.109952,42.626644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":2.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.086,"geometry_index":26176,"location":[-3.110069,42.626467]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[28,212,222],"duration":10.57,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.508,"geometry_index":26178,"location":[-3.110451,42.625914]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,232],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.25,"geometry_index":26185,"location":[-3.112932,42.623781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,235],"duration":30.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.234,"geometry_index":26186,"location":[-3.113313,42.62356]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.123692,42.621637],"geometry_index":26203,"admin_index":13,"weight":95.391,"is_urban":false,"turn_weight":0.75,"duration":108.172,"bearings":[83,91,272],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[79,261,265],"duration":26.469,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.156,"geometry_index":26267,"location":[-3.163369,42.623151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":263.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":230.766,"geometry_index":26277,"location":[-3.172317,42.622737]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[42,222,225],"duration":32.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":28.852,"geometry_index":26410,"location":[-3.253557,42.578274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":222.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":194.289,"geometry_index":26422,"location":[-3.260295,42.571725]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[58,240,246],"duration":0.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.531,"geometry_index":26501,"location":[-3.313411,42.533505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":18.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.375,"geometry_index":26502,"location":[-3.313607,42.533423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.914,"geometry_index":26512,"location":[-3.320028,42.532127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,263],"duration":13.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.492,"geometry_index":26513,"location":[-3.320384,42.532098]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.324899,42.531416],"geometry_index":26519,"admin_index":13,"weight":1.883,"is_urban":false,"turn_weight":1,"duration":0.977,"bearings":[65,74,252],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":3.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.016,"geometry_index":26520,"location":[-3.325221,42.531338]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,247],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.836,"geometry_index":26522,"location":[-3.3263,42.531041]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[60,235,239],"duration":1.375,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.25,"geometry_index":26528,"location":[-3.329289,42.529907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":34.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.875,"geometry_index":26529,"location":[-3.329678,42.529707]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.337826,42.523209],"geometry_index":26546,"admin_index":13,"weight":297.352,"is_urban":false,"turn_weight":1,"duration":329.297,"bearings":[31,34,212],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[50,229,232],"duration":24.867,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.359,"geometry_index":26710,"location":[-3.44358,42.472022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,199],"duration":12.734,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.445,"geometry_index":26728,"location":[-3.448816,42.466415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,197],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.766,"geometry_index":26734,"location":[-3.450115,42.463031]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":87.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":76.383,"geometry_index":26735,"location":[-3.450325,42.462512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":59.531,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":52.07,"geometry_index":26797,"location":[-3.47683,42.450639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,225],"duration":175.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":153.297,"geometry_index":26826,"location":[-3.494101,42.439911]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,249,265],"duration":0.344,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.305,"geometry_index":26941,"location":[-3.543733,42.405419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":28.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.289,"geometry_index":26942,"location":[-3.543847,42.405387]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.554055,42.403844],"geometry_index":26960,"admin_index":13,"weight":89,"is_urban":false,"turn_weight":1,"duration":100.594,"bearings":[61,74,252],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":27026,"location":[-3.581917,42.386233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,199],"duration":10.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.227,"geometry_index":27027,"location":[-3.58204,42.385998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,184],"duration":1.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.617,"geometry_index":27036,"location":[-3.58276,42.383375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,182],"duration":5.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.031,"geometry_index":27037,"location":[-3.582807,42.382902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.281,"geometry_index":27042,"location":[-3.582946,42.381446]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[7,187,194],"duration":0.469,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.414,"geometry_index":27043,"location":[-3.58296,42.381363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":4.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.805,"geometry_index":27044,"location":[-3.582982,42.381235]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,196],"duration":27.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.938,"geometry_index":27049,"location":[-3.583293,42.380106]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.588218,42.373556],"geometry_index":27067,"admin_index":13,"weight":106.43,"is_urban":false,"turn_weight":1,"duration":117.172,"bearings":[15,22,199],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,207],"duration":15.703,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.125,"geometry_index":27133,"location":[-3.605419,42.344641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,224],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.203,"geometry_index":27142,"location":[-3.608714,42.341059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,225],"duration":16.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.352,"geometry_index":27143,"location":[-3.609325,42.34059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":9.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.055,"geometry_index":27152,"location":[-3.614258,42.337889]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.25,"geometry_index":27156,"location":[-3.617519,42.336703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.906,"geometry_index":27158,"location":[-3.618278,42.336448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.836,"geometry_index":27159,"location":[-3.618931,42.336231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.68,"geometry_index":27160,"location":[-3.619562,42.336021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.008,"geometry_index":27161,"location":[-3.619793,42.335941]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,242,251],"duration":0.219,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.188,"geometry_index":27162,"location":[-3.620144,42.33582]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":1.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.359,"geometry_index":27163,"location":[-3.620209,42.335794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":5.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.242,"geometry_index":27164,"location":[-3.620671,42.335608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.016,"geometry_index":27167,"location":[-3.622507,42.334905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":20.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.945,"geometry_index":27168,"location":[-3.622864,42.334764]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.297,"geometry_index":27175,"location":[-3.629407,42.332342]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.629876,42.332214],"geometry_index":27177,"admin_index":13,"weight":101.078,"is_urban":false,"turn_weight":1,"duration":108.195,"bearings":[65,70,250],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[105,284,291],"duration":0.414,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.359,"geometry_index":27241,"location":[-3.669532,42.325747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":9.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.477,"geometry_index":27242,"location":[-3.669675,42.325773]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.039,"geometry_index":27245,"location":[-3.673005,42.326276]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,276],"duration":4.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.391,"geometry_index":27246,"location":[-3.673404,42.326316]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.812,"geometry_index":27249,"location":[-3.675094,42.326423]},{"entry":[false,true],"in":0,"bearings":[93,272],"duration":5.484,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":13,"out":1,"weight":5.211,"geometry_index":27250,"location":[-3.675404,42.326435]},{"entry":[false,false,true],"in":1,"bearings":[80,89,266],"duration":13.766,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":13,"out":2,"weight":14.055,"geometry_index":27252,"location":[-3.67742,42.326432]},{"entry":[false,true],"in":0,"bearings":[75,253],"duration":34.258,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":13,"out":1,"weight":33.406,"geometry_index":27259,"location":[-3.682903,42.325779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,213],"duration":2.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.914,"geometry_index":27287,"location":[-3.693109,42.319391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.727,"geometry_index":27289,"location":[-3.693722,42.318749]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,220,231],"duration":2.07,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.008,"geometry_index":27290,"location":[-3.69389,42.318599]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["left","right"],"valid_indication":"right","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":10.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.812,"geometry_index":27292,"location":[-3.694361,42.318201]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[67,248],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"geometry_index":27298,"location":[-3.69707,42.316656]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Valladolid"}],"type":"fork","modifier":"right","text":"Valladolid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"right","text":"A-62"},"distanceAlongGeometry":89897.539}],"destinations":"Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 05/E 80 toward Burgos.","modifier":"slight left","bearing_after":186,"bearing_before":188,"location":[-2.872287,42.730894]},"speedLimitSign":"vienna","name":"","weight_typical":2600.578,"duration_typical":2895.539,"duration":2895.539,"distance":89897.539,"driving_side":"right","weight":2600.578,"mode":"driving","ref":"E 05; E 80","geometry":"{waopA||hnDb|AtLl\\hBnNPrMc@nIq@xImArOwDzN}D~LoFpLaHfGoExHaG~K}JvGiHpKuMxLeRrGeMlF{LhJeWxJ{ZdKw\\pIcVhJmTrJ_QfKkOrKaMtNqNlOaLbIcFtGeDzGyCpIwCvPsErGoArIeAdN_AxNWvPTjIt@pS|Bh`@fGldBbXtt@rMfW~ClRvA|Pl@hPg@lTcA|UuCjSaEvUoEjL_CtOgBtUo@bSv@fJdApI|A`PbExPbHf`@rR`^zRlFnDnp@|c@~p@rg@jYdWpZp[|Wr[pVf_@rM`TnNhXdMbXhLjWxMd^pIfWhGbSfQps@bPj|@rH~k@~Ght@`D|k@|Ahp@j@tg@Yhc@mAxh@oBng@_Cl_@oHr}@{AjO{Q|iBkHrw@sFpq@yFv|@oDry@cBhn@gA`y@Yfv@Dzb@\\bn@dAzd@bCvv@zCjt@pFlx@fFzn@hHbt@tI|q@xEl^~Fx_@zHbe@xGf_@`Kfj@x[xcBlZ|cBnLnp@rKdp@`QbjAfLd~@`I|r@nGfq@dI~~@rEjn@zEtx@fDju@zAd`@`B|k@bAzk@l@tq@Zz`@D|LV|q@Qfv@Ch_@]~[{@lj@uAxr@gD`dA{ElnAwCnn@_JfkBsFzpA_Cjm@aHdlBqE`_B}DxdBc@hRQjJgClsAmCtgBe@pn@sApkBk@j_AU|wBJrsAd@bwBtAbcBjAdrAdBrkAzCjbBxGbqCnGjmBlEpsAtFf~A`HtyAbEro@j@hH|C|_@hIngAdKxkAfLziAhMl{@bLhy@dF`ZnAhHl@jDjL|o@xJjh@nJtb@fJ`a@vJdc@fNjj@bLda@lL~b@nPnl@nS~p@pVfs@~Ujn@fHtPtF~M~Pha@xOz^nx@jaB`j@rdAvgAvqBjm@`gAzl@~kArn@zoA`n@poAnr@nzAf{@hpB~}@dxB~x@jsBpo@pbBdk@v~Atk@jaBdj@n`B~i@|}Atc@`mA`p@bbBti@bwAzh@dpApl@drAbAxBrg@~iAjm@frAn_@tw@za@ry@xg@nbA|g@xaAxd@fz@~k@xfAd[zh@zGbLv`@vs@zg@fcA`\\du@`\\zz@v[d_AxY|aAdSdu@`YxcAnVvy@vTho@hSng@`Tra@vTr_@|Wn`@rc@pi@lg@`f@jb@|Z|h@r[nd@jTvn@zSdq@tOjq@jOjj@hOvc@fPzXnM|YhPhZrTfe@ta@|QhRrQ~SfLtMvPxWzTt[xRp_@nPx^pItTrKhZxKz^xKtc@dKvc@rKtk@rHbh@fGzo@fGj~@zDbt@dFl|@nG~v@jI~q@vOj{@dSrz@bW|y@lUnu@nSnu@fQlw@tL|w@nI`y@bHlaAxDtv@lH`jAtHnt@xKnv@jJ|f@|Mjk@jQdn@pT`n@|]||@n[vt@rN~^jJzXpB~GzGpUdFnTvJzb@~Kzm@nIxh@xHji@hIto@dIhx@`Gtw@tDxp@fCrk@zA`h@~Alv@|Aht@`@n`@jBdm@nBtg@hF~r@~Ifm@xEfTfDhOdQ~k@|T`f@xWv_@~^tZnOpM`QtKxm@~Xbh@hWf`@lZbU|WnR|[zPxa@|Obl@rHnk@~@zShAjWFrg@wAhd@yCfe@gD~r@?zn@v@v[dEni@pBzIvKxe@pNra@`R~\\zN`T`SdWj`@ne@tc@fk@f^zf@tq@|aAvbB~pCdKnS~IfUbKr\\dHza@dGtk@dAji@_@jdAVjk@xCjk@nGvi@dO~k@nNla@vNdY`W|\\p_@`\\tb@fUl[vKxe@`JfpAnWzq@tO~[tDr]lBvg@[rHYpZmAxb@sAp^Nvb@zBp]~Df^fHlc@zLvUlJ`WfM`JhFhQdKfOtJfF|DlTdR`QrOfXvZ~Q~U~QrYhV|b@xLxV`Pp`@xO`e@dNtg@dFpTrE`UbKnl@nGhg@jFri@`Eta@vE`n@`Dde@xCxq@RxTrAna@fB|o@^f`@[`v@e@~t@}@~o@iAxWyAtj@yExv@_Hx_AgAfMmH`t@{Dh]qDn]qH`e@uHzj@mV`|AkPneAyIrn@oBdPcDv^s@tLyCxk@k@xTk@d\\Wz[Lj]TbZt@pWbBru@xDpfAd@xOf@jp@AzTY|\\m@~XiBtb@sEbx@}@`GwCl[gChQmFt_@gGp]gGtc@}RjhA{Itr@mCnZwA`QsCdi@o@jO{@l]{@jZPdb@Xhc@bAl_@nBdf@zEtm@lCr[`Fx\\nDxXpD|S~Lft@nP|cA~Lbx@tPnpAvLjdAfBjUdEvk@pDln@dA`RjDj`AdA~i@zAdj@|@n`BJ`z@j@nhAt@ly@hAts@xA|j@lDjz@p@xN~Cjf@|Err@xC|YvBzXxJby@bIzh@|EtZlMnu@dNzm@lGfYlLvf@pFlSxIhZfOne@lMz`@xMv`@~Plg@da@vjAlZ||@bXry@fThu@lQjr@hK~c@jKvh@|L~q@tMzw@zKdu@nWveB`Nb{@jJ|e@lHz\\bLfd@xJd]jO|e@`Nl^|S|e@rLvUdPlZdSr]bUr]vTvYlVlYj^h`@vb@zb@t]h^v_@p`@hWrXdZ|\\pShWtQbUxTf\\jSj[~Vta@bVbb@zZbl@lSrb@jQb`@tOp_@bNf^fPfe@`Ovd@`IlWrHdXxJd^rKhc@|Njn@dPbt@lU~cAhNzm@pNrj@vLzb@~InZdHbT`Lb[`T|j@tNd[pUbf@|Wlf@~MfUhFdI|HlLdN`S|Ux[lKdMzStVtThUvYjYjXlUlWrS`c@b[rc@r[p\\dUhUhPt^pW`PdMhTdQdTdQrU|Sd[`ZlXdY`X`[nXn\\xY``@zc@`p@lf@lx@l_@lo@j\\bn@pSj`@d[jn@le@bbAbo@vtAnc@tbA`p@d{Avd@pdAh\\ru@j_@bz@tWnk@|Tfe@r^zu@~U|e@dVte@xVre@ha@nt@l\\xl@`Vt`@ha@bp@f_@vk@jg@`u@f`@di@l[fb@jg@dp@~Xr]|V|YjTtW~c@xf@|f@vh@vj@rk@zm@nl@lf@~c@tg@zc@fVvStYjVhm@hg@rxCp_Cf_B|pAl`@h\\dh@|c@pk@|h@lUzUdYbZtVxXj`@pd@`_@xd@vVh\\pWd^|^hj@la@fp@b[li@jYxh@d[zm@rY|l@vd@pbAx^ry@df@jhAzc@raAnWlh@nTlc@nS`_@hX~c@hKrPlOxUdd@ln@bVbZza@ne@be@pe@zE|Elk@|i@|s@ho@bu@nq@zf@nd@lo@xm@zUxU``@pa@vb@ff@dZx]|Ub[v\\vc@|[le@j]jh@fa@dp@nNdWbXnf@p[bo@vTjd@`[vr@tXhq@zTtk@za@bkAjWrw@dUzt@nSzp@l[xeAvZtdAnTrr@`T~n@pNr`@~]d}@zK~VtY~l@zQ`]|MpVdTx^~d@tu@ta@zn@zq@`gAfKvQlN~WhM`XpL`XpGjQfCfHbDfKjI~W|Jz^xIx_@dHx_@pHff@tFbe@pDv`@vBh[dEfaA|DbhAx@fUjEzaAnCxd@zEfr@jEze@|F|e@pIlo@zCbSxG|`@vHn`@dI|^xL`g@rNxh@pKf\\|IvXvF~PnKhWzK~WjSfe@|R|a@zQb\\nOlXdKrPjMrSt]dg@~Uj\\|Wh]tXp]bQvSdZn\\`SlTtu@lu@pb@n`@`^d[`eBxvAdDnCnl@|c@ns@dh@dy@jj@`u@le@jm@p^bp@x_@ls@f`@hv@v`@~k@nYju@p^|l@dYfc@tS`m@fYru@|]`l@dYld@fUv]dRle@xWl\\xRjZnRz_@tWda@fZz]jX`e@j`@x^t\\fWfVjd@rd@p\\p^fX~Zt]`c@~O|TxS`[pSx\\hUza@lRf`@bRfb@jRje@bQ`g@vKn\\dNpf@xPvr@xIna@fEvTpE~WxGtb@lH`h@jLj~@`OrmApGze@vFj_@fIvf@hHja@nIxa@vJ`a@`Phl@rNbe@dL|\\nRlf@bW|m@dWxj@bWvh@f[tp@rT`e@|h@zhAr[jr@|`@r{@jXdo@|[hv@v`@haAzTbk@tRrh@fVnq@dRji@~j@bgBb\\|fAtVf~@nPpn@rU|_AlSz|@`WhjArWlrAdStgA~P`dAxPpgA~K|w@tJxs@vIjs@dMdlA`Hpv@jDjc@dFju@|Cdk@pCvi@rCf{@hC~}@bBd_AvAriAhAhpAfAntAtA`gAz@`c@jAr^fB`b@`C~a@`Ddd@|Fjm@dGlg@fGhb@vG~`@xFv[zFzYxIz_@rKnd@~t@fuC|FfUxKze@nGfZzDjT`ErUzDjV`EfYtF~b@fG`m@rD|`@|Exl@hEvm@vGv}@`Dn`@nC~VtD~YnFh^bGt\\bFnVtGrXbLp`@vH`WvKxZtKlXzNb\\jS|_@~FlKzIbOrJzO`r@heAtOtW`L~RpKzSzPp_@fKxW`IvTlInVrJr[~Szt@`Vvx@jN`c@dK`[~Lz\\fJhV~Nb]`KnTpNrYfM~UnL|SdRdZzMfSpSjYhOfSrPtRnLtMtNrOvMjMvOvNnW|TfTvPjRhNlXrQfXrOzPfJnY~MnZrMlQrG~PfGvQvFpXzHbi@`NrwAr^l_@bLn]bLx]dNt[vN|[`Q`YnPxUpOxXxSxUrRxP|NfZhYxZr\\rRbUlTlXlUj[vT~[`RrXrQzXfXre@lP`[zUxf@|E`LpG~NvNh^zGnOtQdh@bNfb@vDdMnFxRrGlYrFlYxF|\\vFt`@xC`XvB|UpB|VfBl\\pAhXr@pXZpR@p[@hb@Y|`@kAr{@]bv@L`e@j@pXn@dXbAxXxAlXnBhXhCrXvEz_@xHnh@nHj`@tHh]hFhT|GbVjIpWvL|\\|IrUlPn^fGxLdKrR~LhT~f@~y@l\\rk@xL|UlJdSpN|\\nN|_@dHxTrKv_@fUf{@bBlGhRrs@jMpa@|L`^xJ`WtNb\\nJjSjLzTfTr^hRdYb`@pi@bf@po@`g@bq@bt@ncA~p@p`Atd@xq@dg@`v@nd@|s@lBdCno@`dAbJrNzMtRvIdL|IxKjJvK~KjLnQ~PtMrL`P`NbPjLjMzIlLbHtLrGdPdItPnHbRlHrStGpUxG~MvCrh@nJps@hKfZzEtShEnThF`PfErWfJvXbLr[jP~NnIvSlNvTlPfWvUxU~UjYn]dWt]jYpe@pPl\\pKhVpOj_@nL|]tLja@hJr_@|FvWnGn\\zFt_@jClTbFxf@dHf|@rE|p@~Dfh@dClYpGni@hE|ZfHba@jGn[lJr`@bHvVnOze@nHdSVt@pN`]rPr]bQd[zLvSvQrWrSfXfShU|XtXhV|Stx@bp@dd@|^v_@~\\tT~S|UjVpZj^rQxThRrWlN`TrGpKpKnQvOzXzL|T~Zfo@za@b}@tZdr@`Xzo@f[fv@b}@t~Bp\\l|@j`@hdAlQvd@rTpi@rRdd@zKvUzPv^bQf\\pM`VzRx\\x]|j@x]di@j[pd@fXz`@vUh^`S|\\jH`NpI|PbNrZ`JbUdFlNdOjd@hHxWxChL~GjY~@bFbC~MzEpYfFx\\nDlYnEhc@nB`XnAfTjBb_@xCxr@hDxy@fDzr@`Drn@zBr^xCr`@lCj\\lG|n@vGzj@`Ez[tGjc@hGd_@|Fd\\lHd_@pMdm@bLxe@jKp`@~Jx]pN~c@nNza@fN~_@xMb]pJnU~JfUvNh[fRr_@|[dm@rXbf@fVb`@zR`ZpT~ZnYb`@jOnRnJ|Lf\\p`@`VzXdg@lk@pWrYdX`ZtW|Y~QtTx^`e@hS~XvRbZ`R~ZrVrd@fKhThKzTxLxXfUdm@vKvZxM|`@bXty@vTrr@|H~TjGjPpGxPlJnStI~QfLxS`T|^zKxOzIfMpMvPtN`PpJrKlJtJtKnJ~IdIdM~JlNfKbHrE|RtLzHpEzIpE|TbKtMtFvGfC`StG`YtH|WvFlS`D|NfBbNhAhMt@hQhAp\\|A`Sb@nOt@jSl@nR`ApMjAdDZ~Fj@xHv@vQrCfPvClOhDhG~A~HzBxQrFlVnJ`PrGlVzMvUpN~NxJrPxL~ZhX~RvRlv@fw@rV`VpTlSjRpNlMhJtYzQhQlJx_@bQvRfHvY`JrX~F|PfDfRzCr\\bElv@hItc@|E`\\pDxc@tGxb@jHvZnGdQ`EjZpHrWnHtWbJl]jMpZpLdX`Mva@lSlc@rVpt@lf@xc@~\\`\\dXpYdXjY~Xd\\~]l[p_@dV`[lVb]p[he@`w@roA~Zni@fWhb@~Up_@tTjZxTjXjW|WfQjPxStPzPdMpY|QfMzGdJtEbMxFxYjLjZdJdPnEhGxA|QnDxRdDfYlDve@lE~e@pEhd@dEnh@rGpUvCxUdE`g@|KnZ~HxZlJj_@pM`UnJzNjGlX|Mf_@dSbZ|Qp^fV`RnNvYtUbZbX|ZtZrXdZxQxTzRvVh\\de@nSd[~Wxc@`Sh_@pTbd@zShf@~Sdi@hKnYvKp\\vMhc@`P~g@zS|w@jQrt@xPfs@bMvh@x@tDpLxg@bLlf@~ClMpF|Tr@`CrJz[rQho@pK``@vKj`@xGhUbh@viBlTft@~Xz`AtRfs@~Oto@~Qdx@bF|W|@xE`EnUnQncAzDzWpGjb@lEp^nEt^fEr^`Dv]hIf}@dCt]|Bp_@zB|b@hCli@dBfh@|@pWxAtd@lAnp@xA~x@dAry@z@ty@r@zz@pAdkAbApe@z@v_@dA`^xBtd@lCbd@jDtf@bEtd@zGlm@jGhf@~Gbd@pKrn@lK`j@bIj]dHpZdJv\\dWz{@rPpf@nRph@dg@rmAng@vqAdJjW|ErNvElQbH|VnHl\\zChOxFlZfGva@hF`e@`BxO|@hM|@rKlAzR`Bf]bAdYZbd@Edo@eAbg@{Ax`@qC`d@{BzVoHju@wMthAs@|GaNjrAaHbx@iFrbAoA|WsB`p@{@j[e@d[WjRU``@Z|{AhBt{@v@d[rErcAzBh`@zElq@nNpvAzAzLtG`e@zI~k@rKrn@jKxh@zErSvDdPjHlXbFzPtD|LdGlPrGfRzMf]bJ~RxJhRbL`S~LbTtI~MjMnQfMlO|KbNlNtOpNjN~W`UB@bKjIhXlSto@jd@rj@lb@rXpUnMvNjHnIvKfMbKdNfJjMfSpZ`[~k@vN`[lNtb@xDrQhGnZ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4192.107},{"ssmlAnnouncement":"In 1 mile, Keep left to take E-80.","announcement":"In 1 mile, Keep left to take E-80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take E-80.","announcement":"In a half mile, Keep left to take E-80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take E-80, A-62 toward Palencia, Valladolid.","announcement":"Keep left to take E-80, A-62 toward Palencia, Valladolid.","distanceAlongGeometry":280}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[68,251,263],"duration":12.914,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":12.25,"geometry_index":27299,"location":[-3.69751,42.316523]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.398,"geometry_index":27307,"location":[-3.70123,42.316622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,264],"duration":6.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.43,"geometry_index":27308,"location":[-3.701353,42.316621]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,243],"duration":2.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.836,"geometry_index":27312,"location":[-3.70337,42.316267]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.704195,42.315932],"geometry_index":27314,"admin_index":13,"weight":11.047,"is_urban":false,"turn_weight":1,"duration":10.609,"bearings":[51,60,235],"out":2,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.706651,42.314112],"geometry_index":27320,"admin_index":13,"weight":14.648,"is_urban":false,"turn_weight":1,"duration":14.375,"bearings":[37,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.422,"geometry_index":27329,"location":[-3.710503,42.311998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,248],"duration":10.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.086,"geometry_index":27330,"location":[-3.711612,42.311637]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[69,251,253],"duration":1.367,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.289,"geometry_index":27334,"location":[-3.714947,42.310668]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":35.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":32.391,"geometry_index":27335,"location":[-3.715412,42.31055]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.93,"geometry_index":27346,"location":[-3.727577,42.308404]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.727952,42.308354],"geometry_index":27347,"admin_index":13,"weight":2.617,"is_urban":false,"turn_weight":1,"duration":1.82,"bearings":[72,80,258],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,258],"duration":28.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.586,"geometry_index":27348,"location":[-3.728582,42.308258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":27357,"location":[-3.738339,42.306174]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":14.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.438,"geometry_index":27358,"location":[-3.738659,42.306088]},{"bearings":[76,256],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"geometry_index":27362,"location":[-3.74392,42.304944]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Palencia"},{"type":"text","text":"/"},{"type":"text","text":"Valladolid"}],"type":"fork","modifier":"left","text":"Palencia / Valladolid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E-80"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"left","text":"E-80 / A-62"},"distanceAlongGeometry":4232.107},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Palencia"},{"type":"text","text":"/"},{"type":"text","text":"Valladolid"}],"type":"fork","modifier":"left","text":"Palencia / Valladolid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E-80"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"left","text":"E-80 / A-62"},"distanceAlongGeometry":1609.344}],"destinations":"A-62: Valladolid","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A-62 toward Valladolid.","modifier":"slight right","bearing_after":263,"bearing_before":248,"location":[-3.69751,42.316523]},"speedLimitSign":"vienna","name":"Circunvalación de Burgos","weight_typical":141.547,"duration_typical":149.523,"duration":149.523,"distance":4232.107,"driving_side":"right","weight":141.547,"mode":"driving","ref":"BU-30; E 80","geometry":"umxuoAjut`FxBlf@H|OU`XoAp\\gDxv@m@tSWvSHfW@tFtAfa@hCz\\jEl^vGn]lIjZnIdW~Nv]dIpOvGvKbHhKtUpZ~m@pt@bHpIvPjUxLhQfNpUpOhYjStg@vHtTnMdb@~M`j@pUhdAr@|CtTlhA|Orx@hSlgAjF`\\tLbu@`Np_AzMh_AxGji@~Ihv@vJ~}@nHpv@lL`sApIdfAfJrwAdMdtBbBlV~Djf@bLvtA`L`jAlFbh@pHto@dLl|@lL|y@`Lnx@|M|y@l_@jyBjD~RbSznA`Gva@xUteBnSnnBdNbqA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6881.036},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 80.","announcement":"In 1 mile, Keep left to stay on E 80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":188.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[-3.745234,42.304701],"geometry_index":27363,"admin_index":13,"weight":19.672,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.875,"bearings":[76,253,265],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":26.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.969,"geometry_index":27369,"location":[-3.753453,42.303717]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.763453,42.303713],"geometry_index":27376,"admin_index":13,"weight":114.117,"is_urban":false,"turn_weight":1,"duration":129.281,"bearings":[92,94,275],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,292],"duration":2.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.984,"geometry_index":27428,"location":[-3.811126,42.309604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":17.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.477,"geometry_index":27430,"location":[-3.811885,42.309852]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,258],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.648,"geometry_index":27445,"location":[-3.817627,42.310676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":9.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.211,"geometry_index":27447,"location":[-3.818251,42.310554]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.820996,42.309332],"geometry_index":27457,"admin_index":13,"weight":1.906,"is_urban":false,"turn_weight":0.75,"duration":1.297,"bearings":[37,46,225],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,220],"duration":8.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.07,"geometry_index":27458,"location":[-3.821312,42.309102]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.031,"geometry_index":27466,"location":[-3.822821,42.307084]},{"bearings":[19,195],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"geometry_index":27467,"location":[-3.822954,42.306802]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":6921.036}],"destinations":"E-80, A-62: Palencia, Valladolid","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E-80/A-62 toward Palencia/Valladolid.","modifier":"slight left","bearing_after":253,"bearing_before":256,"location":[-3.745234,42.304701]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":201.844,"duration_typical":226.672,"duration":226.672,"distance":6921.036,"driving_side":"right","weight":201.844,"mode":"driving","ref":"A-62; E 80","geometry":"yjauoAb|qcFlDrW|Fbr@tLn}AtIlyAdMp_CpHl{B~Ald@z@ffAv@l~@pAzgCm@rsCmCdjBaBd{@qBfy@{EfgBwBnq@}Bjq@kCjr@gB`e@wC|r@}Brd@aEpw@_Dxl@uDhr@iCbe@}Exw@{Bb]cIrkAeKfuAoLb{A}Grw@qGxs@mIl~@eD~a@sBlV{BxXgC~ZoCf_@oCr^uBpXwCdc@_Ezl@qDtj@aHjiAuDpr@qKvtBqCvl@{Bff@sGlkBgDjbAkLpaEmCxu@iBba@uH`}AaH`hAsFnu@eG`u@gFns@cHfu@kRvfBcIhq@uJ`t@_Klv@{Mn|@mArGgBjJgK`c@uUfcAoFzT{C`P}BhL{C|PkCdUmCdW{AbX{@jVUzQAzNBtRn@`Z~@jT`BtUbB`RnC|RfApI~ArIzCzN|CbNjFlRpHdUtHtSnI|RbIbP`M~RjMvRxHfJfI|IhK|JrNzLxMnJnPjJlNdHj]fMrPhGfU`Gha@~OzK`GxLpI~HxFrI~HrDrE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 87 miles.","announcement":"Continue for 87 miles.","distanceAlongGeometry":139647.828},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on E 80.","announcement":"In 2 miles, Keep right to stay on E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 80.","announcement":"In a half mile, Keep right to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 80 toward A-11 Zamora, A-62 Salamanca Portugal.","announcement":"Keep right to stay on E 80 toward A-11 Zamora, A-62 Salamanca Portugal.","distanceAlongGeometry":333.333}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,219,239],"duration":4.391,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.945,"geometry_index":27474,"location":[-3.824044,42.30505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":5.992,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.391,"geometry_index":27479,"location":[-3.825115,42.30429]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,258],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.047,"geometry_index":27485,"location":[-3.827012,42.303638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.734,"geometry_index":27489,"location":[-3.828569,42.30348]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,253],"duration":11.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.531,"geometry_index":27492,"location":[-3.829613,42.303343]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.75,"geometry_index":27501,"location":[-3.832994,42.301691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,228],"duration":4.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.328,"geometry_index":27502,"location":[-3.833207,42.301538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,223],"duration":13.875,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.461,"geometry_index":27503,"location":[-3.834461,42.300699]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":11.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.711,"geometry_index":27509,"location":[-3.83816,42.298387]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[55,236,238],"duration":46.953,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":41.078,"geometry_index":27511,"location":[-3.841744,42.296575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":0.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.281,"geometry_index":27518,"location":[-3.854831,42.289974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":25.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.219,"geometry_index":27519,"location":[-3.854936,42.289921]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[52,57,238],"duration":64.148,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":56.125,"geometry_index":27522,"location":[-3.862825,42.286]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[73,252,253],"duration":67.695,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":60.906,"geometry_index":27550,"location":[-3.886641,42.278748]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.909081,42.271748],"geometry_index":27592,"admin_index":13,"weight":40.211,"is_urban":false,"turn_weight":0.75,"duration":45.102,"bearings":[62,66,247],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,252],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.805,"geometry_index":27607,"location":[-3.924434,42.266841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,254],"duration":25.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.047,"geometry_index":27608,"location":[-3.924762,42.266761]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.93391,42.265414],"geometry_index":27627,"admin_index":13,"weight":55.891,"is_urban":false,"turn_weight":0.75,"duration":63.023,"bearings":[68,71,251],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[53,233,238],"duration":37.445,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":32.758,"geometry_index":27668,"location":[-3.951491,42.25415]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.962546,42.247932],"geometry_index":27681,"admin_index":13,"weight":47.133,"is_urban":false,"turn_weight":1,"duration":52.734,"bearings":[44,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":25.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.047,"geometry_index":27700,"location":[-3.977588,42.238702]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":48.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":42.18,"geometry_index":27709,"location":[-3.984635,42.234155]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":24.961,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.82,"geometry_index":27724,"location":[-3.9981,42.225459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,206],"duration":63.539,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":55.578,"geometry_index":27743,"location":[-4.004496,42.220495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":27.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.664,"geometry_index":27779,"location":[-4.015784,42.205347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":136.195,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":119.164,"geometry_index":27791,"location":[-4.022476,42.199733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":26.992,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.609,"geometry_index":27842,"location":[-4.056226,42.176967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":37.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.047,"geometry_index":27860,"location":[-4.06539,42.173552]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.297,"geometry_index":27889,"location":[-4.074483,42.165395]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.172,"geometry_index":27890,"location":[-4.074853,42.164724]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[23,205,208],"duration":0.43,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":27892,"location":[-4.075529,42.163503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":41.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":36.328,"geometry_index":27893,"location":[-4.075598,42.163392]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.08576,42.15358],"geometry_index":27917,"admin_index":13,"weight":28.156,"is_urban":false,"turn_weight":1,"duration":30.18,"bearings":[45,49,230],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.562,"geometry_index":27935,"location":[-4.095358,42.149414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,244],"duration":1.195,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.062,"geometry_index":27937,"location":[-4.095945,42.149217]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":24.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.531,"geometry_index":27938,"location":[-4.096333,42.149079]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,215],"duration":143.758,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":125.773,"geometry_index":27957,"location":[-4.103303,42.14484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":3.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.977,"geometry_index":28008,"location":[-4.146049,42.122152]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":27.977,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.469,"geometry_index":28009,"location":[-4.147129,42.121677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,255],"duration":7.211,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.297,"geometry_index":28029,"location":[-4.155454,42.117492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":2.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.836,"geometry_index":28033,"location":[-4.157938,42.117101]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":113.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":99.125,"geometry_index":28034,"location":[-4.158678,42.116976]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.039,"geometry_index":28108,"location":[-4.193905,42.101488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.266,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.227,"geometry_index":28109,"location":[-4.194291,42.101342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":23.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":20.18,"geometry_index":28110,"location":[-4.194374,42.101311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,228],"duration":26.891,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.18,"geometry_index":28118,"location":[-4.20194,42.098277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.797,"geometry_index":28141,"location":[-4.208395,42.092726]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[32,209,214],"duration":21.367,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.203,"geometry_index":28143,"location":[-4.208566,42.09252]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":4.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":3.781,"geometry_index":28157,"location":[-4.209882,42.086787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":12.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.57,"geometry_index":28158,"location":[-4.209873,42.085592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":26.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.539,"geometry_index":28164,"location":[-4.209838,42.082163]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,208],"duration":31.625,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.664,"geometry_index":28182,"location":[-4.212714,42.075413]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[53,234,237],"duration":19.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.742,"geometry_index":28200,"location":[-4.22167,42.068751]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.227367,42.065563],"geometry_index":28205,"admin_index":13,"weight":61.711,"is_urban":false,"turn_weight":1,"duration":69.391,"bearings":[51,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[63,242,248],"duration":34.805,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.438,"geometry_index":28241,"location":[-4.246542,42.053485]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.256502,42.047484],"geometry_index":28263,"admin_index":13,"weight":53.5,"is_urban":false,"turn_weight":1,"duration":60.023,"bearings":[37,45,223],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.289,"geometry_index":28297,"location":[-4.274905,42.039179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,255],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.805,"geometry_index":28298,"location":[-4.275431,42.039069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-4.275758,42.039005],"geometry_index":28299,"admin_index":13,"weight":17.109,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.57,"bearings":[75,253],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":3.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.961,"geometry_index":28311,"location":[-4.28253,42.037299]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":43.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":38.086,"geometry_index":28312,"location":[-4.283569,42.036948]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":20.516,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.461,"geometry_index":28326,"location":[-4.296836,42.032386]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,251],"duration":9.758,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.781,"geometry_index":28333,"location":[-4.30367,42.030067]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.5,"geometry_index":28340,"location":[-4.307215,42.029643]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[86,266,270],"duration":0.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.211,"geometry_index":28341,"location":[-4.307426,42.029631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":17.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.359,"geometry_index":28342,"location":[-4.307514,42.029626]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.313691,42.029259],"geometry_index":28351,"admin_index":13,"weight":10.477,"is_urban":false,"turn_weight":1,"duration":10.539,"bearings":[79,85,266],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":9.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.203,"geometry_index":28354,"location":[-4.317461,42.029037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.547,"geometry_index":28355,"location":[-4.320724,42.028841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":0.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.336,"geometry_index":28356,"location":[-4.320935,42.028828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":29.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.586,"geometry_index":28357,"location":[-4.321064,42.028818]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":35.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.414,"geometry_index":28376,"location":[-4.330593,42.025605]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[51,233,237],"duration":80.875,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":70.758,"geometry_index":28392,"location":[-4.340121,42.018761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.516,"geometry_index":28426,"location":[-4.364588,42.006039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,240],"duration":0.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.375,"geometry_index":28427,"location":[-4.36477,42.005957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":24.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.531,"geometry_index":28428,"location":[-4.364903,42.005899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":106.891,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":93.523,"geometry_index":28438,"location":[-4.372827,42.002725]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,244,249],"duration":53.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":46.523,"geometry_index":28476,"location":[-4.40501,41.990939]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":27.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.453,"geometry_index":28508,"location":[-4.42372,41.98813]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,217,222],"duration":4.672,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.188,"geometry_index":28527,"location":[-4.431876,41.984359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.523,"geometry_index":28530,"location":[-4.432852,41.983369]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":8.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.742,"geometry_index":28531,"location":[-4.432975,41.983245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,221],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.453,"geometry_index":28536,"location":[-4.434835,41.981382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":25.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.734,"geometry_index":28537,"location":[-4.435456,41.980857]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.443265,41.976975],"geometry_index":28551,"admin_index":13,"weight":52.633,"is_urban":false,"turn_weight":1,"duration":57.383,"bearings":[61,66,246],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":2.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.367,"geometry_index":28576,"location":[-4.45693,41.965619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,188],"duration":8.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.055,"geometry_index":28577,"location":[-4.457134,41.964922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":0.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.688,"geometry_index":28581,"location":[-4.457482,41.962506]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,183],"duration":126.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":116.758,"geometry_index":28582,"location":[-4.457501,41.962303]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.625,"geometry_index":28639,"location":[-4.489725,41.939332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.125,"geometry_index":28640,"location":[-4.489928,41.939237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":10.688,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.133,"geometry_index":28644,"location":[-4.492278,41.938231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,222],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.008,"geometry_index":28652,"location":[-4.495288,41.936446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,218],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.508,"geometry_index":28653,"location":[-4.495537,41.936237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,208],"duration":1.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.703,"geometry_index":28656,"location":[-4.496746,41.934995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.32,"geometry_index":28657,"location":[-4.497052,41.934575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,205],"duration":0.25,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.227,"geometry_index":28658,"location":[-4.497112,41.934492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":15.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.281,"geometry_index":28659,"location":[-4.497147,41.934436]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.266,"geometry_index":28668,"location":[-4.498572,41.930297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,188],"duration":35.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.883,"geometry_index":28669,"location":[-4.498643,41.929951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,222],"duration":19.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.781,"geometry_index":28695,"location":[-4.506116,41.922467]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.50937,41.917805],"geometry_index":28711,"admin_index":13,"weight":5.844,"is_urban":false,"turn_weight":1,"duration":5.242,"bearings":[6,13,193],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":1.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.82,"geometry_index":28715,"location":[-4.509824,41.916433]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[18,200,203],"duration":0.867,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.797,"geometry_index":28717,"location":[-4.510036,41.915931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.953,"geometry_index":28718,"location":[-4.510146,41.915708]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":19.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":17.297,"geometry_index":28725,"location":[-4.511952,41.912144]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":0.695,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.617,"geometry_index":28731,"location":[-4.514429,41.907252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":13.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.828,"geometry_index":28732,"location":[-4.514526,41.907063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,201],"duration":0.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.43,"geometry_index":28739,"location":[-4.516396,41.903382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":14.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.383,"geometry_index":28740,"location":[-4.516465,41.903247]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,206],"duration":36.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.617,"geometry_index":28748,"location":[-4.518185,41.899961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,217],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.031,"geometry_index":28772,"location":[-4.525095,41.891985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":6.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.914,"geometry_index":28773,"location":[-4.525097,41.891983]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,241],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.695,"geometry_index":28781,"location":[-4.52683,41.890769]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.25,"geometry_index":28782,"location":[-4.527776,41.890382]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[64,241,251],"duration":16.969,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.836,"geometry_index":28783,"location":[-4.527867,41.890349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.031,"geometry_index":28799,"location":[-4.531725,41.887166]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":4.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.773,"geometry_index":28800,"location":[-4.531728,41.887163]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,220],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.477,"geometry_index":28803,"location":[-4.532662,41.886342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":24.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.688,"geometry_index":28804,"location":[-4.532787,41.886233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,219],"duration":22.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":20.195,"geometry_index":28814,"location":[-4.538483,41.881308]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,177],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.93,"geometry_index":28833,"location":[-4.541049,41.875766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,357],"duration":11.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":10.18,"geometry_index":28834,"location":[-4.54103,41.875488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,195],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.305,"geometry_index":28844,"location":[-4.54086,41.872513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.086,"geometry_index":28845,"location":[-4.540891,41.872426]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,206],"duration":46.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":41.938,"geometry_index":28854,"location":[-4.542556,41.869738]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,220],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.242,"geometry_index":28877,"location":[-4.549543,41.858476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.906,"geometry_index":28879,"location":[-4.549871,41.858204]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,230],"duration":2.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.484,"geometry_index":28881,"location":[-4.55012,41.858011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,239],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.164,"geometry_index":28885,"location":[-4.550901,41.857554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.633,"geometry_index":28887,"location":[-4.55129,41.857386]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,245,255],"duration":41.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":36.938,"geometry_index":28888,"location":[-4.551507,41.8573]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[23,28,208],"duration":21.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":19.227,"geometry_index":28916,"location":[-4.559086,41.848655]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[28,208,214],"duration":38.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.633,"geometry_index":28923,"location":[-4.562689,41.843686]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.569259,41.834554],"geometry_index":28935,"admin_index":13,"weight":71.406,"is_urban":false,"turn_weight":1,"duration":80.477,"bearings":[23,28,207],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[12,194,199],"duration":27.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.156,"geometry_index":28967,"location":[-4.582183,41.812595]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.586108,41.805852],"geometry_index":28980,"admin_index":13,"weight":118.281,"is_urban":false,"turn_weight":1,"duration":134.039,"bearings":[25,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[32,212,215],"duration":0.539,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.469,"geometry_index":29023,"location":[-4.616431,41.777955]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":24.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.609,"geometry_index":29024,"location":[-4.616534,41.777832]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.621347,41.772229],"geometry_index":29031,"admin_index":13,"weight":43.055,"is_urban":false,"turn_weight":1,"duration":48.07,"bearings":[30,33,213],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":0.414,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":29046,"location":[-4.63179,41.760128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":20.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.656,"geometry_index":29047,"location":[-4.631869,41.760037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":65.828,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":59.234,"geometry_index":29058,"location":[-4.636516,41.755777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.281,"geometry_index":29074,"location":[-4.6557,41.745868]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[54,234,238],"duration":25.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.023,"geometry_index":29075,"location":[-4.655789,41.745819]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.663199,41.741637],"geometry_index":29083,"admin_index":13,"weight":27.219,"is_urban":false,"turn_weight":1,"duration":29.156,"bearings":[44,51,230],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,231],"duration":0.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.211,"geometry_index":29092,"location":[-4.671074,41.736435]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[51,227,235],"duration":0.289,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.242,"geometry_index":29093,"location":[-4.671138,41.736396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":27.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.477,"geometry_index":29094,"location":[-4.671212,41.736345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.677618,41.730805],"geometry_index":29106,"admin_index":13,"weight":69.508,"is_urban":false,"turn_weight":1,"duration":78.297,"bearings":[27,41,223],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":24.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.578,"geometry_index":29140,"location":[-4.697691,41.716595]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,219,224],"duration":0.703,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.625,"geometry_index":29149,"location":[-4.703291,41.711507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":8.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.695,"geometry_index":29150,"location":[-4.703447,41.711365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":2.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.367,"geometry_index":29153,"location":[-4.70533,41.70965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":9.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.938,"geometry_index":29154,"location":[-4.705914,41.709125]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.708057,41.707105],"geometry_index":29158,"admin_index":13,"weight":2.195,"is_urban":false,"turn_weight":1,"duration":1.344,"bearings":[20,34,213],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[33,210,221],"duration":12.062,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.844,"geometry_index":29159,"location":[-4.708317,41.706809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,212],"duration":73.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":68,"geometry_index":29168,"location":[-4.71017,41.703907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,206],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.609,"geometry_index":29202,"location":[-4.72708,41.689035]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[26,206,215],"duration":0.422,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.391,"geometry_index":29203,"location":[-4.72718,41.68888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":18.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":17.461,"geometry_index":29204,"location":[-4.727242,41.688783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,220],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1,"geometry_index":29215,"location":[-4.730198,41.68453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,223],"duration":5.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.805,"geometry_index":29216,"location":[-4.73044,41.684316]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.731687,41.683397],"geometry_index":29218,"admin_index":13,"weight":16.562,"is_urban":false,"turn_weight":0.75,"duration":16.648,"bearings":[38,48,231],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":30.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":29.391,"geometry_index":29223,"location":[-4.736509,41.680875]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,258],"duration":72.336,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":68.711,"geometry_index":29234,"location":[-4.745469,41.676341]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":0.852,"geometry_index":29275,"location":[-4.760504,41.665116]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[173,177,349],"duration":0.492,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":0.469,"geometry_index":29276,"location":[-4.760435,41.66486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":13.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":13.141,"geometry_index":29277,"location":[-4.760415,41.664739]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[15,197],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.703,"geometry_index":29285,"location":[-4.760627,41.661237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,200],"duration":26.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.344,"geometry_index":29286,"location":[-4.761004,41.660322]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,193],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.32,"geometry_index":29298,"location":[-4.764951,41.65418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":5.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.836,"geometry_index":29299,"location":[-4.764974,41.654105]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,185],"duration":0.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.062,"geometry_index":29305,"location":[-4.765252,41.652658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,182],"duration":13.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.32,"geometry_index":29306,"location":[-4.765254,41.652641]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.765288,41.649158],"geometry_index":29314,"admin_index":13,"weight":20.016,"is_urban":false,"turn_weight":0.75,"duration":18.797,"bearings":[0,6,188],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.438,"geometry_index":29326,"location":[-4.767333,41.644747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":2.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.953,"geometry_index":29329,"location":[-4.767718,41.644229]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[31,214,220],"duration":11.82,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.805,"geometry_index":29332,"location":[-4.768217,41.643612]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.770635,41.641288],"geometry_index":29338,"admin_index":13,"weight":14.672,"is_urban":false,"turn_weight":0.75,"duration":13.93,"bearings":[30,42,224],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.438,"geometry_index":29346,"location":[-4.773539,41.639041]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,209,218],"duration":1.141,"turn_duration":0.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.125,"geometry_index":29347,"location":[-4.7738,41.63879]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":24.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.703,"geometry_index":29348,"location":[-4.773996,41.638529]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.777268,41.632525],"geometry_index":29356,"admin_index":13,"weight":28.375,"is_urban":false,"turn_weight":0.75,"duration":26.961,"bearings":[11,21,204],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[50,228,237],"duration":15.258,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16,"geometry_index":29372,"location":[-4.783826,41.627403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,218],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.641,"geometry_index":29377,"location":[-4.787545,41.624643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,214],"duration":9.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.672,"geometry_index":29378,"location":[-4.78787,41.624328]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.789359,41.622276],"geometry_index":29384,"admin_index":13,"weight":12.375,"is_urban":false,"turn_weight":1,"duration":10.859,"bearings":[17,23,199],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[4,186,190],"duration":9.734,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.211,"geometry_index":29391,"location":[-4.790072,41.619558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,201],"duration":3.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.484,"geometry_index":29394,"location":[-4.790745,41.617021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,208],"duration":16.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.656,"geometry_index":29396,"location":[-4.791228,41.616183]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.795179,41.612933],"geometry_index":29403,"admin_index":13,"weight":6.977,"is_urban":false,"turn_weight":1,"duration":6,"bearings":[51,59,236],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":72.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":69.141,"geometry_index":29405,"location":[-4.796946,41.612071]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[48,229,232],"duration":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.688,"geometry_index":29417,"location":[-4.817157,41.600223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":13.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.852,"geometry_index":29418,"location":[-4.817354,41.600097]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.555,"geometry_index":29422,"location":[-4.821202,41.597758]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,231],"duration":5.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.883,"geometry_index":29423,"location":[-4.82137,41.597662]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.822842,41.596777],"geometry_index":29426,"admin_index":13,"weight":19.945,"is_urban":false,"turn_weight":1,"duration":21.07,"bearings":[49,52,229],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.586,"geometry_index":29433,"location":[-4.828526,41.593276]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,231],"duration":14.672,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.188,"geometry_index":29435,"location":[-4.829021,41.593008]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,197],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.586,"geometry_index":29445,"location":[-4.831883,41.590073]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.336,"geometry_index":29446,"location":[-4.831948,41.589913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":11.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.602,"geometry_index":29448,"location":[-4.832272,41.588969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":55.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":49.961,"geometry_index":29455,"location":[-4.833856,41.586265]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[41,220,227],"duration":0.43,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":29477,"location":[-4.847487,41.575997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":48.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":43.492,"geometry_index":29478,"location":[-4.847582,41.575913]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.859509,41.566787],"geometry_index":29487,"admin_index":13,"weight":14.461,"is_urban":false,"turn_weight":1,"duration":14.961,"bearings":[42,47,227,244],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.86333,41.564164],"geometry_index":29489,"admin_index":13,"weight":17.453,"is_urban":false,"turn_weight":1,"duration":18.812,"bearings":[42,48,228],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":4.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.312,"geometry_index":29491,"location":[-4.868153,41.560954]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.492,"geometry_index":29492,"location":[-4.869369,41.560068]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[46,225,229],"duration":0.297,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.242,"geometry_index":29493,"location":[-4.869509,41.559966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":15.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.32,"geometry_index":29494,"location":[-4.869576,41.559915]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.873284,41.557054],"geometry_index":29496,"admin_index":13,"weight":3.938,"is_urban":false,"turn_weight":1,"duration":3.367,"bearings":[39,44,224],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":71.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":62.398,"geometry_index":29497,"location":[-4.874099,41.556423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":1.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.109,"geometry_index":29506,"location":[-4.891452,41.54299]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[44,224,235],"duration":11.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.219,"geometry_index":29507,"location":[-4.891761,41.542751]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[44,224,231],"duration":0.523,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.453,"geometry_index":29508,"location":[-4.894627,41.540524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":18.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.117,"geometry_index":29509,"location":[-4.894756,41.540424]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[41,44,224],"duration":54.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":47.883,"geometry_index":29511,"location":[-4.899184,41.536985]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,242,244],"duration":18.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.086,"geometry_index":29521,"location":[-4.913989,41.528327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.919601,41.526061],"geometry_index":29523,"admin_index":13,"weight":53.844,"is_urban":false,"turn_weight":1,"duration":60.398,"bearings":[56,62,242],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":2.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.43,"geometry_index":29528,"location":[-4.940909,41.517551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.883,"geometry_index":29529,"location":[-4.941706,41.517231]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,242,248],"duration":0.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.336,"geometry_index":29530,"location":[-4.942316,41.516986]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":17.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.891,"geometry_index":29531,"location":[-4.942434,41.516939]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.947895,41.514691],"geometry_index":29534,"admin_index":13,"weight":99.25,"is_urban":false,"turn_weight":1,"duration":109.195,"bearings":[53,60,238],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[77,256,260],"duration":73.727,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":68.18,"geometry_index":29555,"location":[-4.974764,41.506861]},{"bearings":[119,122,299],"entry":[false,false,true],"classes":["motorway"],"in":0,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"geometry_index":29580,"location":[-4.992293,41.510927]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"A-11 Zamora"},{"type":"text","text":"/"},{"type":"text","text":"A-62 Salamanca Portugal"}],"type":"fork","modifier":"right","text":"A-11 Zamora / A-62 Salamanca Portugal"},"distanceAlongGeometry":139681.156},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"A-11 Zamora"},{"type":"text","text":"/"},{"type":"text","text":"A-62 Salamanca Portugal"}],"type":"fork","modifier":"right","text":"A-11 Zamora / A-62 Salamanca Portugal"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":219,"bearing_before":218,"location":[-3.824044,42.30505]},"speedLimitSign":"vienna","name":"","weight_typical":4239.188,"duration_typical":4688.984,"duration":4688.984,"distance":139681.156,"driving_side":"right","weight":4239.188,"mode":"driving","ref":"E 80","geometry":"s`buoAvykhFpG~G`GhIlGhJdJxMfJnTlFdMzGfRpGnUpF~X`DfRfBjP^jDvAnRbAzS~Bpr@l@bQvAzTjCfX|CzTtC~PpHtZ`FrQtE~MvIjTdNfXbRd[fXhb@pHhLls@jmA~Yba@rc@ds@dOxW~H`P`Pf^rd@vfA~mA`|Cfa@|aA`^`}@|mA~zCRf@tzBpsFtcBfgEff@hmAhe@njAhBpExrD`fJhm@`}A|Q|f@jJlWpZdy@lm@neBdYfy@Xv@ni@|}AjVbs@`T`r@tNdg@`Lnc@f\\drAzI~`@`Odt@`XpzAvCbQlFj]fG`d@fGjc@xHbq@lI~y@dNbqAxNfsAjKl{@bNliAlItp@rKt|@~CxXlGbd@bHbd@fFvWnKhf@dJl\\zG~T~HfUrI`U|IpTrIrRvJ|RtKbSxMlUh]~i@zKpQ`Sv[lPv[lKfThJtTbI|SbIfTjHxUzJd\\nKvd@zFpZjEtUpDlVxDzXnEnd@dDrf@tBlc@|@nY~@`c@~Afj@lCnp@nAnXdKhxAdTtoB~Gbd@jJrj@jJbh@lLlj@fNtm@jMtk@pMnl@hg@jzBpSv~@hUpcAjVpgArb@`mBjV~fA|Qdy@`Sf|@da@lhBhLvh@jNbt@dFpYbBvK~CnSvBfPhDnXzDr^pC~YfBfVxBv[~Btc@rBde@bAlYpCxq@lA~XpAbYhBr\\zBb[~C~_@~G|n@xFxc@dCbQbDnSxDpUtF|YjIp`@zHj\\zErRfG~SfM|b@lLf^rIzU|HjSpJdVxIbSpJlSrPh]|Qr\\`LhRpRxZtLbQlMlQlNvQrQzTzOhQxUnVpVxUzd@xb@fWfV`O`Nd]n]fNzO~M|OjM~ObM|PjSbYfMtRjJ|O~LbTlPl[`Pf\\vPd^vwAj}CdIdQ`Txd@hg@dgA`o@ztArf@zeAdy@jfB~a@z}@bRt`@pUrf@hRbb@jKnTrWxi@p`@fz@xM|XrYpm@lR~`@rZlo@bYtl@d[`p@pe@hbAnUvf@hP~\\lQt]j\\vo@fWhe@|w@|vArd@|x@lk@~cAv]pn@hWbe@ba@hs@fc@bw@~`@ps@n{@t|Ap]rn@z^fp@vLzTx\\tl@x_@pq@zWne@|Rj]`g@z}@rTj`@j~@t`BluBvvDjWtd@rMnU~Wre@bXxe@lWvd@xQd\\|Qp\\n^po@bXje@|w@|vAt^pp@nj@dcAfSl]p`@vr@dj@naA~Rz]rN`W~R`]zIvO~F~ItSfY~H`KxKjMlMlNlFpFrFrFzFxFvFnErPrN`MzIlQdMdGlDdUtMv]tOjKlEzU`ItRxF`OxDhJdB`[nFzQzB|RdBr[jCrn@lFdZbE~Z~Fp[hIvZlKnVvJzJ`FhPhI|PzJjO~JxL~IvI|GnNhLvNdNlVrW`\\r_@r[x`@bTtWdNpP`\\h`@pb@vh@fc@ji@jdDp`EdUjYjQlTjQjTtTlXh\\ja@bb@hh@jUbY`VnZvKfNr[ba@t[`b@h[fa@dsA~dBdd@hl@fb@ti@~e@fn@pXh]n[|a@vh@`r@h[ba@d\\jb@|b@xj@`_AllAtb@jj@df@nn@jr@h}@|_@~f@hn@lx@va@di@nc@tj@|Y`a@~R|XpNbTzX~c@nLrShPlZtQz]nW|f@|Sna@~[bo@dV|d@`Qp\\`]pp@x[fn@bZ~k@|AzCdQn\\t]hq@xd@f}@fn@xlA~^ds@|o@zoAnQl]rOb\\jVph@z[xs@`Qbb@~Qjd@dOj`@~Nz`@rMx]fUdq@dPzf@hKf\\~IhZdJ`[hOzi@tFfSzKfb@vG|WhJb`@rNfn@~Qn{@nLzi@hG|VlDrNfIbZ`InX`IlXfItVrMr_@dPjc@vLj[bKdVjI|QhPz]rMfWfOhYxQp[jKfQlLjRzL`R~L`Q`T|YhLtOzMfPpTfWbVfXt\\r\\rU|TlWnThWbTvNrK|O`LfOdKlPdLnO|IhPrJbUpMtV|LzJjE|h@bVjj@nV|_@vQ|EhCnLhGrTbMfSfMzRjN`StOpSvPp[xYnf@de@~m@nk@zf@ne@jfBzaBh[j\\|Yb\\tPjRpQlTbPtSfPhTnOnTfP|UlO|TtOpV~MbU~OzXhMnUfNvWnMzWlM~WbNxYrQnb@lY|s@nNz_@jHpSrEbNvJnZxIrXvJn\\|Nli@|Hb[lMli@vMjj@nQzu@rOpn@fBjH`HhZrGfWhGfVvHbY|InYzItXzI|VfGpOhL~YfLfXtL|VxM~WrNnWpNnVbJrNfLpQxOtTxNrR|PzSdX~ZpR~RhPrOzRnQze@~_@vf@v_@pf@r_@|e@r`@xSlQvQbQ~YrZnQzSpXd]|OtTzOtUbQdY`Wzc@pRj`@bUhf@rc@~hAvj@tyAbYnt@`Xvr@xWhr@p_@zaAfRtf@bK`Y~Pjf@xPhg@nb@npAz]ndApa@pmAbi@f_Bte@fvAfo@tlB~Y|{@t\\rbApb@doAn\\`bAvVlt@hW`v@ht@xwBlW|u@jVht@bh@h|Ajc@rpAdVxs@vQxi@|Rvk@pZn}@b\\`aAd`@~iA`HpSt\\nbAze@fwArP~f@|FpPxItVvFnNtKtUdIhO|KpR`OnTtRjXlKpNjKfPdK`QhHzMbHhOhIxSpJ`YpIl[lGrZtIzk@lBvPfHh{@xCf^|E|l@xFfm@pEtb@`DlUzEzWrFpVpG`VxGhT`FjNfKfWbHtMxJ~QbLpQ`KlN|OfR`OvOrNbN`SbRfPzOjOpNtO|OjObQvNtQtMhQxLzQ~HnMnLtSnJpQxKnU~HrQ~FnOzDfKnGbTpDvMdCrJbCzKbFnVjExW~Ev]nGlg@pD~YlDhYpBtM`B~JfCnNtGt[`FxShH~W~H|W|IdWbJtUxK`WlKjUxPf`@xJ~UzJfX~H|UrMjc@`V`|@nSxt@lXzaA|Tlx@`Pvk@`Q`n@`Rxp@hRxq@tO|j@lTjw@jRnr@|Up{@zWl`AzXvcAhZzgAhUry@pYbeAdMld@bHbW|@dDjl@twBhWx}@jk@nuBda@~uAvFxQzGtRfJdUnLdVjLbShNfSdNnP|MdO`PvN~YfVtP`NhPbNfP`P|MnO|MrQbN`TpSx]dLbTjJnPlH~LhL`RjJhM|KxNjO`QpNtN~LbLtGlFrBbBfHpF~N~JrY`QpJrEfJpD|QdHvRlGjR`FfShDnS|CnSdBpXzAfo@Fv\\E~dAa@tiAQtg@Utu@]t`@Kjl@Od[ItJRdVz@dLz@hPlAl[hEfX|F~P|EbQpFbSrHn[xMpWdKlh@vTp_@hOn\\bNj[tMbSfIzRjIdRzIbMxGfHhEvJpHzWbTbQnRdP~RtRnW`_@xf@n[tb@f]`e@r]ze@|\\jg@|c@js@x[xj@FJjXng@fSz`@rWlk@zZpq@p_@~z@vb@l`A|Wzk@tWrj@hpAbmChVdg@hJpR`Sh`@t\\jn@tWjf@lVnd@tLrS`LdQfJdMzMbQhM~M~OvO|NtNtj@th@`l@fj@ne@pc@xi@|g@dXvVzWvVhXlWlOvPrMdPtM|Q`KvP~ItQfJtShIrT~HpVpIb[|Pxn@tXzcAdu@bpCpOjl@hQ`p@dRxq@~Lxc@lHvVrInXfHfTxJxWfKfXlJ`UrKvUnIrQvM`WjN|W~JrQdZ`i@lTh_@xg@~|@j[tj@lRn\\vRj]hTn_@zSz^hSn]nKtQ~KjPxJ`NnMbPdOvP`YvXlWvVhXzVbS`SrTfUlVrXbW|YlUfZtM`RjKzNpOxU`MvRvMpT`LrShKhT`KlV|I|UrHbU`EfNnHvYtD`PtDvRnErXfDfU~Lt`ArQrwAnRh|AxLh`A~OhpAnQruAlQtvAzEz_@~BlSjCbRtOdoA|K~{@|Grh@jGpc@xErYvE~XtFvYxFdYfFjVpIx]lG~W|T|_A~V`dArT~}@nVrcAxVjdAxTl~@xTj~@tSl{@`Sdy@lLdf@l_@f}A`VlaAT|@xWxgAjL`f@hd@zjBzYfnApPxq@fPpq@|O|o@pP|r@lJvd@pEhY`Ef]tBxXbBn\\~@fYvAbi@hAhh@VdLHnDfA|c@t@~[\\nOh@zWvCxjAvAhn@xB~bArB|w@x@t]`Apb@zDnaB|DpdBfK|jEXdLR`Gx@`WrAl[dBlZnCfZhDn[nDjZtDnVlFvZfJ~c@fH`YzP~n@zR~r@lQ`o@`Nrb@tNbb@zPja@fLvVhKhSzL|SbT~\\vTp\\xYzb@be@hr@`g@du@r_@zj@lU`]vb@do@lUz\\rWt`@jR|Xf[le@tW|a@`QzYvRj]z^hs@hShc@`Sxc@dSxf@jUxl@lP~b@lMv\\lNx^nInSrQvb@xPx_@bLpVxL`WfTtb@vQn_@jNd[xR`c@bTrh@bPv_@nXtp@z[nv@dVrk@xQlc@x\\xx@z]jz@|[tv@bv@fiBzP~b@pTpf@fy@foBdcAjbC~X|q@dPva@dPpc@dIpUbDjJrBhGbHvSvJrZzOfh@~Q|m@rYzaAdQ`l@xQnm@xStr@z_@nsAhW`_A|P`o@pQhq@dPlm@vM|f@fPvm@`Rfr@dQdp@pQhq@bQvo@vT|y@bPlm@dQpo@jSpv@nR|q@tQjn@zVfz@tNxd@bMtc@hQfp@bVf`ArWlcAlK`b@rNnj@~S|y@bRbt@bUt|@jRxt@h@tBjS`x@dWzbAd`@p{A~WhdA|Rbw@hStw@nQxq@jShx@|Uf_AxXbiAtBhIxIz\\fGvVjL`h@tJzb@dL`i@nEdVtHva@|EdYjIdi@tJhr@vCbUhFxd@~CtZnFzl@rCl\\xCfc@tCpe@|B`d@dBr`@jB~k@tAzk@h@d\\x@rq@h@vs@Xdb@r@p`A~@d~@|@fe@nAhc@rAhZp@bKpAhSrCj\\tE`c@~Ed_@xFr\\~Ivc@jJj_@xHpXrK~\\dKxYpOt^|Or\\zKfSzObX`NzSbPpTtP`TtTjWdNbOhNfNbQnQl[fZvFtFpUxT|T`TnVdVvUnVtXtYx_@xe@bQzUdRjXvWjb@lXjg@nVfg@vTdh@|Rbh@rIxVpNxd@~FzShEjOxCnKhMjf@h]vyAdQpu@lb@zcBtVl{@`Nlc@zNda@|\\v{@nVnh@vVnf@jV|b@tV|_@nZjc@hZf`@xk@|p@zXnXhYrWnWfTvWbSl[vTf[xRzp@b^bo@nXfX|J`WtIlj@lOv[rGpj@vK`e@jFbd@`Ejc@rClf@tBtKd@|j@jBpn@pCj]xB`]dDp^hFbi@nJ|_@|JrYjIxc@bPxUfKx\\bPv`@tT`N|HfQtLnX~Rt[pW~QnPbUvTtVbXbTxVdTtXzYpb@bRlZdXld@~Vhe@dW|f@b\\xp@|_@|x@dV~i@``@r}@vTzj@rXds@vSfk@|\\baAd_@liAbUtt@bZ|bAnYheAt_@jyAx[lpAr[hpAnNlj@fO|g@nNze@xLr`@xLd]`Pvb@~Srh@dPd^dR`a@rZxl@bXbh@pa@lw@lVxf@jPd^fNj]dEfL|DtKtEhM`Zn}@nQdl@rIzWhJjXvIjU|HpRvIpRhK~SbQ~ZvLxRrWl_@`LpNtd@`g@|LnK~X~UfYbRdDvBnBdArJlF~Z|P~VzJfTtHrQzFfj@tL`ZdEbd@nEvn@zFrTlCdOdBbZxF|RzEdPbFdQxFhQhH|WvLbRxJlSjMvTtO~NpLfO~M~MnMjN~NrMpObM|OvSrZbRhZrQb]pPb^fPb^pOn]zPv]bRv\\|KvQjLtQjRpVpH|IdMbOxM`NbMpLnHtGtVbStOlKbPnK~KpGnT`LzUdKnSvHhQvFdZdI|[zGzZpGjY`GpQxE|K|ChD~@`YfJ|LzEfS|Hxd@fRxj@dUzc@zQxb@~Plj@dUvClA`i@lTbw@h[~i@~Tly@t\\b_Ab_@~h@fTxJ`EzPdHnYjL|l@nVte@lRbh@`Tfj@|TtOjGlGhChRvHxj@hUTHp^`O~o@zW`YfLrOpHhQjJbQxJlOxInNlK~O`M|NnM`XlWpXd[vh@dn@~f@ll@`]fa@z`@de@vNfN|LpLhOzKtK`HdLdHhOtHzYnM`b@~PzYpNlKtGzIvFfHvFrHtGBBtBhB~HtInJrKvGbJpKfPtL~UvFzL|FlOdWbz@`AtDnIbXpHxS~GzPfHbOdJjP`GhJzGdKnKdMrKdLvKxJxQzNhPzLzVzQzNtLfM|LnCzCDDhI`JvNvPfXp\\xExFhVrYtVvZbq@`y@rVlZ~[b`@je@nk@ra@`g@lTxWt^xc@|^xc@`M`NbOxNdO|MxMrKfOfLxOdKrQjK~NnHdQtHnYtKrQhF|PbEtQjDjRxCpQlB|QdBnQl@tRTnUCjPe@fF_@vQ}Aj[cDtQiB|Q}AvRgA~Q[rQl@dRnAjPzBlD|@dO|DjObFbPdHjQvJhNxItWpP|PxKtW~OhPzJpa@lUfj@bZ|`@zShj@tY`b@jTji@pZxq@ba@hj@n\\py@~e@la@jVt`@|UnY`PxNfHlLtEhVpI~l@hQ~YzIvYrKrP`I`PhKzNhL`NxLbExExGtHdGxIfA|AxHrKpJnQ`ExH|D|I~CpHtEtMxBrHjDpL|EhSfJ`a@hKza@lHrU`ItStIdRlHpNjIxMnKfPbO~PjNfMjN~LxOzJnP~IxP~GrPfFbZ|Gdf@lJlYrH|PtFxO|G~PtI|OlJbb@dXpYdRte@|Yd`@tVta@dXjh@b\\``@vWtr@jd@hi@v\\|o@nc@z~@rm@h\\`T~w@|g@jx@zh@pbAbp@bp@~b@b]tTvc@pYz[zSrd@`Zx_@hV|t@de@lq@bc@bdAzo@tc@pXtAz@r{@hj@ztAj|@hd@|Y~XdP`s@ba@lq@l`@~h@zZtr@bb@vq@v`@zy@lf@xg@rZ~j@p\\rbA~k@nu@rc@r^fT~v@vc@d`@lT|o@d^vb@lVhj@bZbV|MbRxIzQ`H`RnG|Z`Ilm@zLdj@vKj|@`Qbw@dOlm@nLhe@pKpb@rJ`\\~Jr_@bNrXzLxv@p^b[bOr\\~OpVjNf\\zUh[hVdTjPjk@nc@xuBv`Bdq@rk@n_@r_@bQlRhQpS~_@hf@tVl]jc@np@h_@tk@dg@lv@bk@t{@pf@tu@jb@fo@rf@fu@ne@`t@j~@jqAbm@~y@nv@fgAts@lcApr@|aArk@dy@vo@n~@jz@|kAjn@r|@`PzTvRbXlI|K~QtShNdNpS~QpR~Nb`@|Yd^vXhf@b^vkAx}@hbAtu@ro@lf@xj@dc@jq@pg@vf@p_@~p@zg@nj@nb@`[jVtFlE~SlP`z@`q@n}@du@xj@|d@~gAz}@hf@z`@nr@lk@jw@ro@NLfo@vh@tjAh`Are@h`@pi@xb@rq@zj@~kA`bA`|@~r@xw@xp@bgA~|@l|@xs@rw@ro@pg@nb@`QvNtD|Cjt@hm@ne@z_@j]`Zp`@f_@pP`RbPbS~MfRtPvVbJvOjSv_@pJfSliAbmCte@riA|a@rcA|g@foAfw@flBhP`d@bj@toA`s@~eB`_@p}@jy@fqBrq@bbBl\\tx@l^tz@bZrq@nQda@~LfX`BpD~Pd`@fJtTniBnaEn^dw@zR|a@|Z~m@hZjk@~Qf^ln@piAdY`f@x_@vo@|k@dcA~Xhf@ti@p_Add@`w@z\\zk@~d@xw@lA~BdBrCbi@z{@xS`]~KzNhVvYzb@hf@rd@jg@`a@`c@jdAbiArSzTbDnDdVhXbTfWrR|W|MpTvPlZ|KvTzIzS|IlTvI|UnV~w@tWf}@|X~_A|Utx@~Qfm@hNt`@tOr_@fPh\\vFbLtHrM`NxTdLpPpPrT~SbWrYj\\f_@xb@n_@~b@lw@||@jq@xv@nt@|y@v^za@n`@xc@xmAbvAjS|Tno@vt@xcArkAhF|FnMvNhf@zi@daAlgA~q@nw@dq@dv@||@bcArA|A~G`IfVbYzGvH|d@rh@lTpVxn@ns@x_@nc@nx@v~@jW`ZhUlV`UtRnQfOlWpQvRlLhHfEhNjGrXxMxZnMpXpNbZ`RlEfDnOrL`XfUlVtVnPtRvPvThQxWvNtVnQt]`[`n@nXfi@jSn\\pWrf@pXpd@f[rf@z\\zf@dY``@`QdVha@nh@tTlXvQxT``@`d@pYv[|d@ji@vc@~e@vh@bj@tY~Ydc@pb@vi@vg@z_@j^xU~Src@v_@be@f_@z^hVn^zTtHfE`EzBvOtIx\\hPbf@|Tl`@xQtTtKvWvNtQbL|SrOnSrPxP|OhUfVjLbN``@|h@jW~b@fO`ZjOn[zjAjzCvc@zcAjKpThg@~cAhg@d_Adu@roAzWzb@vWnd@zRnb@`Rxd@tR|m@fNjl@zMbu@dI`t@tDta@Ft@rCpu@`Ahz@[dZc@l[iC~l@gDzh@}Gpn@kHhp@kDzf@yBjf@_@xh@f@xk@rAh_@jC~]tMndAxTrbAdMpa@lNn]tXjj@bc@xn@jVlXbW|TzY~SvY~PlWnK`WbJn\\|Hf[zEzUdBnVr@`YCrZqAfn@qJj`@}Jv^yLvoAc`@|g@gOvg@}KpIyA~NiCpFg@te@mEjW{@dTc@~]v@~YlAnb@`Fzb@xGfDrAdx@pV`LnE`[xNlVfN`hAfs@ph@x]zy@vl@|XjRbWdOz_@~QrP`Gf[|J~OvDtCl@hJpBnI|A|K~AhQjBpNnAxT~@`@BfSXbX@nn@_Bb\\u@j]IdO^zOZf_@jCzI|@rQnCrZzFdS`Ffd@fNvZpKpYlLvO|GtZxNld@pVvTrMdBfAzDbC`QbLlGxElU|PtI|GlDhCbc@d`@tJlIlWlWt^z`@dNrPbYp^tFvHvEbHrU|]j_@jl@tQrXzNrRz_@hd@pBvBtNhOhOfKvg@t]z_@zTnRjKrMnGvt@h]n{@`^fsBzq@~c@xQxAn@dWdN~VhO|[tUzNtMxQlQrPvRpL|NvShZfOjUtKpS~c@|`A~h@fiA`X`i@tAlCzPl[`x@jsAbr@xcA|^dg@`PjShNtQtRhSrNdMnCbC`MzKdPzLt\\lTdn@pYxLnEhLjEd]hJtYdF|]pEfZ`CtZpAdq@nE|r@tJlw@zV`YfLhY|O~XtQdYdT~g@|g@jZh^vUl\\nk@reAhNva@|KfX|g@dtAfjAn{Cr}AtcEn\\`{@|l@fvAx[vr@n^pt@da@jw@ro@thAbpAxxB`oAfwBp|ArjCh`BrpCzFhKtZjj@tb@|x@dh@~cArh@deA~DnI|Rv_@vPn\\rPv\\pr@loAn_@|o@p`@vp@bUpa@vV~g@pZlp@vZbr@dMhYpArC`Qp\\pOxW~Vf^pWpYvU~RbNrJlL~GfQtIvSzI|HnC~H`C`VfG|b@~J`c@hKhe@tOnRvIpSdLxOdK`P~LtSzR|Y~Zn[v]fhAlmA``AtdAbf@xi@bSzUp\\za@vPnU`T|[hR|ZvM`V~^ju@rl@`oA~Uph@jUnf@fTpb@~Rf`@tMfTjN~ThZxd@b^~d@p`@te@fD|Dd~BrnCxWf[dXz[|p@dx@lYl_@pu@nkAbv@pnA~lBz|Cb`BblCj|AjeCpeAlgBhz@`xAhlCjsEjv@~jAjEvGdBdClw@|hAjyBx|Clf@|q@lm@`{@fvAzoBhxBp{Cfz@vkAr|@bnAppBdrCh{@|kAfu@veApjFhoH|MhRdjCbrDfE`GfKvNtiE~cGpy@tjAxy@rjAxuAznBvuA|oBd`@`q@|`@dx@v`@ffAfR|l@dmBnrGzRfp@`fAtnDpeA`nDhrBz}Gf@`BpxBvnHn~GlqUfErN~Rxp@hNbe@|AjFj_AbaDxVvz@hs@lvBxL~[leBxuEts@|kBdn@veBlQlk@nOhk@hLdl@nJfl@t[zcCbZtbCjq@dqFpUnmB`@fDdMbdAbBdNnHlm@hWluBvNdpA|Evd@dCzStDb`@lXpjCnHfeAlFjfAtAvk@p@rk@Jrh@c@|i@qEvr@sCrZqDlXiEtWuE~TeIz[iIhWeIxTaInQ}q@vpAEHgaA~`Bs_@ls@_Wbk@_R`d@aQdf@iHnScH`UgRrl@cQnm@}_@v}AiTvhAyKjp@qJzq@qNplAyGxs@wFvt@mEdu@oFxoA_Bvv@aAfn@M`a@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 148 miles.","announcement":"Continue for 148 miles.","distanceAlongGeometry":238091.109},{"ssmlAnnouncement":"In 2 miles, Keep left to take exit 30.","announcement":"In 2 miles, Keep left to take exit 30.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take exit 30.","announcement":"In a half mile, Keep left to take exit 30.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take exit 30 onto A 23 toward Guarda Sul, Covilhã.","announcement":"Keep left to take exit 30 onto A 23 toward Guarda Sul, Covilhã.","distanceAlongGeometry":306.667}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-5.005366,41.513608],"geometry_index":29594,"admin_index":13,"weight":19.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.164,"bearings":[91,267,270],"out":2,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":0.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.438,"geometry_index":29602,"location":[-5.012662,41.513382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":5.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.445,"geometry_index":29603,"location":[-5.012822,41.513346]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[60,236],"duration":2.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.656,"geometry_index":29607,"location":[-5.014703,41.512723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,228],"duration":22.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.406,"geometry_index":29609,"location":[-5.015515,41.512286]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.019978,41.507787],"geometry_index":29617,"admin_index":13,"weight":4.07,"is_urban":false,"turn_weight":1,"duration":3.25,"bearings":[25,31,209],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.703,"geometry_index":29620,"location":[-5.0205,41.507021]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[23,200,210],"duration":0.789,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.727,"geometry_index":29621,"location":[-5.020605,41.506838]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":3.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.328,"geometry_index":29622,"location":[-5.0207,41.506641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.523,"geometry_index":29625,"location":[-5.02106,41.505737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,188],"duration":17.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.695,"geometry_index":29626,"location":[-5.021169,41.505318]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.02172,41.500562],"geometry_index":29632,"admin_index":13,"weight":10.977,"is_urban":false,"turn_weight":1,"duration":10.523,"bearings":[0,5,184],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,185],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":29634,"location":[-5.022003,41.497737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,185],"duration":5.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.117,"geometry_index":29635,"location":[-5.02203,41.497493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,183],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.648,"geometry_index":29637,"location":[-5.022197,41.496009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,185],"duration":2.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.977,"geometry_index":29638,"location":[-5.022211,41.495817]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,184],"duration":7.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.062,"geometry_index":29639,"location":[-5.022277,41.495246]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,185],"duration":12.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.281,"geometry_index":29641,"location":[-5.022488,41.493192]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[30,216,222],"duration":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.438,"geometry_index":29648,"location":[-5.023776,41.489999]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":43.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":38.82,"geometry_index":29649,"location":[-5.023881,41.48989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.688,"geometry_index":29664,"location":[-5.037664,41.484172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,242],"duration":4.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.531,"geometry_index":29665,"location":[-5.038297,41.483937]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,238,245],"duration":0.797,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.68,"geometry_index":29667,"location":[-5.039549,41.483415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":27.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.891,"geometry_index":29668,"location":[-5.039786,41.483303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.047403,41.478881],"geometry_index":29677,"admin_index":13,"weight":115.602,"is_urban":false,"turn_weight":1,"duration":130.977,"bearings":[44,51,231],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.531,"geometry_index":29695,"location":[-5.084607,41.454717]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[44,221,224],"duration":21.625,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.898,"geometry_index":29696,"location":[-5.084762,41.454598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.088792,41.449485],"geometry_index":29707,"admin_index":13,"weight":5.719,"is_urban":false,"turn_weight":0.75,"duration":5.703,"bearings":[15,20,196],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.414,"geometry_index":29710,"location":[-5.089317,41.447964]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":119.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":104.844,"geometry_index":29711,"location":[-5.089449,41.447537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.961,"geometry_index":29741,"location":[-5.118854,41.42024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":32.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":28.289,"geometry_index":29742,"location":[-5.11914,41.420042]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[47,224,227],"duration":16.172,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.133,"geometry_index":29747,"location":[-5.127664,41.41412]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":1.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.305,"geometry_index":29750,"location":[-5.131591,41.410977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,219],"duration":11.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.031,"geometry_index":29751,"location":[-5.131929,41.410681]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.13445,41.408238],"geometry_index":29754,"admin_index":13,"weight":115.398,"is_urban":false,"turn_weight":1,"duration":130.766,"bearings":[31,36,214],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.812,"geometry_index":29783,"location":[-5.159298,41.373991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":41.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":36.5,"geometry_index":29784,"location":[-5.159727,41.373509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.617,"geometry_index":29796,"location":[-5.166979,41.363033]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[16,194,200],"duration":0.375,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.312,"geometry_index":29797,"location":[-5.167167,41.36254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":9.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.547,"geometry_index":29798,"location":[-5.1672,41.362441]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.167976,41.359776],"geometry_index":29801,"admin_index":13,"weight":41.344,"is_urban":false,"turn_weight":1,"duration":44.828,"bearings":[1,10,190],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,220],"duration":22.18,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.398,"geometry_index":29814,"location":[-5.173771,41.348091]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":89.703,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":78.477,"geometry_index":29820,"location":[-5.179924,41.343823]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[49,232,237],"duration":30.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.031,"geometry_index":29846,"location":[-5.199473,41.323346]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.209683,41.319888],"geometry_index":29858,"admin_index":13,"weight":20.766,"is_urban":false,"turn_weight":0.75,"duration":22.25,"bearings":[70,73,253],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.07,"geometry_index":29867,"location":[-5.217079,41.317179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,230],"duration":61.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":55.398,"geometry_index":29868,"location":[-5.217756,41.316789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.203,"geometry_index":29889,"location":[-5.22981,41.302542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,195],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.086,"geometry_index":29890,"location":[-5.229946,41.302179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,204],"duration":536.461,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":469.398,"geometry_index":29894,"location":[-5.231215,41.299136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,213],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.148,"geometry_index":29987,"location":[-5.31403,41.230288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":2.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.148,"geometry_index":29988,"location":[-5.31476,41.229445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,207],"duration":9.445,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.242,"geometry_index":29989,"location":[-5.315248,41.22886]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.188,"geometry_index":29992,"location":[-5.316706,41.226467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,199],"duration":17.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.117,"geometry_index":29993,"location":[-5.316888,41.226129]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":124.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":108.602,"geometry_index":29996,"location":[-5.318794,41.221288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,231],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.906,"geometry_index":30030,"location":[-5.348126,41.195724]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":59.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":52.141,"geometry_index":30031,"location":[-5.348422,41.195546]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,224],"duration":11.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.953,"geometry_index":30052,"location":[-5.362824,41.183003]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":14.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.305,"geometry_index":30058,"location":[-5.365813,41.180891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,225],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.555,"geometry_index":30063,"location":[-5.369923,41.178157]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,223],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.648,"geometry_index":30064,"location":[-5.370079,41.178038]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,220,224],"duration":25.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.852,"geometry_index":30066,"location":[-5.370794,41.177431]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.376515,41.171788],"geometry_index":30075,"admin_index":13,"weight":265.07,"is_urban":false,"turn_weight":0.5,"duration":302.375,"bearings":[34,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":28.367,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.805,"geometry_index":30177,"location":[-5.484467,41.140028]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,193],"duration":132.508,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":115.922,"geometry_index":30187,"location":[-5.489191,41.133095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,200],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.992,"geometry_index":30233,"location":[-5.501716,41.095832]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[20,199,206],"duration":10.789,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.422,"geometry_index":30234,"location":[-5.502027,41.09519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.503057,41.092337],"geometry_index":30238,"admin_index":13,"weight":142.242,"is_urban":false,"turn_weight":1,"duration":161.438,"bearings":[8,13,190],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":5.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.875,"geometry_index":30295,"location":[-5.539724,41.061144]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-5.540749,41.059859],"geometry_index":30297,"admin_index":13,"weight":25.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.016,"bearings":[32,212],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":7.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.422,"geometry_index":30308,"location":[-5.547336,41.05414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,227],"duration":95.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":83.688,"geometry_index":30309,"location":[-5.549359,41.052834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.719,"geometry_index":30339,"location":[-5.570135,41.031173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":77.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":67.727,"geometry_index":30340,"location":[-5.570351,41.031018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.922,"geometry_index":30357,"location":[-5.586661,41.013848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,224],"duration":13.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.977,"geometry_index":30358,"location":[-5.586909,41.013644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,233],"duration":80.531,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":72.469,"geometry_index":30361,"location":[-5.59044,41.0112]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[69,251,258],"duration":27.578,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.812,"geometry_index":30377,"location":[-5.615665,41.00173]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.626436,41.000429],"geometry_index":30386,"admin_index":13,"weight":13.734,"is_urban":false,"turn_weight":0.75,"duration":14.039,"bearings":[83,85,265],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.631433,41.000094],"geometry_index":30389,"admin_index":13,"weight":24.18,"is_urban":false,"turn_weight":0.75,"duration":24.672,"bearings":[77,86,267],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,272],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.875,"geometry_index":30393,"location":[-5.64015,40.999845]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,274],"duration":34.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.461,"geometry_index":30394,"location":[-5.640469,40.999854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.391,"geometry_index":30405,"location":[-5.652549,41.000586]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":8.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.938,"geometry_index":30406,"location":[-5.653044,41.000557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,267],"duration":1.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.992,"geometry_index":30407,"location":[-5.655923,41.000413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.789,"geometry_index":30408,"location":[-5.656285,41.0004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,266],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.094,"geometry_index":30409,"location":[-5.656567,41.00038]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":10.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.172,"geometry_index":30410,"location":[-5.65696,41.000358]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[81,258,263],"duration":15.836,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.023,"geometry_index":30413,"location":[-5.66063,41.00007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.922,"geometry_index":30417,"location":[-5.666005,40.998894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":11.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.273,"geometry_index":30418,"location":[-5.667753,40.998473]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.671782,40.997487],"geometry_index":30421,"admin_index":13,"weight":3.234,"is_urban":false,"turn_weight":0.75,"duration":2.633,"bearings":[68,71,249],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.578,"geometry_index":30422,"location":[-5.672638,40.997233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,242],"duration":4.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.367,"geometry_index":30423,"location":[-5.672836,40.997169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,234],"duration":12.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.781,"geometry_index":30425,"location":[-5.674254,40.99655]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.677377,40.994211],"geometry_index":30430,"admin_index":13,"weight":47.617,"is_urban":false,"turn_weight":1,"duration":47.828,"bearings":[30,37,215],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,214,217],"duration":1.227,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.203,"geometry_index":30447,"location":[-5.687627,40.984196]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.648,"geometry_index":30448,"location":[-5.687868,40.983925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,202],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.875,"geometry_index":30452,"location":[-5.690097,40.980559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,204],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.375,"geometry_index":30453,"location":[-5.690218,40.980334]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.690568,40.979734],"geometry_index":30454,"admin_index":13,"weight":42.68,"is_urban":false,"turn_weight":1,"duration":42.766,"bearings":[18,24,203],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,213],"duration":15.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.891,"geometry_index":30463,"location":[-5.69711,40.969966]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[22,199,203],"duration":16.188,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.758,"geometry_index":30470,"location":[-5.699516,40.966497]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.701431,40.962646],"geometry_index":30475,"admin_index":13,"weight":1.484,"is_urban":false,"turn_weight":0.5,"duration":1.016,"bearings":[11,25,208],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":12.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.57,"geometry_index":30476,"location":[-5.701577,40.962441]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,220],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.422,"geometry_index":30480,"location":[-5.703821,40.959789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,221],"duration":10.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.727,"geometry_index":30481,"location":[-5.70537,40.958382]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[58,236,245],"duration":4.242,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.008,"geometry_index":30486,"location":[-5.707656,40.956887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,247],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.422,"geometry_index":30489,"location":[-5.708646,40.95647]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,251],"duration":32.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":29.969,"geometry_index":30490,"location":[-5.709003,40.956358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,280],"duration":1.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.484,"geometry_index":30503,"location":[-5.718081,40.95696]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,276],"duration":10.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.992,"geometry_index":30504,"location":[-5.718617,40.957034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.721742,40.957219],"geometry_index":30508,"admin_index":13,"weight":26.289,"is_urban":false,"turn_weight":0.75,"duration":27.641,"bearings":[87,92,268],"out":2,"in":1,"turn_duration":0.026,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.633,"geometry_index":30516,"location":[-5.730588,40.955741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,244],"duration":127.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":115.008,"geometry_index":30517,"location":[-5.730796,40.955679]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.828,"geometry_index":30572,"location":[-5.770936,40.94232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.297,"geometry_index":30573,"location":[-5.771122,40.942121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.203,"geometry_index":30574,"location":[-5.77164,40.941573]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":37.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":32.688,"geometry_index":30575,"location":[-5.771904,40.941288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,263],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.453,"geometry_index":30589,"location":[-5.782356,40.935891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,265],"duration":4.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.25,"geometry_index":30590,"location":[-5.782906,40.935841]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[89,272,279],"duration":25.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.523,"geometry_index":30592,"location":[-5.78456,40.935782]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.793604,40.936092],"geometry_index":30603,"admin_index":13,"weight":115.039,"is_urban":false,"turn_weight":0.75,"duration":130.641,"bearings":[76,81,261],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":10.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.844,"geometry_index":30622,"location":[-5.84202,40.922433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":10.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.266,"geometry_index":30624,"location":[-5.845643,40.921142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":22.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.664,"geometry_index":30625,"location":[-5.849446,40.919792]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.703,"geometry_index":30629,"location":[-5.857489,40.916903]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[63,240,249],"duration":13.289,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.609,"geometry_index":30631,"location":[-5.858176,40.916642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.125,"geometry_index":30638,"location":[-5.862095,40.914485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,224],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.117,"geometry_index":30639,"location":[-5.862737,40.914019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,222],"duration":34.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.18,"geometry_index":30640,"location":[-5.863047,40.913776]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,248],"duration":4.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.742,"geometry_index":30654,"location":[-5.872751,40.907713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,255],"duration":0.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.336,"geometry_index":30656,"location":[-5.87425,40.907323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":35.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.055,"geometry_index":30657,"location":[-5.874393,40.907295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":46.07,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":40.312,"geometry_index":30670,"location":[-5.887518,40.906363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,249],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.734,"geometry_index":30679,"location":[-5.903504,40.901619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,248],"duration":6.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.992,"geometry_index":30680,"location":[-5.903793,40.901535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":179.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":156.836,"geometry_index":30681,"location":[-5.906184,40.900798]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":21.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.664,"geometry_index":30695,"location":[-5.968521,40.881351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":0.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.594,"geometry_index":30700,"location":[-5.975549,40.878139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":29.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.484,"geometry_index":30701,"location":[-5.975771,40.878032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,245],"duration":18.867,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.977,"geometry_index":30708,"location":[-5.985808,40.873565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":30709,"location":[-5.992414,40.871237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,245],"duration":41.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":35.914,"geometry_index":30710,"location":[-5.992731,40.871115]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.57,"geometry_index":30713,"location":[-6.007073,40.866021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,245],"duration":111.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":97.891,"geometry_index":30714,"location":[-6.007289,40.865941]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":0.625,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.562,"geometry_index":30732,"location":[-6.045711,40.851333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":12.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.602,"geometry_index":30733,"location":[-6.045862,40.851208]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.625,"geometry_index":30739,"location":[-6.049354,40.848876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,243],"duration":16.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.984,"geometry_index":30740,"location":[-6.049576,40.84877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":127.133,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":111.219,"geometry_index":30749,"location":[-6.055464,40.847604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.812,"geometry_index":30774,"location":[-6.100304,40.831062]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":45.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":39.742,"geometry_index":30775,"location":[-6.100592,40.830898]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":0.445,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.383,"geometry_index":30779,"location":[-6.114607,40.822933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":26.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.555,"geometry_index":30780,"location":[-6.114743,40.822856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,240],"duration":61.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":53.688,"geometry_index":30786,"location":[-6.123037,40.818363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.547,"geometry_index":30799,"location":[-6.144101,40.810564]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,249,256],"duration":21.219,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.562,"geometry_index":30800,"location":[-6.144712,40.810353]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.152843,40.80893],"geometry_index":30808,"admin_index":13,"weight":12.109,"is_urban":false,"turn_weight":1,"duration":12.703,"bearings":[77,85,269],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.562,"geometry_index":30811,"location":[-6.157525,40.809053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":222.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":194.992,"geometry_index":30812,"location":[-6.158155,40.809078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,247],"duration":13.852,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.445,"geometry_index":30868,"location":[-6.235296,40.788919]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.781,"geometry_index":30873,"location":[-6.239707,40.787349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":14.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.234,"geometry_index":30874,"location":[-6.239979,40.787241]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":109.82,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":98.836,"geometry_index":30878,"location":[-6.244476,40.78528]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":0.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.82,"geometry_index":30907,"location":[-6.281166,40.773574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":0.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.391,"geometry_index":30908,"location":[-6.281441,40.773438]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":30.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.039,"geometry_index":30909,"location":[-6.281568,40.773378]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,256],"duration":30.414,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.609,"geometry_index":30921,"location":[-6.291241,40.770176]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,246],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.43,"geometry_index":30931,"location":[-6.302132,40.768209]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":99.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":87.203,"geometry_index":30932,"location":[-6.302296,40.768153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":4.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.961,"geometry_index":30947,"location":[-6.333995,40.7505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.75,"geometry_index":30948,"location":[-6.33522,40.749688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.547,"geometry_index":30956,"location":[-6.34085,40.747271]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,255],"duration":7.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.68,"geometry_index":30957,"location":[-6.341854,40.747044]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,249],"duration":2.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.523,"geometry_index":30959,"location":[-6.344477,40.74651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":95.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":83.367,"geometry_index":30960,"location":[-6.345421,40.746242]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.766,"geometry_index":30973,"location":[-6.372446,40.727922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":57.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":50.258,"geometry_index":30974,"location":[-6.372668,40.727759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,208],"duration":0.656,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.57,"geometry_index":30983,"location":[-6.387818,40.71637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":27.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.383,"geometry_index":30985,"location":[-6.387935,40.716204]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":55.641,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":50.062,"geometry_index":30991,"location":[-6.392061,40.708725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.117,"geometry_index":31010,"location":[-6.406111,40.699266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.656,"geometry_index":31011,"location":[-6.406902,40.699132]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,250],"duration":30.734,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.641,"geometry_index":31013,"location":[-6.409021,40.698713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,215],"duration":56.711,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":49.602,"geometry_index":31029,"location":[-6.417952,40.693789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,197],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.664,"geometry_index":31044,"location":[-6.428056,40.680154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":33.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":29.742,"geometry_index":31045,"location":[-6.428246,40.679669]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,204],"duration":32.508,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":28.438,"geometry_index":31056,"location":[-6.431592,40.670617]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.539,"geometry_index":31062,"location":[-6.437321,40.663022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":36.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":32.047,"geometry_index":31063,"location":[-6.437862,40.662358]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[73,257,265],"duration":24.68,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.586,"geometry_index":31080,"location":[-6.446835,40.655368]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.454865,40.65278],"geometry_index":31092,"admin_index":13,"weight":155.664,"is_urban":false,"turn_weight":1,"duration":176.789,"bearings":[42,50,227],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.734,"geometry_index":31164,"location":[-6.502954,40.623971]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":36.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.789,"geometry_index":31165,"location":[-6.50322,40.623863]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[25,201,208],"duration":14.562,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.086,"geometry_index":31184,"location":[-6.513207,40.616352]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.514048,40.612633],"geometry_index":31193,"admin_index":13,"weight":36.391,"is_urban":false,"turn_weight":0.75,"duration":38.555,"bearings":[175,352,358],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.477,"geometry_index":31208,"location":[-6.513411,40.60229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,190],"duration":0.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.414,"geometry_index":31209,"location":[-6.513437,40.602158]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":18.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.023,"geometry_index":31210,"location":[-6.513463,40.602044]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,216],"duration":19.656,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.664,"geometry_index":31220,"location":[-6.515622,40.597289]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":7.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.414,"geometry_index":31227,"location":[-6.520578,40.593661]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":10.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.898,"geometry_index":31228,"location":[-6.522562,40.59233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.625,"geometry_index":31230,"location":[-6.52524,40.590571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":45.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":42.938,"geometry_index":31231,"location":[-6.525687,40.590294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.656,"geometry_index":31240,"location":[-6.539422,40.584014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,246],"duration":58.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":52.812,"geometry_index":31241,"location":[-6.539648,40.583932]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,252],"duration":0.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.242,"geometry_index":31252,"location":[-6.561481,40.578125]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":20.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.289,"geometry_index":31253,"location":[-6.56158,40.5781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":128.891,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":112.773,"geometry_index":31264,"location":[-6.568845,40.577889]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,298],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.219,"geometry_index":31296,"location":[-6.614247,40.593558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,297],"duration":89.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":78.688,"geometry_index":31297,"location":[-6.61467,40.593729]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":3.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.117,"geometry_index":31320,"location":[-6.645874,40.593327]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":2.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.797,"geometry_index":31321,"location":[-6.647105,40.593164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.414,"geometry_index":31322,"location":[-6.64782,40.593069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":0.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.273,"geometry_index":31323,"location":[-6.647989,40.593047]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.289,"geometry_index":31324,"location":[-6.648089,40.593034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":10,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.75,"geometry_index":31325,"location":[-6.648595,40.592966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":44.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":38.828,"geometry_index":31326,"location":[-6.652088,40.592501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,263],"duration":4.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.508,"geometry_index":31333,"location":[-6.667901,40.590447]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,265],"duration":77.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":67.961,"geometry_index":31334,"location":[-6.669273,40.590323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,243],"duration":2.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.281,"geometry_index":31362,"location":[-6.699208,40.592267]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.414,"geometry_index":31363,"location":[-6.70013,40.591911]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.700695,40.591693],"geometry_index":31364,"admin_index":13,"weight":0.242,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.281,"bearings":[63,243,256],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":12.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.797,"geometry_index":31365,"location":[-6.700774,40.591662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,258],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.148,"geometry_index":31371,"location":[-6.704712,40.590463]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,263],"duration":12.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.023,"geometry_index":31372,"location":[-6.705161,40.590389]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.709534,40.590345],"geometry_index":31377,"admin_index":13,"weight":8.852,"is_urban":false,"turn_weight":0.75,"duration":9.266,"bearings":[87,94,275],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,269],"duration":158.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":138.344,"geometry_index":31381,"location":[-6.712877,40.590492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":6.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.328,"geometry_index":31412,"location":[-6.769831,40.587544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,271],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.531,"geometry_index":31413,"location":[-6.772033,40.587514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":13.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.867,"geometry_index":31414,"location":[-6.772251,40.587518]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,287],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.375,"geometry_index":31420,"location":[-6.776781,40.587965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,293],"duration":48.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":42.328,"geometry_index":31421,"location":[-6.777292,40.588081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,279],"duration":29.664,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.672,"geometry_index":31432,"location":[-6.791917,40.593484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,286],"duration":18.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.555,"geometry_index":31441,"location":[-6.801871,40.594319]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,309],"duration":10.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.094,"geometry_index":31446,"location":[-6.807248,40.596351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,321],"duration":48.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":45.242,"geometry_index":31449,"location":[-6.809704,40.598152]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,331],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.555,"geometry_index":31465,"location":[-6.814963,40.609379]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[148,328],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.555,"geometry_index":31467,"location":[-6.815565,40.61018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,321],"duration":5.352,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.062,"geometry_index":31469,"location":[-6.816248,40.610951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,315],"duration":3.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.383,"geometry_index":31471,"location":[-6.817382,40.611962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,310],"duration":1.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.414,"geometry_index":31472,"location":[-6.818212,40.612586]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,309],"duration":3.898,"turn_weight":5030.122,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5033.828,"geometry_index":31473,"location":[-6.818583,40.612824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,302],"duration":5.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.555,"geometry_index":31475,"location":[-6.819549,40.613399]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,295],"duration":10.75,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.195,"geometry_index":31478,"location":[-6.821129,40.614123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":18.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.719,"geometry_index":31481,"location":[-6.824365,40.615192]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,290],"duration":11.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.336,"geometry_index":31482,"location":[-6.830048,40.616926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,286],"duration":12.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.469,"geometry_index":31483,"location":[-6.833814,40.617951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,278],"duration":8.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.352,"geometry_index":31487,"location":[-6.837741,40.618668]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.840664,40.618946],"geometry_index":31489,"admin_index":14,"weight":28.734,"is_urban":false,"turn_weight":15,"duration":14.875,"bearings":[96,271,291],"out":1,"in":0,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.845784,40.618901],"geometry_index":31496,"admin_index":14,"weight":7.328,"is_urban":false,"turn_weight":0.5,"duration":7.398,"bearings":[75,86,264],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,262],"duration":26.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.703,"geometry_index":31498,"location":[-6.848679,40.618649]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":14.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.492,"geometry_index":31500,"location":[-6.858956,40.617512]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":128.219,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":112.195,"geometry_index":31501,"location":[-6.864543,40.616952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,259],"duration":6.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.344,"geometry_index":31530,"location":[-6.913855,40.611748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":20.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":18.25,"geometry_index":31531,"location":[-6.916265,40.611408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,247],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.695,"geometry_index":31534,"location":[-6.923434,40.610242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,245],"duration":37.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":32.43,"geometry_index":31535,"location":[-6.92403,40.610048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,269],"duration":37.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":32.828,"geometry_index":31542,"location":[-6.935632,40.607271]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,265],"duration":0.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.727,"geometry_index":31554,"location":[-6.946524,40.604487]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,266],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.594,"geometry_index":31555,"location":[-6.946782,40.60447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,269],"duration":5.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.055,"geometry_index":31556,"location":[-6.946983,40.604458]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":4.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.32,"geometry_index":31558,"location":[-6.948617,40.604452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.950012,40.604478],"geometry_index":31559,"admin_index":14,"weight":6.609,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.578,"bearings":[91,269,296],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,271],"duration":5.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.742,"geometry_index":31560,"location":[-6.952524,40.604457]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.954321,40.604474],"geometry_index":31561,"admin_index":14,"weight":11.695,"is_urban":false,"turn_weight":1,"duration":12.242,"bearings":[73,91,270],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,268],"duration":56.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":49.828,"geometry_index":31563,"location":[-6.958499,40.604461]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[108,286],"duration":5.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.172,"geometry_index":31569,"location":[-6.977506,40.606649]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[104,283,290],"duration":17.242,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.5,"geometry_index":31571,"location":[-6.979403,40.607042]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.985351,40.607885],"geometry_index":31576,"admin_index":14,"weight":113.961,"is_urban":false,"turn_weight":0.5,"duration":129.672,"bearings":[87,98,280],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":11.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.055,"geometry_index":31603,"location":[-7.029826,40.604709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":72.625,"geometry_index":31604,"location":[-7.033972,40.604937]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":5.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.797,"geometry_index":31615,"location":[-7.063073,40.604669]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.064957,40.604835],"geometry_index":31616,"admin_index":14,"weight":21.516,"is_urban":false,"turn_weight":15,"duration":7.242,"bearings":[97,277,286],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":1.297,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.164,"geometry_index":31617,"location":[-7.067339,40.605045]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,276],"duration":6.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.078,"geometry_index":31618,"location":[-7.067785,40.605085]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,277],"duration":11.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.422,"geometry_index":31619,"location":[-7.070434,40.6053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,267],"duration":315.602,"toll_collection":{"name":"Pórtico do Nó Pinhel / Pínzio","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":284.039,"geometry_index":31622,"location":[-7.074981,40.605608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.117,"geometry_index":31685,"location":[-7.188038,40.576877]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":9.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.719,"geometry_index":31686,"location":[-7.188494,40.576816]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,240],"duration":50.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":45.008,"geometry_index":31690,"location":[-7.192184,40.576108]},{"bearings":[58,234],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":31702,"location":[-7.210711,40.571894]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Guarda Sul"},{"type":"text","text":"/"},{"type":"text","text":"Covilhã"}],"type":"fork","modifier":"left","text":"Guarda Sul / Covilhã"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"30"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A23","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 23"}],"type":"fork","modifier":"left","text":"Exit 30 A 23"},"distanceAlongGeometry":238131.109}],"destinations":"A-11 Zamora, A-62 Salamanca Portugal","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 80 toward A-11 Zamora/A-62 Salamanca Portugal.","modifier":"slight right","bearing_after":270,"bearing_before":271,"location":[-5.005366,41.513608]},"speedLimitSign":"vienna","name":"","weight_typical":6994.039,"duration_typical":7822.797,"duration":7822.797,"distance":238131.109,"driving_side":"right","weight":12024.164,"mode":"driving","ref":"E 80","geometry":"ogxdnAjbopHQ`mCJtw@d@deARx`A\\~[x@v[zBx_@zDt]fA~H`ErYzFzZ`GtV|Ojf@|LhZjLlV~Yrg@lVfZj\\r]hlAdeA|v@rq@jj@hf@b@^rVhRlOjKfRfLdK~ElJpEhK|DhG~BhThHzYdHdYxE`Z`Dba@~Btr@nDrbApF|_@fBxrA`HzjAlFtcBfIfNt@l[dBh_AfF~JZtb@bCprA`Gxk@bDvh@tCvXvDje@pKfXlJ`UtKpT`MxWhRxEpErNbN|QpSnRjWlMtRbV`b@~Qj`@tShi@lMpb@nPtp@n`@jeBni@j_CzZbtAf[xuAbc@zmBzXbgAtMpf@dWnz@lGvQ~ExMfHrRxZlv@lWrk@pGtMp`@jx@hiApxBzFzKfk@|hAhm@|jAvxA|rC|oD`cHleJvoQxeAfrBfiArzBtsC|sFnNrVfXvd@pn@r`AhxAvwBdhChyD|IxM~q@fdArfA|_Bz|@|sAbd@|p@zXdb@bQpVlFtHvY|]rXp[xQnRnXfXpy@|p@rM~I|[vRre@nWzShKv[rMn_@nNfh@`Opb@fJfQnDtYfGzXhFrdA`Tb|@vR~j@rNt[nJn]bK`u@xXnl@bWzn@v[v^xSdh@r[zb@hYpVzQth@db@dT~RhTdRba@r`@xWpY|SdUri@to@BBvm@tw@dt@~cApp@laAn{BlqDjzBrsD`nAfrBbnA|rBdlDr{FzeFpoIjKzPxiArkBtnCrpEru@`nAh|@vsAtb@tq@|aBz}Bhc@rl@d|@|gAnQbTpx@z|@`v@bx@`g@pe@rqAziAts@xi@nf@d^tb@rYjd@pZvs@fc@jc@pVhg@tWvh@rWvh@xU|xAhn@noA|f@p`B|l@z_Bfn@zuA`l@bqAxl@j}@ne@v|@nf@d{@hi@`x@vh@px@bm@pr@~i@leBhvAj~AtsAnbBzvAfxCldCzfDxrCjFnElhDzrCb]xYvqAjhAldCzqB`q@zg@zr@~e@dj@p]lu@`c@hs@n\\vx@j^rd@vQnUjIrj@|QdXpHx]vJdE`At|@zSxp@bM`v@nLxyBrZr{Bj_@ru@jPdq@dR|`@tLhf@`Rln@~Wfg@jXfj@v[~g@r]ds@jj@rl@bj@`b@rc@rp@hv@nf@tp@rd@~s@bo@xgAfq@voArh@~gA~e@v`A`m@diArw@ztAdT|]x_@nj@~Wz]`\\ra@fs@zv@`y@lt@`t@tj@bs@`e@`aBr`AjhB|dAnpEhiCx~Ap`Ahg@l\\v`@~YjYtT|c@~`@f[r\\lQfRhS`W|e@fo@hXdb@dWzc@~KdSz[pp@|Zxu@pJzWnKrZlWtz@bRbu@~Ohv@fO~z@fKro@`O`bAvN|iAjMn|@bKbs@tTjrAxOjw@pM`j@tLnc@hP~i@pQpi@xVlo@v]xw@jWhi@dW|d@jZvf@|_@hj@jYj^~j@xq@zr@`x@b{AhbBhaAvgA|eAxkAnW|VhYxWt^dY~YbTvO|I`UrM|d@pSnW`K`_@fLjuAt^|~@vVd|@hTtUnGxx@dSbb@|Lzh@~Pjv@dZzPjIlRlJlm@`\\`s@re@li@pb@jk@zf@rnAriAh_DxuCjvArpAd{AfuA~hDn~Cv~@v{@p|@||@bj@ln@|k@rr@|g@~q@bl@tz@`Znd@nYje@plAbmBzg@xw@n\\be@zc@bk@rc@fh@pl@jo@z^b^l]t\\j~@xu@jxB|gBfVnTnXtWz`@`c@z`@de@xRjWnVv\\td@jr@ff@j|@j^|q@bj@bgAf`@hv@db@pv@r]fj@hXpa@|LtPt^`d@zp@~t@nmC~lCpc@~d@j_@pb@tYh^lCdDf_@|g@b[nd@|\\ri@hSf`@rY`k@jThe@lQhd@bRff@zU~p@jc@`wAdu@rhCzj@fhB~_@~fAjZns@zQpa@|d@~_A|[bj@lc@jr@x_@di@jUbY`WxZfUjWl_@ta@rb@lc@vjAdmAfkCroCxtFxzFphAhjA`q@ps@lt@d{@tu@lbA~u@jhAtc@vs@x~@z_Bf}@zzAhj@p~@f`@pl@b[~_@~Yz`@bo@ps@bVjWf]h[ts@rl@pc@n]tp@ja@tq@h^dp@lXbTjJtnA`c@jnAd]nnCzs@tc@xKzv@vShpAf\\`pAv\\lkA|[`t@tUzo@hVhr@rYtVfM`^`Rz]bTjOfJxi@x`@rTvPda@|]td@zc@t_@xa@b]h`@tQ`TxPfUtXr`@hY|d@fl@zcAj`@lu@|]ts@l{@bkBfg@~eAr~@`qB`t@l}AttBbqEbuAfyC|wAf}CpkAlgCfZjo@bJnQxKnUxk@`hA`Rr]xRb]fb@rq@xYrd@nf@nr@zW~]nXp^`UbXni@bp@`_@va@xi@ri@fb@ha@|m@dk@ngAr`ArlAjfAtw@zt@df@nh@f^rb@rc@jj@dBvBtVz]`Xn`@v]rj@j\\`k@|R~]dV~b@|l@phAng@r}@zd@ft@jVl^lFvHxOxSbTzV~Wd[jg@ji@jbAdbAvfA~cAv^b]dd@lc@fm@ho@bN~NzP|Rbj@hq@~\\lc@pXha@v_@`m@fV~c@vTdd@pTfe@lQ|d@rO~a@`Rxk@xOti@tLtc@zPfw@tNtu@`Kps@hK~v@fIf`A|Fry@pDpaAbBf}@v@bz@E`x@e@niA{@jeAiDp`BmDfcBoDxbB_CpwA_B`sBNx`A~@dz@pBdpAhCbu@pJ|bBhNpaB|J~cAfNtiAra@laDjUfbBbW~oBnItt@bJx|@tKntAnFfx@hEfx@xF~aBtBxt@dA`r@rB`nB`Dv|C|AztAtBb~@jCt|@bD`_A|E``AdHb_A`Ih|@pInt@pOldAfIje@rJbg@lOlr@bM`h@xPzl@`Rrn@nXbx@jTpi@fTne@zc@z_Al_@ls@R`@`f@~z@|h@p{@|x@lrAz~@|wAr{@hwAnd@|w@nZxi@h\\do@vq@fxAfXvo@hZrv@xTdn@d\\fbAxi@rjBt_@pxAxf@toB|c@njBvg@roBvo@|_Ctq@v|Bxa@jmAz^xbAd\\rx@dOt\\j]ns@rWfh@xXtf@nb@ps@he@rp@t^ff@pYz\\nbAfdAvcAxz@z\\pUz[bShWhOf\\~Qdn@vYnh@dTrd@fPly@~Ubo@tMrl@tKlz@~Jhf@xEpi@~DpoAjF~e@h@zk@r@ny@QpmBmCxmBgGpnAyEtpAaF~u@kCns@cBpm@w@z_@Opw@d@hs@rAh]tAx`@jCtYzBz]lEh\\rEtFv@ve@zIp`@|Ifq@hRdi@zQf]xMd[`N~^pQte@lWhq@~a@fd@h[p`@|Ydb@h\\laAdy@bgCt}BljAldAhhA`_Atx@fm@ly@zh@ty@rd@vs@v[vChAbg@lRng@hQ|s@~Rbj@rLvh@lKteAtOdbAvLrwAzNvkApLlbBdSljApRhn@dNle@hM`e@hN`q@`W~UfLrW`Nlo@|_@dm@tc@r[tXl]j\\vk@~p@~TpYvR~XxTr]hQ`[zPx[bP`]|Svf@|Svi@lSjm@pTtt@tUv}@bNrl@fWflAfb@j|Bz_@vxBf^hoBh]vcBdQ~w@fQ`s@xQbq@dN~d@hPhg@hO~a@fPxb@bOf^dWfk@hTfc@nV|d@xQt[`Rh[vk@xz@ve@~m@bSrUvd@rg@xd@~c@td@pb@tWvTr`@d\\xy@fo@toAz_A|~@lq@jOrLfx@bn@hc@b`@p^p]x\\l]lYv\\|e@rl@fU`\\xUp]je@ju@lRr]fa@lq@rpAl}Bzl@~`Axn@hcAnp@j_Afo@hy@hr@dx@bl@lm@nm@fk@zb@d_@ja@x[fd@x\\b_@~Wfa@hWzc@pXpg@xY|z@ne@`z@~c@raAvh@n`Alj@xn@n`@xp@~d@nj@jb@zx@br@dx@tv@ta@tc@n^lb@t\\bb@vX`^zc@jn@li@tx@zz@jrAtHnL`gApcBdc@jp@pe@`p@haAboAdr@bw@bk@~k@|p@jn@xw@bp@bs@~h@l|A|cAjzA~_AneB~gA|oAl}@dkAx~@jm@lj@d~@``Axr@|y@vKnN|p@n_A|k@z~@zx@h{Av\\xs@~X|p@f^r~@jUbr@n[pcAzXl`AjRno@he@hiBxj@f|Bl{@zkDriBbjHnu@pwCt]lxAvW`eAd^b_BlQx_AbJ~j@vGre@fGze@nEbc@`K|mA`HbnA`FxzAxH`hCtGr_CnKprD`D|gAjBxz@fBfuA|HhgHjAvqA?nnAQ|RgAnm@kBho@cF~hAoHptAwQjvDiDdaAiAdj@o@v~@Llz@fAvo@t@|b@x@|]~G|rDXrUf@rPj@pW|BzmAjDhlAtGdhAjE|g@bHdm@nHdk@no@rkEhYflBd\\vwBlMd{@~PzeAzNnt@~BjKnNbe@dVnq@|]|v@dT`_@hXr`@pXh]dj@fj@hF~EdYvThY|Rj~@rh@`n@v]bi@n]np@~g@`c@l`@fh@|k@rf@jn@~RpYb`ArzAnm@b`A~\\vh@dXt^~QjVhh@di@|O`NpRjPnb@z[bG~EdrC`uA`MpFnd@zThoC`pAlkClmAle@bUvf@bWji@|Z|h@n]jh@ha@tx@~p@d_Aj{@h^jZ~\\`XpZhTv_@rUtZdPbW`Mjj@vU~|@t[xu@|Wfp@nVj^jOfj@dYxKbHta@rWj^hWnh@ha@dy@~w@|vAx_BdO|QfXb_@xR~\\jStc@xJbXfKlW~Jj_@x@`D~EhUbBbKvBbNlFr`@bEvi@tA~XrAbl@K~j@eB`d@aEji@iFdg@{ShxAsM|hA}Iv`AsCn`@iErhAeAh_@_Ahq@a@`f@d@|j@rC|rAzEdhAdKbuA|Gbo@dH|i@rVvzAvXzqAzB~KnX`cA|\\fhAj^naA~Sdg@pShd@~Rba@jRv^rvAjeCn]bp@~Wtj@tSlg@pLl[pRlk@|Jh[pI|YpNxi@rLli@jHj^fGn]jLrv@|Ips@|Fdl@bEnj@jCdc@vB|f@~Alf@~@vo@d@rb@Dhd@s@zl@}Ajk@qBfo@{Bbl@gD|r@oBvk@iAjn@]lx@l@xm@zAvg@jDzk@pDzf@nIhw@|Inj@xKrm@zNbo@bNxf@tTtp@zTnj@z[dq@r`@hq@`f@tp@`a@he@nd@bd@je@`b@nc@za@lKrJfa@j_@xPnObfAhbAvh@xj@hZv_@zVp_@~Vtb@`Ytj@d\\bx@bWlv@~Nri@nLhi@|Hla@tLfz@nHps@fFtt@bBja@~A`m@Thx@k@nk@yA`j@yGvpAuHbzAs@vZuBdt@[hs@?|_@l@xa@bBj|@|Cli@bDth@nHd{@~Jfx@lJzk@hiBj|Kn@vDly@jbFb]`uBfS`kAjaBl_Kzi@heDrf@lyCxm@~uDnh@zpC~a@lrBf`AfyDjWrdAx|B`aJjnA||Efn@dcCl`@f}AjsAtlF|FjUv{B|{Ile@liBlH|WzEfQlHtW`V`s@zLx[pOf_@hSfb@dWri@xa@dr@~@vAb\\bg@dNjRxV|ZtYt\\lt@~y@zh@jn@ld@xn@hUt\\lQ|Zr\\nn@vSvc@rT`i@bc@xmAdNpe@hNzh@hOnr@hCnL`SdoAv@|GjJft@nG|q@zF|}@`Dpy@xAb{@`@zy@{AjkCO`oA`BncAfBpr@~Er}@dDdd@lEhb@nFbg@vHvh@zN~z@|Q`_Ald@~wBrb@~uBtoAdbGzgAvjFxPfy@fD`Q`m@ltCdZnwA`y@n{Dtg@baCl~Bv~KtcAt}El{@xaE`iHtg]r{DvcRp|AdoHh|AdmHbs@`hDrZdqA|XhkAtt@hkCjZfcAd[baArb@zmAxlAt`Dv^h_AtEzLbVfo@JXtfAxrCve@foAp\\t`A~{@jnCtu@blCnpCz{KrFxRd}AdiGhfBp_HzwBrtI~CnLlq@vlCtvAjuFd`ApvD|Ur`A|dBb|GzcBnyGvaBtyGdx@fkDnb@zlBvx@poDf[vsAbYvcAp]~bAvXvq@zg@pdAhe@hv@lSt[lWf\\xFlHbp@hz@~Tx\\nRtZhTza@nTtf@hKzYrEzLdR~p@`L|c@`QjdAtHpn@lD`j@|Bva@z@|VTxY\\pb@`@~g@Ph~@dBx`AbDxr@pGvx@rL|~@nM|v@RnAxJhd@dPvm@zVv|@d{@zwCxRhq@poAtlEp_DtxKdbDl|KxrApvE~lAbdEpq@f~Bdf@b|Apn@dgBre@zlAfc@peAve@rgAtc@h_AfI~P`cCfgFznDntH~vBfqEzdA|zBxCnG|Qr`@`lC~uFj^ly@jc@~eAn_@h`ApS~i@f\\|`A|Npb@tKl\\`a@rqAt]zlAtv@zxCz|@pmDnbAp}Dj|@pkDxl@j_Cjn@tbCrHf[pNdl@dLde@zWrrA~Np~@pFp`@hIts@|Grs@|Ffy@fFhjA`EpwAPfoA}A`jBiDhhBq@jf@kFn_DmAfoBSxhBvBzpCnBrjAnChfAtJzlCbMh|Bxe@ppG~d@n`G~T|yClYtsDbWjjDfM~qA|MzhAbPdnAlOdaArSldAjQ|z@fSnx@`Pjm@tNjf@~\\zgAte@rrAll@vvAlXbl@rXti@dj@ncAv^tm@z_@`n@vsAxsBzd@|t@v`@lq@dj@~bAbi@pfAzSje@hU`k@|Tnj@|Qzg@lSpl@fb@`tAfVn|@rPrq@lSz~@vXjvArQhhAjRtrAvP|wAlP`}AtIt|@lJf}@fLrcAzPrtAvNtbAfPvcAvZhbB`Tz_AfSr{@xR|t@|Qfq@`Q~l@vE~Ol[hbAxw@|aC|Zn|@jHhTnNhd@|f@taB|ZdjAd]buApUhhAr\\vkBbNt{@vKbu@|Jtv@pHtr@jRfmB`a@brExI~|@fPx{ApKn~@vOnfAdX~`BbVlpAxRv|@rVdeAnXleAzVt|@|W|w@fb@pmAbi@lvAzw@hmBvgAziCrTji@~IjUnGdPvB|FfTxk@`Tbp@fQlj@jNle@`ZthAtWrhAdKff@lM~r@~Hhc@dQ~eAfK~v@jDzYlMjiAjIh`A|NvkBzMjqBrErp@jJraA|F~i@hJrq@dMxu@zNdt@nBfIhNjk@hTzx@|V|w@zRvi@~Zlu@pZro@xaArtBx_C~_FvlCjwFvnCpzF~`EvqIh@hA`yDvdIdt@luArr@joAvq@pkAlXxf@vS`b@fRvd@tOpa@lXxz@jPrq@`Nzo@`Jjl@dMv}@|OlsAlOnnAvO~y@lH|\\xHx\\`Tfu@hRnk@zU~k@rS~d@|b@hw@p`@tn@roCjgEvrEvcH|uE`iHvxEbjHhvDf|FdIzLp`C`sDj}HruLbnBnyCte@vs@`Z|a@fQ`T|P`R`VjUvZnVfIfFB@fQzK|b@hTds@~[fpDj~An@XhuDnaBdvClpAtmAhi@pc@~TzZzPl`@hYj[dYrWjYtd@~m@nUh`@nTtd@`N|[lLr\\nLh_@dNxj@zIxf@lJpo@hFxf@|QxsB~U|hCjGlp@pPn}ArG|d@|Lpq@vJtf@|Jnb@|L~d@tPji@p\\|~@tXrn@lOb\\fUpb@pX~d@rS`ZfVf\\nPhSvRjUhShTpPnPjHvGnp@`k@~p@li@ffAl{@~dApz@hbCjnBvcAtx@b`Alt@vvAd}@l[bStgA|g@`g@jTje@`Rtc@`Oz_@~Lh]zJri@fNdm@`NvuAtXzkAbUxoAjYnl@rOtk@|P`d@rOdo@dVrYpLl]tOlu@f_@d[~PlWvNzo@ba@nw@zi@feG`vEnh@x`@zqAhcA~kA|~@b~@hr@jTjQnQbQpNdOvOnRvN|RlLnQxOnXpMnWpTng@hMf`@jKh\\tJla@pJzd@rHfh@bJv}@zIdbA`Ipu@jJjo@vKzj@tN~l@rOri@rPje@vNp^fMxWbKjSnLjT~U~_@rSrYfZd_@r]~_@he@`g@de@vj@jRzWdOtUzMtTrSd`@rR~a@fNf^dMr\\p`@|mArc@xwAje@fuA~Wps@`Xfq@pSpe@~P`_@jSzb@n\\np@z_@`u@hr@~oAnlAhyBpqAjaCvcArkB|n@bkAxWlj@nOra@`Pre@~Mxh@rHh_@tFz[dEhZzCfX~It{@tSvqBhZlzCvIzq@jHnd@lIra@zPxq@nRjk@tSzg@tNtZfM~Ur@jAvVba@n`@zi@z^z_@lZtWvYbUrYpQpd@pUnUfJjXdKdv@tTtb@bO~b@lP`[jPpT`N|SdPjW|UrJjLfLfNfRdYpQb\\tM`YrNp^dTlp@bU~x@vErOj^ljAxNpd@hOl`@zVfo@nQb`@jPv\\dQn]n\\hj@jV|_@|Vj^lVl[fYz\\x]|_@vYxY`\\nXt]`Yrc@t[vU~MxWdNfNpFfXbKlVtHb\\xHh^lFxZlCdVx@vYVh]a@d[oBf~@uGrt@{E|eB{LvaBiLry@qEpTg@nXm@tUMv]Bt^p@b`@zAh]bCbYrBhRxBfGr@bFr@t[nEtVlEbb@vIdt@pQ`c@vMvb@pP|StKx^lTrVxQhGlFrXrW`NtNrLvOnRbX|Sz\\h`Az`BtaAxbBdrA~zBf|ApkCtOxYhP|Z`Qb^pTvi@|a@phAnyBhkGbcBfwEvh@b{AxRnm@rRfo@bMpf@bDbMhJz`@tMnn@|J`k@z\\tlBl{@phFn~@xpFJj@pl@jmDfn@|qDvb@dfCfi@dcDp@dEhLjq@fHnk@bChXtC`_@~Cxo@b@~o@c@pi@{Adj@kCta@iEfe@sHhl@}@bHs^~eCyZtxBqu@liF{@|F_z@b}F}y@f}F{dBpuLao@zoEqm@jdEmKpm@aKbe@{Jha@qMpa@yQpf@iR~b@mWrg@aTz[eYx`@sY`\\_YnYc^b^o[~[aYv]cRtWuM`TmUpa@cW~j@}Pjc@cQrf@eiAhgDkx@v_CuIlYuFrR{Lld@sLlk@qH~c@yEv_@iD|Z_Dp_@aCra@_A~^kAbn@[dj@e@tiBeBhkEw@vtDZnaBvAr{AhDjkB~Bzt@fDhp@dE|~@tMj}Bt_@nsFt]hfFdI|kA|Dtk@j@pIXfEfCr^`\\hyEvBb[n[vvEdObxBrMhkBjf@zgHdM~oBvJbhBvFvtAjCv_A|AlmA`@xrA{@t|AiCrsAgG~|AaH|iAsKnqA_@lE{JleAaLn`As[nhCc_@huCwVfiB}UpmByIn{@gEbn@mBxe@kBjw@Lnr@rAro@|Dnp@fEfe@nHlm@vF`^zHd`@vNpp@jDfOfUrx@rLhb@|@|C`GzSdRdq@jOrn@bNts@|Gfd@fFnd@rC`[bDjs@bBfs@Hdu@y@jl@_CbdAiB|r@uAfq@sAl_AQhi@d@rgA~AzaAxJpkElNdrG~FdgCrE|sBf@dPrBfq@bCbp@pH~dBtRr{DbNbpCzR|dEbM|dCvNr_DzC~bAfCzaAhB~fAdAzdA|@blB\\rnAf@ljAl@voA`@voAz@deC|@b|Bz@jaCdAjiC`BzpDbAdtDVzs@z@rhCGrL[`lA}@nc@eDnv@uHt`AgEz]_CnPgF|^sZ~uAq^bmAu_@~bAyUpj@sy@hrBoa@|gAue@r_BeY|hAoVzsAa^deCmInz@mKviBmDpmAoBpbBg@hb@oAxnAsBx`AgF~|@uFfs@oG`i@eLbz@eZ~xAoUzx@_Upq@ci@nmAwZpk@kg@rv@mk@ht@{\\~^sp@rn@kd@v[ku@bd@gk@nUav@`VyYvHu_@vGcx@tKagAfLsn@nJam@~J_e@nK_g@jP}_@bOyd@tVeb@fX{MjKkNxKy_@z\\{\\v^i`@bf@_f@zr@{MdVaVvd@{KrUkRtg@gMf]sJxZiT`{@cIr^kb@pmBkkBdbJa_AjjFqMz`AgMfiAyG|t@eFjr@iHvtAaG|_BQx^q@fi@Yt^Sti@Phg@tBnvAbAvj@xEbxA|GxzA|[vvGbi@piJ~a@d|Idi@dwKt}@dxRzE~z@`Ets@jIf}@tP~}@~a@tvAd^tnAfLxc@vKhn@fEv`@pBr[x@d[Pnu@uIdtBqFrdAkDvaAa@lbAzD~cArKpcAbPzu@xq@llCrMhm@dMzz@tE|v@~A`eA}Zp}JY~`AnBneAfTruCzs@ffJbI|o@zHzf@bKfd@lMrg@vwBnfHbN|q@xHfl@jGpv@rCh}@L|mD`@``BjBl}@~Glz@~Mh~@tSnx@rbApkCzTbt@hOho@~EjXfDxXdCtVrAbW`@bOVpK\\zn@Qfu@s@dvAh@~{Ca@hoB\\xqEChq@|JbfL]|iA}C`cAyHb|@aK|{@}wBvrNmQfuAcEh_@oP~eBsHt}@qGl|@}GtcAaG|jAuj@|rIaFps@eHzv@_kBvgRmIzgAsB`cAl@j}@vE~}@rIrx@bP`}@rQpt@jXvt@pwCj|GhWxt@~Tds@xSjt@bP~o@dN|n@tN~|@fKfbAbOt_BhGzlAzCpnA\\bgAc@r}@gAlaAgE~}AgMbbG}EvhBUxx@xAvy@lEtx@nG~u@`hAdaJ~F|v@zDl}@H`y@uAh~@}lAzxZkIvtBcLzsCoAzZmLpdD{KnnCuCldAu@ffAxAn_A`Gx_AdJry@`Lts@dsDz~PjMly@rL`bAjI~kAhB`aAP~v@qAn_AiErz@{~@bjKaF|cAa@fbArB|z@xFnw@|kAb}IhInu@jIx}@fFp`AzAj|@rHppR~ChfAjJt`AvOt`AxV|y@v[vv@d_@ll@|c@|i@ndBr_Bf[j^zZfd@t[nn@fTrj@zWpdAdR|`AjT|_AfXv|@rWjq@~\\xm@v_@vl@neC~jDvb@dm@na@xn@zjIl|N`Zbl@nXft@|Qbn@hNpx@|Hhx@xaB|g]B`@dHty@dK|z@dQn|@n\\rpA|k@pmBxTfu@jQhq@xN`x@tJl{@vb@vhGxBn[nHbhAhIhcAxOvaArFlUdQfi@fZdp@~\\zq@bZnt@hRps@fKfy@tEby@rw@h_QzErg@xMz_ApRjz@tW~r@bTfe@jaCzrE"},{"ref":"A 23","mode":"driving","weight":6602.773,"distance":214426.297,"geometry":"{fdklApfjwLfUr[zN~Rt\\d`@nUdV|SzQnb@lWxg@fWjz@rWx]zFnLjA|c@jClk@?~f@wCjW{CvVuEb{Aw_@hl@wNtg@aJrm@sFdt@gD|p@fApv@tEht@tI~l@vJ~l@tIbn@hF|g@jBvj@Q~g@{Fl^mGjl@uMfeBok@bUqF|k@eL~n@mGrVw@xXq@xn@tBtj@rGvx@bPdm@xMbnArWfn@pKrdAvMlu@lGvi@bChnE`Hrz@bGxw@~Nnm@bT`q@t[hl@la@j_A|z@boBjlBnd@pc@t_A~`A~]h]vr@nz@hq@r{@`g@xo@l]bg@nP`VrKrOn]zi@d\\fc@`c@fg@dc@|^dd@b[pn@bZfUtIpc@rOlm@rSfs@xUpq@fUrj@xQxWbIvmCft@~cAnSr]bHha@fJpPjE|PfFzKpDjK`EnOzGbMjGvOvIjl@nZf\\lT~YzYb`@ph@nUx]vWz`@nIjMhKzOlAhB`M~QnHtJnE~FtO~Qx@`AjGrGdGfGvH~GpKzIpK~H|JzGdGtDbNhHfOfHxPpGl[jKllArXpm@xRfo@vYxeGt{Dzv@ni@`j@h\\zy@nZffAnTxaAtZzn@~[dp@bh@fhCp{Chw@dv@nw@fo@f`Azk@xhAve@lM~ExLtEbNvEbGlBbJ|CxRrFfRpF|QlEd[pHt@Prh@nM`[dI~QxEhQhFzNhElOzEbUjI~NnFfQ`HdN`GlR~IvQdJnNxHdRtKjuClbBjKrFvNjGnMdGbPhGfOrFfMhEpMdElN`E`MbD`OpDpLtCbVpEhVfEzU|CxUbCdJ~@|MfA`@B`RfAhPl@lNd@nORvNBrO?h_@[l|@eBn^[nO?xNDnFLbNh@`P|@vHh@nS~BbOpBxNhCbO`DbNhDfMvDhz@vZjj@z[|yAteAfi@n]zk@tZ~f@zQbq@dPn}@xM``A~DteDKny@xFnq@xJht@`R|s@rUnk@xXdj@d[b^dUp_@zUtn@~[`n@lVzLdDlwBtk@viCfs@js@lX|]vSjNdJ~j@`c@fi@pj@xc@fo@h]rm@pZbr@dX`s@`e@zmAr[nq@zWrb@`Zp_@d`@z_@hp@xc@nm@`Wbb@|Kh[hIt\\~C~_@hBp_B|@j[Nb^p@jk@rFfr@~Otq@pV`l@nZzk@zb@xcBpyArj@lc@~l@ra@ro@v\\tn@`Xxr@rUlhCps@dp@zTnn@lXnnAns@dy@ni@vj@|Yrl@lUdm@dSn~Chf@paAdQrz@|Urw@f]zt@fc@pr@`i@rw@rv@ld@hk@vb@jp@da@pv@p\\vv@f[by@`tAdiE`Xfo@tUpe@dVh_@p[p_@zc@pa@va@|Vvb@zRrj@nL`s@nIps@lCpg@\\~zAbAj`AvE`y@rNxq@tShn@v[zzDfgChpDp_CtnAjv@`pArr@xmAvm@d`Apd@`iAhd@ta@`OzUpI|dDhdAldC`|@rrEvmB~h@|WbGxCjMnGdbAbb@dq@vV~lAf_@tbArYfv@zR`fAjVfkC`e@js@jLfhBfRngEv_@t`ApObx@tSbp@bVlm@~Z~p@hb@bi@dc@li@fh@ve@pm@rb@rn@vp@ntAhh@vvA~d@feBro@z{Bt`AvrCjWnr@xMl\\nzFlpNdp@f~Atw@jaBb~@|fBjFhJt}EjjIxz@bhB~p@~fB`}DztLzUrx@rSrx@nWfqAji@|lCzH`a@`q@|kCv^v~@~n@znAtw@jiAzkAxlAvmApw@xdAhd@jbAjWnBf@jjA`OxbApDfkA_Av_AsJrcF}p@fo@_GvReBtf@{Chb@gCnMj@`}@|DdgA`KpeA|YzaAja@xv@|b@lz@rp@xw@p|@|n@f~@dp@fqApf@|pAvlDloMdlA`eDd{@f|Al`AnpAp}TltTl{@f`Af~@|mAxv@pvAxl@`rAhh@dwAd`@|qA`yA~sF`uA|eFfpBhlHzc@`vA`i@psArTrc@baApfBjO~Vlq@|~@z^ta@dfJbaKto@nu@bW~YrzApeBzw@`bAru@faA`u@pfA|l@rfAdo@xkAvm@fqAp`@bcAthAdeD~Rhr@h]`tAbZ~wA~Zt`BlVj}AzPxzAts@x`I~RtwAj[vuAjh@xzA~k@jkAtp@r_Ahd@ff@dQbRnaAvu@lcAzf@bYpIxk@bQb]fKjmAt^vjArd@`y@t_@~OpJdThNvn@xc@dVdSvGhFbUnSp^t]~TnUlxA`uApl@td@lLbJx[jS`YbPvOrHvi@nVrM`Fp]tLfVjH~PjEnQ~D`d@`KreA`MndAlElgA_@lcBwIhiAuDfdA@tdAbGblAvLvaAhHrd@Ktd@iBrhA{T|{@}b@nx@en@zu@eu@nu@on@xbAwe@fcA_TpdAuBxbAfJba@pMtOnFlPbFj_Abi@tcAdn@z}@p_@l_@zHj\\|D`d@|Avj@o@hPaA|OyAh^wGzl@eP|VyKz_@aUz]gYbo@iv@~kB}|CzJwQtn@mz@nZq]hLkNvYaZj]k[xR{P`[uUv[qSx^yTj^wPj`@_O|`@aM`PwCvKqB~f@eJpdA_JdgAc@`p@`DnXxC`x@dLf}@hVrt@dWnKrDpjDdvAzvC~jAh`At\\zn@lNva@tHrb@fFnh@dEnk@fCh~CvHj_CfFjf@rBp_ExI~_@`@fg@aAhj@iHn`@eIb_@sLrd@}RpdHqyD`dAoi@j_Au_@fuAub@feEcoA~kAu[r]eExb@qAfVbArJLdd@bFd{A`[rTbG~cA|T`~@pPfSxCnJdAhJ`Anb@hEbcAhF|hA`Ep[x@|VU`g@}Afx@{J|s@oPbRiFlsEazAde@mNb`@yGjWqC|l@aCpgBcEtq@_Ddg@yHfZcHnFuAbi@qRb`@kQpeBeu@fCgAhdSc~I|W}M`N}FrOqFpI_C|IeAvcBCrWlDrj@pJ~{@nL~MbBd\\|D~YlD~eArPx@ThCt@|zA~c@pbAh]lP|Hz\\~Sxe@ld@fj@~j@pTtTnVtThUhQn[~O`XxIt[nFfZfB~UOx]cElJgBzKqDhWmJtZqRjYkWnSiXfNwSbQg\\bWyh@~]ov@zPi\\`RyZvP_VrOkQjLsKbM}JnM_InJ{E~OoGhToFvNiBrZwB`RHlm@hH`WtHbS|JnVnP`ZhZjT~[fTjd@rRvl@hfAzfExPvk@fPx`@nT|b@n~@tiArb@dc@`v@`v@jwApwA`T~T~]nVhc@`VzX|Ize@vFtR~@rRQ`[gBnX_Ff_@_Mt^mPtoFanCfzAaj@|nAgU|q@uH|oNkoAdhA}NneA}VncAm_@l`Awc@laGkuD`[aRvRmL~JgGf@Yt`Aga@tiA}ZtmAgOhxFyi@zNyAjbFmd@ruBiR`^cEncA{MbxA{SngAsT`bBab@hcBk^zpAkSz`AeChdArDdfGrn@viAdI`fAJfmAsJxdAyVv{@q^|vE}lBhpA__@|rAmSjvAmKffLeh@fkAeJbfAeKbdA}ObrE{|@fzAqYj\\}FhScDpTaDpUuDtpAgMh`A}HtK}@trHiQrdW{l@ljAwGhfAuSjjFs_B``AkTr_AmN|jA{IxfAsBjhAr@fdDvPnqEvXfiAdKhcAvThsAro@~iSzcMxw@lc@vbLpwFfgAdt@rv@~u@xr@t`Arr@|jAbl@h~@pOrSxe@|h@`l@~d@xv@x_@~YdJ`Z`InWdEvFn@t[lCr[bAz}CJpoCq@huAf@ft@bEh_@tFzo@zNxNhFnDnAze@jQld@pThfJniG`cAdm@p`Ajb@xl@~Rpe@zLht@hOl~JfgB~mBx^hlDpj@nmAdOpwH~~@lnAjRhmAdZlkAf`@~zHnkDpdN~kFbrDnsAxxHdsCfaBln@lZfLtt@zXdmAda@rl@|TvUfKpKdFl~@~f@~v@xi@te@dg@jh@`t@~^vm@|[vt@pa@jvApIx[njAr|Ff[ruAha@hvAzb@bjAzk@xnAf_Ab~A|eAvrAb{@fw@xfApz@zeFndD`mAz{@tc@p^th@zd@beAxhAviApmA`rFh_HzzAvlBv~C`zDduCdsD`|B|sCroB~aCtr@tx@du@bw@f_@h\\jh@vd@df@rb@|s@ji@j}Bh|Arg@n\\xwAdaArhApr@liCdbBveAfs@tDdCptB~eAbw@z_@tk@bWn_B~o@zcBbo@lnApi@hjAxl@hjAhs@|nAxz@jiAn~@t_Ab|@xq@bv@h\\p_@bOhQtR`VhP`U`e@~o@|RtYvIpMpSvZvl@~fAlRn^|^`y@ll@xpAxrBnuE`lBtnExl@dmA|l@~bA~t@t~@`_Alz@`gA|r@pkB~fArC`Bf~@xt@t|@h`Ahr@peAxo@hnAls@rqAvq@~bAdcApjAntCxiCfw@`|@zx@nkApr@dqAzl@dtAfiB|~DxItR~BbFvpB`nEvk@t|Ane@veBl[lfB|SrmBpLhjBnKhlBlKffAfN~{@tUj_Ap]ndAna@v|@tf@hy@zi@tq@z}Kt`MnUlWbYv^ng@dp@|v@buAdi@~zAby@nsC|tKvk_@hZjwAbXrkBfNx|AtvA`lS~PzzB|Gnl@|M~x@z\\fsAfi@`mAzoAv|A~xBnzBfdG|cGfd@``@jc@x]ns@be@n~@de@dxAxe@xeC~k@|aAxWzx@pXbv@h\\zv@l`@~kC``BlcAbk@x_A|a@taAlW`cAbRzlAjLdgArBrECf`AaB|Yo@vrByG~k@~@na@pCxd@lIjk@bRbf@nV~WhTnWjVvc@td@z[xe@f`@taA|Lh\\jKd`@dPxbA`Ev_@bEpl@|@xn@Stb@oBbn@}Hf|@sM~t@cQx`AmHjf@cDdd@OdMUhOAtIDrHN|HRpHVrI`@tGh@|Hp@lHz@zHz@pHdAhHpAfIhAhGtArGfBfHhB`HlBnGxBxG`CtGjCtGbC~FnC`GvCxFpChF|CpFlDfFxCtEfErFzD|EhEvEvDxDlDhDpEvDnElDdE|CjFjD|ExCfFrCjEtBbFtBlFxBlFdBfFzAhFtAvFlAfF~@lEj@rFp@|Gn@rFX|FPdFD|E@jGKlGWvF_@vMmArG{@dEi@`H{@xFy@lFs@nFq@bGu@rFi@nFk@nGk@dF]`G_@pFWrFQlGMvFErF@dGJrFRnFTvFZrF^fFf@vFp@pFt@xEn@tF~@lFz@lFdAvFdA~FhAnGnAbNrCxPhDxf@`Jpc@nF`s@vCzkCjEnu@hL`p@f[bf@v`@hd@tm@rZlr@jOth@jUfqAftBtfMxRjjAvKho@nFvY~E~UrHbYxPtk@nr@lgBfPd]`b@ln@RXnbApnA`N`Ozj@zf@~w@pe@bq@h\\~u@bZrgArVr|@xI|dAvAvsLmOfbAtAtv@tHdt@fP~jAba@p~@~h@xlC~vBpu@je@p|@`a@hy@~Vlg@lKbb@fH`|@xF``DjGljAjLneAhQvs@nTvBn@~n@zVrj@bXvi@fZl|@tn@vp@tm@nSrUxZ|\\|q@|~@r|AvfCd`@xi@fPtR~MvNtR`RvP`O`L|IvJjHrMjIjMlI`ZfOpUnKtNxFvLfE|LrDtLhDvP|DbTdEt_@|Fx]fCff@tBla@MjbAsD`mAkB`eAhBp`A~HdgA|QzjAd\\t^rNzh@xUpn@d]tvA~w@ljAfp@f~Ab}@p`Arc@je@|Lrj@lH~iAlK`zGdm@l[~Erf@~Lx}@n`@h{@pj@hj@`a@plEnyCrx@~h@pgAlx@nZdTlUpLf_BdfAb}@`o@hVhQzg@~d@pZf`@|Y`c@tn@bgAn^fn@vr@pgAlTd\\hSjVfSfThZrXfv@pe@rx@tZtd@pJlW`Dtw@xD|pA~A`eBrBrhArBjOv@jcAbOt_Al]tq@vh@vVtVjZ~YlpA|vAvg@hm@nRzWdSjY`p@lo@taAhx@~_Avp@ra@t\\hUxVzZj_@nUl^hTte@vS~h@vQts@~L|o@|XzsBjDdRxDjQjEtPdFnQlFpP`GdPlGtO|G|NrH|NvHjNpIxMnI|LhJxLtJfLjKtKjKxJvKjJlKdI`IxFlQtLvSbNzRlMpNnJtQjLhO~J|T`Ofd@~Y`n@|`@dwAv~@|iAru@fZnRtRlM`StMxMpIpSnNbFlDfFpDbLrIzKzIbLzJxKrKbKjKjJpKtIpKjJ`MnJfNpIpMzHzMpHhNhH`OdHbOfGdOhGzOlFzOxE~N~EnP~E~QbE~P|DhRrD|QvFb[pKnm@tNxy@nKzm@|Hhd@lIbf@hAfGfK~l@|Gj`@zFv[fF~ZxCzQvCzQrCtSbCbStBpSbB|Q|ApTjAvRx@fRn@vT^~SN`T@hSEbOGzLm@jf@y@ph@s@ng@yJlzGYnR]hVe@`[[vTY`S[tS_@nT]jSi@fSi@hRw@zS_AlRgAjSkA`RwAbScBnSiBdSmBbR_C~R}B|QwB~OmArIcCbQgCpQmCpRqCnRkCbR_C~QeCfRwBnRiBdRcBnQ{AlRsAzR_ApRw@rRk@dR_@fRS`SEnRBhRL|R\\vRd@pRr@fWhAdVbAdRbCnYhBdQfCrT~BlQfCxQlDpSxCnPvD`QfD|OzD|OhFlShFnQpH`VfO|c@lp@xjBlG~QhF|PtExO`E|OdErQnDlP|DdSfDtShC`QnChTrBjQvAhOvApPjAhPbAhOv@nNfBb^l@jMnDrt@`Fjt@nBtUjEja@bElZlEfXpGz\\vG~X|HlZvIbZbLl\\jK|WxLvYdLnV|o@xsAzu@|{A`Pb^~Mf\\`JhX`HdVnBfJzI~a@pElXhDlY|BhUjBfW`AtXb@rWLnXUnUq@lYwAxY}B|YuBlSmD|VwEfYmv@l}DgK`l@eFd^yCfX}BdYoAzWw@tYYlW?hP\\nZt@vRx@pQfAhPlBtTnCrV|CpTpE|V|CfN`GvVpG`WxyCzoKxg@hbBfTzi@`Unj@zl@zeAbcFp}Gt`@lj@`LdQrLpS|JdRnKbVzKpYxGbSfFtQpHd[fEdUdElXrCnUlBxSzAvTjAtYd@~SV~[YrY[pMe@jNkBx\\aCt[_Dd\\sIxu@kuBjsQY~B{J||@oKxfAmIdcAmDji@_Dzn@qB`i@qAba@aAlb@q@d`@[|b@a@l{BjFzjChMf}BbTr_Cn\\bcCbi@rlClf@vlBxx@rmCzJf[rv@~mC~R~s@`b@dyBlNxfAzGni@~Fxo@zMp~ApP~bCfNxkArCvTpC~QhIrf@pGz]`DzPrHl[vEjQdJdZ`JnYzQdm@zmAtuC~Nn`@lMrd@|Kvd@vHzg@`H~j@fEni@fB|l@Z|n@yBnsD|@fr@pBfg@bHtr@~F|c@jJbo@pKla@jL|b@zZ`}@zOhb@~Z`t@nG`NxF|LpEfL~B~GhDnJbFlObF|OhDxLhF|S`DbOrCnOlBfNvBpQdB`OlAjNh@dLh@rMlAtSz@|Rd@lU`@~Qh@`\\`@z]h@v]n@`_@j@xSn@dSbAbRfAzPhAnMfB|Q`ChRjClQhDtRfHp\\dE|PlGbUhQtk@lEpMjDrKhD`K|BdHzBpHzCvJbDrJlDtK|DtM~DtNbEzO|C|LjClLxCdOdBvJfAxFhAvHjAdIfApHjAxKbArJ`A|LbAxLt@lOZtIh@zLp@~OTzKHbMBxJ?pJIdUUbSSpMg@hWqD|aBc@dVa@fYOnSKhVChT?pMDlKB`IJfLb@xPx@zTbA|Vf@zLh@jK`ArPlAtQxAzRxA|QlCrW~B|TxD~YnCnQdDrUrBrMfC|NdF~UzGb\\rD`PhBrHrBtIrDxMdElOhFpPlIjXnFxO|CzIjD~IdFxMhFtMrHlQpEzJbE|I|DnIfE|IrDjHrEjI`EvHnGdLxEtInLzRnU~^dXlb@p\\xg@tSz[jd@bs@t]vi@d_@rk@xUx^xTh]rf@dv@lc@fp@lLrPjKzNhNxRbIvKhXp^|q@n}@b~CtnDb`C~lCzBfCjVfYjMpOzRzWlMjRjJfOvE`IlErHjJ|PjFhKrElJhF~KrFlM~EnLhFzM`H~QpF|O`GvR~DtM|EtQnFfTnDbOxDdRrCjOnGb\\hlD|`S~Jbl@lGn^pDrRtEzVvEvXtDnTpE|WnD|RhFdX|XzvAlIla@dx@lxDzXzqAxTleAbSr_A|Rj`ApJpd@bHd\\`FfVxGd]dEdUpC|OtDfTvBpOxC~SbDlVlDx[dBhQxAjPpA|PvBn[`AjQt@lSh@tQj@zS\\jVLt]LpqAKjJ_@xSc@bNc@~Me@hLw@pOuAdVy@pOuAvPqC|\\kEr`@cBhOgC`RaDpToEvYkChOmEzTqEfTaDvN_Jd_@_Lba@iJ~[_HhT_HvSi^xfAoLl_@uDjMiDzLqCdKyCtMaCnL{BdLsBzL{AnJgBdM{AlLeA|I}@hKy@zLw@hKe@pHw@|Lq@~RoAx^uE`~A_IxnCaInmC_F~dBYjMGxBStQMrNElMC|RDxPT|OX~NZhNj@pMjArSjAxRrA~PnAlN|AfQlC~RbEtWfHdc@hLpi@`Iz\\tWnfAzEpRlRxw@|vAt{F|Ix_@xFdWdEvUjCrQrB`PpBzT`BxVn@jPX|OPpSO~T[lSq@bSgBfe@mDru@iWdvF{@~W{@f\\OdSQdQ@rS@lIj@jTRxK~AtYzAzShB|Q`DxSpF|YbEzQbFvRhF~PvJrWzG|OrHzNjIzNpIzNdJ~MtG|JzLvOrUlYneA`nAbhAbqAxf@tl@tOpRvKzNhKpNhMhShNrWrHrOnHlQ~ElNvFnQpFtR|DtRxCxPtNlkAzAtzAkKtxD}C~cAI~h@dAvt@nm@dcS^~OR|MFzPKnPQ~KWzIY~I_@jIq@vIo@nIy@xJgAfKeIno@gVfgBcW|kB}BlQkAzJuAtMu@vI_ArKq@tIg@~I]pH]`JYzJMzIEpMBnJB`ERzO^xMTdGz@dNdAfPdCxYfF~h@dRhiBf\\p}CjIdv@zMhoA`Fjg@~Mf`B|BpyAyHhqAoRfkAu`@hdA_tFxzKugFv|Jyl@rrAca@dtA{RdnAqItpAw@lzAvCt|Atm@pwQbRtdGlCrv@x@bRl@zKvAnRrA`QlBpQ~BlQfA~HtCpPtBdLhDhOtEzQnExOzE`OpGlQtE|L|CtHbHtOvHjPpY`m@hm@vnAzqAlnC`|@rhBfm@dnA|f@~cApb@t|@rlAvcCtItOxXlf@|u@jlAbaB`yBn{@rhArg@vp@xOlSlTj[zI`OxI|PdEnIfDbIxEtLbC~HdEdOvDtP`BhIlClQbC|Rz@lJhA~RXtHPbIDbHDzHCxHIdGUvIWjFg@|Ko@pLw@pKs@bG_F|^{aAzyF{DvUsCtRyJjy@yJblA{K~kA{NrhAkZzbB_jCjzLeVd}AgNzuA_\\vbFcK|lA_NfcAkc@jxCiIzhA{AnmAxCpvAnHzoD`Cd}Ab@vlAaAz`Cm@bnImB|{@uBx`A_OxgBsQh{AofAlrGcVjwAgXziAiHtZge@daBkbB|nF}Lbe@kEnQwE~SmE`UgCdOwCdSuBnQuCdZwAzRq@hK{@hP]rKWhKUlRI`S?pRPrOf@lQh@`Od@nKz@jMfAnOhBnRfBtOtIpu@pIls@`Hli@lG`h@~DvZzCtYpIdv@nCvShEjYpClPbDrQvChOzGpYvEjQnFrSpFfRzDzLdHbTfM|\\bJlWtGtSpHzVnHzW`Kfb@dGpWpFlXtE~WfDnTnC~SpBdTrMb_BzC~ZpCz[nB|SdC`StDfVrEfVjEpRlJj]tFvSbH`VdFvPhFlPxFfQvIdVhMvZjH|SpJdU~IhU~GfQdGrPjFfQtDrObDfPxEbWxDlWlSn{Av]pwCfCpRdEhZvDhXhCxRpBpQtAdQ~@hQh@pRVdTBfh@Kne@O`]Ej]JbSXhPb@pMt@hR^hIp@`LfAjPdBfRlDn]nDv[vDr\\hCrRhCbSnAfJrAxIjm@vpEpCnZrDd_@lBfTxA|SzA`UrAnVl@bN\\bJh@tMXrOTpSLn[JfUKjNQfIcA~R_BfVmC|[oAlLyBzPmE|YeE|U{D`RmDzOmHhZoUvz@yS|s@sItZex@fpCoLza@eBfGcOhh@oLbc@mFzTiHx[aGbZuDjUwBzNsCxVyBpWw@bMcAbUk@vTSxZFx[d@bYt@tRhA`WxHleAtQnrB`Jlv@t`@v~C|@jJjAtMd@`K\\lJTzQ?pPS~Oa@rOo@bQgAnVoAhQ}@hLu@jJkFze@wcA~iKoRbvBuNnyByM~aDoQrjEeChm@yH~jBmBxv@aA~`@o@|bBzDhoBvHj~AluAp`VxDpnANxu@q@vk@yBjk@yE|o@uG`m@gQvfAgoCb~MeX~xAoOfgAmLhgA_e@fhGiYzqD{KfsAuH`pAm@vm@fCzn@rFdj@lJ~d@tNre@rc@vaAnN`\\pF~MxEnMxEpNnDxMpCdMrC~MpB~NzB~PtAlRt@jOh@`TBvSK`Pq@zQy@dP{@zPuCp_@}Bl\\mNltBkJ~uAcUthDsFxeAyAj_A|Af~@`D|p@bF~e@`Hhe@xP`{@rv@~_Djh@bbCjYx{Az~AtrJ~Mzo@rRro@h_@d|@|Xfe@t[bb@zmDlzDpd@ll@lPzS~t@xlAxyC~|FvhAbxBpe@zaAvFvLzv@pwArgBdlDlRfe@tPph@xK|h@hGda@nEvh@rBvk@`@xyAhAf_BtJ|pA`YjvAfkA~aFdVzoAzDla@jChc@~@t`@Chf@oAlb@cD|c@aLneAsTnqBwChc@y@jUS|Zb@hW\\hO~@tPrC~Z|DzYvDxRdK`e@`yBvzIj^hgBnQplAnEdZpBzMj|@jcGdFp]jEbZnWxqBAzPbBxd@`@|f@B~d@y`@|}IkAfeBnAjpA|Yx_JpAxt@wAvu@kIp}@}QdjAk_Kf~d@u~@hhEkU~~AoE`hApBndAvz@hiKtHb|A?niBoDxhAmLv_ByTvpAkUriAqvJrf]wT~eAYpAuNbaAea@ryDkUxrD_Bzk@U||AjAd_C`DdvAlO`{@ri@hbBf`AnuB","duration":7067.945,"driving_side":"right","duration_typical":7067.945,"weight_typical":6602.773,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep left to take exit 30 onto A 23 toward Guarda Sul/Covilhã/Portalegre.","modifier":"slight left","bearing_after":224,"bearing_before":231,"location":[-7.214713,40.56947]},"speedLimitUnit":"km/h","destinations":"A 23, IP 2: Guarda Sul, Covilhã, Portalegre","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lisboa"},{"type":"text","text":"/"},{"type":"text","text":"Santarém"}],"type":"fork","modifier":"left","text":"Lisboa / Santarém"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 1"}],"type":"fork","modifier":"left","text":"A 1"},"distanceAlongGeometry":214426.297},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lisboa"},{"type":"text","text":"/"},{"type":"text","text":"Santarém"}],"type":"fork","modifier":"left","text":"Lisboa / Santarém"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 1"}],"type":"fork","modifier":"left","text":"A 1"},"distanceAlongGeometry":3218.688}],"exits":"30","voiceInstructions":[{"ssmlAnnouncement":"Continue for 133 miles.","announcement":"Continue for 133 miles.","distanceAlongGeometry":214396.625},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 1.","announcement":"In 2 miles, Keep left to take A 1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 1.","announcement":"In a half mile, Keep left to take A 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 1 toward Lisboa, Santarém.","announcement":"Keep left to take A 1 toward Lisboa, Santarém.","distanceAlongGeometry":253.333}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[51,224,235],"duration":22.148,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":19.906,"geometry_index":31704,"location":[-7.214713,40.56947]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,185],"duration":2.375,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":2.195,"geometry_index":31714,"location":[-7.218032,40.56481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,180],"duration":8.656,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":8.008,"geometry_index":31715,"location":[-7.218102,40.564219]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.217841,40.562098],"geometry_index":31719,"admin_index":14,"weight":11.602,"is_urban":false,"turn_weight":6,"duration":6.078,"bearings":[165,335,348],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,345],"duration":52.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":47.125,"geometry_index":31720,"location":[-7.217317,40.560624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,345],"duration":7.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":6.734,"geometry_index":31737,"location":[-7.216188,40.547654]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":14.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":12.828,"geometry_index":31740,"location":[-7.215814,40.545789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,193],"duration":7.648,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.867,"geometry_index":31745,"location":[-7.216497,40.542249]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,189],"duration":42.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":39.656,"geometry_index":31747,"location":[-7.217092,40.540227]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,217],"duration":8.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.898,"geometry_index":31757,"location":[-7.220367,40.529078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.633,"geometry_index":31758,"location":[-7.222117,40.527284]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":4.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.344,"geometry_index":31759,"location":[-7.222702,40.526684]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.223758,40.525649],"geometry_index":31760,"admin_index":14,"weight":32.336,"is_urban":false,"turn_weight":15,"duration":18.758,"bearings":[38,217,229],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.227957,40.522112],"geometry_index":31766,"admin_index":14,"weight":17.586,"is_urban":false,"turn_weight":0.5,"duration":18.477,"bearings":[37,45,225],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,200],"duration":16.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.289,"geometry_index":31773,"location":[-7.231528,40.518443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":16.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15,"geometry_index":31779,"location":[-7.233317,40.514416]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":2.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.922,"geometry_index":31782,"location":[-7.234659,40.510631]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":3.531,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.258,"geometry_index":31783,"location":[-7.234805,40.510141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":6.461,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.977,"geometry_index":31785,"location":[-7.235087,40.509311]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[26,205],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.961,"geometry_index":31791,"location":[-7.235837,40.507862]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.102,"geometry_index":31796,"location":[-7.238208,40.505346]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.094,"geometry_index":31798,"location":[-7.23898,40.504782]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.125,"geometry_index":31799,"location":[-7.23925,40.504585]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,222],"duration":2.023,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.797,"geometry_index":31802,"location":[-7.239794,40.504169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,219],"duration":5.109,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.578,"geometry_index":31804,"location":[-7.240226,40.503798]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,208],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.516,"geometry_index":31811,"location":[-7.241149,40.502755]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,205],"duration":90.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":81.344,"geometry_index":31812,"location":[-7.24124,40.502624]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.758,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.578,"geometry_index":31840,"location":[-7.255849,40.479978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":4.117,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.695,"geometry_index":31842,"location":[-7.256011,40.4795]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.656,"geometry_index":31844,"location":[-7.256406,40.478385]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":9.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.258,"geometry_index":31849,"location":[-7.257009,40.476917]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[27,207],"duration":11.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.453,"geometry_index":31856,"location":[-7.258118,40.47496]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,205],"duration":16.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.547,"geometry_index":31857,"location":[-7.259709,40.472554]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.672,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.5,"geometry_index":31872,"location":[-7.261244,40.468457]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":80.719,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":70.609,"geometry_index":31875,"location":[-7.261314,40.468022]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[18,204,208],"duration":15.312,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.391,"geometry_index":31910,"location":[-7.266709,40.447446]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.269216,40.443286],"geometry_index":31917,"admin_index":14,"weight":7.688,"is_urban":false,"turn_weight":1,"duration":7.438,"bearings":[8,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":13.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.094,"geometry_index":31918,"location":[-7.269931,40.441359]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,209],"duration":39.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":35.758,"geometry_index":31921,"location":[-7.271506,40.437806]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":14.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.047,"geometry_index":31936,"location":[-7.280996,40.429738]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,187],"duration":142.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":128.383,"geometry_index":31942,"location":[-7.281358,40.425785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,189],"duration":8.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.453,"geometry_index":31982,"location":[-7.306455,40.392388]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":30.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.656,"geometry_index":31985,"location":[-7.306709,40.390065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":11.602,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.445,"geometry_index":31991,"location":[-7.310072,40.382042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,208],"duration":25.57,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.992,"geometry_index":31992,"location":[-7.312129,40.379205]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":34.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":31.336,"geometry_index":31998,"location":[-7.316044,40.372589]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.477,"geometry_index":32003,"location":[-7.32047,40.363375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":107.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":97.141,"geometry_index":32004,"location":[-7.320547,40.363245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,237],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.391,"geometry_index":32030,"location":[-7.339233,40.33769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,236],"duration":41.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":37.023,"geometry_index":32031,"location":[-7.339704,40.337453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,229],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.578,"geometry_index":32035,"location":[-7.352424,40.330725]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":51.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":46.711,"geometry_index":32036,"location":[-7.352605,40.330607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,242],"duration":9.398,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.461,"geometry_index":32040,"location":[-7.368259,40.322246]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":6.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.82,"geometry_index":32043,"location":[-7.371419,40.321158]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.484,"geometry_index":32044,"location":[-7.37369,40.32048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,245],"duration":6.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.273,"geometry_index":32045,"location":[-7.374235,40.320322]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[51,65,237],"duration":59.766,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":53.758,"geometry_index":32046,"location":[-7.37649,40.319521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":6.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":5.594,"geometry_index":32060,"location":[-7.382336,40.30362]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":160.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":140.414,"geometry_index":32064,"location":[-7.382161,40.301872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":11.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.273,"geometry_index":32086,"location":[-7.425097,40.269081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":27.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.758,"geometry_index":32087,"location":[-7.428792,40.267704]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[52,230,237],"duration":6.453,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.789,"geometry_index":32091,"location":[-7.436945,40.264283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.367,"geometry_index":32092,"location":[-7.438602,40.263225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,224],"duration":6.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.969,"geometry_index":32093,"location":[-7.438986,40.262963]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.440564,40.261646],"geometry_index":32095,"admin_index":14,"weight":28,"is_urban":false,"turn_weight":0.5,"duration":30.562,"bearings":[32,40,219],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.664,"geometry_index":32097,"location":[-7.447614,40.25512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":36.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":33.039,"geometry_index":32098,"location":[-7.448046,40.254734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":8.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.828,"geometry_index":32106,"location":[-7.457746,40.247828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,243],"duration":64.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":57.867,"geometry_index":32107,"location":[-7.460405,40.246649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":12.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.328,"geometry_index":32120,"location":[-7.480862,40.23991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.664,"geometry_index":32124,"location":[-7.482851,40.237042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.773,"geometry_index":32125,"location":[-7.483141,40.236325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":16.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.938,"geometry_index":32126,"location":[-7.483337,40.235843]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.485399,40.231837],"geometry_index":32131,"admin_index":14,"weight":23.953,"is_urban":false,"turn_weight":15,"duration":9.688,"bearings":[29,210,215],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,218],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.57,"geometry_index":32136,"location":[-7.487247,40.229703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,216],"duration":10.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.508,"geometry_index":32137,"location":[-7.487607,40.229351]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.489587,40.227191],"geometry_index":32139,"admin_index":14,"weight":9.133,"is_urban":false,"turn_weight":1,"duration":8.797,"bearings":[30,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,200],"duration":6.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.156,"geometry_index":32144,"location":[-7.490895,40.225146]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":88.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":79.641,"geometry_index":32149,"location":[-7.491575,40.223467]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.953,"geometry_index":32171,"location":[-7.488349,40.201203]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,197],"duration":27.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":24.5,"geometry_index":32172,"location":[-7.488469,40.200936]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,348],"duration":8.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":8.086,"geometry_index":32183,"location":[-7.490591,40.194191]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[139,148,327],"duration":14.43,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":13.32,"geometry_index":32187,"location":[-7.489338,40.192054]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.485926,40.18954],"geometry_index":32189,"admin_index":14,"weight":8.727,"is_urban":false,"turn_weight":1,"duration":8.375,"bearings":[130,300,312],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,319],"duration":10.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":9.281,"geometry_index":32193,"location":[-7.48394,40.187934]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,331],"duration":8.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":7.852,"geometry_index":32198,"location":[-7.482075,40.185794]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":0.641,"geometry_index":32203,"location":[-7.480885,40.183433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":13.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":12.766,"geometry_index":32204,"location":[-7.480828,40.183229]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,190],"duration":9.602,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.883,"geometry_index":32209,"location":[-7.480613,40.179128]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199,208],"duration":12.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.461,"geometry_index":32212,"location":[-7.481584,40.176361]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.483069,40.173416],"geometry_index":32214,"admin_index":14,"weight":126.68,"is_urban":false,"turn_weight":1,"duration":132.297,"bearings":[11,21,201],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[4,183,191],"duration":9.82,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.562,"geometry_index":32240,"location":[-7.478477,40.140791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,196],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.523,"geometry_index":32243,"location":[-7.479047,40.138535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,194],"duration":10.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.383,"geometry_index":32244,"location":[-7.479177,40.138189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,188],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.758,"geometry_index":32247,"location":[-7.479886,40.135752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":14.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.93,"geometry_index":32248,"location":[-7.479921,40.135568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,179],"duration":1.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.508,"geometry_index":32253,"location":[-7.480298,40.132089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,359],"duration":9.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":9.547,"geometry_index":32254,"location":[-7.480287,40.131706]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,346],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":1.242,"geometry_index":32257,"location":[-7.47977,40.129302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,344],"duration":42.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":40.625,"geometry_index":32258,"location":[-7.479653,40.128996]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[160,176,345],"duration":3.375,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":3.102,"geometry_index":32268,"location":[-7.477146,40.119648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,340],"duration":11.281,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":10.414,"geometry_index":32269,"location":[-7.476833,40.118974]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[157,338],"duration":68.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":63.109,"geometry_index":32272,"location":[-7.475636,40.116735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,190],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.766,"geometry_index":32279,"location":[-7.46943,40.103548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,191],"duration":3.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.086,"geometry_index":32280,"location":[-7.469517,40.103154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,190],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.047,"geometry_index":32281,"location":[-7.469702,40.102456]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,189],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.055,"geometry_index":32282,"location":[-7.469918,40.10148]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":2.305,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.07,"geometry_index":32283,"location":[-7.469968,40.10124]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":8.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.375,"geometry_index":32284,"location":[-7.470063,40.100773]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[13,197],"duration":11.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.648,"geometry_index":32288,"location":[-7.47047,40.099107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,204],"duration":29.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":26.258,"geometry_index":32290,"location":[-7.471547,40.096555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,342],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":12.961,"geometry_index":32305,"location":[-7.474702,40.090405]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,307],"duration":64.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":59.477,"geometry_index":32312,"location":[-7.471942,40.087903]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,218],"duration":2.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.664,"geometry_index":32339,"location":[-7.477682,40.077481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":4.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.219,"geometry_index":32340,"location":[-7.478261,40.076911]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.479142,40.07603],"geometry_index":32341,"admin_index":14,"weight":21.617,"is_urban":false,"turn_weight":15,"duration":7.352,"bearings":[37,217,229],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,219],"duration":1.773,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.586,"geometry_index":32342,"location":[-7.480559,40.074616]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,210],"duration":6.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.211,"geometry_index":32343,"location":[-7.480911,40.074279]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,189],"duration":109.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":95.953,"geometry_index":32346,"location":[-7.481831,40.072788]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,333],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":1.188,"geometry_index":32364,"location":[-7.471568,40.045275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":26.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":23.789,"geometry_index":32365,"location":[-7.471353,40.044959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,353],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":0.844,"geometry_index":32371,"location":[-7.469268,40.037253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,352],"duration":13.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":11.805,"geometry_index":32372,"location":[-7.469223,40.036999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":8.648,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":7.781,"geometry_index":32373,"location":[-7.468624,40.033361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":19.477,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":17.516,"geometry_index":32375,"location":[-7.468217,40.030966]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[167,336,345],"duration":127.125,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":114.406,"geometry_index":32379,"location":[-7.466738,40.025699]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.460701,39.989625],"geometry_index":32398,"admin_index":14,"weight":23.719,"is_urban":false,"turn_weight":15,"duration":9.695,"bearings":[167,173,347],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,350],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":1.195,"geometry_index":32402,"location":[-7.459986,39.987025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,349],"duration":8.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":7.992,"geometry_index":32403,"location":[-7.459895,39.986664]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":17.883,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":16.086,"geometry_index":32405,"location":[-7.459508,39.984312]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":217.281,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":195.555,"geometry_index":32407,"location":[-7.459184,39.979186]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,204],"duration":8.055,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.422,"geometry_index":32432,"location":[-7.47608,39.921368]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[11,188,356],"duration":0.484,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.43,"geometry_index":32436,"location":[-7.477044,39.919218]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.602,"geometry_index":32437,"location":[-7.477068,39.919094]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.477139,39.918635],"geometry_index":32438,"admin_index":14,"weight":104.906,"is_urban":false,"turn_weight":15,"duration":114.898,"bearings":[7,183],"out":1,"in":0,"turn_duration":15,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191,200],"duration":16.273,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.219,"geometry_index":32457,"location":[-7.486994,39.890227]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.48795,39.886198],"geometry_index":32459,"admin_index":14,"weight":109.469,"is_urban":false,"turn_weight":1,"duration":123.969,"bearings":[0,9,189],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.688,"geometry_index":32468,"location":[-7.501285,39.855166]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.375,"geometry_index":32469,"location":[-7.501497,39.854727]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.501911,39.853868],"geometry_index":32470,"admin_index":14,"weight":23.797,"is_urban":false,"turn_weight":15,"duration":9.797,"bearings":[20,199,201],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.503005,39.851523],"geometry_index":32473,"admin_index":14,"weight":23.094,"is_urban":false,"turn_weight":0.5,"duration":25.109,"bearings":[13,22,204],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,244],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.406,"geometry_index":32481,"location":[-7.508943,39.846602]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,249],"duration":71.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":66.242,"geometry_index":32482,"location":[-7.509404,39.846433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,215],"duration":13.562,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.211,"geometry_index":32494,"location":[-7.527566,39.833128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,222],"duration":19.188,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.258,"geometry_index":32497,"location":[-7.53061,39.830143]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[38,42,223],"duration":61.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":53.578,"geometry_index":32498,"location":[-7.535223,39.826254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":3.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.703,"geometry_index":32506,"location":[-7.549624,39.813812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":94.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":82.555,"geometry_index":32507,"location":[-7.550228,39.81315]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,220,224],"duration":4.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.453,"geometry_index":32528,"location":[-7.567501,39.788317]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,224],"duration":4.469,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.023,"geometry_index":32531,"location":[-7.568684,39.787275]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,226],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.602,"geometry_index":32533,"location":[-7.569821,39.786389]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.859,"geometry_index":32534,"location":[-7.570248,39.78607]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.570481,39.785898],"geometry_index":32535,"admin_index":14,"weight":22.938,"is_urban":false,"turn_weight":0.5,"duration":24.938,"bearings":[38,46,226],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,236],"duration":93.656,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":84.297,"geometry_index":32541,"location":[-7.578251,39.781435]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234,244],"duration":10.25,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.211,"geometry_index":32561,"location":[-7.602938,39.761249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.969,"geometry_index":32562,"location":[-7.606009,39.759549]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.606324,39.759376],"geometry_index":32563,"admin_index":14,"weight":0.852,"is_urban":false,"turn_weight":0.5,"duration":0.398,"bearings":[37,54,234],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":93.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":84.094,"geometry_index":32564,"location":[-7.606438,39.759312]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":3.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.445,"geometry_index":32579,"location":[-7.63397,39.745147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":217.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":196.094,"geometry_index":32581,"location":[-7.634869,39.744369]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,206],"duration":25.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.031,"geometry_index":32609,"location":[-7.693405,39.710343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,178],"duration":14.625,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.164,"geometry_index":32616,"location":[-7.695637,39.703548]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[2,186,199],"duration":11.477,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.32,"geometry_index":32620,"location":[-7.695455,39.699501]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.696718,39.696608],"geometry_index":32625,"admin_index":14,"weight":2.148,"is_urban":false,"turn_weight":0.5,"duration":1.844,"bearings":[25,33,216],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":9.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.453,"geometry_index":32626,"location":[-7.697092,39.696216]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":1.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.453,"geometry_index":32629,"location":[-7.699383,39.694634]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,244],"duration":47.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":42.953,"geometry_index":32630,"location":[-7.699852,39.694411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,200],"duration":25.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.234,"geometry_index":32684,"location":[-7.714395,39.692173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":7.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.742,"geometry_index":32735,"location":[-7.714898,39.685503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,182],"duration":28.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":26.008,"geometry_index":32738,"location":[-7.715271,39.683448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,252],"duration":21.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.414,"geometry_index":32746,"location":[-7.720131,39.677252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.273,"geometry_index":32747,"location":[-7.727422,39.675376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.562,"geometry_index":32748,"location":[-7.728628,39.675059]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[-7.73133,39.674184],"geometry_index":32753,"admin_index":14,"weight":27.852,"is_urban":false,"turn_weight":15,"duration":29.305,"bearings":[63,237,251],"out":1,"in":0,"turn_duration":15.028,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.735529,39.671433],"geometry_index":32758,"admin_index":14,"weight":7.367,"is_urban":false,"turn_weight":0.75,"duration":7.367,"bearings":[30,42,219],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,204],"duration":107.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":96.445,"geometry_index":32761,"location":[-7.737041,39.669578]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,204],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.648,"geometry_index":32785,"location":[-7.745294,39.63876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":12.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.102,"geometry_index":32786,"location":[-7.745696,39.638062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":14.664,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.203,"geometry_index":32790,"location":[-7.748004,39.635271]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,225],"duration":24.984,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.469,"geometry_index":32793,"location":[-7.751678,39.632513]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[4,6,184],"duration":127.297,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":111.367,"geometry_index":32812,"location":[-7.755399,39.626661]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[31,205,214],"duration":12.836,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.203,"geometry_index":32840,"location":[-7.768496,39.59489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.484,"geometry_index":32843,"location":[-7.770621,39.591997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,216],"duration":11.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.016,"geometry_index":32844,"location":[-7.770914,39.591624]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.773785,39.589335],"geometry_index":32848,"admin_index":14,"weight":51.922,"is_urban":false,"turn_weight":1,"duration":58.203,"bearings":[39,49,229],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,217,225],"duration":15.461,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.508,"geometry_index":32867,"location":[-7.780696,39.575163]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.784096,39.572135],"geometry_index":32872,"admin_index":14,"weight":60.062,"is_urban":false,"turn_weight":1,"duration":67.531,"bearings":[34,45,217],"out":2,"in":1,"turn_duration":0.033,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[29,209,220],"duration":9.859,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.609,"geometry_index":32911,"location":[-7.799733,39.560316]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.801296,39.558152],"geometry_index":32913,"admin_index":14,"weight":63.836,"is_urban":false,"turn_weight":0.75,"duration":72.117,"bearings":[23,29,209],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":12.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.273,"geometry_index":32973,"location":[-7.822161,39.549365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":84.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":73.945,"geometry_index":32974,"location":[-7.826696,39.549554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,263],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.68,"geometry_index":33053,"location":[-7.853142,39.547526]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,262],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.078,"geometry_index":33054,"location":[-7.853372,39.547503]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.855084,39.547302],"geometry_index":33056,"admin_index":14,"weight":46.539,"is_urban":false,"turn_weight":15,"duration":35.062,"bearings":[80,259,260],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,248],"duration":116.188,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":101.656,"geometry_index":33075,"location":[-7.865047,39.542943]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,258],"duration":7.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.359,"geometry_index":33128,"location":[-7.901258,39.533004]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,275],"duration":99.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":86.648,"geometry_index":33134,"location":[-7.903592,39.532847]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,243],"duration":6.602,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.773,"geometry_index":33161,"location":[-7.940701,39.53249]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[63,244,251],"duration":11.781,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.305,"geometry_index":33162,"location":[-7.942989,39.5316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,255],"duration":1.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.633,"geometry_index":33165,"location":[-7.946941,39.530472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,258],"duration":12.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.055,"geometry_index":33166,"location":[-7.947621,39.53033]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.952043,39.529683],"geometry_index":33169,"admin_index":14,"weight":61.562,"is_urban":false,"turn_weight":0.5,"duration":69.805,"bearings":[70,80,256],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":12.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.719,"geometry_index":33200,"location":[-7.975451,39.523504]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,261],"duration":90.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":78.984,"geometry_index":33217,"location":[-7.979556,39.522157]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.009189,39.516452],"geometry_index":33320,"admin_index":14,"weight":39.578,"is_urban":false,"turn_weight":15,"duration":28.102,"bearings":[51,231,237],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.016348,39.511375],"geometry_index":33334,"admin_index":14,"weight":5.055,"is_urban":false,"turn_weight":0.5,"duration":5.211,"bearings":[44,47,226],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.086,"geometry_index":33337,"location":[-8.017672,39.510379]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,224],"duration":91.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":80.195,"geometry_index":33338,"location":[-8.017989,39.510134]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,248],"duration":8.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.641,"geometry_index":33380,"location":[-8.047462,39.496158]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,248],"duration":31.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.375,"geometry_index":33381,"location":[-8.050429,39.495243]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,265],"duration":7.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.688,"geometry_index":33402,"location":[-8.061223,39.492428]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,273],"duration":79.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":73.125,"geometry_index":33407,"location":[-8.064042,39.492356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":3.453,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.281,"geometry_index":33477,"location":[-8.0935,39.495098]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":12.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.742,"geometry_index":33479,"location":[-8.094722,39.494677]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.578,"geometry_index":33480,"location":[-8.098765,39.49327]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":15.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.633,"geometry_index":33481,"location":[-8.09929,39.493095]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[93,97,277],"duration":77.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":69.602,"geometry_index":33495,"location":[-8.104708,39.492777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.562,"geometry_index":33539,"location":[-8.128997,39.485799]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":55.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":48.383,"geometry_index":33542,"location":[-8.131633,39.485848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.586,"geometry_index":33571,"location":[-8.151205,39.486464]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,262],"duration":10.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.531,"geometry_index":33574,"location":[-8.151809,39.486436]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[77,257,265],"duration":7.914,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.117,"geometry_index":33580,"location":[-8.155261,39.48587]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.157798,39.485402],"geometry_index":33581,"admin_index":14,"weight":48.289,"is_urban":false,"turn_weight":1,"duration":51.141,"bearings":[68,77,256],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.173852,39.48951],"geometry_index":33590,"admin_index":14,"weight":35.438,"is_urban":false,"turn_weight":15,"duration":22.102,"bearings":[128,308,315],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,305],"duration":100.758,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":93.18,"geometry_index":33591,"location":[-8.17996,39.493233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":42.977,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":39.75,"geometry_index":33622,"location":[-8.213545,39.4889]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.297,"geometry_index":33632,"location":[-8.22509,39.481059]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[43,226,234],"duration":12.344,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.414,"geometry_index":33633,"location":[-8.225417,39.48079]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.228948,39.479298],"geometry_index":33647,"admin_index":14,"weight":4.43,"is_urban":false,"turn_weight":1,"duration":3.719,"bearings":[75,81,265],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,277],"duration":17.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.859,"geometry_index":33655,"location":[-8.230147,39.4793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,287],"duration":54.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":48.922,"geometry_index":33662,"location":[-8.235791,39.480674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,281],"duration":42.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":38.289,"geometry_index":33672,"location":[-8.255917,39.485327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.272208,39.486275],"geometry_index":33682,"admin_index":14,"weight":31.055,"is_urban":false,"turn_weight":15,"duration":17.859,"bearings":[91,270,276],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.278545,39.486353],"geometry_index":33684,"admin_index":14,"weight":23.328,"is_urban":false,"turn_weight":0.5,"duration":25.375,"bearings":[89,94,274],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":108.789,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":100.633,"geometry_index":33688,"location":[-8.287159,39.48811]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[56,240,244],"duration":21.32,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":20.242,"geometry_index":33763,"location":[-8.322852,39.48622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":28.484,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.047,"geometry_index":33775,"location":[-8.330005,39.484122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,254],"duration":9.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.242,"geometry_index":33803,"location":[-8.339765,39.482965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,258],"duration":29.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.852,"geometry_index":33804,"location":[-8.343121,39.482223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,296],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.43,"geometry_index":33831,"location":[-8.353221,39.483272]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[116,297,306],"duration":9.82,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.078,"geometry_index":33832,"location":[-8.353664,39.483442]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.356546,39.484573],"geometry_index":33834,"admin_index":14,"weight":80.031,"is_urban":false,"turn_weight":0.5,"duration":88.375,"bearings":[113,117,297],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":9.492,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.539,"geometry_index":33874,"location":[-8.386602,39.486705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.977,"geometry_index":33875,"location":[-8.38986,39.487001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":7.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.781,"geometry_index":33876,"location":[-8.390601,39.487068]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":123.609,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":111.242,"geometry_index":33878,"location":[-8.393222,39.48728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,281],"duration":25.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.648,"geometry_index":33896,"location":[-8.435258,39.490448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,237],"duration":4.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.859,"geometry_index":33905,"location":[-8.442867,39.489374]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[-8.444052,39.488874],"geometry_index":33910,"admin_index":14,"weight":24.188,"is_urban":false,"turn_weight":15,"duration":9.945,"bearings":[67,249,260],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.447214,39.488678],"geometry_index":33921,"admin_index":14,"weight":2.516,"is_urban":false,"turn_weight":1,"duration":1.648,"bearings":[83,98,281],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.447735,39.488753],"geometry_index":33922,"admin_index":14,"weight":6.758,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.328,"bearings":[101,280,294],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.450085,39.489063],"geometry_index":33924,"admin_index":14,"weight":4.992,"is_urban":false,"turn_weight":1,"duration":4.32,"bearings":[84,100,280],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":11.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.625,"geometry_index":33925,"location":[-8.451477,39.489245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,273],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.773,"geometry_index":33927,"location":[-8.455325,39.489721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,257],"duration":73.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":69.539,"geometry_index":33930,"location":[-8.458166,39.489638]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":21.031,"toll_collection":{"name":"Entroncamento (A23)","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":21.031,"geometry_index":33944,"location":[-8.479909,39.480242]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[52,232,239],"duration":7.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.203,"geometry_index":33947,"location":[-8.485552,39.476622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":3.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.906,"geometry_index":33948,"location":[-8.48749,39.475442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":6.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.148,"geometry_index":33949,"location":[-8.48856,39.474825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,232],"duration":18.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.945,"geometry_index":33951,"location":[-8.490197,39.473807]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,259],"duration":8.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.43,"geometry_index":33956,"location":[-8.495463,39.471201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,268],"duration":84.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":82.18,"geometry_index":33959,"location":[-8.4983,39.471022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.328,"geometry_index":33985,"location":[-8.52649,39.466116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":0.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.719,"geometry_index":33986,"location":[-8.526925,39.466012]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.527163,39.465955],"geometry_index":33987,"admin_index":14,"weight":27.383,"is_urban":false,"turn_weight":15,"duration":12.711,"bearings":[73,253,258],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,253],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.445,"geometry_index":33988,"location":[-8.531329,39.464973]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,253],"duration":7.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.734,"geometry_index":33989,"location":[-8.531818,39.464858]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.534375,39.464365],"geometry_index":33992,"admin_index":14,"weight":98.68,"is_urban":false,"turn_weight":0.5,"duration":106.164,"bearings":[75,90,264],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":125.906,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":113.32,"geometry_index":34004,"location":[-8.57381,39.471026]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[95,271,283],"duration":16.516,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.25,"geometry_index":34022,"location":[-8.61988,39.479923]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.624829,39.479815],"geometry_index":34025,"admin_index":14,"weight":15.141,"is_urban":false,"turn_weight":0.75,"duration":15.203,"bearings":[75,86,250],"out":2,"in":1,"turn_duration":0.056,"classes":["toll","motorway"],"entry":[false,false,true]},{"bearings":[61,234],"entry":[false,true],"classes":["toll","motorway"],"in":0,"turn_weight":15,"toll_collection":{"name":"Torres Novas","type":"toll_booth"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34027,"location":[-8.627379,39.47887]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 50 miles.","announcement":"Continue for 50 miles.","distanceAlongGeometry":80960.484},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 1.","announcement":"In 2 miles, Keep left to stay on A 1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 1.","announcement":"In a half mile, Keep left to stay on A 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 1, E 01.","announcement":"Keep left to stay on A 1, E 01.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.629275,39.477826],"geometry_index":34028,"admin_index":14,"weight":7.352,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.742,"bearings":[54,238,249],"out":1,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":3.656,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":3.469,"geometry_index":34029,"location":[-8.630845,39.477065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,234],"duration":29.359,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":27.891,"geometry_index":34030,"location":[-8.631505,39.476753]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.62932,39.473341],"geometry_index":34040,"admin_index":14,"weight":21.227,"is_urban":false,"turn_weight":11.75,"duration":9.992,"bearings":[166,332,344],"out":0,"in":1,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,357],"duration":56.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":52.133,"geometry_index":34044,"location":[-8.628788,39.470564]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,183],"duration":215.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":193.766,"geometry_index":34056,"location":[-8.631314,39.454808]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":4.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.125,"geometry_index":34098,"location":[-8.639601,39.395748]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.639553,39.394453],"geometry_index":34100,"admin_index":14,"weight":11.297,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.57,"bearings":[174,184,356],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.638749,39.391102],"geometry_index":34104,"admin_index":14,"weight":7.969,"is_urban":false,"turn_weight":1,"duration":7.766,"bearings":[162,336,345],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,336],"duration":135.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":122.312,"geometry_index":34106,"location":[-8.637625,39.38896]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,225],"duration":8.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.266,"geometry_index":34137,"location":[-8.642829,39.353586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":84.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":76.25,"geometry_index":34138,"location":[-8.644936,39.351934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,212],"duration":4.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.141,"geometry_index":34158,"location":[-8.65726,39.33001]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,211],"duration":37.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":33.406,"geometry_index":34159,"location":[-8.658159,39.328891]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,211],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.859,"geometry_index":34163,"location":[-8.664978,39.319537]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":24.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22,"geometry_index":34164,"location":[-8.665158,39.319309]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.359,"geometry_index":34170,"location":[-8.670426,39.313612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,222],"duration":44.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":40.156,"geometry_index":34171,"location":[-8.670795,39.313297]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,212],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.82,"geometry_index":34180,"location":[-8.679917,39.302822]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,213],"duration":12.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.297,"geometry_index":34181,"location":[-8.680096,39.302598]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.883,"geometry_index":34184,"location":[-8.682944,39.299672]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":25.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.648,"geometry_index":34185,"location":[-8.683186,39.29946]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,204],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.562,"geometry_index":34193,"location":[-8.688505,39.293488]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,201],"duration":4.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.117,"geometry_index":34194,"location":[-8.688764,39.293036]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,199],"duration":1.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.32,"geometry_index":34195,"location":[-8.689374,39.291826]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":22.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":20.297,"geometry_index":34196,"location":[-8.689547,39.291436]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,199],"duration":6.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.484,"geometry_index":34201,"location":[-8.691502,39.285033]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,211],"duration":42.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":38.367,"geometry_index":34203,"location":[-8.692333,39.283427]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,244],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.258,"geometry_index":34216,"location":[-8.704761,39.276571]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,242],"duration":33.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":30.852,"geometry_index":34217,"location":[-8.705197,39.276406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,244],"duration":5.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.328,"geometry_index":34224,"location":[-8.716049,39.272177]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":1.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.547,"geometry_index":34226,"location":[-8.717872,39.271465]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.18,"geometry_index":34227,"location":[-8.718388,39.271245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.719452,39.27078],"geometry_index":34228,"admin_index":14,"weight":17.008,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.93,"bearings":[61,238,249],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":1.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.523,"geometry_index":34233,"location":[-8.72475,39.267839]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,229],"duration":7.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.562,"geometry_index":34234,"location":[-8.725202,39.267552]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.727346,39.266034],"geometry_index":34236,"admin_index":14,"weight":14.836,"is_urban":false,"turn_weight":1,"duration":14.586,"bearings":[30,47,223],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,217],"duration":7.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.688,"geometry_index":34241,"location":[-8.730806,39.263026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,215],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.352,"geometry_index":34243,"location":[-8.732315,39.261448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,213],"duration":6.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.055,"geometry_index":34244,"location":[-8.732603,39.261128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.523,"geometry_index":34247,"location":[-8.733808,39.259662]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.734098,39.259294],"geometry_index":34248,"admin_index":14,"weight":2.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.617,"bearings":[31,209,220],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,208],"duration":9.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.703,"geometry_index":34249,"location":[-8.734545,39.258669]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.736066,39.256346],"geometry_index":34253,"admin_index":14,"weight":6.93,"is_urban":false,"turn_weight":0.75,"duration":6.703,"bearings":[8,26,204],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,203],"duration":2.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.922,"geometry_index":34255,"location":[-8.73703,39.254653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":33.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":29.742,"geometry_index":34256,"location":[-8.737321,39.254125]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,210],"duration":21.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.758,"geometry_index":34262,"location":[-8.742058,39.245647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,241],"duration":148.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":133.273,"geometry_index":34270,"location":[-8.747409,39.241303]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227],"duration":4.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.375,"geometry_index":34314,"location":[-8.783,39.209061]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,229],"duration":2.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.352,"geometry_index":34315,"location":[-8.784378,39.208076]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.891,"geometry_index":34316,"location":[-8.78514,39.207564]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.786425,39.206741],"geometry_index":34317,"admin_index":14,"weight":8.531,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.484,"bearings":[50,231,241],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.789352,39.205032],"geometry_index":34320,"admin_index":14,"weight":9.633,"is_urban":false,"turn_weight":0.5,"duration":10.164,"bearings":[42,54,236],"out":2,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.07,"geometry_index":34322,"location":[-8.792378,39.203476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,240],"duration":44.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":40.484,"geometry_index":34323,"location":[-8.793077,39.203138]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.633,"geometry_index":34329,"location":[-8.807703,39.198017]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":56.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":50.781,"geometry_index":34330,"location":[-8.807941,39.197938]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,217],"duration":1.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.781,"geometry_index":34339,"location":[-8.824123,39.188388]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,216],"duration":83.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":75.328,"geometry_index":34340,"location":[-8.824556,39.187945]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":1.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.125,"geometry_index":34350,"location":[-8.846148,39.171983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":142.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":131.383,"geometry_index":34351,"location":[-8.84651,39.171777]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209],"duration":6.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.141,"geometry_index":34375,"location":[-8.88408,39.14535]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,213],"duration":2.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.75,"geometry_index":34376,"location":[-8.885195,39.143764]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,217],"duration":2.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.656,"geometry_index":34377,"location":[-8.885765,39.14309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.886367,39.142468],"geometry_index":34378,"admin_index":14,"weight":6.406,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.75,"bearings":[37,222,228],"out":1,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.406,"geometry_index":34380,"location":[-8.888035,39.141149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,227],"duration":10.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.828,"geometry_index":34381,"location":[-8.888431,39.140868]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.891024,39.138862],"geometry_index":34384,"admin_index":14,"weight":1.844,"is_urban":false,"turn_weight":1,"duration":0.914,"bearings":[37,43,222],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,220],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.32,"geometry_index":34385,"location":[-8.891234,39.138683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":8.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.5,"geometry_index":34386,"location":[-8.89155,39.138392]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,213],"duration":13.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.125,"geometry_index":34390,"location":[-8.893474,39.136417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,212],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.844,"geometry_index":34393,"location":[-8.895989,39.133128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,216],"duration":5.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.102,"geometry_index":34394,"location":[-8.896366,39.132663]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,220],"duration":2.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2,"geometry_index":34395,"location":[-8.897504,39.131446]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,223],"duration":24.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.992,"geometry_index":34396,"location":[-8.898002,39.130992]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[42,222,227],"duration":21.445,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.828,"geometry_index":34401,"location":[-8.904213,39.126248]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.909443,39.122104],"geometry_index":34405,"admin_index":14,"weight":5.242,"is_urban":false,"turn_weight":1,"duration":4.594,"bearings":[48,53,233],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":15.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.039,"geometry_index":34407,"location":[-8.910822,39.121242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,238],"duration":175.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":153.93,"geometry_index":34410,"location":[-8.915219,39.118062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,191],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.656,"geometry_index":34452,"location":[-8.933241,39.074108]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,193],"duration":94.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":82.836,"geometry_index":34453,"location":[-8.933292,39.073902]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,212],"duration":8.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.125,"geometry_index":34476,"location":[-8.945945,39.050177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":72.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":67.391,"geometry_index":34478,"location":[-8.947418,39.048232]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,193],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.688,"geometry_index":34490,"location":[-8.960896,39.031352]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":8.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.922,"geometry_index":34491,"location":[-8.961032,39.030898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":7.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.164,"geometry_index":34493,"location":[-8.961625,39.028741]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.688,"geometry_index":34496,"location":[-8.962227,39.026846]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,199],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.32,"geometry_index":34497,"location":[-8.9624,39.02641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-8.962548,39.026072],"geometry_index":34498,"admin_index":14,"weight":2.547,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.555,"bearings":[19,199,217],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":6.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.586,"geometry_index":34499,"location":[-8.962823,39.025435]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.963693,39.023826],"geometry_index":34502,"admin_index":14,"weight":22.742,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.758,"bearings":[25,203,213],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.966075,39.01731],"geometry_index":34508,"admin_index":14,"weight":7.578,"is_urban":false,"turn_weight":1.3,"duration":6.148,"bearings":[7,185,358],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":7.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.102,"geometry_index":34510,"location":[-8.966234,39.015679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":3.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.219,"geometry_index":34513,"location":[-8.966402,39.013572]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":8.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.938,"geometry_index":34514,"location":[-8.966468,39.012772]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.966663,39.010515],"geometry_index":34515,"admin_index":14,"weight":5.781,"is_urban":false,"turn_weight":1,"duration":4.672,"bearings":[4,184,353],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":4.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.57,"geometry_index":34517,"location":[-8.96676,39.009296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":6.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.328,"geometry_index":34519,"location":[-8.966854,39.008128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.967004,39.006516],"geometry_index":34520,"admin_index":14,"weight":15.461,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.484,"bearings":[4,182,189],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true,false],"classes":["toll","motorway"],"in":0,"bearings":[4,181,359],"duration":2.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.055,"geometry_index":34524,"location":[-8.967323,39.002476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,184],"duration":6.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.648,"geometry_index":34525,"location":[-8.967334,39.001934]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,185],"duration":100.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":98.078,"geometry_index":34526,"location":[-8.967485,39.000199]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,207],"duration":7.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.328,"geometry_index":34536,"location":[-8.977678,38.975234]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,210],"duration":3.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.586,"geometry_index":34537,"location":[-8.978858,38.973431]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.979499,38.972574],"geometry_index":34538,"admin_index":14,"weight":8.797,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.273,"bearings":[30,217,227],"out":1,"in":0,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.981485,38.970767],"geometry_index":34540,"admin_index":14,"weight":2.969,"is_urban":false,"turn_weight":0.5,"duration":2.625,"bearings":[37,44,222],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,218],"duration":4.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.023,"geometry_index":34541,"location":[-8.982056,38.970282]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,212],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.516,"geometry_index":34543,"location":[-8.982856,38.969406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,206],"duration":17.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":16.508,"geometry_index":34544,"location":[-8.983136,38.969053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,191],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.547,"geometry_index":34550,"location":[-8.984617,38.964726]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,194],"duration":7.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.773,"geometry_index":34551,"location":[-8.984724,38.964304]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.985546,38.96253],"geometry_index":34554,"admin_index":14,"weight":5.562,"is_urban":false,"turn_weight":0.5,"duration":5.336,"bearings":[20,24,205],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,218],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.445,"geometry_index":34557,"location":[-8.986396,38.961348]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,222],"duration":7.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.375,"geometry_index":34558,"location":[-8.986698,38.961044]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,225],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.117,"geometry_index":34560,"location":[-8.988462,38.959624]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227],"duration":13.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.992,"geometry_index":34561,"location":[-8.988728,38.959417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,208],"duration":18.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.57,"geometry_index":34565,"location":[-8.992105,38.956308]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":26.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":24.906,"geometry_index":34571,"location":[-8.993465,38.951781]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,218],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.43,"geometry_index":34578,"location":[-8.995893,38.945454]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,222],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.516,"geometry_index":34579,"location":[-8.996203,38.945149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,224],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.922,"geometry_index":34580,"location":[-8.996785,38.944652]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,226],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.672,"geometry_index":34581,"location":[-8.997726,38.943895]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.997896,38.943768],"geometry_index":34582,"admin_index":14,"weight":5.25,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.531,"bearings":[46,226,241],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.999167,38.942788],"geometry_index":34584,"admin_index":14,"weight":4.328,"is_urban":false,"turn_weight":0.5,"duration":4.047,"bearings":[30,45,223],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,214],"duration":52.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":49.914,"geometry_index":34586,"location":[-9.000014,38.942018]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,211],"duration":6.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.094,"geometry_index":34597,"location":[-9.009217,38.930948]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,202],"duration":9.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.82,"geometry_index":34599,"location":[-9.010189,38.929517]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":4.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.266,"geometry_index":34600,"location":[-9.011329,38.92733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":45.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":44.25,"geometry_index":34601,"location":[-9.011862,38.926299]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,230],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.859,"geometry_index":34608,"location":[-9.021366,38.917547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,229],"duration":10.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.703,"geometry_index":34609,"location":[-9.021844,38.917235]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.805,"geometry_index":34610,"location":[-9.024547,38.915402]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,229],"duration":52.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":52.672,"geometry_index":34611,"location":[-9.025017,38.915091]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,231],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.242,"geometry_index":34614,"location":[-9.038312,38.906353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,228],"duration":17.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.727,"geometry_index":34615,"location":[-9.038866,38.906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,213],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.547,"geometry_index":34619,"location":[-9.042887,38.902912]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214],"duration":24.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":25.547,"geometry_index":34620,"location":[-9.043308,38.902398]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":2.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.648,"geometry_index":34624,"location":[-9.047069,38.896711]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.578,"geometry_index":34625,"location":[-9.047434,38.896112]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.047792,38.895524],"geometry_index":34626,"admin_index":14,"weight":6.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.992,"bearings":[25,206,227],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":3.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.164,"geometry_index":34627,"location":[-9.048611,38.894204]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.049039,38.893527],"geometry_index":34628,"admin_index":14,"weight":7.234,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.062,"bearings":[26,206,222],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.050174,38.891983],"geometry_index":34631,"admin_index":14,"weight":8.914,"is_urban":false,"turn_weight":1,"duration":7.727,"bearings":[18,33,213],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,221],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.555,"geometry_index":34633,"location":[-9.051559,38.890462]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,223],"duration":2.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.578,"geometry_index":34634,"location":[-9.05184,38.890214]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":4.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.547,"geometry_index":34635,"location":[-9.052313,38.889816]},{"bearings":[43,223],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34636,"location":[-9.053145,38.889117]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E01","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 01"}],"type":"fork","modifier":"left","text":"A 1 / E 01"},"distanceAlongGeometry":80990.148}],"destinations":"A 1: Lisboa, Santarém","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 1 toward Lisboa/Santarém.","modifier":"slight left","bearing_after":238,"bearing_before":234,"location":[-8.629275,39.477826]},"speedLimitSign":"vienna","name":"Autoestrada do Norte","weight_typical":2444.477,"duration_typical":2621.125,"duration":2621.125,"distance":80990.148,"driving_side":"right","weight":2444.477,"mode":"driving","ref":"A 1; E 01; E 80","geometry":"ccphjAt`umOpn@baBnRfh@zQx`@~L`MpMnEvMgBzI_FfUy_@do@arApMiSdMaO~g@m[bd@_K`u@cK`e@cEhk@_Bfn@]|x@zCbqAxKh}@hKj}@bKxoA|ItrAvH~bBfN`zBhVn~Bd^zvAdPxdA`HnkApDzkAlAnaBeD~dA}FpiAgK|lAoQp_Bu[ttBal@lfD_bArnAqWfz@mMv~@kI~|@mExt@m@lrAhAtk@fCrf@rExrAzP|bAnTbt@fRd~A|h@vjCrbAnfAn[jnAhXx{Djn@jvAtWpuAt^jdBzm@fhFh`C|y@xYp_AlTx`AnQpm@nG|}@bGlhB`FhlAnEdmAxKtlA~Rd_FngAh`BfWzy@fHbj@\\j`@Zpn@{Bdw@uFbs@_HtgAuVl[{Hdo@iSttA}p@xj@e^hjA}z@fmEcyDt~AseAftAuq@|p@kUvc@_Mr`AoQbgAuM`rAuFblBaAjlBJz{AwCzxDqPzAGbx@~@vw@|Gfu@nP|}@r[|p@j^zo@fg@jc@la@vc@ji@~g@lv@njAxrB`m@t_Ab`@pj@nl@pu@pdAtlA`cBfkBbrAxbBffBtbCh~@fqAlwBznCpm@dq@zt@`o@bt@zk@`mA|u@||@zd@zv@zZhhAn^fs@|PvbAfQv`AlLx|Ep^`p@tHdj@bKdq@|Otp@vUlq@h[dl@~[lcAxo@|dAdw@liHlfFdy@hh@jtBllArmB~jAfMfJ|_Ajr@`y@xo@bgAf~@bkAhiA`h@`j@vj@lo@tR`VbqC`hDxiA~jAd}@px@luA`fA~UxObn@ja@jiArp@neArm@beA~o@~LdJh|@`r@hiAjjAfn@pr@fLbNlTzWhdAflAfq@~r@xq@zm@xs@nk@vy@xj@zn@b\\~T~Lf[dOrjAbe@jWxIlf@zQnxAd\\x~Dbq@zk@nLpa@nIbv@dWfl@vZf|@rn@zw@zs@ve@nk@r`@`j@pb@fu@zT|d@vQh`@zRjn@fUtx@f[nuAp[dtAlg@xwBlUr`AhIfZ|IbZp`@nrAps@rxBf]~eAxl@hyB~p@rjCdh@`pB~Rft@nWt{@vLf_@`\\naAjWtq@vf@xkArk@dpApX|i@np@nnA|Pf[fi@v|@rs@fgAbRlVrm@zx@pT`Xr]pd@`eAhgAbq@lp@no@zk@~R~Pnf@l`@l[dVtVtQ~UbQ`f@|Zzk@z]bYrPtVpMnq@~^hMbGnzAbs@~_@dQf~@z`@`{@|`@hsAdm@rkCjlAzaBnu@vqAdq@dp@jc@b_@`Z~a@xb@ld@~i@zVf]hd@dx@|V|g@r_@x~@zLx_@tXleAxPj|@hNn}@dOdfA~Llz@xI~l@fLrq@zPv`AxQlw@lQpk@hQlj@dT`l@jSfg@`Wnk@xd@`{@x_@`l@rj@fv@`f@|i@vl@rl@bc@v`@fg@d]dHzElk@xYnp@n\\po@vXt{@hZp~@~[lz@vX`fAr^js@zYtqAzi@dt@b^pmAjp@js@|b@zoAbx@`vBrzAdpB~_BpiAjdAxo@zn@x`AdcAdv@t{@vnAf|AxmBfnCp|@buA~^rn@lr@hoAfRp]xb@d{@vr@d{A|v@hhBhh@xrAbTtj@ls@`vBj^hjAv|@~`Dxz@ltDfzAzpHlVleA|CzMdPrr@dv@vlCbu@jzBp`At`CddAnxB`xAvjC``AjvAr}AjuBzuA|`BtZ`Z`wCjlCnjCv}BrpCzuCpvAxhBhgAp~ArbA`dB`x@nzAbkAtlCn}BfbGfhArfCzKrUfh@zfAxpAhuB|{@|gAdmBb}B~xAbsBrs@brAz}@xjBdaB|uDxw@lxAt_Ah{AfiAxuA`bBnpBntA~fBv}@z|Arw@veBdm@vbBp[xgArs@xsBzy@hkBx|@n~Av}@xnAvuAlzArhAt~@|qA`y@bbBtdAbi@rb@ze@rd@t_@jd@vp@zaApPvW|^tj@b]jh@h~@~kAdJbLdQvRdGxGta@`d@vf@be@xg@fc@~w@ln@~y@dk@pxAp`A`\\pV`kAbfAj[b^ft@f~@pr@fgAvkAzlBxvAvnBbZ`^`aAtjAhxAd|Afq@vaAjt@fzAl[ho@lXzd@jf@tv@nlBxfCzp@hrAjl@d{Ale@liBlk@hgB|o@t{A`{@rfB~Pzd@zUzs@rU`fAnXj~ArR~w@p^fgArm@`nAvu@nbAxaA~}@b}@be@tmA~`@bpApN~tAtEb`BxAjuBuDz|BkL~mAaQzgAoWnaAi\\bA]ffAgg@`zAc{@pq@i_@z~@k\\x_AwOjw@qFbhANz|@bHp{@rSttAp`@teBve@djAxXdxAzXtrApQzuBnNnnCvNjf@bGzKdB`^`Hl_AlYdcArf@tl@|c@pj@bi@|s@v|@nq@vx@pw@`r@p}@ji@lu@lYrfBtd@bwCxu@tv@bPbbA~M~jBjJfcAtElo@tHd~@fRzt@nYlt@x`@zx@bn@x`Ar}@lv@pv@~r@lh@pdArq@lnAvw@reCb_BftAdfAd|A|vA`uErbFzz@x{@f_Avy@vu@vg@v~@~i@ddAtg@hcA|]hcAxZj[nGhj@vKnzAhWvUnEdVjEngAvWfZxIbTfHxf@dPdMvEpgAff@xLjGxr@~Zt^jQta@dPfrB`n@lhBpZjcAtIbp@~Dxs@|BzvAfFzRn@|Vv@~p@bC`lCdKld@`Bve@~Ax_@pAdg@hBvcBjHhm@dAzo@zBnmAfExmArFz`@TlkBlH`xAdHdbAbI~fCjZ`bCf`@xzClr@fcDjbAdbIrwCdfEvlB`sC`uAnqCzxAtoBvhApt@`g@d}@d|@vq@|}@h]tb@nSxSfa@d\\`UnP|m@j\\f]lNl^lLb`@dHpa@nFb}ArPjYtEpa@fJtk@xTr^hQlGzCtUfNvi@~_@~QzQ`w@x_At_@ll@|KrOzh@px@vw@jgA~cAt{@tYlSld@fXj[rNp]|LzcA~Sr`AfG`s@\\jgAx@tfAtHhhAbUj_Ad_@hu@fa@|\\bXl\\pY`RjR`^jc@hn@xy@|FrI~a@~l@fYl`@rUxYnXbYhj@zd@zRpMph@n\\|PfKf{EdtChy@bh@ft@nk@dl@`o@jfBlsBjl@rl@lj@`c@rj@z`@xl@zYtgCffAl_Ah`@xh@lT|p@n]ft@xj@dt@~y@vfCl`Dp`CfdDnrApoBnRz\\pqB|gDlRj\\xi@n}@`aGrjKftFxsJ`Ura@pVda@n}@lyA|y@|hA~n@vs@b_@hYjh@nb@t|@jk@pdBj~@xuCxzAld@xUvc@jUnqAdr@hi@vYd]hR~\\hThc@h]b}@~r@|_@pa@nNpPzWp\\tj@~r@dN~P"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 8 miles.","announcement":"Continue for 8 miles.","distanceAlongGeometry":12030.932},{"ssmlAnnouncement":"In 1 mile, Take exit 1.","announcement":"In 1 mile, Take exit 1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 1.","announcement":"In a half mile, Take exit 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 1 onto A 36 toward A 12. Then Keep left to take E 01.","announcement":"Take exit 1 onto A 36 toward A 12. Then Keep left to take E 01.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[false,true,true,true],"classes":["toll","motorway"],"in":0,"bearings":[43,205,227,246],"duration":10.688,"turn_duration":0.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.883,"geometry_index":34637,"location":[-9.053433,38.888874]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,227],"duration":8.914,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.133,"geometry_index":34641,"location":[-9.05465,38.887659]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.056106,38.886965],"geometry_index":34643,"admin_index":14,"weight":2.922,"is_urban":false,"turn_weight":1.5,"duration":1.469,"bearings":[20,32,48,69,230],"out":4,"in":3,"turn_duration":0.083,"classes":["motorway"],"entry":[false,false,false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,227],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.289,"geometry_index":34644,"location":[-9.056389,38.886779]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[1,47,227],"duration":1.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":1.508,"geometry_index":34645,"location":[-9.05663,38.886603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.711,"geometry_index":34646,"location":[-9.056916,38.886393]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2,"geometry_index":34647,"location":[-9.057438,38.886025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,224],"duration":30.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":31.344,"geometry_index":34648,"location":[-9.057811,38.88574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,208],"duration":1.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.047,"geometry_index":34654,"location":[-9.063277,38.879722]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":32.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":33.781,"geometry_index":34655,"location":[-9.063576,38.879276]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.445,"geometry_index":34659,"location":[-9.068896,38.871793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,217],"duration":87.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":91.68,"geometry_index":34660,"location":[-9.069303,38.871294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,210],"duration":8.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.414,"geometry_index":34681,"location":[-9.085191,38.853834]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.086492,38.852068],"geometry_index":34682,"admin_index":14,"weight":26.352,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.102,"bearings":[30,210,217],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.09058,38.846601],"geometry_index":34684,"admin_index":14,"weight":9.016,"is_urban":true,"turn_weight":0.5,"duration":7.93,"bearings":[21,30,210],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,208],"duration":76.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":82.656,"geometry_index":34685,"location":[-9.092097,38.844548]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[12,192,351],"duration":10.445,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":11.203,"geometry_index":34693,"location":[-9.099509,38.822378]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":21.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":23.547,"geometry_index":34694,"location":[-9.100144,38.819956]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,192],"duration":17.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":18.984,"geometry_index":34697,"location":[-9.101471,38.814867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":3.594,"geometry_index":34705,"location":[-9.102748,38.810807]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":6.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":7.203,"geometry_index":34706,"location":[-9.103064,38.810036]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[20,201,234],"duration":3.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":3.461,"geometry_index":34708,"location":[-9.103719,38.808587]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[21,202,348],"duration":29.195,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":32.109,"geometry_index":34709,"location":[-9.104069,38.807891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":12.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":13.547,"geometry_index":34715,"location":[-9.107729,38.801746]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":17.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":19.984,"geometry_index":34716,"location":[-9.109175,38.799383]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":11.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":12.961,"geometry_index":34718,"location":[-9.111061,38.796298]},{"bearings":[25,206],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"geometry_index":34720,"location":[-9.112257,38.794344]}],"bannerInstructions":[{"secondary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A12","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 12"}],"type":"off ramp","modifier":"right","text":"A 12"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"Exit 1 A 36"},"distanceAlongGeometry":12070.932},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["straight","slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A12","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 12"}],"type":"off ramp","modifier":"right","text":"A 12"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"Exit 1 A 36"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 1/E 01/E 80/Autoestrada do Norte.","modifier":"slight left","bearing_after":205,"bearing_before":223,"location":[-9.053433,38.888874]},"speedLimitSign":"vienna","name":"Autoestrada do Norte","weight_typical":469.398,"duration_typical":438.867,"duration":438.867,"distance":12070.932,"driving_side":"right","weight":469.398,"mode":"driving","ref":"A 1; E 01; E 80","geometry":"syqdiApnqgPrUfLfGnDnFxEpd@nq@tZve@tNfs@rJtP~I`NbLzP~Ur_@xPhVtk@~u@tl@~s@nr@vq@ft@|o@`_Cj~A|s@pe@zZtQjy@lj@zQ~L~xDtaClkEjoCd^lXlk@vj@l~@fjAfg@z_A|l@vqArj@xeBjn@jbBr]nv@xg@rw@nm@lq@dn@`i@t{@lh@npAde@x`Brg@zbD`bAdc@nNfe@jPta@~Ol`@~Qdb@tTlZpQ~^bVjmBhpAdeD|{BnnDpaCh_Cx}A~fCt}A~~@hc@n}@tZziAtXleOxiC~sIvyArpCjd@dj@|JjvCtf@|yFz`ApSdDpm@zJxbAfQr`@nHb`@dIzQ~DfXfGxX~GpW`HtWpHdo@vR~aAv\\pVdJnj@zTlSnIzRtIfXzLfXnMvqChxAnqCzxAtrCjyAlkArm@jsBffArqBdeAnFpCpj@vY"},{"ref":"E 01","mode":"driving","weight":8.062,"distance":110.29,"geometry":"}yw~hAxeekPnd@t`@jChCnAnAtDdE","duration":7.023,"driving_side":"right","duration_typical":7.023,"weight_typical":8.062,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 1 onto A 36 toward A 12.","modifier":"slight right","bearing_after":215,"bearing_before":206,"location":[-9.112685,38.793647]},"speedLimitUnit":"km/h","destinations":"A 36, A 12, IC 17, IP 7, A 2: CRIL, Eixo N-S, Sul, Parque das Nações","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Moscavide"}],"type":"fork","modifier":"left","text":"Moscavide"},"distanceAlongGeometry":110.29}],"exits":"1","voiceInstructions":[{"ssmlAnnouncement":"Keep left to take E 01 toward Moscavide.","announcement":"Keep left to take E 01 toward Moscavide.","distanceAlongGeometry":82.29}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-9.112685,38.793647],"geometry_index":34721,"admin_index":14,"weight":5.953,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":5.195,"bearings":[26,206,215],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":false}],"bearings":[35,219],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"geometry_index":34722,"location":[-9.113224,38.793047]}]},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep right toward Moscavide.","announcement":"In a half mile, Keep right toward Moscavide.","distanceAlongGeometry":1079.798},{"ssmlAnnouncement":"Keep right toward Moscavide.","announcement":"Keep right toward Moscavide.","distanceAlongGeometry":130.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-9.113432,38.792846],"geometry_index":34725,"admin_index":14,"weight":2.383,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.086,"bearings":[39,225,239],"out":1,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,232],"duration":8.125,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":9.344,"geometry_index":34728,"location":[-9.113751,38.792612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":8.016,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":9.219,"geometry_index":34735,"location":[-9.115034,38.791726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,199],"duration":3.227,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":3.711,"geometry_index":34742,"location":[-9.116059,38.790688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,197],"duration":3.859,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":4.531,"geometry_index":34743,"location":[-9.116259,38.790246]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-9.116393,38.789718],"geometry_index":34747,"admin_index":14,"weight":3.57,"is_urban":true,"turn_weight":0.75,"duration":2.453,"bearings":[6,172,358],"out":1,"in":0,"turn_duration":0.052,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,345],"duration":7.945,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":9.336,"geometry_index":34749,"location":[-9.116301,38.789386]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,281],"duration":18.461,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":21.688,"geometry_index":34759,"location":[-9.115164,38.788738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":2.734,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":3.219,"geometry_index":34783,"location":[-9.111867,38.787787]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,310],"duration":2.18,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":2.562,"geometry_index":34784,"location":[-9.111389,38.78747]},{"bearings":[127,311],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34785,"location":[-9.111021,38.787218]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Moscavide"}],"type":"fork","modifier":"right","text":"Moscavide"},"distanceAlongGeometry":1107.798}],"destinations":"A 12, IC 2: Moscavide, Sacavém, Sul (Ponte Vasco da Gama)","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E 01 toward Moscavide.","modifier":"slight left","bearing_after":225,"bearing_before":219,"location":[-9.113432,38.792846]},"speedLimitSign":"vienna","name":"","weight_typical":73.969,"duration_typical":62.836,"duration":62.836,"distance":1107.798,"driving_side":"right","weight":73.969,"mode":"driving","ref":"E 01","geometry":"{gv~hAntfkPpD~EtCjEjCpEvDdHtDjHdDzFhDbGhFtI`J|M`N~R`N`S~GpJjGzGpGrFdF~D|F`DvGzCrZnKpFnBlEx@bFv@zJh@|KiAxFmBlHcElDwC|DuEfDkFzC}GnBsGfByHr@mGReDPcDBiEC_GQqFc@qIYgHOyEQkEKiFEuGLmId@uHp@{Fv@uFnAeGnBgGlBqFjC}FxCwFnCeFrDiGbDsFfFuIjGmKbHqLxR{\\vN_VdIaPbMoY"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take IC 2.","announcement":"In a quarter mile, Keep left to take IC 2.","distanceAlongGeometry":420.639},{"ssmlAnnouncement":"Keep left to take IC 2, A 30 toward Lisboa, Moscavide.","announcement":"Keep left to take IC 2, A 30 toward Lisboa, Moscavide.","distanceAlongGeometry":196}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[117,126,304],"duration":21.812,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":14,"out":1,"weight":25.625,"geometry_index":34787,"location":[-9.110324,38.786829]},{"bearings":[163,341],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34804,"location":[-9.106928,38.784323]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Lisboa"},{"type":"text","text":"/"},{"type":"text","text":"Moscavide"}],"type":"fork","modifier":"left","text":"Lisboa / Moscavide"},"distanceAlongGeometry":448.639}],"destinations":"Moscavide, Lisboa, Sacavém, Alverca","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right toward Moscavide.","modifier":"slight right","bearing_after":126,"bearing_before":124,"location":[-9.110324,38.786829]},"speedLimitSign":"vienna","name":"","weight_typical":27.562,"duration_typical":23.43,"duration":23.43,"distance":448.639,"driving_side":"right","weight":27.562,"mode":"driving","geometry":"yoj~hAfr`kPfQ{^xG_PvUgk@xSkg@fKoUtBsDxCmE|C_EhCuC~BaC|D{C`EsCdEcC`FeCbEuAjHaCfJ{CpOuE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2160.255},{"ssmlAnnouncement":"In a half mile, Keep left toward Centro.","announcement":"In a half mile, Keep left toward Centro.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left toward Centro, Zona Portuária.","announcement":"Keep left toward Centro, Zona Portuária.","distanceAlongGeometry":129.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[147,163,343],"duration":15.555,"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"turn_duration":0.071,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":14,"out":0,"weight":18.578,"geometry_index":34805,"location":[-9.106821,38.784058]},{"entry":[true,false,false],"in":1,"bearings":[174,344,353],"duration":3.148,"turn_weight":11.75,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":15.508,"geometry_index":34821,"location":[-9.10546,38.781594]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":9.68,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":11.617,"geometry_index":34822,"location":[-9.105377,38.780993]},{"entry":[false,true,true],"in":0,"bearings":[6,177,197],"duration":8.398,"turn_duration":0.036,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":9.828,"geometry_index":34827,"location":[-9.105407,38.779143]},{"entry":[false,true],"in":0,"bearings":[3,182],"duration":5.461,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":6.414,"geometry_index":34832,"location":[-9.105496,38.777855]},{"entry":[false,true],"in":0,"bearings":[1,181],"duration":8.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":10.234,"geometry_index":34835,"location":[-9.105526,38.777011]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[1,181],"duration":4.875,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":5.852,"geometry_index":34838,"location":[-9.105549,38.775666]},{"mapbox_streets_v8":{"class":"trunk"},"location":[-9.105546,38.774914],"geometry_index":34840,"admin_index":14,"weight":7.648,"is_urban":true,"turn_weight":5,"duration":2.227,"bearings":[174,182,358],"out":0,"in":2,"turn_duration":0.022,"classes":["tunnel"],"entry":[true,true,false]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[171,354],"duration":5.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":6.688,"geometry_index":34841,"location":[-9.105509,38.77465]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[159,341],"duration":8.117,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":9.539,"geometry_index":34843,"location":[-9.105244,38.773949]},{"entry":[true,false],"in":1,"bearings":[176,344],"duration":19.625,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":23.062,"geometry_index":34846,"location":[-9.104858,38.773049]},{"entry":[true,false,false],"in":2,"bearings":[176,341,356],"duration":11.102,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":14.039,"geometry_index":34847,"location":[-9.104679,38.771]},{"entry":[true,false],"in":1,"bearings":[175,355],"duration":26.961,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":31.008,"geometry_index":34849,"location":[-9.104547,38.769649]},{"entry":[true,false],"in":1,"bearings":[175,355],"duration":9.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":10.633,"geometry_index":34850,"location":[-9.104223,38.766493]},{"entry":[true,false,false],"in":2,"bearings":[176,344,355],"duration":2.812,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":3.727,"geometry_index":34852,"location":[-9.104086,38.76516]},{"bearings":[177,282,356],"entry":[true,false,false],"in":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34853,"location":[-9.104052,38.764813]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Centro"},{"type":"text","text":"/"},{"type":"text","text":"Zona Portuária"}],"type":"fork","modifier":"left","text":"Centro / Zona Portuária"},"distanceAlongGeometry":2188.255}],"destinations":"Lisboa, Moscavide","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take IC 2/A 30 toward Lisboa/Moscavide.","modifier":"slight left","bearing_after":147,"bearing_before":163,"location":[-9.106821,38.784058]},"speedLimitSign":"vienna","name":"","weight_typical":184.789,"duration_typical":141.859,"duration":141.859,"distance":2188.255,"driving_side":"right","weight":184.789,"mode":"driving","ref":"IC 2; A 30","geometry":"sbe~hAhwyjPlNuKvEgCdCgBhEcDbK}HpDqC~DmCzEuCzFwCjGkCbG{BnEsAbFoAdH}AhFy@fc@gLpd@eDbOeAjSoAtRBnSj@|e@`DrK]dWvA`S~@vOf@zEN~ENrUZbVN|UNfe@FzUTnUTnW[nOiAvKoA`^aMjU}IbDkAv[yI`_CeJbe@qBhm@uCfdEgSbg@eCdj@kCtTcA~AE"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep left to stay on Avenida Infante Dom Henrique.","announcement":"In a half mile, Keep left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":765.402},{"ssmlAnnouncement":"Keep left to stay on Avenida Infante Dom Henrique.","announcement":"Keep left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":154.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[175,182,357],"duration":14.586,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":16.75,"geometry_index":34854,"location":[-9.104049,38.764765]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[176,356],"duration":3.961,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":4.555,"geometry_index":34856,"location":[-9.103886,38.763174]},{"entry":[true,false],"in":1,"bearings":[175,356],"duration":15.383,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":17.305,"geometry_index":34857,"location":[-9.103837,38.762679]},{"entry":[false,true,false],"in":0,"bearings":[1,175,346],"duration":6.047,"turn_weight":1,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":7.773,"geometry_index":34860,"location":[-9.103652,38.760571]},{"entry":[true,true,false],"in":2,"bearings":[176,265,355],"duration":2.039,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":2.281,"geometry_index":34863,"location":[-9.103566,38.759745]},{"entry":[true,true,false],"in":2,"bearings":[175,266,356],"duration":0.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":0.297,"geometry_index":34864,"location":[-9.103538,38.759466]},{"entry":[true,false,false],"in":2,"bearings":[175,266,355],"duration":8.578,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":9.648,"geometry_index":34865,"location":[-9.103534,38.759433]},{"entry":[true,false],"in":1,"bearings":[175,355],"duration":3.531,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":3.977,"geometry_index":34866,"location":[-9.103415,38.758263]},{"bearings":[177,266,355],"entry":[true,true,false],"in":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34867,"location":[-9.103361,38.757783]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"fork","modifier":"left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":789.736}],"destinations":"Centro, Zona Portuária","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Centro/Zona Portuária.","modifier":"slight left","bearing_after":175,"bearing_before":177,"location":[-9.104049,38.764765]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":63.336,"duration_typical":55.078,"duration":55.078,"distance":789.736,"driving_side":"right","weight":63.336,"mode":"driving","geometry":"yl_}hA`jtjP|lAcGnTaA|]aBtuAaIrWy@lSHfBIrb@wBvKi@lPw@`AGbhAmF~\\kBrDM"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Enter the roundabout and take the 2nd exit toward Zona Portuária.","announcement":"In a half mile, Enter the roundabout and take the 2nd exit toward Zona Portuária.","distanceAlongGeometry":848.407},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit toward Zona Portuária, Santa Apolónia.","announcement":"Enter the roundabout and take the 2nd exit toward Zona Portuária, Santa Apolónia.","distanceAlongGeometry":186.556}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[172,183,357],"duration":10.695,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":11.734,"geometry_index":34868,"location":[-9.103354,38.757693]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[176,356],"duration":7.875,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":8.664,"geometry_index":34870,"location":[-9.103183,38.756267]},{"entry":[true,false],"in":1,"bearings":[176,356],"duration":12.742,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":14.016,"geometry_index":34871,"location":[-9.103089,38.755323]},{"entry":[false,false,true],"in":1,"bearings":[1,16,195],"duration":8.211,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":10.023,"geometry_index":34876,"location":[-9.103226,38.753685]},{"entry":[false,true,false],"in":0,"bearings":[20,201,294],"duration":4.273,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":4.695,"geometry_index":34879,"location":[-9.103565,38.752843]},{"entry":[false,true,true],"in":0,"bearings":[21,201,283],"duration":6.758,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":7.422,"geometry_index":34880,"location":[-9.103773,38.752416]},{"entry":[false,true,true],"in":0,"bearings":[21,202,228],"duration":3.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":3.469,"geometry_index":34881,"location":[-9.103961,38.752036]},{"entry":[false,false,true,false],"in":0,"bearings":[22,108,204,289],"duration":2.57,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":0.617,"geometry_index":34883,"location":[-9.104082,38.751802]},{"entry":[false,false,true,true],"in":0,"bearings":[24,130,204,290],"duration":0.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":0.75,"geometry_index":34884,"location":[-9.104105,38.751761]},{"entry":[false,false,true,false],"in":0,"bearings":[24,99,204,289],"duration":2.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":2.672,"geometry_index":34885,"location":[-9.104136,38.751706]},{"entry":[false,true,false],"in":0,"bearings":[24,199,341],"duration":15.547,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":17.07,"geometry_index":34886,"location":[-9.104252,38.751501]},{"entry":[false,true,true],"in":0,"bearings":[21,213,349],"duration":1.891,"turn_duration":0.015,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":2.062,"geometry_index":34891,"location":[-9.104684,38.750433]},{"bearings":[33,131,247],"entry":[false,false,true],"in":0,"turn_duration":0.067,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"geometry_index":34893,"location":[-9.104768,38.750333]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Zona Portuária"},{"type":"text","text":"/"},{"type":"text","text":"Santa Apolónia"}],"degrees":194,"driving_side":"right","type":"roundabout","modifier":"right","text":"Zona Portuária / Santa Apolónia"},"distanceAlongGeometry":872.74}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Avenida Infante Dom Henrique.","modifier":"slight left","bearing_after":172,"bearing_before":177,"location":[-9.103354,38.757693]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":87.312,"duration_typical":80.656,"duration":80.656,"distance":872.74,"driving_side":"right","weight":87.312,"mode":"driving","geometry":"yrq|hAr~rjPvWqCj_AcE~y@{Dt\\sAvS?zRnAzNzAdOxDpWfGjWfJtBt@tY~KvVvJpDvA`HxCpAl@lB|@xKfFr\\lLnHxApQnD|Aj@bEzBpBpAtAtA|@zA|@fCr@|H"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward Zona Portuária, Santa Apolónia.","announcement":"Exit the roundabout toward Zona Portuária, Santa Apolónia.","distanceAlongGeometry":74}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[69,131,264],"duration":3.906,"turn_weight":5.75,"turn_duration":0.02,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":2,"weight":10.023,"geometry_index":34896,"location":[-9.105041,38.750245]},{"entry":[false,true],"in":0,"bearings":[81,214],"duration":3.891,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":1,"weight":4.273,"geometry_index":34898,"location":[-9.105342,38.750215]},{"entry":[false,true,true],"in":0,"bearings":[31,164,259],"duration":8.93,"turn_duration":0.671,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":1,"weight":9.086,"geometry_index":34900,"location":[-9.105505,38.750016]},{"bearings":[110,265,319],"entry":[true,false,false],"in":2,"turn_duration":0.178,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34903,"location":[-9.105305,38.749729]}],"destinations":"Zona Portuária, Santa Apolónia","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Zona Portuária"},{"type":"text","text":"/"},{"type":"text","text":"Santa Apolónia"}],"degrees":194,"driving_side":"right","type":"roundabout","modifier":"right","text":"Zona Portuária / Santa Apolónia"},"distanceAlongGeometry":99.493}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit toward Zona Portuária/Santa Apolónia.","modifier":"slight right","bearing_after":264,"bearing_before":249,"location":[-9.105041,38.750245]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":24.586,"duration_typical":18,"duration":18,"distance":99.493,"driving_side":"right","weight":24.586,"mode":"driving","geometry":"iac|hA`hvjPUtHpAbHhDzEbFhBdFWjEmCjCiFh@wC"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Enter the roundabout and take the 1st exit onto Rua do Mar.","announcement":"In a half mile, Enter the roundabout and take the 1st exit onto Rua do Mar.","distanceAlongGeometry":924.812},{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit onto Rua do Mar.","announcement":"Enter the roundabout and take the 1st exit onto Rua do Mar.","distanceAlongGeometry":183.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[80,170,290],"duration":1.398,"turn_weight":5,"turn_duration":0.371,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":1,"weight":6.133,"geometry_index":34904,"location":[-9.105229,38.749708]},{"entry":[false,true,false],"in":2,"bearings":[79,169,350],"duration":3.398,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":1,"weight":3.633,"geometry_index":34905,"location":[-9.105202,38.749584]},{"entry":[false,true],"in":0,"bearings":[5,181],"duration":24.906,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":1,"weight":26.773,"geometry_index":34907,"location":[-9.105172,38.749178]},{"entry":[true,false],"in":1,"bearings":[160,343],"duration":4.773,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":0,"weight":5.133,"geometry_index":34911,"location":[-9.104571,38.746196]},{"entry":[true,true,false],"in":2,"bearings":[149,227,331],"duration":1.242,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":0,"weight":1.312,"geometry_index":34913,"location":[-9.104264,38.745668]},{"entry":[true,false,false],"in":2,"bearings":[143,256,329],"duration":27.664,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":0,"weight":30.016,"geometry_index":34914,"location":[-9.104159,38.745534]},{"entry":[true,false,false],"in":2,"bearings":[108,220,288],"duration":4.039,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":0,"weight":4.227,"geometry_index":34926,"location":[-9.101692,38.744299]},{"entry":[true,true,true,false],"in":3,"bearings":[21,110,200,289],"duration":3.867,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.953,"geometry_index":34928,"location":[-9.101283,38.744191]},{"entry":[false,true,false,false],"in":3,"bearings":[18,110,199,290],"duration":14.281,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":14.633,"geometry_index":34930,"location":[-9.101121,38.744145]},{"entry":[true,false,false],"in":2,"bearings":[131,282,295],"duration":0.766,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":0,"weight":0.766,"geometry_index":34933,"location":[-9.099883,38.743771]},{"bearings":[39,153,221,311],"entry":[false,true,false,false],"in":3,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34935,"location":[-9.099829,38.743735]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua do Mar"}],"degrees":80,"driving_side":"right","type":"roundabout","modifier":"right","text":"Rua do Mar"},"distanceAlongGeometry":943.812}],"destinations":"Zona Portuária, Santa Apolónia","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward Zona Portuária/Santa Apolónia.","modifier":"right","bearing_after":170,"bearing_before":110,"location":[-9.105229,38.749708]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":98.141,"duration_typical":89.844,"duration":89.844,"distance":943.812,"driving_side":"right","weight":98.141,"mode":"driving","geometry":"w_b|hAxsvjPvFu@nKeBzKh@zp@l@xg@_Ere@wI`x@gUnPiGnN{IjGqEtKkKpAuAdAmAtAgBnTyZr@iAn@iAn@mA`A}BhFcPrLcm@|Fk^tCuQ`A{EjAsGNo@|Jei@`Ha]jAcD|@_BHKn@}@|@{@t@m@bA]tAO`AF~@R"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Rua do Mar.","announcement":"Exit the roundabout onto Rua do Mar.","distanceAlongGeometry":71.778}],"intersections":[{"entry":[false,true,false],"in":2,"bearings":[20,199,350],"duration":3.914,"turn_weight":5.75,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":14,"out":1,"weight":9.719,"geometry_index":34942,"location":[-9.099736,38.743511]},{"entry":[false,true,false],"in":0,"bearings":[18,200,291],"duration":3.352,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":14,"out":1,"weight":3.43,"geometry_index":34944,"location":[-9.099893,38.743142]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[20,201],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34945,"location":[-9.100048,38.742812]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua do Mar"}],"degrees":80,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Rua do Mar"},"distanceAlongGeometry":122.526}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":1,"instruction":"Enter the roundabout and take the 1st exit onto Rua do Mar.","modifier":"slight right","bearing_after":199,"bearing_before":170,"location":[-9.099736,38.743511]},"speedLimitSign":"vienna","name":"Rua do Mar","weight_typical":16.664,"duration_typical":10.695,"duration":10.695,"distance":122.526,"driving_side":"right","weight":16.664,"mode":"driving","geometry":"m|u{hAn|kjPdNvEzF`BrStHbI`DzIjD"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4292.599},{"ssmlAnnouncement":"In a half mile, Bear left onto Avenida Infante Dom Henrique.","announcement":"In a half mile, Bear left onto Avenida Infante Dom Henrique.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Bear left. Then Bear left to stay on Avenida Infante Dom Henrique.","announcement":"Bear left. Then Bear left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":158.333}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[21,190,202],"duration":3.32,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.398,"geometry_index":34947,"location":[-9.100215,38.742476]},{"entry":[false,true,true],"in":0,"bearings":[22,199,289],"duration":0.891,"turn_weight":5,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":5.883,"geometry_index":34948,"location":[-9.100367,38.742184]},{"entry":[false,false,true,false],"in":0,"bearings":[19,110,206,290],"duration":14.984,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":15.352,"geometry_index":34949,"location":[-9.100411,38.742086]},{"entry":[false,true,true],"in":0,"bearings":[26,206,283],"duration":29.188,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":29.906,"geometry_index":34952,"location":[-9.101514,38.740432]},{"entry":[false,false,true,false],"in":0,"bearings":[21,110,199,289],"duration":1.344,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.359,"geometry_index":34956,"location":[-9.102981,38.737913]},{"entry":[false,false,true,true],"in":0,"bearings":[19,172,200,283],"duration":21.906,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":24.445,"geometry_index":34957,"location":[-9.103035,38.73779]},{"entry":[false,true,true,true],"in":0,"bearings":[12,68,194,251],"duration":1.898,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.938,"geometry_index":34961,"location":[-9.103706,38.735899]},{"entry":[false,true,false],"in":0,"bearings":[14,191,307],"duration":30.414,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":30.391,"geometry_index":34963,"location":[-9.103764,38.735713]},{"entry":[false,true,true],"in":0,"bearings":[24,202,297],"duration":8.727,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":8.703,"geometry_index":34969,"location":[-9.104744,38.732553]},{"entry":[false,true,true],"in":0,"bearings":[25,209,298],"duration":2.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.898,"geometry_index":34971,"location":[-9.105208,38.731691]},{"entry":[false,false,true,false],"in":0,"bearings":[29,118,209,296],"duration":21.422,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":21.398,"geometry_index":34972,"location":[-9.105366,38.731466]},{"entry":[false,true,false],"in":0,"bearings":[30,211,253],"duration":2.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.969,"geometry_index":34974,"location":[-9.106574,38.72979]},{"entry":[false,true,true,true],"in":0,"bearings":[32,121,213,301],"duration":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.023,"geometry_index":34976,"location":[-9.106745,38.729571]},{"entry":[false,false,true,false],"in":0,"bearings":[33,127,214,303],"duration":30.648,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":31.406,"geometry_index":34977,"location":[-9.106828,38.729472]},{"entry":[false,true,true],"in":0,"bearings":[46,222,304],"duration":1.703,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.719,"geometry_index":34983,"location":[-9.109924,38.726826]},{"entry":[false,true,false],"in":0,"bearings":[42,217,303],"duration":19.055,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":19.508,"geometry_index":34985,"location":[-9.110033,38.72673]},{"entry":[false,true,true],"in":0,"bearings":[34,216,306],"duration":2.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.461,"geometry_index":34988,"location":[-9.111259,38.725369]},{"entry":[false,true,true],"in":0,"bearings":[36,215,303],"duration":4,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":4.078,"geometry_index":34989,"location":[-9.111328,38.725294]},{"entry":[false,true,true],"in":0,"bearings":[35,214,303],"duration":2.062,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.094,"geometry_index":34990,"location":[-9.11147,38.725138]},{"entry":[false,false,true,true],"in":0,"bearings":[34,125,214,306],"duration":1.055,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.07,"geometry_index":34992,"location":[-9.111578,38.725013]},{"entry":[false,true,true,false],"in":0,"bearings":[34,127,215,304],"duration":1.617,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.148,"geometry_index":34993,"location":[-9.111637,38.724945]},{"entry":[false,true,false],"in":0,"bearings":[35,214,344],"duration":18.648,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":19.844,"geometry_index":34995,"location":[-9.111749,38.724821]},{"entry":[false,true,true],"in":0,"bearings":[34,214,300],"duration":16.102,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":16.5,"geometry_index":34997,"location":[-9.113273,38.723048]},{"entry":[false,true,true],"in":0,"bearings":[34,214,237],"duration":1.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.062,"geometry_index":35000,"location":[-9.114793,38.721285]},{"entry":[false,true],"in":0,"bearings":[34,214],"duration":32.703,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":33.516,"geometry_index":35001,"location":[-9.114887,38.721177]},{"entry":[false,false,true,true],"in":0,"bearings":[35,153,213,306],"duration":1.219,"turn_weight":2,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.258,"geometry_index":35003,"location":[-9.116288,38.719549]},{"entry":[false,true,true,false],"in":0,"bearings":[33,99,215,304],"duration":16.539,"turn_weight":1.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":18.438,"geometry_index":35004,"location":[-9.116346,38.719479]},{"entry":[false,true],"in":0,"bearings":[40,222],"duration":8.305,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":8.516,"geometry_index":35008,"location":[-9.11775,38.71803]},{"entry":[false,false,true],"in":1,"bearings":[30,42,221],"duration":4.594,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":4.688,"geometry_index":35009,"location":[-9.118668,38.717221]},{"entry":[false,true],"in":0,"bearings":[41,221],"duration":1.273,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.305,"geometry_index":35011,"location":[-9.119126,38.716806]},{"entry":[false,false,true],"in":0,"bearings":[41,131,220],"duration":18.07,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":16.453,"geometry_index":35012,"location":[-9.119252,38.716692]},{"entry":[false,true,true],"in":0,"bearings":[40,219,239],"duration":10.672,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":10.93,"geometry_index":35013,"location":[-9.120839,38.715227]},{"entry":[false,false,true,true],"in":1,"bearings":[14,39,160,220],"duration":12.008,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":14.297,"geometry_index":35014,"location":[-9.121397,38.714692]},{"entry":[false,false,true],"in":0,"bearings":[40,135,220],"duration":6.406,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":4.508,"geometry_index":35015,"location":[-9.121843,38.714281]},{"entry":[false,true],"in":0,"bearings":[40,220],"duration":5.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":5.531,"geometry_index":35016,"location":[-9.122005,38.714132]},{"entry":[false,true],"in":0,"bearings":[40,221],"duration":19.203,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":19.68,"geometry_index":35017,"location":[-9.122207,38.713946]},{"entry":[false,false,true,false],"in":0,"bearings":[41,130,226,308],"duration":17.609,"turn_duration":2.01,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":15.992,"geometry_index":35020,"location":[-9.122929,38.713291]},{"entry":[false,true,false],"in":0,"bearings":[46,246,334],"duration":2.023,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.047,"geometry_index":35023,"location":[-9.123555,38.712795]},{"entry":[true,false,false,true],"in":1,"bearings":[13,66,214,233],"duration":7.094,"turn_weight":2,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":9.227,"geometry_index":35024,"location":[-9.12366,38.712758]},{"entry":[false,false,true],"in":1,"bearings":[34,42,218],"duration":7.555,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":7.719,"geometry_index":35027,"location":[-9.124049,38.712474]},{"entry":[false,true,true],"in":0,"bearings":[47,235,276],"duration":10.984,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":11.242,"geometry_index":35031,"location":[-9.124402,38.71217]},{"entry":[false,true,true],"in":0,"bearings":[48,68,239],"duration":3.18,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.242,"geometry_index":35033,"location":[-9.124972,38.711812]},{"entry":[false,true,false],"in":0,"bearings":[59,240,328],"duration":26.219,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":26.859,"geometry_index":35034,"location":[-9.125259,38.711675]},{"bearings":[58,206,266,325],"entry":[false,false,true,false],"in":0,"turn_weight":2,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"geometry_index":35037,"location":[-9.127064,38.710853]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":4317.599},{"sub":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":804.672}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Rua do Mar.","modifier":"straight","bearing_after":202,"bearing_before":201,"location":[-9.100215,38.742476]},"speedLimitSign":"vienna","name":"Rua do Mar","weight_typical":475.188,"duration_typical":451.508,"duration":451.508,"distance":4317.599,"driving_side":"right","weight":475.188,"mode":"driving","geometry":"w{s{hAlzljPfQnHbEvApDzAtn@ta@bq@j^ldBh}@za@~QxQjHhA^tFjB|R`H`VfHrj@|Mp^tGtEbA|Cn@b]lFb}@vOlk@~Jdd@~JxCdAxQzI|o@nX|CnB`MzHl`Adm@hf@h\\bAp@pJbHdEdDtTvQ~BfC~CzCpi@hl@jG|IvrAjlBzAlBbBjBhTxSjBdBj{@rs@tChCvHzG~ArAxCbCfCtBxApA|ClCpTnQfxAvkAzD`D~HpGh}AjpAvEzDf{AdnAnHjGjCrBvBtB`c@h^n`@da@fPpQpq@jx@lUvWnBzBbFzFpzAdbBl`@za@tXzZhHbIrJrKbLtMfPzQpIpJ`LjPlM|NnBxDhApErApD~AtCbK`MjGlGlBpB`D`FbA~AxH|PpKtPpG|PbSbl@tSvl@pI|TJrE"},{"voiceInstructions":[{"ssmlAnnouncement":"Bear left to stay on Avenida Infante Dom Henrique.","announcement":"Bear left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":111.687}],"intersections":[{"entry":[false,false,true,false],"in":0,"bearings":[86,145,221,320],"duration":3.625,"turn_duration":0.542,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.164,"geometry_index":35038,"location":[-9.12717,38.710847]},{"entry":[false,true,true],"in":0,"bearings":[41,63,230],"duration":3.227,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.297,"geometry_index":35039,"location":[-9.127351,38.710683]},{"entry":[false,true,true],"in":0,"bearings":[50,228,317],"duration":12.156,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":12.438,"geometry_index":35041,"location":[-9.127567,38.710541]},{"bearings":[47,214,243],"entry":[false,false,true],"in":0,"turn_weight":1.5,"turn_duration":0.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"geometry_index":35043,"location":[-9.128339,38.70999]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":160.781}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left onto Avenida Infante Dom Henrique.","modifier":"slight left","bearing_after":230,"bearing_before":266,"location":[-9.12717,38.710847]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":24.273,"duration_typical":22.812,"duration":22.812,"distance":160.781,"driving_side":"right","weight":24.273,"mode":"driving","geometry":"}bvyhAboalPfIhJ|AnC|D~GnWta@|HpLlDrL"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1282.828},{"ssmlAnnouncement":"In a half mile, Turn left onto Cais do Sodré.","announcement":"In a half mile, Turn left onto Cais do Sodré.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Turn left onto Cais do Sodré. Then Turn right toward Chiado.","announcement":"Turn left onto Cais do Sodré. Then Turn right toward Chiado.","distanceAlongGeometry":152.083}],"intersections":[{"entry":[false,false,true,false],"in":0,"bearings":[63,138,196,318],"duration":4.602,"turn_duration":2.625,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":2.031,"geometry_index":35044,"location":[-9.128557,38.709903]},{"entry":[false,true,true,true],"in":0,"bearings":[16,77,228,317],"duration":7.156,"turn_duration":0.063,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":7.273,"geometry_index":35045,"location":[-9.128591,38.709812]},{"entry":[false,true,true],"in":0,"bearings":[51,139,234],"duration":17.797,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":18.234,"geometry_index":35048,"location":[-9.129176,38.709418]},{"entry":[false,true,false],"in":0,"bearings":[59,241,332],"duration":2.039,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.086,"geometry_index":35053,"location":[-9.13081,38.708607]},{"entry":[false,false,true,false],"in":0,"bearings":[61,149,240,329],"duration":23.148,"turn_duration":2.021,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":21.656,"geometry_index":35054,"location":[-9.130939,38.708551]},{"entry":[false,false,true,false],"in":0,"bearings":[60,151,240,331],"duration":14.852,"turn_duration":2.021,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":13.156,"geometry_index":35057,"location":[-9.132284,38.707952]},{"entry":[false,false,true,true,true],"in":0,"bearings":[72,151,184,252,342],"duration":3.969,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":5.562,"geometry_index":35062,"location":[-9.133124,38.707621]},{"entry":[false,false,true,false],"in":0,"bearings":[72,158,251,338],"duration":3.641,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.664,"geometry_index":35063,"location":[-9.133365,38.707561]},{"entry":[false,false,true],"in":0,"bearings":[71,162,253],"duration":2.352,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":2.398,"geometry_index":35064,"location":[-9.133468,38.707534]},{"entry":[false,false,true],"in":0,"bearings":[73,113,253],"duration":8.289,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":8.484,"geometry_index":35065,"location":[-9.133606,38.707501]},{"entry":[false,true,true],"in":0,"bearings":[73,99,252],"duration":20.773,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":21.273,"geometry_index":35067,"location":[-9.134109,38.707379]},{"mapbox_streets_v8":{"class":"primary"},"location":[-9.135188,38.707113],"geometry_index":35068,"admin_index":14,"weight":9.125,"is_urban":false,"traffic_signal":true,"turn_duration":2.007,"turn_weight":5,"duration":6.031,"bearings":[72,163,253,344],"out":2,"in":0,"entry":[false,false,true,false]},{"entry":[false,true,true],"in":0,"bearings":[73,253,344],"duration":15.469,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":15.844,"geometry_index":35069,"location":[-9.1354,38.707062]},{"entry":[false,false,true,false],"in":0,"bearings":[73,162,253,344],"duration":17.258,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":15.625,"geometry_index":35072,"location":[-9.136201,38.706869]},{"entry":[false,true,true],"in":0,"bearings":[73,253,344],"duration":5.938,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":11.078,"geometry_index":35075,"location":[-9.136995,38.706677]},{"entry":[false,false,true,false],"in":0,"bearings":[73,163,253,344],"duration":11.109,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":9.336,"geometry_index":35076,"location":[-9.137305,38.706604]},{"entry":[false,true],"in":0,"bearings":[73,253],"duration":10.625,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":10.891,"geometry_index":35077,"location":[-9.137775,38.706489]},{"entry":[false,true,false],"in":0,"bearings":[73,252,344],"duration":6.258,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":6.398,"geometry_index":35078,"location":[-9.138462,38.706324]},{"entry":[false,false,true,false],"in":0,"bearings":[72,163,253,344],"duration":1.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.969,"geometry_index":35079,"location":[-9.138745,38.706254]},{"entry":[false,true,true],"in":0,"bearings":[73,253,344],"duration":12.32,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":12.625,"geometry_index":35080,"location":[-9.138829,38.706234]},{"entry":[false,false,true,false],"in":0,"bearings":[73,165,253,344],"duration":17.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":17.867,"geometry_index":35081,"location":[-9.139539,38.706062]},{"entry":[false,false,true,false],"in":0,"bearings":[73,162,260,344],"duration":21.609,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":22.141,"geometry_index":35082,"location":[-9.140554,38.705817]},{"entry":[false,false,false,true],"in":1,"bearings":[72,148,251,342],"duration":12.391,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":12.992,"geometry_index":35099,"location":[-9.141466,38.706131]},{"bearings":[75,163,251,330],"entry":[false,false,false,true],"in":1,"turn_duration":0.052,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"geometry_index":35101,"location":[-9.141658,38.7066]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Cais do Sodré"}],"type":"turn","modifier":"left","text":"Cais do Sodré"},"distanceAlongGeometry":1307.828},{"sub":{"components":[{"type":"text","text":"Chiado"},{"type":"text","text":"/"},{"type":"text","text":"Príncipe Real"}],"type":"turn","modifier":"right","text":"Chiado / Príncipe Real"},"primary":{"components":[{"type":"text","text":"Cais do Sodré"}],"type":"turn","modifier":"left","text":"Cais do Sodré"},"distanceAlongGeometry":804.672}],"speedLimitUnit":"km/h","maneuver":{"type":"continue","instruction":"Bear left to stay on Avenida Infante Dom Henrique.","modifier":"slight left","bearing_after":196,"bearing_before":243,"location":[-9.128557,38.709903]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":251.125,"duration_typical":248.391,"duration":248.391,"distance":1307.828,"driving_side":"right","weight":251.125,"mode":"driving","geometry":"}gtyhAxedlPtDbAvK`QlGzKlBrD~HlPdD|H|BpFn[p{@`BrEnB`GzWxv@jG|QdChHzKh[nAlDp@`C`@dBtAnJvB`Nt@lE`ArG`DbTpAhIrOlbAdBfLPfAjG~a@bBxKlCfQ~@lGpD|UpCjRdFj\\hI|i@jCtPf@fDvIjk@hNl~@\\bCV`CLvB?hCCtBEhBSdBUdBi@lC{@nCiApCeA`BqA`BiAlAeBrAqAr@y@`@_Bj@iYrI[L_@PY^"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right toward Chiado, Príncipe Real.","announcement":"Turn right toward Chiado, Príncipe Real.","distanceAlongGeometry":133.333}],"intersections":[{"entry":[false,false,false,true],"in":1,"bearings":[25,150,252,276],"duration":6.711,"turn_weight":5,"turn_duration":1.086,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":10.906,"geometry_index":35104,"location":[-9.14169,38.706643]},{"entry":[false,true],"in":0,"bearings":[85,260],"duration":12.148,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":12.758,"geometry_index":35110,"location":[-9.141964,38.70665]},{"entry":[false,true,false],"in":0,"bearings":[71,253,344],"duration":9.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":10.398,"geometry_index":35112,"location":[-9.142558,38.706521]},{"bearings":[73,163,214,256,344],"entry":[false,false,false,true,false],"in":0,"turn_weight":7,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"geometry_index":35113,"location":[-9.143037,38.706406]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Chiado"},{"type":"text","text":"/"},{"type":"text","text":"Príncipe Real"}],"type":"turn","modifier":"right","text":"Chiado / Príncipe Real"},"distanceAlongGeometry":140.691}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Cais do Sodré.","modifier":"left","bearing_after":276,"bearing_before":330,"location":[-9.14169,38.706643]},"speedLimitSign":"vienna","name":"Cais do Sodré","weight_typical":46.297,"duration_typical":35.758,"duration":35.758,"distance":140.691,"driving_side":"right","weight":46.297,"mode":"driving","geometry":"e|myhArz}lPQXQd@Yt@O`BF`Bv@hFbAdN|D|TdF|\\BdCbAnFBV"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, You will arrive at your destination.","announcement":"In 900 feet, You will arrive at your destination.","distanceAlongGeometry":213.913},{"ssmlAnnouncement":"You have arrived at your destination.","announcement":"You have arrived at your destination.","distanceAlongGeometry":68.056}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[76,170,342],"duration":11.539,"turn_weight":1.5,"turn_duration":1.723,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":2,"weight":11.812,"geometry_index":35116,"location":[-9.143236,38.706368]},{"entry":[false,false,true],"in":1,"bearings":[24,160,306],"duration":5.805,"turn_weight":0.75,"turn_duration":0.241,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":2,"weight":6.594,"geometry_index":35118,"location":[-9.14335,38.706625]},{"entry":[true,false,true],"in":1,"bearings":[3,126,267],"duration":4.727,"turn_weight":6,"turn_duration":0.326,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":0,"weight":10.617,"geometry_index":35123,"location":[-9.143499,38.706711]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.143492,38.706811],"geometry_index":35124,"admin_index":14,"weight":14.023,"is_urban":false,"traffic_signal":true,"turn_duration":2.008,"turn_weight":1,"duration":14.406,"bearings":[5,90,183,270],"out":0,"in":2,"entry":[true,false,false,false]},{"entry":[true,false],"in":1,"bearings":[6,185],"duration":1.922,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":0,"weight":2.516,"geometry_index":35126,"location":[-9.14346,38.707086]},{"entry":[true,false],"in":1,"bearings":[4,186],"duration":6.945,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":0,"weight":7.789,"geometry_index":35127,"location":[-9.14345,38.707161]},{"entry":[true,false],"in":1,"bearings":[5,184],"duration":2.641,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"weight":3.336,"geometry_index":35128,"location":[-9.143426,38.707402]},{"entry":[true,false],"in":1,"bearings":[7,185],"duration":6.172,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"weight":7.133,"geometry_index":35129,"location":[-9.143414,38.707502]},{"entry":[true,false,false,false],"in":2,"bearings":[6,113,187,296],"duration":16.305,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"weight":18.508,"geometry_index":35131,"location":[-9.14338,38.707712]},{"bearings":[6,186,279],"entry":[true,false,false],"in":1,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":35134,"location":[-9.143273,38.708559]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"You will arrive at your destination"}],"type":"arrive","modifier":"straight","text":"You will arrive at your destination"},"distanceAlongGeometry":281.44},{"primary":{"components":[{"type":"text","text":"You have arrived at your destination"}],"type":"arrive","modifier":"straight","text":"You have arrived at your destination"},"distanceAlongGeometry":68.056}],"destinations":"Chiado, Príncipe Real, Rato","speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right toward Chiado/Príncipe Real/Rato.","modifier":"right","bearing_after":3,"bearing_before":256,"location":[-9.143236,38.706368]},"speedLimitSign":"vienna","name":"Rua do Alecrim","weight_typical":87.219,"duration_typical":74.555,"duration":74.555,"distance":281.44,"driving_side":"right","weight":87.219,"mode":"driving","geometry":"_kmyhAf{`mPuCt@kJlDaAh@w@`A]x@Kj@GvAgEMsBKqLs@uCSaNo@gEWsD[oFg@oAIkOaAaa@iCkCQyIk@"},{"voiceInstructions":[],"intersections":[{"bearings":[186],"entry":[true],"in":0,"admin_index":14,"geometry_index":35136,"location":[-9.143242,38.708802]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"You have arrived at your destination.","bearing_after":0,"bearing_before":6,"location":[-9.143242,38.708802]},"speedLimitSign":"vienna","name":"Rua do Alecrim","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"ccryhAr{`mP??"}],"weight":107002.367,"duration":98705.086,"duration_typical":98705.086,"weight_typical":91911.992,"annotation":{"maxspeed":[{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,1,1,1,1,1,1,1,1,1,12,12,12,12,12,12,12,12,12,12,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,24,24,24,24,24,24,24,24,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,46,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,6,6,9,22,22,22,22,22,22,22,22,22,22,22,22,19,19,19,19,19,19,9,9,9,8,8,8,8,8,8,8,null,null,null,null,null,null,null,14,14,14,14,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,9,null,null,9,9,9,9,9,9,9,9,null,null,null,null,null,null,null,4,4,4,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,9,9,9,6,6,6,6,6,6,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,null,null,null,null,null,null,null,null,null,null,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null,22,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,33,33,33,33,33,33,33,33,30,30,51,51,33,33,17,17,17,17,22,33,33,33,33,33,33,33,33,33,33,33,33,33,33,30,30,30,30,40,40,40,25,25,46,46,46,46,46,46,46,16,16,16,16,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,41,41,41,41,41,41,41,61,61,61,61,61,61,61,35,35,35,35,35,17,22,null,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,35,35,30,30,30,33,25,25,25,25,25,25,null,32,12,12,12,null,12,12,19,19,19,19,19,19,19,19,19,null,null,20,12,12,14,14,14,null,14,14,14,14,14,17,0,0,0,0,0,0,0,null,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,22,22,22,22,22,22,22,22,22,6,6,6,6,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,12,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,43,43,43,43,43,43,43,43,43,43,43,null,null,43,43,43,43,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,14,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,33,33,33,33,33,33,35,35,35,35,35,35,35,35,35,35,35,null,null,33,33,33,0,0,0,0,17,17,17,17,17,17,17,17,27,27,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,null,null,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,29,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,null,33,33,33,33,33,33,33,33,30,37,37,37,37,37,37,37,58,64,64,null,70,70,70,70,70,70,70,70,70,70,70,70,70,67,66,66,66,66,66,17,35,35,37,37,30,30,30,0,0,0,0,0,22,22,22,22,22,22,22,22,22,17,27,27,27,27,33,20,20,20,20,8,8,8,8,8,8,8,8,8,8,8,8,8,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,null,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,37,37,37,37,37,null,null,69,69,69,69,69,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,30,30,30,30,30,null,0,0,0,0,0,0,0,0,0,0,null,14,14,14,14,14,null,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,16,16,16,16,16,16,16,16,16,16,16,16,16,37,37,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,24,24,24,24,24,24,29,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,8,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,null,null,30,30,19,19,19,19,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,27,27,27,27,27,27,27,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,null,6,6,6,6,6,6,6,null,0,0,0,0,0,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,22,22,22,22,11,11,11,null,11,11,11,null,0,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,22,22,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,null,30,30,30,30,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,32,32,null,30,30,30,22,64,30,30,30,30,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,null,0,0,0,0,0,0,0,0,0,null,0,0,0,null,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,30,27,27,30,30,17,17,17,17,17,17,17,17,17,17,17,null,0,0,0,null,17,17,17,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,29,29,29,29,29,25,25,25,25,25,0,0,0,0,0,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,25,25,25,25,25,25,25,27,27,30,30,30,30,30,30,null,27,27,27,27,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29,29,29,29,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,22,22,22,25,25,25,25,25,25,25,25,25,25,25,25,25,null,25,25,25,25,25,25,25,25,25,25,25,25,25,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,35,35,35,35,35,null,null,null,null,32,32,32,32,32,32,32,32,32,35,35,35,37,37,37,37,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,32,32,32,32,32,32,32,32,32,32,32,79,79,8,8,8,null,null,null,35,35,35,32,32,32,32,32,32,32,32,32,38,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,null,33,33,33,33,33,33,33,33,33,33,45,45,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,50,50,50,50,50,50,50,50,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,50,50,50,50,50,50,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,41,41,41,41,41,41,41,41,41,41,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,43,43,43,43,43,43,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,59,59,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,33,33,33,33,33,33,32,32,32,32,32,null,38,38,38,38,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,30,30,30,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,41,41,41,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,19,19,19,19,19,19,19,19,19,null,24,24,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,null,0,0,0,0,null,null,null,null,null,22,22,22,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,8,8,null,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,6,6,6,6,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,30,30,30,30,30,30,30,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,25,25,25,25,25,25,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,0,0,0,0,0,null,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,16,16,16,16,6,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,20,20,20,20,20,29,29,null,32,32,32,32,32,32,32,32,32,33,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,null,33,33,33,33,33,33,33,null,35,35,35,35,35,35,35,35,35,35,null,38,38,38,38,38,38,38,null,38,38,38,38,38,38,null,0,0,0,0,null,null,8,8,35,35,35,35,35,null,38,38,38,38,38,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,null,8,8,8,null,17,17,17,17,17,17,24,24,null,29,29,29,30,30,null,null,null,0,0,0,0,0,null,0,0,0,0,0,null,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,29,29,29,29,29,29,29,29,29,29,29,29,29,29,null,33,33,33,33,33,30,30,30,30,27,27,27,27,0,29,29,29,29,29,29,29,0,29,null,29,29,29,29,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,25,25,25,25,25,25,25,25,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,null,25,25,25,29,0,0,null,0,0,0,27,27,27,27,27,27,27,27,27,null,25,25,25,25,25,25,25,25,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,14,17,17,17,17,17,17,17,null,25,25,25,25,25,25,25,38,38,38,38,38,30,30,30,30,30,30,30,30,30,30,30,30,30,30,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,null,50,14,20,20,35,35,35,35,35,35,35,35,35,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,null,null,11,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,8,8,8,8,8,8,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,19,19,19,19,19,19,37,37,37,37,37,37,37,37,37,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,29,29,27,27,27,27,27,27,27,27,27,27,27,27,null,43,43,null,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,16,16,16,16,16,null,12,30,30,30,30,30,0,0,0,0,50,50,50,50,50,50,0,33,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,null,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,30,30,41,41,25,6,19,19,32,16,27,25,25,25,null,30,30,29,29,29,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,null,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,25,25,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,27,27,null,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,30,30,30,30,30,30,30,30,30,30,30,30,25,25,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,null,null,null,0,0,null,null,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,0,0,0,0,0,0,0,0,77,77,77,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,27,27,27,27,27,27,27,27,17,17,17,17,8,8,8,8,8,8,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,null,27,27,27,27,27,27,27,30,30,30,30,30,0,33,33,33,33,33,33,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,30,22,22,22,22,22,22,0,37,37,20,20,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,12,12,12,12,12,null,14,14,14,14,22,22,32,null,6,6,6,null,0,0,null,14,14,14,null,6,6,6,6,6,25,25,25,46,46,46,40,38,38,38,38,38,38,38,27,27,27,27,27,27,25,25,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,35,35,35,35,33,33,33,33,33,33,33,33,40,40,40,40,40,40,40,40,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,8,null,null,null,null,8,8,8,null,null,null,null,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,null,16,16,16,16,16,16,16,null,null,null,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,12,12,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,50,50,null,12,27,27,27,27,27,27,27,27,27,27,27,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,6,6,6,6,14,14,14,14,14,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,null,35,35,0,0,0,0,0,0,0,32,32,32,0,0,0,0,null,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,17,17,17,17,17,17,17,17,17,17,40,40,40,40,40,40,40,40,29,29,29,29,29,29,null,27,27,27,27,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,null,6,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,33,33,33,null,25,16,16,16,16,16,null,8,8,8,8,8,8,8,24,24,24,24,24,24,16,16,16,16,16,16,24,24,24,24,8,8,8,null,8,8,8,8,8,8,8,8,8,8,8,8,19,19,19,19,19,19,19,19,19,19,19,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,null,6,6,null,null,38,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,50,50,50,50,50,50,50,46,46,46,46,46,46,46,null,46,46,46,46,46,46,46,46,46,46,46,null,43,43,43,43,43,43,43,43,43,43,43,43,43,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,41,41,41,41,41,41,41,41,41,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,null,46,46,46,46,46,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,0,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,11,11,11,11,11,11,11,11,11,11,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,33,33,33,33,33,33,33,33,33,33,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,null,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,67,67,67,67,67,67,67,67,67,64,64,64,64,64,64,64,64,64,64,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,59,59,59,59,59,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,41,41,41,41,41,41,41,41,41,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,20,20,20,20,38,38,38,38,38,38,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,30,30,30,30,30,30,41,37,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,38,38,38,38,38,38,38,38,38,38,38,38,38,0,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,40,40,40,40,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,0,0,0,0,0,0,0,0,0,0,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,null,null,null,null,null,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,59,59,59,59,59,59,59,59,59,59,59,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,59,59,59,59,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,6,6,6,6,6,6,6,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,14,14,14,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,24,24,24,24,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,6,6,6,6,6,6,6,6,11,11,11,11,11,11,14,14,14,14,14,14,14,14,14,14,17,17,17,17,20,20,20,24,24,24,24,24,24,24,24,24,33,33,33,33,33,33,33,40,40,40,40,40,40,40,40,38,38,38,38,38,38,38,38,38,38,38,null,43,43,43,null,38,38,38,38,38,38,38,38,38,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,51,51,51,51,51,51,51,51,51,51,null,null,38,38,null,null,43,43,43,43,43,43,43,43,46,46,46,46,46,46,46,46,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,3,3,3,3,3,3,3,3,3,6,6,6,6,38,38,38,38,38,38,38,38,38,38,38,null,null,null,null,null,null,null,43,43,43,null,46,48,48,45,45,35,56,56,56,56,56,12,12,12,12,19,19,19,19,19,19,19,19,19,45,45,45,45,45,45,45,45,45,41,41,41,41,41,41,41,41,27,27,27,27,27,27,27,27,27,32,32,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,24,24,24,24,24,24,24,24,43,43,43,43,43,43,43,19,38,37,37,29,35,43,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,38,35,35,35,35,43,43,43,43,43,43,43,37,37,37,37,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,33,33,33,41,41,41,41,41,null,37,37,37,37,37,37,37,37,37,null,0,0,12,12,12,12,12,29,29,29,32,32,32,32,37,37,37,29,29,29,29,29,8,8,8,29,29,29,29,29,29,29,null,null,null,null,null,null,43,43,43,43,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,30,30,30,30,30,24,24,24,24,24,24,24,33,32,0,0,0,0,0,0,0,0,17,0,0,11,11,11,11,11,11,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,24,24,24,24,24,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,25,25,25,25,25,25,25,25,25,20,20,20,20,20,24,24,24,24,24,24,24,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,17,17,17,17,11,11,11,11,11,11,11,null,24,24,24,24,24,24,24,24,0,0,0,0,30,30,30,30,30,30,30,30,30,30,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,1,1,1,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,50,50,50,50,51,51,51,51,51,51,37,37,37,37,12,46,46,50,50,50,50,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,30,45,45,45,45,45,null,45,45,45,45,45,45,45,45,45,43,43,43,43,43,43,43,43,43,43,43,41,43,43,43,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,54,54,54,54,54,54,54,54,54,30,30,32,32,32,32,32,32,32,32,32,32,32,32,32,32,30,30,30,30,30,30,30,30,30,30,30,30,null,null,null,22,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,25,25,25,25,25,25,25,25,25,25,22,22,22,25,25,25,25,25,35,27,27,27,27,27,27,27,27,27,25,22,22,22,27,27,27,27,25,24,24,24,24,24,24,24,24,24,24,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,35,35,35,35,41,4,4,4,4,4,9,32,32,27,27,27,27,27,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,16,11,11,11,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,19,6,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,null,0,0,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,null,null,1,1,1,null,0,null,33,null,null,0,null,null,8,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,12,12,12,null,null,null,null,16,16,16,16,16,20,20,20,20,20,20,20,0,0,0,0,0,0,0,8,8,8,8,8,8,8,27,27,6,6,6,6,6,6,30,30,30,30,30,0,0,0,0,29,29,29,29,29,32,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,29,29,29,29,29,29,29,29,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,12,12,12,12,12,12,12,12,12,12,12,38,38,38,38,0,0,0,0,24,24,24,24,24,1,1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,16,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,null,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,null,null,null,null,null,null,null,20,20,20,20,20,20,20,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,80,80,80,80,80,80,80,80,80,80,80,80,80,80,59,59,59,59,59,59,59,59,59,59,59,59,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,24,24,24,24,24,24,24,24,24,24,24,24,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,14,14,14,14,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,null,null,12,12,12,20,20,20,6,6,6,6,6,6,6,6,6,22,22,22,22,22,22,22,22,22,22,null,17,17,17,null,20,20,20,20,20,20,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,17,17,17,17,17,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,6,null,null,35,35,35,35,35,35,30,30,33,33,33,33,33,33,33,33,33,33,33,33,33,33,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,25,25,25,25,25,25,25,25,25,25,25,25,25,20,20,20,20,25,25,25,25,25,25,25,25,25,25,25,30,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,null,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,null,6,6,6,null,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,6,6,null,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,12,12,12,12,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,6,6,6,6,6,6,6,6,6,6,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,6,6,6,6,6,6,6,null,null,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,37,37,37,37,22,22,40,40,40,40,40,40,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,0,0,0,6,6,6,6,null,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,0,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,12,12,12,12,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,64,64,64,64,64,64,64,64,64,64,64,64,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,0,0,0,0,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,20,37,37,37,37,37,37,37,37,37,null,0,0,0,0,0,0,38,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,0,0,0,0,0,0,0,22,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,null,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,8,8,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,12,12,12,12,12,12,12,6,6,6,6,6,6,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,38,38,38,38,38,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,null,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,27,32,32,32,32,32,null,0,0,0,0,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,null,null,null,6,null,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,12,12,12,12,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,43,43,43,43,43,43,43,43,43,43,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,43,43,43,43,null,43,43,43,43,43,43,43,43,43,null,46,46,46,46,46,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,40,40,41,41,41,41,41,41,41,41,41,41,41,41,null,43,43,43,43,43,43,43,66,66,66,66,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,16,16,16,16,16,16,null,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,12,0,0,0,0,0,0,null,29,29,29,29,29,null,null,null,null,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,19,null,null,null,null,35,35,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,null,4,4,1,1,1,6,0,0,4,20,20,null,null,null,null,null,null,null,null,45,45,45,null,null,null,null,null,null,null,null,9,9,9,9,9,4,4,4,4,0,33,33,33,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,11,11,11,11,11,4,4,4,4,null,null,0,0,0,0,0,0,3,3,9,9,9,9,9,1,1,1,1,1,1,1,null,null,4,4,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,null,null,null,null,null,null,11,11,11,11,11,11,11,11,11,11,22,22,22,11,11,11,11,null,null,null,null,null,null,4,4,null,null,9,9,null,null,null,null,null,9,9,9,9,9,6,6,6,6,6,6,6,6,6,17,17,17,17,17,6,6,6,6,6,6,6,6,14,14,25,20,20,19,19,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,null,null,null,null,null,null,null,null],"speed":[5,6.7,5.3,5.3,5.2,6.8,6.9,6.9,6.9,7,6.9,6.9,6.9,6.9,6.9,6.9,7,7,7,7,7,7,7.1,7.2,7.6,7.4,7.5,7.5,7.5,7.5,7.5,7.5,5.9,5.9,5.8,5.8,5.8,5.9,5.7,5.7,5.8,5.7,5.6,5.8,5.8,5.8,6,5.8,5.7,5.7,6.1,6,6.2,6,6.5,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.5,6.5,7.7,7.7,7.7,7.8,7.8,7.8,7.8,5.5,5.5,5.5,5.5,3.1,3.1,3.1,3.1,3.1,2.9,5.8,6,6,6.1,6.1,6.1,6.1,6.1,6.2,7.6,7.6,7.5,7.6,7.2,7.3,7.3,7.3,7.3,7.3,7.3,7.3,7.3,6.8,6.8,6.6,6.7,6.7,6.8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,5.6,3.8,3.6,3.6,3.6,3.6,3.2,3.5,5.5,4.9,5.6,5.6,5.6,6.3,6.9,7,7,7,7,6.9,6.9,6.9,6.8,6.9,7,7,7,6.8,6.9,6.9,6.9,6.9,5.3,6.7,5.2,5.4,5.6,5.4,5.4,5.3,6.6,5.8,6.3,6.3,6.4,7.7,6.4,6.5,6.7,6.4,6.4,6.3,6.3,6.3,6.9,6.4,6,6.4,5.3,4.7,5.3,5.2,5.2,5.5,5.5,5.9,3.9,3.9,3.9,3.9,3.9,3.9,3.6,4.1,3.9,4,4.3,3.9,3.9,3.9,3.9,3.9,4.1,3.8,4.9,4.9,4.9,6.1,6.9,6,6,6.1,6.1,6.1,5.8,5.8,6.7,5.8,7.2,7,7.1,6.1,6.1,6.1,6.1,4.4,4.4,4.4,4.4,5.3,4.5,4.5,4.2,5.2,6.3,6.7,5.7,5,6.4,6.4,6.4,6.4,7.5,8.3,8.3,8.6,8.6,8.8,8.8,8.1,8,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,3.3,3.3,3.3,3.3,3.4,3.4,3.6,8,8.7,7.4,8.4,8.4,7.9,8.7,8.1,8.3,8.1,8.1,8.3,8.3,8.3,7.6,8.7,8.1,8,8,4.5,4.2,4.4,6.2,7.5,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.6,6,6.9,6.3,6.9,6.9,6.9,7.5,7.5,7.4,4.6,4.7,4.7,4.7,5.1,4.8,7.4,8.4,7.5,8.4,8.4,8.1,8.3,8.3,8.4,8.4,8.4,8.2,8.2,8.3,8.3,8.3,8.3,7.7,5.3,5.3,5.3,5.3,5.3,5.3,5.3,5.5,5.9,5.7,6.9,8.5,9.4,11.1,8.9,8.9,8.4,6.7,6.1,6.1,6.1,6.1,5.8,6,6,6.9,4.2,4.2,4.2,4.2,4.3,8.3,8,8,8,8,7.9,12.3,12.3,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,16.4,16.4,16.4,16.4,22.4,18.8,18.8,18.8,20,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.2,21.7,21.4,21.5,21.5,21.6,21.6,21.4,21.4,21.4,21.4,23.3,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.3,22.3,22.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.5,22.5,22.5,16.4,16.4,20.9,20.9,20.9,20.8,20.8,20.8,20.8,20.9,20.8,20.8,20.8,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,19.1,19.1,19.1,19.1,19.1,19.1,19.1,18.6,18.6,18.6,18.6,18.6,18.6,18.6,14.7,14.7,14.7,14.7,14.9,18.3,19.3,16.2,16.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,16.4,19.1,19.2,22.7,22.6,22.2,24.3,25.3,25.3,25.3,25.3,25.3,25.3,24.8,25.4,25.9,25.9,25.8,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.2,27.2,26.3,26.1,26.1,27.2,27.2,27.2,26.3,28.1,28.1,28.1,28.1,28.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,25.9,25.5,25.5,25.5,24.6,24.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,22.4,22.5,23.1,22.5,24.4,24.8,21.2,21.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,24.1,22.3,24.5,24.6,26.6,27.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29,29,28.8,28.8,28.1,28.1,28.1,27.9,27.4,25.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.7,27.7,27.7,27.7,27.7,27.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29.2,29.1,28.6,28.6,28.6,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29.2,29.2,29.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.9,28.8,28.3,28.3,28.3,28.4,28.6,28.6,28.6,28.5,28.5,28.5,28.5,28.5,28.5,28.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28,28,28,28.1,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28,28,28,28,28,28,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.7,28.5,28.7,28.7,28.4,30.2,28.3,28.3,28.3,28.3,28.4,28.4,28.4,33.3,33.3,33.3,33.3,33.2,33.2,33.2,33.3,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.2,27.2,27.1,28,26.7,26.9,25,25,25,25,25,25,25,25,25,25,25,25,25,24.9,23.6,23.6,23.6,23.6,23.8,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.3,23.3,23.2,23.3,23.3,23.3,20.5,20.5,20.8,20.5,20.5,20.5,20.5,20.5,20.6,27.8,27.8,29.1,29.2,29.2,29.2,22.3,22.3,22.3,5,27.7,22.2,22.2,22.2,22.2,22.2,22.5,22.3,22.3,22.3,22.3,22.3,21.2,22.8,22.8,22.6,22.9,22.8,22.8,22.8,22.8,22.5,22.8,22.9,22.9,22.7,22.7,22.7,22.7,22.9,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.5,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.2,22.8,22.8,23.1,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,22.9,23,23,22.9,23,23,23,23,23,23,23,23,23,22.9,23.9,27.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,22.2,22.2,22.2,22.2,22.3,22.3,22.2,22.2,22.2,22.2,22.2,28.6,27.1,28.6,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,26.7,26.7,27.5,27.5,27.5,27.5,27.5,28.6,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30,30,30,30,30,30,30,30,30,30,28.3,28.3,28.3,28.1,28.7,28.4,28.4,28.4,28.4,28.4,29.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.3,29.2,29.2,29.2,29.2,29.2,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,31.6,30.9,30.8,30.8,30.8,30.8,30.6,30.5,30.5,30.5,30.5,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.2,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.8,31.8,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.9,31.4,31.4,31.4,31.4,31.4,31.5,31.2,31.3,31.4,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.4,31.4,31.4,31.5,29.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.2,33,32.9,32.9,33.3,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,27.7,27.7,27.7,28.3,28,28.1,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.5,28.3,28.3,28.3,28.5,27.6,27.6,28.1,28,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.2,29.2,29.2,29.2,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.2,29,28.1,28.1,28.3,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,29,28.7,28.8,29.8,28.8,29.2,28.9,29.2,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,30.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.5,29.5,29.5,28.6,29.5,29.5,29.5,29.5,29.5,29.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.2,28.3,29.2,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.1,28.1,27.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,29.7,29.9,30,30,28.6,30.3,30.3,30.3,27.9,28.3,28.3,27.7,28.1,28.1,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.1,28.1,28.1,28,28.1,28,28.1,28.1,28.1,28.1,28.1,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29,28.9,29.1,28.5,27.9,28,28,28.7,28.1,28.1,28.1,28,28.3,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,28.6,28.9,28.9,28.9,28.9,29.1,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,26.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.2,26.3,26.3,26.3,26.3,26.3,27.1,26.9,26.9,27.1,26.6,27,27,27,27.3,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.2,27.2,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,23.7,23.6,23.6,23.6,23.2,21.3,21.1,21.1,21.2,21.4,21.1,21.1,21.2,21.1,21.1,21.1,21.2,21.1,21.1,21.2,22.2,22.2,22.2,22.2,22.3,22.1,22.3,20,21.7,21.7,21.6,21.7,21.7,21.7,21.7,21.7,21.5,21.3,21.4,21.4,21.4,21.4,21.4,21.4,22.1,22.3,22.3,21.8,21.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,18.9,22.5,22.5,22.5,22.5,22.5,23,22.8,22.8,23.1,23.1,22.2,22.2,22.2,23,22.8,22.8,22.8,22.9,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.4,22.2,22.2,22.2,22.2,22.2,23,22.5,22.5,22.5,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,22.9,22.8,23,23.5,23.7,23.7,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,27.4,27.2,27.2,27.5,27.2,27.2,27.1,28.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,28.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,22.2,21.9,22.2,22.2,22.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,28.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,27.8,27.8,27.8,27.6,27.7,27.8,27.5,27.5,27.5,27.7,28.1,28,28,28,28.2,28.2,28,28,28.8,28.5,28.5,29,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,27.8,28.1,28.1,28.2,27.9,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29,27.5,27.5,27.6,27.5,27.5,22.2,22.2,22.2,22.3,22.3,27.6,27.6,27.7,27.8,27.8,27.7,28.2,28,28,28,28,28,28,28,28,27.7,28.1,28.1,28.1,28.1,28.6,27.8,27.8,27.9,27.9,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.2,27.5,27.5,27.5,27.5,27.5,28,28.6,27.8,27.8,27.8,27.8,27.9,27.4,27.5,27.5,28,27.8,27.9,27.8,27.8,27.8,27.7,27.7,27.7,27.9,28.1,28.1,28,28,28,28,28,27.6,28.3,28.3,28.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,29.5,29.4,29.4,29.4,29.4,30.1,29.5,29.5,29.5,29.4,29.4,28.9,28.3,28.3,28.3,28.3,28.3,28.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.1,28,28,28.2,28.3,28.3,28.7,27.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.8,29.2,29.2,29.4,29.4,29.4,29.4,29.6,29.6,29,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.3,28.9,28.9,28.9,28.9,28.9,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.5,28.5,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.7,28.4,28.8,28.8,28.8,29.3,29,29.3,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.7,28.9,28.9,28.9,28.7,28.9,28.6,33.2,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,26.2,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,23.9,23.9,23.5,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.3,23,23.1,23.7,23.7,23.5,23.9,23.9,23.9,24,23.9,23.9,23.9,23.9,23.9,23.9,25,25,25,25,25,25,24.9,24.9,24.9,24.9,21.3,21.3,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,25.2,25.6,25.6,25.6,25.6,25.6,26.7,26.7,26.7,26.7,26.7,27.5,27.5,27.4,27.5,27.3,27.3,27.5,28.1,28.1,28.1,28.1,28,28.1,28.1,28.1,28.1,28.1,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,28.1,29.1,28.4,28.4,28.4,28.4,29.1,28.8,28.9,28.9,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,28.9,28.9,28.3,28.3,28.6,28.6,27.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.7,28.2,28.2,28.2,28.7,29,28.6,28.6,28.6,28.6,28.6,29,28.8,28.8,28.8,29,29,29,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,28.4,28.5,28.5,27.5,27.2,27.2,27.2,27.2,27.4,27.2,27.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,23.7,23,23,23,23,23,23.1,23.1,22.4,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,23.5,23.7,22.3,22.2,22.2,22.2,22.2,22.1,21.3,22.8,22.8,22.8,22.6,22.4,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,25.8,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,29,29,28.9,28.9,28.9,28.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,29.1,29.1,28.6,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,29,29.2,29.2,29.2,29.2,29.2,29.2,28.1,28.6,28.6,28.6,28.6,28.6,28.6,27.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.9,28.3,28.3,28.3,28.3,28.1,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.8,28.1,28.1,28.1,28.1,28.3,28.3,27.6,27.2,28.7,28.7,28.7,26.4,27.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.8,27.8,27.8,27.8,27.8,27.6,27.6,27.6,27.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,26.4,26.1,29.5,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.4,29.2,29.2,29.2,29.2,29.2,29.5,28.9,28.9,28.9,29.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,25.6,27,28.1,28.1,27.2,27.8,26.7,28.5,28.4,28.6,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,28.6,28.6,28.6,28.6,26.7,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36.4,27.8,27.8,25.2,26,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.2,28.6,28.6,28.6,28.6,28.7,28.9,28.9,28.9,28.9,29.1,27.2,28.3,27.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.1,28,28,28,28.7,28,28,28,27.7,28,28,27.5,27.2,27.2,27.3,25.6,25.8,27.5,27.5,27.5,27.5,28.3,28.3,28.3,28.3,28.4,28.7,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.8,26.9,26.9,26.9,26.9,26.9,26.9,27,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.9,26.9,26.9,26.9,26.9,26.9,27.1,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,28.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,27.2,27.2,27.2,29.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29.1,29.1,29.1,29.5,28.4,28.6,28.3,28.2,28.9,28.9,28.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.4,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.5,23.1,22.4,23.7,23.7,24.3,24.1,24.9,24.4,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,26.5,27.2,27.2,27.2,28.2,28.3,28.3,28.6,28.9,28.9,28.9,28.9,28.5,28.7,28.7,26.7,27.6,26.8,27,27,27,27,27,25.7,25.7,27.5,27.5,27.5,27.5,27.5,28.1,28.2,28.2,28.2,28.1,28.1,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.2,27.2,27.5,28,27.9,27.6,28,27.4,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.8,28.3,36.2,36.2,36.2,27.6,27.8,27.4,28.7,28.7,28.7,6,28.7,28.7,28.7,28,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.2,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,25.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,24.9,26,27,26.9,26.9,26.5,26.8,26.8,27,27,26.9,25.7,27.2,27.2,27.2,27.2,25.2,27,27,27,26.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.1,27.5,27.5,27.5,27.5,27.5,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,26.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,22.4,22.5,22.5,22.5,22.5,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,24.2,24.2,24.7,24.7,24.7,24.7,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,26.4,26.4,26.4,26.4,26.4,26,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.3,27.5,27.5,27.5,27.1,27.7,27.8,27.8,27.8,28,28.1,28.1,28.1,27.9,27.9,27.9,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,27.3,27.7,27.7,27.8,27.8,27.8,27.8,27.8,26.3,27.7,27.7,27.7,27.7,28.1,27.2,27.2,27.5,27.5,27.5,27.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,29.4,29.3,29.3,29.2,27.8,27.9,29.1,27.7,27.1,28.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.6,27.8,27.8,27.8,27.8,27.8,28.1,28.3,28.3,28.5,29.2,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.9,28,28,28,28.6,28.9,28.9,28.9,29.2,29.4,29.4,29.1,29.2,29.2,29.2,29.2,29.2,29.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,26.6,26.6,26.6,27.2,27.5,27.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.9,27.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.8,27.1,27.1,27.1,27.3,27.3,27.3,27.3,27.3,26.8,26.9,26.9,26.9,26.9,23.9,23.3,26.9,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.2,26.9,26.9,26.9,27.4,27.5,27.5,27.5,27.5,26.7,27,28.1,27.9,28.5,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.1,28.1,28.1,28.3,28,28,28,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,22,23.9,23.9,23.9,23.9,23.9,23.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.2,25.5,25.6,25.9,25.3,25.3,26,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.3,23.1,23.1,23.1,23.1,23,23,23,23,23.1,23.1,22,22,24.8,24.8,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.1,27.1,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28,29.4,29.4,29.4,29.4,29.4,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,28.4,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28,28,28,28,28.4,28.9,28.4,28.4,28.5,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.7,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.2,29.5,29.8,29.6,29.6,29.5,29.5,29.5,29.3,29.3,30,30,30,30,30.5,30,30,30,30.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.9,28.1,28.1,28.1,27.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.8,29.8,28.3,28.4,28.4,28.9,28.1,28.7,28.7,28.7,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,25.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.9,28.9,28.9,28.9,28.9,29.6,28.3,28.1,28.1,28.1,28.2,27.8,28.1,28.2,28.2,26.7,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.8,28.9,28.9,29.3,29.3,28.3,28.3,28.3,27.5,27.8,27.8,27.8,27.8,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,28.9,28.9,28.9,27.6,27.8,27.2,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.4,25.4,23.6,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.5,21.9,21.9,22.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.1,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23,23,20.8,22.6,22.7,22.8,37.1,22.8,24.2,24.2,23.5,25.2,24.7,24.7,24.5,25.4,25.2,25.2,25.3,25.3,25.3,25.3,25.1,25.7,25.8,25.9,25.9,25.5,26,26.2,25.4,25.8,26,25.7,25.7,26,26,25.8,25.8,25.8,25.8,25.8,25.4,25.6,25.6,25.6,25.4,25.5,25.5,25.5,24.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,26.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,24.4,21.1,21.1,21.1,21.1,21.1,21.1,17.2,17.2,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,14.3,13.9,13.9,13.9,13.9,13.9,13.9,9.7,10.8,10,10,10.3,10.3,11,11,11.2,11.1,23,23,23,23,23.9,23.9,23.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,25.3,25.6,26.9,26.9,26.4,27.1,26.7,26.7,26.7,26.7,26.1,26.1,24.9,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25,24.8,24.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.4,25.4,25.5,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,23.4,23.6,23.6,23.6,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,24.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.9,21.4,21.4,21.4,21.4,21.5,21.5,21.6,18.6,18.5,18.7,18.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.6,19.6,19.6,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.9,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26,26,26,26.1,26.1,26.1,26.1,26.1,27,27,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.6,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,26.5,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.8,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.8,28,27.7,27.6,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.4,27.2,27.2,27.2,27.2,27.2,26.9,27,27,27,27,27,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.3,29.7,29.2,29.2,29.2,25.8,25.8,28.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28.4,28.4,28.4,28.4,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27,27.7,27.2,27.2,27.2,27.2,27.2,27.2,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.1,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.3,23.6,23.3,23.3,23.3,23.3,23.5,23.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.6,23.6,23.6,23.6,23.6,23.6,25.4,26.8,26.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.6,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,27.9,26.4,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.9,27.8,27.8,27.8,27.8,27.8,27.8,22.2,22.2,22.2,22.2,22.2,30.1,29.9,29.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,31.5,30,30,30,30.5,29.1,29.1,29.2,29.2,29.2,26.9,27.7,28,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.1,29.1,29.1,29.1,26.1,26.1,26.1,26.1,23.7,28.9,27.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.8,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.4,29.4,28.8,28.7,28.4,28.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.6,28.6,28.5,28.5,27.2,27.5,27.8,27.8,28.9,28.5,28.6,28.6,28.6,27.7,29.2,29.2,29.2,29.2,29.2,29,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,27.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27,28.1,28.1,28.1,28.1,28.1,27.6,26.9,27.2,27.2,26.8,26.5,26.6,26.6,26.6,26.6,26.7,25.6,25.6,24.1,23.4,23.4,24.1,24,23.5,25.4,25.3,25.8,26.1,26.1,26.1,26.1,26.1,26.4,26.6,26.6,26.1,27.1,26.4,26.8,27.3,27.4,27.4,32.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28,28.3,28.1,28,27.9,28.4,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.4,28.4,27.7,29.2,29.3,29.3,29.2,29.2,29.2,29.2,29.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28.3,28.4,28.4,28.4,28.4,27.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.8,28.6,28.6,28.6,28.6,28.6,28.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,26.9,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.8,28.1,28.1,27.9,28,27.6,27.6,27.9,28.7,28.9,28.9,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.4,29.5,29.5,29.5,28.8,28.5,28.9,28.9,28.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.4,28.4,28.4,29.1,29.1,28.6,29.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,18.3,27.5,27.5,28.1,28.1,28.1,28.1,28.1,28.1,27.7,27.7,30.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,28,28,28,28,28,28,27,28.2,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.3,27.9,27.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,30.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.3,28.3,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.1,26.2,27,26.3,26.5,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28.2,24.7,24.7,24.7,24.7,24.7,24.7,24.7,28.1,28.4,28.4,28.4,28.1,27.8,27.7,27.7,27.5,27.6,27.6,27.6,27.6,27.6,27.4,27.4,28.9,24,28.2,28.2,28.3,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.4,28.3,28.3,28.3,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29.2,22.2,22.2,22.3,21.9,21.9,21.9,21.9,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.3,19.5,20,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,19.4,20.7,24.7,24.7,24.7,24.7,24.7,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,27.7,27.7,26.9,27,27,27,27,27,27,27,27,27.8,27,27,27,27,27,27,27,26.6,24.3,24.1,26.8,26.4,26.7,26.7,26.6,26.6,26.2,26.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.4,26.9,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27,27,27,26.9,26.2,26.4,26.4,26.4,23.9,23.9,23.9,23.9,23.9,23.9,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,26,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.2,26,26,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.9,27.2,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,27.5,27.5,27.5,26.5,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27.2,27.2,27.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,29.1,29.1,29.1,29.2,25.1,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,27,27,27.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,27.2,27.2,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.7,24.7,24.7,24.7,24.7,24,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,24.4,24.4,24.4,23.2,22.9,24.5,24.5,24.5,24.2,24.2,24.2,24.2,24.2,24.1,24.1,24.1,24.2,24.2,24.2,24.2,25.3,25.5,25.5,26,25.5,24.6,26.7,26.4,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,26.2,24.7,24.7,24.7,24.7,24.7,24.7,25.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.7,24.7,24.7,24.7,24.9,23.1,23.1,23.1,23.1,23.1,23.1,22.5,22.8,22.8,22.8,22.8,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.5,21.9,22.2,27.8,27.8,27.9,20.5,21,22.8,19.2,19.1,19.1,19.8,18,18,15.3,15.3,15.3,12.6,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,11.1,10.1,10.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,13.3,13.3,13.3,23.9,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,26,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,26.4,26.4,26.4,26.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.6,27.8,28.3,28.3,28.3,28.3,28.6,28.4,28.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.2,29.2,28.6,28.6,28.7,28.3,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,27.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,28.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,18.9,18.9,23.6,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.4,20.8,20.8,24.1,24.6,26.6,25.7,26,26,26.4,26.7,27.6,28,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,36.1,36.1,28.7,28.6,28.6,27.1,27.1,27.2,27.2,27.2,27.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,23.6,23.6,22.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.5,27.5,27.5,25,26.2,28.6,28.6,28.6,28.6,28.6,31.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,27.8,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29,28.3,28.3,28.1,27.8,27.8,27.9,27.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,11.4,11.4,11.4,11.4,11.4,11.4,13.1,4.4,4.4,4.4,4.4,4.4,4.4,17.3,17.3,17.3,17.3,17.3,17.3,17.3,17.2,19,13.8,13.8,13.8,13.9,13.9,13.9,15.2,15.2,20,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.4,20.4,20.6,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.4,20.4,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.6,20.5,20.5,20.6,15.4,15.6,15.6,18,18,18,18,18,18,18,18.2,20.9,20.6,20.6,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.6,20.6,20.6,20.6,20.6,20.4,20.6,20.6,20.6,20.6,20.6,20.6,20.5,20.5,20.4,21.1,18.6,18.6,18.6,18.6,17.3,17.3,16,17.5,16.3,16,15.5,15.5,15.6,15.6,15.1,15.1,15.7,14.7,15.5,17.8,17.6,17.6,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,13.6,19.4,19.4,14.8,14.8,14.3,14.3,14.3,14.7,14.3,14.4,13.9,13.9,13.9,13.9,13.3,14.3,7.1,7.1,7.2,7.2,7.8,7.8,6.4,6.4,6.5,6.5,6.5,8.9,8.9,9.8,9.8,14.3,14.4,14.4,14.4,15.3,15.3,15.3,15.3,15.3,15.3,15.2,15.2,7.3,7.3,7.3,7.2,7.2,7.2,7.2,7.2,10.4,10.4,10.4,14,14,18.9,18.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.4,19.7,18.6,18.6,18.6,18.6,15.9,13,13,13,6.7,6.7,6,6,6,6,7.5,6.9,6.9,6.9,6.9,6.8,6.8,6.8,6.8,6.8,18.1,18.1,18.4,18.4,17.8,17.8,18.3,18.4,18.3,18.3,18.6,18.4,18.4,18.4,21.3,21.3,20.7,20.7,20.6,20.6,20.6,20.8,20.8,20.6,20.6,20.6,20.6,20.6,20.6,18,18,18,18,18,17.8,17.8,18.8,17.6,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.8,13.8,16.9,16.9,16.9,16.9,15.3,15.3,15.3,15.3,15.3,15.3,15.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.6,23.6,23.6,23.6,23.6,23.7,23.7,24,23.6,23.9,23.9,23.9,23.9,22.2,22.2,22.2,21.7,21.7,22.2,23.6,23.6,23.6,23.6,23.6,23.6,26.7,26.7,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,26.2,26.2,26.2,26.2,26.2,25.3,25.3,25.4,25.4,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.2,26.4,26.4,26.4,26.4,26.2,26.2,26.2,25.7,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,26.4,26.6,26.6,26.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.5,29.5,27.7,28.1,28.1,28.1,28.1,28.4,28.4,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,22.5,22.5,22.5,22.5,22.5,23.5,28.9,28.9,28.9,28.9,28.9,28.9,28.1,28,29.5,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,30,29.5,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,28.9,28.9,28.9,28.9,29.4,28.9,28.9,25.2,22.5,20.5,20.5,20.5,20.5,20.5,20.5,22.1,22.2,22.2,23.9,23.9,16.3,22.6,25.3,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.4,27.2,27.2,27.2,27.2,27.6,27.8,27.8,28.4,28.3,28.3,28.3,28.6,28.9,28.9,28.3,28.3,28.3,28.3,27.6,28.9,28.9,28.9,28.9,28.9,28,28,28,28,28.1,28.1,28,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,28,28.1,28.1,28,27.7,27.7,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.9,36.1,36.1,36.1,36.1,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.3,27.5,27.5,27.5,27.5,27.3,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.7,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.7,26.9,26.4,26.4,26.4,26.4,25.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,26,23.8,27,27.1,27.8,27.8,27.8,27.7,27.7,27.5,27.8,28.3,28.3,28.4,28.9,28.9,28.9,28.9,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,27.8,27.8,27.8,27.8,27.8,28.1,28,27.8,28.6,28.6,28.6,28.6,28.6,28.4,28.8,26,24.3,24.5,25.5,25.5,25.5,24.8,26.5,27.2,27.2,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,26.9,26.9,26.8,26.8,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.3,26.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.6,26.9,27,26.9,26.9,26.9,26.9,26.9,26.9,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.9,26.9,26.9,26.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.4,25.4,25.4,25.5,25.3,25.1,24.5,23.6,23.6,23.9,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,18.4,18.4,18.4,18.4,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,16.1,16.1,16.1,16.1,17.5,17.5,17.5,17.5,17.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,28,28,28.4,28.4,28.6,28.6,28.6,28.6,28.1,28.1,28.1,27.6,27.6,27.9,28.6,28.6,28.6,28.6,27.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28,28,28,28,28,28,28,28,28,28,25,25,25,25,25,25,25,25,25,25,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26,26,25.9,25.9,25.9,25.9,25.6,25.9,25.9,25.9,26.1,26.1,26.1,26.1,26.4,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.6,28.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,24.2,24.2,23.4,24.2,24.2,24.2,24.2,21.9,21.9,21.9,21.9,21.9,19.4,19.4,19.3,19.3,16.7,16.7,16.7,16.7,16.7,14.2,14.2,14.2,14.2,14.2,14.2,14.5,14.3,13.9,13.9,14.1,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,15.3,18,18.1,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,25.8,25,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,26.4,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,26.2,26.3,26.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.6,26.4,26.4,26.4,25.3,26.1,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.3,26.9,26.9,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.3,28.1,28.3,27.7,27.7,27.7,27.7,29.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,31.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.3,26.4,26.4,25.5,25.1,25.2,25.2,25.3,24.7,24.7,24.5,25.9,25.8,26,26,26,27,27,27,27,27,27,26.9,26.9,27,27.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,24.7,24.8,24.7,22.2,22.2,22.2,19.4,6.1,6.1,6.2,8.4,18.9,18.8,25,24.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,30.5,30.5,30.6,30.6,30.6,30.7,30.6,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,30.9,30.9,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.7,30.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,28.6,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.8,27.9,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,25,25,25,25,25,25,25,25,25,25,25,25,29.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.3,28.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.8,29.1,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29,29,28.8,28.9,28.6,28.6,28.6,28.6,28.6,27.4,28,28,27.9,26.9,24.7,24.5,24.5,24.5,24.5,24.5,25.5,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,25.9,25.8,25.8,25.8,25.8,26.6,26.6,26.6,26.6,26.6,26.6,25,25,25,25,25.3,25.3,25.3,26.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.7,25,25,25,25,25,25,25,25,25,25,25,25,25,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,28.1,27.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.4,29.5,29.5,29.5,29.5,29.5,28.7,29.5,29.5,29.5,29.5,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.8,29.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,19.3,19.1,19.2,19.2,19.1,19.1,19.1,19.1,19.8,19.8,19.8,19.6,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.6,26.1,26,25.5,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.2,25.6,26.1,26.1,26.1,26.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.1,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.6,30.1,30,30,30,30,30,30,30.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,31.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.3,29.6,36.1,36.1,36.1,36.1,36.1,31,30,30,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.3,31.3,30.7,31.2,31.9,31.9,31.4,31.9,31.4,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.5,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,29.7,29.9,28.9,29.6,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.9,31.4,31,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,24.7,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.1,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35,30.4,31.7,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,32.2,31.8,32.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,30.8,31.1,32.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30,31,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,36.3,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.4,31.4,31.4,31.4,31.9,31.9,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.3,30.8,30.9,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.1,18.3,18.3,18.3,18.1,18.1,18.1,18.1,18.1,18.1,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,15.7,15.7,16.9,16.9,16.9,17.6,15.6,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,28.6,28.6,28.6,28.6,30.5,30.5,30.5,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,32.4,32.5,32.5,32.5,32.4,32.2,32.2,32.2,32.2,32.2,31.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.6,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.7,32.2,32.2,32.2,32.2,32.2,31.9,31.9,31.9,32,32.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.4,31.8,32.2,32.5,32.5,32.5,32.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,32,32,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.1,32.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.6,32.5,32.5,32.5,32.5,32.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.4,31.4,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.9,32.2,32.2,32.2,32.5,32.5,32.5,32.5,31.8,32.2,32.2,32.2,32.2,32.2,32,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.3,31.3,31.2,31.2,31.7,31.7,31.6,31.7,31.7,32.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.4,36.1,36.1,36.1,36.1,36.1,31.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.8,31.7,31.7,31.6,31.6,31.9,31.9,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.8,31.9,32.3,32,32,32,32,32.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.7,31.7,31.7,31.7,31.7,31.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,32.3,32.3,32.3,32.3,32.3,31.4,31.4,31.4,31.4,31.8,31.7,31.7,31.7,31.7,31.7,31.7,30.2,30.7,30.7,30.4,30.4,30.3,30.3,30.3,31.9,31.9,31.9,31.9,32.5,30.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,31.9,31.9,31.9,31.9,31.9,31.9,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,32.8,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.4,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,33,33,33,33.1,32.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,35.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37.5,32.8,32.8,32.8,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,26.9,25,25,38.4,36.1,36.1,36.1,36.1,23.8,25,25,23.8,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,21.2,36,36,23,19.5,31.1,31.1,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,8,31.8,31.8,21.1,21.1,21.1,21.3,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,20.6,20.6,21.4,21.4,21.4,21.4,21.7,21.7,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.5,32.7,32.7,32.7,32.7,32.3,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33.1,33.1,33.2,30.3,30.3,30.3,30.3,32.2,32.2,32.2,31.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.3,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,35.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,31.6,29.6,29.6,29.6,29.6,29.6,29.6,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.3,24.3,28.9,30.3,30.3,31.6,31.6,31.6,31.6,31.6,31.6,32.1,32.3,32.6,32.6,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,33.1,32.7,33,33,33,33,33,33,33,33,33,33,33,33,33,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32,32,32,32,32,32,32,32,32,32,32,32.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,44.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,47.9,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,24.9,19.3,32.2,32.2,32.2,31.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.3,33.7,33.3,33,33,33.2,33.2,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,32.5,32.5,32.5,31.8,31.8,31.8,47.4,31.5,31.5,30.2,31.7,31.7,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.2,30.5,30.2,30.2,30.2,30.2,30.2,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,31.7,31.7,31.7,31.6,31.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,35.9,35.9,35.9,32.9,32.9,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,28.3,30.6,28.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,45.2,30.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.6,27.6,27.6,27.6,22.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.4,25.4,25.4,25.4,25.4,25.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,22.7,22.9,22.5,22.5,22.5,22.5,21.6,21.6,21.6,21.6,21.6,21.6,21.6,21.6,25.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,27.2,27.6,27.6,27.6,27.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.4,25.9,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.2,25.2,26.7,26.1,26.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.9,27.9,27.9,27.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,32.3,32.3,32.3,31.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,19.5,19.5,19.5,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,33.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,32.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.9,20.4,33,33,33,33,33,33,33,33,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.7,32.7,32.7,32.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36,36,33,33,33,33,33,33,33,33,33,33,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.6,31.6,31.6,32.8,29.7,31.4,31.4,31.4,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,34.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.3,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,25,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.8,32.2,45.9,32.2,31.8,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.5,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.3,29.1,29.1,29.1,29.1,29.1,29.1,13.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.3,28.2,28.2,28.2,28.2,28.2,27.2,28.1,28.1,28.1,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,27.7,27.7,27.9,27.9,27.9,27.9,28.5,28.7,26.7,27.6,27.6,27.6,28.1,27.9,26.8,26.8,26.8,26.8,26.8,26.8,26.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,29.2,27.1,27,27,27,27.5,26.9,27,27,27,25,25.1,25.1,25.1,27.3,25.6,25.3,21.7,22.4,22.4,23.5,23.5,22.9,22.9,22.8,22.8,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.8,23.8,23.8,23.8,23.8,23.8,23.8,23.8,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,24.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.8,25.1,25.4,25.4,29.5,25.1,26.6,25.2,29.5,25.6,32.3,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.4,25.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,22.8,28.2,28.2,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28,28,28,28,28.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.1,27.5,27.5,27.5,23.9,23.9,20.6,20.6,20.6,8.6,8.6,8.6,8.6,8.7,8.5,11,11.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25,25,25,25,25,25,25,25,25,25,25,25,31.4,31.4,31.4,31.3,31.4,31.4,31.4,31.4,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.3,32.3,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,32.7,32,32,32,32,32,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.1,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,35.3,36.1,36.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,44.9,30.5,30.5,30.5,33.5,25,25,25,25,25,25,25,26.6,24.9,24.9,24.9,25.1,25,25,25,25,25,25,25,25,25,25,25,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32,32,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,29.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,32.3,30.7,30.8,30.8,30.8,30.8,30.8,30.5,30.5,31.2,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.2,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.7,30.4,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.2,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36,31,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36,36,36,36,36,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.9,32.9,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.6,36,36,32,26.8,32,32,32,32,32,32,32,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.3,33,33,33,33,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,32.6,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.8,33,33,33,33,33,33,33,32.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.6,25,25,25,25,14.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,32.7,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.4,32.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.2,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,32.5,32.5,32.4,33,31.8,32.7,32.7,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.7,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32,33.3,33.3,33.3,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,33.3,33.3,33,33,33,33,33,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.6,32.6,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.8,32.8,32.7,32.5,32.5,32.5,32.5,32.5,32.5,32.6,32.6,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,31.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33.1,33.1,33.1,33,33.1,33.1,33.1,33.1,33.1,33.1,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,32,32,32,32,32,32,32,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,26.7,26.7,26.8,22.2,22.1,22.3,6.9,6.7,23.6,23.3,23.3,23.3,29.8,29.7,27.8,27.8,27.8,27.8,27.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27,27,27,27,27,27,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.8,27.8,27.8,27.8,35.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,29.1,29.1,29.1,29,29,27.2,30.1,18.6,18.6,18.6,18.6,18.6,18.6,19.2,19.2,19.2,19.2,19.2,27.5,20.3,20.3,20.3,23.8,25.3,24.9,24.9,26.2,20,19.9,19.9,20,20,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,19.7,21.4,21.4,13.9,13.9,13.9,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,22.5,22.7,22.5,22.5,21.1,21.1,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.9,16.9,16.9,16.8,16.8,16.8,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.2,13.9,13.9,13.9,13.9,17,17,17,17,17,17,17,17,17,17,17,18.1,18.1,18.1,18.1,18.1,18,18,21.1,21.1,21.1,15.5,20.9,21.1,21.1,21.7,21.7,21.4,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.8,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.1,24.1,22.2,22.2,22.2,22.2,22.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.4,22.4,22.6,22.6,22.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,19.2,19.2,19.2,19.2,19.2,19.2,18.9,19.3,19.4,19.4,19.5,20,20.2,21.4,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.3,21.9,23,21.4,21.4,21.4,21.3,19.8,19.8,19.8,19.7,19.7,19.7,19.7,20.3,20.3,20.3,20.3,20.3,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,23,23.6,22.4,23,23,24.2,24.2,24.2,24.2,24.2,20.3,22.7,22.7,23.3,23.3,23.3,23.3,23.3,23.3,23.3,21.1,22,22,23.9,23.9,23.9,23.9,23.9,23.1,23.1,23.1,22.5,22.5,22.5,22.5,22.1,22.3,22.3,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,19.4,19.4,19.4,19.4,19.4,19.4,25,25,25,25,25,18.3,18.3,18.3,18.3,18.3,18.3,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.6,17.6,17.6,17.6,17.6,17.6,15,15,15,15,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,21.4,21.4,21.4,21.4,21.4,21.4,21.3,20,20,20,20,20,20,20,20,17.5,17.5,17.5,22.8,22.8,22.8,22.7,22.8,24.2,24.2,24.2,24.2,24.2,24.2,24.2,25,23.9,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,25.6,18.6,18.6,23.6,23.7,23.7,23.6,23.6,23.6,30.5,30.5,30.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.7,24.1,24.1,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,22.2,22.2,22.2,22.2,22.2,27.2,27.2,27.2,26.8,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28,27.9,27.9,28.1,28.1,28.1,28.1,28.1,27.8,27.8,27.8,27.8,27.8,27.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,30.8,30.8,21.9,21.9,21.9,21.9,22,22.1,22,22,22,23,21.9,18,19.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.3,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,31.9,31.9,31.9,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.6,31.4,31.4,31.4,31.4,31.4,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.3,28.2,28.4,14.8,14.7,14.7,28.5,4.3,5.7,25,24.9,25.1,35.9,36.1,36.1,36.1,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.5,32.5,32.5,32.3,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.4,30.5,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.9,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.6,31.9,31.9,31.9,31.9,30.2,30.2,30.3,29.7,28.7,28.8,22.2,22.2,22.3,22.3,6.7,20.5,20.5,19.4,19.4,19.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,31.4,31.4,31.4,31.4,31.4,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25.8,26.1,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.2,27.1,27.1,27.7,27.1,27.1,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.1,28.1,28.2,28.3,28.3,28.3,28.3,28.3,28,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.7,26.8,26.2,26.5,27.2,27.2,27.2,27.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,24.2,24.5,24.5,24.5,20,10.3,10.3,10.3,10.3,10.3,19.4,23.8,23.8,26.1,26.1,26.1,26.1,26.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.1,28.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,26.4,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,27.9,28,28,28,28,28.3,28.1,28.1,28,28,28,28,28,28,6,5.7,9.1,9.1,13.3,13.3,13.3,14.4,16.2,16,17.8,17.5,17.7,18.3,19.3,19.3,33.4,33.4,33.4,33.4,33.4,33.4,26.3,26.3,26.3,26.3,26.3,26.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,7.8,7.7,7.7,7.7,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,11.7,11.7,11.7,11.7,18.4,18.4,18.4,18.4,18.4,20.8,20.8,20.8,20.8,20.8,24.4,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,26.7,28,28,28,28,28,28,26.8,27.8,27.8,27.8,27.8,26.7,26.7,26.7,26.7,25,25,25,25,25,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.7,22.7,22.7,22.7,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,25.3,25.3,25.3,25.5,27,27,27,27,27,27.3,27.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,28,28,28,28,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,27.5,27.5,27.5,27.5,27.5,27.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,26.8,26.8,28.1,28.1,28.1,28.1,28.1,28.1,26.7,26.7,26.7,26.7,26.7,27.3,27.3,27.3,27.3,26.9,26.9,26.9,26.9,26.9,26.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,26.9,28,28,28,28,28,28,28,28,26.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.1,28.1,28.1,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,26.4,26.4,26.4,26.4,26.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.5,22.2,22.2,22.2,22.2,19.8,19.8,19.8,19.7,6.4,6.4,6.4,6.4,6.4,14.5,14.5,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,24.2,24.2,24.2,24.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,25.8,26.2,26.2,26.2,26.2,25.2,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.5,26.5,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.8,25.8,25.8,25.8,25.8,26.3,26.3,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.6,26.6,26.6,26.6,26.6,26.6,25.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.7,25.7,25.7,25,25,25,25,25,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.4,25.4,25.4,25.4,25.4,25.6,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22.4,22.5,22.5,22.5,22.5,23.3,23.3,23.3,23.3,23,23,13.9,13.9,13.9,23.5,23.5,23.5,23.5,25,25,25,25,25,25,25,25,25,25,25,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27,27,27,27,27,27,27,27,27.6,27.8,27.8,27.8,26.6,27.3,26.8,28.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28,28,28,28,28,27.5,27.5,27.5,27.5,28,28,28,28,28,28,28,28,28,28,28,28,27.2,27.2,27.2,27.2,27.2,27.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,29,29,29,29,29,28.4,28.4,28.4,28.4,28.4,27.3,27.7,27.8,27.8,27.8,27.8,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28,34,33.3,33.3,33.3,33.3,33.3,28.2,28.2,28.2,28.3,28.3,28.3,28.4,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.9,29.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,29.4,29.4,29.4,29.4,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.6,29.6,29.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.4,28.4,28.4,28.4,28.4,28.4,29.4,29.4,29.4,29.4,29.4,29.2,29.2,29.2,29.2,29,29,27.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.2,29.2,29.2,29.2,28.9,28.9,30.2,30.2,30,30,30,30,30,30,30,30,30,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.2,30.2,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,26.1,31.8,30,30,30,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.6,29.5,29.5,29.5,29.5,29.5,28.7,28.7,28.4,28.4,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.6,25.3,20.3,9.6,9.7,9.7,9.5,9.4,9.7,17.5,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.4,19.5,19.5,25,25,25,25,25,25,25,25,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,22.5,22.5,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.1,22.1,22.1,22.1,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.2,23.2,23.3,23.3,23.3,23.3,25.3,25.3,25.2,25.3,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.9,22.8,22.8,23.2,22.8,22.8,22.8,22.8,22.8,22.8,22.8,8.1,8.1,8.1,8.1,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.3,8.3,8.3,8.3,8,8,8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,29.2,29.2,29.2,29.5,29.2,29.2,29.2,29.2,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,27,27,27,27,27.3,27.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.2,28.6,28.6,28.6,28.6,28.9,28.9,30,30,30,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.8,30.8,30.8,28.1,28.1,28.1,28.1,28,28,28.3,28.3,28.3,28.8,28.8,28.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.2,29.2,29.2,29.2,29.2,28.5,29.2,29.2,29.2,29.8,30,30,30,30.1,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,31.4,31.4,31.4,31.4,31.4,29.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.3,29.3,20.9,20.9,20.9,20.9,20.8,20.8,20.8,20.5,24.2,24.2,26.6,26.6,26.6,26.6,26.6,26.6,27.4,27.4,27.5,27.5,27,27,26.9,26.9,26.9,26.9,26.9,26.9,25.9,25.9,25.9,25.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.2,30.2,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.1,30.6,30.6,30.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.3,29.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.6,30.3,30.3,30.3,31.1,31.1,31.1,31.5,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.6,30.4,30.4,30.4,29.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,28.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.3,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.7,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.8,28,28,28,28,28,28,29.2,29,29,28.9,28.9,28.9,28.9,28.9,28.9,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.1,29.1,29.1,29.1,29.1,30.6,31.2,30.4,30.4,30.4,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29,29,29.5,29.4,29.5,29.3,31.1,30.3,30,30,30,30.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31,30.5,30.5,30.5,30.3,30.2,30.2,30.2,29.7,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.3,29.3,28.9,28.6,28.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24,25.3,25.3,25.3,25.3,26,26,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.8,27.8,27.8,27.8,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.4,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.7,30.3,30.3,30.3,30.3,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31,31,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28,28,28,28,28,29,29,29,29,29,29,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,32.7,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.7,30.8,30.8,32.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.7,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.1,29.1,29.1,29.1,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.1,29.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.7,29.7,29.7,29.7,29.7,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.5,31.1,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,28.7,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.3,29.3,29.3,29.3,30,30,30,30,30,29.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.2,30.2,30.2,30.2,30.2,29.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.9,29.9,29.9,29.9,29.9,30,30,30,30,30,30,30,30,30.1,30.2,30.2,30.2,30.4,32,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,30.1,29.8,29.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,8.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,13.3,28.6,28.6,28.6,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.8,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.5,29.6,29.6,29.9,29.9,29.9,29.9,28.8,28.8,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30,30,30,30,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.4,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,29.3,31.5,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.6,28.8,28.8,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.4,28.6,28.6,28.6,28.6,28.6,28.6,30.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25,25,25,25,25,25,25,25,25.3,30.2,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.6,28.6,28.6,28.6,28.6,17.6,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.7,29.7,29.7,29.9,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.7,29.7,29.7,29.7,29.3,29.8,29.8,29.8,29.1,29.1,29.1,29.1,29.1,29.1,29.1,28.8,28.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.7,29.3,29.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.6,28.6,28.7,28.9,28.3,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.3,29.5,30,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,27.9,27.7,29.7,29.4,29.4,29.4,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30,30,30,30,29.9,29.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.7,29.7,29.7,29.9,30.5,30,30,30,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30.3,30,30,30.4,29.9,30,30,30,30,30,30,30,30,30,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,29.6,29.6,29.9,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,30,30,30,30,30,29.7,29.7,29.7,29.1,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.8,31.6,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.7,31.7,31.7,31.7,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,31.1,31.3,31.1,31.1,31.1,30.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.2,30.7,30.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.1,30.3,30.3,30.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,29.7,29.7,29.7,29.7,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.8,30,29.6,29.6,29.7,29.7,29.7,29.8,29.8,29.8,29.8,29.8,30,30,30,29.5,29.7,29.9,29.9,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.2,30,30,30,30,30.1,30,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,25.7,27.2,27.2,27.2,27.2,26.1,24.9,24.9,24.9,24.9,24.9,22.6,22.6,22.6,21.7,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,28.5,24.4,24.4,24.4,24.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.7,28.6,28.2,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,28.1,28.7,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.3,33.3,33.3,33.3,33.1,33.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.2,31.2,32.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.6,31.6,33.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.5,31.7,32.5,32.5,32.5,31.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.7,32.5,32.5,32.5,32.5,32.7,31.9,31.9,31.9,31.9,31.9,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,29.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,29.7,29.7,29.7,29.7,29.7,29.9,29.8,29.8,29.8,29.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,28.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30,30,29.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,29.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.1,29.4,29.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.5,29.5,29.3,30,30,30,30,30,30,30,30,30,30.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.3,30,30,30,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.9,30.9,28.1,29.4,30,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,33.1,27.5,29.1,29.1,29.1,29.1,29.1,29.1,29.6,29.4,29.4,29.4,29.4,29.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.8,28.6,28.6,28.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.4,27.6,27.6,27.8,27.8,27.7,27.5,26.6,26.6,26.7,26.7,26.7,27.8,27.8,27.8,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.9,29.7,29.7,29.7,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.2,25.1,23.9,23.9,23.9,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.7,29.7,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,30,30,30,30,30,28,29.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.5,27.5,27.5,27.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,30.2,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.1,29.2,31.1,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,28.6,28.6,28.6,28.6,28.6,26.9,26.9,26.9,26.9,27.1,27.1,26.9,26.9,26.9,26.9,26.9,26.9,24.2,24.2,24.2,24.2,24.2,26.3,26.3,26.2,27.6,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,27.3,27.3,27.3,27.3,27.3,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.8,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.3,29.3,29.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,30.5,30.5,30.5,30.5,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,29.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.1,32,32,32,32,31.5,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.1,29.2,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,31.5,31.5,31.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.2,29.2,29.2,29.2,28.5,28.7,30,30,30.8,30.8,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29,29.2,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.3,28.6,28.6,28.9,28.9,28.9,28.9,28.9,29.4,29.4,29.4,29.4,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28,28,29.5,29.5,29.5,29.5,28.6,28.6,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.1,26.1,26.1,25.6,26.1,26.1,26.1,26.5,27.2,27.2,27.2,27.2,27.2,27.6,27.8,27.8,27.8,27.9,25,25,25,25,25,25,25,25,25,25,23.8,23.9,23.9,23.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.3,23.1,24.5,23.1,22.9,23,23,23,23,25.2,25.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.9,27.1,27,27.2,26.7,26.7,26.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.2,33.3,33.3,33.3,33.3,33.3,33.3,30.4,31.1,31.1,31.1,30.8,30.8,30.8,30.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.5,30.5,30.5,30.5,30.8,29.7,29.7,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,30.3,29.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.1,28.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.8,27.2,28.4,28.4,28.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31,31,28.6,29,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.6,30.7,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,29.5,28.4,28.4,28.4,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.1,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.9,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.6,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28,28,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,26.3,26.3,26.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.8,27.8,27.8,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,32.5,30.6,30.6,30.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,31,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.5,29.5,29.5,28.6,28.6,28.6,28.6,28.6,28.6,28.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,28.3,28.3,28.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.2,30.1,30.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28.1,29.2,29.2,29.2,29.2,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.4,28.4,28.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.8,29.2,29.5,29.8,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,25.8,25.8,25.8,16.1,16.1,16.1,20.6,18.2,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,30.3,30.3,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,31.2,31.9,31.9,31.9,31.9,31.9,31.9,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.1,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.6,31.3,32.5,32.5,32.5,32.5,32.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.5,31.4,31.4,31.4,31.4,31.4,31.3,31.5,31.5,30.8,30.8,30.8,30.8,30.8,31.1,31.1,30.5,30.3,30.3,30.3,30,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31,30.5,30.5,31.4,30.6,30.6,30.6,30.2,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.2,31.6,31.1,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.3,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.9,30.2,30.2,30.3,30.3,30.3,30.1,30.1,29.4,29.5,29.5,29.5,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,28.4,28.9,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.4,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.1,28.3,28.3,29,28.9,28.9,28.9,28.9,28.9,28.9,29.3,29.5,29.5,29.5,28.3,28.3,28.3,28.2,28.3,28.3,27.6,33.3,33.3,33.3,33.3,28.4,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.3,28.4,29,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.9,28.6,28.6,28.6,28.4,28.3,28.3,28.3,28.3,28,28.6,28.6,28.6,28.6,28.5,28.8,27.3,27.2,28.1,28.1,28.1,26.9,26.9,24.3,24.1,23.9,23.8,16.4,16.4,16.4,16.4,16.9,16.9,23.2,22.8,23.1,23,23.2,27,27,27,27,27,27,28.1,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.9,26.1,26.1,26.4,25.8,25.8,25.8,25.8,25.8,25.8,24.2,21.4,21.4,21.4,21.4,21.4,15.7,15.7,15.7,15.7,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.4,18.4,18.4,18.4,18.4,18.4,18.4,16.2,15.6,15.6,15.6,15.6,15.8,15.8,16.2,16.2,16.2,16.2,16.2,16.2,16.2,16.2,16.2,16.2,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,19.9,19.5,19.8,19.8,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.1,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,21.5,21.4,21.4,21.4,21.4,21.4,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,13.4,14.7,14.7,13,13,13,11.6,13.6,13.6,13.1,16.1,16.1,13.8,14.9,12.2,12.2,14,15.3,15.3,15.3,15.3,15.3,15.3,15.3,13.9,15.2,15.2,15.1,15,15,13.4,14.4,14.4,14.4,14.4,14.4,12,12,12,11.9,6.7,8.9,8.9,8.9,9.8,10.3,8.1,8.1,8.1,8.1,8.1,7.1,7.1,7,7,7,6.9,6.9,6.9,6.9,4.7,4.7,4.7,6.4,13.6,13.5,13.5,13.6,13.6,13.6,13.6,13.6,13.6,14.3,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.3,9.3,8.1,8.1,8.1,8.1,8.1,8.2,8.2,8,8,8,8,8,8,8,11.2,11.2,11.7,11.7,11.7,10.6,13.3,13.9,13.9,13.9,10.6,10.6,10.6,10.6,11,10,10,10,10,11.3,11.3,11.9,11.9,11.9,11.9,11.9,11.9,12,12,9.9,10,10,9.8,9.8,13.3,13,13,13,13,13,13,8.5,8.5,9.7,9.7,9.7,4.3,5.4,8.2,8.2,8.7,10.5,10.5,12.8,12.8,14.7,14.7,14.7,14,6.7,6.7,7.8,12.2,12.2,12.2,12.2,14.5,13.3,13.3,13.2,13.3,7.2,5,4.9,5,5,5,5,5,5,5,5,6.6,6.6,6.6,6.1,6.1,6.1,6.1,5.8,5.8,9.2,6.9,6.9,6.9,8,7.8,7.6,7.6,7.5,7.5,5.6,5.3,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,6.3,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,5.5,5.8,5.3,5.5,5.5,4.7,4.8,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,5.9,4.1,4,5.2,5.3,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.2,4.2,4.2,4.5,4.5,4.5,4.5,4.5,4.5,4.4,4.4,4.4,3.6,3.6,3.6,3.1,3.1,3.1,3.1,3.1,3.1,3.1,2.5,2.5,2.5,4.4,3.9,4.2,3.8,3.8,5.8,5.8,5.8,6.7,6.7],"distance":[110.2,98.2,48.5,1.3,25.7,16.7,48.7,13.3,77.6,10,11,5,20.7,18.9,49.1,12.8,9.7,9.2,9.2,9.1,4.1,14.2,9.5,4.8,51.4,23.7,14.5,8.4,0.3,4.4,2.4,12.2,14.7,4.4,7.7,32.2,71.8,17.1,5.1,4.7,12.9,12.8,3.8,61.1,32.7,32.6,16.4,27.7,12.3,4.4,12.5,16.7,5.1,14.7,8.4,10.5,36.6,10.5,81,23.7,4.1,15.1,24,64.2,7.2,0.2,16.5,4.6,17.5,30.4,15.3,19.7,0.4,24.9,3.8,3.7,3.2,3.9,3.2,22,2.5,2.4,9.7,14.8,6.7,6.1,49.7,111.9,3.8,4.1,87.8,33.3,3.4,5.7,10.1,12.1,14,9.6,15.4,7.4,7.7,8.5,5.7,3.1,3.8,7.2,27.4,14.8,12.1,6,11.3,6.1,5.4,7.1,7.2,5.7,7.2,4.4,73.8,13.8,10.2,9.2,11.5,8.3,4.5,10.9,75.3,2.6,2.7,9.5,11,9.3,13.5,5.3,6.5,8.9,12.9,11.5,19,18.6,8.2,2.8,20.2,18.6,25.6,10,13.1,21.9,7.2,7.7,21.9,5.1,16.8,22.8,17.1,1.3,11.9,19.3,6.3,9.4,3.8,14,9.3,2.8,4,7.8,43.3,1.2,2,25.2,4.2,38.3,27.9,23.5,23.8,16.7,4.3,39.3,3.8,11,9.1,3.5,85.2,13,4.6,5.3,7.2,10.6,3.3,8.9,4.2,13.7,8.8,28.4,4.6,8.5,4,23.4,3.3,11.2,11,22.5,25.8,4.1,7.3,8.8,8.2,10,8.4,12,4.5,4.2,16.4,13.5,34.5,89.5,9.1,8.9,3.4,12.9,10.3,2,16.3,1.9,86.2,2.1,5,7.1,5.6,4.4,5.6,2.4,4.1,5,6.6,20.6,6.9,5.3,2.6,1.6,21,2.9,18.5,4.3,2.7,2.8,5.9,58.9,31.9,12.3,75.5,57.5,14.8,10.7,5.9,3.6,4.7,5,8.5,10,1.1,9.9,10.6,9.3,10.8,4.1,8.3,15,3.8,10.5,2.7,114.2,42.4,3.8,4.2,4.8,7.2,26.8,8.6,5.7,2,1.5,5.7,2.2,53.2,19.8,57,46.4,4.8,13,14.1,2.4,13.1,14.1,12.5,12.5,9,12.3,11.4,4.6,11.8,13.9,3.7,34.9,35.4,9.3,15.1,3.9,50.6,17.6,17,27.8,14.9,4.3,9.1,23.7,7,2.7,45.2,37.1,12.6,43.1,30.5,3.1,39.6,15.7,3.9,3.9,10.9,21.2,19.6,1.8,18.5,2,38.2,4,7.1,20.8,6.8,8.6,4.2,4.4,6.5,13.4,6.7,4.2,2.5,25.4,139.4,6.5,5.5,91.2,12.9,0.3,21.4,3.7,7,13.8,24.9,2.4,6.7,60.8,3.2,11.4,14.3,13.1,15.2,26.9,41.7,20.5,64.6,8.7,24.1,35.1,72.6,69.4,17.3,9.1,28.7,50.2,47.6,43,63.7,97,30.3,36.5,32.5,61.5,168.3,243.8,42,78.2,38.7,44.7,19.8,34.4,15.9,29.1,56.1,22.6,43.7,47.5,45.4,63.6,35.5,38.1,88,14.3,70.7,67.1,36,54.9,48.6,26.4,50.2,28.6,29,29.8,37.5,43.9,43.3,22.5,0.4,26,25,27.5,44.3,54.2,90.8,102.8,153.4,23.6,89.6,110.1,242.5,81.1,72,65.1,95.2,160.7,109.5,52.5,25.7,26.1,33.4,17.5,17.2,16.7,16.7,37.6,20.3,21.5,23,26,23.1,25.7,33.8,18,24.1,41.7,26.1,26.3,40.9,48.5,34.4,37.6,26,25.1,21.1,34.7,5.1,51,51.4,32.1,27.7,37.3,57,24.2,17,18.6,23.6,18,16.8,25.5,13.3,18.5,13.7,11.9,10.4,12.8,16,15.1,11.7,11,15.1,15,15,14.4,13.7,11.9,13.1,13.7,16.2,19.3,13.8,11.3,11.2,11.5,13,24.8,26.1,58.8,70.9,8.6,30.9,92.3,26.2,124.5,37.5,53.3,127.4,113.6,202.1,90.5,322.5,362.5,10.8,82.4,73.9,50.5,228.8,26.4,298.2,231.7,7.1,84.6,72,107.5,680.5,185.5,87.9,129.1,93.5,138.6,154.2,41,184.7,68.4,170.1,221.5,373.4,47.8,359.4,158.3,112.8,96.7,360.8,37.4,264.3,280.6,316.2,344.7,45.1,288.6,229.8,25.3,147.4,297.2,88.1,47.8,33.5,110.8,37.9,27.6,19.6,18.3,36.1,29.9,34,17.3,20.3,42.1,20,22.2,60.3,9.6,60,147.4,228,68.2,27,21.1,26.7,10.6,13.2,12.1,16,9.8,11.2,19.8,24.3,15.4,19.7,34.5,31.4,44.1,26.7,62.2,26.1,29.6,35.8,24.5,23.5,14.1,24.9,19.8,18.5,26.2,14.9,46.1,308,77.8,111.9,51.3,61.7,40.1,14.4,88.2,18.7,134.4,13.2,17.4,11.3,23.4,27.6,49.7,58.7,34.8,46.8,45.2,61.2,30.8,29.7,38.5,36.9,56.8,373.2,381.3,167.4,34.5,19.8,76,86.5,145.8,105.6,47.9,48.7,49.5,36.7,32.3,30.6,38.3,42.3,42.9,34.4,41.8,31.3,33.8,33.1,28.6,33.3,34.1,36.6,32.9,33.3,70.5,431.3,575.2,47.6,32.9,31.9,41.2,32.8,35.8,33.7,34.3,27.3,26.3,30.5,31.1,26.3,28.2,36.6,25.8,27.7,41.2,33.3,51.7,76.4,81.9,373.6,39.1,35.1,41.3,33.4,29.2,28.2,22.9,33.2,37.5,20.6,21.2,62.4,35,185.1,69.6,66.4,58.6,9.3,99.7,92.7,131.1,68.6,86.4,33.8,34,26,36,29.3,18.2,9,8.9,28.1,20.7,7.9,31.5,47.5,28.4,62.6,55.3,35.7,38.8,327.1,49,57.7,50.2,49,18.1,68.6,53.2,65.8,58.7,50,332.2,224.3,171.5,193.8,768.4,79.8,61.7,67.9,70.6,68.1,114.6,100.6,63.5,68.2,61.7,63.5,71.4,79.2,84.6,66.8,111.6,314.4,69.3,249.4,27.2,194.1,174,191.2,64,94.2,63.9,72.3,7.5,37,37.5,35.2,50,24.8,37.7,35.9,34.7,33.9,37.5,35.3,35.8,37.5,69.6,216.1,170.8,56.3,172.5,332.5,46.2,158.2,65.1,125,42.4,34.1,35.9,220.6,56.7,45.9,31.9,333.1,130.1,227.4,254.7,43.1,39.5,31,25.1,24.4,22.5,26.7,24.9,19.9,26.3,30.2,35.3,37.6,38.8,30.3,27.1,29.8,35.6,33.6,33.6,38.9,39.5,33.5,32.9,32.8,32.3,41.6,54.9,74.7,73.2,122.8,27.2,71.1,363.5,229,35.9,212.8,375.2,154.7,97.7,54,56.4,54.1,50.2,44.3,60.7,39.4,50.8,35.9,45.8,119.6,55.9,60.6,32.4,61.9,49.2,44.9,17.1,27.6,57.2,63.5,64.1,37.9,53.6,9.1,45.2,69.2,25.8,42.8,77.1,101.2,48.1,17.5,54.1,56.8,387.3,174,150.2,65.3,56.8,68.3,75.9,77.9,63.7,12.9,62.1,17.6,53.2,0.5,66,105.5,143.3,130.4,361.7,149.8,169.9,304.7,65.1,201.4,125.6,146.2,70.9,67.2,65.5,75.3,51.8,29.8,15.5,53.5,143.6,563.4,198.8,94.4,160.9,196.8,73,375.5,352.6,32.6,436.8,363.8,515.2,94.3,86.6,73.3,23.2,32.3,10.3,34.3,29.3,31.7,31.3,27,28.9,25.7,17.4,10.3,19.5,26.2,24,27,24,21.6,23.4,24.7,22.4,30.3,15.9,29.3,166.5,89.6,60.5,199,413.3,75,33.1,24.7,41.4,353.2,155.5,232.8,28.9,21.9,100.3,66.1,52,108,312.3,56.4,87.3,23,62.7,55.6,0.2,72.8,14,84.8,78.2,125,44,29.5,41.8,131.4,27,80.7,147.6,49.3,132.2,119,53.6,14.1,270.8,296.3,35.6,10.8,7.9,287.3,30.8,28.6,32.5,36.4,45.5,37.3,58.2,48.2,43.5,36.7,37.6,27.6,44.6,82.3,69.5,34.5,37.3,75.6,71.7,71.4,70,75.5,67.5,73.2,73.7,78.2,70.7,70.8,41.5,34.1,71.8,70.6,58.8,72.9,72,51.5,21.7,100.9,92.1,104.9,54.5,47.4,20.4,179.8,200.5,115.1,70,96,103.8,94.9,95.2,57,55.4,116.1,32,188.3,84.3,89,76.5,108.6,448.6,150.5,278.4,257.3,22.8,92.6,129.4,60.5,50.1,104.8,42.8,117.9,95.6,87,90.7,97.3,69,80.5,67.6,239,74.6,33.4,61.4,223.2,110.7,40.8,44.6,45.5,60.4,65.5,91.1,64.7,125.6,100.4,93,123.3,28.9,28.8,46.8,128.7,727.2,65.9,191.9,119.7,65.4,127.8,60.3,107.7,90.8,44.1,94.1,14.1,154.5,151,122.3,186.8,186.9,396.2,175.4,0.2,173.9,23.1,218.9,240.5,430.1,0.3,87.6,83.5,92.8,63.4,47.3,138.4,46.7,82.2,79.5,126.7,59.7,146.9,60.4,71.8,166.8,166.5,31,84.7,25.2,43.8,73.2,114.4,142.7,91.8,233.5,486.6,563.4,108,380.6,459.1,292.2,64.6,604.5,254.2,413.6,52.7,92.2,109.8,26.7,15.2,65.5,80.4,70.4,110.7,103.3,185.6,185.7,16.9,468.1,360.4,187.8,181.9,99.5,151.1,58.1,49.5,159.9,34.7,383.7,505.1,190.6,189.8,223.8,93.2,89.2,246.6,264.8,109.3,84.8,71.8,41.7,24.3,46.9,64.3,57.6,72.7,164.2,37.2,284.8,200,351.6,177.7,176.3,183.7,173.9,173.5,171,318.1,73.1,29.8,159.8,153.5,200.2,205.9,85.3,62.4,412.1,432.3,323.5,315.7,167.2,169.4,3.4,141.8,103.7,63.1,110.9,117.8,232.2,25.7,166.4,131.5,98.5,386.9,56.6,67.1,23.9,49.7,57.4,75.6,70.9,66.5,200.6,108,59.2,60.9,36,35.3,37.1,35.1,38.7,44.1,77.3,51.3,38.9,22.6,22.7,86.3,61.9,62.8,59.7,170.1,68.5,50.6,34.6,36,5.2,39.1,38.7,52.1,42,54.5,50.7,44.1,69.9,58,64.2,314.2,54.5,55.2,54.2,55.7,57.3,63.3,71.7,112,143.5,50.9,27,130.7,48,183.8,73.1,262.4,123.3,71.3,41.3,29.8,22.3,89,149.6,31.4,125.7,157,151,151.8,152.1,156.7,105.5,140.2,234.9,219,99.6,109.7,86.3,74.6,170.8,188.4,90.1,237.5,178.5,128.9,162.7,190.8,41.5,34.8,24,155.3,149.6,55.2,98,43.9,188.2,112.9,181.6,112.7,112.2,123.6,352.8,174.4,215.6,128.6,93.4,239.5,174.1,120.4,109.8,168.7,96.9,189.7,229.4,234.9,259.4,214,31.3,130.4,157.9,107.7,45.2,41.4,99.8,44.5,26.6,1.9,86.2,174.6,182.2,17.8,32.9,126.5,197.8,111.9,71.4,201.9,35,39.2,80.3,27.2,47.4,20.1,76,75.1,77.7,70.1,105.2,57.4,55.8,56.5,59.6,62.1,66,79.2,48.3,134.5,144.4,386.1,472.5,7.1,427,276.1,407.4,513.6,250.4,43,510.6,182.8,104.7,109.1,53.2,56.3,99.2,94.2,68.1,34.7,32.3,59.1,70.7,74.3,70.9,69.2,76.8,64.9,67.2,413.8,934.3,56.5,94.7,46.2,61,45.1,61.1,41.9,62.9,98.1,57.5,59.7,66.2,66,120.6,77.1,154.2,159,320.9,141.4,139,175.7,236,16.2,88.1,51.6,33.9,42.4,158.9,230.4,35,131.3,447,42.4,162,104.3,73.4,88.4,87.3,131.3,131.1,21.2,63,43.7,49.2,85.8,58.2,62.3,55.7,53.1,50.7,62.5,65.3,50.3,177.8,113.1,97.2,38.2,23.2,19.9,20.5,17.6,94.2,39.4,222.7,147.5,136.7,193.7,157.6,82.9,32,60.2,373,333.1,101.4,94.7,87.9,137.1,13.5,169.8,81.1,80,118.4,41.2,44.2,45.3,48.9,49.2,37.7,87,63.4,60.9,70.4,71.3,64,49.2,96.9,63.1,21.3,47.6,10.4,89.5,68.9,44.3,91.4,108.3,173,169,109.8,112.2,52.1,39.9,94.2,5.7,144.2,105.8,56.7,57.6,62.6,71.2,87.9,49.2,34.5,511.3,33.3,90.1,142.6,130.1,147.8,37.1,27,82.5,42.5,63.4,21.2,134.2,33.3,208.5,105.5,105,91.8,90.2,98.3,46.9,45.8,50.2,29.4,359.2,86.9,356.5,126.2,81.1,58.1,71.6,68,65.1,36.7,41.2,114.7,122.7,214.8,433,269.1,42.1,35.9,197.9,137.9,151.5,126.2,15.3,44.4,22.4,193.7,119.8,164.5,79.2,71.9,78.4,75.8,54.6,66.7,106.2,85.4,90.9,28.8,91.1,380.2,1011.3,57.1,243,157.8,162.8,117.4,111.9,135.2,157.1,118.1,178,444.8,314.2,132.1,99.3,109.6,25.5,121.6,48.9,160.3,25.5,155.4,185.1,61.5,180,78.4,39.6,27.7,90.4,95.2,95.7,92,92.1,125.4,126.5,195.7,133.4,92,242.1,276.4,190.1,37.1,231.1,34.7,105.1,97.5,115.7,39.8,223.5,43.3,202.8,120.7,332.4,166.1,86.5,163.9,26.7,64.8,145.2,1111.7,30.3,17.2,50.9,890.1,30.9,1124.3,994.1,32.6,222.4,1137.8,56,324.2,181.1,283.4,39.2,241.9,228.2,44.6,180.9,220.9,91,114.5,122.6,113.1,177.3,49.9,27.2,114,23.1,40.9,26,170.9,31.8,198.6,248.6,15.6,230.6,54.9,189.8,526,3.9,491.6,43.8,170.6,73.5,18.8,156.9,18.3,31.8,45.4,158.1,20.5,166.2,126.2,21,53.9,45,35.6,67.3,88.3,25.1,76.4,55.9,31,48,64.6,61,94.6,69.7,81,92.5,39.9,420,48.9,358,82.1,499.7,192.1,51.7,59.7,70,49.2,57.2,50.8,51.9,51.6,61.1,56.9,57.6,75.5,54.7,61.2,75.7,87.5,287.3,77.1,160.5,37.8,246.2,20.2,125,115,78.2,81.3,101.6,54.2,62.1,65,72.6,82,97.6,72.9,53.1,134.4,330.4,145.7,87.7,207,59.6,74.5,147.3,286.6,34.9,227.4,16.7,257.4,359.6,154.7,61.3,191,198.4,36.6,307.1,189.3,152.8,141.2,206.7,166.5,107.5,110.9,60.6,56.6,112.7,194.9,190,5.3,356.8,140.6,151.7,25.9,322.3,95.5,330.1,76.2,61,124.5,63.4,28.7,72.6,55.6,53.7,36.8,2.9,50.2,69.9,258.1,52.2,33.5,35.6,130.8,120.3,36.4,214.7,36.1,256.7,102.4,107.4,35.7,126.2,114.5,117.4,100.6,13.2,117.9,358.6,12.2,367.1,122.2,21.4,141.2,64.1,87.4,56.4,36.8,7.9,66.6,35.9,99.2,63.2,43.9,90.7,104.7,93.7,14.6,171,157.6,137.2,272.7,23.7,217.7,428.2,13.5,57.2,385.6,112,282.7,139.4,67.3,13.7,119.8,10.1,43.1,183.9,143,29.7,24.6,66.5,42.9,185,115.3,13.2,23.5,167.5,48.3,35.9,155.7,50,12.1,32.4,130.8,65.2,65.8,175.2,59.9,101.4,107.3,84.5,58.1,6.6,147.2,185.7,37.9,281.4,314.4,165.8,13.1,158.3,67.6,46.7,207,207,163.3,111.4,26.3,86.4,35.9,50.1,97.2,63.5,7.6,62.4,72.1,23.9,53.2,78.1,105.5,92.9,84.6,57.9,23.4,64.9,62.6,31,325.4,104,221.1,170.9,26.3,57.8,184.1,187.6,52.2,83.1,258.8,167.3,130.4,50.8,178.9,131.6,55.3,29.2,264.8,93.3,59.3,42.8,93.8,98.3,135.5,92.3,10.5,43.9,150.9,302.5,207.4,20.3,99.8,16.4,159.9,31.1,42.6,71.1,92.5,167.7,47,48.2,47.2,39.8,109.2,122.7,116.4,94.3,41.4,42.8,51.5,23,132.5,9.6,153.9,28.3,133.4,327.1,47.5,248,142.6,109.4,44.7,154.2,151.1,47.9,84.4,125.8,41.3,274.1,34,23.3,9.6,180.5,48.8,16.8,24.5,234.1,265.2,270.2,77.1,362,19.9,496.3,295.5,52.6,94.3,31.5,26.2,235.4,253.2,237,250.6,38.2,396.1,54.5,155.8,58.9,40,7.9,9.9,142.8,54.9,33.6,102.5,51,79.1,75.8,81.9,110.1,0.4,198.4,127.9,76.9,92.9,123.6,91.8,291.8,13.4,84.5,125.8,24.7,45,202.1,11.7,148.4,113.9,124.1,84.7,31.2,57.9,180.1,251.4,18,162.1,338.3,380.5,57.4,52.4,321.5,192.8,58.3,252.2,211,134,41.9,203.3,23.4,150.6,162.6,42.2,76.3,89.6,13.5,84.1,93.5,49.2,75.1,95.8,89.6,47.3,25.1,362,73.5,51.6,83.1,90.1,58,267.7,268.6,57.6,167.7,58.9,213.7,44,59.1,59.4,53.2,32.8,423.1,40.9,27,55.4,213.5,162.9,33.9,34.4,1.8,47.8,14,33.9,419.3,332.4,146.3,299.5,191.2,34.7,58.4,234.9,39.7,184.9,61.4,50.2,26.9,130.8,51.9,30.4,85.9,62.5,393.8,60.2,59.7,132.8,113.4,155.5,52.3,80.6,118.4,6.5,185.9,103.6,125.5,299.9,102.9,384.3,29.4,18.4,59.7,371.1,28.1,53.4,126.3,164.9,155.3,37.4,27.8,81.4,36,23.7,344.6,24.7,108.3,62.8,46.3,145.5,52.9,52.7,34.8,244.8,194.5,61.1,58,11.8,407.7,515.2,496.7,248.3,12.2,236.3,111,34.8,17.5,329.7,604.6,392.7,298.5,195.3,340.7,46.5,112.9,347.1,120.2,43.6,103.8,222,115.7,40.8,108.2,131.1,103.5,119.6,40.1,105,112.1,52.3,122.2,91.8,153.1,23.4,156.8,42.3,12.3,21.1,129.1,496.7,142.9,79.3,236.6,20.3,194.8,14.2,206.2,77.2,9,86.2,74.1,20,77.8,65.9,89.6,63.6,72.6,138.7,87.9,35.4,184.5,235.8,18.7,224.7,137.1,18.1,343.5,170.4,170.3,184,48.6,131.2,131.2,118.7,62.6,0.9,63.6,140.9,71.6,71.3,32.4,104.4,102.8,78.7,340,16.4,78.7,152.9,188.6,63.1,10.7,12,187.8,169.5,119.2,41,182.7,29.8,58.9,35,66.2,72.2,18.1,59.9,85.2,83.2,74.2,187.5,35.1,156.3,98.4,40.1,66,55.9,36.8,12,50,18.3,38.5,85.4,137,67.7,129.2,24.9,395,13.9,49.7,84.5,454.9,145.4,396,143.2,354.4,74,31.4,177.2,58.6,157.8,310.6,130.7,310.6,85.3,32.4,91.7,6.9,123,411.6,161,201.4,100.2,32.5,62.5,140.2,169.2,120.3,117,184.9,29.8,158.6,209.9,189.9,59.9,118,77.4,36.1,239,488.1,142.3,431.9,282.6,28.2,198.3,44.5,291.2,58.2,6.5,31.7,41.7,53.5,50.8,45.6,32.6,33.4,26.6,43.9,52.5,54.5,47.6,23.4,48.9,54.2,40.6,50.4,54.2,54.8,91.3,11.8,73.2,46.7,5.3,37.5,120.7,31.4,67.4,29.4,36.1,87.4,76.2,28.9,18.4,51.6,53.4,30.1,49.6,46.7,59.8,42.3,43.3,47.7,39.3,62.5,42.3,38.3,144.7,34.7,105.9,78.8,108.4,25.9,21,27,197.5,36.1,28.3,92.5,64.5,29.6,28.8,28.7,32.1,49.4,43.8,21.7,12.7,36.2,52,26.8,183.3,282.1,280.8,66.5,94,82.2,18.3,62.8,72.2,98.6,162.8,102.5,463.1,26.5,36.5,291.1,147.2,483.4,535.2,238.7,131,7.7,121.6,378,177.1,187.8,75,173,42.7,26.6,27.3,86.9,34.1,64.2,157.4,28.5,87.1,504.5,363.7,58.4,33.7,30.4,263,189.8,19.3,180.4,80,51.5,43.8,152.1,72.7,124.7,51.5,74.6,49.5,67.6,39.4,116.1,22.2,16.5,34.9,23.6,22.2,26.2,30.8,24.3,28.7,32.2,26.9,28.3,29.9,27,26.2,35.8,33.7,38.6,42,69,38.8,26.6,64,135.9,131.5,155.5,30.8,142.1,44.9,52.8,179.6,173.5,151.4,118.4,71.8,266.6,72.9,27.5,128.8,91.9,247.5,45.8,64.1,180,43.7,72.4,97.5,72.3,110.2,33.4,88.9,90.9,45.1,404.8,177.1,180.4,48.9,49.5,37.8,34.8,35.9,35.9,30.7,31.6,37.6,41.1,33.3,33.9,119.5,39.6,43.3,53.5,36.8,36.3,58.8,49.4,157.7,273.6,189.6,29.1,283.9,91,92.1,32.7,46.8,51.5,44.3,49.3,45.4,68.1,53.1,38.9,37.7,30.3,42.5,50,47.7,41.1,48.3,50.3,52.6,53.4,42,43.4,49.3,51.1,51.5,41.4,47.7,47.2,49.9,50.5,184.3,144.2,153.8,29.1,85.1,115.1,85.8,51.6,48.1,62.1,95.6,88.1,48.6,63.7,93,500.7,175.3,25.5,294,301.5,136.3,73.8,185.8,211.1,29.2,42.2,24.1,354.1,129.6,498.3,300.9,138.3,82.7,28.9,61.9,33.4,73,28.8,13.9,20,36.1,22.3,59.2,38.4,106.4,128.9,42,23.4,58.7,36.4,130.1,74.3,62.3,58,27.4,48.2,43.7,45.9,40.2,99.7,26.8,30.6,73.5,69,60.9,56.9,79.4,94.3,86,99.8,79.8,86.8,103.5,97,8.1,18.3,27,300.2,116.4,186.1,181.3,61.4,98.3,113.7,121.6,100,24.4,147.3,76.7,42.6,12.1,73.5,31.1,30.4,33.2,40.5,45.2,22.8,38.2,7.8,95.8,46.7,40.6,108.3,63.2,50,50.9,106.1,41.9,10.5,13.6,88.1,279.4,1.5,186.8,146.7,47.9,93.5,31.1,30.2,39,32.8,54.5,45.3,39.4,28.9,30.7,31.8,26.8,34.7,38,62.7,53.2,50.8,46.8,44.9,36.6,37.9,45.8,43.3,48.7,96.5,63.4,11,44.2,62.3,18.7,363.4,499,500.7,96.9,22.8,174,112.7,93.1,544.1,272.4,65.2,71.1,102.9,82.6,67.2,55.5,44.5,45.4,43.5,41.5,58.6,72,79.4,64.5,55.7,71.6,71.4,102.3,26.7,194.1,21.5,72.2,69.2,59.9,58.4,49,42.8,35.6,36.6,38.3,18.5,57.5,52.4,62.9,64.6,64,69.4,79.5,92.8,73.6,87.8,41.1,44.5,70.3,65.6,72.5,98.7,27,7.9,7.7,11.5,9.4,9,7.6,9.4,8.8,13.1,13.7,16.8,13.7,16.2,12.6,12.7,10.9,31.3,10.8,68.2,115.3,15,368.5,239.3,49.8,212.6,149.5,282.9,123.8,127.5,174.3,93.9,103,48.9,44.8,122.3,125,54.1,97.5,193.3,147.5,23.9,170.4,179.9,41.7,130.2,79.3,26.7,38,61.7,80.5,51.7,49,49.4,49.1,112,81.5,52.8,52.6,97.1,23.5,30.6,29.5,43.2,5,36.6,37.2,26.5,44.3,97.6,69.9,71.7,37.5,208.3,30.8,104.5,104.6,235.2,219.4,54.6,125.7,34,142.2,76.5,74.2,29.4,65.9,84.5,22.6,89.4,86.2,86,76.8,65.2,64.9,23.6,23.4,6,263.6,29.6,139.7,57.5,19.4,93.5,145.9,79.7,132.2,166.7,97,92.3,129.8,107.4,89.8,81.3,119.1,117.7,42.8,22,73.4,73.8,73.5,106.8,12,274.1,17.5,12.9,21.4,95.7,74.4,41,36.5,160.3,45.5,25.6,29.5,52.1,56.9,24.9,66.2,80.3,94.9,72,45.5,46.2,34.3,110.2,80.5,332.7,18.2,20.1,18.2,32.3,31.9,66.7,56.1,98,59.7,35.4,41.9,60.6,228.5,211.9,90.6,105.6,91.1,109.7,24.3,9.2,7.1,72,83.7,65.8,85.2,84.6,70.9,70.2,53.3,52.7,32.4,28.2,63.8,130.6,252.8,367.4,39.2,32,34.8,107.1,87.1,18.3,32.8,111.7,111,44.1,122.7,88.6,88.5,95.1,83.5,40,104.1,154,86.2,99.5,92.1,73.4,141.4,36.7,70.9,92.4,220.9,46.1,74.3,40.1,64.2,81,89.4,48.5,5.2,21.8,114.5,40.8,94.3,113.5,48.8,133.1,40.4,265.6,153.6,99.1,79.4,52.3,53,70.1,124.6,124.7,40.7,221.9,241.3,268.1,7.8,40.6,123.5,80.5,210.1,230.7,2.5,86.9,138.9,42.7,37.3,81.3,76.8,35.5,39.3,133.4,111.1,157.1,138.7,120,48.1,87.6,83.5,35.2,61.9,78.4,168.1,262.7,26.8,216.3,429.8,234.7,233.2,41.3,33.2,16.5,104.8,113.4,270.6,85.4,91.7,83.9,54.8,53,47.1,95.9,78.7,45.9,15.4,110,89.6,87.1,29.2,96.6,119.9,17.2,290.2,31.4,98.2,37.7,92.7,27,33.7,72.6,41.7,28.1,30.8,76.4,76.6,104.3,25.8,69.9,54.7,111,156.9,247.4,70.3,87,52.6,37.5,33.1,56.9,54.8,53.7,29.8,76.6,53.8,55,54.8,106.3,25,42.6,76,71.6,53.6,53.2,32.7,28.8,28.3,35.3,72.5,72.1,84.6,98.9,248.2,125,86,9,50.4,31.5,53.9,20,25.2,50.8,65.1,52.4,46.7,62.2,82,84.2,86.4,90,158.4,28.3,120.1,97,74,62.2,72.2,75.5,87.4,133.5,147,53.2,36.5,219,46.5,20.4,83.1,129.3,60.5,456,244,247.6,176,293.3,102.8,205.5,167.1,117.3,104.8,44.8,133.2,102.1,105.5,34.4,54.7,168.2,9.9,36.8,132.2,217.7,230.9,95.8,281.1,118.1,62.2,338,34.8,160.2,140.3,58.2,250.7,326.3,109.9,12.1,40.2,32.8,404.1,107.7,93.4,398.4,255.7,53.5,123.6,17.7,56.8,12.9,27.8,24.2,152.7,53.5,30.5,132.7,51.6,49.4,49.3,99.2,93.3,92.1,153.3,124,24.1,26.5,294.2,461.9,38.9,24.4,112.3,12.2,136.2,287.1,150.3,257.7,103.5,125.5,84.3,38.7,101.4,61.8,13.8,57.1,107.5,107.4,85.4,37,58.6,27.8,117.3,69.3,93,64.1,57.1,70,38.6,31.9,106.5,39.6,74,73.6,93.2,98.5,74.2,121.8,88.4,107,94.5,12.9,40.5,236.1,35.3,66.2,40.7,49.3,60.4,154.9,162.8,67.8,60.5,95.3,94.4,69.2,38.8,51,57.5,71.1,48.2,28.4,72.7,72.8,76.4,88.8,82.4,76.8,104,103.8,39.9,106,76.2,23,35.8,109,45.8,49.1,71.1,51.2,0.2,20.4,159.6,26.4,44.4,133.5,13.8,152.5,98.1,71.3,144.1,71.2,70.9,50.7,33.3,28.6,33.4,79.7,29.1,55.9,83.4,102.7,75.5,38,35,90.4,87.3,94.3,108.7,96.2,114.7,397.8,52.2,54.2,65.3,31.8,30.1,125.1,143.9,78.8,65.4,121.1,85.7,77.8,62.6,39.5,5,23.6,41.6,86.6,70.6,52.9,53.4,53.5,29.8,23.9,36.5,51.6,71,53.5,66.4,85.6,153.3,53,76.2,90.6,14.6,64.5,29,49.4,70.2,30.6,37.5,26.2,129.4,27,50.9,34.2,125.8,103.5,134,126,33.5,256.1,269.7,119.5,46.6,62.8,53.2,190.9,78.1,90.8,75.9,44.5,91.9,149.1,136.4,92.9,287.4,207.2,294.2,174.2,79.6,50.5,200.3,123.4,58.9,61.3,77.6,75.1,69.6,85.6,23.8,68.7,74.6,50.7,53.9,83.5,120.2,120.7,23.7,36,66.6,255.5,100.7,65.5,127.5,109.8,141.4,97.1,44.9,54.6,48.4,59.1,30.9,29,91.4,81.2,60.8,40.2,100.4,91.1,95.8,91.6,76.3,29.1,89.7,105.6,78.5,69.8,61.8,83.1,59.4,40.9,196.9,19.7,143.3,42.6,1.4,312,187.4,163.7,250.9,54,3,86.8,196.3,162.9,124.7,50.1,128.6,134.2,104.5,127.1,98.7,124.8,74,74.2,64.9,37.8,43.8,77.2,103.8,119.8,162.8,32.2,151.1,211.4,237.6,161.3,81.5,63.1,145.7,88.5,55.2,89.9,64.5,35.9,60.8,55,90.8,69.8,54.7,53.1,90.6,52.8,55.9,108.4,187.9,62.6,287.8,213.4,24,2.2,14,13.9,163.7,108.2,90.3,95.9,15.7,149.3,204.1,145.9,30.8,183.2,104.3,91.8,32.3,74.9,80.4,140.6,21.7,42.8,57.9,53.5,49.9,25,38.4,65.9,70.7,37.9,44.8,24.8,19.7,73.5,51.9,92,86.9,92.2,70.2,70.5,68.6,84.2,22.4,74.2,74.3,55.4,50.8,71.3,50.6,98.9,24.1,6.2,27.8,13.9,41.1,67.3,93.3,106.9,153.4,206.7,28.5,27.5,87.4,71.4,55.4,36,85.3,59.3,58.9,34.6,75.6,61.9,54.2,37.8,24.3,5.4,38.6,17,38,63,24.1,65.5,86.8,81.5,82.4,100.5,99.5,91.6,257.6,444.1,216.7,143,71.3,34.2,71.1,75.3,61.1,119.2,36.2,30.2,34,12.6,36.8,6.4,76.2,94.6,95.9,100,95.1,116.3,94.3,89.9,82.8,90.8,97.2,24.2,2.5,71,52.6,93.6,111.6,89.7,107.8,88.2,71.2,89.7,87.3,110.8,27.8,60.4,107.8,125.6,126.1,56.9,63.3,24.7,140.6,181.2,124.6,205.5,146.4,142.3,106.4,110.1,68.6,88.3,89.7,59.5,118.5,74.5,63.3,51.4,82.9,53.6,51.4,54.7,54.3,63,84.7,81.6,57.5,24.8,43.1,51.9,46.3,51,24,26.8,36.6,49.2,30.2,32.3,47.9,51.9,64.2,78.4,76.9,79.5,56.8,42,35.8,61.6,14.3,192.4,144,0.3,212.5,181.6,39.9,15.1,69.9,160.5,74.1,54.6,53.1,108.2,87.7,96.1,65,61.2,109.5,106.6,106.4,87.4,111.1,92.4,53,182.2,40.7,109.2,151.8,19.1,52.6,93.3,109.7,73.2,54.7,107.6,91.4,136.8,44,90.8,111.5,108.4,91.9,90.1,91.4,90.8,91.2,89.3,90.2,55.2,37.6,71.1,165.4,291.9,198.7,12.3,82.8,125,4.8,31.6,181.3,161.5,66.4,31.3,16.6,40.8,161.9,112.8,169.5,64.9,123.7,12.1,15.4,153.7,215.4,103.8,75.1,88.5,89.7,57.7,100.1,161.4,146.7,73.6,16.7,95.7,89.3,111.2,81.1,116.2,6.4,39.6,88.1,55.2,31.3,45.4,95.3,111.7,265.8,158.4,50,128.7,134.1,90.7,88.4,52,34.6,6.2,34.9,143.4,108.8,123.3,54.8,37.2,89.3,91.9,80.7,59.4,70.5,73.9,18.9,53,125.1,72,89.4,107,68.2,19.8,74.4,71.8,107.8,69.7,71.9,55.5,70.7,70.2,56.4,56.4,33.8,53.1,87,55.4,70.6,70.9,73.7,89.2,67.7,92.5,43.3,47.9,106.2,107.4,195.2,57.9,51.8,107.1,54.5,59.9,64.1,49.3,78.4,119.7,101.3,100.9,71.9,206,151.5,73.5,74.7,87,58.8,41.7,148.7,143.5,142.8,115.4,190.3,144.1,124.9,123.3,34.9,56.1,125.1,125.1,161.3,108.6,106.7,144.7,91.3,105.3,90.1,107.4,127.1,15.5,32.1,60,123.2,108.9,85,23.3,88.9,198.7,121.7,115.8,64.8,69,28.2,32.3,29.7,79.9,60.7,52.9,53,54,40.9,6.5,23.9,22.1,48.9,38.6,17.1,2.5,40.4,3.9,80.5,61.9,25.2,53.7,48.4,90.4,58.2,55.1,51.7,54.4,69.4,45.6,34.4,18.9,10.5,58.3,44.9,237.1,150.1,80.1,123.5,41,65,48.5,33.2,87.4,159,72.2,68.4,53.7,34.2,21.3,33.6,39.2,50.9,486.8,204.3,47.5,84.8,51.9,55.8,50.1,52.2,89.6,53.4,34.1,68.9,53.8,36.5,87.5,69.7,68.2,37.8,54.6,87.6,53.3,52.5,52.3,38,51.5,21.7,14.3,34.4,54.2,87.5,54.6,70.9,13.3,122.2,99.5,56.1,71.2,54,34.6,35.9,54.5,34.9,37.2,32.4,2.2,36.7,35.6,28.3,25.7,36.3,54.6,43.7,35.2,74.6,101.6,172.7,143,16.4,146,178.7,17.7,17.6,89.5,222.4,76.1,82.6,8.7,87.6,104.6,163.3,121.3,63.6,62.6,48.5,154,128.8,24.6,501.4,186.1,194.4,114.3,32.3,390.1,61.2,27.6,70.6,59.4,51.2,55.4,122.9,112.5,27.8,5.8,53.2,33.6,41.4,12.1,71.4,60.1,59.2,110.8,125.4,124.4,42.1,38.6,48.8,31.7,32,32,32,10.3,14,7.7,22.3,9.7,22.3,9.7,32,32.1,32.1,35.3,76.7,109.5,100.4,85.6,137.3,146.3,46.9,92.4,36.5,20.8,21.9,70.4,95.4,128.7,69.2,68.2,52.2,54.7,28.6,28.4,67.9,104.6,24.8,89.7,44.3,40.4,53.7,54.3,41,51.8,38.6,43.3,26,66.5,64.6,99.2,136.7,167,69.8,68,69.5,143.4,34.3,54.9,54.3,68.8,62,14.7,49.8,140.7,86.1,76.8,71.1,66.2,53.6,40.7,47.1,90.5,141.2,128.8,14.9,70.6,67,39.8,40.9,49.2,52.3,41.7,52.5,54.6,52.3,49.3,51.1,44.8,46.9,60.8,35.1,71,112.5,114.6,254.4,64,72.2,70.9,65.9,47.7,54.4,65.4,57.4,79.9,79.7,106.2,81.1,182.6,182.6,312.3,113.5,92.3,48.4,49.7,61.7,52.2,39.9,40.5,83.4,25.1,28.3,22.4,95.3,60.9,34.2,243.1,351.8,114.8,1.3,51.1,55,33.6,33.9,28.3,28.5,35.8,35.7,53.9,34.8,54.9,35.6,34.9,36.5,60.4,47.1,59.7,18.8,46.8,36.1,40.9,65.7,20.2,21.3,0.8,47.9,53.6,59.2,48.2,59.7,36.7,34.3,31.7,11,23,34.1,38.6,35.9,70,41.5,57.9,29.8,54.2,18.7,35.5,34.9,23.5,7.8,22.4,22.3,28,18.5,40.8,72.8,9.2,80,108.7,161.9,35.2,41.7,66.9,12.3,99.9,216.4,48.8,57.8,50,25,15.1,50.4,35.3,40.2,34.8,31.8,23.3,91,30.8,52.4,91.5,53.8,53.8,40.7,54,48.9,36.1,36.5,38,33.6,40.3,36.4,39.9,14.7,35.6,54.5,83.7,53.9,41.7,48.3,36.1,35.6,76.9,5.6,139.7,125.6,47.2,41.1,30,37.2,40.9,42.3,10.7,91.7,143.5,133.4,76.2,8,81.9,42.4,64.7,54.3,58.6,53.7,66.8,71.5,46.9,6.5,53.6,54.3,59.2,48.9,53.8,58.4,48.7,58.7,38.9,8.5,59.4,71.6,71.9,103.1,94.3,81.4,19,44.7,46.8,54.9,58.4,38.1,54.3,49.3,36.2,36.8,22.3,13.7,35.6,36.9,36.4,36.1,35.2,42.1,52.3,55,49.7,35.3,42.1,61.1,24.4,5.2,198.9,100.6,76.6,19.4,11.9,58.9,72.9,44.6,74.9,90.6,59.3,121.9,66.6,8,46,57.3,42.2,35.2,49.5,58.2,47.4,43.5,18.2,92.2,36,67.6,55.5,105.3,38.9,47.9,39.6,46.4,39.7,53.8,51.5,46.9,68.5,130.1,27.4,53.7,35.3,35.5,32.5,54,52.7,39.9,39.9,40.2,63.8,60.6,81.7,79.7,105.7,107.9,108.7,116.5,69.3,68.8,53.2,75.3,99.5,34.1,35.3,39.1,47.3,52.7,41.3,46.6,86.3,87.3,104.8,57.3,46.3,69.8,68.4,70.9,141.1,137.9,98.8,76.1,47.2,40.1,50.8,47.6,60.6,58.1,67.2,112.1,156.6,98.7,36.9,36.9,19.4,19.1,45.5,34.4,53.3,68.3,33,183.1,0.1,16.9,4.8,26.5,181,95.9,108.2,65.8,57.6,66.3,83.6,73,118.8,11,12.3,111.7,69.8,120.3,29.8,29.7,33.5,52.3,27.4,25,25.9,199,13.5,92.7,55.7,75.3,94.5,102,75.4,90.9,73.2,33.5,47.9,57.5,0.9,59.6,110,98.5,153.1,46.4,65.3,81.7,130.2,144.7,238.8,96.6,113.9,99.6,110.8,81.2,76.7,131.8,89.8,70,78.7,67.5,83,93.5,68.4,77.1,32,110.2,132.9,61.1,92.2,36.6,156,115.3,19.1,23.8,35,141.1,180.9,67.6,45.9,40.2,35.8,30.4,32.1,137.5,140.5,137.7,53.9,41.4,49.4,41,33.4,57.1,42.8,13.1,36.8,48.8,35.2,38.4,52.8,62.5,45,30.7,32.9,33.2,25.2,30,36.5,35.8,37,55.3,44.1,33.5,35.6,45.9,47.9,43.2,39.8,42.2,64.8,37.1,40.9,91.3,90.1,85.8,58.6,48.7,47.1,48.5,49,54.2,9.1,50.9,192.9,53.9,52.7,42.6,56.4,46.8,49.9,40.5,42.5,32.2,33.1,35.8,36.4,35.8,36.9,41.2,47.5,109.8,33.4,44.1,36.5,36,35.4,30.4,37.5,40.1,36.2,31,40.4,68.2,70.9,36.4,88.9,70.4,37.7,77.2,84.8,45,52.9,46.8,35.4,35.1,36.4,35.3,73.9,93.3,162.6,48,44.9,49.4,69.1,68.8,55.6,34,48.4,29.6,42.9,23.7,27.8,166.9,41.7,51.4,41.7,49.9,35,38.4,42.4,49.7,107.5,0.1,14.5,1.9,47.5,92.6,38.5,1.3,56,56.5,78.5,31.5,13.2,161.1,45,25.8,19,109.7,30.1,95.2,60.4,63.8,42.1,26.1,57.8,128.7,10,133.4,39.4,18.4,5.2,35.2,20.9,37.3,31.1,40.5,28.9,29.3,32.8,66.6,37.3,89.2,96.6,88.5,157.4,50.2,17.6,82.6,198.5,73.4,88,73.6,72.7,68.6,34.3,41.7,49.1,54.9,25,83.5,17.7,14.5,43.6,32.5,84.2,28,37.4,50.2,47.2,46.7,43.1,39.5,37.6,131.1,44.1,70.1,29.5,0.9,72.9,90.5,88.6,58.3,49.1,73.2,37.7,123.7,38.2,76.1,39.5,157.7,309.8,100,72.8,1.9,248.2,61.7,36.1,39.3,39.2,43.3,68,34.3,42.3,56.8,86.9,68.6,89.6,118.7,82.4,55.7,76.5,0.1,71.2,77.7,88.6,85.3,90.3,196.7,249.2,87.5,87.6,19.5,56.6,22.1,52,63.7,49.2,145.1,73.9,61.2,16.9,41.7,50,52.7,61.5,193.8,56.1,12.5,74.7,45.4,61.7,55.2,45.9,58.7,70.9,40.3,73.4,27.8,104.4,93.9,50,41.3,12.3,42.6,40,49.6,39.4,40.8,36.3,25,41.7,48.3,31.6,33.7,24.4,72.4,46.3,43.4,36.4,39.6,19.9,63.1,54.3,36.7,42.6,32.2,48,37.9,36,40.1,26,27.7,36.4,41,41.3,23.2,24.2,20.5,21.4,22.8,24.4,25,25.1,25,24.9,16.9,23.9,24,23.9,19.9,20.1,20,177.2,20.4,84,97.5,137.2,58.9,2,64.5,27.1,64.1,53.3,36.7,51.7,59.1,124.4,56.4,65.8,43.2,18.3,20.4,33.8,29.2,39.2,53.3,36.6,35.3,72.8,49,17.5,75.6,38.1,58.4,83.9,8.1,46.5,52.7,35,19.4,20.2,32.8,34.8,35.2,30.8,17.5,16.4,42.7,34.8,36.9,89.3,36.4,36.9,37.9,33.5,49.4,40,33.5,31.9,29.5,24,30.5,35.5,51.4,47.8,58.5,71.9,6.1,212.6,92.3,20.1,49.3,22.7,26.8,103,6.2,27.1,19.2,67,78.9,21.5,2.1,41.1,108.9,91.1,64.3,39.3,33.6,34.3,33,47.8,38.9,38.6,42.9,33.4,59.2,44.2,41.8,41.5,55.6,34,83.2,72.2,73.6,72.4,72.5,65.5,65.3,51.2,40,34.1,32.2,31.4,24.8,37.7,21.4,29.1,37,69.5,63.5,19.9,44.8,33,33.6,37.5,39,35.9,32.5,44.4,36,32.9,35.7,36.2,35.1,34.1,42.1,41.8,66.6,7.7,80.3,78,41.7,102,25.8,63.5,47.7,28,27.6,44.7,38,31.1,78.3,52.8,53.8,56.9,54.2,76.5,52.3,29.4,78.5,50.5,21.8,46,55.1,40.4,67,31.7,1.1,35.1,50.3,41.5,38,112.3,101.6,58.6,17.4,32.2,58.4,48,41.1,29.5,37.3,50,10.1,158.7,13.9,71.3,59.2,14.2,33.1,41.2,39.6,34.8,46.7,44.8,42.7,37.3,105.9,96.3,48.8,6.2,34.5,37.8,26.2,42.2,22.4,27.4,22.4,35.7,32.7,33.9,34.3,18.7,18.6,20.2,18.6,28.9,32.8,25.7,3.9,6,11.8,7.2,19.8,25.1,29.1,20.3,17.2,23.6,30.9,43.2,77.7,78.5,106.7,72.8,35.3,37.8,44,36.1,33.9,28,23.8,25,23.3,26,22.3,24,23.1,27.3,21.8,24.2,21.6,28.2,27.4,23.1,23.8,25.3,18.7,24.7,32.9,35.4,40.8,29.9,33.3,58.6,35.3,50.9,70.2,74.8,80.1,23.8,58.6,48.3,26.6,31.3,31.3,57.3,28.4,28.4,47.1,41,10.3,70.8,144.1,73.2,75.2,68.4,72.9,111.4,106.5,118.7,142.5,143.1,196.9,97.7,43.5,82.3,11.8,177.3,138.5,142.2,146.2,70.8,90.2,54.1,104.1,93.5,89.3,70.8,47.5,42.3,65.1,54.5,76.4,70.4,49,42,98.8,58.7,58.9,64.7,69.8,58.7,84.6,94.4,107.1,158.5,72.8,88.3,142.1,120,112.4,106.9,52.2,48.1,72.6,58.7,70.2,72.5,70.9,107.8,119.8,54.9,58.4,53.6,66.1,59,72.1,52.3,63.8,51.3,48.1,41.1,40.8,59.4,69.4,48.3,48.8,95,58.5,45.3,146.1,108.1,48.3,98.2,7.7,70.1,59.4,73.3,148.9,120.5,71.4,145.5,86.3,145,138.3,96.3,50.2,53.3,40,27.5,27.1,53.4,35.3,37.1,37.1,34.3,35.7,36.6,24.7,22.5,53.8,36,71.5,131.2,127.1,106.7,87.5,52.6,70.3,81.8,40.5,35.3,47.4,53.4,35,41.4,39.6,30.5,71.2,48.4,41.2,48.9,53.7,39.5,49.4,53.2,70.8,59.5,48.1,55.1,58.9,48.8,52.7,78.5,53.5,53.4,69.6,27.5,47.3,54.1,54,66.5,67.1,98.1,37.9,77.1,174.7,25.9,72.6,26,30.9,48.8,42.7,29.2,58.6,48.5,58.8,47.4,54.9,34.9,54.3,74,66.3,52.7,41.3,64.8,36.5,62.5,28.7,91.8,102.8,91.7,90.2,50.7,51.7,76.1,40.5,47.6,42.9,42.7,71.4,70.7,63.4,35.2,83.7,51.3,102.7,58.6,83.4,58.8,209.3,88.2,76.1,91.4,93.4,32.3,130.9,53.6,54.9,53.1,67.8,120.1,87.1,68.9,128,25.2,26.4,97.2,41.4,46.9,50.1,119.9,15.4,51.7,30.5,44.8,33,63.3,43.3,46.5,52,29.5,81,65.3,84.3,84.8,70.5,40.8,53.5,59.9,54.1,74.2,71.7,55.5,85.2,87.7,68.6,61.6,70,70.5,69.2,84.3,96.4,220,73.2,23.9,87.2,90.3,52.2,46.8,37.1,95.4,87.2,90.4,51.5,55.2,46.5,96.4,136,149.4,89.9,108.7,177.5,175.1,334.9,39.3,64.6,38,40.6,44.6,43.3,48.7,37.7,47,74.7,63.8,62.2,51.8,66,33.2,40.4,35,33.7,29.8,34.7,23.7,43.1,40.7,53,53.8,53.2,39.3,47.4,36.7,53.6,65.8,41.6,70,34.5,53,100.8,87.7,73.3,129,21.9,44.4,64.8,105.8,56.9,66.1,110.8,47.1,69.3,87.9,74.9,47.5,52.8,52.3,57.7,71,49.4,37.6,34,54.4,44.8,60,70.4,78.5,34.2,98.8,105.7,121,63.4,8.4,53.9,36.4,56.3,56,56.1,53.9,66.1,127.4,132.8,191.8,180.1,252.5,241.9,66.2,55.1,73.1,75,12.8,9.1,53.1,55.1,85.6,89.3,41.9,71.9,67.2,53.6,36.9,35.7,25.1,70.3,50.1,41.2,35.6,37.5,53.5,102.4,91.2,163.1,9,85.4,155.1,12.5,101.8,88.3,56.4,123.3,91.3,10.4,58.5,70.9,48.9,41.4,83.4,53.7,54.7,53.7,59.7,53.5,66.8,40.4,47.7,55,54.4,53.2,53.8,88.7,90.3,90.1,57.9,74,9.4,47.5,43.8,88.8,108.8,65.1,67.4,79.5,55.7,78.3,121.7,57.7,54.2,70.8,70,110.3,106.3,94.7,75.3,18.7,67.8,69.5,87.7,87.7,78,68.7,13.9,46.9,26.6,21.1,41.6,50.2,58.4,54.1,52.8,74.4,45.8,76.3,78.4,102.6,110.2,121.7,54.2,54,72.7,60.4,55.5,64.5,89.1,79.3,71.6,179.6,107.5,90.3,35.9,36,67,38,24.2,40,33.1,35.1,39.7,83.8,161,105.4,34.4,29.2,46.9,35.7,33.4,50.6,73.4,95.4,88.3,107.2,215.1,107.3,122.8,214,76.2,37.6,37,72.7,83,73.1,96.2,94.3,138.2,143.3,53.8,72,72.7,97.6,81.9,84,87,87.6,64.5,52.8,41.6,24.9,42.7,48.7,40.4,85.6,58.7,54.1,85.3,106.8,35.5,307.7,89,106.5,126.1,130.6,193.3,27.1,83.4,85.2,91.5,67.8,43.8,54,48.1,51,36.5,38.7,53.5,49,26.1,66.4,32.4,63.1,48.8,105.9,115.5,35.1,48.8,54.4,62,146.9,148.7,205.2,20.7,248.1,215.2,70.5,91.2,48.4,54.4,53,0.7,72.8,141.6,153.5,163.4,116.5,24.7,103.9,125.3,183.9,155.4,93.9,65.8,77,54,35.5,70.6,53.6,45,45.8,33.5,141.6,140.9,278,26.2,139.4,217.2,81.6,122.4,142,33.5,14.2,34,135.7,395.3,283.7,209,200.6,195.4,107.4,104.2,35.9,41,58.7,110.1,123.8,43.8,84.1,111.6,185.8,1.6,7.5,35.8,56.9,83.9,220.9,358.2,620.7,141.1,210.8,76.3,78.8,60.8,88.4,86.9,78.9,91.6,49.6,50.5,42.9,61.4,72.5,85.8,90.4,108.1,142.7,252.8,89.4,111.9,48.8,36.1,77.1,84.8,102.2,79.2,80.6,112.2,170.1,25,42.2,28.6,31.8,34.5,24.2,24.3,30,25.7,22.8,35.5,50.3,54.6,61.4,48.9,20.6,25.1,41.9,31.1,25.1,23.5,63,28,27.6,38.2,38.6,39,55.3,65.3,70.7,52.3,82.8,192.2,213.4,31.6,314.6,47,58.7,61.2,79.5,40.7,43.9,62.6,125.3,109.8,61.6,45.2,27.7,89.6,114.5,160.5,102.1,180.9,130.8,132.8,118.8,53.8,69,108,130.1,9.1,165.5,98.6,59.5,52.4,70.3,74.7,183,7.3,78.7,90.9,106.7,83.4,77.3,53.4,66,112.5,192.2,181.1,24.9,78.1,96.8,83.1,57.6,145.1,499.1,566.6,12.8,266.1,279.3,72.5,58.6,67.2,68.4,35.9,153.4,124.4,56.9,63.8,26.7,49.9,103.5,80,34.4,151.6,182.5,382.4,170.3,12.6,387.5,569,288.4,142.7,140.4,53.6,39,183.7,30,55.4,127.7,125,161.2,38.9,171.4,18.5,172.5,121.9,121.3,2.5,122.6,59.2,67.4,88.6,89.6,107.3,113,124.8,13.1,153.6,164.5,128.4,173.9,130.4,277.5,411.5,17.1,18.6,90.9,176.4,151.3,213.3,9,24.7,193,215.6,14.1,84.6,296,50.7,110.7,141.9,222.3,293.2,107.1,45.4,47.3,196.9,69.7,70.5,10.7,31.2,32,46.9,26.2,125.2,162.2,100.5,125.2,39,97.4,102.3,18.6,18.3,14.8,32.2,68.2,35.7,40.7,8.5,13.2,32.6,68.1,51.7,52.9,53.4,47.2,49.8,50.5,77.9,72.5,64.9,58.1,62.4,71.5,87.2,33.1,113.9,48.1,73.2,121.2,153.8,186.6,100.3,30.5,30.7,47.4,40.8,33.9,53,39.2,49.4,49.4,43,42.9,43,43,42.8,43,43,42.9,42.9,43,42.9,43,43,42.9,43,42.8,43.1,42.9,42.9,43,49.3,156.1,21.9,36.3,105.1,37.6,93.3,182.3,117.3,42,163,179.6,179.5,196.3,278.9,279.3,143,302.4,160.9,161.8,159.2,190.7,18.2,356.1,103.1,70,130.2,180.6,175.2,31.3,72.1,190.2,2.8,140.3,195.2,175,43.1,112.6,182.1,234.3,296.8,198.6,162.4,175.3,133.7,101.9,38.3,102.4,103.9,59.3,53.6,42.8,72,81.9,39.7,56,35.3,69.4,75.1,107.2,69.6,58.4,52,53,42.3,45.5,31.2,43.1,36.7,88.4,84.6,82.6,175.5,137.8,93.6,28.6,39,230.2,97.9,94.2,111.4,43.5,82.3,53.7,78.6,55.2,69.6,114.2,63.9,68.7,8.2,34.5,52.5,56.6,52.5,38,56.9,74.5,59.5,52.1,77.2,77.3,69.2,70.4,133.2,96,272.6,81.2,80.5,68.9,66.3,77,61.7,65.8,63.7,71.3,75.6,50.5,62.1,61.6,38.3,97.4,77.6,120.5,150.4,117.3,89.7,73.6,91.4,90.4,89.7,93.1,92.7,90.7,91.3,139,115.6,59.5,68.9,72.5,73.7,71,58.2,88.8,130.5,71.9,59.5,49.8,65.3,129.2,107.1,125.4,213.2,213.6,169.6,115,74.4,74,74.3,74.2,74.3,74.3,74.2,74.3,74.2,74.3,74.3,61.2,333.6,33.3,364.7,35.6,64.6,211.6,70.3,51.2,46.3,89.2,76.3,117,232.3,109.5,93.4,140.4,141.6,89.3,91.8,103.2,78.9,26,36.8,113.9,125.2,127.9,207.2,206.6,87.4,59.6,23.2,76.7,40.1,38.6,68.9,52.8,35.5,53.3,75.2,5,135.3,180.2,190,59.2,68,38.8,165.9,69.8,145.9,74.7,177.6,36.5,36.4,100.6,18.1,98.1,106.6,179.2,131,182.2,138.1,250.7,170.1,313.4,147,152.4,23.6,102.7,389.7,291.2,146.1,100.4,143.9,25.7,104.7,20.4,53.8,54.5,51.5,44.3,54.7,60.5,55.4,56.9,54.4,42.8,44.4,49.3,39.6,39.5,57.8,48,54.9,74.2,71.5,48.4,27.4,73,72.1,33,29.9,31.6,42.5,47.3,47.2,86.7,75.3,77.7,68.1,53.9,78.1,84.4,71.5,28.2,48.1,50,55.1,105.4,49.1,69.1,83.4,44.9,103.1,29.1,84.1,46.1,18.4,5.8,54.3,143.7,9.8,16.8,4.4,141.1,105.1,77.6,113.9,81.8,160.3,141.7,67.3,88.9,88.1,178.4,179.8,99,94.9,58.7,46.9,37.2,86.7,52.7,52.4,55.5,55.9,69.5,67.5,37.9,51.8,55.9,53.3,85.8,73.3,107.6,120.6,79.1,130.4,168.1,1.3,63.5,89.9,335.4,104.7,26.6,192.3,300.4,130.7,125.9,8.6,9,7,78.4,239.7,255.2,23.3,21.2,200.1,55.7,106.6,140.3,185.8,60.4,106.4,81.6,54.1,173.4,119.2,119.6,181.8,185,64.1,162.2,109.2,164.7,50.7,100.7,37.8,142.8,120.1,56.4,64,54.8,12.5,22.9,69.8,35.3,31.7,24.3,4.2,37.1,48.9,50.6,42.8,33.4,50.9,60.9,18.1,55,25.9,21.6,13.5,45.8,47.7,43.3,68.8,44.9,77.9,35.5,54.3,48.9,38.4,99.1,124.9,58.5,67.4,56.1,73.9,0.9,36.4,67.5,0.5,21.2,53.9,68.1,54,106.3,97.4,9.7,47.6,106,30.6,42.8,68.7,31.8,35.7,40.7,33.7,37.9,38.5,154.4,47.5,47.6,72.6,55.9,35.9,57.4,64.8,31.6,53.3,32.4,38.6,55.3,104.9,92.5,88.4,108,136.5,41.3,90.2,56.3,106.8,70.1,37.2,69.1,0.6,74.9,76.7,33.1,49.9,55.3,54.3,53.6,23.6,48.7,50.1,33.3,21.2,2.1,74.2,13.4,2.4,53,36.7,16.1,1.9,37.8,57.7,310.1,96,76.1,52.2,34.7,37.9,55.5,105.4,76.6,51.4,20.3,5.7,59.4,57.3,69.9,75,94.2,43.9,132,63,64.8,32.6,56.2,60.6,68.6,92.2,139.5,147.3,88.1,2.8,129.1,143.7,279,156.8,107.3,218.1,19,93.6,54.2,82.1,37.9,209.6,22.2,66.8,31.1,11.4,12.1,11.4,13.1,16.2,30.6,153.5,21.8,16.8,14.4,12.2,12.2,12.9,18.7,16.2,18,11.3,11,20.3,32.4,77,44.2,25.3,23,61,26.9,54.1,18,8.1,58.5,63.8,118.1,84.5,95.6,78.4,99.2,66.8,40.7,22.6,49.3,51.6,32.3,79.7,67.2,38.9,46.3,46.9,6.1,34.7,49.1,33.9,21.2,24.9,26.1,38.2,34.6,36.8,37.9,68,53.6,37.1,89.5,100.5,7.7,10.8,75.9,127.7,126.8,141.3,143,158.2,128.1,149.3,480.4,14.4,31.5,30.7,62.9,66.1,29.7,34.2,34.4,24.7,59.3,106.8,79.3,42.5,84.3,158.8,101.7,144.7,10.8,34.7,185.1,191.7,278.1,40,225.4,194,196.5,72,71.5,145.1,54.3,65.8,18.6,63.4,68,26,74.3,106.1,135.8,199.1,62.8,99.8,40.8,132.2,44.8,43.3,32.8,128.4,16,13.6,17.5,81.4,122.6,51.3,49.4,34.3,22.6,17.3,24.9,23.3,18.6,19.3,18.7,20.3,25,25.8,24.3,23.9,30.8,25.9,20.5,24.9,30.3,42.9,26.1,30.6,7.3,31.6,28,22.3,25.4,10.2,9.6,54.8,28.9,11.8,85,70.4,45.7,37.2,67.1,87.3,61.7,53.7,37.9,40.4,78,25.9,35.3,102.1,124.4,82.8,36.4,54.7,52.9,57.8,112.9,50.7,48.2,72.5,63.9,54.8,27.2,76,75.7,104,102.7,37.3,243.2,16.6,102.8,107,105.2,17.7,133.4,38,139.6,143.5,64.9,71.6,150.4,84.7,95,92.8,110.5,83.3,93.9,147.7,24.4,110.4,22.2,53.3,36.5,172.7,170.8,53.9,155.1,29.9,130,55.1,77.6,38.5,39.3,23.6,25.2,30.8,30.7,30.8,30.7,30.8,30.8,30.7,30.9,30.7,30.7,30.8,30.7,30.8,30.8,30.2,30.9,30.8,31.1,30.7,30.7,45.7,55.7,81.4,48,80,57.6,58.1,58,56.9,47.7,47,75.6,109.2,73.6,130.8,110.4,144.8,56.6,20.1,70.3,40.3,37.7,62.8,15,25.8,55.1,27.8,67.2,36.1,72.3,70,54,52.8,34.3,105.8,105.3,89.3,140.3,242,163.6,162.8,82.6,4,113.5,77.5,110.8,95.4,74.1,67.5,150.2,124.3,157.5,106.7,108.2,14.6,145.7,146.3,40.7,49.6,71.6,90.3,189.9,162.8,142.7,182.8,120.3,40.8,138.9,94,13.9,87.8,95.9,140.4,85.5,88.4,111.7,126.4,103.9,233.6,130.7,103.1,103.5,81.1,72.6,60.1,64.2,71.4,52.2,59.9,78.8,75.2,81,36.9,35,51.8,51.4,47.9,48.5,68.4,15.3,33,22.8,27.2,18.8,9.7,30.6,30.7,30.6,30.7,30.6,30.6,30.6,30.7,30.6,30.6,30.7,30.6,30.7,30.6,34.8,35.3,69.8,107.4,56,112.4,52.3,67.5,101,67.4,58.2,154.5,126.5,133.8,213.2,199,50.4,81.1,6,75.6,42.6,27,44.8,46.1,52.1,16.6,45.4,37.5,7.7,20.8,41,31.7,53.1,43,38.1,40.3,29.3,36.5,39.7,42.9,43.8,51.2,40.6,51.2,63.3,35.7,19.1,74.3,53.6,57.9,61.2,96,106.4,89.7,47.9,59.5,34.9,41.7,50.4,47.1,47.3,56.3,44.4,55.8,29.5,59.6,42.9,37.7,49.8,5.9,61.4,16.8,22,66.4,68.4,53,40,36.7,66.2,52.2,46.6,58.1,40.9,43.1,49.7,31.5,86.7,79.9,138.1,246,181.1,192,311.1,186.5,173.8,5.7,26.3,146.2,191.7,24.9,8.3,98.5,95.2,85,87.4,67,52.3,62.6,48.4,34.4,32.7,38.3,41.1,52,51.6,97.2,25.8,21.7,23.4,14,6.5,7.9,8,7.9,7.7,11.6,13.4,15.3,13.6,18.1,30.7,42.8,9.5,8.3,8.1,7.8,9.3,8.2,7.8,6.7,8.5,10.8,16.9,139.7,123.9,94,19.5,153.2,65,136.7,88.5,70.5,68.3,94.6,124.2,148.2,34.2,175.3,172,96.4,48.2,0.7,70.9,54,73.1,76.7,83.7,78.3,33.9,37.1,70.5,108,71.2,32,54.9,45.1,86.5,86.4,41,91.9,78.3,95.7,64.1,69.1,93.9,63.8,66.4,42.7,50.6,92.4,56.7,77.9,73.2,71.8,69.2,99,142.4,51.1,41.8,94.5,95.5,117.7,120.6,233.7,132.8,140.6,201.3,74.7,109.9,91.8,103.8,14.2,92.6,94.5,106.6,113.5,94.3,106.6,149.6,60.8,54.7,17.3,108.1,24.6,28.7,28,95.5,209.3,42.7,53.7,61.2,141.1,93,97.2,67.7,131.5,152.5,100.3,54,66.8,61.6,57.8,55.1,52.1,58.3,60.8,135.3,137.7,58.4,139.7,183.4,169.1,16.1,85.3,88.4,94.9,93.2,82.8,145.1,127.1,141.3,140.8,305.1,505.9,196.9,196.7,174.4,175.3,24.8,55.3,91,89.5,179.4,107,102.8,59.8,89,83.9,60,71.1,84.6,76.7,54.8,37.7,16.9,195.8,84,114.5,101.7,96,125.6,126.2,88.6,198.3,106.8,126.5,108.5,161.6,241.9,164.8,197.9,103.5,90.7,63.5,112.5,158.2,7.8,103.4,60.1,168.8,238.2,93.6,141.2,236.7,303.7,71.4,177.6,18.9,177.8,187.1,363.5,359.8,130.1,107,127.8,76.4,100,107.1,61.4,65.3,108,106.9,95.7,119.6,116.8,117.1,108.3,127.8,55.7,68.9,68.4,113.4,64.6,112.8,44.5,78.1,71.9,75.9,91,35.1,88.3,73.4,70.9,128.7,98.3,96.2,66.9,93.1,108.8,102.5,178.3,114.4,106.6,89.6,99.6,73.3,182.1,358.3,129.8,27.6,66.3,22.4,19.2,34.9,70.8,18.8,57.1,63.2,27.7,43,113.1,178.2,180.9,162.2,90.6,81.1,108.5,108,94.1,89.1,83.7,93.4,102.8,96.8,99.6,69.8,53.8,60.5,70.7,82.4,73.6,51.5,97.3,99.5,74.3,97.3,67.4,143.3,160.3,91.9,157,183.6,71.8,74.1,199.3,195.6,167.2,136,258.1,121.9,11.7,125.4,270.5,323.8,405.4,127.9,92.3,14.6,71.6,82.6,130.7,0.8,73.6,103.8,73.6,69.5,92.6,154.4,94.9,75,83.6,110.2,180.5,82.5,112.8,31.9,86.4,90.4,54.5,142.6,124.4,106.4,124.1,118.2,162.4,180.1,198.5,65.1,160.2,170.2,141.6,157.2,45.8,122.3,123.9,171.7,145,54.6,123.5,194.7,228.8,178.7,162.9,185.2,148,190,40.1,136.2,45.5,108.8,146,147,72.3,70,69,66,146.4,105.7,107.7,99.6,96.3,31.9,101,76.4,57.9,45.7,131,56,44.2,53.9,58.3,69.3,74.2,92.3,16.8,84,116.2,187.1,141.8,141.8,129.3,126.8,145.3,150.7,185.2,182.4,111.2,69.8,187.7,105.5,100.2,147.4,89.3,78.8,71.3,89.4,215.2,79.3,97.1,140.2,59.9,83.7,76,79.1,78.5,88.3,97.4,99.5,113.8,131.2,133.3,92.6,108.9,109.6,107.5,86.9,94.1,85.7,95.3,90.1,90.7,109.3,119.3,149.2,72.3,88.4,141.6,132.6,72.6,75.2,121.6,94.2,84.5,90.9,86.9,113.1,122.4,2.4,90.5,120.5,148.6,193.8,216.4,14.1,161.6,26.9,230.5,131.2,251.6,194,185.5,102,95.9,177.2,78.9,62.2,95.6,157.2,95.4,111.3,106.3,144.5,121.3,107,95.5,100,110.1,167.9,23.3,62.3,89.6,56.3,33.8,120.9,119,74.8,89.6,123.6,124.8,82.7,57.7,66.6,52.3,54.1,88.4,76.1,88.3,107.2,105.5,66,70.6,123.9,88.5,87.8,77.4,82.7,88.7,88.4,88.1,59,88.3,107,117.4,70.3,71.3,58.7,82.7,123.8,123.8,124.2,142,93.9,70.2,66.1,52.8,58.6,66.1,70.5,56.9,14.1,88.2,59.8,87.6,82.6,77.6,46.5,41.6,70.8,82.5,92,103.7,104.6,77.4,83.9,41.2,65,54.1,93.3,72.8,106.5,51.1,67,88.5,52.4,60.7,56.1,60.1,71.4,49.8,39.7,73.9,36.6,71.3,84.3,75.1,83,70.7,85.3,94.8,50.7,47.6,63.4,80.5,73.4,75.4,176.6,90.4,34.3,65.6,73.1,81.9,76.4,42.4,52.6,90.1,23.4,19.6,14,13.1,15,20.2,51.2,10.6,5.5,6.4,7.6,13,9.8,5.8,26.5,25.2,24,19.3,16.8,7.2,21.9,61.6,24.9,30,42.7,27.9,36.7,17.3,12.3,19.1,17.5,29.9,48.4,63.2,60.9,32.7,50.5,40.3,16.9,31.2,24.6,21.5,47,47.2,43.6,93.1,26.6,54.4,24.9,26.8,30.3,45.1,40.6,43.2,19.4,17.1,68.4,73.1,40.7,14.2,54.8,50.4,52.5,58.1,101.7,18.4,52.7,46.4,46.5,5.5,28.4,31.9,35.2,10.1,55.7,22.9,30.6,29.5,48.3,47.4,21.4,28.8,76.9,64.2,41.2,41.7,68.4,54.6,30.1,25.9,68.7,55.1,55.4,121.2,97.4,54.2,41.9,28,23,59.6,18.1,75,20.6,32,28.6,33.6,30.9,22.9,51.9,49.5,23.4,6.3,79.7,19.3,30.4,26.1,23.8,134.6,24.5,69,52,15.4,22.3,69.4,39.5,137,25.3,31.1,66.3,53.7,38.9,39.3,52.1,103.4,43.4,29,17.3,85.6,85.2,45.8,42.4,26.2,236.9,25.7,17.1,44.9,24.7,20.5,13,113.5,29.4,57.5,27.5,60.8,1,36.4,20.3,38.4,10.7,13.7,12.2,17.4,6.8,24.9,17.5,9.6,30.3,79.3,22.4,18.2,55,56.8,20.5,32.8,70.7,74.3,25.3,12,36.2,46.9,80.9,89.4,44.4,52.1,13.7,34.1,8.8,26.9,28.2,8.6,17.8,10.2,17.9,53.5,17.3,41.5,41.2,78.2,27.9,7.6,9.3,15.2,10.2,5.3,9.1,4,4.1,4.4,4.6,4.5,4.4,4.6,2.3,3.8,7.8,29.5,38.5,30,20.9,27.1,42.9,46.5,24.6,25.7,18.8,152.7,8.6,16.3,10.6,24.3,6.6,5.5,5.6,5.6,5.6,5.5,8.5,21.9,8.1,19.3,26,24.3,17.2,109.1,40.8,48.4,36.1,56.2,71.1,22.2,23.8,8.5,15.8,19.5,14.8,16.7,32.7,24.6,24,30.9,13.9,20.5,6.9,5.2,5.3,5.2,5.4,5.5,5.4,5.4,5.4,4.8,4.6,4.7,4.7,4.7,4.4,15.3,38.4,15.8,15.5,5.9,31.9,44.2,22.5,39.3,31.5,17.5,37.6,90.4,74,24.5,47,23.5,36,40.4,18.7,6.5,8.6,14.8,24.4,33.1,39.9,33,9.8,8.3,15.8,24.2,23,25.6,33.5,19.7,9.4,7.8,11.5,11.7,8.9,9.2,12.6,16.9,8.3,8.6,7.7,167.2,14.6,10.7,8.4,12.7,11.4,88.7,15.5,13.1,15.9,18.9,73.6,125.6,39,198.4,378.7,391,682.2,181.3,652.2,32.4,467.3,180.4,162.3,106.4,145.8,51.6,20.4,192.9,56,83.2,70.5,126.7,75.4,153.3,33,12.1,8.4,183,259.5,56.1,74.7,74.6,107.6,76.6,14.3,24.7,58.4,16.8,85.6,66.9,45.7,103.7,44.2,89.4,33.3,18.9,51.7,24,21.3,108.2,33.1,52.2,64.2,45.3,75.6,69.4,145,8.8,14.5,148,106.3,35.4,218.3,122.1,119.2,98.2,100,45.5,58.7,24.1,34.4,44,43,36.4,62.1,86,67,32,15,29.1,45.5,6.9,45.1,26.5,95.9,79.2,45.2,43.2,67.6,68.7,67.2,58.8,76.1,72.5,104.9,119.4,40.2,119.4,29.6,128.4,146.4,238.2,204.6,198,27.3,23.4,30.3,29.1,38.9,44.6,47.7,76.1,76.2,155,166.6,277.8,198.9,72.3,69.5,232.1,45.2,99.8,21.4,80.9,45.1,72.2,44,38.4,50.8,66.6,118.3,212.7,94.8,76.6,92.7,79.4,61,61.5,49.2,94.5,119.4,19.7,116.1,104.8,105.7,268.9,159.4,87.1,72.3,115.6,193.8,133.5,107.3,72.1,44.3,174.5,126,159.9,11.8,2.2,71.8,27.8,14.7,78.5,44,51.9,36.2,97.8,39.2,78.4,154.9,47.5,39.2,91.5,76.5,158.2,209.9,226.6,389.2,194.1,205.5,109.3,147.6,74.7,53.9,46.5,41,28.5,120,95.7,50.9,51.3,172.1,163.6,82.3,79.3,38.8,23.6,92.9,195.9,11.6,152.1,156.4,172.9,32.2,173.5,31.7,193.1,193.7,255.7,258.4,398.1,153.1,152.5,121.9,92.2,93.8,38.5,33.6,88.9,70.7,67.7,111.7,68.9,75.1,75.1,138.9,96.2,94,100.7,95.4,164.4,123,160.4,96.5,95.9,138.6,147,63.6,30.4,63.4,116.6,115.6,199.7,95.8,57.6,127.5,121.1,75.3,215.8,65.4,11.2,34.6,132.8,7.5,26.7,80.4,65.4,63,44,19.4,56.5,41.8,40.1,109.6,118.6,113.6,0.7,5.6,25.3,30.1,120.8,29.3,55.9,103.9,97.7,97.7,88.6,91.2,218.1,122.9,100.3,44.5,104.5,103.4,113.3,105.8,105.5,105.8,105.4,32.7,186.8,169.2,178.8,44.3,23.8,179,189.3,24.3,332.8,411.9,128.4,26.3,375.5,665.9,29,600.6,281.6,404.7,26.7,165,163.1,183.6,115.9,185.3,122.3,122.4,65.9,171.8,136.5,184.5,39.3,168.4,148.2,156.3,218.9,145.4,103.1,219.4,110.4,132.4,199.5,223.2,133.1,174.7,229.7,76.8,167.6,68.6,135.6,154.9,149.7,80.5,194.2,163.2,121,128.1,157.4,124.9,126.8,147.2,36.1,70.6,90.2,97.2,98.7,64.3,57.6,80.5,78.4,87.1,97.8,80,87.9,90.2,106.7,151.2,29.8,84.9,75.9,75.3,81.7,37.9,4,68.5,111.5,64.2,109.8,91.6,69.1,57,68.6,71.9,108.9,75.4,69.2,98,98.3,112.1,103.7,62.1,59.5,27.1,41.1,48.7,58.1,59.2,53.8,55.8,87.1,109.3,71.6,75.9,33.4,53.6,129.6,76.2,93.4,91.2,96,96.4,205.1,30.8,189.4,94.5,189.1,167.4,79.4,242.8,45.3,137.9,197.7,216.3,175.8,27.8,173.6,84.2,125.4,182.4,139.1,189.1,269.1,44.4,91.9,188.7,284.7,10.3,21.3,175.5,44.2,81.3,182.6,98.5,1.8,100.8,33.8,42.1,124.5,126,32.3,130,81.7,64.4,218.5,30.4,54.9,74.6,69,88.8,96.5,119.6,124.7,120.1,102.5,128.1,26.5,71.7,127.6,87.7,89.2,147.9,90,245.6,27.4,139.9,211.5,147.9,326.6,103.5,19.9,32.2,40.3,9,91.4,246.5,50.8,61.9,30.8,151.4,88,181.2,76.9,91.9,37.8,43,41.3,82.5,63.2,69.5,40.1,27.7,61.8,53.1,37.8,29,50.4,48,53.3,53.9,62.7,43.2,57.3,61.5,120.9,109.3,202.3,28.5,430.4,261.8,247.3,346.7,328.1,261.3,5.7,225.6,172,100.3,14.7,85.3,202.2,225.7,107.6,106.5,64.1,59.2,52.8,54.1,54.2,56.8,67.4,56.6,41.7,43.4,73.1,17.4,41.2,45.3,51.7,42.1,33.9,64.5,75.6,72,66.5,42.8,143.7,142.9,90.5,50.3,32.1,111.3,77.7,35,49.7,64.4,59.5,43.7,35.8,55.8,50,48.8,52.1,50.7,42.7,66.4,61.8,56.1,50.9,50.9,47.4,50.5,48.6,45.3,84.7,20.5,148.6,182.4,116.8,70.7,59.2,61.1,62.7,64.2,85,70.2,47.6,65.9,57.1,42.5,46.3,52,28.8,46.6,51.3,53.7,50.1,77.3,62.7,50.2,45.6,60.3,54.4,41.5,61.3,47.6,46.1,3.3,30.8,39.2,37.5,48.7,53.5,27.4,41.9,42.5,50.1,50.8,30.5,38,37.9,37.1,34.5,48.7,48,36.7,44.1,45.2,158.9,47.8,41.2,42.7,46.5,33.8,39.7,44.8,47.8,38.2,44.3,40.5,27.5,41.6,44.7,33.1,34.4,36.2,41.9,52.9,30.8,24.3,35.2,38,47.4,52.5,33.1,62.7,78.8,9.9,117,62.8,59.4,47.7,80.4,40.5,11.7,45.3,45.3,113.9,50.2,21.6,77.7,57.1,16.2,48.5,22.4,44.4,59.6,61.2,23.4,25.9,49.9,60.8,60.7,48.5,17.2,32.1,45.4,40.3,9.2,36.6,38.6,52.1,55.4,89.7,31.2,81.6,66.8,69.7,80.4,84.4,202.3,18.2,45,19.5,43.7,47.4,46.3,59.3,61.6,28.7,33.5,48.5,48.5,51.1,75,81.9,71.2,26.3,49.5,44.3,31.9,33.4,39,40.9,37.9,38.9,50.7,58.7,59.3,35.7,36.3,73.8,74.4,164.3,75.3,141.8,104.5,103,75.6,63.1,35.8,31.3,71.6,46.3,58.8,52.2,59.9,47.4,47.2,24.1,14.6,15.7,55.3,54,69.9,68.8,72.6,70.3,30.2,30.5,82.7,45.9,49.7,58.3,173.4,159.8,53.5,115.5,48.7,73.6,76.3,73.5,19.9,14.7,36.3,89.5,89.7,21.9,114.6,173.3,82.6,66,103.1,57.8,53.2,34.2,50.1,34.7,48.7,42,16.5,18,72.3,66.6,38.6,37.6,22.8,52,1.1,42.6,46.6,40.1,53.5,62.3,68,29.5,28.9,44.8,66.6,55.9,38.1,18.8,35.1,34.8,73.2,24.2,37.4,43.9,61.7,19.3,46.9,26.2,33.3,39.7,45.1,56.6,42.7,58.9,28.6,53.9,15.8,19.8,21,24.8,21.6,2.1,24.6,26.2,23.7,22.6,22.1,46,73.6,63,42,44.2,42,29.1,39.6,29.8,34.5,38.8,33.5,43.8,77.6,76,71.9,91.4,72.1,27.1,33.3,30.3,47.7,49.7,42.2,33.5,54.9,35.4,33.7,15.2,20.8,35.5,38.4,38.8,31,39.9,25.6,28.4,38.9,31.3,35.2,55.4,36.7,34.5,17.9,16.4,38.6,30.6,29.1,37.5,37.8,30.7,38.8,42.9,38.7,72.1,72.4,93.7,51.3,66.1,32.2,34.5,37.6,35.6,38.7,35,39.7,38.4,27.9,25.5,28.9,28.3,27.2,23.4,19.5,27.4,46.2,41.8,27.4,50.3,37.7,37.4,45,60.8,8.3,40.4,111,56.2,12.4,58.3,33.6,46.1,42.7,11.9,36.1,39,33.5,19.3,33.7,19.5,8.8,44.6,31.7,30,29.1,43,43.4,47.1,28.2,15.3,44.7,29.1,27.8,17.8,28.4,42,35,25.1,29.9,51.8,26.2,25.6,63,31.5,53.3,10.4,11.4,46.5,44.4,8.1,15,55.1,52,13.9,10.6,19.7,33.5,15.2,65.3,18.9,63.2,66,40.8,53.9,33.4,35.7,27.2,29.3,41.4,9.9,20.4,22.3,22.5,15.9,20.4,31,29.6,36.7,34.3,35.6,52.7,86.5,87.8,52.9,60.1,29,20.3,53.5,121,121.5,257.5,41.6,19.6,59.8,125.7,78.8,74.1,33,14.7,51.6,50.4,30.7,19.1,75,65,165.7,154.2,141.7,125.5,106.3,117,197.5,92.1,157.1,88.9,63.5,67.2,72.4,93.8,57.8,62.7,43.5,58.4,66.8,43.1,55.3,58.5,51,21.7,26.9,54.5,41.8,44.9,44.9,36.5,71,27.9,31.3,45.6,54.3,63.2,72.4,92,102.9,64.7,62.8,89.3,105.5,111.6,66.9,57.2,126.4,110.4,105.5,41.6,9.1,69.6,69.2,48.6,39.2,60.5,128.7,128.4,101.3,43.2,103.5,108.9,85,70.6,79.6,39.4,48.7,297.9,33,144.5,22.4,210.7,35.8,33,66.3,48,57.1,59.8,51.5,61.2,68.8,55,98.1,99.6,94.3,65.6,69,105.6,112.8,70.6,62.4,9.7,36.5,57.3,42.4,67.1,50,57.1,10.6,40,37.5,29.3,41.8,60.2,87.4,74.7,87,85.5,65.1,53,60.3,44.4,15.8,25.5,51.3,49.7,76.3,143.7,77.3,99.8,149.1,83.8,1.8,118.3,189.1,260.1,208.5,104,262.7,132.8,62.7,127.5,111.1,90,121,73.3,69.1,120.8,79.4,81,34.1,101.8,58.7,48.1,47.8,54,56.6,33,80,36.2,28.5,40,155.2,87.3,52.4,60.9,74.1,99.9,115.9,174.8,104.1,14.5,31.8,117.2,56.2,84.9,293.4,183,143.6,52.5,53.9,54.3,45.8,46.9,46.9,39.3,48.2,45,47.9,39.5,44,36.8,51.2,37.4,59,314.8,292.7,54.8,66.6,47.2,98.7,53.1,58.8,88,74.2,80.5,79.2,59.6,59.8,112.6,69.9,18.5,49.1,165.4,288.3,582.3,104.5,47.5,24.6,33.3,34.7,54.1,43.3,38.4,26.5,25.2,26.8,44.8,42.6,39.7,33.7,40,38.3,50.4,52,53.5,51.4,57.7,30.4,27.4,34,40.9,36.1,32,25.5,39.5,38.1,63.6,173,104.1,386.4,14,241.6,125.3,34.6,15,125.9,82.7,78.5,9.2,68.4,216.8,70.8,129.8,5.8,91.6,58.7,64.5,45.1,42.7,95.2,87,83.6,29.4,65.4,78.9,253.8,95.9,142.2,5.1,97.3,85.3,73.3,73.2,75.3,123.2,286.7,89.7,238.1,129.7,143.1,106.1,98.7,121.9,309.4,334.3,288.2,295.9,165.5,94.6,85.9,150.9,119.1,113.5,124.2,151.6,232.5,92.8,68.9,40.1,59.1,53,52,71.9,82.9,64,80.4,75,86.3,65.1,88.9,95.8,224.2,58.5,82.8,81.1,76.4,77.1,63.9,65.1,88.9,62.3,68.9,88.6,87.7,1178.5,84,78,60.6,75.9,124.4,219.2,71,75.6,79.4,265.5,129.7,86.5,129.8,136.1,102.3,111.1,123.9,88.2,123.1,29.6,68.4,66.6,70.4,69.6,46.1,71.8,60.1,55.3,41.7,66.4,71.3,140.4,95.4,211.9,74.7,87.4,141.4,138.4,192.5,120.6,24.3,65.9,291.4,138.2,148.4,139.5,93.7,77.9,85.2,126.4,88.6,6.2,149.1,109,109.2,110.7,110.4,197.8,207,315.2,207.9,87.4,88.8,130,92.5,114.2,104.7,39.5,73.7,79.2,90.8,7.9,123.7,66.2,13.5,184.5,17,57.2,39.1,454,300.1,112.7,172,169.2,56.2,111.2,131.7,135.6,37.5,84.8,303,121.1,121.1,153.1,142.4,84.6,86.6,135.3,84.2,92,146.4,153.9,167,293.3,82.5,80.6,78.3,79.6,77.7,67.5,54.5,33.4,71.7,67.8,85.3,86.7,80.8,75.2,77.6,76.8,104.5,96.7,93.5,80.9,91.6,91,71.5,75.2,54.9,64.1,42.3,52.4,62.2,67.6,9.3,85.9,87.4,98.4,97.6,223.4,59.2,23.6,248.8,108.6,108.5,166.7,175.4,137.3,137.9,234.2,248.5,252.9,168.6,171.8,214.4,208,205.3,283.9,283.7,280.6,420.8,1.2,197.8,203.9,29.8,8.7,266.2,176.5,172.3,164.4,165.4,43,43.2,85,171.9,125.7,140.6,116.8,122.6,241.4,78.4,75.9,88.7,86.8,79.7,79.9,82.2,109.5,187.5,101.4,71.3,71.5,56,58.6,115.1,78.7,76.7,66.8,21.3,41.8,100.8,85.1,79.2,58.5,57.7,57.1,33.3,61,64.5,76.4,57.1,74.7,79.5,27,63.8,76.6,66.5,26.9,98.4,111.2,89.1,39,33.9,71.7,61,105.8,103.8,112.8,83.3,77.1,107.1,75,134.6,46,16.9,100.5,100.7,72.9,54.4,128.8,103,93.2,84.4,369.8,215.3,84.6,83.6,31.3,64.2,62.3,124.8,193,206.9,125,125.3,118.5,167.4,154.4,118.1,115.2,91.1,164.8,154.4,154.7,133.4,102.3,83.7,93.7,103,110.2,90.9,134.8,78,76.1,46.6,45.7,41.7,62.1,101,82.5,119.4,63.4,61.9,121.9,58,93.8,12.1,14.9,46.3,120.3,32.5,44.8,119,61.4,70.8,96,94.4,112.6,94.8,104,96.2,100.5,352.4,153.9,108.6,100.8,27.9,178.8,64.2,64,158.9,81.3,96.1,62.4,40.3,200.3,8.3,77.1,128.7,77.9,142.8,80.6,68.8,124.7,53.7,16.6,202,385.6,57.7,156.7,93,72.1,67.9,48.4,48.5,38.2,75,72.9,38.3,55,52.3,109.9,111.5,127.4,138.1,220.3,94.4,55.3,74.1,76.2,61.6,50.4,46.4,55.8,58.3,78.1,80.4,64.8,43.7,16.4,44.9,49.7,53.5,24.1,41.3,41.8,71,52.8,58.4,43.6,68.3,76,69.1,54.7,95.5,194.5,137.7,129,72.3,61.1,111.1,90.4,64.3,35.3,16.8,7.5,10.4,104.9,42.1,49.1,43.5,46.5,42.4,42.8,41.4,41.3,48.1,48,66.3,72.2,59.7,42.5,260.8,122.7,95.1,208,45,45.8,55.4,29.6,26.6,34.1,75.3,89.2,70.5,50.2,135,50,47.1,49.1,48.3,53.7,168.3,55.8,61.9,61.8,68.7,95.7,39.5,40.2,67.4,48.5,29.9,60.4,35.2,34.4,211.7,39.7,50.6,51.7,68.6,72.1,205,45.2,43.7,57.4,56.1,52,65.5,54.5,164,70,41,42.1,62.3,64.1,50.6,51.1,71.9,73.8,52.2,59.5,49.4,50,163.4,61.4,48.3,48.3,49.8,47.2,72.7,210,175.3,52.8,51.2,53.3,62.7,60.2,77.4,70,103.7,74.7,26.2,734.5,38.1,41.4,54.1,76.2,59.5,48.7,58.2,69.6,103.3,347.8,62.2,75.6,68.1,64.7,49.5,87.8,98.8,549.8,95.9,105.7,56.9,64.2,123.2,94.5,105.3,41.9,53.9,57,107.6,73.7,90,89.5,89.6,85.4,75.1,75.1,51,47.8,83.4,79.9,82.2,82.4,82.4,37.8,65.1,84.1,123.4,24.6,56.5,80.4,212,43.2,47.1,89.1,79.8,106.4,96.5,53.1,55.4,66.2,12.6,30.4,53.2,49.1,44.9,55.3,49.9,62.3,82.4,13.8,66.1,36.8,36.6,35.3,33.7,49.2,63.5,78.2,472.6,79.4,80.2,98.2,70.5,68,60.6,61.8,64.4,65.6,56.4,56,120.9,135.5,133.1,74.9,41.7,38.5,56.3,47.2,53.3,43.1,42.6,52.8,49.5,40.6,25.2,29.4,27.5,34.7,182.9,91.5,48.1,32.3,53.4,47.8,48.5,55,55.5,36.8,77.3,28.2,181.6,74.9,82.2,54.1,89.7,112.6,72.2,71.1,90.7,9.7,77.6,73.3,195.6,53.1,53.3,52,50.4,49.7,42.7,54.3,12.5,41.8,203.9,47.3,35.6,46.6,37.5,52.4,61.4,65.1,60.2,56.2,54.8,26.1,96.5,58.7,56.5,226.2,392.2,127.3,78.4,69.2,104.7,59.4,263.2,94.8,72.6,109.2,74.6,78.1,52.5,113.3,116.1,24.2,125.6,69.7,82.9,81.1,96.2,75.2,80.2,329.8,371.8,30.3,17.1,334.7,35.3,64.4,52.1,91.6,55.4,58,47.7,48.8,6.8,60.6,65.6,53.5,67.1,54.7,54.8,175.9,64.1,63.6,66.4,63.9,64.5,84.3,82.7,72.2,79.5,90.1,226.7,70.3,62,79.7,92.1,79.7,76.1,357.5,77.7,75.2,68.1,89.4,91,47.2,101.3,97.3,60.9,47.7,9.4,69.7,64,99.1,700.1,156.5,79,91.3,92.1,749.1,83.4,108.9,113.8,67.5,102.5,88.2,118.3,103.7,113.1,78.7,71.9,103.2,94.7,72.8,84.7,67.6,72.8,112.5,216.9,73.7,88.6,152.6,269.4,31.3,21.2,30,23.9,571.7,103.4,113.2,115.2,225.7,177,48.2,122.2,143.3,0.1,211.7,165.8,79.7,225.2,590.4,200.1,43.1,48.2,136.3,255.8,386.2,107.6,99.6,141.4,15.4,252.1,194.7,194.1,505.4,114.9,108.2,130.3,813.3,159.7,114.6,76.6,91.7,105.2,82.9,92.1,76.7,70.5,82.2,9.8,128,87.4,81.9,90.5,91.1,303.5,183.7,126.4,111.2,143.1,304.6,70.5,84.1,115.5,80.8,80.9,61.5,55.3,68.8,44.2,35.2,231.5,81.6,83.8,73.3,84.5,14,56.6,101.4,77.4,64.4,101.9,96.9,72.6,74.9,103.9,67.3,87.5,66.4,60,79.8,155.3,56.4,60.6,95.1,108.9,61.3,190.4,73.5,66.5,82.8,67.5,29.5,33.9,52.1,70.8,11.9,47.1,44.5,58.4,59.6,81.1,42.5,58.9,53.1,53.6,47.4,54.4,52.9,71.5,226.6,235.3,50.3,51.5,50.7,38.2,38.7,60.8,47.5,63.5,58.4,67,56.1,52.2,35.6,64.4,56.7,54,61.4,48.3,29.9,29.9,60.5,61.1,42,62,66.7,53.8,60.3,32.7,53.7,428.6,192.6,45,130.4,54.6,82.2,80.3,80.3,47.1,69,60.2,74,47.1,60.6,70.1,78.8,81.7,257.6,104.8,103.4,62.6,32.9,36.2,69.1,93.5,58.5,268.4,96.5,97.9,206.9,148.5,85.7,132,217.7,294.3,50.7,75.3,70.8,88.7,69.5,90,73.2,67.8,59.4,150.1,245.5,71.1,51.5,80.5,56.7,37.5,34.2,53.7,53.4,58.8,59,80.9,92,110.9,49.2,49.7,78.3,78.7,62.9,67.9,64,63.5,147.2,80.1,78.4,78.3,80,78.3,78.8,76.4,68,63.4,60.5,88.1,101,93,52.8,64,8.7,0.2,55.8,43.1,23.5,66.6,72.1,72.2,143.9,148.6,22,78.5,47.5,46.6,61.8,55.1,43.1,66.7,59,71.5,80,69.2,45.6,69.9,115.1,229.6,121,137,73.5,89.6,65.3,62.7,63,63.6,62.8,62.7,91.6,80.3,52.5,0.4,30.3,79.5,76.8,70,83.1,26.6,0.4,17.4,91.4,186.6,8.7,43.8,53.7,50.1,10.8,46,261.7,59.7,53.9,37.4,35.6,40.4,52.7,57,30.9,56,28.2,62.8,46.4,130.2,80.8,57.2,52.3,44.1,19.9,46.3,50.3,52.1,50.7,50.4,46.5,61.4,40.7,51.8,45.1,38.7,16.5,37.2,34.9,42.2,40.2,45.3,45.6,44,48,53.2,40.8,13.4,46.3,61.4,49.2,55.8,53.6,52.9,65.9,54.2,62.4,58,40.3,51.9,53.8,53.6,54.6,395.5,107.8,64.7,79.1,61.4,60.7,62.5,42.6,53.6,59.3,81.6,45.9,61.8,63.5,65.3,49.7,46.8,67,319.2,13.4,96,52.5,49.9,67.8,44.6,52.5,310.1,136.4,450.7,53.5,50.3,52.7,52.8,42.5,44.7,78.8,19.8,57.5,99.9,76.3,178.6,75.1,72.9,67.2,68.8,69.7,76,75.2,208.5,93,76.2,46.3,43,42.8,53.9,79.3,201.5,75,66.6,60.6,55,78.6,42.5,75.8,71.8,46.5,16.7,39.5,61.8,53.9,193.9,100.3,44.5,84.8,47.1,69.2,280.7,51.1,566.7,79.4,105.3,12.8,347.4,117.8,66.6,80,113.2,37.2,106.1,76.8,296,94,77.5,47.9,90.4,196.5,60.7,62.8,61.1,75.1,56.4,77.4,168.8,130.3,67,63.2,43.4,38.9,59,48.1,39.2,51.4,44.8,42,48,44.9,506.1,85.9,55.5,69.2,57.8,67.9,49.2,89.1,340,49.2,37.8,70.2,80.8,62.1,56.3,229.3,52.4,81.8,113,104.7,78.1,68.9,111.6,112.8,631.8,99.6,94.1,94.9,77.3,97.4,53.9,83.8,387.1,90.3,42.3,44.8,34.3,56.8,56.2,66.9,59.2,62.8,225.7,75.9,42.7,49.3,46.6,63.8,55.1,35.6,44.7,51.5,49.9,56.1,56.2,63.9,47.9,46.4,544.5,93.9,72.6,66.9,69.3,50.5,57.3,52.8,189.1,30.5,463.7,12.8,503.3,76.3,53.7,50.9,67.1,61.9,57.5,66.2,64.4,329.2,73.7,74.8,50,79.1,58.5,418.1,46,265.2,308.3,82.3,57.9,64.2,0.5,66.8,60.8,54.3,51.7,55.5,50.3,73.7,57.1,79.9,86.8,359.6,89.2,58.5,48.1,46.2,80.9,74.8,44.3,54.9,68.9,59.8,59.8,69,72.9,52.4,39.2,60.4,45.7,70.5,54.9,328.5,21.8,247.8,89.1,68.3,56,55.8,82.6,62.7,72.6,90.3,64.1,63.8,61.7,69.9,69.4,67.2,47.8,53.5,44,243.4,673.4,91.5,63.7,60.5,63.5,63.9,76.8,51.7,54.7,55.5,49.7,62.3,52.2,40.2,35,55.1,62,60.8,55.3,45.4,56.6,32.1,34.1,60.7,55,83.9,160.7,62.5,51.8,52.2,61.9,58.4,38.8,39.4,52.8,53.2,72.8,64.2,45.7,63.8,64.9,65.3,53.7,55.1,61.6,200.7,184.6,672.3,71.9,40.1,38.9,54.3,52.3,60.5,49.6,45.7,42.3,50.6,74.7,42.2,44.3,49.3,45,45.9,55.2,54.9,72,50.6,49.5,62.4,101.8,114.5,74.5,60,53.3,63.1,76.6,63.6,51.8,117.2,346.1,609.6,68.5,281.9,322.8,186.1,163.3,77.3,77.6,513.8,373.6,209.9,80.6,69,8.6,56.8,62.6,124.9,70.4,64.8,51.7,51.5,63.3,63,39.5,158.5,8.7,79.7,509,134.2,20.7,40.8,45.3,86.3,53,52.7,52.8,53.5,97.4,70.7,67.7,67.8,66,68.2,64.8,188,57.4,65.5,82.5,539.7,333,32.6,157.9,119.9,97.3,140.2,78.4,212.1,107.6,66.9,74.9,56.9,66.3,54.7,52.2,64.8,44.7,51.7,64.6,72.2,47,545.9,77.4,54.7,51.7,45.1,59.7,57,78.5,76.8,74.5,31.3,183.5,61.7,81,86.7,39.2,32.2,38.8,67.7,61.1,57.6,62.4,52.1,58.7,90.6,281.4,456.8,139,65.9,105,87.1,81,113.4,511.6,55.7,41.9,687.1,682.1,13.2,223.8,117,109.8,91.7,91.7,75.7,79.1,95.2,123.3,70.8,58.1,57.5,78.2,85,79.1,310.4,101,77,74.5,95.8,68,15.7,38.2,67.4,0.9,72.3,109.1,67.5,62.8,86.1,71.2,87.4,83.2,86.2,97.4,97.1,100.6,83.7,89.2,125.9,356.1,151.6,93.8,96.3,120.7,598.8,521.5,864.4,94.7,66.4,62.4,111.9,59.2,65.5,108,85.9,118.5,523.8,148.5,135.7,82.7,142.3,195,184.2,114.3,139.4,89.1,164.8,117.1,176,112.9,110.2,88.5,104.8,136.9,469.9,429.1,38.8,138.2,67,66.1,196.7,116,115.8,137.4,4.9,136.4,101,103,105,128.6,120.2,42.6,27.1,95.4,87.5,144.5,94.5,65.4,156.6,81.9,85.4,223.8,1009.1,20.3,109.6,113,83.2,79.7,75.7,85.7,65.3,94.3,77.5,113.9,81.5,81.8,454.3,8.6,74.2,74.9,99.6,111.4,154.8,277,128.8,67.6,63.1,464.7,155.6,150.7,129,508.1,108,127.5,177.9,14.3,108.5,73.5,375,162.8,84.9,74.4,52,43.6,40,41.9,66.8,110.8,84.7,83.6,155.2,100.7,142.2,71.8,157.4,87.4,460.8,171.5,122.5,163.8,328.5,327.2,108.7,82,125.5,126.1,90,120.2,112.2,160.4,146.7,131.9,128.3,120.6,128.6,124.8,124.3,446.8,169.4,86.1,33,51.7,48.1,84.2,61.5,65.9,99.6,231.5,89.9,37.5,140.2,77,69.4,110.9,75.2,75.5,86.3,84.7,96.4,13.6,59.2,92.3,152,87.6,91.9,92.8,129,143.8,441.1,79.8,100.3,125.3,124.3,110.7,109.4,109.6,2,144.4,130.8,196.2,275.5,174.1,136.9,118.5,83.8,91.6,80.2,108.5,402.5,126.3,102.8,116.3,57.1,55.5,105.7,101,92.7,95.7,117.1,57.5,58.1,54.7,80.6,77.1,150.9,16.7,126.6,70.9,64.8,60.6,74.4,77,80,80.7,72.5,80.3,94.6,103.9,208,112,112.1,88.7,100.8,91.2,76.8,35.1,63,147.2,56.4,36.6,37.7,504.9,227.7,100.8,100.7,377.3,141,115.9,121.9,90,89.7,85.2,84.4,76.7,106.4,40.3,52.2,61.5,30.6,43.2,68,40.7,14.1,14.6,17.4,19.4,15.9,44.6,18.7,8.7,11.7,9,11.4,14.1,17.2,18.1,14.4,14.5,13.7,14.4,21.3,21.1,18.1,44.6,45.3,103.5,1.1,31,17,18.3,18.3,21.7,21.1,18,20.7,21.3,24.7,18.5,18.9,25.2,64.1,28.2,43.4,12.8,21,22.8,29.5,163.6,31.1,37.9,51.2,81.7,45.3,64.5,61,44.4,88.1,105.2,85.9,66,86,100.9,49.8,58.5,61.7,0.5,53.8,63.3,61.7,63.9,59.6,102.1,131.6,80.5,78.9,85.2,146.9,123.1,75,110.1,100.7,119.7,124.7,11.3,132.4,120.9,124.4,121.2,118.5,902.1,48.3,54,62.6,55.1,62.8,39.5,41.2,84.2,81.6,88.1,86.9,60.1,64.8,46.7,55.1,50,44.9,51.8,99.9,58.7,66.6,52,133.2,535.3,61.9,104.4,120.2,109.8,88.9,67.5,51,11.6,39.9,53.7,55,57.6,55.7,59.1,38.3,40.5,7.4,36,58.2,72.7,177.2,95.5,134.8,64.2,72.8,33.7,76.4,80.7,62.5,60.7,73.1,121.2,89.1,56.4,52,44,56.6,70.3,102.3,86,73.7,123.4,56.2,78.9,13,29.4,32.8,171.1,123.7,134.7,224.2,115.8,196.6,148.2,174.9,152.5,69.6,28.3,66.7,14.1,156.6,156.5,124.2,99.6,120.7,96.5,36.4,29.4,178.6,185.9,100.1,457.1,411,305.1,321.4,252.7,217,7.5,247.5,257.4,74.1,544.3,337.7,67.2,210.6,214.6,267.8,440.1,244.7,213.7,239.6,394.2,239.1,77.1,112.4,130.5,190.5,154.6,173.3,200.8,103.3,252.2,276.8,336,267.8,324.5,185,129.6,170.6,122.8,82.5,86.7,37.5,8.5,54.7,89.3,206.7,370,41.2,250.6,357.3,320.2,312.1,277.1,157.6,331.8,279.7,332,369.4,458.9,176.9,151.2,127.7,129.3,146.9,34.3,60.4,257.4,140,187.9,3.4,165.2,223.4,174,233.8,218.5,262.9,228,228,181.6,165.8,232.3,228.9,198,280.3,233.6,237.8,266.1,295.2,268.6,236.1,24.6,255.6,176.2,234.7,263.6,94.8,79.2,182.7,85.3,37.3,82.5,118.1,36,47.7,81.4,211.6,178.9,187.3,156.6,172.3,143.5,141.4,179.8,132.6,118,11.9,101.6,159.5,281.4,234.6,137,9.1,164.6,117.4,170.5,148.3,73,53.2,72,87.8,116.9,112.5,147.4,238.3,252,23.7,198.1,192.3,139.3,132,220,316.5,138.4,136.3,23,33.8,114.1,109.6,143,121.9,84.6,132.9,112.2,162.1,163.8,208.3,28.5,224.5,330,880.4,11.6,629.5,129.8,163.9,12,156.3,156.3,167.1,141.5,136.6,136.6,113.8,101.5,167.3,15.1,116.3,117.3,83,83,26.8,77.3,75.4,100.6,59.8,143.1,140.7,151.3,145.6,149.7,187.4,214.4,243.5,124.5,179.9,172.2,178.3,334.3,253.9,210.7,181.5,174,17.1,32.6,256,197.3,210.3,249.3,241.6,159.5,10.9,223.1,238.6,194.2,173.2,106.2,147.9,276.3,227,43.3,195.8,255.5,299.7,259.2,157,87.9,151.7,165.3,188.6,183.1,109.6,30.6,253.2,74.1,129.1,332.9,240.5,466.9,475.4,277.7,376.4,11.3,434.2,24.5,170.5,51.3,177.5,186,165.7,208,159,173.9,132.4,225.8,222.4,229.5,189.6,377.2,23.3,49.9,124.9,90.8,59.9,178.9,201.3,144.3,65.6,122.7,214.2,141.7,269.9,223.7,74.5,423.1,271.1,86.2,102.8,107.2,181.5,206.1,168.5,388,57.1,255.6,205,94.4,76.9,76.6,130.1,161.1,131.4,147.8,142.8,133.2,138.7,161.8,443,68.4,195.6,237.9,226.2,206.2,266.5,233.4,177.7,105.9,128.4,103.2,122.3,111.5,153.9,132.3,275.1,248.2,127.3,154.5,148.2,95.8,229.1,321.9,1,219.4,16.8,173.5,192.3,99.6,138.7,344.6,178,122.2,89.3,107.7,116.1,144.3,140.4,145.6,196.6,947.3,55.1,45.1,131.2,149,116,114.8,151.9,133.2,155,143.9,48.5,18.6,59.2,90.5,132.7,26.6,57.8,114.8,40.6,48.8,174.1,232.8,2340.8,358.8,77,220.8,204.3,127.6,199.2,279.2,125,162.4,241.1,202.7,230.6,106.8,336.2,297.1,148.1,114.7,96,153.8,107.1,647.8,228.2,29.1,4.8,203.4,239.5,256.9,202.8,27.9,169.8,128.4,137.2,133.4,90.4,181.7,142,117.2,114.4,161.5,380,250.4,120.7,180.9,122,174.4,112.1,113.8,174.7,111.7,165.3,411.3,107,133.8,119.7,167.9,126.8,145.4,299.2,11.5,112,38.2,101.1,267.4,148,65.7,177.3,103.8,247.1,88.7,88.8,111.8,110.7,235.3,215.4,35.9,377,70.1,253,344,258.6,241.8,32.4,2.1,267.4,330.1,311.3,221.1,205.5,121.1,139.3,139.9,173.8,229.5,10.6,114.7,208.4,176.9,202.6,160.6,203.3,84.5,12.6,17.8,17.1,18.7,5.7,9.4,15.1,14.5,14.1,16.6,12.4,11.9,14.7,16.2,13.6,15.2,19.7,17.1,13.6,18,14.7,12.9,18.2,14.7,17,14.4,16,14.9,37.3,30.6,50.2,17.8,40.3,78.2,66.1,49.2,92.6,63.1,71.4,49.6,60.4,37.2,38,56.8,59.8,82.4,84.5,55.5,294.1,87.2,46.1,49.7,51.3,52.7,72.4,32.6,56.9,59.8,62,57.9,28.5,29.5,28.4,51.5,50.4,40.3,36.1,37.7,28.9,49.6,40.5,38.6,52.6,46,17.1,54.2,50.6,57.1,32.5,28.9,109.4,118,144.7,78,175.4,18.7,27.4,58.1,60.5,3.8,188.8,105.7,53.7,126.4,27.8,43.1,48.3,4.1,10.7,32.5,65.9,41.9,202.1,185.8,154.8,151,254.2,183.6,126.7,177.9,260.2,264.2,117.2,104,86.9,84.8,211.5,180.7,199,39.6,0.8,138.4,102.8,92,3.7,115.5,114.7,120.8,128.7,79.3,75.5,93.1,127,106.2,203.9,176,24.4,2.4,59.5,39.7,2.7,39.5,76.7,77.5,51,72.1,36.5,31.9,61.7,40.9,90.8,77.3,62.4,31.5,4.1,100.8,68.3,69.2,101.6,74.2,73.5,78.7,37,38.6,151.8,253.9,249,213,208.3,137.3,104.2,147.5,397.7,178.1,7.5,132.2,109.8,139.3,188,31.1,87.2,92.3,129.1,79.2,89.2,94.3,104.9,116.5,115.8,234.6,249.7,235.2,131.7,130.7,182.1,145,97.6,56.6,2.2,100.3,139.7,220.9,617,335.9,167.1,104.8,55.5,113.9,107.3,96.6,111.7,95.1,93.9,88.4,73,75.6,85.5,75.4,65.7,56.5,76,86.2,38.6,71.5,70,64.1,94.7,79.3,73.9,145.8,74.8,214.3,66.4,41.8,43.8,52.9,34,44.5,47.6,105.7,92.7,87.4,86.6,264,114.2,116.8,131.9,103.8,89.2,139,115.8,109,197.7,203.1,252.3,311.2,135.7,146.8,192.3,962.4,126.8,165,89.7,145.4,60.7,148.8,169.7,150.9,1,125,152.9,84.2,72.2,88.2,52.7,322.3,40.5,92.4,140.4,176.5,220.9,211.6,217.7,684.7,104.1,102.2,117.4,107.2,71.1,73.6,118.8,103,147.5,354.2,58.1,10.8,41.3,82.2,83.6,98.2,90.5,95.9,88.5,101.8,75.8,72,65.2,64.9,101.4,107.6,65.6,7.8,74.8,69.8,101.6,286.5,72.4,69.2,58,58.7,105.5,144.9,554.7,2043.7,115.1,110.7,147,85.5,110.1,109,136.2,90,115.3,112.8,135.8,131.2,131.4,612.6,50.5,21.1,137.6,257.9,133,132,137,129.2,774.5,104.2,21.3,179.1,181.9,111.3,11.1,118.9,109.6,122.8,152.3,158.3,162.5,356.2,136.5,140.6,134.8,142.1,150.9,194.2,182,188.2,125.1,360.1,153.6,152.2,216.1,535.3,123.8,174.4,103.3,105.7,110.1,110.9,114.9,114.6,238.6,157.9,214.7,301.6,101.3,115.3,128.2,132.2,74.1,114.5,123.9,151.8,79.4,89.5,142.1,123.5,98.7,13.5,101.1,107.7,165.6,82.6,23.7,26.3,39.1,26,60.9,73.3,59.4,77.8,90.2,45,45.1,66.8,51.9,50.7,49.2,51.6,48.8,45.1,50.3,54.1,54.5,47.9,45.3,47.9,1094.1,65.4,48.5,46.7,33.2,92.4,88.9,41.3,40.5,55.9,113.2,166.2,174,72.3,93,71.7,79.5,86.4,60.1,51.7,78.9,80.6,92.7,95.2,65.1,55.5,53.1,67,42,52.7,40.1,53.6,53.7,65.6,53.5,52.9,43.7,47.5,42.1,52.3,55.7,53.8,65.2,80.5,66,53.1,44,46.5,45.7,49.6,39.6,40.5,39.9,42.2,94.1,94.7,49.4,45.2,44.7,44.9,37.9,37.5,36.5,1.3,39.2,41.5,42,39.4,37.2,61.4,54,62.6,57.1,51.4,57,101.7,205.7,207.9,52.8,54.1,50.5,49.8,53.4,52.7,67,62.3,94.5,46.8,47.4,40.2,41,39.2,41,71.2,71.9,125,65.3,62.5,55.9,63.8,78.8,45.7,53.3,38.8,36.5,40.7,38.8,54.2,53.2,76.5,219.6,71.4,73.2,54,53.5,46.9,47.7,52.2,49.3,34.5,35.7,122.8,124.3,72,81.5,41.8,41.4,66.7,66.4,99.3,120.4,65.7,66.7,78.8,81.6,54,55.4,514.6,46,46.3,93,44.9,47.3,49,45.8,66.8,66.4,79.9,280.5,278.5,86.8,86.2,88.9,84.9,67.8,65.1,96,114.7,73.6,502.6,61.2,59.5,104.7,106.8,59.3,60.2,60.4,59.6,437.6,436.7,54.4,31.3,73,39.4,40.3,39.1,40.6,53.1,41.4,44.1,45.9,47.7,45,66.8,65.9,66.8,65.3,62.9,70.4,62.5,34.3,33,56,53.3,7.5,51,59.8,65,31.4,1,35.6,113.2,1,19,519.4,118.6,13.9,0.9,99.9,49,1,172.6,181.1,388.1,230.4,60.6,110.1,112.2,88.4,122.2,115.8,109.8,73.3,111.3,96.8,53.9,0.6,13,56.8,0.6,42.2,351.6,23.6,99.6,51.8,66.3,63.7,40.7,141.8,131,101.9,91.6,89.5,20.4,71.7,49.6,54.4,50.4,52.4,26.9,35.3,68,142.2,78.7,19.3,104.3,102.5,99.9,62.3,73.2,123.8,118.7,93.6,137.9,0.3,39.1,1.7,120.3,32.4,30,28.3,159.1,19.8,21.8,20.4,19.1,23.7,26.7,74.5,30.8,19.8,14.5,15.2,14.4,18.3,18.3,14.9,16.3,17.4,14.6,15.2,11.4,11.3,10.7,15.4,19.7,32.3,33.7,33.4,55,46.1,36.2,38.9,32.3,35.9,28,22.2,17.4,17.1,15.5,18,12.6,16.2,12.1,14.2,16.3,16.9,14.6,14.3,14.4,16.3,14.8,15.4,40.3,13.8,14.6,9.8,15.2,11,12,12.9,13.1,71.4,47.2,64.8,65.5,52,60.3,84.4,118.6,31.2,84.6,66.1,78,68.9,29,139.3,755.4,117.2,68.1,69.5,68.1,70.7,47.2,49,50.3,53.4,159,169.4,95.3,49.4,58,58,55.6,49.6,83.5,75.4,73.7,93,59.2,55.4,54.3,102.4,153.9,433.6,104.4,89.7,103.6,104.4,78.5,80.7,153.4,64.7,78.4,153.7,96.4,99.1,92.1,87.8,403.1,5.5,68.3,181.6,90.7,50.5,80.1,70.5,83.9,77.6,153.6,166.1,94.8,106.4,135,135.7,165,166.6,185.7,184.2,179,52.5,126.4,163.3,223.2,223.3,125.6,129.3,159.7,130.9,130.9,26,267.5,339,256.3,216.4,266.3,179.6,141,156.4,92,76.7,78.6,64.1,104.3,69.3,46.8,51.7,94.2,91.4,55.3,75.3,103.8,119.3,63.4,106.3,66.3,75.3,118.9,91.9,80.1,198.8,120.6,36.5,177.6,76.5,71.7,94.7,102.3,92.6,129.4,109.8,50.1,135.4,79.7,79.8,134.6,94,111.7,80.9,81.1,78.9,79.8,108.5,106.9,65.6,71.6,128.9,79.9,28.3,52.6,235.9,0.1,106.1,114.3,107.5,38.4,80.2,48.3,44.2,49.2,446.5,484.9,558.1,213,210.7,133.7,128.8,125.3,116.7,94.3,94.9,192.1,62.4,70.9,69.9,69.1,69.4,54.8,54.8,65.5,64.7,164.4,69.7,71.4,124.5,110.9,68.6,76.2,90.2,68.8,79.6,43.7,44.7,42.4,44.2,66.7,16.5,77.8,79.3,51.3,93.4,53.4,59,62.6,59.1,58.4,64.7,58.1,56.3,65.9,66.6,69.8,73.8,89.5,86.8,86.5,76.6,85.3,83.6,79.5,71.6,73.1,74.7,102,102.4,480.3,124.2,126.3,121.2,119.9,85.9,87,116.4,111.1,224.8,105.4,33.1,127.6,137.7,133.2,264.5,266.2,61.9,37.1,17.9,18.7,20.4,20.7,20.4,20.5,41.3,38.9,20.8,25.5,25.7,26.8,26.4,24.9,26.7,26.2,15.5,7,163,65.7,55.1,22.2,18.9,18,16.7,16.5,12.2,10.9,16.9,13.4,2.3,24.2,26.5,103.7,51.8,13,12.9,12.9,12.9,13.2,13,13.1,12.7,13.2,12.9,13,13.2,12.9,13,12.8,13.2,13,12.8,13.1,13,13,13.1,25.9,26,104.2,25.8,20.9,5.4,12.9,12.9,12.8,13.1,12.9,12.8,17.1,14,15.4,14.7,14.1,14.4,15.1,11.1,11.4,13.6,13.8,14.1,14,15.6,10.7,11.9,10.5,18.5,35.4,33.4,42.6,22.8,27.6,25.7,25.7,51.5,51.8,52,207.8,153.5,316.4,58.9,55.1,0.5,22.3,12.9,12.8,12.7,13,12.9,12.7,12.9,12.9,13,12.9,12.9,13,25.8,177.8,68.9,32.5,99.7,51.7,26.1,25.9,12.8,12.9,13,12.9,12.9,12.9,12.1,11.5,10.2,45.9,26.4,25.3,52.2,52.1,102.8,104.4,103.3,104.3,51.9,25.7,25.6,26,25.9,25.6,25.8,25.9,25.7,25.9,25.7,25.2,25.8,25.8,25.7,25.9,25.4,25.6,26.2,25.9,51.7,51.9,64.8,19.6,96.1,103.6,52.1,51.6,51.6,51.9,51.8,51.8,51.7,51.8,46.4,56.6,103.5,104.4,51.6,51.7,25.9,25.9,12.9,12.9,13,13,13,13,13.1,13.1,12.3,13.1,13.5,12.9,13,12.8,12.8,13.4,12.9,12.8,13.2,12.9,13.1,13.2,12.9,13,13.4,12.9,12.9,13,12.9,13,12.9,12.9,12.9,13.4,13.4,13,12.8,13.2,13.2,12.8,12.8,26.3,26.2,51.2,59.8,40.1,22.3,13.2,13.2,12.5,13,12.9,12.9,12.9,25.9,25.3,31.5,23.7,25.3,26.4,25.5,25.5,26.1,25.9,51.6,103.6,25.2,26.2,25.5,25.8,25.8,26.3,51.4,206.6,27.3,73.4,2.5,51.3,51.5,25.5,25.6,25.6,51.9,25.6,26.4,33.3,1.3,42.8,25.6,25.7,52.1,50.8,51.7,51.8,51.3,51.8,54.8,92.2,115.1,207.3,207,103.2,51.8,310.4,51.6,51.8,51.3,52.1,51.4,52.3,51,51.7,52.1,51.3,41.8,9.9,207.3,206.5,206.2,103.8,103.5,103.8,103.4,103.5,103.5,103.3,25.8,25.9,25.7,25.5,25.7,26.4,25.2,25.8,25.9,26.1,25.5,25.9,25.6,26.3,25.6,25.5,25.9,25.9,25.7,25.2,26.1,24.5,27,25.9,25.9,25.7,25.8,25.7,26.2,26.3,26,25.6,25.5,26.3,25.7,25.6,26,26.2,25.4,26.1,25.6,25.7,25.9,25.9,26,25.6,26.2,25.1,26.5,25.8,25.1,25.8,26.2,26.5,25,21.4,4.3,26.1,48.4,37.2,40.7,53.5,52.3,25.9,26.3,25.8,27.9,24.5,26,26.1,26.6,25.7,26,26.4,26.5,25.9,26.5,26.4,27.3,27.8,26.5,33.2,22.7,25.9,26.2,25.8,26.2,25.7,25.8,25.9,25.9,25.9,24.5,26,25.9,26.3,25.5,207.4,51.7,25.9,26,25.7,25.8,26,25.8,25.9,25.7,26,28.1,108.2,206.6,104.2,103.1,206.2,52.3,25.8,25.8,26.1,25.8,25.3,26.9,26.2,25.8,25.7,26.1,25.7,26.3,25.7,26.1,26,26,27.3,26.1,25.9,25.9,25.8,26.3,25.9,25.4,26.3,26.1,25.9,25.8,25.6,26.1,26,26.2,27.4,27.5,27.8,25.9,25.9,105.3,90.4,13,52.1,26.1,25.7,308.2,16.9,106.3,103.7,52.6,51.4,25.6,25.8,26,25.6,25.8,25.8,25.6,25.7,25.9,25.5,26.1,25.9,25.5,26.1,25.5,25.8,25.7,25.8,25.5,25.6,26.2,25.8,25.7,25.9,25.6,26.1,25.5,26.2,25.9,25.8,25.8,103.8,51.8,78.2,90,52,51.8,19.2,20.1,25.8,19.6,31.7,26.4,51.7,51.9,51.8,26.2,25.7,26,25.9,26.1,25.8,25.9,25.7,25.9,25.9,25.9,26,27.1,27.1,25.9,26.6,26.2,26.2,26.1,26.2,52.2,52.7,52.2,51.5,52.2,52.5,51.5,52.6,52,52.1,52.4,52.6,51.7,104.2,104.1,104.1,103.7,103.9,51.9,12.3,39.8,51.9,51.9,103.7,109.1,151.3,214.9,51,51.8,25.9,26.2,25.4,26.4,26.5,151,29.5,26.5,26,25.9,26.2,26.2,25.9,25.9,26.1,26.2,25.9,26,25.9,25.9,26.1,25.9,26.2,26.1,26.1,26.1,25.7,26.2,25.8,26.8,25.8,26.2,28,28.3,29.6,26.1,25.8,26,25.9,26.1,26,25.8,26.7,26.5,26.4,26.4,26.4,27,26.8,53.4,53,55.9,211.7,105.8,26.5,26.4,26.8,26.7,27.6,27.7,27.4,27.4,28.4,26.3,26,26.4,26,26.1,26.7,26.4,27.3,25.5,26.6,26.3,27,26.6,17.4,22.7,26.7,26.6,27.9,29.1,28.2,26.3,22.2,3.7,25.9,26.2,26.2,25.8,26.6,26,26.2,26.4,26.3,26.2,13.2,13.1,26.6,26.3,26.6,26.2,27.1,26.8,26.6,27.5,28.5,26.4,28.7,26.1,25.9,26,26.3,26,26.1,26,26.1,26.3,25.9,26.4,28.1,20.7,30.3,26.3,25.8,26.3,26.2,25.9,26.2,26.3,26.1,26.3,26.2,26.7,26.3,26.6,26.1,26.5,26.1,26.7,26.3,26.5,27.7,27.7,29.9,26.4,26,52.4,104.2,30.1,179.3,104.7,25.8,210,210.8,367.9,24.6,2.4,62.6,11,236.8,102.4,196.6,3,42.3,27.8,27.8,24.6,24.6,28.8,28.8,26.3,26.4,42.8,998.9,31.9,26.3,26.2,25.7,25.7,26.3,27.4,27.2,27.2,27.2,27.1,23.5,23.6,26.2,26.2,26.4,26.2,26.8,26.9,52.5,106.6,103.3,24.7,82.2,8,96.6,485,104.5,46.9,160.6,52.3,26,29.1,26,26.1,26.1,25.9,26,26.2,26.1,26.1,26.1,25.6,26.1,26.1,26.3,25.8,25.9,415.3,26,25.4,25.8,25.7,26,25.9,25.9,26,26.2,25.7,25.7,25.9,26.2,25.6,25.7,26.3,25.5,25.9,25.9,25.6,26,26,18,8,26.5,25.3,25.7,25.6,20.6,31.3,26.6,24.8,25.7,26.1,25.9,26.1,25.8,26,25.9,25.9,25.6,25.9,26,25.8,26,26,25.8,25.9,26.1,25.6,25.9,26.2,25.7,25.8,26.2,26.3,26.3,25.9,26.1,208.2,104,104.2,26.2,26.2,25.9,26.1,26.2,26.2,26,26,26.1,26.2,26.1,26,26.1,26,26.1,26.1,26.2,26,25.8,26.5,26.5,25.7,25.8,26.3,26.3,26.2,26.2,25.8,26,25.9,5.1,20.7,26.3,26.3,26,26.2,26,26.1,26.4,26.5,25.9,26,208.4,170.3,59.2,111.7,104.2,34.2,24.1,4.4,74.1,1.4,42.9,47.7,3.8,104.5,109,151.5,208.6,52.8,52.4,53.9,52.4,52.4,51.9,52.5,51.9,52.1,52.4,52.3,52.4,52,52.2,52.4,52.1,52.3,52.2,52.4,52,52.5,53.8,52.4,53.9,55.6,51.7,103.9,97.1,51.4,51.3,51.5,51.5,25.9,25.6,25.7,26,26,22.1,3.5,25.7,26.1,25.7,26,26.4,26,25.5,26.2,25.7,25.7,25.6,25.9,25.7,26,26.1,26.1,11.3,15.2,26.1,25.8,26,25.7,26.2,26.4,25.5,26,27.3,26.1,27.7,28.1,25.8,25.6,26,25.6,25.7,25.7,25.6,25.7,25.7,25.7,26,26,25.8,25.9,26.3,103.6,103.7,51.8,51.9,51.5,51.4,55.8,34.7,25.8,25.7,25.6,25.5,26,26,26.1,25.2,25.9,26.2,25.8,25.6,26.3,25.9,25.9,26.1,26,25.9,25.8,25.9,25.9,51.9,51.8,51.8,26.1,26.2,25.7,25.6,26.3,26,25.9,26.2,25.5,26,26.2,26.5,429,416.4,422.4,416.1,52.1,26,26.2,26.4,25.9,25.8,26.2,26,26.2,25.9,26.5,25.9,25.9,26.5,35.8,29.4,26.3,26.1,26.5,25.5,25.9,26.3,25.8,26.3,27.4,26.2,28,28.6,26,26,25.8,26.2,26,25.8,26,25.7,26.3,25.9,25.9,25.8,26.2,26,25.8,26.2,25.9,26,26.1,25.8,9,17.2,25.9,25.8,26.3,25.8,26,25.9,26,26.2,25.8,26.1,26.2,26.2,26.1,26.1,25.9,26,2081.5,55,143.1,130.4,311.2,585.2,208.9,338.6,29,75.6,122.8,112,104.1,52,26,26,26.2,26.3,26.8,26.8,26,27.6,29.3,25.9,26,26.2,26,26.2,26.2,26,26,26.2,26.1,26.1,26.1,26.3,25.8,26.1,26.1,26.1,26.2,25.9,25.9,26.2,26.2,26,26.3,26.2,52.2,52.5,103.4,30.2,75.5,104.1,26.3,26.2,27.6,26.1,27.7,29,25.6,26.1,26.1,25.4,26.3,26,25.6,25.8,26,25.9,26,25.5,25.9,25.9,26,25.9,26,25.9,26.1,26.1,26,26,26.2,26.3,26.2,26,25.9,26.2,25.6,25.8,26,52.7,103.8,51.9,38.4,14.4,51.8,53.8,32.6,77.9,182.4,55.7,104.3,104.3,74.8,55.9,0.2,102.4,497.3,52.3,52.2,26,25.9,26.2,25.9,26.2,26.1,26.5,25.6,26.2,26,25.4,26.4,25.9,26.2,26,25.9,26,26.4,26.1,26.1,26.1,26.2,26.1,26.2,26.2,26,26,26.2,26.2,26.2,26.1,26.2,26,26.2,26.2,26.3,26.2,26.2,26,26.2,26,26.3,26.2,26.2,26,26.9,26.8,27.1,27,27.9,27.8,26,25.9,26.2,26,26.1,25.9,26.2,26.1,25.9,25.9,26.3,26.2,51.9,52.6,51.7,52.3,52.7,51.9,52.7,51.8,51.6,52.6,52.4,26.1,26.4,25.6,26.5,26.7,25.5,26.6,25.9,26.3,26.5,26.2,25.6,26.7,25.9,26.1,26.1,26.6,25.8,26.5,26.1,26.2,26.2,26.2,25.9,26.8,25.7,26.4,26.4,25.9,26.5,25.9,26.1,26.2,26.5,26.2,25.9,26.2,26.5,26.4,25.9,25.7,26.4,26.2,25.9,25.8,26.6,26.3,26,23.8,28.4,26.6,26.1,26,26.2,26.2,26.2,25.8,26.2,26.3,26.2,26.2,25.9,26,25.9,26.5,25.9,26.1,26.2,26.1,52.2,428,104.2,52.1,113.4,22.6,100,52.4,66.1,52.9,52.5,52.8,55.4,56.1,104.1,104.3,52,52,52.3,52.7,52,52.5,52.6,51.6,52.4,51.7,52,51.9,104.1,103.6,103.9,110.4,124.3,104.3,51.9,51.8,51.8,52.2,52.3,104.4,104.2,11.9,587.7,417,208.4,208.6,103.9,51.9,52.7,26.2,26.1,26.1,25.6,26,26.7,26,25.8,25.9,25.5,27.1,25,26.2,26.1,26.3,25.8,26,26,26.2,26.2,26.1,25.7,25.9,26.5,26.1,26.2,25.6,26.4,25.9,51.7,52.2,52.1,104.3,51.9,52.8,51.5,26.4,25.9,52.5,53,43,47.7,52.2,39,52.8,52.4,51.7,51.9,52.6,51,53.8,52.2,51.8,52,51.7,26.5,26.8,27.2,25.9,26.5,26.1,26.2,25.9,25.9,26.3,26.1,26.1,26,26.2,26.1,25.8,28.1,25.5,26.1,29.7,25.7,26.1,26.1,26.2,26.1,51.8,52.5,52.3,52.3,52.1,52.7,52.1,52.1,94,108.1,209.1,103.9,104.4,104.1,232.1,3.4,104.6,104.6,51.6,53.5,52.5,51.9,55.5,52.2,51.9,38.7,52.3,51.9,52.2,52.1,52.1,52.1,52,52.1,52.1,52,52.1,52.1,52,52.3,52.1,51.9,52.3,52.1,52.2,52.1,51.8,52.3,52.1,51.7,52.6,51.9,52.2,78.1,52.1,52,51.6,52.6,395.6,308.1,112.4,199.6,885.4,52,52.2,26.1,25.9,26.1,26,26,26.6,51.4,52.1,52.2,53.6,51.9,52.4,52,52,53.7,55.2,51.9,51.8,17.8,34.1,51.2,52.6,51.8,52.3,51.8,51.8,52.5,51.1,53.2,52,51.3,52.6,51.8,51.7,52.7,51.9,52.5,51.9,208.4,45.2,74.7,52.9,52.7,179.6,108.2,125.7,80.5,44.6,54.5,52.4,52.4,52.4,57.9,46.4,52.8,52.3,52.3,52.4,60.2,29.1,33,26.4,26.1,25.7,26.3,26.2,28,10.2,40.5,25.6,25.9,26.6,26,26,26,26.5,25.5,26.1,26.4,26.2,25.9,25.9,26.5,26.1,26,26.2,25.8,26.3,26,25.8,26.1,26.2,25.8,51.7,26.2,26.2,25.9,25.9,26.1,26,26,26.5,25.8,25.7,26.5,25.9,25.9,26,26.4,26.4,26,26,26,26,25.4,52.6,157.2,365.1,482.7,25.8,26,26,26.4,26.3,26.3,26,26,26.4,25.9,26.3,26.2,25.9,26.2,26.3,26.2,26.1,26.2,26.2,26.1,26.4,25.8,25.8,26.3,6,20.1,26.3,26.2,26,26.1,26,26.5,27.1,26.2,26.2,26,27.7,21.3,21.2,25.9,26.3,25.9,26,25.8,26,25.9,26,25.9,26,26,25.7,26,25.8,25.8,25.9,25.8,25.7,26.3,25.8,26.5,25.7,25.8,26.3,25.6,25.6,26.8,26.1,25.9,26.3,25.7,26.1,25.8,25.8,21.8,4,52.3,51.8,130.6,130.8,287.7,76.7,52.2,26.4,22.1,68.5,26.1,25.8,25.8,26.1,26.1,25.6,25.7,26.3,26.3,25.9,26,25.8,26,26,26.5,25.9,25.8,25.9,26.1,25.9,26.4,25.9,25.8,26.4,25.7,25.7,26.6,25.4,26,26,25.9,26,26,26.1,20.5,5.8,104.1,156.4,52.1,25.9,26.1,25.9,25.8,25.6,25.6,26.2,26.1,25.5,25.9,25.9,25.8,25.7,26.3,26,26.1,25.9,25.8,25.7,25.6,26,26.1,26.5,25.7,25.8,25.8,26,25.6,25.9,25.8,26,25.9,26,25.7,26.1,26.2,25.8,25.8,25.7,25.7,26.5,25.7,51.5,25.7,26.1,25.8,3.6,22.3,26,25.8,25.8,26.1,26.1,25.9,25.9,26.1,26.1,26,26.1,25.7,26,25.9,26.4,25.7,25.6,26.2,26.1,25.9,25.8,26.4,26.3,26.1,32.5,19.7,25.6,26.1,26.1,26.3,26,26,25.8,26,25.9,26,26.5,26.5,6.9,19,25.9,30.8,20.5,11.6,13.9,37.3,207.2,349,55.9,49.2,26.2,26.1,26.1,26,26,26.3,26,26.1,26.2,30.3,25.8,26.2,26.1,26.3,25.7,26.1,26,26,26.9,26,25.9,26.5,25.8,26,26,26.7,25.8,26.8,26.1,25.8,25.9,26.3,26,52.1,624.7,352.5,51.9,26.2,26,25.9,26.4,26.2,26.1,26.1,26.1,26.2,25.9,26.5,25.9,25.7,26.2,26.2,26.1,25.9,26.1,26.4,25.9,26.5,25.6,26.2,26.2,26.3,34,18.2,26.4,26.1,26,26.1,26.2,26,25.9,26.3,26.3,25.6,26.1,26.6,25.5,26.6,25.6,26.6,26.3,25.7,26.3,25.9,26.2,26.3,26.5,25.6,26.4,26.1,26,26.6,26.1,26.1,26.3,26,55.6,1845.4,469.1,833.3,300.3,11.4,51.8,51.7,52.6,155.4,78.1,73.6,95.8,65.1,104.3,52.2,52.4,51.9,51.8,52.3,52.1,51.3,52.2,52.4,52.1,52.1,53.4,52.7,52.6,341.3,208.9,128.3,338.1,340.3,156.7,104.6,104.6,156.9,156.5,312.9,75.6,28.6,104.5,104.3,52.3,52.4,25.8,25.9,25.9,25.9,26.3,25.6,17.7,8.5,26.1,26.2,26.2,26.2,26.3,26.1,26.2,26.2,18.9,7.3,26.9,26.9,26.2,27,26.9,27.3,27.3,25.8,26.2,26.2,26,26.1,25.7,26,25.9,26.2,26.3,25.5,26.1,26.1,25.9,25.8,26.2,26.2,25.9,25.9,26.2,26.2,26.2,26.2,25.9,25.9,25.7,26.8,26,26,25.8,26.1,26.2,26.3,52.2,158.4,608.7,374.9,375.6,15.1,208.7,208.3,105.2,85,136,209.6,208.4,52.9,52.1,52,52.4,52.2,77.2,30.6,323,25.7,1.1,51.7,26.4,25.6,26,26.2,26.2,26,26.2,26.1,26,26.1,26.2,175.6,269,406.1,25.2,26.3,26,26.4,26.1,26.4,26.3,26.1,26.2,26.2,26.7,25.8,26.1,26.4,26.4,24.6,1.4,26.6,21.8,27.2,26.3,26.5,26.5,25.8,26.5,26.2,13.1,13.8,26.4,25.8,10.3,1.6,39.5,25.6,26.5,6.2,19.7,25.8,13,12.9,13,13,13,13,12.9,12.9,12.9,12.8,13.3,13.1,13.1,13,52.3,65.1,39.5,52.1,52.4,13,13,13,13.1,13,18.6,7.8,13.1,13.1,13.1,13.1,19.1,20.2,13.4,13,13.1,13.2,13,13.2,13.1,13.1,13.1,13.3,13.1,13.1,13.2,13.1,13.2,13,13.1,13.2,13.2,13.3,13,13,13.3,13.3,13.1,13.1,13,13.1,13.1,13.2,13.1,13.2,13.1,13.2,13.1,13.2,11.3,13.1,11.4,1.7,13.3,13.2,26.1,26.2,26.1,188.6,12.9,101.5,153.6,25.5,25.5,30.1,19.2,21.3,17.5,24,19.1,52.3,30.3,47,36.8,24.8,51.2,51.7,52.1,102.4,53.1,51.6,51.8,51.5,51.7,51.8,51.8,51.7,51.8,51.9,54.6,50.3,50.2,51.9,51.9,51.6,51.6,51.4,51.9,51.8,51.9,51.7,51.6,51.6,51.4,52,52.3,51.7,51.8,52.1,50.8,67.9,36.1,51.3,51.5,52.6,50.4,52.7,51.2,51.3,52.6,50.9,52.3,50.9,51.5,52.3,51.8,52.3,51.5,52.6,426.7,5.4,407.7,103.7,51.8,51.8,51.7,51.7,51.9,51.6,51.3,51.2,51.8,51.1,52.9,50.7,18.8,21.1,5.5,46.1,51.5,51.8,51.9,51.8,51.6,51.9,55.3,47.6,52.8,51.3,50.3,53.1,52.1,52.1,52.2,51.6,21.9,29.9,52.5,52,52.3,51,49,3.1,51.8,52,51.9,56.9,101,52.1,51.8,52.3,60.9,54.2,51.4,51.9,52.2,51.3,53.6,0.1,45.8,51.9,26.1,26,25.7,25.6,51.8,51.6,51.9,51.6,51.7,51.7,53.6,53,51.4,51.8,52,51.6,51.6,52.4,51.1,51.8,103.5,103.5,104,51.7,51.9,51.5,51.6,51.3,51.8,56.2,52.2,51.6,52.1,52.3,26,25.9,26,25.9,17,9.1,26.2,23.7,2,25.6,26.4,25.1,52,52,52,42.8,8.8,52,41.8,5,56.9,52,51.6,52.1,52.8,51.1,51.6,52.3,51.4,52.2,52,53.7,52.5,52.2,52.1,52.2,25.7,26.2,26.2,26.3,48.8,48.8,52.3,52.1,52,28.1,23.1,53.5,52.2,52.1,52.3,130.5,104.4,104.6,49.3,52.1,52.1,52.2,52.1,52,52.4,52.2,52.1,51.8,52.4,52.2,70.5,56.7,70.8,66.7,31.1,215.4,42.3,115.2,104.9,51.8,60.1,32.9,19.2,25.5,26.4,52,25.7,25.7,25.9,26.1,26.6,26.6,52.2,52.3,53.4,51,52,54.6,53,51.3,58.6,22.1,76.9,103.5,124.3,108,26,26.1,26,26.2,26.1,27.1,25.6,26.6,25.7,25.7,25.8,25.8,25.5,26.3,25.7,24.9,26.4,27,23.1,3.2,23.1,26.1,26.3,26.1,26,25.6,26.9,26.1,26.9,25.8,25.6,26.1,26.4,17.8,8.1,25.8,26.5,26.4,25.6,26.1,26.7,26,26.2,26,25.9,25.9,26.2,25.9,26.2,26.3,25.2,26.1,25.9,25.5,25.9,27,25.8,26.1,25.8,26.7,25.6,26.5,26,25.9,26.5,26,21,4.6,27,24.7,26.5,25.9,26.5,25.9,25.9,51.5,51.6,8.4,43.4,51.9,57.1,47.7,52.8,52.4,26.1,26.1,26.3,26.3,26.2,26.1,25.9,26,26,26.7,26.7,25.8,25.8,26,26.1,26.4,26.3,25.8,25.8,26,26,26.6,26.6,26.3,26.5,25.5,25.5,25.6,26.1,26.1,52.3,25.1,26.5,25.8,25.7,26,25.9,26.5,25.5,25.6,26,26.2,26.1,26.2,25.6,25.6,26.1,25.7,25.8,51.5,51.7,51.7,51.2,51.3,51.3,417.9,74.6,339.3,423.5,106.1,106.2,52.2,52.2,52.3,52.4,52,51.7,51.6,51.9,52,51.4,51.5,52.3,52.7,51.6,51.6,52.1,52.4,51.9,52.4,15,8.1,29.3,52.2,7.7,5.9,38,52.6,52.6,26.1,25.9,52.3,51.5,54.2,53,43,62.9,53.3,53.5,20.7,21.6,64.3,53.2,53.2,52.7,53.1,52.3,53.2,53.2,53.1,52.6,53,53.4,52.8,52.9,53.4,52.7,52.9,53.8,52.7,53.3,53.3,52.8,53.7,54.4,53.8,53.7,53.3,54,53.8,53.9,53.8,54.2,53.5,53.7,52.5,52.2,52.4,53.4,52.3,53.1,52.7,52.8,52.4,52.2,51.8,51.3,51.6,51.7,51.8,103.4,85.1,123.7,52.1,52.1,52.2,400.2,16.3,209.5,209.1,59.6,149.3,52.6,52.6,51.7,52.7,52.5,52.6,52,51.8,52,51.7,52.2,52.1,51.9,51.7,51.8,52.2,52.2,52.1,51.9,51.7,51.8,51.9,52.2,52.2,52.3,52.3,51.7,52.2,52.1,52.2,51,52.3,52.1,52.1,102.1,33.2,62.7,300,100.2,51.4,103.4,51.5,51.5,51.7,51.7,51.6,51.8,51.7,51.4,51.9,51.7,14.9,37.1,51.6,51,51.9,51.6,51.7,25.4,26,51.6,51.6,51.2,51.6,51.7,51.8,51.6,51.5,52.7,52.2,53.4,52.7,52.7,53,53,52.6,52.4,52.8,52.8,52.7,104.5,207.1,621.5,97.8,24,59.7,21.2,51,50.9,51,50,50,51.3,38.3,64.4,51.7,50.9,51.9,51.7,50.8,50.1,50.1,50.8,51.1,52.1,52.2,50.1,50.9,50.1,50.2,50.2,50.2,50.2,49.8,50,50.2,50.4,50.2,50.3,50.2,100.8,34.3,66.2,206.3,63.1,117.5,23.2,202.7,202,51.4,50.1,52.5,51.1,51.2,21,34.1,51,51.8,51.7,50.5,52.7,51.6,51.7,50.9,50.9,51.2,50.9,50.6,50.8,50.8,50.7,50.9,50.7,50.6,51.6,51.5,51.7,50.7,51.5,51.7,50.8,51.9,51.5,50.9,48.6,52.3,53.2,53.1,39.2,13.2,52.5,52.8,52.8,53,53,53,53,210.4,209.5,210.4,416.6,207.7,208.5,194.8,13.6,208.6,209.8,52.4,52.5,52,52.2,51.8,52.7,104.1,52.6,52.6,52.1,52.2,52.2,52.1,52.1,52.3,52.2,52.9,52.7,52.8,52.7,52.5,52.7,52.1,52.6,52.7,52.3,52.2,52.8,52.1,52.5,52.7,52.1,52.6,52.2,52.8,52.6,52.4,52.3,52.4,52.5,52.3,36.3,15.9,52.7,53.2,52.5,52.5,52.8,52.8,52.7,105.4,105.2,284.2,136.3,105.6,52.2,49.1,56.2,52.8,52.4,52.4,52.5,52.6,52.3,52.8,52.1,51.9,52.5,51.9,52.3,52.2,52.2,52.1,51.9,52.3,52.1,52.2,52.2,33.4,6.3,12.3,52.2,52.3,52.2,51.8,52.2,52.4,107.2,49.1,52.2,52,52.5,52.1,51.8,52.4,52.3,51.8,52.2,52.6,50.9,2.1,102.9,208.4,174.1,33.9,104.2,52.1,52.1,52.5,52,52.5,52.5,52.6,52.7,52.3,53.4,52.2,52.6,52.6,52.7,52.5,52.6,52.6,52.4,52.3,53.1,52.7,52.8,105.3,52.3,52.4,52.4,52.4,52.4,52.4,52.1,52.5,52.1,53,52.5,52.4,52.6,52.3,52.5,52.5,52.5,52.5,52.4,52.4,52.2,52.2,106,212,106.2,106.3,53.2,53.2,53.2,52.6,16.2,37.5,51.4,52.3,52.2,52,30.9,21.5,52.2,52.2,52.3,52.7,52,52.2,51.9,52.4,51.8,51.6,26.8,77.4,103.7,102.8,105.3,208.3,208.1,52.1,52.3,52.7,52.2,52.9,52.3,52.3,52.7,52.9,52.3,52.7,52.8,52.5,52.6,25.7,26.8,52.7,52.5,52.7,52.4,52.6,52.7,52,52.1,52.6,52.6,52.5,52.7,52.3,53,52.4,52.5,52.4,52.5,52.9,104.1,209.1,104.6,105.3,52.6,52.5,52.4,52.6,52.4,52.6,52.6,52.7,52.1,52.6,52.6,52.6,52.8,52.4,52.5,52.5,52.5,52.9,53.1,52.6,52.8,52.2,52.3,52.9,52.4,52.3,52.6,52.5,52.4,52.2,52.5,52.8,52.6,52.6,52.2,52.6,52.1,53,421,210.5,105.4,34.8,17.6,52.9,52.3,52.5,52.8,52.4,52.7,52.5,52.6,52.9,52.6,52.8,52.6,53,53.1,52.2,52.8,52.6,52.4,52.8,52.8,52.6,52.8,52.6,52.9,52.8,52.6,200.3,196.7,209.2,105.4,53,52.4,106.9,105.2,52.5,52.6,51.9,52.6,52.4,52.9,52.4,52.5,52.1,52.3,52.6,17.3,35.2,52.5,52.5,52.7,52.9,52.5,52.6,52.5,52.5,52.8,52.3,51.8,53.4,52.2,52.6,52.4,52.3,52.8,52.2,52.6,52.6,52.5,52.5,52.6,52.5,52.5,52.7,52,53,52.3,52.4,53.1,13.2,39.1,3,49.9,19,33.4,52.5,52.4,52.6,52.4,52.7,52.6,105.3,209.6,165.2,84.4,52.5,52.7,52.4,52.4,52.7,52.5,52.3,52.5,52.5,52.8,52.4,52.6,52.4,51.7,53.5,52.2,52.4,52.8,52.3,52.4,52.8,52.8,53,52.5,52.7,105.2,105.8,106.3,108.5,53.3,53.8,53.6,53.6,53.7,53.6,53.8,53.6,53.8,53.6,54.6,54.4,55.1,54.5,54.8,54.9,55.6,52.1,51.3,51.3,51.3,50.6,50.3,50.8,50.9,50.9,51.2,50.9,51,50.7,50.7,51,89.4,12.9,203.5,51,50.9,50.9,50.8,51,50.9,51.1,50.9,51,50.2,48,51,50.7,50.5,50.9,12,13.1,50.6,10.3,6.3,7.5,4.9,23.3,18.4,31.9,51.5,52,51.5,51.4,51.4,8.7,43.4,51.5,51.5,51.3,52.8,50.2,51.7,51.1,52,51.1,51.6,51,51.3,51.4,51.3,51.7,51.8,51.4,51.4,51.6,51.6,52.2,51.9,51.5,51.8,18.3,33.3,51.7,51.3,51.9,51.4,51.6,51.7,51.8,51.1,51.6,51.4,46.8,46.9,51.5,51.6,51.6,51.1,51.5,52,20.7,82.9,52.4,51.7,51.8,51.9,52,52.1,51.9,52.1,52.7,51.6,51.7,26.6,25.7,52.1,52.2,51.5,45.9,36.1,2,45.3,51.8,51.9,52.2,52.2,65.1,49.7,53.8,52.3,52.1,52.1,31.4,21.1,52.2,51.8,51.8,51.7,51.8,52,57.3,46.7,51.9,51.9,51.8,51.9,51.5,52,52.1,52.1,52.7,52.1,52,52,52,105,209.4,207.7,208.4,208.9,210.5,209.1,209.3,209.8,209.3,208.2,207.4,103.1,52.1,52.1,51.8,51.5,52.1,51.9,51.6,52.2,51.8,51.9,51.6,52.1,51.8,52.8,51.8,52.2,52.3,52.3,52.4,52.3,52.7,52.5,50.7,52.3,51.7,51.9,51.4,29.6,22.6,52.2,51.8,52.2,51.9,52,51.9,51.8,52.1,52.3,52.2,52.1,52.5,52.7,52,52.3,52.1,52.2,52.3,51.8,39.2,12.5,52.5,52.2,52.1,52.1,52.2,51.7,52.4,51.6,51.4,52.2,51.9,51.6,51.7,52.8,52,51.8,52,52.3,52,52.5,52.1,51.7,52,52,52,52.3,52.1,52.1,52,51.5,52.4,52,52.1,52,52.2,52.1,52.1,104.2,52.9,51.8,52,52.3,52.1,52.3,52.2,52.3,52.6,51.9,52.3,52.5,51.9,52.2,52.2,52.1,52.3,52.4,52.5,52.3,52.1,52.3,52.2,52.3,52.7,51.8,52.2,52.3,52.2,52.1,52.6,52.2,52.3,52.3,51.8,52.1,52.2,51.9,52.2,52.3,16.8,35.5,51.5,52.4,52.7,51.9,51.8,52,52,52.4,52.4,52.2,52.3,52.4,52,51.9,52.5,52.4,51.4,51.6,51.7,51.7,52.1,52.1,52.1,52.1,51.6,52.6,51.9,52.3,52.2,52.3,51.8,51.8,52,52.1,52.3,52.4,52.2,52.2,51.7,52,52.6,52.1,51.9,52.4,51.2,53.7,51.8,51.7,51.7,52.1,52.8,52.3,52.1,52.3,52.4,52.6,52.6,52,52.2,30.1,22.7,53.3,54.1,54.3,54.4,54.4,53.6,55.2,59.2,48.5,54.1,54.1,54.4,55,54.9,54.1,54.2,53.7,53.7,51.1,51.9,52,51.6,52.3,52,52.1,52.2,51.8,52.2,104.3,104,104.1,103.3,104.6,104.5,104.4,104.2,103.5,104.9,103.5,103.9,103.4,103.3,103.8,51.5,51.6,52.4,52.6,51.7,51.9,51.8,52.2,52.1,26.5,25.7,52.1,52.2,51.6,52.1,51.7,51.7,52,52,52,52.1,105.2,46.3,56.9,103.6,51.8,51.8,52.4,52.3,52.6,52.7,52.3,52.4,52.6,52.8,51.7,52.3,52.4,50.8,50.6,53.7,53.7,52.1,52.4,52.5,51.8,51.9,51.5,52.1,52.1,52.1,52.1,52.1,52.1,52.3,52.4,104.2,59.9,44.6,208.2,207.4,52.4,52.6,52.5,52.6,52.4,52.5,52.6,52.8,52.3,52.7,52.9,52.2,52.3,52.3,52.4,52.4,52.4,51.6,52.4,52.3,52.5,51.9,52.3,52.4,52.3,52.8,52.4,52.4,52.7,52.8,52.2,52.3,52.9,51.7,52.7,52.1,52.1,52.1,52.2,51.9,52,51.8,51.9,51.7,52.7,52.6,52,52.1,52.1,52.2,104.3,104.4,104.3,104.3,104.3,104.3,417.7,418.2,218.2,199.3,105,105.2,208.2,209.4,104,104.5,187.2,2,19.5,104.4,52.8,52.8,28.5,49.6,52.2,52.3,52.3,52.5,73.2,57.6,52,52.2,47.5,51.9,52.6,52,52,52.9,51.8,195.4,208.9,417.2,91.1,115.5,8.2,409.4,419.9,419.2,52.3,52.2,52.3,52.1,52.4,52.6,4.3,47.9,52.1,52.1,52.2,52.4,52.1,52.3,52.3,52.4,51.8,51.9,52.3,52.2,52.2,52.9,51.7,52.5,50,53.8,53.6,52.6,52.6,105.5,105.4,52.7,52.7,52.6,52.8,100.1,5.8,52.5,52.6,52.7,52.6,52.8,52.9,52.7,52.7,52.9,32.7,23.8,48.6,52.5,53.4,52.4,52.7,52.7,52.8,52.8,52.8,52.9,209.6,209.5,453.2,174.7,52.2,52.3,52.2,52.2,52.4,52.5,52.5,52.5,52,52.4,52.8,52.3,52.5,52.3,52.1,52.1,52.1,55,57.2,57,57.2,114.1,53.5,52,53,55.8,56.9,57,58.4,58.5,58.5,58.4,44.5,13.5,117,57.7,57.8,57.3,57.9,57.7,57.5,58.4,56.6,57.5,56.8,57.7,52.6,52.7,51.9,52,52.4,52.3,52.3,52.3,52.4,52.3,52.2,52.8,51.7,52.6,52.1,52.6,52,52.3,52.4,52.3,52.4,52.3,52.2,52.4,52.5,52.4,52.6,52.5,104.2,52,52.1,52.3,52.3,52.2,52.3,52.4,52.4,52.1,51.8,52,52.2,52,52.1,52.4,52.5,52,52.2,52.6,52.7,104.1,104.7,104.8,104.7,104.8,104.8,105,103.8,1.8,107,41.3,8.1,52.4,28.9,28.9,77.5,92.5,106.9,45,45.3,53.2,1.8,47.5,25.5,25.9,18.1,33.7,25.7,25.5,25.3,25.4,30.7,30.6,25.4,25.5,50.8,53.3,51.8,116,103.4,103.7,103.5,51.6,51.7,51.5,51.6,51.7,51.8,51.8,51.6,51.7,51.7,51.8,51.8,51.5,51.8,51.8,51.6,51.6,51.9,51.7,51.4,52,51.9,51.6,51.8,51.7,51.8,52.2,51.4,52.1,52.2,51.3,51.4,51.6,51.7,51.7,51.4,51.5,43.5,60.2,51.9,51.5,51.7,51.8,51.2,51.5,51.3,51.4,15.1,38.2,51.4,52,52,52,51.6,51.9,51.7,51.7,52,51.3,58.6,48.2,48.1,49.6,44.9,52.5,51.7,51.5,51.9,52.1,51.6,52,51.9,51.9,51.8,11.3,39.4,1.4,23.2,28.1,51.6,50.8,50.8,52,51.9,74.4,55.2,51.7,51.5,51.2,41.6,47.8,52.7,52.8,51.9,103.7,103.7,51.8,51.7,51.8,51.9,51.7,51.9,51.6,51.7,51.6,51.6,51.8,51.9,52.1,51.9,51.5,51.6,51.8,52,51.8,51.8,51.9,51.6,51.8,52.5,63.6,195.3,52.2,51.5,25.7,26,26,26,25.6,25.3,26.3,14.1,12.1,25.9,26.1,25.8,25.8,26.1,25.7,25.5,26.8,25.7,25.8,26.1,26.2,25.6,26.1,26.3,25.5,26.1,25.5,26,26.1,26,25.9,25.8,25.9,25.9,25.9,25.8,25.7,26.2,26,25.9,25.8,26,49.7,49.7,107,103.1,103.6,51.7,51.8,51.7,51.9,51.9,51.7,52,52,51.8,51.9,52,119.2,102.4,102.3,103.3,52,52.1,51.9,52,51.8,51.9,51.8,51.8,103.6,103.8,76.6,104.7,103.6,103.6,207.2,85.6,4.9,2.9,5,97.3,208.8,26.1,26.3,30.2,0.4,21.5,26.1,52.1,26.6,17.4,34.2,25.9,26.2,25.8,25.3,25.9,11.7,14,12.3,13.4,25.8,26.5,25.8,19.1,6.7,25.9,26.3,3.4,8.3,13.2,25.7,26.4,26.1,26.2,25.6,26.2,26,26.1,26,16.6,9.5,11.3,14.7,19.8,6.1,11.2,14.7,24.6,14.2,27.3,9.6,36.2,31.5,37.9,8.1,26.3,1.8,17,26.1,26,26.1,21.1,1.5,3.5,26,25.8,25.8,26.8,26.1,26,26.3,25.9,26.5,25.7,26.2,26,26,26,26,2.1,50.4,104.1,49.5,49.5,45.5,40.5,18.4,3.7,1.8,467.1,0.3,43.1,12.8,6.5,18.4,41.5,31.7,30.6,65,0.1,30.1,0.5,27,0.4,17.2,0.1,29,25.7,26.2,26.7,25.5,8.3,17.9,26.1,26.9,15.6,35.7,26.2,2.4,23.5,26.2,26,26.1,26,26.1,39.4,11,40.7,104.2,46.4,181.2,84.9,207.9,95.7,106.7,201.7,207.2,101.7,54.5,52.4,26.3,26.2,25.8,25.8,26.1,26.2,26.2,26.1,24.8,24.8,27.7,27.6,26.1,26.1,26.1,26.2,26.4,52.3,23.4,48.2,25.8,26,26.1,25.6,26,26.1,35.8,28.3,26.2,25.8,26.3,26.1,25.9,26.4,25.7,26.1,26.4,25.8,26.4,26.2,26.2,25.9,8.3,42.5,27.6,25.5,25.5,26.4,26.5,26.2,26.4,26.2,26.2,44,46.5,46.8,52,51.6,51.9,51.5,51.7,52.3,54.2,19.8,253.2,202.4,51.9,52.1,52.2,50.9,50.8,51.8,51.8,51.8,26,27.5,75.4,65.6,217.5,54.3,51.9,52.4,51.5,100.4,3.7,104,104.8,103.4,104.5,104.8,51.4,52.6,61.8,42.1,58.5,45.9,52.2,52.2,52.4,52.3,52.4,52.3,52.1,52.7,52,52.5,52.3,52.1,104.6,55.1,69.2,201.5,175.6,234.1,11.8,80.8,62.6,1.1,26.7,5.3,23.7,1.1,31.1,1.3,55.6,52.4,37.5,24,29,97.8,6.4,104.6,39.7,45.2,2,137.4,62.3,51.9,51.9,52.4,25.7,25.9,25.9,25.9,25.9,25.9,25.8,26,25.8,26,25.5,25.8,26.2,25.8,26.1,25.8,26,25.9,26.1,25.9,25.9,25.9,25.9,25.9,25.8,26,26,25.9,26.1,26,26,26.1,25.9,26,26,25.8,34,26.1,26.1,26.2,52.4,52.3,13.2,54.5,29.5,31.9,28.5,52.8,52.3,26.2,26.2,26.6,26.3,26.3,26.6,26.4,26.7,26.3,26.2,26.2,26.8,25.8,25.5,26.1,25.9,26.1,26.4,26.3,77.9,26.1,26.1,51.6,25.8,26.2,25.9,25.8,26.3,26.1,26.1,25.7,26.3,25.3,26.3,25.8,19.4,1.5,32.4,17.4,7.1,26.6,25.6,26,25.9,26.2,26.2,25.2,26.1,26.1,25.7,25.8,26.1,26.3,25.8,25.8,26.1,26.1,25.8,25.9,52.7,105.3,52.7,52.8,27.2,27.3,27.3,27.3,27.1,26.3,28.3,25.8,27.6,27.5,59.2,40.2,48.8,50.3,40.6,37.4,60.1,36.4,28.7,52.8,50.7,51.2,212.2,65.4,102.3,94.2,46.9,46.2,65.3,60.1,4.5,103.7,45.7,44.9,90.2,45.1,45.3,45.1,45.6,103.5,104.3,180.4,69.3,111.7,41.4,49.1,90.3,64.4,64.4,39.1,39.1,25.9,25.8,25.9,25.8,51.6,51.5,32.8,32.6,65.4,38.6,38.7,38.6,38.5,51.7,51.5,52,51.9,32.5,32.3,32.5,32.3,53,54.2,13.6,21.4,46.5,38.9,141.3,46.5,51.9,52.1,54.7,54.6,76.5,76.1,152.5,140.9,69.5,71.9,61.9,62.8,55.4,76.8,76.7,78.6,90.5,57,0.1,33.9,252.8,53,56.3,43,49.7,44.5,63.6,46.2,77.6,51.8,51.6,52,51.8,104,51.5,51.7,77.8,78.3,51.4,51.2,78.5,78.4,90,471.8,135.7,98.1,112.2,112.1,40.8,47.2,16.9,40.4,30.9,13.9,48.8,62.3,37.7,27.3,36.5,31.5,34.2,59.5,49.1,23.2,22,44.3,49.4,76.8,72.1,72.6,72.5,51.9,24.5,76.4,103.6,77.7,78.2,103.1,103.9,730.8,70.7,809.6,407.1,202.5,204.9,143,143.2,89.1,103.5,88,87.8,95.4,95.3,91,33.7,57.5,77,77.4,72.1,71.8,61.3,61.1,42.7,42.6,45.1,45.5,78,78.1,166.7,103.4,103.4,90.7,129,104.1,91.2,83.6,48.4,48.4,71.5,76.2,54.7,45.2,44.9,78.9,38.6,38.7,127.3,6.4,38.6,44.3,44.1,45.7,45.5,38.7,38.8,77.9,77.9,75.4,40.2,40,52.4,52.6,52.5,68.7,36.7,36.8,143.2,151.1,52.5,98.7,235.8,116.7,58.9,59,49.8,67.3,46.4,46.4,47.3,47.4,99,90.5,213.3,142.8,225.5,101.9,65.5,74.1,70.2,90.6,35.2,35.5,35,35.1,35.3,35.4,18.4,16.3,34.8,35.3,27.7,8,58.9,35.2,35,70.5,35.1,34.8,48.5,35.2,35.3,35.1,35.5,64.4,64.3,19,45.4,64.4,138.2,68.7,68.5,58.5,29.1,29.2,52.6,52.4,32.3,32.1,32.4,32.1,53.2,51.5,38.6,38.6,25,25,38.8,38.7,52.9,29.9,29.8,59.4,32.4,45.1,52.8,52.2,52.2,122.2,53.6,26.7,26.6,5.8,50.8,56.4,27.6,40.6,34,34.1,42.1,42,66.4,41.4,41.3,39,39.1,38.3,38.4,54.6,54.4,51.3,57.6,43.2,43.4,42,43.5,41.9,42,32.5,32.4,46.9,46.6,64.5,64.7,16.8,60.2,58.6,58.4,58.6,58.4,64.6,64.7,77.5,38.9,38.8,64.9,64.9,91.1,91.1,71.3,71.2,136.4,65,64.9,116,121.7,124.6,104.6,104.3,150.9,75.6,75.3,74.8,74.8,74.7,75,76.9,84.6,84.7,84.4,129.8,51.6,104.5,103.9,849.2,26.8,89.5,84.2,38.7,34.3,25.9,26,38.4,38.4,65.1,32.7,32.5,25.9,25.8,53.1,51.3,25.8,25.7,38.9,38.9,38.8,38.7,42.5,42.6,75.3,34.8,34.6,53.4,53.8,35.1,35.5,64.9,38.5,53.1,64,44,45.9,48.4,48.6,45.2,45.4,45,45.1,51.9,52,91,25.2,52.5,39.8,37.5,91,65.4,69,38.9,39.2,84.5,84.4,166.1,2.7,168.5,84.5,84.3,65.2,65.1,65.1,32.7,32.6,64.4,32.2,32,42.4,42.2,83.3,20.1,48.8,42.5,39.1,39,78,39.1,39.1,58.9,90.2,37.1,53.1,77.4,5.1,108.4,101.8,202.3,196.3,159.5,452,214.6,306.4,297.6,354.1,189.7,176.7,95.5,148.1,67.2,53.9,78.9,51.5,39.1,78,29.5,37.3,35,48.7,41.7,43.3,127.4,63.7,63.9,63.9,64.1,70.8,35.4,35.4,84.2,84.4,53.1,53.3,52.4,52.7,67.9,68,68,68.1,100.8,98.6,200.3,200.7,50.2,50.1,50.2,50.3,49.1,49.1,50.6,51,46.1,46.3,56.7,58.3,47.3,47.4,66.1,58.1,19.7,86.6,76.6,68.5,69.1,722,16.7,175.1,95,107.1,121.7,59.8,59.8,57.4,57.7,62.8,62.8,52.6,52.6,52.8,52.7,57.9,57.9,58.2,58.3,42.5,42.6,51.3,51.4,40.2,40.2,40.6,41,44.5,45,90.5,89,44.8,44.2,409.3,131.5,29.6,80.8,81,106.1,106.4,106,106.4,67.8,68,61.6,61.8,55.4,55.6,89.2,88.6,92,93,121.7,118.4,115.6,105.9,116.8,58,8.7,1.4,48.3,100.1,50.5,1.3,49,201.8,199.6,0.9,202,245.7,58.2,1.1,61.7,62.8,67,19.2,291.9,0.8,99.8,41.9,41.9,41.3,41.6,38,38,38.2,35.6,78.9,39.9,38.7,42.8,44.3,63.5,31.9,32.4,66.7,66.6,60.6,42.5,56.8,28.6,28.6,39.4,39.7,44.6,45,89.8,57.6,57.8,58.2,65.7,15.8,65.9,75.3,146.9,33.8,272,577.7,119,54.6,54.6,55.1,55.3,55.2,27.7,27.7,52.3,43.2,9.1,28.7,28.6,57.8,50.8,51,29,28.9,28.7,28.8,58.8,58.4,42.5,81.1,33.1,32.9,32.8,26,7.1,65.9,33.5,33.5,35,35.4,41.4,58.8,59,66.5,66.6,158,79,79.1,59.8,59.3,62.2,61.9,32.4,32.4,32.4,32.4,70.2,35.1,35,38.9,39,61.9,77.5,48.6,48.3,42.3,42.4,77.1,77.5,126.9,70.1,70.9,72.8,36.1,36.5,74.7,74.6,98.4,101.5,93.2,46.6,46.5,141.9,148.5,143.5,71.8,71.8,60.5,60.7,81.7,41,40.9,147.2,68.9,69.5,8.7,27.3,142.4,45.8,72.3,82,82.1,43.3,43.6,98.2,112.1,56.5,79.9,51,51,76,76.3,44.8,45,91.3,178.8,264.1,94.2,50.7,50.8,256.1,259.8,54.2,54.9,35.7,35.6,35.8,35.9,34.1,34.5,68.7,41.8,42,40.7,41.4,30.4,24.6,25.4,51.7,48.2,48.6,53,39.5,40.4,33.2,33.7,35.8,35.6,851.1,95.8,50.8,50.6,56,56.9,48.6,2.9,52,56.8,56.9,46.8,5.4,52.2,32.1,32.4,64.3,50.6,50.8,50.4,50.4,78.8,79,67.6,68,257.9,8.6,61.6,61.7,58.5,58.8,35.9,37.5,74.6,59.4,59.6,55.8,56.2,55.4,39.3,16,37.7,5.4,170.5,81.2,73.8,56.7,285.8,13.7,52.9,53,55,54.4,48.3,47.8,53.1,52.8,67,65.1,36.3,36.8,72.6,69.2,66.5,80.9,80.8,39.3,39.8,38.7,39.5,57.4,57.7,56.5,56.9,58.9,59.2,59,59.8,441.1,220.4,55.5,55.1,55.2,55.4,49.9,49.4,99.6,199.9,396.8,24.3,69.3,33.5,33.7,140.1,49.5,56.4,30.1,28.2,57.5,54.3,54.2,48.8,55.9,61,54.8,52.9,54.3,27.6,27.5,55.2,55.5,26.8,27.2,53.1,27.4,27.1,51.6,55.7,105.5,106,320.9,159.4,160.1,187,39.7,39.8,41,62.3,82.2,93,42.5,42.2,43.1,42.8,49.7,48.9,53.1,5.1,59.2,61.2,61.6,70.9,67.7,62.1,65.4,66.2,78,94.4,83.6,25.8,240.5,112.2,52.5,52.5,43.3,35.6,38.7,38.5,74.3,67.9,40.7,39.6,19.8,19.9,35.4,39.2,40.3,39.7,39.9,53.4,55.1,52,52.3,31.9,31.6,61.5,62.9,31.9,31.3,104,12.2,44.8,57.5,56.1,55.8,59.7,59.4,68,34.4,34.1,51,50.8,101.4,186.1,550.8,550.6,95.3,47.4,47.2,45.2,45.6,45.4,45.2,62.5,62.8,109.4,54.7,54.5,113,28.5,28.1,56.6,59.2,59.5,58.5,59,39.1,88.2,89.1,47.8,48.1,49,48.9,46,46.7,46.4,46.5,44.9,44.3,44.5,43.9,89.5,44.2,43.8,32.2,78.2,36.6,23.7,51.6,50.5,46.5,41.8,46.5,46.4,148.8,302.2,70.4,37.9,38.1,55.3,55.5,39.7,39.7,38.1,38.3,43.2,43.5,77.8,40.3,40.7,40.8,39.2,38.3,38.3,79.8,260,129,37.3,92.8,59.4,59.8,35,34.9,71.9,55,53.4,68.6,33.5,33.6,50.2,50.3,50.6,48.8,3.3,39.6,53.1,48.1,44.8,68.5,68.3,129.6,96.6,51.7,75.3,48.9,278.3,112.8,197.3,96.3,101.8,3.5,8.9,1.1,58.2,62.4,124.5,127.8,59.9,57.7,51.8,44.2,37.8,31.4,28.8,38,60.1,49,45.1,57.5,53,53.4,51.1,64.5,50.4,40.8,63.1,54,52.7,32.5,28.5,1.7,71.7,76.4,45.7,36.6,50.8,46.9,69.7,47.3,44.6,51.1,51.6,63.8,65.1,39.7,43.2,41.6,35.8,60.8,63,38.5,39.4,32,29.9,59.7,63.6,54.2,43.4,49.9,44.9,77.5,30.1,45,9.5,44.9,61.8,51.7,75.5,49.5,65,41,45.8,9.2,58.7,49.9,73.9,0.9,146.4,2.8,77.4,75.3,39.3,25.6,25.6,25.6,25.6,50.8,51.1,39.5,20.1,5.6,25.8,28.9,28.8,42.9,42.8,45.7,30.8,30.6,43.8,43.5,56.1,72.6,57.6,50,49.2,50,145.3,67.2,62,41.3,39.9,39.5,39.4,68.2,36.7,37,38.6,38.4,38.6,38.2,40.3,24.5,24.3,48.2,48.2,102.9,51.4,51.5,205.6,200.3,65,27.2,35.9,25.9,16.9,34.7,43.3,28.9,81.6,32.3,32.3,34.8,34.8,45.9,45.6,51.3,51.1,103.1,32.6,44.8,60.5,108.7,45.9,112.7,58.4,45.9,51.1,51.6,76.8,52,51.5,51.3,95.4,36.4,176.5,61.9,61.8,129.4,38.2,38,90.8,76.5,46.8,46.5,74.7,34,33.7,93.7,92.8,184.6,107.5,107.1,78.2,78.5,78.3,78.6,40.8,40.5,40.7,40.3,81.3,81.6,35.1,34.7,70.8,41.1,40.8,82.9,79.2,39.1,39.5,39.8,40.2,39.4,40.2,41.3,40.8,42.1,41.9,39.4,39.7,39.6,40.7,56.3,54.9,53.8,25.4,26.5,54.6,53.2,99.7,66.9,69.1,45.7,90.5,289.7,137.2,64.3,62.8,143.7,147.9,142,142.2,43.6,43.6,85.3,218.7,68.1,57.9,38.2,0.5,54.9,47.3,28.9,21.5,46.8,29,29,32.4,27.7,30.7,30.7,50.7,16.2,24.2,23.4,18.6,47.5,25,24.9,41.9,31.2,31.2,50.5,25.2,37.1,30.8,60.8,36.4,24.5,14,27.2,36.8,37.6,25.2,25.9,26.5,25,25.4,24.3,24.8,25.4,28.7,35,39.3,38.7,25.4,27.1,25.6,25.6,38,38.1,38,51,163.8,62.1,64.3,63.3,31.9,31.7,36.8,26.4,18.4,18.4,28.6,23.9,24.9,39.2,28.6,27.8,26,26.9,25.7,25.9,26,25.9,25.8,26.3,25.6,50.2,25.4,38.7,47.4,32.3,32.8,29.7,28.2,13.9,41.8,89.7,256.8,25.5,303.2,63.8,64,329.6,57.4,57.4,51.1,50.8,51.7,51.7,51,51.9,51.4,51.5,103.1,108.5,206.6,38.6,38.5,25.8,25.8,26,25.5,26.1,25.9,19,19.6,38.3,20.8,20.5,20.8,20.6,39.8,40.2,39.1,38.9,25.8,25.6,25.8,25.8,26.4,37,19.7,19.4,19.5,19.3,38.5,34.2,38.2,38.1,37.3,37.3,35.9,36.3,39.6,39.6,45.2,39.5,90.3,96.9,192.8,175.7,55.7,40.6,37.8,25.1,25.1,50.8,51.6,51.1,43.9,52.7,52.7,46.1,46.9,44,44.1,49.9,49.2,25.7,25.6,41.1,24.6,24.5,40.5,63,37.2,19.1,18.3,52.7,38.1,38.1,46.2,37.9,20.7,42.6,38.2,26.6,23.6,39.1,38.5,38.2,38.2,50,38.7,38.6,38,38.3,34.1,36.5,38.4,39.1,38,38.1,39,37.7,38.5,25.8,25.9,37.2,25.5,25.5,38.7,25.3,25.5,38.5,38.8,44.8,26.7,25,24.4,50.4,37.2,25.3,25.2,22.4,22.5,37,37.4,25.5,25.3,48.5,51.3,1194.6,26.4,614,357.8,196.1,51.2,51.2,39.8,40.1,58.6,58.3,53.3,53.2,51.2,51.2,81.8,28,27.9,26.2,17.9,45.1,45.5,38.2,24.2,32.6,32.9,65.7,39.7,38.7,76.5,38.8,34.2,37.5,29.1,64.7,50.4,50.5,26.8,66.4,39.1,39.1,100.9,548.7,223.5,117,51.5,52.8,77.8,26,26,39,52.9,78.5,78.7,52.6,52.3,51,52.5,52.4,76.9,47.9,91.9,38.8,29.4,37.5,37.7,39.2,39,81,75.9,65.7,39.6,39.6,77.5,78,38.5,44.6,76.6,76.2,243.2,117.8,52.5,66.1,39.4,39.2,39.6,39.4,39.1,38.9,78.1,73.8,77.9,39.2,39.2,39.9,40.2,39.4,39.4,79.1,38.8,38.7,77.4,111.1,111.1,217.1,447.2,110.8,105.3,53.3,52.9,105.4,65.2,52.5,104.6,267.2,18.6,18.7,211.3,103.6,130.1,104.3,50.7,26,51.7,51.9,38.7,38.5,51.1,26.3,26.3,49.5,23.2,23.2,32.4,32.2,38.9,38.9,52.6,39.4,38,52.4,26.1,26.1,36.3,69.4,37,51.1,38.4,39.3,38.9,39,42.4,42,49.8,51.4,90.8,49,49.3,80.1,59,59.3,103.5,24.4,25.3,50.1,111.1,207.9,206,37.3,37.7,26.3,26.1,26.2,51.5,51.7,102,63.9,64,77.4,50,64,32,32.1,63.7,63.8,52.2,40.6,40.3,57.7,66.9,24.9,31.2,70.1,52.5,65.8,59.9,56.7,54.6,27.6,18.2,49.7,40.6,50.2,40.2,40.1,42.1,44,26.2,26.1,50.9,50.8,127.1,127.2,122,51,63.2,51.5,27.3,27.2,58.6,58.5,51.7,51.9,77.6,52.9,109.9,52.1,53.2,51.3,52.9,73,2.9,44.2,50.5,51.2,51,52,263.5,201.1,0.8,35.5,44.4,78.2,0.8,22.3,433.8,135.3,128.4,80.3,52.2,54.1,75.9,52.3,52.1,52.1,52.1,52.3,52.4,78.1,39,38.9,77.6,77.6,52.5,77.7,128,2.9,1976.5,100.8,54,53.6,39.3,39.3,77.7,77.9,38.6,38.7,143,71.8,71.6,52.7,52,52.1,77.4,40.1,64.8,25.7,27,26.5,37.5,51.9,52.6,32.7,32.1,53.4,278,30.8,120.1,275.1,49.6,270.9,7.2,8.8,26.4,39.3,21.3,21.1,48.9,39.3,38.9,38.6,38.6,52.9,25.8,39.3,39.3,27.2,38.8,52.1,77.8,156.7,156.5,164.5,119.8,95.2,45.2,103.7,79.4,38.4,38.3,77.9,78.6,40.7,40.7,46.2,45.8,78.6,38.3,38.5,78.5,39.1,39.1,39.2,39.3,77.3,38,38.1,77.5,38.4,28.7,66.2,45.5,20.6,89.2,69.8,124,309,114.1,101.8,102.8,82.3,41,41.4,51.9,51.6,129.1,38.6,38.5,64.3,25.9,25.8,63.5,32.8,32.6,76.9,38.6,38.6,37.9,37.8,51.8,51,50.9,38.7,38.5,13.7,64,90.1,76.5,38.5,38.5,39,38.6,65.1,76.3,90.8,39.8,39.4,39.1,38.8,52.3,51.9,103.4,208.1,266.6,78.3,92,34.7,105.9,105.4,76.4,89.2,39.3,50.3,86.3,35.8,48.1,24.1,24.1,39.2,25.6,25.6,40.1,50.9,62.3,47.3,58.2,25.9,26.1,10.7,0.6,40.6,52.3,25.5,25.2,33.9,39,38.4,0.9,38.9,77.7,28.7,36.8,40.3,39.4,75.4,129.6,119.6,122.9,59.3,29,29,38.1,38.6,25.9,25.8,39.3,25.5,25.8,25.7,25.9,25.8,38.5,39.2,25.6,25.4,39,38.8,26.3,26,37.9,39.7,39.2,39.3,38.8,39.7,39.7,39.1,26.3,26.4,25.9,25.8,26.2,26,26.1,26,52.4,25.6,62.9,38.8,30,29.4,29.3,32.2,38.1,39.1,39.2,39.5,39.4,39.4,39.2,25.8,37.1,38.9,26.2,25.9,39.8,22.4,22.1,30.1,29.8,65.7,63.9,58.9,128.2,121,253.2,59.8,60.2,66,31.8,31.9,43.4,34.9,39.2,38,37.2,37.2,35.6,36.4,37.3,38.3,36.2,36.6,41,41.6,20.6,20.6,38.8,18.9,19.2,25.1,37.6,73.7,23.4,24.3,49.6,67.5,54.1,38,19.9,19.7,27.5,38,35.9,10,26.1,39.6,39.5,39,38.2,62.5,51.5,52.7,195.3,207.6,411.1,404.5,206.4,81,25.3,98.7,39.8,41.5,78.6,52.1,23.3,23.6,38.6,38.5,43.3,26.3,26.1,51.8,46,41.3,25.9,25.7,43.9,26.1,24.9,40.4,23.3,23.2,44.7,44.9,40.4,38.7,39.6,39.5,38.8,50.7,40,43.9,46.9,48.6,26.1,26.2,32.2,32,33.6,33.4,27.5,24.8,39.8,37.4,66,53.6,53.4,103.5,128.4,235.3,128.3,75.2,72.8,39.2,43.2,79.8,65.4,61.5,102.2,32.2,32.1,52.7,13.9,64,32.4,32.4,37.8,52.3,38.7,39.9,50.3,39.4,25.9,25.8,52.3,89.7,90.3,83.9,41.8,41.9,169.2,55,45.5,19.5,14.9,22.6,42.3,25.7,24.7,84.8,53.5,55,52.1,53.1,99.8,51.6,41.1,114.7,43.4,48.7,88.2,93.4,70.3,89.2,66.1,65.5,108.9,197.2,203.5,190.2,220,1246.1,13,200.8,199.5,98.8,99.6,68.9,129.9,112.7,87.3,62,136.9,121.7,115.3,71.1,70.4,108.8,57.2,56,56.6,49.7,89.7,72.8,11.8,163,162.4,181.1,130.9,127.8,112.9,79.7,45.3,27.4,107.5,2,48.3,43,34,37.5,43.5,52.6,47.2,51.2,55.1,16.2,44,49.8,4.4,103,108.3,71.8,74.8,80.4,48.5,35.5,33.4,86.3,88.5,26,59.7,54.1,81.3,67.1,48.2,73.9,57.1,51.8,67.4,24.7,28.1,404.6,76.5,80.8,80.6,85.2,52.8,112.3,65.7,96.7,70,53.9,43.6,119.9,47.9,99.4,98,50,50,100.1,81,84.9,68.1,73.7,68.9,78.7,59.7,81.8,70.1,35.5,294,41.9,68.2,45.8,56.3,124.5,167.8,103.5,73.5,80.6,81.6,144.1,149.1,107.4,60.3,41.2,56.7,100.9,98.1,100.7,185.7,67.9,67.7,62.3,51.9,39.6,33.5,90.9,98.8,100.2,73.9,25.5,64.6,93.5,93.8,160.2,199,39.7,155.8,70.7,68.2,60.8,73.6,80.6,73.7,72.5,150,76.7,72.1,58.4,65.2,78.1,99.8,81.8,116.4,118.1,61.4,70.7,103.4,36.6,135.8,88.5,73.8,121.1,77.4,104.3,104.6,22.5,184,77.5,35.1,137,51.8,100.4,99.7,160,540.4,79.4,103.3,85.1,92,109,63.9,67.6,70.5,29.7,37.8,65,64.1,91.2,40.3,50.3,50.3,39.5,61.8,18.1,36.7,44.1,55.5,41.9,158.5,159.1,143.1,45.6,109.2,118.2,136.4,411.2,315.3,159.6,170.9,148.5,149.1,157.4,157.4,161.1,38.9,63.6,61.1,1.3,136.6,99.7,100.1,100.4,100.2,99.8,100.7,99.6,99.3,100.8,200.2,99.8,99.8,99.4,101.1,99.8,47.7,52.1,49.7,218.8,150.3,154.5,160.5,187.8,158.9,156.9,149.5,150.3,139.3,159.4,146.3,146,145.1,728.6,162.4,146,140.2,139.9,171.2,163.4,721.5,193,203.1,129.7,2.9,141.4,145.1,134.8,152.9,156.3,155.9,158.5,516.9,408.9,283.9,741.9,78.9,283.6,186.7,168.8,165.6,38.6,136.2,162.1,168.8,162.4,163.4,173.1,162.8,569.8,180.4,191.3,160.5,164.9,173.4,144.4,143.1,146.6,71.2,73.5,74.9,77,140.7,134.7,34.8,1485.8,175.5,180.4,181.5,230.1,156.6,140.5,1000.3,149.2,145.5,140.8,140.1,145.7,146.7,131.9,173.9,166.9,378.2,71.4,97.5,122.9,147.9,138.3,111.7,25.2,138.2,136.5,124.4,130,284.5,140.7,145,129,133.6,120.7,137.4,127.2,134.8,117.7,341.9,112.9,110.1,108.6,112.8,139.4,149.6,147.1,130.8,597.7,217.1,166.4,190.9,118.2,131.1,198.4,213.5,155.1,151.3,174,408.1,248.8,361.3,349.2,32.2,236.8,35.5,108.6,112,34.5,173,14.3,772.1,135.4,134.1,109.4,13.8,79.6,102.1,113.8,99.2,108.5,80.4,75,84,80,85.7,117.1,97.9,123.1,480.7,108.7,81.1,85.9,101,65.5,72.6,31.2,111,83.9,95,44.2,46.3,44.6,45.6,77.5,52.1,51,100.7,101.3,88.4,127.3,242.8,91,91,115,66.2,103.5,146.1,107,89.1,105.2,98.3,108.7,124.3,108.5,98.8,108.5,144.3,90.2,80,102.9,133.6,280.7,24.5,29.7,80.8,803.9,172.7,212.5,55.9,124.9,116.3,126.5,112.7,126.2,113.5,120.7,108.3,90.4,137.3,88.6,98,90.9,102.4,103.9,117.3,96.1,92.6,114.3,13.1,134.6,83.8,300.9,234,180.6,59,57.8,125.3,132.1,98.2,95.2,100.4,110.5,124.2,134.1,440.5,163.8,172.6,112.6,24.6,32.9,184,131.3,134.2,196.6,251.1,126.6,52.4,72.3,59.4,102.8,82.1,62.7,68.1,63.3,68.9,51.1,59,15.9,63.7,60.2,54.4,48.4,51.3,40.3,6.2,48.3,65.7,48.6,50.4,99.1,99.7,94.8,136.9,146.5,84.1,105.2,100.4,75.5,65.2,73.4,46.2,28.5,78.8,72.5,80.2,78.4,66.7,89.6,53,79,76.9,65.4,53.9,50.3,48.3,54.9,104.3,104.8,105.8,116.2,50.4,170.3,107.1,114.3,90,84,84.6,89.7,79,42.3,50.3,56,54.4,41.9,45.4,36.9,35.2,71.5,45.9,40.1,102,143,141.3,84.1,109,54.3,44.1,76.9,51.5,52,54.6,56,36.1,39.7,48.9,40.8,48.8,45.8,49.1,66.7,27.1,51.2,56.1,37.7,38.6,42.3,63.4,53,52.3,115.7,51.9,128.4,50.2,160.7,52.9,51.3,107.3,53.5,52.5,53.3,65.1,53.1,51.3,53.2,64.4,78.8,52.2,53.2,58,60.5,71.6,76.8,55.3,0.1,150.5,91.2,66.4,64,75.6,68.9,73.7,75.2,38.1,62.7,64.2,45.5,42.6,84.2,57.7,57.9,52.6,59.2,71.8,113.7,76.1,59.2,31.9,24.4,0.2,52.9,79.9,128.6,214.8,74.6,30.1,63.8,141.1,152.7,122.5,92.6,84.7,77.3,131.6,130.7,151.1,152,216.6,104,77.1,74.8,47.8,46.8,44.1,67.7,103.7,111.1,136.4,151.7,171.9,211.5,211.6,165.2,184.5,48,86,150.1,71.9,123.6,130.9,30.9,428.5,98.3,69.6,74.4,25.4,9.4,58,59.4,6.9,43.5,40.3,59.8,70.4,2.7,134.9,144.5,91,51.3,92.1,117.1,222.8,1,362.5,376.6,310.3,158.6,52.5,92.2,159,206.7,201.5,96,452.1,234.6,142.1,141.8,153.9,130.6,139.4,115.2,67.9,146.4,151.1,529.1,310,73.7,66.5,163.9,147.9,106.3,62.3,124.7,109.2,47.2,129,128.4,141.1,115.8,128.5,138.3,139.5,147.3,141.5,147.9,131.6,143.6,257.1,238.6,270.2,136.1,156.3,157.6,130,149.2,67,73.9,162.5,363.4,138.8,224.2,57.8,67.4,66.2,71.7,60.3,70.5,133.8,74.1,75.9,72.8,60.1,79.5,74.4,122.3,74.9,109,31.5,93.7,74.2,85.9,208.5,175.3,203,178.5,188.8,137.3,154.1,168.6,181.5,179.4,188.5,307.1,162,60.5,56.6,105.3,102.9,6.4,150.9,99.2,8.3,71.6,106.5,105.7,90.5,90.5,74.2,115.3,28.8,194,782.4,52,705.3,269.6,212.7,205.8,198.1,503.4,1815.6,1414.3,174.1,64.4,122.6,244.3,248.7,89.5,137.6,192,868.9,235.9,211.6,227.6,211,219.7,196.1,514.3,208.5,175.2,196.8,112.1,128.9,217.6,71.7,50.8,62.9,229.5,185.5,245.7,208.4,238.7,234.1,1.5,240,325.1,301.7,1123.4,81.1,22.9,113.8,174.1,8.3,203.4,98.7,98.6,70.9,189.8,81.7,166.6,210.2,178.9,34.2,29.4,244.6,219.9,209,980.9,192.9,168.4,178.2,165.8,161.5,114.7,163.2,688.4,126,150.1,155.7,147.7,2.6,203.8,166.1,189.6,165.5,161.7,190.5,120.8,128.4,63.1,46.3,30.6,15.9,109.9,162,162.3,300.2,216.3,55.9,264.4,360.3,111,214,746.2,257.8,225.4,99.2,116.9,117.9,107.1,126.7,357.8,110.1,57.7,49.4,97.2,114.9,109.6,130.7,115.9,119.6,105,12.9,428.3,144.5,138,166.6,159.7,148.3,471.9,158.8,175.3,160.7,184.9,164.7,103.9,105.9,136.4,116.9,116.6,574.2,172.5,174.6,181.8,102.5,72.9,57.2,67.2,30.8,94.4,66.1,534.6,59.9,130.5,164,157.9,145.9,141.7,122.7,129.8,125.9,126.4,126.7,110.7,109.4,385.7,275.7,129.9,114.9,13.7,108.8,155.8,160.8,170,119.7,126.3,124.9,143.4,133.5,122.9,109.1,207.9,408.1,73.6,238.8,52,1972.9,9.9,26.6,124.5,163.9,159.7,169.8,207,469.9,173.3,155.5,179.8,152.4,163.5,171.4,155.2,171.7,338.5,12.3,153,193.1,222.8,210.1,508.8,162.6,198.9,176.4,173.6,107.5,143.9,203.9,96.2,199.4,44.6,119.2,195.8,240.7,59,57.4,156.2,369.1,881,182.8,175.8,182.4,173.6,140.5,130,123.3,140.6,132.1,103,47,189.4,194.8,197.1,61.7,173,224.6,127.7,159.2,136.3,115.8,104.2,148.2,145.5,171.3,406.3,192.5,2.6,129.9,125,116.9,124.2,117.1,109.7,121.4,126.8,114.8,122.9,64,49.9,128.2,77.4,51.4,106.9,121.9,128.3,114.8,100.8,121.6,104.2,115.7,105.4,77.5,39.7,121,89.8,95.1,93.8,102.5,177.7,6.4,46.8,133.9,184.8,182.7,341.5,8.1,163.9,132.8,107,97.2,94,89.3,72.2,76.9,128.8,92.2,22.3,99,103.6,117.2,205.3,341.9,153.4,161.3,120.6,126.9,126.4,123.7,151.2,108,133.6,121.7,331.4,448.5,160,260.1,192.5,85,84.4,192.4,290.3,564.8,302.3,278.8,163.6,161.6,161.5,463.4,462.8,39.3,200.2,62.4,172.5,19.3,78.4,69.9,82.7,168.4,95.6,7.7,9.1,262.6,195.9,503.4,170.4,149.1,96.3,138.8,247.4,74.4,140.5,49.3,59.2,56.6,71,70.8,61.9,131.4,52.1,101.6,88.3,176,181.3,362.6,180.6,184.7,57.2,72.1,74.3,94.4,105.8,105.4,51,105.7,87.9,87,97.1,101.2,31,51.7,114.8,123.2,82.7,35.1,91.9,161.6,91.1,123.4,63.7,42.7,94.9,64,32.4,94,64.2,34.1,35.1,125.2,101.5,46.4,25.5,34.8,483.2,4.5,204.1,92,100.7,57.5,61.7,106.4,91.3,139.5,318.7,268.7,267.9,117,41.3,72.3,94.7,86.4,58,42,39.4,2,21.9,1.9,16.5,51.9,85.6,63.1,64,70.1,80.9,70.9,174.4,65.9,288.6,73.4,47.4,206.6,94.2,251.6,15.4,23.3,91.2,26.5,5.2,63.1,60.6,76.6,94,315.5,164.6,336.4,213.6,145.5,292.9,99.9,89.8,77,66.6,62.2,74.3,61.7,62.9,87.2,229.5,65.8,9.2,36.4,247.7,71.8,125.1,32.1,44.9,49.7,60.6,74.5,63.5,69.6,129.6,46.5,228.4,236.1,23.2,94.6,154.3,22.9,40.2,55.7,46.2,74.2,81.5,74.7,78,57.1,289.1,104.1,234.4,106.8,65.8,47.6,99.1,33.3,33.6,58.8,30.4,30.4,32.1,32.4,27.4,31.5,30.2,18,21.8,18.4,21.6,15.6,30.8,25.2,29,28.2,15.6,15,18.8,18.9,21.3,18.9,21.7,17.6,9,9.1,12.3,14.7,13.7,13.8,18.2,17.6,31.7,53.9,75.9,26.3,34.9,33.5,31.9,46.2,45.8,45.7,5.4,44.9,35.9,64.5,73.3,100.1,15,41.1,154.7,140.9,90.2,214.6,128.7,48.5,44.7,85.1,79,84.1,65.6,73.5,58.4,55.4,126.6,142.8,10,103.6,135.8,97.5,379.2,20.7,48.9,68.2,56.9,55.6,56.4,48,50.7,71.4,78.7,103,27.8,94.3,36,46,43.4,80.6,142.2,96,73.8,46.2,62.7,21.6,47.5,47.7,45.1,56.2,58.8,76.8,63.9,65.6,59.7,65.9,74.1,64.9,42.1,68,38.3,31,35.1,49.3,43,55.9,42.7,49.3,64.7,83.5,126.7,54.6,54.1,48.6,32,22.3,50,48.1,51.6,38.5,42.3,36.9,64.7,117.4,42.2,50,54.3,37.5,45.2,44.7,53.1,43.2,147.4,56.7,41.5,67.5,32.2,31.6,52.5,36.5,32.5,46.2,57.2,35.3,49.3,49.1,23.5,32.3,36.6,35.8,34.5,30.2,56.3,35.7,42.6,36.2,57.9,45.4,52.5,38.8,46.8,61.1,17.1,41.5,44.1,7.6,47,45.7,26.2,46.2,65.9,31,26.9,28.3,35.4,53.1,34.6,46.4,13.4,56.5,47.3,32.7,5,71.6,82.9,219.9,356.3,21.3,24.5,55,23.6,24.5,24.1,24.8,7.8,16.2,24.1,49.3,23.5,62.6,38.4,38.9,33.8,65.7,86.9,110.1,9.7,121.6,33.9,78.3,82.5,58,28.9,53.8,61.9,5.6,55.4,94.3,38.8,163.4,16.5,82.7,82.7,42,107.4,232.8,317.5,41,61,37.9,51.8,65.8,38,40.6,33,48.6,63.1,63.8,71.1,56.8,74.9,72.8,121.7,61.9,40.3,113.6,24.2,303.7,83.3,92.9,72.5,58.7,1.8,51.4,71.1,84.6,103,43.6,69.3,144.7,147.2,66.7,20.9,285,307.5,72.1,36.1,58.3,59.6,99.2,136.2,169.2,105.9,132.4,72.8,41.8,104.3,53.7,53.9,106.4,12.1,40.5,256.1,66.5,75.5,170.5,115.2,81.7,81.3,54.7,48.3,75.9,56.8,55.5,93.9,37.4,34.9,40.3,69.7,56.4,42.9,83.5,94.3,98.7,296.3,89.1,157.9,67.7,65.8,53.5,27.9,21.8,18.8,12.9,29.6,11.8,6.2,20.3,25.1,17.6,12.7,12.8,15.8,19.1,18.2,1.9,23.5,22,22.3,20.5,13.4,17.7,24.9,21.4,19.9,28.1,18.3,15.1,17.4,21.4,21.1,18.8,19.4,20.7,16.7,14.9,23.6,18.5,22.9,20.9,13.4,22.8,15.9,63.5,38,18.5,22.1,17.9,26.9,64.6,65.4,40,114.7,172.9,117.7,129,252.2,366.3,228.8,247.3,35,95.3,169.7,196.5,197.2,88.7,193,195.7,157.1,158,105.8,96.4,167.2,33.6,76.9,188.5,103.2,130.1,177.7,387.1,317.9,292.8,44.6,185.4,202.1,168.1,8.3,52.1,8,5,857.2,76.3,103.2,20.9,31.5,130.1,3,158,103.8,15.2,88.2,106.2,171.8,62.8,121.6,22.1,64.6,76.9,116.6,160.5,177.5,79.3,1.3,49.4,263.4,305.9,573.4,315.6,191.3,72,96.3,117.9,138.9,8.7,163,194,204.9,612.3,420.6,5,1.7,5,277.9,183,330.9,223.7,321.7,274.3,7,118.7,191,185.3,150.8,121.9,162.1,153.4,136.4,202.9,194.7,117.7,147.8,284.8,120.8,313.8,262.9,141.1,0.5,447.4,178,9.9,75.8,75.4,16.2,222.8,88.5,84.7,256.3,400,21.8,271.2,206.3,303.2,256,205.4,152,109.5,113.1,77.9,79.2,90.4,171.9,224.6,156.6,74.3,78.5,61.9,107.5,118.8,122.2,159.4,167.2,129.3,133.6,156.2,519.5,266.8,366.5,218.3,251.4,155,155.5,46.1,43.7,97.9,195.9,362.7,90.6,89.2,88.3,92.1,246.8,116,119.5,107,67.7,39.2,8.9,86.2,63.5,73.9,42.8,105.2,75.2,27.3,90.6,104.8,102.6,91.3,168.6,100,101.7,162.8,142.8,149.8,56.5,66.5,81.8,204.9,590.9,209.9,1.2,142,278.9,212.2,243.7,234.2,254.3,249.3,159.3,153.4,336.9,291.8,384.8,334.4,317.7,190.3,70.2,221.5,199.2,190.6,187.8,227.8,109.9,110.9,99.7,369.8,230.8,252.3,138.6,106.4,348.2,122.7,525.5,245.2,220.9,282.1,110,96.9,71.4,210.7,86.2,95.3,192.1,203.2,265.4,118.9,62.9,119,294.2,126.9,164,45.8,268.5,296.5,370.5,336.2,357.2,343.6,283.5,1233.7,757.4,9.1,381.5,202,264.6,182.5,179.2,118.2,106.7,228.1,194.8,189.7,167.5,38.5,123.5,117.2,194.5,605.9,1573.9,106.6,86.3,115.7,38.5,40,52.9,54.9,229.3,142.6,215.3,262.5,179.9,178.8,181,82.3,36.9,29.8,29,38.6,37.8,77.9,38.2,89.6,146.8,89.4,96.1,142.6,48.1,326.4,413.4,167.5,141.7,133,164,245.4,220.4,1824.9,480.4,29.8,140.6,678.2,473.9,193.8,104.3,93.3,121.4,81.5,81.1,139,119.3,7.3,78,188.7,138.9,107,272.2,298,1.6,916.4,192.7,201,82,83,51.5,55.1,104.5,109.2,56.7,52.5,45.1,49.2,73.7,61.1,60,28.6,98,98.2,116.1,80.1,69.9,69.8,89.1,90.5,194.1,85.2,84.1,83.3,80.7,87.4,84.5,154.2,5807.7,20.6,75.7,668.9,71.3,733.3,1382,61,79.3,108.7,87.5,87.1,85.8,75.4,118.1,171.4,167.2,88.5,84.6,83.2,92.5,121.5,76.1,30.3,84,80.3,45.7,104.6,83.6,17.5,234.4,7.1,212,91.3,389.3,85.8,82.6,108.3,199.8,29.4,90.3,297.9,301.5,466.3,470.2,280.7,554.9,491.4,142.1,231.2,698.6,953,63.4,154.8,909.9,55.9,120.4,81.5,35.3,39.3,49.6,51.3,56,71.7,109,89.4,79.4,51.5,66.8,73.4,73.9,80.5,43,91.7,177.4,104.3,42.3,42.5,96.6,55.5,81.9,82,164.5,122.9,118.5,46.9,55.2,68.1,98.9,98.2,201.2,629.5,1286.5,966.1,1103.9,807.3,5.8,413.5,1.9,463.1,54.7,544.2,163.5,143.5,123.2,100.3,148,667.9,165.7,175.4,418.3,114.5,102.6,116.6,92.9,98.9,101.2,102.1,62.3,198.6,38,89.1,221.2,445.2,407.6,244.7,224.9,145.8,123.4,123,136.9,147.6,522.8,134.4,103.9,96.1,107,116.1,117.8,125.4,123.8,134,111,100.2,95.8,113.8,843.2,2249.9,1338.8,154.1,116.9,122.5,145.1,272.6,9.7,144.1,29,23.3,118.9,27.9,48.6,75.6,79.8,124.1,85.1,78.7,73.8,76.9,144.4,68.7,6.4,622.1,122.6,100.2,81,106.8,69.6,81.1,70.2,96.2,128.6,96.2,210.9,493.3,298.2,888,78.9,865.6,219.9,1183.9,473,466.6,110,144.8,106.7,2256.9,290.8,208,166.1,143.5,144.6,145.3,143,140,213.3,87.8,125.1,86.6,79.3,47.8,46.8,47.7,48.2,81.1,80.6,81,39.5,39.1,34.4,62.1,62,65.8,30.8,9.2,7,80.7,96.5,98.4,88.3,89.7,70.4,77.4,56.1,64.1,41,47.7,94.8,59.6,36.1,81.4,172.2,427.5,152.1,134.2,120.6,117.4,123,130.5,131.7,78.5,81.1,141.2,155,180.4,413.6,413.8,1470.8,114.2,80.4,81.6,164.2,37.1,303.5,7.5,2.2,7.7,5.6,166.9,60.7,168.5,95.6,179.8,667.2,1950.3,893.2,714.3,167.3,94,114.1,109.9,78.3,107.1,111.2,170.8,156.7,67,127.4,64.4,19.4,10,118.8,94.5,43.5,85.5,109.4,65.1,76.5,76.7,105.3,49.9,49.2,41.2,47,155,106.7,72.2,68.4,65.3,133.4,132.5,153.7,237.4,295.8,2793.4,164.5,1364.9,546.5,714.1,73.7,626.1,697.7,140.4,59.1,54.9,125.7,102.6,109.1,1.5,146.8,157,74.6,101.8,104.6,250.6,109.1,121.4,205.4,278.2,213.3,327.6,243.8,242.6,279.9,114.5,132.6,107.5,113.8,116.5,124.3,166.2,273.6,221.8,104.4,107.3,111.4,122.9,280.3,203,170.2,172,364.3,170.3,185.3,87.2,82.8,85.9,102.6,88.7,105.4,101.2,108.2,179.4,195.5,192.6,183.8,106,118.9,198.8,132.3,125.8,229.3,260.8,197.2,198.8,83.5,133.5,93.6,101.2,100.4,41.4,69,47.9,46.4,53.9,58,191.1,168.7,139.2,65.5,79.8,137.7,154.7,137.7,132.4,142.8,121.3,127.6,108.1,139.2,91.4,154.1,130.7,86.1,90,138.7,68.9,77.3,157.8,149,117.8,130.7,164.9,144.6,144.5,81.1,65.8,140.4,73.9,83.1,101.6,72.7,96.5,154.5,91.9,13.6,22,197.3,118.7,497.7,197,55.9,24.9,187,13.5,78.1,35.2,139.5,36.5,99.3,90.1,134.7,209.8,206.9,90.2,106.8,37.8,50.6,1.5,97.9,165,186.7,137.6,156.4,160.1,186.7,296.1,85.2,118,82.2,82.4,74.2,89.4,78.5,101.3,48.8,58.8,75.8,88,90.2,72.4,56.7,83.3,114.9,77.3,144.7,135.2,159.6,117.1,75.1,53.4,119.2,85.6,57.8,72.3,95.7,135.9,51.9,63.4,72.8,67.2,59.2,47.5,57,59.7,70.5,2.5,49,64.1,59.3,99.7,115.4,68.1,116.7,82.9,75.4,74.3,70.4,71.9,62.1,43.2,77.8,63.1,57.6,78.5,74.2,91.9,67.3,47.3,50.9,66.2,49.1,62.7,33.2,55.6,92.7,50.3,46.8,35.1,51.5,47.6,52.2,76.9,79.3,64.8,68.1,99.9,104.7,58.4,44.1,61.5,40.8,28.7,63.5,78.1,348.3,130.5,68.1,41.2,43.7,72.2,74,119.9,63.3,54.3,45.6,54.2,57.9,38.2,50.1,126.1,104,46.1,42.3,49.3,88.7,51.7,65.2,91.2,61.1,75.5,104.3,72,68.5,75.5,87.3,112,123,114,129.2,143.1,125.3,123.7,125.9,121.2,123.5,144.5,95.9,27.7,126,136.8,128.5,137,130.8,119.7,80.1,61.6,101.6,108.5,53.5,26.5,38.7,27.4,26.4,36.5,18.5,89.4,63.8,43.8,48.9,39.3,36.6,27.8,26.5,38.4,26.2,25.6,26.4,25.2,26.2,26.4,39.8,32.3,32,39.7,39.2,51.7,38.7,39.3,38.2,26.5,38.9,39.7,25.4,25.6,31.9,33.2,39.2,39.2,39.3,35.7,39.7,63.9,66.1,24.5,26.3,32.5,34,27.6,36.7,39,39,37.6,38.9,38.6,27.7,38.8,39.6,39.3,49.5,38.1,44,40.8,34.8,24.3,3.2,9.9,29.4,17.9,19.1,38.5,26.2,28.1,25.3,25.9,38.1,107.8,105,473.9,62.4,20.7,24.9,27.7,25.1,26.5,18.5,19.9,39.2,38.9,25.7,26,26.5,30.2,21.2,19.9,47,38.2,26.7,29.8,34.1,25.5,26,38.1,29.6,75.5,16.8,23.9,24.3,24.9,19.5,20.2,28.9,29.1,27.8,29.5,33.7,30.9,34.1,35.3,27.5,24.7,26.8,34.7,95.8,13.9,50.9,39.2,25.3,33.5,32.3,26.3,25.5,25.9,25.9,23.9,24.6,27.4,24.5,26.2,26.1,31.1,17.1,82.4,51.6,39.1,40.2,37.6,91.7,93.9,93.6,38.6,85.9,65,73.2,87.4,94.8,119.8,119.5,127.4,466.1,98.9,131.1,159.1,64.7,89.8,195.8,209.8,139,58.4,63.6,49.1,39,27.6,66.6,54.1,55.7,89.1,183.1,180.5,96.4,101.7,318.6,102.2,67,67.1,64,67.4,65.8,61.1,81.8,63.7,83,78.7,84.6,169.6,93.7,87.3,77.8,74.1,67.9,171.3,109.9,102.7,91.5,2.3,58.1,71.6,81.3,81.7,100.1,87.9,66.6,75.5,64,65.2,65,65.5,74.9,85.4,63.5,15.9,62.2,23.7,47.3,33.1,10.2,46.2,42.6,71.4,163.7,72.3,111.9,44.1,49.8,73.8,75.9,82.1,148.9,8.2,146.5,42,53.4,32.7,29.6,49,64.5,64.4,81.4,77.9,83.1,102.5,78,92.8,79.9,90.4,107.8,94.5,96.7,103.7,117.5,88.2,66.2,81.2,103.8,89.4,74.2,78.5,65.2,77.7,117.8,50.8,95.8,99.8,387.9,0.9,90.5,57.9,36.5,105.4,120.5,54.4,164.2,103.6,103.3,302.3,72.3,67.1,42.9,41.8,51.6,47.8,62.4,60.1,116.6,91.9,78.5,56.6,40.3,50.9,194.1,101.5,80.6,86,83,192.1,65,63,57.5,51.5,61.3,125,134.2,76.3,53.9,55.8,112.4,72.7,98.2,62.1,66.9,83.7,119.9,93.7,91.7,101,125.7,179.5,120.9,49.2,41.9,33.8,159.7,101.5,105.8,92,117.9,105.2,92.1,72.8,68.9,60,168.1,95.1,80,73.3,58.3,115.1,261.7,90.5,247.8,199.9,119.3,118.4,117.3,107.6,89.9,106.3,137.2,129.5,237.3,92.8,86.9,84.1,36.5,75,90.1,51.5,69.1,105.7,83.2,96.3,96.8,96.5,102.6,101.6,102.9,94.1,106.9,96.5,93.9,219.2,192.8,117.1,109,110.2,129.9,122.4,159.4,179.2,209.6,230.5,277.5,130.3,36.4,55.9,142.2,186.8,169.6,79.1,62.8,146.5,58.6,77.3,78.7,70.5,119.4,110.3,104.3,102.1,128.3,180.5,117.5,93.7,99.3,99.6,85,92.1,89.5,181.5,85.4,91.9,102.8,207.6,115.6,94.8,146.6,103.6,90.5,135.7,156.5,54.3,88.2,104.8,107.5,96.9,105.2,125.6,117.4,113.4,226.8,107.6,6.7,54.5,98.8,80.7,48.4,23.6,28.5,14.5,74.7,34.6,37.1,46.8,35.3,14.3,16.6,26.6,12.3,104.3,22.1,19.2,37.8,50.1,55.6,94,26.6,38.8,45.8,36.4,50.1,53.7,1.4,47.5,37.8,51.6,22.4,41.4,37,28.4,21.2,30.9,36.6,36.1,32.1,33.2,35.5,29.7,29.1,38.2,34.9,28.2,25.4,36.6,37,37.6,18.5,28.1,39.8,38.4,35.3,22.7,22.5,27.7,21.8,24.8,34.5,36.5,23.6,30.7,25.1,29.1,29,31.4,33.6,32.8,30.8,20.2,30.4,24,29.9,29.5,28,28.3,28.6,33.1,22.3,18.4,23.1,37.1,57.9,45.9,35.6,26.5,26.7,34.4,32.2,31.8,24.5,29.3,31,25.2,29.7,29.9,32.6,18.4,29.7,23.9,29.9,30.2,30.1,27.7,35.9,29.6,24.5,31.2,31.7,32.1,28.1,38.3,37.3,32.1,34.3,38.2,32.6,26.5,22.9,32.7,33.1,22.4,32.1,30.6,31.8,33.9,37.4,29.6,26.9,28.1,31.8,28.8,18.7,21.5,29.9,19.5,24.8,20.3,23,37.1,29.8,20.8,32.9,28.2,27.6,23,4.8,17.7,31.3,29.9,14.9,19,20.1,20,17.6,26.6,21.9,24,24,21,14.3,22.9,31.1,35.3,29.1,22,13.1,16,15.7,17.2,18.1,18.9,15.8,23.7,23.8,24.3,29.9,18.3,17.4,35.6,31,53,50.6,34.2,34.1,27.3,24.7,32.3,31.8,25.4,24.8,33.2,34.8,32.1,32.8,34.2,31,37.4,50.3,32.3,7.4,38.9,43.1,18.9,12.7,37.5,27.5,5.5,30.4,50,51.2,67.4,50.8,34.4,38.8,36.7,23.6,29.2,30.7,23,28.1,31.6,35.1,31.7,34.9,34.5,35.3,47.8,87.1,34.4,33.6,37.7,30.6,33.9,34.1,30.4,20,9,27.3,33.4,5.9,22.8,53.7,13.9,31.7,1.9,59.4,61.2,17.1,69.6,61.3,71.2,44.2,42.7,27.3,57.8,43.4,31.3,42.5,38.4,35.5,30.3,26.5,22.9,19.1,29.4,19.9,22.7,15.8,6.4,24.5,25.5,21.5,19.6,19.8,24,18.4,24.1,34.9,43.1,14.4,20.8,23.1,27.5,15.9,18,18.4,18.2,20.2,17,17.2,18,24.5,20,19.8,30.6,19,20.7,24.9,27.5,17.3,16.9,25.5,36.7,22.9,23.6,26.2,25.5,31.5,19.5,21.6,19.1,26.6,17.1,25,17.5,19.5,22.5,30.7,26.3,11.3,13.8,21.6,23.6,25.7,28.7,47.6,45.3,44.9,45.3,46.6,54.7,55.4,29.4,29.2,39.8,41.1,40.4,49,47,49,52.7,55.5,58.6,57,55,39.6,50.1,39.8,43.9,36.8,18.5,30.9,28.1,42.6,31.3,36,44.3,46.5,44.3,44.1,34,46.5,57.6,40.6,10.2,23.7,62.4,35.1,20.5,27.5,33.6,39.4,33.2,43.8,34.9,35.4,42.1,31.5,34.9,35.1,25,29.2,28,20.6,19.8,37.3,36.8,32.8,10.5,44.5,42.6,17.3,31.2,25.2,26.8,46.1,46.8,59.5,37.4,50.2,47.6,64.3,63.3,68.7,52.4,15.6,41.1,24.6,24.5,24.3,29,25.2,23.7,39.4,4,25.8,28.5,29.6,23.3,24.5,23.7,26.6,15.6,6.1,19.2,54.1,58.2,68.3,12.5,67.5,59.2,53.9,46.2,54.7,50.4,63.2,52.8,63,55.2,42.3,57.6,46.7,52.6,57.8,75.8,61,65,41.5,19.8,61.5,81,44.4,63.3,41.7,41.4,126.4,46.2,99.3,74.4,125.8,113.6,118.5,84.3,65.9,75.3,69.9,93.1,70.6,36.2,100.8,80,80.2,86.3,106.3,73.1,43.3,12.3,31.4,2.6,40.6,44.4,104.1,51.8,76.2,75.4,36.1,29.9,55.2,58.4,57.3,79.9,84.9,54.4,63,54.6,115.5,73.4,74.3,1.5,71.2,85.9,77.4,153.2,111.3,77.6,38.3,34.7,67.6,16.7,159.1,106.4,126,105.6,83.4,53.1,54,128.1,8.2,33.6,92.5,67.2,56.8,51.7,53.1,91.7,52.5,45.9,51.9,41.3,36.3,53.8,67.3,52.1,27.3,34.6,31.1,66.3,50,88.1,10.7,47.2,67.2,54.7,44.4,33.1,59.3,81.4,55.5,57.4,55.4,58,77.1,69,142.6,31.5,97.7,143.6,128.3,129.7,24.8,51.9,36.9,67.7,61.5,102.1,96.8,110.4,96.6,64,59.4,62.5,75.7,48.6,12.3,67.3,72,72.2,99.9,46.1,98.1,69.7,80.2,69.9,72.3,45.7,45.3,48.3,47.5,36.1,74,81.3,88.6,105.1,74.6,145,90.5,18.1,82.4,42.8,75.4,61.9,73.6,58.3,57.1,51.6,108.8,37.1,35.9,54.3,88.5,120.6,31.4,25.4,29.5,24.8,41.3,43.8,38.8,36,35.9,32.8,108.2,110.5,66.3,58.4,65,51.4,110.4,84.9,95.3,51.2,66,57.2,54.4,53.2,27.5,43.4,49.8,65.7,63.2,41.7,20.4,76.8,31.9,9.7,75.6,50.3,50.8,64.8,38.9,33.2,35.7,33.7,33,9.4,24.2,18.9,23.5,13.8,13.8,31.1,29.6,53.7,66.9,41.3,41.2,45.4,38.8,38.5,57,43.1,28.9,23.9,30.6,22.8,32,32.9,37.6,22.3,38.3,33.9,34.8,38.5,38.2,30.4,74.3,42.7,38.6,39.4,37.3,50.3,78.2,40.5,40.1,50.3,80.5,58.7,47.6,41.4,48.3,6.4,54.8,8.9,46.8,50.1,48.7,43.5,77.2,84.8,88.4,71.7,56.5,55.2,48,47.2,67.3,68.6,63.2,64.5,66.5,69.4,42.5,60.3,75.7,98.7,77.9,75.6,78.2,61,93.6,96.9,67.4,75.2,65.3,58.3,48.5,75.3,34.1,32.4,34,42.1,31,47.6,47.4,49.4,42.9,42,37.5,34.9,34.2,30.2,31.9,41.9,40.1,64,116.9,53.2,60.3,168.4,106.1,132.9,48.3,51.4,51.8,32.7,80,83.9,75.5,109.7,3.8,67.7,74.6,53,24.3,22.8,41.1,24.6,24.9,33.5,53.8,46.5,24.5,30.7,35.3,40.7,40.8,35.9,31.6,38.8,45.7,52,42.4,34.9,34.2,31.6,40.2,40,40.2,18.3,16.9,50.5,38.3,44,4.1,43.9,49.6,100.2,149.6,89.7,88.1,118,115.2,50,38,38.9,37.9,47.8,80.9,36,39.8,45.3,109.2,43.8,37.3,35.6,29.2,39.4,43.4,41.4,26.3,32.2,42.5,27.6,37.8,38.3,65.9,43.6,7.7,45.5,34.3,9.1,40.9,50.4,29.2,31.1,19.2,51.4,32.7,31.6,31.4,38.8,50.9,37.7,38.3,35.4,39.1,35.6,39.2,33.8,48.2,24.5,22,40.7,5.6,44,60.7,66.8,54.7,35.7,85.2,86.8,12.2,33.2,43.4,32.9,28.9,69.5,18.7,46.2,51.1,75.3,51.1,8.8,24.6,26.6,15.4,14.5,28.3,32.8,27.2,30.2,27.7,32.4,25.8,42,37.3,28.4,28.6,26.6,37.7,27.9,30.2,36.7,31.5,46.6,40.2,51.8,36.1,49.1,43.7,50,68.4,32.5,42.2,39.2,44.2,32.6,37.7,35.6,41.8,29.2,22.7,36.5,15,12.8,23.2,19.1,22.6,42.2,31.7,43.4,61.1,29.6,29.9,32.2,30.2,28.8,32.2,26,88.3,27.2,20.3,43.9,41.2,41.1,39.2,55,59.3,43,37.8,40.8,41.7,43.1,54.3,42.6,54.1,49.2,68.8,55.4,56.6,25,48.2,71.8,40.6,53.6,91.8,50.1,27,35.6,48.5,126,125.2,113.4,128.8,56.2,113.8,37.2,6.6,40.6,42.3,32.8,40.8,39.5,31.6,80.6,29.6,25.4,21,43.6,27.6,33.6,35.1,44.2,42.6,34.3,40.8,40.4,39.4,42.8,49.6,53,50.5,44.3,34.5,34.2,11.7,48.8,42.2,35,53.2,36.8,43.7,41.7,33.6,11.2,5.1,24.7,26.9,55.5,40,23.1,33.5,37.7,40.3,50.3,43.5,32.9,34,47.6,38.3,37.9,63.1,57.4,7.7,40.1,17.6,22.7,4.8,73.3,33.5,32,33.8,37.4,44.6,38.5,32.8,44.1,41.5,44.4,38.6,40.4,42.6,41.6,45.3,32.2,31.6,36.5,39.4,24.6,22.1,22.7,23.8,24.8,35,27.4,25.2,33.8,21.8,16,23.8,18.6,16.2,16.6,16.5,18.7,16.4,15.5,15.6,13.5,16.9,16.1,32,34.4,27.2,30.9,19.7,21.5,17.7,13.8,16.9,18.8,17.9,19.2,14.1,18.8,21.8,16.7,17.8,16.2,15.8,16.3,16.6,20,20.2,14.8,10.2,11.9,14.1,14.1,9.8,10.4,21.2,22.5,21.7,19.3,20,15.8,19.7,15.5,18,23.5,24.1,23,15.2,12.5,16.4,21.4,14.7,18.5,17.1,18.9,15.8,17.3,18.3,23.4,23.3,26.8,30.5,25.1,24.4,13.7,30.6,16.1,21.7,24.2,21.7,18.9,22.3,27.9,29.2,24.7,15.7,16.1,17.4,12.8,15.1,16.5,16.6,18.4,19.5,23.4,25.9,24.9,22.8,18.5,18.2,17.6,18.7,20.6,17.9,19.5,14.2,16.7,17.1,18.1,7.1,30.1,53,23.3,23,15.2,96.8,36.2,26.5,37.7,33.2,26.3,36.9,34.8,26.6,34.3,20.8,28.7,15.4,41.9,24.1,23.7,21.9,21,36.3,24.8,14.9,25.5,77.3,25.6,49.7,47.3,58,46.2,39.6,58.9,46.4,39.9,32,41.7,34.5,32,32,26.6,28.4,32.3,27.3,16.6,37.8,40,38.4,29,50.8,37.8,35.8,27.4,31,26.2,33.7,28.6,32.7,32.8,44,33.6,20.1,24.9,20.1,17.9,23.1,20,16.1,22.3,27,22.8,28.9,24.2,27.6,28.6,24.9,26.2,27.4,31.7,32.7,39.5,25,28.1,22.9,34.4,30.9,27.9,32.8,25.7,18.4,29.8,34,30,26.6,25.8,23.2,25.6,24.4,32.5,23.8,33.7,23.2,17.5,18.2,38.6,52.5,43.2,30.7,30.6,32.2,51.2,31.2,25.1,33.1,31.8,32.2,32.8,29.1,31.4,25.2,23.4,17,20.4,29.4,29.8,27.4,22.4,21.3,30.7,31.5,26,28.1,25.8,21.4,24.2,34.1,19.6,27,29.2,30,34.2,29.3,20.8,22.2,22,28.3,20.7,21.3,24.4,36.3,17,14.9,16,19.7,26,20.8,33.1,29.5,27.3,27.6,40.8,30.4,27.5,23,11.1,19.7,25.3,21.4,22.6,31.6,36,34.1,25.1,27.9,29,40.6,36.7,32.7,21,81.6,69.6,46.4,40,63.1,35.2,21.8,49.6,22.5,42.5,37.5,28.6,26.5,27.4,31,26.9,11.7,32.6,34.6,33.9,25.5,22.4,32.7,42.2,48.5,46.8,71,55.8,53,9.6,27.6,19.1,44.6,58.9,16.6,10.6,33.1,54.4,53.5,54.1,37.5,72.6,200.2,115.6,128.6,75.6,16.3,32,35.4,34,29.3,35.8,48.9,63.9,27.7,29.6,24.9,24,25.7,27,26.5,30.3,36,27.5,28,23.8,27.7,26.5,33.6,27.3,33.3,26,32.7,34.9,29.9,28.7,22.6,22.2,17.7,16.9,14.6,25.9,28.1,18.1,37.4,34.6,39.3,37.9,35.2,34.9,21.6,43.7,47.8,48.7,54.3,59.1,18.7,58.8,32.1,52.6,11.8,18.9,61.4,56.6,55.5,68.1,49.7,42,44,27,30.5,68.1,29.8,49.4,19.6,27.7,38.7,76,33.1,35.5,29.4,21.5,27.4,54.3,48,35.2,30.8,23.2,58.2,48.8,48.7,34.1,45.7,27.3,36.6,35.2,59.2,43.2,56,17.9,70.5,118.1,40.6,26.8,27.2,41.2,26.6,16.3,20,16.3,25.2,24.3,26.5,23.4,23.7,20.4,18.9,21.5,31.5,30.5,28.8,31.5,29.9,31.4,25.2,18.3,44,27,26.5,30.8,55.5,44.9,45.5,27.7,36.9,44.6,45.7,37.6,38.2,39.1,34.4,30.1,21.5,32.9,34.7,34.5,43,65.1,52.8,51.3,21.6,19.4,45,23,16,44.2,44.2,21.2,25.8,52.8,30.5,30.4,23.8,16.2,15.3,22.3,29.8,19.8,25.3,48.9,57,21.7,26.7,22.4,20.3,28.5,25.3,26,18.8,28.9,29.7,30.7,66.6,32.5,27.5,33.3,37.2,26.7,37.1,45.1,47.5,47.8,53,35.5,36.8,19.6,37.1,29.2,32.4,23,39.7,36,41.7,43.8,62.5,39.8,50.2,72,38,30.5,23.8,31.2,33.6,29.3,28.8,23.7,21.9,24,20.6,26.4,33.7,34.5,30.3,25.1,23.4,23.2,21.9,21.3,21.9,29.2,21.9,21.4,25.3,26.4,25.3,30.4,36.9,24.9,29.1,26,43.2,27.7,31.9,47.9,22.9,26,28.1,9.3,6.8,16.8,13.4,15.1,8.5,8.8,20.7,34.8,26.8,22.6,19.6,23,24.4,30.5,12.3,14.5,30.1,19.2,21.1,7.2,27.5,44.9,13.5,13.4,31.5,48.7,30.2,33.8,42.7,52.6,58.8,46.1,70,63.5,33.2,41.5,26.1,30.8,46,37.6,38.1,79.1,50.7,33.4,45.2,32.8,23.1,33.9,34.9,33.6,42.6,22.8,26.9,27.3,23.6,30.7,31.1,31.6,14.4,11.8,23.4,29.6,22.2,37.4,14.5,27.1,36.3,28,32.4,40.5,33.8,23.7,24.2,23.4,18.2,18.7,23,62.1,44.3,31.8,22.5,25.9,21.3,29,37.3,44.1,44.8,22,42.9,30.8,27.9,6.4,33.9,46.5,5.6,49.2,24.5,23.7,22.4,21.6,27.7,26.3,24.8,15.5,25.9,21.6,21.6,17.7,23.5,21.2,26.3,27,26.5,48.5,25.1,21.7,15.5,15.3,16.5,18.6,26.6,15.9,6.5,16.7,20.1,12.8,15.2,23.9,23.6,27.8,40.3,37.8,27.1,20.7,15.3,17.2,11.9,15.8,40.6,50.1,44.3,52.5,42.5,28.1,26.1,29,29.1,31.5,32.3,35.1,32.8,41.3,30,31.8,22.9,20.7,27.4,13.4,16.5,30.7,24.3,30.3,39.8,30.7,32.9,33.3,25.2,30.5,16.4,11.2,23.8,25.4,34.8,30.5,33.6,33.9,33.4,31.7,37,27.2,30.4,50.9,44.6,29.6,28.6,32.6,34.2,17.7,17.6,37.8,38.9,29.3,13.1,21.3,27.8,27.4,13.4,23.7,26.1,20.2,16,21,25.2,26.9,20.7,24.4,23.2,29.3,32.2,21,23.6,26.1,19.4,20.2,70.9,35.9,38.7,50.1,34.6,33.9,28.8,30.6,31.6,33.3,24.8,23.6,22.5,35,32.1,32.8,29,33.1,38.4,33.5,52.5,28.4,32.5,29.1,70.3,32.2,31.9,32.3,44.1,44.2,90.2,60.2,59.9,59.1,59.9,66.2,52.5,148.3,371.6,179.4,170.5,53.8,163.4,20.9,2382.5,71.7,41.5,45.1,52.3,60,79.4,75.6,187,336.5,526.6,97.2,89.5,66.9,68.3,106.9,105.7,52.2,52.1,36.7,37.3,75.7,39,41.6,20.9,22.8,28.1,18.2,40.7,40.7,16.3,27,92.5,69.4,68.9,46.3,46.2,55.9,54,74,74.2,74.8,74.3,161,107.4,143.6,149.3,131,563.8,143.9,119.7,118.1,123.9,44.4,47.4,40.1,86.3,86.3,44,40.9,88.4,103.4,10.3,39.9,50.7,46.1,44.6,43.4,43.9,43.4,43.7,71.3,72.7,50.5,50.8,100.9,45.2,45.2,43.4,45.1,79.2,80.9,96.6,10.5,72.9,10.4,63.8,9.6,48.3,6.3,60.9,63.4,64.3,62.6,26,36.6,19.9,49.7,64,64.8,59.9,65.5,67.3,24.7,44.2,65.1,111.5,116.3,5.8,56.8,25.4,87.6,89.1,65.3,111.2,34.7,39.9,42.1,24.4,48.5,67.7,68.8,56.5,890.9,46,50.8,29.8,19.8,59.4,50.6,25.1,19.1,70.5,26.2,42.2,35.6,40.5,38.1,48.6,60.6,85.2,62.8,47,44,50.8,35.4,50.7,51.3,44.9,55.7,50.2,48.9,1.8,42.4,35.6,38.1,69.6,69.8,190,148.2,70.8,74.8,66.8,98.4,70.2,52.9,54.3,98,244.3,104.5,96.6,87.3,103.7,75,82.6,68.7,48.6,103.2,149.5,130.1,58.8,56.3,43.3,63,123.7,80.9,87.9,175.9,73.7,42.3,45,43.4,51,50.9,51.1,45.3,79,47.5,91.2,50.7,49.1,47.5,29.1,36.4,39.1,7.1,46.9,54.8,68.9,85.1,23.4,45.7,46,63.3,66.5,30.2,44.7,37.3,50.7,44.9,57.8,109.6,88.7,68.6,85.9,32,34.7,53.7,35.5,22,17.8,30,37.9,67.2,29.9,39.2,39,32.3,34.5,20.9,13.1,21.3,14,150.8,43.8,46.8,9.2,37,46.1,104,35.3,33.6,41.2,34.1,39.4,43.6,31.1,45.5,43.4,136.6,49.6,46.4,25.1,35.3,30.8,15.9,33.3,33.8,34.6,28.4,78.8,150.2,107.7,52,73.7,60.7,53,73.1,32.1,10.5,22.9,49.2,29,32.7,39,34.6,29.8,54.8,33.5,35.5,31.2,37,46.9,41.2,33,32.4,71.6,32,47.4,49.7,55.3,60.8,43.8,46.5,51.7,56.4,52.7,33.3,29.4,38.3,32.6,33.9,31.4,35.1,47.7,29.4,27.9,27.6,37.2,30,29,50.2,32.9,41.7,43.4,33.9,34.2,47.2,61.7,194.3,59,55.3,34.3,52.7,65.1,52.7,66.2,36.9,45,74.2,67.2,56.5,99.9,196,113.2,113.3,69.1,55.5,61.3,40.3,17.1,25.3,72.2,53.6,51.8,37.6,45.4,42,45.8,63.3,48.6,50.5,101.1,98.5,101.6,67,70.4,63.3,26.3,31.1,38.4,43.3,57.4,94,78.5,80.4,76,87.3,61.8,129.2,102.9,86.5,50.9,61.5,43.1,62.2,98.2,1922,229,224.5,100.4,83.9,68.8,113.5,107.2,56.9,99.2,60.3,67.5,57,64.8,257,55.3,51.4,42.5,46.2,34,53.8,79.6,25.9,45.1,40.9,40.8,36.5,22.9,59.2,56.4,118.4,79.6,86.8,74.3,73.6,55,61.1,47.7,52.9,69.8,77.5,81.7,68.7,31.7,35.5,63.7,82.9,62,31.1,92.8,106.2,1.6,17.4,341.3,160,162.2,136.8,149.6,246.4,195.4,198.3,92,51.3,66.2,44.4,42.6,87.1,51.8,52.6,49.3,48.1,93.4,1.9,41.8,71.8,29.5,90.1,66.1,67.2,44.3,47.6,64,43.2,42.9,41.2,86.3,64.4,38.1,41.7,78.2,52.6,51.6,204.1,87.3,99.7,119.5,104,7.1,182.6,111.3,92.6,154.1,100.1,99.4,127.7,147.4,101.1,106.5,96.1,97.5,104.5,72.8,84.1,92.1,80.9,129.1,155.5,122.9,208.4,70.9,70.2,76.5,79.5,72.4,42.7,66.4,78.7,67.8,104.3,105.3,96,31.5,69.1,56.6,7.8,8.7,75.6,69.9,60.1,36.6,53.2,27.2,8.8,33.3,41,45.2,46,49.3,42.8,49.3,223.6,61.5,26.1,104.4,54.2,92.2,49.6,40.7,36,32.6,25.8,40.5,20.7,26.8,37.9,47.5,30,15.4,29,30.8,24.1,20.7,23.7,6.1,12.6,21.6,27.7,25.6,22.6,18.3,21.3,25.8,21.9,18.5,14.9,18,24.9,27.7,18,22.5,17.8,18.1,19.2,18.6,16.5,18.8,28.3,42.6,20.4,18.3,18.7,18,18.6,24.2,23.4,88.7,84.7,39.4,48.5,112.9,165.8,214.3,62.9,37.3,118,115.1,81.2,84.7,114.3,117.3,86.9,47.8,25.6,46.1,72.9,15.3,39.2,44.6,94.5,92.1,115.9,110.7,17,20,32.5,69.9,8,14.7,12.7,11.7,9.1,16.9,44.1,15.1,6.6,8.6,10.7,12.3,34,11.7,13.3,16.3,17.3,31.9,52.9,78,84.9,23.4,54.4,65.1,87,68.5,40.7,46,71.2,73.2,69.6,63.2,79.8,14.5,101.7,52.3,69.6,68.2,74.1,58.3,70.9,59.1,50.7,65.1,62.7,56.8,95.5,59.9,168.1,99.1,102.4,86,83.8,81.2,76.9,77.2,81.7,83.6,84.4,58.3,66.7,115.4,68.1,67,81.6,104,84.1,51.8,48.2,87.9,5.7,187.1,129.5,64.8,28.3,49.8,60,65.8,178.8,49.2,165,70.9,64.6,35.6,32.3,66.4,59.7,64.4,57.4,44.5,43.7,42.2,53.7,62.5,65.6,61.6,48.7,51.7,44.9,37.4,50,46.3,80.3,51,74.2,46.7,36.7,69.3,39.5,45.2,47.8,51.4,59.2,67.6,84.1,106.3,58.6,71.5,33.7,49,36.9,49.6,36.7,47.9,56.7,61.7,52.7,54.6,74.5,77.8,68.6,92.7,65.9,93.1,103.6,92.2,94.2,95.5,96.2,88.5,86.7,52.3,87,17.8,185.2,179.2,209.7,184.8,262.1,132.8,519.9,436,535.7,26.5,121.1,193.7,156.3,54.4,6.7,62.8,56.4,114.7,107.6,149,49.2,55.2,64.3,66,45.6,50.2,105.3,167.3,196,75.1,78.9,220.7,235.1,109.4,102.2,103.9,78.5,48.5,46,60.4,76.1,8,71.7,65.1,57.4,79,81.8,159.1,144.4,176.4,83.1,37.3,47.2,139.6,59.1,135.8,109.6,94.8,96,43.7,38.1,78.3,172.2,101.7,103,108.1,104.7,215.5,229.1,73.6,398.7,149,106.1,49.5,84.3,6.9,88.9,53.2,87.7,18.9,32,58.3,66.7,38.8,91.7,45,52.3,55.3,55.9,82.5,39.6,34.3,37.3,58.7,78.5,76.9,78,75.6,92.5,79,85.9,90.4,71.9,80.9,93.7,146,33.4,149.5,120.3,121.4,245.6,321.4,33.2,417.9,211.6,100.6,109.5,100.8,76.8,78.1,56.2,49.4,52.7,60.2,64.9,59.5,65.6,86.1,39.3,44.5,50.3,55,115.2,58.5,70,68.1,92.5,65.6,65.6,53.3,50.9,24.5,23,56.6,33.1,19.2,57.4,126.2,82,166.9,52.6,27.6,26.1,18.8,19.5,30.6,29.3,26.8,26.9,17,20.4,27.9,19.8,29.5,35.1,24.1,22.5,37.5,42.1,44.6,35.6,34.6,31.3,30.6,29.1,34.5,33.9,20.3,16.9,17,19.9,32.7,15.8,19.1,27.2,28.1,31.7,18.6,37,60.3,183.6,97.5,43.7,34.8,32,30.9,38.3,41.3,37.2,41.4,24.4,30,40.4,36,20.2,19.2,31.4,33.9,64.6,61.1,15.1,100.5,103.8,56.6,61.7,58.1,59.5,38,43.1,41.5,39.7,48.6,36.9,30.2,76.1,85.9,61.4,71.6,59.5,64.7,53.3,47.6,54.9,53.3,43.1,83.7,22,144,75.9,67.6,82,77.4,62.1,76.1,72.3,47,61.7,49.7,73.4,70.4,76.3,64,71.5,69.3,42.9,45.3,52.9,45,60.6,141.5,140.9,69.1,68.2,103.4,86,70.4,67.4,85.8,63.1,76.5,71.7,43.8,59.1,58.8,66.4,44.4,18.2,66.7,72.3,42.3,38,57,68,90.8,104.7,62.8,143,108,61.1,143.9,126.2,133.7,25.4,14.9,110.8,137.2,62.3,142.2,84.3,158.3,110.7,157.3,131.1,109,100.4,130.4,191.9,145.3,111.2,125.4,119.8,64.6,12.4,44,96.7,102.9,100.8,83.1,79.8,37.6,13,7.5,68.4,58.1,51,48.9,51.7,63,50.5,52.8,67.2,75,80.2,74.3,28.5,23.9,55.2,51.3,164.6,119.1,198.4,125.4,129.7,135.7,134.7,150.9,183,194.4,184.1,156.4,148,151.4,149,146,121.4,156.4,138.2,129.8,135.9,6.2,122,136.8,94.1,98.8,114.4,113.9,102.7,123.6,74.3,23.4,91.5,115.3,87.8,94,98.4,99.8,79.6,101.4,87.5,74.2,64.2,58.9,57.7,62.4,85.8,88.3,72.9,83.6,72.4,89.3,92,92.3,80.2,69.2,49.8,53.1,56.3,81.9,42.2,43,30.5,45.3,54.2,55.3,52.1,34,42.3,47.6,53.2,52.8,62.7,56.5,65.7,84.3,70.3,81.5,74.9,69.3,84.6,85.9,88.4,81.8,80.2,80.8,78.4,78.3,88.6,73.6,99.8,72.2,76.2,56.1,63.9,69.9,72.7,98.1,86.8,50.3,39.5,13.3,33.6,30.9,51.4,65.7,57.8,58.2,66.4,77.3,75.6,66,59,54,72.8,70.1,43.9,60.8,53.7,69.3,63.7,30.4,23.3,67.3,64.3,61.6,67.6,35,36.2,90.1,79.9,69.3,51.1,51.5,55.6,66.4,60.7,27.6,32.2,53.2,49.2,50.8,68.8,62.7,37.8,56.7,15.6,55.7,53.2,51.9,39.5,47.8,78,87.3,76.4,125.8,261.1,34.5,35.2,44.4,48.5,60.4,55.6,90.9,58.2,58.8,58,65.6,52.9,44.3,58.1,69.4,70,53.3,70.6,148.3,93.2,52.2,54.7,72.6,17.2,49.1,63.9,56.2,63.9,55,57,67.4,43.2,46.7,22,36.3,32.7,15.1,45.7,38.9,57.8,45.3,48.6,62.8,39.8,53.4,58.2,59.8,31,31.3,63.4,54.9,57.4,46.8,62.8,50.8,67.2,28.6,45.5,64.4,43.6,72.2,70.8,64.3,32.8,57.4,74.2,86.4,19.1,71.6,41.1,41.1,52.7,60.1,128.9,97.4,65.4,23.3,42.6,18.2,59.4,28.6,38.4,37.8,39.9,35.5,32.4,71.8,94.3,22.2,64.7,28.7,39.2,34.2,47.2,75.7,11.2,38.2,25.1,44.9,42.6,50.3,102.5,70.5,36.9,24.2,55.9,21.6,40,36,46.2,47.6,42.7,51.7,62.4,38.3,41.1,35.2,29.2,74.1,95.6,78.9,111.3,94.2,29.9,59.7,62.9,25.3,86.2,56.5,56.8,127.9,77.4,96.3,76.7,69.1,57.9,78.4,20.9,52.3,68.8,36.4,34.5,79,57.8,38.4,75.9,67.1,37.5,57.4,30,40.6,58.2,51.3,51.5,61.9,116.5,94.8,88.9,80.6,74.9,53.2,59,71.3,79,74.7,141.5,83.3,54.9,42.6,54.2,44.8,58.8,49.1,63.2,38.5,47.2,53.9,56.3,52.2,54.3,70.9,79.1,68.4,73.1,54.8,62.3,48.5,44.2,54.6,51.9,62.5,61.7,77.3,59.2,54.4,52,49,58.8,57.2,36.7,37.2,46,52.6,68.3,76.1,98.9,67.2,63.6,53,41,32.2,43.6,68.7,46.4,65.1,68.2,39.5,18.7,25,37.7,55.6,29,48.4,48.5,58.8,54,51.2,74.1,75.2,60.2,45.8,64.9,35.7,44.8,44.6,48.8,61.5,56.8,57.9,59.6,64.5,92,103,85.8,81,57.1,79.8,111.5,141.4,110.1,149.1,113.3,88.7,96.6,73.1,63.6,91.4,65.4,65.4,66.1,93.1,79.7,60.3,88.8,82.1,101,81.1,68.6,96.6,61.3,55.3,50,84.1,89.8,97.4,102.7,85.3,87.2,49.5,56.6,98,321.4,202.3,70.9,87.9,96.6,50,58.6,54.1,77.2,75.7,57.2,59.9,80.4,89,74.9,72.3,79.3,76.7,111.3,95.5,118.9,109.4,69.7,61.2,55.7,66.3,31.8,41.9,90.9,54.4,80.1,84.7,15.2,97.2,113.6,117,86.4,105.9,50.6,74.3,81.9,63.1,55,71.7,72.1,76.6,88.8,42.1,68.5,81.1,62.5,84.3,80.3,70.4,117.7,86,81,75,105.8,104,77.8,73.3,52.1,98.6,38.9,76.9,51.8,40.8,56.3,98.6,88.1,131,32.9,42.8,41.6,40.8,28.6,14.3,18.5,37.6,46.9,47.2,46.1,54.3,51.8,45.4,37.8,87.6,96.6,29.4,88.5,50.2,68.4,52.3,53,66.3,27.8,47.2,47.3,45.7,58.1,61.5,44.4,39,27.4,38.9,40,62,58,50.9,44.5,31.7,37.3,75.9,56.3,59.6,60.9,42.2,62,45.5,120.8,77.1,66.6,215.2,11,94.4,108,118.3,108.7,92.4,97.5,103.1,108,87.4,105.4,88.7,70.1,89,105.4,87.3,72.8,60.3,75.8,58.5,55.1,66.9,70.7,64.3,80.7,68.8,52.9,82.9,67,58,72.4,41.8,52.2,53.6,60.7,55.7,57.5,61,61.8,44.9,58.5,75,49.3,30.6,34.9,49.4,56.5,86.6,107.1,53.3,44.7,55.3,48.1,49.4,49.4,66.8,57.3,45.8,62.3,75.2,71.8,69.7,82.4,63.1,122.4,84.6,100,77.7,89.1,105.8,69.9,64.9,78.2,65.3,157.7,107.7,93.2,69.8,94.4,89,107.8,118.1,102,96.2,100.4,78.3,72.5,71.4,104.5,74.7,48.7,72.6,58.7,56.7,79.6,83.1,84.5,98.1,106.9,112.4,94.8,47.5,41.7,46.4,46.6,49.7,62.5,55.1,48.6,47.3,40.3,38,47.2,54.2,219.5,32.5,55.9,38.9,30,31.6,32.4,36.2,49.2,62.3,45.7,61.4,62.4,83.9,44.9,32.6,36.8,43.3,41.6,33.4,37,49.9,36.1,43,40.3,47.6,56.5,21.7,28.7,30.3,129.6,44,35.1,35.4,53.3,39.3,33.7,36,43,80,86.3,54.7,42.8,46.5,36.6,48.8,35.4,44.7,39.4,36.6,49.4,37.5,50.5,39.4,40.6,30.9,35.4,32.4,36.3,52.3,44.5,39.9,51.5,50,35.1,51.1,52.7,34.7,33.8,34.9,47.4,77.6,163.2,60.3,57,58.4,55.1,56.8,51.8,46.1,53.5,48.1,38,59.6,63,45.5,50.7,54.7,54.3,47.8,47.5,67.8,48.3,66.3,21.1,26,49.8,26.8,63.6,53.6,21.2,29.3,38,37.3,41.7,46.4,34,30.9,32.1,39.1,33.6,33.7,25.8,37.5,46.4,44.6,79.8,72.5,50,33.7,33.2,34.1,33.8,33.9,34.5,44.9,57.2,47,43.4,30.9,34.3,37.2,46.4,35.5,51.8,23.3,33.8,37.5,105.3,78.6,38.9,33.5,48.1,51.4,33,48.5,88.6,12.4,77.2,52.2,47.7,38,47.4,33.7,37.4,56.2,48.7,81.3,94.5,97.1,130.6,123.9,94.7,101.8,96.4,8.3,125.3,28.5,37.1,25.8,25.7,26.3,29.1,40.6,31.7,36.3,35.2,29.3,26.8,26.8,33.5,33.8,36.3,38.5,41.8,27.4,75.7,95,49.4,37.7,39.5,31.5,46.3,49,55.9,31.6,42.2,45,52.5,50.7,61.8,59,69.1,49.8,37.9,51.8,47.2,51.4,47.4,35.5,41.6,45.2,29.2,53.9,82.2,66.7,55.3,35.5,57.9,38.4,47.8,40.4,48.6,35.2,59,31.5,2.6,48.2,51.1,49.2,36.8,46.5,49.5,46.5,57.2,49.8,121.4,78.4,70.4,47.5,51.1,64.2,43.8,47.3,39,22.5,33.1,45.3,37.9,80.7,102.7,83.4,78.3,88.3,201.1,96.5,108.8,59.5,67.9,60.2,37.6,52.6,50.2,39.9,52.8,79.7,78,70.7,63.3,57.8,53.1,26,30.1,45.3,35.1,24,57,36.6,19.5,38.2,10,21.1,37,41.3,36.1,49.1,33.6,28.3,42.7,68.6,78,68.8,63.3,42.2,45,39.4,64.9,59.7,39.5,50.3,44.8,40.9,45.6,66,56.2,49.3,45.8,56.1,53.5,51.2,47.6,36,36.3,46.6,54.9,79.7,68.8,60.1,50.2,53.2,64.2,38.9,27.5,68.3,53.3,92.4,56.1,57.2,56.5,44.3,75.6,49.7,50.2,50,65,35.5,36.2,41.9,72.6,43,51.8,89.3,78.1,34,27.3,27.9,33.8,31.4,36.2,56.3,31.9,26.9,34.9,35.9,26.4,25.5,27.2,23.8,29.8,31.8,18.5,39.8,19.6,21.2,42.2,28,16.6,37.5,48.2,45.5,37,28.7,27.2,25.5,32.8,52.8,35.8,29.4,36.4,34.8,26.1,9.3,14.4,17.6,34,31.3,30.1,15.4,18.5,35,44.4,32.4,46.1,45.4,32.5,36.2,60,44.1,123.4,51.9,46.9,40.1,29.7,53.6,36,63.1,37.2,49.8,46.9,32.7,34.8,53.4,99.7,66,52.2,66.6,65,50.6,33.4,50.4,45.6,46.3,57.4,52.3,48.5,67.5,71.9,108.6,76.6,61.5,57.7,58.1,66.1,66.4,55.4,57.6,71.6,145.7,74.9,63.5,59.3,52.8,51.2,54.4,39.8,43.8,36.9,53.5,27.9,21.8,27.2,50.9,50.9,31.8,15.2,34.5,36,47.3,69.5,70,67,74.7,40.7,41.5,73.3,50.7,51.8,60.8,42.1,30.3,49.4,63.3,54.4,64,39.6,56.2,58.6,61.7,58,44.1,47.2,72.5,52.1,65.8,55.5,62.2,63.7,67,41.2,45.1,54.5,62,83.6,77.9,75.7,60.5,8.1,58.9,57,21,31.8,6.1,43.3,71.8,48.9,49.5,33.3,158.5,79.8,98.3,77.2,70.9,82.6,35.2,9.6,31.5,96.1,34.3,49.1,43.1,43.3,43.1,41.4,84,41.1,43.5,47.8,56.4,54.6,32.5,49.9,65.3,76.6,77.3,77.3,78.9,100.4,50.9,43.3,41.1,50.1,49.5,53.1,50.8,63.2,53.9,51.4,66.6,60.9,43.8,39.8,44,91,60.8,64.8,125.9,130.7,37.8,24,27.1,35.4,42.3,23.2,38.7,48.1,51.8,22.8,19.1,17,26.5,40.2,34.7,48.9,63.5,53,44.8,49.5,32.2,73.5,100.6,12.1,113,76.9,90,33.2,64.9,37.5,37.2,25.5,43.6,122.4,80.1,37.3,91.1,44.4,67.5,118.6,19,52.4,62.4,66.6,59.3,29.8,24.9,37.4,26.7,21,27.2,29.6,47.9,32.9,33,35.3,37.4,27.4,35.4,33.3,30.5,35.2,34.3,53.2,0.2,25.5,52.6,99.7,90.6,54.5,33.1,21.7,29.4,29.5,27.5,51.2,77.5,46.4,54.5,26.6,39.1,52.4,22.3,33.1,39.2,74.1,27.3,27.4,31.9,10.2,45.3,40.1,42.9,43.1,40.6,36.9,49.5,28.4,22.9,23,54.3,109.5,21.4,43.2,34.4,40.3,45.5,64.7,33.5,53,62.7,99.8,7.1,104.1,81.7,102.1,40.4,75.4,89.1,88.8,58,75.4,85.6,75.1,113.3,95.6,118.5,156.4,31.4,52.9,115.4,101.5,55.8,66.4,84.2,81.3,79.2,82.1,171.2,28,111.2,48,141.2,151.3,111.5,33.9,68.8,126.9,120.6,171.2,164.8,49.6,94,83.6,180.3,195.8,141.5,79.4,77,137.9,66.9,66.7,68.1,50.5,68.9,50.1,75.3,61,68.3,50.8,75.9,40.2,102.6,115.7,123.7,76.2,71.3,85.6,47,31.5,34.7,37.7,43.2,42.4,34.3,48.4,61.4,58.4,99.3,68.7,156.7,60.8,52.1,143.7,89.2,257.4,72.6,45.4,125.1,97.6,73,72.7,70.4,73.2,141,68.7,72.9,76.1,85.2,12.2,16,52.3,98.6,31.7,24.1,18.9,25.2,30.2,32.8,33.5,31,24.9,20.9,25.9,35.8,28.4,30.3,25.8,27.4,14.5,15,22.6,21.8,28.8,33.8,32.2,32.3,28.9,36.3,36.5,22.9,23.3,27,33.3,30.4,34.6,30,57.3,33.2,41,65.1,25.3,28.3,20.5,23.1,13.3,19.3,19.8,21.1,27.9,34.7,22.9,29.9,33.3,36.8,27,23.6,7.3,26.1,27.8,68.3,24,29.2,34.2,30.1,25.1,40.3,27.6,23,34.1,42.9,50.3,64.8,24.4,139.2,65.9,94.7,43.6,28.7,51.2,115.8,250.3,107.2,98.7,249,2,390.3,319.1,124.6,120.6,10.5,571.3,148.9,62.5,38,91.1,158.3,89.9,2.7,146.2,80.3,77.1,59.8,53.5,121.3,48.8,75.8,128.6,25.3,42.2,51,50.1,68.4,79.9,111.6,114.5,82.6,101.8,68,84.4,35.1,51.2,51.6,35.1,56.3,43.7,33,34.3,34.7,34.4,32.1,33.6,34.8,39.6,78.3,33.5,52.1,49,35.7,35,32.9,33.4,34.3,43.9,54.6,38.9,32,32.4,35.7,50.7,53,48.5,35.1,47.7,57.2,65.7,33.9,119.7,153.3,51.5,60.9,57.9,62,67.3,64.2,65.3,177.8,91.7,98.7,104.3,158.3,103.6,83.8,88.3,151.7,60,75.1,37.3,17.7,28.5,23.7,34.9,43,36.5,31.2,38.5,48.8,50.8,35,67.5,34.5,34.8,39.5,37.7,44.4,65.2,50.4,25.1,28.5,31.5,38,48,42.5,28.6,31.4,53.7,47.6,35.6,32.2,36.9,32.7,34,50.8,51.6,34.5,50.5,34.2,35.3,37,44,38.5,51.1,51.6,82.4,52.9,34.9,67.1,35.1,34.8,34.1,34.5,50,36.3,30.2,37.3,48.7,49.1,51.9,261.9,30,62.4,119.2,142,117.1,171.2,103.7,56,65.9,57.7,35.9,71.5,98.3,43.2,77.6,56.6,80.7,76.1,81.9,112.2,66,50.1,52.1,82.9,66.5,154,101.6,120.6,83.3,66.4,91.9,98.2,92,164,83.1,86.3,37.8,80.3,88.7,67.3,53.6,109.4,58.5,171.2,321.3,66,39.5,67.7,68,66.1,51,51.6,85.1,67.6,154,86.4,118.7,54,90.7,116.7,54.1,42.2,53.3,29.4,20.3,50.6,23.9,29.6,32.8,16.6,16.9,17.4,16.3,37.5,28.9,37.8,16.2,44,59.1,23.6,42.8,36.6,29.6,20.6,50.9,34,35.8,51.3,85.4,49.1,51,52.6,52.1,44.6,23.2,33.7,35.5,33.2,28.6,22.5,32.7,34.5,52.9,67.3,67.7,49.8,35.6,67.9,84,85.4,389.8,52.7,43.2,43.2,51.2,69.1,83,52.7,54.8,30.4,68,68.9,67.7,201.5,89.2,84.4,93.3,60.6,68.6,100.3,67.6,69.9,86.3,153.1,85.6,93.8,123,78.9,113.4,83.2,86.9,65.8,49.4,39.3,67.1,36.3,47.6,52.6,68.4,58.9,81.9,64.9,50.5,84.6,80.7,76.6,8.3,50.6,86,106.3,132.7,89.4,137.8,52,48.5,68.9,86.6,56.5,59.8,52.6,53,48.3,77.2,60.9,44.4,41.1,42,63.6,30.1,51.8,36.5,48.1,68.3,86.7,61.5,34.9,22.8,40.2,38.1,38.1,36.2,50.3,57,44.7,37.5,31.1,51.1,41.2,45.3,50.4,32.6,35.1,35.2,34.5,51.7,32.4,34.9,50,53,65.8,49.6,52,51.5,32.6,34.8,33.1,35.6,32.7,34.5,43.8,46,22.8,80.7,83.3,63.6,13.6,26.5,42.8,40.6,40.8,42,43.5,62,86.5,102.3,87.3,225.8,63.6,61.5,40.5,43.6,40.9,41.7,40.8,43.2,41.2,43,39.6,45.6,39.2,42.5,41.8,41.8,44.5,57.4,84.3,51.4,31.9,23.2,41.9,39,44.2,62.8,41.1,61.7,63,79.6,69.5,13.6,39.5,35.6,34,38.7,40,39.1,37,26.4,42.8,40.9,39.9,42.2,42.7,41.6,28.6,34.1,41.4,38.3,42.2,58.1,43.7,37.9,43,81.8,83,82.6,82.3,44.4,41.1,60.3,43,60.5,41.6,42.5,47.3,64.8,56.2,65.2,117.5,142.9,84.6,81.7,80.9,105.6,62.7,40.6,61.1,62,124.8,107,120.7,147.6,134.3,168.5,93.7,103.8,123.4,103,82.3,84.7,185.7,84.6,81.8,143.4,125.8,81.1,65.7,68.9,96.1,101.5,115.4,31.6,103.6,135.6,61.5,27.2,36.7,24.7,37.6,28.1,34.7,40.3,48.5,30.2,31.7,32.3,25.7,27,33,40.2,42,39.5,62.2,24.3,81.3,42.2,61.9,62.7,48.6,31,35,34,34.1,32.2,23.9,38.8,25.3,32.7,33.9,29.6,39.5,36.2,34.2,43.8,38,35.7,37.2,37.7,37.4,35.6,35,26.2,36.4,31.9,37.5,30.4,26.1,19.2,31.8,21.8,17.1,18.5,33.6,34.7,42.5,55.5,37.1,36,20.5,16.7,21.9,40.9,30.2,37,37.5,37.4,35.9,39.2,36.9,54.2,37,39.5,35.1,54.7,90.5,80,99.3,85.3,66.5,70.1,74,75.5,65.2,83.7,76.3,89.9,97.1,101.9,107.9,87.1,104,55.6,35.7,7.7,178.8,93.6,175.5,130.1,28.4,30.4,35.6,38.9,35.7,38.2,35.6,34.2,36.8,57.1,37.2,36.8,38.1,34.4,36.2,38.8,54.7,36.5,30.8,25,34.6,27.7,31.1,37.7,34.6,30.4,18.3,7.7,19.3,32.6,53.1,22.3,21.4,35.8,36.9,35.8,36.7,37.1,36.8,45.7,85.9,53,124.7,133,72.5,97.4,60,80.8,50.2,20.9,41.3,23.7,31,51.3,46.2,33.3,33.8,38,54.5,46.6,79.2,61.9,56.2,54.1,38.3,38,37.1,27.7,18.5,24.4,52.4,41.3,40.5,47.7,77.7,69.3,73.7,74.9,75.5,95.5,77.4,0.7,70,57.5,73.4,83.2,98.3,107.4,74.2,72.5,237.2,67.5,32.8,56.7,82,68.1,64.8,36.6,33.5,27.4,35.7,32.3,37.6,35.1,95.4,98.5,83.9,93.6,54.7,54.3,55.5,37.5,34.6,36.2,31.8,31.6,33.9,34,35.9,41.6,70.9,101.9,214.8,66.9,72.6,75.4,54.7,35.6,38.7,32.6,39,39.9,35.6,37.5,30.9,41.3,42.9,32.6,73.7,57.4,109.5,76.8,52.2,53.4,57.3,56.2,54.2,33.3,32.6,29,34.3,37.2,57.6,53.7,55,44.6,48.5,53.7,55.9,53.8,36.3,30.5,42.2,36.1,38.8,35.9,35.7,37.7,36.1,33.9,22.9,39.2,24.7,28,35.9,30.8,90.4,121.9,128.2,89.8,111.8,119.2,120.6,45.1,28,26.5,110.1,83.9,57.4,50.6,37.2,36.5,37.9,37.3,33.5,44.9,36.4,94.3,100.9,91.8,100,101.1,92.5,92.4,88,84.9,57.1,137.4,97,2.8,106,56.9,157.5,115.2,74.2,73.6,71.4,75.5,53.9,36.8,41.4,34.8,39.4,34.9,56,54.8,17.5,7.3,49,38.5,21.9,33,100.6,62.8,90.2,75.7,40.7,47.2,130.7,134.8,270.7,17.5,10.7,32,37.9,36.8,36.9,38.9,37.5,32.7,39,52.9,38.2,71.1,77.4,71.5,54.3,54.2,55.5,39.3,34.7,37.1,54.7,55.1,67.3,96,101.2,82.1,56.4,90.1,56.2,62.6,48.6,71.6,63.8,47.9,53.4,89.6,60.1,60.4,63.8,72.6,56.8,47,50.3,33,57.8,53.7,39,40.2,60.6,54.4,46.3,59.3,66.7,53,80,89.6,72.1,58.7,93.1,95.9,90,171.5,57.3,64.9,181.2,212.1,81.8,55.2,57.3,34.9,17.6,12.8,31.9,42.1,62.4,70.7,100.4,67.9,70.1,77.8,126.2,95.2,71.2,74.4,68.6,59,69.1,75.9,72.7,74.4,72.1,87.1,68.6,72,82,75.9,71,89.2,57.3,54.7,72.9,95.7,100.6,51.5,63.9,86.5,78.2,90.6,79.2,5.4,83.8,99.6,136.1,102,82.3,83.3,74.9,84.1,94.4,108.4,15.1,44,34.7,59.3,51.9,60.4,32.8,49.2,36.8,58.8,71.1,30.4,51.8,37.7,62.2,39.8,48.8,51.7,49.6,44.8,59.9,59.6,38.7,67.1,69.9,46.6,86.8,83.8,50.7,48.3,36.5,16.3,27.2,39.8,49.2,44.4,41.6,52.5,47.4,38,45.7,41.6,51.3,49.5,35.2,44.9,38.5,41.8,42,50.4,34.4,34,40.5,62.2,17.1,49.5,48,51.9,51.1,57.8,77.8,44.3,47.9,64.4,70,67.8,66.9,65,36.8,57.2,31.1,24.4,18.7,58,131.7,79.2,147.7,90.5,55.2,53.4,96.5,69.1,67.2,63.3,60.7,68.6,65.7,103.6,57.1,57.1,52,51.5,58.2,56.8,97.9,92.1,47.7,45.2,80.3,52.5,79.4,68.5,66.6,65.1,70.4,22.6,78.4,85,54.3,54,57,76.6,60.7,49.4,69.4,43.7,57.8,66.6,29.9,37.2,52.6,60.6,41,48.8,53.7,49.1,50.9,67.1,49.8,66.9,66.3,68.3,83.9,96.6,70.4,101.7,69.9,82.8,69.3,102.5,114.1,81.3,102.2,104.4,133.1,119.5,119.2,63.8,61.5,58.4,50.9,46.9,56.3,66.6,51.5,56.6,78.1,70.5,96.9,67.2,51.7,48.5,20.7,19.9,22.4,95.8,68.3,38,39.2,35.3,31.4,32.2,35.5,49.1,35.9,61.5,31,85.6,29.9,55.4,53.2,10.5,6.8,23,55.2,45.6,39.9,34.8,79.2,48.8,66.7,85.7,39,29.1,49.4,36.7,32,34,34.9,48,37.5,41.1,44.6,33.7,35.1,32.9,34.6,34.1,33.7,52,49.7,51.9,51.8,51.4,50.1,51.7,52.1,33.9,34.4,46.5,22.4,33.1,33,31,20.4,49.9,34,34.7,25.8,42,43.9,38.7,34.2,50.3,52.8,51,48.1,34.3,24,9.8,48.8,26.4,38.4,72,83.4,70.3,68.1,82.8,9,80.1,106.8,82,111.2,121.9,80,22.5,34.1,50.4,87.5,73.6,78.4,82.3,31.8,16.1,36.7,83.5,1.2,60.2,93.3,49.6,32.2,35.9,35.9,32.6,32.2,35.5,34.3,55.2,58.9,97.1,93.3,70.2,78.8,34.6,30.6,33.7,25.6,26.5,31.8,51.5,66.9,52.1,25,21.9,19.4,20.7,0.3,7.9,22.7,26.5,21.4,32,39.1,23,26,89.4,8.4,38.2,32.4,28.6,27,30.5,20.8,22.6,29.1,28.5,27.6,39.6,35.9,49.3,33.6,31.4,10.3,0.4,23.5,36.6,59.7,15.9,54.6,55.9,117.9,55.7,67.8,90.3,81.4,50.4,74.6,74.9,32.1,35.5,35,31.3,33.8,34,37.1,31.1,34.9,50.1,34.5,33,34,35.1,33.4,34,33,35.1,40.1,31,12.9,33.7,50.9,33.6,34,35.3,33.8,33.3,34.3,31.4,10,29.9,30.6,32.9,36.2,30.9,49.7,36.2,49.4,34.6,68.4,85,66.5,84.9,68.6,83.8,101.2,86.5,116.5,68.7,67.3,52.3,30.7,25.6,43.8,85.4,50.3,50.5,34.1,34.5,33.3,32.5,14.2,20.2,20.5,5.6,24.2,32,16.9,18,15.5,22.8,14.5,20.4,29.6,49.5,51.2,34.4,32.7,31.8,26.6,27,31.9,37.4,33.3,33.1,33.8,34.4,33.9,32.8,49.8,71.4,48.8,33.5,32.3,35,33.8,70.9,53.7,77.7,66.9,70.2,83.2,67.5,104.5,85.1,99.7,129.5,59.3,115.1,116.3,136.9,99.7,60.8,74.4,58.4,76,66.2,108.6,101.8,139.2,73.6,5.4,122.3,173.3,75.5,51.6,103.2,100.2,83.4,103.2,100.9,117.2,81.4,87.7,134.4,108.6,63,111,65.6,96.5,70.9,85.1,45.7,37,35.7,35.8,51.5,84.7,78.8,111.9,102.2,84.7,70.2,65.2,54.2,61.5,49.2,107.9,54.4,57.4,46.7,60.3,59.2,44.2,92.7,248.2,107.3,72.3,41.3,42.6,78.6,58.4,92.3,82.6,102.7,112.6,101.2,89.8,100.9,98.3,157.2,113.5,137.7,130.7,127.8,110.8,121.1,147,117.6,42,48.5,25.3,43.6,33.9,44.5,40.8,69,65.2,81.3,160.2,140.2,101.2,91.6,104.7,83,104.3,90.6,58.9,16.1,44,124.5,132.5,92.9,154.6,83.2,109.1,119.3,1.1,102.3,160.3,81.8,89.5,107.4,163.5,128.9,120.9,152.6,130,119.8,86.2,38.4,12.1,113.2,81.3,65,73.5,40.3,40.5,37,44.6,29.8,56.7,33.9,230.7,120.8,110.3,129.2,176.4,58.1,131.9,165.3,100.9,184,159.6,92.9,97.1,82.8,56.1,41.8,9.2,54.6,35.1,320.6,93.4,58.4,79.8,76.5,53.5,130.3,69.8,87.2,120.9,69.8,114.7,99.7,79.9,101.4,6.9,8.3,110.4,54.5,31.3,54.7,82.5,85.9,77.3,158,46.9,11.7,53.2,49.6,48.2,39.1,48.2,37,33.8,34.6,36,86.5,93.7,98,86.9,70.2,52.4,52.6,49.6,22.2,26,39.5,33.2,42.4,49.3,61.4,74.6,75.2,129.9,116.4,123.4,73.1,77.2,182,46.5,112.1,159.4,16.8,33.2,90.3,152.2,117.9,115.7,142.7,6.1,20.9,54,20.5,87.3,49.4,110.1,76,132.9,56.4,50.5,47.2,39.4,50.1,39.4,18.6,29.4,49.8,53.1,50,54.6,13.4,34.5,53.6,52.3,40.7,42.8,46.4,42.2,52.5,80.1,72.2,53.4,68.5,67.6,72.9,75.1,64.1,44.6,82.3,51.4,44.2,76.8,60.8,88,83.5,93.9,59.6,80,93.4,71.9,49.3,78.5,80.3,64.7,63.2,19.1,12,33,57.9,75.6,64.6,42.1,48.8,37.6,43.4,43.4,38.9,50.3,31.2,81.1,64.7,46.2,47.8,246.9,112.6,36.2,116.5,111.6,144.3,65.1,66.6,59,60.7,71.6,66.2,76.7,72.9,47.3,2.2,73.1,79,36.2,37.9,61.7,56.4,65.3,67.7,53.9,52.8,55.7,59.6,43.3,41.9,96.1,98,52.5,49,73.6,90.5,53.7,51.9,55.4,53.3,46.6,45.4,54.2,51.1,41,41.9,46.4,49.3,85.6,61.5,59.5,150.4,76,74.6,19.2,29.1,13.6,69.4,43.5,37.8,55.2,48.2,63.9,65,10,106.6,24.8,54.2,46.4,147.6,84.6,121.3,52.9,48,63.8,33.2,52.8,31.2,8.5,20.7,19.2,23.3,33,27.9,38.9,1.9,36.1,44.8,84.7,51.9,54.1,28.8,30.1,57.8,19.5,33.7,50.3,37.2,69.4,52.1,50.6,32.1,53.7,73.6,43.4,6.4,11.8,36.6,17.6,46.5,22.5,11.2,78.1,25,54.4,72.2,35.8,62.7,18.9,17.1,57.6,83.5,47.6,38.5,76.8,8.1,35.4,33.3,83.3,65.4,38.4,28.4,103.9,115.4,217.9,70.5,5.4,47.5,48,59.7,34.4,41.5,41,32.1,51.9,41.5,35.5,109.8,124,71.6,7.6,49.4,151.5,129.2,78.1,40.7,36.9,44.3,33.7,9.7,30.3,35.8,60.1,91.2,26,25.2,55.9,48.5,55.7,48.9,49.4,89.8,93.8,105.5,49.6,52,52.6,54.5,91.1,64.2,56.4,123,53.7,40.7,134.9,247.8,311.4,95.7,142.2,85.9,90.7,96.7,130.9,217.2,214.5,249.7,260.1,21.6,75.9,100,117.6,119.3,17.6,56.3,50.4,50.6,141.1,87.2,89.2,60.6,69.1,82.1,84.2,43.2,7.6,50.9,44.3,59.7,56.2,48.5,31.1,26.8,35.5,39.7,18.6,18.7,42.5,66,66.2,71.8,37.6,40.6,34.1,35.6,45.4,60.8,65.2,167.2,148.4,90.1,47,70.3,43.5,53.8,50.7,40.4,92.2,134.1,68.9,66,60.7,56.8,38.5,40.2,70,75.1,78.9,12.3,296.5,58.1,59.1,117.1,63.9,140.8,144.5,287.5,255.5,244.4,187.6,158.9,378.7,141.4,16.3,7.9,140.8,302.9,97.7,115.1,216.3,300.4,146.9,152.3,281.8,148.5,135,583.6,37,344.2,15.5,30.3,501.4,145.1,145.4,214.9,215.7,89.2,97.3,112.4,70.2,416.5,74.6,266.2,265.2,434.1,4.7,459.3,1091,23.7,75.3,57.7,11.2,244.7,90.3,184.5,45.9,339.6,173,160.7,67.8,66,64.8,63.7,184.5,182.1,335.3,152.8,7.2,95.6,21,64.2,163.8,111.9,51.8,28.9,45.3,191.6,95.2,96.1,59.9,59.6,55.5,57.3,70,37.8,35.3,34.8,31.7,42.6,37.2,34.3,30.5,141.9,0.5,176.1,90.9,72.8,59.9,61.3,32,33.6,69.9,69.9,139.3,105.5,69.7,70.9,107.1,72.1,73,73.2,108.6,74.6,63.1,45.4,189.5,75.6,93.6,87.8,38.7,38.5,44.3,42.3,13.9,37.1,39.7,34.7,60.6,44.1,39.3,72.4,55.4,66.3,166.6,120.3,93.4,2.4,49.3,33.6,38.6,23.6,22.2,23.3,15.8,39.9,49.4,47.5,48.7,61,92.4,120.9,58.8,149.7,135.6,179.8,27.3,50.8,114.9,21.5,63.8,149.2,80.1,74.6,46.5,70.4,47.5,42.8,42.7,51.2,14.9,34.4,43.5,47.6,36.7,62.4,55.9,67.4,54,73.2,149.1,187.2,124,126.3,161.3,106.7,58.9,90.4,29.1,23.4,31,89,73.7,24.9,97.1,209.4,22.1,126.3,130.7,254,501.2,1016.6,198.9,211.4,420.8,41.9,67.5,121.9,226.4,348.7,27.7,129.6,181.7,158.1,93.9,65.8,45.1,18.5,63.1,59.4,42.5,56.5,123.8,29.9,57.9,76.2,40.6,54.9,61.4,76.6,65.1,33.3,48.8,47.1,127.1,112.1,81.1,53.3,56.7,102.3,87.2,93.5,63,82.7,72.9,49,87.9,46.2,45.8,75.6,56.6,47.6,100,0.2,112.6,132.2,125.1,325.5,326.3,208.6,209.4,457.1,609.3,32.5,196.9,379.4,143.6,157.3,92.8,244.5,88.9,146.2,43.3,131.7,124.3,88,177.9,109.9,81.8,72.9,76,105.7,72.1,79,81.3,80.4,172.2,152.9,184.3,183.8,166,158.6,122.4,122,121.2,115.9,119.7,108.3,216.6,204.1,212.6,326,358.4,15.8,360.7,64.5,177.1,282.9,104.6,106.1,87.1,108.3,101.1,111.1,71.6,42.4,81.7,46.6,57.1,11.4,113.3,90.7,99.8,221.8,226.2,100,93,63.1,74.6,90.8,79.3,86.1,83.7,109.6,99.6,79.4,115.3,96.7,97.6,129.7,140.2,122.6,112.1,128.7,152.8,56,82.5,60.7,69.5,119.3,125.7,111.1,105.9,195.5,209.7,416.5,191.8,81.9,70.1,55.2,80,64.1,41.7,48.4,94.8,65.1,65.5,35.6,83.9,88.6,39.1,43.2,90.9,80,80,85.3,68.6,94.2,104,86.2,73,118,81.2,63.1,54.6,65.3,65.8,77.5,93.6,71.4,66.6,72.1,82.5,63,103.7,119.8,211.2,153,162.9,54.1,57.4,66.5,55.8,33.2,43.9,72.9,46.6,59.8,159.5,118.3,112.6,42,106.5,65.2,78.4,105.1,34.8,37.8,91.4,106.2,89.3,95.4,173.4,349.7,190.1,200.7,370.5,139.7,137.4,99.7,105.7,99.9,113.3,69.6,69.8,202,105.3,73.2,88.3,85.5,103.8,70.4,67.3,134.6,257.8,50.4,56.2,77.3,79.1,48,57.8,96.1,107.9,88.1,123.4,94.8,97.3,79.6,64.6,34.3,75.1,114.6,317.1,82.6,74.8,63.4,10.5,79.4,70.9,78.1,57.4,75.7,63.9,59.8,62.6,78.4,134.5,208,161.2,112.9,85.5,57.2,110.2,77.4,94.6,81.3,53,56.8,51.3,74.2,80,170.8,316.1,552.6,165.4,113.6,124.7,132.9,138.7,96.3,172.5,165.6,114.9,85,66.8,66.2,110.9,52.6,65.8,112,76.9,99.8,99.5,94,40.6,149.9,147.1,265.2,67.6,103.3,150,149.8,141.6,99.3,92.4,98.2,46.3,60.9,61.8,32.9,88.7,45.2,73.7,83.4,74.6,69.8,43.6,43.5,64.2,69.2,122.5,94.1,89.6,180.5,119.1,190.3,157.9,351.1,257.4,264.7,228.1,81,31.7,37.9,126.3,53.3,53.6,92.4,69.5,98.5,60.8,62,51.8,100.3,73.7,95.3,77.8,102.5,156.2,168.2,124.1,89.3,73.3,87.4,7.6,59.1,63.3,80.1,78.9,54.7,63.5,128.1,110.7,98.2,59.3,18.6,40.9,49.4,58.4,91.7,150,157.8,69.5,82.3,104.7,34.5,41.6,102.2,72.4,64.7,85,64.6,63.1,64.1,60.5,55.5,69,64.6,54.9,81.9,78.5,73.6,78.3,89.3,79.9,89.8,83.7,79.3,76.5,99.9,94.5,131.1,134.8,134.2,118.9,155.7,88.3,79.4,109.1,72.9,135.6,135,94.9,103.8,226.3,138.9,157.5,74.4,85.2,116.9,77.9,77.6,133.5,72.4,68.6,149.1,211.7,115.3,84.9,83,86.4,88.1,87.6,84.1,74.2,97.6,54.6,57.7,74.9,60.6,69.2,72.3,89.1,68.6,64,109,91,1.8,106.4,110.3,152.2,164.9,160.2,101.5,75.4,83.1,150,79.4,89,74.3,104.1,163.2,133.5,167,158.5,167.5,193.6,191.3,122,107.2,93.2,49.1,88.8,70.6,70.4,94.7,95.3,77.2,62,151.9,146.4,61.2,58.1,48.5,58,91.4,79.2,70.9,108.6,87.9,83.1,107,70.6,76.3,143.8,69.5,80,104.2,197,197.7,142,145.8,98.1,93.6,83,58.5,100.8,93.2,54.1,60.5,47.9,55.6,53,13.9,70.5,61.6,93.2,79.3,57.4,54.1,62.2,76.3,101.2,76.4,69.9,74,141.8,296.1,163.5,156.4,120,118.3,116.1,101.6,9,76.1,76.2,98,79,76.2,127.9,121.1,159.2,137.9,179.2,136.9,86.7,71.1,70.9,94.8,44.7,48.3,96.9,95.9,61.6,67,104.2,53,49.5,56.6,49.8,50.1,50.6,65.2,68.4,72.1,81.7,93.5,66.9,112.3,179.7,173.7,160.7,145.7,83.1,77.1,75.2,57.7,62.3,55.3,57,50.9,73.4,61.7,65.9,51.1,51,113.1,93.5,47,86.6,83.7,82.4,52.8,71.6,123.1,168.1,132.5,34.4,120,78.5,69.6,67.1,61.7,92.6,55.6,57.7,100.1,53.7,91.2,223.5,120.6,125.2,123.5,116.3,119.3,101.8,101.9,77.2,72.4,77.5,66.4,69.1,74.2,80.7,118.6,116.4,131.2,130.5,96.3,102.3,90.9,123.9,126.4,79,73.6,70.9,62,91.4,108.3,154.7,25,186.4,92.5,95.2,159.8,118.3,99.2,109.3,120.9,108.6,190.5,184.7,207.2,166.8,160.6,101.1,142.5,121.6,30.9,124.2,117.3,161.3,88.6,81.5,102.1,79.4,105.2,99.3,73.8,158.3,185.6,256.1,444.6,226.9,132.1,103.9,140.7,93.1,62.4,54.2,54.3,49.9,108.2,107.6,124.1,185,173.6,242.4,98.5,80.6,116.1,398.7,111.3,106.9,26.8,62.6,65.3,100.2,116.3,248.7,89.5,58.2,85.7,79.9,65.7,48.4,41.7,242.4,30.5,23.8,33.1,106.2,104.4,99.6,56.2,64.1,61.8,288.3,154.2,170.4,84.9,100.5,77.3,18.1,58.2,79.5,93.2,57.3,63.8,61.1,96.5,16,55.1,54,126,93.4,85.5,104,78.4,95.1,95.1,50.4,169.2,120.6,77.5,61.8,46.2,92.9,36.4,41.9,74.2,17.3,286.5,27.1,73,279.1,271.5,74.7,77.8,84.3,85.3,86.9,122.8,140.2,66.9,63.1,56.9,65.8,54.4,47,83.1,116.9,103.3,93.2,60.1,84.7,25.9,70.1,64.7,87.2,128.9,203.7,38.5,62.3,53.6,61.3,39.8,39.5,48.5,7.5,32.5,17.2,21.4,47.2,58.5,35.3,60.9,59.2,50.1,58.1,55.6,125.7,102.8,90.6,45.8,99.7,43.6,67.8,52.6,59.1,113.2,99.2,117.9,66.6,60.1,130.3,120.6,18.8,102.2,112,105.5,65.7,62.2,58.1,54.9,238.8,85.5,73.8,65.7,45.2,69.2,43.6,40.9,63.9,62,45.4,43.6,78.5,73.4,62.4,59.5,49.3,54.1,53.4,65.7,47.9,50.2,61.8,59.9,65.3,61,70.5,60.6,63.8,77.3,63,55.1,61.1,54.6,78,61.7,66.7,70.7,59.9,77.2,70.3,84.9,90.4,96.5,79.6,83.4,83,80.2,27.1,75,38.7,155.7,94.9,65.7,61,64.3,74.9,92.8,86.1,64,61.8,49.6,83.4,72.7,73.4,46.6,62.2,77.1,59.9,58.2,111.1,123.8,37.5,71.9,70.4,44.3,46.9,82.8,57.7,56.9,82.7,79.9,63.8,587.5,8.2,323.2,167.7,108.5,546.2,236.4,219.5,260,209.8,167.4,276.2,103.3,526.5,330.5,196.8,140.1,353.5,33.2,519.6,158.7,37.6,27.4,37.3,81.2,46,52.4,59.7,71.8,92.6,5.2,74.9,37.5,56.7,62.1,124,98.1,92.7,56.3,50,82.9,61.7,68.5,124.1,58.5,62.6,75.2,19.7,113.7,12.5,74.4,70.3,85.8,79.4,81.1,79.2,189.1,107.8,92.3,69.7,85.2,50.9,48.9,55.6,58.9,85.5,92.6,176,172.3,377.4,342.9,84.6,26,217.3,128.6,274,189.6,604,323.8,283.6,1408.1,890.9,442.2,439.5,245.9,121.1,112.7,211.7,104.1,102.2,123.7,258.2,103.4,22.1,77,1.3,236.5,128.2,102.9,221.6,213.6,613.5,29.9,395.8,430.1,508,20.2,211,366.8,273.2,97.4,424.8,420.8,419.5,253.4,161,259.1,124.8,103.6,106.6,82.3,118.7,101,53.1,58.8,18.8,118.5,56.1,51,60.4,65.8,42.3,22.1,75.5,55,98.8,66.4,58.8,47.3,32.5,36.1,48,55.2,85.3,88.9,70.4,79.3,89.5,79.7,3.5,54.5,70,93.5,232.2,76.4,312.1,621.7,628.4,326.6,299.7,193.7,143.6,164,125.5,114.9,119.8,108.5,30.4,391.5,521.7,354.9,208.3,14.3,56.5,417.1,96.6,115.6,105.3,68.6,103,55.7,45.7,126.8,118.4,229.9,259.8,283.6,257.1,191.3,196.6,41.7,66.9,56.6,121.2,90.3,47.2,73.3,72.7,79.8,102.4,119.9,108.1,144.5,142.3,53.1,216.8,151.4,142.6,196.8,102.1,96.5,192.4,170.8,375.2,353.7,212.5,248.1,235,114.8,103.1,111,93.9,100.6,87.2,85.5,69.5,60,111.8,132.1,143.4,75.8,73.5,120.2,84.6,86.4,218.1,99.2,90.8,119.7,122.2,63.7,71.5,70.5,64.6,71.4,130.8,92.7,75.1,93.5,126.4,104.3,118,124,130.6,85.4,86.3,95.5,119.8,95.5,97.7,142.7,95.2,89.4,80.8,75.7,69.9,25.9,103.9,203.6,96.7,33.2,57.4,150.9,113,128,106.7,155.9,86.1,76.5,78,71.8,152.6,291.2,85.8,128.9,88.5,100.9,139.6,117.3,90.5,103.5,105.3,93.5,88.7,123.2,139.7,180,227.8,68.9,36,27.7,12.6,71.3,76.2,67,58.6,110.5,108.6,57.2,74.7,52.1,101.1,78.7,37.5,103.5,90.1,149.4,156.5,68,92.1,59.7,71.2,78.1,77.2,15.1,65.8,86.8,87.9,67.6,88.8,81.9,198.4,380.5,419.5,425.1,572.9,4,550.4,150.3,142.2,137.3,70.2,60.1,61.4,55.3,92.5,75,71.2,64.3,88.4,117.9,111.2,85,43.7,43.9,82.3,69.2,73.1,63.1,99.3,87.9,373.4,546.2,555.3,559.8,472.7,26.1,335.2,819.8,287.5,99.1,67.5,43.1,41.1,51,58.7,20.7,0.2,36.9,70.2,100.8,341,2.9,350.9,290.8,151.4,71.6,55.2,69.3,61.7,56.5,92.4,60.2,63.7,47.4,46.6,49.8,65.1,57.1,68.7,55.3,161.3,190.7,68.4,131.4,53.5,72.7,57.5,52.4,57,65.4,101.1,78.9,49,62.3,68.6,51.8,57.3,41.5,46.4,46.2,39.2,20.4,106.4,105.9,150.9,148.4,278.1,145.1,136.6,177.4,57.5,140.8,77,73,68.9,61.5,56.3,78.7,84.7,158.4,140.1,148.3,84.1,83.2,69.7,91.4,50.8,58.8,106.3,55.7,48.5,98.5,116.1,550.1,86.9,174.1,162.1,132.1,45.4,41.1,35.3,39.8,38.9,34.6,45.6,42.1,66.8,51.7,45.3,51,55.2,58.3,87.1,92.8,75.9,68.4,63.5,68.1,64.8,60.6,51.1,42,35,37.6,60.5,51.5,65.1,70.5,87.1,90.1,48.2,42.1,39.5,58,58.8,50.2,47.3,122.3,136.6,135.1,83.9,81.2,63.7,53.9,60.6,85.1,93.6,142.6,215.4,229.5,191.1,133.7,73.5,55.3,60.4,62.5,46.9,41.4,38.5,35.2,84.4,159.4,215.6,71.4,53.4,50.3,75.7,69.3,66.4,46.7,40.2,4.3,62.6,83.2,72.1,59.1,56.3,53.6,73.6,42.8,48.1,102.6,67.2,68.3,55.3,43.4,44,53.3,27.5,31.3,49.3,51.4,43.9,51,76.7,87.8,25.4,116.3,58.1,53.7,77.9,55.6,50.8,52.4,78.7,60.9,60.2,56.7,61.8,70.7,59.8,62.2,65.1,75.9,45.3,48.7,29,47.9,43.7,53.6,56.7,49.9,41.3,47.7,54,50.4,113.3,96,184.3,176.8,104.8,38.4,45.5,40.4,54.7,56.5,59.1,54.3,46.8,34.8,14.9,12.8,51.9,43.1,64.2,98,67.2,68,41.1,63.6,49.2,17.9,56.5,34.2,33.2,48.6,54.9,176.3,179.8,223.8,252.4,46.9,48.8,53,69.4,117.3,423.5,342.6,145.1,72.1,74,59.2,21.1,50.1,69.4,63.3,157.6,333.8,346,2,249.5,256.3,193.6,234.5,8.9,72.1,62.4,35,44.2,66.6,66.4,57.6,58.6,47.6,52.9,63.7,12.8,191.1,171.9,331.8,11.2,359.4,359.6,620.4,295.2,279.6,66.8,55.8,51,53.5,63.2,59.6,70.1,54.1,65.4,61.5,58.6,69.6,64.2,62.3,47.7,38.7,61.5,73.4,58.6,62.6,263.2,201.9,40.5,29.9,56.3,64.9,52.8,45.9,39,44.9,47.4,43.4,63.9,58.4,144.3,276.4,245.9,133.2,125.3,146.9,73.2,67.4,87.2,172.9,335.7,317.6,105.6,61.4,14.5,8.6,43.4,299.8,38.6,296.2,166.3,148.8,407.6,154.9,143.8,116.8,87.9,106.2,113.4,126.7,114.8,127.9,102.7,113.8,8.9,97.6,91.6,192.8,211.2,149.8,155,84.1,64.7,52.8,76.5,69.7,65.9,67.8,52.9,65,44.3,48.2,72.6,24,87.5,53.5,7.5,31.7,76,70.7,76.2,52.8,52.4,38.8,71.4,70.9,73.3,61.5,93.8,70.5,68.1,87.3,57.2,98.3,90.6,277.4,373.3,184.7,158.6,23.4,68.2,66.9,139,257.5,198.2,270,182.9,219.1,92.4,90.7,97.6,94.6,147.6,107.8,102,109.3,109.2,181.5,169.3,176.4,187.2,240.7,245.1,71.5,186.2,18.4,104.3,49.4,75.7,90.5,43.2,24.7,45.1,127.6,119.7,108.8,71.6,187.7,116.2,147.7,110.4,122.2,189.7,82.6,146.1,106.7,134.8,47.8,108,89.2,84.9,72,58.8,83.4,131,87.9,78.8,130,78,104,107.1,68.6,109.4,77.1,109,84.5,102.9,49.6,59.4,103.2,129.6,86.2,83.6,69.8,75,62.6,74.6,71.4,31.3,32.4,71,68.4,79.5,98.7,41.1,65.5,38.2,65,48.1,42.9,89.7,46.4,162.2,517.6,338,92.8,103.5,74.6,70.6,117.2,131.8,43,57.2,42.9,57.7,54.5,118.5,59.3,121.1,125.1,381.7,495.9,476.2,557,863.3,82.1,72,86.2,90.8,133.9,121.3,55,67.9,47,39.2,38.3,73.7,159.6,95.1,90.7,91.2,93.9,95.4,80.2,211.6,67.8,84.8,76.6,94.9,519.6,89.3,95.5,207.1,494.8,68.6,56.7,54.8,60.7,453.8,73.9,63.7,76.6,84.6,236.6,131.2,84.7,81.9,89.7,86.1,225,81.7,71.5,36.5,36.1,32.9,33,21.9,17,64.8,73.3,118,212.3,151.9,285.1,68,572.6,101.3,92.5,84.5,85.1,709.3,121.2,45,142.7,86.5,84.5,94.2,103.7,466.2,72.2,77.3,855.8,100.3,92.2,84.4,86,80.2,89.3,79.7,85.6,471.9,84.7,80.7,81.1,73,70.2,88.4,93.5,133.9,106.3,108,97.5,84.7,89.9,129,351.3,143.5,78.2,79.6,78.9,75.9,496.3,77,85.1,78.5,85.7,1211.4,160.3,202.6,38,225.1,195.4,94.3,96.4,87.4,88.8,81.7,75,842.2,83.1,93.9,105.7,89.6,75.7,87.4,81.4,546.3,94.1,90.9,81.3,77.7,492.9,75.9,87,89.6,83.1,846.2,96.8,91.1,93.7,90.3,91.2,84,87.8,223,65.9,70.7,82.1,70.1,104,95.5,95.7,94.8,81.1,82.8,85,334,89.2,89.2,907.9,77.7,85.2,72.1,82.5,79.5,1322.5,1.5,81,84,89.3,122.2,169.7,83,75.5,82.2,84.4,365.1,39.1,100.4,94.2,95.1,33.3,65.7,82.4,87.1,87,79,81.8,79.5,786.2,56.3,91.7,87.5,83,64,368.9,55.4,39.1,69.4,50.9,45.2,71.3,79.8,110.9,55.9,24.2,66.1,79.1,71.6,43.9,43.2,170,83.5,74,83.7,95,89,99.3,96.1,83.4,83.2,84.6,73,77.9,73.8,57.2,83.2,191.8,40.8,82,86.2,42.2,46,85.3,78.7,105.4,84.7,144.8,85.9,125.6,97.6,76.3,369.5,106.8,103.4,87.7,97.2,93.2,140.5,248.6,83.1,145.8,68.8,122.5,121.5,97.2,76.8,44.1,31.8,79.5,71.5,84.3,77.6,76.4,92.3,42.2,68.9,87.3,98,95,81.8,46.3,264.2,126,56,62.9,32.5,33.4,24.2,23.5,31.7,27.6,33.2,89,59.6,60.4,81.5,57.9,63.6,27,31.6,6.3,35.9,23.2,15.8,39.3,4.3,18.9,18.4,21.2,26.8,26.2,24.4,16.5,29.7,31.6,33.8,53.3,142.2,87.2,93.3,533.3,115,86.3,111.3,130.2,124.8,93.9,103.8,323.6,125.1,120,131.2,141.5,27.4,26.3,28.4,15.2,20.9,36.8,35.8,34.8,51.9,3.1,76.7,51.8,35.1,34.1,29.5,30.7,41.9,30.2,34.8,29.2,37.7,36.6,30.7,38.2,299.8,24.4,30.2,28.1,32.6,30.7,26.8,27.2,28.7,26,29.6,25,42.1,42.4,41.3,41,20.1,26.8,1.9,34.1,30.9,27.5,29.4,28.1,29.6,57.6,109.5,56.1,29.4,28.1,13.4,27,30.5,17.5,36.9,29.1,28.8,29.5,27.9,26.5,112.2,86.6,188.1,85.9,88.3,75.7,92.3,113.1,116.2,296.8,104.8,91.3,98.4,99.2,86.6,85.9,63.1,65.8,93.5,89.7,25.7,222.9,257.1,99.4,61.9,31.3,92.4,95.6,92.6,83.2,84.9,83.6,126.6,85.4,65.5,65.4,74,101.1,89,64.9,52.4,53.3,58.9,172,50.6,55.5,79.7,94.1,95.8,88.5,93.6,217.5,92.1,94.4,95.5,91.5,97.3,254.9,92.5,91.4,158.5,118.6,86,86.8,86.7,289.1,121.1,110.6,108.9,107.8,108.1,126,89.8,92.4,96.9,92.1,93.5,313.4,79.2,66.1,60.2,67.4,80.7,69.9,69.1,79.9,93.8,93.8,72.2,163.9,116.8,105.6,94.7,92.9,382.3,360.8,160.6,160.5,154,126.8,141.3,65.5,43.2,310.2,251.7,405.7,82.1,15.9,28.1,128.8,95,145.7,125.9,102,130.5,255.1,95,189.3,359.9,119.1,105.5,93,91,101.2,89.6,94.1,93.6,90.6,146,140,154.5,190.4,232.2,82.3,47.9,810.4,156.2,167.4,180.5,20.2,599.8,178.1,166.9,684.3,88.2,86.4,119.9,207,49.5,211.2,103.4,138.1,142.8,173,159.9,134.3,124.5,6.4,136,121,135.9,116.4,412.8,86.6,35.5,71,63.1,25.9,110.9,129.6,130.9,127.9,110.8,125.5,131.2,121.2,142,131.7,702.8,264.2,166,160.7,1566.4,139.5,155.6,155,139.3,140.6,127.3,369.6,349.3,456.5,135.3,137.2,62.9,183.6,43.7,125,73.8,827.5,114,56.5,214.7,136.3,132.5,136.9,127.2,135.2,139.4,110.2,261.3,78.3,127.6,130.3,141.9,134.9,128.8,447.5,125.7,128.3,145,131.2,124.7,85.2,41.5,139.9,133.4,48.7,83.6,56.2,146,144.3,112.6,34.1,43.1,98.7,49.6,18.5,48.3,70,49.7,197.7,95.9,28.3,58.4,51.9,32.6,82.6,27.7,57.5,43.4,33.2,33.9,68.1,127.2,124.1,129,179.5,132.6,123.3,124.6,138.7,119.5,67.1,67.2,134.5,119,120.9,122.4,116.6,131.8,124.9,124,121.7,64,31.4,32.5,128.2,138.2,120.4,59.3,53,66.1,77.9,31,30.4,57,85,46.1,65.8,65.6,114,289.6,33.2,117.3,64.2,31.6,60.2,66.5,42.9,58.7,58.4,63.9,60.9,63.3,63.4,31.1,23.2,72.9,124.8,128.5,87.7,45.9,103.2,115.3,101,23.6,327.8,289.6,123.1,87.9,63.2,64.3,74.4,79.4,284.1,228.9,70.3,343.3,58.8,71.7,78.2,61.2,60.2,72.3,581.3,135.9,123,161.1,369.6,142.6,55.2,63.9,41.5,20.7,66.9,168.6,40.1,126.5,114.8,36.7,20.7,20.3,63.8,121.8,131.9,51,42.6,71.5,103.2,97.3,35.5,398.1,71.2,60.2,43.9,82,186.4,90.6,72.8,50.1,13.8,79.7,64,197.1,8.1,1245,48.8,28.9,31.4,19.6,19.7,179.4,44.5,79.3,110.2,27,52.7,48.6,128.7,3.4,8,171.3,127.3,33.9,60.4,85.9,97.6,48.5,51.2,46.9,55.8,47,52.1,48.8,40.9,55.5,20.9,24.1,46.1,56,57.6,50.2,39.2,51.3,71.3,93.7,51.1,50.8,44.6,38.7,29.4,30,29.2,22.5,32.4,39.3,28.5,49.4,34,83.7,44.8,39.4,48.1,60.9,54.9,63.5,71.5,300.5,68.7,55.4,62.2,152.2,80.3,123.5,198.4,48,63.8,71.9,48.5,70,35.2,35,50.1,46.4,60.6,61.2,471,172.8,145.6,91.6,891.9,132.1,129.8,129.8,126.8,523.2,56.3,39.7,24.2,2.4,126,138.4,141.9,447.9,28.5,408.2,212.9,56,123.6,161.3,132.5,182.8,183.7,148.5,117.4,123.7,473.3,133.8,126.6,140.3,128.5,116.4,412.9,151.2,152.1,156.6,755.9,136.7,127.7,125.3,385.4,166.5,53.5,36.8,39,41,146.7,117.2,22.7,548.6,1379.4,134.8,130.2,439.5,119.5,117,136,128,130.8,295.3,376.6,133.2,125.3,164.2,1314.1,112.8,821.1,147.7,124.4,128.7,138.6,118.1,40.8,89.7,95.6,109.1,50.4,50.2,44.4,14,51.4,51.1,283,257.4,153.8,95.2,58.5,89.7,29.9,10.4,73.6,72.9,736.3,136.7,126.4,86,71.3,97.5,697.7,202.4,314.4,141.5,563.6,143.9,144.4,143.5,610.2,923.6,339.3,594.5,186.6,52.2,101.9,146.9,86.6,43.9,24.4,125.6,115.6,88.1,103.5,85.6,89.8,134.4,43.7,371.9,128.7,134.2,121,135.2,173.3,170.5,131.9,151.6,469.4,162.1,78.3,90.6,160.6,171,585.7,222,382.7,363.8,301.8,269,121.3,123.3,70.1,90,85.1,110.7,258.8,82.8,182.3,148.9,281.5,144.9,11.6,230.8,109.6,86.2,184.5,191.4,153,148,152.1,164.2,158.5,142.3,117.9,68.6,38.1,47.2,43.2,95.3,51,27.6,52.8,127.8,55.3,97.8,138.1,358.8,344.4,134.5,124,129.8,140.1,146.7,217.1,9.2,134.6,141.7,133,139.1,146.6,129.8,159.5,327.2,130.5,146.9,145.3,142.4,323.8,33.2,12,348.5,151,156.5,150.5,156,148.9,151.3,100.1,87.8,97,109.6,104.5,106.7,103.2,961.9,52.2,63.7,98.7,154.4,146.7,228.2,1593.4,130.5,155.4,131.3,908,172.7,64.4,83.7,127.1,130.8,192.9,275.4,586.8,80.3,77.4,107.1,124.6,167.5,247.9,124,108.8,106.1,109.6,284.2,136,125,123.4,124,139.9,128.7,11.8,116.3,48,206.6,80.2,61.7,68.9,83.2,76.8,53.3,54.1,83.4,74,108.9,47.2,50.5,97.9,46.1,63.4,65.7,48.9,64.9,85.8,78.4,95.8,56.5,51.8,19.5,22.4,14.6,13.2,13.7,13.1,14.6,12.1,13.8,13.2,14,13.5,13.3,14.8,12.1,12.8,13.9,13.8,13.1,13.9,13.9,14.2,13.2,13.7,13.6,12.9,13.6,13.9,12.6,15.2,14.2,14.5,13,12.1,14.1,13.8,12.9,15.1,14,14.4,12.4,13.7,14.2,13.9,13.5,13.6,14.2,13.2,11.6,13.8,16,13.6,14.2,12.8,12.3,15,15,13.9,26.5,15.6,11.1,16.4,14.1,13.4,13.6,14.6,13.7,13.5,15.3,12.8,14.5,13.5,13.6,15,13.8,13.6,14.6,13.6,13.4,13.9,13.6,13,14,13.7,12.3,13.9,13.5,13.6,14.1,14.6,15.6,27.6,32.6,72.5,65.9,93,251.1,98.7,95.6,83.7,92.2,86,64.2,119.5,658.7,109.2,70,39,34,39.7,69,170,51.5,90.2,1.6,162.3,34.7,95.4,114.4,98,104.7,133.4,110.7,124.7,778.2,119.8,100.1,97.6,143.3,127,301.5,110.5,119.2,108.9,74,63.9,109.2,287.1,135.7,128,98.5,7,91.5,85,84.8,127.5,109.4,47.9,64.3,126.2,250,83.3,40.9,34.4,43.7,38.5,27.7,24.6,29.7,29.3,53.1,43.7,29.9,26,26,25.4,32.7,38.5,59.3,55.2,70.1,61.3,120.2,139.2,124.8,117.6,131.2,140.9,60.4,80.9,94.3,174.7,150.4,189.8,127.2,70.9,78.8,134.7,508.1,51.6,73.1,121,122.9,90.2,423.1,117.7,151.4,57,44,197.4,128.8,48.5,89.6,67,68.9,130.5,85.7,135.8,55.3,48.4,46.3,60.1,111.7,109.5,68.9,44.1,101.3,146,181.8,131.3,29.2,123.8,122.6,106.9,53.4,61.2,188.7,96.5,48.7,51.1,109.8,142.5,134.4,73.9,51.5,66.6,58.9,65.3,68.5,79.7,71.6,167,28.1,27.2,26.8,28.5,27.5,27.6,27.4,27.1,27.8,27.3,27.7,26.8,27.7,27.6,28.1,27.4,27.5,26.2,20.9,37.9,42.3,40.6,31.9,38,33.4,44.9,76,95.9,179.8,153.1,55.5,40.3,41,30.1,42.4,14.7,15,27.5,27.4,28.5,28.7,27.5,26.6,25.7,27.9,29.3,27.5,26.9,27.1,27.6,27.5,26.7,27.5,26.7,25.1,27.1,28.9,27,28.6,27.8,41,67.7,85.5,68.1,54.2,56.9,12,66.9,48.5,41.9,40.5,27.3,27.3,29.6,28.6,29,26.6,30.1,27.4,26.6,30,28.9,29,27.9,22.1,19.1,54.1,57.2,55.7,389.8,26.8,32.1,38.6,29.9,27.6,28.5,29.5,28.1,27.9,26.6,28.8,27,28.2,26.6,28,28.7,28.4,26.9,28.4,27,24.2,15.3,25.9,26.6,28,28,27.4,27,27.5,27.6,27,26,27.2,27.7,27.1,27.1,26.5,26.5,27.6,26.8,26.5,27.4,27.1,27,33.4,32.1,26.7,37.1,25.6,30.7,26.3,26.9,29.9,25.5,26.8,25.1,25.5,31,28.5,36,58.4,172.2,30.2,27.8,26,25.6,27.9,25.9,29.6,30,25.9,30.4,26,23,24.6,24.1,22.7,21.6,43.1,19.9,74.3,74.4,31.8,48.5,39.2,36.6,43.7,39,41.6,41.9,46.7,40.8,44.2,39.9,145.5,160.7,52.5,48.2,40,35.7,16.7,51.8,36.8,37.6,31.4,33.9,35.4,33.9,35,31,36.4,37.1,37.7,28.8,34.3,38,279.6,65.6,44.7,35.8,36.6,34.5,36.7,33.6,23.8,37.8,27.3,25.7,24.1,30.4,33.5,30.9,34.8,22.8,35.6,36.4,615.8,154.6,70,71.5,127.1,565.7,84.6,34.2,37.2,33.9,38.8,43.1,31.7,28.8,42.3,32.4,36.7,32,29.2,30.3,36.9,28.9,39.9,36.6,20.1,21.2,41.4,40.1,41,77.7,845.9,5.7,87.6,101.2,95.5,59,66.3,58.2,47.1,48.8,45.6,49.4,171,192.6,175.3,180.6,188.9,208.6,166.3,221.3,44.2,220,81.1,179.1,102.4,60.5,68.5,134,184,108.9,31,27.4,57.4,45.1,26.1,42.7,28,42.3,41.4,71.8,250.2,54.1,57.8,56.7,58.8,62.6,59.4,63.4,65.8,248.1,70.5,55.7,72.8,52.7,69.2,52.3,54.8,98.7,57.1,88.3,25.6,23.7,21.7,14.2,18.4,25.9,26.5,21.3,31.5,24,24.1,21.8,26.4,22.7,21.6,18.3,20.2,28.8,27.6,30.9,26.1,40,42.5,42.3,44.1,28.7,27.9,26.5,24.9,20.4,26.6,27.5,26.5,28.7,43.8,27,33.9,69.6,23,19.8,19.1,14.5,14.8,18.3,18.4,20,22.7,24.1,25.6,21.1,20,23.9,17.1,11.4,14.1,14.6,13.7,18.1,16.4,19.5,19.4,22.8,14.7,19.2,23.6,17.7,19.4,16.3,15.8,30.5,27.7,20,33.5,136.3,31.9,36.2,28.1,32.1,29.3,20,17.1,13.8,18.2,24.6,30.2,33.1,19.2,17.2,24.4,26.1,27.8,26.4,34.8,31,38.5,26.6,32.5,21.1,23.1,34.1,43.1,25.5,14.4,16.1,22.7,25.1,27.4,39.5,26.7,17.4,17.8,24.1,24,30.6,20.1,18.5,17.9,18.7,16.3,18.5,17.3,23.6,19,36.4,59.5,66.2,76.9,54.2,97.8,80.2,83.9,59.7,57,103.6,93.7,34.1,31,38.5,25.2,62.5,125,372.3,301.6,9,55.1,34.3,49.2,37,30.2,18.3,17.5,31.9,21.4,19.7,22.1,24,22.4,24.2,30.7,26.9,30.7,22.9,28.5,32.1,24.2,28.4,23.9,42.8,934.7,65.6,45.8,28.8,34.9,37.4,31.2,36.2,29.1,37,129.3,50.9,274.4,122.9,104.3,95.8,96.6,55.6,43.3,34.4,44.3,32.4,24.7,30.9,23.7,30.1,33.5,40.8,25.8,24.4,25.1,39.7,25.5,28.3,25.8,28.8,32.2,42.1,113.5,15.7,28.6,20.9,20.7,18.5,22.9,32.3,23,24.8,42,47.6,23.1,27.2,31,38.6,23.7,32.2,31.4,23.5,48.4,52.3,44.6,33.4,32.7,113.4,50.7,22.2,21.3,18.6,21.9,19.9,19.4,20.2,16.6,20.3,19.2,15.5,17.3,19.3,17.2,13.3,19.5,27.6,43.9,131.2,198.5,196.7,140.7,19.9,5.2,25.7,21.5,19.8,27.4,24.5,23.3,22.1,21.1,20.1,28.7,27.6,25.1,21.7,25.6,28.6,35.7,52.4,63.1,44.8,107.7,29.5,85.4,381,49.1,36.1,33.1,26.8,24.3,30.8,33.1,24.1,23.3,28.3,30.2,28.2,27.8,52.9,75.7,342.5,34.5,40.3,27.8,25,28.4,14.3,29.5,17.6,37.1,29.1,26.7,30,39.4,28.2,29.9,28,39.8,28.1,27.8,28.6,28.8,28.7,22.5,33.8,54.3,166,172.4,94.7,40.1,31.5,30.6,37.8,43.5,28.6,30.4,24.6,29,30.2,29.1,25.9,108.7,126.2,256.2,95.2,57.8,74,889.4,23.4,20.6,24.5,24.1,17.9,15,15.2,14.4,15,14.7,16.5,17.3,69.1,149.2,155.8,26.3,16.9,20.7,15.1,17.7,15,15.2,13.3,15.3,16.4,15,20,15.8,8.3,23.2,20.5,11.3,21.1,24.1,37.6,59.1,150.1,224.1,78.1,113.5,57,136.3,124.7,114.5,110.4,112.6,714.7,668.7,141,131.9,114.4,113.9,125.7,129,829.7,361.3,76.8,26.5,17.9,27.2,25.3,26.2,26.3,14.4,25.5,19.3,24.3,28.6,25.8,25.3,29.5,22.6,16,28.1,29.5,79,137.2,246.3,181.4,136.5,118.6,105.8,229,29.8,71.1,144.5,242.3,147.8,99.6,41,54.6,29.4,31.3,18.1,16.8,22.4,15.6,24.8,26.4,15.2,26.6,28.3,16.1,27.8,13.4,14,12.5,13.6,13.5,11.2,14.9,10.2,17.9,18.9,17.5,11.6,45.6,364.9,33,28.2,83,108.1,108.3,105.1,145.7,657.9,135.9,122.4,317.3,109.3,97.6,220.6,103.2,108,120.7,243.7,129.6,106.9,178.6,460.7,84,90.7,146.9,131.1,399.5,128.2,112.4,41.5,151.2,374.3,58,27.8,31.3,32.4,23.5,29,26.3,38.3,27.7,17.2,24,17.4,17,26.7,27.6,26.9,22.9,25.4,22.2,17.3,20.1,23,27.5,23.6,77.4,74.5,60.5,58.4,39.6,37.7,78.2,29.6,38,25.3,27.1,24,39.8,28,31.3,29.7,21.8,33.3,48.3,39,32.4,37,38.1,53,36.8,37.5,36.4,30.9,30,29.8,134.7,39.4,40.6,29.4,28.6,33.5,34.1,29.2,46.4,31.7,35.6,27.5,27.3,28.7,37.2,45.9,33.2,36.8,36.4,29.8,28.3,28.3,25,25.4,35.3,35.2,132.2,216.8,27.9,39.2,36.2,28.3,26.3,25.5,25.4,27,29.2,56.7,52.9,41.3,41.8,27.7,23.8,20.1,26.7,14.3,18.2,24.2,27.1,43,40.7,42,28.1,28.7,16.1,15.6,299.9,38.7,45.3,29.9,29.2,30.8,32.6,21,15.3,20.4,22.9,28.3,39.1,30.6,21.2,14.1,27.8,32.4,40.5,19,25.5,38.8,33.4,28.2,25.2,41.1,91.4,81.7,42.5,224.1,53.6,12.7,63.7,55.1,32.9,42.9,40,32.4,22.8,33.8,34.4,19.7,30.6,30,38.3,39.6,35.9,27.3,33.3,98.4,162.2,78.7,227.7,16,20.6,16.7,15.8,26,24.2,23.4,22.9,25.1,32.5,25.6,18.6,15.9,55,556.7,167.4,170.7,225.6,281.8,64.1,149.5,77,46.8,137.4,154.8,132.2,1025.5,109.9,75.3,61.6,61.4,68.3,65.2,103.9,706.9,131.6,103.6,102.2,370.8,250.3,118.1,112.8,64.3,66.2,60.9,56.1,60,112.5,48.6,24.6,23.4,24.6,22.5,21.2,22.2,22.9,25.7,27.1,22.7,29.1,28.5,23.4,26.1,23.9,24.8,45.5,41.1,163.7,121.3,236.6,98.2,88.7,87.1,69.2,55.1,55.1,88.4,242.5,194.7,136,538.7,72.3,75.4,101.9,70,70.3,404.3,91.5,42.3,143.8,445,212.1,114.7,23.5,157.2,302.4,62.9,65.3,62,49.3,58.5,61.9,124.9,132.4,114.6,128.7,340.4,118.6,48.5,50.6,46.4,54.1,48.9,51.6,99.7,162.1,50.6,31,38.4,33.5,22.5,24.5,39.4,38.4,29.2,56.6,525.3,153.9,111.6,39.2,21.4,374.3,43.9,39,163.8,24.6,52.3,55,52.2,486.3,140.7,112,487.5,74.1,75.4,88,108.8,1805.7,299.2,137.8,101.2,95.7,552.5,129.2,146.4,102,135.2,118.9,110.1,1489,105,3.8,95.1,263.7,250.4,61.9,129.2,176.3,120.2,87.6,156.2,200.1,159.3,66.5,57.4,31.5,27.5,26.6,21.6,60.1,142.8,38.1,33.6,82.8,68.2,97.7,68.3,79.1,84.1,103.4,147.4,112.2,112.4,144.7,149.7,179.3,221.5,231.1,158.3,125,136.5,136.9,175.6,125.2,133.8,141.2,176.4,218.6,312.1,145.8,107.4,114.5,110.7,95.9,148.7,79.8,71.1,151.3,124.6,98.2,179.1,265.8,133.2,145.6,342.6,159.3,160.2,191.7,452,111.2,118.8,119.9,83.8,112.6,188.1,138,140.3,141.1,411.6,176.5,105.6,76.9,59.4,84.9,100.6,93.7,133.5,52.5,90.2,167.4,89.1,157.5,447.8,196.3,167.1,94.1,68.2,119.7,130,148.3,194.4,194.8,165.6,331.9,5.1,101.8,101.9,99.5,118.9,98.8,103.2,80.3,87.7,105.7,208.6,121.1,84.1,110.6,163.7,232.3,202,258.3,159.9,292,108,116.5,113.1,158.3,122,106.7,137.6,96.3,123.2,118.6,397.4,88.4,78.7,92.4,93.9,98,89.8,139.2,146.7,619.8,118.3,234.7,223.1,29.8,135.6,123.4,155.2,169.9,94.2,102.6,47.3,349.3,169.5,136.2,182.5,47.1,96.4,149,141.1,142,29.3,129.9,168.3,110.1,31.5,51.3,163.1,114.6,111.2,112.3,120.8,94.3,43.7,55,144.6,45.9,74.9,164.4,348.6,82,63.3,103.7,89.2,127.3,124.8,92.4,84.3,98,65.2,56.8,74.3,88.9,129.4,128,181.5,98.9,41.8,42.2,129.7,192.1,111.7,187.4,212.1,172.3,81.6,94.3,50.8,105.3,82.3,127.4,137.3,74.7,140.7,50.3,113.7,136.8,46.9,115.2,51.7,75.2,159.7,112.4,106.2,43.4,84.2,59.9,49.4,48,79.5,90.6,52.5,46.7,100.2,27.8,178.2,63.9,121.9,116.8,163.1,272.3,191.5,162.8,101,68.3,79.5,89.3,59.5,103.2,70.7,105.5,51.6,107.4,90.4,90.4,102.4,85.7,66.3,73.7,96.1,84.8,69.7,68.2,72.7,66.4,74.8,106.8,85.3,108.9,91.4,102.9,79.5,82.9,18.9,87.3,97.2,93.5,114.4,120.1,111.7,133.9,100.3,158.8,104,155.6,105.7,164.2,246.8,242,163.8,109.1,150.4,129.1,191.7,279.3,161.7,87,143.8,54.4,104.7,157.1,176.3,137.1,71,189,118.1,249.2,272.1,452.4,105.8,22.3,77.6,219,195.7,213.7,208.1,249.8,167.2,234.8,205.5,61.8,333.9,303.9,332.6,213.7,184.4,184.3,162.2,238,423,228.2,38.8,123.5,218.9,148,262.4,226.8,148.2,186.3,307.2,159.7,171.8,178.6,236,209.3,171.2,174.1,160.5,112.7,186.5,182.7,171.9,156.9,199.6,157.9,168.1,201.1,89.7,86.6,77.8,128,46.4,82.9,78.4,155,27,42.3,19,80.3,88.2,88.3,120.8,121.5,183.5,61.1,167.4,66.4,128.9,135.7,204.2,219.8,64.7,157.4,204.6,128.6,157.9,83.8,69.2,104.1,270.7,145.4,150.8,162.3,164.4,155,178.7,61.4,83.7,106.1,139.4,86.2,114.6,137.2,135,147.4,122.6,147.8,146.1,153.4,173.1,211,224.9,142.9,134.2,125.2,4,138.5,182.3,100.5,120.8,117.7,101,130.2,111,111.5,159.6,190.5,138.6,162.9,151.2,212.8,256.5,71.1,23.3,56.7,120.5,133.2,96.1,97,127.2,120.3,123.1,125.9,103.6,191.8,281.3,102,121.3,193,122,87.3,115.6,102.7,106.1,121.9,145.8,125.1,108.9,142.4,161.8,274.1,181,205.8,494.5,135.8,140.4,112.6,128.2,135.5,129,127.6,51.9,79.1,166.4,41.5,42.3,133.6,50.8,39.7,74.8,26.9,140.2,27.2,100.1,61.9,66.2,215.4,191.6,122.7,87.9,94.2,156.8,35.5,42.7,89.2,251.8,66.9,69.1,58.6,71.7,179.9,82.5,87.3,140,140.8,60.4,193.5,159.2,120.5,245.1,238,286.5,307,613.2,386,289.4,289.1,225.2,110.3,139.5,125.5,73.2,46.5,73.2,46.2,93,57.9,59,60.4,62.4,169.4,47.9,63.5,85.1,61.8,16.5,45.6,88.8,42.8,134.2,85.8,32.5,109.2,142.4,148.9,55.3,75.3,55,57.7,126.1,117.4,92.8,128.9,128.4,134.1,123,107.8,63.7,64,43.3,74.8,117.2,20.4,89.2,65.8,54.8,58.1,93.3,40.7,84.6,36.2,443.4,118.4,113.2,104.4,244.8,102.6,92.1,90.8,89.7,262.7,123.7,80.2,98.5,112.6,125.1,329.4,325.1,215.5,54.1,310.5,53.5,115.4,715.4,676.6,62.1,63.3,167.6,146.7,112.5,67.9,88.6,125.9,201.1,297.2,73.8,72.5,163.1,84,60.1,61.1,77.1,132.1,75.7,36.8,60.4,106,36.8,44.3,16.6,16.3,96.9,72.9,77.7,32,28.7,34,61.1,45.3,110.2,109.6,115.6,116.7,263.6,108.4,56,120.2,38.8,377.6,415.5,65.8,99.8,153.8,115,140.9,162.4,161.6,94.3,107,108.4,102.4,122.4,154.5,183.1,306.3,68,72.2,66.2,65.1,69.5,55.3,65.4,226.6,343,361.3,263.7,275.5,124.6,117.8,138,943.3,620.3,264.5,78.7,275.2,456.2,37.3,84.5,123.5,61.3,60.6,34.7,46.4,47.6,45.6,45.9,90.1,126.3,44.7,83.2,39.2,38.4,48.9,49.3,289.3,289.2,291.4,150.8,229.7,226.2,14.8,86,81.5,9.8,5.7,13.3,13.8,12.2,12,16.4,16.4,14.4,14.7,19.7,28.6,38.6,38.7,22.7,19.3,18.6,15.3,15.8,17,52.1,14.4,11.7,12.9,21.2,23.3,14.7,18.9,11.7,14,13.9,15.2,13.5,14.8,12,7.3,7.2,8.8,11.1,10.5,14.8,12.9,9.5,8.9,10.2,12.1,14.5,13.6,11.3,11.1,12.2,13.1,12.1,13.5,13.8,12.8,15.3,13.9,19.7,22.8,24.9,54.4,42.6,29.8,44.6,54.9,28.3,73.6,67.2,38.1,10.2,12.4,12.1,10.1,9.1,12.5,12.6,12.4,13.9,11.5,17.6,21.2,30.9,32.7,13.3,8.8,13.3,25.6,11.8,12.3,13.9,15.5,16.1,15.4,12.1,13.2,16.9,13.2,67.2,67.3,28.8,36.5,35.1,36.5,69.7,22.6,43.2,35.8,29.9,12.3,12.5,40.3,41.2,40.9,68.1,40.7,40.1,43.7,29.5,23,58.7,42.6,9.7,53.4,228.6,68.1,82.8,352.4,71.7,77.2,38.7,5.4,139.2,38.4,55.3,155,44,36.4,5.8,63.6,22.8,31.2,3.7,130.6,53.7,10,44.5,115,105.4,53,37,35.5,28.6,29.9,45.3,46.1,7,50.8,45.4,10.6,17.4,5,6.7,25,55.9,17.4,33.9,5.6,12.2,7.2,6.1,5.3,6.8,14.1,13.5,13.5,13.5,13.5,12.8,12.9,12.8,7,14,22.7,23,88.9,73.2,70.4,106.2,33.2,31.5,17.5,28.4,5.9,5.1,6.6,54.4,4.3,4.2,4.3,6.6,27.1,68.5,45.9,27.2,10.3,12.7,2.2,62.4,44.8,8.2,5.5,0.7,3.8,4.3,3.6,4,4.9,3.7,3.6,28.7,14.6,39.1,19.4,20.8,35,11.6,10.7,97.6,99.4,200.3,67.5,36,4.3,14.5,37.7,43,80.4,57.5,12.3,9,54.7,113.1,80.8,68.3,9.1,36.8,94.1,10,28.6,133,81.1,4.3,24.2,13.2,46.6,9.2,11.2,98.5,21.3,213,7,7.3,47.7,7.5,130,10.3,21.3,6.4,10.4,9.1,6.1,10.8,46.2,191.4,12.6,21.5,202.5,14.5,197.7,20.6,9.3,8.4,77.6,76.2,40.1,120.3,52.8,8.2,16.8,213.5,76.8,59.9,21.8,27.1,31,40.4,24.8,33.5,34,10.2,10,9,8.4,29.2,18.9,7.9,13.3,5.7,30.4,33.3,29.2,72.2,73.5,35.8,9.3,24.1,8.1,16.4,65,25.9,21.2,10.6,33.8,23.4,9.9,30.1,16.6,12.7,98.3,10.7,12.8,89.3,30.3,14.9,45.6,8.7,6.3,4.8,16.7,22,9.4,12.6,30.7,15,98.3,19.3,3.3,50.9,18.6,26.6,12.3,33.3,28.2,42.8,62.4,25.8,7.6,64.6,92.3,6,5.8,5.2,6,5.2,4.6,4.6,4.6,6.5,7.1,7.6,5.8,6.2,5.3,6.8,5.1,3.5,5.7,49.1,1.7,2,2,1.5,1.9,2.8,4.3,4.3,10.6,21.5,32.2,43.6,5.8,11.1,1.1,8.6,21.7,4.1,4.2,3,2,3.9,11.1,6.5,24.3,8.4,26.9,11.2,10.1,13.4,4.5,29.3,61,7.8,19.4],"duration":[22.087,16.805,9.226,0.255,4.933,4.553,7.015,1.913,11.232,1.44,1.588,0.716,3.031,2.743,7.104,1.844,1.377,1.317,1.325,1.296,0.589,2.077,1.396,0.674,8.8,3.2,1.918,1.121,0.039,0.587,0.321,1.615,2.52,0.745,3.332,5.525,12.343,2.914,0.9,0.815,2.236,2.236,0.693,12.437,5.587,5.576,2.743,4.807,2.141,0.774,2.065,2.789,0.826,4.455,1.309,1.712,6.015,1.721,13.298,3.906,0.684,2.455,3.92,10.488,3.135,0.031,2.164,0.596,2.275,3.911,1.975,2.539,0.061,4.546,0.692,0.668,0.584,1.314,1.041,7.184,0.82,0.797,3.284,2.594,1.142,1.008,8.212,18.337,0.629,0.671,14.407,5.4,0.453,0.753,1.34,1.608,1.958,1.339,2.12,1.023,1.064,1.166,0.79,0.424,0.528,1.086,4.05,2.25,1.798,0.902,1.672,0.92,0.775,1.071,1.039,0.815,1.049,0.636,10.651,1.995,1.479,1.323,2.09,2.224,1.249,3.003,20.797,0.713,0.838,2.788,1.988,1.906,2.414,0.935,1.159,3.409,1.879,1.662,2.715,2.671,1.171,0.402,2.936,2.711,3.752,1.447,1.879,3.15,1.034,1.159,3.17,0.737,2.435,3.325,3.231,0.198,2.294,3.6,1.137,1.77,0.7,2.673,1.416,0.477,0.662,1.238,6.73,0.167,0.332,3.939,0.633,5.955,4.39,3.763,3.763,2.668,0.633,6.111,2.626,1.729,1.724,0.765,18.105,2.514,0.897,0.988,1.31,1.836,0.825,2.268,1.095,3.5,2.264,7.29,1.293,2.064,1.035,5.921,0.778,2.855,2.836,5.73,6.614,1.028,1.808,2.322,1.679,2.036,1.706,1.971,0.662,2.708,2.728,2.212,5.651,14.727,1.581,1.521,2.514,2.248,1.468,0.318,2.304,0.327,14.072,0.346,0.818,1.626,1.286,1,1.283,0.45,2.9,1.144,1.597,3.998,1.115,0.802,0.489,0.313,3.311,0.456,2.908,0.682,0.36,0.368,0.709,6.852,3.716,1.394,8.557,7.083,1.862,1.415,0.778,0.46,0.607,0.644,1.101,1.291,0.139,3.026,3.207,2.823,3.276,3.2,2.421,4.174,0.487,1.2,0.381,13.68,5.061,2.48,0.501,0.607,0.89,3.296,1.049,0.714,0.239,0.184,0.765,0.255,6.579,2.462,7.103,10.357,3.125,2.932,2.298,0.334,2.144,2.316,2.038,2.047,1.488,2.013,1.863,2.818,1.971,2.037,0.583,5.04,5.143,1.344,2.021,0.52,6.808,3.831,3.608,5.939,3.174,2.847,1.925,3.207,0.847,0.367,5.4,4.447,1.568,5.224,3.677,0.368,4.72,1.872,0.499,0.48,1.327,2.571,2.383,0.214,2.421,0.39,7.197,0.78,1.343,3.913,1.271,1.628,2.758,0.779,1.158,1.971,0.808,0.457,0.233,2.857,15.706,0.787,0.826,14.954,2.116,0.049,3.499,2.662,1.153,2.298,3.619,0.569,1.6,14.575,0.785,2.661,2.351,1.651,1.883,3.342,5.188,2.614,5.286,0.711,1.793,2.534,5.241,5.001,1.252,0.656,2.063,3.616,2.91,2.621,3.879,5.919,1.35,1.938,1.727,3.27,8.4,12.033,2.075,3.859,1.908,2.208,0.975,1.698,0.789,1.339,2.618,1.061,2.033,2.194,2.099,2.97,1.657,1.782,4.11,0.615,3.406,3.226,1.73,2.634,2.335,1.269,2.418,1.374,1.345,1.337,1.679,1.982,1.95,1.012,0.019,1.171,1.128,1.243,1.964,2.403,4.032,6.305,9.336,1.153,4.294,5.278,11.647,3.893,3.46,3.129,4.581,7.728,5.255,2.521,1.809,1.81,2.309,1.211,1.187,1.155,1.152,2.603,1.407,1.486,1.589,1.797,1.597,1.778,2.34,0.941,1.257,2.183,1.365,1.374,2.136,2.536,1.849,2.016,1.401,1.348,1.134,1.862,0.277,3.478,3.487,2.182,1.877,2.513,3.128,1.252,1.078,1.149,1.374,1.04,0.977,1.482,0.77,1.072,0.796,0.694,0.601,0.742,0.933,0.876,0.679,0.634,0.879,0.874,0.869,0.836,0.792,0.694,0.761,0.791,0.944,1.117,0.802,0.655,0.649,0.669,0.755,1.44,1.516,3.413,4.118,0.523,1.617,4.8,1.163,5.511,1.689,2.193,5.044,4.498,7.997,3.585,12.758,14.341,0.435,3.244,2.851,1.949,8.865,0.975,10.738,8.339,0.256,3.045,2.592,3.868,24.497,6.68,3.165,4.657,3.371,5.102,5.668,1.554,7.072,2.617,6.266,8.137,13.72,1.819,12.811,5.642,4.021,3.445,12.862,1.373,9.71,10.303,11.616,12.658,1.659,10.598,8.44,0.978,5.77,11.638,3.448,1.948,1.366,4.691,1.605,1.165,0.832,0.772,1.53,1.265,1.44,0.733,0.858,1.783,0.85,0.937,2.554,0.408,2.542,6.241,10.268,3.067,1.216,0.947,1.2,0.478,0.595,0.545,0.719,0.441,0.506,0.888,1.096,0.691,0.885,1.556,1.41,1.983,1.205,2.807,1.175,1.336,1.613,1.107,1.059,0.634,1.205,0.936,0.876,1.24,0.705,2.182,14.579,3.684,5.295,2.429,2.762,1.778,0.622,3.911,0.788,5.42,0.631,0.795,0.439,0.895,1.057,1.902,2.244,1.335,1.79,1.729,2.344,1.177,1.138,1.472,1.412,2.173,14.303,14.612,6.396,1.432,0.889,3.116,3.518,5.482,3.816,1.626,1.654,1.681,1.245,1.098,1.039,1.299,1.437,1.458,1.168,1.42,1.062,1.148,1.124,0.973,1.131,1.156,1.243,1.117,1.132,2.394,14.645,19.532,1.617,1.117,1.081,1.402,1.111,1.218,1.144,1.164,0.926,0.895,1.036,1.056,0.893,0.958,1.241,0.879,0.938,1.391,1.122,1.743,2.574,2.828,12.793,1.344,1.204,1.412,1.141,1,0.967,0.789,1.143,1.291,0.717,0.737,2.219,1.248,6.584,2.495,2.424,2.26,0.356,3.587,3.338,4.716,2.472,3.109,1.214,1.225,0.936,1.296,1.056,0.654,0.324,0.324,1.014,0.745,0.287,1.136,1.715,1,2.188,1.933,1.247,1.356,11.438,1.711,2.02,1.752,1.715,0.629,2.444,1.892,2.344,2.09,1.782,11.832,7.984,6.042,6.788,26.861,2.787,2.157,2.373,2.471,2.381,4.005,3.515,2.22,2.384,2.158,2.218,2.497,2.768,2.958,2.335,3.903,10.991,2.388,8.537,0.935,6.781,6.082,6.683,2.194,3.255,2.208,2.499,0.276,1.282,1.297,1.215,1.73,0.86,1.303,1.244,1.204,1.173,1.3,1.222,1.241,1.297,2.409,7.485,5.917,1.938,5.913,11.401,1.562,5.632,2.317,4.454,1.512,1.212,1.282,7.863,2.032,1.592,1.129,11.749,4.592,8.012,8.902,1.503,1.381,1.085,0.879,0.856,0.79,0.933,0.874,0.699,0.962,1.098,1.285,1.364,1.412,1.1,0.987,1.081,1.295,1.222,1.222,1.414,1.436,1.216,1.197,1.194,1.174,1.51,1.997,2.716,2.663,4.463,0.979,2.536,12.961,8.162,1.246,7.445,13.117,5.408,3.411,1.885,1.97,1.89,1.753,1.546,2.119,1.377,1.774,1.253,1.601,4.181,1.956,2.118,1.152,2.206,1.756,1.598,0.612,0.982,2.042,2.226,2.238,1.327,1.872,0.315,1.579,2.414,0.9,1.503,2.69,3.531,1.702,0.577,1.909,2.005,13.663,6.149,5.297,2.302,2.001,2.077,2.276,2.338,1.913,0.387,1.874,0.529,1.599,0.017,1.985,3.797,5.162,4.696,13.024,5.396,6.123,10.977,2.34,7.236,4.525,5.267,2.557,2.423,2.364,2.787,1.899,1.126,0.551,2.004,5.344,22.531,7.949,3.77,6.43,7.88,2.92,15,14.12,1.305,17.455,14.56,20.627,3.773,3.48,3.126,0.979,1.371,0.434,1.44,1.267,1.374,1.355,1.171,1.251,1.111,0.756,0.452,0.827,1.112,1.016,1.147,1.018,0.917,0.995,1.047,0.953,1.284,0.675,1.241,7.156,3.836,2.614,8.529,17.7,3.214,1.615,1.206,1.995,17.192,7.57,11.335,1.432,1.071,4.865,2.383,1.872,3.703,10.707,1.936,2.991,1.034,2.814,2.497,0.045,2.628,0.627,3.819,3.52,5.623,1.982,1.305,1.881,5.902,1.216,3.626,6.634,2.321,5.795,5.224,2.371,0.615,11.897,13.021,1.562,0.476,0.351,12.6,1.342,1.248,1.429,1.603,2.001,1.64,2.546,2.113,1.909,1.606,1.652,1.207,1.955,3.61,3.048,1.513,1.637,3.319,3.148,3.134,3.071,3.318,2.963,3.212,3.236,3.431,3.106,3.105,1.822,1.499,3.155,3.101,2.582,3.204,3.161,2.263,0.966,4.381,3.989,4.547,2.363,2.053,0.885,7.792,8.692,4.986,3.036,4.165,4.502,4.119,4.13,2.472,2.385,5.094,1.404,8.162,3.665,3.865,3.321,4.709,19.468,6.531,12.058,11.173,0.991,4.015,5.614,2.654,2.174,4.549,1.865,5.115,4.151,3.772,3.936,4.221,2.997,3.493,2.932,10.373,3.253,1.398,2.264,8.284,4.109,1.515,1.656,1.689,2.243,2.431,3.38,2.404,4.66,3.726,3.453,4.577,1.004,0.987,1.605,4.415,24.932,2.26,6.579,4.103,2.242,4.381,2.069,3.691,3.114,1.511,3.227,0.485,5.296,5.178,4.192,6.406,6.406,13.583,6.015,0.008,5.963,0.79,7.505,8.247,14.744,0.012,3.002,2.864,3.183,2.175,1.619,6.233,2.101,3.7,3.58,5.69,2.68,6.612,2.717,3.232,7.509,7.515,1.083,3.123,0.901,1.545,2.584,4.096,5.085,3.273,8.323,17.344,20.081,3.848,13.565,16.365,10.408,2.443,22.669,9.243,15.034,1.915,3.353,3.99,0.935,0.504,2.185,2.679,2.349,3.689,3.446,6.188,6.19,0.566,15.605,12.016,6.263,6.061,3.319,5.038,1.936,1.646,5.32,1.157,12.792,16.841,6.353,6.328,7.462,3.105,2.975,8.219,8.833,3.863,2.991,2.548,1.482,0.847,1.649,2.268,2.029,2.56,5.787,1.269,9.322,6.547,11.508,5.814,5.77,6.014,5.693,5.679,5.598,10.409,2.395,1.019,5.479,5.267,6.865,7.063,2.926,2.126,14.126,14.823,11.092,10.821,5.733,5.81,0.115,4.862,3.555,2.163,3.804,4.038,7.96,0.814,5.384,4.265,3.195,12.582,1.837,2.217,0.784,1.631,1.882,2.477,2.322,2.176,6.564,3.41,1.869,1.921,1.138,1.116,1.171,1.108,1.225,1.391,2.443,1.622,1.228,0.726,0.715,2.729,1.955,1.983,1.887,5.378,2.163,1.601,1.085,1.133,0.161,1.246,1.233,1.659,1.337,1.736,1.614,1.405,2.227,1.847,2.044,10.009,1.735,1.758,1.725,1.775,1.824,2.017,2.283,3.533,4.524,1.606,0.845,4.168,1.532,5.86,2.33,8.347,3.926,2.29,1.318,0.947,0.709,2.827,4.767,1.001,4.003,5.001,4.813,4.834,4.847,4.993,3.359,4.467,7.483,6.977,3.171,3.495,2.751,2.377,5.44,6.001,2.87,7.566,5.687,4.106,5.185,6.078,1.319,1.11,0.764,4.948,4.765,1.758,3.124,1.4,5.993,3.6,5.785,3.591,3.575,3.936,11.243,5.554,6.871,4.097,2.976,7.63,5.549,3.835,3.496,5.376,3.086,6.046,7.309,7.484,8.264,6.818,0.995,4.152,5.03,3.433,1.434,1.43,3.414,1.523,0.912,0.066,2.951,5.985,6.244,0.61,1.129,4.34,6.787,3.841,2.449,6.926,1.066,1.193,2.437,0.817,1.618,0.69,2.602,2.571,2.664,2.404,3.606,1.966,1.916,1.934,2.044,2.131,2.263,2.716,1.655,4.609,4.951,13.24,16.199,0.244,14.64,9.465,13.969,17.608,8.586,1.474,17.505,6.269,3.59,3.739,1.823,1.932,3.401,3.229,2.335,1.191,1.106,2.025,2.426,2.545,2.432,2.373,2.633,2.223,2.304,14.19,32.031,1.939,3.246,1.583,2.091,1.549,2.094,1.435,2.158,3.362,1.971,2.048,2.267,2.266,4.133,2.643,5.29,5.451,11.001,4.845,4.767,6.022,8.091,0.595,3.178,1.863,1.224,1.504,5.667,8.198,1.248,4.683,15.932,1.512,5.776,3.719,2.617,3.15,3.112,4.683,4.671,0.755,2.247,1.557,1.756,3.057,2.077,2.221,1.983,1.894,1.803,2.223,2.319,1.772,6.275,3.991,3.428,1.341,0.86,0.723,0.727,0.629,3.384,1.42,8.018,5.312,4.921,6.974,5.675,2.985,1.153,2.17,13.424,11.992,3.473,3.247,3.011,4.703,0.455,5.77,2.755,2.717,4.023,1.4,1.502,1.538,1.66,1.672,1.279,2.956,2.151,2.065,2.392,2.421,2.17,1.671,3.284,2.14,0.722,1.63,0.365,3.183,2.449,1.568,3.206,3.792,6.046,5.07,3.294,3.363,1.564,1.196,2.825,0.17,4.325,3.174,1.702,1.726,1.879,2.135,2.636,1.477,1.034,15.336,1.001,2.702,4.273,3.899,4.428,1.281,0.944,2.866,1.426,2.202,0.751,4.639,1.142,6.248,3.169,3.152,2.757,2.707,2.952,1.408,1.374,1.5,0.976,12.083,2.922,11.999,4.245,2.731,1.956,2.408,2.289,2.192,1.233,1.389,3.858,4.128,7.229,14.706,9.135,1.431,1.219,6.92,4.679,5.144,4.282,0.518,1.509,0.747,6.769,4.188,5.749,2.769,2.513,2.739,2.649,1.906,2.334,3.71,2.984,3.176,1.007,3.185,13.287,35.336,2.012,8.493,5.518,5.686,4.106,3.91,4.724,5.49,4.13,6.218,15.547,10.972,4.616,3.471,3.834,0.928,4.306,1.729,5.493,0.857,5.328,6.349,2.107,6.163,2.683,1.359,0.95,3.099,3.262,3.28,3.153,3.159,4.299,4.336,6.709,4.575,3.154,8.298,9.477,6.514,1.326,8.234,1.248,3.562,3.288,3.894,1.338,7.518,1.456,6.822,4.06,11.181,5.597,2.915,5.807,0.907,2.167,4.833,37.067,1.059,0.568,1.679,29.393,1.105,39.673,35.08,1.176,7.924,40.551,1.996,11.555,6.453,10.099,1.396,8.621,8.132,1.589,6.445,7.873,3.242,4.08,4.371,4.027,6.309,1.782,0.975,4.055,0.823,1.461,0.934,6.095,1.134,7.074,8.859,0.558,8.217,1.941,6.508,18.04,0.134,16.857,1.503,5.85,2.537,0.651,5.383,0.649,1.141,1.622,5.65,0.713,5.917,4.491,0.748,1.925,1.61,1.255,2.374,3.113,0.884,2.698,1.971,1.096,1.694,2.279,2.152,3.34,2.459,2.861,3.264,1.409,14.823,1.728,12.635,2.896,17.638,6.782,1.825,2.108,2.468,1.737,2.02,1.793,1.832,1.822,2.158,2.008,2.033,2.664,1.932,2.159,2.671,3.088,10.129,2.674,5.564,1.315,8.508,0.7,4.324,3.979,2.707,2.813,3.516,1.873,2.173,2.258,2.519,2.838,3.378,2.524,1.838,4.653,11.435,5.042,3.017,7.242,2.063,2.576,5.101,9.922,1.2,6.82,0.5,9.266,12.94,5.568,2.209,6.875,7.14,1.318,11.053,6.812,5.502,5.081,7.439,5.997,3.867,3.994,2.18,2.037,4.059,7.016,6.838,0.191,12.844,5.063,5.472,0.965,12.215,3.617,12.508,2.89,2.311,4.717,2.403,1.099,2.757,2.111,2.039,1.394,0.111,1.877,2.596,9.578,1.93,1.27,1.315,4.845,4.454,1.336,7.971,1.34,9.526,3.801,3.987,1.328,4.684,4.249,4.36,3.734,0.488,4.378,13.313,0.45,13.627,4.536,0.797,5.241,2.377,3.254,2.096,1.371,0.294,2.456,1.32,3.651,2.381,1.647,3.406,3.93,3.517,0.548,6.415,5.913,5.148,10.229,0.89,8.169,16.066,0.525,2.124,14.306,4.159,10.49,5.173,2.495,0.511,4.462,0.375,1.821,7.793,6.068,1.259,1.059,3.133,2.035,8.765,5.447,0.616,1.115,7.932,2.274,1.707,7.388,2.369,0.568,1.534,6.187,3.079,2.968,7.877,2.692,4.56,4.815,3.825,2.61,0.332,6.794,8.575,1.754,12.987,14.511,7.653,0.606,7.305,3.139,2.197,9.673,9.672,7.632,5.206,1.231,4.036,1.639,2.25,4.366,2.908,0.354,2.699,3.119,1.035,2.31,3.385,4.577,4.028,3.669,2.509,1.016,2.813,2.715,1.641,14.468,4.625,9.827,7.603,1.167,2.516,8.086,8.246,2.259,3.596,11.655,7.536,5.874,2.212,7.86,5.779,2.43,1.273,11.63,4.1,2.602,1.883,4.117,4.32,5.952,4.051,0.461,1.956,6.793,13.609,9.33,0.913,4.5,0.711,7.12,1.381,1.899,3.099,4.009,7.27,2.038,2.088,2.047,1.728,4.731,5.322,5.047,4.085,1.799,1.865,2.262,0.998,5.633,0.403,6.501,1.198,5.652,13.854,2.011,10.505,6.041,4.631,1.89,6.531,6.396,2.025,3.571,5.323,1.513,10.065,1.249,0.866,0.352,6.627,1.8,0.6,0.881,8.428,9.551,9.726,2.777,13.034,0.717,17.868,10.639,1.889,3.384,1.119,0.952,8.563,9.209,8.619,9.114,1.39,14.407,1.982,5.658,2.141,1.808,0.36,0.447,6.437,2.475,1.172,3.511,1.748,2.712,2.601,2.812,3.776,0.015,6.804,4.389,2.64,3.193,4.247,3.146,10.001,0.458,2.895,4.311,0.865,1.604,7.203,0.418,5.288,4.06,4.422,3.019,1.113,2.063,6.421,8.958,0.643,5.776,12.058,13.56,2.044,1.87,11.456,6.874,2.076,8.99,7.519,4.775,1.496,7.244,0.833,5.368,5.797,1.505,2.719,3.193,0.482,2.996,3.332,1.755,2.677,3.412,3.191,1.686,0.893,12.898,2.621,1.842,2.962,3.216,2.096,9.631,9.665,2.088,6.048,2.124,7.789,1.597,2.148,2.146,1.897,1.169,15.084,1.461,0.959,1.964,7.628,5.81,1.177,1.205,0.066,1.646,0.5,1.206,14.951,11.851,5.213,10.677,6.818,1.238,2.082,8.376,1.433,6.583,2.185,1.782,0.982,4.669,1.854,1.081,3.053,2.227,14.026,2.145,2.129,4.731,4.041,5.54,1.864,2.872,4.219,0.23,6.625,3.693,4.47,10.683,3.665,13.689,1.048,0.636,2.173,13.5,1.019,1.944,4.602,7.432,7,1.685,1.252,3.654,1.303,0.857,12.42,0.89,3.898,2.268,1.648,5.204,1.892,1.886,1.241,8.739,6.94,2.182,2.07,0.428,14.532,18.364,17.706,8.851,0.428,8.497,3.995,1.246,0.626,11.755,21.557,13.999,10.64,6.963,12.147,1.659,4.024,12.372,4.288,1.554,3.698,7.915,4.126,1.456,3.856,4.674,3.689,4.265,1.431,3.744,3.993,1.854,4.451,3.339,5.577,0.851,5.709,1.512,0.432,0.777,4.65,17.885,5.147,2.844,8.637,0.741,7.078,0.509,7.416,2.772,0.324,3.096,2.683,0.719,2.809,2.376,3.215,2.263,2.584,4.951,3.139,1.263,6.58,8.411,0.677,7.937,4.839,0.642,15.461,7.665,7.666,8.281,2.186,5.905,5.904,5.343,2.817,0.039,2.863,6.341,3.224,3.21,1.097,3.547,3.492,2.671,11.551,0.543,2.671,5.191,6.402,2.15,0.364,0.415,6.628,5.982,4.203,1.449,6.445,1.059,2.08,1.235,2.338,2.546,0.642,2.114,3.006,2.937,2.62,6.619,1.239,5.519,3.459,1.426,2.353,1.995,1.313,0.421,1.767,0.636,1.404,3.046,4.874,2.415,4.606,0.885,14.083,0.493,1.774,3.01,15.597,4.988,13.577,4.91,12.152,2.536,1.053,6.068,2.011,5.368,10.552,4.441,10.552,2.887,1.097,3.158,0.236,4.217,14.111,5.519,6.902,3.434,1.117,2.144,4.806,5.805,4.126,4.013,6.343,1.028,5.44,7.2,6.514,2.055,4.047,2.653,1.234,8.272,16.899,4.926,14.95,9.784,0.96,6.869,1.538,10.085,2.014,0.228,1.094,1.443,1.851,1.756,1.578,1.128,1.154,0.926,1.536,1.842,1.906,1.67,0.819,1.709,1.894,1.421,1.763,1.896,1.916,3.193,0.415,2.552,1.643,0.185,1.303,4.188,1.081,2.319,1.004,1.278,3.092,2.696,1.023,0.649,1.823,1.886,1.064,1.752,1.649,2.109,1.494,1.529,1.687,1.386,2.209,1.489,1.349,5.103,1.218,3.665,2.725,3.753,0.9,0.734,0.943,5.94,1.084,0.849,2.772,1.935,0.889,0.862,0.861,0.963,1.481,1.314,0.65,0.381,1.379,2.128,1.093,7.497,11.537,11.486,2.721,3.841,3.363,0.749,2.568,2.951,4.034,6.659,4.293,19.4,1.13,1.525,12.187,6.166,20.234,22.409,9.995,5.483,0.323,5.095,15.835,7.417,7.863,3.139,7.233,1.784,1.113,1.178,3.773,1.475,2.719,6.649,1.214,3.644,21.111,15.221,2.428,1.415,1.272,11.012,7.951,0.807,7.557,3.2,2.059,1.756,6.087,2.908,4.99,2.067,2.99,1.983,2.72,1.872,5.444,1.029,0.753,1.592,1.072,1.013,1.196,1.405,1.107,1.306,1.47,1.226,1.289,1.365,1.228,1.197,1.629,1.539,1.759,1.912,3.143,1.771,1.07,2.504,5.31,5.138,6.065,1.2,5.331,1.685,1.977,6.738,6.507,5.51,4.308,2.625,9.709,2.667,1.007,4.698,3.279,8.818,1.633,2.302,6.416,1.559,2.578,3.477,2.574,3.928,1.165,3.2,3.272,1.623,14.573,6.375,6.492,1.759,1.782,1.362,1.251,1.294,1.292,1.104,1.137,1.355,1.48,1.197,1.221,4.284,1.412,1.488,1.889,1.298,1.279,2.071,1.703,5.469,9.466,6.561,1.004,9.828,3.149,3.188,1.133,1.62,1.781,1.535,1.706,1.573,2.354,1.84,1.344,1.306,1.047,1.473,1.731,1.651,1.422,1.671,1.741,1.819,1.849,1.452,1.502,1.708,1.767,1.78,1.433,1.652,1.634,1.726,1.746,6.381,4.938,5.28,1.004,2.949,3.98,2.97,1.786,1.665,2.152,3.312,3.051,1.682,2.206,3.22,17.337,6.07,0.874,10.185,10.446,4.809,2.603,6.494,7.382,1.055,1.468,0.862,12.38,4.528,17.419,10.519,4.831,2.891,1.011,2.161,1.164,2.547,1.023,0.495,0.706,1.279,0.769,2.069,1.343,3.72,4.503,1.47,0.804,2.05,1.265,4.516,2.562,2.15,2.004,0.953,1.719,1.558,1.636,1.432,3.551,0.958,1.09,2.617,2.461,2.17,2.026,2.83,3.36,3.067,3.549,2.841,3.091,3.649,3.416,0.292,0.642,0.981,11.021,4.275,6.841,6.664,2.241,3.614,4.174,4.672,3.837,0.933,5.639,2.939,1.631,0.462,3.098,1.374,1.323,1.446,1.764,1.967,0.989,1.657,0.367,4.421,2.152,1.872,4.997,2.912,2.308,2.347,4.895,1.928,0.45,0.58,3.96,12.561,0.071,8.397,6.601,2.16,4.395,1.368,1.323,1.707,1.449,2.438,2.037,1.771,1.298,1.382,1.432,1.205,1.559,1.707,2.819,2.392,2.283,2.104,2.019,1.642,1.709,2.062,1.949,2.192,4.342,2.858,0.495,1.989,2.811,0.841,19.236,26.417,26.508,5.131,1.205,9.212,5.965,4.931,28.805,14.421,3.45,3.768,5.445,4.373,3.558,2.152,1.766,1.779,1.706,1.625,2.3,2.815,3.111,2.523,2.182,2.802,2.798,4.005,1.043,7.598,0.775,2.599,2.489,2.159,2.1,1.762,1.539,1.282,1.318,1.379,0.666,2.067,1.887,2.263,2.325,2.303,2.499,2.862,3.338,2.649,3.158,1.481,1.6,2.533,2.36,2.615,3.557,2.101,0.601,0.593,0.874,0.719,0.686,0.581,0.722,0.673,0.994,8.368,1.083,0.883,1.042,0.814,0.815,0.701,2.016,0.697,2.389,3.98,0.522,12.757,8.286,1.73,7.223,5.078,9.612,4.208,4.331,5.921,3.192,3.5,1.713,1.551,4.236,4.327,1.873,3.376,6.693,5.107,0.83,5.899,6.229,1.443,4.509,2.745,0.924,1.315,2.118,2.761,1.773,1.713,1.745,1.731,3.951,2.879,1.859,1.852,3.419,0.823,1.058,1.025,1.496,0.181,1.271,1.29,0.937,1.539,3.388,2.428,2.477,1.296,7.2,1.063,3.581,3.586,8.064,7.523,1.875,4.309,1.212,4.973,2.675,2.594,1.027,2.304,2.958,0.812,3.124,3.011,3.004,2.684,2.28,2.267,0.826,0.781,0.213,9.306,1.043,4.933,2.047,0.657,3.177,4.952,2.708,4.487,5.661,3.294,3.135,4.405,3.647,3.049,2.763,4.042,3.998,1.454,0.792,2.609,2.627,2.616,3.802,0.424,9.671,0.636,0.473,0.764,3.338,2.593,1.561,1.31,5.538,1.571,0.887,1.02,1.8,1.969,0.862,2.29,2.778,3.281,2.493,1.571,1.598,1.236,3.97,2.9,11.986,0.656,0.73,0.657,1.168,1.164,2.5,2.104,3.676,2.24,1.326,1.571,2.276,8.57,7.95,3.267,3.802,3.279,3.951,0.927,0.353,0.242,2.496,2.904,2.275,2.952,2.927,2.454,2.431,1.843,1.825,1.121,0.96,2.186,4.481,8.669,12.599,1.344,1.087,1.204,3.706,3.017,0.611,1.147,3.903,3.882,1.54,4.288,3.096,3.096,3.323,2.918,1.412,3.672,5.434,3.041,3.509,3.249,2.588,4.991,1.292,2.503,3.26,7.79,1.622,2.614,1.565,2.375,2.902,3.179,1.788,0.186,0.816,4.02,1.433,3.299,3.971,1.713,4.648,1.413,9.284,5.37,3.464,2.778,1.827,1.854,2.452,4.355,4.357,1.476,7.754,8.434,9.372,0.27,1.521,3.419,2.23,5.816,6.386,0.069,2.406,3.856,1.184,1.024,2.933,2.762,1.416,1.51,4.604,3.843,5.438,4.798,4.154,1.666,3.033,2.891,1.247,2.163,2.738,5.876,9.18,0.935,7.487,14.877,8.123,8.074,1.419,1.225,0.582,3.818,3.932,9.37,2.958,3.174,2.905,1.896,1.838,1.694,3.424,2.813,1.64,0.534,3.927,3.195,3.107,1.055,3.45,4.284,0.624,10.674,1.154,3.6,1.471,3.6,1.003,1.225,2.641,1.513,1,1.089,2.698,2.703,3.671,0.9,2.468,1.929,3.915,5.536,8.728,2.482,3.067,1.858,1.323,1.176,2.045,1.971,1.931,1.073,2.762,1.938,1.985,1.973,3.834,0.9,1.584,2.821,2.659,1.992,1.977,1.214,1.065,1.071,1.339,2.749,2.733,3.208,3.747,9.408,4.738,3.258,0.354,1.871,1.166,2.004,0.743,0.932,1.88,2.388,1.922,1.715,2.282,3.013,3.094,3.172,3.304,5.818,0.979,4.28,3.459,2.638,2.217,2.572,2.692,3.117,4.761,5.239,1.889,1.339,8.048,1.707,0.686,2.903,4.521,2.114,15.935,8.525,8.655,6.152,10.249,3.591,7.183,5.84,4.099,3.66,1.564,4.571,3.501,3.62,1.166,1.944,5.872,0.35,1.306,4.575,7.539,7.997,3.49,10.22,4.296,2.264,12.287,1.269,5.814,5.095,2.115,9.114,11.862,3.997,0.439,1.582,1.391,17.121,4.564,3.954,16.877,10.834,2.266,5.252,0.763,2.533,0.544,1.172,1.014,6.331,2.164,1.254,5.38,2.085,1.997,1.994,4.011,3.771,3.726,6.201,5.015,0.909,0.974,10.81,16.979,1.377,0.865,3.97,0.424,4.72,9.944,5.206,8.931,3.635,4.369,2.936,1.447,3.673,2.321,0.512,2.119,3.985,3.984,3.169,1.438,2.278,1.007,4.261,2.518,3.376,2.33,2.04,2.487,1.372,1.132,3.793,1.411,2.605,2.586,3.259,3.445,2.593,4.261,3.093,3.742,3.304,0.476,1.491,8.582,1.267,2.376,1.476,1.764,2.223,5.314,5.585,2.327,2.075,3.268,3.238,2.375,1.331,1.751,1.97,2.439,1.653,1.008,2.515,2.519,2.646,3.072,2.851,2.684,3.603,3.599,1.412,2.931,2.108,0.637,1.296,3.924,1.673,1.713,2.477,1.787,0.035,0.71,5.569,0.921,1.584,4.694,0.489,5.383,3.466,2.519,5.087,2.514,2.503,1.791,1.225,1.031,1.202,2.873,1.05,2.015,3.001,3.698,2.718,1.369,1.261,3.253,3.145,3.397,3.913,3.463,4.132,14.322,1.881,1.953,2.35,1.252,1.104,4.592,5.283,2.893,2.401,4.446,3.153,2.86,2.305,1.455,0.182,0.929,1.528,3.183,2.591,1.943,1.963,1.963,1.096,0.876,1.34,1.897,2.608,1.964,2.437,3.144,5.629,1.949,2.802,3.333,0.587,2.478,1.084,1.84,2.614,1.15,1.409,0.974,4.788,1.002,1.893,1.33,4.616,3.802,4.916,4.629,1.33,9.498,10.006,4.434,1.763,2.286,1.934,6.938,2.84,3.301,2.759,1.619,3.34,5.422,4.959,3.378,10.447,7.533,10.699,6.331,2.895,1.835,7.285,4.484,2.142,2.227,2.823,2.73,2.531,3.114,0.909,2.497,2.711,1.839,1.96,3.03,4.32,4.261,0.838,1.273,2.35,9.02,3.558,2.31,4.504,3.876,4.991,3.429,1.586,1.926,1.709,2.088,1.113,1.076,3.54,3.143,2.353,1.558,3.886,3.529,3.706,3.546,2.954,1.128,3.469,4.08,3.53,3.101,2.745,3.69,2.642,1.852,8.865,0.885,6.449,1.918,0.064,14.04,8.435,7.364,11.291,2.231,0.128,3.513,7.943,6.596,5.045,1.956,4.925,5.138,4.004,4.866,3.778,4.78,2.835,2.841,2.487,1.455,1.661,2.922,3.93,4.534,6.165,1.238,5.848,8.188,9.196,6.245,3.156,2.441,5.643,3.423,2.139,3.478,2.499,1.379,2.355,2.129,3.516,2.702,2.118,2.057,3.51,2.042,2.165,4.197,7.276,2.424,11.141,8.263,0.9,0.08,0.497,0.495,5.834,3.857,3.217,3.415,0.555,5.268,7.067,5.049,1.065,6.341,3.611,3.174,1.141,2.728,2.924,5.112,0.8,1.569,2.081,1.92,1.795,0.9,1.367,2.352,2.518,1.358,1.601,0.89,0.686,2.646,1.867,3.313,3.128,3.318,2.527,2.537,2.472,3.029,0.809,2.67,2.674,1.992,1.828,2.57,1.823,3.563,0.864,0.235,1.009,0.507,1.494,2.451,3.394,3.889,5.584,7.518,1.055,1.015,3.149,2.574,1.993,1.297,3.073,2.134,2.123,1.313,2.729,2.231,1.957,1.364,0.864,0.198,1.418,0.618,1.383,2.289,0.873,2.313,3.061,2.879,2.907,3.545,3.513,3.231,9.091,15.674,7.646,5.04,2.513,1.172,2.431,2.575,2.092,4.292,1.296,1.038,1.224,0.468,1.288,0.222,2.639,3.277,3.32,3.463,3.293,4.028,3.268,3.112,2.866,3.144,3.368,0.823,0.089,2.481,1.84,3.271,3.899,3.135,3.768,3.084,2.49,3.135,3.05,3.871,0.972,2.112,3.767,4.389,4.409,1.988,2.214,0.857,4.866,6.271,4.313,7.112,5.065,4.926,3.681,3.811,2.373,3.056,3.104,2.058,4.104,2.578,2.189,1.78,2.87,1.855,1.813,1.928,1.917,2.223,2.986,2.882,2.028,0.9,1.549,1.867,1.664,1.832,0.864,0.96,1.296,1.739,1.059,1.115,1.656,1.797,2.223,2.717,2.665,2.752,1.954,1.437,1.227,2.11,0.49,6.597,4.937,0.009,7.289,6.226,1.366,0.529,2.4,5.502,2.54,1.874,1.818,3.71,3.007,3.295,2.23,2.098,3.754,3.657,3.649,2.995,3.809,3.171,1.817,6.309,1.407,3.783,5.255,0.677,1.855,3.295,3.87,2.585,1.928,3.8,3.225,4.828,1.554,3.203,3.937,3.824,3.243,3.181,3.228,3.204,3.217,3.151,3.184,1.95,1.326,2.51,5.838,10.304,7.013,0.411,2.958,4.465,0.168,1.127,6.274,5.588,2.295,1.073,0.57,1.391,5.555,3.868,5.812,2.224,4.241,0.415,0.515,5.425,7.6,3.666,2.649,3.124,3.165,2.038,3.53,5.696,5.18,2.595,0.589,3.379,3.207,3.993,3.047,4.365,0.238,1.462,3.2,2,1.104,1.604,3.372,3.942,9.383,5.59,1.767,4.543,4.735,3.201,3.119,1.838,1.237,0.224,1.195,4.916,3.731,4.225,1.881,1.275,3.061,3.149,2.765,2.039,2.416,2.535,0.646,1.817,4.289,2.47,3.062,3.668,2.34,0.677,2.552,2.461,3.694,2.391,2.466,1.903,2.421,2.407,1.935,1.934,1.236,1.873,3.07,1.955,2.492,2.503,2.599,3.151,2.386,3.265,1.53,1.689,3.745,3.791,6.891,2.043,1.828,3.779,1.923,2.112,2.265,1.737,2.766,4.225,3.574,3.562,2.537,7.269,5.345,2.595,2.635,3.072,2.075,1.527,5.15,4.965,4.946,3.994,6.588,4.987,4.325,4.268,1.21,1.941,4.33,4.331,5.585,3.759,3.695,5.005,3.159,3.642,3.115,3.718,4.395,0.539,1.118,2.138,4.389,3.877,3.03,0.83,3.166,7.081,4.333,4.128,2.311,2.46,1.004,1.164,1.093,2.948,2.241,1.941,1.944,1.98,1.501,0.239,0.898,0.822,1.82,1.438,0.634,0.131,1.735,0.144,2.89,2.222,0.906,1.935,1.745,3.258,2.097,1.983,1.865,1.958,2.503,1.656,1.262,0.706,0.388,2.172,1.644,8.625,5.462,2.914,4.49,1.537,2.412,1.747,1.188,3.07,5.604,2.547,2.411,1.892,1.205,0.751,1.185,1.381,1.815,17.351,7.281,1.675,3.032,1.854,1.993,1.896,1.978,3.397,2.021,1.293,2.611,2.038,1.381,3.313,2.641,2.587,1.431,2.07,3.318,2.017,1.988,1.984,1.436,1.954,0.821,0.646,1.442,2.268,3.664,2.286,2.97,0.556,3.668,2.987,1.684,2.137,1.619,1.038,1.078,1.635,1.05,1.116,0.971,0.067,1.101,1.07,0.848,0.772,1.089,1.64,1.311,1.058,2.242,3.06,6.776,5.596,0.633,5.782,7.076,0.682,0.687,3.5,8.694,2.982,3.239,0.347,3.429,4.096,6.394,4.748,2.491,2.45,1.894,6.01,5.048,0.973,19.828,7.361,7.691,4.518,1.278,15.43,2.423,1.091,2.789,2.349,2.028,2.189,4.86,4.471,1.096,0.251,2.311,1.454,1.797,0.525,3.101,2.607,2.571,4.801,5.435,5.671,1.913,1.554,1.965,1.252,1.268,1.266,1.268,0.409,0.554,0.303,0.884,0.384,0.883,0.384,1.266,1.268,1.27,1.371,2.969,4.24,3.885,3.324,5.315,5.672,1.819,3.581,1.348,0.767,0.821,2.609,3.54,4.772,2.57,2.527,1.938,2.03,1.06,1.055,2.521,3.884,0.891,3.165,1.565,1.425,1.895,1.917,1.444,1.828,1.362,1.529,0.927,2.259,2.195,3.367,4.645,5.67,2.423,2.332,2.38,4.914,1.174,1.881,1.863,2.355,2.128,0.537,1.758,4.961,3.003,2.66,2.461,2.293,1.854,1.411,1.632,3.135,4.89,4.459,0.516,2.446,2.319,1.381,1.415,1.704,1.81,1.446,1.816,1.892,1.811,1.707,1.769,1.552,1.623,2.104,1.215,2.461,3.896,3.966,8.808,2.218,2.497,2.455,2.282,1.651,1.886,2.264,1.985,2.767,2.762,3.675,2.916,6.44,6.444,11.018,4.007,3.256,1.709,1.756,2.183,1.863,1.423,1.444,2.974,0.895,0.998,0.783,3.358,2.148,1.2,8.498,12.298,3.443,0.039,1.534,1.65,1.01,1.015,0.851,0.853,1.076,1.072,1.616,1.044,1.647,1.069,1.048,1.094,1.812,1.415,1.792,0.64,1.407,1.083,1.227,1.974,0.608,0.639,0.023,1.44,1.607,1.779,1.447,1.791,1.103,1.03,1.141,0.33,0.689,1.024,1.158,1.076,2.097,1.246,1.74,1.01,1.816,0.655,1.201,1.18,0.798,0.264,0.764,0.764,0.952,0.618,1.357,2.427,0.3,2.669,3.629,5.401,1.156,1.253,2.01,0.367,3,6.492,1.465,1.733,1.5,0.75,0.454,1.511,1.059,1.206,1.247,1.132,0.832,3.24,1.112,1.867,3.263,1.917,1.917,1.451,1.924,1.746,1.288,1.301,1.355,1.198,1.434,1.299,1.422,0.526,1.268,1.945,2.987,1.922,1.486,1.725,1.287,1.269,2.743,0.199,4.982,4.476,1.684,1.463,1.072,1.324,1.46,1.505,0.382,3.265,5.111,4.751,2.71,0.285,2.918,1.515,2.307,1.935,2.089,1.916,2.38,2.552,1.672,0.231,1.91,1.937,2.109,1.741,1.919,2.08,1.737,2.094,1.386,0.303,2.117,2.55,2.562,3.673,3.362,2.9,0.675,1.593,1.671,1.956,2.081,1.359,1.936,1.76,1.289,1.314,0.796,0.488,1.267,1.313,1.295,1.288,1.251,1.501,1.863,1.957,1.772,1.257,1.498,2.175,0.847,0.177,7.023,3.545,2.702,0.671,0.424,2.076,2.542,1.554,2.628,3.181,2.076,4.264,2.328,0.281,1.606,1.999,1.474,1.23,1.729,2.032,1.654,1.519,0.633,3.216,1.271,2.591,2.126,4.036,1.488,1.837,1.517,1.778,1.52,2.063,1.972,1.797,2.623,4.984,1.048,2.056,1.352,1.362,1.243,2.067,2.014,1.531,1.525,1.539,2.445,2.316,3.131,3.076,4.085,3.963,3.994,4.28,2.546,2.526,1.958,2.764,3.657,1.254,1.297,1.435,1.738,1.936,1.518,1.71,3.174,3.207,3.849,2.105,1.701,2.565,2.513,2.603,5.185,5.068,3.633,2.798,1.739,1.473,1.87,1.748,2.229,2.136,2.468,3.898,5.42,3.416,1.275,1.276,0.657,0.684,1.616,1.227,1.897,2.424,1.188,6.522,0.002,0.603,0.178,0.918,6.259,3.319,3.74,2.276,2.001,2.298,2.902,2.531,4.115,0.397,0.419,3.943,2.465,4.251,1.101,1.07,1.209,1.883,0.986,0.91,0.945,5.966,0.406,2.778,1.669,2.26,2.834,3.057,2.262,2.725,2.195,1.006,1.436,1.725,0.028,1.784,3.3,3.441,5.354,1.621,2.259,2.828,4.505,5.008,8.268,3.342,3.941,3.447,3.837,2.808,2.657,4.561,3.107,2.424,2.723,2.338,2.871,3.234,2.369,2.669,1.106,3.833,4.598,2.111,3.194,1.266,5.405,4.182,0.69,0.873,1.368,5.524,7.079,2.647,1.796,1.574,1.403,1.188,1.257,5.383,5.502,5.389,2.109,1.622,1.932,1.606,1.306,2.234,1.675,0.514,1.442,1.913,1.377,1.504,2.068,2.451,1.769,1.204,1.397,1.424,1.081,1.288,1.568,1.537,1.588,2.372,1.891,1.438,1.58,2.093,2.19,1.935,1.705,1.807,2.778,1.587,1.752,3.912,3.863,3.675,2.511,2.088,2.017,2.079,2.102,2.322,0.387,2.183,8.27,2.308,2.259,1.826,2.418,2.005,2.137,1.738,1.82,1.38,1.422,1.533,1.558,1.536,1.581,1.767,2.036,4.707,1.431,1.89,1.562,1.543,1.519,1.305,1.605,1.718,1.551,1.329,1.732,2.922,3.04,1.559,3.813,3.016,1.617,3.306,3.638,1.929,2.266,2.004,1.521,1.503,1.559,1.513,3.17,3.998,6.97,2.057,1.924,2.117,2.961,2.952,2.383,1.458,2.073,1.269,1.838,1.028,1.187,7.151,1.787,2.2,1.788,2.134,1.502,1.643,1.816,2.131,4.603,0.006,0.63,0.088,2.107,4.083,1.691,0.036,2.459,2.345,3.248,1.34,0.545,6.513,1.82,1.052,0.752,4.345,1.193,3.758,2.387,2.519,1.683,1.04,2.245,4.993,0.385,5.15,1.543,0.712,0.198,1.385,0.813,1.433,1.229,1.577,1.12,1.132,1.273,2.582,1.445,3.456,3.748,3.481,6.154,1.962,0.689,3.248,7.771,2.873,3.443,2.96,2.613,2.469,1.233,1.498,1.768,1.974,0.9,3,0.636,0.521,1.572,1.172,3.035,1.072,1.389,1.863,1.751,1.735,1.601,1.467,1.396,4.868,1.633,2.52,1.062,0.031,2.629,3.257,3.193,2.1,1.768,2.639,1.357,4.464,1.368,2.736,1.418,5.674,11.15,3.6,2.62,0.069,8.934,2.223,1.299,1.414,1.413,1.557,2.447,1.237,1.519,2.046,3.129,2.467,3.226,4.273,2.966,2.003,2.755,0.003,2.565,2.796,3.19,3.07,3.249,6.953,9.161,3.218,3.22,0.717,2.08,0.815,1.909,2.341,1.808,5.329,2.717,2.249,0.619,1.533,1.839,1.936,2.26,7.348,2.126,0.474,2.834,1.719,2.341,2.091,1.741,2.226,2.688,1.531,2.781,1.051,3.951,3.556,1.898,1.562,0.468,1.615,1.516,1.878,1.492,1.544,1.374,1.016,1.646,1.907,1.246,1.332,0.965,2.864,1.835,1.717,1.44,1.582,0.818,2.99,2.571,1.739,2.018,1.53,2.274,2.202,2.095,2.256,1.456,1.561,2.042,2.303,2.35,1.306,1.361,1.154,1.206,1.284,1.375,1.406,1.41,1.405,1.404,1.177,1.728,1.731,1.725,1.437,1.443,1.439,18.241,1.895,8.372,9.728,13.366,5.722,0.202,5.848,2.43,5.76,2.324,1.592,2.247,2.567,5.211,2.365,2.764,1.897,0.802,0.897,1.482,1.28,1.72,2.34,1.606,1.55,3.196,2.152,0.767,3.328,1.678,2.568,3.686,0.353,2.045,2.314,1.536,0.85,0.889,1.441,1.526,1.548,1.353,0.767,0.72,1.877,1.529,1.619,3.921,1.601,1.619,1.666,1.471,2.169,1.755,1.471,1.398,1.299,1.051,1.339,1.558,2.256,2.102,2.567,3.154,0.268,9.335,4.052,0.884,2.162,0.997,1.177,4.522,0.273,1.068,0.752,2.51,2.932,0.816,0.074,1.54,4.078,3.411,2.408,1.505,1.29,1.376,1.322,1.916,1.562,1.546,1.717,1.34,2.369,1.77,1.677,1.659,2.227,1.392,3.359,2.919,2.978,2.928,2.932,2.647,2.64,2.07,1.615,1.381,1.303,1.27,1.002,1.525,0.863,1.176,1.499,2.808,2.566,0.783,1.762,1.291,1.315,1.468,1.526,1.404,1.27,1.739,1.41,1.287,1.398,1.417,1.373,1.335,1.64,1.632,2.597,0.33,3.402,3.3,1.768,4.477,1.133,2.782,2.093,1.229,1.214,1.962,1.668,1.361,3.437,2.317,2.362,2.499,2.379,3.356,2.294,1.29,3.443,2.22,0.891,1.379,1.654,1.211,2.009,0.95,0.034,1.053,1.507,1.246,1.139,3.369,3.049,1.756,0.523,1.152,2.732,2.243,1.924,1.376,1.736,2.333,0.467,8.543,0.752,3.813,3.171,0.727,1.675,2.09,2.004,1.767,2.363,2.273,2.165,1.886,5.37,4.88,2.47,0.319,1.756,1.93,1.146,1.83,0.974,1.189,0.971,1.549,1.421,1.468,1.49,0.813,0.806,0.879,0.807,1.253,1.426,1.118,0.169,0.26,0.475,0.285,0.782,0.992,1.151,0.804,0.68,0.93,1.222,1.709,3.071,3.105,4.218,2.882,1.394,1.499,1.741,1.428,1.341,1.113,0.944,0.988,0.924,1.026,0.885,0.95,0.911,1.083,0.861,0.956,0.857,1.115,1.084,0.915,0.941,1.002,0.74,0.976,1.303,1.401,1.615,1.113,1.26,2.221,1.334,1.931,2.68,2.837,3.037,0.902,2.261,1.855,1.024,1.201,1.199,2.199,1.091,1.09,1.744,1.521,0.367,2.523,5.136,2.61,2.679,2.437,2.599,3.972,3.795,4.231,5.079,5.1,7.014,3.482,1.553,2.93,0.428,6.583,5.139,5.279,5.425,2.629,3.347,2.008,3.863,3.471,3.315,2.626,1.765,1.568,2.418,2.021,2.837,2.614,1.818,1.557,3.669,2.178,2.187,2.398,2.594,2.177,3.141,3.505,3.975,5.881,2.701,3.277,5.273,4.457,4.172,3.968,1.934,1.786,2.694,2.18,2.606,2.69,2.632,4,4.446,2.04,2.166,1.989,2.455,2.19,2.676,1.942,2.368,1.904,1.783,1.527,1.512,2.206,2.582,1.798,1.817,3.546,2.171,1.681,5.417,4.008,1.793,3.641,0.3,2.558,2.169,2.663,5.416,4.379,2.598,5.29,3.136,5.275,5.025,3.504,1.824,1.938,1.457,1,0.984,1.94,1.285,1.35,1.347,1.246,1.3,1.329,0.899,0.82,1.954,1.31,2.597,4.774,4.619,3.878,3.183,1.913,2.554,2.976,1.471,1.284,1.724,1.941,1.273,1.506,1.44,1.068,2.134,1.451,1.236,1.465,1.61,1.185,1.482,1.597,2.122,1.785,1.442,1.652,1.765,1.465,1.581,2.354,1.605,1.6,2.088,0.953,1.721,1.964,1.966,2.419,2.439,3.564,1.367,2.771,6.257,0.943,2.629,0.926,1.107,1.745,1.522,1.038,2.089,1.728,2.093,1.688,1.955,1.245,1.934,2.638,2.36,1.879,1.472,2.307,1.302,2.226,1.023,3.274,3.663,3.269,3.213,1.808,1.841,2.714,1.441,1.696,1.529,1.523,2.544,2.517,2.259,1.285,3.077,1.884,3.777,2.155,3.066,2.189,7.76,3.272,2.824,3.391,3.462,1.152,4.486,1.837,1.881,1.819,2.323,4.116,2.985,2.361,4.386,0.857,0.891,3.324,1.416,1.604,1.947,4.64,0.56,1.864,1.098,1.61,1.188,2.281,1.555,1.675,1.87,1.061,2.918,2.348,3.032,3.055,2.538,1.469,1.925,2.158,1.948,2.672,2.581,1.999,3.067,3.158,2.468,2.218,2.523,2.538,2.49,3.034,3.472,7.922,2.636,0.855,3.073,3.181,1.839,1.647,1.318,3.432,3.139,3.254,1.854,1.987,1.675,3.469,4.899,5.377,3.236,3.913,6.39,6.306,12.055,1.414,2.326,1.369,1.462,1.607,1.558,1.753,1.358,1.693,2.687,2.298,2.24,1.863,2.376,1.196,1.454,1.26,1.215,1.077,1.248,0.854,1.564,1.449,1.888,1.919,1.893,1.399,1.69,1.308,1.911,2.344,1.481,2.495,1.23,1.889,3.592,3.124,2.614,4.595,0.793,1.583,2.308,3.769,2.028,2.355,3.947,1.68,2.467,3.133,2.669,1.695,1.88,1.862,2.057,2.531,1.761,1.339,1.21,1.94,1.595,2.141,2.506,2.799,1.199,3.39,3.624,4.149,2.173,0.288,1.847,1.249,1.931,1.919,1.926,1.846,2.266,4.369,4.554,6.578,6.172,8.66,8.293,2.272,1.888,2.503,2.571,0.473,0.328,1.971,2.023,3.147,3.282,1.537,2.643,2.431,1.93,1.333,1.284,0.904,2.531,1.805,1.486,1.282,1.35,1.926,3.689,3.283,5.875,0.325,3.066,5.575,0.479,3.982,3.455,2.206,4.824,3.572,0.407,2.291,2.775,1.913,1.62,3.265,2.104,2.138,2.104,2.338,2.092,2.613,1.581,1.867,2.149,2.13,2.081,2.101,3.471,3.532,3.526,2.262,2.897,0.385,2.014,1.89,3.809,4.668,2.796,2.871,3.385,2.395,3.36,5.212,2.475,2.323,3.035,2.997,4.727,4.559,4.059,3.224,0.805,2.866,2.943,3.711,3.712,3.301,2.907,0.547,1.75,0.996,0.784,1.545,1.865,2.171,2.009,1.962,2.765,1.689,2.75,2.82,3.695,3.967,4.384,1.951,1.945,2.616,2.176,1.999,2.322,3.208,2.853,2.58,6.466,3.869,3.254,1.291,1.296,2.413,1.369,0.869,1.443,1.19,1.264,1.43,3.017,5.798,3.792,1.239,1.053,1.69,1.322,1.203,1.821,2.643,3.433,3.181,3.858,7.747,3.864,4.421,7.706,2.745,1.354,1.345,2.645,3.018,2.656,3.497,3.43,5.023,5.209,1.956,2.618,2.644,3.549,2.976,3.056,3.161,3.185,2.346,1.921,1.512,0.918,1.588,1.806,1.504,3.187,2.183,2.008,3.171,3.971,1.285,11.3,3.268,3.914,4.629,4.798,7.1,0.992,3.004,3.072,3.294,2.444,1.576,1.946,1.735,1.836,1.315,1.394,1.928,1.765,0.933,2.38,1.164,2.387,1.763,3.78,4.115,1.25,1.735,1.939,2.208,5.233,5.3,7.311,0.74,8.934,7.751,2.539,3.284,1.74,1.96,2.392,0.032,3.278,6.377,6.916,5.441,3.9,0.842,3.497,4.218,6.187,5.23,3.161,2.216,2.591,1.816,1.195,2.377,1.803,1.515,1.54,1.064,4.715,4.693,9.258,0.859,4.784,7.457,2.796,4.198,4.875,1.269,0.514,1.211,4.754,13.821,9.918,7.307,7.014,6.832,3.753,3.643,1.223,1.406,2.014,3.781,4.25,1.683,3.217,4.272,7.111,0.104,0.258,1.309,1.971,2.91,7.645,12.396,21.484,4.885,7.294,2.643,2.727,2.105,3.059,3.006,2.731,3.17,1.718,1.748,1.486,2.125,2.509,2.971,3.127,3.741,4.939,8.751,3.093,3.876,1.688,1.25,2.666,2.937,3.538,2.741,2.791,3.883,5.885,0.865,1.503,1.02,1.136,1.23,0.861,0.866,1.07,0.915,0.815,1.266,1.792,1.942,2.181,1.737,0.733,0.913,1.48,1.099,0.884,0.828,2.224,0.989,0.973,1.35,1.36,1.363,1.894,2.235,2.422,1.791,2.836,6.589,7.303,1.098,10.576,1.578,1.975,2.055,2.672,1.369,1.476,2.146,4.259,3.826,2.146,1.588,0.979,3.015,3.854,5.398,3.438,6.086,4.402,4.469,3.996,1.809,2.322,3.634,4.378,0.314,5.841,3.481,2.1,1.85,2.48,2.637,6.458,0.242,2.751,3.175,3.731,2.912,2.703,1.866,2.306,3.931,6.716,6.329,0.873,2.678,3.318,2.85,1.975,4.971,17.109,19.42,0.459,9.212,9.667,2.506,2.031,2.325,2.367,1.246,5.365,4.351,1.994,2.235,0.982,1.818,3.723,2.873,1.194,5.313,6.377,13.361,5.951,0.455,13.286,19.509,9.887,4.895,4.812,1.852,1.363,6.432,1.049,1.923,4.416,4.325,5.577,1.37,5.92,0.664,5.917,4.18,4.159,0.084,4.206,2.03,2.31,3.038,3.075,3.68,3.875,4.28,0.463,5.47,5.859,4.575,6.195,4.645,9.887,14.66,0.631,0.663,3.239,6.282,5.392,7.592,0.328,0.918,7.096,7.929,0.525,3.188,11.11,1.901,4.159,5.33,8.324,11.474,4.186,1.883,2.026,8.431,2.904,2.945,0.455,1.227,1.266,1.82,1.002,4.793,6.21,3.847,4.791,1.479,3.658,3.842,0.713,0.676,0.563,1.199,2.498,1.303,1.488,0.284,0.431,1.069,2.228,1.691,1.728,1.747,1.545,1.631,1.65,2.548,2.374,2.124,1.902,2.043,2.338,2.855,1.082,3.727,1.576,2.396,3.966,5.032,6.1,3.276,0.999,1.004,1.551,1.335,1.11,1.735,1.282,1.616,1.617,1.407,1.405,1.406,1.406,1.403,1.407,1.406,1.406,1.403,1.407,1.404,1.407,1.406,1.406,1.405,1.404,1.408,1.404,1.406,1.407,1.611,5.109,0.783,1.283,3.742,1.342,3.348,6.432,4.178,1.496,5.81,6.402,6.401,6.996,9.943,9.958,5.096,10.78,5.738,5.767,5.676,6.801,0.641,12.564,3.635,2.467,4.592,6.524,6.008,1.067,2.464,6.518,0.095,4.808,6.688,5.994,1.549,4.055,6.559,8.435,10.686,7.15,5.848,6.301,4.783,3.645,1.354,3.614,3.663,2.091,1.892,1.533,2.617,2.976,1.446,2.035,1.283,2.522,2.728,3.898,2.528,2.125,1.89,1.926,1.535,1.654,1.15,1.568,1.334,3.214,3.074,3.003,6.379,5.008,3.403,1.064,1.363,8.045,3.42,3.291,3.894,1.518,3.044,1.97,2.889,2.027,2.554,4.195,2.346,2.522,0.319,1.285,1.876,2.019,1.876,1.358,2.028,2.654,2.119,1.86,2.751,2.754,2.467,2.508,4.748,3.423,9.715,2.897,2.869,2.455,2.363,2.744,2.2,2.343,2.27,2.544,2.694,1.8,2.214,2.193,1.368,3.469,2.767,4.296,5.36,4.182,3.195,2.624,3.26,3.223,3.198,3.317,3.304,3.234,3.255,4.955,4.118,2.122,2.457,2.582,2.627,2.531,2.076,3.163,4.653,2.563,2.119,1.778,2.327,4.604,3.819,4.47,7.598,7.616,6.043,4.098,2.652,2.636,2.648,2.645,2.648,2.646,2.646,2.648,2.646,2.648,2.646,2.183,11.889,1.199,12.99,1.268,2.316,7.575,2.566,1.855,1.656,3.111,2.657,4.044,8.128,3.826,3.264,4.908,4.949,3.119,3.207,3.609,2.757,0.918,1.239,3.834,4.215,4.304,6.974,6.954,2.942,2.005,0.805,2.604,1.36,1.312,2.339,1.793,1.207,1.811,2.552,0.17,4.599,6.119,6.456,2.012,2.311,1.324,5.639,2.373,4.948,2.533,6.181,1.281,1.26,3.482,0.635,3.367,3.653,6.146,4.493,6.245,4.737,8.596,5.833,10.745,5.039,5.226,0.838,3.557,13.487,10.081,5.06,3.472,4.982,0.908,3.635,0.708,1.862,1.889,1.783,1.533,1.896,2.093,1.917,1.972,1.882,1.483,1.539,1.707,1.371,1.366,2,1.663,1.902,2.569,2.473,1.675,0.953,2.575,2.542,1.164,1.026,1.085,1.495,1.634,1.633,3.002,2.605,2.69,2.359,1.866,2.701,2.921,2.476,0.975,1.788,1.837,2.023,3.869,1.803,2.538,3.059,2.455,3.743,1.057,3.019,1.64,0.656,0.205,1.933,5.118,0.354,0.609,0.143,4.861,3.603,2.657,3.905,2.801,5.493,4.858,2.305,3.05,3.02,6.118,6.168,3.395,3.253,2.014,1.609,1.275,2.973,1.806,1.799,1.902,1.918,2.383,2.317,1.299,1.776,1.918,1.826,2.943,2.516,3.688,4.136,2.71,4.47,5.759,0.045,2.176,3.08,12.061,3.742,0.947,6.856,10.709,4.66,4.489,0.32,0.318,0.25,2.797,8.543,9.098,0.832,0.757,7.129,1.989,3.792,4.998,6.621,2.139,3.836,2.951,1.951,6.244,4.293,4.305,6.549,6.66,2.309,5.841,3.932,5.92,1.82,3.637,1.498,5.581,4.695,2.205,2.501,2.143,0.492,0.902,2.733,1.381,1.241,0.949,0.141,1.33,1.723,1.78,1.51,1.176,1.789,2.157,0.639,1.948,0.914,0.765,0.494,1.618,1.68,1.528,2.428,1.584,2.75,1.253,1.915,1.724,1.355,3.496,4.407,2.063,2.379,1.979,2.606,0.035,1.287,2.383,0.046,0.763,1.94,2.449,1.943,3.822,3.503,0.399,1.818,3.934,1.162,1.613,2.587,1.2,1.34,1.531,1.266,1.427,1.448,5.791,1.783,1.699,2.583,1.99,1.276,2.045,2.311,1.126,1.9,1.155,1.375,1.972,3.74,3.299,3.15,3.852,4.866,1.473,3.215,1.996,4.315,2.835,1.503,2.791,0.026,3.026,3.1,1.176,1.757,1.946,1.908,1.906,0.848,1.758,1.806,1.213,0.796,0.077,2.693,0.486,0.086,1.933,1.34,0.559,0.08,1.341,2.046,10.941,3.42,2.708,1.857,1.236,1.35,1.975,3.842,2.785,1.879,0.74,0.207,2.157,2.082,2.538,2.724,3.419,1.6,4.683,2.223,2.289,1.164,1.929,2.074,2.352,3.162,4.78,5.052,3.021,0.096,4.426,4.925,9.567,5.383,3.692,7.47,0.65,4.231,2.441,3.709,1.732,9.563,1.012,3.051,1.645,0.595,0.631,0.594,0.685,0.846,1.597,8.008,1.139,0.875,0.751,0.639,0.639,0.672,0.974,0.844,0.943,0.589,0.57,1.059,1.689,4.018,2.302,1.323,1.198,3.181,1.4,2.777,0.9,0.368,2.634,2.869,5.318,3.802,4.306,3.53,4.462,3.01,1.833,1.166,2.39,2.089,1.31,3.225,2.721,1.577,1.726,1.735,0.225,1.287,1.819,1.259,0.784,0.924,0.967,1.415,1.285,1.361,1.408,2.524,1.992,1.379,3.324,3.734,0.277,0.391,2.82,4.737,4.704,5.244,5.305,5.867,4.753,5.537,17.814,0.52,1.167,1.139,2.329,2.452,1.1,1.264,1.273,0.928,2.441,4.428,2.982,1.613,3.16,5.953,3.824,5.438,0.408,1.299,6.732,6.972,10.114,1.455,8.202,7.057,7.149,2.622,2.599,5.28,1.963,2.4,0.691,2.291,2.472,0.946,2.705,3.859,4.94,7.24,2.287,3.629,1.484,4.811,1.627,1.616,1.215,4.75,0.594,0.52,0.659,3.079,4.637,2.181,2.071,1.436,0.947,0.724,1.044,1.048,0.837,0.866,0.838,0.914,1.124,1.159,1.093,1.073,1.386,1.162,0.921,0.957,1.16,1.648,1,1.17,0.282,1.21,1.074,0.858,0.974,0.389,0.383,2.108,1.109,0.456,3.215,2.665,1.731,1.414,2.541,3.308,2.336,2.037,1.436,1.529,2.956,0.981,1.335,3.862,4.699,3.08,1.336,2.03,1.963,2.144,4.19,1.88,1.791,2.689,2.368,2.033,1.011,2.82,2.807,3.859,3.812,1.383,9.034,0.616,3.756,3.89,3.828,0.687,4.936,1.412,5.183,5.328,2.411,2.658,5.583,3.145,3.528,3.439,4.094,3.085,3.448,5.429,0.931,4.135,0.832,1.996,1.369,6.476,6.408,2.022,5.813,1.124,4.876,2.239,3.139,1.555,1.593,0.952,1.02,1.245,1.243,1.244,1.242,1.244,1.246,1.243,1.247,1.242,1.243,1.245,1.244,1.246,1.243,1.222,1.25,1.247,1.255,1.241,1.243,1.849,2.254,3.289,1.941,3.102,2.232,2.246,2.246,2.202,1.845,1.819,2.928,4.225,2.847,5.064,4.269,5.605,2.19,0.774,2.711,1.391,1.295,2.155,0.514,1.048,2.176,1.098,2.655,1.429,2.857,2.771,2.134,2.089,1.356,4.188,4.163,3.534,5.549,9.574,6.488,6.054,3.059,0.167,4.17,2.845,4.073,3.505,2.722,2.482,5.519,4.568,5.785,3.923,3.973,0.545,5.352,5.374,1.49,1.823,2.632,3.315,6.979,5.982,5.243,6.72,4.417,1.497,5.115,3.451,0.546,3.368,3.679,5.377,3.279,3.385,4.281,4.843,3.977,8.952,5.007,3.948,3.962,3.106,2.78,2.303,2.458,2.734,2.001,2.291,3.019,2.88,3.102,1.414,1.338,1.984,1.971,1.833,1.858,2.623,0.647,1.333,0.924,1.096,0.763,0.404,1.377,1.38,1.379,1.379,1.379,1.38,1.377,1.381,1.378,1.379,1.378,1.381,1.379,1.378,1.566,1.591,3.144,4.418,2.293,4.602,2.261,2.949,4.141,2.751,2.373,6.392,5.233,5.539,8.822,8.235,2.094,3.369,0.248,3.126,1.764,1.116,1.855,1.828,2.048,0.651,1.742,1.471,0.311,0.787,1.553,1.213,2.034,1.644,1.455,1.543,1.128,1.393,1.516,1.64,1.781,2.075,1.644,2.073,2.558,1.446,0.744,2.905,2.096,2.262,2.393,3.754,4.162,3.507,1.871,2.327,1.364,1.631,1.972,1.842,1.934,2.281,1.799,2.257,1.186,2.581,1.858,1.635,2.157,0.257,2.66,0.767,0.967,2.915,3.007,2.329,1.764,1.617,2.906,2.288,2.046,2.546,1.795,1.89,2.181,1.381,3.834,3.517,6.133,11.216,8.145,6.912,11.195,6.695,8.473,0.277,1.156,7.617,10.018,1.305,0.418,5.462,5.282,5.549,5.709,4.385,4.165,4.994,3.87,2.746,2.613,3.055,3.293,4.172,4.134,8.73,2.558,2.141,2.928,1.741,0.803,0.988,0.993,0.977,0.963,1.441,1.656,1.9,1.692,2.249,3.808,5.32,1.177,1.038,1.005,0.965,1.153,1.028,0.959,0.842,1.051,1.34,2.097,10.542,9.295,7.055,0.819,6.56,2.783,5.861,3.792,3.021,2.926,4.056,5.323,6.35,1.316,6.309,6.19,3.469,1.732,0.028,2.551,1.941,2.632,2.759,3.014,2.818,1.225,1.338,2.543,3.894,2.703,1.21,2.079,1.71,3.034,3.02,1.434,3.207,2.734,3.343,2.239,2.414,3.282,2.23,2.321,1.489,1.768,3.231,1.98,2.723,2.558,2.509,2.419,3.457,4.978,1.784,1.461,3.302,3.338,4.114,4.216,8.167,4.641,4.911,7.034,2.61,3.841,3.209,3.627,0.494,3.24,3.304,3.726,3.968,3.297,3.729,5.23,2.133,1.922,0.605,3.889,0.877,1.015,0.988,3.374,7.324,1.502,1.887,2.078,4.793,3.16,3.3,2.3,4.466,5.179,3.406,1.834,2.27,2.091,1.964,1.87,1.772,1.978,2.065,4.641,4.719,2.042,4.878,6.396,5.973,0.56,2.928,3.034,3.255,3.197,2.838,4.976,4.36,4.843,4.829,10.464,17.347,6.753,6.744,5.982,6.011,0.865,1.933,3.182,3.128,6.274,3.739,3.594,2.092,3.112,2.933,2.1,2.484,2.959,2.683,1.914,1.319,0.582,6.713,2.881,3.925,3.487,3.29,4.308,4.327,3.036,6.8,3.664,4.337,3.72,5.542,8.291,5.656,7.22,2.884,2.508,1.758,3.116,4.382,0.217,2.863,1.662,4.677,6.598,2.591,3.91,6.555,8.413,1.978,4.918,0.658,6.734,7.09,13.776,13.631,4.932,4.053,4.845,2.895,3.789,4.058,2.329,2.472,4.095,4.05,3.625,4.534,4.425,4.44,4.104,4.843,2.112,2.609,2.596,4.301,3.42,5.959,1.892,3.346,3.082,3.254,3.902,1.501,3.788,3.143,3.038,5.519,4.211,4.127,2.865,3.99,4.665,4.393,7.639,4.905,4.568,3.842,4.266,3.142,7.801,17.191,6.24,1.145,2.699,0.849,0.744,1.342,2.719,0.72,2.137,2.291,0.988,1.518,3.989,6.287,6.382,5.684,3.167,2.836,3.791,3.775,3.288,3.116,2.925,3.266,3.592,3.384,3.479,2.442,1.88,2.113,2.474,2.88,2.57,1.801,3.401,3.478,2.597,3.402,2.356,5.005,5.605,3.212,5.487,6.418,2.513,2.591,5.528,5.416,5.843,4.754,9.018,4.491,0.431,4.607,9.935,11.893,14.891,3.537,2.554,0.406,1.982,2.288,3.623,0.022,2.037,2.876,2.038,1.927,2.564,4.279,2.629,2.077,2.315,3.054,4.984,3.497,4.771,1.45,3.892,4.073,2.451,6.414,5.597,4.788,5.581,5.316,7.308,8.103,8.93,2.93,7.206,7.657,6.367,7.076,2.045,4.402,4.46,6.18,5.222,1.964,4.449,7.006,8.236,6.436,5.862,6.66,5.127,6.578,1.386,4.74,1.578,3.765,5.056,5.089,2.505,2.422,2.391,2.283,5.071,3.66,3.729,3.448,3.334,1.104,3.489,2.638,2.13,1.663,4.772,2.259,1.686,1.887,2.037,2.419,2.595,3.225,0.537,2.852,3.945,6.354,4.816,4.817,4.391,4.307,4.935,5.118,6.287,6.197,3.776,2.368,6.375,3.585,3.401,5.007,3.03,2.676,2.421,3.038,7.306,2.693,3.3,4.761,2.034,2.843,2.58,2.685,2.668,2.996,3.308,3.381,3.863,4.454,4.527,3.145,3.699,3.724,3.65,2.951,3.194,2.91,3.237,3.059,3.083,3.712,4.049,5.069,2.453,3.005,4.808,4.504,2.464,2.555,4.129,3.201,2.908,3.116,2.978,3.879,4.194,0.081,3.104,4.127,5.095,6.652,7.782,0.515,5.717,0.953,8.156,4.629,8.881,6.849,6.547,3.599,3.387,6.254,2.734,2.156,3.309,5.442,3.301,3.855,3.679,5.003,4.2,3.705,3.297,3.453,3.897,5.924,0.836,2.246,3.227,2.016,1.248,4.144,4.083,2.562,3.073,4.241,4.279,2.833,1.979,2.283,1.795,1.854,3.032,2.609,3.027,3.675,3.619,2.261,2.423,4.247,3.037,3.007,2.656,2.836,3.04,3.032,3.021,2.024,3.027,3.67,4.026,2.411,2.443,2.013,2.837,4.245,4.242,4.259,4.869,3.22,2.41,2.264,1.811,2.011,2.266,2.418,1.95,0.483,3.025,2.049,3.006,2.831,2.662,1.594,1.426,2.428,2.829,3.153,3.619,3.651,2.629,2.849,1.399,2.21,1.836,3.17,2.473,3.615,1.737,2.275,3.005,1.779,2.064,1.996,2.061,2.45,1.705,1.361,2.536,1.254,2.444,2.891,2.573,2.846,2.427,3.033,3.377,1.803,1.695,2.238,2.839,2.592,2.66,6.233,3.191,1.209,2.317,2.578,2.891,2.699,1.494,1.854,3.181,2.066,1.714,1.229,1.143,1.315,1.773,3.948,2.413,1.254,1.441,1.705,2.921,2.213,4.333,1.532,1.453,1.386,1.114,0.968,0.413,1.277,3.234,1.801,2.173,3.083,2.016,2.646,1.243,0.817,1.257,0.882,1.447,2.348,3.071,2.962,1.59,2.447,1.955,0.818,1.549,1.192,1.045,2.287,2.294,2.122,4.523,1.295,2.644,1.209,1.305,1.471,2.193,1.974,2.1,0.941,0.847,3.344,3.551,2.028,0.697,2.693,2.479,2.612,2.861,5.011,0.903,2.592,2.28,2.287,0.272,1.393,1.566,1.727,0.488,2.713,1.112,1.491,1.437,2.384,2.301,1.042,1.401,3.744,3.124,2.004,2.031,3.328,2.656,1.464,1.271,3.345,2.677,2.701,5.895,4.744,2.627,2.051,1.364,1.127,3.88,1.156,4.822,1.151,1.773,1.591,1.862,1.718,1.266,2.885,2.713,1.148,0.314,3.877,0.939,1.483,1.267,1.162,6.554,1.192,3.358,2.532,0.752,1.087,3.377,1.928,6.673,1.263,1.514,3.232,2.617,1.896,1.913,2.568,5.024,2.112,1.407,0.844,4.184,4.149,2.225,2.061,1.275,11.521,1.25,0.83,2.186,1.217,0.973,0.704,6.085,1.576,3.086,1.595,3.521,0.059,2.09,1.242,2.4,0.707,0.882,0.785,1.113,0.452,1.641,1.12,0.654,1.963,4.452,1.277,1.03,3.086,3.185,1.155,1.848,3.977,4.179,1.421,0.676,2.036,2.637,4.551,5.06,2.499,2.932,1.024,1.8,0.449,1.841,1.912,0.613,1.244,0.715,1.234,3.747,1.206,2.997,2.974,5.637,2.012,0.595,0.668,2.18,1.44,0.747,1.275,0.552,0.514,0.919,0.714,1.28,0.689,0.713,0.482,0.417,0.856,3.01,2.713,2.078,1.442,1.88,2.837,3.04,1.604,1.683,1.229,9.985,0.563,1.074,1.451,3.321,0.911,0.801,0.774,0.783,0.779,0.77,0.83,2.091,0.783,1.391,1.859,1.289,0.914,5.864,2.193,2.604,1.937,3.018,3.823,1.194,1.289,0.44,0.852,1.049,0.798,0.901,2.049,1.893,1.855,2.378,2.068,3.031,1.274,0.88,0.871,0.87,1.346,0.8,0.787,0.798,0.783,4.468,0.679,0.695,0.692,0.688,0.344,0.848,2.088,0.857,0.873,0.328,1.746,2.42,1.248,2.152,1.691,0.953,2.041,4.914,3.484,1.152,2.278,1.135,1.76,1.965,0.905,0.324,0.412,0.721,1.184,1.61,1.94,1.607,0.479,0.478,0.876,1.341,1.28,1.416,1.913,1.107,0.498,0.443,0.854,0.842,0.635,0.664,0.906,1.218,0.594,0.637,0.558,9.904,0.863,0.628,0.497,0.864,0.744,5.798,1.012,0.855,1.038,1.238,3.107,5.254,1.634,8.303,15.856,16.369,28.557,7.59,27.305,1.371,19.783,7.636,6.873,4.503,6.162,2.182,0.848,8.174,2.347,3.479,2.949,5.297,3.417,6.906,1.484,0.561,0.384,8.234,10.991,2.375,3.163,3.16,4.554,3.244,0.537,0.926,2.251,0.651,3.31,2.588,1.766,4.008,1.709,3.456,1.285,0.72,1.978,0.916,0.817,4.277,1.309,2.055,2.534,1.789,2.991,2.746,5.735,0.348,0.574,5.668,4.061,1.35,8.273,4.626,4.516,3.754,3.816,1.737,2.309,0.93,1.33,1.696,1.658,1.412,2.408,3.335,2.599,1.241,0.592,1.102,1.713,0.26,1.71,1.003,3.637,2.999,1.714,1.639,2.566,2.603,2.551,2.097,2.711,2.584,3.741,4.255,1.433,4.255,1.057,4.575,5.22,8.488,7.295,7.056,0.974,0.833,1.082,1.036,1.387,1.588,1.701,2.714,2.586,5.26,6.012,9.894,7.084,2.575,2.474,8.183,1.594,3.529,0.764,2.884,1.607,2.574,1.568,1.369,1.813,2.371,4.217,7.581,3.251,2.626,3.176,2.722,2.09,2.108,1.687,3.238,4.095,0.705,4.355,3.93,3.966,10.084,5.978,3.259,2.704,5.163,8.609,5.934,4.764,3.203,1.885,6.04,4.36,5.533,0.408,0.077,2.483,0.995,0.523,2.658,1.483,1.743,1.22,3.289,1.317,2.687,5.309,1.631,1.342,3.138,2.62,5.423,7.195,7.768,13.34,6.654,7.046,3.746,5.059,2.562,1.845,1.595,1.402,0.974,4.104,3.303,1.747,1.758,5.861,5.553,2.794,2.692,1.317,0.799,3.154,6.651,0.394,5.166,5.311,5.873,1.076,5.875,1.086,6.687,6.704,8.851,8.944,13.781,5.302,5.278,4.219,3.192,3.249,1.333,1.163,3.076,2.45,2.342,3.867,2.386,2.601,2.597,4.811,3.328,3.257,3.486,3.301,5.691,4.259,5.552,3.339,3.321,4.798,5.089,2.202,1.051,2.198,4.037,4.002,6.918,3.316,1.994,4.396,4.188,2.61,7.481,2.267,0.381,1.194,4.587,0.297,1.186,3.917,3.182,3.069,2.141,0.945,2.751,1.891,1.801,4.949,4.979,4.753,0.073,0.248,1,1.164,4.668,1.135,2.168,4.02,3.784,3.781,3.431,3.529,8.446,4.756,3.883,1.725,4.044,4.006,4.347,4.054,4.043,4.052,4.039,1.238,6.862,6.213,6.568,1.627,0.884,6.443,6.805,0.855,11.744,14.538,4.531,0.918,12.994,23.041,1.023,21.199,9.939,14.286,0.963,5.718,5.648,6.361,4.011,6.404,4.371,4.368,2.353,6.138,4.866,6.576,1.404,6.06,5.336,5.624,7.877,5.232,3.711,7.885,4.067,4.866,7.136,7.95,4.74,6.238,8.29,2.768,4.66,1.899,3.756,4.29,4.145,2.229,5.38,4.518,3.352,3.549,4.358,3.459,3.513,4.077,0.997,1.957,2.497,2.692,2.733,1.781,1.598,2.229,2.17,2.413,2.708,2.218,2.432,2.5,2.955,4.188,0.965,2.356,2.103,2.086,2.262,1.375,0.147,2.466,4.018,2.309,3.957,3.301,2.487,2.119,2.529,2.646,3.993,2.763,2.536,3.595,3.604,4.094,3.765,2.254,2.162,1.015,1.48,1.752,2.088,2.13,1.939,2.013,3.138,3.941,2.577,2.736,1.188,1.893,4.577,2.69,3.297,3.221,3.389,3.407,7.243,1.105,6.818,3.403,6.806,6.03,2.862,8.748,1.688,5.229,7.494,8.2,6.664,1.072,6.45,3.126,4.657,6.772,5.165,7.022,9.99,1.651,3.414,7.014,10.476,0.396,0.905,6.494,1.633,2.932,6.564,3.542,0.069,3.645,1.225,1.512,4.404,4.455,1.141,4.505,2.833,2.229,7.568,1.068,1.919,2.609,2.412,3.105,3.373,4.182,4.357,4.201,3.583,4.476,0.963,2.58,4.591,3.158,3.21,5.324,3.207,8.768,0.982,4.889,7.387,5.169,11.408,3.617,0.699,1.119,1.549,0.369,3.723,9.671,2.001,2.426,1.24,5.723,3.237,6.65,2.749,3.281,1.345,1.531,1.47,2.937,2.25,2.475,1.429,0.986,2.195,1.888,1.346,1.045,1.777,1.697,1.881,1.904,2.211,1.525,2.024,2.172,4.267,3.859,7.141,1.008,14.758,8.976,8.479,11.888,11.248,8.962,0.195,7.734,5.889,3.438,0.514,2.924,6.934,7.741,3.692,3.652,2.198,2.032,1.81,1.855,1.86,1.946,2.312,1.941,1.433,1.488,2.502,0.625,1.574,1.732,1.979,1.613,1.295,2.47,2.893,2.753,2.542,1.637,5.346,5.311,3.383,1.875,1.164,4.047,2.826,1.273,1.807,2.343,2.166,1.588,1.303,2.027,1.819,1.781,1.91,1.893,1.553,2.415,2.246,2.037,1.852,1.849,1.724,1.836,1.764,1.646,3.078,0.771,5.529,6.754,4.358,2.627,2.197,2.269,2.329,2.385,3.208,2.631,1.786,2.468,2.14,1.592,1.736,1.948,1.083,1.743,1.923,2.013,1.877,2.897,2.354,1.865,1.693,2.241,1.882,1.421,2.099,1.631,1.58,0.113,1.058,1.343,1.284,1.67,1.836,0.937,1.438,1.455,1.719,1.742,1.046,1.303,1.299,1.27,1.183,1.672,1.643,1.261,1.509,1.552,5.445,1.639,1.413,1.465,1.591,1.225,1.443,1.632,1.738,1.392,1.614,1.473,0.999,1.515,1.628,1.204,1.252,1.317,1.523,1.928,1.119,0.882,1.282,1.384,1.721,1.911,1.204,2.283,2.865,0.361,4.25,2.28,2.161,1.733,2.921,1.615,0.459,1.783,1.779,4.51,2.007,0.881,3.296,2.421,0.678,2.057,0.951,1.876,2.521,2.591,0.989,1.095,2.111,3.309,3.31,2.643,0.937,1.752,2.482,2.202,0.502,2,2.106,2.849,3.027,4.897,1.707,4.457,4.143,4.324,4.981,5.236,11.574,1.039,2.576,1.115,2.497,1.853,1.81,2.323,2.41,1.122,1.307,1.899,1.896,1.997,2.933,3.204,2.786,1.029,1.936,1.736,1.247,1.307,1.529,1.6,1.486,1.52,1.985,2.3,2.321,1.398,1.421,2.889,2.912,6.418,2.943,5.548,4.089,4.03,2.959,2.467,1.404,1.223,2.802,1.815,2.301,2.042,2.345,1.857,1.849,0.943,0.518,0.562,1.948,1.899,2.455,2.408,2.542,2.46,1.075,1.084,2.938,1.671,1.795,2.088,6.059,5.583,1.867,4.037,1.764,2.52,2.612,2.518,0.682,0.501,1.245,3.066,3.073,0.782,4.085,6.179,2.944,2.353,3.676,2.061,1.897,1.219,1.788,1.39,1.948,1.679,0.663,0.719,2.893,2.665,1.544,1.508,0.912,2.012,0.041,1.649,1.801,1.555,2.067,2.414,2.628,1.145,1.11,1.732,2.572,2.162,1.469,0.736,1.358,1.347,2.831,0.93,1.443,1.68,2.364,0.729,1.859,1.037,1.319,1.569,1.784,2.24,1.689,2.329,1.133,2.132,0.568,0.712,0.756,0.893,0.779,0.075,0.886,0.946,0.853,0.813,0.797,1.657,2.649,2.27,1.513,1.589,1.513,1.047,1.429,1.072,1.243,1.395,1.206,1.579,2.795,2.735,2.591,3.315,2.613,0.943,1.226,1.111,1.755,1.826,1.551,1.23,2.015,1.301,1.238,0.56,0.779,1.277,1.38,1.394,1.117,1.433,0.922,1.022,1.399,1.123,1.266,1.992,1.321,1.242,0.642,0.611,1.389,1.1,1.048,1.35,1.357,1.106,1.396,1.544,1.392,2.597,2.604,3.371,1.855,2.403,1.173,1.253,1.371,1.294,1.408,1.274,1.443,1.396,1.017,0.928,1.052,1.029,0.99,0.851,0.708,0.998,1.683,1.52,0.995,1.83,1.372,1.361,1.637,2.215,0.301,1.515,4.161,2.108,0.467,2.19,1.264,1.73,1.604,0.45,1.353,1.464,1.258,0.726,1.388,0.806,0.373,1.842,1.305,1.241,1.198,1.979,1.978,2.147,1.284,0.696,2.308,1.499,1.445,0.921,1.719,2.513,2.095,1.504,1.789,3.65,1.849,1.798,4.443,2.217,3.76,0.738,0.793,3.356,3.197,0.595,1.101,3.99,3.743,1.006,0.761,1.419,2.412,1.091,4.261,1.06,3.488,2.905,1.792,2.372,1.464,1.571,1.195,1.285,1.82,0.434,0.791,0.891,0.901,0.637,0.815,1.238,1.184,1.468,1.371,1.426,1.955,3.209,3.256,1.96,2.231,1.076,0.752,1.987,4.489,4.506,9.555,1.542,0.742,2.244,4.665,2.926,2.752,1.224,0.546,1.916,1.873,1.138,0.708,2.783,2.41,6.116,5.666,5.202,4.61,3.908,4.297,7.255,3.38,5.77,3.264,2.331,2.469,2.658,3.445,2.124,2.305,1.595,2.148,2.451,1.582,2.02,2.236,1.94,0.826,1.038,2.089,1.603,1.723,1.721,1.399,2.721,1.068,1.201,1.665,1.975,2.297,2.634,3.343,3.741,2.354,2.282,3.249,3.833,4.061,2.432,2.072,4.806,4.18,3.993,1.643,0.372,2.552,2.538,1.779,1.44,2.223,4.723,4.718,3.72,1.61,3.805,4.002,3.122,2.598,2.924,1.391,1.808,11.071,1.229,5.293,0.824,7.738,1.317,1.213,2.435,1.764,2.097,2.196,1.89,2.249,2.526,2.019,3.604,3.659,3.463,2.412,2.533,3.879,4.143,2.592,2.289,0.355,1.297,2.031,1.527,2.422,1.803,2.061,0.359,1.308,1.229,0.959,1.369,1.969,2.861,2.445,2.849,2.797,2.131,1.733,1.973,1.451,0.519,0.818,1.69,1.625,2.497,4.704,2.529,3.266,4.882,2.743,0.058,3.873,6.189,8.513,6.824,3.403,8.598,4.344,2.052,4.174,3.635,2.946,3.961,2.398,2.554,4.571,3.007,3.17,1.359,4.038,2.331,1.898,1.945,2.19,2.305,1.277,3.098,1.399,1.096,1.535,5.759,3.233,1.943,2.259,2.749,3.701,4.316,6.493,3.859,0.529,1.121,4.134,1.984,2.996,10.354,6.46,5.069,1.852,1.903,1.915,1.619,1.653,1.657,1.386,1.704,1.587,1.691,1.394,1.553,1.302,1.806,1.321,2.084,11.114,10.331,1.933,2.35,1.669,3.482,1.874,2.077,3.107,2.618,2.84,2.797,2.102,2.111,3.975,2.467,0.654,1.734,5.838,10.182,20.557,3.689,1.674,0.867,1.175,1.221,1.908,1.525,1.355,0.934,0.89,0.944,1.581,1.504,1.397,1.191,1.41,1.351,1.778,1.835,1.886,1.812,2.037,1.073,0.966,1.196,1.445,1.273,1.128,0.901,1.393,1.344,2.243,6.102,3.67,15.62,0.566,9.789,5.645,1.555,0.676,6.48,13.543,12.822,1.473,8.16,11.514,3.76,5.218,0.24,2.539,1.625,1.786,1.25,1.183,2.638,2.437,2.315,0.815,1.819,2.184,7.028,2.653,3.938,0.142,2.693,2.362,2.031,2.026,2.084,3.413,7.936,2.484,6.599,3.593,4.824,3.572,3.322,4.101,10.306,11.133,9.6,9.865,5.52,3.155,2.864,5.029,3.972,3.783,4.141,5.054,7.754,3.093,2.298,1.335,1.971,1.766,1.734,2.397,2.767,2.133,2.681,2.503,2.879,2.17,2.966,3.202,7.473,1.95,2.761,2.702,2.547,2.57,2.131,2.17,2.964,2.074,2.299,2.953,2.921,39.282,2.802,2.6,2.02,2.527,4.146,7.306,2.368,2.519,2.649,8.849,4.325,2.883,4.327,4.534,3.412,3.704,4.129,2.939,4.104,0.988,2.242,2.18,2.305,2.279,1.509,2.351,1.971,1.56,1.154,1.838,1.977,3.888,2.643,5.868,2.07,2.421,3.917,3.832,5.333,3.341,0.672,1.845,8.071,3.828,4.112,3.862,2.595,2.16,2.358,3.502,2.452,0.172,4.13,3.018,3.025,3.068,3.057,5.477,5.734,8.731,5.756,2.421,2.46,3.601,2.56,3.164,2.9,1.094,2.04,2.194,2.514,0.221,4.076,2.167,0.441,6.039,0.557,1.865,1.275,14.994,9.649,3.624,5.529,5.441,1.806,3.576,4.236,4.362,1.211,2.751,9.829,3.929,3.928,4.966,4.619,2.743,2.808,4.389,2.732,2.983,4.747,4.992,5.419,9.51,2.684,2.611,2.539,2.578,2.52,2.188,1.746,1.076,2.302,2.179,2.743,2.787,2.594,2.418,2.494,2.47,3.359,3.106,3.006,2.598,2.944,2.924,2.299,2.418,1.763,2.061,1.375,1.714,2.034,2.209,0.305,2.811,2.861,3.218,3.195,7.311,1.932,0.785,6.891,3.008,3.004,4.616,4.86,3.8,3.82,6.487,6.884,7.002,4.669,4.759,5.938,5.762,5.686,7.862,7.858,7.767,11.65,0.033,5.477,5.646,1.039,0.318,9.415,6.226,6.084,5.799,5.837,1.518,1.525,3,6.066,4.436,4.961,4.122,4.328,8.519,2.767,2.677,3.131,3.063,2.813,2.818,2.901,3.863,6.618,3.577,2.519,2.521,1.977,2.068,4.06,2.775,2.703,2.357,0.761,1.496,3.78,3.189,2.968,2.198,2.167,2.144,1.252,2.303,2.428,2.868,2.142,2.803,2.986,1.014,2.395,2.871,2.496,1.011,3.696,4.172,3.346,1.468,1.271,2.69,2.285,3.967,3.892,4.227,3.124,2.892,4.013,2.811,5.048,1.729,0.634,4.024,4.029,2.915,2.177,5.152,4.12,3.725,3.375,14.79,8.61,3.386,3.343,1.072,2.12,2.056,4.122,6.376,6.831,4.128,4.138,3.913,5.531,5.098,3.9,3.804,3.009,5.442,5.099,5.111,4.406,3.377,2.765,3.093,3.4,3.642,3.001,4.45,2.577,2.514,1.643,1.607,1.425,2.089,3.401,2.776,4.017,2.132,2.085,4.102,2.033,3.253,0.416,0.504,1.558,4.045,1.093,1.507,4.002,2.065,2.383,3.231,3.174,3.791,3.187,3.501,3.235,3.383,11.855,5.178,3.654,3.391,0.938,6.151,2.199,2.195,5.449,2.787,3.294,2.139,1.382,6.941,0.285,2.657,4.465,2.699,4.996,2.82,2.406,4.361,1.88,0.605,7.206,13.753,2.066,5.834,3.762,2.948,2.778,1.978,1.984,1.562,2.936,2.791,1.465,2.104,2.005,4.206,4.268,4.876,5.345,8.519,3.655,2.141,2.865,2.952,2.31,1.894,1.741,2.097,2.188,2.933,3.211,2.586,1.746,0.656,1.782,1.968,2.114,0.92,1.535,1.552,2.633,1.959,2.168,1.618,2.537,2.819,2.565,2.032,3.544,7.217,5.017,4.692,2.627,2.217,4.037,3.283,2.332,1.283,0.61,0.272,0.363,4.222,1.687,1.967,1.741,1.858,1.7,1.714,1.655,1.654,1.926,1.921,2.652,2.889,2.264,1.592,9.781,4.602,3.565,7.804,1.687,1.718,2.076,1.112,0.995,1.281,2.822,3.345,2.643,1.885,5.063,1.873,1.766,1.841,1.814,2.013,6.313,2.092,2.319,2.318,2.576,3.589,1.48,1.508,2.529,1.819,1.122,2.266,1.32,1.29,7.937,1.491,1.896,1.939,2.572,2.703,7.69,1.693,1.64,2.15,2.106,1.95,2.456,2.045,6.149,2.626,1.536,1.581,2.335,2.402,1.898,1.916,2.698,2.767,1.957,2.233,1.854,1.873,6.129,2.304,1.809,1.812,1.868,1.769,2.726,7.879,6.573,1.979,1.922,1.997,2.354,2.256,2.905,2.625,3.887,2.8,0.956,26.424,1.302,1.406,1.837,2.591,2.018,1.656,1.978,2.361,3.511,11.809,2.115,2.566,2.313,2.197,1.679,2.982,3.358,18.671,3.257,3.592,1.93,2.18,4.187,3.207,3.577,1.424,1.83,1.936,3.655,2.501,3.059,3.039,3.043,2.901,2.55,2.55,1.731,1.746,2.831,2.712,2.789,2.793,2.798,1.314,2.208,2.856,4.189,0.833,1.921,2.731,7.348,1.496,1.634,3.085,2.762,3.684,3.343,1.841,1.918,2.318,0.437,1.029,1.475,1.361,1.245,1.533,1.382,1.727,2.284,0.381,1.831,1.017,1.015,0.976,0.933,1.364,1.759,2.164,13.088,2.198,2.221,2.719,1.952,1.884,1.677,1.712,1.783,1.817,1.562,1.55,3.348,3.753,3.684,2.075,1.155,1.065,1.561,1.306,1.476,1.195,1.178,1.463,1.371,1.123,0.698,0.814,0.763,0.959,5.064,2.534,1.333,0.894,1.479,1.324,1.343,1.522,1.538,1.017,2.141,1.461,9.496,3.902,4.289,2.824,4.687,5.885,3.77,3.6,4.614,0.492,3.955,3.727,9.922,2.692,2.704,2.633,2.56,2.52,2.162,2.754,0.634,2.129,7.813,1.82,1.393,1.803,1.447,2.028,2.375,2.518,2.327,2.174,2.176,1.018,3.714,2.249,2.166,8.664,13.72,4.448,2.739,2.42,3.659,2.074,9.199,3.311,2.538,3.816,2.604,2.73,1.835,3.959,4.055,0.849,4.393,2.433,2.867,2.805,3.326,2.603,2.773,11.431,12.875,1.044,0.588,11.596,1.211,2.207,1.789,3.138,1.901,1.99,1.636,1.671,0.236,1.679,1.817,1.481,1.86,1.515,1.516,4.874,1.775,1.761,1.839,1.77,1.785,2.336,2.291,1.997,2.203,2.495,6.28,1.946,1.719,2.207,2.549,2.208,2.107,9.902,2.151,2.082,1.887,2.475,2.52,1.309,2.806,2.692,1.687,1.322,0.261,1.93,1.772,2.744,19.389,4.34,2.186,2.53,2.551,20.745,2.309,3.016,3.153,1.869,2.839,2.442,3.275,2.873,3.131,2.18,1.991,2.859,2.622,2.017,2.345,1.872,2.016,3.115,6.007,2.041,2.454,4.225,7.461,0.868,0.693,0.982,0.793,19.054,3.445,3.774,3.838,7.523,5.899,1.57,3.385,3.97,0.001,5.864,4.593,2.208,6.239,16.354,5.54,1.193,1.33,4.469,8.366,12.634,3.518,3.258,4.73,0.513,8.411,6.489,6.468,16.846,3.829,3.607,4.343,27.108,5.325,3.819,2.553,3.057,3.505,2.765,3.068,2.559,2.349,2.738,0.313,4.265,2.914,2.731,3.018,3.037,10.115,6.124,4.213,3.707,4.772,10.151,2.35,2.803,3.853,2.691,2.697,2.052,1.841,2.301,1.528,1.189,6.415,2.259,2.324,2.03,2.342,0.453,1.887,3.381,2.552,2.105,3.332,3.173,2.373,2.454,3.4,2.204,2.861,2.176,1.962,2.614,5.083,1.846,1.985,3.112,3.565,2.006,6.233,2.405,2.178,2.708,2.21,0.968,1.111,1.707,2.321,0.404,1.568,1.486,1.947,1.988,2.705,1.416,1.965,1.77,1.789,1.579,1.814,1.765,2.383,7.557,7.853,1.679,1.717,1.688,1.275,1.292,2.027,1.585,2.116,1.948,2.233,1.87,1.741,1.19,2.147,1.891,1.801,2.047,1.61,0.998,0.998,2.019,2.036,1.402,2.067,2.225,1.797,2.011,1.091,1.789,14.281,6.418,1.486,4.649,1.946,2.928,2.863,2.861,1.681,2.461,2.143,2.641,1.677,2.161,2.496,2.812,2.911,9.182,3.736,3.684,2.233,1.171,1.291,2.465,3.331,2.085,9.568,3.442,3.488,7.377,5.291,3.055,4.594,7.542,10.189,1.756,2.608,2.452,3.072,1.934,2.491,2.027,1.878,1.647,4.155,6.799,1.97,1.424,2.229,1.572,1.038,0.949,1.487,1.478,1.627,1.634,2.24,2.549,3.069,1.362,1.375,2.168,2.182,1.74,1.88,1.772,1.76,4.074,2.22,2.171,2.169,2.214,2.169,2.181,2.116,1.882,1.756,1.676,2.439,2.796,2.576,1.463,1.771,0.241,0.007,1.544,1.196,0.651,1.844,1.996,1.998,3.987,4.114,0.609,2.174,1.317,1.29,1.711,1.525,1.193,1.847,1.634,1.982,2.213,1.917,1.265,1.935,3.187,6.359,3.349,3.795,2.035,2.48,1.808,1.737,1.746,1.76,1.738,1.738,2.537,2.222,1.454,0.012,0.84,2.202,2.125,1.94,2.302,0.734,0.014,0.48,2.52,5.964,0.292,1.402,1.686,1.57,0.344,1.446,8.348,1.912,1.719,1.189,1.137,1.286,1.679,1.817,0.985,1.786,0.898,2.001,1.479,4.148,2.575,1.822,1.666,1.405,0.674,1.632,1.776,1.839,1.793,1.777,1.643,2.166,1.437,1.828,1.594,1.363,0.582,1.311,1.231,1.488,1.416,1.599,1.608,1.551,1.691,1.877,1.438,0.434,1.473,1.955,1.566,1.775,1.706,1.705,2.099,1.728,1.987,1.847,1.286,1.654,1.716,1.705,1.742,12.602,3.435,2.06,2.522,1.956,1.934,1.991,1.358,1.709,1.887,2.602,1.462,1.968,2.026,2.08,1.583,1.49,2.136,10.17,0.406,2.954,1.616,1.534,2.088,1.371,1.618,9.543,4.195,13.869,1.649,1.546,1.622,1.625,1.31,1.374,2.426,0.615,1.85,3.261,2.473,5.793,2.434,2.364,2.18,2.23,2.261,2.462,2.44,6.76,3.018,2.47,1.501,1.394,1.388,1.747,2.572,6.536,2.432,2.16,1.963,1.784,2.548,1.378,2.46,2.329,1.506,0.541,1.279,2.001,1.747,6.249,3.225,1.433,2.729,1.52,2.226,9.021,1.699,19.078,2.656,3.657,0.434,11.676,3.914,2.2,2.642,3.742,1.23,3.504,2.536,9.776,3.103,2.561,1.581,2.987,6.488,2.006,2.074,2.019,2.48,1.862,2.556,5.574,4.305,2.213,2.087,1.433,1.286,1.947,1.589,1.296,1.697,1.478,1.387,1.586,1.481,16.717,2.834,1.836,2.285,1.908,2.241,1.626,2.942,11.229,1.624,1.251,2.317,2.668,2.052,1.859,7.575,1.729,2.702,3.734,3.456,2.582,2.275,3.685,3.726,20.867,3.289,3.105,3.135,2.553,3.219,1.779,2.766,12.794,2.985,1.397,1.479,1.133,1.877,1.855,2.211,1.956,2.072,7.455,2.508,1.411,1.628,1.538,2.106,1.821,1.178,1.474,1.702,1.647,1.855,1.857,2.111,1.581,1.532,17.984,3.101,2.399,2.209,2.287,1.67,1.892,1.744,6.245,0.995,14.781,0.414,15.628,2.367,1.667,1.579,2.082,1.921,1.785,2.056,1.999,10.219,2.286,2.323,1.552,2.454,1.817,12.977,1.426,8.297,10.12,2.698,1.61,1.776,0.013,1.849,1.682,1.504,1.433,1.536,1.394,2.04,1.582,2.213,2.403,9.96,2.47,1.62,1.333,1.281,2.24,2.071,1.228,1.519,1.909,1.657,1.656,1.91,2.019,1.45,1.085,1.673,1.267,1.952,1.52,9.1,0.879,9.912,3.564,2.732,2.24,2.231,3.304,2.507,2.907,3.61,2.564,2.553,2.468,2.794,2.775,2.689,1.912,2.129,1.75,6.74,18.646,2.535,1.763,1.674,1.759,1.77,2.126,1.432,1.516,1.537,1.377,1.723,1.447,1.114,0.969,1.525,1.718,1.683,1.533,1.256,1.568,0.889,0.945,1.678,1.524,2.325,4.45,1.731,1.434,1.444,1.715,1.616,1.076,1.09,1.463,1.473,2.016,1.776,1.265,1.768,1.796,1.808,1.488,1.526,1.705,5.558,5.112,18.616,1.991,1.112,1.076,1.503,1.446,1.676,1.373,1.266,1.172,1.401,2.067,1.171,1.224,1.365,1.245,1.27,1.53,1.518,1.993,1.401,1.369,1.729,2.818,3.17,2.063,1.661,1.476,1.746,2.119,1.761,1.433,3.244,9.58,20.921,1.902,7.796,8.941,5.155,4.523,2.141,2.148,14.23,10.349,5.814,2.233,1.91,0.239,1.572,1.733,3.46,1.949,1.796,1.431,1.427,1.753,1.746,1.093,4.389,0.257,2.617,16.074,4.16,0.642,1.266,1.406,2.68,1.646,1.635,1.639,1.66,3.025,2.195,2.101,2.105,2.051,2.116,2.013,5.836,1.816,2.035,2.598,16.765,10.44,1.024,4.941,3.754,3.045,4.389,2.454,6.638,3.37,2.094,2.342,1.782,2.075,1.711,1.633,2.03,1.398,1.618,2.024,2.258,1.472,17.088,2.422,1.714,1.617,1.414,1.867,1.786,2.458,2.404,2.332,0.978,5.744,1.93,2.535,2.716,1.227,1.008,1.214,2.119,1.911,1.803,1.954,1.633,1.835,2.836,8.808,14.3,4.352,2.061,3.288,2.726,2.534,3.551,16.015,1.761,1.316,22.288,21.929,0.402,7.068,3.695,3.467,2.896,2.898,2.391,2.497,3.008,3.894,2.236,1.834,1.815,2.472,2.684,2.498,9.805,3.187,2.434,2.352,3.025,2.149,0.496,1.058,1.866,0.027,2.003,3.02,1.869,1.738,2.384,1.972,2.42,2.305,2.385,2.699,2.688,2.787,2.318,2.471,3.484,9.863,4.199,2.596,2.668,3.34,16.583,14.442,23.942,2.625,1.839,1.725,3.101,1.639,1.812,2.99,2.379,3.283,14.504,4.113,3.758,2.289,3.94,5.4,5.101,3.165,3.863,2.466,4.564,3.243,4.874,3.126,3.052,2.449,2.904,3.789,13.014,11.882,1.242,3.826,1.856,1.831,5.446,3.213,3.203,3.806,0.133,3.779,2.796,2.852,2.906,3.561,3.327,1.422,0.875,3.099,2.837,4.688,3.063,2.121,5.078,2.656,2.769,7.258,32.726,0.637,3.033,3.131,2.305,2.207,2.094,2.374,1.811,2.611,2.146,3.153,2.257,2.267,12.582,0.238,2.057,2.073,2.759,3.085,4.288,7.671,3.567,1.872,1.748,12.869,4.308,4.174,3.573,14.072,2.999,3.533,4.93,0.396,3.02,2.023,12.078,5.234,2.715,2.373,1.658,1.389,1.275,1.337,2.131,3.529,2.698,2.665,4.942,3.21,4.529,2.288,5.013,2.785,14.68,5.462,3.905,5.218,10.464,10.425,3.462,2.615,4,4.018,2.868,3.828,3.577,5.111,4.673,4.203,4.089,3.841,4.099,3.977,3.958,14.24,5.397,2.744,1.05,1.651,1.537,2.688,1.957,2.099,3.17,7.269,2.816,1.211,4.47,2.455,2.213,3.532,2.398,2.407,2.75,2.701,3.07,0.445,1.641,2.555,4.209,2.427,2.544,2.568,3.574,3.98,12.217,2.207,2.78,3.469,3.44,3.066,3.032,3.033,0.055,3.999,3.623,5.432,7.629,4.821,3.791,3.283,2.32,2.536,2.222,3.005,11.146,3.496,2.847,3.22,1.584,1.535,2.928,2.797,2.565,2.651,3.243,1.593,1.607,1.514,2.233,2.135,4.176,0.527,3.506,1.962,1.795,1.679,2.06,2.132,2.217,2.233,2.009,2.222,2.62,2.877,5.761,3.103,3.104,2.455,2.792,2.525,2.126,0.973,1.744,4.073,1.801,1.188,1.223,16.386,7.251,3.205,3.208,12.018,4.491,3.693,3.882,2.866,2.858,2.713,2.688,2.443,3.39,1.284,1.653,1.977,1.693,2.358,3.709,2.251,0.784,0.806,0.965,1.069,0.883,2.639,1.104,0.515,0.691,0.532,0.677,0.832,1.018,1.068,0.855,0.859,0.81,0.853,1.356,1.343,1.065,2.637,2.673,5.887,0.07,1.377,0.756,0.813,0.812,0.964,0.938,0.799,0.921,0.944,1.099,0.82,0.84,1.121,2.847,1.251,1.926,0.57,0.748,0.797,1.031,5.722,1.02,1.24,1.677,2.679,1.482,2.113,1.689,1.228,2.44,2.913,2.379,1.826,2.38,2.795,1.379,1.617,1.708,0.016,1.49,1.75,1.71,1.768,1.651,2.825,3.643,2.229,2.185,2.382,4.066,3.41,2.076,3.047,2.789,3.313,3.451,0.313,3.668,3.346,3.446,3.355,3.284,24.979,1.338,1.495,1.733,1.526,1.739,1.094,1.14,2.33,2.261,2.44,2.405,1.666,1.794,1.292,1.527,1.383,1.245,1.434,2.766,1.625,1.862,1.602,4.097,16.461,1.903,3.227,3.727,3.405,2.757,2.092,1.581,0.371,1.229,1.653,1.693,1.774,1.714,1.819,1.178,1.248,0.219,1.118,1.804,2.256,5.497,3.004,4.184,1.996,2.259,1.045,2.374,2.506,1.939,1.886,2.269,3.764,2.766,1.75,1.642,1.39,1.779,2.183,3.174,2.671,2.286,3.878,1.76,2.474,0.406,0.914,1.027,5.355,3.872,4.217,7.016,3.627,6.152,4.64,5.476,4.772,2.18,0.875,2.098,0.438,4.828,4.815,3.824,3.064,4.842,3.867,1.458,1.177,7.146,7.437,4.002,18.286,16.443,12.207,12.856,10.109,8.681,0.298,9.903,10.296,2.965,21.769,13.505,2.68,6.609,6.715,8.253,13.544,7.528,6.579,7.371,12.133,7.357,2.371,3.461,4.015,5.861,4.757,5.334,6.179,3.187,7.761,8.518,10.342,8.243,9.987,5.691,3.991,5.249,3.78,2.539,2.668,1.155,0.264,1.709,2.747,6.356,11.384,1.267,7.717,10.993,9.851,9.601,8.524,4.847,10.209,8.604,10.305,11.467,14.246,5.489,4.694,3.964,4.014,4.559,1.067,1.879,7.128,3.876,5.206,0.092,4.577,6.185,4.819,6.475,6.051,7.279,6.316,6.314,5.028,4.591,6.435,6.339,5.482,7.762,6.47,6.584,7.37,8.175,7.441,6.537,0.777,7.864,5.421,7.222,8.111,2.922,2.469,5.678,2.648,1.16,2.587,3.669,1.12,1.481,2.525,6.566,5.553,5.811,4.859,5.348,4.454,4.386,5.581,4.116,3.66,0.371,3.153,4.948,8.734,7.278,4.253,0.281,5.15,3.677,5.336,4.644,2.285,1.664,2.254,2.76,3.663,3.523,4.621,7.589,8.027,0.758,5.485,5.328,3.857,3.654,6.092,8.766,3.834,3.773,0.637,0.956,3.159,3.035,3.96,3.376,2.342,3.679,3.108,4.486,4.537,5.765,0.883,6.216,9.14,24.382,0.321,17.432,3.597,4.54,0.331,4.329,4.327,4.629,3.919,3.782,3.783,3.152,2.811,4.633,0.469,3.612,3.645,2.579,2.578,0.84,2.397,2.342,3.12,1.856,4.441,4.366,4.696,4.518,4.644,5.815,6.655,7.554,3.864,5.585,5.342,5.535,10.374,7.877,6.539,5.633,5.4,0.531,1.023,7.955,6.125,6.528,7.739,7.503,4.955,0.341,6.921,7.406,6.027,5.373,3.296,4.591,8.574,7.044,1.344,6.077,7.928,9.298,8.042,4.872,2.729,4.707,5.127,5.854,5.682,3.399,0.961,7.013,2.053,3.573,9.22,6.66,12.932,13.164,7.693,10.424,0.311,12.027,0.746,5.246,1.577,5.464,5.724,5.097,6.403,4.892,5.352,4.075,6.946,6.844,7.065,5.834,11.608,0.707,1.551,3.886,2.824,1.841,5.502,6.189,4.436,2.066,3.808,6.649,4.396,8.374,6.937,2.328,13.136,7.511,2.387,2.847,2.971,5.025,5.708,4.668,10.745,1.581,7.078,5.679,2.614,2.13,2.121,3.602,4.461,3.639,4.095,3.954,3.69,3.841,4.481,12.268,1.903,5.416,6.586,6.265,5.71,7.381,6.465,4.92,2.933,3.555,2.858,3.388,3.086,4.264,3.663,7.62,6.874,3.524,4.279,4.104,2.654,6.344,8.914,0.028,6.077,0.464,5.438,6.02,3.118,4.343,10.785,5.572,3.827,2.793,3.372,3.635,4.517,4.396,4.558,6.152,29.654,1.721,1.408,4.172,4.771,3.695,3.658,4.842,4.243,4.939,4.583,1.563,0.621,1.903,2.907,4.267,0.851,1.849,3.682,1.299,1.549,5.501,7.359,73.938,11.33,2.371,6.914,6.394,3.997,6.236,8.739,3.914,5.085,7.548,6.344,7.22,3.342,10.526,9.301,4.636,3.592,3.004,4.816,3.353,20.28,7.146,0.898,0.133,5.628,6.632,7.111,5.613,0.891,5.467,4.127,4.411,4.288,2.907,5.842,4.563,3.676,3.582,5.054,11.895,7.838,3.779,5.663,3.819,5.457,3.51,3.562,5.469,3.496,5.173,12.877,3.347,4.189,3.749,5.256,3.967,4.553,9.366,0.382,3.537,1.204,3.197,8.455,4.647,2.059,5.539,3.257,7.736,2.779,2.781,3.501,3.466,7.37,6.743,1.098,11.801,2.172,7.916,10.765,8.092,7.567,1,0.063,8.3,10.246,9.663,6.863,6.377,3.759,4.325,4.344,5.394,7.123,0.328,3.643,6.585,5.59,6.401,5.074,6.423,2.652,0.625,0.856,0.818,0.897,0.277,0.452,0.723,0.699,0.675,0.798,0.593,0.573,0.705,0.782,0.651,0.728,0.946,0.826,0.652,0.862,0.709,0.618,0.876,0.704,0.815,0.692,0.772,0.716,1.788,1.473,2.412,0.851,16.136,2.167,1.832,1.362,2.565,1.745,1.977,1.373,1.672,1.031,1.05,1.573,1.656,2.279,2.339,1.536,8.143,2.418,1.276,1.376,1.419,1.458,2.002,0.902,1.573,1.655,1.716,1.602,0.883,0.917,0.881,1.6,1.564,1.251,1.122,1.17,0.926,1.537,1.256,1.194,1.629,1.427,0.543,1.728,1.612,1.82,1.02,0.913,3.451,3.727,4.565,2.461,5.534,0.621,0.891,1.89,1.995,0.125,6.232,3.487,1.774,3.969,0.871,1.35,1.516,0.125,0.352,1.015,2.064,1.311,6.329,5.815,4.848,4.728,7.956,5.748,3.969,5.567,8.148,8.272,3.664,3.256,2.722,2.655,6.622,5.657,6.229,1.273,0.021,3.833,2.849,2.546,0.104,3.198,3.177,3.346,3.563,2.198,2.091,2.58,3.517,2.94,5.648,4.876,0.674,0.069,1.65,1.232,0.082,1.196,2.321,2.345,1.544,2.182,1.105,0.964,1.868,1.237,2.751,2.339,1.888,0.955,0.122,2.808,1.887,1.914,2.813,2.057,2.034,2.179,1.025,1.068,4.201,7.032,6.893,5.899,5.766,3.801,2.887,4.083,11.013,4.932,0.208,3.659,3.041,3.856,5.207,0.861,2.668,2.815,3.938,2.416,2.724,2.876,3.201,3.554,3.535,7.159,7.618,7.176,4.017,3.989,5.557,4.422,2.979,1.727,0.075,3.035,4.226,6.683,18.665,10.163,5.055,3.171,1.68,3.444,3.246,2.922,3.381,2.878,2.84,2.675,2.208,2.287,2.587,2.282,1.987,1.711,2.299,2.609,1.167,2.148,2.232,2.027,2.992,2.506,2.334,4.607,2.363,6.606,2.046,1.284,1.348,1.63,1.046,1.367,1.465,3.252,2.854,2.7,2.665,8.121,3.515,3.593,4.058,3.194,2.745,4.277,3.563,3.354,6.082,6.25,7.765,9.575,4.175,4.517,5.914,29.613,3.903,5.076,2.758,4.475,1.875,4.127,4.695,4.177,0.028,3.46,4.235,2.627,2.245,2.742,1.634,10.002,1.262,2.842,4.321,5.431,6.797,6.512,6.698,21.069,3.204,3.145,3.612,3.3,2.187,2.263,3.596,3.117,4.466,10.722,1.761,0.336,1.239,2.468,2.509,2.946,2.714,2.879,2.656,3.052,2.276,2.16,1.956,1.951,3.045,3.228,1.969,0.25,2.322,2.165,3.154,8.894,2.248,2.146,1.8,1.822,3.274,4.497,17.217,63.429,3.575,3.434,4.564,2.652,3.418,3.384,4.227,2.794,3.578,3.5,4.216,4.073,4.078,19.013,1.57,0.602,4.272,8.003,4.127,4.1,4.252,4.009,24.039,3.237,0.66,4.979,5.038,3.082,0.308,3.293,3.034,3.401,4.217,4.383,4.502,9.863,3.781,3.892,3.734,3.936,4.177,5.379,5.038,5.214,3.464,9.972,4.253,4.214,5.984,14.826,3.426,4.83,2.86,2.929,3.048,3.072,3.182,3.173,6.609,4.372,5.945,8.352,2.804,3.194,3.549,3.663,2.051,3.174,3.43,4.207,2.197,2.48,3.937,3.42,2.735,0.359,3.089,3.281,5.049,2.512,0.716,0.797,1.186,0.787,1.846,2.22,1.798,2.358,2.73,1.362,1.366,2.022,1.579,1.534,1.489,1.561,1.476,1.362,1.522,1.636,1.65,1.449,1.368,1.449,33.095,1.976,1.468,1.413,1.004,2.781,2.756,1.271,1.244,1.722,3.481,5.116,5.353,2.224,2.861,2.206,2.447,2.66,1.67,1.429,2.182,2.231,2.567,2.634,1.803,1.538,1.471,1.854,1.163,1.459,1.109,1.487,1.485,1.817,1.481,1.465,1.209,1.316,1.164,1.449,1.543,1.49,1.803,2.229,1.829,1.47,1.219,1.288,1.263,1.373,1.118,1.12,1.105,1.169,2.605,2.624,1.367,1.252,1.238,1.245,1.05,1.036,1.012,0.038,1.084,1.149,1.163,1.092,1.03,1.7,1.496,1.733,1.581,1.426,1.577,2.817,5.695,5.757,1.464,1.499,1.397,1.38,1.479,1.46,1.854,1.726,2.619,1.295,1.313,1.113,1.136,1.086,1.135,1.973,1.99,3.462,1.808,1.731,1.548,1.768,2.182,1.265,1.476,1.074,1.011,1.129,1.074,1.501,1.474,2.117,6.083,1.976,2.026,1.496,1.482,1.298,1.323,1.445,1.366,0.955,0.988,3.4,3.444,1.995,2.257,1.157,1.145,1.849,1.839,2.749,3.333,1.82,1.849,2.182,2.261,1.493,1.537,14.251,1.273,1.282,2.575,1.243,1.311,1.356,1.27,1.849,1.838,2.214,7.768,7.713,2.404,2.387,2.462,2.352,1.877,1.801,2.66,3.177,2.044,13.921,1.695,1.65,2.9,2.957,1.641,1.668,1.673,1.649,12.122,12.096,1.505,0.859,2.02,1.091,1.117,1.082,1.125,1.469,1.146,1.222,1.269,1.322,1.246,1.848,1.823,1.851,1.807,1.74,1.951,1.729,0.949,0.917,1.551,1.477,0.208,1.411,1.655,1.797,0.867,0.039,1.425,4.536,0.027,0.525,14.387,3.286,0.384,0.039,3.999,1.962,0.039,6.906,7.242,15.518,9.213,1.679,3.052,3.107,2.449,3.386,3.208,3.041,2.031,3.084,2.681,1.504,0.027,0.361,1.576,0.027,2.16,11.303,0.759,3.107,1.608,2.054,1.975,1.263,4.404,4.07,3.166,2.845,2.779,0.621,2.245,1.553,1.702,1.579,1.64,0.842,1.106,2.128,4.451,2.465,0.602,3.267,3.207,3.129,1.949,2.298,3.874,3.713,2.929,4.313,0.031,1.231,0.054,5.715,1.54,1.421,1.328,7.344,0.919,1.004,0.941,0.884,1.097,1.233,3.439,1.424,0.911,0.674,0.7,0.667,0.841,0.848,0.689,0.754,0.801,0.676,0.699,0.527,0.525,0.49,0.713,0.911,1.492,1.636,1.621,2.566,2.155,1.691,1.818,1.487,1.649,1.361,1.078,0.85,0.83,0.753,0.876,0.611,0.786,0.588,0.693,0.792,0.819,0.714,0.694,0.698,0.795,0.717,0.751,1.957,0.674,0.708,0.478,0.736,0.538,0.58,0.628,0.639,3.47,1.491,2.029,2.051,1.631,1.889,2.643,3.712,0.961,2.584,2.018,2.385,2.104,0.898,4.203,22.87,3.544,2.059,2.104,2.06,2.137,1.428,1.484,1.522,1.614,4.814,5.126,2.884,1.496,1.754,1.755,1.68,1.496,2.512,2.496,2.432,3.067,1.954,1.725,1.684,3.177,4.949,13.949,2.895,2.486,2.873,2.89,2.174,2.236,4.248,1.792,2.171,4.256,2.668,2.745,2.552,2.429,11.164,0.152,1.89,5.638,2.812,1.568,2.482,2.187,2.602,2.408,4.768,5.152,2.942,3.303,4.188,4.211,5.117,5.17,5.762,5.717,5.552,1.63,3.923,5.065,6.925,6.931,3.897,4.012,4.956,4.06,4.062,0.807,8.308,10.519,7.952,6.714,8.265,5.571,4.378,4.852,2.856,2.379,2.439,1.988,3.238,2.15,1.45,1.605,2.925,2.836,1.714,2.336,3.22,3.703,1.969,3.297,2.058,2.337,3.69,2.85,2.487,6.169,3.741,1.134,5.888,2.527,2.37,3.127,3.38,3.061,4.274,3.629,1.654,4.176,2.453,2.455,4.141,2.895,3.438,2.488,2.495,2.431,2.454,3.339,3.292,2.02,2.202,3.967,2.46,0.872,1.629,6.534,0.003,2.934,3.161,2.991,1.06,2.216,1.337,1.217,1.358,12.37,13.427,15.452,5.899,5.835,3.702,3.565,3.471,3.229,2.612,2.626,5.321,1.727,1.964,1.936,1.913,1.922,1.518,1.516,1.814,1.79,4.552,1.931,1.978,3.447,3.071,1.898,2.112,2.498,1.904,2.205,1.21,1.237,1.175,1.222,1.848,0.456,2.155,2.195,1.421,2.588,1.477,1.634,1.733,1.636,1.618,1.791,1.61,1.56,1.824,1.844,1.933,2.045,2.476,2.404,2.395,2.122,2.361,2.316,2.201,1.983,2.025,2.069,2.824,2.835,13.3,3.441,3.497,3.355,3.319,2.381,2.409,3.223,3.076,6.225,2.917,0.925,3.532,3.812,3.687,7.324,7.373,1.713,1.026,0.497,0.517,0.564,0.574,0.565,0.568,1.144,1.077,0.575,0.705,0.713,0.742,0.732,0.688,0.739,0.727,0.441,0.283,6.238,2.514,2.106,0.849,0.726,0.688,0.64,0.629,0.468,0.417,0.645,0.512,0.066,0.82,0.9,3.525,1.759,0.44,0.44,0.439,0.436,0.449,0.442,0.444,0.433,0.447,0.439,0.441,0.448,0.438,0.444,0.435,0.446,0.442,0.435,0.445,0.441,0.442,0.445,0.881,0.884,3.538,0.878,0.71,0.168,0.436,0.437,0.433,0.441,0.435,0.431,0.702,0.571,0.63,0.6,0.579,0.588,0.617,0.456,0.466,0.554,0.563,0.577,0.574,0.635,0.44,0.484,0.429,0.76,1.453,1.371,1.473,0.762,0.912,0.813,0.813,1.628,1.639,1.642,6.571,4.785,9.809,1.805,1.689,0.014,0.689,0.396,0.396,0.389,0.4,0.399,0.39,0.397,0.398,0.402,0.395,0.397,0.402,0.795,5.407,2.086,0.992,3.021,1.568,0.791,0.782,0.391,0.389,0.394,0.392,0.391,0.391,0.367,0.348,0.308,1.414,0.799,0.766,1.578,1.576,3.108,3.156,3.124,3.156,1.567,0.778,0.773,0.789,0.782,0.775,0.778,0.785,0.775,0.784,0.777,0.763,0.781,0.781,0.775,0.784,0.769,0.773,0.792,0.785,1.563,1.57,1.959,0.617,2.931,3.161,1.591,1.573,1.576,1.584,1.581,1.582,1.578,1.579,1.417,1.726,3.159,3.184,1.577,1.578,0.79,0.791,0.393,0.395,0.394,0.397,0.396,0.398,0.399,0.4,0.378,0.398,0.413,0.393,0.396,0.392,0.391,0.406,0.394,0.391,0.403,0.396,0.398,0.403,0.395,0.397,0.407,0.394,0.394,0.397,0.395,0.397,0.395,0.393,0.393,0.41,0.408,0.396,0.39,0.404,0.401,0.392,0.389,0.803,0.799,1.562,1.824,1.254,0.698,0.413,0.413,0.389,0.407,0.405,0.403,0.403,0.811,0.792,0.98,0.751,0.799,0.834,0.805,0.806,0.825,0.817,1.631,3.272,0.795,0.828,0.805,0.815,0.815,0.831,1.625,6.527,0.861,2.305,15.062,1.61,1.611,0.801,0.801,0.803,1.625,0.801,0.827,1.043,0.027,1.19,0.71,0.71,1.44,1.407,1.433,1.434,1.421,1.435,1.518,2.553,3.187,5.742,5.735,2.857,1.434,8.586,1.429,1.435,1.422,1.443,1.422,1.448,1.413,1.432,1.441,1.421,1.159,0.272,5.742,5.717,5.709,2.874,2.866,2.874,2.864,2.866,2.866,2.861,0.714,0.716,0.713,0.705,0.713,0.73,0.699,0.714,0.716,0.723,0.707,0.718,0.708,0.727,0.709,0.708,0.718,0.715,0.712,0.699,0.722,0.678,0.748,0.718,0.716,0.712,0.713,0.714,0.724,0.728,0.721,0.709,0.707,0.727,0.714,0.707,0.721,0.728,0.702,0.723,0.708,0.713,0.718,0.718,0.72,0.711,0.724,0.696,0.734,0.713,0.696,0.715,0.726,0.736,0.69,0.595,0.119,0.724,1.345,1.2,1.294,1.704,1.662,0.826,0.835,0.822,0.886,0.788,0.812,0.82,0.832,0.804,0.814,0.825,0.829,0.81,0.831,0.824,0.854,0.872,0.828,1.042,0.709,0.809,0.821,0.808,0.82,0.804,0.809,0.811,0.81,0.811,0.768,0.811,0.812,0.823,0.799,6.491,1.618,0.812,0.812,0.805,0.807,0.815,0.808,0.809,0.804,0.815,0.88,3.385,6.467,3.261,3.229,6.453,1.638,0.806,0.807,0.816,0.811,0.791,0.842,0.819,0.81,0.804,0.816,0.805,0.823,0.805,0.817,0.812,0.815,0.855,0.816,0.81,0.81,0.809,0.822,0.81,0.798,0.821,0.818,0.811,0.808,0.801,0.815,0.813,0.822,0.858,0.86,0.87,0.81,0.81,3.295,2.831,0.409,1.628,0.817,0.806,9.648,0.543,3.297,3.218,1.632,1.595,0.794,0.8,0.809,0.795,0.799,0.801,0.792,0.799,0.802,0.791,0.81,0.804,0.79,0.811,0.79,0.803,0.796,0.8,0.792,0.795,0.812,0.803,0.795,0.804,0.794,0.811,0.792,0.812,0.805,0.802,0.8,3.222,1.606,2.425,2.793,1.615,1.606,0.596,0.623,0.802,0.607,0.985,0.819,1.604,1.61,1.609,0.813,0.798,0.805,0.805,0.809,0.802,0.802,0.8,0.802,0.804,0.804,0.806,0.842,0.84,0.806,0.825,0.814,0.812,0.81,0.812,1.622,1.635,1.62,1.599,1.619,1.628,1.6,1.633,1.614,1.617,1.624,1.632,1.605,3.233,3.232,3.228,3.219,3.225,1.61,0.38,1.234,1.611,1.613,3.216,3.387,4.687,6.61,1.569,1.594,0.796,0.807,0.781,0.813,0.814,4.688,0.816,0.734,0.72,0.718,0.724,0.725,0.719,0.717,0.724,0.725,0.717,0.719,0.717,0.718,0.722,0.72,0.725,0.723,0.722,0.723,0.71,0.728,0.712,0.744,0.714,0.724,0.777,0.783,0.82,0.721,0.717,0.72,0.716,0.721,0.721,0.714,0.74,0.733,0.731,0.73,0.732,0.746,0.744,1.477,1.469,1.546,5.862,2.931,0.733,0.731,0.744,0.738,0.765,0.766,0.759,0.757,0.786,0.73,0.719,0.73,0.72,0.723,0.741,0.731,0.756,0.705,0.737,0.727,0.749,0.738,0.481,0.648,0.738,0.737,0.772,0.806,0.783,0.727,0.615,0.103,0.717,0.724,0.726,0.716,0.737,0.718,0.726,0.731,0.728,0.727,0.364,0.363,0.738,0.728,0.735,0.727,0.75,0.742,0.736,0.764,0.788,0.73,0.796,0.722,0.718,0.72,0.728,0.718,0.724,0.719,0.724,0.726,0.719,0.731,0.778,0.582,0.839,0.728,0.715,0.729,0.723,0.719,0.725,0.728,0.724,0.728,0.726,0.737,0.73,0.736,0.722,0.736,0.722,0.739,0.728,0.735,0.767,0.765,0.829,0.732,0.718,1.451,2.886,0.835,4.966,2.899,0.715,5.816,5.839,10.193,0.681,0.065,2.52,0.566,7.36,3.179,6.102,0.094,1.3,0.838,0.84,0.743,0.743,0.871,0.87,0.795,0.799,1.293,30.738,0.949,0.782,0.778,0.764,0.765,0.783,0.814,0.808,0.809,0.808,0.807,0.698,0.7,0.78,0.78,0.783,0.782,0.796,0.798,1.561,3.172,3.07,0.742,2.441,0.25,2.923,14.682,3.159,1.414,4.855,1.584,0.788,0.879,0.786,0.788,0.792,0.782,0.788,0.79,0.792,0.789,0.79,0.774,0.787,0.792,0.793,0.783,0.781,12.563,0.787,0.768,0.782,0.776,0.788,0.783,0.782,0.789,0.79,0.779,0.778,0.782,0.791,0.775,0.779,0.793,0.773,0.783,0.784,0.774,0.787,0.786,0.542,0.243,0.801,0.765,0.777,0.775,0.622,0.955,0.806,0.75,0.778,0.788,0.784,0.789,0.782,0.786,0.784,0.784,0.774,0.784,0.787,0.78,0.785,0.789,0.779,0.785,0.788,0.775,0.784,0.792,0.779,0.78,0.794,0.796,0.794,0.784,0.788,6.301,3.145,3.154,0.792,0.794,0.782,0.792,0.792,0.794,0.785,0.788,0.79,0.791,0.791,0.787,0.788,0.788,0.789,0.791,0.793,0.784,0.783,0.801,0.801,0.779,0.781,0.795,0.796,0.791,0.792,0.783,0.786,0.781,0.156,0.626,0.795,0.796,0.789,0.79,0.788,0.789,0.801,0.802,0.783,0.786,6.307,5.152,1.816,3.435,3.203,1.053,0.758,0.136,2.328,0.05,1.361,1.514,0.125,3.293,3.434,4.187,5.778,1.462,1.451,1.493,1.452,1.452,1.437,1.452,1.438,1.443,1.451,1.45,1.451,1.442,1.445,1.45,1.444,1.448,1.447,1.451,1.441,1.454,1.489,1.451,1.492,1.54,1.434,2.877,2.69,1.424,1.42,1.427,1.425,0.718,0.707,0.714,0.719,0.719,0.611,0.098,0.713,0.721,0.713,0.719,0.731,0.721,0.707,0.724,0.713,0.71,0.711,0.718,0.71,0.721,0.724,0.721,0.314,0.42,0.723,0.713,0.72,0.713,0.726,0.732,0.704,0.721,0.755,0.724,0.767,0.778,0.714,0.711,0.718,0.71,0.711,0.712,0.71,0.711,0.712,0.71,0.72,0.72,0.716,0.715,0.729,2.87,2.871,1.436,1.436,1.427,1.422,1.545,0.969,0.715,0.712,0.71,0.705,0.721,0.719,0.723,0.699,0.718,0.725,0.716,0.708,0.728,0.716,0.719,0.723,0.718,0.717,0.717,0.716,0.717,1.438,1.433,1.436,0.723,0.724,0.712,0.71,0.729,0.72,0.716,0.726,0.706,0.721,0.724,0.735,11.882,11.532,11.698,11.523,1.444,0.719,0.726,0.73,0.718,0.713,0.726,0.72,0.727,0.716,0.736,0.716,0.717,0.734,0.991,0.822,0.73,0.72,0.735,0.706,0.718,0.728,0.716,0.728,0.76,0.726,0.776,0.792,0.721,0.719,0.715,0.726,0.72,0.715,0.718,0.713,0.728,0.719,0.717,0.716,0.725,0.721,0.715,0.725,0.716,0.72,0.724,0.715,0.249,0.543,0.776,0.774,0.788,0.774,0.781,0.777,0.78,0.785,0.775,0.783,0.785,0.784,0.784,0.782,0.778,0.781,62.446,1.651,4.293,3.92,9.337,17.557,6.267,10.16,0.871,2.27,3.684,3.365,3.123,1.56,0.782,0.78,0.785,0.788,0.805,0.803,0.779,0.83,0.878,0.778,0.779,0.785,0.782,0.785,0.786,0.78,0.782,0.785,0.784,0.782,0.782,0.789,0.775,0.784,0.782,0.782,0.786,0.777,0.778,0.787,0.783,0.783,0.787,0.786,1.567,1.574,3.103,0.905,2.264,3.124,0.788,0.785,0.829,0.782,0.831,0.87,0.77,0.782,0.784,0.762,0.788,0.779,0.771,0.772,0.779,0.778,0.779,0.765,0.777,0.777,0.78,0.778,0.78,0.777,0.783,0.783,0.78,0.779,0.788,0.789,0.784,0.781,0.776,0.785,0.767,0.776,0.779,1.58,3.115,1.555,1.154,0.431,1.555,1.613,1.078,2.551,6.051,1.842,3.45,3.445,2.474,1.574,0.005,2.844,13.77,1.448,1.446,0.719,0.719,0.724,0.718,0.726,0.723,0.733,0.71,0.725,0.721,0.701,0.732,0.718,0.725,0.72,0.719,0.718,0.732,0.723,0.722,0.724,0.724,0.723,0.725,0.726,0.721,0.72,0.727,0.725,0.724,0.724,0.725,0.722,0.725,0.725,0.728,0.726,0.725,0.722,0.725,0.72,0.729,0.724,0.725,0.721,0.745,0.742,0.75,0.747,0.773,0.769,0.722,0.717,0.725,0.72,0.723,0.718,0.724,0.724,0.718,0.716,0.728,0.727,1.437,1.457,1.43,1.449,1.461,1.435,1.461,1.433,1.428,1.457,1.45,0.723,0.73,0.709,0.735,0.74,0.705,0.738,0.716,0.728,0.733,0.727,0.708,0.74,0.718,0.723,0.722,0.737,0.715,0.735,0.722,0.726,0.724,0.727,0.717,0.741,0.711,0.731,0.719,0.718,0.735,0.717,0.721,0.726,0.735,0.725,0.718,0.727,0.733,0.729,0.718,0.713,0.732,0.724,0.718,0.713,0.738,0.729,0.721,0.659,0.804,0.738,0.724,0.719,0.727,0.724,0.725,0.716,0.725,0.729,0.724,0.726,0.717,0.721,0.717,0.733,0.717,0.725,0.725,0.723,1.446,11.854,2.885,1.442,3.143,0.727,2.769,1.449,1.83,1.466,1.454,1.46,1.535,1.553,2.883,2.887,1.44,1.441,1.447,1.46,1.44,1.452,1.458,1.428,1.45,1.434,1.439,1.437,2.882,2.87,2.876,3.056,3.45,2.888,1.437,1.432,1.436,1.443,1.449,2.891,2.882,0.332,16.275,11.551,5.771,5.777,2.877,1.438,1.459,0.724,0.724,0.723,0.71,0.719,0.741,0.719,0.715,0.717,0.706,0.752,0.692,0.724,0.725,0.726,0.716,0.72,0.721,0.726,0.725,0.722,0.714,0.716,0.734,0.722,0.727,0.709,0.729,0.719,1.432,1.446,1.441,2.891,1.435,1.463,1.426,0.731,0.718,1.455,1.467,1.191,1.329,1.443,1.08,1.465,1.451,1.43,1.437,1.458,1.412,1.489,1.447,1.436,1.44,1.432,0.734,0.74,0.755,0.716,0.735,0.723,0.725,0.718,0.718,0.726,0.725,0.72,0.721,0.725,0.724,0.716,0.778,0.704,0.723,0.822,0.714,0.723,0.723,0.723,0.723,1.436,1.452,1.448,1.45,1.444,1.458,1.443,1.444,2.603,2.994,5.791,2.877,2.89,2.884,6.429,0.094,2.896,2.896,1.43,1.481,1.455,1.436,1.538,1.446,1.437,1.071,1.448,1.439,1.444,1.444,1.443,1.443,1.44,1.442,1.443,1.441,1.442,1.442,1.442,1.448,1.443,1.437,1.447,1.443,1.445,1.445,1.433,1.449,1.443,1.433,1.456,1.437,1.446,2.163,1.442,1.441,1.427,1.456,10.955,8.54,3.111,5.527,24.52,1.439,1.447,0.721,0.719,0.721,0.721,0.721,0.735,1.425,1.443,1.445,1.484,1.437,1.452,1.439,1.442,1.486,1.528,1.438,1.435,0.494,0.944,1.416,1.457,1.435,1.447,1.435,1.436,1.454,1.415,1.473,1.44,1.419,1.457,1.436,1.431,1.461,1.437,1.454,1.438,5.769,1.253,2.078,1.677,1.662,5.668,3.419,3.971,2.529,1.394,1.706,1.641,1.639,1.642,1.81,1.454,1.654,1.636,1.637,1.639,1.884,0.941,1.037,0.827,0.819,0.804,0.825,0.821,0.879,0.32,1.121,0.708,0.72,0.734,0.722,0.718,0.722,0.732,0.706,0.725,0.73,0.726,0.715,0.717,0.734,0.723,0.721,0.727,0.712,0.729,0.72,0.714,0.724,0.724,0.714,1.433,0.725,0.725,0.717,0.717,0.722,0.72,0.72,0.736,0.715,0.709,0.734,0.717,0.717,0.722,0.73,0.731,0.719,0.72,0.721,0.72,0.703,1.458,4.352,10.112,13.367,0.716,0.719,0.72,0.73,0.729,0.729,0.72,0.721,0.729,0.718,0.727,0.726,0.718,0.727,0.728,0.723,0.724,0.726,0.724,0.724,0.73,0.715,0.715,0.728,0.165,0.556,0.729,0.725,0.72,0.723,0.72,0.734,0.75,0.726,0.726,0.72,0.768,0.589,0.589,0.717,0.727,0.72,0.719,0.714,0.721,0.717,0.719,0.719,0.719,0.72,0.711,0.72,0.714,0.716,0.716,0.714,0.713,0.729,0.713,0.734,0.713,0.716,0.728,0.709,0.707,0.743,0.722,0.719,0.727,0.714,0.721,0.714,0.715,0.604,0.11,1.449,1.435,3.617,3.622,7.966,2.126,1.443,0.732,0.614,1.901,0.722,0.714,0.715,0.722,0.723,0.709,0.712,0.726,0.727,0.718,0.719,0.715,0.719,0.721,0.732,0.716,0.716,0.717,0.722,0.717,0.729,0.717,0.716,0.729,0.711,0.713,0.737,0.702,0.721,0.721,0.717,0.717,0.72,0.724,0.567,0.161,2.882,4.33,1.441,0.718,0.721,0.717,0.716,0.709,0.708,0.725,0.724,0.705,0.718,0.717,0.713,0.713,0.727,0.72,0.72,0.719,0.714,0.712,0.708,0.721,0.722,0.732,0.713,0.712,0.717,0.717,0.709,0.717,0.716,0.718,0.719,0.718,0.711,0.725,0.726,0.713,0.714,0.713,0.711,0.733,0.714,1.424,0.713,0.721,0.719,0.099,0.617,0.718,0.714,0.714,0.723,0.723,0.717,0.715,0.724,0.721,0.721,0.722,0.712,0.717,0.718,0.729,0.712,0.708,0.727,0.721,0.717,0.715,0.731,0.727,0.723,0.9,0.552,0.708,0.721,0.721,0.727,0.719,0.721,0.714,0.718,0.716,0.719,0.734,0.732,0.192,0.529,0.721,0.856,0.63,0.353,0.425,1.135,6.318,10.64,1.554,1.364,0.724,0.723,0.722,0.72,0.721,0.728,0.719,0.725,0.724,0.84,0.715,0.727,0.722,0.727,0.712,0.722,0.719,0.72,0.745,0.72,0.718,0.734,0.715,0.72,0.721,0.74,0.712,0.744,0.721,0.716,0.717,0.727,0.721,1.443,17.298,9.76,1.439,0.725,0.718,0.718,0.731,0.727,0.721,0.723,0.722,0.726,0.718,0.733,0.716,0.714,0.725,0.726,0.721,0.717,0.723,0.73,0.719,0.733,0.709,0.726,0.724,0.73,0.941,0.522,0.73,0.723,0.722,0.721,0.726,0.719,0.718,0.73,0.728,0.709,0.722,0.737,0.706,0.736,0.708,0.737,0.728,0.713,0.729,0.715,0.726,0.729,0.733,0.711,0.73,0.724,0.718,0.737,0.722,0.722,0.73,0.72,1.538,51.108,12.991,23.075,8.317,0.315,1.434,1.434,1.456,4.304,2.162,2.039,2.673,1.803,2.887,1.446,1.45,1.438,1.434,1.448,1.445,1.42,1.445,1.453,1.443,1.442,1.479,1.459,1.456,9.454,5.785,3.552,9.365,9.424,4.339,2.896,2.898,4.345,4.336,8.664,2.094,0.792,2.893,2.889,1.45,1.449,0.715,0.716,0.719,0.718,0.728,0.707,0.49,0.242,0.723,0.727,0.725,0.726,0.726,0.723,0.726,0.725,0.524,0.201,0.744,0.745,0.726,0.748,0.746,0.754,0.756,0.716,0.723,0.727,0.719,0.723,0.712,0.719,0.717,0.727,0.728,0.705,0.722,0.724,0.715,0.715,0.726,0.724,0.717,0.719,0.726,0.724,0.726,0.724,0.718,0.717,0.713,0.741,0.72,0.721,0.714,0.722,0.728,0.729,1.444,4.385,16.858,10.38,10.403,0.417,5.778,5.764,2.914,2.352,3.788,5.804,5.773,1.465,1.444,1.44,1.45,1.447,2.14,1.082,10.57,0.898,0.037,1.692,0.865,0.837,0.85,0.859,0.856,0.853,0.858,0.853,0.853,0.853,0.859,5.747,8.805,13.292,0.827,0.858,0.853,0.862,0.856,0.864,0.861,0.853,0.858,0.859,0.874,0.845,0.855,0.863,0.866,0.803,0.031,0.883,0.795,0.991,0.957,0.965,0.963,0.94,0.966,0.951,0.473,0.502,0.955,0.933,0.373,0.074,1.477,0.95,0.987,0.23,0.733,0.958,0.483,0.478,0.483,0.484,0.48,0.483,0.48,0.479,0.481,0.476,0.491,0.487,0.488,0.482,1.942,2.417,1.533,2.017,2.03,0.506,0.504,0.504,0.507,0.504,0.72,0.31,0.515,0.515,0.518,0.515,0.751,0.802,0.528,0.517,0.516,0.521,0.515,0.522,0.519,0.521,0.515,0.529,0.517,0.52,0.519,0.521,0.52,0.514,0.518,0.524,0.523,0.537,0.523,0.528,0.538,0.537,0.53,0.528,0.526,0.528,0.532,0.531,0.531,0.531,0.532,0.533,0.531,0.532,0.458,0.529,0.461,0.069,0.535,0.536,1.055,1.055,1.056,7.626,0.587,4.426,6.835,1.134,1.138,1.339,0.887,0.987,0.806,1.111,0.882,2.414,1.403,2.17,1.463,0.948,1.942,1.96,1.978,3.879,2.014,1.955,1.961,1.953,1.959,1.961,1.962,1.959,1.965,1.964,2.071,1.906,1.903,1.966,1.964,1.956,1.955,1.948,1.967,1.965,1.964,1.961,1.954,1.957,1.947,1.971,1.982,1.958,1.962,1.973,1.927,2.572,1.465,2.052,2.056,2.106,2.017,2.108,2.046,2.055,2.103,2.035,2.093,2.035,2.063,2.09,2.071,2.093,2.061,2.103,17.072,0.215,16.304,4.149,2.072,2.07,2.069,2.067,2.076,2.066,2.051,2.048,2.072,2.041,2.116,2.031,0.749,0.844,0.223,1.844,2.057,2.072,2.077,2.071,2.066,2.075,2.212,1.774,1.96,1.902,1.866,1.971,1.935,1.932,1.939,1.912,0.816,1.09,1.91,1.888,1.903,1.854,1.78,0.113,1.881,1.889,1.885,2.068,3.672,1.892,1.881,1.903,2.214,1.994,1.886,1.901,1.916,1.882,1.964,0.004,1.682,1.913,0.956,0.958,0.942,0.939,1.901,1.894,1.908,1.895,1.897,1.898,1.968,1.934,1.87,1.883,1.894,1.875,1.876,1.909,1.858,1.883,3.765,3.763,3.786,1.88,1.886,1.873,1.878,1.865,1.884,2.044,1.897,1.879,1.894,1.904,0.945,0.943,0.946,0.94,0.617,0.331,0.943,0.871,0.075,0.93,0.957,0.909,2.06,2.035,2.039,1.676,0.347,2.041,1.644,0.195,2.221,2.011,1.992,2.015,2.038,1.979,1.999,2.022,1.991,2.02,2.015,2.078,2.03,2.021,2.017,2.021,0.995,1.013,1.017,1.018,1.888,1.89,2.024,2.016,2.012,1.089,0.894,2.07,2.019,2.019,2.025,5.052,4.039,4.05,1.91,2.017,2.016,2.019,2.018,2.013,2.026,2.021,2.017,2.004,2.03,2.022,2.73,2.184,2.814,2.647,1.164,8.234,1.59,4.46,4.061,2.006,2.324,1.276,0.742,0.987,1.022,2.013,0.996,0.996,1.004,1.009,1.03,1.03,2.022,2.023,2.067,1.977,2.012,2.113,2.053,1.989,2.265,0.856,2.98,4.004,4.814,4.074,0.976,0.98,0.974,0.982,0.981,1.015,0.961,0.996,0.964,0.967,0.966,0.969,0.957,0.984,0.964,0.935,0.991,1.013,0.867,0.121,0.832,0.937,0.942,0.933,0.927,0.911,0.957,0.931,0.957,0.921,0.912,0.929,0.941,0.635,0.288,0.922,0.946,0.945,0.911,0.932,0.951,0.927,0.933,0.924,0.926,0.924,0.933,0.921,0.935,0.938,0.896,0.932,0.923,0.907,0.923,0.961,0.922,0.929,0.921,0.95,0.913,0.944,0.927,0.922,0.944,0.926,0.75,0.162,0.963,0.881,0.943,0.922,0.945,0.923,0.923,1.837,1.837,0.299,1.549,1.846,2.036,1.482,1.637,1.626,0.809,0.81,0.819,0.815,0.814,0.809,0.805,0.807,0.807,0.828,0.827,0.802,0.801,0.807,0.809,0.819,0.819,0.8,0.799,0.809,0.806,0.827,0.825,0.818,0.82,0.792,0.792,0.792,0.811,0.811,1.623,0.779,0.821,0.801,0.799,0.806,0.806,0.821,0.793,0.793,0.808,0.811,0.811,0.812,0.796,0.794,0.809,0.798,0.8,1.599,1.605,1.605,1.587,1.594,1.592,12.968,2.315,10.532,13.141,3.295,3.296,1.62,1.621,1.62,1.627,1.614,1.604,1.602,1.61,1.613,1.597,1.597,1.624,1.634,1.603,1.602,1.617,1.625,1.611,1.628,0.463,0.25,0.906,1.619,0.237,0.188,1.187,1.632,1.631,0.811,0.802,1.623,1.596,1.683,1.644,1.333,3.235,2.732,2.746,1.064,1.109,3.307,2.734,2.738,2.709,2.733,2.689,2.735,2.736,2.732,2.704,2.722,2.746,2.716,2.722,2.744,2.711,2.72,2.768,2.71,2.739,2.742,2.717,2.762,2.794,2.767,2.761,2.743,2.777,2.768,2.767,2.769,2.786,2.754,2.762,2.697,2.684,2.696,2.744,2.689,2.733,2.708,2.716,2.694,2.687,2.665,2.636,2.655,2.658,2.661,5.317,4.376,6.362,2.68,2.681,2.684,20.579,0.838,10.772,10.755,3.066,7.674,2.706,2.707,2.66,2.709,2.699,2.705,2.676,2.664,2.67,2.661,2.681,2.684,2.664,2.661,2.663,2.684,2.685,2.677,2.673,2.658,2.663,2.668,2.687,2.682,2.691,2.69,2.661,2.682,2.681,2.684,2.62,2.689,2.679,2.679,5.254,1.706,3.225,9.074,3.057,1.569,3.156,1.571,1.571,1.577,1.578,1.576,1.581,1.578,1.569,1.581,1.587,0.456,1.129,1.572,1.556,1.582,1.572,1.576,0.774,0.792,1.572,1.574,1.564,1.572,1.578,1.58,1.576,1.571,1.607,1.592,1.627,1.607,1.608,1.617,1.618,1.603,1.599,1.61,1.611,1.605,3.187,6.317,18.958,2.983,0.73,1.868,0.652,1.57,1.57,1.571,1.54,1.54,1.579,1.177,2.021,1.606,1.58,1.611,1.606,1.575,1.557,1.553,1.579,1.585,1.619,1.618,1.556,1.582,1.555,1.557,1.559,1.557,1.558,1.548,1.552,1.559,1.564,1.559,1.559,1.56,3.128,1.065,2.056,6.403,1.96,3.633,0.754,6.512,6.492,1.649,1.611,1.688,1.64,1.645,0.676,1.08,1.584,1.613,1.606,1.57,1.635,1.601,1.605,1.579,1.581,1.59,1.579,1.571,1.578,1.578,1.571,1.581,1.575,1.57,1.602,1.599,1.605,1.575,1.599,1.604,1.578,1.61,1.597,1.582,1.507,1.624,1.65,1.648,1.217,0.385,1.453,1.463,1.464,1.468,1.465,1.468,1.469,5.825,5.801,5.826,11.538,5.752,5.773,5.395,0.376,5.778,5.808,1.452,1.453,1.442,1.443,1.437,1.458,2.884,1.455,1.456,1.445,1.446,1.445,1.442,1.443,1.45,1.444,1.464,1.461,1.461,1.461,1.452,1.461,1.442,1.458,1.459,1.447,1.445,1.463,1.443,1.455,1.458,1.444,1.456,1.445,1.464,1.455,1.451,1.45,1.451,1.453,1.449,1.004,0.441,1.458,1.474,1.455,1.454,1.462,1.462,1.459,2.92,2.912,7.872,3.772,2.924,1.448,1.359,1.557,1.461,1.451,1.452,1.454,1.456,1.449,1.461,1.443,1.437,1.453,1.437,1.448,1.446,1.447,1.441,1.438,1.448,1.444,1.444,1.453,0.93,0.309,0.379,1.581,1.582,1.583,1.567,1.582,1.584,3.247,2.533,2.683,2.672,2.7,2.676,2.663,2.697,2.69,2.661,2.686,2.703,2.616,0.107,5.292,10.71,8.954,0.937,2.887,1.442,1.444,1.452,1.442,1.453,1.455,1.457,1.458,1.45,1.476,1.448,1.457,1.455,1.46,1.455,1.456,1.458,1.45,1.448,1.469,1.461,1.462,2.917,1.448,1.45,1.451,1.453,1.449,1.452,1.442,1.455,1.442,1.468,1.452,1.452,1.456,1.451,1.452,1.454,1.454,1.454,1.452,1.45,1.445,1.447,2.935,5.871,2.941,2.942,1.474,1.473,1.473,1.458,0.448,1.148,1.568,1.593,1.591,1.582,0.942,0.675,1.595,1.594,1.595,1.608,1.588,1.595,1.585,1.599,1.584,1.576,0.818,2.148,2.869,2.845,2.915,5.769,5.762,1.444,1.446,1.46,1.445,1.465,1.447,1.449,1.46,1.464,1.449,1.459,1.461,1.456,1.457,0.711,0.742,1.459,1.454,1.457,1.452,1.456,1.46,1.441,1.441,1.456,1.458,1.454,1.458,1.449,1.467,1.451,1.455,1.451,1.454,1.464,2.882,5.793,2.896,2.916,1.455,1.455,1.452,1.457,1.451,1.456,1.457,1.46,1.443,1.457,1.454,1.458,1.463,1.451,1.453,1.453,1.456,1.463,1.469,1.458,1.461,1.446,1.449,1.465,1.452,1.447,1.455,1.454,1.451,1.447,1.453,1.464,1.456,1.455,1.446,1.458,1.442,1.469,11.658,5.83,2.917,0.965,0.488,1.463,1.451,1.451,1.463,1.452,1.457,1.455,1.457,1.464,1.457,1.462,1.456,1.47,1.469,1.447,1.46,1.459,1.45,1.461,1.464,1.457,1.46,1.458,1.463,1.463,1.456,5.547,5.446,5.795,2.918,1.467,1.45,2.961,2.913,1.453,1.458,1.437,1.457,1.45,1.466,1.449,1.456,1.442,1.447,1.457,0.48,0.974,1.454,1.452,1.462,1.463,1.454,1.456,1.454,1.453,1.463,1.448,1.434,1.476,1.446,1.457,1.45,1.448,1.464,1.445,1.455,1.456,1.455,1.455,1.456,1.453,1.454,1.458,1.441,1.466,1.449,1.452,1.469,0.366,1.081,0.083,1.383,0.527,1.019,1.588,1.586,1.59,1.587,1.595,1.593,3.186,6.342,4.998,2.343,1.453,1.461,1.45,1.452,1.46,1.454,1.448,1.453,1.455,1.463,1.45,1.457,1.45,1.433,1.48,1.446,1.452,1.462,1.446,1.452,1.464,1.462,1.466,1.454,1.46,2.913,2.931,2.944,3.004,1.477,1.49,1.482,1.484,1.488,1.486,1.489,1.485,1.491,1.483,1.513,1.508,1.524,1.509,1.52,1.52,1.539,1.442,1.422,1.421,1.42,1.401,1.393,1.405,1.41,1.412,1.416,1.411,1.411,1.404,1.406,1.411,2.477,0.356,5.637,1.411,1.41,1.409,1.407,1.413,1.41,1.414,1.41,1.411,1.39,1.33,1.412,1.406,1.396,1.41,0.332,0.359,1.6,0.326,0.191,0.254,0.154,0.743,0.587,0.996,1.595,1.613,1.596,1.592,1.593,0.268,1.332,1.571,1.572,1.565,1.609,1.533,1.577,1.557,1.587,1.56,1.572,1.556,1.567,1.567,1.566,1.577,1.582,1.565,1.571,1.572,1.576,1.594,1.582,1.573,1.58,0.559,1.017,1.576,1.566,1.583,1.568,1.575,1.579,1.579,1.562,1.573,1.569,1.427,1.43,1.572,1.577,1.573,1.559,1.572,1.586,0.631,2.531,1.597,1.579,1.58,1.583,1.589,1.588,1.584,1.589,1.608,1.575,1.577,0.813,0.783,1.591,1.593,1.571,1.399,1.109,0.061,1.366,1.565,1.567,1.578,1.576,1.966,1.551,1.488,1.45,1.442,1.442,0.871,0.584,1.445,1.434,1.435,1.433,1.433,1.44,1.586,1.295,1.437,1.437,1.436,1.436,1.426,1.441,1.441,1.444,1.459,1.442,1.44,1.441,1.441,2.906,5.799,5.751,5.773,5.785,5.827,5.792,5.796,5.81,5.796,5.764,5.744,2.854,1.444,1.441,1.435,1.428,1.44,1.44,1.428,1.445,1.436,1.435,1.43,1.442,1.434,1.462,1.437,1.445,1.448,1.448,1.45,1.448,1.459,1.453,1.404,1.449,1.433,1.436,1.425,0.82,0.625,1.446,1.434,1.446,1.437,1.44,1.436,1.436,1.441,1.448,1.446,1.442,1.454,1.461,1.439,1.447,1.445,1.445,1.447,1.437,1.085,0.347,1.453,1.445,1.442,1.444,1.445,1.432,1.452,1.428,1.425,1.445,1.436,1.428,1.432,1.464,1.44,1.433,1.442,1.449,1.44,1.452,1.445,1.43,1.44,1.442,1.44,1.447,1.443,1.443,1.438,1.426,1.452,1.44,1.443,1.441,1.444,1.442,1.444,2.885,1.465,1.435,1.439,1.449,1.442,1.448,1.447,1.448,1.456,1.437,1.449,1.453,1.438,1.446,1.446,1.442,1.449,1.451,1.452,1.448,1.442,1.449,1.446,1.447,1.46,1.434,1.446,1.449,1.445,1.443,1.456,1.447,1.447,1.45,1.433,1.442,1.446,1.439,1.445,1.448,0.465,0.982,1.426,1.451,1.459,1.438,1.436,1.44,1.438,1.452,1.451,1.444,1.449,1.45,1.441,1.437,1.453,1.453,1.424,1.428,1.43,1.432,1.443,1.444,1.442,1.444,1.43,1.456,1.437,1.448,1.445,1.447,1.435,1.435,1.439,1.443,1.45,1.45,1.445,1.447,1.432,1.44,1.457,1.443,1.436,1.452,1.417,1.486,1.436,1.431,1.431,1.443,1.462,1.448,1.444,1.448,1.449,1.456,1.458,1.441,1.444,0.836,0.693,1.61,1.638,1.64,1.644,1.646,1.622,1.668,1.792,1.35,1.496,1.499,1.506,1.524,1.522,1.497,1.5,1.488,1.487,1.416,1.437,1.44,1.428,1.448,1.441,1.443,1.444,1.434,1.448,2.887,2.882,2.882,2.86,2.896,2.895,2.889,2.886,2.867,2.905,2.866,2.878,2.863,2.859,2.875,1.427,1.427,1.452,1.455,1.434,1.437,1.433,1.448,1.442,0.733,0.712,1.442,1.445,1.429,1.445,1.431,1.432,1.439,1.439,1.439,1.443,2.913,1.283,1.577,2.867,1.434,1.434,1.453,1.446,1.457,1.46,1.448,1.452,1.456,1.461,1.432,1.448,1.452,1.405,1.403,1.487,1.487,1.443,1.451,1.452,1.436,1.438,1.426,1.442,1.443,1.442,1.443,1.442,1.443,1.449,1.451,2.886,1.658,1.236,5.767,5.743,1.451,1.456,1.453,1.457,1.451,1.455,1.457,1.462,1.449,1.458,1.464,1.446,1.449,1.447,1.451,1.451,1.452,1.428,1.451,1.449,1.454,1.437,1.449,1.452,1.448,1.462,1.45,1.452,1.457,1.463,1.447,1.448,1.463,1.433,1.459,1.442,1.445,1.441,1.445,1.438,1.439,1.437,1.437,1.432,1.459,1.456,1.441,1.442,1.443,1.445,2.89,2.892,2.887,2.888,2.889,2.887,11.568,11.58,6.041,5.52,2.909,2.911,5.768,5.799,2.88,2.894,5.185,0.067,0.595,3.187,1.611,1.612,0.869,1.495,1.565,1.568,1.571,1.575,2.194,1.728,1.561,1.566,1.425,1.557,1.577,1.56,1.56,1.584,1.556,5.86,6.265,12.516,2.732,3.449,0.245,12.168,12.496,12.469,1.555,1.554,1.555,1.551,1.557,1.565,0.128,1.423,1.55,1.552,1.551,1.558,1.552,1.555,1.556,1.558,1.539,1.544,1.556,1.552,1.554,1.571,1.538,1.562,1.489,1.599,1.594,1.564,1.567,3.136,3.136,1.566,1.568,1.566,1.571,2.975,0.172,1.578,1.567,1.57,1.564,1.573,1.575,1.569,1.571,1.574,0.975,0.746,1.346,1.455,1.476,1.453,1.458,1.461,1.462,1.462,1.463,1.465,5.802,5.802,12.549,4.837,1.447,1.448,1.444,1.445,1.451,1.456,1.454,1.453,1.439,1.452,1.462,1.448,1.455,1.447,1.442,1.445,1.441,1.522,1.585,1.579,1.585,3.159,1.481,1.44,1.467,1.546,1.576,1.576,1.618,1.619,1.621,1.619,1.232,0.373,3.239,1.599,1.599,1.587,1.602,1.6,1.593,1.616,1.566,1.593,1.572,1.598,1.457,1.46,1.438,1.44,1.45,1.449,1.446,1.449,1.451,1.449,1.444,1.464,1.431,1.455,1.444,1.457,1.438,1.449,1.451,1.448,1.452,1.448,1.446,1.45,1.453,1.452,1.456,1.455,2.884,1.44,1.444,1.447,1.449,1.447,1.448,1.449,1.452,1.443,1.434,1.44,1.444,1.441,1.443,1.45,1.452,1.442,1.443,1.458,1.46,2.881,2.901,2.901,2.9,2.903,2.901,2.907,2.875,0.049,2.96,1.143,0.323,2.098,1.159,1.154,3.105,2.566,2.963,1.248,1.255,1.473,0.049,16.316,0.707,0.716,0.5,1.598,1.203,1.194,1.185,1.189,1.436,1.432,1.191,1.191,2.381,1.706,1.649,3.697,3.294,3.304,3.297,1.645,1.648,1.641,1.643,1.647,1.649,1.652,1.643,1.647,1.648,1.649,1.652,1.641,1.649,1.652,1.643,1.643,1.656,1.647,1.635,1.657,1.654,1.647,1.65,1.647,1.65,1.661,1.639,1.658,1.664,1.634,1.639,1.643,1.649,1.645,1.639,1.643,1.384,1.919,1.655,1.639,1.649,1.65,1.632,1.639,1.637,1.638,0.48,1.207,1.621,1.642,1.639,1.642,1.628,1.638,1.63,1.634,1.64,1.619,1.85,1.514,1.507,1.555,1.405,1.643,1.619,1.613,1.626,1.633,1.615,1.629,1.626,1.625,1.624,0.344,1.223,0.031,0.719,0.882,1.622,1.637,1.619,1.658,1.653,2.37,1.758,1.646,1.641,1.631,1.324,1.519,1.665,1.667,1.641,3.274,3.278,1.634,1.633,1.638,1.639,1.633,1.639,1.629,1.633,1.631,1.629,1.636,1.641,1.646,1.638,1.627,1.629,1.637,1.642,1.636,1.635,1.642,1.629,1.636,1.658,2.011,6.175,1.647,1.626,0.812,0.822,0.82,0.823,0.809,0.797,0.83,0.445,0.406,0.826,0.833,0.822,0.823,0.829,0.822,0.811,0.854,0.817,0.819,0.828,0.831,0.814,0.832,0.837,0.814,0.832,0.813,0.831,0.832,0.826,0.825,0.824,0.826,0.823,0.826,0.823,0.82,0.835,0.829,0.824,0.824,0.826,1.586,1.586,3.41,3.287,3.301,1.656,1.651,1.648,1.652,1.653,1.65,1.655,1.655,1.653,1.654,1.655,3.799,3.261,3.261,3.29,1.659,1.66,1.653,1.654,1.652,1.653,1.65,1.651,3.3,3.307,2.442,3.336,3.301,3.3,6.6,2.727,0.157,0.098,0.173,3.338,7.166,0.895,0.901,1.035,0.035,0.737,0.894,1.787,0.912,0.596,1.171,0.89,0.897,0.884,0.871,0.888,0.413,0.491,0.436,0.474,0.914,0.94,0.914,0.677,0.246,0.922,0.935,0.119,0.281,0.465,0.888,0.913,0.902,0.906,0.888,0.905,0.9,0.903,0.9,0.574,0.333,0.393,0.541,0.713,0.219,0.402,0.526,0.884,0.5,0.953,0.359,1.307,1.14,1.369,0.289,0.945,0.064,0.634,0.972,0.968,0.972,0.787,0.056,0.13,0.966,0.959,0.958,0.997,0.968,0.968,0.975,0.964,0.983,0.957,0.972,0.969,0.966,0.965,0.965,0.074,1.855,3.862,1.836,1.837,1.652,1.508,0.681,0.137,0.065,18.68,0.015,1.713,0.51,0.238,0.719,1.641,1.482,1.363,2.903,0.006,1.279,0.022,1.177,0.016,0.753,0.006,1.227,1.085,1.11,1.128,1.08,0.352,0.758,1.103,1.136,0.66,1.511,1.108,0.104,0.994,1.109,1.099,1.105,1.099,1.104,1.666,0.466,1.724,4.354,1.938,7.578,3.554,8.701,4.004,4.463,8.548,8.785,4.308,2.309,2.219,1.111,1.112,1.092,1.091,1.103,1.112,1.11,1.105,1.048,1.053,1.173,1.169,1.103,1.105,1.106,1.108,1.12,2.215,0.991,2.019,1.084,1.087,1.095,1.076,1.089,1.093,1.503,1.198,1.108,1.094,1.113,1.105,1.1,1.116,1.088,1.109,1.115,1.093,1.118,1.11,1.107,1.096,0.354,1.785,1.157,1.067,1.068,1.103,1.108,1.101,1.103,1.096,1.099,1.84,1.945,2.005,2.227,2.211,2.225,2.209,2.214,2.244,2.321,0.816,10.602,8.473,2.174,2.178,2.187,2.131,2.125,2.17,2.168,2.172,1.086,1.153,3.159,2.649,8.705,2.171,2.076,2.097,2.059,4.017,0.148,4.163,4.193,4.136,4.184,4.192,2.056,2.105,2.471,1.684,2.343,1.816,2.045,2.04,2.052,2.044,2.053,2.046,2.04,2.061,2.032,2.056,2.045,2.04,4.094,2.154,2.721,7.892,6.887,9.066,0.469,3.189,2.467,0.039,1.066,0.199,0.938,0.039,1.215,0.039,2.171,2.043,1.463,0.936,1.144,3.831,0.251,4.093,1.566,1.762,0.075,4.98,2.266,1.889,1.886,1.907,0.932,0.944,0.942,0.94,0.943,0.941,0.939,0.946,0.94,0.943,0.93,0.937,0.952,0.94,0.948,0.939,0.943,0.943,0.948,0.944,0.94,0.941,0.942,0.943,0.94,0.945,0.943,0.944,0.95,0.945,0.947,0.948,0.943,0.946,0.943,0.941,1.236,0.948,0.95,0.952,1.908,1.901,0.478,2,1.09,1.167,1.027,1.899,1.884,0.942,0.944,0.957,0.946,0.948,0.958,0.951,0.961,0.947,0.941,0.944,0.966,0.928,0.919,0.939,0.93,0.942,0.95,0.946,2.803,0.94,0.941,1.857,0.929,0.943,0.932,0.931,0.945,0.94,0.942,0.923,0.947,0.913,0.946,0.929,0.698,0.066,1.148,0.617,0.246,0.939,0.904,0.921,0.916,0.925,0.924,0.892,0.919,0.923,0.909,0.913,0.924,0.929,0.911,0.913,0.923,0.921,0.914,0.914,1.861,3.712,1.861,1.86,0.962,0.961,0.964,0.963,0.955,0.927,1,0.909,0.973,0.97,2.087,1.418,1.722,1.784,1.436,1.318,2.123,1.288,1.023,1.887,1.807,1.83,7.41,2.139,3.348,3.083,1.533,1.513,2.138,1.966,0.147,3.394,1.495,1.47,2.952,1.476,1.481,1.477,1.491,3.388,3.414,5.902,2.27,3.651,1.357,1.606,2.958,2.107,2.109,1.279,1.28,0.85,0.844,0.848,0.845,1.689,1.683,1.076,1.067,2.14,1.265,1.265,1.265,1.259,1.692,1.689,1.702,1.699,1.063,1.058,1.063,1.057,1.738,1.774,0.444,0.703,1.522,1.275,4.687,1.535,1.716,1.718,1.806,1.802,2.5,2.468,4.945,4.57,2.253,2.333,2.008,2.037,1.795,2.491,2.487,2.549,2.934,1.847,0.004,1.1,8.2,1.72,1.826,1.393,1.615,1.444,2.062,1.497,2.52,1.679,1.674,1.688,1.681,3.372,1.672,1.678,2.523,2.54,1.666,1.661,2.546,2.544,2.919,15.308,4.664,3.561,4.076,4.074,1.706,1.977,0.82,1.96,1.501,1.618,5.678,7.241,4.393,3.137,4.297,2.879,3.059,2.707,2.211,1.042,0.987,1.994,2.221,3.452,2.39,2.395,2.394,1.712,0.81,2.523,3.42,2.566,2.585,3.405,3.43,24.137,2.336,26.737,13.446,6.689,6.766,4.725,4.727,2.946,3.417,2.905,2.899,3.153,3.145,3.007,1.113,1.898,2.544,2.558,2.382,2.373,2.024,2.019,1.409,1.408,1.491,1.501,2.578,2.58,5.508,3.416,3.415,2.974,4.22,3.403,2.982,2.736,1.584,1.581,2.358,2.495,1.791,1.477,1.472,2.58,1.262,1.269,4.165,0.209,1.263,1.451,1.441,1.498,1.489,1.266,1.271,2.547,2.55,2.467,1.316,1.31,1.715,1.719,1.72,2.246,1.203,1.203,4.688,4.943,1.721,3.95,9.434,4.671,2.356,2.361,1.992,2.696,1.854,1.856,1.895,1.898,3.958,2.91,6.799,4.552,7.199,3.244,2.085,2.359,2.234,2.886,1.116,1.103,1.084,1.09,1.098,1.099,0.571,0.504,1.08,1.097,0.858,0.25,1.828,1.092,1.087,2.187,1.089,1.081,1.506,1.094,1.096,1.089,1.1,2,1.998,0.589,1.408,1.998,4.289,2.13,2.127,1.814,0.904,0.906,1.63,1.628,1,0.996,1.006,0.997,1.648,1.6,1.198,1.195,0.778,0.774,1.205,1.2,1.64,0.929,0.924,1.844,0.992,1.424,1.665,1.649,1.648,3.855,1.691,0.844,0.839,0.185,1.605,1.783,0.873,1.287,1.075,1.079,1.336,1.328,2.097,1.307,1.303,1.233,1.234,1.21,1.213,1.724,1.718,1.622,1.817,1.366,1.368,1.328,1.374,1.325,1.323,1.029,1.008,1.456,1.449,2.006,2.009,0.527,1.866,1.82,1.813,1.818,1.811,2.006,2.006,2.405,1.207,1.206,2.013,2.015,2.826,2.828,2.211,2.209,4.234,2.015,2.014,3.602,3.775,3.867,3.244,3.237,4.684,2.346,2.336,2.323,2.319,2.32,2.325,2.388,2.624,2.63,2.618,4.029,1.601,3.241,3.223,26.355,0.84,2.778,2.613,1.202,1.063,0.803,0.809,1.19,1.192,2.022,1.014,1.01,0.802,0.802,1.648,1.593,0.798,0.799,1.207,1.207,1.205,1.203,1.319,1.321,2.337,1.079,1.074,1.659,1.668,1.091,1.1,2.014,1.211,1.649,1.988,1.365,1.427,1.503,1.506,1.406,1.407,1.399,1.4,1.609,1.616,2.826,0.777,1.625,1.231,1.16,2.522,1.812,1.911,1.077,1.086,2.341,2.337,4.599,0.076,4.669,2.338,2.336,1.805,1.804,1.803,0.906,0.902,1.785,0.892,0.887,1.173,1.169,2.306,0.609,1.513,1.32,1.215,1.21,2.423,1.213,1.213,1.829,2.801,1.153,1.64,2.395,0.156,3.416,3.184,6.329,6.141,4.992,14.173,6.73,9.676,9.399,11.188,5.992,5.578,3.012,4.672,2.121,1.703,2.487,1.627,1.233,2.459,0.931,1.179,1.104,1.517,1.299,1.217,3.529,1.764,1.769,1.77,1.775,1.96,0.98,0.981,2.332,2.335,1.47,1.477,1.451,1.459,1.881,1.883,1.882,1.887,2.789,2.731,5.544,5.557,1.39,1.388,1.39,1.393,1.358,1.359,1.402,1.411,1.278,1.282,1.571,1.613,1.31,1.313,1.828,1.61,0.555,2.397,2.12,1.898,1.915,19.997,0.473,4.847,2.63,4.821,5.477,2.693,2.69,2.583,2.598,2.826,2.829,2.366,2.365,2.375,2.375,2.605,2.606,2.618,2.625,1.912,1.919,2.308,2.315,1.809,1.807,1.831,1.845,2.004,2.025,4.07,4.01,2.015,1.224,11.333,3.642,0.841,2.235,2.244,2.937,2.945,2.935,2.945,1.879,1.881,1.708,1.708,1.534,1.542,2.468,2.454,2.547,2.574,3.37,3.279,3.199,2.932,3.234,1.607,0.24,0.031,1.581,3.278,1.652,0.039,1.957,8.074,7.98,0.035,8.081,9.826,2.328,0.039,2.475,2.518,2.687,0.762,11.678,0.029,3.992,1.677,1.675,1.653,1.665,1.519,1.52,1.53,1.421,2.535,1.269,1.234,1.361,1.412,2.02,1.018,1.03,2.125,2.119,1.929,1.341,1.761,0.888,0.885,1.224,1.231,1.383,1.394,2.788,1.785,1.794,1.804,2.039,0.496,2.045,2.337,4.56,1.051,8.44,17.923,3.691,1.695,1.693,1.711,1.716,1.713,0.858,0.861,1.621,1.34,0.283,0.891,0.888,1.793,1.578,1.581,0.9,0.898,0.891,0.892,1.827,1.813,1.318,2.516,1.027,1.022,1.018,0.806,0.22,2.047,1.039,1.04,1.086,1.1,1.283,1.826,1.829,2.064,2.067,4.905,2.453,2.455,1.855,1.84,1.929,1.923,1.006,1.005,1.005,1.004,2.178,1.089,1.087,1.209,1.209,1.92,2.406,1.507,1.501,1.313,1.314,2.394,2.404,3.94,2.174,2.2,2.261,1.12,1.134,2.318,2.315,3.053,3.15,2.893,1.445,1.445,4.402,4.609,4.454,2.229,2.23,1.877,1.885,2.535,1.27,1.271,4.568,2.139,2.158,0.268,0.84,4.481,1.434,2.268,2.567,2.575,1.374,1.376,3.101,3.54,1.785,2.524,1.612,1.61,2.399,2.411,1.414,1.422,2.884,5.644,8.343,2.975,1.602,1.602,8.087,8.207,1.71,1.734,1.127,1.126,1.129,1.134,1.077,1.09,2.171,1.32,1.326,1.284,1.309,0.949,0.682,0.703,1.431,1.337,1.346,1.465,1.095,1.119,0.919,0.934,0.99,0.987,23.57,2.652,1.408,1.401,1.551,1.574,1.348,0.081,1.438,1.575,1.576,1.296,0.147,1.445,0.889,0.897,2.054,1.611,1.621,1.605,1.605,2.514,2.517,2.152,2.169,8.218,0.293,1.946,1.948,1.846,1.858,1.135,1.184,2.355,1.877,1.882,1.762,1.777,1.751,1.24,0.505,1.19,0.169,5.489,2.611,2.371,1.821,9.187,0.438,1.655,1.661,1.719,1.704,1.511,1.496,1.664,1.652,2.098,2.035,1.137,1.152,2.274,2.165,2.083,2.531,2.53,1.231,1.246,1.211,1.237,1.794,1.808,1.769,1.78,1.844,1.85,1.849,1.871,13.807,6.9,1.736,1.726,1.728,1.734,1.563,1.546,3.116,6.256,12.423,0.75,2.171,1.049,1.056,4.385,1.548,1.764,0.944,0.883,1.798,1.7,1.697,1.526,1.751,1.911,1.715,1.654,1.7,0.865,0.859,1.727,1.737,0.841,0.849,1.664,0.856,0.85,1.614,1.744,3.3,3.318,10.044,4.992,5.009,5.855,1.243,1.243,1.286,1.949,2.574,2.91,1.331,1.321,1.347,1.34,1.556,1.53,1.662,0.159,1.853,1.916,1.926,2.217,2.119,1.943,2.045,2.071,2.441,2.954,2.617,0.813,7.532,3.513,1.643,1.645,1.355,1.118,1.212,1.205,2.327,2.125,1.273,1.242,0.619,0.624,1.109,1.227,1.262,1.244,1.25,1.671,1.724,1.628,1.64,0.998,0.99,1.924,1.971,0.997,0.98,3.256,0.383,1.402,1.8,1.757,1.747,1.868,1.86,2.128,1.075,1.068,1.596,1.59,3.175,5.824,17.241,17.235,2.985,1.481,1.479,1.415,1.428,1.421,1.414,1.957,1.966,3.425,1.711,1.705,3.539,0.893,0.878,1.773,1.852,1.864,1.832,1.845,1.226,2.76,2.79,1.496,1.505,1.533,1.53,1.441,1.461,1.453,1.457,1.404,1.387,1.393,1.376,2.801,1.384,1.369,1.01,2.441,1.184,0.754,1.643,1.609,1.48,1.33,1.479,1.48,4.736,9.562,2.223,1.198,1.201,1.747,1.75,1.255,1.253,1.2,1.211,1.364,1.373,2.457,1.273,1.284,1.289,1.236,1.209,1.21,2.519,8.21,4.073,1.176,2.578,1.646,1.656,0.969,0.966,1.991,1.524,1.48,1.9,0.93,0.93,1.392,1.392,1.403,1.352,0.092,1.098,1.469,1.334,1.24,1.898,1.893,3.602,3.174,1.691,2.457,1.6,9.196,3.728,6.513,3.183,3.362,0.115,0.301,0.037,1.903,2.043,4.074,4.184,1.96,1.888,1.696,1.448,1.235,1.029,0.944,1.243,1.966,1.606,1.474,1.881,1.735,1.749,1.672,2.11,1.651,1.334,2.067,1.765,1.726,1.062,0.934,0.055,2.347,2.503,1.495,1.196,1.666,1.535,2.281,1.549,1.458,1.673,1.689,2.091,2.129,1.302,1.412,1.362,1.172,1.992,2.062,1.259,1.29,1.048,0.979,1.954,2.083,1.773,1.421,1.632,1.472,2.537,0.985,1.473,0.293,1.461,2.008,1.678,2.454,1.606,2.113,1.344,1.504,0.293,1.631,1.386,2.049,0.025,4.055,0.076,2.146,2.084,1.089,0.709,0.707,0.709,0.71,1.406,1.416,1.095,0.555,0.157,0.714,0.8,0.799,1.186,1.191,1.498,1.004,1,1.429,1.423,1.833,2.379,1.884,1.635,1.611,1.636,4.755,2.2,2.027,1.367,1.299,1.283,1.278,2.211,1.191,1.2,1.253,1.247,1.25,1.239,1.307,0.796,0.789,1.561,1.564,3.339,1.667,1.671,6.671,6.497,2.108,0.883,1.164,0.844,0.555,1.136,1.415,0.949,2.679,1.058,1.057,1.141,1.137,1.506,1.492,1.68,1.671,3.377,1.067,1.467,1.981,3.605,1.492,3.657,1.896,1.489,1.657,1.676,2.491,1.687,1.673,1.664,3.094,1.148,5.725,2.008,2.003,4.196,1.24,1.234,2.942,2.483,1.518,1.508,2.424,1.101,1.094,3.038,3.008,5.987,3.489,3.473,2.534,2.549,2.537,2.55,1.324,1.313,1.318,1.308,2.637,2.645,1.138,1.125,2.295,1.333,1.326,2.689,2.568,1.268,1.28,1.29,1.304,1.278,1.303,1.339,1.326,1.365,1.358,1.277,1.288,1.286,1.32,1.826,1.778,1.746,0.824,0.859,1.771,1.724,3.236,2.168,2.242,1.483,2.933,9.492,3.8,1.78,1.737,3.979,4.097,3.93,3.938,1.208,1.206,2.361,6.055,1.886,1.602,1.062,0.013,1.526,1.537,0.938,0.698,1.516,0.942,0.942,1.049,0.899,0.998,0.993,1.647,0.526,0.785,0.759,0.603,1.319,0.691,0.691,1.158,0.862,0.863,1.398,0.697,1.03,0.855,1.686,1.009,0.682,0.387,0.755,1.018,1.042,0.697,0.718,0.734,0.691,0.703,0.675,0.686,0.704,0.794,0.97,1.088,1.072,0.702,0.75,0.71,0.709,1.053,1.054,1.054,1.411,4.538,1.719,1.78,1.755,0.882,0.879,1.017,0.732,0.509,0.511,0.792,0.661,0.688,1.086,0.792,0.772,0.72,0.745,0.712,0.717,0.719,0.718,0.714,0.727,0.71,1.391,0.691,1.07,1.312,0.897,0.907,0.822,0.78,0.385,1.157,2.485,7.108,0.691,8.397,1.767,1.772,9.128,1.589,1.589,1.414,1.408,1.431,1.432,1.414,1.437,1.423,1.424,2.857,3.003,5.722,1.068,1.066,0.717,0.713,0.721,0.705,0.722,0.717,0.528,0.541,1.061,0.577,0.566,0.576,0.571,1.103,1.112,1.084,1.078,0.713,0.709,0.716,0.713,0.731,1.025,0.545,0.539,0.539,0.534,1.068,0.947,1.058,1.054,1.033,1.034,0.994,1.004,1.098,1.096,1.252,1.094,2.501,2.684,5.339,4.863,1.544,1.125,1.045,0.695,0.696,1.408,1.427,1.415,1.215,1.462,1.458,1.278,1.298,1.217,1.222,1.382,1.361,0.713,0.707,1.139,0.681,0.68,1.121,1.744,1.029,0.53,0.507,1.458,1.056,1.054,1.28,1.05,0.572,1.182,1.056,0.737,0.654,1.084,1.066,1.056,1.057,1.387,1.07,1.069,1.052,1.062,0.945,1.009,1.063,1.084,1.05,1.056,1.08,1.045,1.064,0.714,0.717,1.032,0.705,0.707,1.072,0.701,0.705,1.066,1.073,1.242,0.739,0.692,0.677,1.394,1.032,0.699,0.697,0.622,0.622,1.025,1.037,0.706,0.701,1.343,1.42,33.081,0.729,17.002,9.911,5.429,1.419,1.417,1.103,1.108,1.622,1.617,1.473,1.476,1.416,1.419,2.264,0.775,0.771,0.724,0.557,1.353,1.364,1.147,0.724,0.979,0.988,1.969,1.19,1.16,2.294,1.165,1.024,1.125,0.873,1.942,1.512,1.513,0.826,2.023,1.19,1.191,3.074,16.739,6.819,3.571,1.569,1.612,2.372,0.794,0.793,1.191,1.614,2.393,2.401,1.605,1.597,1.554,1.602,1.599,2.348,1.461,2.803,1.183,0.897,1.146,1.15,1.194,1.19,2.471,2.315,2.006,1.206,1.21,2.364,2.379,1.174,1.36,2.338,2.324,7.419,3.595,1.599,2.019,1.2,1.198,1.207,1.202,1.192,1.186,2.384,2.252,2.375,1.196,1.196,1.218,1.227,1.199,1.204,2.412,1.183,1.18,2.363,3.387,3.391,6.623,13.642,3.379,3.214,1.627,1.612,3.217,1.987,1.603,3.191,8.151,0.568,0.586,6.447,3.16,3.971,3.181,1.549,0.792,1.579,1.584,1.18,1.176,1.56,0.802,0.801,1.512,0.707,0.706,0.99,0.983,1.187,1.187,1.605,1.2,1.16,1.598,0.797,0.797,1.108,2.086,1.129,1.559,1.174,1.198,1.188,1.19,1.292,1.282,1.521,1.567,2.771,1.497,1.503,2.444,1.801,1.81,3.156,0.746,0.77,1.529,3.391,6.343,6.285,1.139,1.148,0.802,0.797,0.801,1.572,1.575,3.113,1.95,1.952,2.362,1.524,1.954,0.976,0.979,1.945,1.948,1.592,1.238,1.23,1.759,2.041,0.762,0.95,2.138,1.602,2.009,1.828,1.73,1.657,0.839,0.555,1.527,1.249,1.542,1.235,1.233,1.297,1.361,0.804,0.804,1.566,1.563,3.908,3.913,3.753,1.568,1.946,1.585,0.838,0.837,1.805,1.8,1.589,1.596,2.386,1.627,3.381,1.604,1.636,1.577,1.629,2.244,0.091,1.361,1.551,1.576,1.568,1.599,8.106,6.186,0.027,0.983,1.231,2.449,0.031,0.698,13.576,4.232,4.019,2.511,1.633,1.693,3.921,2.69,2.684,2.676,2.683,2.689,2.692,4.019,2.004,2.002,3.992,3.988,2.701,3.995,6.586,0.146,101.653,5.183,2.778,2.76,2.019,2.023,3.997,4.002,1.99,1.99,7.351,3.694,3.681,2.712,2.674,2.679,3.98,2.067,3.329,1.323,1.389,1.363,1.931,2.665,2.707,1.683,1.649,2.748,14.299,1.594,3.655,8.324,1.503,8.198,0.252,0.268,0.813,1.208,0.654,0.651,1.501,1.209,1.197,1.187,1.186,1.626,0.801,1.209,1.209,0.836,1.194,1.603,2.396,4.823,4.814,5.063,3.688,2.928,1.393,3.189,2.444,1.181,1.179,2.399,2.418,1.253,1.251,1.422,1.41,2.418,1.168,1.183,2.415,1.201,1.203,1.205,1.21,2.375,1.171,1.171,2.381,1.181,0.883,2.038,1.398,0.645,2.759,2.148,3.815,9.511,3.511,3.098,3.109,2.49,1.24,1.253,1.569,1.562,3.904,1.168,1.164,1.947,0.782,0.78,1.923,0.99,0.988,2.325,1.169,1.167,1.145,1.144,1.568,1.542,1.54,1.169,1.166,0.414,1.936,2.726,2.314,1.165,1.166,1.178,1.168,1.97,2.306,2.747,1.204,1.193,1.183,1.174,1.579,1.572,3.128,6.294,8.065,2.369,2.781,1.059,3.206,3.19,2.311,2.701,1.19,1.521,2.612,1.098,1.441,0.724,0.725,1.174,0.768,0.769,1.202,1.529,1.867,1.41,2.328,1.038,1.042,0.431,0.039,1.124,1.448,0.705,0.7,0.938,1.08,1.064,0.025,1.076,2.153,0.795,1.018,1.116,1.092,2.088,3.589,3.313,3.404,1.642,0.802,0.803,1.058,1.067,0.717,0.715,1.088,0.719,0.714,0.711,0.717,0.715,1.064,1.086,0.709,0.704,1.079,1.076,0.726,0.722,1.049,1.1,1.083,1.088,1.074,1.1,1.099,1.081,0.73,0.73,0.718,0.715,0.724,0.721,0.723,0.719,1.452,0.709,1.74,1.076,0.831,0.813,0.81,0.893,1.055,1.082,1.084,1.096,1.089,1.091,1.087,0.715,1.026,1.077,0.725,0.718,1.101,0.619,0.613,0.833,0.824,1.82,1.769,1.633,3.55,4.841,10.131,2.393,2.405,2.642,1.274,1.275,1.737,1.396,1.569,1.521,1.488,1.488,1.427,1.455,1.492,1.535,1.447,1.466,1.639,1.664,0.825,0.823,1.553,0.758,0.767,1.003,1.506,2.254,0.713,0.743,1.519,2.063,1.65,1.158,0.607,0.6,0.84,1.161,1.093,0.305,0.798,1.207,1.204,1.19,1.168,1.905,1.572,1.608,5.956,6.335,12.543,12.341,6.297,2.47,0.762,3.01,1.213,1.264,2.399,1.587,0.712,0.72,1.178,1.175,1.319,0.802,0.798,1.581,1.403,1.259,0.789,0.785,1.339,0.795,0.758,1.232,0.711,0.709,1.364,1.369,1.231,1.181,1.208,1.204,1.183,1.546,1.221,1.339,1.429,1.483,0.797,0.801,0.98,0.977,1.024,1.019,0.837,0.759,1.211,1.143,2.013,1.634,1.629,3.157,3.916,7.326,3.983,2.333,2.261,1.218,1.342,2.476,2.033,1.907,3.121,0.983,0.977,1.607,0.426,1.955,0.986,0.989,1.155,1.594,1.181,1.218,1.533,1.203,0.789,0.788,1.595,2.738,2.755,2.559,1.277,1.277,5.164,1.678,1.388,0.594,0.454,0.692,1.292,0.793,0.762,2.686,1.689,1.739,1.645,1.678,3.15,1.633,1.296,3.625,1.371,1.54,2.449,2.584,1.948,2.467,1.833,1.811,3.018,5.461,5.636,5.265,6.092,34.507,0.362,5.56,5.524,2.735,2.758,1.908,3.597,3.123,2.417,1.716,3.79,3.372,3.192,1.97,1.949,3.013,1.583,1.55,1.567,1.377,2.484,2.016,0.326,4.514,4.497,5.016,3.625,3.539,3.125,2.206,1.256,0.746,2.965,0.068,1.461,1.301,1.028,1.136,1.318,1.591,1.428,1.55,1.668,0.49,1.332,1.506,0.135,3.146,3.299,2.193,2.282,2.456,1.479,1.085,1.018,2.634,2.701,0.796,1.821,1.652,2.481,2.049,1.471,2.282,1.754,1.593,2.075,0.76,0.864,12.448,2.355,2.483,2.481,2.622,1.622,3.456,2.023,2.973,2.159,1.644,1.33,3.658,1.462,3.034,2.988,1.525,1.526,3.053,2.474,2.59,2.077,2.249,2.101,2.4,1.823,2.494,2.14,1.084,8.97,1.279,2.078,1.399,1.717,3.799,5.119,3.157,2.244,2.458,2.491,4.394,4.549,3.278,1.839,1.259,1.729,3.077,2.995,3.071,5.666,2.072,2.064,1.902,1.583,1.209,1.023,2.772,3.015,3.056,2.255,0.778,1.971,2.852,2.862,4.887,6.073,1.208,4.756,2.157,2.079,1.855,2.245,2.461,2.247,2.213,4.577,2.34,2.197,1.783,1.991,2.381,3.046,2.495,3.55,3.606,1.872,2.157,3.185,1.125,4.177,2.72,2.267,3.725,2.382,3.209,3.217,0.691,5.615,2.364,1.072,4.177,1.583,3.062,3.041,4.883,16.49,2.422,3.15,2.595,2.807,3.324,1.776,1.872,1.954,0.821,1.049,1.8,1.774,2.528,1.115,1.395,1.392,1.096,1.71,0.501,1.019,1.22,1.539,1.158,4.39,4.408,3.963,1.262,3.024,3.282,3.777,11.39,8.735,4.419,4.734,4.113,4.127,4.358,4.36,4.458,1.079,1.762,1.691,0.035,3.784,2.76,2.773,2.779,2.774,2.763,2.79,2.757,2.75,2.789,5.548,2.763,2.766,2.754,2.8,2.767,1.32,1.445,1.378,6.065,4.163,4.279,4.442,5.201,4.402,4.343,4.142,4.16,3.86,4.413,4.05,4.043,4.018,20.176,4.499,4.043,3.882,3.872,4.742,4.525,19.98,5.344,5.625,3.592,0.079,3.915,4.018,3.733,4.235,4.328,4.318,4.388,14.315,11.324,7.862,22.644,2.194,7.853,5.171,4.673,4.587,1.07,3.771,4.489,4.673,4.497,4.526,4.794,4.508,15.78,4.995,5.299,4.444,4.567,4.801,4,3.962,4.06,1.971,2.038,2.074,2.131,3.896,3.729,0.965,41.145,4.862,4.995,5.026,6.372,4.337,3.891,27.701,4.131,4.03,3.9,3.88,4.033,4.063,3.653,4.815,4.621,10.475,2.181,2.951,3.719,4.476,4.186,3.381,0.784,4.182,4.129,3.763,3.932,8.608,4.256,4.388,3.902,4.042,3.651,4.156,3.848,4.078,3.562,10.342,3.416,3.331,3.288,3.411,4.217,4.526,4.451,3.958,18.081,6.569,5.033,5.777,3.575,3.967,6.003,6.457,4.694,4.576,5.271,12.342,7.66,11.116,10.74,0.992,7.168,1.117,3.319,3.424,1.063,4.791,0.396,21.38,3.749,3.713,3.029,0.382,2.204,2.827,3.153,2.746,3.005,2.225,2.076,2.326,2.215,2.373,3.243,2.711,3.41,13.309,3.012,2.245,2.379,2.797,1.814,2.009,0.864,3.074,2.323,2.632,1.223,1.283,1.235,1.263,2.144,1.443,1.411,2.789,2.806,2.446,3.525,6.725,2.518,2.521,3.185,1.833,2.864,4.046,2.964,2.466,2.915,2.723,3.01,3.442,3.004,2.735,3.004,3.996,2.498,2.214,2.85,3.701,7.771,0.68,0.939,2.473,24.522,5.27,6.481,1.699,3.78,3.518,3.827,3.411,3.817,3.434,3.65,3.276,2.735,4.154,2.681,2.964,2.749,3.097,3.143,3.549,2.906,2.804,3.455,0.399,4.07,2.536,9.104,7.076,5.466,1.785,1.749,3.79,3.994,2.971,2.882,3.036,3.345,3.756,4.056,13.326,4.956,5.22,3.405,0.77,0.986,5.519,3.937,4.055,5.445,6.951,3.506,1.449,2.004,1.644,2.845,2.274,1.735,1.887,1.752,1.908,1.416,1.634,0.438,1.766,1.665,1.507,1.339,1.422,1.115,0.172,1.337,1.821,1.345,1.395,2.746,2.759,2.625,3.79,4.399,2.523,3.157,3.042,2.285,1.976,2.22,1.399,0.872,2.407,2.213,2.446,2.394,2.033,2.734,1.618,2.409,2.347,1.994,1.644,1.535,1.474,1.675,3.18,3.197,3.228,3.547,1.538,5.195,3.266,3.486,2.746,2.564,2.58,2.737,2.411,1.289,1.534,1.708,1.66,1.299,1.396,1.134,1.081,2.201,1.41,1.233,3.137,4.399,4.344,2.588,3.368,1.669,1.367,2.364,1.586,1.6,1.681,1.725,1.108,1.222,1.505,1.256,1.502,1.411,1.509,2.053,0.835,1.575,1.726,1.162,1.186,1.302,1.953,1.63,1.61,3.56,1.596,3.952,1.545,5.009,1.643,1.59,3.331,1.662,1.627,1.655,2.019,1.649,1.591,1.652,2,2.444,1.621,1.653,1.8,1.875,2.225,2.384,1.714,0.003,4.671,2.832,2.06,1.987,2.345,2.138,2.288,2.333,1.184,1.946,1.99,1.414,1.32,2.614,1.792,1.796,1.632,1.835,2.228,3.531,2.36,1.837,0.991,0.746,0.014,1.654,2.499,4.02,6.718,2.323,0.931,1.981,4.379,4.74,3.8,2.873,2.627,2.401,4.083,4.057,4.688,4.717,6.722,3.226,2.392,2.322,1.482,1.451,1.371,2.1,3.218,3.448,4.233,4.708,5.332,6.564,6.567,5.125,5.725,1.492,2.668,4.656,2.215,3.765,3.985,0.945,13.193,3.025,2.141,2.292,0.782,0.289,1.796,1.82,0.215,1.211,1.115,1.656,1.948,0.075,3.735,4.001,2.519,1.419,2.55,3.242,6.165,0.027,11.163,11.587,9.549,4.881,1.616,2.835,4.893,6.362,6.201,2.953,13.911,7.22,4.373,4.363,4.734,4.019,4.29,3.546,2.089,4.504,4.65,16.281,9.538,2.268,2.049,5,4.513,3.243,1.902,3.802,3.332,1.439,3.938,3.918,4.305,3.534,3.92,4.219,4.255,4.494,4.317,4.512,4.014,4.382,7.844,7.278,8.245,4.151,4.768,4.809,3.966,4.553,2.043,2.254,4.96,11.085,4.235,6.84,1.763,2.058,2.02,2.195,1.878,2.169,4.115,2.281,2.335,2.24,1.848,2.444,2.289,3.765,2.303,3.354,0.969,2.602,2.052,2.38,5.773,4.855,5.621,4.942,5.229,3.801,4.267,4.668,5.025,4.967,5.219,8.504,4.486,1.676,1.568,2.916,2.848,0.176,4.179,2.746,0.223,2.203,3.247,3.225,2.759,2.76,2.262,3.516,0.906,5.969,24.072,1.629,21.704,8.298,6.545,6.333,6.097,15.49,55.874,43.529,5.355,1.982,3.73,7.391,7.522,2.708,4.17,5.811,26.291,7.137,6.402,6.886,6.385,6.653,5.93,15.557,6.324,5.296,5.953,3.391,3.895,6.582,2.167,1.57,1.743,6.355,5.138,6.805,5.769,6.611,6.485,0.042,6.645,9.005,8.355,31.112,2.247,0.637,3.481,5.31,0.254,6.207,3.014,3.007,2.204,5.839,2.514,5.125,6.469,5.505,1.052,0.905,7.528,6.766,6.429,30.186,5.934,5.183,5.481,5.102,4.97,3.528,5.023,21.183,3.877,4.619,4.792,4.544,0.101,6.271,5.111,5.832,5.093,4.973,5.862,3.716,3.949,1.941,1.426,0.942,0.488,3.38,4.983,4.995,9.235,6.653,1.713,8.069,10.998,3.452,6.644,23.159,8.004,6.995,3.079,3.627,3.66,3.325,3.933,11.105,3.418,1.788,1.535,2.692,3.184,3.034,3.62,3.209,3.313,2.908,0.357,11.86,4.002,3.821,4.613,4.424,4.106,13.069,4.396,4.856,4.451,5.118,4.562,2.877,2.933,3.776,3.237,3.231,15.901,4.777,4.835,5.035,2.839,2.019,1.583,1.862,0.852,2.912,2.032,16.446,1.859,4.017,5.044,4.859,4.486,4.359,3.776,3.992,3.875,3.888,3.897,3.407,3.365,11.864,8.482,3.997,3.535,0.421,3.367,4.792,4.947,5.229,3.684,3.884,3.842,4.412,4.106,3.784,3.355,6.459,12.665,2.305,7.41,1.616,61.224,0.306,0.816,3.449,4.536,4.424,4.701,5.732,13.013,4.8,4.306,4.977,4.22,4.528,4.748,4.297,4.754,9.374,0.342,4.236,5.347,6.171,5.819,14.09,4.502,5.508,4.884,4.808,2.976,3.987,5.646,3.019,6.24,1.397,3.73,6.128,7.531,1.848,1.795,4.828,11.354,27.104,5.624,5.409,5.613,5.341,4.322,3.999,3.795,4.325,4.065,3.168,1.452,5.828,5.995,6.065,1.898,5.326,6.911,3.932,4.897,4.197,3.562,3.207,4.56,4.479,5.272,12.501,5.925,0.089,3.996,3.846,3.597,3.82,3.604,3.372,3.735,3.903,3.53,3.783,1.968,1.536,3.942,2.384,1.579,3.289,3.752,3.945,3.532,3.101,3.74,3.207,3.56,3.243,2.384,1.227,3.726,2.764,2.926,2.889,3.155,5.472,0.196,1.298,3.708,5.116,5.06,9.458,0.225,4.538,3.678,2.963,2.691,2.602,2.474,2,2.13,3.566,2.554,0.617,2.743,2.868,3.246,5.684,9.469,4.248,4.468,3.338,3.514,3.501,3.426,4.188,2.991,3.7,3.37,9.176,12.42,4.432,7.203,5.331,2.354,2.337,5.327,8.04,15.642,8.37,7.721,4.532,4.474,4.472,12.834,12.815,1.09,5.542,1.728,6.473,0.726,2.926,3.148,3.734,7.559,13.824,1.152,0.387,11.27,8.398,21.559,5.726,5.012,3.471,4.994,8.901,2.676,5.056,1.855,2.221,2.124,2.662,2.653,2.324,4.928,1.954,3.81,3.311,6.598,6.795,13.596,6.513,6.654,2.059,2.596,2.676,3.402,3.812,3.796,1.862,3.845,3.2,3.165,3.531,3.681,1.127,1.891,4.279,4.572,3.067,1.302,3.409,5.994,3.435,4.627,2.388,1.602,3.566,2.406,1.217,3.529,2.411,1.281,1.263,4.505,3.651,1.67,0.719,0.964,13.385,0.123,5.653,2.551,2.788,1.594,1.708,2.947,2.529,3.864,11.479,9.674,9.65,4.211,1.488,2.604,3.41,2.966,1.99,1.441,1.352,0.066,0.758,0.07,0.547,2.799,4.605,3.391,3.443,3.768,4.352,3.719,9.095,3.437,15.055,3.832,1.727,10.181,4.639,12.402,0.645,0.922,3.655,1.064,0.199,3.155,3.051,3.852,4.704,15.796,7.701,15.728,9.984,6.801,13.695,4.67,4.2,3.598,3.115,2.907,3.471,2.889,2.937,4.08,10.726,3.348,0.426,1.699,17.863,5.17,9.013,1.603,2.214,2.454,2.991,3.67,3.135,3.429,6.394,2.295,11.242,10.496,1.023,4.207,6.859,1.081,1.904,2.711,2.249,3.612,3.966,3.64,3.798,2.777,14.075,5.155,11.566,5.267,3.248,2.348,4.89,1.645,1.654,3.658,1.886,1.887,1.993,2.009,1.696,1.953,1.875,1.117,1.293,1.086,1.282,0.928,1.826,1.495,2.044,1.986,1.095,1.061,1.319,1.334,1.5,1.331,1.528,1.262,0.65,0.656,0.888,0.865,0.808,0.812,1.073,1.043,1.866,3.18,4.482,1.551,2.056,1.975,1.771,2.556,2.538,2.529,0.298,2.492,1.992,3.063,3.472,4.746,0.965,1.969,7.364,6.68,4.174,9.907,6.039,2.185,2.01,3.826,3.55,3.781,2.962,3.306,2.629,2.493,5.298,5.971,0.419,4.338,5.685,4.082,15.879,0.867,2.051,2.842,2.358,2.3,2.334,1.987,2.1,2.953,3.258,4.265,1.206,4.04,1.542,1.961,1.851,3.457,6.101,4.113,3.108,1.939,2.627,0.906,1.99,1.999,1.889,2.356,2.46,3.193,2.651,2.977,2.685,2.965,3.332,2.918,1.68,2.721,1.533,1.238,1.406,1.974,1.718,2.236,1.711,1.97,2.591,3.341,5.07,2.184,2.165,1.943,1.279,0.893,2,1.923,2.064,1.541,1.695,1.476,2.587,4.698,1.686,1.999,2.175,1.501,1.807,1.79,2.124,1.727,5.897,2.267,1.662,2.7,1.291,1.264,2.098,1.46,1.304,1.848,2.285,1.519,2.113,2.102,1.009,1.379,1.567,1.534,1.478,1.29,2.415,1.528,1.822,1.552,2.604,2.018,2.337,1.727,2.081,2.721,0.761,1.85,1.97,0.337,2.084,2.024,1.285,2.245,3.205,1.51,1.308,1.379,1.723,2.58,1.812,2.423,0.703,2.945,2.466,1.71,0.262,3.711,4.27,11.313,18.309,1.074,1.215,2.57,1.12,1.163,1.143,1.174,0.372,0.768,1.139,2.334,1.113,2.959,1.819,1.84,1.597,3.109,4.114,5.211,0.464,5.559,1.477,3.661,3.861,2.717,1.355,2.741,3.132,0.283,2.808,4.783,1.97,8.286,0.837,4.072,4.075,2.071,5.287,10.902,14.848,1.918,2.851,1.773,2.426,3.077,1.775,1.899,1.543,2.274,2.953,2.981,3.329,2.656,3.501,3.404,5.293,2.625,1.801,4.933,1.051,12.587,3.449,3.843,3.001,2.427,0.09,2.277,3.134,3.645,4.422,1.872,2.972,6.21,6.316,2.861,1.017,12.977,13.999,3.024,1.511,2.438,2.49,4.15,5.908,7.332,4.591,5.9,3.234,1.855,4.633,2.437,2.421,4.778,0.548,1.777,11.257,2.919,3.32,7.481,5.055,3.58,3.817,2.553,2.254,3.548,2.653,2.593,4.39,1.947,1.799,2.07,3.592,2.904,2.211,3.358,3.767,3.941,11.84,3.572,8.649,3.699,3.592,2.92,1.524,1.191,1.072,0.737,1.69,0.673,0.36,1.161,1.431,1.008,0.73,0.732,0.901,1.094,1.039,0.113,1.339,1.25,1.273,1.166,0.767,1.006,1.658,1.422,1.324,1.862,1.118,0.926,1.06,1.304,1.292,1.147,1.18,1.262,1.023,0.91,1.44,1.125,1.401,1.275,0.816,1.393,0.766,2.966,1.778,0.868,1.034,0.837,1.262,3.235,3.271,1.999,5.737,8.652,5.887,6.452,12.618,20.93,13.065,14.126,1.542,4.183,7.45,8.648,8.648,3.68,7.988,8.101,6.502,6.538,4.38,3.99,6.687,1.406,3.419,8.381,4.592,5.787,7.894,17.196,14.125,13.008,1.742,9.978,10.87,7.132,0.353,2.19,0.339,0.215,36.294,2.514,3.385,0.688,1.08,4.461,0.105,5.418,3.559,0.522,3.022,3.644,5.891,2.146,4.162,0.719,2.706,3.193,4.822,6.638,7.342,3.281,0.054,2.043,10.898,12.658,23.728,13.056,7.919,2.978,3.982,4.878,5.75,0.409,7.337,8.729,9.223,27.556,15.463,0.18,0.065,0.184,10.212,6.721,12.157,8.218,11.821,10.074,0.259,4.361,7.015,6.81,5.54,4.477,5.955,5.637,5.009,7.454,7.154,4.323,5.432,10.46,4.439,11.529,9.658,5.184,0.017,16.443,6.539,0.365,2.714,2.7,0.578,7.94,3.152,3.019,9.133,14.252,0.785,9.761,7.428,10.918,9.218,7.393,5.66,4.066,4.198,2.889,2.942,3.354,6.38,8.372,5.818,2.757,2.904,2.291,3.987,4.411,4.534,5.918,6.206,4.798,4.959,5.796,19.281,9.901,13.603,7.637,8.784,5.416,5.435,1.611,1.529,3.423,6.846,12.683,3.167,3.119,3.088,3.22,6.856,3.214,3.312,2.964,1.875,1.086,0.247,2.387,1.759,2.048,1.183,2.914,2.083,0.755,2.51,2.9,2.842,2.529,4.669,2.767,2.818,4.507,3.955,4.147,1.565,1.842,2.265,5.674,16.364,5.81,0.034,3.933,7.723,5.877,6.747,6.486,7.043,6.901,4.411,4.249,9.33,8.078,10.657,9.259,8.799,5.268,1.946,6.134,5.516,5.277,5.2,6.309,3.042,3.071,2.76,10.235,6.39,7.91,4.341,3.334,10.906,3.828,16.305,7.609,6.857,8.752,3.413,3.007,2.203,6.539,2.676,2.958,5.963,6.306,8.239,3.69,1.957,3.731,9.21,3.972,5.132,1.29,7.437,8.209,10.259,9.31,9.892,9.515,7.851,34.161,20.974,0.253,10.563,5.595,7.328,5.053,4.963,3.272,2.954,6.317,5.395,5.252,4.638,1.066,3.426,3.25,6.151,19.135,49.711,3.367,2.727,3.652,1.217,1.263,1.67,1.735,7.241,4.504,6.796,8.289,5.682,5.646,5.715,2.633,1.176,0.951,0.922,1.231,1.204,2.48,1.216,2.855,4.679,2.846,3.06,4.543,1.526,10.308,13.054,5.289,4.473,4.202,5.177,7.748,6.96,57.626,15.17,0.949,4.57,22,21.611,8.838,4.763,4.26,5.516,3.691,3.693,6.328,5.428,0.32,3.555,10.487,7.157,2.965,7.537,8.252,0.043,25.373,5.335,5.564,2.273,2.297,1.426,1.524,2.894,3.023,1.571,1.454,1.247,1.362,2.042,1.955,1.892,0.903,3.096,3.101,3.665,2.53,2.232,2.202,2.816,2.855,6.131,2.689,2.658,2.63,2.55,2.759,2.67,4.867,183.403,0.648,2.398,20.949,2.241,22.958,43.27,1.909,2.482,3.403,2.739,2.728,2.684,2.361,3.698,5.365,5.234,2.771,2.649,2.605,2.896,3.805,2.379,0.84,2.327,2.221,1.266,2.896,2.315,0.486,6.491,0.195,5.872,2.529,10.78,2.375,2.289,2.997,5.533,0.815,2.492,9.429,9.448,14.598,14.723,8.789,17.375,15.396,4.451,7.237,21.87,29.833,1.985,4.847,28.486,1.748,3.771,2.549,1.106,1.231,1.55,1.608,1.751,2.246,3.411,2.803,2.483,1.611,2.087,2.296,2.312,2.54,1.345,2.868,5.551,3.265,1.324,1.332,3.024,1.737,2.564,2.567,5.151,3.848,3.708,1.468,1.729,2.13,3.098,3.072,6.3,19.706,40.27,30.245,34.554,25.273,0.188,11.466,0.052,12.824,1.513,17.043,5.12,4.491,3.856,3.142,4.634,20.909,5.186,5.49,13.097,3.584,3.213,3.648,2.911,3.096,3.169,3.191,1.956,6.219,1.191,2.828,6.126,12.328,11.287,6.773,6.228,4.039,3.418,3.405,3.792,4.088,14.475,3.722,2.878,2.66,2.962,3.216,3.262,3.472,3.428,3.711,3.073,2.775,2.652,3.152,23.347,62.301,37.083,4.268,3.237,3.392,4.019,7.55,0.267,3.991,0.803,0.637,3.813,0.889,1.548,2.412,2.542,3.953,2.387,2.179,2.044,2.132,3.998,1.905,0.176,17.229,3.398,2.773,2.244,2.96,1.927,2.246,1.944,2.664,3.564,2.663,5.842,13.665,8.261,24.597,2.188,28.348,7.198,37.735,15.068,14.862,3.504,4.613,3.401,71.898,9.263,6.627,5.292,4.57,4.607,4.63,4.554,4.462,6.795,2.797,3.984,2.759,2.527,1.522,1.491,1.521,1.535,2.582,2.571,2.578,1.26,1.244,1.097,1.978,1.974,2.096,0.983,0.291,0.223,2.698,3.218,3.283,2.942,2.99,2.348,2.582,1.873,2.136,1.368,1.589,3.163,1.987,1.199,2.639,5.532,13.743,4.888,4.315,3.876,3.773,3.953,4.195,4.235,2.523,2.607,4.537,4.981,5.8,13.293,13.301,47.275,3.669,2.57,2.895,5.789,2.512,20.613,0.512,0.078,1.801,0.98,6.68,2.45,6.738,2.66,4.979,18.476,54.002,27.484,21.618,5.061,2.843,3.453,3.325,2.367,3.241,3.364,5.168,4.739,2.027,3.854,1.947,0.588,0.309,3.656,2.91,1.34,2.645,3.429,2.04,2.393,2.4,3.296,1.561,1.541,1.298,1.47,4.852,3.341,2.26,2.141,2.043,4.176,4.15,4.811,7.43,9.262,87.446,5.151,42.727,17.109,22.352,2.316,19.961,22.851,18.889,1.635,1.518,3.481,2.844,3.022,0.042,4.068,4.342,2.067,2.814,3.228,7.705,3.357,3.734,6.319,8.56,6.563,10.079,7.499,7.466,8.611,3.522,4.08,3.307,3.502,3.584,3.824,5.113,8.417,6.822,3.213,3.302,3.425,3.784,8.623,6.255,5.237,5.293,11.212,5.241,5.679,2.661,2.526,2.621,3.13,2.709,3.216,3.085,3.274,5.425,5.914,5.828,5.561,3.204,3.599,6.013,4.004,3.805,6.935,7.891,5.965,6.014,2.525,4.062,2.891,3.114,3.091,1.273,2.126,1.473,1.429,1.658,1.786,5.882,5.192,4.285,2.015,2.462,4.239,4.759,4.239,4.073,4.393,3.733,3.925,3.327,4.284,2.813,4.743,4.021,2.648,2.77,4.268,2.118,2.381,4.853,4.586,3.626,4.02,5.075,4.449,4.446,2.496,2.033,4.32,2.276,2.557,3.126,2.236,2.969,4.756,2.829,0.416,0.676,6.188,3.714,15.585,6.175,1.851,0.825,6.176,0.453,2.727,1.223,6.286,1.639,4.457,4.047,20.269,10.213,10.072,4.654,5.497,1.943,1.401,0.042,2.712,4.57,5.171,3.809,4.333,4.433,5.171,8.199,2.359,3.27,2.275,2.281,2.056,2.477,2.173,2.806,1.59,1.873,2.413,2.802,2.873,2.306,1.816,2.629,3.629,2.439,4.57,4.268,5.037,3.698,2.371,1.672,3.848,2.749,1.86,2.32,3.076,4.367,1.667,2.047,2.344,2.163,1.907,1.559,1.577,1.655,1.95,0.07,1.356,1.775,1.642,2.761,3.193,1.885,3.241,2.297,2.089,2.057,1.951,1.99,1.721,1.198,2.155,1.747,1.597,2.173,2.054,2.547,1.863,1.31,1.411,1.832,1.362,1.735,0.919,1.542,2.565,1.395,1.294,0.974,1.425,1.32,1.446,2.129,2.196,1.797,1.885,2.768,2.902,1.617,1.221,1.704,1.131,0.795,1.76,2.162,9.637,3.618,1.888,1.14,1.213,2.001,2.05,3.322,1.749,1.496,1.472,1.725,1.841,1.219,1.593,4.014,3.31,1.47,1.344,1.571,2.823,1.656,2.188,3.004,2.014,2.516,3.445,2.381,2.262,2.494,2.885,3.698,4.063,3.766,4.268,4.73,4.138,4.087,4.16,4.003,4.078,4.775,3.168,0.914,4.162,4.518,4.245,4.526,4.32,3.953,2.645,2.037,3.353,3.587,1.767,0.873,1.281,0.902,0.873,1.205,0.612,2.953,2.108,1.445,1.617,1.298,1.21,0.916,0.876,1.269,0.863,0.848,0.87,0.833,0.865,0.872,1.316,1.065,1.058,1.312,1.293,1.708,1.279,1.3,1.261,0.874,1.286,1.309,0.84,0.846,1.052,1.098,1.295,1.292,1.298,1.18,1.313,2.109,2.185,0.808,0.87,1.072,1.124,0.909,1.215,1.288,1.288,1.243,1.38,1.35,0.967,1.353,1.385,1.37,1.732,1.329,1.537,1.425,1.213,0.849,0.112,0.341,1.023,0.646,0.686,1.388,0.944,1.012,0.908,0.934,1.374,3.881,4.074,18.152,2.363,0.786,0.943,1.047,0.95,1.006,0.701,0.755,1.482,1.477,0.972,0.985,1.002,1.145,0.803,0.748,1.764,1.431,1.004,1.119,1.281,0.956,0.974,1.429,1.112,2.835,0.617,0.882,0.899,0.898,0.719,0.748,1.067,1.067,1.022,1.085,1.237,1.136,1.253,1.296,1.01,0.91,0.986,1.273,3.521,0.515,1.854,1.424,0.922,1.219,1.176,0.958,0.926,0.943,0.945,0.869,0.898,0.995,0.893,0.955,0.951,1.129,0.617,2.968,1.858,1.409,1.45,1.352,3.305,3.38,3.373,1.391,3.093,2.316,2.602,3.102,3.348,4.23,4.221,4.496,16.458,3.527,4.766,5.783,2.353,3.261,7.12,7.625,5.053,2.124,2.314,1.836,1.461,1.051,2.512,2.013,2.047,3.271,6.727,6.394,3.401,3.589,11.24,3.607,2.365,2.368,2.257,2.378,2.323,2.156,2.679,2.085,2.715,2.575,2.769,5.553,3.067,2.857,2.546,2.426,2.222,5.607,3.598,3.362,2.997,0.074,1.901,2.346,2.66,2.674,3.276,3.201,2.423,2.746,2.329,2.374,2.365,2.384,2.723,3.109,2.311,0.576,2.26,0.859,1.721,1.202,0.368,1.667,1.758,2.92,6.693,2.945,5.622,4.303,4.856,7.187,7.397,7.977,7.702,0.367,6.145,1.64,2.049,1.255,1.136,1.878,2.212,2.209,2.79,2.67,2.848,3.516,2.673,3.181,2.737,3.1,3.696,3.237,3.318,3.555,4.025,3.026,2.268,2.783,3.558,3.064,2.545,2.691,2.235,2.663,4.038,1.766,2.653,2.764,10.747,0.024,2.507,1.602,1.018,2.92,3.335,1.505,4.547,2.869,2.86,8.367,2.484,2.3,1.47,1.432,1.768,1.637,2.14,2.059,3.993,3.147,2.695,1.941,1.381,1.74,6.648,3.531,2.712,2.895,2.793,6.465,2.184,2.12,1.937,1.733,2.063,4.206,4.514,2.569,1.813,1.879,3.78,2.448,3.304,2.089,2.25,2.818,4.035,3.151,3.087,3.398,4.228,6.039,4.069,1.656,1.413,1.142,5.497,3.482,3.627,3.155,4.041,3.605,3.161,2.495,2.558,2.117,5.659,3.198,2.692,2.467,1.961,3.872,8.805,3.047,8.337,6.732,4.015,3.987,3.938,3.69,3.08,3.644,4.706,4.44,8.134,3.182,2.982,2.883,1.249,2.573,3.088,1.766,2.372,3.624,2.851,3.303,3.32,3.309,3.516,3.484,3.528,3.226,3.664,3.31,3.22,7.512,6.681,4.053,4.133,3.671,4.329,4.14,5.36,6.03,7.053,7.755,9.337,4.385,1.258,1.991,5.071,6.657,6.046,2.817,2.238,5.224,2.088,2.754,2.807,2.512,4.253,3.931,3.72,3.64,4.571,6.432,4.189,3.337,3.541,3.548,3.031,3.281,3.191,6.467,3.045,3.274,3.665,7.398,4.12,3.379,5.225,3.693,3.225,4.835,5.579,1.934,3.146,3.734,3.833,3.455,3.751,4.478,4.186,4.044,8.084,3.852,0.238,1.945,3.532,2.879,1.711,0.838,1.014,0.519,2.663,1.234,1.321,1.67,1.258,2.398,2.914,2.915,1.343,7.862,1.664,1.44,2.639,3.102,3.477,5.289,1.516,2.195,2.508,1.891,2.6,1.609,0.041,1.422,1.134,1.545,0.671,1.581,1.405,1.076,0.809,1.175,1.391,1.368,1.218,1.257,1.346,1.126,1.102,1.448,1.322,1.069,0.963,1.387,1.402,1.424,0.701,1.066,1.508,1.453,1.338,0.86,0.855,1.048,0.828,0.937,1.31,1.381,0.896,1.164,0.948,1.105,1.098,1.191,1.273,1.241,1.169,0.763,1.151,0.912,1.133,1.114,1.063,1.071,1.084,1.254,0.845,0.698,0.875,1.407,2.194,1.738,1.35,1.003,1.011,1.306,1.221,1.203,0.928,1.109,1.178,0.955,1.126,1.131,1.236,0.697,1.123,0.908,1.132,1.145,1.14,1.049,1.36,1.121,0.929,1.183,1.199,1.217,1.068,1.45,1.415,1.214,1.299,1.449,1.233,1.006,0.868,1.239,1.252,0.85,1.218,1.156,1.205,1.287,1.415,1.123,1.018,1.064,1.208,1.088,0.709,0.816,1.133,0.74,0.939,0.771,0.87,1.407,1.127,0.79,1.246,1.069,1.046,0.871,0.181,0.674,1.184,1.135,0.563,0.722,0.761,0.756,0.666,1.009,0.829,0.91,0.91,0.794,0.543,0.868,1.176,1.34,1.102,0.831,0.497,0.607,0.595,0.651,0.687,0.717,0.6,0.897,0.9,0.923,1.132,0.692,0.533,1.069,0.928,1.59,1.519,1.025,1.024,0.818,0.742,0.969,0.954,0.762,0.746,0.996,1.043,0.962,0.983,1.029,0.929,1.123,1.507,0.969,0.222,1.166,1.294,0.566,0.382,1.126,0.825,0.164,0.912,1.501,1.537,2.02,1.524,1.031,1.164,1.103,0.708,0.875,0.922,0.689,0.844,0.946,1.053,0.952,1.048,1.033,1.06,1.435,2.614,1.034,1.006,1.133,0.918,1.016,1.022,0.914,0.599,1.165,3.53,4.319,0.768,2.932,6.925,1.791,4.083,0.234,7.662,7.874,2.212,8.975,7.865,9.145,5.663,5.483,2.338,4.961,3.726,2.686,2.339,2.09,1.939,1.652,1.442,1.097,0.918,1.413,0.952,1.089,0.656,0.262,0.99,1.03,0.872,0.794,0.798,0.974,0.745,0.976,1.411,1.744,0.582,0.843,0.934,1.113,0.645,0.725,0.747,0.735,0.816,0.689,0.698,0.725,0.995,0.809,0.801,1.238,0.77,0.835,1.01,1.111,0.701,0.682,1.032,1.487,0.926,0.957,1.059,0.869,1.061,0.657,0.727,0.642,0.895,0.578,0.841,0.589,0.655,0.757,1.035,0.884,0.381,0.465,0.725,0.794,0.867,0.965,1.6,1.527,1.511,1.524,1.568,1.841,1.865,0.989,0.983,1.337,1.385,1.359,1.648,1.583,1.647,1.775,1.868,1.972,1.916,1.854,1.33,1.686,1.34,1.475,1.241,0.622,1.039,0.946,1.433,1.052,1.213,1.488,1.566,1.491,1.482,1.147,1.565,1.936,1.432,0.355,0.824,2.162,1.217,0.711,0.949,1.164,1.36,1.149,1.515,1.205,1.224,1.456,1.087,1.207,1.216,0.938,1.042,1,0.736,0.709,1.332,1.314,1.227,0.377,1.605,1.533,0.625,1.165,0.944,1,1.727,1.867,2.377,1.493,2.005,1.899,2.746,2.677,2.907,2.214,0.661,1.744,1.044,1.038,1.03,1.23,1.067,1.005,1.67,0.177,1.134,1.254,1.302,1.037,1.061,1.029,1.155,0.674,0.268,0.833,2.344,2.302,2.703,0.495,2.648,2.218,1.999,1.711,2.024,1.868,2.318,1.94,2.115,1.857,1.423,1.935,1.57,1.767,1.945,2.549,2.047,2.185,1.396,0.667,2.069,2.727,1.494,2.132,1.402,1.393,4.253,1.557,3.341,2.506,4.233,3.821,3.99,2.836,2.218,2.533,2.354,3.133,2.375,1.219,3.427,2.718,2.724,2.934,3.613,2.484,1.431,0.404,1.039,0.084,1.341,1.468,3.441,1.71,2.516,2.493,1.191,0.989,1.822,1.931,1.894,2.639,2.803,1.767,2.041,1.771,3.466,2.203,2.228,0.047,2.135,2.578,2.762,5.469,3.969,2.769,1.351,1.224,2.382,0.59,5.609,3.751,4.443,3.72,2.94,1.873,1.904,4.518,0.322,1.224,3.363,2.442,2.067,1.88,1.93,3.266,1.869,1.634,1.851,1.47,1.292,1.914,2.514,1.947,0.971,1.233,1.107,2.358,1.783,3.134,0.411,1.77,2.517,2.048,1.663,1.216,2.176,2.985,2.037,2.131,2.057,2.154,2.861,2.562,5.359,1.143,3.558,5.227,4.669,4.722,0.9,1.911,1.347,2.473,2.237,3.711,3.518,4.009,3.511,2.327,2.235,2.231,2.701,1.733,0.437,2.402,2.569,2.572,3.566,1.711,3.463,2.459,2.83,2.466,2.553,1.61,1.601,1.702,1.676,1.275,2.61,2.871,3.127,3.708,2.633,5.115,3.193,0.637,2.902,1.508,2.693,2.205,2.62,2.076,1.993,1.802,3.8,1.295,1.254,1.899,3.089,4.34,1.132,0.913,1.064,0.89,1.486,1.579,1.396,1.296,1.291,1.179,3.894,3.977,2.389,2.101,2.339,1.849,4.019,3.093,3.467,1.864,2.402,2.081,1.979,1.933,1.002,1.579,1.813,2.391,2.299,1.517,0.742,2.828,1.187,0.361,2.807,1.869,1.886,2.407,1.446,1.232,1.326,1.253,1.225,0.367,0.881,0.688,0.853,0.502,0.502,1.129,1.076,1.954,2.431,1.504,1.497,1.652,1.409,1.399,2.075,1.567,1.052,0.869,1.111,0.828,1.165,1.195,1.367,0.814,1.391,1.232,1.268,1.399,1.389,1.105,2.703,1.552,1.402,1.434,1.355,1.831,2.841,1.472,1.461,1.828,2.927,2.133,1.733,1.506,1.755,0.234,1.993,0.323,1.7,1.821,1.773,1.583,2.807,3.084,3.214,2.606,2.053,2.008,1.745,1.717,2.45,2.493,2.296,2.346,2.417,2.523,1.546,2.192,2.752,3.589,2.835,2.746,2.844,2.22,3.401,3.525,2.45,2.736,2.375,2.119,1.763,2.74,1.239,1.179,1.236,1.53,1.126,1.731,1.723,1.796,1.562,1.528,1.363,1.268,1.245,1.096,1.161,1.524,1.458,2.328,4.252,1.933,2.193,6.124,3.858,4.831,1.757,1.551,1.553,0.982,2.399,2.516,2.267,3.29,0.115,2.031,2.238,1.588,0.731,0.684,1.234,0.737,0.747,1.006,1.613,1.396,0.735,0.921,1.059,1.219,1.226,1.077,0.948,1.165,1.369,1.561,1.272,1.045,1.025,0.947,1.205,1.198,1.202,0.55,0.505,1.519,1.152,1.323,0.122,1.319,1.489,3.008,5.671,3.404,3.34,4.473,4.37,1.957,1.484,1.524,1.484,1.867,3.164,1.408,1.557,1.772,4.273,1.712,1.458,1.395,1.143,1.538,1.698,1.621,1.028,1.261,1.66,1.079,1.482,1.497,2.578,1.704,0.303,1.779,1.34,0.355,1.602,1.973,1.141,1.216,0.752,2.077,1.321,1.281,1.266,1.569,2.059,1.523,1.549,1.432,1.579,1.453,1.774,1.525,2.172,1.107,1.108,2.055,0.282,2.234,9.506,10.455,8.564,5.6,13.305,6.04,0.847,1.364,1.777,1.348,1.181,2.842,0.766,1.891,2.091,3.08,2.094,0.359,1.008,1.085,0.632,0.595,1.157,1.341,1.114,1.233,1.134,1.328,1.055,1.718,1.526,1.162,1.171,1.089,1.542,1.144,1.235,1.499,1.291,1.904,1.645,2.119,1.478,2.01,1.789,2.046,2.797,1.33,1.727,1.603,1.807,1.337,1.541,1.456,1.71,1.198,0.926,1.493,0.617,0.523,0.95,0.779,0.925,1.726,1.299,1.773,2.501,1.21,1.223,1.314,1.235,1.178,1.319,1.064,3.609,1.112,0.834,1.794,1.684,1.682,1.604,2.248,2.426,1.762,1.543,1.671,1.705,1.765,2.219,1.742,2.213,2.013,2.817,2.263,2.5,1.101,2.116,3.151,1.781,2.349,4.028,2.201,1.183,1.563,2.129,5.207,5.177,4.686,5.328,2.152,4.362,1.426,0.256,1.554,1.618,1.256,1.561,1.514,1.21,3.086,1.133,0.973,0.804,1.671,1.055,1.289,1.344,1.692,1.632,1.315,1.559,1.55,1.508,1.639,1.897,1.93,1.84,1.613,1.269,1.259,0.429,1.793,1.554,1.287,1.954,1.355,1.605,1.534,1.236,0.412,0.188,0.907,0.986,2.039,1.469,0.848,1.23,1.387,1.479,1.847,1.601,1.206,1.251,1.747,1.407,1.392,2.318,2.108,0.28,1.475,0.647,0.832,0.176,2.693,1.231,1.175,1.241,1.373,1.639,1.413,1.205,1.62,1.525,1.632,1.42,1.483,1.565,1.528,1.662,1.183,1.161,1.342,1.446,0.902,0.813,0.835,0.873,0.911,1.285,1.008,1.069,1.436,0.926,0.679,1.007,0.786,0.687,0.704,0.697,0.79,0.695,0.66,0.657,0.573,0.715,0.682,1.356,1.457,1.154,1.309,0.832,0.909,0.753,0.583,0.718,0.796,0.755,0.813,0.597,0.797,0.925,0.706,0.751,0.687,0.672,0.69,0.702,0.845,0.857,0.626,0.433,0.502,0.601,0.597,0.412,0.443,0.898,0.953,0.916,0.821,0.846,0.667,0.836,0.658,0.76,0.995,1.022,0.971,0.645,0.528,0.694,0.906,0.626,0.78,0.725,0.801,0.668,0.735,0.776,0.991,0.985,1.136,1.291,1.062,1.034,0.578,1.296,0.684,0.82,0.919,0.823,0.716,0.847,1.057,1.105,0.935,0.599,0.609,0.658,0.488,0.572,0.625,0.627,0.699,0.74,0.887,0.98,0.943,0.867,0.701,0.688,0.667,0.71,0.781,0.678,0.737,0.539,0.632,0.65,0.687,0.266,1.143,2.005,0.897,0.862,0.574,3.637,1.363,0.995,1.418,1.248,0.988,1.375,1.263,0.966,1.248,0.756,1.046,0.56,1.522,0.876,0.859,0.799,0.761,1.319,0.901,0.456,0.765,2.318,0.768,1.492,1.419,1.74,1.386,1.188,1.765,1.394,1.196,0.96,1.252,1.036,0.958,0.962,0.797,0.852,0.971,0.819,0.499,1.132,1.2,1.153,0.869,1.524,1.136,1.072,0.824,0.93,0.786,1.011,0.857,0.981,0.985,1.321,1.008,0.602,0.747,0.604,0.535,0.694,0.601,0.481,0.669,0.81,0.684,0.868,0.726,0.828,0.858,0.748,0.787,0.819,0.952,0.982,1.184,0.749,0.844,0.686,1.033,0.926,0.838,0.984,0.772,0.553,0.894,1.019,0.901,0.796,0.775,0.695,0.768,0.732,0.977,0.713,1.011,0.696,0.525,0.548,1.158,1.575,1.295,0.923,0.917,0.966,1.537,0.936,0.754,0.991,0.956,0.966,0.984,0.872,0.944,0.756,0.7,0.511,0.613,0.88,0.895,0.821,0.672,0.642,0.918,0.945,0.781,0.844,0.774,0.642,0.724,1.023,0.588,0.812,0.875,0.901,1.025,0.88,0.625,0.665,0.659,0.851,0.619,0.64,0.732,1.09,0.51,0.448,0.48,0.592,0.779,0.624,0.991,0.887,0.818,0.83,1.222,0.912,0.827,0.687,0.333,0.591,0.759,0.643,0.679,0.948,1.079,1.023,0.754,0.836,0.869,1.219,1.101,0.983,0.63,2.447,2.089,1.392,1.201,1.891,1.056,0.655,1.487,0.675,1.277,1.122,0.86,0.795,0.823,0.93,1.064,0.452,1.265,1.337,1.316,0.986,0.869,1.266,1.634,1.88,1.813,2.749,2.163,2.064,0.372,1.07,0.73,1.703,2.251,0.636,0.422,1.265,2.082,2.05,2.069,1.436,2.779,7.833,4.524,5.033,2.961,0.635,1.255,1.384,1.332,1.145,1.401,1.913,2.504,1.082,1.158,0.975,0.939,1.008,1.057,1.038,1.185,1.408,1.076,1.095,0.933,1.084,1.037,1.317,1.067,1.304,1.018,1.278,1.368,1.171,1.121,0.886,0.869,0.693,0.659,0.571,1.014,1.103,0.708,1.464,1.351,1.541,1.484,1.376,1.367,0.821,1.655,1.813,1.849,2.058,2.241,0.71,2.227,1.212,1.982,0.446,0.711,2.302,2.12,2.079,2.556,1.862,1.575,1.647,1.046,1.183,2.641,1.152,1.915,0.745,1.052,1.458,2.851,1.238,1.332,1.103,0.806,1.027,2.036,1.8,1.321,1.153,0.869,2.182,1.83,1.825,1.28,1.712,1.025,1.373,1.319,2.221,1.619,2.124,0.678,2.673,4.477,1.541,1.015,1.032,1.559,1.01,0.617,0.756,0.618,0.955,0.922,1.005,0.888,0.897,0.771,0.718,0.815,1.195,1.154,1.092,1.196,1.132,1.19,0.955,0.691,1.67,1.022,1.006,1.165,2.104,1.704,1.722,1.049,1.4,1.688,1.732,1.426,1.448,1.481,1.304,1.139,0.815,1.249,1.314,1.307,1.629,2.465,2.003,1.944,0.817,0.735,1.705,0.872,0.606,1.675,1.676,0.802,0.977,2.004,1.153,1.154,0.901,0.613,0.581,0.844,1.132,0.75,0.958,1.853,2.161,0.821,1.012,0.847,0.772,1.079,0.957,0.988,0.711,1.096,1.124,1.166,2.522,1.232,1.04,1.264,1.41,1.01,1.406,1.711,1.8,1.808,2.009,1.345,1.395,0.743,1.405,1.108,1.228,0.87,1.508,1.361,1.583,1.66,2.369,1.507,1.902,2.73,1.438,1.157,0.904,1.181,1.274,1.109,1.092,0.896,0.831,0.909,0.782,0.999,1.278,1.307,1.148,0.951,0.887,0.878,0.833,0.804,0.832,1.105,0.829,0.814,0.956,1.002,0.96,1.15,1.401,0.942,1.103,0.984,1.638,1.05,1.21,1.813,0.867,0.988,1.062,0.352,0.256,0.636,0.504,0.567,0.321,0.334,0.846,1.333,1.029,0.866,0.749,0.881,0.935,1.171,0.469,0.559,1.151,0.736,0.81,0.274,1.055,1.723,0.516,0.513,1.208,1.866,1.192,1.315,1.66,2.104,2.35,1.846,2.801,2.539,1.299,1.623,1.018,1.206,1.798,1.471,1.49,3.091,1.984,1.305,1.77,1.28,0.905,1.324,1.367,1.316,1.667,0.892,1.057,1.069,0.923,1.201,1.221,1.237,0.564,0.465,0.92,1.162,0.875,1.476,0.563,1.074,1.436,1.108,1.282,1.606,1.337,0.936,0.958,0.928,0.721,0.739,0.91,2.459,1.751,1.26,0.89,1.027,0.843,1.146,1.477,1.745,1.774,0.872,1.7,1.219,1.105,0.252,1.357,1.863,0.226,1.97,0.982,0.947,0.9,0.865,1.109,1.053,0.994,0.62,1.038,0.866,0.862,0.709,0.938,0.848,1.051,1.08,1.06,1.941,1.004,0.866,0.62,0.611,0.662,0.743,1.063,0.637,0.257,0.67,0.803,0.514,0.607,0.955,0.944,1.114,1.609,1.512,1.084,0.826,0.612,0.69,0.474,0.631,1.624,2.007,1.772,2.098,1.702,1.122,1.044,1.157,1.167,1.259,1.29,1.405,1.31,1.651,1.201,1.273,0.916,0.828,1.095,0.533,0.662,1.228,0.973,1.209,1.595,1.226,1.317,1.332,1.009,1.22,0.656,0.449,0.949,1.018,1.389,1.221,1.345,1.356,1.334,1.269,1.658,1.209,1.349,2.26,1.979,1.268,1.227,1.397,1.466,0.771,0.768,2.72,2.807,2.107,0.559,0.907,1.182,1.164,0.539,0.948,1.046,0.807,0.64,0.843,1.009,1.075,0.829,0.976,0.928,1.138,1.246,0.815,0.915,1.011,0.752,0.783,2.746,1.314,1.408,1.823,1.26,1.234,1.045,1.116,1.147,1.212,0.905,0.857,0.817,1.276,1.165,1.195,1.057,1.204,1.394,1.22,1.908,1.037,1.18,1.06,2.556,1.171,1.162,1.175,1.604,1.64,3.347,2.233,2.219,2.194,2.223,2.455,1.947,5.383,13.366,6.452,6.135,2.023,5.984,0.781,82.492,2.61,1.508,1.643,1.905,2.182,2.892,2.752,6.667,11.996,18.775,3.465,3.191,2.435,2.486,3.891,3.844,1.875,1.863,1.308,1.334,2.704,1.392,1.484,0.748,0.814,1.006,0.65,1.452,1.495,0.6,0.993,3.401,2.549,2.533,1.635,1.63,1.974,1.905,2.609,2.621,2.64,2.621,5.684,3.79,5.272,5.485,4.813,20.703,5.285,4.398,4.336,4.552,1.522,1.623,1.374,2.957,2.959,1.505,1.401,3.028,3.544,0.352,1.398,1.721,1.567,1.512,1.476,1.49,1.475,1.486,2.42,2.472,1.715,1.724,3.426,1.535,1.537,1.475,1.532,2.738,2.8,3.343,0.362,2.523,0.357,2.203,0.331,1.665,0.217,2.157,2.234,2.269,2.204,0.917,1.366,0.719,1.786,2.301,2.332,2.151,2.342,2.405,0.885,1.573,2.321,3.975,4.143,0.207,2.025,0.906,3.122,3.174,2.328,3.928,1.225,1.409,1.5,0.719,1.456,2.029,2.063,1.694,26.719,1.629,1.798,1.057,0.699,2.099,1.788,0.883,0.677,2.438,0.907,1.461,1.231,1.4,1.318,1.684,2.098,2.947,2.174,1.623,1.523,1.552,1.062,1.521,1.54,1.346,1.674,1.504,1.467,0.056,1.271,1.069,1.142,2.091,2.093,5.7,4.45,2.124,2.244,2.004,2.953,2.107,1.585,1.63,2.942,8.14,3.481,3.218,2.91,3.453,2.502,2.752,2.288,1.622,3.44,4.98,4.339,1.96,1.874,1.446,2.097,4.123,2.699,2.927,5.863,2.458,1.436,1.528,1.476,1.732,1.729,1.739,1.536,2.684,1.617,3.101,1.721,1.671,1.614,0.989,1.239,1.352,0.248,1.625,1.895,2.386,2.947,0.805,1.579,1.592,2.192,2.298,1.045,1.548,1.288,1.757,1.552,2.047,3.724,3.015,2.333,2.92,1.098,1.191,1.842,1.218,0.753,0.612,1.029,1.3,2.309,1.026,1.346,1.336,1.109,1.183,0.718,0.444,0.72,0.477,5.035,1.46,1.564,0.308,1.235,1.545,3.467,1.176,1.122,1.375,1.135,1.314,1.456,1.036,1.516,1.448,4.555,1.654,1.545,0.886,1.244,1.086,0.561,1.173,1.19,1.178,0.965,2.679,5.105,3.659,1.781,2.525,2.079,1.811,2.526,1.107,0.39,0.793,1.7,1.006,1.132,1.347,1.199,1.029,1.898,1.158,1.23,1.077,1.282,1.621,1.426,1.144,1.122,2.477,1.084,1.593,1.674,1.859,2.046,1.473,1.565,1.739,1.898,1.773,1.12,0.99,1.287,1.098,1.14,1.056,1.181,1.605,0.987,0.94,0.93,1.25,1.008,0.975,1.691,1.106,1.401,1.462,1.137,1.152,1.587,2.074,6.607,2.004,1.881,1.166,1.79,2.21,1.792,2.248,1.255,1.526,2.514,2.28,1.913,3.384,6.725,3.882,3.887,2.373,1.922,2.125,1.332,0.566,0.843,2.409,1.787,1.726,1.255,1.512,1.402,1.526,2.11,1.605,1.665,3.339,3.311,3.417,2.254,2.368,2.128,0.886,1.045,1.291,1.458,1.929,3.164,2.64,2.703,2.56,2.935,2.078,4.348,3.462,2.884,1.697,2.048,1.438,2.073,3.274,64.069,7.635,7.484,3.345,2.799,2.294,3.783,3.574,1.897,3.307,2.008,2.252,1.901,2.16,8.564,1.846,1.712,1.416,1.541,1.125,1.782,2.557,0.832,1.45,1.314,1.313,1.172,0.734,1.904,1.813,3.807,2.558,2.788,2.39,2.367,1.765,1.965,1.532,1.702,2.243,2.492,2.624,2.208,1.021,1.14,2.048,2.662,1.994,0.999,2.983,3.412,0.063,0.547,11.377,5.333,5.406,4.559,4.989,8.868,7.033,7.137,3.312,1.845,2.384,1.597,1.533,3.134,1.866,1.892,1.775,1.729,3.362,0.069,1.503,2.586,0.992,3.058,2.242,2.279,1.504,1.613,2.232,1.51,1.512,1.449,3.008,2.175,1.284,1.403,2.633,1.773,1.735,6.872,2.869,3.269,3.915,3.408,0.233,5.977,3.642,3.03,5.045,3.275,3.253,4.18,4.824,3.311,3.486,3.143,3.191,3.421,2.384,2.753,3.012,2.65,4.224,5.09,4.022,6.822,2.321,2.297,2.502,2.601,2.37,1.396,2.173,2.575,2.218,3.781,4.156,4.734,3.289,7.119,5.842,0.82,0.922,7.82,4.028,2.255,1.375,1.997,1.02,0.33,1.25,1.538,1.699,1.726,1.848,1.608,1.852,8.393,2.328,1.346,5.352,2.18,3.69,1.985,1.63,1.444,1.304,1.034,1.624,0.845,1.086,1.534,1.922,1.215,0.622,1.175,1.243,0.974,0.838,1.051,0.269,0.556,0.947,1.216,1.124,0.992,0.805,0.932,1.135,0.959,0.811,0.675,0.815,1.128,1.25,0.756,0.941,0.744,0.76,0.805,0.777,0.691,0.788,1.186,1.783,0.854,0.767,0.786,0.754,0.813,1.041,1,3.803,3.624,1.69,1.937,4.454,6.57,8.469,2.499,1.484,4.671,4.555,3.214,3.353,4.523,4.643,3.44,1.889,1.031,2.03,3.204,0.656,1.722,1.957,4.147,4.043,5.088,4.858,0.747,2.488,4.015,8.649,0.992,1.778,1.521,1.4,1.081,2.029,5.277,1.804,0.8,1.018,1.287,1.468,4.075,1.413,1.612,1.973,2.08,4.006,6.579,9.692,3.059,0.841,1.96,2.343,3.132,2.468,1.467,1.656,2.564,2.633,2.508,2.274,2.877,0.539,3.612,1.845,2.455,2.406,2.611,2.06,2.501,2.083,1.789,2.298,2.213,2.004,3.295,2.053,5.765,3.397,3.51,2.951,2.872,2.783,2.636,2.647,2.801,2.868,2.894,2,2.285,3.957,2.336,2.296,2.798,3.566,2.881,1.779,1.653,3.012,0.203,6.434,4.434,2.218,0.961,1.707,2.056,2.254,6.124,1.745,5.819,2.498,2.279,1.255,1.139,2.342,2.105,2.272,2.022,1.651,1.622,1.565,1.99,2.289,2.398,2.197,1.734,1.843,1.602,1.335,1.781,1.649,2.863,1.818,2.645,1.667,1.299,2.422,1.381,1.581,1.671,1.796,2.07,2.363,2.94,3.716,2.047,2.499,1.152,1.666,1.252,1.685,1.244,1.629,1.924,2.096,1.79,1.852,2.532,2.64,2.33,3.149,2.236,3.16,3.519,3.133,3.196,3.243,3.268,3.003,2.944,1.776,2.956,0.609,6.482,6.267,7.33,6.46,9.095,4.597,17.341,14.538,17.862,0.825,3.634,5.812,4.689,1.633,0.2,1.885,1.691,3.441,3.228,4.471,1.476,1.658,1.928,1.979,1.369,1.505,3.16,5.021,5.882,2.251,2.369,6.623,7.63,3.547,3.315,3.366,2.547,1.573,1.492,1.96,2.468,0.259,2.322,2.107,1.859,2.562,2.654,5.159,5.143,6.284,2.961,1.331,1.688,4.983,2.092,4.798,3.876,3.29,3.329,1.514,1.289,2.634,5.796,3.422,3.469,3.637,3.523,7.254,7.71,2.492,13.675,5.112,3.637,1.7,2.891,0.251,3.05,1.824,3.009,0.633,1.069,1.942,2.223,1.289,2.976,1.462,1.697,1.795,1.814,2.679,1.283,1.099,1.197,1.887,2.52,2.469,2.509,2.43,2.974,2.539,2.76,2.905,2.311,2.602,3.013,4.692,1.102,4.764,3.831,3.866,7.824,10.238,1.109,14.327,7.256,3.45,3.752,3.458,2.631,2.679,1.924,1.694,1.808,2.063,2.226,2.041,2.247,2.952,1.347,1.527,1.725,1.883,3.951,2.007,2.402,2.335,3.174,2.253,2.252,1.822,1.741,1.186,1.104,2.708,1.585,0.923,2.757,6.062,3.992,6.91,2.173,1.037,0.979,0.706,0.733,1.147,1.101,0.978,0.983,0.617,0.742,1.034,0.732,1.095,1.305,0.895,0.834,1.393,1.563,1.723,1.378,1.335,1.212,1.088,1.034,1.23,1.206,0.722,0.601,0.606,0.706,1.167,0.559,0.682,0.968,1.004,1.126,0.663,1.317,2.148,6.361,3.374,1.512,1.204,1.107,1.068,1.325,1.429,1.285,1.433,0.844,1.039,1.4,1.243,0.7,0.664,1.087,1.173,2.135,2.022,0.499,3.323,3.428,1.872,2.039,1.92,1.967,1.254,1.425,1.371,1.314,1.617,1.207,0.988,2.531,2.812,2.007,2.343,1.947,2.119,1.744,1.556,1.796,1.747,1.409,2.739,0.742,4.711,2.486,2.211,2.684,2.532,2.035,2.491,2.367,1.537,2.019,1.627,2.4,2.304,2.5,2.094,2.34,2.269,1.404,1.481,1.732,1.474,1.982,4.634,4.496,2.202,2.173,3.296,2.74,2.24,2.15,2.731,2.011,2.437,2.287,1.394,1.882,1.875,2.116,1.414,0.608,2.273,2.324,1.359,1.221,1.83,2.185,2.92,3.364,2.117,4.723,3.567,2.016,4.625,4.061,4.299,0.805,0.484,3.499,4.335,1.967,4.491,2.662,5,3.499,4.984,4.141,3.44,3.172,4.116,6.059,4.586,3.513,3.96,3.782,2.039,0.41,1.414,3.107,3.306,3.241,2.672,2.566,1.21,0.418,0.241,2.197,1.868,1.64,1.571,1.665,2.023,1.623,1.699,2.201,2.433,2.605,2.413,0.93,0.788,1.817,1.691,5.5,3.573,5.951,3.761,3.892,4.07,4.041,4.526,5.492,5.829,5.522,4.693,4.44,4.542,4.471,4.38,3.639,4.693,4.145,3.895,4.075,0.187,3.659,4.103,2.824,2.962,3.433,3.416,3.082,3.706,2.23,0.7,2.747,3.458,2.635,2.818,2.953,2.994,2.386,3.041,2.627,2.226,1.927,1.766,1.731,1.874,2.575,2.651,2.187,2.508,2.173,2.681,2.762,2.768,2.405,2.078,1.496,1.593,1.689,2.457,1.265,1.369,0.961,1.432,1.709,1.748,1.643,1.076,1.334,1.502,1.68,1.667,1.98,1.785,2.074,2.662,2.222,2.573,2.365,2.189,2.669,2.715,2.79,2.583,2.532,2.55,2.478,2.473,2.796,2.326,3.15,2.279,2.406,1.771,2.019,2.209,2.294,3.097,2.741,1.589,1.234,0.43,1.077,0.994,1.653,2.109,1.86,1.87,2.132,2.482,2.43,2.122,1.894,1.736,2.34,2.25,1.411,1.954,1.842,2.356,2.164,1.032,0.792,2.285,2.187,2.092,2.295,1.19,1.23,3.059,2.713,2.353,1.739,1.746,1.889,2.255,2.064,0.977,1.126,1.862,1.718,1.778,2.405,2.194,1.322,1.992,0.547,1.991,1.878,1.835,1.355,1.638,2.674,2.997,2.619,4.318,9.031,1.244,1.265,1.6,1.748,2.173,2.004,3.274,2.094,2.116,2.089,2.364,1.905,1.596,2.092,2.498,2.519,1.921,2.544,5.438,3.198,1.79,1.878,2.49,0.589,1.685,2.188,1.926,2.188,1.884,1.951,2.308,1.48,1.601,0.758,1.22,1.1,0.516,1.537,1.306,1.944,1.523,1.634,2.111,1.383,1.815,1.975,2.03,1.053,1.06,2.153,1.866,1.948,1.586,2.133,1.726,2.279,0.971,1.543,2.186,1.481,2.45,2.303,2.086,1.063,1.864,2.405,2.803,0.619,2.32,1.332,1.336,1.709,1.947,4.181,3.16,2.118,0.758,1.381,0.589,1.925,0.93,1.243,1.228,1.291,1.154,1.048,2.329,3.06,0.718,2.1,0.93,1.273,1.108,1.529,2.458,0.36,1.239,0.816,1.454,1.384,1.63,3.324,2.285,1.197,0.784,1.813,0.701,1.298,1.168,1.496,1.544,1.384,1.678,2.024,1.243,1.331,1.142,0.946,2.403,3.099,2.559,3.611,3.054,0.969,1.935,2.273,0.91,3.103,2.033,2.045,4.601,2.786,3.468,2.759,2.49,1.814,2.434,0.649,1.625,2.134,1.127,1.073,2.453,1.793,1.19,2.356,2.083,1.165,1.779,0.93,1.261,1.805,1.592,1.598,1.922,3.614,2.941,2.76,2.502,2.325,1.652,1.831,2.213,2.452,2.316,4.393,2.584,1.704,1.322,1.68,1.391,1.824,1.526,1.962,1.193,1.466,1.672,1.746,1.622,1.684,2.201,2.457,2.121,2.267,1.701,1.934,1.507,1.37,1.694,1.613,1.937,1.917,2.397,1.838,1.688,1.614,1.522,1.825,1.774,1.139,1.155,1.427,1.634,2.119,2.361,3.069,2.087,1.972,1.646,1.273,0.998,1.353,2.133,1.438,2.022,2.115,1.228,0.579,0.775,1.171,1.727,0.898,1.503,1.504,1.827,1.674,1.59,2.298,2.336,1.867,1.42,2.017,1.106,1.391,1.385,1.513,1.908,1.764,1.795,1.851,2.002,2.853,3.196,2.665,2.513,1.771,2.479,3.461,4.388,3.414,4.629,3.517,2.751,2.999,2.268,1.973,2.836,2.032,2.03,2.05,2.888,2.475,1.872,2.756,2.549,3.134,2.515,2.128,3.486,2.207,1.994,1.8,3.028,3.232,3.509,3.695,3.074,3.137,1.784,2.037,3.535,11.572,7.285,2.552,3.165,3.477,1.799,2.112,1.948,2.78,2.723,2.058,2.157,2.895,3.207,2.696,2.6,2.858,2.761,4.005,3.439,4.281,3.936,2.51,2.205,2.005,2.385,1.147,1.507,3.272,1.96,2.882,3.049,0.549,3.498,4.09,4.212,3.111,3.813,1.82,2.676,2.948,2.271,1.982,2.579,2.596,2.759,3.197,1.515,2.465,2.92,2.25,3.036,2.892,2.535,4.235,3.098,2.916,2.698,3.81,3.743,2.802,2.64,1.876,3.548,1.403,2.766,1.866,1.469,2.026,3.552,3.173,4.716,1.184,1.541,1.498,1.469,1.027,0.515,0.601,1.243,1.549,1.557,1.52,1.791,1.712,1.498,1.246,2.893,3.187,0.984,3.156,1.793,2.438,1.864,1.891,2.365,0.975,1.628,1.63,1.581,2.009,2.13,1.538,1.35,0.947,1.372,1.385,2.144,2.007,1.762,1.539,1.098,1.29,2.629,1.947,2.064,2.106,1.462,2.146,1.574,4.181,2.669,2.303,6.476,0.33,2.833,3.241,3.548,3.261,2.772,2.926,3.093,3.241,2.621,3.16,2.663,2.101,2.67,3.163,2.62,2.184,1.809,2.275,1.756,1.652,2.008,2.119,1.929,2.422,2.063,1.587,2.487,2.01,1.743,2.17,1.254,1.568,1.608,1.819,1.672,1.724,1.832,1.852,1.347,1.757,2.25,1.477,0.92,1.045,1.483,1.695,2.597,3.214,1.598,1.341,1.659,1.443,1.482,1.482,2.005,1.719,1.374,1.871,2.254,2.156,2.09,2.472,1.893,3.673,2.537,2.999,2.333,2.672,3.175,2.095,1.949,2.346,1.959,4.729,3.234,2.795,2.094,2.83,2.672,3.234,3.541,3.061,2.886,3.014,2.349,2.173,2.142,3.135,2.242,1.462,2.177,1.761,1.702,2.387,2.493,2.535,2.944,3.207,3.371,2.843,1.425,1.253,1.393,1.396,1.49,1.876,1.652,1.46,1.419,1.207,1.14,1.419,1.624,6.587,0.974,1.678,1.166,0.899,0.949,0.973,1.084,1.477,1.868,1.371,1.843,1.873,2.517,1.348,0.976,1.107,1.297,1.248,1.001,1.111,1.497,1.082,1.291,1.21,1.427,1.694,0.65,0.861,0.91,3.889,1.32,1.053,1.062,1.6,1.177,1.012,1.081,1.288,2.402,2.588,1.642,1.284,1.395,1.098,1.463,1.065,1.339,1.184,1.206,1.603,1.218,1.635,1.278,1.319,1,1.15,1.049,1.178,1.696,1.442,1.296,1.67,1.622,1.138,1.659,1.706,1.148,1.098,1.133,1.536,2.518,5.297,1.961,1.816,1.86,1.756,1.808,1.65,1.468,1.704,1.533,1.211,1.898,2.007,1.448,1.617,1.741,1.731,1.523,1.513,2.16,1.536,2.112,0.674,0.827,1.586,0.855,2.024,1.707,0.678,0.932,1.21,1.188,1.329,1.477,1.084,0.984,1.022,1.246,1.07,1.074,0.82,1.196,1.478,1.421,2.541,2.308,1.594,1.073,1.058,1.087,1.077,1.078,1.1,1.429,1.824,1.498,1.383,0.984,1.093,1.185,1.476,1.132,1.649,0.744,1.094,1.194,3.354,2.506,1.239,1.065,1.533,1.635,1.051,1.547,2.82,0.395,2.46,1.661,1.522,1.21,1.509,1.074,1.189,1.79,1.55,2.589,3.01,3.093,4.16,3.947,3.016,3.242,3.072,0.266,3.76,0.856,1.111,0.775,0.773,0.789,0.872,1.217,0.951,1.088,1.056,0.88,0.803,0.807,1.003,1.017,1.088,1.154,1.255,0.823,2.27,2.851,1.481,1.133,1.185,0.945,1.389,1.47,1.676,0.95,1.265,1.351,1.576,1.52,1.853,1.771,2.074,1.493,1.139,1.554,1.418,1.541,1.422,1.064,1.249,1.356,0.877,1.616,2.465,2.001,1.658,1.067,1.738,1.153,1.434,1.21,1.46,1.056,1.769,0.944,0.078,1.448,1.532,1.475,1.104,1.396,1.486,1.395,1.717,1.495,3.641,2.353,2.113,1.425,1.534,1.924,1.316,1.417,1.171,0.677,0.992,1.358,1.14,2.421,3.079,2.503,2.348,2.652,6.033,2.893,3.265,1.786,2.039,1.804,1.131,1.575,1.507,1.197,1.585,2.391,2.341,2.12,1.899,1.733,1.595,0.777,0.905,1.357,1.054,0.72,1.71,1.098,0.585,1.146,0.345,0.709,1.246,1.389,1.216,1.654,1.129,0.953,1.436,2.312,2.623,2.318,2.13,1.419,1.516,1.327,2.181,2.012,1.329,1.668,1.468,1.339,1.491,2.162,1.837,1.615,1.499,1.833,1.752,1.676,1.558,1.18,1.186,1.526,1.798,2.607,2.251,1.967,1.643,1.741,2.102,1.271,0.9,2.235,1.746,3.024,1.834,1.874,1.848,1.449,2.475,1.629,1.64,1.639,2.126,1.163,1.184,1.372,2.374,1.407,1.697,2.92,2.559,1.11,0.893,0.915,1.106,1.028,1.183,1.843,1.043,0.882,1.142,1.173,0.866,0.835,0.89,0.777,0.975,1.043,0.604,1.303,0.641,0.694,1.381,0.945,0.568,1.286,1.65,1.562,1.269,0.984,0.93,0.877,1.123,1.797,1.229,1.013,1.249,1.197,0.898,0.305,0.468,0.58,1.118,1.032,0.991,0.505,0.612,1.155,1.466,1.071,1.522,1.499,1.072,1.198,1.98,1.456,4.074,1.713,1.548,1.325,0.981,1.771,1.186,2.084,1.231,1.616,1.519,1.06,1.131,1.731,3.232,2.14,1.695,2.159,2.107,1.643,1.082,1.633,1.479,1.503,1.862,1.694,1.574,2.189,2.334,3.522,2.482,1.993,1.873,1.885,2.143,2.152,1.797,1.867,2.323,4.725,2.43,2.058,1.923,1.713,1.662,1.765,1.289,1.42,1.197,1.734,0.906,0.706,0.881,1.651,1.652,1.031,0.495,1.119,1.166,1.534,2.255,2.27,2.171,2.425,1.319,1.344,2.379,1.645,1.679,1.971,1.366,0.984,1.602,2.053,1.772,2.076,1.285,1.824,1.899,2.001,1.882,1.432,1.532,2.375,1.704,2.154,1.818,2.034,2.085,2.191,1.348,1.475,1.785,2.027,2.738,2.546,2.479,2.086,0.281,2,1.938,0.711,1.086,0.218,1.43,2.388,1.629,1.647,1.102,5.386,2.713,3.342,2.624,2.409,2.806,1.196,0.328,1.078,3.039,1.086,1.548,1.361,1.367,1.361,1.31,2.652,1.297,1.372,1.51,1.781,1.724,1.027,1.575,2.063,2.417,2.441,2.442,2.491,3.171,1.608,1.366,1.297,1.582,1.564,1.678,1.604,1.994,1.701,1.624,2.102,1.922,1.385,1.257,1.388,2.873,1.921,2.047,3.974,4.126,1.193,0.758,0.855,1.12,1.336,0.732,1.223,1.518,1.635,0.72,0.605,0.536,0.838,1.27,1.095,1.544,2.004,1.673,1.415,1.562,1.016,2.323,3.174,0.411,3.7,2.518,2.946,1.094,2.151,1.243,1.232,0.859,1.439,4.045,2.427,1.118,2.734,1.332,2.026,3.558,0.569,1.574,1.871,1.999,1.78,0.894,0.745,1.123,0.802,0.629,0.816,0.889,1.435,0.989,0.99,1.059,1.121,0.823,1.06,1.001,0.914,1.056,1.03,1.595,0.007,0.767,1.576,2.992,2.72,1.861,1.132,0.75,1.039,1.031,1.003,1.863,2.822,1.689,1.982,0.969,1.422,2.215,0.935,1.385,1.643,3.106,1.147,1.147,1.339,0.422,1.79,1.582,1.694,1.7,1.562,1.422,1.85,1.044,0.843,0.845,1.998,4.027,0.779,1.557,1.241,1.451,1.64,2.332,1.205,1.912,2.259,3.602,0.256,3.749,2.94,3.673,1.367,2.558,3.028,3.014,1.969,2.562,2.906,2.551,3.847,3.248,4.022,5.311,1.031,1.818,3.917,3.45,1.894,2.254,2.862,2.759,2.691,2.787,5.816,0.945,3.674,1.586,4.668,5.002,3.695,1.1,2.191,4.039,3.842,5.453,5.248,1.58,2.991,2.663,5.744,6.236,4.504,2.531,2.505,4.472,2.169,2.164,2.21,1.637,2.236,1.624,2.442,1.979,2.217,1.648,2.46,1.306,3.326,3.752,4.013,2.474,2.31,2.777,1.525,1.023,1.125,1.221,1.402,1.376,1.113,1.57,1.99,1.894,3.22,2.227,5.083,1.972,1.692,4.66,2.894,8.348,2.356,1.47,4.057,3.165,2.37,2.358,2.282,2.377,4.572,2.228,2.365,2.468,2.764,0.394,0.518,1.685,3.443,1.109,0.842,0.66,0.879,1.057,1.147,1.17,1.082,0.87,0.73,0.906,1.249,0.991,1.061,0.888,0.948,0.496,0.513,0.775,0.746,0.986,1.159,1.105,1.104,0.989,1.245,1.3,0.794,0.806,0.935,1.154,1.054,1.199,1.041,1.985,1.141,1.422,2.256,0.876,0.98,0.713,0.799,0.461,0.697,0.705,0.755,0.995,1.238,0.797,1.031,1.15,1.27,0.929,0.815,0.254,0.909,0.965,2.373,0.835,1.016,1.188,1.043,0.87,1.393,0.954,0.798,1.178,1.484,1.744,2.239,0.828,4.813,2.307,3.281,1.509,0.993,1.771,4.011,8.337,3.569,3.561,8.962,0.072,14.048,11.482,4.486,4.342,0.328,18.539,4.831,2.028,1.149,2.732,4.752,2.696,0.081,4.388,2.41,2.312,1.797,1.603,3.642,1.465,2.272,3.86,0.76,1.265,1.53,1.504,2.05,2.399,3.347,3.437,2.48,3.052,2.042,2.531,1.055,1.536,1.722,1.159,1.862,1.44,1.091,1.133,1.146,1.138,1.058,1.109,1.151,1.309,2.585,1.107,1.72,1.618,1.179,1.155,1.089,1.1,1.136,1.45,1.8,1.286,1.056,1.071,1.177,1.676,1.752,1.601,1.159,1.574,1.891,2.17,1.12,3.953,5.061,1.7,2.013,1.911,2.049,2.221,2.109,2.138,5.817,3,3.231,3.414,5.182,3.392,2.742,2.889,4.966,1.961,2.461,1.22,0.579,0.914,0.783,1.143,1.407,1.195,1.021,1.26,1.6,1.661,1.147,2.208,1.131,1.137,1.293,1.234,1.453,2.134,1.652,0.819,0.934,1.029,1.234,1.555,1.379,0.928,1.016,1.743,1.545,1.155,1.043,1.195,1.063,1.1,1.648,1.673,1.118,1.64,1.107,1.148,1.199,1.425,1.25,1.657,1.674,2.67,1.718,1.129,2.177,1.139,1.129,1.104,1.12,1.623,1.177,0.978,1.212,1.579,1.592,1.682,8.493,0.975,2.049,3.901,4.644,3.832,5.603,3.394,1.832,2.157,1.888,1.175,2.339,3.219,1.413,2.546,1.854,2.639,2.492,2.681,3.674,2.16,1.642,1.706,2.713,2.176,5.043,3.327,3.948,2.726,2.172,3.01,3.215,3.013,5.368,2.718,2.821,1.237,2.626,2.9,2.204,1.751,3.577,1.921,5.606,10.516,2.16,1.292,2.214,2.225,2.164,1.67,1.687,2.787,2.211,5.043,2.827,3.885,1.77,2.943,3.785,1.755,1.369,1.729,0.953,0.66,1.64,0.775,0.962,1.064,0.538,0.548,0.565,0.527,1.218,0.936,1.226,0.546,1.414,1.897,0.759,1.377,1.175,0.952,0.662,1.638,1.093,1.149,1.649,2.744,1.578,1.638,1.692,1.674,1.434,0.743,1.083,1.144,1.067,0.918,0.723,1.052,1.108,1.7,2.164,2.177,1.599,1.145,2.182,2.698,2.745,12.529,1.692,1.41,1.401,1.66,2.243,2.692,1.709,1.778,0.984,2.207,2.236,2.197,6.536,3.22,3.037,3.361,2.182,2.469,3.613,2.434,2.516,3.105,5.515,3.08,3.378,4.429,2.841,4.081,2.997,3.129,2.367,1.779,1.415,2.417,1.308,1.712,1.894,2.464,2.119,2.947,2.337,1.821,3.044,2.908,2.756,0.299,1.824,3.097,3.825,4.781,3.219,4.962,1.871,1.747,2.48,3.119,2.032,2.154,1.896,1.909,1.739,2.779,2.192,1.599,1.314,1.34,2.026,0.957,1.652,1.16,1.533,2.175,2.762,1.958,1.111,0.726,1.28,1.215,1.212,1.153,1.603,1.814,1.421,1.183,0.982,1.614,1.304,1.428,1.593,1.031,1.106,1.114,1.09,1.633,1.022,1.104,1.579,1.674,2.078,1.568,1.641,1.627,1.031,1.098,1.046,1.125,1.034,1.088,1.385,1.454,0.719,2.625,2.7,2.065,0.43,0.793,1.284,1.22,1.224,1.259,1.304,1.859,2.596,3.067,2.62,6.77,1.908,1.844,1.217,1.305,1.228,1.25,1.226,1.294,1.235,1.291,1.187,1.369,1.174,1.398,1.368,1.37,1.457,1.88,2.759,1.684,1.044,0.759,1.372,1.275,1.448,2.057,1.347,2.019,2.063,2.606,2.273,0.446,1.289,1.193,1.116,1.264,1.311,1.279,1.214,0.863,1.402,1.337,1.307,1.383,1.397,1.362,0.936,1.114,1.356,1.253,1.381,1.903,1.431,1.259,1.407,2.677,2.715,2.703,2.695,1.451,1.345,1.975,1.406,1.98,1.361,1.389,1.548,2.123,1.839,2.133,3.845,4.676,2.769,2.671,2.648,3.458,2.05,1.33,1.999,2.028,4.085,3.502,3.948,4.831,4.394,5.512,3.068,3.397,4.039,3.37,2.693,2.77,6.077,2.769,2.677,4.692,4.116,2.653,2.149,2.257,3.143,3.322,3.775,1.034,3.406,4.529,2.05,0.906,1.225,0.824,1.252,0.94,1.155,1.344,1.618,1.008,1.057,1.076,0.858,0.9,1.103,1.338,1.401,1.316,2.077,0.841,2.795,1.448,2.127,2.102,1.604,1.023,1.158,1.122,1.125,1.065,0.789,1.28,0.836,1.082,1.119,0.978,1.303,1.195,1.131,1.445,1.254,1.179,1.229,1.246,1.234,1.177,1.157,0.864,1.202,1.055,1.238,1.003,0.86,0.637,1.049,0.722,0.564,0.612,1.108,1.146,1.404,1.834,1.223,1.192,0.674,0.554,0.721,1.352,0.999,1.221,1.237,1.236,1.187,1.293,1.22,1.79,1.221,1.305,1.161,1.805,2.99,2.64,3.28,2.819,2.196,2.312,2.446,2.492,2.154,2.765,2.52,2.968,3.209,3.364,3.563,2.876,3.436,1.835,1.188,0.265,5.797,3.036,5.688,4.218,0.922,0.987,1.152,1.263,1.193,1.251,1.165,1.118,1.206,1.869,1.22,1.203,1.248,1.126,1.187,1.268,1.793,1.195,1.007,0.819,1.133,0.908,1.019,1.234,1.133,0.995,0.6,0.251,0.632,1.082,1.723,0.726,0.693,1.163,1.197,1.16,1.192,1.203,1.193,1.482,2.788,1.719,4.046,4.203,2.44,3.279,2.02,2.721,1.69,0.701,1.374,0.78,1.024,1.695,1.525,1.101,1.116,1.256,1.796,1.539,2.615,2.043,1.856,1.787,1.265,1.253,1.224,0.915,0.563,0.734,1.572,1.24,1.214,1.432,2.331,2.08,2.212,2.249,2.264,2.866,2.323,0.02,2.103,1.726,2.2,2.499,3.196,3.486,2.405,2.354,7.699,2.214,1.073,1.856,2.683,2.23,2.121,1.197,1.095,0.898,1.169,1.057,1.228,1.151,3.121,3.225,2.746,3.06,1.792,1.777,1.815,1.228,1.131,1.185,1.041,1.032,1.11,1.112,1.174,1.364,2.318,3.336,7.03,2.188,2.376,2.467,1.79,1.185,1.265,1.066,1.276,1.305,1.164,1.229,1.012,1.35,1.403,1.067,2.413,1.875,3.586,2.512,1.707,1.747,1.877,1.839,1.773,1.089,1.067,0.962,1.114,1.206,1.867,1.741,1.785,1.447,1.572,1.744,1.811,1.746,1.178,0.987,1.369,1.174,1.258,1.163,1.158,1.223,1.169,1.1,0.742,1.272,0.802,0.909,1.162,1.002,2.932,3.952,4.159,2.914,3.624,3.867,3.91,1.477,0.914,0.894,3.636,2.77,1.892,1.671,1.23,1.203,1.252,1.232,1.106,1.482,1.199,3.39,3.632,3.306,3.599,3.64,3.33,3.327,3.17,3.056,2.056,4.948,3.493,0.103,3.816,2.049,5.203,3.804,2.447,2.43,2.358,2.492,1.78,1.21,1.356,1.138,1.29,1.142,1.83,1.793,0.555,0.241,1.633,1.282,0.729,1.099,3.353,2.092,3.006,2.519,1.357,1.597,4.403,4.539,9.117,0.609,0.375,1.077,1.276,1.236,1.243,1.308,1.262,1.1,1.313,1.78,1.286,2.39,2.603,2.408,1.825,1.825,1.868,1.322,1.167,1.249,1.81,1.803,2.205,3.144,3.312,2.69,1.846,2.951,1.841,2.048,1.594,2.343,2.089,1.57,1.749,2.932,1.977,1.977,2.088,2.375,1.861,1.539,1.646,1.078,1.891,1.76,1.276,1.317,1.981,1.782,1.515,1.943,2.183,1.735,2.616,2.935,2.359,1.922,3.048,3.139,2.944,5.613,1.876,2.125,5.931,6.942,2.677,1.808,1.874,1.144,0.586,0.437,1.055,1.392,2.059,2.338,3.318,2.243,2.316,2.571,4.172,3.146,2.57,2.677,2.472,2.125,2.487,2.731,2.618,2.677,2.598,3.136,2.471,2.592,2.953,2.731,2.556,3.212,2.064,1.969,2.625,3.445,3.624,1.852,2.303,3.115,2.813,3.265,2.85,0.195,3.017,3.588,4.898,3.672,2.965,3,2.697,3.028,3.397,3.902,0.524,1.466,1.157,1.978,1.729,2.015,1.094,1.638,1.227,1.961,2.368,1.016,1.724,1.257,2.073,1.328,1.625,1.724,1.652,1.496,1.996,1.987,1.29,2.237,2.329,1.554,2.895,2.791,1.692,1.609,1.215,0.543,0.909,1.324,1.639,1.479,1.386,1.747,1.579,1.269,1.52,1.386,1.708,1.648,1.175,1.493,1.283,1.392,1.401,1.677,1.148,1.175,1.381,2.119,0.586,1.648,1.599,1.729,1.701,1.925,2.648,1.448,1.568,2.104,2.293,2.217,2.189,2.127,1.203,1.872,1.017,0.799,0.61,1.899,4.31,2.575,4.791,2.934,1.79,1.731,3.13,2.24,2.182,2.051,1.968,2.228,2.128,3.362,1.853,1.852,1.684,1.671,1.89,1.84,3.176,2.988,1.546,1.464,2.607,1.702,2.633,2.266,2.204,2.153,2.33,0.766,2.542,2.754,1.762,1.751,1.85,2.483,1.971,1.601,2.25,1.419,1.873,2.161,0.969,1.207,1.705,1.965,1.33,1.583,1.743,1.592,1.648,2.178,1.615,2.169,2.152,2.213,2.722,3.133,2.282,3.299,2.265,2.687,2.247,3.326,3.699,2.637,3.313,3.387,4.318,3.875,3.865,2.07,1.994,1.895,1.65,1.523,1.825,2.161,1.668,1.836,2.534,2.287,3.141,2.182,1.674,1.575,0.672,0.664,0.748,3.2,2.283,1.269,1.327,1.176,1.046,1.074,1.181,1.639,1.196,2.046,1.031,2.829,0.987,1.833,1.75,0.328,0.247,0.751,1.809,1.491,1.309,1.139,2.591,1.601,2.183,2.806,1.297,0.971,1.646,1.222,1.067,1.133,1.162,1.6,1.249,1.369,1.486,1.123,1.17,1.097,1.154,1.135,1.123,1.733,1.656,1.729,1.725,1.714,1.667,1.723,1.736,1.129,1.145,1.552,0.746,1.103,1.103,1.031,0.682,1.664,1.133,1.157,0.86,1.401,1.461,1.291,1.14,1.676,1.763,1.701,1.603,1.14,0.797,0.33,1.639,0.867,1.268,2.378,2.753,2.321,2.249,2.733,0.299,2.646,3.526,2.706,3.675,4.025,2.64,0.694,1.022,1.512,2.626,2.207,2.351,2.47,0.952,0.477,1.324,3.007,0.046,2.166,3.362,1.788,1.161,1.295,1.226,1.107,1.092,1.207,1.164,1.873,2,3.299,3.168,2.384,2.674,1.174,1.041,1.144,0.869,0.898,1.079,1.751,2.27,1.77,0.848,0.744,0.659,0.701,0.031,0.269,0.775,0.9,0.73,1.089,1.329,0.783,0.884,3.078,0.281,1.354,1.132,0.999,0.942,1.063,0.725,0.789,1.018,0.994,0.963,1.381,1.254,1.723,1.173,1.096,0.359,0.031,0.823,1.283,2.09,0.531,1.816,1.865,3.927,1.853,2.259,3.008,2.712,1.679,2.486,2.497,1.078,1.196,1.177,1.051,1.139,1.145,1.245,1.048,1.172,1.686,1.163,1.109,1.145,1.181,1.123,1.143,1.11,1.18,1.348,1.031,0.441,1.141,1.731,1.14,1.153,1.199,1.15,1.128,1.166,1.065,0.336,1.014,1.04,1.114,1.23,1.045,1.688,1.228,1.677,1.175,2.301,2.862,2.238,2.857,2.308,2.823,3.406,2.912,3.919,2.313,2.264,1.762,1.034,0.859,1.475,2.876,1.69,1.7,1.148,1.161,1.122,1.094,0.477,0.689,0.694,0.189,0.819,1.072,0.566,0.601,0.519,0.794,0.503,0.695,1.024,1.694,1.755,1.179,1.123,1.089,0.912,0.924,1.094,1.28,1.14,1.134,1.16,1.18,1.162,1.125,1.705,2.448,1.672,1.149,1.104,1.201,1.157,2.431,1.841,2.66,2.294,2.407,2.834,2.291,3.553,2.89,3.388,4.4,2.012,3.843,3.876,4.56,3.321,2.029,2.477,1.946,2.533,2.203,3.619,3.393,4.637,2.228,0.162,3.67,5.199,2.264,1.549,3.096,3.006,2.504,3.096,3.026,3.516,2.442,2.629,4.033,3.257,1.89,3.331,1.968,2.895,2.126,2.554,1.371,1.109,1.071,1.073,1.546,2.542,2.363,3.357,3.067,2.539,2.393,2.214,1.839,2.088,1.671,3.664,1.85,1.949,1.585,2.048,2.009,1.502,3.148,8.282,3.574,2.41,1.378,1.418,2.62,1.947,3.076,2.755,3.422,3.752,3.373,2.995,3.361,3.277,5.239,3.784,4.591,4.354,4.26,3.695,4.034,4.901,3.918,1.401,1.616,0.844,1.453,1.131,1.482,1.36,2.3,2.174,2.71,5.338,4.672,3.374,3.055,3.488,2.765,3.476,3.023,1.961,0.539,1.467,4.15,4.421,3.098,5.154,2.776,3.638,3.588,0.033,3.069,4.81,2.454,2.685,3.221,4.906,3.865,3.627,4.578,3.9,3.593,2.588,1.151,0.414,3.812,2.737,2.186,2.476,1.355,1.365,1.245,1.501,1.003,1.907,1.14,7.845,4.101,3.749,4.387,5.991,1.973,4.479,5.615,3.426,6.25,5.422,3.154,3.298,2.813,1.906,1.42,0.305,1.842,1.181,10.789,3.143,1.965,2.687,2.573,1.803,4.363,2.327,2.91,4.032,2.328,3.823,3.324,2.665,3.381,0.234,0.29,3.679,1.817,1.044,1.822,2.752,2.862,2.578,5.269,1.562,0.39,1.776,1.652,1.628,1.315,1.624,1.244,1.138,1.161,1.211,2.912,3.152,3.296,2.923,2.361,1.764,1.769,1.669,0.748,0.874,1.329,1.114,1.429,1.657,2.066,2.51,2.526,4.371,3.916,4.15,2.46,2.596,6.122,1.566,3.771,5.361,0.564,1.119,3.038,5.122,3.966,3.891,4.802,0.206,0.703,1.819,0.703,3.024,1.71,3.813,2.633,4.602,1.952,1.748,1.635,1.347,1.702,1.325,0.623,0.99,1.67,1.786,1.68,1.833,0.451,1.161,1.802,1.759,1.369,1.442,1.561,1.419,1.765,2.694,2.43,1.798,2.304,2.274,2.451,2.527,2.156,1.499,2.77,1.727,1.488,2.583,2.046,2.96,2.81,3.159,2.004,2.69,3.144,2.419,1.659,2.639,2.702,2.176,2.126,0.641,0.421,1.134,1.985,2.592,2.216,1.446,1.674,1.289,1.487,1.489,1.335,1.727,1.055,2.813,2.242,1.578,1.625,8.391,3.826,1.229,3.964,3.788,4.899,2.211,2.26,2.004,2.061,2.431,2.247,2.605,2.475,1.426,0.068,2.192,2.37,1.086,1.137,1.85,1.695,1.958,2.031,1.617,1.585,1.67,1.79,1.297,1.259,2.883,2.94,1.574,1.471,2.209,2.715,1.61,1.558,1.663,1.6,1.398,1.36,1.626,1.534,1.229,1.257,1.393,1.48,2.567,1.846,1.784,4.513,2.282,2.238,0.576,0.867,0.493,2.381,1.491,1.295,1.895,1.653,2.192,2.228,0.342,3.703,0.859,1.878,1.607,5.109,2.93,4.199,1.832,1.664,2.208,1.149,1.827,1.081,0.313,0.723,0.668,0.817,1.151,0.976,1.361,0.063,1.298,1.61,3.047,1.868,1.947,1.038,1.082,2.077,0.712,1.213,1.811,1.338,2.497,1.878,1.82,1.156,1.93,2.652,1.56,0.231,0.425,1.318,0.632,1.672,0.806,0.404,2.818,0.901,1.956,2.6,1.289,2.257,0.762,0.684,2.304,3.34,1.906,1.54,3.071,0.323,1.398,1.14,2.776,2.179,1.281,0.946,3.462,3.847,7.26,2.35,0.19,1.601,1.613,2.01,1.157,1.398,1.378,1.082,1.745,1.398,1.194,3.694,4.172,2.41,0.256,1.665,5.311,4.509,2.726,1.422,1.289,2.516,1.188,0.343,1.072,1.263,2.123,3.221,0.937,0.881,1.954,1.697,1.952,1.709,1.73,3.03,3.157,3.548,1.66,1.738,1.767,1.833,3.064,2.157,1.895,4.135,1.806,1.408,4.589,8.416,10.579,3.251,4.827,2.919,3.082,3.283,4.446,7.379,7.283,8.481,8.835,0.75,2.557,3.366,3.959,4.017,0.602,1.889,1.694,1.698,4.863,2.991,3.062,2.079,2.37,2.818,2.887,1.5,0.266,1.832,1.578,2.125,2.004,1.727,1.107,0.953,1.264,1.414,0.666,0.648,1.451,2.252,2.298,2.481,1.299,1.404,1.177,1.233,1.568,2.084,2.237,5.732,5.092,3.088,1.613,2.408,1.494,1.845,1.738,1.386,3.161,4.598,2.362,2.264,2.079,1.949,1.322,1.375,2.401,2.574,2.707,0.433,10.071,1.971,2.007,3.978,2.171,4.783,4.907,9.763,8.678,8.468,6.492,5.564,13.247,4.93,0.563,0.3,4.831,10.395,3.366,3.947,7.416,10.299,5.039,5.219,9.661,5.092,4.629,20.01,1.266,11.687,0.523,1.049,17.365,5.03,5.032,7.435,7.467,3.086,3.368,3.891,2.429,14.414,2.582,9.218,9.171,13.034,0.14,13.78,32.735,0.709,2.703,2.086,0.382,8.321,3.069,6.274,2.085,15.286,7.784,7.235,3.049,2.97,2.915,2.868,8.301,8.198,15.088,6.876,0.325,4.304,0.945,2.889,7.372,5.034,2.333,1.297,2.04,8.638,4.284,4.324,2.694,2.681,2.498,2.578,3.15,1.699,1.59,1.565,1.425,1.915,1.677,1.543,1.372,6.381,0.025,7.922,4.091,3.272,2.695,2.761,1.439,1.512,2.327,2.308,4.6,3.481,2.301,2.341,3.536,2.382,2.41,2.416,3.585,2.461,2.084,1.5,6.274,2.495,3.09,2.897,1.278,1.27,1.462,1.394,0.461,1.237,1.324,1.156,2.018,1.474,1.315,2.608,1.992,2.389,5.994,4.332,3.362,0.085,1.776,1.154,1.299,0.796,0.742,0.788,0.524,1.33,1.646,1.602,1.609,2.017,3.053,3.996,1.945,4.951,4.532,5.988,0.898,1.696,3.835,0.703,2.133,4.967,2.666,2.489,1.551,2.347,1.584,1.427,1.426,1.706,0.502,1.115,1.41,1.543,1.192,2.022,1.814,2.187,1.751,2.376,4.835,6.075,4.021,4.097,5.233,3.461,1.93,3.053,0.986,0.8,1.05,3.023,2.504,0.843,3.298,7.109,0.753,4.288,4.436,8.099,15.967,32.383,6.337,6.736,13.403,1.335,2.152,3.882,7.214,11.106,0.883,4.13,5.789,5.037,2.991,2.096,1.436,0.602,2.067,1.928,1.376,1.834,4.014,0.97,1.877,2.47,1.318,1.777,1.993,2.509,2.113,1.082,1.617,1.413,3.815,3.361,2.433,1.601,1.701,3.068,2.616,2.805,1.89,2.482,2.188,1.469,2.636,1.387,1.374,2.267,1.7,1.429,2.999,0.007,3.377,3.965,3.755,9.765,9.789,6.258,6.281,13.714,18.277,1.094,6.566,12.644,4.786,5.243,3.096,8.254,2.993,4.923,1.492,4.391,4.143,2.934,5.36,3.297,2.453,2.185,2.282,3.171,2.161,2.37,2.439,2.411,5.166,4.589,5.528,5.511,4.981,4.757,3.673,3.659,3.636,3.478,3.588,3.25,6.497,6.123,6.377,9.78,10.751,0.472,10.821,2.07,5.593,8.939,3.304,3.351,2.751,3.421,3.196,3.509,2.26,1.34,2.582,1.474,1.852,0.379,3.647,2.918,3.208,7.072,7.203,3.186,2.962,2.012,2.373,2.894,2.526,2.742,2.667,3.489,3.174,2.528,3.647,3.056,3.08,4.096,4.429,3.871,3.557,4.065,4.826,1.768,2.604,1.918,2.193,3.769,3.97,3.509,3.343,6.173,6.622,13.152,6.059,2.586,2.214,1.743,2.526,2.022,1.318,1.529,2.992,2.058,2.068,1.123,2.755,2.9,1.281,1.412,2.976,2.619,2.617,2.793,2.246,3.082,3.407,2.82,2.353,3.793,2.607,2.03,1.754,2.097,2.116,2.489,3.01,2.305,2.139,2.318,2.65,2.024,3.334,3.852,6.785,4.918,5.234,1.739,1.846,2.135,1.793,1.068,1.411,2.345,1.495,1.922,5.128,3.799,3.62,1.336,3.36,2.06,2.473,3.318,1.795,1.947,4.7,5.46,4.593,4.904,8.92,17.982,9.778,10.322,19.052,7.182,7.069,5.125,5.438,5.137,5.828,3.579,3.587,10.389,5.414,3.767,4.543,4.395,5.339,3.622,3.457,6.924,13.259,2.594,2.889,3.974,4.067,2.472,2.971,4.942,5.548,4.534,6.345,4.876,5.002,4.091,3.322,1.764,3.865,5.89,16.309,4.25,3.846,3.258,0.542,4.083,3.648,4.017,2.95,3.893,3.285,3.075,3.221,4.03,6.919,10.698,8.287,5.807,4.4,2.942,5.667,3.981,4.864,4.18,2.727,2.92,2.64,3.812,4.116,8.783,16.256,28.421,8.504,5.843,6.414,6.832,7.136,4.949,8.871,8.518,5.909,4.373,3.436,3.4,5.705,2.703,3.388,3.602,2.453,3.231,3.198,3.02,1.32,4.775,4.683,8.447,2.16,3.292,4.779,4.771,4.509,3.163,2.946,3.125,1.475,1.941,1.97,1.046,2.825,1.442,2.347,2.655,2.376,2.223,1.39,1.387,2.046,2.203,3.903,2.998,2.853,5.75,3.795,6.061,5.032,11.183,8.2,8.432,7.266,2.58,1.039,1.215,4.06,1.712,1.724,2.971,2.232,3.168,1.952,1.995,1.663,3.225,2.369,3.062,2.501,3.293,5.022,5.404,3.99,2.869,2.357,2.809,0.244,1.901,2.037,2.577,2.538,1.758,2.043,4.121,3.56,3.159,1.905,0.617,1.335,1.611,1.883,2.944,4.82,5.068,2.232,2.644,3.366,1.106,1.335,3.075,2.172,1.942,2.548,1.939,1.894,1.922,1.816,1.665,2.07,1.938,1.647,2.456,2.354,2.21,2.347,2.681,2.396,2.694,2.509,2.38,2.295,2.997,2.832,3.935,4.043,4.025,3.569,4.671,2.647,2.383,3.271,2.189,4.067,4.048,2.848,3.113,6.791,4.167,4.725,2.231,2.556,3.505,2.337,2.327,4.004,2.174,2.057,4.472,6.351,3.458,2.547,2.492,2.591,2.643,2.626,2.524,2.225,2.93,1.638,1.729,2.248,1.816,2.076,2.17,2.671,2.058,1.92,3.27,2.729,0.055,3.191,3.31,4.566,4.945,4.808,3.043,2.264,2.492,4.5,2.381,2.672,2.228,3.123,4.897,4.004,5.008,4.754,5.027,5.805,5.739,3.661,3.216,2.794,1.475,2.664,2.118,2.11,2.841,2.86,2.315,1.86,4.947,4.748,1.985,1.884,1.574,1.881,2.964,2.568,2.299,3.521,2.663,2.491,3.213,2.118,2.287,4.315,2.085,2.399,3.126,5.911,5.931,4.26,4.374,2.944,2.808,2.489,1.757,3.023,2.797,1.623,1.815,1.435,1.67,1.59,0.416,2.116,1.847,2.795,2.379,1.723,1.624,1.866,2.289,3.035,2.294,2.096,2.22,4.253,8.884,4.906,4.69,3.601,3.549,3.483,3.047,0.27,2.281,2.512,3.206,2.582,2.493,4.169,3.927,5.165,4.472,5.81,4.44,2.812,2.306,2.297,3.076,1.448,1.566,3.144,3.109,1.996,2.174,3.379,1.718,1.607,1.835,1.616,1.625,1.641,2.111,2.22,2.339,2.649,3.03,2.17,3.644,5.827,5.631,5.213,4.724,2.695,2.5,2.438,1.873,2.02,1.792,1.851,1.649,2.38,2.002,2.138,1.656,1.653,3.67,3.033,1.524,2.808,2.714,2.672,1.712,2.321,3.994,5.45,4.297,1.117,3.972,2.593,2.3,2.214,2.04,3.057,1.838,1.908,3.305,1.776,3.012,7.14,3.84,3.988,3.934,3.704,3.803,3.241,3.247,2.458,2.307,2.469,2.113,2.204,2.361,2.572,3.779,3.706,4.181,4.155,3.068,3.261,2.895,3.946,4.026,2.518,2.344,2.258,1.975,2.913,3.449,4.927,0.828,6.098,3.027,3.115,5.23,3.872,3.245,3.579,3.954,3.555,6.233,6.044,6.782,5.458,5.253,3.31,4.664,3.98,1.023,4.104,3.878,5.33,3.017,2.769,3.465,2.698,3.573,3.372,2.505,5.377,6.301,8.696,15.1,7.705,4.485,3.531,4.776,3.162,1.879,1.626,1.628,1.497,3.247,3.226,3.72,5.55,5.206,8.077,3.278,2.684,3.914,13.416,3.746,3.596,0.898,2.106,2.193,3.372,3.91,8.366,3.009,1.957,2.883,2.687,2.208,1.628,1.43,8.141,1.016,0.805,1.117,3.572,3.509,3.348,1.913,2.157,2.076,9.691,5.18,5.684,2.831,3.352,2.636,0.609,1.946,2.656,3.108,1.91,2.128,2.037,3.215,0.561,1.852,1.816,4.238,3.144,2.876,3.497,2.637,3.199,3.198,1.697,5.691,4.054,2.607,2.081,1.553,3.125,1.227,1.398,2.473,0.575,9.553,0.898,2.43,9.781,9.492,2.61,2.723,2.948,2.98,3.04,4.293,4.903,2.335,2.207,1.986,2.299,1.903,1.64,2.903,4.151,3.642,3.289,2.119,2.988,1.016,2.575,2.379,3.201,4.736,7.813,1.542,2.5,2.149,2.455,1.596,1.765,2.147,0.334,1.5,0.713,0.886,1.951,2.423,1.461,2.52,2.45,2.077,2.402,2.302,5.206,4.256,3.749,1.609,4.082,1.787,2.775,2.153,2.155,4.076,3.572,4.244,2.4,2.161,4.695,4.34,0.664,3.375,3.7,3.483,2.171,2.052,1.919,1.813,7.887,2.825,2.435,2.17,1.494,2.285,1.441,1.348,2.111,2.049,1.499,1.439,2.594,2.422,2.061,1.966,1.628,1.788,1.761,2.169,1.584,1.658,2.04,1.979,2.154,2.018,2.328,1.999,2.109,2.552,2.082,1.818,2.019,1.802,2.577,2.037,2.204,2.333,1.98,2.55,2.322,2.803,2.985,3.186,2.629,2.754,2.743,2.648,0.945,2.625,1.375,5.288,3.222,2.229,2.073,2.183,2.543,3.151,2.923,2.175,2.098,1.684,2.831,2.469,2.492,1.656,2.17,2.69,2.026,1.958,3.741,4.169,1.261,2.42,2.371,1.492,1.58,2.787,1.945,1.725,2.482,2.398,1.912,17.626,0.245,9.695,5.03,3.255,16.384,7.094,6.584,7.799,6.292,5.021,8.288,3.098,15.795,9.913,5.905,4.204,10.594,0.998,15.583,4.762,1.126,0.829,1.124,2.659,1.492,1.703,1.936,2.327,3.007,0.167,2.43,1.281,1.821,1.996,3.983,3.153,2.978,1.811,1.604,2.664,1.984,2.201,3.987,1.881,2.012,2.415,0.632,3.642,0.383,2.373,2.237,2.736,2.528,2.583,2.525,6.022,3.433,2.943,2.219,2.715,1.622,1.558,1.78,1.874,2.726,2.95,5.608,5.49,12.022,10.924,2.695,0.844,6.852,4.061,8.654,5.987,19.075,10.226,8.954,44.47,28.133,13.965,13.881,7.764,3.825,3.558,6.688,3.288,3.23,3.91,8.156,3.268,0.664,2.308,0.038,7.095,3.847,3.088,6.647,6.407,18.867,0.945,12.181,13.233,15.633,0.648,6.493,11.286,8.405,2.996,13.072,12.949,12.907,7.798,4.953,7.974,3.839,3.189,3.279,2.533,3.652,3.109,1.634,1.807,0.624,3.878,1.837,1.668,1.977,2.153,1.386,0.695,2.426,1.764,3.175,2.131,1.889,1.52,1.041,1.161,1.539,1.679,2.559,2.666,2.112,2.379,2.685,2.391,0.106,1.635,2.101,2.803,6.966,2.293,9.363,18.651,18.851,9.798,8.993,5.811,4.308,4.919,3.765,3.448,3.593,3.256,0.93,12.043,16.046,10.918,6.407,0.445,1.769,13.062,3.025,3.619,3.3,2.147,3.205,1.729,1.417,3.937,3.674,7.136,8.065,8.804,7.978,5.939,6.101,1.296,2.077,1.766,3.644,2.71,1.417,2.202,2.182,2.395,3.072,3.598,3.488,4.643,4.574,1.781,6.845,4.78,4.505,6.213,3.225,3.046,6.075,5.393,11.848,11.168,6.711,7.835,7.421,3.623,3.255,3.506,2.966,3.176,2.753,2.7,2.195,1.894,3.532,4.173,4.526,2.395,2.32,3.795,2.672,2.726,6.889,3.132,2.866,3.779,3.86,2.012,2.257,2.226,2.04,2.255,4.129,2.927,2.373,2.953,3.992,3.293,3.726,3.916,4.124,2.695,2.728,3.016,3.782,3.015,3.084,4.508,3.227,3.007,2.72,2.547,2.351,0.867,3.494,6.841,3.251,1.117,1.868,4.894,3.663,4.151,3.461,5.055,2.794,2.479,2.531,2.327,4.95,9.441,2.783,4.18,2.871,3.273,4.526,3.804,2.933,3.36,3.415,3.03,2.877,3.994,4.533,5.837,7.386,2.235,1.167,0.906,0.445,2.398,2.561,2.253,1.972,3.715,3.653,1.924,2.512,1.753,3.4,2.644,1.261,3.337,2.894,4.804,5.033,2.185,2.962,1.919,2.289,2.512,2.479,0.492,1.973,2.604,2.635,2.03,2.663,2.458,5.95,11.414,12.586,12.753,17.186,0.118,16.513,4.507,4.265,4.523,2.3,1.964,2.009,1.81,3.029,2.454,2.33,2.105,2.906,3.927,3.705,2.891,1.358,1.361,2.553,2.148,2.269,1.958,3.083,2.726,11.59,16.951,17.234,17.374,14.67,0.875,10.677,26.117,9.16,3.157,2.148,1.376,1.307,1.624,1.871,0.65,0.007,1.106,2.106,3.027,10.235,0.086,10.533,9.454,4.909,2.321,1.79,2.249,2,1.832,2.996,1.954,2.066,1.537,1.512,1.616,2.11,1.853,2.227,1.794,5.231,6.185,2.352,4.464,1.817,2.376,1.865,1.7,1.848,2.118,3.279,2.559,1.59,2.019,2.224,1.68,1.855,1.346,1.503,1.499,1.271,0.684,3.45,3.435,4.893,4.812,9.018,4.707,4.431,5.754,1.864,4.566,2.496,2.369,2.233,1.996,1.898,2.551,2.748,5.136,4.545,4.809,2.727,2.698,2.261,2.963,1.649,1.904,3.55,1.859,1.615,3.283,3.869,18.332,2.898,5.703,5.303,4.322,1.487,1.343,1.155,1.302,1.273,1.132,1.494,1.376,2.187,1.69,1.483,1.668,1.805,1.908,2.886,3.066,2.506,2.261,2.097,2.251,2.139,2.002,1.686,1.389,1.156,1.241,2.024,1.698,2.152,2.327,2.877,2.976,1.591,1.39,1.305,1.915,1.942,1.658,1.564,4.038,4.511,4.462,2.769,2.684,2.104,1.78,2,2.809,3.092,4.71,7.112,7.58,6.314,4.416,2.427,1.825,1.995,2.064,1.549,1.366,1.272,1.163,2.785,5.265,7.122,2.357,1.762,1.663,2.5,2.289,2.193,1.542,1.325,0.142,2.067,2.747,2.381,1.954,1.858,1.772,2.428,1.416,1.589,3.388,2.219,2.256,1.824,1.436,1.451,1.762,0.908,1.035,1.628,1.698,1.449,1.682,2.535,2.898,0.844,3.489,1.742,1.612,2.336,1.668,1.523,1.573,2.361,1.829,1.805,1.703,1.854,2.121,1.796,1.866,1.951,2.277,1.36,1.462,1.02,1.642,1.501,1.837,1.944,1.712,1.419,1.635,1.853,1.703,3.775,3.198,6.143,5.893,3.493,1.281,1.515,1.347,1.825,1.882,1.971,1.809,1.559,1.159,0.5,0.445,1.744,1.449,2.161,3.297,2.262,2.286,1.381,2.141,1.654,0.602,1.911,1.152,1.118,1.636,1.851,5.934,6.055,7.609,8.565,1.591,1.664,1.766,2.314,3.912,14.114,11.419,4.837,2.404,2.468,1.971,0.703,1.502,2.081,1.898,4.729,10.013,10.382,0.06,7.483,7.688,5.809,7.035,0.273,2.424,2.081,1.167,1.472,2.221,2.211,1.921,1.955,1.586,1.765,2.122,0.391,5.733,5.157,9.951,0.336,10.784,10.787,18.61,8.856,8.387,2.003,1.676,1.53,1.604,1.894,1.788,2.103,1.625,1.96,1.848,1.757,2.088,1.924,1.87,1.431,1.16,1.845,2.202,1.76,1.877,7.896,6.057,1.391,1.005,1.896,2.181,1.779,1.545,1.311,1.512,1.594,1.461,2.149,1.966,4.855,9.299,8.271,4.483,4.218,4.942,2.463,2.266,2.933,5.818,11.297,10.686,3.563,2.055,0.469,0.312,1.477,10,1.271,9.691,5.443,4.869,13.337,5.069,4.703,4.008,2.638,3.187,3.402,3.803,3.442,3.84,3.079,3.416,0.266,2.928,2.748,5.785,6.336,4.494,4.651,2.522,1.941,1.586,2.295,2.09,1.978,2.034,1.588,1.952,1.327,1.446,2.18,0.719,2.609,1.617,0.281,1.087,2.608,2.426,2.614,1.813,1.796,1.313,2.427,2.409,2.491,2.088,3.186,2.312,2.228,2.854,1.871,3.216,2.965,9.081,12.215,6.047,5.191,0.764,2.234,2.188,4.55,8.428,6.485,8.838,5.986,7.17,3.024,2.971,3.193,3.096,4.832,3.525,3.34,3.576,3.575,5.941,5.54,5.772,6.127,7.876,8.022,2.341,6.086,0.609,3.646,1.731,2.645,3.165,1.511,0.864,1.57,4.458,4.183,3.804,2.501,6.56,4.062,5.163,3.856,4.27,6.631,2.886,5.128,3.728,4.71,1.67,3.775,3.118,2.964,2.515,2.057,3.007,4.716,3.166,2.837,4.68,2.724,3.637,3.741,2.494,3.976,2.803,3.966,3.072,3.742,1.801,2.16,3.752,4.712,3.136,3.041,2.536,2.728,2.276,2.712,2.6,1.142,1.172,2.57,2.488,2.864,3.563,1.492,2.462,1.437,2.436,1.806,1.61,3.248,1.669,5.834,18.648,11.93,3.278,3.659,2.636,2.496,4.135,4.655,1.503,1.96,1.469,1.979,1.868,4.061,2.032,3.65,3.752,11.458,14.886,14.281,16.709,25.901,2.461,2.162,2.585,2.725,4.019,3.637,1.653,2.036,1.409,1.177,1.147,2.211,4.788,2.853,2.723,2.736,2.816,2.862,2.407,6.347,2.035,2.544,2.297,2.847,15.59,2.678,2.866,6.109,16.645,2.307,1.908,1.938,2.141,16.02,2.611,2.247,2.704,2.989,8.351,4.973,3.206,3.105,3.397,3.259,8.524,3.096,2.709,1.383,1.369,1.246,1.248,0.836,0.68,2.707,3.067,4.938,7.577,5.414,9.885,2.354,19.817,3.508,3.2,2.924,2.947,24.549,4.192,1.558,4.825,2.912,2.844,3.173,3.491,15.265,2.362,2.53,28.009,3.282,3.019,2.761,2.815,2.624,2.922,2.607,2.801,15.446,2.771,2.642,2.655,2.387,2.299,2.892,3.061,4.381,3.48,3.532,3.192,2.772,2.943,4.22,11.484,4.784,2.606,2.653,2.628,2.53,16.544,2.566,2.836,2.617,2.858,40.377,5.336,7.241,1.296,6.75,5.86,2.827,2.891,2.621,2.664,2.452,2.248,25.268,2.492,2.816,3.173,2.686,2.272,2.62,2.442,16.389,2.822,2.729,2.439,2.33,14.787,2.279,2.608,2.688,2.495,25.384,2.905,2.733,2.811,2.709,2.734,2.521,2.632,6.692,1.975,2.122,2.462,2.103,3.12,2.865,2.872,2.846,2.431,2.485,2.551,10.018,2.676,2.676,27.236,2.333,2.555,2.164,2.475,2.386,39.675,0.043,2.432,2.518,2.678,3.668,5.089,2.491,2.266,2.465,2.531,10.953,1.242,3.01,2.826,2.854,0.997,1.971,2.471,2.614,2.61,2.369,2.453,2.386,23.582,1.689,2.749,2.626,2.489,1.92,11.072,2.066,1.437,2.548,1.869,1.66,2.621,2.929,4.073,2.053,0.891,2.375,2.88,2.603,1.598,1.574,6.077,2.974,2.637,2.982,3.385,3.171,3.541,3.422,2.974,2.965,3.011,2.603,2.777,2.63,2.036,2.966,6.835,1.451,2.917,3.068,1.499,1.659,3.04,2.804,3.757,3.017,4.811,2.841,4.149,3.225,2.522,12.203,3.527,3.418,2.894,3.212,3.079,4.64,8.539,2.844,4.695,2.448,4.322,4.29,3.434,2.71,1.558,1.151,2.86,2.572,3.03,2.792,2.748,3.322,1.474,2.407,3.05,3.426,3.318,2.857,1.719,9.819,4.681,2.085,2.333,1.198,1.244,0.898,0.875,1.182,1.027,1.235,3.678,2.465,2.493,3.371,2.391,2.419,1.026,1.211,0.226,1.301,0.84,0.595,1.425,0.174,0.689,0.668,0.771,0.973,0.95,0.888,0.578,0.948,1.005,1.076,1.7,4.532,2.777,2.972,16.993,3.663,2.752,3.546,4.149,3.975,2.991,3.308,10.312,3.986,3.823,4.179,4.51,0.873,0.835,0.906,0.484,0.666,1.172,1.14,1.11,1.658,0.099,2.46,1.658,1.286,1.25,1.083,1.127,1.534,1.169,1.342,1.127,1.456,1.417,1.184,1.478,11.609,0.827,1.027,0.954,1.104,1.043,0.909,0.926,0.974,0.883,1.005,0.848,1.431,1.439,1.402,1.393,0.693,0.913,0.065,1.178,1.049,0.935,0.998,0.953,1.006,1.955,3.719,1.906,0.998,0.956,0.454,0.917,1.036,0.593,1.254,0.989,0.977,1.003,0.947,0.902,3.808,2.941,6.39,2.916,2.998,2.571,3.133,3.841,3.945,10.082,3.557,3.102,3.342,3.367,2.609,2.576,1.892,1.972,2.807,2.689,0.771,7.437,8.256,3.194,1.987,1.007,2.97,3.076,2.978,2.673,2.731,2.689,4.071,2.745,2.107,2.102,2.38,3.248,2.862,2.089,1.714,1.746,1.931,5.635,1.656,1.817,2.562,3.026,3.078,2.845,3.008,6.993,2.96,3.036,3.071,2.941,3.126,8.196,2.973,2.937,5.095,3.812,2.767,2.789,2.787,9.292,3.893,3.557,3.5,3.466,3.475,4.049,2.886,2.971,3.115,2.962,3.007,10.072,2.547,2.125,1.936,2.166,2.594,2.247,2.223,2.566,2.989,2.989,2.302,5.267,3.753,3.392,3.045,2.984,12.285,11.602,5.094,5.069,4.866,4.006,4.463,2.07,1.383,9.881,8.019,12.928,2.616,0.531,0.871,3.997,2.949,4.52,3.906,3.166,4.049,7.916,2.949,5.873,11.167,3.697,3.275,2.885,2.825,3.138,2.783,2.919,2.904,2.811,4.531,4.345,4.792,5.907,7.206,2.554,1.539,25.359,4.888,5.239,5.646,0.641,19.108,5.674,5.319,21.797,2.815,2.758,3.826,6.663,1.695,6.969,3.135,4.143,4.284,5.189,4.798,4.028,3.735,0.194,4.08,3.631,4.075,3.492,12.385,2.599,1.126,2.256,2.007,0.823,3.325,3.889,3.927,3.838,3.323,3.765,3.939,3.634,4.26,3.953,21.085,7.927,4.979,4.823,46.995,4.184,4.667,4.652,4.179,4.219,3.818,11.088,11.742,15.653,4.641,4.704,2.158,6.452,1.523,4.17,2.462,26.861,3.701,1.852,6.959,4.418,4.298,4.438,4.123,4.382,4.52,3.574,8.703,2.61,4.253,4.342,4.727,4.496,4.293,14.912,4.19,4.276,4.831,4.371,4.156,2.84,1.4,4.714,4.495,1.641,2.883,1.922,4.913,4.853,3.786,1.147,1.45,3.358,1.684,0.628,1.639,2.377,1.695,6.916,3.358,0.988,2.02,1.799,1.129,2.86,0.944,1.956,1.473,1.129,1.154,2.332,4.363,4.255,4.424,6.155,4.546,4.23,4.273,4.754,4.1,2.298,2.307,4.611,4.082,4.145,4.198,3.999,4.519,4.282,4.252,4.175,2.192,1.063,1.116,4.395,4.737,4.129,2.034,1.815,2.268,2.673,1.062,1.043,1.955,2.91,1.577,2.253,2.245,4.101,10.33,1.146,3.977,2.179,1.072,2.107,2.326,1.5,2.056,2.042,1.922,1.829,1.902,1.905,0.934,0.688,2.186,3.745,3.858,2.63,1.377,3.101,3.465,3.035,0.838,11.56,10.129,4.304,3.069,2.212,2.244,2.6,2.778,9.928,7.999,2.457,11.998,2.055,2.508,2.732,2.141,2.102,2.527,20.317,4.751,4.299,5.631,12.917,4.984,1.929,2.233,1.451,0.812,2.561,6.451,1.563,4.864,4.399,1.404,0.781,0.748,2.345,4.475,4.85,1.872,1.547,2.572,3.716,3.501,1.273,15.924,2.847,2.408,1.754,3.28,7.455,3.621,2.912,2.004,0.554,3.378,2.702,8.237,0.341,54.004,2.119,1.255,1.36,0.85,0.855,7.784,1.906,3.437,4.5,1.172,2.304,2.12,5.589,0.146,0.348,6.788,5.04,1.285,2.291,3.257,3.701,1.837,1.943,1.779,2.116,1.782,1.976,1.848,1.554,2.105,0.79,0.916,1.783,2.171,2.229,1.946,1.519,1.987,2.764,3.586,1.956,1.948,1.705,1.485,1.125,1.147,1.118,0.862,1.241,1.505,1.088,1.894,1.3,3.204,1.717,1.507,1.845,2.332,2.101,2.43,2.737,11.509,2.632,2.121,2.381,5.827,2.883,4.563,7.351,1.774,2.391,2.693,1.814,2.378,1.194,1.187,1.704,1.576,2.055,2.08,15.993,5.868,4.943,3.113,30.285,4.488,4.406,4.407,4.308,17.766,1.913,1.359,0.726,0.074,3.78,4.152,4.258,13.44,0.938,13.117,6.849,1.8,4.029,5.229,4.295,5.927,5.71,4.607,3.646,3.839,14.687,4.154,3.928,4.353,3.988,3.614,12.812,4.694,4.72,4.858,23.46,4.241,3.965,3.888,11.961,5.461,1.75,1.207,1.278,1.328,4.941,3.942,0.72,17.163,43.176,4.222,4.073,13.757,3.741,3.663,4.259,4.007,4.091,9.244,11.787,4.172,3.92,5.14,41.135,3.53,25.702,4.626,3.892,4.029,4.339,3.696,1.277,2.81,2.992,3.476,1.593,1.583,1.404,0.482,1.734,16.532,8.49,7.725,4.612,2.857,1.755,2.692,0.897,0.311,2.21,2.187,22.09,4.1,3.792,2.582,2.138,2.926,20.93,6.073,11.225,5.045,19.148,4.889,4.903,4.875,20.727,31.369,11.525,20.193,6.339,1.875,3.75,5.199,3.055,1.546,0.807,4.108,3.785,2.884,3.385,2.803,2.938,4.399,1.523,11.956,4.137,4.311,3.889,4.348,5.569,5.481,4.238,4.874,15.087,5.209,2.517,2.908,5.159,5.496,19.188,7.341,12.639,12.014,9.97,8.884,4.005,4.073,2.314,3.086,2.554,3.321,7.763,2.486,5.468,4.467,8.444,4.347,0.348,6.925,3.289,2.585,5.535,5.741,4.59,4.442,4.561,4.927,4.753,4.271,3.535,2.216,1.226,1.518,1.392,3.076,1.781,0.953,1.591,3.838,1.66,2.933,4.147,10.769,10.328,4.037,3.717,3.894,4.204,4.401,6.511,0.277,4.037,4.249,3.989,4.172,4.4,3.892,4.785,9.813,3.914,4.408,4.357,4.272,10.254,1.078,0.398,11.1,4.811,4.985,4.791,4.969,4.743,4.82,3.187,2.798,3.089,3.492,3.329,3.397,3.287,30.639,1.725,2.104,3.201,5.008,4.758,7.402,51.681,4.231,5.039,4.26,29.451,5.601,2.086,2.717,4.122,4.241,6.259,8.932,19.031,2.605,2.508,3.474,4.042,5.433,8.04,4.021,3.531,3.441,3.553,9.217,4.413,4.053,4.003,4.023,4.538,4.173,0.383,3.771,1.557,6.696,2.6,2.069,2.296,2.777,2.56,1.776,1.844,2.941,2.609,3.841,1.609,1.733,3.355,1.583,2.173,2.25,1.677,2.225,2.941,2.69,3.284,1.938,1.775,0.667,0.768,0.502,0.452,0.468,0.451,0.501,0.413,0.474,0.454,0.478,0.464,0.458,0.506,0.415,0.437,0.478,0.471,0.451,0.475,0.478,0.488,0.452,0.468,0.468,0.442,0.466,0.476,0.43,0.523,0.485,0.499,0.445,0.415,0.483,0.472,0.443,0.516,0.48,0.493,0.426,0.468,0.488,0.478,0.463,0.464,0.487,0.453,0.398,0.471,0.55,0.467,0.485,0.439,0.424,0.512,0.516,0.476,0.908,0.534,0.383,0.56,0.485,0.461,0.464,0.503,0.47,0.463,0.523,0.441,0.495,0.463,0.466,0.516,0.473,0.466,0.5,0.467,0.459,0.475,0.468,0.447,0.479,0.469,0.422,0.479,0.463,0.466,0.484,0.501,0.532,0.949,1.116,2.348,2.135,3.01,8.143,3.203,3.1,2.713,2.992,2.789,2.081,3.878,21.57,3.633,2.337,1.303,1.132,1.325,2.302,20.131,1.547,2.705,0.048,4.871,1.063,2.864,3.437,2.937,3.143,4,3.322,3.738,23.343,3.594,3.002,2.929,4.296,3.81,9.042,3.315,3.575,3.268,2.22,1.915,3.278,8.612,4.068,3.841,2.954,0.209,2.746,2.945,2.831,4.256,3.649,1.6,2.142,4.201,8.321,2.826,1.376,1.156,1.472,1.297,0.931,0.826,0.999,0.987,1.787,1.47,1.007,0.873,0.875,0.856,1.098,1.298,1.993,1.857,2.378,2.063,4.045,4.68,4.201,3.955,4.413,4.741,2.031,2.721,3.172,5.876,5.059,6.387,4.277,2.388,2.65,4.53,17.093,1.734,2.461,4.069,4.136,3.034,14.233,3.96,5.093,1.916,1.552,6.829,4.458,1.695,2.88,2.155,2.216,4.194,2.839,4.482,1.828,1.597,1.532,1.983,3.69,3.615,2.278,1.456,3.345,4.822,6.006,4.334,0.967,4.088,4.048,3.532,1.762,2.139,6.533,3.34,1.686,1.766,3.834,4.932,4.653,2.559,1.781,2.307,2.039,2.26,2.371,2.758,2.481,5.781,0.97,0.944,0.928,0.985,0.952,0.956,0.949,0.937,0.962,0.946,0.959,0.926,0.958,0.957,0.973,0.947,0.954,0.907,0.723,1.31,1.468,1.404,1.104,1.316,1.156,1.553,2.631,3.442,6.415,5.077,1.831,1.33,1.355,0.994,1.399,0.486,0.496,0.91,0.904,0.941,0.947,0.908,0.879,0.848,0.924,0.968,0.907,0.89,0.894,0.912,0.909,0.88,0.908,0.882,0.829,0.894,0.955,0.892,0.943,0.92,1.355,2.235,2.823,2.25,1.791,1.878,0.398,2.207,1.603,1.384,1.34,0.902,0.901,0.977,0.945,0.958,0.878,0.993,0.907,0.88,0.99,0.954,0.956,0.921,0.731,0.63,1.788,1.888,1.84,12.883,0.956,1.143,1.376,1.066,0.984,1.014,1.054,0.999,0.995,0.949,1.028,0.96,1.008,0.945,1.001,1.023,1.01,0.961,1.012,0.96,0.866,0.543,0.925,0.948,0.998,0.998,0.977,0.964,0.979,0.984,0.963,0.927,0.969,0.987,0.966,0.967,0.943,0.945,0.983,0.955,0.945,0.976,0.969,0.961,1.192,1.145,0.949,1.324,0.915,1.093,0.938,0.96,1.064,0.91,0.957,0.894,0.909,1.103,1.018,1.282,2.082,6.141,1.073,0.993,0.926,0.914,0.993,0.922,1.058,1.066,0.926,1.082,0.929,0.817,0.877,0.861,0.81,0.767,1.538,0.758,2.823,2.826,1.14,1.713,1.384,1.289,1.545,1.375,1.469,1.478,1.648,1.437,1.56,1.409,5.134,5.673,1.851,1.702,1.41,1.26,0.588,1.703,1.206,1.228,1.029,1.108,1.161,1.109,1.147,1.012,1.192,1.216,1.233,0.944,1.122,1.244,9.151,2.148,1.463,1.169,1.199,1.128,1.204,1.1,0.778,1.237,0.893,0.841,0.789,0.995,1.094,1.011,1.142,0.744,1.167,1.191,20.155,5.059,2.291,2.341,4.16,18.516,2.77,1.117,1.219,1.108,1.27,1.411,1.04,0.941,1.385,1.062,1.199,1.047,1.054,1.092,1.33,1.042,1.436,1.319,0.602,0.637,1.242,1.202,1.232,2.329,25.381,0.17,2.63,3.034,2.865,1.77,1.991,1.744,1.413,1.465,1.37,1.482,5.129,5.778,5.259,5.42,5.669,6.256,4.99,6.641,1.326,6.602,2.639,5.816,3.326,1.859,2.241,4.377,6.015,3.526,0.996,0.879,1.847,1.449,0.841,1.371,0.899,1.361,1.33,2.308,8.041,1.74,1.856,1.824,1.889,2.011,1.91,2.037,2.117,7.973,2.266,1.789,2.341,1.694,2.223,1.682,1.762,3.171,1.834,2.839,0.81,0.748,0.683,0.451,0.582,0.818,0.837,0.67,0.997,0.755,0.762,0.689,0.833,0.72,0.681,0.577,0.639,0.967,0.928,1.039,0.88,1.346,1.428,1.423,1.485,0.965,0.937,0.893,0.837,0.684,0.897,0.925,0.892,0.964,1.475,0.908,1.141,2.339,0.776,0.667,0.642,0.486,0.499,0.617,0.619,0.671,0.766,0.809,0.862,0.709,0.674,0.802,0.576,0.385,0.471,0.492,0.462,0.609,0.552,0.656,0.651,0.766,0.497,0.646,0.791,0.597,0.653,0.546,0.534,1.026,0.931,0.674,1.126,4.585,1.074,1.215,0.948,1.078,0.985,0.673,0.575,0.465,0.613,0.826,1.017,1.114,0.646,0.577,0.824,0.876,0.934,0.891,1.169,1.042,1.296,0.897,1.091,0.71,0.779,1.147,1.447,0.858,0.487,0.54,0.763,0.845,0.922,1.329,0.898,0.583,0.602,0.809,0.808,1.029,0.675,0.625,0.602,0.629,0.549,0.623,0.586,0.794,0.641,1.224,2.001,2.227,2.587,1.821,3.289,2.699,2.824,2.007,1.916,3.485,3.079,1.115,1.016,1.242,0.754,1.877,3.748,11.17,9.048,0.272,1.653,1.028,1.476,1.111,0.905,0.55,0.525,0.957,0.643,0.59,0.663,0.721,0.671,0.727,0.921,0.807,0.921,0.685,0.855,0.963,0.727,0.85,0.719,1.284,28.042,1.968,1.375,0.862,1.047,1.121,0.937,1.086,0.873,1.11,3.879,1.526,8.727,3.914,3.323,3.051,3.078,1.771,1.379,1.094,1.413,1.033,0.785,0.985,0.756,0.959,1.067,1.299,0.822,0.777,0.799,1.266,0.813,0.9,0.813,0.908,1.014,1.33,3.577,0.469,0.86,0.627,0.621,0.553,0.689,0.967,0.69,0.746,1.258,1.428,0.693,0.818,0.929,1.156,0.712,0.965,0.944,0.703,1.451,1.569,1.34,1.002,0.981,3.401,1.52,0.666,0.639,0.559,0.658,0.597,0.582,0.604,0.498,0.61,0.575,0.466,0.518,0.58,0.516,0.399,0.582,0.829,1.318,3.936,5.954,5.9,4.222,0.595,0.157,0.771,0.645,0.595,0.822,0.734,0.699,0.661,0.633,0.605,0.86,0.827,0.755,0.65,0.769,0.858,1.069,1.572,1.894,1.344,3.23,0.887,2.566,12.366,1.664,1.17,1.076,0.869,0.79,0.997,1.077,0.78,0.757,0.918,0.982,0.913,0.902,1.717,2.457,11.015,1.11,1.297,0.892,0.804,0.911,0.461,0.948,0.567,1.191,0.937,0.858,0.964,1.266,0.905,0.963,0.899,1.279,0.904,0.892,0.919,0.926,0.922,0.725,1.086,1.744,5.337,5.54,3.044,1.288,1.012,0.985,1.215,1.397,0.918,0.979,0.791,0.93,0.972,0.934,0.834,3.494,4.054,8.234,3.147,1.908,2.445,28.848,0.76,0.667,0.797,0.781,0.581,0.487,0.493,0.466,0.488,0.476,0.537,0.561,2.241,4.838,5.053,0.853,0.547,0.673,0.489,0.575,0.485,0.496,0.43,0.496,0.532,0.486,0.649,0.513,0.283,0.789,0.694,0.395,0.738,0.839,1.313,2.066,5.241,7.914,2.575,3.717,1.863,4.463,4.082,3.748,3.615,3.686,23.397,22.101,4.592,4.279,3.712,3.692,4.077,4.185,26.907,11.718,2.493,0.859,0.58,0.884,0.819,0.851,0.854,0.464,0.828,0.625,0.789,0.926,0.838,0.819,0.959,0.732,0.518,0.912,0.958,2.563,4.449,7.988,5.884,4.428,3.846,3.433,7.426,0.967,2.306,4.688,7.859,4.795,3.23,1.406,1.914,1.025,1.092,0.634,0.585,0.782,0.544,0.867,0.921,0.53,0.927,0.991,0.561,0.971,0.49,0.501,0.451,0.488,0.485,0.405,0.533,0.367,0.62,0.651,0.607,0.399,1.579,12.62,1.141,0.849,2.489,3.243,3.249,3.153,4.371,19.736,4.077,3.674,9.519,3.278,2.926,6.616,3.096,3.24,3.62,7.311,3.89,3.206,5.356,15.106,2.75,3.003,4.85,4.331,13.191,4.236,3.71,1.371,4.993,12.362,1.915,0.92,1.033,1.071,0.776,0.958,0.867,1.265,0.917,0.566,0.794,0.576,0.561,0.883,0.911,0.888,0.755,0.84,0.733,0.572,0.662,0.761,0.906,0.781,2.556,2.46,1.999,1.929,1.308,1.245,2.581,0.978,1.254,0.836,0.898,0.792,1.314,0.924,1.035,0.981,0.718,1.101,1.597,1.288,1.069,1.221,1.26,1.751,1.215,1.238,1.201,1.024,0.989,0.984,4.448,1.303,1.338,0.973,0.944,1.107,1.125,0.964,1.534,1.045,1.177,0.91,0.901,0.947,1.228,1.515,1.079,1.183,1.17,0.957,0.909,0.911,0.804,0.817,1.136,1.13,4.253,6.971,0.952,1.304,1.209,0.943,0.876,0.848,0.847,0.9,0.972,1.89,1.764,1.378,1.392,0.922,0.795,0.671,0.89,0.476,0.606,0.807,0.902,1.434,1.357,1.4,0.935,0.957,0.536,0.519,9.727,1.254,1.471,0.968,0.947,0.997,1.058,0.679,0.499,0.659,0.742,0.917,1.271,0.992,0.686,0.458,0.9,1.051,1.315,0.616,0.827,1.257,1.083,0.915,0.815,1.334,2.963,2.648,1.5,7.926,1.895,0.43,2.121,1.839,1.095,1.431,1.332,1.079,0.761,1.125,1.148,0.656,1.022,1,1.275,1.32,1.199,0.908,1.111,3.28,5.407,2.624,7.588,0.534,0.688,0.557,0.527,0.866,0.805,0.78,0.764,0.835,1.085,0.852,0.621,0.531,1.834,18.554,5.58,5.69,7.52,9.491,2.195,4.972,2.56,1.57,4.58,5.158,4.409,34.185,3.662,2.512,2.053,2.046,2.279,2.173,3.462,23.567,4.387,3.453,3.408,12.362,8.344,4.247,4.056,2.314,2.383,2.191,2.017,2.158,4.05,1.747,0.885,0.839,0.884,0.812,0.759,0.806,0.823,0.924,0.976,0.816,1.044,1.026,0.844,0.938,0.857,0.892,1.649,1.485,5.846,4.319,8.114,3.371,3.039,2.986,2.374,1.836,1.836,2.948,8.082,6.491,4.532,17.956,2.41,2.514,3.397,2.333,2.343,13.474,3.051,1.409,4.794,14.828,7.202,3.906,0.804,5.352,10.271,2.139,2.217,2.106,1.674,2.065,2.181,4.403,4.374,3.785,4.255,11.244,3.919,1.602,1.669,1.535,1.786,1.616,1.705,3.293,5.354,1.673,1.022,1.269,1.106,0.743,0.812,1.301,1.27,0.961,1.872,17.352,5.085,3.687,1.359,0.734,12.71,1.477,1.361,5.718,0.858,1.595,1.648,1.568,14.589,4.22,3.359,14.625,2.224,2.263,2.64,3.262,54.173,8.973,4.136,3.033,2.873,16.574,3.876,4.393,3.059,4.055,3.568,3.302,44.669,3.151,0.114,2.853,7.91,7.511,1.858,5.028,6.83,4.658,5.499,9.706,12.414,7.744,3.656,3.226,1.775,1.543,1.499,1.216,3.377,8.034,2.144,1.887,4.659,2.188,3.113,2.176,2.517,2.681,3.294,4.694,3.577,3.579,4.61,4.768,5.713,7.057,7.362,5.043,3.981,4.348,4.363,5.594,3.987,4.265,4.496,5.621,6.964,9.944,4.644,3.421,3.646,3.529,3.054,4.735,2.542,2.267,4.82,3.968,3.13,5.705,8.465,4.245,4.638,10.913,5.075,5.104,6.108,14.398,3.545,3.782,3.821,2.668,3.589,5.991,4.396,4.472,4.494,13.112,5.623,3.365,2.447,1.889,2.697,3.342,3.092,4.408,1.732,2.735,5.03,2.672,4.724,13.436,5.886,5.013,2.824,2.047,3.589,3.901,4.449,5.831,5.844,4.966,9.959,0.153,3.053,3.055,2.987,3.565,2.966,3.096,2.409,2.631,3.169,6.258,3.633,2.524,3.315,4.911,6.97,6.061,8.078,4.961,9.063,3.351,3.618,3.508,4.913,3.787,3.311,4.27,2.988,3.825,3.68,12.335,2.744,2.443,2.867,2.914,3.04,2.789,4.321,4.602,19.238,3.67,7.284,6.925,0.953,4.245,3.862,4.86,5.319,2.948,3.212,1.508,11.029,5.351,4.302,5.761,1.486,3.043,4.707,4.454,4.483,0.914,3.995,5.173,3.387,0.977,1.592,5.059,3.558,3.45,3.484,3.749,2.924,1.355,1.734,4.578,1.469,2.304,5.058,10.723,2.525,1.945,3.276,2.818,4.022,3.942,2.917,2.664,3.096,2.06,1.794,2.346,2.807,4.088,4.043,5.732,3.124,1.359,1.343,4.131,6.117,3.559,5.967,6.756,5.487,2.601,3.008,1.625,3.344,2.642,4.057,4.372,2.378,4.48,1.609,3.612,4.348,1.548,3.738,1.677,2.441,5.184,3.617,3.422,1.422,2.772,1.974,1.629,1.602,2.616,2.938,1.703,1.516,3.25,0.923,5.783,2.078,3.918,3.751,5.24,8.747,6.151,5.231,3.274,2.215,2.579,2.894,1.932,3.345,2.294,3.42,1.547,3.222,2.712,2.713,3.07,2.571,1.989,2.211,2.884,2.543,2.091,2.047,2.182,1.99,2.246,3.203,2.56,3.265,2.741,3.089,2.383,2.488,0.567,2.621,2.913,2.805,3.434,3.602,3.35,4.016,3.011,4.761,3.12,4.669,3.169,4.926,7.407,7.259,4.911,3.276,4.509,3.874,5.75,8.38,4.859,2.609,4.32,1.636,3.139,4.709,5.721,4.444,2.305,6.132,3.829,8.084,8.829,14.677,3.433,0.711,2.47,6.975,6.233,6.808,6.629,7.956,5.328,7.478,6.545,1.977,10.73,9.768,10.692,6.869,5.926,5.925,5.212,7.651,13.595,7.336,1.25,3.969,7.037,4.76,8.434,7.288,4.764,5.988,9.877,5.133,5.524,5.738,7.587,6.729,5.502,5.596,5.158,3.623,5.998,5.873,5.523,5.046,6.415,5.076,5.403,6.461,2.891,2.797,2.559,4.193,1.477,2.712,2.563,5.069,0.911,1.391,0.617,2.605,2.865,2.866,3.92,3.942,5.951,1.945,5.367,2.102,4.144,4.358,6.564,7.061,2.076,5.211,6.765,4.248,5.22,2.519,2.075,3.123,8.118,4.361,4.526,4.867,4.933,4.648,5.362,1.841,2.51,3.185,4.182,2.585,3.438,4.117,4.049,4.424,3.677,4.435,4.383,4.604,5.191,6.33,6.749,4.287,4.024,3.757,0.119,4.157,5.467,3.016,3.624,3.532,3.029,3.907,3.328,3.347,4.785,5.717,4.158,4.885,4.537,6.384,7.695,2.131,0.75,1.84,3.906,4.321,3.116,3.146,4.125,3.9,3.989,4.083,3.36,6.219,9.124,3.307,3.935,6.259,3.953,2.831,3.75,3.331,3.439,3.955,4.726,4.057,3.529,4.611,5.295,8.972,5.922,6.734,16.181,4.445,4.593,3.686,4.195,4.433,4.221,4.176,1.734,2.619,5.506,1.368,1.392,4.404,1.688,1.32,2.554,0.913,4.751,0.922,3.023,1.857,1.986,6.46,5.749,3.68,2.978,3.169,5.277,1.193,1.437,3.141,8.727,2.299,2.372,2.005,2.456,6.172,2.853,2.992,4.806,4.83,2.075,6.648,5.456,4.131,8.406,8.158,9.823,10.528,21.024,13.233,9.922,9.912,7.711,3.773,4.887,4.39,2.622,1.646,2.589,1.594,3.217,2.006,2.042,2.088,2.16,5.862,1.633,2.153,2.886,2.094,0.59,1.61,3.136,1.516,4.739,3.026,1.18,3.277,4.273,4.469,1.661,2.656,1.939,2.037,4.447,4.142,3.271,4.506,4.487,4.688,4.3,3.766,2.225,2.239,1.5,2.648,4.133,0.703,3.185,2.346,1.976,2.07,3.326,1.453,3.015,1.29,15.808,4.223,4.033,3.724,8.727,3.658,3.283,3.226,3.188,9.281,4.375,2.829,3.475,3.973,4.415,11.623,11.471,7.605,1.906,10.977,1.852,4.032,24.999,23.641,2.188,2.234,5.916,5.177,3.97,2.422,3.098,4.402,7.03,10.392,2.586,2.516,5.992,3.086,2.145,2.173,2.745,4.913,2.813,1.516,2.508,4.438,1.547,2.773,1.01,0.998,5.908,4.317,4.597,1.466,1.258,1.484,2.648,1.953,4.09,4.068,4.289,4.327,9.782,4.022,1.992,4.159,1.344,13.069,14.382,2.328,3.52,5.43,4.061,4.975,5.732,5.705,3.33,3.778,3.827,3.612,4.322,5.455,6.464,10.814,2.399,2.551,2.334,2.299,2.454,1.95,2.309,8.016,12.228,12.872,7.929,8.268,3.739,3.533,4.142,28.301,18.61,7.936,2.361,10.443,17.288,1.414,3.204,4.68,2.326,2.301,1.314,1.76,1.807,1.726,1.742,3.344,4.834,1.713,3.156,1.524,1.485,1.893,1.907,11.194,11.191,12.039,7.04,10.726,10.575,0.691,4.023,5.193,0.625,0.359,0.844,0.769,0.665,0.655,0.893,0.9,0.781,0.804,1.078,1.561,2.108,2.104,1.234,1.053,1.01,0.831,0.859,0.924,3.227,0.918,0.752,0.828,1.361,1.522,0.929,1.165,0.725,0.87,0.858,0.937,0.835,0.915,0.746,0.451,0.444,0.5,0.634,0.602,0.845,0.738,0.542,0.508,0.581,0.689,0.828,0.777,0.644,0.635,0.697,0.744,0.694,0.77,0.785,0.731,0.872,0.798,1.123,1.303,1.42,2.734,2.18,1.504,2.246,2.874,1.48,3.842,3.508,1.989,0.533,0.646,0.632,0.526,0.474,0.655,0.656,0.648,0.723,0.602,0.92,1.104,1.617,1.749,0.688,0.448,0.684,1.317,0.604,0.634,0.713,0.797,0.828,0.794,0.624,0.676,0.867,0.682,3.451,3.147,1.353,1.707,1.642,1.712,3.265,1.345,2.515,2.084,1.738,0.713,0.725,2.342,2.393,2.377,3.963,2.371,2.334,2.541,2.225,1.567,4.003,3.275,0.745,4.097,19.625,5.015,6.086,26.961,4.455,4.795,2.812,0.367,11.437,3.147,3.961,10.132,2.871,2.379,0.407,4.152,1.486,2.039,0.285,8.577,3.531,0.672,3.006,7.687,7.875,3.67,2.559,2.463,1.977,2.073,3.78,3.849,0.582,4.273,6.757,1.197,1.958,2.57,0.687,2.437,6.977,2.157,4.214,0.692,1.511,1.038,0.853,0.821,0.976,2.013,1.965,1.939,1.941,1.949,3.421,2.766,2.741,1.272,1.402,1.697,1.699,6.535,5.381,5.177,7.813,2.452,2.321,1.239,3.03,0.624,0.546,0.696,5.754,0.457,0.442,0.456,0.697,2.869,7.248,4.847,2.945,1.098,3.585,0.281,7.718,5.538,1.024,0.676,0.093,0.502,0.538,0.449,0.498,0.602,0.459,0.457,2.603,1.309,3.352,1.655,1.775,3.319,0.891,0.782,7.038,7.161,18.98,6.391,3.404,0.412,1.341,3.782,4.311,8.055,5.759,1.096,0.802,4.6,9.473,6.776,5.722,0.762,3.079,7.886,0.84,2.907,13.321,8.098,0.45,2.455,1,3.579,0.709,0.857,7.552,1.632,16.32,0.848,0.856,4.929,0.767,13.361,2.406,3.997,0.808,1.258,1.054,0.593,1.024,3.643,15.009,0.865,1.457,13.778,1.046,29.626,3.077,1.216,0.696,6.337,6.23,3.277,8.305,3.979,0.619,1.273,18.074,10.671,12.007,6.406,5.398,6.197,8.066,4.94,8.745,6.817,2.05,2.026,1.411,1.274,4.406,3.144,1.295,2.191,0.926,5.256,5.725,3.179,10.436,10.61,5.172,1.201,3.628,1.079,2.144,8.703,3.452,3.804,4.602,3.639,2.469,1.049,3.187,1.756,1.335,10.388,1.131,2.039,16.049,4.751,2.346,9.136,1.37,0.983,0.753,2.607,3.968,3.644,2.352,5.566,2.722,20.777,6.031,0.704,10.803,3.961,7.618,2.588,7.051,5.937,11.108,10.625,6.261,1.929,12.319,17.437,1.356,1.307,1.187,1.35,1.155,1.039,1.029,1.035,1.485,1.597,1.703,1.299,1.405,1.201,1.52,1.147,0.799,1.299,11.094,0.452,0.465,0.479,1.419,0.427,0.609,0.961,0.946,2.349,4.85,7.298,9.907,3.623,3.074,0.295,4.532,7.004,1.565,1.367,0.976,0.654,1.242,4.725,4.621,9.786,1.922,6.945,2.641,2.643,3.528,0.788,5.039,10.481,1.182,2.911]},"incidents":[{"id":"11793474579685072","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-01T12:20:09Z","end_time":"2023-12-31T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"B1 Leipziger Strasse: Bauarbeiten um Friedrichstrasse","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der B1 Leipziger Strasse in Richtung Westen um Friedrichstrasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":12,"south":52.510349,"west":13.389899,"north":52.510356,"east":13.390075,"congestion":{"value":101},"geometry_index_start":31,"geometry_index_end":32,"affected_road_names":["Leipziger Straße/B 1"],"affected_road_names_de":["Leipziger Straße/B 1"]},{"id":"3738638213969184","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-03-19T23:00:00Z","end_time":"2023-12-31T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"B1: Bauarbeiten zwischen Platz Des Volksaufstandes Von 1953 und Potsdamer Platz","long_description":"Fahrbahnverengung von auf eine Fahrspur wegen Bauarbeiten auf der B1 in beiden Richtungen zwischen Platz Des Volksaufstandes Von 1953 und Potsdamer Platz.","impact":"low","alertc_codes":[743],"traffic_codes":{"incident_primary_code":743},"lanes_blocked":[],"length":506,"south":52.509593,"west":13.37679,"north":52.510009,"east":13.384216,"congestion":{"value":101},"geometry_index_start":51,"geometry_index_end":83,"affected_road_names":["Leipziger Straße/B 1","Leipziger Platz/B 1"],"affected_road_names_de":["Leipziger Straße/B 1","Leipziger Platz/B 1"]},{"id":"14680289252185248","type":"disabled_vehicle","creation_time":"2023-10-25T09:17:15Z","start_time":"2023-10-25T07:44:41Z","end_time":"2023-10-25T13:37:54Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: abgestellte Fahrzeug zwischen A9 und 4 L85","long_description":"Abgestellte Fahrzeug auf der A9 in Richtung Süden zwischen A9 und 4 L85. Auf dem Seitenstreifen. Fahren Sie mit extremer Vorsicht.","impact":"minor","sub_type":"CONGESTION","alertc_codes":[211,111],"traffic_codes":{"incident_primary_code":211},"lanes_blocked":[],"length":10644,"south":52.158176,"west":12.781396,"north":52.215812,"east":12.899682,"congestion":{"value":101},"geometry_index_start":1069,"geometry_index_end":1160,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"8070726696213233","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-07T11:17:47Z","end_time":"2023-12-15T11:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 15 und 17","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A9 in beiden Richtungen zwischen 15 A14 20,Schkeuditzer Kreuz und 17 B181 Anschlussstelle Leipzig-West.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":9451,"south":51.351638,"west":12.180443,"north":51.433712,"east":12.201517,"congestion":{"value":101},"geometry_index_start":1919,"geometry_index_end":2013,"affected_road_names":["A 9/E 51","A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 51","A 9/E 49/E 51"]},{"id":"6933437896913765","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-07T06:42:16Z","end_time":"2023-12-22T14:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten von A9 nach 18 L187","long_description":"Fahrspurverengung wegen Bauarbeiten auf der A9 in Richtung Süden von A9 nach 18 L187.","impact":"minor","sub_type":"LANE_RESTRICTION","alertc_codes":[701,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":16128,"south":51.28934,"west":12.134837,"north":51.423274,"east":12.195495,"congestion":{"value":101},"geometry_index_start":1936,"geometry_index_end":2080,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"1694045142279175","type":"road_hazard","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-18T12:01:19Z","end_time":"2023-10-27T11:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Straßenmarkierungsarbeiten zwischen 20 und 21B","long_description":"Seitenstreifen gesperrt wegen Straßenmarkierungsarbeiten auf der A9 in Richtung Süden zwischen 20 B91 Anschlussstelle Weissenfels und 21B L198 Eisenberger Strasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[706,504],"traffic_codes":{"incident_primary_code":706},"lanes_blocked":[],"length":16184,"south":51.040397,"west":11.940981,"north":51.177051,"east":12.003101,"congestion":{"value":101},"geometry_index_start":2215,"geometry_index_end":2344,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"12511815438130840","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-19T05:00:00Z","end_time":"2023-11-17T17:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Fahrspur gesperrt zwischen A9 und 24 A4 56A","long_description":"Fahrspur gesperrt wegen Abschnitte mit Asphaltierungsarbeiten auf der A9 in beiden Richtungen zwischen A9 und 24 A4 56A.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[500,704],"traffic_codes":{"incident_primary_code":500},"lanes_blocked":[],"length":10945,"south":50.880104,"west":11.833704,"north":50.970691,"east":11.862039,"congestion":{"value":101},"geometry_index_start":2431,"geometry_index_end":2535,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"4071827464197091","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-02T12:26:35Z","end_time":"2023-11-01T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Fahrspur gesperrt zwischen A9 und 24 A4 56A","long_description":"Fahrspur gesperrt wegen Abschnitte mit Asphaltierungsarbeiten auf der A9 in beiden Richtungen zwischen A9 und 24 A4 56A.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[500,704],"traffic_codes":{"incident_primary_code":500},"lanes_blocked":[],"length":3516,"south":50.87989,"west":11.841493,"north":50.9113,"east":11.84659,"congestion":{"value":101},"geometry_index_start":2507,"geometry_index_end":2535,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"8031298247430740","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-18T04:00:00Z","end_time":"2023-11-01T17:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Brückeninstandhaltungsarbeiten zwischen 45 A71 12 und 47B L1056","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Brückeninstandhaltungsarbeiten und Abschnitte mit Asphaltierungsarbeiten auf der A4 in beiden Richtungen zwischen 45 A71 12 und 47B L1056.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[707,704,515],"traffic_codes":{"incident_primary_code":707},"lanes_blocked":[],"length":13451,"south":50.894462,"west":10.955423,"north":50.92646,"east":11.138545,"congestion":{"value":101},"geometry_index_start":3199,"geometry_index_end":3319,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"16260311406674045","type":"disabled_vehicle","creation_time":"2023-10-25T09:17:15Z","start_time":"2023-10-25T07:19:45Z","end_time":"2023-10-25T13:13:08Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: abgestellte Fahrzeug zwischen 41B L1026 und 41A L1025","long_description":"Abgestellte Fahrzeug auf der A4 in Richtung Westen zwischen 41B L1026 und 41A L1025. Auf dem Seitenstreifen. Fahren Sie mit extremer Vorsicht.","impact":"minor","sub_type":"CONGESTION","alertc_codes":[211,111],"traffic_codes":{"incident_primary_code":211},"lanes_blocked":[],"length":4911,"south":50.906188,"west":10.548242,"north":50.92004,"east":10.6119,"congestion":{"value":101},"geometry_index_start":3616,"geometry_index_end":3683,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"16418187651594055","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-06T22:00:00Z","end_time":"2023-11-21T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Abschnitte mit Asphaltierungsarbeiten zwischen 37 B400 und 39 B19","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Abschnitte mit Asphaltierungsarbeiten auf der A4 in beiden Richtungen zwischen 37 B400 und 39 B19.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[704,515],"traffic_codes":{"incident_primary_code":704},"lanes_blocked":[],"length":10961,"south":51.005447,"west":10.11717,"north":51.017345,"east":10.267592,"congestion":{"value":101},"geometry_index_start":3995,"geometry_index_end":4148,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"1304540888974597","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-17T05:16:49Z","end_time":"2024-04-28T21:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen A4 und 37 B400","long_description":"Bauarbeiten auf der A4 in beiden Richtungen zwischen A4 und 37 B400.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":9279,"south":51.00576,"west":10.117588,"north":51.017345,"east":10.244636,"congestion":{"value":101},"geometry_index_start":4021,"geometry_index_end":4146,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"4605627051740019","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-11T22:00:00Z","end_time":"2023-11-30T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen 38 L3251 Eisenacher Strasse und 37 B400","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A4 in Richtung Westen zwischen 38 L3251 Eisenacher Strasse und 37 B400.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":4638,"south":51.007286,"west":10.117986,"north":51.017345,"east":10.181569,"congestion":{"value":101},"geometry_index_start":4091,"geometry_index_end":4144,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"8552995970245167","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-17T06:00:00Z","end_time":"2023-12-31T14:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen 35 L3248 und 37 B400","long_description":"Fahrspurverengung wegen Bauarbeiten auf der A4 in beiden Richtungen zwischen 35 L3248 und 37 B400.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":10922,"south":50.957355,"west":10.013813,"north":51.016906,"east":10.118174,"congestion":{"value":101},"geometry_index_start":4143,"geometry_index_end":4319,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"15894253910569590","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-28T22:00:00Z","end_time":"2024-01-30T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen 33 B62 und 32 B27 Anschlussstelle Bad Hersfeld","long_description":"Fahrspurverengung wegen Bauarbeiten auf der A4 in Richtung Westen zwischen 33 B62 und 32 B27 Anschlussstelle Bad Hersfeld.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":11250,"south":50.85361,"west":9.722569,"north":50.894489,"east":9.855323,"congestion":{"value":101},"geometry_index_start":4560,"geometry_index_end":4742,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"1993788692500850","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-10T10:43:44Z","end_time":"2023-11-26T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten nahe Kirchheimer Dreieck A7 86,87,Anschlussstelle Kirchheim","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A4 in Richtung Westen nahe Kirchheimer Dreieck A7 86,87,Anschlussstelle Kirchheim.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":20,"south":50.832118,"west":9.576452,"north":50.832283,"east":9.576582,"congestion":{"value":101},"geometry_index_start":4939,"geometry_index_end":4940,"affected_road_names":["E 40"],"affected_road_names_de":["E 40"]},{"id":"619736488739910","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-11T05:02:03Z","end_time":"2023-11-26T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A7: Bauarbeiten nahe 86,87,Anschlussstelle Kirchheim A4 Kirchheimer Dreieck","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A7 in Richtung Süden nahe 86,87,Anschlussstelle Kirchheim A4 Kirchheimer Dreieck.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":2,"south":50.829055,"west":9.574076,"north":50.829074,"east":9.574088,"congestion":{"value":101},"geometry_index_start":4944,"geometry_index_end":4945,"affected_road_names":["E 40"],"affected_road_names_de":["E 40"]},{"id":"11215079429708365","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-18T06:00:00Z","end_time":"2023-10-27T18:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A5: Bauarbeiten zwischen A7 88 und 2 B62","long_description":"Temporäre Breitenbeschränkung und Abschleppspur gesperrt wegen Bauarbeiten auf der A5 in Richtung Süden zwischen A7 88 und 2 B62.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,639,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":18650,"south":50.749824,"west":9.299573,"north":50.80809,"east":9.530817,"congestion":{"value":101},"geometry_index_start":5037,"geometry_index_end":5372,"affected_road_names":["A 5/E 40"],"affected_road_names_de":["A 5/E 40"]},{"id":"3722603253572537","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-21T05:00:00Z","end_time":"2023-11-10T06:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A5: Bauarbeiten in Altenburg","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A5 in beiden Richtungen in Altenburg.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":27531,"south":50.643344,"west":8.988188,"north":50.747631,"east":9.297691,"congestion":{"value":101},"geometry_index_start":5375,"geometry_index_end":5768,"affected_road_names":["A 5/E 40"],"affected_road_names_de":["A 5/E 40"]},{"id":"15705690200548383","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-21T11:09:56Z","end_time":"2023-12-06T14:30:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A5: Bauarbeiten nahe 11,Gambacher Kreuz A45 35,Gambacher Kreuz","long_description":"Fahrspurverengung wegen Bauarbeiten und Abschnitte mit Asphaltierungsarbeiten auf der A5 in Richtung Süden nahe 11,Gambacher Kreuz A45 35,Gambacher Kreuz.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[701,704,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":19,"south":50.463134,"west":8.720842,"north":50.463294,"east":8.720922,"congestion":{"value":101},"geometry_index_start":6053,"geometry_index_end":6054,"affected_road_names":["A 5/E 451"],"affected_road_names_de":["A 5/E 451"]},{"id":"13245284980538074","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-26T12:40:00Z","end_time":"2023-11-30T14:30:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A67: Bauarbeiten zwischen 2 B486 und 3 A60 30,Rüsselsheimer Dreieck","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A67 in Richtung Süden zwischen 2 B486 und 3 A60 30,Rüsselsheimer Dreieck.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1346,"south":49.978237,"west":8.464899,"north":49.990093,"east":8.467987,"congestion":{"value":101},"geometry_index_start":6858,"geometry_index_end":6866,"affected_road_names":["A 67/E 35/E 42","A 67/E 35"],"affected_road_names_de":["A 67/E 35/E 42","A 67/E 35"]},{"id":"13170675045106851","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-06-13T22:00:00Z","end_time":"2023-12-31T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Abschnitte mit Asphaltierungsarbeiten zwischen A6 und 16B","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Abschnitte mit Asphaltierungsarbeiten auf der A6 in beiden Richtungen zwischen A6 und 16B K13 Ludwigshafener Strasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[704,515],"traffic_codes":{"incident_primary_code":704},"lanes_blocked":[],"length":6667,"south":49.452388,"west":7.821276,"north":49.473091,"east":7.907007,"congestion":{"value":101},"geometry_index_start":8050,"geometry_index_end":8099,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"7747550916350189","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-10T08:45:07Z","end_time":"2023-12-15T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Bauarbeiten nahe 15 B270 Anschlussstelle Kaiserslautern-West","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A6 in beiden Richtungen nahe 15 B270 Anschlussstelle Kaiserslautern-West.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":14,"south":49.446502,"west":7.697447,"north":49.446544,"east":7.69763,"congestion":{"value":101},"geometry_index_start":8208,"geometry_index_end":8210,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"3885770694222663","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-09T22:00:00Z","end_time":"2023-12-01T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Bauarbeiten zwischen 15 B270 Anschlussstelle Kaiserslautern-West und 13 L363","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A6 in beiden Richtungen zwischen 15 B270 Anschlussstelle Kaiserslautern-West und 13 L363.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":882,"south":49.439994,"west":7.647759,"north":49.442581,"east":7.659265,"congestion":{"value":101},"geometry_index_start":8237,"geometry_index_end":8247,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"3321313322543589","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2020-07-01T12:18:12Z","end_time":"2025-05-31T21:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Bauarbeiten zwischen 5 L126 und 4 L107 Provinzialstrasse","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A6 in beiden Richtungen zwischen 5 L126 und 4 L107 Provinzialstrasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":7638,"south":49.204429,"west":7.050837,"north":49.259918,"east":7.103932,"congestion":{"value":101},"geometry_index_start":8723,"geometry_index_end":8857,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"3079822411114516","type":"construction","creation_time":"2023-10-25T09:10:29Z","start_time":"2023-10-25T07:00:00Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"FR","iso_3166_1_alpha3":"FRA","description":"A320: travail de maintenance entre 42 D31 E et D603 Rue Nationale","long_description":"Travail de maintenance sur A320 Direction ouest entre 42 D31 E et D603 Rue Nationale.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":5768,"south":49.144138,"west":6.819635,"north":49.172134,"east":6.883303,"congestion":{"value":101},"geometry_index_start":9149,"geometry_index_end":9219,"affected_road_names":["A 320/E 50"],"affected_road_names_fr":["A 320/E 50"]},{"id":"10411750007125237","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-24T23:04:12Z","end_time":"2023-10-25T11:04:12Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción entre 69,145 AP-8 70,71 y 133 GI-632","long_description":"Obras de construcción en la Hacia el oeste AP-1 entre 69,145 AP-8 70,71 y 133 GI-632.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1921,"south":43.127689,"west":-2.427878,"north":43.144569,"east":-2.425008,"congestion":{"value":101},"geometry_index_start":24889,"geometry_index_end":24911,"affected_road_names":["AP-1/E 05/E 80/Eibar-Gasteiz autobidea","AP-1/E 05/E 80/Iparraldeko autobidea"],"affected_road_names_unknown":["AP-1/E 05/E 80/Eibar-Gasteiz autobidea","AP-1/E 05/E 80/Iparraldeko autobidea"]},{"id":"51937864075633","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T07:13:00Z","end_time":"2023-10-25T10:13:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción en 5 BU-535","long_description":"Obras de construcción en la Hacia el sur AP-1 en 5 BU-535.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":13,"south":42.702838,"west":-2.966865,"north":42.702877,"east":-2.966716,"congestion":{"value":101},"geometry_index_start":25967,"geometry_index_end":25968,"affected_road_names":["AP-1/E 05/E 80/Autopista del Norte"],"affected_road_names_unknown":["AP-1/E 05/E 80/Autopista del Norte"]},{"id":"16869780136304791","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-24T21:31:00Z","end_time":"2023-10-25T18:31:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción en Lugar De Santa Cruz","long_description":"Obras de construcción en la Hacia el oeste A-62 en Lugar De Santa Cruz.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":27,"south":41.711879,"west":-4.702873,"north":41.712066,"east":-4.702665,"congestion":{"value":101},"geometry_index_start":29146,"geometry_index_end":29148,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"14716208523825844","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T07:11:00Z","end_time":"2023-10-25T10:11:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción en 148","long_description":"Obras de construcción en la Hacia el oeste A-62 en 148.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":21,"south":41.507923,"west":-4.969357,"north":41.507972,"east":-4.969115,"congestion":{"value":101},"geometry_index_start":29548,"geometry_index_end":29549,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"7510661461306568","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-23T07:09:00Z","end_time":"2023-10-28T07:09:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 155,156 N-122 y 163","long_description":"Obras de construcción en la Hacia el oeste A-62 entre 155,156 N-122 y 163.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":6644,"south":41.458965,"west":-5.078851,"north":41.497493,"east":-5.022029,"congestion":{"value":101},"geometry_index_start":29635,"geometry_index_end":29689,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"9678083122641995","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:07:00Z","end_time":"2023-10-25T12:07:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 275 CV-107 y 282 DSA-307","long_description":"Obras de construcción en la Hacia el oeste A-62 entre 275 CV-107 y 282 DSA-307.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1049,"south":40.845039,"west":-6.066675,"north":40.847618,"east":-6.054899,"congestion":{"value":101},"geometry_index_start":30748,"geometry_index_end":30761,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"2429546510794495","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:07:00Z","end_time":"2023-10-25T12:07:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre A-62 y 325","long_description":"Obras de construcción en la Hacia el oeste A-62 entre A-62 y 325.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1013,"south":40.625965,"west":-6.499186,"north":40.633785,"east":-6.493387,"congestion":{"value":101},"geometry_index_start":31140,"geometry_index_end":31157,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]}],"admins":[{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"PRT","iso_3166_1":"PT"}],"via_waypoints":[]},{"notifications":[{"details":{"actual_value":"PT,ES","message":"Crossing the border of the countries of PT and ES."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":3532,"geometry_index_start":3530},{"details":{"actual_value":"ES,FR","message":"Crossing the border of the countries of ES and FR."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":12210,"geometry_index_start":12209},{"details":{"actual_value":"FR,IT","message":"Crossing the border of the countries of FR and IT."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":22888,"geometry_index_start":22883}],"summary":"Rua do Alecrim, Rua das Taipas, Rua da Conceição da Glória, Praça da Alegria, Avenida da Liberdade, Praça Marquês de Pombal (Rotunda), Avenida Fontes Pereira de Melo, Avenida da República (Túnel), Campo Grande, Avenida Marechal Craveiro Lopes/2ª Circular, A 23, E 80, A-62, BU-30, A-1, Carretera de Madrid a Irún, E 05, N-622, AP-1, A 620, A 9, A 7, A 8, E 25, A26/A7, A7, Piazza Gian Antonio Maggi, Via Spezia, Piazza Serafino Belfanti, Viale Liguria, Piazzale Lodi, Viale Umbria, Piazza Michele Cappelli, Piazzale Dateo","distance":2146113.75,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive north on Rua do Alecrim for a half mile.","announcement":"Drive north on Rua do Alecrim for a half mile.","distanceAlongGeometry":627.083},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Rua das Taipas.","announcement":"In a quarter mile, Bear right onto Rua das Taipas.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Rua das Taipas.","announcement":"Bear right onto Rua das Taipas.","distanceAlongGeometry":87.111}],"intersections":[{"entry":[true],"bearings":[6],"duration":10.915,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":11.734,"geometry_index":0,"location":[-9.143242,38.708802]},{"entry":[true,false,false],"in":1,"bearings":[6,186,270],"duration":8.107,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.41,"geometry_index":2,"location":[-9.143161,38.709453]},{"entry":[true,false,true],"in":1,"bearings":[6,186,275],"duration":13.136,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":14.942,"geometry_index":3,"location":[-9.14311,38.709854]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.143041,38.710404],"geometry_index":5,"admin_index":0,"weight":8.295,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":5.5,"duration":4.541,"bearings":[12,186],"out":0,"in":1,"entry":[true,false]},{"entry":[true,true,false,false],"in":2,"bearings":[11,68,192,237],"duration":4.161,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.069,"geometry_index":6,"location":[-9.143012,38.71051]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.14298,38.710644],"geometry_index":10,"admin_index":0,"weight":4.14,"is_urban":true,"traffic_signal":true,"turn_duration":2.022,"turn_weight":1.5,"duration":4.422,"bearings":[8,124,191,315],"out":0,"in":2,"entry":[true,false,false,true]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.142963,38.710736],"geometry_index":11,"admin_index":0,"weight":4.168,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":1,"duration":4.899,"bearings":[8,103,188,284],"out":0,"in":2,"entry":[true,false,false,false]},{"entry":[true,false,true],"in":1,"bearings":[1,188,227],"duration":17.133,"turn_weight":0.5,"turn_duration":0.033,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":19.738,"geometry_index":12,"location":[-9.142944,38.710842]},{"entry":[false,false,true],"in":0,"bearings":[181,265,359],"duration":12.622,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":14.675,"geometry_index":14,"location":[-9.142929,38.711526]},{"entry":[true,false,true],"in":1,"bearings":[92,173,347],"duration":1.38,"turn_weight":0.5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.019,"geometry_index":16,"location":[-9.142976,38.712031]},{"entry":[false,false,false,true],"in":1,"bearings":[76,167,260,346],"duration":9.471,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"weight":11.631,"geometry_index":17,"location":[-9.142992,38.712084]},{"entry":[false,false,true],"in":0,"bearings":[166,267,346],"duration":11.482,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":13.409,"geometry_index":18,"location":[-9.143108,38.712452]},{"entry":[false,false,false,true],"in":1,"bearings":[79,166,259,343],"duration":2.271,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.588,"geometry_index":20,"location":[-9.143247,38.712896]},{"entry":[true,false,true],"in":1,"bearings":[79,163,333],"duration":5.178,"turn_weight":5.5,"turn_duration":0.036,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":11.414,"geometry_index":21,"location":[-9.14328,38.712978]},{"entry":[false,false,true],"in":0,"bearings":[153,253,331],"duration":7.735,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.371,"geometry_index":23,"location":[-9.143383,38.713135]},{"entry":[false,false,false,true],"in":1,"bearings":[83,151,265,331],"duration":4.635,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"weight":6.323,"geometry_index":25,"location":[-9.143549,38.713373]},{"entry":[false,false,true],"in":0,"bearings":[151,252,333],"duration":8.237,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.963,"geometry_index":26,"location":[-9.143651,38.713518]},{"entry":[false,false,true],"in":0,"bearings":[153,252,334],"duration":8.75,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":10.554,"geometry_index":27,"location":[-9.14382,38.713774]},{"bearings":[15,154,251,339],"entry":[false,false,false,true],"in":1,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"geometry_index":28,"location":[-9.143989,38.71405]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua das Taipas"}],"type":"turn","modifier":"slight right","text":"Rua das Taipas"},"distanceAlongGeometry":627.083}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive north on Rua do Alecrim.","bearing_after":6,"bearing_before":0,"location":[-9.143242,38.708802]},"speedLimitSign":"vienna","name":"Rua do Alecrim","weight_typical":179.245,"duration_typical":145.001,"duration":145.001,"distance":627.083,"driving_side":"right","weight":179.245,"mode":"driving","geometry":"ccryhAr{`mPee@wCoAIaXeBgBKc^}BsEy@MCq@K_BYkBUwDa@sEe@aRMuVO}LHsPrAiB^_VfFkB`@kWrFcD`AgBdAqEfCmAt@mKtGaHjE_OpIgPpI}J~D"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Bear right onto Rua da Conceição da Glória.","announcement":"In a quarter mile, Bear right onto Rua da Conceição da Glória.","distanceAlongGeometry":353.695},{"ssmlAnnouncement":"Bear right.","announcement":"Bear right.","distanceAlongGeometry":40}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[21,159,336],"duration":1.315,"turn_weight":6.5,"turn_duration":0.115,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":7.88,"geometry_index":29,"location":[-9.144085,38.714241]},{"entry":[true,false,false,false],"in":2,"bearings":[23,158,201,339],"duration":16.208,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":20.63,"geometry_index":31,"location":[-9.14406,38.714291]},{"entry":[false,false,true],"in":1,"bearings":[148,203,346],"duration":22.901,"turn_weight":1.5,"turn_duration":0.301,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"weight":28.055,"geometry_index":32,"location":[-9.143695,38.714965]},{"entry":[false,true],"in":0,"bearings":[142,314],"duration":11.8,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":14.865,"geometry_index":35,"location":[-9.14425,38.715866]},{"entry":[false,true],"in":0,"bearings":[134,314],"duration":14.2,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":17.685,"geometry_index":36,"location":[-9.144739,38.716234]},{"bearings":[134,280],"entry":[false,true],"in":0,"turn_weight":1.5,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":38,"location":[-9.145335,38.716677]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua da Conceição da Glória"}],"type":"turn","modifier":"slight right","text":"Rua da Conceição da Glória"},"distanceAlongGeometry":363.695}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Rua das Taipas.","modifier":"slight right","bearing_after":21,"bearing_before":339,"location":[-9.144085,38.714241]},"speedLimitSign":"vienna","name":"Rua das Taipas","weight_typical":98.535,"duration_typical":73.024,"duration":73.024,"distance":363.695,"driving_side":"right","weight":98.535,"mode":"driving","geometry":"aw|yhAhpbmP_@ScA]ci@yU{@_@{q@z]qBxC_Vp]sWb`@aBbCgBbV"},{"voiceInstructions":[{"ssmlAnnouncement":"In 400 feet, Turn left onto Praça da Alegria.","announcement":"In 400 feet, Turn left onto Praça da Alegria.","distanceAlongGeometry":117.459},{"ssmlAnnouncement":"Turn left onto Praça da Alegria. Then Turn right to stay on Praça da Alegria.","announcement":"Turn left onto Praça da Alegria. Then Turn right to stay on Praça da Alegria.","distanceAlongGeometry":70.833}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[100,280,324],"duration":6.731,"turn_weight":6.5,"turn_duration":0.131,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"weight":14.42,"geometry_index":39,"location":[-9.145705,38.716729]},{"entry":[true,false],"in":1,"bearings":[65,144],"duration":8.4,"turn_weight":2,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":12.08,"geometry_index":40,"location":[-9.145931,38.716969]},{"bearings":[66,132,245,313],"entry":[true,true,false,true],"in":2,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":41,"location":[-9.145492,38.717129]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Praça da Alegria"}],"type":"turn","modifier":"right","text":"Praça da Alegria"},"primary":{"components":[{"type":"text","text":"Praça da Alegria"}],"type":"turn","modifier":"left","text":"Praça da Alegria"},"distanceAlongGeometry":127.459}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Rua da Conceição da Glória.","modifier":"slight right","bearing_after":324,"bearing_before":280,"location":[-9.145705,38.716729]},"speedLimitSign":"vienna","name":"Rua da Conceição da Glória","weight_typical":42.54,"duration_typical":26.838,"duration":26.838,"distance":127.459,"driving_side":"right","weight":42.54,"mode":"driving","geometry":"qrazhApuemP_NbM_ImZaKga@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right to stay on Praça da Alegria. Then Stay straight to take the ramp.","announcement":"Turn right to stay on Praça da Alegria. Then Stay straight to take the ramp.","distanceAlongGeometry":70.833}],"intersections":[{"entry":[true,false,false,true],"in":2,"bearings":[62,131,246,312],"duration":13.725,"turn_weight":10,"turn_duration":7.039,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":18.023,"geometry_index":42,"location":[-9.144944,38.717322]},{"entry":[true,false,false],"in":1,"bearings":[58,132,313],"duration":5.681,"turn_weight":2,"turn_duration":4.001,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":4.016,"geometry_index":43,"location":[-9.14517,38.717479]},{"bearings":[55,146,238,322],"entry":[true,false,false,false],"in":2,"turn_weight":2,"turn_duration":0.022,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":44,"location":[-9.145097,38.717514]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Stay straight to take the ramp"}],"type":"turn","modifier":"straight","text":"Stay straight to take the ramp"},"primary":{"components":[{"type":"text","text":"Praça da Alegria"}],"type":"turn","modifier":"right","text":"Praça da Alegria"},"distanceAlongGeometry":102.346}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Praça da Alegria.","modifier":"left","bearing_after":312,"bearing_before":66,"location":[-9.144944,38.717322]},"speedLimitSign":"vienna","name":"Praça da Alegria","weight_typical":43.911,"duration_typical":35.988,"duration":35.988,"distance":102.346,"driving_side":"right","weight":43.911,"mode":"driving","geometry":"swbzhA~edmPyHbMeAqCy@uBsAuCoBmCkCuBgDeAiDc@kCR_Dr@"},{"voiceInstructions":[{"ssmlAnnouncement":"Stay straight to take the ramp. Then Turn left onto Avenida da Liberdade.","announcement":"Stay straight to take the ramp. Then Turn left onto Avenida da Liberdade.","distanceAlongGeometry":40.484}],"intersections":[{"bearings":[56,169,318],"entry":[true,false,true],"in":1,"turn_weight":2,"turn_duration":0.576,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":52,"location":[-9.144816,38.71803]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Avenida da Liberdade"}],"type":"turn","modifier":"left","text":"Avenida da Liberdade"},"primary":{"components":[{"type":"text","text":"Stay straight to take the ramp"}],"type":"turn","modifier":"straight","text":"Stay straight to take the ramp"},"distanceAlongGeometry":40.484}],"speedLimitUnit":"km/h","maneuver":{"type":"continue","instruction":"Turn right to stay on Praça da Alegria.","modifier":"right","bearing_after":56,"bearing_before":349,"location":[-9.144816,38.71803]},"speedLimitSign":"vienna","name":"Praça da Alegria","weight_typical":12.8,"duration_typical":9.576,"duration":9.576,"distance":40.484,"driving_side":"right","weight":12.8,"mode":"driving","geometry":"{cdzhA~}cmPoJsTi@mA"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Avenida da Liberdade.","announcement":"Turn left onto Avenida da Liberdade.","distanceAlongGeometry":42.546}],"intersections":[{"entry":[false,true,false,false,false],"in":3,"bearings":[38,84,134,236,338],"duration":3.942,"turn_weight":7.5,"turn_duration":0.042,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":12.18,"geometry_index":54,"location":[-9.144431,38.718235]},{"entry":[true,false,false],"in":2,"bearings":[56,187,264],"duration":2.085,"turn_weight":0.75,"turn_duration":0.165,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.054,"geometry_index":55,"location":[-9.144281,38.718248]},{"bearings":[56,146,236,325],"entry":[true,false,false,false],"in":2,"turn_weight":1.5,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":56,"location":[-9.144206,38.718288]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida da Liberdade"}],"type":"turn","modifier":"left","text":"Avenida da Liberdade"},"distanceAlongGeometry":42.546}],"speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Stay straight to take the ramp.","modifier":"straight","bearing_after":84,"bearing_before":56,"location":[-9.144431,38.718235]},"speedLimitSign":"vienna","name":"","weight_typical":23.07,"duration_typical":13.326,"duration":13.326,"distance":42.546,"driving_side":"right","weight":23.07,"mode":"driving","geometry":"updzhA|ecmPYkHoAuCyEyK"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":868.655},{"ssmlAnnouncement":"In a quarter mile, Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit.","announcement":"In a quarter mile, Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit.","announcement":"Enter the roundabout and take the 1st exit.","distanceAlongGeometry":114}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[52,146,236,326],"duration":6.728,"turn_weight":33,"turn_duration":5.395,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":34.6,"geometry_index":57,"location":[-9.144001,38.718397]},{"entry":[false,false,true,true],"in":1,"bearings":[56,146,237,326],"duration":2.167,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.592,"geometry_index":58,"location":[-9.144064,38.71847]},{"entry":[false,false,false,true],"in":1,"bearings":[56,146,237,326],"duration":27.927,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":31.104,"geometry_index":59,"location":[-9.144184,38.718607]},{"entry":[true,false,false,false,true],"in":2,"bearings":[3,59,146,239,326],"duration":7.097,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":4,"weight":6.235,"geometry_index":61,"location":[-9.145587,38.72021]},{"entry":[false,false,true,true],"in":1,"bearings":[96,146,196,326],"duration":27.868,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":35.13,"geometry_index":63,"location":[-9.145852,38.720514]},{"entry":[false,false,false,true],"in":1,"bearings":[56,146,238,327],"duration":4.825,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.451,"geometry_index":64,"location":[-9.147011,38.721836]},{"entry":[true,false,false,true],"in":1,"bearings":[55,147,237,325],"duration":1.655,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.005,"geometry_index":65,"location":[-9.147125,38.721971]},{"entry":[false,false,true,true],"in":1,"bearings":[56,145,237,325],"duration":2.347,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.867,"geometry_index":66,"location":[-9.147192,38.722046]},{"entry":[false,false,false,true],"in":1,"bearings":[58,145,238,326],"duration":25.948,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":29.326,"geometry_index":67,"location":[-9.14728,38.722144]},{"entry":[false,false,false,true],"in":1,"bearings":[56,146,237,326],"duration":4.147,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":5.071,"geometry_index":68,"location":[-9.148144,38.723134]},{"entry":[true,false,false,true],"in":1,"bearings":[56,146,235,326],"duration":1.316,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.104,"geometry_index":70,"location":[-9.148292,38.723304]},{"entry":[false,false,true,true],"in":1,"bearings":[56,146,237,326],"duration":3.832,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":6.186,"geometry_index":71,"location":[-9.148346,38.723366]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-9.148456,38.723492],"geometry_index":72,"admin_index":0,"weight":27.287,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.007,"duration":24.282,"bearings":[56,146,238,326],"out":3,"in":1,"entry":[false,false,false,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[146,326],"duration":6.075,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.442,"geometry_index":73,"location":[-9.149101,38.724229]},{"entry":[false,true,true],"in":0,"bearings":[146,319,353],"duration":4.197,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.106,"geometry_index":74,"location":[-9.149276,38.724429]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[-9.149445,38.724582],"geometry_index":75,"admin_index":0,"weight":4.205,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.052,"turn_weight":2,"duration":1.852,"bearings":[51,139,244,306,349],"out":4,"in":1,"entry":[true,false,false,false,true]},{"bearings":[61,169,239,340],"entry":[false,false,false,true],"in":1,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"geometry_index":77,"location":[-9.149469,38.72468]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit"}],"degrees":140,"driving_side":"right","type":"roundabout","modifier":"right","text":"Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit"},"distanceAlongGeometry":887.655}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Avenida da Liberdade.","modifier":"left","bearing_after":326,"bearing_before":56,"location":[-9.144001,38.718397]},"speedLimitSign":"vienna","name":"Avenida da Liberdade","weight_typical":215.929,"duration_typical":159.007,"duration":159.007,"distance":887.655,"driving_side":"right","weight":215.929,"mode":"driving","geometry":"yzdzhA`kbmPqC|BqGnFq`Ahx@sa@j]kGfFsIhHsqAlgAmGbFuCdCcEnD{|@~t@k@d@gH`G{BjB{FzEam@hg@oK|IqHpI{B@gAl@aAf@}B`AuAf@wAPwAJ_CB_CO"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout. Then Bear right toward A1 NORTE.","announcement":"Exit the roundabout. Then Bear right toward A1 NORTE.","distanceAlongGeometry":48.44}],"intersections":[{"bearings":[21,179,221],"entry":[true,false,false],"in":1,"turn_weight":5.75,"turn_duration":0.03,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":84,"location":[-9.149551,38.725035]}],"rotary_name":"Praça Marquês de Pombal (Rotunda)","bannerInstructions":[{"sub":{"components":[{"type":"text","text":"A1 NORTE"},{"type":"text","text":"/"},{"type":"text","text":"aeroporto"}],"type":"turn","modifier":"slight right","text":"A1 NORTE / aeroporto"},"primary":{"components":[{"type":"text","text":"Exit the roundabout"}],"degrees":140,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Exit the roundabout"},"distanceAlongGeometry":58.107}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":1,"instruction":"Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit.","modifier":"slight right","bearing_after":21,"bearing_before":359,"location":[-9.149551,38.725035]},"speedLimitSign":"vienna","name":"","weight_typical":17.376,"duration_typical":9.521,"duration":9.521,"distance":58.107,"driving_side":"right","weight":17.376,"mode":"driving","geometry":"uyqzhA|emmPqA}@uAq@yAe@{AY}AK_B?}AJ{AXyAd@wAp@qA|@"},{"voiceInstructions":[{"ssmlAnnouncement":"Bear right toward A1 NORTE, aeroporto.","announcement":"Bear right toward A1 NORTE, aeroporto.","distanceAlongGeometry":35.839}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[159,314,348],"duration":7.573,"turn_weight":5,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":14.261,"geometry_index":95,"location":[-9.149551,38.725528]},{"entry":[true,false,false,false],"in":2,"bearings":[14,121,180,300],"duration":2.558,"turn_duration":2.018,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.661,"geometry_index":102,"location":[-9.149602,38.725899]},{"bearings":[21,120,194,298],"entry":[true,false,false,false],"in":2,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":103,"location":[-9.149594,38.725924]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"A1 NORTE"},{"type":"text","text":"/"},{"type":"text","text":"aeroporto"}],"type":"turn","modifier":"slight right","text":"A1 NORTE / aeroporto"},"distanceAlongGeometry":54.839}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout.","modifier":"straight","bearing_after":348,"bearing_before":339,"location":[-9.149551,38.725528]},"speedLimitSign":"vienna","name":"","weight_typical":17.128,"duration_typical":11.941,"duration":11.941,"distance":54.839,"driving_side":"right","weight":17.128,"mode":"driving","geometry":"oxrzhA|emmPcDp@}AZaBR}AJoBFsAE_BIq@OqAc@wAo@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2257.03},{"ssmlAnnouncement":"In a quarter mile, Bear left onto Avenida da República (Túnel).","announcement":"In a quarter mile, Bear left onto Avenida da República (Túnel).","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear left.","announcement":"Bear left.","distanceAlongGeometry":76}],"intersections":[{"entry":[true,true,false,false,true],"in":3,"bearings":[13,35,120,201,291],"duration":1.739,"turn_weight":5,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.109,"geometry_index":105,"location":[-9.149552,38.726009]},{"entry":[true,false,false,false],"in":2,"bearings":[27,117,215,296],"duration":24.729,"turn_duration":2.033,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":27.802,"geometry_index":106,"location":[-9.149477,38.726092]},{"entry":[true,true,false],"in":2,"bearings":[24,55,205],"duration":3.934,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.793,"geometry_index":109,"location":[-9.148743,38.727263]},{"entry":[true,false,false],"in":1,"bearings":[23,204,220],"duration":3.896,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.749,"geometry_index":110,"location":[-9.148628,38.727465]},{"entry":[true,false,false],"in":2,"bearings":[25,175,203],"duration":5.823,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":7.124,"geometry_index":111,"location":[-9.148501,38.727693]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,205,301],"duration":19.188,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":21.032,"geometry_index":112,"location":[-9.148301,38.728032]},{"entry":[true,false,false,false],"in":2,"bearings":[25,115,206,296],"duration":3.404,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.696,"geometry_index":114,"location":[-9.147676,38.729029]},{"entry":[true,true,false],"in":2,"bearings":[26,113,205],"duration":10.928,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.364,"geometry_index":115,"location":[-9.147626,38.729112]},{"entry":[true,false,false],"in":2,"bearings":[26,115,206],"duration":1.385,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.673,"geometry_index":117,"location":[-9.147128,38.729917]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,206,296],"duration":9.95,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.166,"geometry_index":118,"location":[-9.147075,38.730002]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,206,296],"duration":3.633,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.977,"geometry_index":119,"location":[-9.146675,38.730651]},{"entry":[true,true,false,false],"in":2,"bearings":[24,115,206,296],"duration":13.487,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.497,"geometry_index":120,"location":[-9.146608,38.730759]},{"entry":[true,true,false],"in":2,"bearings":[26,76,205],"duration":2.019,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.45,"geometry_index":123,"location":[-9.146115,38.731582]},{"entry":[true,false,false],"in":2,"bearings":[24,99,206],"duration":1.354,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.633,"geometry_index":124,"location":[-9.146038,38.731707]},{"entry":[true,false,false,false],"in":2,"bearings":[26,117,204,294],"duration":15.074,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.007,"geometry_index":125,"location":[-9.145993,38.731785]},{"entry":[true,true,false],"in":2,"bearings":[25,68,206],"duration":2.965,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.608,"geometry_index":126,"location":[-9.145505,38.732581]},{"entry":[true,false,false,false],"in":2,"bearings":[25,115,205,296],"duration":5.128,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.809,"geometry_index":127,"location":[-9.145417,38.732728]},{"entry":[true,false,false],"in":2,"bearings":[26,175,205],"duration":7.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":8.82,"geometry_index":128,"location":[-9.145325,38.732883]},{"mapbox_streets_v8":{"class":"primary"},"location":[-9.145092,38.73323],"geometry_index":130,"admin_index":0,"weight":7.005,"is_urban":true,"traffic_signal":true,"turn_duration":2.009,"turn_weight":5,"duration":3.645,"bearings":[34,103,210,294],"out":0,"in":2,"entry":[true,false,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[36,108,214,296],"duration":2.299,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.806,"geometry_index":131,"location":[-9.145029,38.733303]},{"entry":[true,true,false,false],"in":2,"bearings":[40,89,216,291],"duration":9.5,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.626,"geometry_index":132,"location":[-9.144933,38.733406]},{"entry":[false,true],"in":0,"bearings":[184,339],"duration":5.564,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.815,"geometry_index":139,"location":[-9.144673,38.733856]},{"entry":[false,false,true,true],"in":1,"bearings":[106,157,260,336],"duration":2.621,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":4.185,"geometry_index":142,"location":[-9.144818,38.73414]},{"entry":[false,false,false,true],"in":1,"bearings":[89,156,262,349],"duration":2.017,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.45,"geometry_index":144,"location":[-9.14488,38.73425]},{"entry":[false,false,false,true],"in":1,"bearings":[92,169,258,349],"duration":17.407,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":26.315,"geometry_index":145,"location":[-9.144903,38.734339]},{"entry":[true,false,false,true],"in":1,"bearings":[89,169,267,349],"duration":1.103,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.342,"geometry_index":148,"location":[-9.145092,38.735105]},{"entry":[false,false,false,true],"in":1,"bearings":[89,169,267,349],"duration":1.103,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.342,"geometry_index":149,"location":[-9.145107,38.735166]},{"entry":[false,false,false,true],"in":1,"bearings":[89,169,267,349],"duration":4.233,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":5.177,"geometry_index":150,"location":[-9.145123,38.73523]},{"entry":[true,false,true],"in":1,"bearings":[32,169,349],"duration":10.519,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":12.877,"geometry_index":151,"location":[-9.145182,38.735469]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,260,349],"duration":3.735,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.117,"geometry_index":152,"location":[-9.145341,38.736111]},{"entry":[true,false,false,true],"in":1,"bearings":[83,169,263,349],"duration":2.107,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.573,"geometry_index":153,"location":[-9.145367,38.736216]},{"entry":[false,false,false,true],"in":1,"bearings":[83,169,263,349],"duration":12.757,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":15.619,"geometry_index":154,"location":[-9.145396,38.736338]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":4.557,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.124,"geometry_index":155,"location":[-9.145577,38.737089]},{"entry":[false,false,true,true],"in":1,"bearings":[79,169,259,349],"duration":2.407,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.94,"geometry_index":156,"location":[-9.145614,38.737243]},{"entry":[false,false,false,true],"in":1,"bearings":[80,169,260,349],"duration":12.54,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":15.353,"geometry_index":157,"location":[-9.145652,38.737402]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":2.674,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":0.817,"geometry_index":159,"location":[-9.14585,38.73823]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":0.674,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":0.817,"geometry_index":160,"location":[-9.14586,38.738272]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":5.74,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":7.023,"geometry_index":161,"location":[-9.145871,38.738318]},{"entry":[false,true],"in":0,"bearings":[170,349],"duration":8.133,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.963,"geometry_index":163,"location":[-9.145962,38.738698]},{"entry":[true,false,false,true],"in":1,"bearings":[79,169,258,350],"duration":1.49,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.816,"geometry_index":165,"location":[-9.146096,38.739238]},{"entry":[false,false,true,true],"in":1,"bearings":[79,170,259,349],"duration":0.992,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.192,"geometry_index":166,"location":[-9.146124,38.739358]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,258,354],"duration":4.874,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":5.959,"geometry_index":167,"location":[-9.146147,38.739448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-9.146182,38.739894],"geometry_index":169,"admin_index":0,"weight":19.871,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.026,"turn_weight":5,"duration":12.166,"bearings":[24,178,352],"out":2,"in":1,"entry":[true,false,true]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[169,347],"duration":5.52,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.762,"geometry_index":171,"location":[-9.146486,38.741174]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[167,349],"duration":2.864,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.508,"geometry_index":172,"location":[-9.146662,38.741783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[169,349],"duration":5.5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.737,"geometry_index":173,"location":[-9.146737,38.742095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[169,349],"duration":4.664,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.713,"geometry_index":174,"location":[-9.146856,38.742579]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[169,349],"duration":4.971,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.09,"geometry_index":175,"location":[-9.146976,38.743079]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-9.147104,38.74359],"geometry_index":176,"admin_index":0,"weight":7.144,"is_urban":true,"mapbox_streets_v8":{"class":"primary_link"},"duration":9.775,"bearings":[20,169,344],"out":0,"in":1,"turn_duration":0.055,"classes":["tunnel"],"entry":[true,false,true]},{"entry":[false,true],"in":0,"bearings":[167,350],"duration":13.5,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":9.923,"geometry_index":178,"location":[-9.147097,38.744054]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[170,343],"duration":4.5,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":3.307,"geometry_index":179,"location":[-9.147245,38.744715]},{"mapbox_streets_v8":{"class":"primary"},"location":[-9.147326,38.744926],"geometry_index":180,"admin_index":0,"weight":7.348,"is_urban":true,"turn_weight":6,"duration":1.114,"bearings":[153,163,177,353],"out":3,"in":1,"turn_duration":0.014,"classes":["tunnel"],"entry":[false,false,false,true]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"bearings":[173,348],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":181,"location":[-9.147341,38.745026]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida da República (Túnel)"}],"type":"turn","modifier":"slight left","text":"Avenida da República (Túnel)"},"distanceAlongGeometry":2276.03},{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Avenida da República (Túnel)"}],"type":"turn","modifier":"slight left","text":"Avenida da República (Túnel)"},"distanceAlongGeometry":402.336}],"destinations":"A1 NORTE, aeroporto, Saldanha","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right toward A1 NORTE/aeroporto/Saldanha.","modifier":"slight right","bearing_after":35,"bearing_before":21,"location":[-9.149552,38.726009]},"speedLimitSign":"vienna","name":"Avenida Fontes Pereira de Melo","weight_typical":391.493,"duration_typical":325.998,"duration":325.998,"distance":2276.03,"driving_side":"right","weight":391.493,"mode":"driving","geometry":"qvszhA~emmPeDuCe[mQqH{Dmb@qTsKeFgM}FeToKch@_YeTaLeDcBok@qZyDqBiDiBqg@_XwEeCsUeLaNgHwLkGyFyC{CyAwp@o]eHoDuHwDgM{GmFuDqC}BmE_EoDcEgEaEiBqAgBg@oB[iBC_BVyA`@sGtCiEhBqCxAiA`@qDl@eCb@yb@xG{Fz@yB\\_C^}MtBcg@|HqEr@sFx@}m@hJsHhA}HjAon@jJgC^sAR{ATgC`@oRrCwZzE_En@oFv@sDl@cKn@wNTiLfAuaAvOae@~IoRtCg]lFg^nF}^~FwJmDgP~Cih@fHeL`DgE\\{@LyNrC"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1465.79},{"ssmlAnnouncement":"In a quarter mile, Bear right toward Norte.","announcement":"In a quarter mile, Bear right toward Norte.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right toward Norte, Aeroporto. Then Turn right to take the ramp toward A1 Norte.","announcement":"Bear right toward Norte, Aeroporto. Then Turn right to take the ramp toward A1 Norte.","distanceAlongGeometry":134.583}],"intersections":[{"entry":[true,false,true,true],"in":1,"bearings":[84,167,335,352],"duration":7.068,"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid":false,"active":false}],"turn_duration":0.048,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":2,"weight":5.16,"geometry_index":183,"location":[-9.147422,38.745309]},{"entry":[false,false,true],"in":0,"bearings":[155,173,347],"duration":21.447,"turn_weight":5.75,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":32.005,"geometry_index":184,"location":[-9.147614,38.745624]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[170,350],"duration":11.463,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":19.042,"geometry_index":186,"location":[-9.148164,38.747882]},{"entry":[false,true],"in":0,"bearings":[172,347],"duration":11.274,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":18.81,"geometry_index":194,"location":[-9.148244,38.748957]},{"entry":[false,true],"in":0,"bearings":[159,339],"duration":5.684,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.963,"geometry_index":199,"location":[-9.148702,38.749961]},{"entry":[false,true],"in":0,"bearings":[159,337],"duration":7.484,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.168,"geometry_index":200,"location":[-9.148956,38.750467]},{"entry":[true,false,true],"in":1,"bearings":[6,157,338],"duration":4.071,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.979,"geometry_index":201,"location":[-9.14931,38.751123]},{"entry":[false,false,true],"in":1,"bearings":[107,159,337],"duration":14.422,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":18.64,"geometry_index":203,"location":[-9.149459,38.751418]},{"entry":[false,true],"in":0,"bearings":[157,338],"duration":14.713,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":18.023,"geometry_index":204,"location":[-9.149866,38.752184]},{"entry":[false,true,true],"in":0,"bearings":[158,337,346],"duration":19.162,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":23.448,"geometry_index":205,"location":[-9.150275,38.752969]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[157,339],"duration":3.027,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.708,"geometry_index":206,"location":[-9.151261,38.754766]},{"entry":[false,true],"in":0,"bearings":[159,336],"duration":18.54,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":22.248,"geometry_index":207,"location":[-9.151417,38.755079]},{"entry":[false,false,true],"in":1,"bearings":[142,153,326],"duration":4.557,"turn_weight":1,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":6.435,"geometry_index":211,"location":[-9.152393,38.756763]},{"bearings":[146,321],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":212,"location":[-9.152645,38.757058]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Norte"},{"type":"text","text":"/"},{"type":"text","text":"Aeroporto"}],"type":"turn","modifier":"slight right","text":"Norte / Aeroporto"},"distanceAlongGeometry":1497.123},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Norte"},{"type":"text","text":"/"},{"type":"text","text":"Aeroporto"}],"type":"turn","modifier":"slight right","text":"Norte / Aeroporto"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left onto Avenida da República (Túnel).","modifier":"slight left","bearing_after":347,"bearing_before":347,"location":[-9.147422,38.745309]},"speedLimitSign":"vienna","name":"Avenida da República (Túnel)","weight_typical":202.705,"duration_typical":154.643,"duration":154.643,"distance":1497.123,"driving_side":"right","weight":202.705,"mode":"driving","geometry":"yly{hAz`imPuR~J}YvFeqBrYoH`A}El@}CXmDJqTeAmBA{BJoJdA{JpB{Ab@}Bx@kKfEu^zNs^zN_h@bUyInDsFxB{n@lXap@pXioBr|@qRvHgR~Ism@rXmHdD}\\dRmQvN_k@bm@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right to take the ramp toward A1 Norte, Aeroporto.","announcement":"Turn right to take the ramp toward A1 Norte, Aeroporto.","distanceAlongGeometry":126.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-9.153383,38.757762],"geometry_index":213,"admin_index":0,"weight":7.906,"is_urban":true,"mapbox_streets_v8":{"class":"primary_link"},"traffic_signal":true,"turn_duration":2.019,"duration":12.999,"bearings":[61,141,231,315,336],"out":4,"in":1,"entry":[false,false,false,true,true]},{"entry":[false,false,true],"in":1,"bearings":[131,149,319],"duration":9.114,"turn_weight":5.5,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":16.394,"geometry_index":217,"location":[-9.153728,38.758237]},{"bearings":[140,323],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":219,"location":[-9.154161,38.758629]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"A1 Norte"},{"type":"text","text":"/"},{"type":"text","text":"Aeroporto"}],"type":"turn","modifier":"right","text":"A1 Norte / Aeroporto"},"distanceAlongGeometry":195.938}],"destinations":"Norte, Aeroporto, Alameda das Linhas de Torres, Lumiar","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right toward Norte/Aeroporto/Alameda das Linhas de Torres/Lumiar.","modifier":"slight right","bearing_after":319,"bearing_before":321,"location":[-9.153383,38.757762]},"speedLimitSign":"vienna","name":"Campo Grande","weight_typical":38.762,"duration_typical":34.165,"duration":34.165,"distance":195.938,"driving_side":"right","weight":38.762,"mode":"driving","geometry":"cwq|hAlutmPeBT_CpAiRhOeB~@qQxS}DfEiRtQ_OjL"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","announcement":"In 1 mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","distanceAlongGeometry":1892.574},{"ssmlAnnouncement":"In a half mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","announcement":"In a half mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular toward Norte, Oeste.","announcement":"Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular toward Norte, Oeste.","distanceAlongGeometry":213.333}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[147,327,359],"duration":4.51,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.063,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":2,"weight":5.336,"geometry_index":221,"location":[-9.154674,38.759194]},{"entry":[true,false,false],"in":1,"bearings":[43,180,277],"duration":6.154,"turn_duration":2.131,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":4.828,"geometry_index":223,"location":[-9.154676,38.759382]},{"entry":[true,false,false],"in":1,"bearings":[69,223,248],"duration":8.576,"turn_weight":0.75,"turn_duration":0.042,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":10.99,"geometry_index":225,"location":[-9.154525,38.759509]},{"entry":[true,true,false,true],"in":2,"bearings":[68,153,249,336],"duration":9.329,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":11.172,"geometry_index":226,"location":[-9.153836,38.759712]},{"entry":[true,false,false],"in":2,"bearings":[59,168,240],"duration":12.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":14.523,"geometry_index":230,"location":[-9.15306,38.759999]},{"entry":[true,false,false],"in":1,"bearings":[67,231,246],"duration":8.973,"turn_weight":14,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":24.518,"geometry_index":232,"location":[-9.152085,38.760522]},{"entry":[true,true,false],"in":2,"bearings":[65,84,247],"duration":19.681,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":22.611,"geometry_index":233,"location":[-9.151109,38.760845]},{"entry":[true,false,false],"in":2,"bearings":[71,229,248],"duration":4.993,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":5.732,"geometry_index":235,"location":[-9.148859,38.761605]},{"entry":[true,false],"in":1,"bearings":[72,251],"duration":2.314,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.661,"geometry_index":236,"location":[-9.148265,38.76176]},{"entry":[true,false],"in":1,"bearings":[74,252],"duration":29.769,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":34.235,"geometry_index":237,"location":[-9.147969,38.761834]},{"entry":[true,false,false],"in":2,"bearings":[77,234,256],"duration":13.282,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":14.934,"geometry_index":239,"location":[-9.145568,38.762324]},{"entry":[true,true,false],"in":2,"bearings":[83,93,261],"duration":12.518,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":14.074,"geometry_index":242,"location":[-9.142245,38.762887]},{"entry":[true,false,false],"in":2,"bearings":[90,258,267],"duration":8.095,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":9.097,"geometry_index":246,"location":[-9.139055,38.763108]},{"entry":[true,false],"in":1,"bearings":[91,272],"duration":8.585,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":9.658,"geometry_index":248,"location":[-9.137378,38.763082]},{"bearings":[91,271],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":249,"location":[-9.13559,38.763048]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Norte"},{"type":"text","text":"/"},{"type":"text","text":"Oeste"}],"type":"fork","modifier":"left","text":"Norte / Oeste"},"distanceAlongGeometry":1912.574}],"destinations":"A1 Norte, Aeroporto","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right to take the ramp toward A1 Norte/Aeroporto.","modifier":"slight right","bearing_after":359,"bearing_before":327,"location":[-9.154674,38.759194]},"speedLimitSign":"vienna","name":"Avenida Marechal Craveiro Lopes/2ª Circular","weight_typical":193.965,"duration_typical":157.675,"duration":157.675,"distance":1912.574,"driving_side":"right","weight":193.965,"mode":"driving","geometry":"spt|hAbfwmPiDp@mEm@kB}AqCoEuKaj@sFiWeAaE}AwEeDkJ}Occ@wNyWeS_|@sPyn@{\\y{AuHcd@sCoQiGad@iU_pBgYarCeD{^wBw[iJw|BEuDq@om@WmTAqj@t@g|@bAwnB~@_nB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 60 miles.","announcement":"Continue for 60 miles.","distanceAlongGeometry":96682.352},{"ssmlAnnouncement":"In 2 miles, Take exit 7.","announcement":"In 2 miles, Take exit 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 7.","announcement":"In a half mile, Take exit 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 7 onto A 23 toward Abrantes, Torres Novas.","announcement":"Take exit 7 onto A 23 toward Abrantes, Torres Novas.","distanceAlongGeometry":266.667}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[88,101,271],"duration":4.951,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":5.548,"geometry_index":250,"location":[-9.133814,38.763016]},{"entry":[true,false],"in":1,"bearings":[85,268],"duration":3.107,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.495,"geometry_index":251,"location":[-9.132658,38.763045]},{"entry":[true,false],"in":1,"bearings":[80,262],"duration":2.037,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.292,"geometry_index":253,"location":[-9.131933,38.763109]},{"entry":[true,false],"in":1,"bearings":[75,260],"duration":3.107,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.495,"geometry_index":254,"location":[-9.131441,38.763179]},{"entry":[true,false],"in":1,"bearings":[69,254],"duration":4.044,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":4.549,"geometry_index":256,"location":[-9.130741,38.763331]},{"entry":[true,false],"in":1,"bearings":[62,244],"duration":3.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.995,"geometry_index":258,"location":[-9.129872,38.763623]},{"entry":[true,false],"in":1,"bearings":[54,238],"duration":13.97,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":15.716,"geometry_index":260,"location":[-9.129141,38.763953]},{"entry":[true,true,false],"in":2,"bearings":[38,51,220],"duration":25.426,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":28.581,"geometry_index":265,"location":[-9.12701,38.765579]},{"entry":[true,false],"in":1,"bearings":[12,196],"duration":2.104,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.367,"geometry_index":272,"location":[-9.124348,38.769457]},{"entry":[true,false],"in":1,"bearings":[11,192],"duration":21.168,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":23.814,"geometry_index":273,"location":[-9.124236,38.769853]},{"entry":[true,false,false],"in":2,"bearings":[5,180,187],"duration":6.6,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":8.568,"geometry_index":282,"location":[-9.12333,38.773754]},{"entry":[true,false],"in":1,"bearings":[5,185],"duration":11.025,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":12.679,"geometry_index":283,"location":[-9.123216,38.774801]},{"entry":[true,false],"in":1,"bearings":[6,186],"duration":4.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":5.175,"geometry_index":286,"location":[-9.123028,38.776558]},{"entry":[true,true,false],"in":2,"bearings":[5,96,186],"duration":1.226,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.402,"geometry_index":287,"location":[-9.122938,38.777277]},{"entry":[true,false,false],"in":2,"bearings":[5,94,185],"duration":3.722,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":4.271,"geometry_index":288,"location":[-9.122917,38.777465]},{"entry":[true,false],"in":1,"bearings":[5,185],"duration":2.857,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.286,"geometry_index":290,"location":[-9.122856,38.778044]},{"entry":[true,true,false],"in":2,"bearings":[5,39,185],"duration":7.208,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":8.28,"geometry_index":291,"location":[-9.122804,38.778488]},{"entry":[true,false,true],"in":1,"bearings":[13,182,358],"duration":14.737,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"weight":16.92,"geometry_index":293,"location":[-9.122687,38.779651]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.122538,38.782172],"geometry_index":300,"admin_index":0,"weight":7.694,"is_urban":true,"turn_weight":6,"duration":1.48,"bearings":[15,158,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,195],"duration":7.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.155,"geometry_index":301,"location":[-9.122459,38.78241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,214],"duration":7.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.594,"geometry_index":306,"location":[-9.121794,38.783448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[-9.12075,38.784365],"geometry_index":311,"admin_index":0,"weight":21.509,"is_urban":true,"turn_weight":0.75,"duration":18.059,"bearings":[43,207,222],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":8.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":10.273,"geometry_index":315,"location":[-9.118041,38.786701]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":0.669,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.786,"geometry_index":318,"location":[-9.116805,38.787885]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[-9.116711,38.787979],"geometry_index":319,"admin_index":0,"weight":8.021,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":6.845,"bearings":[36,46,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,215],"duration":1.87,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":2.197,"geometry_index":321,"location":[-9.115727,38.789048]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":9.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":11.231,"geometry_index":322,"location":[-9.115477,38.789346]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.946,"geometry_index":328,"location":[-9.11411,38.791128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,209],"duration":15.081,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":17.343,"geometry_index":329,"location":[-9.114005,38.791278]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[-9.112439,38.793783],"geometry_index":334,"admin_index":0,"weight":3.023,"is_urban":true,"turn_weight":1,"duration":1.778,"bearings":[26,189,205],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":0.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.517,"geometry_index":335,"location":[-9.112223,38.794135]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":25.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":29.04,"geometry_index":336,"location":[-9.112172,38.794221]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":10.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":12.277,"geometry_index":339,"location":[-9.109048,38.799336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":37.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":41.704,"geometry_index":340,"location":[-9.107602,38.801699]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":3.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":3.666,"geometry_index":348,"location":[-9.102928,38.810011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,198],"duration":13.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":15.028,"geometry_index":349,"location":[-9.102613,38.810785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,192],"duration":3.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":4.031,"geometry_index":357,"location":[-9.101331,38.814849]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,193],"duration":24.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":26.058,"geometry_index":358,"location":[-9.101015,38.815941]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":74.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":79.916,"geometry_index":359,"location":[-9.09916,38.823058]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":6.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":7.353,"geometry_index":366,"location":[-9.091977,38.844495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.090652,38.846263],"geometry_index":367,"admin_index":0,"weight":29.573,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.172,"bearings":[30,48,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.086048,38.852469],"geometry_index":369,"admin_index":0,"weight":9.338,"is_urban":false,"turn_weight":0.75,"duration":8.186,"bearings":[30,201,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,209],"duration":84.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":88.518,"geometry_index":371,"location":[-9.084701,38.854291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,217],"duration":2.21,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.32,"geometry_index":391,"location":[-9.069122,38.871255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,211],"duration":33.968,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.818,"geometry_index":392,"location":[-9.068753,38.871727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,210],"duration":2.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.103,"geometry_index":395,"location":[-9.063414,38.879215]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":30.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.695,"geometry_index":396,"location":[-9.063101,38.879665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":6.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.081,"geometry_index":402,"location":[-9.057679,38.885598]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,89,234],"duration":4.386,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.488,"geometry_index":405,"location":[-9.056381,38.886374]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.055527,38.886828],"geometry_index":406,"admin_index":0,"weight":23.051,"is_urban":false,"turn_weight":15,"duration":7.931,"bearings":[38,51,63,76,170,236],"out":0,"in":5,"turn_duration":0.077,"classes":["toll","motorway"],"entry":[true,true,true,true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,229],"duration":5.105,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.233,"geometry_index":408,"location":[-9.054545,38.887582]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.053826,38.887996],"geometry_index":410,"admin_index":0,"weight":4.025,"is_urban":false,"turn_weight":1.5,"duration":2.54,"bearings":[38,213,224,237],"out":0,"in":3,"turn_duration":0.077,"classes":["toll","motorway"],"entry":[true,false,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":11.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.75,"geometry_index":411,"location":[-9.053455,38.888362]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":1.757,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.801,"geometry_index":412,"location":[-9.051728,38.890071]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":10.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.287,"geometry_index":413,"location":[-9.051439,38.890359]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.049638,38.892398],"geometry_index":416,"admin_index":0,"weight":7.858,"is_urban":false,"turn_weight":1,"duration":6.717,"bearings":[28,191,212],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.048652,38.89386],"geometry_index":417,"admin_index":0,"weight":6.97,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.822,"bearings":[25,51,208],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.047729,38.895376],"geometry_index":419,"admin_index":0,"weight":4.142,"is_urban":false,"turn_weight":1,"duration":3.084,"bearings":[26,196,206],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":27.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":28.68,"geometry_index":420,"location":[-9.047297,38.896073]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,213],"duration":2.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.275,"geometry_index":424,"location":[-9.043155,38.902342]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,214],"duration":16.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.315,"geometry_index":425,"location":[-9.042757,38.902807]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":2.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.257,"geometry_index":429,"location":[-9.038762,38.905885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":52.235,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":52.235,"geometry_index":430,"location":[-9.0382,38.90625]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,228],"duration":1.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.789,"geometry_index":433,"location":[-9.024895,38.915003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,230],"duration":10.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.43,"geometry_index":434,"location":[-9.024434,38.915301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,229],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.806,"geometry_index":435,"location":[-9.021705,38.917134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":44.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":42.586,"geometry_index":436,"location":[-9.021244,38.917452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,202],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.979,"geometry_index":443,"location":[-9.011684,38.926272]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,201],"duration":9.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.085,"geometry_index":444,"location":[-9.011189,38.927284]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":6.116,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.811,"geometry_index":445,"location":[-9.01003,38.929464]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,208],"duration":44.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":41.937,"geometry_index":447,"location":[-9.00916,38.93088]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.001176,38.940308],"geometry_index":455,"admin_index":0,"weight":3.131,"is_urban":false,"turn_weight":0.5,"duration":2.776,"bearings":[28,199,208],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,208],"duration":21.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.158,"geometry_index":456,"location":[-9.000738,38.940945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,221],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.524,"geometry_index":462,"location":[-8.996104,38.945091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":26.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.633,"geometry_index":463,"location":[-8.995781,38.945407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,181],"duration":18.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.2,"geometry_index":470,"location":[-8.993325,38.951792]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,208],"duration":15.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.942,"geometry_index":476,"location":[-8.99198,38.956261]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,225],"duration":1.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.055,"geometry_index":480,"location":[-8.988646,38.959341]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":7.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.098,"geometry_index":481,"location":[-8.988364,38.959543]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,222],"duration":1.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.578,"geometry_index":483,"location":[-8.986597,38.960956]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,218],"duration":12.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.89,"geometry_index":484,"location":[-8.98625,38.961297]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[11,194],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.71,"geometry_index":488,"location":[-8.984515,38.964326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,191],"duration":18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.1,"geometry_index":489,"location":[-8.984402,38.964793]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,210],"duration":4.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.844,"geometry_index":496,"location":[-8.982696,38.969325]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,219],"duration":2.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.457,"geometry_index":498,"location":[-8.981888,38.970178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,224],"duration":3.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.752,"geometry_index":499,"location":[-8.981294,38.970651]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.980403,38.971399],"geometry_index":500,"admin_index":0,"weight":10.323,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.891,"bearings":[38,62,223],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.978356,38.973852],"geometry_index":503,"admin_index":0,"weight":5.693,"is_urban":false,"turn_weight":0.5,"duration":5.489,"bearings":[26,193,208],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":100.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":97.597,"geometry_index":504,"location":[-8.97751,38.975174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":7.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.067,"geometry_index":516,"location":[-8.96722,39.000751]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,184],"duration":3.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.667,"geometry_index":517,"location":[-8.967048,39.002653]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.966947,39.003642],"geometry_index":518,"admin_index":0,"weight":13.653,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.672,"bearings":[3,185],"out":0,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,186],"duration":3.147,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.203,"geometry_index":520,"location":[-8.966662,39.00725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":2.751,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.82,"geometry_index":521,"location":[-8.966598,39.008074]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,182],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.054,"geometry_index":522,"location":[-8.966561,39.008797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,184],"duration":2.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.402,"geometry_index":523,"location":[-8.966518,39.009327]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":4.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.108,"geometry_index":524,"location":[-8.96647,39.009947]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.966384,39.011007],"geometry_index":525,"admin_index":0,"weight":6.741,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.596,"bearings":[3,8,184],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":3.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.098,"geometry_index":526,"location":[-8.96627,39.012712]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":7.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.735,"geometry_index":527,"location":[-8.966207,39.013512]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.96605,39.015465],"geometry_index":528,"admin_index":0,"weight":49.05,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":49.057,"bearings":[4,13,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.961199,39.029568],"geometry_index":551,"admin_index":0,"weight":6.333,"is_urban":false,"turn_weight":1.1,"duration":5.375,"bearings":[12,184,192],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,193],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.739,"geometry_index":553,"location":[-8.960805,39.030979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,194],"duration":72.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":66.933,"geometry_index":554,"location":[-8.960656,39.031437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":8.149,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.13,"geometry_index":566,"location":[-8.947235,39.048187]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,212],"duration":94.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":83.035,"geometry_index":568,"location":[-8.945771,39.050111]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[11,193],"duration":0.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.573,"geometry_index":591,"location":[-8.933094,39.073892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,191],"duration":175.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":153.641,"geometry_index":592,"location":[-8.933049,39.074066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,239],"duration":15.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.094,"geometry_index":633,"location":[-8.915116,39.117923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,228],"duration":1.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.193,"geometry_index":637,"location":[-8.910699,39.12111]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[52,61,230],"duration":15.154,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.01,"geometry_index":638,"location":[-8.910321,39.121356]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.906286,39.124126],"geometry_index":642,"admin_index":0,"weight":33.351,"is_urban":false,"turn_weight":1,"duration":34.073,"bearings":[40,215,220],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,223],"duration":2.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.985,"geometry_index":648,"location":[-8.897864,39.130911]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,219],"duration":5.513,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.238,"geometry_index":649,"location":[-8.897383,39.131365]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,217],"duration":1.849,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.756,"geometry_index":650,"location":[-8.896193,39.132578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,211],"duration":10.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.669,"geometry_index":651,"location":[-8.895851,39.133016]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":9.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.11,"geometry_index":653,"location":[-8.894047,39.135437]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,217],"duration":2.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.518,"geometry_index":656,"location":[-8.892121,39.137603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,219],"duration":0.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.715,"geometry_index":657,"location":[-8.89153,39.138163]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.33,"geometry_index":658,"location":[-8.891365,39.13832]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":0.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.581,"geometry_index":659,"location":[-8.89105,39.13861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.890913,39.138735],"geometry_index":660,"admin_index":0,"weight":9.727,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.248,"bearings":[44,53,220],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.888371,39.1407],"geometry_index":663,"admin_index":0,"weight":1.311,"is_urban":false,"turn_weight":1,"duration":0.348,"bearings":[45,213,227],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,225],"duration":1.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.412,"geometry_index":664,"location":[-8.888291,39.140761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,230],"duration":9.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.958,"geometry_index":665,"location":[-8.88789,39.141025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,217],"duration":149.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":138.475,"geometry_index":668,"location":[-8.885603,39.142999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.186,"geometry_index":694,"location":[-8.846465,39.171637]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":82.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":74.349,"geometry_index":695,"location":[-8.846078,39.171854]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,216],"duration":2.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.819,"geometry_index":705,"location":[-8.824373,39.187872]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,218],"duration":56.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.827,"geometry_index":706,"location":[-8.823913,39.188326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":0.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.7,"geometry_index":715,"location":[-8.807884,39.19781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":38.757,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.881,"geometry_index":716,"location":[-8.807624,39.197897]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,242],"duration":6.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.634,"geometry_index":721,"location":[-8.794915,39.202147]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":2.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.073,"geometry_index":722,"location":[-8.792979,39.203007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":4.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.407,"geometry_index":723,"location":[-8.792275,39.203341]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.790797,39.20407],"geometry_index":724,"admin_index":0,"weight":11.232,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.501,"bearings":[56,68,238],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.786891,39.206253],"geometry_index":727,"admin_index":0,"weight":8.519,"is_urban":false,"turn_weight":0.5,"duration":8.932,"bearings":[51,224,233],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,229],"duration":153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":137.7,"geometry_index":731,"location":[-8.784248,39.207962]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,240],"duration":21.921,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.729,"geometry_index":755,"location":[-8.747251,39.241218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,210],"duration":33.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":30.094,"geometry_index":763,"location":[-8.741863,39.245589]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.756,"geometry_index":769,"location":[-8.737112,39.254092]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":5.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.438,"geometry_index":770,"location":[-8.736848,39.254571]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.416,"geometry_index":771,"location":[-8.736018,39.256036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,204],"duration":1.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.253,"geometry_index":772,"location":[-8.73565,39.256663]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.73544,39.256995],"geometry_index":773,"admin_index":0,"weight":3.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.715,"bearings":[25,41,206],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":5.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.98,"geometry_index":775,"location":[-8.734841,39.257923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.252,"geometry_index":777,"location":[-8.733887,39.259254]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":3.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.759,"geometry_index":778,"location":[-8.733645,39.259574]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.732892,39.260498],"geometry_index":780,"admin_index":0,"weight":4.487,"is_urban":false,"turn_weight":0.75,"duration":3.952,"bearings":[33,197,213],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,215],"duration":7.593,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.213,"geometry_index":782,"location":[-8.732128,39.261382]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,218],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.126,"geometry_index":784,"location":[-8.730522,39.263053]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":6.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.008,"geometry_index":785,"location":[-8.730017,39.263539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.728529,39.264861],"geometry_index":787,"admin_index":0,"weight":3.48,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.672,"bearings":[44,52,221],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":8.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.202,"geometry_index":788,"location":[-8.727601,39.265607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,228],"duration":1.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.41,"geometry_index":791,"location":[-8.725302,39.267271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,232],"duration":23.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.852,"geometry_index":792,"location":[-8.724873,39.267535]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.71801,39.271232],"geometry_index":798,"admin_index":0,"weight":6.962,"is_urban":false,"turn_weight":1,"duration":6.285,"bearings":[62,222,240],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":33.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":30.825,"geometry_index":801,"location":[-8.715979,39.272038]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":1.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.368,"geometry_index":808,"location":[-8.705153,39.276275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":42.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":38.288,"geometry_index":809,"location":[-8.704676,39.276461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,212],"duration":5.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.363,"geometry_index":822,"location":[-8.692152,39.283348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,199],"duration":23.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.332,"geometry_index":824,"location":[-8.691326,39.284951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.215,"geometry_index":829,"location":[-8.689339,39.291446]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,199],"duration":4.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.377,"geometry_index":830,"location":[-8.689179,39.291805]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,202],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.52,"geometry_index":831,"location":[-8.688521,39.293096]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,205],"duration":24.386,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.948,"geometry_index":832,"location":[-8.688264,39.293525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.926,"geometry_index":840,"location":[-8.683146,39.299262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":13.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.917,"geometry_index":841,"location":[-8.682898,39.299477]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,214],"duration":0.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.767,"geometry_index":844,"location":[-8.679929,39.302494]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,211],"duration":44.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":39.922,"geometry_index":845,"location":[-8.679768,39.3027]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":1.466,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.319,"geometry_index":853,"location":[-8.670624,39.313206]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":24.362,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.926,"geometry_index":854,"location":[-8.670273,39.313513]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,209],"duration":0.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.853,"geometry_index":860,"location":[-8.66498,39.319233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,210],"duration":37.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":33.64,"geometry_index":861,"location":[-8.664804,39.319467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":4.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.113,"geometry_index":865,"location":[-8.657985,39.328805]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,212],"duration":84.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.112,"geometry_index":866,"location":[-8.657087,39.329918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":8.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.29,"geometry_index":886,"location":[-8.644812,39.351817]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,225],"duration":136.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":122.85,"geometry_index":887,"location":[-8.642672,39.353483]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,335],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.618,"geometry_index":918,"location":[-8.637404,39.389028]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.638038,39.390125],"geometry_index":920,"admin_index":0,"weight":13.376,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.886,"bearings":[158,334,353],"out":1,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.639277,39.394037],"geometry_index":926,"admin_index":0,"weight":8.355,"is_urban":false,"turn_weight":1,"duration":8.183,"bearings":[156,173,357],"out":2,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,181],"duration":282.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":261.42,"geometry_index":928,"location":[-8.639335,39.396295]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,347],"duration":2.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.095,"geometry_index":984,"location":[-8.628946,39.472781]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,344],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.7,"geometry_index":985,"location":[-8.629125,39.473379]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[159,337],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":987,"location":[-8.62981,39.474956]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Abrantes"},{"type":"text","text":"/"},{"type":"text","text":"Torres Novas"}],"type":"off ramp","modifier":"right","text":"Abrantes / Torres Novas"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"7"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A23","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 23"}],"type":"off ramp","modifier":"right","text":"Exit 7 A 23"},"distanceAlongGeometry":96709.016},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Abrantes"},{"type":"text","text":"/"},{"type":"text","text":"Torres Novas"}],"type":"off ramp","modifier":"right","text":"Abrantes / Torres Novas"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"7"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A23","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 23"}],"type":"off ramp","modifier":"right","text":"Exit 7 A 23"},"distanceAlongGeometry":3218.688}],"destinations":"Norte, Oeste, Sul (Ponte Vasco da Gama), Aeroporto (Chegadas)","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular toward Norte/Oeste/Sul (Ponte Vasco da Gama)/Aeroporto (Chegadas).","modifier":"slight left","bearing_after":88,"bearing_before":91,"location":[-9.133814,38.763016]},"speedLimitSign":"vienna","name":"Avenida Marechal Craveiro Lopes/2ª Circular","weight_typical":3119.176,"duration_typical":3220.001,"duration":3220.001,"distance":96709.016,"driving_side":"right","weight":3119.176,"mode":"driving","geometry":"o_||hAjnnlPy@ggAw@wXgAqRkCw]mCiTaDmUoGe[wHcYeIsWmIaT}KaVkKeRoReZgOqRqg@ek@uy@ey@cYyTkWmQ_a@aUc`@sQsa@iNm^}JwW_Faa@mGqt@cLkb@uGmXcEwToDoNyBcFw@uKaBie@cEm`AcFoO{@gy@oDab@kC}k@sDwJi@mPy@wQ_AwZgBiw@oEkOYgr@x@q\\AuSOuFOqRuAiIq@oQyD{M}CkBu@s^wNqKiHqHyFwF_FeHoHuFqGkG{HoNeQqOcReRwUoq@_z@uq@wy@sXy[_Yq[{YoZcTeT{D{Dud@qb@c\\}XsQsNaKcIyUoQwJeH{PwL{ZuS_ReLkHqE{RkLyXyOqNwHcO{HenAao@_UoLkDeB_sFysCun@e\\_[gPurCkyAyqCwyAgrCexAcXkMkX}Leg@aT{j@wTkVaJobA_]ko@uRqWoHsWcH}X}GiXiGaR_Eg`@_I{`@yHkbAmQgcAwRy{L}rBsoCce@_tIuyA}dOuiCsiAsX{|@mZi_A}`@mfCm}AomByqAw`EomCcaEgpC}pAo|@}^uU_ZwPmc@yUo_@wQgc@yPgd@_P}c@oNccDcbA}_Bui@}oA}d@wz@yg@mm@kh@em@eq@kf@qu@m]ev@en@{aBwj@cfBem@grAkh@qaA{~@wjAin@sm@o\\aVokE{oC{xDuaCslAcy@c[qRis@}c@s~Ba~Aut@cm@ir@or@uk@ks@eh@{w@{N_V}IiRuTye@k[kt@sOyOo]qk@oNgWkIuS{UeVyiB}jB_QaQsa@ua@wdAkz@aVoQkzAs|@iQwImkA}m@qj@_Z_zDyrBcdBa~@m|@gk@gi@wb@a\\{W{o@us@uy@shAa}@uxAwUu`@yUcb@gtFysJgaGyjKqj@}}@sQy[qqBqiD{Ry[irAmoBw`CmdDegC}`Dst@oz@gu@qk@kq@y]wj@yUg~@}]ggCmgAgm@mXgi@}[wf@ac@cl@kl@efBisBql@mo@}t@_l@qy@kh@q~E_xCqRmLyf@kZkTsOch@oc@}XeYwn@{x@ezAssBw^yb@wReSs\\mYc]mWiu@cc@y_A}^yhA}U{gA}HohAu@ar@K}~@{GcdAeTc]qLm[cNsc@}WqXaUcbA}y@uw@ggAcj@cv@sKsPw_@ql@qv@{_AiTuTyi@ub@ix@oc@er@gW_e@_Ke\\aF}vAuOm_@cGy_@sIy^iKo]yL_m@w[wTiOe_@k[cTcUq\\cd@wm@uv@_y@sy@q_Aoo@w]ySsqA{s@cqCezAisCytAyfEekB{bI}wC_cDicAyzCcs@qcCoa@ufCaZ{aA}Hum@sDan@wCw^uA{uBwIy|@iE{cDgIs{@qFor@_Cel@iAc`@uAwe@_BgaAkDqiBcF_q@}BayByH_aAmDap@mDcbAgIkgAmPm_@_Iqh@{MghAy^EA{n@sWi}@ma@uWeLk`@qQs\\{NyMuF}KmEgi@}QuJuCu[eKifAiVsUwEgWwEgVeEw\\gG{n@uKig@}Js[iHk{@cVccAy]acAcg@s~@{i@gu@kg@}~@oy@kz@i{@cuEsbF}|AuwAotAkfA{eCi_BuoAuy@scAup@sr@yh@qu@mt@_aAy}@ey@kn@}u@wa@ku@wYa_AqRwo@wH{cAwEsjBiJwaA}M{u@{OcwCyu@}eBkd@}t@gYs|@wh@aw@sq@wp@}w@et@a}@ek@wi@}l@cd@sdAwi@eaAmYw^cH{IyAyg@yE{nC{NquBmNkrAoQmwAuXajAyXseBse@stAq`@_}@aTk}@cH_iAO{w@rFyaAhPi_Ap\\_r@r_@czAb{@_`Avc@eD|AicAb]ggAhWumA|Pu{BfLcuBrDu_ByA{tAsE}mAaNemAy`@_|@kd@eaAk}@}s@i`Aim@mmA_^{eA_Saw@yW_~AgV_iAeh@uyAe{@yfB{o@o{Awj@weBue@_jBak@o|AeZap@wWma@{kBuhCke@{u@kNsVue@__Ayu@{wAor@kcAc[}]a{@__A_}AqgBqvAqnBokAmlByr@ugAcu@c_Ak[a]yjAkiAkZkTo|AacAyx@uk@kv@al@}g@yc@af@oe@_b@}c@yHiIcQuRyFqGq}@elA{^ui@k[_f@yB_DoOaXmq@ybAuc@}f@gc@eb@uj@{b@qaBgeAarAgy@ehAi|@muAczAq|@imAs|@e~Amy@qjBms@msBs[{gAkm@ccBax@ofB_~@i}AguA_hBabBmpB}hAmuAe_AwzAww@exA}`BquD_~@_kB}s@wrAkyAosBkmBk}Bs{@qgAkpAstB_f@ybAqLeWeiA_hCq}BobGmkAemCgx@yzAi|@y}AinAyeBwwAulBcqCquCuiCe{BowC_oCk[w[etA}{Ak}AauBk_AmuA}wAqjC{cA_xBm`Am`Cut@iyBav@olCyOqq@mDgOeVydAgzAypH{z@utDy{@waDo]giAwt@_xB{S_k@ql@k{Asr@q`B}s@m{A{^cu@kU{b@mHyM_[ek@_n@ieAw|@iuAmnBuoCafCkyC}`A{bAwp@_p@yhAwcAqpB_`B{xBe}AyeCw{AabC}lAegCoeAm{FwtB}aBct@wuAm|@wDaC}oAikAgqAe_BacAyeBsl@qsAeu@qbCge@azBkdA}bHgk@u`CmOmc@w\\o|@qWui@sd@qv@mXu_@}d@sj@ua@y`@qa@_]so@{c@_qAop@}bB}u@wkCelAmtAun@kz@}_@}~@ua@}\\oOqzA{r@ef@_VwScLg]mQwZ_Rui@y\\og@y\\_ScNoU_Pgb@a]q`@g[uToRgo@_k@ew@kw@k]q^e_@kb@mq@sx@sm@_y@uT{Zmq@udA{^cm@oOyYg|@o}A_Xwi@wk@{nAm`@ubAw_@kbA{`@wkA{DqMuWe{@yRes@wh@ipBsp@okCqm@azBk]qfA{r@iwB}\\_gAuM{b@sJy\\wUy~@yf@iwBeYyuAw[ouAeUix@}Sko@cRec@kS_e@sd@iu@y`@kk@gg@il@ex@ws@m|@uo@{m@q[it@aVsd@}I_l@iMs~D_q@mxAs\\gi@iRmU_IuoAch@yYaOuNaIgn@k\\sx@qj@ms@kj@op@yl@er@ot@odAyjAkNkQmLoN}r@ay@klAykAgz@uq@{KaIwfAaq@mgAcn@mhAop@ufAys@srAucAq|@ww@siA}jAorCsiDeR}Tyj@oo@if@yg@slAokAifA}aA}y@op@oaAqo@sM_JgnB{kAosBilAgy@ci@shH{dFqdAcw@mdAep@km@k]sq@wZ{q@{Usr@aQaj@uJuo@kHe}Ek_@c_AyKybAyP_s@{PqgA}]uu@_[w}@wd@qkAsu@ss@qj@mt@{q@ul@mm@owBenCa~@spAcgBwdCaqAuaBacBwlB}eAilAsj@es@aa@ek@wl@g`AqjAsrB}i@gy@ub@_h@qd@mc@wp@_g@mr@__@m~@o\\ut@{Oqz@qH{n@_A{GKc}DrQwzAzCmlBWklB~@{rAtFmgApLiaAfSsc@lLoq@lUmuAfr@_`BbfAunEnyD}gA|y@ek@x\\we@vVy\\zNgO`Iem@pSy[`J{gAbUcs@fHg[jCihAjDybAw@_aAwGy`B{Ts~EagA{lA}RunAoKkkAuFaiBoEs}@uF}m@gHg`AiPo~@sUky@_YqgFi`CseBao@euA}]iwA{Wq{Dsn@cnAuW_fAo[kjCmaAg~Aei@gu@eSmbA}SitA_Reh@_Emp@qDimAc@mt@z@g~@xEs_AtIgz@nLqnAvWegDxaAcsBpj@c`Bh\\ylA|QyhApIgdAxFeaBbEskAa@ekA}DyeAwHkuAyPm~Bc]izB_VqbBcN_sAqHcoAwJ{}@kIy}@uK}qAeMe{@mCyk@Tkl@lBge@|D_v@hLkd@dJaw@jToi@lTaWdL"},{"ref":"A 23","mode":"driving","weight":6564.272,"distance":213618.828,"geometry":"ygkhjAhovmOw\\pEmJlBqTrAkUgBiSgHkNeKiL}NyJoM{|@odC{k@u|AwNow@aEac@w@ep@sBe_C`@shBpEgcAbPc_Cl`@a~Dv@aItOy`AbTsgAdvJwh]hV}hAbTiqAxN{}AjE_lAa@wiBkGk}Aoz@qhKmBwcAhCofAjTk~Ah~@agEf~Jq`e@`SgiAdJm~@vBsv@{@_v@{X_`JmCmoAhB{dBb^a~Il@mu@eCcpAyTkgBqG}f@gFc]wAcK{[kwB}`@emCoEoZ_QskAy\\}hBk{BkyI}Lsi@cH_c@eCiXsAaRu@oTUuf@n@e]`Fop@x[ctCzBwVjCy\\bB{j@\\a^u@}d@gDkl@aEm`@gUypAmjAscFiXkuAuKaoAaBw_Bc@stAyBwo@cFqh@yGke@{K_h@gPqh@wR_f@kgAczBoc@yz@kbBmaDs\\mq@idEsdIau@ykAcQiUsd@_n@{nDkwDk[ua@wXke@q]mx@cRgo@_Ngo@o~AuqJsZy~A}g@}`Ccw@o`DmP{y@cHce@sEie@gDup@qAq{@xAm`AzEgcAhTm`DxHiiAlTm_D|Bi]jByY`AgUb@sMToPFeRI_Q_@iJg@{IwCo[iDuT{CkR_EgQyE{PgGcQsFcO}Rad@sd@{dAsMwb@sIac@sFsg@aCao@f@cf@D{DrLwiB`b@coFfe@}dGlL_gArOigAbXmyAboCg}M`QgeA~G}o@vEcp@`Csl@x@yl@[}t@{D{nAesA{aVwI}}A{DynBtAcxB|@_cArH}eBnC_o@bKm`CpUioFxMuxB~PquB|w@u|H`MekA~Eeg@`C{Wt@mL|@yQp@kRf@{Kd@aQJuICaLKmOWwMq@sN_AqMkA{K_c@kdDiIyu@iIecA}Eoj@qEyl@mAyQw@eMs@}M_@_M_@{NSmJK{OAuRDwKNgMb@}Pd@cMv@gNr@yKvAoPpAcLnCmRpDoUhDoQxEwUnDiOlFkTjJy]tGqU~Vi}@n[sfAv_@orArIiZtSct@bKs^pJ}^lRcz@rCwOxCyRtCgTpBiPrBgTxAwQbAyNt@eM`@mKNuH@cRKw_@UyYo@{Vu@{WmBq^uDgm@uCe^uHcy@qm@coE{AiJiCmQmEs\\wCaWmC{UqDq]}CgZ}Bq_@cAuT_AsW_@}VCkPFmTR}i@H{r@?kUq@i`@y@aT_BaR}B_TaC}QeFe]cCiP}BgSkBeP]eDqRa_BwGkk@uCoUaGkb@gGcc@cDwScEsViDwOuEqRuFqQcJcWgVal@}IwSqLs[uHqScKsZ{IsX_G}RqF{RcHeWsFkSkEkRoDwQaDkRgCsQyByTeDk`@qHkz@wK_tAuSc}Am\\ivAqbA_zC_a@kbBeVw~Agk@yuE{H}p@oCcXyA_P_BaUgAwRs@uRa@cPOqWHgURiRj@mRj@mO`A{PnAoRdBaSfBmQtBgPzB}NtDoTjDiP|F}V~CiMbIqXd]wcAndA_tDbf@}`Bdb@cgBpVwvAngAwrGzRy{AxNeiBp@w\\bDu`B~AenILg`Cc@ymAgCg|AcIgrDeCutAzAklAfHahAdc@{xCtMecAvLkmAx\\_bFjMeuAxU}|AtiC_{LvZkdBtM{bAlI_y@zFos@`Hcu@hH{n@dDgVxIqd@x_AyrFjBiOnA_Lp@gIb@wG\\oHj@oL`@kJPwMD{JAyFCsGGoGOwFi@iM{@uNeA{LeAsHsDgWeCoMcDeN{DyNoDcL_EgLcFiL_EcIaGwK_EgHiD_GuEaH}Q}WoOcSu_@gg@wr@i~@wy@wfAga@gi@wYsa@qTq]ke@wv@oGiLgHsMsQ}\\{Uif@s|@miBueByoD_fBqpDwcCwfF{F}MaGiOkFcPwEcPkEaPmEyQyB{KeAsF{@sEiB{K_CmQsB_RaBqQo@}Iu@cMaAeP}@iU_aAkj[oDa}A^cyAxKi{ArWgvAbYe|@bQgd@zUel@`wHkaOvfDqxGv`@{eAlTelAxIqsA}AozA}LeoAuFqj@kNktA_PczAyNkvAoNiqAsNquAeDg]aBoRmAwQg@kI_@iK[yKOeJCkCGoFEyKFsKLwJ`@wM\\sKz@wOv@_Kp@eI`AiJv@sHz@kHnAmKdCcRzl@}nErBsNtCcTdAqJfAeKbAkMx@iM\\aF^mH`@mLH}FHeGLuJBaLAqKWuNUiLo]qmLaOiaFwAmn@Rag@lDakAdJirDqAa{AcJ{cAyXwqAme@oiA}o@a`AcfE_}Ems@_~@ag@yy@_a@_nAsUosAoD{hBrG_wAbDuu@fHk_BvN}zCbAaWj@kQ^eONqIH}JBcJAsIE}KQcK_@uL{@wQk@wIa@_Gu@uHu@cH_AwIiBeNmBmLgAwGkCqMkAqGqByIwIy^aMoh@gO}l@iGkWiUk_A_Muf@aa@kaBgEqQmOom@_Y_mAiNuu@}CqSyCyTeB}OkB}UoAoPiA}SaAsTi@wO]}LYePG}QC}K@qKJeRPoONoL?Y\\kOj@mRt\\ohLxA{d@fAa]~@sUv@uN`AyPt@qK~@cKpAyJpB}OvBoOtAuIpB}K~CwO~D{Q~EaR~EmQtGoTxLe^rG{RdJoXdKk[zIuXrHmWrIoZvGiWvEuSbDuNzD_RxCwOzBwLzAcJrAuIdBkL~AsKpCeSbDqXxB}RpBiSpByU~AaUjAeSrBs`@|@{W~@m[PuNJmJ_@_w@?w_@IoUMuN[{K{@o^m@oMi@sLo@qLoAeRoBiXmAqO{AePeCcT}BwRaCoP{A_LqCcS_D{QqC}O{CyPoDcRsG_\\cF_ViLsi@mK}g@wS}bAeVqiAwQa{@gIg`@{EaUqx@ayDiEsSqEoTiFeWkEsTcGm[sDoR{DqSaEeVg_@}vB}Xw~Am[ygBsq@ozD{Oa~@wd@_kCiQ_cAwEoWuCqOwCkPqCuNmFmXkCmLkEeR}CkLqEiPmF_RsF}PiFwO{FwOeGmOiFmMmIcRkIaQkIgPqGsLiGmKaJsOuFmIwIeM{GyJsFmH_FsGsMwOsv@s|@ca@{d@_PmQyS{Uqr@uw@ge@}h@m\\s_@}[g_@_PiRuPkSuQ_U{OaSkOaScOqRcOiSwNiSwKmO}QyWwc@up@imAalBsa@_o@ySy[oPmW{Vi`@qSw[}K{PaSuZwVi`@mTe]_MqS{DyG}Se_@mNgX_MsWwGeOeKkV_FaMgGsPiGmPiHoT{FcRqGkTiEaPkDwMgDcNkE_RkHe]sHqa@aGs_@yEy\\iEg^kDi]mBaUgByV_BuVkAeR}@uUwAc^o@iSSmMEiPJiQBsXD{SV{ZXqTdAug@pA}b@h@{Tb@c\\h@kZTwTLuRAyTSeTQkJ]_Ks@_Pm@mO{@uPoAmQwB{SwBeSaCcPkEkU}DkSsDiP{EcRqJq\\_Rsl@}Sin@mJsYmGgTyDaNkEmP{DaQiEaS{CmQmB_LiC{QqBwPqA_NsAcRu@wMm@uLk@ePc@wOWeOm@}b@w@ik@m@y_@_@wQg@aRa@yLq@oMs@cMeA_T}AcTuByQkBkP{BiQsCuO}CoNoE{QoEoOyHkVoEaNyEqMgFaNaFcL}EgJ}Mm[kR}c@kMq[wLk[aIqUgGoSuIm[aHw[yE{VeDcTuCiTcBoQiCeXmAePeCin@{@ch@@sz@~BkaCUil@_B_e@yCok@uJyx@mHid@yJie@g`@gmAem@u{Ac`@wu@}Qam@uNge@eIkYmHsYaFkW{Lor@kFy[mFia@cF}b@sGep@iE{i@_Hg~@mEcr@}OogB{Gcj@{Fuc@qGsc@qGw`@aJ_g@gJ{d@qTs_AiPov@oe@{yAwJwZyx@omCie@wmBei@whCq]ubC}Tk`CyLo{BeGyiC^{uB\\gd@r@ya@~@mc@lAw`@nBoh@jDqq@dDyg@~Cea@zDcd@fKodAtHeq@h{BcrRHs@lH}q@~Daf@fAyQj@mNd@wM^mOR{[Oa[i@uUgAqYcBmU_BkPuDsZiDcUsEsVqHy[yGcV_IsU_J}U{JqUyKcToZeg@g]_f@arBqoCwv@mdAc[{b@wVw]iVc_@c_@_r@wQub@_W{p@af@m|AkzCetKiJi^gGcYqDsRcDcTkC}SkBiRyAwRcAmSq@qQ[aRKkTNyS^uSl@{RfAcSfBsVvCmXdH}e@rLwo@dk@wuCfIyc@vFq_@xDm\\lC}ZrA}Wx@qVZ}YIo]u@{[y@iToAuRsBeW{BeSkCmReFgYmIg_@}K}]oKkZ_Nu\\oNa[ex@{`Bgu@m_BkK{U_JqTkIoTeJuXiJs[qHaZsHc]_Gi[sEqZ{Dg[cDk\\iCs[wDqo@wCuk@s@qMyAsZ]gHa@eHk@aIm@sIm@eIo@yHo@_Iw@{Iq@{G{@cIaAcIoA}JgAwHiAqHeAgHyAkIsA}HyA{HyAmHcB}HcBoH_BwGqB}HgBiHmB_HuBgHyBqHuB}G}BmH}B{G{BuGcCiH_CwGcCyGaGkP}F_PuCyHaC}GyBiGaC_HyBeGeCiH{BaHwBwG{BcHwBaHaCsHqB_HuBqHoB_HkBiHoB_IcBcH_BgH_BuH_B{HyAyHwAmHsAyHoAoHoA{HiA}HeAkHeAqI_A}HwAwMmDm`@iCe`@aBe_@{@c[k@q^C{[JaXb@sYbAe]`Bu]nB{ZpCq[te@wrD~LsdAlJudA`Dmj@jBce@pBc|@|AwhApBkpAvJezGjAgv@r@um@Zi]Lm]I_UWoRa@wSu@eScAaSmBeZiBqTcCaUkDiZsEa[oGy_@{Mqw@iNix@mQicAgIoe@aQ}aAgL}p@kOsz@wG_\\yC_NmFiTuEuPuFcQ_GwQwFcOyFuNiDwHsKcU}GaN{HoNwH}LyIyMkIqLuJeMmJ_L_K}KcLoL_LiKoHgGaJkHwHgG{ViQq^mVcaH{pEqeDs{B}~@_}@iWa^u\\eo@ae@sxAcd@}tCsLyr@sQas@eTkm@kXyh@sSa\\cXi]eSoSyc@{]yaAiu@u~@{w@yd@mi@}P{NeQaTs_@gc@kaBolBmHiIej@ik@q{@yj@waA}_@o[uIa_@{DuRw@wlAkB_`BoBcvA{Aqv@oE_V}CaVuEsToFgr@eXat@kd@{X_VaTwUil@sw@aeB}uC{Xad@}t@_eAii@of@eDgDaP{Ma~@}m@kfBijAwh@g^ypBsqA}i@ma@o_DgxBa~@{n@k{@_k@q^sOu_@uPo\\mKe_@iF{p@oGo`@uD{gCsTe|@aHcsAcM_k@iI_b@yJu`A{c@u_Bk}@yiAyo@qo@c_@ouA}u@sc@_Tgd@{PqlA{]{gAqTaaAuFefAoBqlC`Fsd@X{GDwX[cPcAsP{AuQgC_PcCoL{BqLsCiI{BiHoBiLiD_N{EeMaFoMmF}M}GaYsOgMcI_OaK}O{L}KiJkLsKmJmJgKuK_KsLuHeJuKqNqI_Ms_Au|Aac@wr@es@k`AuZa\\uSiU_r@ko@{{@qn@yc@oWcj@mXst@_YgBq@ew@uU}eAwQ_lAeLy~CwGm{@oGeb@_G_g@wKgx@wUy|@aa@mt@se@ylCawBa`Agi@_kAab@{u@kPov@kIsbA}BgtLpPodAiC}z@mJofAqTct@aWor@q\\ij@_^}RiO{c@m^qh@ok@yLiOsJuMcIaLQWcIsLaKiPqLuS_NoWeIqOmEcKiHkPaGaOkGiPwGwQ_F}OuIwY{HwYeDuNaFaUsDwQoGa]kM_u@gO_`A{jB_eL{DiU_FcYgDoQeDcQcEcQ{EmQgB{FeCeHoCmHcCgGgC_GeCuFiD}G{CiF}CmFcDgFeDaFcEsFgIaKaEsEgEiE_FuEmDcDoEuDqFaE_LoH_FwCkKqFuG{CiFsBuE_BuFiBmFyAeFmAoEaAaF}@uF_AqFs@gFc@wFe@oF[}FSoFSwFGoGIoGAgN?eMAwMAuNEuNM_HK_EMgOc@mNs@uMaAcNsAwNeBcNkBsM}BgMyBiHwAwTmE{UyEiM}BcM_CyHeAiM_By`AcD}gBpPwx@tDsi@_Dwe@qOkW{KkUcPuS}QwRmV{MgTmOy[aLo^_Ju_@wDgWyBmTkCgk@p@cv@~F{p@bFeWtZ}eBvDwYhE{d@nDu}@\\}g@uAmo@iB_\\sF{l@cPsdAeMkd@aKg[gb@k_AuZah@oc@we@qSgT{`@{Ui[cRaUgIye@oOy}@qOkr@c@mjBbGkb@pBk`AzAoILycAqBshAeKeeAmRs`A{Xk_Aw`@gcAcj@elC}`Bsv@ia@{u@m\\{y@eYehEecAsxAsf@i{@gb@ou@wf@q_@yYwh@cf@_g@ae@u{Ei{EgwBmyB_nA}zAsj@olAk\\yrAwMex@oGyk@cQwzBcwAwkSuF_s@sHiu@_Jsr@uJcl@eZqxA{nMs_d@{h@{}Aqv@auAws@y}@cQaTkc@ig@ojKatL}i@sp@_g@yt@wc@q{@}]ybAyUs}@cOk{@qLkeAiKklBqLgjBeSgnBqZogBkd@yhBwj@y}AuUwg@qHeO{pAqtCoMgYa|AueD{{@snBsq@{qAmx@}kAcw@s_AiuCuiCecA}eAyr@_cAqs@moAgo@goAyr@igAa{@ocA{}@iw@ECypBmlAmfA}o@g_Aky@uu@g{@mn@q_Acl@ylAklBuoEsrBsuE}s@ecBaYck@qO_ZgSk]wFcKwPmY_c@kr@wRoYid@un@yQgViUgYwZe^yLoNko@wt@c`Awz@ojAq`AinA_y@ejA_t@gkAqm@onAqh@qz@w\\ck@mSo_Bqp@}l@eXio@_ZwCsAirBieAwmAyw@qgCcaBahAss@kxAibAis@yd@oqBqrAcs@ii@ag@ec@wh@wd@_^a[wu@{w@er@kw@umBqcCq~@ohA_bA}nAkqComD{}Cm{DsvAseB{}GyqIcc@od@meA_fAcj@gf@ac@}_@clAa|@meFmcDygAcy@y{@kw@idAssAe`Au|Amj@olAgc@ckAia@{sA{[auA_jAg`GsI_]o`@}sAg\\yu@__@wp@cj@or@gf@{h@mv@cn@uL_Hcp@i\\_oBir@ulBos@uZgLozAyj@uxHysC}qDmsAa~EiiBceGe`Cm{HukDskAab@mnAeZunA_RusGmx@gqBaT}q@yJ}}@oOkc@{HwKwBsxBy_@qkCge@_oBi]efB_[apAkW}j@_O}e@kPul@wVyZsOcy@og@y|@_l@miH}{Ewa@{S_j@uTuXoIqDiA}f@yJga@yFcs@}DuuAo@ooCn@m{CAeOe@yIYeZ{BoVeDa`@_Io_@qMkv@gb@{k@}a@ge@}g@mNmRik@_~@_s@clAmr@cbAex@wv@ciAgv@cbLguFix@sc@wiSqeMauA}n@adAkViiAgMqqEgTmdDgRgiAs@agAdDwfAvHgdAhO}aArTshFz_B}cAzRqlAlH_dWnj@{rH~PuTjBkx@|G_lAzNyEv@{TxCc\\fFkcCtb@oqEf{@scApO{fArNqjAdImeLjh@cwAdKu}AxW_eAl[yxE|mB_}@jXacAzW}kAfLkdA?kiAgJ{fGwl@eeAyE{aAjBuqAnQwaBx`@icBfa@ihArUgxAxWge@bFc{@|IkuBjUg|AxO{eCnSkNlA{wFzk@cnAdPajA|Y{~@j`@E@wNfHmSlLo[jSc`GjtDuaAvd@ibAb^{cAvVqgAtOocPfyAsoA`Va{Afh@opFfpCa_@pPs\\`KgZzFeYlByS@mOo@we@eHyYaI}`@{Tc]{W_`AiaA}|Ae}AoEyD{a@ab@c_AqhAuSkb@qOc_@uPqk@ofAweEuRwn@sSkd@yYia@}VyV{MkJmVcN}QwGeLiDqV}DaSmA{Ue@{UdBkRrBmU~FeT|I{Q`KyPvLyd@~e@qLlRaSt\\_n@tpA{\\rr@cKpQ_I|MeKxNoNvPoO|N}MzJ_RtKkVzJ_Bl@uPlD_Q|C{Ov@eTRuLOeMmAyZeFwSyH_OwGkMiHiCsB}_@c^yX_]qOgUi_@ke@a\\_ZaEyCqYqQiImDmJwD}~@w]ixAo`@aLgCcQiCcWwDe^oCmdAwHg}@eKcd@gHqTmEuDs@uB_@kcB}IgMJyMrAiNxD_LhEkLdGwdTviJkwAf_As^xTe`@nRgOrFsZ|Huc@rGqv@jEwaBjDuh@hBw\\lCcgAdXmrE~yA_RzEgu@xQ}w@~I}i@nBqVF}Wo@uhAoEgcAcGum@_GaJkAyRqCa~@aPu`@mKcb@iJmTiFg|Aq[y`@{Emf@wC{aAnJmlA|[udEboAgvAnc@gaAl^idAlg@{bHl}Dyc@jRk_@pL{_@|Hmi@`Gaf@tA{`@WefAuBgyByFmdDwH_aC_GalAkEis@qGuY}Dql@{Kc_@}J{h@oO{WgK{bFytBk}Aok@uOwFyo@oUu}@mV{v@}LsJyAu`AmGofAb@gfA|Iug@~IuKjBoPvC}aAd`@}~@te@}^jVyUhR}VrSiVdUu_@~_@me@rg@gq@t}@{BbD}qBniD}[v`@mT`Uu]rXs^jSa_@xPe`@|Lk`@nFm`@~D_fAPkb@qFsa@qJg}@e^{cAun@s_Aui@{PuFwPqFmKiDcUoHcdA}IcdAdC}dAfScdArd@ux@po@qs@ns@yw@~n@o{@lb@igA~Ukc@hBad@H{`A_FolAsMkeA{FidAu@{iAfCgbBtIwgAb@idAyCwdA_Mgc@_HmK_CqMcDcRcFuR}FaW_JeNkFa[yMwOwHeRyJod@kXci@}^mKqIqNiLmKeJsYmXaUmUuZyYcUyUic@{b@gYaVkk@{c@go@gb@wkAap@oiAee@cnA}_@}^iLki@sPwXwI}aAwe@y`Aes@{Q}Qod@od@kq@u{@el@{kAsf@izAiZouAoS_vAit@g`I{Pe|AmVs}AgYgaBe[_xA{\\ktAqSir@ggAkbDgb@ggAgn@{rA}m@ylAmn@ieAcv@qfAys@}`Amx@cdAgyAgcBeXa[sr@ix@slIgfJ_u@}y@_r@}_AmOkWkuAmiCaj@qsAsc@cuAmuB}vHwuA}fFotAufFk_@{qAah@gxAym@asAsw@ouAo|@soAs{@qaAo|TavTuaAynA_|@izAcjAsbD{nDsnMue@qrAgo@{qAeq@g`Acx@}|@uz@}r@go@u^qGsDgbA}^{fAs[}gAiM}~@}DoKe@whAnGwUzBcm@|F{@H}bFrp@m_AhJgkAtBq~@iCklAkOqdAeWi@MqdAic@wlA{v@glAmkAgw@whAms@qzA_HuOaXcr@qWw_AyNmw@cIy`@og@{mC_Ica@mOuo@wSgx@wU{y@o}DqvL_p@egBk|@khBw{EafIsFqJg_AokBou@{`Bcr@e~Ai{FooNwMi\\kWkr@o`AorCqo@s{Bae@oeBsh@kwAeq@euA_c@co@af@_n@yi@qh@oi@qc@iq@qb@}m@g[qp@iVox@{SeaAsOqgEy_@chBeRes@iLakC_e@}eAkVav@yRsbAsYylAc_@}p@uV_bA_b@gNoH}GuCog@aWerEenB}bCa|@afD{cAex@uYciAud@u~@kc@}nAym@ajAyo@{CeBinAqu@qlD{|Bi_EijCco@}\\_q@mTw{@gNsdAoCuxAeBah@m@wt@cDgp@aIeg@mKub@oRcb@uWwb@y`@s[y^yUy]{Tee@uWgo@oh@ibBik@efBs[}y@i]cw@ga@ov@ib@kp@ee@am@aw@aw@it@gj@{t@{b@ky@{]_{@gXaaA}Pa_Dwe@ml@kP{k@mUui@yX{y@ai@cnAit@cn@yX}p@{TohCit@}p@{Tyo@uWgo@w\\_m@ea@ej@oc@uw@sr@wj@gf@_m@}b@ml@s[ar@qVws@kPim@kFk^eAi[MayA]ig@}BkZyCa\\oIa_@iJml@uWuo@cb@ka@oa@kX_]kZwe@wZkp@ce@unAcYas@oZwq@e\\cm@{d@mo@qg@wh@qk@gd@yPuLa[mSsr@yX}lC}q@_dCis@sk@uRqYmNaUuMga@wVuYmRwn@q^{i@gX]Qgt@_Vmu@aRsr@{Ka{@{FseDc@}~@sDky@{Ksr@{Ogf@oQ{k@}Ymg@w\\{yAueAok@oYuUkKwToIoc@{M{NqDaKoB}IsAcW{DuN}A{NkAcUiA{MWeMCcJCiQNwKJo_@J_TNaPLuM?mOGsNY_O[cOo@gNi@yIq@oR_B}OwAmOgB}QoCcPoCePyCaNwC_NuCgMkDeN}DgN{DsUuHeXoKaS_IqSkJuSqK_cDkiBqKeFmL{F_QsHkTgJcVyIqQ}GcOyEqP{E_SoF_RqE{UqF}LkC_~@uQqAY{Z_HkReEcSmFwOiE}NmE{GaCoMwEqKuDuHuC{LcF}aAid@q_A{k@cw@_m@ov@mu@ejCs|Cyo@qh@go@y]_dAa[ceAwSyx@kY{k@w\\mu@ai@cfGc|Dkp@oZun@eSikAkYge@mM{KsEmIaEuK{FuFkDuIgFoJ}GiRkOmLaL_JeJcKoLYa@wL}OoKgOwGqJqKsPgFcIgC}DuMcTgIuMkU}^m`@oi@_[c[w\\{Tem@cYwRiKsM{FwMaF_JcDuL}DsPaFaPcE{W}FgJsBqSeEcIaBeMeC}WsFo[oHqlC}r@kY}Ise@oOqrAkc@{[_Lwr@uUae@qPwIoDcn@oYmb@wYsd@c`@ga@we@c\\{b@w\\ai@eLsPgQyUi]ai@gf@qm@ar@s{@es@q{@oJqLerAauAwe@wc@qoB{iBo_Aiz@ql@gb@wp@a\\ao@uUwx@qN_}@aGgnEcHyi@cCku@mGwlAqOif@mJopAiXyj@sLax@yOik@oGin@qBaGSci@j@_n@hG_n@~NkSvFceBrk@{l@zLm^lG}g@zFwj@P}g@kBen@iF_m@sI_m@yJit@sIot@sFyp@aAau@bDan@|Ewn@rM","duration":7012.376,"driving_side":"right","duration_typical":7012.376,"weight_typical":6564.272,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 7 onto A 23 toward Abrantes/Torres Novas/Alcanena.","modifier":"slight right","bearing_after":350,"bearing_before":337,"location":[-8.630021,39.475341]},"speedLimitUnit":"km/h","destinations":"A 23: Abrantes, Torres Novas, Alcanena","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Vilar Formoso"}],"type":"fork","modifier":"left","text":"Vilar Formoso"},"distanceAlongGeometry":213618.828}],"exits":"7","voiceInstructions":[{"ssmlAnnouncement":"Continue for 133 miles.","announcement":"Continue for 133 miles.","distanceAlongGeometry":213589.156},{"ssmlAnnouncement":"In 2 miles, Keep left to take E 80.","announcement":"In 2 miles, Keep left to take E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take E 80.","announcement":"In a half mile, Keep left to take E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take E 80 toward Vilar Formoso.","announcement":"Keep left to take E 80 toward Vilar Formoso.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-8.630021,39.475341],"geometry_index":988,"admin_index":0,"weight":5.683,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":5.999,"bearings":[157,334,350],"out":2,"in":0,"turn_duration":0.017,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,175],"duration":9.106,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":8.65,"geometry_index":991,"location":[-8.630223,39.476345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.629341,39.477676],"geometry_index":996,"admin_index":0,"weight":25.303,"is_urban":false,"turn_weight":11.75,"duration":14.288,"bearings":[59,223,244],"out":0,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.627205,39.478666],"geometry_index":997,"admin_index":0,"weight":32.497,"is_urban":false,"toll_collection":{"name":"Torres Novas","type":"toll_booth"},"turn_weight":15,"duration":18.417,"bearings":[58,239],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.623438,39.479761],"geometry_index":1001,"admin_index":0,"weight":30.223,"is_urban":false,"turn_weight":15,"duration":16.465,"bearings":[88,90,267],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.618605,39.479697],"geometry_index":1004,"admin_index":0,"weight":110.687,"is_urban":false,"turn_weight":0.5,"duration":122.438,"bearings":[100,263,277],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":107.07,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":99.04,"geometry_index":1021,"location":[-8.57387,39.47092]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,266],"duration":6.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.025,"geometry_index":1032,"location":[-8.534065,39.464236]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.451,"geometry_index":1034,"location":[-8.531756,39.464722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.579,"geometry_index":1035,"location":[-8.531274,39.464838]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[73,83,254],"duration":5.996,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.839,"geometry_index":1036,"location":[-8.53108,39.464882]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.529154,39.465344],"geometry_index":1037,"admin_index":0,"weight":7.225,"is_urban":false,"turn_weight":0.5,"duration":6.904,"bearings":[73,244,253],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.376,"geometry_index":1038,"location":[-8.526879,39.465887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.55,"geometry_index":1039,"location":[-8.526439,39.465991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,250],"duration":77.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":73.691,"geometry_index":1041,"location":[-8.523518,39.466756]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,268],"duration":8.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.08,"geometry_index":1063,"location":[-8.498266,39.470895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,257],"duration":15.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.31,"geometry_index":1066,"location":[-8.495451,39.471088]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.490922,39.473185],"geometry_index":1071,"admin_index":0,"weight":18.533,"is_urban":false,"turn_weight":15,"duration":3.553,"bearings":[52,61,233],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":9.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.589,"geometry_index":1072,"location":[-8.489965,39.473769]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":2.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.927,"geometry_index":1073,"location":[-8.487366,39.475359]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":25.254,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.233,"geometry_index":1074,"location":[-8.486559,39.475833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":72.9,"toll_collection":{"name":"Entroncamento (A23)","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":69.255,"geometry_index":1077,"location":[-8.479763,39.480145]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,257],"duration":8.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.531,"geometry_index":1091,"location":[-8.458137,39.489516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,273],"duration":10.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.959,"geometry_index":1094,"location":[-8.455326,39.489596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":3.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.237,"geometry_index":1096,"location":[-8.451651,39.489145]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.450462,39.488988],"geometry_index":1097,"admin_index":0,"weight":7.459,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.071,"bearings":[100,110,280],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.447895,39.488645],"geometry_index":1098,"admin_index":0,"weight":2.685,"is_urban":false,"turn_weight":1,"duration":1.829,"bearings":[100,267,280],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.44741,39.488582],"geometry_index":1099,"admin_index":0,"weight":7.792,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.443,"bearings":[99,111,280],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.444705,39.488579],"geometry_index":1108,"admin_index":0,"weight":5.44,"is_urban":false,"turn_weight":0.75,"duration":5.098,"bearings":[72,246,258],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,239],"duration":131.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":118.746,"geometry_index":1114,"location":[-8.442922,39.489201]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":7.874,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.08,"geometry_index":1140,"location":[-8.393409,39.487153]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":2.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.018,"geometry_index":1142,"location":[-8.390674,39.486968]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":5.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.37,"geometry_index":1143,"location":[-8.389906,39.486896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":88.272,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":79.439,"geometry_index":1144,"location":[-8.387835,39.486702]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[117,124,297],"duration":10.971,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.142,"geometry_index":1192,"location":[-8.357186,39.484684]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.33,"geometry_index":1195,"location":[-8.353707,39.48332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":8.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.377,"geometry_index":1196,"location":[-8.35327,39.48315]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.350457,39.482129],"geometry_index":1200,"admin_index":0,"weight":20.404,"is_urban":false,"turn_weight":0.5,"duration":20.974,"bearings":[110,289,293],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,258],"duration":9.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.35,"geometry_index":1219,"location":[-8.343068,39.4821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":28.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.517,"geometry_index":1220,"location":[-8.339738,39.482845]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.329715,39.484049],"geometry_index":1246,"admin_index":0,"weight":33.499,"is_urban":false,"turn_weight":15,"duration":19.492,"bearings":[75,79,256],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":110.034,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":101.764,"geometry_index":1258,"location":[-8.323269,39.485883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":23.846,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.461,"geometry_index":1309,"location":[-8.287212,39.488008]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[94,99,274],"duration":19.144,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.212,"geometry_index":1313,"location":[-8.27914,39.486252]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.272214,39.486122],"geometry_index":1315,"admin_index":0,"weight":23.757,"is_urban":false,"turn_weight":0.5,"duration":26.587,"bearings":[90,267,271],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,273],"duration":70.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.425,"geometry_index":1321,"location":[-8.261916,39.486384]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,286],"duration":17.159,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.443,"geometry_index":1336,"location":[-8.235842,39.480562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,277],"duration":4.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.494,"geometry_index":1344,"location":[-8.230199,39.479178]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.228588,39.479215],"geometry_index":1353,"admin_index":0,"weight":26.335,"is_urban":false,"turn_weight":15,"duration":12.277,"bearings":[78,80,261],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,225],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.281,"geometry_index":1368,"location":[-8.225275,39.480732]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,223],"duration":6.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.442,"geometry_index":1369,"location":[-8.224953,39.480996]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.223296,39.482347],"geometry_index":1371,"admin_index":0,"weight":34.663,"is_urban":false,"turn_weight":1,"duration":36.401,"bearings":[43,218,223],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":98.444,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":91.061,"geometry_index":1382,"location":[-8.21345,39.488799]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[123,128,302],"duration":32.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.756,"geometry_index":1408,"location":[-8.180797,39.493543]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.171844,39.488184],"geometry_index":1410,"admin_index":0,"weight":38.502,"is_urban":false,"turn_weight":0.5,"duration":42.231,"bearings":[128,306,308],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[76,84,257],"duration":9.003,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.084,"geometry_index":1418,"location":[-8.158807,39.485083]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.155951,39.485608],"geometry_index":1420,"admin_index":0,"weight":12.294,"is_urban":false,"turn_weight":1,"duration":12.569,"bearings":[76,251,257],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":1.712,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.542,"geometry_index":1427,"location":[-8.15179,39.486313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,267],"duration":57.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.05,"geometry_index":1431,"location":[-8.151216,39.486341]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.562,"geometry_index":1463,"location":[-8.131508,39.485721]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":85.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.68,"geometry_index":1466,"location":[-8.128891,39.485668]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.103759,39.492559],"geometry_index":1482,"admin_index":0,"weight":27.68,"is_urban":false,"turn_weight":15,"duration":13.354,"bearings":[97,99,277],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,248],"duration":1.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.642,"geometry_index":1504,"location":[-8.099279,39.492965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":11.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.586,"geometry_index":1505,"location":[-8.09877,39.493137]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":5.288,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.016,"geometry_index":1510,"location":[-8.095316,39.494336]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":79.14,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":73.205,"geometry_index":1512,"location":[-8.093445,39.494981]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,273],"duration":7.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.409,"geometry_index":1581,"location":[-8.063956,39.492232]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,266],"duration":31.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.981,"geometry_index":1587,"location":[-8.061215,39.492304]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":8.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.694,"geometry_index":1612,"location":[-8.050373,39.495127]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":91.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":79.905,"geometry_index":1613,"location":[-8.047396,39.496048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.05,"geometry_index":1670,"location":[-8.018,39.509951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.951,"geometry_index":1671,"location":[-8.017675,39.510203]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":4.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.21,"geometry_index":1672,"location":[-8.017412,39.510407]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[47,51,226],"duration":29.917,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":26.16,"geometry_index":1674,"location":[-8.01622,39.511298]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.008728,39.51658],"geometry_index":1688,"admin_index":0,"weight":75.957,"is_urban":false,"turn_weight":0.5,"duration":86.244,"bearings":[54,227,232],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":12.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.693,"geometry_index":1771,"location":[-7.979549,39.522035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,232],"duration":77.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":68.239,"geometry_index":1786,"location":[-7.975443,39.523363]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.952605,39.529446],"geometry_index":1822,"admin_index":0,"weight":27.02,"is_urban":false,"turn_weight":15,"duration":13.744,"bearings":[77,82,256],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,258],"duration":1.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.731,"geometry_index":1827,"location":[-7.94763,39.530203]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,255],"duration":12.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.646,"geometry_index":1828,"location":[-7.94694,39.530345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.942947,39.531447],"geometry_index":1834,"admin_index":0,"weight":6.406,"is_urban":false,"turn_weight":0.5,"duration":6.758,"bearings":[68,244,247],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":98.73,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":86.389,"geometry_index":1836,"location":[-7.940605,39.53234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,275],"duration":6.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.947,"geometry_index":1864,"location":[-7.903608,39.532721]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,257],"duration":118.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":103.921,"geometry_index":1870,"location":[-7.901272,39.532874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,247],"duration":35.691,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":32.1,"geometry_index":1927,"location":[-7.864901,39.542835]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[82,258,261],"duration":2.218,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.989,"geometry_index":1946,"location":[-7.854045,39.547291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.617,"geometry_index":1947,"location":[-7.85333,39.547367]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":74.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":64.808,"geometry_index":1948,"location":[-7.853097,39.547393]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,273],"duration":12.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.242,"geometry_index":2035,"location":[-7.826704,39.549432]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,273],"duration":58.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":51.1,"geometry_index":2036,"location":[-7.822173,39.549244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":5.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.608,"geometry_index":2079,"location":[-7.803741,39.554619]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[29,32,210],"duration":21.319,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":18.648,"geometry_index":2083,"location":[-7.802791,39.555839]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.799433,39.560481],"geometry_index":2084,"admin_index":0,"weight":57.57,"is_urban":false,"turn_weight":0.75,"duration":64.945,"bearings":[30,206,209],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[34,49,221],"duration":13.496,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.782,"geometry_index":2101,"location":[-7.784043,39.571834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.78112,39.574508],"geometry_index":2105,"admin_index":0,"weight":59.199,"is_urban":false,"turn_weight":1,"duration":66.533,"bearings":[40,206,221],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[48,53,229],"duration":10.819,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.45,"geometry_index":2125,"location":[-7.773105,39.589611]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":0.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.378,"geometry_index":2128,"location":[-7.77076,39.591565]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.770676,39.591648],"geometry_index":2129,"admin_index":0,"weight":2.166,"is_urban":false,"turn_weight":1,"duration":1.356,"bearings":[34,194,218],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,214],"duration":147.888,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":129.402,"geometry_index":2130,"location":[-7.770438,39.591921]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.755263,39.626181],"geometry_index":2163,"admin_index":0,"weight":43.403,"is_urban":false,"turn_weight":15,"duration":31.567,"bearings":[1,8,179],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,228],"duration":9.881,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.887,"geometry_index":2190,"location":[-7.75023,39.633343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":12.377,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.14,"geometry_index":2193,"location":[-7.747891,39.635198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,207],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.668,"geometry_index":2197,"location":[-7.745607,39.637908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,204],"duration":111.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":100.278,"geometry_index":2198,"location":[-7.7452,39.638598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":5.22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.698,"geometry_index":2224,"location":[-7.736154,39.670532]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,219],"duration":6.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.129,"geometry_index":2226,"location":[-7.734939,39.671787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-7.733004,39.673177],"geometry_index":2234,"admin_index":0,"weight":8.582,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.554,"bearings":[51,61,232],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.730055,39.674519],"geometry_index":2244,"admin_index":0,"weight":8.806,"is_urban":false,"turn_weight":0.75,"duration":8.959,"bearings":[67,237,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":19.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.646,"geometry_index":2249,"location":[-7.727017,39.675348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":30.749,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.674,"geometry_index":2250,"location":[-7.720265,39.677074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,182],"duration":8.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.251,"geometry_index":2303,"location":[-7.715107,39.683488]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,192],"duration":43.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":38.91,"geometry_index":2312,"location":[-7.714715,39.685577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,272],"duration":8.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.58,"geometry_index":2335,"location":[-7.708931,39.694569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,289],"duration":18.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.706,"geometry_index":2338,"location":[-7.706099,39.693884]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,244],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.333,"geometry_index":2347,"location":[-7.699722,39.694307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,241],"duration":3.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.271,"geometry_index":2348,"location":[-7.69927,39.6945]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.69824,39.695064],"geometry_index":2349,"admin_index":0,"weight":19.726,"is_urban":false,"turn_weight":15,"duration":5.28,"bearings":[49,61,235],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,219],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.423,"geometry_index":2351,"location":[-7.696963,39.696091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,218],"duration":4.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.785,"geometry_index":2352,"location":[-7.696623,39.69642]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.695951,39.697415],"geometry_index":2354,"admin_index":0,"weight":20.519,"is_urban":false,"turn_weight":0.5,"duration":22.273,"bearings":[20,193,207],"out":0,"in":2,"turn_duration":0.03,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,359],"duration":44.807,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":39.206,"geometry_index":2361,"location":[-7.695473,39.703547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,199],"duration":196.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":172.35,"geometry_index":2372,"location":[-7.690267,39.715258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":4.228,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.805,"geometry_index":2397,"location":[-7.63455,39.744436]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":81.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":72.915,"geometry_index":2399,"location":[-7.633568,39.745308]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,239],"duration":2.198,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.979,"geometry_index":2413,"location":[-7.609644,39.757362]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[52,61,234],"duration":9.235,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.293,"geometry_index":2414,"location":[-7.608992,39.757725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.273,"geometry_index":2416,"location":[-7.60634,39.759188]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":9.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.382,"geometry_index":2417,"location":[-7.60592,39.75942]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.603253,39.760909],"geometry_index":2418,"admin_index":0,"weight":86.009,"is_urban":false,"turn_weight":0.5,"duration":95.018,"bearings":[55,220,234],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":19.47,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.523,"geometry_index":2438,"location":[-7.57817,39.781345]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[49,53,231],"duration":7.492,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.725,"geometry_index":2442,"location":[-7.571995,39.784724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":1.597,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.437,"geometry_index":2446,"location":[-7.57007,39.786032]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":4.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.951,"geometry_index":2447,"location":[-7.569646,39.786348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,224],"duration":3.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.382,"geometry_index":2449,"location":[-7.568511,39.787246]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.567592,39.788047],"geometry_index":2451,"admin_index":0,"weight":83.817,"is_urban":false,"turn_weight":0.5,"duration":95.227,"bearings":[41,215,221],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.756,"geometry_index":2474,"location":[-7.550099,39.813076]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":61.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":54.139,"geometry_index":2475,"location":[-7.549495,39.813744]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.535209,39.826081],"geometry_index":2484,"admin_index":0,"weight":36.291,"is_urban":false,"turn_weight":15,"duration":23.664,"bearings":[42,48,222],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,222],"duration":10.887,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.778,"geometry_index":2485,"location":[-7.529788,39.830671]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,215],"duration":72.13,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":66.72,"geometry_index":2488,"location":[-7.527424,39.833066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,249],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.427,"geometry_index":2500,"location":[-7.509295,39.84634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":21.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.229,"geometry_index":2501,"location":[-7.508815,39.84651]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[25,44,207],"duration":10.892,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.783,"geometry_index":2508,"location":[-7.503391,39.85045]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.502101,39.853028],"geometry_index":2510,"admin_index":0,"weight":7.239,"is_urban":false,"turn_weight":0.5,"duration":7.495,"bearings":[20,184,199],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.734,"geometry_index":2511,"location":[-7.501261,39.854783]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":120.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":105.245,"geometry_index":2512,"location":[-7.501049,39.855226]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[8,15,189],"duration":17.361,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.175,"geometry_index":2522,"location":[-7.487866,39.885597]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.486858,39.890033],"geometry_index":2527,"admin_index":0,"weight":82.459,"is_urban":false,"turn_weight":1,"duration":90.517,"bearings":[12,182,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.47702,39.915628],"geometry_index":2548,"admin_index":0,"weight":24.24,"is_urban":false,"turn_weight":15,"duration":9.996,"bearings":[0,3,180],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":0.623,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.57,"geometry_index":2550,"location":[-7.477,39.91839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,183],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.539,"geometry_index":2551,"location":[-7.476987,39.918563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,186],"duration":36.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":33.855,"geometry_index":2552,"location":[-7.476925,39.918998]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,210],"duration":189.798,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":170.818,"geometry_index":2564,"location":[-7.469268,39.927351]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,357],"duration":18.407,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.566,"geometry_index":2581,"location":[-7.458987,39.979191]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[1,173,353],"duration":8.396,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":7.55,"geometry_index":2583,"location":[-7.459329,39.984464]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":1.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.223,"geometry_index":2586,"location":[-7.459754,39.986723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,349],"duration":9.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.659,"geometry_index":2587,"location":[-7.459831,39.987073]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.460518,39.989657],"geometry_index":2589,"admin_index":0,"weight":115.76,"is_urban":false,"turn_weight":0.5,"duration":128.073,"bearings":[160,168,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.46653,40.025701],"geometry_index":2608,"admin_index":0,"weight":30.911,"is_urban":false,"turn_weight":15,"duration":17.686,"bearings":[165,345,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":10.325,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.286,"geometry_index":2612,"location":[-7.467951,40.030519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":13.179,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.86,"geometry_index":2614,"location":[-7.468484,40.033375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.864,"geometry_index":2616,"location":[-7.469081,40.037025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":30.274,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.247,"geometry_index":2617,"location":[-7.46912,40.037271]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,333],"duration":1.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.346,"geometry_index":2623,"location":[-7.471227,40.044997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,331],"duration":110.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":96.66,"geometry_index":2624,"location":[-7.471442,40.045324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,190],"duration":6.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.924,"geometry_index":2641,"location":[-7.481701,40.072762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,212],"duration":5.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.811,"geometry_index":2644,"location":[-7.480792,40.074216]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,218],"duration":7.615,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.026,"geometry_index":2645,"location":[-7.479731,40.075256]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[34,210,217],"duration":0.517,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.457,"geometry_index":2646,"location":[-7.478224,40.076759]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,214],"duration":2.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.598,"geometry_index":2647,"location":[-7.478131,40.076863]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,218],"duration":67.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.989,"geometry_index":2648,"location":[-7.47757,40.077421]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":14.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.615,"geometry_index":2674,"location":[-7.471868,40.087974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,345],"duration":11.245,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.12,"geometry_index":2683,"location":[-7.474605,40.09043]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,200],"duration":2.8,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.512,"geometry_index":2692,"location":[-7.474513,40.092881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,209],"duration":12.835,"turn_duration":0.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.54,"geometry_index":2695,"location":[-7.474166,40.093436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,215],"duration":2.695,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.402,"geometry_index":2700,"location":[-7.471786,40.095623]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,208],"duration":1.725,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.529,"geometry_index":2702,"location":[-7.471412,40.096145]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[20,201],"duration":13.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.922,"geometry_index":2704,"location":[-7.471233,40.096493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,196],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.225,"geometry_index":2706,"location":[-7.470205,40.098945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":1.915,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.718,"geometry_index":2708,"location":[-7.470068,40.099444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,190],"duration":7.831,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.026,"geometry_index":2709,"location":[-7.469976,40.09983]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,186],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.32,"geometry_index":2711,"location":[-7.469748,40.10144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,189],"duration":2.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.584,"geometry_index":2712,"location":[-7.469553,40.102436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,191],"duration":1.68,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.546,"geometry_index":2713,"location":[-7.469405,40.10303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":0.735,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.674,"geometry_index":2714,"location":[-7.469302,40.103375]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[5,192],"duration":68.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":63.27,"geometry_index":2716,"location":[-7.46926,40.103525]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,331],"duration":50.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.504,"geometry_index":2723,"location":[-7.475262,40.117107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,345],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.17,"geometry_index":2735,"location":[-7.479541,40.128996]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":9.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.238,"geometry_index":2736,"location":[-7.479651,40.1293]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,360],"duration":1.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.445,"geometry_index":2739,"location":[-7.480184,40.131766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,180],"duration":12.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.649,"geometry_index":2740,"location":[-7.480188,40.132143]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,187],"duration":0.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.702,"geometry_index":2744,"location":[-7.479802,40.13556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":1.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.239,"geometry_index":2745,"location":[-7.479764,40.135737]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[12,15,190],"duration":8.515,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.293,"geometry_index":2746,"location":[-7.479691,40.136054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":1.337,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.304,"geometry_index":2749,"location":[-7.479038,40.138164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,195],"duration":5.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.827,"geometry_index":2750,"location":[-7.478921,40.138507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,193],"duration":132.863,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":126.195,"geometry_index":2751,"location":[-7.478464,40.139999]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.48229,40.174633],"geometry_index":2778,"admin_index":0,"weight":21.789,"is_urban":false,"turn_weight":15,"duration":7.359,"bearings":[20,30,202],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.481454,40.17641],"geometry_index":2780,"admin_index":0,"weight":10.831,"is_urban":false,"turn_weight":1,"duration":10.649,"bearings":[19,189,200],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,191],"duration":16.046,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.843,"geometry_index":2783,"location":[-7.480496,40.179088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,349],"duration":0.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.729,"geometry_index":2788,"location":[-7.480685,40.18326]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,348],"duration":9.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.787,"geometry_index":2789,"location":[-7.480739,40.183463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,331],"duration":9.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.079,"geometry_index":2792,"location":[-7.481965,40.185837]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,321],"duration":7.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.076,"geometry_index":2797,"location":[-7.483861,40.187992]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[136,311,327],"duration":13.112,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.104,"geometry_index":2800,"location":[-7.485596,40.189473]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.488864,40.191775],"geometry_index":2802,"admin_index":0,"weight":33.739,"is_urban":false,"turn_weight":1,"duration":36.386,"bearings":[130,138,322],"out":2,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,207],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.091,"geometry_index":2815,"location":[-7.488435,40.200616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,198],"duration":1.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.028,"geometry_index":2816,"location":[-7.488312,40.200902]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,198],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.106,"geometry_index":2817,"location":[-7.488191,40.201186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,198],"duration":85.313,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.782,"geometry_index":2819,"location":[-7.487954,40.201739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,191],"duration":6.784,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.275,"geometry_index":2840,"location":[-7.491463,40.223433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,200],"duration":7.093,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.562,"geometry_index":2846,"location":[-7.490782,40.225114]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[30,35,207],"duration":11.882,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.982,"geometry_index":2850,"location":[-7.489794,40.226738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.487527,40.229281],"geometry_index":2857,"admin_index":0,"weight":2.633,"is_urban":false,"turn_weight":1,"duration":1.773,"bearings":[38,210,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":2.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.452,"geometry_index":2858,"location":[-7.487162,40.229635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,217],"duration":22.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.919,"geometry_index":2859,"location":[-7.486588,40.230216]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":2.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.903,"geometry_index":2865,"location":[-7.483142,40.235804]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":2.683,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.481,"geometry_index":2866,"location":[-7.482929,40.236315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":11.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.74,"geometry_index":2867,"location":[-7.482647,40.236993]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":61.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":55.166,"geometry_index":2871,"location":[-7.480717,40.239831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,242],"duration":8.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.569,"geometry_index":2884,"location":[-7.460351,40.246551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,240],"duration":36.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":32.921,"geometry_index":2885,"location":[-7.457737,40.247707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":1.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.707,"geometry_index":2893,"location":[-7.447959,40.254627]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":28.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.746,"geometry_index":2894,"location":[-7.44751,40.25503]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[40,52,219],"duration":8.419,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.56,"geometry_index":2896,"location":[-7.440845,40.261194]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.438863,40.262874],"geometry_index":2898,"admin_index":0,"weight":1.911,"is_urban":false,"turn_weight":0.5,"duration":1.578,"bearings":[49,215,224],"out":0,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,229],"duration":32.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":28.321,"geometry_index":2899,"location":[-7.438473,40.263137]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":11.487,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.052,"geometry_index":2903,"location":[-7.428536,40.267689]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":160.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":140.307,"geometry_index":2904,"location":[-7.424825,40.269077]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":5.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.31,"geometry_index":2927,"location":[-7.381966,40.3019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":57.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":51.894,"geometry_index":2930,"location":[-7.382145,40.303644]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.376976,40.319175],"geometry_index":2945,"admin_index":0,"weight":22.788,"is_urban":false,"turn_weight":15,"duration":8.66,"bearings":[57,62,235],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.604,"geometry_index":2948,"location":[-7.374219,40.320222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":8.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.71,"geometry_index":2949,"location":[-7.373678,40.320384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,249],"duration":7.854,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.049,"geometry_index":2951,"location":[-7.370846,40.321192]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,243],"duration":51.348,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":46.213,"geometry_index":2954,"location":[-7.368209,40.322151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":0.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.597,"geometry_index":2958,"location":[-7.35259,40.330497]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,229],"duration":41.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.487,"geometry_index":2959,"location":[-7.352405,40.330619]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,236],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.364,"geometry_index":2963,"location":[-7.339636,40.337374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,237],"duration":110.116,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":99.104,"geometry_index":2964,"location":[-7.339167,40.33761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,205],"duration":0.542,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.487,"geometry_index":2990,"location":[-7.320417,40.363222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,202],"duration":43.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":39.295,"geometry_index":2991,"location":[-7.320342,40.363365]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":9.724,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.745,"geometry_index":2998,"location":[-7.314487,40.375296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,206],"duration":16.491,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.836,"geometry_index":3000,"location":[-7.312957,40.377776]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":30.758,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.682,"geometry_index":3003,"location":[-7.310019,40.3819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":8.22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.397,"geometry_index":3009,"location":[-7.306601,40.390068]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,189],"duration":146.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":132.008,"geometry_index":3012,"location":[-7.306335,40.392373]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,187],"duration":13.837,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.453,"geometry_index":3054,"location":[-7.281235,40.425793]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":38.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":35.043,"geometry_index":3060,"location":[-7.28087,40.429737]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,210],"duration":13.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.985,"geometry_index":3075,"location":[-7.271374,40.437782]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,195],"duration":10.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.575,"geometry_index":3078,"location":[-7.269819,40.441328]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[24,30,199],"duration":15.01,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.5,"geometry_index":3080,"location":[-7.268667,40.44417]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.266208,40.44824],"geometry_index":3088,"admin_index":0,"weight":58.024,"is_urban":false,"turn_weight":1,"duration":63.384,"bearings":[15,193,198],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,180],"duration":1.79,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.604,"geometry_index":3112,"location":[-7.261208,40.464133]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,359],"duration":29.973,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":26.969,"geometry_index":3114,"location":[-7.261214,40.464604]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[26,205],"duration":13.187,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.868,"geometry_index":3141,"location":[-7.259451,40.472256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,206],"duration":7.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.142,"geometry_index":3142,"location":[-7.257749,40.47488]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,200],"duration":7.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.89,"geometry_index":3148,"location":[-7.256858,40.476593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":3.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.45,"geometry_index":3154,"location":[-7.256223,40.478345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,193],"duration":1.874,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.68,"geometry_index":3155,"location":[-7.255924,40.479353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":94.707,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":85.23,"geometry_index":3157,"location":[-7.255767,40.47984]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,205],"duration":0.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.519,"geometry_index":3186,"location":[-7.241167,40.502529]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":4.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.796,"geometry_index":3187,"location":[-7.241081,40.502652]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,216],"duration":2.009,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.8,"geometry_index":3191,"location":[-7.240351,40.503531]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,221],"duration":3.172,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.848,"geometry_index":3194,"location":[-7.239939,40.503914]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,225],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.149,"geometry_index":3197,"location":[-7.239223,40.504474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.691,"geometry_index":3198,"location":[-7.238941,40.504675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":2.064,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.841,"geometry_index":3199,"location":[-7.238779,40.504791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":1.125,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.994,"geometry_index":3201,"location":[-7.238346,40.505094]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[47,227],"duration":14.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.78,"geometry_index":3202,"location":[-7.238111,40.505258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,203],"duration":6.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.737,"geometry_index":3207,"location":[-7.235702,40.507814]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,197],"duration":2.744,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.539,"geometry_index":3213,"location":[-7.234976,40.509277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":2.074,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.912,"geometry_index":3215,"location":[-7.234751,40.509948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":16.153,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.936,"geometry_index":3217,"location":[-7.234594,40.510457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,197],"duration":15.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.584,"geometry_index":3223,"location":[-7.233198,40.514388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,201],"duration":17.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.928,"geometry_index":3229,"location":[-7.231412,40.518414]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[44,53,225],"duration":16.854,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.571,"geometry_index":3236,"location":[-7.227881,40.522038]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.223942,40.525279],"geometry_index":3242,"admin_index":0,"weight":6.406,"is_urban":false,"turn_weight":0.5,"duration":6.409,"bearings":[38,207,222],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,218],"duration":2.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.646,"geometry_index":3243,"location":[-7.222565,40.52661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":8.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.687,"geometry_index":3244,"location":[-7.221977,40.52723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":44.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":41.53,"geometry_index":3245,"location":[-7.220267,40.529031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,189],"duration":7.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.755,"geometry_index":3255,"location":[-7.216936,40.540388]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":12.694,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.419,"geometry_index":3257,"location":[-7.216348,40.542321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[183,359],"duration":8.622,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.738,"geometry_index":3262,"location":[-7.215658,40.54553]},{"bearings":[165,344],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":3265,"location":[-7.216069,40.547708]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 95 miles.","announcement":"Continue for 95 miles.","distanceAlongGeometry":152246.281},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 80.","announcement":"In 2 miles, Keep left to stay on E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":226.667}],"intersections":[{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-7.216971,40.56003],"geometry_index":3281,"admin_index":0,"weight":25.054,"is_urban":false,"turn_weight":15,"duration":10.892,"bearings":[167,345,358],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[153,172,355],"duration":5.608,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":2,"weight":5.18,"geometry_index":3286,"location":[-7.217886,40.562761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,180],"duration":2.4,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":2.22,"geometry_index":3288,"location":[-7.217963,40.564141]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,185],"duration":3.024,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":2.797,"geometry_index":3289,"location":[-7.2179,40.564731]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,189],"duration":25.992,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":23.393,"geometry_index":3290,"location":[-7.217749,40.565477]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.212698,40.57051],"geometry_index":3298,"admin_index":0,"weight":13.808,"is_urban":false,"turn_weight":11,"duration":3.139,"bearings":[51,218,232],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":21.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.467,"geometry_index":3299,"location":[-7.211738,40.571099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,262],"duration":40.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.747,"geometry_index":3305,"location":[-7.20385,40.573183]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,258],"duration":1.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.462,"geometry_index":3316,"location":[-7.188634,40.576588]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":314.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":283.122,"geometry_index":3317,"location":[-7.18804,40.576674]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":14.07,"toll_collection":{"name":"Pórtico do Nó Pinhel / Pínzio","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.663,"geometry_index":3380,"location":[-7.075488,40.605395]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,277],"duration":6.378,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.723,"geometry_index":3384,"location":[-7.069967,40.605065]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.173,"geometry_index":3385,"location":[-7.067746,40.604874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":5.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.966,"geometry_index":3386,"location":[-7.067303,40.604839]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[96,265,276],"duration":5.678,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.104,"geometry_index":3387,"location":[-7.065369,40.604673]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,276],"duration":81.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":71.726,"geometry_index":3388,"location":[-7.063273,40.604496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":6.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.102,"geometry_index":3399,"location":[-7.033228,40.604495]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":3.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.684,"geometry_index":3400,"location":[-7.030702,40.604248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":81.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":71.546,"geometry_index":3401,"location":[-7.029622,40.604154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,278],"duration":50,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":45,"geometry_index":3424,"location":[-7.002751,40.610426]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.985362,40.60776],"geometry_index":3428,"admin_index":0,"weight":29.504,"is_urban":false,"turn_weight":15,"duration":16.123,"bearings":[100,108,280],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.979804,40.606944],"geometry_index":3433,"admin_index":0,"weight":8.21,"is_urban":false,"turn_weight":0.5,"duration":8.575,"bearings":[105,275,283],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,287],"duration":48.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":42.088,"geometry_index":3435,"location":[-6.976887,40.606292]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,267],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.25,"geometry_index":3441,"location":[-6.960241,40.604228]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,269],"duration":8.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.671,"geometry_index":3443,"location":[-6.958114,40.60428]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.954997,40.604291],"geometry_index":3444,"admin_index":0,"weight":10.304,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.782,"bearings":[90,108,270],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.950854,40.604276],"geometry_index":3445,"admin_index":0,"weight":10.82,"is_urban":false,"turn_weight":1,"duration":11.231,"bearings":[91,252,270],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,267],"duration":1.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.913,"geometry_index":3447,"location":[-6.947095,40.604277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,264],"duration":33.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.304,"geometry_index":3448,"location":[-6.946734,40.604308]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,269],"duration":36.099,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.586,"geometry_index":3459,"location":[-6.935569,40.607135]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,246],"duration":19.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.411,"geometry_index":3466,"location":[-6.923414,40.610018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":3.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.268,"geometry_index":3469,"location":[-6.916388,40.61115]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":3.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.209,"geometry_index":3470,"location":[-6.915099,40.611333]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,259],"duration":53.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":46.447,"geometry_index":3471,"location":[-6.913833,40.611521]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,269],"duration":7.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.627,"geometry_index":3483,"location":[-6.895859,40.613224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":13.075,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.441,"geometry_index":3486,"location":[-6.893251,40.612932]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,260],"duration":1.683,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.472,"geometry_index":3490,"location":[-6.88875,40.612728]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,257],"duration":60.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":53.051,"geometry_index":3491,"location":[-6.888176,40.612825]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":15.63,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.676,"geometry_index":3500,"location":[-6.86502,40.616705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,262],"duration":32.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":28.971,"geometry_index":3501,"location":[-6.858913,40.617327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.44,"geometry_index":3504,"location":[-6.846344,40.618669]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[86,94,266],"duration":15.007,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.875,"geometry_index":3506,"location":[-6.844457,40.618786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.839138,40.618635],"geometry_index":3516,"admin_index":0,"weight":8.765,"is_urban":false,"turn_weight":0.5,"duration":8.708,"bearings":[98,267,278],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":6.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.144,"geometry_index":3519,"location":[-6.836092,40.618234]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,286],"duration":11.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.542,"geometry_index":3522,"location":[-6.833874,40.61779]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[112,290],"duration":16.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.246,"geometry_index":3523,"location":[-6.830136,40.616753]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,292],"duration":9.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.333,"geometry_index":3524,"location":[-6.824906,40.615142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[112,294],"duration":6.88,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.518,"geometry_index":3526,"location":[-6.821722,40.614117]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,303],"duration":3.711,"turn_weight":3775.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3779.08,"geometry_index":3530,"location":[-6.819647,40.613223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,309],"duration":1.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.274,"geometry_index":3532,"location":[-6.818721,40.612664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,310],"duration":8.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.533,"geometry_index":3533,"location":[-6.818379,40.612443]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,323],"duration":9.701,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.208,"geometry_index":3536,"location":[-6.816364,40.610722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,336],"duration":3.323,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.157,"geometry_index":3539,"location":[-6.814775,40.608524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,341],"duration":36.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.332,"geometry_index":3541,"location":[-6.814389,40.607714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":2.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.466,"geometry_index":3554,"location":[-6.810757,40.598886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,320],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.144,"geometry_index":3556,"location":[-6.810216,40.59833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,320],"duration":10.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.153,"geometry_index":3557,"location":[-6.809727,40.597885]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,310],"duration":3.243,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.919,"geometry_index":3560,"location":[-6.80723,40.596087]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":0.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.064,"geometry_index":3561,"location":[-6.806339,40.595624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":14.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.022,"geometry_index":3562,"location":[-6.806321,40.595615]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[101,106,287],"duration":0.308,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.252,"geometry_index":3567,"location":[-6.801832,40.594067]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,281],"duration":28.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.543,"geometry_index":3568,"location":[-6.801741,40.594053]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.792205,40.593297],"geometry_index":3578,"admin_index":1,"weight":11.996,"is_urban":false,"turn_weight":0.75,"duration":12.504,"bearings":[101,275,280],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[112,289],"duration":33.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.683,"geometry_index":3584,"location":[-6.788108,40.592408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,293],"duration":2.181,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.908,"geometry_index":3595,"location":[-6.778014,40.588124]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,293],"duration":15.239,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.334,"geometry_index":3596,"location":[-6.777327,40.587905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,271],"duration":0.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.554,"geometry_index":3602,"location":[-6.772247,40.587342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,270],"duration":8.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.536,"geometry_index":3603,"location":[-6.772023,40.587342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":163.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":143.457,"geometry_index":3604,"location":[-6.768996,40.587383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,272],"duration":4.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.151,"geometry_index":3636,"location":[-6.71154,40.590288]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.709882,40.590197],"geometry_index":3638,"admin_index":1,"weight":11.864,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.578,"bearings":[95,274],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,262],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.225,"geometry_index":3643,"location":[-6.705136,40.590222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,258],"duration":11.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.741,"geometry_index":3644,"location":[-6.704652,40.5903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":6.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.25,"geometry_index":3649,"location":[-6.700985,40.59139]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,244],"duration":76.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":67.252,"geometry_index":3651,"location":[-6.698875,40.592194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,265],"duration":3.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.471,"geometry_index":3678,"location":[-6.669228,40.590154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,263],"duration":44.626,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.049,"geometry_index":3679,"location":[-6.667832,40.590275]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":11.562,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.109,"geometry_index":3685,"location":[-6.652507,40.59227]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,260],"duration":1.808,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.574,"geometry_index":3686,"location":[-6.648579,40.592801]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":94.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":83.037,"geometry_index":3687,"location":[-6.647985,40.592873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,299],"duration":1.405,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.23,"geometry_index":3710,"location":[-6.614754,40.593541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,298],"duration":128.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":112.113,"geometry_index":3711,"location":[-6.614325,40.593365]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,287],"duration":22.899,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.021,"geometry_index":3742,"location":[-6.569179,40.577783]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":58.999,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.082,"geometry_index":3753,"location":[-6.56152,40.577937]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,247],"duration":0.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.691,"geometry_index":3764,"location":[-6.539572,40.583765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":46.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":44.492,"geometry_index":3765,"location":[-6.539339,40.583851]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,234],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.602,"geometry_index":3774,"location":[-6.525509,40.590185]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":10.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.861,"geometry_index":3775,"location":[-6.525077,40.590448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":7.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.662,"geometry_index":3777,"location":[-6.522436,40.592186]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":19.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.566,"geometry_index":3778,"location":[-6.520427,40.593543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,217],"duration":23.708,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.502,"geometry_index":3785,"location":[-6.515557,40.597061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":27.822,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.424,"geometry_index":3797,"location":[-6.513063,40.603026]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[174,354,358],"duration":1.289,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.205,"geometry_index":3807,"location":[-6.513524,40.610355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":29.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.307,"geometry_index":3808,"location":[-6.513569,40.610683]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.511697,40.618059],"geometry_index":3824,"admin_index":1,"weight":26.213,"is_urban":false,"turn_weight":0.75,"duration":29.107,"bearings":[34,204,213],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,242],"duration":0.733,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.643,"geometry_index":3839,"location":[-6.503127,40.6237]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":96.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":84.408,"geometry_index":3840,"location":[-6.502892,40.62379]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[50,63,230],"duration":32.578,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.498,"geometry_index":3883,"location":[-6.477413,40.638899]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.468667,40.644392],"geometry_index":3888,"admin_index":1,"weight":104.42,"is_urban":false,"turn_weight":1,"duration":118.202,"bearings":[54,227,232],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":30.919,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.037,"geometry_index":3939,"location":[-6.436821,40.66327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":32.914,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.783,"geometry_index":3945,"location":[-6.431416,40.670507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,194],"duration":2.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.049,"geometry_index":3955,"location":[-6.42822,40.679103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":60.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.182,"geometry_index":3956,"location":[-6.428003,40.679685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":31.307,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.158,"geometry_index":3971,"location":[-6.417163,40.694286]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,254],"duration":2.651,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.379,"geometry_index":3987,"location":[-6.407756,40.698809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,257],"duration":2.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.992,"geometry_index":3988,"location":[-6.406829,40.69897]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":55.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":50.277,"geometry_index":3989,"location":[-6.406049,40.699095]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":27.128,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.408,"geometry_index":4008,"location":[-6.391829,40.708707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,208],"duration":58.388,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":51.082,"geometry_index":4013,"location":[-6.387687,40.716193]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,226],"duration":0.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.758,"geometry_index":4022,"location":[-6.372587,40.727581]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":98.679,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":86.344,"geometry_index":4023,"location":[-6.372361,40.727737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,247],"duration":2.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.479,"geometry_index":4036,"location":[-6.345354,40.746081]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,250],"duration":7.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.738,"geometry_index":4037,"location":[-6.344402,40.746339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.443,"geometry_index":4039,"location":[-6.341765,40.746886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,254],"duration":18.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.334,"geometry_index":4040,"location":[-6.340818,40.74709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,231],"duration":4.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.004,"geometry_index":4048,"location":[-6.33508,40.749542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,228],"duration":99.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":86.967,"geometry_index":4049,"location":[-6.333871,40.750353]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":0.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.463,"geometry_index":4064,"location":[-6.302269,40.76798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,247],"duration":31.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.367,"geometry_index":4065,"location":[-6.302094,40.768037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":32.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.951,"geometry_index":4075,"location":[-6.291186,40.770007]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":108.778,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":97.883,"geometry_index":4088,"location":[-6.280707,40.773591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,242],"duration":16.522,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.85,"geometry_index":4115,"location":[-6.244972,40.784871]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,241],"duration":0.958,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.861,"geometry_index":4119,"location":[-6.239875,40.78708]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":13.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.09,"geometry_index":4120,"location":[-6.239575,40.787203]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,247],"duration":235.143,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":205.742,"geometry_index":4125,"location":[-6.235253,40.788744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":1.851,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.619,"geometry_index":4181,"location":[-6.15815,40.808906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":9.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.312,"geometry_index":4182,"location":[-6.157498,40.808874]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[89,93,272],"duration":28.372,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.807,"geometry_index":4184,"location":[-6.154117,40.808744]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.143286,40.810654],"geometry_index":4195,"admin_index":1,"weight":53.803,"is_urban":false,"turn_weight":1,"duration":60.365,"bearings":[65,238,246],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":25.065,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.914,"geometry_index":4208,"location":[-6.122254,40.81853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":46.725,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.867,"geometry_index":4213,"location":[-6.114498,40.822777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.748,"geometry_index":4217,"location":[-6.100466,40.830758]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":125.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":109.619,"geometry_index":4218,"location":[-6.100201,40.830903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":18.102,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.285,"geometry_index":4241,"location":[-6.056081,40.847419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,244],"duration":0.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.637,"geometry_index":4250,"location":[-6.049539,40.848588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,240],"duration":15.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.619,"geometry_index":4251,"location":[-6.049307,40.84869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":113.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":99.545,"geometry_index":4258,"location":[-6.045149,40.851539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":0.626,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.547,"geometry_index":4275,"location":[-6.007275,40.865736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":43.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":38.373,"geometry_index":4276,"location":[-6.007059,40.865812]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.754,"geometry_index":4279,"location":[-5.992651,40.870934]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,244],"duration":19.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.791,"geometry_index":4280,"location":[-5.992365,40.871038]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,245],"duration":30.351,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.297,"geometry_index":4281,"location":[-5.985753,40.873385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":211.615,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":185.146,"geometry_index":4288,"location":[-5.975409,40.877991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.787,"geometry_index":4307,"location":[-5.903661,40.901365]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":46.638,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.809,"geometry_index":4308,"location":[-5.903358,40.901459]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":9.196,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.271,"geometry_index":4317,"location":[-5.887462,40.906172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,268],"duration":9.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.566,"geometry_index":4322,"location":[-5.884049,40.906554]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":9.442,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.262,"geometry_index":4325,"location":[-5.88036,40.906535]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,261],"duration":6.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.803,"geometry_index":4330,"location":[-5.876814,40.906686]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,255],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.369,"geometry_index":4333,"location":[-5.874374,40.907089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":39.409,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.482,"geometry_index":4334,"location":[-5.874224,40.907127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,222],"duration":1.222,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.068,"geometry_index":4349,"location":[-5.862741,40.913747]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,224],"duration":4.876,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.268,"geometry_index":4350,"location":[-5.862431,40.913986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,228],"duration":10.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.25,"geometry_index":4352,"location":[-5.861127,40.91489]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.857944,40.916509],"geometry_index":4357,"admin_index":1,"weight":152.266,"is_urban":false,"turn_weight":0.75,"duration":173.167,"bearings":[61,235,241],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":0.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.379,"geometry_index":4379,"location":[-5.794368,40.935797]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[79,84,258],"duration":25.615,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.406,"geometry_index":4380,"location":[-5.794206,40.935823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":0.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.297,"geometry_index":4391,"location":[-5.785299,40.935616]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.785186,40.935609],"geometry_index":4392,"admin_index":1,"weight":6.545,"is_urban":false,"turn_weight":0.75,"duration":6.645,"bearings":[92,270,275],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,266],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.242,"geometry_index":4395,"location":[-5.782869,40.935649]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,262],"duration":38.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.885,"geometry_index":4396,"location":[-5.782384,40.935698]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":1.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.992,"geometry_index":4410,"location":[-5.771502,40.941387]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.355,"geometry_index":4411,"location":[-5.771269,40.94164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":0.958,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.838,"geometry_index":4412,"location":[-5.770739,40.942204]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":126.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":113.906,"geometry_index":4413,"location":[-5.770539,40.942418]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,245],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.475,"geometry_index":4467,"location":[-5.730671,40.95551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,249],"duration":34.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.697,"geometry_index":4468,"location":[-5.73051,40.955557]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,277],"duration":1.337,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.236,"geometry_index":4479,"location":[-5.718636,40.956832]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,279],"duration":9.741,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.01,"geometry_index":4480,"location":[-5.718174,40.956774]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[106,114,286],"duration":9.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.766,"geometry_index":4483,"location":[-5.714999,40.956164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,271],"duration":8.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.5,"geometry_index":4488,"location":[-5.711917,40.955762]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,252],"duration":1.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.266,"geometry_index":4494,"location":[-5.708935,40.956172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,248],"duration":15.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.664,"geometry_index":4495,"location":[-5.708528,40.956294]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.705356,40.958192],"geometry_index":4500,"admin_index":1,"weight":1.496,"is_urban":false,"turn_weight":0.75,"duration":0.809,"bearings":[38,215,223],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":8.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.281,"geometry_index":4501,"location":[-5.705234,40.958311]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,220],"duration":3.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.057,"geometry_index":4502,"location":[-5.703699,40.959697]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[34,39,218],"duration":11.714,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.398,"geometry_index":4503,"location":[-5.703165,40.960221]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,209],"duration":1.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.145,"geometry_index":4506,"location":[-5.701354,40.962429]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":17.157,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.729,"geometry_index":4507,"location":[-5.701198,40.962668]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.699282,40.966422],"geometry_index":4512,"admin_index":1,"weight":12.133,"is_urban":false,"turn_weight":0.5,"duration":11.938,"bearings":[21,196,200],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":47.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":46.398,"geometry_index":4518,"location":[-5.697462,40.969223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":0.917,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.916,"geometry_index":4529,"location":[-5.689963,40.980285]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":6.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.17,"geometry_index":4530,"location":[-5.689846,40.980507]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[-5.689028,40.981946],"geometry_index":4532,"admin_index":1,"weight":13.838,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.2,"bearings":[26,30,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.686403,40.985033],"geometry_index":4537,"admin_index":1,"weight":19.104,"is_urban":false,"turn_weight":1,"duration":18.112,"bearings":[44,214,221],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[43,224],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":4543,"location":[-5.681931,40.988303]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":152286.281},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":3218.688}],"destinations":"Vilar Formoso","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E 80 toward Vilar Formoso.","modifier":"slight left","bearing_after":345,"bearing_before":347,"location":[-7.216971,40.56003]},"speedLimitSign":"vienna","name":"","weight_typical":4432.438,"duration_typical":4924.965,"duration":4924.965,"distance":152286.281,"driving_side":"right","weight":8208.001,"mode":"driving","ref":"E 80","geometry":"{xqjlAtsnwLeV`Gc^bJih@hNax@fR_QlByk@zCmh@A{c@}Bsm@mHsz@yV}h@qWga@qXuTwQk`@gb@q_@qg@m\\}j@u|@gfByc@_{@ek@_gAwT_q@qRex@cNs_AsFef@_U_qEcb@amJcEcz@{Hc|@wL{w@yRo{@oXow@eXat@kZqv@cUmz@eQe_AwHqy@kDcd@ee@wkGwJ_|@}M_{@oPor@eT_v@aj@alBe]wpA_Ryz@uKmx@iHsy@odBo~\\a@yHkHky@sMqy@sQar@gWst@kYwm@ukIo}N_c@}p@}a@gn@}{BuoDe\\mo@oYom@}Wso@qVyx@gRm}@oSe_AqWedAwYcs@q_@ip@s_@{c@w_@y_@scBuzAsd@wg@g_@uj@}[wq@wUyw@cQq~@gIg_AmCscAmGepRcC{}@mEs`AkIk`AgHuu@{lAu|IwGqv@kCey@^}`AtEiaApaA_iKvHg|@rEg_An@a{@gAacAsJknAgQ_dAaPqx@}xDg}P_Lks@{H_w@kF}}@y@o_@k@ka@h@q}@fDugAlNmnD|JyiCdAuZjI{wB`J_bCfpA}c[bBi_A`Ayy@}Cq`A_Jsx@}jAu~IwEev@wDqw@O{w@rB{w@zMkxClN{|CzDobApFwqA^{bAiCa_AyF}gAmHmlAsI{nAmM_aBaHuaAoIg_AyN}s@{Qcr@mWas@oZes@qYqp@iwCy{GeY_t@aQ{s@}Oc|@kHmu@_D_}@_Ao|@hBe`AjDws@t`BepPzP_cCfFmt@xj@esI`IajAvFkcAzFg|@|I}}@jMwnApJov@d\\y}BvkByhMhLa{@jHy~@nEmcAhAmkAgJyxH{A_iBK}YUyaE\\}aG|@uzD_Agn@}@qUqAuUsEwg@oJ{r@gNyp@eViu@oaA_mCqTev@aOm{@}Fwy@sBe|@{@ycBxAkjDg@u_AqDcx@}Lqv@_Lyk@q_CwpHuSk{@sImk@wHyk@kq@{|ImJqoAwJcnAyEeeAg@u_ApY}}Jc@ueAyCww@iMy|@_Neq@os@kkCcP_t@wLabAsDmaAUgf@XkZ`Fm_AjIefAxPstB|@_w@c@k~@{Dik@aE{b@aMyz@yMol@gl@_sBsV_w@kPat@gK{p@gJay@k_AexRof@wvJ{e@u|Jij@okJq[stG_KmnCqBer@wBwaAm@oY[_e@Kqh@X{c@ZoWv@mi@x@{f@dAa^pBqi@b@aHlGesAjFkt@fHys@lFwh@vFoe@pKky@x_AshFtcB{eInj@ciCpS{{@lEoStKu^nO{b@fSsh@jJ}RpV}d@xLkTde@kr@dc@}h@d`@s_@`u@gm@r_@_Wtq@a\\x[gMxT{HfHeCd`@gLnp@wLno@}IlmAeNtu@}Kz[iFtZsGnw@{Vjm@kW~t@_d@pf@o_@dXaVdVcTpJuKxZq]tf@sn@lf@kv@f`@at@|[uv@Pc@hDgIdVus@zT{v@z[{vAnP{hAZuDdKgoA~C{j@tD}zAlAmfB~BurAd@{XdCu|@nBcd@vBkZhDwg@pFqp@jG{g@`Le{@hKcq@`Lkr@d@}BbMom@jNcn@lR_s@tUiv@``@ueApYar@p_@{}@rS{h@jc@{iAn^aoAlNoo@tL}i@|Ei[pIkr@vHocAnCgv@jA_e@`@akA?_MqAe|D_B{tDkAeoD_AskCcA}_Cw@i}Bu@scCq@gqA_@cpA]_lAs@qmAu@wlBqAoeAcBahA}Bc~@{C}dAwNg_D_MafCiSaeEgNkoCkRm{DwHueBcCmp@mByq@i@aLmEstBuFchC}NarGoJ_nE}A{_Ac@ix@Bkk@n@qt@zBygAx@y]rDmzAn@kl@Kyu@qAor@wDot@{Cg]aF_d@wGgc@oNou@_P_q@yRmr@}Z}eAiU}{@{N}n@wHia@}Fs_@{Gmk@gEmd@yCil@mBiq@M}r@`Byx@~Bgd@jEao@jIex@~T}dBfXmsBv^mqCn\\cmCdKg~@vKqgAlJwoATwCfHgnAdGa~ApCirAdAueBi@miA_BgnAkCaaAqFgvAgKwiBoMorBaf@_dHaMukBsOyuBe[avEe`@otFoCcd@yo@klJm^aoFsNs`CkE_bA{Bgn@oBss@gEwiBcAa}A[k~A~@y|DnAqfEl@kiBTkj@|A_n@|@q^vCec@rC{]rCeZ~Eu^bHq`@pLuk@~L{d@|FaR~IyYtw@q_CxiAkgDrPse@lJcTnZmq@`Vma@zQ}XnNuQv[i_@vYc\\|\\y^bYk[|Ym^zYmb@pUi_@~Uoe@tRqc@zQwf@dLy`@lLce@lKye@jKwk@tl@mdEto@wqE`cBulLp@yEpz@_aG|y@a|F|v@uqFb[awBz[y|BlNegA|Ci^~Bud@zAsh@d@uj@}@ao@yCws@oB}Y_DuZwH{m@aL{p@ik@ajDu`@y`Cqn@sqDc@cCal@mlDk_AcsFe|@ckFm[gjB_Lsl@yM{o@uIu_@kDqMeMoe@oRsn@gRcn@sj@{}AyaBsvEkyByhGqb@ikA_T}f@qTqe@mO_ZuMeW}|A{kCysAq|BiaAmbBk_Ac`B}Rg[cR_YoMiO{M_PwSgSeLwJkXsSca@sVkTiKch@eScb@aMmp@sQwa@}HqYsEy`@cGi\\_Es[_Cc[sB}`@iBs`@c@cZ[sVPk[l@mVv@}x@`FmaBdLmfBvLoSxAk^hCw}@rGa[hB}YXsZK_UeAuZgC__@kFc\\uHaUoGqS_IsPyGeU{KyQuKgh@_^}]iYe[cXm_@__@aXsYyXo\\{ToYgXa`@yWaa@iW}b@yT{a@cP}\\wPq^mXip@iOeb@aO_d@i]}iAsDuM{Tuw@sSeo@kPqb@gMmY_Rq\\iVc^qWyZkUaTwSkQcUuNy[kQ{e@mRib@mNcw@gUeXyJgUeJk_@}QoZmRi[iUqXqVm`@gb@}^cf@aXec@kMoVcN{X_Tuh@_Rwj@qPgp@aI{_@eH}b@cJos@kY_uCgTwtBeJa|@{CsX}Dw[wGi^}Hu`@gMwf@oPcg@}Mw^oZap@kn@kiAmfA{oBe|C_xFaq@{mAu`@st@}]gs@kReb@sPk]iSee@iWip@gXcs@uf@qxAgb@}sAka@}oAwMi^oOy`@aQu^kRg^oOuW_OqUcR}Woc@mi@cj@kl@gZm\\}Wo[eWu]wT{]mMyU{KyTeLeVqMy[{Pge@oO_j@oN{j@oKki@aKgs@{Hat@aJqcAsIi|@eIai@{Jsf@uKid@aJgZgOsb@sRgd@kMcWmOmXmNuToO{S}MwPaOkP{RwRsUiS_}@uq@_oAw`A_oA_aAs_A_u@soFyaEou@}h@wq@gb@uWkOmZgPiu@e_@yZwNa\\wMcn@aVag@yPai@gPas@gR}lAeXcjAeUaqA}V}~@qSkc@qLeo@gR_m@kSce@mQyg@{TofAgi@c]_RetCepB{bAex@u`C{lBofAu{@}fAi|@mp@kh@wq@kl@kX{VaUmVeQcSmRqViTyYcR{XoXac@wTkc@cQ}\\wVgk@{]y`AgP}h@uLad@{Jeb@uJye@wLmq@}Fyb@mG{f@aI}x@yFwo@kUyeCaSmtBmEgg@kJgq@mLyl@gMeg@uJ_\\yMs_@sO{_@kS}a@iVya@ec@ul@_\\e^oYsWw`@{Y_\\kR_a@}RupA}j@{zCcsA}oDi~AkqDe_Bqs@_\\_a@cS_YgQ}ZwUyZyYuNwN_RmU_[qc@{_@am@ioB_zCm_IqxLu~ByoDwHcMexDo~FwwE}iHewEyiHiqEsaHksCemEe^wj@{`@ms@mUef@sU_m@yR}j@qSgt@oHq[uHw]cOoz@kPcmAyOuuAwKez@sK_n@oMyq@cQoq@_Xa{@mOia@eSie@wS_c@sXsh@uq@qjA}p@glAyr@msA{xDqbImB_E{aEutIunCuzFgrC{`G}yBgvEoaAasBaZqo@sZeu@wSqi@sUgu@qVo|@wLgg@qB}IeNsr@yMox@cKos@yFof@oIy`A_Faq@eN{rBoNsjByIoaAeMwiA}Do[yK_y@oPubA_Jwh@iLml@uKyg@eW_hAuYchAgOyg@mPkh@{T}q@}Vmr@kSai@wTgi@_gAqhCgx@{lBgi@kvAqb@knA{Vkw@eW}{@{YehAgVwcAiSa`AiUimAeW}}AsOegAgL{~@uOwxAyIg_Au`@irEyS{nBoH}r@aKow@{J_r@uNg}@y\\mmBkVkhAk[arA_\\wlAsf@{bBiPse@_c@iqAmx@wbCiZ{`AuFwQmPyi@qQcp@cReu@iT_|@{R_~@q[geBqNkz@{OaiAiQyvA_LkbAsJi_A{Ie{@mP}{AoPawAmRotA}QaiAaXguAsS}}@sPms@wWq_Aq`@ipA}Tqo@}Q{g@}Tgk@qTyh@oUwg@_h@efAii@yaAw`@sq@sd@it@euAmvBq^qk@k_@ao@qj@icAcY{j@sYmm@aj@esAue@urAk]egA_Omg@mOmm@cRqt@yQ{x@iUymA_Na}@uPclAaM{iAgMatAwWehDoYipDkUe{C}c@q_Gie@grG_Nk|ByImnCwDkcAwA}iAsBapCNukBlA_qBhF}zC~@wg@pC_fBpBikBo@mqA?O{CetAcGgmAwFax@eHcu@}Iaw@eFy_@uNs|@uWeqAm\\uuAuHa[cn@uaCsm@ubCyz@ifDubAm|D}{@cmDwx@u{Cc]emAa`@qpAqLe_@cNoa@q\\m_AeTsl@u`@oaA{d@{iA}[mr@okCuwFmWgj@ibA_vBa|BkzEmlDmoH_dCeiFaHqOad@{~@se@_gA_c@kfAce@ykAgn@qeBsh@_aBco@uxB}nAcjE}qAwqE{`Dw{Ki_DywKqpAgnEgnAoiE{Va{@cScw@}H}_@gMot@cLy|@UaBeG_x@mDst@mBa`AOy}@Imi@uAex@a@oXgBkb@uEml@sHkp@yPiaAkLce@gQcp@kEoMoLw[oUmi@wSo`@aSo[yUc^iv@iaAcVg\\ySwZgi@e}@yd@q}@yXwq@y]odA{XccA}YmrAgx@anDgc@{mBww@yjDucBe}GybBsxG_eBi|GiT{{@}`AsyD}wA_xFao@mfCwCoLe{Bk{IeeBs}Gw|AohGoE{PuqCg|Kwu@ymCs{@}nCg]caA}e@ooAyfAusCKWc^u~@{\\w|@wmAgbDw`@yiA{]wfAyWm}@ut@qkCqYclAk\\gwAmr@meDyzAiiHq|AknHk{DibRuiHgi]g{@ecEocAq~Eq~Bo|Kwg@caCoy@g|DwhA_qF{D}QyOcu@ufAkhFuoA_dGoc@uuBod@qyBsQo{@}Ni}@{Gye@}Fci@aFec@qC_b@}Ee}@iC_p@_@}]g@{f@FykAdA{pBPi\\Goy@_B}z@yCqx@}@iOiDqk@cHot@wImu@kAkHeT{qA}Sg_AsMkh@qOcj@{a@kmAmVwj@qRsa@s\\gp@gR_ZiSs[wc@{o@{k@qp@yu@i{@iZq]s\\cb@}MkRoVg_@_`@gp@eZqk@mQqa@wPe`@_Na_@yUqu@cFePiMwe@kf@ekBk|By~Ig}BeaJu|Bc_Ji|B_aJcX}dAm`A}yDub@mrBkg@woCwm@ytD{f@uyCij@sfDqbB{eKiQeeAc]ctBsy@eaFysBmhMaAcGoJis@oGyt@s@cIuD_f@uBwh@{Bc|@a@m_@?ia@F{q@zBgs@hAs_@nHovApGgrAvAqh@LaFXkc@]m}@kA_m@aBi]{Fax@gHut@yLsz@{Hsa@eMkk@}Ool@gVwt@_\\ww@wZwm@sWsc@mXka@cY{^{h@oj@qtAspAyNqMgb@c`@kLoKoY_Xe_@i]we@id@_a@{d@me@{o@c`@cq@c]os@qRye@sTsp@_Nod@{Nip@eLum@eIii@kI}u@uDsf@_Dii@gB_h@Yul@Lgy@tA{n@nBwj@vCar@fCal@lBgn@`Bym@^}k@Cod@Ukd@cAwq@mAke@iCif@{Bwb@yEgl@_Geo@_Jor@sLex@mGs[iH__@eMck@gN}i@aTqs@aTsm@_LuZ}Soh@wXml@_]io@qwA{fCkQg]{R}`@mSqc@ySif@a_@ybAy]{gAwWidA}AaIqXmpAwUo{AsHaj@_Hqm@kKevAqFgfAgCcsADgqA`Asp@lAq_@vEqfArB{[bJydApN_jAlJst@nGwe@pFac@xDil@zAue@Jy`@BwGiAii@aBy_@uC}^eFyc@oGw`@sFmXmTkr@qPqa@}S{c@sUq]ac@{k@mFsFsuA}~Aw_@k`@abAe{@o`@_Xmd@_[}MwHue@sV_^kPmq@wWeu@iXi{@u[ml@gVaU_LsWiNaa@kVuYcSeUuQgG_F}^u[a~@az@yaAuz@ub@g[og@{\\}h@sZgh@wWmg@cVahCclAmwDofB{LiFeeAsf@wRoJgbAqj@k]qVsb@}^sd@wf@aUgXqXi_@mY{c@_p@ybAm_Ae{AcSgYyQaW{SkXeh@wk@wN{M"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 55 miles.","announcement":"Continue for 55 miles.","distanceAlongGeometry":87986.07},{"ssmlAnnouncement":"In 1 mile, Keep right to take A-62.","announcement":"In 1 mile, Keep right to take A-62.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take A-62.","announcement":"In a half mile, Keep right to take A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A-62 toward Valladolid, Burgos.","announcement":"Keep right to take A-62 toward Valladolid, Burgos.","distanceAlongGeometry":211.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-5.680571,40.989548],"geometry_index":4546,"admin_index":1,"weight":30.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.042,"bearings":[34,42,215],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,233],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.049,"geometry_index":4558,"location":[-5.674226,40.996314]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,243],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.73,"geometry_index":4560,"location":[-5.67264,40.997018]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,246],"duration":3.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.256,"geometry_index":4561,"location":[-5.672399,40.997098]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[-5.671312,40.997435],"geometry_index":4562,"admin_index":1,"weight":10.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.98,"bearings":[72,77,248],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.049,"geometry_index":4564,"location":[-5.667683,40.998311]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":16.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.588,"geometry_index":4565,"location":[-5.665925,40.998733]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.66051,40.999901],"geometry_index":4569,"admin_index":1,"weight":11.012,"is_urban":false,"turn_weight":0.75,"duration":10.533,"bearings":[80,255,259],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,266],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.928,"geometry_index":4572,"location":[-5.656874,41.000184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.877,"geometry_index":4573,"location":[-5.656547,41.000207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":1.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.08,"geometry_index":4574,"location":[-5.656234,41.000224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":7.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.594,"geometry_index":4575,"location":[-5.655853,41.000243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":1.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.537,"geometry_index":4576,"location":[-5.653186,41.000372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":35.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.471,"geometry_index":4577,"location":[-5.652634,41.000401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,274],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.984,"geometry_index":4588,"location":[-5.640313,40.999669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,271],"duration":20.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.674,"geometry_index":4589,"location":[-5.639959,40.999665]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[86,89,268],"duration":0.705,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.652,"geometry_index":4592,"location":[-5.632773,40.999858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":12.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.629,"geometry_index":4593,"location":[-5.632534,40.999871]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[85,89,265],"duration":15.289,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.125,"geometry_index":4596,"location":[-5.628296,41.000125]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.622264,41.000544],"geometry_index":4599,"admin_index":1,"weight":90.986,"is_urban":false,"turn_weight":0.75,"duration":100.281,"bearings":[84,260,265],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,233],"duration":12.326,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.07,"geometry_index":4622,"location":[-5.590025,41.011227]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":1.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.07,"geometry_index":4625,"location":[-5.586807,41.013482]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,225],"duration":79.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":69.387,"geometry_index":4626,"location":[-5.586508,41.013711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,227],"duration":101.711,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":88.98,"geometry_index":4643,"location":[-5.56971,41.031239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":5.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.023,"geometry_index":4673,"location":[-5.548221,41.053328]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-5.5467,41.054328],"geometry_index":4674,"admin_index":1,"weight":22.412,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.91,"bearings":[50,229],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,213],"duration":7.221,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.48,"geometry_index":4684,"location":[-5.540828,41.059412]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":154.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":135.02,"geometry_index":4686,"location":[-5.539477,41.061109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.4,"geometry_index":4741,"location":[-5.503338,41.089983]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[8,11,187],"duration":0.338,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.289,"geometry_index":4742,"location":[-5.503316,41.090109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,188],"duration":12.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.213,"geometry_index":4743,"location":[-5.503298,41.0902]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.50243,41.093619],"geometry_index":4747,"admin_index":1,"weight":121.355,"is_urban":false,"turn_weight":1,"duration":137.557,"bearings":[16,190,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,191],"duration":30.383,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.578,"geometry_index":4794,"location":[-5.489201,41.132303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":91.346,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":79.92,"geometry_index":4805,"location":[-5.484342,41.139873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,229],"duration":30.832,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.959,"geometry_index":4831,"location":[-5.455834,41.153766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,236],"duration":110.943,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":97.066,"geometry_index":4840,"location":[-5.446562,41.159772]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,262],"duration":119,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":104.117,"geometry_index":4875,"location":[-5.408033,41.165959]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,221],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.545,"geometry_index":4918,"location":[-5.369987,41.177868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,226],"duration":83.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":73.389,"geometry_index":4919,"location":[-5.369826,41.177987]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.596,"geometry_index":4949,"location":[-5.348346,41.195374]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":3.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.809,"geometry_index":4950,"location":[-5.348155,41.19549]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.347213,41.196022],"geometry_index":4952,"admin_index":1,"weight":107.822,"is_urban":false,"turn_weight":0.75,"duration":122.387,"bearings":[53,222,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":17.441,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.68,"geometry_index":4985,"location":[-5.318513,41.221356]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,198],"duration":1.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.256,"geometry_index":4988,"location":[-5.316699,41.226032]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,201],"duration":8.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.416,"geometry_index":4989,"location":[-5.316517,41.226396]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,207],"duration":3.219,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.809,"geometry_index":4992,"location":[-5.315178,41.228559]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,210],"duration":3.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.471,"geometry_index":4994,"location":[-5.314588,41.229331]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,213],"duration":13.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.393,"geometry_index":4995,"location":[-5.313809,41.230222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":301.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":271.674,"geometry_index":5001,"location":[-5.310432,41.233165]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,201],"duration":9.602,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.621,"geometry_index":5090,"location":[-5.230731,41.299616]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.244,"geometry_index":5093,"location":[-5.229699,41.302176]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":59.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.475,"geometry_index":5094,"location":[-5.229564,41.302553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,230],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.043,"geometry_index":5115,"location":[-5.217601,41.316664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,231],"duration":26.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.885,"geometry_index":5116,"location":[-5.216944,41.317057]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[72,75,256],"duration":26.785,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.416,"geometry_index":5126,"location":[-5.207905,41.320087]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.198985,41.323425],"geometry_index":5136,"admin_index":1,"weight":78.719,"is_urban":false,"turn_weight":0.75,"duration":89.131,"bearings":[48,227,231],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":25.303,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.135,"geometry_index":5161,"location":[-5.179836,41.343648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,218],"duration":9.42,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.223,"geometry_index":5167,"location":[-5.173036,41.348498]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,209],"duration":29.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.479,"geometry_index":5170,"location":[-5.171154,41.350737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":1.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.975,"geometry_index":5180,"location":[-5.168025,41.358561]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":2.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.979,"geometry_index":5181,"location":[-5.167957,41.358858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.773,"geometry_index":5182,"location":[-5.167816,41.35947]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[10,23,190],"duration":0.17,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.146,"geometry_index":5183,"location":[-5.16776,41.359712]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,190],"duration":12.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.682,"geometry_index":5184,"location":[-5.167749,41.359757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.166746,41.363021],"geometry_index":5188,"admin_index":1,"weight":36.838,"is_urban":false,"turn_weight":1,"duration":40.977,"bearings":[16,189,196],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,213],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.969,"geometry_index":5200,"location":[-5.159626,41.373316]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":223.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":195.705,"geometry_index":5201,"location":[-5.159157,41.373841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":3.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.375,"geometry_index":5231,"location":[-5.134375,41.408013]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[37,42,216],"duration":0.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.383,"geometry_index":5232,"location":[-5.133852,41.408558]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":9.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.037,"geometry_index":5233,"location":[-5.133759,41.408652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.254,"geometry_index":5235,"location":[-5.13173,41.410572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,219],"duration":10.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.809,"geometry_index":5236,"location":[-5.131407,41.410869]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.12896,41.412872],"geometry_index":5239,"admin_index":1,"weight":34.074,"is_urban":false,"turn_weight":1,"duration":37.809,"bearings":[44,220,223],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.971,"geometry_index":5245,"location":[-5.118891,41.419984]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":142.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":124.898,"geometry_index":5246,"location":[-5.118597,41.420181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,191],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.986,"geometry_index":5275,"location":[-5.08931,41.447245]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,194],"duration":2.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.016,"geometry_index":5276,"location":[-5.089112,41.44786]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[16,18,192],"duration":15.188,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.281,"geometry_index":5278,"location":[-5.088933,41.448484]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.086768,41.452343],"geometry_index":5284,"admin_index":1,"weight":126.033,"is_urban":false,"turn_weight":1,"duration":142.902,"bearings":[30,204,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[51,53,231],"duration":26.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.137,"geometry_index":5307,"location":[-5.046337,41.479303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,241],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.703,"geometry_index":5313,"location":[-5.038339,41.483724]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,243],"duration":18.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.605,"geometry_index":5314,"location":[-5.037702,41.483972]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.031416,41.486065],"geometry_index":5319,"admin_index":1,"weight":6.008,"is_urban":false,"turn_weight":1,"duration":5.57,"bearings":[66,241,247],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[66,69,246],"duration":31.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.213,"geometry_index":5320,"location":[-5.029554,41.486681]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.022284,41.492954],"geometry_index":5338,"admin_index":1,"weight":1.711,"is_urban":false,"turn_weight":0.75,"duration":1.045,"bearings":[4,177,185],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":7.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.75,"geometry_index":5339,"location":[-5.022255,41.493242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":2.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.059,"geometry_index":5341,"location":[-5.022041,41.495261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.732,"geometry_index":5342,"location":[-5.021971,41.495869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,184],"duration":5.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.801,"geometry_index":5343,"location":[-5.021952,41.49608]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.902,"geometry_index":5344,"location":[-5.021798,41.497511]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":7.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.18,"geometry_index":5345,"location":[-5.021776,41.497771]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":0.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.467,"geometry_index":5347,"location":[-5.021557,41.499856]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":2.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.021,"geometry_index":5348,"location":[-5.021542,41.499989]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.311,"geometry_index":5349,"location":[-5.021478,41.500573]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[5,13,184],"duration":0.408,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.381,"geometry_index":5350,"location":[-5.021469,41.50066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":14.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.332,"geometry_index":5351,"location":[-5.021458,41.500763]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.021063,41.504533],"geometry_index":5354,"admin_index":1,"weight":25.93,"is_urban":false,"turn_weight":0.75,"duration":26.514,"bearings":[6,180,184],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":3.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.719,"geometry_index":5366,"location":[-5.018363,41.509339]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[34,39,215],"duration":15.773,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.967,"geometry_index":5368,"location":[-5.017777,41.509987]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.013299,41.512512],"geometry_index":5380,"admin_index":1,"weight":7.592,"is_urban":false,"turn_weight":1,"duration":6.947,"bearings":[74,246,250],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[79,254,258],"entry":[true,false,false],"classes":["motorway"],"in":1,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":5381,"location":[-5.01085,41.513035]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Valladolid"},{"type":"text","text":"/"},{"type":"text","text":" Burgos"}],"type":"fork","modifier":"right","text":"Valladolid / Burgos"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"right","text":"A-62"},"distanceAlongGeometry":88026.07},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Valladolid"},{"type":"text","text":"/"},{"type":"text","text":" Burgos"}],"type":"fork","modifier":"right","text":"Valladolid / Burgos"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"right","text":"A-62"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":34,"bearing_before":35,"location":[-5.680571,40.989548]},"speedLimitSign":"vienna","name":"","weight_typical":2610.283,"duration_typical":2923.659,"duration":2923.659,"distance":88026.07,"driving_side":"right","weight":2610.285,"mode":"driving","ref":"E 80","geometry":"wuxdmAtzuyIk^m[cf@q^od@i[_u@qa@gz@ie@wZeS{YkUmi@kh@yF{GcYm^qe@ku@a_@ww@iZgv@uO{j@_DaNaT}bAcXggBs\\qyBkY{lByo@qkEqHij@gGim@kEgk@yGacA}CgmA}B}oAm@mSa@qRe@yVaGueDy@oa@cAgh@cAms@a@_w@l@w|@`A}d@~C}gApRivDbHmuAnFciApBoq@xAkt@FcUWchAiAqmA_HmhHY}M_Fs`CoCmgAkCy}@kOclFK{DmH_eC}Fk`B{G_oAeKsnAsEuc@uGyf@{Fmd@gKkn@}N}w@w@sDg_@ccBqYmiAg[uoAcv@wzCeiBejHqgBggHqe@mjB}Ret@uWw|@q[yaA_Wkv@m]m|@k[{u@ae@waAap@ujAai@y|@yp@s~@iMuQkt@{z@}{@i~@yp@mm@sjAg_AaqA{}@odBcgAazA}_Ao|A}bAur@qh@sv@yo@iq@en@en@go@ao@os@k`AwmAge@uo@ef@us@}zAu`Can@c`Auh@_x@ke@{p@wXc^e\\qa@g_@ub@ka@oc@wy@ww@oy@ss@kh@s`@ku@ah@{l@c_@kaAyj@_aAuh@ux@ic@oy@od@ci@_[_d@gXe`@uVs^cWkb@e[_d@{]ea@a^am@qj@ek@el@us@sy@yn@kx@{p@_`Aom@{`AyuA{aCo}@a~AoJkQsTq]ee@ku@kT{[iWu^}h@}p@qs@kw@kb@i`@ma@s^mc@{^cf@y]}aAst@alA}{@wx@ao@ka@_\\cVySge@}b@{a@ua@gg@ki@iRsTue@wm@ij@ay@gTi^iRm\\kTga@yTod@kX_m@kNm]wPqc@cMy]wPwg@sMmc@gSyt@{Owo@_Rey@g\\uaB}]knB}`@w|Bib@y{BkXcpAgMai@kUq|@yT{u@{Ssn@gT}j@mSmd@yQa`@mO{YsSs^wSc\\eToZeUuYao@st@o\\a[uYiVwl@kd@io@c`@yXeNuWyLgp@}Vyd@qNsg@wMam@yMajAgRsdBcTgoAiMmlAyL{Fk@uDc@m|@gK}eAaPma@oH{m@mNot@aSei@qQon@iVso@sZyu@sa@gy@sh@qx@mm@qjAa`AyiAodAchCg~BycAoz@ia@m\\k`@eYoc@mZ{q@wb@qd@aVs]qQc\\{N}]eNwk@gS}p@_Ro`@cJmf@eI}]sFuEs@e^cEgZkCi`@aCk_@}Acr@uA{w@Yqb@N}i@h@gv@pBcu@|B{oAnFsnArEynBlGenBxCmv@Dyk@m@ie@y@upA_Fwg@wDge@kEsy@kKap@aLwn@mMiw@mUaXaJys@qYwo@a[uZuPuV_OuZmRe\\cUqeA_|@s~@{_AsZy]ib@ij@kc@co@sb@es@cWwd@mWag@u\\ms@kO}\\e[mu@__@qcA}a@wmA{p@uzBmq@_dC{f@{mBsd@skBag@epBg_@}vAuj@gmBw[u`A}Two@i[ux@wYwq@yq@ixAi\\cm@mXyg@oe@uy@k~@uzA}}@wvAmw@wpAch@oz@yc@uw@gb@kv@md@waAcSud@{Tii@{Vov@gRql@sPim@mMsh@yNyp@wKmj@aIqf@iNs`AmIes@}Hmz@oGi}@wFmaAgDi_AqB{{@aC{|@}AkvAeDs~CaAiy@{@os@{@eo@mBwt@kGocBoEw{@gFkv@wKiuA{Iwz@mJgw@iUcjBuMwbAiGyc@_c@iaDsLogAqKcdAwNodBgIk`Bi@uNcBmc@iCipAw@oz@Sk`AhBatB~BqvAnDqcBfDgbBlDubBdAwcAn@ojAUgx@y@c|@yA{z@uDu_AgGq|@uIkaAgJeu@cLwv@gN_t@sPyw@sLyc@sO{i@qR_l@sQeg@eQob@qS}d@eVef@sU}b@g`@cn@gX}`@u[sb@kk@gr@ia@{d@ql@{m@ub@kc@s`@s^{iAgeAkcAaeAwd@}f@yj@ap@sMcPmFaImWy_@{e@uu@ah@w}@_m@khAgm@egAwX}e@e\\ah@eZid@{Y{`@wb@aj@k\\{_@si@cl@}w@mv@{mAufA}gAmaAwk@mh@eg@wf@oe@ge@}]{_@mk@er@gS{V{Ug[kXq]mg@at@mZse@ka@up@iSu^eRm\\yk@kiAuIyPgF}J}DcIiZwo@yjAeeC{xAm_DiuAoyCwyBmzEyn@atA{|@amBwk@}nAey@{fBo_@_v@m^cr@el@scA_Yce@mYw`@uRoXoOsRw]}`@sa@}b@c`@i_@ed@c`@uRgP}l@mb@mUsOyXuOa]_RuWiNur@kZkq@gV{u@qV}kAg\\yoAk\\ypAq]qh@wN{v@wRyiCgq@oiA}[}mAea@wUkJmr@k[}g@iYyi@_\\yZ}SmS}Nuv@uo@yXqVcWoWam@gq@w\\uc@_Zm`@e^si@gV_]sUo`@}~@u~Ao|@m{A}b@}q@ux@kmAsx@ydAks@ez@wm@}p@ykAsmAgtFgzFeiCcnC_lAsmAwa@{c@g^}`@cUgWcW}YgW}\\u^{f@gc@wq@qZmi@gd@i}@kQi`@sZku@s_@qeAek@{hB_v@skCud@eyA}Sil@mRag@gQyb@oUgg@sYqm@kT}_@}Ysf@wPoVyJsNs^ig@ic@ei@s[k^qd@uf@wmCglCuq@wv@c]yb@eLmOqU_]}^gl@k_@mq@{b@sz@ij@mgAi^cs@_i@s~@qc@yq@{TsZkV_[{b@qh@e_@g_@aWmWiWqUyvBofBy_Aix@wYyWae@ic@qj@em@s_@se@kd@cj@e^mg@_f@gu@ckAclBa[ye@iY}d@yp@_aAig@op@gi@cp@in@}r@{x@{x@u_Ak}@wgD{|Cw}AuwAstAioA__DiuCapA{jAek@ef@}h@_d@}r@sd@eq@g_@kReJqVeKa[qM{c@aPk^{LwzAq`@qVmGsy@eSo_AeVysAm^o[oKgXkJwc@iSuUgMcOwJwZuS_^aX_YsWwUiVqeAqjA}aA}gA}{AmcB_s@{w@ej@ap@oXe^o^mg@e\\{i@kXsf@qWah@k\\uw@kVqo@mR_j@{Nqf@aMwc@oMik@{Nys@uVoxAsWkjBqGkm@cb@qkCsPyaA{Oeu@sRmv@cVuw@}Ke]qHuRmY_u@{Rsa@mZil@aW}b@aZyd@we@{n@oRsVmRsSe[m[cf@qb@mXkTqb@{Zyb@{XwbB{cAikEkfCymBugAk~Aq~@ir@yd@qt@sk@sy@ks@sq@{v@_\\o`@qVy\\e^eh@yVk`@mv@msAin@}kAic@k|@im@ymA{o@{nAeq@akA}b@cp@qz@gjAg}@{`Amo@yk@su@am@{c@wYiD{Bqj@e\\we@iW{l@gWgh@yRoc@iNsp@{Qgv@yPu|Bg^en@{IqQgCge@yGcNoByAUkt@mLso@oLucAwUi`@_LsQeF{o@{SgT}Hsa@cP}w@u\\sw@ia@_q@y^al@{^}q@qe@op@mf@ccCgrB{mA}cAy_@i\\egD{qCkB}A}mDuxCg{CehC__BqsAuaB{uAweByvAwr@yi@ow@wl@sx@ki@_x@cg@a~@qg@w_Aag@_nAsj@ixAym@k`Bkm@cbBon@ooAqf@szAyn@wf@uTsh@oW_f@{Wse@mWun@i`@yf@q[cc@gZ_g@y]{q@wi@{|@iv@qKaKaa@u_@{DyD}a@ua@atAc{AqQeS{|@}gA_c@ql@iZma@oc@mm@qeAe_B_|@}sA}t@alA}nCmpEqmAgrBiKkQ{`FehIikDyyF{mAkrBenAmsBgzBerDo{BarD{r@{dAor@_bAc@o@un@sx@oi@qo@iVkXyXgYqb@cb@}e@qb@ok@ud@kWoR{`@uWgh@o\\eY{Oct@k^qm@}War@yVy^sMa_@cKgf@_MibAmTcbAcSuIyAme@kKcTcE{PaDcu@iSqt@{Xm]gPgf@aW{WsP}e@e]aJqGyVwT}YmXaT_UwNeQuV_Z{]ue@a`AivAg`AmxAefA}~Asv@kjAoE{GgjCm|DotAorBio@oaA_[{g@{_DsgGsiAozBwdA{qB{fJmpQ{oDacH{wAurCgc@{z@whCk`Fi`@qx@y]cv@{\\uz@sRai@}Wa{@oNyf@_[umAud@wqB{YuqAc[}sAcIy^oe@ksBm\\exAiOyn@iMma@gSch@{Rob@gVub@_NoSqTqYoRqSkVwU_XaR}RwLgVmLsWiJsYmHgOoCwYiDwYmB_Qy@we@}BmvAmH_e@kCeLe@mxAsHgOk@{`BeIm_@oBiG]oc@_CmDQmEU}fAiF}fBgJwz@cE}TcB}W_CaYyEee@cM}UwI}WeMkTqLyR{MoQeNef@_b@AAmi@ad@aOaMmWqUsTmRiRkS}FyGiFmH{Via@}HoNaJsRoHwPuIqUuOch@{Hs`@_Iid@u_@axCaFoq@_GklAqCoq@_Bcy@u@wo@Qaw@\\sa@pAguArCobAjDaw@tMs|AvLulA`d@y{Cfi@_aCxXsaA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 40 miles.","announcement":"Continue for 40 miles.","distanceAlongGeometry":64151.039},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A-62.","announcement":"In 2 miles, Keep left to stay on A-62.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A-62.","announcement":"In a half mile, Keep left to stay on A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A-62, E 80 toward Burgos.","announcement":"Keep left to stay on A-62, E 80 toward Burgos.","distanceAlongGeometry":280}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-4.993082,41.51108],"geometry_index":5396,"admin_index":1,"weight":23.633,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.887,"bearings":[120,124,297],"out":1,"in":2,"turn_duration":0.011,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[119,304],"duration":4.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.021,"geometry_index":5407,"location":[-4.986957,41.506953]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,292],"duration":25.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.4,"geometry_index":5410,"location":[-4.985577,41.50647]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.976334,41.506423],"geometry_index":5421,"admin_index":1,"weight":20.803,"is_urban":false,"turn_weight":0.75,"duration":22.926,"bearings":[77,253,256],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.968062,41.508033],"geometry_index":5425,"admin_index":1,"weight":7.301,"is_urban":false,"turn_weight":1,"duration":7.207,"bearings":[74,253,255],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":47.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":41.213,"geometry_index":5428,"location":[-4.96575,41.508523]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.486,"geometry_index":5439,"location":[-4.94866,41.514122]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,62,239],"duration":0.4,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.342,"geometry_index":5440,"location":[-4.948477,41.514205]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":32.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.074,"geometry_index":5441,"location":[-4.94836,41.514263]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":64.967,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":56.84,"geometry_index":5445,"location":[-4.937597,41.518677]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":1.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.016,"geometry_index":5450,"location":[-4.920402,41.525531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":25.822,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.59,"geometry_index":5451,"location":[-4.920099,41.52565]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":54.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":47.336,"geometry_index":5454,"location":[-4.911693,41.529039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.373,"geometry_index":5462,"location":[-4.896778,41.538651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":21.967,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.215,"geometry_index":5463,"location":[-4.896668,41.538736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":74.797,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":65.441,"geometry_index":5464,"location":[-4.891065,41.54307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,224],"duration":0.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.426,"geometry_index":5471,"location":[-4.871832,41.557968]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,221],"duration":18.666,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.326,"geometry_index":5472,"location":[-4.871713,41.558071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":20.121,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.6,"geometry_index":5477,"location":[-4.867098,41.561463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.268,"geometry_index":5479,"location":[-4.861649,41.565106]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[47,52,228],"duration":0.395,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.336,"geometry_index":5480,"location":[-4.861565,41.565163]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":11.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.301,"geometry_index":5481,"location":[-4.861472,41.565227]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.858507,41.567286],"geometry_index":5482,"admin_index":1,"weight":22.551,"is_urban":false,"turn_weight":1,"duration":23.965,"bearings":[47,222,227],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[43,48,226],"duration":18.055,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.229,"geometry_index":5486,"location":[-4.852134,41.571728]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.84782,41.575479],"geometry_index":5489,"admin_index":1,"weight":45.623,"is_urban":false,"turn_weight":1,"duration":49.602,"bearings":[40,215,220],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":5.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.812,"geometry_index":5509,"location":[-4.834944,41.585008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,218],"duration":7.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.982,"geometry_index":5512,"location":[-4.833753,41.586125]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,201],"duration":8.393,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.527,"geometry_index":5517,"location":[-4.832535,41.587831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,195],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.535,"geometry_index":5521,"location":[-4.831804,41.589886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,197],"duration":13.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.92,"geometry_index":5522,"location":[-4.831744,41.590031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.52,"geometry_index":5532,"location":[-4.829071,41.592839]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[53,221,233],"duration":1.682,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.496,"geometry_index":5533,"location":[-4.828904,41.592932]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":8.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.467,"geometry_index":5534,"location":[-4.828445,41.593187]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[49,52,232],"duration":1.527,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.393,"geometry_index":5538,"location":[-4.826129,41.594498]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":15.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.5,"geometry_index":5539,"location":[-4.825708,41.594769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.529,"geometry_index":5541,"location":[-4.821321,41.597547]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":47.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":44.082,"geometry_index":5542,"location":[-4.821163,41.59764]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":7.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.068,"geometry_index":5550,"location":[-4.808521,41.605793]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.806526,41.60705],"geometry_index":5553,"admin_index":1,"weight":12.906,"is_urban":false,"turn_weight":1,"duration":12.553,"bearings":[51,227,232],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":20.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.824,"geometry_index":5557,"location":[-4.802874,41.609033]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[57,63,237],"duration":24.055,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.035,"geometry_index":5561,"location":[-4.796725,41.612014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,210],"duration":2.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.564,"geometry_index":5572,"location":[-4.790915,41.616194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,201],"duration":8.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.713,"geometry_index":5574,"location":[-4.790576,41.616803]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[4,7,190],"duration":20.994,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.016,"geometry_index":5576,"location":[-4.789887,41.618906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,215],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.506,"geometry_index":5591,"location":[-4.78768,41.624207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":18.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.6,"geometry_index":5592,"location":[-4.787359,41.624513]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.782502,41.627978],"geometry_index":5598,"admin_index":1,"weight":22.154,"is_urban":false,"turn_weight":1,"duration":20.154,"bearings":[53,227,231],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":2.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.404,"geometry_index":5609,"location":[-4.777424,41.631839]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[21,30,205],"duration":17.656,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.07,"geometry_index":5611,"location":[-4.77706,41.632415]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.774892,41.636834],"geometry_index":5616,"admin_index":1,"weight":19.6,"is_urban":false,"turn_weight":0.75,"duration":18.396,"bearings":[26,196,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[41,49,225],"duration":0.342,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.326,"geometry_index":5625,"location":[-4.770451,41.641164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":33.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.621,"geometry_index":5626,"location":[-4.77038,41.641224]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[8,18,192],"duration":14.527,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.867,"geometry_index":5643,"location":[-4.765122,41.648754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":6.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.174,"geometry_index":5652,"location":[-4.765008,41.652477]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,193],"duration":25.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.975,"geometry_index":5658,"location":[-4.764753,41.654026]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[17,201],"duration":3.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.736,"geometry_index":5670,"location":[-4.760766,41.660264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,197],"duration":14.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.709,"geometry_index":5671,"location":[-4.760386,41.661198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.760187,41.664886],"geometry_index":5677,"admin_index":1,"weight":71.857,"is_urban":false,"turn_weight":0.75,"duration":72.955,"bearings":[165,173,349],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,259],"duration":26.695,"turn_duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.326,"geometry_index":5725,"location":[-4.745158,41.676187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,231],"duration":12.689,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.047,"geometry_index":5737,"location":[-4.737087,41.680314]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,61,237],"duration":10.719,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.164,"geometry_index":5740,"location":[-4.733236,41.682328]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,223],"duration":1.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.584,"geometry_index":5745,"location":[-4.730305,41.684153]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":6.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.525,"geometry_index":5747,"location":[-4.729918,41.684492]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.728559,41.68606],"geometry_index":5750,"admin_index":1,"weight":82.289,"is_urban":false,"turn_weight":0.75,"duration":88.176,"bearings":[25,206,210],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.709295,41.7049],"geometry_index":5793,"admin_index":1,"weight":9.047,"is_urban":false,"turn_weight":0.75,"duration":9.238,"bearings":[20,187,201],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,214],"duration":19.023,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.113,"geometry_index":5800,"location":[-4.707808,41.707084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":59.205,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.268,"geometry_index":5808,"location":[-4.703389,41.711133]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":24.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.42,"geometry_index":5826,"location":[-4.689699,41.723567]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[62,73,242],"duration":28.84,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.229,"geometry_index":5838,"location":[-4.682984,41.727922]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.674993,41.732948],"geometry_index":5853,"admin_index":1,"weight":30.309,"is_urban":false,"turn_weight":1,"duration":32.586,"bearings":[38,206,219],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":35.16,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.506,"geometry_index":5864,"location":[-4.66659,41.739172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,234],"duration":1.982,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.826,"geometry_index":5877,"location":[-4.656617,41.745158]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[54,61,235],"duration":28.852,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.67,"geometry_index":5878,"location":[-4.656013,41.745479]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.646992,41.75017],"geometry_index":5887,"admin_index":1,"weight":21.258,"is_urban":false,"turn_weight":1,"duration":22.527,"bearings":[56,232,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":27.803,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.016,"geometry_index":5892,"location":[-4.640107,41.753701]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":37.818,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.02,"geometry_index":5907,"location":[-4.632604,41.758862]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":0.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.297,"geometry_index":5918,"location":[-4.624387,41.768381]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":146.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":132.191,"geometry_index":5919,"location":[-4.624317,41.768463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":0.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.135,"geometry_index":5965,"location":[-4.588296,41.802965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":0.574,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.51,"geometry_index":5966,"location":[-4.588259,41.803003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":38.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.35,"geometry_index":5967,"location":[-4.588139,41.80313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":77.467,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":67.777,"geometry_index":5984,"location":[-4.582059,41.812288]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":3.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.07,"geometry_index":6018,"location":[-4.569765,41.833471]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[28,34,208],"duration":70.566,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":61.74,"geometry_index":6021,"location":[-4.569111,41.8344]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.556816,41.851462],"geometry_index":6040,"admin_index":1,"weight":1.297,"is_urban":false,"turn_weight":1,"duration":0.359,"bearings":[26,199,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":2.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.873,"geometry_index":6042,"location":[-4.556765,41.851541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,202],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.951,"geometry_index":6045,"location":[-4.556469,41.852058]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,199],"duration":20.01,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.986,"geometry_index":6046,"location":[-4.556344,41.852329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,242],"duration":3.336,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.996,"geometry_index":6064,"location":[-4.55275,41.856682]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,246],"duration":2.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.223,"geometry_index":6067,"location":[-4.551673,41.857046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,240],"duration":33.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.539,"geometry_index":6070,"location":[-4.550906,41.857343]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.811,"geometry_index":6090,"location":[-4.545143,41.865256]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":0.693,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.605,"geometry_index":6091,"location":[-4.544998,41.865469]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":16.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.02,"geometry_index":6092,"location":[-4.544889,41.865633]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":1.738,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.547,"geometry_index":6101,"location":[-4.542369,41.869673]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":20.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.359,"geometry_index":6102,"location":[-4.5421,41.870106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,358],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.9,"geometry_index":6119,"location":[-4.540803,41.875525]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":20.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.543,"geometry_index":6120,"location":[-4.540816,41.875796]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":23.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.205,"geometry_index":6139,"location":[-4.53838,41.881128]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.449,"geometry_index":6149,"location":[-4.532611,41.886122]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":19.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.686,"geometry_index":6150,"location":[-4.532492,41.886226]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,240],"duration":0.643,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.555,"geometry_index":6168,"location":[-4.527869,41.890146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":3.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.793,"geometry_index":6169,"location":[-4.527662,41.890225]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,241],"duration":37.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.918,"geometry_index":6170,"location":[-4.526669,41.890639]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,212],"duration":15.203,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.283,"geometry_index":6195,"location":[-4.5186,41.899009]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":0.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.352,"geometry_index":6208,"location":[-4.516248,41.903201]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,202],"duration":11.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.395,"geometry_index":6209,"location":[-4.516187,41.903313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":11.779,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.584,"geometry_index":6215,"location":[-4.514542,41.90655]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":6.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.74,"geometry_index":6220,"location":[-4.513077,41.909435]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.871,"geometry_index":6223,"location":[-4.512286,41.910996]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[20,23,201],"duration":0.785,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.709,"geometry_index":6224,"location":[-4.512032,41.911495]},{"bearings":[21,200],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":6225,"location":[-4.511936,41.911687]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"}],"type":"fork","modifier":"left","text":"Burgos"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"left","text":"A-62"},"distanceAlongGeometry":64184.371}],"destinations":"A-62, E-80: Valladolid, Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A-62 toward Valladolid/ Burgos.","modifier":"slight right","bearing_after":124,"bearing_before":117,"location":[-4.993082,41.51108]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":1927.074,"duration_typical":2093.51,"duration":2093.51,"distance":64184.371,"driving_side":"right","weight":1927.074,"mode":"driving","ref":"A-62; E 80","geometry":"oisdnArbwoHfb@oeA~Qqb@~Qo\\tTm_@n]ia@^c@py@u_AxVm\\rQ}ZfM{WfOm_@~IqYpHkZrHi_@bEoX~Fcj@`Eqi@bDwu@xCww@ZwqAe@il@{Amk@uE_eA}IenAkEi`@cY}qCkWu|BkWkvBwX_|BuXgwBAE{CaWwk@czEeXgyB}Xc|BcRwlAiTk_AsUmw@eWqt@ks@_mB_q@mfB{r@ikBqKwZeDmJsBiFoYit@ui@ycB{bC}iIyiAszDgsEetOazBctHehA}tDc@{AwQqn@mF}QuqAgkE{qAcoEgm@_pB_wA}vEyZg|@mTmg@mTie@sf@kx@gbBk_CkhBefCydEi~FiD{E{mGe}IkpIgrLkpBgqCq{@mlAo{@qmAwwBuzCuvAapB{uCybEmEmFe`@oi@kjAeaBySa[qj@}{@af@wy@}dBayCw|BoyDqBgD_CyDu_CixDkz@ouA_lBc|Civ@moA}t@giA}r@s~@mjAktAajBswBoXs[q`@uf@{Z}`@i[{d@o[gi@eVac@wSwa@cUmf@gVih@ql@yoAe^cs@uM_VeSg\\oTi]eP}T}\\gb@eUcYkc@kf@sdAuiAau@}x@wMyN_\\g^aYkZcV{S_RsNsQ{K_UwM{V_Ko\\gJuVmGer@qPaWmGaHwBaMmE{PgH}OkIeYoQ_U{RyLkLaMgO{RgXeTy]oH}OyDmI}Nu[eSgc@ad@ebAcJoQqLyU}OiYw|BcbE{n@anAyD{Hai@_fAyh@ueA}w@u|AylBifDq|AyjCenAguBinA_vB{EkIoJiP}`@mr@c`@}v@a_@qt@q\\mr@al@{vAgPkb@aKwW}|AccEiz@wvB_Tuj@kc@{jAwOca@sLmZqNk[}Xuh@qV{_@qYw^kTkUkTaT{ZsUg_@}WuRuJkQoHqaA}Z{_AcN_k@eCeWoAoZaCoZqDg[gGe^eJsVaJkGmCoHoCaEyBkU}Lg\\_TiNiKaOcMcQ_PcRaS}NaQym@ey@ir@wcAm^wl@ao@oiA_Vie@}g@qgAig@{eAqI_QgNgTeTw[aN{P_SgT_ReRkOsMyZaVyM}HyFgDe[oP}c@sQatBcr@u|@s^qb@gR}W{Mcz@yd@ae@o[ma@a^}a@mf@qL{OsQqXSYy`@an@md@mq@wBmCsTqX{K{NoU_WoV_W{VqV}g@mc@eKyIac@k[kYuQwWyOwb@mUqj@aWoSeI}a@aOa]eKoZyHs`@wHo`@kEyPcA}R{@eS_@a\\Fs[p@{o@|AqSJcM[_Ye@gNw@{OwAeNsBaMsBmH_BqX_HsWgIiPkGsR{I_[ePkRyLuiA_y@oa@{XglAcv@s_@mSiVsL_LsEky@wVqf@_J}f@wFk\\yAu^i@}j@jA_m@`Gi^dGee@dLcl@fPi|@`Xk_@hMwVrHeQzEuN~BoRhDmLjAeYvAoY\\_Ws@qTmBwZmEqZmH_WeIkV{KmSeLsSyLmWgTcWkWcUwXuSa\\uNiWiKuT{Mo]_K}Z{Jg`@gJqc@oFu`@{Da`@iCk^yAs_@i@kf@d@gi@rBwf@lDuf@zGem@xGop@bEqi@bCwn@^c]X{Zi@}y@_Dis@G}AuFot@{I{i@yI{g@mPct@iLs`@{Ly]}Oc_@wOi]mW{c@sVia@yt@qnAiZcj@w[ym@g]at@}j@cpAur@oiB}V_o@kYcm@iT}_@ySi\\sTyYaLmNcGwGg^k^o`@c[g`@mXwX}Nuz@s`@_|@ia@y_@_TyO}IoZoSeQqLmV_Rud@o_@aa@m^w\\y[yGoFk_@k^cm@gl@oUkU{h@oj@wc@if@kg@wj@ia@ae@ei@io@wi@wq@qZka@q[gc@iVa^iTs\\{Uu_@uXee@oLaS_Wee@kR}^w\\mp@kP}[}PqZqQwX_Q}UwTgWwS_TeXuUuOkLyNiJaSmLwS_K}LcFcRkHuYyMcZgPaKsGuKoHcN_KuVkToWgWoNiO_NuO{Xy[cl@{p@sm@or@wp@su@u]ca@cHwHuu@i{@gu@o{@eaA}fA{g@cl@yMkOib@ge@yb@uf@u[__@mr@mw@caA_hAibAmiAg_AsfAgw@y{@oYi\\uZi]il@mq@o_@ib@wUkXac@gf@yPuQqi@yo@s[uc@uR{[uSu`@eR{b@aOg_@kLc^aRqn@iOoh@mOyh@s^unA_Nyd@yJmZaG_PsIwSiRua@qVsd@}NsUsQiW}PsSuUeX{^y`@yo@es@yT{VmWiXyiAgnAwWk[iLqOkLqQ}Xeb@}[kk@{r@_mAcx@otAcg@c|@ia@}s@et@{mAia@mr@u]wn@gXqf@_Ugc@uNeXkUcf@iV}d@{Usf@_Tgd@ya@s~@qh@qkAaZcq@aSwd@oYao@wc@wbAm`@}}@}Z_v@eZss@c]yy@i^k}@}j@atA_c@efAot@ogBkp@m_Bup@_`Bea@yaA}`@q`AgW}n@cUij@yc@ufAiUgi@}Og]mRm_@sO_YoQkYaNeR_NgQmTgWqQ}Q_ScRse@ka@{OqM}RgPw_@i[kj@ad@{e@u`@se@a`@ux@yp@ii@oc@cyAimAqwAgkAqdBewAch@cb@cDkCs_@{Zs`A_w@en@og@cFcEku@um@i|@ks@cy@}p@qn@sg@ip@ki@uv@sn@gaAow@q^yY_g@s_@uo@of@am@{d@yr@wh@um@ie@sk@wd@us@uk@{v@_m@maAku@so@kf@whAiz@yUuRwI{HiKmKwJqLcVy[qv@agAqt@aeA}{@cnAubA}vAs{@cnA}r@abAq|@ynAij@{v@yi@iw@we@is@of@iu@seAw_Bwz@uqAgx@gnAup@ybAim@ev@k\\a_@ka@ea@kAiA}FoF}^_]c^gXmc@i]qh@}`@{e@i_@km@ie@eg@m_@sRoNqOkJk\\ePuv@_^ic@sSkk@}VwT_I}XwHeZwGa\\iH{e@mK{n@_M{n@eMuh@}Jmt@}N}a@eIwOcD{VyG}UyImM_GgQaJk_@oSkY{PwpAks@kh@_ZqYoPgi@{Z}`@qUq`@cUmY}Pk`@}T}`@yUk`@kU_f@gYyu@cc@ka@sU_a@kVgq@_`@in@c_@}r@}b@qRoL_bAsm@sz@sh@yz@yh@oVoOOIaa@aWyg@k\\ip@qa@ma@{Wol@e_@_p@eb@u[sSiXgQse@e[kd@iZe|AwbAqhAgu@onAsx@qpAcz@}rA{{@cYcRk[qRkyBowA}xB{uAwEeCiAq@sAs@oGkDmHoDkMsF}OyFiVuGy]mHi[_GkSmFkOwEwPuHyPkJmNaKgLgKyNkNoHoJqLuPyK_R_JmQgGmN{CkIkFmPmDuLgG}UcFuTkFuUmEmQiEaOyDmLkHqPcK_UsKsQeL}PcTeWqN_N{ToPsJeGuPiI_QqH{YwJc[mJ}b@_NeXyJsXaNmQyJsq@qa@sq@y`@ki@s[qd@mXiLaHgIyEeRwKej@uZka@oTaa@aTiYcOuXyN_YyNyYcO{OsIaZyOcFmCoa@oUyWaP}XiOcQwH}PkGaPuDwQyCgMyAaNu@aRAiP\\gJZwZtBuXhBiTdAwUl@}OXkPJmRMgQo@_SyAoQsB{QmCuQiDiQsE{P_F{QmGiPaH_PuH{X{OcW}PmIsGaP_NuK_KsNuN}EqF_NsOm[{_@mc@uh@o[s`@a\\o`@og@en@mg@mm@aa@mf@eb@yg@oWk[oEmFmRkUeUsXcNcOuG}GqKgJ}PwMeWgRcPaMeG}EqMiLyJkKyIuKoImLuJ}OgHwN{JgUmHmSsHmU}C}K{Xa}@mG}OsHgPmFeK{IaOuLsPyM}OsMsMeO{L}OwKoPcJuX}Leb@mQkYsMsOaJsPuKqOsKkOsNcPgP_T{Vwo@gv@kg@sl@}i@wo@k\\u^eS{PyQsNwO_LaMoIgNaImImEsUqLu[kNeQgHiYiL{XcLgZyLICuYoLq\\}M_FyB_a@aPyYyLmc@mQkYqL{a@sPyj@iUaZoLwk@wUik@wUsl@gVqQiHwX{Kuj@gUc[iMe^{N_K_E_XqK}b@}Pw\\gNc^yN}_@oOif@iT_k@gT"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":74781.188},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A-62.","announcement":"In 1 mile, Keep left to stay on A-62.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A-62.","announcement":"In a half mile, Keep left to stay on A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A-62, E 80.","announcement":"Keep left to stay on A-62, E 80.","distanceAlongGeometry":190}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[19,30,200],"duration":9.545,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.809,"geometry_index":6232,"location":[-4.510006,41.915496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,192],"duration":15.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.363,"geometry_index":6237,"location":[-4.509073,41.918012]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":2.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.27,"geometry_index":6249,"location":[-4.506683,41.921722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,222],"duration":36.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.23,"geometry_index":6251,"location":[-4.506112,41.922218]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,190],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.324,"geometry_index":6279,"location":[-4.498417,41.929916]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":15.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.91,"geometry_index":6280,"location":[-4.498347,41.93027]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.473,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.455,"geometry_index":6291,"location":[-4.497006,41.934282]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,204],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.771,"geometry_index":6292,"location":[-4.496934,41.9344]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":5.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.746,"geometry_index":6293,"location":[-4.496601,41.934812]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":0.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.969,"geometry_index":6296,"location":[-4.495457,41.936039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,220],"duration":8.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.816,"geometry_index":6297,"location":[-4.495228,41.936239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":9.93,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.412,"geometry_index":6304,"location":[-4.493064,41.937659]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":0.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.768,"geometry_index":6309,"location":[-4.489945,41.939031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":125.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":116.045,"geometry_index":6310,"location":[-4.489697,41.939144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":0.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.66,"geometry_index":6368,"location":[-4.45729,41.96215]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":9.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.67,"geometry_index":6369,"location":[-4.457271,41.962349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,190],"duration":2.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.369,"geometry_index":6374,"location":[-4.456886,41.96493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,191],"duration":69.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":62.592,"geometry_index":6375,"location":[-4.456699,41.965623]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[57,63,239],"duration":14.623,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.506,"geometry_index":6417,"location":[-4.439103,41.97836]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,223],"duration":2.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.42,"geometry_index":6424,"location":[-4.435088,41.980904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,220],"duration":4.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.178,"geometry_index":6425,"location":[-4.434492,41.981436]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.43349,41.982422],"geometry_index":6427,"admin_index":1,"weight":4.301,"is_urban":false,"turn_weight":1,"duration":3.674,"bearings":[36,206,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.484,"geometry_index":6430,"location":[-4.432715,41.983223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":82.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.562,"geometry_index":6431,"location":[-4.432599,41.983343]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.404339,41.990979],"geometry_index":6477,"admin_index":1,"weight":78.346,"is_urban":false,"turn_weight":0.75,"duration":88.701,"bearings":[64,235,245],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,244],"duration":25.582,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.367,"geometry_index":6516,"location":[-4.372299,42.002726]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":119.068,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":104.18,"geometry_index":6526,"location":[-4.364094,42.006061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":3.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.182,"geometry_index":6577,"location":[-4.329473,42.026068]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":0.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.176,"geometry_index":6581,"location":[-4.32839,42.026604]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,239],"duration":19.611,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.643,"geometry_index":6582,"location":[-4.328324,42.026634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,261],"duration":2.566,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.301,"geometry_index":6597,"location":[-4.321638,42.028609]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.1,"geometry_index":6599,"location":[-4.320722,42.028673]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,266],"duration":8.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.268,"geometry_index":6600,"location":[-4.317464,42.028863]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.332,"geometry_index":6602,"location":[-4.314569,42.029036]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[85,89,265],"duration":0.613,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.535,"geometry_index":6603,"location":[-4.31404,42.029067]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":20.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.252,"geometry_index":6604,"location":[-4.313818,42.02908]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.306418,42.029518],"geometry_index":6613,"admin_index":1,"weight":11.105,"is_urban":false,"turn_weight":1,"duration":11.248,"bearings":[85,256,265],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":0.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.209,"geometry_index":6620,"location":[-4.302455,42.030263]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[65,70,246],"duration":17.887,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.08,"geometry_index":6621,"location":[-4.302372,42.03029]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.296489,42.032315],"geometry_index":6625,"admin_index":1,"weight":36.5,"is_urban":false,"turn_weight":1,"duration":40.578,"bearings":[65,241,245],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":0.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.85,"geometry_index":6637,"location":[-4.284122,42.036565]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":5.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.535,"geometry_index":6638,"location":[-4.283821,42.036668]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-4.282238,42.037208],"geometry_index":6639,"admin_index":1,"weight":17.051,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.508,"bearings":[64,245],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":2.496,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.176,"geometry_index":6650,"location":[-4.275478,42.038879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":45.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.977,"geometry_index":6651,"location":[-4.274588,42.039065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":1.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.117,"geometry_index":6674,"location":[-4.259595,42.044197]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[37,44,218],"duration":33.002,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.861,"geometry_index":6676,"location":[-4.2593,42.044467]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.250812,42.051017],"geometry_index":6694,"admin_index":1,"weight":75.053,"is_urban":false,"turn_weight":1,"duration":84.641,"bearings":[49,225,229],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[52,55,234],"duration":20.564,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.975,"geometry_index":6746,"location":[-4.227059,42.065512]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.221045,42.068877],"geometry_index":6755,"admin_index":1,"weight":13.064,"is_urban":false,"turn_weight":1,"duration":13.807,"bearings":[53,229,234],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":23.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.156,"geometry_index":6764,"location":[-4.217488,42.07107]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":38.541,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.68,"geometry_index":6778,"location":[-4.21247,42.075564]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":4.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.072,"geometry_index":6799,"location":[-4.209725,42.0856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":21.799,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.619,"geometry_index":6800,"location":[-4.209738,42.086831]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.208285,42.092554],"geometry_index":6815,"admin_index":1,"weight":22.359,"is_urban":false,"turn_weight":0.75,"duration":24.018,"bearings":[32,206,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,218],"duration":3.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.092,"geometry_index":6834,"location":[-4.202655,42.097515]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,228],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.605,"geometry_index":6838,"location":[-4.20176,42.098167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,234],"duration":24.357,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.305,"geometry_index":6840,"location":[-4.201233,42.098458]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":107.441,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":93.994,"geometry_index":6847,"location":[-4.193248,42.101539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,256],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.545,"geometry_index":6912,"location":[-4.159022,42.116737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,257],"duration":12.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.834,"geometry_index":6913,"location":[-4.158406,42.116845]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,248],"duration":23.922,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.904,"geometry_index":6920,"location":[-4.154107,42.117674]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":115.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":101.023,"geometry_index":6937,"location":[-4.147027,42.121536]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":1.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.947,"geometry_index":6965,"location":[-4.109578,42.138502]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[48,51,231],"duration":0.451,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.375,"geometry_index":6966,"location":[-4.109255,42.138696]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":97.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":84.992,"geometry_index":6967,"location":[-4.109138,42.138775]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.082571,42.155638],"geometry_index":7031,"admin_index":1,"weight":41.26,"is_urban":false,"turn_weight":0.5,"duration":45.309,"bearings":[42,220,224],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":1.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.338,"geometry_index":7053,"location":[-4.074398,42.165109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,202],"duration":37.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.006,"geometry_index":7054,"location":[-4.074188,42.165485]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":26.076,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.811,"geometry_index":7087,"location":[-4.06486,42.173602]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,241],"duration":136.844,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":119.732,"geometry_index":7104,"location":[-4.055754,42.176966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,222],"duration":0.213,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.17,"geometry_index":7153,"location":[-4.021934,42.199923]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":25.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.617,"geometry_index":7154,"location":[-4.021883,42.199966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":32.615,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.52,"geometry_index":7168,"location":[-4.015488,42.205329]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[31,37,214],"duration":100.51,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":87.926,"geometry_index":7177,"location":[-4.007623,42.212216]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[49,53,229],"duration":1.25,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.088,"geometry_index":7235,"location":[-3.984351,42.234109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":24.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.076,"geometry_index":7236,"location":[-3.984005,42.234332]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.977275,42.238674],"geometry_index":7242,"admin_index":1,"weight":46.354,"is_urban":false,"turn_weight":0.75,"duration":52.139,"bearings":[48,224,229],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[53,61,233],"duration":38.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.479,"geometry_index":7261,"location":[-3.962257,42.247874]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.950652,42.254406],"geometry_index":7276,"admin_index":1,"weight":21.303,"is_urban":false,"turn_weight":1,"duration":23.223,"bearings":[53,224,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[36,44,217],"duration":62.342,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":54.543,"geometry_index":7287,"location":[-3.944306,42.258671]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.924723,42.266593],"geometry_index":7326,"admin_index":1,"weight":58.744,"is_urban":false,"turn_weight":0.75,"duration":66.301,"bearings":[71,251,254],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":24.357,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.914,"geometry_index":7350,"location":[-3.901416,42.273178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,233],"duration":86.936,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":76.047,"geometry_index":7367,"location":[-3.89305,42.275329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":22.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.426,"geometry_index":7411,"location":[-3.861657,42.286347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":33.318,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.137,"geometry_index":7416,"location":[-3.854589,42.289888]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.843452,42.295507],"geometry_index":7426,"admin_index":1,"weight":13.844,"is_urban":false,"turn_weight":1,"duration":14.289,"bearings":[56,228,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[55,59,236],"duration":12.457,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.193,"geometry_index":7431,"location":[-3.839048,42.297741]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.835348,42.29977],"geometry_index":7434,"admin_index":1,"weight":4.775,"is_urban":false,"turn_weight":1,"duration":4.217,"bearings":[46,225,229],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":4.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.117,"geometry_index":7435,"location":[-3.834242,42.300568]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":2.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.506,"geometry_index":7436,"location":[-3.833049,42.301417]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,226],"duration":9.158,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.242,"geometry_index":7437,"location":[-3.832336,42.301928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,252],"duration":2.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.516,"geometry_index":7445,"location":[-3.829659,42.303158]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":16.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.068,"geometry_index":7449,"location":[-3.828703,42.303295]},{"bearings":[31,215],"entry":[true,false],"classes":["motorway"],"in":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7466,"location":[-3.823623,42.304961]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"A-62 / E 80"},"distanceAlongGeometry":74821.188}],"destinations":"A-62: Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A-62/E 80/Autovía de Castilla toward Burgos.","modifier":"slight left","bearing_after":19,"bearing_before":20,"location":[-4.510006,41.915496]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":2174.529,"duration_typical":2441.986,"duration":2441.986,"distance":74821.188,"driving_side":"right","weight":2174.529,"mode":"driving","ref":"A-62; E 80","geometry":"oei}nAjrgrGkx@cYgUcGs]oIqVwEmVyEoZiHg\\qJkT_IyMgGkNaG{OmI}OyJqV_Q_P}LkOuMoNgNiPaQyQ}SeKwMiOcT{KeQwKqReKmRiJkReJoRgJ{SuOo]mP}]cVad@iL{QsMiR_QuUmNuPuOcQgPaPwRsPsMsKuTqO_UeN}V{MgTwJuQ_H}QkG}RwFiSwEgQgDiT{CcUkCa[sCif@mE_S{BuWqDkUaFgQkE{OsEwT{HcVoJ_ToKiNkHkFoCwXySoRkNcYaVa^a`@oKiMqMoPaKkPyJqNyOwW{O_Z{GoOwFqOaMa[gLc]sPuh@}Rco@{S}m@aFoNeFwNaJ}TcHaPaRoa@mXoi@wTkc@cYgi@a_@}s@sWoj@uR{c@}N{^aNe^yKk\\sIyWmLc`@wOcj@{Kka@aOsl@wSqy@o_@mzA}X_hAu_@ctAqSer@{U_w@eX_z@sOkd@eOec@aM_]sY_w@o[_x@uRye@{Zis@i^iw@oPo]ur@qvA{Vud@eN{UiPuXwZye@mXs^gWgZgNePaSoSwOeOiWgUwWcTo[kUuX}QoYaPod@_U{[kN_X_Kkt@aTss@_Puu@mJ}f@gEmi@yBqn@kBmKe@c{@}DoWoBgVkBq[iD{W}Dij@uJaU}EkX}Ge[mJ{QaGaZgLySoImYsMm]cR_YePcVoOaQyLcTaPgJcHuSeQwTiSuRaRcQ_R{M{N}MaPa\\{a@}SgZqR{Y}R{[cRc\\_Qy\\kVoh@{Tki@uSij@uMi`@gMab@gKs^{L{e@{Ocn@wN{n@_XkiAcQqs@gKca@cEiOkE_PyO_h@yGySmLs\\kKiXaOk^q]qu@mSk^{Tq`@s_@}i@aXy^g`@gd@i]w^i^{]_ViUkNwMuJkJoFgFe^k]cc@}c@m[g_@aT}WmTq[}Rq[sJ_RwJwRaIyQuKyW{H_TgMe`@iHwV{G_XuHo]kCoNcEsVyDaXcEm\\eCcXmBoUyBo\\mAmYgAw^eAyh@s@cd@g@{o@[gr@y@k`Am@{p@mAet@kAed@{Aag@mBme@oCmh@uC_f@{Ccb@gGit@eGim@cDiY_Mu`A_J_m@iHuc@gUaoAqp@}sCiSyx@_Ve~@}Scz@uOom@eXyeAaa@e~AgM}f@mTyz@}Tm|@iW_cAqNoj@c@cB_Pkn@mOyl@gT{y@kOkl@oKgb@yXifAgb@kbB_I{ZkQiq@cU{w@sUsv@sQkm@mPck@mTax@sHgYqN{h@gRqs@oMaf@wLad@}Rwt@kSyu@}L}d@uOgl@iSeu@cMge@iOek@kPan@u[_mAeQsn@iPmk@s]}jAwQ{l@kRqo@uYoaAmRko@yZibAqKw[uPmf@kGyQ{]q}@sU_j@_]ay@}Skg@{[uv@c`@o_Akk@ctA{m@gyAep@i~AaWim@}[uv@{Qmc@gXgo@i\\ow@ca@iaAk]gy@mSae@cO{[_Sia@mXmj@sNsZgXsm@gQmb@}Oy`@uYwu@qQef@wPwb@yO}_@_Rka@wUog@mVqg@oLeUqMsVkLyRc^_i@}U{]yh@}v@aZec@ib@un@o]ch@_V_^}^}i@{]qh@s^qi@iXca@{OyU{PiX{KoSwLqV{EiKqD}HqHgQiGaPaImU{@cCkH}UgM_c@{Kia@yH{WaNeg@oLgc@uFsV}EkUuEyWgDeTaDwVyDc\\aDc\\sA{RmBm\\{@iWcA}_@{JsjEqHg_Dg@uS}@a`@Y{LgCgeAiBkv@qD{_BgA}f@cAy_@[{MwBk|@mAqm@yAmk@aBcm@qCek@aGqm@mEs[gCcPuFeZoK{d@u@eDi`@u_Bei@kyBsY_mAmWseAoOao@sIw]Mk@_XugA}`@uaBoWmfAkYukA_Z}mA}Qyu@mWcfAs`@eaBgWeeAmEyQw`@}aBqBiHkHo[gHc\\kGa[aGy[_Gk]{G}c@uHcl@sKs{@{Jov@wMceAsJsv@}`@w_D{MgeA{OynAiKyy@eJwu@aLi|@{LkaAcEeZmIai@oEyUgIk]mJgZwHqS_IqQgKySyKyReNcU_P}VmVy_@oO}UqNgS{OaToImKaEgFyIeJaSmSal@wj@s\\y[uYiXqQaQ_NuNqKaM_HsJeNcTgVua@eVgb@}U_b@k\\el@{Xef@{Sk_@gZkh@sZai@gPoYmIcOeNgVwKcS}KsTwKmTqJeTmJ_TmHwQcNq^cJqWeHaU_IaXaIkY{Smv@iOej@}Lee@kW{_AgVc}@gSyu@}Oel@aScu@mM}d@kIeW}J}VcG}MkG_MyHkNeMyRqKwNaJkKkNeOoXaXkViUm_@}]yg@_f@ga@u_@e^y\\{b@ea@w\\m[{NqNsP_QwN{PmNoRyLsRqLkSsR_^sYui@}Sq`@oUuc@kRc`@sQq_@wG_OkGmM}JmSw_@mx@{Qm`@}v@gaByTog@sWuk@aT}e@}MwZmH{OuRqc@sRmb@oHaP{LyUMWePeYe]}i@cPuV}OmVqJaNaPcVa\\_c@cX}]i^{e@w\\ud@cPmSgViXuNoNuP}NeLiIyLmHiRqJsRoJa[aM}[mNyTaJmYwLoTcJcZ_Mma@wPma@iP{d@iPuNiEeTkFqPcDeO}Bg[sCs^eA_UYmj@@ag@Fsl@Xk`A^}kAXgqAv@gd@WoTc@wT}@eUwBoLyA{M{B_SmEgPeE_NyEyPoGoRaJeReKgRwLkOkLqJuHeNcMePePaT_XmPkUgNiT}MwUeN}VsOaYyLiTwLiQsKyNsKuKsGaGwQiOaa@q[wPaNsPkO_O}O{FkHaKsNmHwLkJePuI}QoF_MaHyQqK_]cPel@uh@slBwo@e_CsXkbAwd@{bBsW__A_Wu~@yU_{@_Wa~@aU_y@iu@wmCmi@unBiRuq@{V}}@cY{cAgYedAsV_}@}Um{@gRqq@qHeW}GoTwFkPkIkTuJ_UqKiVaKcUqKcVwJiVqIuUgI{W}HuXqGkWaG}YaFsXeEkYyDiZaGag@sGkg@wEaZqF}X{FaXwH{XoIiWqPub@kKaUgKwS}IiP}OqW{MeSyNyR{NqQ{L_N{OaPgQuPuWoVmT_SyTaUcOiQmMuQsMkTuHeNkI}P{GoPqFqOcIeXoFmSmEwSwCyP{B}PoBmQwEoe@iEue@sI}bAgEsg@aDi]mD}X_EyWcKkg@mMmb@aLi[sH_QyEoJmFgJmLaScNkSuM{QgMmQwNcTaMqSmKaTaKeVkJ{VqIyVaZm{@e\\eaAq_@_iAoqBgcGm[k_Ae_@ugAe^meA{\\{bAmVmt@}Xqy@iPuf@qN_b@sS{m@gi@{~Au^}fAiZ{|@}]ieAsb@yoAghDe_KkeAs~C_Tem@uf@yqAy[_{@q`@adAol@{|Aia@{eA_g@kpAiPi_@iLiVyF}KcKeS}CiFmNaVsTu]sL_RoIuK{LuPcGiHcOiQgVmXyNeOoPwOoZyW{a@s\\sb@i\\{j@ic@ea@c\\gPsNqPqOkOkOeH{H_GmGeMsNwLeOkFcGgFkHqHqJoKsOmMmRoGkKqKiQ_NqVoPo[sMmYkF_LmDgIwHiRgL_ZaOeb@gIeXuLib@_M}d@sGeXmXoiAcQ}s@gSiz@oQau@uLsc@eNee@}Muc@yKo[yLk]gPkc@iQuc@_Pm_@uJuTsPe^oKeTkMyVkOyYwLsS{R}\\sKqQgNyS}LmRsu@_eAyJkMoUsXw^ua@iVcWu_@o_@yg@af@eh@if@ah@mf@q\\m[_SeRyN_Ne`@g^cRwP}UwSiXgS}PwLuPsKyc@yUeQiIMG}YuM{}@sa@oVcLkOsH}OeIsO_J}OkJoP}JkOiKeGmD}GgF_W{QcPkMsNuLeN}LaOcNiN{MmNmNmN{NgMmNgUqWuMyPqMoPcLmOyR{XqQmXwMsTsKoQiKaR_Rk]uPa]{JeT}IeSeMyYkLcZgJuVgLc\\_O{b@_HyTsFgSaMyd@aJq^uHq\\mH{\\qKug@wLsh@iJy`@eGmWsKeb@iKe`@}HgY_L_`@mYa`AoMu`@_Mg_@aN}_@uXqu@sMq]yOk`@aUki@uOq_@ePg]mUyg@oKuTcVge@kd@q|@e_@at@qZil@k]yp@e]gp@sg@gbAmj@cfASa@q[{m@me@w}@uVmf@qWcg@sd@i}@sWog@kRy^yQu\\mSs]oOyViPqV}L_QsT_ZuSoXiOmRoR}Vkd@ul@q^md@ol@}v@im@mw@i_@ie@i_A_mAs~@alAml@{v@o`AymAsZg`@ml@sv@s`AcnAcl@av@uAeBoNiQmWg]_TkXkLeOg]oc@u\\_c@kUsYi[s`@uNoQoR{UyWa\\e\\ia@ua@qg@kYo^cWwZ{|CswDky@icAwb@yh@ec@ai@yj@_r@c\\k_@eUmU_VeT{GeF{FiEwOyKuOaKyOqIwOgIiPiHoa@sO{QiFiP_E{ZaG_[aEuZ{C_[eC}YeCcRmBgQyBsQyCwPoD}PcEeQgFsQsG}OkGwOmHwPoIeXcP{OyKuMsJ{N{LyNiMmFqFeN{NeM}NwLkOsLkP{IyMwNoUyKuRwWie@iXef@sUya@og@m}@}^qp@sRq]w^yo@wj@ebAgXif@gaAoeBs]on@{b@mv@yWef@eLaS}b@iv@y~@eaBsUcb@cz@}zAqd@wx@w]wn@}LsTcKwQu|AuoCehAqpBcc@cw@_b@_u@gTo`@sWid@gp@qlAkUa`@}o@{jAuc@ex@ke@sz@wd@wx@g^yo@mf@_~@cUyc@gRm_@oQs_@g[cp@}Ou\\ag@}dA}]}t@mQi_@oXel@iYkm@{GsNyWcj@kg@weA{V_i@cV_h@wVki@w[gr@ea@g|@e\\is@eKmTmJiSi_@_y@c`@yy@kw@ycB{Xgm@gfAq~BwUyf@_Q{]{JuQwLeTy`@eo@mS}YcTwXeTsVcPoQgNoNgUyTkVuTcv@{s@qXoXmQqRaO_QuMmPwL_PmQmWyJuN{Rc[gYih@iQe^mPk^}No_@aKoW{Kq\\aKm[qIuX_Loc@mK}d@{FyX}E_X{EoXiEcXqGef@mG_m@cFak@oBe[iBiZmBqc@mD}x@{Am`@oB_d@uBub@{E}q@kCmY{D}^yHum@{H{f@yL{q@aNoo@eR{y@oRm{@s[cwAy\\i{A}WakAwk@_iC}UueA}e@qwBuVshAc^i~AwIg`@yEeV{Mst@_FsZqFw^qLs_AyJsdAiBqVeDsd@qD}n@{As]mBor@yAqm@gAwYgB__@gCm_@aFug@mCkTmJmn@wGc]_EuP}FoVyKa`@kI}WaIeToJ_WwKqUiNaZ_W_d@_N_T{PiXeMwS_LoQ}I{OeKmSsNsZoJgUkJqVaIwUwGaUqHcXkIy]mGg[yGia@aGib@wFwd@cKoz@wK}|@{Kg~@mNykAqP{{AkK_dAeHiq@mHgn@mLe|@wNc_AuGo_@kOsx@eEkSkQgz@_Kgc@oGaXcIuZwI{\\wJk]wLua@eSym@y~@anCw`@giAod@wqAss@ioByNg`@{n@o}AoPgb@eZou@}iAeuCyt@ijBcf@mlAw^a~@kTgi@kVam@sh@arAerBucF?Ay`@qaAaWon@{Skh@oVwm@iOi_@aa@cbAo`@m`Ag_@s~@gv@ekBwe@sgAy_@mq@{p@cdAat@qiA}^qk@mWmc@sHcOuGaN_KwZ{DoMoDkOkDaQkD_VoAeLaAwKcAeM{@sRYkLsBa}@g@{R_AgR{AaSyBeT_EuTqCeNsBkIyBcH{DoLoHuQcL_UkJ}PkJmKoJiK_HmGaK}HsJuGcJeFeQeHkYiJuUcGgXsGyGoBeRyGmQsI"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":5854.386},{"ssmlAnnouncement":"In 1 mile, Take exit 4.","announcement":"In 1 mile, Take exit 4.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 4.","announcement":"In a half mile, Take exit 4.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 4 onto BU-30 toward Burgos (oeste), León.","announcement":"Take exit 4 onto BU-30 toward Burgos (oeste), León.","distanceAlongGeometry":200}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[27,42,203],"duration":15.486,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.93,"geometry_index":7476,"location":[-3.822247,42.307741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,250],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.619,"geometry_index":7492,"location":[-3.818185,42.310401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":15.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.273,"geometry_index":7494,"location":[-3.817584,42.310509]},{"bearings":[114,297],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7509,"location":[-3.812144,42.309738]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos (oeste)"},{"type":"text","text":"/"},{"type":"text","text":"León"}],"type":"off ramp","modifier":"right","text":"Burgos (oeste) / León"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"4"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"BU-30","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"BU-30"}],"type":"off ramp","modifier":"right","text":"Exit 4 BU-30"},"distanceAlongGeometry":5884.386}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A-62/E 80/Autovía de Castilla.","modifier":"slight left","bearing_after":27,"bearing_before":23,"location":[-3.822247,42.307741]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":171.775,"duration_typical":190.873,"duration":190.873,"distance":5884.386,"driving_side":"right","weight":171.775,"mode":"driving","ref":"A-62; E 80","geometry":"yhguoAlihhFmGyDoNaJeHgFcKoI{I{I}M{NwHiJyNsTeHyLgKoSuHmQoFyNkHuTsFcTyFqWeEsVoC{UgAuMwB}Vw@kSWoR[aZTyXd@{Q|@gPhAiPdA{LfBgNtAiKvD_WnH_`@fM{g@pJq]tJub@tHk`@lHad@bIkj@`QurAjJ{w@nGqk@rCmYnHgu@lHmx@~OmxB|IarAjCgf@vC}s@tBcb@tDwcAbAi_@vBix@fDapArCc|@pDieA~A{`@vC{s@bEo`AbCme@pDms@dF}_A~D{r@nJuvApGs`AlEmm@VgDlHe`AlHu|@lEaf@rIsaAvL_wAvFoq@|G_}@dRuiChSagDxDiw@fFy_AjJw}BfCar@fCcs@lBck@pDksAvCcoAhBu~@`BwaAj@au@\\oy@NuqAa@wlAe@ot@gAk_AqB}jAgA}b@"},{"ref":"BU-30","mode":"driving","weight":193.207,"distance":5027.815,"geometry":"_d_uoA|xadFc@uj@s@sa@{Aoa@sAa_@c@aMa@cLW_HSwG^mK`@cDfA}DxAcDvBsC`CiBdB_AlBc@zBOhBElAHpATdCx@jBvAtBdC|AbCjAhD`AdDh@xE`@pF`@bKDxLKlVg@~Xo@rK_@jGcAjMmBlPeC`RmCjNuC`LuFbOcDxHaDdGuEvG_CdDmEzEsKvJaJxF{I|DgGrB{G~AsCn@cGd@uHZgHC{FWuHs@kHoAya@gJgQaEsKsBwG}@oM_A}EFmFPyIx@uGtAqF~AcDfAcDxAaD~AeEfC}DfCuD~CyDlDuCrCqDbEwDdE{FrG{LrNeL~L_ExDsFdFaFnDcGrEwDjCkJ`GiNbJ{K~GeKpHoM|ImUbSoLhKgMlM}GnHqUn[kQ|Sck@hr@w\\r`@ee@hg@a^f]oWvUwWlT_XfSeVpPcu@pd@}cArl@ogBneA}i@|\\ys@ve@g{BjcBklBpdBueA`jAgbA~iA_lBhgC}i@~w@or@|iAyn@fiAse@t|@cYdf@uXbi@e[`m@_b@fw@aa@nv@wXzf@","duration":206.701,"driving_side":"right","duration_typical":206.701,"weight_typical":193.207,"name":"Circunvalación de Burgos","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 4 onto BU-30 toward Burgos (oeste)/León/Polígono industrial de Villalonquejar.","modifier":"slight right","bearing_after":88,"bearing_before":85,"location":[-3.753375,42.303568]},"speedLimitUnit":"km/h","destinations":"BU-30, N-120, A-231: Burgos (oeste), León, Polígono industrial de Villalonquejar","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Vitoria"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"A-1"},"distanceAlongGeometry":5027.815}],"exits":"4","voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4994.481},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on BU-30.","announcement":"In 1 mile, Keep right to stay on BU-30.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on BU-30.","announcement":"In a half mile, Keep right to stay on BU-30.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on BU-30 toward Vitoria.","announcement":"Keep right to stay on BU-30 toward Vitoria.","distanceAlongGeometry":253.333}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[84,88,265],"duration":11.67,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":10.494,"geometry_index":7568,"location":[-3.753375,42.303568]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":4.143,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":3.729,"geometry_index":7571,"location":[-3.75157,42.303658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":1.154,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":1.039,"geometry_index":7573,"location":[-3.750832,42.303718]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":21.527,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":19.375,"geometry_index":7574,"location":[-3.750622,42.303735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,280],"duration":10.584,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":9.525,"geometry_index":7601,"location":[-3.75172,42.302911]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,307],"duration":5.188,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":4.67,"geometry_index":7608,"location":[-3.753381,42.303352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,333],"duration":46.893,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":41.031,"geometry_index":7614,"location":[-3.75419,42.303991]},{"bearings":[137,142,320],"entry":[false,false,true],"classes":["motorway"],"in":0,"turn_weight":11,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"geometry_index":7663,"location":[-3.758152,42.311998]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 10 miles.","announcement":"Continue for 10 miles.","distanceAlongGeometry":15314.256},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 24.","announcement":"In 2 miles, Keep right to take exit 24.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 24.","announcement":"In a half mile, Keep right to take exit 24.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 24 onto A-1 toward Villafría, Vitoria. Then Keep left to take A-1.","announcement":"Keep right to take exit 24 onto A-1 toward Villafría, Vitoria. Then Keep left to take A-1.","distanceAlongGeometry":323.333}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[131,313,318],"duration":12.252,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":11.016,"geometry_index":7692,"location":[-3.782408,42.334694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[143,323],"duration":4.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.74,"geometry_index":7697,"location":[-3.785392,42.337223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":0.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.742,"geometry_index":7701,"location":[-3.786259,42.338161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,330],"duration":13.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.9,"geometry_index":7702,"location":[-3.786414,42.338349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,334],"duration":9.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.621,"geometry_index":7707,"location":[-3.788585,42.341487]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,337],"duration":3.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.891,"geometry_index":7709,"location":[-3.790041,42.34373]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,343],"duration":5.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.133,"geometry_index":7711,"location":[-3.790458,42.344501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":15.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.662,"geometry_index":7713,"location":[-3.79082,42.345461]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.791144,42.348289],"geometry_index":7720,"admin_index":1,"weight":1.742,"is_urban":false,"turn_weight":0.75,"duration":1.08,"bearings":[1,175,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":2.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.877,"geometry_index":7721,"location":[-3.791138,42.34854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[181,359],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.227,"geometry_index":7723,"location":[-3.79113,42.349017]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":15.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.207,"geometry_index":7727,"location":[-3.79115,42.35085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":1.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.84,"geometry_index":7738,"location":[-3.790321,42.354808]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":25.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.215,"geometry_index":7740,"location":[-3.790076,42.355297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":36.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.906,"geometry_index":7762,"location":[-3.7845,42.360291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":105.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":102.748,"geometry_index":7772,"location":[-3.773144,42.365694]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,274],"duration":8.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.301,"geometry_index":7801,"location":[-3.738955,42.378419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":15.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.787,"geometry_index":7802,"location":[-3.73594,42.378208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":2.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.234,"geometry_index":7807,"location":[-3.730183,42.378573]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":33.619,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.453,"geometry_index":7808,"location":[-3.729406,42.378723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,257],"duration":49.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":48.113,"geometry_index":7818,"location":[-3.718333,42.380915]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[74,77,254],"duration":0.375,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.348,"geometry_index":7859,"location":[-3.701579,42.384669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,254],"duration":13.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.488,"geometry_index":7860,"location":[-3.701446,42.384698]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,262],"duration":6.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.934,"geometry_index":7881,"location":[-3.696597,42.385314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,262],"duration":4.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.605,"geometry_index":7883,"location":[-3.69423,42.385541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,263],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.732,"geometry_index":7887,"location":[-3.692448,42.385711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":10.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.363,"geometry_index":7888,"location":[-3.692158,42.38574]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.688674,42.386046],"geometry_index":7897,"admin_index":1,"weight":1.213,"is_urban":false,"turn_weight":1,"duration":0.242,"bearings":[87,262,266],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,267],"duration":10.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.508,"geometry_index":7898,"location":[-3.688588,42.386049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":17.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.957,"geometry_index":7915,"location":[-3.684809,42.385725]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.678721,42.384256],"geometry_index":7925,"admin_index":1,"weight":4.676,"is_urban":false,"turn_weight":1,"duration":4.092,"bearings":[107,286,287],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,287],"duration":12.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.465,"geometry_index":7926,"location":[-3.677347,42.383945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,294],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.371,"geometry_index":7935,"location":[-3.673176,42.382753]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[113,295],"duration":18.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.803,"geometry_index":7936,"location":[-3.672693,42.382587]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,304],"duration":16.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.891,"geometry_index":7944,"location":[-3.667151,42.380194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,310],"duration":0.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.848,"geometry_index":7950,"location":[-3.662608,42.37757]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[130,144,310],"duration":16.24,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.422,"geometry_index":7951,"location":[-3.662357,42.377415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,287],"duration":10.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.496,"geometry_index":7962,"location":[-3.657396,42.375254]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":3.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.377,"geometry_index":7968,"location":[-3.653602,42.374803]},{"bearings":[96,275,277],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7970,"location":[-3.652369,42.37469]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Villafría"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Villafría / Vitoria"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"Exit 24 A-1"},"distanceAlongGeometry":15347.589},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Villafría"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Villafría / Vitoria"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"Exit 24 A-1"},"distanceAlongGeometry":3218.688}],"destinations":"A-1, A-73, N-120: Vitoria, Santander, aeropuerto, Logroño","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on BU-30 toward Vitoria.","modifier":"slight right","bearing_after":318,"bearing_before":311,"location":[-3.782408,42.334694]},"speedLimitSign":"vienna","name":"","weight_typical":500.803,"duration_typical":525.605,"duration":525.605,"distance":15347.589,"driving_side":"right","weight":500.803,"mode":"driving","ref":"BU-30","geometry":"k}{voAnozeF{S~Wmk@j|@ou@h|@i_@z_@}D|DqLvLwQdQoKxIyLlJwJtHwq@rf@gr@fb@gj@|[qc@nUiMjHmtAxv@wu@db@wUdLmXzKwb@xMgWxFwCp@aZ~Em]|D}ZpAq]d@uWv@i^FuNKcEEuVIeCAmf@^_]J}g@A_MJi[YuZ_AeXmBuTmBmNoBkKiBcZqEg\\kHi]iK_OmFwM{EyNmG{X_NyTcM{MwI}JoGyNsKoJmHqO{LaOeNgHcHgGeGsFyF{McOgKwLcOoRmKeO_IuLsIyM_IoMgHgMyMiWyKwTk\\_v@yOo]{W{i@m]st@uo@inAus@}oAmg@ojAc_@_bAog@ciBam@_{CaD{Py]_lBkYchAsTmw@iQ}i@wn@c~Aww@g{Amp@oiAgm@idAoo@_vAsV}l@qSan@cb@kxA{p@idCqRem@_V}o@}l@esAk\\iq@iVqf@ua@adAyd@erAw\\onAmTscA}Oe}@oG}j@aO_xAwJczAoDcgBEawAnBmhAdLm{DdB_w@QarA_HqoBiLyzAcBkOkHqo@yQe|AqSsbBc`@wjDab@waDuDu\\sC{XmByTkC{T{BcUmFkj@iIihAoHuvAeGycBmE_kAaAmUoGms@sEoe@mHoi@{Eg_@_Hce@kHid@yH__@_Nyj@wMgf@aIuXkCeJiCgJmCmJkCcJ}CoKyBcIqC}JkCkJiCmJcCcJiCeK_CmJ_CuJ}BwJwBwJuBuJqByJqB_KkBaKkBaKgBkKyAsJaBeK{AeK{AiKsAkKy@iG]mCmAcKeA_KmA{KcAoK_AiK_AwKy@mKy@qKs@mKq@}Km@qKm@wKk@sKi@wKg@wKi@qKg@mKg@iLiA}WsC_n@cDov@aHm{AmAiY{Bke@mAuX{@_Ty@cQyBkd@qBad@{Bih@iBob@i@uM_@qK[_KWqLSuLEkDEuEGsK?{NDcNNiSN{KZgLVaKb@uLf@}Kh@eKt@aLnBwXz@aKhAaLhAcKnAoKtAkKtAwJ~AsKbBcKfBoKpKeo@pKap@bH}c@~K{v@x\\a`ClR{tA|G_d@~Gac@bIkd@xE{VbF_WlLcj@lHq\\dGoXl@eCjIe]zKqg@dX{~@vPsg@rNqc@jQsg@xPqf@pO{`@jXuq@xN_\\ne@seAzUmi@pPc\\rNcYrt@suAtHuNpa@mw@lOyZdNkZzLm]|IiX`HyUjFiS~FmW`EiSjEyUdF__@dAqHrFah@rDki@vB{d@nDu_AnBqh@JgCtEygA`EwhAtEeoA"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to take A-1, Autovía del Norte toward Villafría.","announcement":"Keep left to take A-1, Autovía del Norte toward Villafría.","distanceAlongGeometry":233.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[-3.649906,42.374486],"geometry_index":7972,"admin_index":1,"weight":2.064,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.127,"bearings":[94,99,276],"out":1,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,279],"duration":8.471,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":8.26,"geometry_index":7973,"location":[-3.649308,42.374419]},{"bearings":[108,287],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7981,"location":[-3.646931,42.374073]}],"exits":"24","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Villafría"}],"type":"fork","modifier":"left","text":"Villafría"},"distanceAlongGeometry":330.595}],"destinations":"A-1, E-5, AP-1, N-I: Villafría, Vitoria, Burgos, C/Vitoria","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 24 onto A-1 toward Villafría/Vitoria.","modifier":"slight right","bearing_after":99,"bearing_before":96,"location":[-3.649906,42.374486]},"speedLimitSign":"vienna","name":"","weight_typical":13.754,"duration_typical":14.027,"duration":14.027,"distance":330.595,"driving_side":"right","weight":13.754,"mode":"driving","geometry":"ktiyoAbvw}EdCkd@p@aM|@aUv@iPxAyTrAiQfBgR`C_SrBwNh@yDfBcL|BqLlGwW"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4546.67},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 251.","announcement":"In 1 mile, Keep right to take exit 251.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 251.","announcement":"In a half mile, Keep right to take exit 251.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 251 onto N-I toward Villafría Rubena, Vitoria.","announcement":"Keep right to take exit 251 onto N-I toward Villafría Rubena, Vitoria.","distanceAlongGeometry":204.444}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[115,120,295],"duration":15.441,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":15.422,"geometry_index":7985,"location":[-3.646015,42.373802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,300],"duration":6.172,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":6.172,"geometry_index":7996,"location":[-3.642089,42.37206]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[111,294],"duration":7.564,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":7.564,"geometry_index":7999,"location":[-3.640249,42.371411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,285],"duration":0.873,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.873,"geometry_index":8003,"location":[-3.637855,42.370826]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,285],"duration":12.873,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":12.551,"geometry_index":8004,"location":[-3.637572,42.370769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,272],"duration":8.98,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":8.758,"geometry_index":8011,"location":[-3.6333,42.370404]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-3.630362,42.37055],"geometry_index":8016,"admin_index":1,"weight":5.355,"is_urban":false,"turn_weight":0.5,"duration":5.135,"bearings":[83,259,266],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"location":[-3.628653,42.370721],"geometry_index":8019,"admin_index":1,"weight":13.783,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"yield_sign":true,"out":0,"in":1,"classes":["motorway"],"duration":14.508,"bearings":[82,262],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.623878,42.371455],"geometry_index":8030,"admin_index":1,"weight":18.193,"is_urban":false,"turn_weight":11,"duration":7.789,"bearings":[66,240,249],"out":0,"in":1,"turn_duration":0.011,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,245],"duration":46.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":42.725,"geometry_index":8032,"location":[-3.621345,42.372301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,268],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.023,"geometry_index":8069,"location":[-3.605105,42.373172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,267],"duration":1.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.174,"geometry_index":8070,"location":[-3.604318,42.373204]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":3.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.172,"geometry_index":8071,"location":[-3.603871,42.373244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,261],"duration":2.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.465,"geometry_index":8074,"location":[-3.602664,42.373368]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.828,"geometry_index":8076,"location":[-3.601745,42.373509]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,251],"duration":3.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.17,"geometry_index":8080,"location":[-3.599614,42.373948]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,248],"duration":6.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.465,"geometry_index":8082,"location":[-3.598498,42.37427]},{"bearings":[55,242],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":8086,"location":[-3.596352,42.375069]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Villafría Rubena"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Villafría Rubena / Vitoria"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"251"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-I","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-I"}],"type":"fork","modifier":"right","text":"Exit 251 N-I"},"distanceAlongGeometry":4573.337}],"destinations":"Villafría","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A-1/Autovía del Norte toward Villafría.","modifier":"slight left","bearing_after":115,"bearing_before":115,"location":[-3.646015,42.373802]},"speedLimitSign":"vienna","name":"Autovía del Norte","weight_typical":165.773,"duration_typical":162.992,"duration":162.992,"distance":4573.337,"driving_side":"right","weight":165.773,"mode":"driving","ref":"A-1","geometry":"sihyoA|bp}ExDsOzF_TfFyOlIkUnK_Y`FcMlEiLpJiVdJiWlLq^hN}b@bIiX|K{b@nPyt@tIqd@vGc`@vG{d@jGah@pBuPvBwVfD{a@xBg_@`Bo\\jC}v@b@gZl@m~@B{[o@_m@_A}`@eCum@q@c[aA{T}Cqq@uBka@eAaSaDos@mB_c@yBic@wAkWwCg`@wDm_@aFu^oAcHqAaH_EsLsf@mvBgL{e@kJcb@{H{^aH}]eF{Y}Gid@yEm^wCqXoBsQiBkSwBoX_BwUu@iMy@wPcAgTc@yLk@wQs@wZ[wRMkUOe\\Fab@RsT\\eUh@mVzA}d@pAc_@x@eZfB{]xBih@dCyn@bBeg@^aRd@gXn@s`@JyPNic@S{^_Aep@oA}ZiAwYcA{QiBy\\iFwo@o@uGyCuZqBgUiE{^wKkr@uCaRmNuq@{Jy`@iIo\\{Ky_@{M_e@mTai@}Og`@sQ}`@sPe[_Tw]yIeO"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Enter Carretera de Madrid a Irún and take the 2nd exit.","announcement":"In a quarter mile, Enter Carretera de Madrid a Irún and take the 2nd exit.","distanceAlongGeometry":419.066},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit.","announcement":"Enter the roundabout and take the 2nd exit.","distanceAlongGeometry":160}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[44,47,228],"duration":1.461,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":1,"weight":1.297,"geometry_index":8092,"location":[-3.593402,42.376772]},{"entry":[true,false],"in":1,"bearings":[47,227],"duration":5.92,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":5.328,"geometry_index":8093,"location":[-3.593237,42.376884]},{"entry":[true,false],"in":1,"bearings":[46,227],"duration":23.439,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":21.096,"geometry_index":8095,"location":[-3.592579,42.377336]},{"bearings":[46,226],"entry":[true,false],"in":1,"yield_sign":true,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":8102,"location":[-3.590022,42.379173]}],"exits":"251","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Enter Carretera de Madrid a Irún and take the 2nd exit"}],"degrees":115,"driving_side":"right","type":"roundabout","modifier":"right","text":"Enter Carretera de Madrid a Irún and take the 2nd exit"},"distanceAlongGeometry":445.733}],"destinations":"N-I, E-5 AP-1: Villafría Rubena, Vitoria","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 251 onto N-I toward Villafría Rubena/Vitoria.","modifier":"slight right","bearing_after":47,"bearing_before":48,"location":[-3.593402,42.376772]},"speedLimitSign":"vienna","name":"","weight_typical":32.041,"duration_typical":35.621,"duration":35.621,"distance":445.733,"driving_side":"right","weight":32.041,"mode":"driving","geometry":"gcnyoArjizE_FiIaOuVeKmPiNyT}]}j@uWq`@wLwQaIkL{KeQeFeIqD{F{I_Ns@_BcA}B}@mC"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto E 05, E 80.","announcement":"Exit the roundabout onto E 05, E 80.","distanceAlongGeometry":41.953}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[104,233,300],"duration":3.795,"turn_weight":11,"turn_duration":0.194,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":1,"out":0,"weight":14.24,"geometry_index":8107,"location":[-3.589474,42.379527]},{"entry":[true,true,false],"in":2,"bearings":[83,146,284],"duration":3.449,"turn_duration":0.09,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":1,"out":0,"weight":3.023,"geometry_index":8110,"location":[-3.589189,42.379475]},{"bearings":[62,199,260],"entry":[true,false,false],"in":2,"turn_duration":0.071,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":8113,"location":[-3.588852,42.379514]}],"rotary_name":"Carretera de Madrid a Irún","destinations":"E 05","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"degrees":115,"driving_side":"right","type":"roundabout","modifier":"right","text":"E 05"},"distanceAlongGeometry":68.62}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":2,"instruction":"Enter Carretera de Madrid a Irún and take the 2nd exit.","modifier":"right","bearing_after":104,"bearing_before":53,"location":[-3.589474,42.379527]},"speedLimitSign":"vienna","name":"","weight_typical":18.883,"duration_typical":9.115,"duration":9.115,"distance":68.62,"driving_side":"right","weight":18.883,"mode":"driving","geometry":"mosyoAbuazEt@eE`@mDNeEAeG[mEo@mEcAqF_AcB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 57 miles.","announcement":"Continue for 57 miles.","distanceAlongGeometry":92425.008},{"ssmlAnnouncement":"In 1 mile, Keep left to take A-1.","announcement":"In 1 mile, Keep left to take A-1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A-1.","announcement":"In a half mile, Keep left to take A-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A-1, E 05.","announcement":"Keep left to take A-1, E 05.","distanceAlongGeometry":200}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[45,97,242],"duration":1.646,"turn_duration":0.072,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":1,"weight":1.418,"geometry_index":8115,"location":[-3.588681,42.37958]},{"entry":[true,false],"in":1,"bearings":[105,277],"duration":2.025,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":1.822,"geometry_index":8116,"location":[-3.588508,42.379565]},{"entry":[true,false,true],"in":1,"bearings":[120,285,329],"duration":0.201,"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.162,"geometry_index":8117,"location":[-3.588297,42.379523]},{"entry":[true,false],"in":1,"bearings":[122,300],"duration":0.967,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.869,"geometry_index":8118,"location":[-3.588276,42.379514]},{"entry":[true,false],"in":1,"bearings":[121,302],"duration":1.303,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":1.172,"geometry_index":8120,"location":[-3.588164,42.379463]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":2.299,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":2.068,"geometry_index":8122,"location":[-3.587992,42.379386]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":4.416,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":3.973,"geometry_index":8123,"location":[-3.58768,42.379248]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":0.4,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.354,"geometry_index":8124,"location":[-3.587003,42.37895]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-3.586943,42.378923],"geometry_index":8125,"admin_index":1,"weight":7.711,"is_urban":false,"turn_weight":0.75,"duration":7.742,"bearings":[118,124,301],"out":1,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,true,true,false],"classes":["motorway"],"in":3,"bearings":[122,132,256,302],"duration":5.854,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":5.252,"geometry_index":8127,"location":[-3.58576,42.378359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,302],"duration":5.152,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":4.637,"geometry_index":8128,"location":[-3.5848,42.377908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,300],"duration":1.039,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.936,"geometry_index":8129,"location":[-3.584035,42.377582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,302],"duration":12,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":10.801,"geometry_index":8130,"location":[-3.583898,42.377519]},{"entry":[false,true],"bearings":[74,281],"duration":45.199,"classes":["motorway"],"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":40.68,"geometry_index":8144,"location":[-3.58405,42.376551]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.582745,42.381096],"geometry_index":8167,"admin_index":1,"weight":17.48,"is_urban":false,"turn_weight":11,"duration":7.209,"bearings":[7,184,191],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":1.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.574,"geometry_index":8171,"location":[-3.582537,42.383066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,184],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.119,"geometry_index":8172,"location":[-3.582493,42.383528]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.818,"geometry_index":8181,"location":[-3.581675,42.386181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,202],"duration":93.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":82.246,"geometry_index":8182,"location":[-3.581548,42.386409]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[68,75,247],"duration":0.721,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.625,"geometry_index":8241,"location":[-3.556026,42.403125]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":34.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.609,"geometry_index":8242,"location":[-3.555786,42.403196]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.543616,42.405255],"geometry_index":8264,"admin_index":1,"weight":93.793,"is_urban":false,"turn_weight":1,"duration":106.07,"bearings":[66,239,248],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,259],"duration":8.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.822,"geometry_index":8329,"location":[-3.510713,42.424902]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":23.9,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.895,"geometry_index":8334,"location":[-3.507183,42.4255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,207],"duration":37.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.76,"geometry_index":8352,"location":[-3.500155,42.430148]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":30.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.381,"geometry_index":8379,"location":[-3.49369,42.439976]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.318,"geometry_index":8396,"location":[-3.485032,42.446337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":16.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.699,"geometry_index":8401,"location":[-3.482553,42.447369]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.184,"geometry_index":8412,"location":[-3.477053,42.45029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":42.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.908,"geometry_index":8413,"location":[-3.476988,42.450332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,246],"duration":41.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.408,"geometry_index":8441,"location":[-3.460775,42.453339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,197],"duration":2.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.885,"geometry_index":8464,"location":[-3.450049,42.462531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":2.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.539,"geometry_index":8465,"location":[-3.449836,42.463086]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[14,18,195],"duration":25.641,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.059,"geometry_index":8466,"location":[-3.449562,42.463838]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,220],"duration":338.02,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":304.209,"geometry_index":8484,"location":[-3.445082,42.470668]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,38,214],"duration":27.158,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.436,"geometry_index":8662,"location":[-3.336983,42.523797]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.330364,42.529116],"geometry_index":8675,"admin_index":1,"weight":12.193,"is_urban":false,"turn_weight":1,"duration":12.119,"bearings":[54,228,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":3.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.176,"geometry_index":8682,"location":[-3.326543,42.530744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.902,"geometry_index":8685,"location":[-3.325384,42.53109]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[73,79,250],"duration":0.174,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.152,"geometry_index":8686,"location":[-3.325056,42.531176]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":12.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.914,"geometry_index":8687,"location":[-3.324993,42.53119]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.91,"geometry_index":8695,"location":[-3.320355,42.531912]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":13.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.719,"geometry_index":8696,"location":[-3.320001,42.531942]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.315385,42.532589],"geometry_index":8704,"admin_index":1,"weight":206.957,"is_urban":false,"turn_weight":1,"duration":235.404,"bearings":[67,249,252],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[49,53,228],"duration":25.537,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.338,"geometry_index":8816,"location":[-3.248469,42.581702]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,234],"duration":264.469,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":231.395,"geometry_index":8825,"location":[-3.240268,42.586385]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[96,106,277],"duration":25.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.875,"geometry_index":8981,"location":[-3.15138,42.624864]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,272],"duration":68.988,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":60.346,"geometry_index":8996,"location":[-3.14249,42.623409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.539,"geometry_index":9029,"location":[-3.117678,42.621953]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[76,86,258],"duration":13.301,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.951,"geometry_index":9030,"location":[-3.117461,42.621988]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,235],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.08,"geometry_index":9041,"location":[-3.113148,42.623423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,233],"duration":8.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.92,"geometry_index":9042,"location":[-3.112798,42.623619]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.110626,42.625361],"geometry_index":9047,"admin_index":1,"weight":4.746,"is_urban":false,"turn_weight":0.75,"duration":4.463,"bearings":[33,208,215],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,207],"duration":0.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.734,"geometry_index":9050,"location":[-3.109818,42.626383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":19.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.947,"geometry_index":9051,"location":[-3.109708,42.626578]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":7.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.703,"geometry_index":9061,"location":[-3.108832,42.631554]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[14,191],"duration":5.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.344,"geometry_index":9065,"location":[-3.108485,42.633425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,194],"duration":35.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.961,"geometry_index":9066,"location":[-3.108021,42.634819]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[47,230],"duration":8.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.738,"geometry_index":9090,"location":[-3.098248,42.639259]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,227],"duration":14.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.689,"geometry_index":9091,"location":[-3.09599,42.640814]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[46,224],"duration":5.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.57,"geometry_index":9098,"location":[-3.092524,42.643672]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[65,245],"duration":3.324,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.902,"geometry_index":9102,"location":[-3.091058,42.644433]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,258],"duration":51.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":44.873,"geometry_index":9104,"location":[-3.089969,42.644686]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[84,92,266],"duration":30.604,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.76,"geometry_index":9132,"location":[-3.073879,42.650631]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.063323,42.652848],"geometry_index":9148,"admin_index":1,"weight":6.416,"is_urban":false,"turn_weight":1,"duration":6.209,"bearings":[56,227,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":2.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.09,"geometry_index":9150,"location":[-3.061468,42.653784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,237],"duration":55.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":48.625,"geometry_index":9151,"location":[-3.060727,42.654142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,256],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.709,"geometry_index":9173,"location":[-3.041122,42.658734]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,253],"duration":20.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.098,"geometry_index":9174,"location":[-3.04045,42.658887]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.034341,42.662208],"geometry_index":9186,"admin_index":1,"weight":164.301,"is_urban":false,"turn_weight":1,"duration":186.662,"bearings":[33,213,219],"out":0,"in":2,"turn_duration":0.033,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,230],"duration":5.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.979,"geometry_index":9244,"location":[-2.978071,42.697928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,232],"duration":4.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.85,"geometry_index":9245,"location":[-2.976443,42.698868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.947,"geometry_index":9248,"location":[-2.975186,42.699521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":21.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.861,"geometry_index":9249,"location":[-2.974871,42.699676]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,248],"duration":1.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.129,"geometry_index":9260,"location":[-2.967654,42.702454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,250],"duration":29.867,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.609,"geometry_index":9261,"location":[-2.967211,42.70257]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":8.529,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.883,"geometry_index":9271,"location":[-2.956343,42.704303]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[85,89,264],"duration":0.732,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.66,"geometry_index":9273,"location":[-2.953203,42.704551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":27.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.74,"geometry_index":9274,"location":[-2.952937,42.704568]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.942464,42.704928],"geometry_index":9282,"admin_index":1,"weight":37.031,"is_urban":false,"turn_weight":1,"duration":37.936,"bearings":[89,265,269],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,276],"duration":2.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.113,"geometry_index":9291,"location":[-2.928076,42.704333]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,277],"duration":5.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.615,"geometry_index":9292,"location":[-2.927293,42.704262]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":3.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.941,"geometry_index":9294,"location":[-2.925262,42.704065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.953,"geometry_index":9295,"location":[-2.924192,42.703965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":10.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.596,"geometry_index":9296,"location":[-2.923476,42.703897]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,274],"duration":3.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.609,"geometry_index":9301,"location":[-2.919548,42.703615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":0.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.656,"geometry_index":9303,"location":[-2.918204,42.703591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,271],"duration":2.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.252,"geometry_index":9304,"location":[-2.917955,42.703589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,269],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.723,"geometry_index":9305,"location":[-2.917126,42.703599]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[87,92,270],"duration":0.25,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.221,"geometry_index":9306,"location":[-2.916862,42.7036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":30.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.023,"geometry_index":9307,"location":[-2.916772,42.703604]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.905499,42.705153],"geometry_index":9321,"admin_index":2,"weight":57.217,"is_urban":false,"turn_weight":1,"duration":60.793,"bearings":[70,244,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":0.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.678,"geometry_index":9346,"location":[-2.883484,42.707008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":22.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.869,"geometry_index":9347,"location":[-2.883228,42.706963]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,250],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.25,"geometry_index":9358,"location":[-2.874925,42.707314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,245],"duration":2.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.039,"geometry_index":9359,"location":[-2.874092,42.707594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,240],"duration":1.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.529,"geometry_index":9361,"location":[-2.873368,42.707896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,237],"duration":20.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.562,"geometry_index":9362,"location":[-2.872846,42.708141]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.029,"geometry_index":9372,"location":[-2.868097,42.712319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,208],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.787,"geometry_index":9373,"location":[-2.867715,42.712852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":2.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.076,"geometry_index":9374,"location":[-2.867599,42.713056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":37.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":33.879,"geometry_index":9375,"location":[-2.867286,42.713607]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[3,178,353],"duration":14.248,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":2,"weight":12.801,"geometry_index":9404,"location":[-2.86624,42.723135]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":5.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.629,"geometry_index":9410,"location":[-2.867919,42.726521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":15.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.627,"geometry_index":9411,"location":[-2.868577,42.727684]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.870957,42.731091],"geometry_index":9422,"admin_index":2,"weight":16.006,"is_urban":false,"turn_weight":0.75,"duration":16.965,"bearings":[158,164,353],"out":2,"in":1,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.87055,42.735405],"geometry_index":9432,"admin_index":2,"weight":16.836,"is_urban":false,"turn_weight":1,"duration":17.607,"bearings":[23,196,203],"out":0,"in":1,"turn_duration":0.011,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,219],"duration":59.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.566,"geometry_index":9437,"location":[-2.867212,42.739389]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,247],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.9,"geometry_index":9456,"location":[-2.848559,42.74714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,249],"duration":32.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.34,"geometry_index":9457,"location":[-2.848213,42.74724]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":1.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.109,"geometry_index":9462,"location":[-2.837321,42.750865]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":38.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.904,"geometry_index":9463,"location":[-2.836928,42.751023]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.973,"geometry_index":9478,"location":[-2.8254,42.757337]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[33,37,217],"duration":0.779,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.678,"geometry_index":9479,"location":[-2.82516,42.757573]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":11.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.486,"geometry_index":9480,"location":[-2.825008,42.757745]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,201],"duration":1.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.162,"geometry_index":9486,"location":[-2.82306,42.7606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,199],"duration":5.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.799,"geometry_index":9487,"location":[-2.822911,42.760922]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,194],"duration":0.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.58,"geometry_index":9489,"location":[-2.822431,42.762285]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,191],"duration":10.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.869,"geometry_index":9490,"location":[-2.822388,42.762451]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.822122,42.765392],"geometry_index":9494,"admin_index":1,"weight":21.35,"is_urban":false,"turn_weight":0.5,"duration":23.186,"bearings":[175,180,359],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":2.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.211,"geometry_index":9499,"location":[-2.822878,42.771612]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":11.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.051,"geometry_index":9500,"location":[-2.822967,42.772269]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":11.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.109,"geometry_index":9502,"location":[-2.823391,42.775263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":2.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.963,"geometry_index":9505,"location":[-2.823686,42.778285]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":6.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.059,"geometry_index":9506,"location":[-2.823704,42.778854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":7.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.936,"geometry_index":9509,"location":[-2.823697,42.780646]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":3.957,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.455,"geometry_index":9512,"location":[-2.823578,42.7827]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[6,184],"duration":17.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.26,"geometry_index":9514,"location":[-2.823484,42.783716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,188],"duration":3.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.27,"geometry_index":9516,"location":[-2.822762,42.788165]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":53.947,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":48.547,"geometry_index":9517,"location":[-2.822543,42.789129]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[52,53,231],"duration":1.146,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.055,"geometry_index":9537,"location":[-2.812395,42.802838]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":69.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":64.502,"geometry_index":9538,"location":[-2.812035,42.803048]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.792752,42.813068],"geometry_index":9559,"admin_index":2,"weight":24.219,"is_urban":false,"turn_weight":1,"duration":25.119,"bearings":[57,232,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[58,240],"entry":[true,false],"classes":["motorway"],"in":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9562,"location":[-2.784732,42.81653]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"type":"fork","modifier":"left","text":"A-1 / E 05"},"distanceAlongGeometry":92451.672}],"destinations":"E 05","speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto E 05/E 80.","modifier":"slight right","bearing_after":97,"bearing_before":62,"location":[-3.588681,42.37958]},"speedLimitSign":"vienna","name":"","weight_typical":2679.584,"duration_typical":2979.133,"duration":2979.133,"distance":92451.672,"driving_side":"right","weight":2679.584,"mode":"driving","ref":"E 05; E 80","geometry":"wrsyoApc`zE\\yIrAeLPi@`BuEBIvCqI@ErGoRrQii@t@wB~Nu^fRgi@d[_{@jSyn@|BqGlBmFvBcFfCwCvCeCdCeA|EqAnDBdDf@pDtAxCjBbDjEtBlF`B~HFnEBbB_@hG_AhFoA~C{BtDuEdDkCr@aGXkGe@_EcAmEiB}EcD{]eVmRgLiMiHme@gTsJ{DmSwGu_@cK{OuD{QyC_BWkT{@{T{Bm\\kBmb@gBkc@oA{[wA}YuB}QsBwMkBwP}CsKuBkNkDsScG_RmGyR{HgM}FmJ}EsJaFqOgJaNeJkQqM{MsKaQ{O}PeQiSgUgQmUiLmPqWib@gNaXiPu]eM}ZyH{ScMm^}Qsk@{Vcw@iK}ZqRki@cKwW}G}PkN_[qHcPiPm[yP}ZcUm_@_Te[gNgRqYu^aKaMsJaLmX{ZeXiZeWiYqg@qk@oUiXe\\w`@yK}MkNsQ_Yq_@aTuZqRuYqUk_@sYif@}Zel@_Rc_@kN_[_KaUqJmU}Mc]_Na_@_O_c@iMeb@uJc]cKc`@kLue@{Msm@mC_NsCsNaGi\\_G__@qGkc@qG{d@cFsc@cDu]uEej@oCm_@}Bm_@kD_n@{Cqq@sDez@oCks@sBe_@uAmTsBiYiEcd@iD}XoFq^{E_YeFkW{EmSwGoWgGaTuI_YqCuHuFsOiJ}UiMyYcJsQiI}NgSw]}Us^yXsa@mZuc@eTi[iV}_@_Tc]iTo_@iL}SqMiWaMaW_[kr@cV_l@g]y|@wz@m{Bu`@gdAub@igAoUsj@mPu`@{Xqo@mc@m`Aa^kt@iSy^aKoQiMaTcOeVuQiWqUmZ}Y{]e_@a`@g_@m]e[gX_i@ob@}a@k\\kVwSyLuKwP_QqR{TiOeRmMoQwLuQuPaZuJ{QoNqYoOg_@M]mQch@gKq^qJ}^wJof@wG_a@kDaWoE}_@yDqa@gBeUiEgn@kGo{@eEge@iFic@eHie@gDuSyFwXaIc]}J{^oKq]gNy_@_LuXyNeZeNgXgQcZqYsb@oR}UoQ{RuJ{JaMcLuVoSmWmR_ZyQs\\oPm\\oNu`@aM{LaDkMsCiLeCcWiEue@sGqn@_Ki[gGeTqFoY{IqVuJmVyKqQyJ{TcNmN}JqQ{MkUoSyLoLuLyLyOeRyPwTuQsWki@m{@yDeGwSg\\u^qk@wSa\\wL{P_O}T{k@uz@ga@ok@ql@my@ki@kt@ka@ei@_[kb@}SyZeLwQ}JcQaHwMyIsPwLcXgE}JgLeYuM}_@gTit@}Lqe@k@}BaS_v@cKm^{Nsc@uL_\\{JgUcJaSwKeT_LmScQgZyf@iy@cMeUsAaCcF{ImVwg@{Nu]oKeZmKy[mIc[iL}f@oFwXgHec@yGgg@cG}o@_Ckb@cBub@k@o[Mcc@Ci_@j@so@x@os@\\y~@g@es@eAgZ_Bk^_Cq_@}Dmb@oFge@mIyi@eIy`@uHe\\oNsi@mPif@iYev@wS{e@m^sv@wN_YmJuQ{U}`@m`@ym@yQqW{OsTa]sb@cZg]mTuU_`@a^_\\iXuWmRuZsSy[oRmb@}S_[aNqZmLa^eLua@iL_n@cP_TiFof@aMaVoGiRoFwOcFcc@qOoQgHuXmMqRsJ}L}GoMuH{KmHqUkOeWoRaf@qa@a^m]oXyZuV{Y_SgXeRuXaYod@yRi]gSqa@yRic@yN{]yI_VwI}ViMi`@}K}^cQyk@gMec@_Lg`@yLm_@iNe`@uOo_@}Pe^{Rw^cNaUuXwb@}Zke@gQgY{IkOcLsT_Oo[mKgVaJsUyGmRgJkZoIc[{Kgf@_FaYqI_h@yE}_@}BgTsAgO{Cw`@yFoy@uEwm@sEuj@iDi`@sCyXeFga@mEi[{E}ZaHq`@oImb@gOwp@sYsiAu_@eyAoOcp@kI{_@sI_c@eLer@_G}b@uCsUyEcg@gDmc@eDkb@qBk`@sAci@wAek@u@{j@_AsjA}@_`AkBqfBuB}oA}CckAiCgr@kDqs@}Cah@kCsa@eFoq@oEai@uFaj@oH}q@iHqk@iMoaAwHyh@aMqy@{Oq`AsO{|@{Lgp@qP_z@wNuq@}XqnA{YsmAoU{{@yOgl@aVcy@uSer@c[u`A}\\waAa`@_eAo`@edAaWen@w\\ax@aWkl@}[ms@_w@_cB}x@ieBi`@wx@eYem@}Tih@sLgZgLi[qJiY}Nid@qLkc@iLme@mIo_@_H}^yIsi@qMq~@cKix@yI_t@eLa{@oGkd@_Fg[iGs\\iFmXiGmXyG_ZsNwi@aJyZsJcZgJsWwN{_@sOu^aOc\\{Og[yTga@kLyRgMaSiR}W}L}PiUmYy\\o`@kUgWi]c^aWuVkTsSm_@s\\aa@w\\mXcTo`@uYy_@_Xq`@aWeb@uVsa@kUa_@iScj@eXkt@_^sr@{[}x@y_@mf@uUmc@aTs[uO_b@sS}b@qTgi@aYmZ_Pkf@qXs\\wRaYqPaXsPwb@aX{a@aYs`@_XwQoMqNcKgXcSoZcUaX{Sq]uXe|@ut@cm@sh@aZqXmT{S_V{Uk]o_@_Yw[{j@ir@gX{]c^wg@mZed@iRa[}Rk]uXgj@}JiTsLeXqUml@aSgk@cOag@oHeX}F_U}Juc@gCgLyG_[qGe^kDoS[}B{L{}@kF{a@uCyZuBmWmByYaDig@wBae@gBua@{@cUaDi`AuAy^{Bsc@{Cwe@kDw^eCqU{CcUoHqf@iGaZcP}q@iNce@kPse@qQib@aNoZuJcQgMuTic@cr@s\\{g@ce@et@kUi_@mTy_@aRi]gRc_@uVki@{X_q@oYwv@oSen@iTkr@kUsu@k[qfAq`@{pA_Wqx@q[e`Ag^uaAmPeb@iPu`@qTgg@aWij@{Yql@mUyb@gWod@_^el@}DsG{EoHg\\qg@ob@{l@_Xc^k]_c@kf@wj@}]w_@wTyUc]q\\wf@se@q]o[gc@s`@g`@w]yYqWu]s[uU_Uq[qZsUcWUW{OeQmOuQiReVuSsXwXe`@_Tw\\cZqf@cPgZcOkZeR{_@{S{b@sPs_@i]gv@mZer@u]sv@yV}i@oY_m@kQm^uWkf@qZwj@uVmb@oVu`@ua@qn@si@{u@s[ma@_f@ck@mRoT_]{^i`@o`@wc@gb@ui@ue@iuAoiAsp@yg@{q@ki@or@uj@}m@cg@yh@ac@qQyOgKcI_T_Rmf@sb@wa@a_@cUeT_c@wa@ga@ua@ac@id@if@mi@mVaYob@gg@y\\kb@uYy^ei@ws@c\\ke@w\\cf@_d@mq@od@mt@}Wgd@e\\sk@q_@qr@}]}p@_^as@_OkZsWyi@ed@eaA{J}TqS{d@}vAyaDio@kzAuh@sjA{h@uhAq]at@w^qs@w\\mo@sTca@{R}\\eVo`@g]gi@kQkX{OaUgPySwi@{o@{MkOwTwT_d@ob@cV_Tc\\yWi^eYc[oTa]aVaq@ce@m^sWeLwIiQiNgOoMsM}LeJyI{J{JiIuIaWwX{P{SsRoWqJ{LyPcXuTq^uJyPwKiSkMmWqOq]cNe]oOsa@iJmXqHyU_L{_@iJq]iMog@kPut@aZesAeXmjAsOam@}Rar@uRwm@{Som@wOma@mMoZcQm`@qMkXsOc[gUgb@aX{d@cQ_XgL}PuTc[qXc^gVyYsR{TqTaVkUgVst@ou@ic@sc@gY{ZuTcWiLiOkOaT{M_ScRsZsKcS}HmO}GuNsJySaJmTuGyP_FgNkGoQ{Moc@yGqVcGsWkF_VuEgUyHgc@aJaj@eOqeA}Lyw@ePceAePw~@mKkh@yGyZ{Is^wPko@a[wdAia@}lAcY_y@g]mbA_Ouc@{R}m@gEiN}L{c@_G{TiLyd@_EyQeQky@sMmu@mHge@{E_^iKsx@sA{QcEa`@wC{c@w@yLuEsv@mBu^iAaYkAqj@yAcs@}@wy@q@qdCYkx@s@if@_CouAgDo{@QcEiBo^yBya@eDmb@eCy_@qGik@kCiZsQcqAyLkw@eR{eAkMwv@oCkQgEoZsDeZcD_[gBuVaBqUoAeXcBei@CcKMa_@GqXfAgg@n@oPv@gUnB_b@dCsXnAyQzI_r@dRugAnLgr@vBuOxJcs@lCwVh@kLtG{w@tAa_@l@o^h@ss@We^c@yb@iDqfAeC_u@y@iYWm\\EcXbA{x@|@e[xBoc@vEwk@lAwN~Hio@lPydAlVu{AdKio@`Gab@jKo{@jHct@nAsN|Gy`A~Bag@`AcO|DsbAjA}q@P_v@?}u@Qq`@iAep@{Bqw@_Dqr@yCwe@sMuyAeAqLcCuT{Dm[mAsK_Kim@wFyW{D_RCKsIg[wCyLmPse@uQsb@gK{TwWye@cR{X_RgVcY_\\{RyQgSeQaWyQqRoLeK{EqW{L}UiJ}c@aMu^uHo^gEsc@yBy_@]_c@`Aee@lAwRTcQR}]qBcZqFwg@eJcvA_\\}e@cOm[iLw_@gPw^}ZeUkZ}N{XuGyO_FqNaDgLsDqOwEyWaDmXmBgYg@eUU}WRs`AU{_@_AcZkCeYiCySmIcd@kKe_@cM{[gOiYe`BclCso@y}@aOuRuNgRyd@ak@i`@oe@yRmUiF{H}GiKiP}ZgNu`@aEuPkHsZmEmg@u@g[Fal@xC}q@vC_f@nAud@Eqi@iCkm@sHqn@}O_n@iQ_d@wUy]mUqXqS}P{McIwf@_V}o@_[iS{MeLeKaZiZgWi_@wTac@aQii@yFkWsC}KeIij@kFwq@cBae@wDgqBm@cPyBgaAwCut@{A{_@}Csi@aG_x@aImx@yH}p@}H{i@kIsh@uLio@uJuc@wMif@wGyTcGeRoN_`@wY}u@w^_|@kUim@eQcl@wMkj@aJsf@kK{s@yHwt@mHuiAmE}u@sGicAmIwy@kM_y@{Pwx@kScv@eVmu@aVwx@oT}y@yNuz@yIor@_Hgt@wFo|@qDct@sFm}@}Gkq@qH_i@eKgl@kKce@kLce@cMm]kLu[}Nc^mMqX_Qw\\_Yad@uMqQaYy\\_Zi\\sc@g_@o[uVgYoO}YcOsd@}Qoj@yOso@{Owp@gOkn@mVsb@mPwg@cZ_c@}Z{e@gb@{d@yj@{Vy^qTg^{Skb@sSmf@uTqm@wUmy@wXidAeTiv@{YqaAu[c_Ao[s{@s\\iu@{g@qdAqh@s~@e\\em@yk@aeAid@w{@kh@}`Aqg@gcAsa@sy@k^ou@{m@ssAqi@eiAwk@{rA{@mBoh@spAkj@ctAko@cdB}b@olAwj@q}Aaj@__Bsk@scBel@{~Amm@{aB}z@msBi|@mxBe|@ipBes@_|Akl@_pAup@uoAgm@yjAim@qiAcgAapByh@abAwy@wdBwNq]_Qwa@aFgLuHuReVim@{Vcs@}Ren@aRan@oLka@eK{`@kNgi@yJ}b@cK{c@yIcb@wJ}f@gFuZcEcUcJ{h@_Lyw@{Ko{@uLshAwKkjAeIogAeJoyAiHuyAaGg~AqE_pA}GgrBa@sOyBky@oBw}@eC{rAiBooAeBc{AoA{jBe@yeAYgaBG_c@dAqwDrAmcBdAcnAhEweCrA}u@rEmkBjEu_BnGigBlC}o@`GapAfC{l@fE{aAfCwk@hEo`AbCkq@vBi|@x@e_@r@cc@b@ok@Jof@BqNSyr@AoOGsDo@c]{@ut@iAel@oA}e@_Cem@uC_o@sCgj@wCyc@mIehA}C_^}Fel@kKa_AqQwqAiOeaAcQmdAeQ_aAqRsdA}Pm~@yPs`AsLeq@}Ioj@_G}d@mGug@mHws@aGmq@oFuz@wCeu@kBkn@mAet@Woa@Sqi@Xuh@jA}x@nBat@fDkw@~Fc_AbFko@`Hqt@nPubBxA_OtIg`AvCcf@rBed@nAsh@Rmb@_@{o@eBqp@kDem@yGes@eImm@qNax@oPas@iL{^qDkLiNs_@uMg[}LyWsO_Z{LsSk[ge@{VyZ_\\_]cViVsjA}{@_UyNi`@{VwKgFma@qRkMwF}JgDgRiDaPgAaNW{WxA{PpCaLdCia@~HoQbCqRzA}Nb@oNAoNm@gKm@gNuAkOeC}f@uHs[yE}j@gKiq@wKgv@sMyPcCkJgAwL{@}FU}FCuIVgJNoP|AeLdCwIrBqIlCiQjHilCjoAugAbh@o`@lRsYrOiNjJiMnK{LlM_R`RoI`I}NdL_OxIkObHo^bKaRfBsPpAgYPyd@Gu_@Vi[c@gTcBeR_CuPgDwp@yQ_c@gTe}@wk@mu@yk@yn@qk@qo@gt@mVi[wQeWgTu[kPmW_Yug@mU}d@yP{]uUcj@}Qof@{M}_@mNib@{Moc@}Siu@iQaq@wWcgAkXulAcUydAcm@apC}{AgeHgEsTsgA_cFgv@slDa[osAi[gpAii@kpB{HqWkb@uvAoWcy@cWyv@kSgl@sZmz@eX}s@eWso@_`@o}@wY{m@s[sm@q\\qj@o_@yi@q[ia@iZ{[}EaFwM_NwIoHcZ_Wa[cUaYqRc[iQwWoMik@gVcSiH{e@oMim@oNkIuAou@kI}ZeBg\\uAcgAKc_@^ip@|Bcp@fEol@fEusEx\\ah@pDifCtRyr@xEigAnHsx@tD}y@fBqb@b@{TTgx@F{_@k@u}@qAuk@cB_Tw@gU{@gh@_CsuC_Tm~BcWg{@uLeIiAe~@yN_j@oKehAoUmi@mMwu@sRwjAq]mu@sWkr@oYqj@eZwWoPoR}Mka@_\\y[yZ}\\y^}Xu]qWg_@q]_k@a\\km@m`BybDcLoUq_AsmBeVej@mZq_A{o@yyBml@cqB_[wbAsPwi@mJcXgSii@yTkg@qR}`@aQe\\aw@wrA_g@ey@qg@o}@aU{c@iSeb@kRmb@[q@gf@kfAoh@qrAoJyVy{@ulCaoCwnIglCkqHkyCogIa|@}`CgtBcvF"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":8926.244},{"ssmlAnnouncement":"In 2 miles, Take exit 352.","announcement":"In 2 miles, Take exit 352.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 352.","announcement":"In a half mile, Take exit 352.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 352 onto N-622, AP-68 toward Bilbao. Then Keep left to stay on E 05.","announcement":"Take exit 352 onto N-622, AP-68 toward Bilbao. Then Keep left to stay on E 05.","distanceAlongGeometry":313.333}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[54,62,237],"duration":20.25,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.709,"geometry_index":9566,"location":[-2.768541,42.824113]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,234],"duration":55.641,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.447,"geometry_index":9571,"location":[-2.762277,42.827222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":25.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.26,"geometry_index":9594,"location":[-2.751453,42.839572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,203],"duration":21.232,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.162,"geometry_index":9606,"location":[-2.750171,42.846261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,191],"duration":2.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.213,"geometry_index":9616,"location":[-2.74709,42.851301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.078,"geometry_index":9617,"location":[-2.746971,42.851887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,187],"duration":6.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.242,"geometry_index":9618,"location":[-2.746873,42.852439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":20.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.607,"geometry_index":9623,"location":[-2.746354,42.854082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,222],"duration":30.539,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.99,"geometry_index":9631,"location":[-2.74227,42.858527]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":68.027,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":64.619,"geometry_index":9643,"location":[-2.734651,42.864392]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.723,"geometry_index":9671,"location":[-2.716552,42.875289]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[41,52,220],"duration":21.9,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.799,"geometry_index":9672,"location":[-2.716378,42.875441]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,240],"duration":0.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.732,"geometry_index":9682,"location":[-2.710767,42.878838]},{"bearings":[61,234,240],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9683,"location":[-2.710544,42.878932]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"off ramp","modifier":"right","text":"Bilbao"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"352"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"}],"type":"off ramp","modifier":"right","text":"Exit 352 N-622 / AP-68"},"distanceAlongGeometry":8966.244},{"sub":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Bilbao"},"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"off ramp","modifier":"right","text":"Bilbao"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"352"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"}],"type":"off ramp","modifier":"right","text":"Exit 352 N-622 / AP-68"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A-1/E 05/E 80.","modifier":"slight left","bearing_after":54,"bearing_before":57,"location":[-2.768541,42.824113]},"speedLimitSign":"vienna","name":"","weight_typical":290.891,"duration_typical":307.254,"duration":307.254,"distance":8966.244,"driving_side":"right","weight":290.891,"mode":"driving","ref":"A-1; E 05; E 80","geometry":"azwtpAxh~gDgVgj@qh@{wAgo@gdBam@o{Aeb@s`Asg@idAg^mq@{^qo@{d@eu@qd@mq@}e@{o@mf@an@ol@_q@uk@kl@u^i\\gc@k]gf@k\\ch@wY{c@aT}]mNa[qKi_@uKgb@qJ{TgEsXiEu^yDmQ{AwM{@ud@eBs[i@kYE_iAc@}h@mA{d@yCc]_Eu[aGsWwGaWuHaSsH_k@}Wka@gWey@sn@_f@w^qXqQeYuOuRuI_V{JoZuJeZ}Hia@oHsc@mFoa@cE_YwDiUwD_YcHwNgEsKqDob@ePyYeOi]mTq[qU}[{Yo]c_@s]{b@qaA_rAsg@}i@ex@gy@w^c`@a[i]k^cd@g[cb@}Tc\\}Yae@k^go@qSk`@iWij@eWen@eOg_@wNoa@{Kw[iLm_@_V}z@aO_m@gNio@_Pqw@qVunAeN{o@gMmi@qYodAwNoc@mRqf@kU_h@wNqXcPgYsXcc@mXe`@qa@qe@_j@qh@}n@}h@{n@yg@yi@cc@we@eb@_]i]a^q_@qMuOoH{IcSgW_SaY}[mf@mWic@}X}g@oR}`@qX{m@aSch@mRei@iGqR{D}LeF}P_J_[eHkX{Sc_AuLcp@aJmp@wHmq@mFyq@aCma@wBqj@{@ih@Y}p@B_f@`@yZ|Bq{@"},{"ref":"E 05; E 80","mode":"driving","weight":19.76,"distance":261.158,"geometry":"y{expAbhycDpA{RbIknA|AeVnBgs@p@gV","duration":20.811,"driving_side":"right","duration_typical":20.811,"weight_typical":19.76,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 352 onto N-622/AP-68/AP-1 toward Bilbao.","modifier":"slight right","bearing_after":100,"bearing_before":95,"location":[-2.700434,42.880461]},"speedLimitUnit":"km/h","destinations":"N-622, AP-68, AP-1: Bilbao, Vitoria-Gasteiz, aireportua, Donostia-San Sebastián","bannerInstructions":[{"sub":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"fork","modifier":"right","text":"AP-68 / AP-1"},"primary":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Bilbao"},"distanceAlongGeometry":261.158}],"exits":"352","voiceInstructions":[{"ssmlAnnouncement":"Keep left to stay on E 05, E 80 toward Bilbao. Then Keep right to stay on E 05.","announcement":"Keep left to stay on E 05, E 80 toward Bilbao. Then Keep right to stay on E 05.","distanceAlongGeometry":242.5}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[96,100,275],"duration":2.09,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":1.977,"geometry_index":9698,"location":[-2.700434,42.880461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,280],"duration":8.4,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":7.98,"geometry_index":9699,"location":[-2.700116,42.88042]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,280],"duration":2.48,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":2.355,"geometry_index":9700,"location":[-2.698846,42.880258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,280],"duration":5.439,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.168,"geometry_index":9701,"location":[-2.698475,42.880211]},{"bearings":[95,275],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9702,"location":[-2.697639,42.880155]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Keep right to stay on E 05, E 80 toward Bilbao.","announcement":"Keep right to stay on E 05, E 80 toward Bilbao.","distanceAlongGeometry":186.667}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[90,118,275],"duration":25.65,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":24.982,"geometry_index":9703,"location":[-2.697267,42.88013]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.695778,42.880144],"geometry_index":9707,"admin_index":2,"weight":6.723,"is_urban":false,"turn_weight":0.5,"duration":6.404,"bearings":[85,248,268],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,265],"duration":6.08,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.928,"geometry_index":9708,"location":[-2.695298,42.880176]},{"bearings":[79,261],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9710,"location":[-2.694376,42.880276]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"right","text":"Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"fork","modifier":"right","text":"AP-68 / AP-1"},"distanceAlongGeometry":260.134}],"destinations":"Bilbao, aeroportua, Donostia, San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 05/E 80 toward Bilbao.","modifier":"slight left","bearing_after":90,"bearing_before":95,"location":[-2.697267,42.88013]},"speedLimitSign":"vienna","name":"","weight_typical":41.143,"duration_typical":41.734,"duration":41.734,"distance":260.134,"driving_side":"right","weight":41.143,"mode":"driving","ref":"E 05; E 80","geometry":"cgexpAdbscD?eYDoPKwOUs_@_A_]cB{]cBwYqAoP"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take N-622.","announcement":"In a quarter mile, Keep left to take N-622.","distanceAlongGeometry":399.599},{"ssmlAnnouncement":"Keep left to take N-622, AP-68 toward Bilbao.","announcement":"Keep left to take N-622, AP-68 toward Bilbao.","distanceAlongGeometry":171.111}],"intersections":[{"mapbox_streets_v8":{"class":"motorway_link"},"geometry_index":9711,"admin_index":2,"weight":33.67,"is_urban":false,"location":[-2.694096,42.880317],"stop_sign":true,"out":1,"in":2,"classes":["motorway"],"turn_duration":0.019,"duration":34.553,"bearings":[77,95,259],"entry":[true,true,false]},{"bearings":[144,165,344],"entry":[false,false,true],"in":0,"turn_weight":0.75,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"geometry_index":9734,"location":[-2.694383,42.879629]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"}],"type":"fork","modifier":"left","text":"N-622 / AP-68"},"distanceAlongGeometry":426.266}],"destinations":"AP-68, AP-1: Bilbao, aeroportua, Donostia, San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 05/E 80 toward Bilbao.","modifier":"slight right","bearing_after":95,"bearing_before":79,"location":[-2.694096,42.880317]},"speedLimitSign":"vienna","name":"","weight_typical":54.115,"duration_typical":55.311,"duration":55.311,"distance":426.266,"driving_side":"right","weight":54.115,"mode":"driving","ref":"E 05; E 80","geometry":"yrexpA~{lcDFwI^eG~@uHjAsF|AgFlBsD~BwCrE{C|DcAlD[lFv@pDbBlDbDnClD~A`F|@fFTrFKpIcArG_C~GyApCoC|CwDrC{SbGwr@dPgQjD"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Take exit 6.","announcement":"In a half mile, Take exit 6.","distanceAlongGeometry":1142.722},{"ssmlAnnouncement":"Take exit 6 onto AP-1 toward Etxabarri-Ibiña, Donostia/San Sebastián.","announcement":"Take exit 6 onto AP-1 toward Etxabarri-Ibiña, Donostia/San Sebastián.","distanceAlongGeometry":195.556}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[11,168,347],"duration":12.26,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":11.629,"geometry_index":9737,"location":[-2.694874,42.881083]},{"entry":[false,false,true],"in":1,"bearings":[142,164,348],"duration":1.375,"turn_weight":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":1.797,"geometry_index":9740,"location":[-2.695247,42.882116]},{"entry":[false,true],"bearings":[168,348],"duration":16.758,"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":15.92,"geometry_index":9741,"location":[-2.695274,42.882209]},{"entry":[false,false,true],"in":0,"bearings":[165,169,350],"duration":4.65,"turn_weight":6,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":10.408,"geometry_index":9743,"location":[-2.695663,42.883386]},{"bearings":[167,347],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":9745,"location":[-2.695968,42.884405]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Etxabarri-Ibiña"},{"type":"text","text":"/"},{"type":"text","text":"Donostia/San Sebastián"}],"type":"off ramp","modifier":"right","text":"Etxabarri-Ibiña / Donostia/San Sebastián"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"6"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"off ramp","modifier":"right","text":"Exit 6 AP-1"},"distanceAlongGeometry":1168.389}],"destinations":"N-622, AP-68, AP-1: Bilbao, Aireportua, Donostia/San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take N-622/AP-68/AP-1 toward Bilbao.","modifier":"slight left","bearing_after":347,"bearing_before":348,"location":[-2.694874,42.881083]},"speedLimitSign":"vienna","name":"","weight_typical":68.91,"duration_typical":66.562,"duration":66.562,"distance":1168.389,"driving_side":"right","weight":68.91,"mode":"driving","ref":"N-622; E 05; E 80","geometry":"ubgxpArlncDoLfCcLtC}d@jMyDt@}^bHsh@dNyIpA{s@nOkGrAg|@vSau@dTuo@bTm_@~MuXnKwf@lSih@vUs^nQki@dYu]jR"},{"ref":"E 05; E 80","mode":"driving","weight":71.91,"distance":1189.964,"geometry":"qrzxpAlyvcDir@r]sh@j_@ei@b`@}^xYo[tY{WzWqTdTgz@jy@{[x[eOdOyhAjhA}hAhgAg|@xy@","duration":77.033,"driving_side":"right","duration_typical":77.033,"weight_typical":71.91,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 6 onto AP-1 toward Etxabarri-Ibiña/Donostia/San Sebastián.","modifier":"slight right","bearing_after":336,"bearing_before":335,"location":[-2.699175,42.891065]},"speedLimitUnit":"km/h","destinations":"AP-1, N-624: Etxabarri-Ibiña, Donostia/San Sebastián, Foronda","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Etxabarri-Ibiña"},{"type":"text","text":"/"},{"type":"text","text":"Donostia/San Sebastián"}],"type":"fork","modifier":"right","text":"Etxabarri-Ibiña / Donostia/San Sebastián"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"fork","modifier":"right","text":"AP-1"},"distanceAlongGeometry":1189.964}],"exits":"6","voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 05.","announcement":"In a half mile, Keep right to stay on E 05.","distanceAlongGeometry":1163.297},{"ssmlAnnouncement":"Keep right to stay on E 05, E 80 toward Etxabarri-Ibiña, Donostia/San Sebastián.","announcement":"Keep right to stay on E 05, E 80 toward Etxabarri-Ibiña, Donostia/San Sebastián.","distanceAlongGeometry":222.222}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[155,334,336],"duration":18.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":16.65,"geometry_index":9756,"location":[-2.699175,42.891065]},{"entry":[false,true],"in":0,"bearings":[146,324],"duration":2.475,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":2.352,"geometry_index":9761,"location":[-2.701569,42.894194]},{"entry":[false,true,true],"in":0,"bearings":[144,324,331],"duration":6.514,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":6.182,"geometry_index":9762,"location":[-2.701967,42.894592]},{"entry":[false,true],"in":0,"bearings":[144,324],"duration":18,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":17.1,"geometry_index":9763,"location":[-2.702306,42.894937]},{"entry":[false,true],"in":0,"bearings":[144,324],"duration":8.229,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":7.611,"geometry_index":9764,"location":[-2.70324,42.895885]},{"entry":[false,true],"in":0,"bearings":[144,324],"duration":4.629,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":4.281,"geometry_index":9765,"location":[-2.703701,42.896347]},{"bearings":[144,324],"entry":[false,true],"in":0,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":9766,"location":[-2.70396,42.896606]}]},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep left to take AP-1.","announcement":"In a half mile, Keep left to take AP-1.","distanceAlongGeometry":1105.683},{"ssmlAnnouncement":"Keep left to take AP-1, E 05.","announcement":"Keep left to take AP-1, E 05.","distanceAlongGeometry":160}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[145,322,325],"duration":21.129,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":19.539,"geometry_index":9769,"location":[-2.707232,42.89995]},{"entry":[true,false],"in":1,"bearings":[15,191],"duration":17.48,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":0,"weight":16.168,"geometry_index":9783,"location":[-2.7092,42.9039]},{"bearings":[44,223,229],"entry":[true,false,false],"classes":["motorway"],"in":1,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9794,"location":[-2.706257,42.906728]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight","right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"type":"fork","modifier":"left","text":"AP-1 / E 05"},"distanceAlongGeometry":1132.349}],"destinations":"AP-1, A-3604: Etxabarri-Ibiña, Donostia/San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 05/E 80 toward Etxabarri-Ibiña/Donostia/San Sebastián.","modifier":"slight right","bearing_after":325,"bearing_before":325,"location":[-2.707232,42.89995]},"speedLimitSign":"vienna","name":"","weight_typical":45.615,"duration_typical":48.518,"duration":48.518,"distance":1132.349,"driving_side":"right","weight":45.615,"mode":"driving","ref":"E 05; E 80","geometry":"{}kypA~pfdDy|ArxAmIrGcIzEmKdFiKpDqJhCsIbBiOdBiOz@mKMyIUgL_AmLgB_B_@iJ}B_L_EoIuDyMsGmKsHaLaKcOmPeNkRqRg\\i_@wo@mQeVeOuT{KkOyNmSwPwRaKqKqGcHaS{R"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 27 miles.","announcement":"Continue for 27 miles.","distanceAlongGeometry":43571.539},{"ssmlAnnouncement":"In 1 mile, Keep left to take AP-1.","announcement":"In 1 mile, Keep left to take AP-1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take AP-1.","announcement":"In a half mile, Keep left to take AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take AP-1, AP-8 toward Elgoibar, Donostia/San Sebastián.","announcement":"Keep left to take AP-1, AP-8 toward Elgoibar, Donostia/San Sebastián.","distanceAlongGeometry":204.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.70434,42.908381],"geometry_index":9801,"admin_index":2,"weight":33.396,"is_urban":false,"turn_weight":15,"duration":19.914,"bearings":[30,37,216],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.702212,42.91098],"geometry_index":9805,"admin_index":2,"weight":4.232,"is_urban":false,"turn_weight":0.5,"duration":4.061,"bearings":[28,201,213],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.701843,42.911502],"geometry_index":9807,"admin_index":2,"weight":9.566,"is_urban":false,"turn_weight":6,"duration":3.865,"bearings":[34,207,218],"out":0,"in":1,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":1.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.041,"geometry_index":9809,"location":[-2.7011,42.912281]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,215],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.602,"geometry_index":9810,"location":[-2.700889,42.912502]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,219],"duration":1.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.938,"geometry_index":9813,"location":[-2.70032,42.91303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":0.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.312,"geometry_index":9814,"location":[-2.700103,42.913214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":0.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.797,"geometry_index":9815,"location":[-2.700033,42.913274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,221],"duration":2.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.438,"geometry_index":9816,"location":[-2.699847,42.913432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,224],"duration":1.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.383,"geometry_index":9818,"location":[-2.699337,42.913819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,226],"duration":6.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.605,"geometry_index":9819,"location":[-2.699029,42.91404]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":11.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.561,"geometry_index":9822,"location":[-2.698021,42.914686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":1.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.961,"geometry_index":9823,"location":[-2.697162,42.915165]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.697079,42.915209],"geometry_index":9824,"admin_index":2,"weight":15.961,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":1.066,"bearings":[54,234],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":15.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.68,"geometry_index":9825,"location":[-2.696999,42.915252]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,235],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.111,"geometry_index":9826,"location":[-2.695859,42.915839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":3.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.992,"geometry_index":9828,"location":[-2.695472,42.915999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":40.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":36.227,"geometry_index":9830,"location":[-2.694422,42.916407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":3.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.395,"geometry_index":9843,"location":[-2.680309,42.917953]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":27.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.871,"geometry_index":9845,"location":[-2.678964,42.91804]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":59.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":53.846,"geometry_index":9854,"location":[-2.66925,42.919325]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.713,"geometry_index":9869,"location":[-2.649252,42.924856]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[71,75,252],"duration":11.729,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.83,"geometry_index":9870,"location":[-2.64862,42.925008]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.644658,42.926175],"geometry_index":9875,"admin_index":2,"weight":3.754,"is_urban":false,"turn_weight":1,"duration":3,"bearings":[62,229,245],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,242],"duration":3.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.201,"geometry_index":9876,"location":[-2.643723,42.926539]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":3.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.393,"geometry_index":9878,"location":[-2.642668,42.926989]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,236],"duration":7.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.602,"geometry_index":9880,"location":[-2.64157,42.927519]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":0.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.367,"geometry_index":9883,"location":[-2.639478,42.928708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,230],"duration":2.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.359,"geometry_index":9884,"location":[-2.639369,42.928774]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.904,"geometry_index":9885,"location":[-2.638688,42.92923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,227],"duration":29.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.633,"geometry_index":9886,"location":[-2.63843,42.929408]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[20,204],"duration":23.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.736,"geometry_index":9898,"location":[-2.63281,42.935486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,194],"duration":91.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":82.781,"geometry_index":9901,"location":[-2.630614,42.941003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,224],"duration":3.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.992,"geometry_index":9938,"location":[-2.611965,42.960778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,219],"duration":22.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.443,"geometry_index":9940,"location":[-2.611196,42.961443]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[35,213],"duration":112.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":98.689,"geometry_index":9949,"location":[-2.606885,42.966655]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,205],"duration":23.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.33,"geometry_index":9966,"location":[-2.580207,42.990234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,216],"duration":19.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.572,"geometry_index":9975,"location":[-2.575694,42.995651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":6.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.803,"geometry_index":9985,"location":[-2.572864,43.000623]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,204],"duration":16.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.713,"geometry_index":9988,"location":[-2.571991,43.00227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,232],"duration":3.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.424,"geometry_index":9998,"location":[-2.568215,43.005695]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,239],"duration":16.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.416,"geometry_index":10001,"location":[-2.567056,43.006238]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,248],"duration":31.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.6,"geometry_index":10005,"location":[-2.561585,43.007951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,214],"duration":13.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.959,"geometry_index":10015,"location":[-2.552967,43.013711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,239],"duration":53.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":48.107,"geometry_index":10025,"location":[-2.549428,43.016233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":7.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.301,"geometry_index":10067,"location":[-2.530019,43.018541]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":12.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.867,"geometry_index":10071,"location":[-2.527929,43.02005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,223],"duration":6.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.764,"geometry_index":10075,"location":[-2.524703,43.022662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,239],"duration":5.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.428,"geometry_index":10080,"location":[-2.522923,43.023654]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[70,73,250],"duration":1.057,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.986,"geometry_index":10083,"location":[-2.520981,43.024271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":27.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.127,"geometry_index":10084,"location":[-2.520608,43.024369]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.512587,43.029108],"geometry_index":10099,"admin_index":2,"weight":18.607,"is_urban":false,"turn_weight":1,"duration":18.557,"bearings":[44,221,227],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[1,184],"duration":12.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.518,"geometry_index":10113,"location":[-2.509727,43.033511]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,355],"duration":1.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.535,"geometry_index":10118,"location":[-2.510219,43.036692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,359],"duration":13.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.561,"geometry_index":10119,"location":[-2.510272,43.037123]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.055,"geometry_index":10130,"location":[-2.50931,43.040541]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[31,208],"duration":10.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.652,"geometry_index":10131,"location":[-2.509119,43.040799]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,229],"duration":11.361,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.793,"geometry_index":10136,"location":[-2.506752,43.042858]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":13.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.047,"geometry_index":10143,"location":[-2.503059,43.044334]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":45.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":43.008,"geometry_index":10151,"location":[-2.498832,43.04633]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[43,217],"duration":24.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.52,"geometry_index":10166,"location":[-2.488658,43.055651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":11.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.002,"geometry_index":10171,"location":[-2.48186,43.059722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":1.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.52,"geometry_index":10177,"location":[-2.478725,43.061537]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[38,62,223],"duration":1.225,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.17,"geometry_index":10178,"location":[-2.47835,43.061831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":15.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.885,"geometry_index":10179,"location":[-2.478083,43.062081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,199],"duration":38.443,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":36.496,"geometry_index":10185,"location":[-2.475612,43.065736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,243],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.225,"geometry_index":10201,"location":[-2.470749,43.071121]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[72,79,248],"duration":10.006,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.496,"geometry_index":10203,"location":[-2.469998,43.071352]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.466638,43.07209],"geometry_index":10208,"admin_index":2,"weight":17.207,"is_urban":false,"turn_weight":0.75,"duration":17.814,"bearings":[65,241,248],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[68,249],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.693,"geometry_index":10221,"location":[-2.461152,43.074354]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[68,248],"duration":34.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":31.58,"geometry_index":10222,"location":[-2.460863,43.074438]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.719,"geometry_index":10227,"location":[-2.448238,43.078704]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.836,"geometry_index":10228,"location":[-2.448048,43.078839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,224],"duration":28.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.98,"geometry_index":10229,"location":[-2.446539,43.079986]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[49,232],"duration":12.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.23,"geometry_index":10251,"location":[-2.438737,43.084073]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,211],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.996,"geometry_index":10256,"location":[-2.436021,43.086413]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.133,"geometry_index":10260,"location":[-2.435408,43.087391]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[17,24,203],"duration":0.527,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.461,"geometry_index":10261,"location":[-2.435245,43.087669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":5.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.045,"geometry_index":10262,"location":[-2.435193,43.087791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,192],"duration":11.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.572,"geometry_index":10266,"location":[-2.434727,43.089119]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.434716,43.092042],"geometry_index":10277,"admin_index":2,"weight":6.375,"is_urban":false,"turn_weight":1,"duration":5.83,"bearings":[169,174,354],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,180],"duration":30.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.797,"geometry_index":10280,"location":[-2.434797,43.093505]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,346],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.354,"geometry_index":10294,"location":[-2.43411,43.100908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,346],"duration":20.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":19.324,"geometry_index":10295,"location":[-2.43423,43.101254]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,188],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.535,"geometry_index":10307,"location":[-2.434594,43.106436]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,187],"duration":55.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":54.223,"geometry_index":10308,"location":[-2.434573,43.106567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[190,358],"duration":26.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":25.539,"geometry_index":10316,"location":[-2.427966,43.118812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":11.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.84,"geometry_index":10327,"location":[-2.42763,43.125583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,208],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.738,"geometry_index":10333,"location":[-2.425857,43.128094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,205],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.93,"geometry_index":10334,"location":[-2.425594,43.128504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,201],"duration":10.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.055,"geometry_index":10336,"location":[-2.425352,43.128968]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.684,"geometry_index":10343,"location":[-2.424886,43.131571]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.424899,43.131753],"geometry_index":10345,"admin_index":2,"weight":15.107,"is_urban":false,"turn_weight":1,"duration":14.875,"bearings":[172,177,354],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[179,357],"duration":47.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":44.033,"geometry_index":10350,"location":[-2.425549,43.135268]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":15.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.256,"geometry_index":10355,"location":[-2.428015,43.146279]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,181],"duration":83.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":74.865,"geometry_index":10362,"location":[-2.428501,43.150003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":0.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.674,"geometry_index":10363,"location":[-2.425082,43.171236]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,187],"duration":5.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.367,"geometry_index":10364,"location":[-2.425052,43.171424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,186],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.832,"geometry_index":10365,"location":[-2.424824,43.172892]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[2,186],"duration":25.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.762,"geometry_index":10366,"location":[-2.424756,43.17338]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,333],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.979,"geometry_index":10370,"location":[-2.426471,43.179793]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,336],"duration":11.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.475,"geometry_index":10371,"location":[-2.427308,43.181009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":5.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.076,"geometry_index":10377,"location":[-2.428503,43.183771]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,179],"duration":2.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.49,"geometry_index":10381,"location":[-2.428618,43.185174]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,359],"duration":4.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.977,"geometry_index":10383,"location":[-2.428614,43.185862]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,354],"duration":11.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.379,"geometry_index":10386,"location":[-2.428689,43.186965]},{"bearings":[151,324],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":10394,"location":[-2.429791,43.189702]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Elgoibar"},{"type":"text","text":"/"},{"type":"text","text":"Donostia/San Sebastián"}],"type":"fork","modifier":"left","text":"Elgoibar / Donostia/San Sebastián"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":43598.207}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take AP-1/E 05/E 80.","modifier":"slight left","bearing_after":30,"bearing_before":36,"location":[-2.70434,42.908381]},"speedLimitSign":"vienna","name":"","weight_typical":1456.801,"duration_typical":1538.973,"duration":1538.973,"distance":43598.207,"driving_side":"right","weight":1456.801,"mode":"driving","ref":"AP-1; E 05; E 80","geometry":"yl|ypAf|`dD_d@u\\k]uW}o@wd@cm@{g@gPoKkNqIuRcQ_\\i[yLeLeE{DmNgPkJmKoJqLwBkC{HsJqSyYsBaDyLgRyPyXsK{R}HiP}\\ut@wAeDuA_Duc@gfA}D_MaCeIkSsq@cD_NeWseA{QagAgKcv@iIqx@{Fwt@oCkg@eC_p@sAmv@eAe{@]ss@wBmsEoCo~AMkFeA_d@gBan@}@_[uFk|A}IibBkJs{AyGwz@oKsrAwK_iAmKcbA{@iHuLicAiOmjAeVwaB}Wk_BqSwhAsV_oAka@}jBkTg}@oZmnAog@u}B}TsiAsTslAkRgjAcOubAqSwtAoHof@gKeo@cKkm@sTggAwNko@eJm_@wUmy@cMy`@_Mc_@yKsZiS_h@i]ex@iWih@uRg_@cCyEo[qi@cJcOs_@ij@iTgYw@eAyf@mn@}i@cl@e[aZ{RiQmk@_e@}l@ob@k]{TqZiQal@{Z{iBqs@{hB_h@acCuj@usAkZwhAoXsvAa]kwAi]qvDw~@m`A_YmXwJmYyKeMyFca@yRag@}Zg^uWsOeMsMeLo[wZoc@gg@cRgV_NuRqZ{e@kPeZ{Qc^eNkZaR{d@cTcm@{Tyr@cUsx@qRwt@c\\qpAkNqg@qNkf@aE{LkS_k@kOy]eQ{]oKmRgMcTaSaYiUwYgRiToPsP_WsUmOmLiX_Tm{Bg~Ac_@iYyY}Ts`@w[oXoUgl@ij@}\\i\\ej@qk@oq@_r@}]o^ya@qa@kq@gx@w~AqrB_{AsoB}tVk}[}o@sx@kW{Y_U}Tef@qb@ca@e\\y`@mWqg@uXiv@}^ac@kSq_@wRi_@iVyd@m`@u_@}`@ma@ae@gb@af@ci@ei@c\\gZwRoNqO{JwO_J_QaJq\\yNw`@cPke@_Por@gVkx@_Zop@kVa[qNkXsNy^}SiU}OcRaPwQ}PePgP{NcQk[ob@o]sh@}NcYeMoWqJyTgKcZcIoVe[alAsOgr@sOyx@sl@yzCa[otAk]mmAgXis@oUsh@w^{o@cSiZy`@yh@q_@ka@_dA{aAqaAo|@gZkZkTsUuPoSaNwQmRmYiKkR{JuRoJkTqIkTqIuVsH_WqCoKmGyW{Gm_@aEyWcBgOaCcUyBeXaB{ZaA_[]sWAmZRq[b@aVz@wXrBgf@vDip@pDai@lEkn@xBs]dCeb@pCqi@z@oWx@kYp@cl@Kac@gAkf@sAs[iBuZiDq_@eDuZaHqd@uEyVyFiXsGeWiGyTsFiQqIkVmJwV}Qma@yBeEmSo_@qTea@yUm`@}Yaa@_V}[qj@_w@_aAkoA}_@qe@wSuYgOeXkPa]sIuQqH}QeGkQsKi_@kIy\\qNgz@cEiVwCeQqIoc@oGuXiKs^cJaYmIkTkJmScMyVaP{WwMmRee@mq@mc@}o@g`@an@ea@yo@cf@ay@{Y}b@oOmR}LyMkR{QuNuLyZySoXiNyNmGoRgGaNgEeTuE_RwCcRoByR_A_YYoa@tAq_@fCog@rIg`A~L}YhB_XP_OEiWkAeR_BaZqEiRoEaQwE{OqF_NuFeOcHsO}IcO}Jk`@oZmZgXyV_[gTg^yU}b@mJqRmH{PiNy^qK{\\mJc_@wQez@iLkg@qQgu@iKs`@_Nya@aNm^uOy_@{Nu[_OeXgNkVsa@an@ieAo{Agd@ap@q_@oj@kq@y`AeTiYcRsUsVuX_\\k[m`@y\\eTaPeuAagAw|@gt@u`@c`@g[s\\kq@w_Akq@ogAug@w_Ama@{`AqmA_|Cy\\{z@gUsi@wLuVaMeUwUy`@yIwLkQmVsNuOyQaSgd@ia@kc@w[ig@iXoe@cRex@{Ysd@yKmg@yOoe@sOoTkIePmH}SqLUM_WmQaUsSkWaY{QsViQmZ_Ri_@gJ{UuKm[cHaWuA_FwJ}f@iHof@iL_dAcF_e@kGwc@_GwYgHqZqI{XoKqZaEoKoI}SqOe_@{IgUiMi_@yHkU{HwV{HyXoJsb@yHca@gDaQiuD{nRyKec@oOcg@mVyj@q^al@mG{JufAi}Aye@sn@y^sh@uF_IqJ_QeLkTcKwSw@iBwMo[mCuHyD{KeL{_@qKeb@wFmVqF_VkG_UaEuOwFmQoFsQ}J}XsFiNcKwUaJsR}^mp@o[id@}[__@uY}Xe]aXiHmEuQcKoOeIsOqHkPeIsFgB{Q_GiRyFoRcEiXeFoDi@iBYmXsC{Ki@iESwRa@eRDsRLuS`AmGVqh@rDoVnBkVx@qk@GqVyAaWyDmWiFsWqHis@uV{s@iRej@oHmj@cBkWNsVfAaWlBeX~Dmm@lNo]pIsTnF{D`A_[xG{]vGcUvCcW`CmUdBmW|Ayl@\\em@c@iWsAsXeCaWyCeGi@sq@aGsiAsQq}@mVueAmk@qkGgxEseAko@osAo_@crAgSg^t@e_@zCe|AtP}e@nCef@Ruf@cBkf@}Ek_@yGo^eIgU_IgViJuf@qVyHaFse@}ZkWwQgV}PeTqNsXmOsRcIkH_DeMmEqTaG_UmEek@qFeUy@yTCwOh@kBF_GPc]tCey@hLcx@tNgd@tD_d@f@is@xBe_AxHgoC`a@{xEjn@qpE`z@oe@fJye@vGkd@dEq^jB}Vp@aTJoh@c@anh@utEwJ{@wzAgMo]gC}}A{BalBtSwaBjl@aaB~k@_kAhs@q{@bc@k]nMkOtE{NjDac@vHkLfAcOvAqVrAsU`@kXVaXQ}PHmPHkk@jBcF^kKt@c]dCy\\`G{U|HoRvGi_@zQySbMgBfBiShSg[fYqVf[qR|["},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 27 miles.","announcement":"Continue for 27 miles.","distanceAlongGeometry":42683.871},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on AP-1.","announcement":"In 2 miles, Keep right to stay on AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on AP-1.","announcement":"In a half mile, Keep right to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on AP-1, AP-8 toward Hernani, Pasaia.","announcement":"Keep right to stay on AP-1, AP-8 toward Hernani, Pasaia.","distanceAlongGeometry":293.333}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[133,309,313],"duration":0.324,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":0.277,"geometry_index":10398,"location":[-2.431451,43.191169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":1.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":0.938,"geometry_index":10399,"location":[-2.43153,43.191215]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":5.287,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":4.891,"geometry_index":10400,"location":[-2.431793,43.19137]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,310],"duration":4.051,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":3.746,"geometry_index":10403,"location":[-2.433182,43.192137]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[138,323],"duration":7.896,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":7.502,"geometry_index":10406,"location":[-2.434125,43.192813]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,352],"duration":3.244,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":3.082,"geometry_index":10411,"location":[-2.435115,43.194478]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,182],"duration":5.922,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.627,"geometry_index":10414,"location":[-2.435165,43.195209]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,203],"duration":4.68,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":4.445,"geometry_index":10420,"location":[-2.434687,43.196526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":5.283,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.018,"geometry_index":10422,"location":[-2.434065,43.197345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.433277,43.19841],"geometry_index":10428,"admin_index":2,"weight":50.498,"is_urban":false,"turn_weight":6,"duration":46.848,"bearings":[23,200,211],"out":0,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":16.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.539,"geometry_index":10466,"location":[-2.422052,43.204964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":3.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.787,"geometry_index":10480,"location":[-2.418332,43.207498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,230],"duration":30.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.609,"geometry_index":10485,"location":[-2.417273,43.208005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,253],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.84,"geometry_index":10519,"location":[-2.412128,43.213023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,234],"duration":25.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.232,"geometry_index":10524,"location":[-2.41018,43.213777]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":0.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.572,"geometry_index":10545,"location":[-2.405472,43.21835]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.832,"geometry_index":10546,"location":[-2.405332,43.218432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,230],"duration":3.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.582,"geometry_index":10547,"location":[-2.405111,43.218568]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,222],"duration":11.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.543,"geometry_index":10551,"location":[-2.404229,43.219178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,186],"duration":7.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.98,"geometry_index":10562,"location":[-2.402791,43.221598]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,352],"duration":5.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.289,"geometry_index":10567,"location":[-2.402772,43.223369]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,355],"duration":8.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.391,"geometry_index":10571,"location":[-2.403004,43.224708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,185],"duration":9.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.234,"geometry_index":10578,"location":[-2.402937,43.226842]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,348],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.928,"geometry_index":10584,"location":[-2.403066,43.229249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,347],"duration":2.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.266,"geometry_index":10585,"location":[-2.403135,43.229487]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[165,342,351],"duration":17.113,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.809,"geometry_index":10589,"location":[-2.40334,43.230061]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,194],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.42,"geometry_index":10611,"location":[-2.404501,43.23393]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.404458,43.234032],"geometry_index":10612,"admin_index":2,"weight":12.482,"is_urban":false,"turn_weight":1,"duration":12.422,"bearings":[20,182,197],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":115.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":103.613,"geometry_index":10626,"location":[-2.401901,43.236295]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":9.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.943,"geometry_index":10717,"location":[-2.383562,43.258258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":5.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.51,"geometry_index":10724,"location":[-2.380853,43.259579]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,238],"duration":61.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":55.756,"geometry_index":10727,"location":[-2.379437,43.260211]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,223],"duration":10.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.791,"geometry_index":10773,"location":[-2.368817,43.27108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,218],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.926,"geometry_index":10781,"location":[-2.367168,43.273225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,222],"duration":5.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.326,"geometry_index":10782,"location":[-2.36695,43.273401]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,214],"duration":9.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.416,"geometry_index":10786,"location":[-2.365797,43.274368]},{"tunnel_name":"Istiña","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[27,202],"duration":8.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.9,"geometry_index":10792,"location":[-2.3648,43.276258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,220],"duration":19.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.568,"geometry_index":10796,"location":[-2.363385,43.2779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":13.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.541,"geometry_index":10805,"location":[-2.359618,43.281314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,208],"duration":30.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.594,"geometry_index":10813,"location":[-2.35741,43.284056]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":3.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.441,"geometry_index":10839,"location":[-2.349068,43.285382]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,275],"duration":5.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.357,"geometry_index":10843,"location":[-2.347925,43.285364]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,297],"duration":6.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.385,"geometry_index":10849,"location":[-2.346295,43.284942]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,291],"duration":6.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.461,"geometry_index":10854,"location":[-2.344423,43.284287]},{"tunnel_name":"Itziar","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[92,276],"duration":17.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.506,"geometry_index":10859,"location":[-2.342382,43.283964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,260],"duration":15.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.043,"geometry_index":10862,"location":[-2.336742,43.284336]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":1.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.412,"geometry_index":10869,"location":[-2.331967,43.284581]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[85,94,264],"duration":19.168,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.713,"geometry_index":10870,"location":[-2.331491,43.284617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,281],"duration":76.555,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":70.795,"geometry_index":10885,"location":[-2.325361,43.284356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,323],"duration":94.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.107,"geometry_index":10957,"location":[-2.307863,43.271696]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":1.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.693,"geometry_index":11059,"location":[-2.27719,43.263015]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[62,69,242],"duration":0.301,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.271,"geometry_index":11062,"location":[-2.276518,43.263268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":13.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.539,"geometry_index":11063,"location":[-2.276427,43.263303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.199,"geometry_index":11077,"location":[-2.272696,43.26518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,227],"duration":5.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.324,"geometry_index":11078,"location":[-2.27239,43.265389]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.271157,43.266403],"geometry_index":11085,"admin_index":2,"weight":18.389,"is_urban":false,"turn_weight":0.5,"duration":18.854,"bearings":[35,208,218],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,225],"duration":4.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.172,"geometry_index":11109,"location":[-2.267907,43.269949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,236],"duration":5.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.637,"geometry_index":11114,"location":[-2.26682,43.270559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":5.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.449,"geometry_index":11123,"location":[-2.26515,43.271128]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.791,"geometry_index":11130,"location":[-2.263401,43.271376]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.107,"geometry_index":11132,"location":[-2.262855,43.271402]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.977,"geometry_index":11139,"location":[-2.26101,43.271474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,264],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.107,"geometry_index":11140,"location":[-2.260713,43.271498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,250],"duration":3.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.891,"geometry_index":11149,"location":[-2.25893,43.271837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,241],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.107,"geometry_index":11154,"location":[-2.258149,43.272117]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,225],"duration":3.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.664,"geometry_index":11162,"location":[-2.256684,43.272931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,213],"duration":30.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.396,"geometry_index":11168,"location":[-2.256006,43.273573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":4.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.949,"geometry_index":11208,"location":[-2.250695,43.27775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,274],"duration":81.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":75.387,"geometry_index":11212,"location":[-2.249508,43.277642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,264],"duration":6.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.625,"geometry_index":11268,"location":[-2.2258,43.285149]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,258],"duration":28.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.566,"geometry_index":11271,"location":[-2.223952,43.285393]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,303],"duration":0.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.328,"geometry_index":11290,"location":[-2.216081,43.283262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,303],"duration":16.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.301,"geometry_index":11291,"location":[-2.215991,43.283219]},{"tunnel_name":"Meaga","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[121,305],"duration":18.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.137,"geometry_index":11301,"location":[-2.211892,43.281484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,265],"duration":73.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":67.711,"geometry_index":11305,"location":[-2.20698,43.280608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":64.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":61.449,"geometry_index":11346,"location":[-2.183995,43.281864]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,246],"duration":2.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.832,"geometry_index":11397,"location":[-2.165193,43.279209]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,248],"duration":7.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.273,"geometry_index":11399,"location":[-2.164337,43.279461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,261],"duration":3.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.254,"geometry_index":11404,"location":[-2.162619,43.279757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,267],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3,"geometry_index":11406,"location":[-2.161824,43.279784]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[99,115,272],"duration":7.121,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.934,"geometry_index":11408,"location":[-2.1611,43.279769]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,279],"duration":14.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.543,"geometry_index":11409,"location":[-2.160138,43.279662]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.159098,43.279455],"geometry_index":11410,"admin_index":2,"weight":38.398,"is_urban":false,"toll_collection":{"name":"Zarautz","type":"toll_booth"},"turn_weight":15,"duration":24,"bearings":[101,285],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,272],"duration":10.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.117,"geometry_index":11412,"location":[-2.157391,43.279322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,278],"duration":13.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.355,"geometry_index":11415,"location":[-2.155013,43.279026]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.151401,43.278941],"geometry_index":11423,"admin_index":2,"weight":12.219,"is_urban":false,"turn_weight":0.75,"duration":11.785,"bearings":[85,262,267],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,242],"duration":5.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.996,"geometry_index":11430,"location":[-2.148099,43.279639]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":48.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":45.871,"geometry_index":11434,"location":[-2.146818,43.280357]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,277],"duration":20.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.379,"geometry_index":11465,"location":[-2.133314,43.283056]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,278],"duration":17.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.699,"geometry_index":11469,"location":[-2.126469,43.282331]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,276],"duration":29.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.973,"geometry_index":11482,"location":[-2.119267,43.282257]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.107738,43.282142],"geometry_index":11503,"admin_index":2,"weight":193.625,"is_urban":false,"turn_weight":0.75,"duration":208.535,"bearings":[67,239,251],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"bearings":[105,279],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":11589,"location":[-2.040834,43.292703]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hernani"},{"type":"text","text":"/"},{"type":"text","text":"Pasaia"}],"type":"fork","modifier":"right","text":"Hernani / Pasaia"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":42710.539},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["left","straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Hernani"},{"type":"text","text":"/"},{"type":"text","text":"Pasaia"}],"type":"fork","modifier":"right","text":"Hernani / Pasaia"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"destinations":"AP-1, AP-8: Elgoibar, Donostia/San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take AP-1/AP-8 toward Elgoibar/Donostia/San Sebastián.","modifier":"slight left","bearing_after":309,"bearing_before":313,"location":[-2.431451,43.191169]},"speedLimitSign":"vienna","name":"Iparraldeko autobidea","weight_typical":1552.021,"duration_typical":1639.291,"duration":1639.291,"distance":42710.539,"driving_side":"right","weight":1552.012,"mode":"driving","ref":"AP-1; E 05; E 80","geometry":"awdkqAt|ksC{A|CuHlOmFrKa\\xu@mJjRaEfIeOdW_SnW_JlJcUzPqRxKkTtH_]`IyKjAiKr@qS[iFQuIaAeRkDoNyDiK}DiPcI}c@yYgMaKiE{D_MuJwJuHwKsHmPuJiCUgm@kZeIkEaLeJwM_M_NuOyL}RgIqQaIcTiHkTcFuRuGwUmFaQuEyOwHeQoJyPuIsKiLwMmJeLiOaTmM}SyHmPyFgP_G}QaF_SaEiSmC{LaDcPyE}TeFqVsHmZ_IeWuHuTqHoTeJoTuGyOsIeQkI{OqFmIuCoEaPkTwSkUsQaSqWcZcNyQaDqEqBcDoDkGuEmIiFmLuGsQwI{Y_IyYoF_RwE}NcGcO{DiImByC}BoD{FeIkFwF{H}FcJyFmJiF{HwC{F_BiIcBoKcAeMo@o[]sMScKm@uMaBkK{BuGwBoJ{DsFqCyHsFuJyI{GiHyHyKgGaKqHoQwEyMoDaNuCcPyBwPuCuZiAoL}Dgb@uAaKwAaK}EqY}FuVwIm[uFoOyLqYeQg\\iLmOmJiLuIiIuK_K_LoIyMqIwQsJec@kTuHkEwHeEyI{FaJeGcJeIiI}H{LkNoOwTkK}PgHwNcKoT{HyPcDwGoGyLqJoQ_HoLsJgO}D{EaGiHwNwOuJ_IgOmLyHoEiN}GkNaG{L}DoOiDmO}BeKu@aRiB{SM_WKgW`@oUz@kZhDuZzC}Q`BuHf@kLt@iWZwQJmP@eViA}Q}AkP}@}c@qAqb@M{\\dA}YtCgQjB{AX{MhCcJjBkKxCyCx@qFxAeZzJsTjKcSxIkDlBcFpCoSlK{IfEyAr@oCz@sK~DgIbCoI|B}DZsCTkH\\uJd@_JImF]iJ]wJ_B}IoBgCw@kEuAmGyBgMcGgH}DcH_GgG_F_F_FgFkFmIyJ{J}M_MqR{MsUkHqMoIcPyE}JyE}JiJ}RoIyRsJmTqKeUmKcRaJqMkFsG{F}FmHcHwIeGcLiG{MoFsMkDkLeBiNw@iKMwNj@sNlByPlDuP~C}KvBwMnAeKb@cJIsJg@}Iy@kQeEsP_HsMmIcKcIiKcKoOgTuZmg@mQ_YqOwTyZw_@yTcUwPkOcQmNaQuLqNgJe]yQqPgHeLkE}SyG}V{GsXiGmXuGiVwGwWsK{MiIuNyKoMiLiOuPcTiZqXkg@mJeR_KiO}MqPiHiHmHeGmImFcI_EsHqCuHuCeIcBeMkB{Im@uLOyLV}d@nAmMQmOcAgWcGwJiE}JaF}JcHoHyGoSkUeLuSyGeOcKy\\kGs[mFg`@yE{^uFi\\}Kmd@yMg`@uWmk@eN}YuBqEgL{VqN}[{Lc[iIkUiKe^qLg[cQ}g@sJ{XwHuToIcRgNqX{MyTaL}PwIwLqJeLuI_K_JsJiSiSmM}LeOeOeQaUaHoMqIyR_IiXmEeOiDkNuGgW}G_ToJeVkK{SuMuTsSsV}MiMiPiMuPsJiOmHyOgGoRaFiP}CeYqC_Sq@qXAqTNgOKwRuAqR_EaR{G}P_MiM{KyUo]_KuR{JgSoN{V}FyIcC{CyD}EyI_JmN_LaWoMu`@aRmWsPwOcPaByB_JsLwUu]cLgOkJ}KeLeKmK_HoJ}EiQaHc\\gLoZeLgR{Ika@qWiZ}SuVyUgPcSaHkHuQkRiWkYm]m`@qj@op@gToW{UmXsQaTqWkYiXwW{UySeQwNiWmRsT}NqUiNiOqJeSmMoOkKuR{OcS_SyR}WiNaV{FyKyGkPeEoM{C{N}C{PuB}RkAuRa@{REcVbAgVdCgWjC}OdF_VfEeQzG{WpDsRzCyR~AsPpAaWHeTWg]OqSAgSTmS^eIZqGzAwPnBsOnEkUnDiPbFgRzJ}]fFeRvGwWtGmYjCuNlA{GlF{_@fCoWlBuZrAs`@zAy{A_FkgBcRizCiAs|@o@ob@{@ie@cAig@eAyc@gBgp@aAsc@gAw\\sAwk@i@mi@IiZHq]Z_`@XyNf@wY\\uPh@sOVyHjBs_@|AkWt@uNxAySnB{WdCoYnCgWfDwZhDqVpCqRnCkR|C}SlFg[~Gu^bDoOnIo`@xCiM`H{XbGwTjFwQxL{`@vImXnRkj@tYcx@tDwJzHeTnJsWjKgYzGkSnGiSbEaMdIuTtJyUvJaTrGgMfHsM`JyNbGkJ|DoFrEgG`FkGpHmJpOoPfN{MjM}KnKiIhKqHlJyFdMqHfIsElHqDrI}DhGuClLeFxLyEvJiDfLcErKqDxJyCtKcDfKwC~NaE`R}EnNuDdOgE|LwDzLeEvNsFdK{EfJuExL{GtLyHbLsHbRkOnImHvIoIjJwJ|KiMvIwK|JeN~GsK|FaJfGgKdHwMnIePzHiPrJoSvJsSpJyRtJiSnHyNhIyO`Ri^~IiPfJ{PxJkQxNcWlRs\\dN{TxEaIlEgH`IkMvMwTlG}J|I}OdHgM~G_NxG}MdH{OxFgNnHqQlIcUrHgSfFmNrEsLzGeQtHmRdIuQfJwRdHqMtHuM|IcNhQyUlIaKlLqMdLyKrJyIhKcJ`KqIxLeKlKyI|LaL|HqIjKaMzFqHvE_HtF{ItGqLdFaKxEkKzFyNdDoJzF{PhMkc@pGuUpFcTnF_UzGqY`DgQfEwRfDmQjEa[hD}[hCkd@b@_VHg^o@_XKyD}Am[{D{`@}D}WiDyScFyR{FeTkH{TaImTwMkZqJiRwMyU_PoWcVsa@uMkU}NsYqRmc@wMq]yHoUyFyQgGuSwCoKqAwE{EyQkEmOeAuD_EsNwCgK{FyReE_NiEgM}EmNiFqNkF{MaFqL{G{OsIcRsMyWmI_P}K_RaLcReKeOwGuJ_GyIyF{GwEgGcEqEwLuMgDwCgEcE{HwG{LeKaL}IaGgE{G}EcEyC}F}DuGwEgRkMoLuIoKeIkIqG{DaDaGaFkGaGmGgGgFqFsFgG{HwJqGuI{D_GaGeJkHgMeHuNcGyMyDiJsD{JkD{JaCwHkBqGeBqGcCeJqBaJgBwIyDsSyA_KeAiHoCsTkAcNcAgN}@qOk@kN_@aO[}MWeREaDOgIQ}POcTWmUa@}S]qPo@qQm@}Lo@}K{@{JiAmMgAqJqBcOsAqHgCcOk@{CaAeFuB{IyBcJiCeJsBmGwCaJ{D_LaEoK}DaJ{EqJqH}NyFcJ_CiDmBqCoFcH_FoFqGuGoFeFcEiDoEgD}DqCoEmCeFsCwE}BuJyDsHaCsHwBqEiA}JeBsGoAuGcAkHkAcIoAoKmByEkAeHgByGgC}GyCuHqE{DoCaHyFeG_GwGqGaKwOkJkQmHeQwG_TuBiJ}AyJgAeImAeK}@yJi@kJ[gMM}K@_KNaL`@yLv@{Pj@gKz@cPpA}X\\{Qv@m]Xc]Yw\\k@}\\y@cZ}Am\\aBaYeBeVuBkXeDg\\sDe]iFk`@mFa]_Ge^yGs\\sHs]eIoZuHiUyK{YwMkZiMmTmI_N{MyRcM_Qca@wd@qD}DeFwF{VqXwA}AmX_[mXo]mMiQqOwUsPaZ}JiSgJkSwLuZyMw_@oIuY{HgYsJge@eGw\\aHef@eDaYcCyYoBcY}Ac[iA}`@a@eWc@sf@G}b@Y{Zq@kb@m@uRiAe_@a@}LeCgb@{Csf@eEsg@}Dka@oCs\\qBwa@i@yb@d@iW~@eWfDga@jFu_@jF_W~EiRnHaUrL}XjGgMvHaNpHuLn\\eg@lMgUbKiTlJ{VtAsDnGmUlI__@dHi^bDiNbFuR~GcUrHaS|HwQdYyo@hLuXtYe|@tXklAlFkuAaDaqAqEeo@oIkx@kDsX}Eyb@cImcA}Bcf@u@m_@q@av@Fax@Rcj@h@_j@tAas@lAsd@xBsh@bBy_@fC}g@tA}_@l@i_@@o_@Y{[aA}^wCgo@mCsf@mAa^q@k^Ss^b@c`@RkNf@sRzAyb@~@u_@VkUMiXa@cUyAiWyBiVsC{TgE}VcEkRyNen@oDiReBiJyE{YyAwMqA_Py@qOy@wTU{YXyPn@}U`Cg^zCoWfFwZvCuOzEcRtIuV`DmJzPw\\`Vi`@rTs[tO_XnQ}\\`LgVfKiVvGsQzFkQhIqZhJy^jEeUbFcZpDuWtCaYrBeUdAoNvA}Uz@mV|@q_@@k]AsP]aXs@eTy@}T}AaVqBgWeCsT{@{Hk@kFuDsWsCqQcAyEwQu{@eGoXo@sCgM{o@iDeX{BiS}AsPoBwR{AoWYyU[{YEyEb@me@tEc{@|K_`AbFcq@d@qw@~HqiA~Dmp@nAsWz@eUv@eVt@mXn@yf@LoYCw]Q{Zg@_]w@k[gCif@mEud@wCuScDgSeJaa@cI_Y_G}OuF{NwJmSmPyY{AkCkKoOeBsBkLgNaViViCiCqRmRs\\u^kMgSgLoSkHyOsKaZsF}RgEwQiGm]kEk]uBe\\q@cUQgZl@a[nB}_@|ImqAjBob@b@m^OqZqAy}@Suc@Ja\\`@u\\`Ag[nBke@vHcvAlOa}CxEacAhKqqBjF_lAjBsd@tAka@Fke@Mc\\}@me@}@}ZiBs]iAk]}@c]EmW^aY~@sXbD{]rGoc@nIm_@fHeYrFaUlGyX~Fs]hEu]nBgYzAcXZ_SNcc@gAck@c@gPIuDkCgf@gCq`@e@cGeCmZaF}g@uf@o`Dck@cqCiTacB_Po|@_i@upByYchAe^axB}Joi@c_@ejA_d@mpAyGoYqFu[mCqWuAmTiA}XUaXZq[vAk^|Bs^~Cwd@lB{d@Xgd@m@aXaBa`@iCmYwDqX_FkW}Nav@aImb@iHaf@cI}p@oHwt@yGqt@}KkhA}OmbAiLgl@gUibAcsAydEoNan@y\\yeBcYwaC{MaiAaYc}AiQeu@cg@qwAqn@cvAwWym@kKaZkKy_@oI_b@uEi[g@iDsFcn@iAmVwAk`@v@wp@xAml@lAw[xAq`@~@mf@Cw]a@c_@aBw{@Rud@nAcYjDc[jF}ZlIeZjTeo@bHmVbH{Z|DwZ`Ca[bAeZa@qf@yB}v@y@}]v@uk@fCo[|Fae@nLql@pB_K~Ioc@hG{d@nCeh@rEsz@rEez@vFqf@pGs_@lL{_@`Wkg@jUiYrWcT"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 9 miles.","announcement":"Continue for 9 miles.","distanceAlongGeometry":13982.947},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on AP-1.","announcement":"In 2 miles, Keep left to stay on AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on AP-1.","announcement":"In a half mile, Keep left to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on AP-1, AP-8.","announcement":"Keep left to stay on AP-1, AP-8.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[-2.037748,43.29109],"geometry_index":11595,"admin_index":2,"weight":9.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.604,"bearings":[153,160,328],"out":1,"in":2,"turn_duration":0.015,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,349],"duration":25.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.105,"geometry_index":11600,"location":[-2.036952,43.288819]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[111,295],"duration":10.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.445,"geometry_index":11611,"location":[-2.031084,43.284634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,293],"duration":32.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":33.281,"geometry_index":11614,"location":[-2.027705,43.283626]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,289],"duration":14.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.188,"geometry_index":11630,"location":[-2.018552,43.279094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":6.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.707,"geometry_index":11637,"location":[-2.013827,43.277394]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.011725,43.276651],"geometry_index":11640,"admin_index":2,"weight":55.391,"is_urban":false,"turn_weight":1,"duration":53.094,"bearings":[110,286,295],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,244],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.445,"geometry_index":11659,"location":[-1.993589,43.277985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":17.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.16,"geometry_index":11660,"location":[-1.993138,43.27814]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[85,265],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.195,"geometry_index":11668,"location":[-1.987315,43.279261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,265],"duration":7.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.059,"geometry_index":11669,"location":[-1.986564,43.279313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,276],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.352,"geometry_index":11672,"location":[-1.984123,43.279286]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[96,101,276],"duration":2.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.41,"geometry_index":11673,"location":[-1.983663,43.279253]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,278],"duration":23.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.332,"geometry_index":11675,"location":[-1.982851,43.279181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,286],"duration":9.701,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.18,"geometry_index":11682,"location":[-1.974897,43.277687]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[101,285],"duration":5.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.535,"geometry_index":11685,"location":[-1.971665,43.277034]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,281],"duration":11.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.012,"geometry_index":11686,"location":[-1.969911,43.276784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":8.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.922,"geometry_index":11692,"location":[-1.966014,43.277135]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":4.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.266,"geometry_index":11696,"location":[-1.963508,43.27816]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[36,41,223],"duration":0.441,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.438,"geometry_index":11698,"location":[-1.96253,43.278892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":10.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.449,"geometry_index":11699,"location":[-1.962442,43.278981]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.960341,43.281356],"geometry_index":11705,"admin_index":2,"weight":3.652,"is_urban":false,"turn_weight":1,"duration":2.533,"bearings":[30,207,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,213],"duration":4.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.543,"geometry_index":11708,"location":[-1.959869,43.281915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,216],"duration":7.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.82,"geometry_index":11710,"location":[-1.958998,43.282846]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.957289,43.284245],"geometry_index":11716,"admin_index":2,"weight":3.469,"is_urban":false,"turn_weight":1,"duration":2.371,"bearings":[47,220,227],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":2.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.77,"geometry_index":11718,"location":[-1.956692,43.284648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,229],"duration":34.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":35.824,"geometry_index":11720,"location":[-1.956002,43.285088]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":12.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.547,"geometry_index":11735,"location":[-1.94466,43.288337]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[90,268],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.039,"geometry_index":11742,"location":[-1.940374,43.288803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":12.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.664,"geometry_index":11746,"location":[-1.935491,43.288627]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[121,297],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.863,"geometry_index":11753,"location":[-1.930438,43.287489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,305],"duration":1.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.383,"geometry_index":11756,"location":[-1.928693,43.286686]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":2.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.836,"geometry_index":11757,"location":[-1.928301,43.28648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":0.27,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.242,"geometry_index":11759,"location":[-1.927504,43.286056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.695,"geometry_index":11760,"location":[-1.927435,43.286019]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":2.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.156,"geometry_index":11761,"location":[-1.927241,43.285915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,308],"duration":16.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.375,"geometry_index":11763,"location":[-1.926638,43.285577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,289],"duration":8.395,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.957,"geometry_index":11771,"location":[-1.921711,43.283686]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[97,278],"duration":17.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.742,"geometry_index":11777,"location":[-1.918885,43.28324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,255],"duration":11.225,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.664,"geometry_index":11785,"location":[-1.912604,43.283601]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":52.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.5,"geometry_index":11790,"location":[-1.908757,43.284853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,190],"duration":7.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.086,"geometry_index":11811,"location":[-1.901205,43.297432]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,210],"duration":4.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.355,"geometry_index":11815,"location":[-1.900061,43.299417]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"bearings":[42,223],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":11817,"location":[-1.899108,43.300252]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":14022.947},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"destinations":"AP-1, AP-8, E-5, E-70, E-80: Hernani, Pasaia, Irun, Baiona, Bordeaux","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on AP-1/AP-8/E 05/E 70 toward Hernani/Pasaia/Irun/Baiona.","modifier":"slight right","bearing_after":160,"bearing_before":148,"location":[-2.037748,43.29109]},"speedLimitSign":"vienna","name":"","weight_typical":508.268,"duration_typical":487.973,"duration":487.973,"distance":14022.947,"driving_side":"right","weight":508.258,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"c|gqqAf~j{Bv`@}OjP{E`SyEjGgAj}@{Ork@wNxb@qTr[iUnc@ie@rRa[`MsVbIyQpRwh@bRgs@~Psx@nNum@hSmhAfQcz@lWsmArK_a@fOqc@`Sse@|Uif@di@ww@`n@uy@rSy\\vPo\\rK_WlKoY`Ku\\bE{OdEgRfFaXhEiWvScrAxOo|@rHa`@nG{YvKmb@v]idAvKo[`Nsg@hPin@hNcj@xL}g@bPo~@tFk^bLw{@bMurAzHqnBhA_y@m@gqAcCmcAsDo}@_Fmw@cCmZiEgc@_Foc@oFs`@kG{`@}Lor@cOoq@aRau@_n@gbCuHe[{EqSaKag@yKyq@mK{s@gHus@cFil@cE}s@kBuo@gB}m@m@ap@`@gjA`Ag[`Aw[z@oXrAgX~Cun@|LcnApQ}|ArOgrAtKa_AtF_d@zQa{A~S{hBnMycAhDiZrNslBt@wk@[mh@iBao@aCa^_Ds\\kIso@oIck@cU_{@{Sqd@qI}MuPyWa[ic@qDoDyRoRcPsQgQaPa^yYcX_Sad@i\\sGyE}IwGkN}Lo^oZuY}YqJ_KmJoK{NkPcPaUsPoUyLkS{JoPiLyR{AiCsWye@kO{YiRsb@kRye@wNsb@mIgXiUo{@eNcm@cLem@uKcq@cKky@mHst@gJoaAoHm|@wJgkAmCqZ}Nu_B}Deh@yBuc@KyD_A{\\_@_w@As@NepAn@s~@|AwgA`EsvAjAci@tCoj@dEuf@~Eib@`Iqd@bQow@tUc|@dSyl@dN_a@xMg\\zKoWfN{[fJ}ShAiCnEcKnF_MrLuV|EaKrOq^nPmc@tRel@zR_q@bPov@dJuf@fHod@xFq^vIm|@vAiUvAwTVaG`Bo^tBwj@|@gr@Kar@Qia@kBkq@aDwo@}Gu|@{Hkr@eCiRkSenAkS_`A_S_o@iL}[_HqRsTqk@_[yp@}n@}bAym@qy@ey@{z@id@{_@co@ec@iV}MedAqa@il@aR{]_Gw[qEoi@{G{d@}Caa@a@cd@~A}a@Tid@Lob@e@m_@qFcd@qLa_@{OoVmOk^sWwYwYmXy_@yj@kt@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":5522.24},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 05.","announcement":"In 1 mile, Keep left to stay on E 05.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 05.","announcement":"In a half mile, Keep left to stay on E 05.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 05, E 70.","announcement":"Keep left to stay on E 05, E 70.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[-1.898254,43.300953],"geometry_index":11818,"admin_index":2,"weight":16.449,"is_urban":false,"turn_weight":15,"duration":1.426,"bearings":[30,37,222],"out":0,"in":2,"turn_duration":0.045,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":7.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.211,"geometry_index":11819,"location":[-1.898022,43.301249]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":0.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":0.195,"geometry_index":11824,"location":[-1.896763,43.302943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,212],"duration":4.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":4.457,"geometry_index":11825,"location":[-1.896729,43.302982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":8.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":8.625,"geometry_index":11828,"location":[-1.895784,43.303736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,255],"duration":7.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":7.996,"geometry_index":11841,"location":[-1.893548,43.304558]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.891316,43.304986],"geometry_index":11847,"admin_index":2,"weight":6.457,"is_urban":true,"turn_weight":1,"duration":5.086,"bearings":[69,245,252],"out":0,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":16.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":17.223,"geometry_index":11852,"location":[-1.889785,43.305572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":4.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.188,"geometry_index":11862,"location":[-1.88507,43.30746]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":3.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.93,"geometry_index":11868,"location":[-1.883349,43.307398]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.246,"geometry_index":11871,"location":[-1.882083,43.307164]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.922,"geometry_index":11872,"location":[-1.881699,43.307072]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.09,"geometry_index":11879,"location":[-1.879459,43.306827]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,267],"duration":14.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.23,"geometry_index":11880,"location":[-1.879113,43.306841]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,213],"duration":2.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.715,"geometry_index":11892,"location":[-1.874889,43.308813]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":59.684,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":59.676,"geometry_index":11895,"location":[-1.87448,43.309417]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[87,94,264],"duration":25.578,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.934,"geometry_index":11938,"location":[-1.857274,43.316725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,251],"duration":16.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.777,"geometry_index":11971,"location":[-1.849028,43.317468]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.843762,43.317117],"geometry_index":11992,"admin_index":2,"weight":5.008,"is_urban":false,"turn_weight":1,"duration":4.131,"bearings":[99,272,282],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":3.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.852,"geometry_index":11997,"location":[-1.842478,43.317035]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,259],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.512,"geometry_index":12002,"location":[-1.841245,43.317133]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,249],"duration":0.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.457,"geometry_index":12007,"location":[-1.84016,43.317385]},{"bearings":[65,247],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":12008,"location":[-1.840048,43.31742]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E70","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 70"}],"type":"fork","modifier":"left","text":"E 05 / E 70"},"distanceAlongGeometry":5562.24}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on AP-1/AP-8/E 05/E 70.","modifier":"slight left","bearing_after":30,"bearing_before":42,"location":[-1.898254,43.300953]},"speedLimitSign":"vienna","name":"","weight_typical":222.287,"duration_typical":201.963,"duration":201.963,"distance":5562.24,"driving_side":"right","weight":222.293,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"qd{qqAzozrBoQoMuZuTch@_Z{RaNaDmCcKoImAcAkQiRyQqV}HeOgGcMyEkK{DaKiDgKiBuGkAiE_DkN[_BsBgK_C_NmBsMy@}HUwBcBcT}Bg]u@sIuBoVsD_[uG_YiD{Q{DaRiGuT_JsWcEmJ}F{MkYyh@_KyQaKmTaQea@sLa_@gJca@}Gka@wDgb@_AwZk@_UKqNTyO^kS`AeQz@sMtAsSlE{b@nDsUvD_W|Eu^vCk\\hAcR^mORaMLgQWaJ[sTkAuScBcToCsVwH{c@oGmVuFcRiO{_@wKqSiJwNuMoQwPmQoM_LqIeGkK{GyMoGwNyGaMiFqOeH{TeKcOsHuRqLuPoLaOwKqNoMkQsP}O_Q{R{UwRyX}NsVmKgS{IeQuKmWuNe^cJaYsKu_@_HcXkIm`@gGu_@iFw^{Esd@wDuh@mBoe@o@oe@k@ia@o@}c@s@oUwAk^{BkWaEc[}EqYiH}[iHqYeJc_@eI}\\qHkb@eD_YoCaa@e@uOYeSGe[BqMPiI^uLx@{NjAqTv@mNdAqPn@_Mn@mM`@oKPsNNwPFyKIgKGuHc@kLc@oIg@aIs@}IcAmL}AyNcBuMmD_TeDaQiCqMkDoOcDcNsDoPwCcOsD_SgDgTaCeRwAuNcAsNi@wN]{POkNCaPN}M`@kPbAgQfAeNlAiOhBkQzAqMhByM`AkGpA_LlBwOzAqMnAmMlAsNdAaQp@{N^mNLsRAgJAqIImMw@}RiA}Su@eJW}CiBaPiB{NoBuK{CgPeA_FaByHuDwN}FiU"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 24 miles.","announcement":"Continue for 24 miles.","distanceAlongGeometry":38839.867},{"ssmlAnnouncement":"In 2 miles, Take exit A64.","announcement":"In 2 miles, Take exit A64.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit A64.","announcement":"In a half mile, Take exit A64.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit A64 onto E 80 toward Toulouse, Pau.","announcement":"Take exit A64 onto E 80 toward Toulouse, Pau.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[63,68,244],"duration":31.178,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.379,"geometry_index":12011,"location":[-1.839282,43.317687]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.836409,43.318491],"geometry_index":12017,"admin_index":2,"weight":49.207,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":35.086,"bearings":[83,256],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[61,237,245],"duration":62.395,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":62.371,"geometry_index":12029,"location":[-1.829038,43.319712]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,255],"duration":0.609,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.602,"geometry_index":12076,"location":[-1.80689,43.327858]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":14.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.797,"geometry_index":12077,"location":[-1.8067,43.327899]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,237],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.012,"geometry_index":12089,"location":[-1.802575,43.329731]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":133.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":136.492,"geometry_index":12092,"location":[-1.801438,43.330156]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[73,80,255],"duration":0.561,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.539,"geometry_index":12192,"location":[-1.759315,43.338257]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":7.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.98,"geometry_index":12193,"location":[-1.759179,43.338288]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.756041,43.338985],"geometry_index":12200,"admin_index":2,"weight":2.289,"is_urban":false,"turn_weight":1.2,"duration":1.111,"bearings":[70,244,253],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.617,"geometry_index":12201,"location":[-1.755778,43.339054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,250],"duration":2.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.457,"geometry_index":12202,"location":[-1.755626,43.339094]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.168,"geometry_index":12203,"location":[-1.755118,43.339217]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,253],"duration":0.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.73,"geometry_index":12204,"location":[-1.754836,43.339278]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,254],"duration":1.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.527,"geometry_index":12205,"location":[-1.754659,43.339316]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":1.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.184,"geometry_index":12206,"location":[-1.754332,43.33939]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":3.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.547,"geometry_index":12207,"location":[-1.754062,43.339452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":3.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.148,"geometry_index":12208,"location":[-1.753254,43.339637]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":2.756,"turn_weight":3775.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3778.309,"geometry_index":12209,"location":[-1.752588,43.339785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":2.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.773,"geometry_index":12210,"location":[-1.752011,43.339917]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.751453,43.340041],"geometry_index":12211,"admin_index":3,"weight":31.848,"is_urban":false,"turn_weight":15,"duration":17.322,"bearings":[62,82,253],"out":0,"in":2,"turn_duration":0.041,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,237],"duration":2.625,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.535,"geometry_index":12214,"location":[-1.74968,43.34083]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.742,"geometry_index":12215,"location":[-1.749552,43.340897]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.749389,43.340984],"geometry_index":12216,"admin_index":3,"weight":18.512,"is_urban":false,"toll_collection":{"name":"Péage de Biriatou","type":"toll_booth"},"turn_weight":15,"duration":3.6,"bearings":[58,234],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":7.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.375,"geometry_index":12217,"location":[-1.749237,43.341053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,275],"duration":1.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.559,"geometry_index":12223,"location":[-1.746806,43.341417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,276],"duration":171.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":163.297,"geometry_index":12225,"location":[-1.746265,43.34138]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[75,83,263],"duration":26.566,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":25.207,"geometry_index":12266,"location":[-1.701389,43.358581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":3.789,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.578,"geometry_index":12273,"location":[-1.692706,43.361828]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,231],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.129,"geometry_index":12275,"location":[-1.691633,43.362458]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":39.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":38.707,"geometry_index":12276,"location":[-1.691315,43.362668]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,234],"duration":2.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.113,"geometry_index":12283,"location":[-1.680564,43.370095]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[58,63,236],"duration":26.441,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":26.434,"geometry_index":12284,"location":[-1.679911,43.370418]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.671706,43.373519],"geometry_index":12290,"admin_index":3,"weight":91.164,"is_urban":false,"turn_weight":1,"duration":90.184,"bearings":[64,241,244],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":3.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.969,"geometry_index":12318,"location":[-1.644249,43.381833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,193],"duration":55.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":55.324,"geometry_index":12319,"location":[-1.643929,43.382866]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,184],"duration":1.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.984,"geometry_index":12332,"location":[-1.637099,43.396489]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,186],"duration":4.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.652,"geometry_index":12333,"location":[-1.637027,43.39702]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[15,18,190],"duration":33.844,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":32.988,"geometry_index":12335,"location":[-1.636765,43.398236]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.62934,43.405322],"geometry_index":12345,"admin_index":3,"weight":76.277,"is_urban":false,"turn_weight":0.5,"duration":79.773,"bearings":[55,231,234],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"tunnel_name":"Tranchée couverte de Guéthary","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[52,235],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.355,"geometry_index":12370,"location":[-1.604797,43.417046]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,232],"duration":9.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.453,"geometry_index":12371,"location":[-1.603817,43.417608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,221],"duration":3.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.047,"geometry_index":12374,"location":[-1.601028,43.419433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,215],"duration":0.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.219,"geometry_index":12376,"location":[-1.600286,43.420126]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[37,45,214],"duration":27.309,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":25.934,"geometry_index":12377,"location":[-1.600237,43.420178]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.5931,43.425325],"geometry_index":12388,"admin_index":3,"weight":46.18,"is_urban":false,"turn_weight":1,"duration":46.355,"bearings":[54,232,234],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,243],"duration":34.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":33.496,"geometry_index":12397,"location":[-1.584329,43.430258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,244],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.723,"geometry_index":12402,"location":[-1.576626,43.432419]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,238],"duration":68.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":66.59,"geometry_index":12403,"location":[-1.576093,43.432659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":2.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.629,"geometry_index":12426,"location":[-1.562435,43.447265]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,239],"duration":4.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.465,"geometry_index":12428,"location":[-1.56165,43.447643]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,247],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.469,"geometry_index":12431,"location":[-1.560219,43.44815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,258],"duration":4.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.293,"geometry_index":12435,"location":[-1.55835,43.448553]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[88,100,262],"duration":5.336,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.324,"geometry_index":12436,"location":[-1.556832,43.448703]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,271],"duration":15.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.75,"geometry_index":12438,"location":[-1.555952,43.448718]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.553389,43.448399],"geometry_index":12440,"admin_index":3,"weight":36.645,"is_urban":false,"toll_collection":{"name":"Péage de La Négresse","type":"toll_booth"},"turn_weight":15,"duration":22.199,"bearings":[98,281],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.549761,43.448079],"geometry_index":12444,"admin_index":3,"weight":13.605,"is_urban":false,"turn_weight":0.5,"duration":13.461,"bearings":[102,275,282],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":126.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":123.266,"geometry_index":12446,"location":[-1.545713,43.447407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,276],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.746,"geometry_index":12491,"location":[-1.505063,43.461282]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-1.504009,43.461212],"geometry_index":12492,"admin_index":3,"weight":11.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.715,"bearings":[96,113,275],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.500046,43.460885],"geometry_index":12494,"admin_index":3,"weight":7.625,"is_urban":false,"turn_weight":0.5,"duration":7.332,"bearings":[95,269,277],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,269],"duration":3.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.301,"geometry_index":12497,"location":[-1.497536,43.460781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,264],"duration":1.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.703,"geometry_index":12499,"location":[-1.496369,43.460859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,259],"duration":39.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":38.031,"geometry_index":12500,"location":[-1.495775,43.460941]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":3.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.34,"geometry_index":12509,"location":[-1.483419,43.465315]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":32.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":31.453,"geometry_index":12510,"location":[-1.482428,43.465831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,260],"duration":3.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.305,"geometry_index":12515,"location":[-1.472483,43.469703]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":2.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.238,"geometry_index":12517,"location":[-1.471306,43.469805]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":2.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.168,"geometry_index":12518,"location":[-1.470501,43.469846]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":23.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":22.797,"geometry_index":12519,"location":[-1.46972,43.469877]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.641,"geometry_index":12531,"location":[-1.462417,43.472278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,227],"duration":15.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.637,"geometry_index":12532,"location":[-1.462256,43.472386]},{"bearings":[77,257],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"geometry_index":12549,"location":[-1.457591,43.474131]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Toulouse"},{"type":"text","text":"/"},{"type":"text","text":"Pau"}],"type":"off ramp","modifier":"right","text":"Toulouse / Pau"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"A64"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"off ramp","modifier":"right","text":"Exit A64 E 80"},"distanceAlongGeometry":38866.535}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 05/E 70.","modifier":"slight left","bearing_after":63,"bearing_before":64,"location":[-1.839282,43.317687]},"speedLimitSign":"vienna","name":"","weight_typical":1484.416,"duration_typical":1448.1,"duration":1448.1,"distance":38866.535,"driving_side":"right","weight":5259.969,"mode":"driving","ref":"E 05; E 70","geometry":"mz{rqAbjgoBiKi`@aLq`@wFo[eEcYeCyRwEge@kAuYmAsd@uHgz@sFgv@qIckAeJycAiAkKkCgWuEwb@eDySsD}RgGyVkGsSmGsR}FuNgHeOaHoMgHkLqGqJaMyO_K{KuSwRem@_k@iSaViQaVqRy[iS}c@yHeUaKs\\oJec@qJ{m@mHon@}Iit@gIqm@iJci@sL{j@GWuHu[aHaWmIiY{FgPiKkYuD_K}Q_f@mVap@aKc\\gIo[uH{\\eJuh@yCiViGgj@_Dsi@aAsd@a@ki@o@yg@Yq\\eB_c@qDya@cBaOqA{Jo@_FwEkXuEmToIqZuD_LqCmI_GoOoLeX_MmX_MkYmNw\\{Lw\\cIyWkLqc@aBuHsBkJeFyU{EuWuC_RwAeK}AiL}@_Io@mF}BcXeBaYiBkb@{@y[WsYMg]Vy^z@c`@xBug@dGmx@rDqf@`Dgg@t@mb@Ag\\_@_ZuAc]}BcWiBiQ{DiXmFe[}GiYaF}SgGyU{G{ZuDgTeEmUoCiT}CwZkCi]kA_[iAc\\c@{]Gwc@C_d@a@ab@mAuTuAkYiE{a@iHm^oGmZkMwa@iMo[{Tcc@_Qc\\wPy\\eJuQsJwVoUgr@kKe`@oGkWcDgPwDmS{DaWoDaXyCoW}B{VwAsSiB}Xu@uWy@c[]e]MsYAqSSaZ}@a`@{AcWoBqUwCiXaEoXwEsVgFmTsEyOoFqPoHiRgKiVcIqQ}IcTqJuUwJmYoIg[uHi^kCiQgCgTaBsP}Bs\\oAiYcAkReA_YyBe[sBg[sBqToEi`@}@oGeEkZkGke@aI_m@CUmFo]eDwWeEm[iCmOoAoHuFw^yBsPkAaJsCmS{B{OqJoq@gHsh@gGac@wF{a@oPgl@}U}m@{GsQeC_GmDeIiCoHcP{d@yCiQwAoUc@{Vd@gRz@c]VqJp@gU|FesBvGkuBxQkeGs@qwAeE}xAkCy_BjA}oA[ijAaL}qAaUakAaa@ucBgm@wgBul@_tAce@_s@_n@km@ygAqv@qk@}c@oq@yt@guAmkBuWqVo[qOsXgJuXuDio@eDydBsAkp@wDcp@_Nqi@{Vam@of@sh@{r@q^_v@m]imAy[{cCeOs~AkDqmAh@eoAvCatA|@e}Aw@yv@uCkz@iDyx@_H_l@qXkjB_Mum@gReu@cm@yrB}y@wuBa]{u@gRu_@cSka@cL{Rir@wgA{oBarCi|A}yBmpAsuBs~@afBqw@i`BaDeIeSyg@uXov@uU}x@q[{kAc\\ggA}Z}pAyz@igDmh@usBkSicAgLodAcIkoASogA~CykAhJujApN}jAxS}cAnPgfA`LqhAzFy_AhAi_@Wcr@sAwh@oFos@yGqn@uHui@mQqx@yUuy@e^}w@ub@qt@_aB}vB_{@qz@icAcs@yx@q^on@}Ucy@{Sq_A_Su_AuVq~@w\\{dDm~AgaA{f@ej@g\\arAm`Asj@wa@}z@sg@o]mNoe@uQwk@eKcu@}Jk|AyHe`@oC_e@cF_e@gHmr@qRyx@y\\ev@og@{j@we@ql@ao@mh@yr@_k@sy@i^{o@q_@ct@uf@}iAoy@_pB{f@_pAq^_`A}^yw@ka@ev@sk@edAw^sq@yQec@cTyj@uPch@{YegAg\\kmAeOud@_Q{a@eYgm@qr@qlA{bAugBoPc_@}O}c@yNkj@mLql@{c@ojCwO{z@cVg|@cYwr@cb@g|@_dA}qBqd@yq@oFqGaY}\\gPmOgBaBgo@wp@kr@_t@aZ}\\gYm^gRqX{RuZ_PwWuNaXgVye@_Wek@up@{~Awo@k|Ay`@s_Aac@y_AuM}UkfA}aBsk@{cA}_@eaAwWc_Ai@iCiQcz@wgAazGAGqSsfAkVkbA_Ni`@_i@whAo]ok@gZs`@oa@sc@ed@u_@cl@u_@ar@ob@qg@e[a^uYuf@kg@ms@av@oo@{l@ao@qc@qo@e]sx@m[_n@eVgg@oYkk@ua@mc@sa@ak@eq@g_@cl@_[yl@kEwKcR_e@oCaJaL__@qNym@aBsIqFaYcI{k@cFwh@KcCkH{}Ao@ep@PyD|EqfA~KswApDax@j@q|@hDcy@vF_q@~H_`A~^_{DdHeu@|HgiArAmq@I}o@oCu}@{Ha`AuKmw@eM{m@_Quk@eSii@uUcg@u\\{i@_\\ma@se@{i@gk@an@aa@kh@m`@aj@sZyf@iRw]y@yAc^mv@s_@uaAy\\ugAik@euBsRkm@eVqn@wYan@ca@sq@qe@mo@miAasA{`@_k@q]}k@c[}p@iR_h@yUku@kMcj@oKcm@oImp@oFkm@qEgr@{Ayq@OymAxEotFfB{kAhD{dAjC{`A~OcoElBqf@lDgrAh@mi@Ge^a@yVyBcp@cDcd@kIgo@eJwj@a[kdB_l@auCwk@cjC}Tcv@sT_q@gn@mdBej@crAg_@}|@qwCceHw`@cuAyY{rA}RouA}G}eAkCik@_Ag\\qAiq@}@yo@aA_s@k@cZw@}TmHecAeQieAsXwaAcEcLmGuNaLyUeHoNqRm]gb@qs@wEaI{HyNwHmNeHuNsGwNmEmKmEcLgFaOeEqMeEaOcEuOsFmVeDkQaDwRcCuQ_CqRsBcSkB_S{IkbAiDc\\cC_SiCeRaM}r@eF_VqEcRuEgQoEwPiGgTeHuU"},{"ref":"E 80","mode":"driving","weight":8272.371,"distance":286997.312,"geometry":"i_p|qAvdtwAsSuq@eJoZ}CeKuE{Mu@yBOa@eCyGqGeQiA{CuDeK{AiEum@mfBgNkc@mEsQqD}Q{CoRsBgRmAcOu@sMa@ePK{M?wM?iGrDgbCjC{m@hDs`@xBqNrCkQlDkP`FqQpJeYbIyQnGuLzH_MbJiMbJoKfJiJvEmExOsLxM{Izj@w[v`Bc~@|`@yThUeLdG_DrDmB|QsI|`@gQrVeL`YmNfXaN`N{HvR{LlXqQhSwNtQsNjV_TbL{KfVeVlUiWzUiYnYe`@lSqZnMsSvMqUlSk_@jRwb@nJ_VpJoX|GsTpK}_@hJ{b@zFwZ~E}Z~Jgq@xJun@jD}OfEgQjFiQjGqQfKsUxLeUdPeTtIuJbLwKlQwMrL}H`SkLnSwKpZoPl`Aei@`ToNnWuT~VmXlOmSjN{TtHeNnHiOfG{NhG}O~IiXrL{c@`EaQ~EaVfEyUxC_RfEuZhEe]`Fyd@lCa[nCm_@lCqg@fB}d@fBmm@bByk@lAsd@tAoh@rAkd@vAyg@rAyg@~@g[tCieAx@i[xA_b@rBce@nC{d@dDif@nCo\\zDmb@rFyg@bGaf@jGoe@hKuw@rGif@dGwd@bGwd@fHgi@`McaAbF{c@nEsd@zCm^|B}ZrA{SdBmZ`AkRzB}h@pB_g@@QnDay@~Ac[pCwc@nEck@tDi`@bGwj@jGcg@hEc[nGea@tGa`@fJkg@hJ{c@xH}\\rIk^~T_y@lUmu@bMy^`LkZlOq`@tO}_@r[yy@hMw[pI{UjMs_@`Lm]dIkX|Ig]tJe^nNml@jJ{c@tGk\\jK_m@tJeo@xKwy@|G{o@rE{e@lDwf@xC}d@zBwb@pDecAt@}\\zA{oAHsRGmSm@wf@qAah@sBkf@uB{^uEmm@cFaf@gCcSmEq[mE_ZcJof@cJsb@_Lae@ePkk@iI}WsGuQoO{a@mSck@aWcr@wQag@cOka@kJoWyJaXaKsXaKwXsSgk@ee@spAof@osAmOmb@}JiXeKuZ}E}OqFsRqDoOoEsTeDsRcCaQkAmJqB{SuA}RiAqTu@{VSqZF{UXuNn@cUnA{ThBwTJiArCoWvEq\\xFg]lEiV`c@{}BlLmn@nDySfHce@dGqd@vEqb@|CoZnDk`@vMadBtCg]vFqk@zCoX~Ggh@|F{`@nGk`@~Jog@`Lkh@fKoa@hP{l@tIuXbYy{@|Mca@~Lsb@tJgb@|Fk\\rDyWtB_SjD__@hA{TnA}e@Ng]Qg]_Ag\\iBo[yAuSkDm\\iCmRyCeR{CePqF{VwI_]gJuZgQ}i@sJyXsFmOcLcZeHwPoJgUuLcXaLcVuVgh@iYom@y]}t@kHyO{H}PuSmg@uFaOkG{PuGsS}GsTiJk[cJe\\y@yC{Mag@}Mkg@uNyh@}Vy_A{Nah@qSyw@_Vy|@aSst@__@}uAuMkf@oIa[aRor@}HwXqMy`@eKgXyKwWkIaQ{K_TiNgV{KsP_QgVaK}LyOoQkPwPsJiIqWuSqKwHgIkFiOaJiWiMuMiGyNgFiYkKyZkK_ZwKwWwKgQ{HkW}M{SsL}CqBkMkIq[yTsm@uc@eYaTsi@a`@kv@}f@sw@}d@{\\sRaWwOgFaDoSgN_KeHgNeKmYmUeKmImRaQoW{U}LkLc_@k^aScSub@wb@ub@gb@q\\{[qn@an@}lAmlAg[mZyT{ToWuW{[y[oScVeSkWyNkSgMaSeMgTkLsT}LkWmI{R_JqUgHeSqJiYyOmg@sLs`@aMya@eSkq@_Syp@{Ouh@gPcj@{ZidAqRyo@cPgi@eZ}bAwZidAswBskHac@oxAoZ_cAqMma@uIgXoSol@eSai@yNq]sMcZgRea@{Sca@kM{UmMwT}NqVa_@uj@cNyRqKwN{Vk[iNuPiOeQ{Yg[wJwJmZkYaQyOcPeNab@q]yQaOg\\mWo`@{Z}YyUyP}NcPuNuJ{JuOgPcJuKcTqXsOcUqLeSaHuLwH_O{KiToLcXuJuUkJyWgFcPuG{TaJo\\iBaIsD{PsJib@sO}s@iM_l@uRu}@yK{f@eWykAuMmm@eOer@cHqZkKab@aIoYiDsKm@kByFwPgNo^}O}^qPs\\iMqUgSg[kNyR_OgRcPeRqI}I{V{UgKyI_QyMuKuHaLqHgKeG{KmG{KmF_LiFcSiIsLiEgTgHu]sJy\\eIuZ}GgVaFmp@eN}VeGoT}F_MsDsSiHgYaMqX}NkKyG{IcHcKcIeGyFmGuGmF}FoH}IkI}KyHaL_FgIsFyJuGmMiG{MwFkNyFwO_F_PsEkPeFkTmEgT_FsZiC}QeCeRmD_ZmF{d@iFad@{DmZeEoZkHsb@kDsQyGeZyGoWiFgQ_FyOyIwVuFwNqGiO{KcVuLqUwGoLeNmTiNcScOqRwNqPgJuJqJeJqJcJkJwHyJwHgLcIaKwGcKiGiLkG}QsJaLqFqRuJkU{KeYaNoL{FcRiJaCkAkUcL}RuJwPkImFiCijCspAkGmD}EcCqOuIsMuIgNaKsMwLwJcK}NcRsKaPiGwK_JuQyGaPuG_RyDaMwEuQgGoY{C}RyB}PgC}ViBmYkAaUmAq\\q@ia@Ko^H{^^{_@~@_j@l@k[d@kc@Re\\KoZg@ud@y@kZM{CyAa^}Ay[uCsm@eGmkAkBy^sBcY]}EmK{yAeQmwAi@}Dm@iEiF_^}PkkAgG{b@_Jul@eBkMs@cFeOkvAcUexDwKmnD}Ps`GaHmyCeA_jAdAwzCbCwlA`FqjAtRyuCzIg~@lUoiBtO}bAn\\_fB``@_aBbBkHx`@{{Azw@}wCjd@uaBt]mrAp_B}aG~m@q|Bzu@igCz{@saCzaAk{Bp}@oeBlm@cfArkAcqBfe@o{@f`AgxBvw@ofCle@gtB|]ayBdU{|BhM_lCnC{tAdGo|HToZtAycBbDelExCapExAekBdD{kE~GgtFzKgbDtNubCfSubCzdAohKdu@qmHbTy~B`G_aApCsp@lAga@fA}f@f@_q@@yt@Wid@y@qh@mAob@qBij@aEsu@wFgv@eIgz@yJs~@gL_eAuFmk@iF}o@sAqUs@wO_Cmq@m@}^M{_@Jcf@b@{ZlAwe@DcBdBab@pCgb@xCs_@pEyb@zCuUpEg\\`Hia@rHm`@hIe^hIg\\fK}_@|IwYrKc\\nNua@tLs\\~Lu]pJmXpJiYrI{X|HaXnK_d@pEcUnFeZjGee@tCmXlDag@~Ai^r@cVXgt@U{^kAsa@uC{w@sAg]}Cqp@mEogAgB_l@cAg`@]gQs@cg@Uo\\KyV?wUDgn@p@_v@|@{p@fA{d@`B}f@dBu]pJgcBbSmbCjSg~Bn@aPpGwcBUalAqIylBgQa{AiYkwAg`@gtA_~Cg}Jc_BivEytAkdDyzAi_Du}@{gBay@sqBul@yqBkc@orBw_@gkCmQ_uBsIwpBwBacCfCgpBlDa}@nLw}Bxi@qfKlMgmEd@opEmG_aDaPybD{SsfCuYaeCy^o_CofAa~F{]{yBsMolA}HokAyBokAb@inAlFsmAxKyiAlQugAlW}fAx[ubAz`@{}@xd@ax@lh@or@`qBoyB`UgY`UwZvM_TzLqSdWwe@pN{ZxMqZ~IgVhIiU|HcVhIwXtQor@dWqiAdSe_Ajy@wwDdb@anBdIu[nN}q@xd@ccC`b@inCve@o_Ena@_`EnGs~ApA{`BcAst@cAw\\g@cO_LubB_Tq~A{Y}zAok@_lCa[coBcOg~AuI_gBeBmmBpD_sBlI{sAxIm}@zQssA~_@{lBzd@ciBdvB}{Hr@gCzc@klBbXiwA`PmjArLkmAbIqnAhEsmAnAcoAk@koAgCg{AiJueEiFkaBsMidC{Dsm@mF{q@iJqcAmI}w@uw@skG}IaqAkBenAdBelA`ImkAjPskAhUwcAjYw}@pe@}cAtg@cy@pmGqmJltAqjBhzAwdBbzFm~FxzAiaBly@sbAfOkQprCk_Edx@soAnzAyjCngEo}Hrm@qhAppAabCl{@wgBhcA}gChe@sdBfiByaI`Kwc@lJwc@xFwZnFu[nCoRzD{[lB_RbBoRvAqRlAaS|@}Rr@qRf@aS\\eSLqTD_QGkSQaS]_Sg@sRw@_SeA{RsBi\\_Do]uDa]gCoRuCiRiDkSeDuQ}F}XcFcT{EiRaFyPaH{TwLy]uGiQ}]o}@wI_VoJqYaGcSiDwMsHsZqCkMkC{MkIsd@uC{Pe@kDuAaK{AoNcBeOyA}NaBsRoBqZkAuUoAcb@c@}YS}WB{ZVkXl@wYfAqZlB_^xBuZlBmTpDo[`C}R`Fg\\lF{YpDyQrAeGfB_ItEcR~Ie\\xFwQnH_UzH_T|IcTnK{UfMyVrH_N|Re\\xNcT`OkSvOkSbOaSrY{a@hIwMvHsMvHoN~G_NhHqOdI{QrIoTbGgPtIkWpFwQnEqPxEwQjE{RhD_PfIac@lIcd@hHg_@bGgXpHeZhHuVfGcT~g@ooAneAwkC`Lu]|Ky_@rKua@jJsa@|Ksj@~EkY`C}NnAwH~Hsj@hHek@fP_tAtJgy@~Juy@vKey@tNgbA~QokA|RmkAfIyd@~Ime@vVaoAl`@giBpb@ugBlo@}bC|qA{oE`jCqoIbrAijE`o@ghC`SodA`RylAbNmiAxK_lA`IukA`N{vCvRgkDp_@wyDbc@svCdAgHpm@{{Cdj@myBnaAw~Cfx@csB`nAekCziA{qBpqAypBl_@gj@ncEqdGbq@abAru@kfAr_Bc~B|l@caAfj@ghA`h@ayAza@{aBjX_cBxO{dB|E_wAfAam@j@unA`@oh@bCutNiQ{jPaBgwBnAamAnFomAvRqpB~]{mBvg@wgBnp@k}Ap_BgpClnDm`GrbEieHv|AigDd~@}dCvv@gjCvo@umCph@otC`j@efEz\\}vD~[c_HfEev@zEi{@bJ{sAnI_fA|IqbA`TyoBrNshAzLo|@xLiv@j^usBdXurAdr@gyCpfCywJfd@kfBzaCwhJj{CogL||@wjCddB_|DtdCufErtCgqDnzG}~G~OkPhk@gl@p}@maAh}AmgBjNkQxr@y|@ty@qhArgA{~AhwBkkD|~AotC|~AigDdyAa}DjV{y@dV{aAhN}m@~Okz@jKgo@pIwl@nIsr@zF{k@r@cHlCk\\tIyqAzCwr@jCgcApAuaAFsp@yAw~FnFa_DnNwaCt[ovCf[ckBv`@{fB`l@qqBnx@qvBtmBetD~|H_lNfzE}_KxQ}]pRg_@vs@unAdd@gs@~|@uoAnnEc~FbcAwgB|{@spBjsAetElk@gaDnrAeoIhTmlAjv@oqDlKgd@rHi[tHwZff@}iBdJk[`m@}qBpNoe@t_AotCtc@atAtBqGfTop@@CrSso@dPah@~\\}fAb^glApT}u@`Tsv@pTqy@hXqfAjP{r@fMsi@rLai@zRc_ArOgw@~Nov@xd@clCfTgtAfKws@xJms@lQyuA|OsuA`OqvA|PkjBrGiv@dGov@~Gc~@fHqcAB_@fG_`A~Dgp@~C}i@|Cei@zFofAnFwfA~LuiCtJ{wBPiEzHkrBlq@ggPfl@umMn`@w}I~ZszD~YwfCf[osBdf@{bC|mCyjLjaFy_T`jCs{KdqAyrFxKqd@Rw@b\\}uAlz@{zDbLih@ba@q_Cz]c}B`OmhApYkaChVucChUuxCtPktCjRqeFnX_nIbRo|DpXsvDxXesCLiAvXm_Cd\\e~Bbb@agC~f@_hCjj@oeCpy@eeD|xAevFv`@sbBvq@uaDnh@gtCpbAauGf\\ajCrjAspKr_@uiD|}@gfIfq@}bGzVstBhOwjAb]c}BjR{fAns@gsDt~@c~DneA{vDfqCsxHvjDcvHzfDcsFdkF_~G|_Hy`IdfEi{GfvD_xHpoBq|E`dA}gC|gAmjC`eAaxBjtAqcCn|@iuA~zAmwB`QsVp_B_~BvlAomBtp@ikA|d@s_Ah_@i|@zkAa~CfiBclGxYiaAxiA_dDthBanEVo@ljDuaIbc@qxAbZg}AnOyxApFgtAx@oqAeKm}KeHeuHq@qrCpGayC~KclBxNi{AhXepBbd@e~Bll@cyBxf@exAdo@mzAhi@mfAjw@upAprAyeBhlB_lBznAehAtkAmjAzeA_rAh}@qwAbz@m{AldAmfCf{@quC~p@chD|Sw|AjJc|@|Kq{AbGsoAdIseEnEs{BbL}tBjRyuBfSqyA~[egB|a@igBxd@w{A~i@qzAv`BkoDpbE}jIrhBkzDp_A_uBtNw[rJ}SpiA}mCnxAcpDrxAqqDxr@uiBnV{v@b^q|AxUccBdImrAjCarAWkj@}DssAkJ{gAuOaiAcU{gAoXefAqt@uiCwp@ifC}l@kkCkTiiAq[ilBy`@a{Cs[ylDqAsNoS}nDww@}bSuIscDdDgbClRqpB|c@wxBdg@mwArp@{nA~{@whApR_TxbCmiCfeA{rAdo@i_A~k@uaA`k@mfAje@ocAdt@wnBpu@ijC`Tk|@jRk`AjMgq@~UgcBzZgaDDg@lS}|D~`@qwLxL}pCtCuk@zHubAfBsVhHyy@|Gmq@dYu`CbRopAxFc]dZibB|a@urBxKkb@nEyQd]ctAz^mmA|M}a@dK}]zFuPp]i`Ar\\o{@zGyOhm@{vAdo@quA`n@qwAvOo\\|n@wkBfz@ceD~Nwy@pF{]hTwiB`IqpAjHijBnDgkBu@_aAcBcaAiDs|@gFm`AqB_ZyAwQ}LgvAwM{tAu`@}bE{y@_tI_\\{dD{s@idHgE}b@sk@oaGom@atG{YopDqScjDkW{sFwCeu@cDyaAaPiyEiTkyGqLaoDsDkiAyNqgEwJiaDaBg~@C_a@Xs_@vDsdAlGez@hCmSzNmeAxVmhAvYuaAtx@_wB`w@ypBjo@}fBfTwn@~|@yrCli@akBrn@qpClZe`BbI}e@hH{d@v]ogCha@m{D`Q{{AjTypAh]_hAla@a`Art@mkArn@sq@h^oYxz@{k@hZoTfXiUte@ih@|U}\\fRu]rMmZbLuZlKu]nJi_@~U{eArReqA|Gkr@dEgj@`I}mApGugAjBqw@nA_x@Vsl@a@}l@aAc~@cBo~@oD{o@cEgs@{M_eBq`@ilE{Egq@oCmu@}A_jAdGgdBzDol@lFem@l|@soHh@oEb}@wjHr[amCzHyv@hEwo@lDop@Bg@tAyf@n@me@Eee@_@sd@q@{Vq@{WmDsq@u@kJ{Dgg@iE{c@wGog@yJcm@aQyu@ySwv@sm@qfBqNof@aKud@uFsc@cD_c@sAoYm@cYPa`@dBgb@zBwYr\\qrDvK_kAhL{`AbC}MxOa|@jU{z@`Qwf@bVsk@p[wp@BGx`@yl@nX}_@rZw]v\\yZv\\aW`}@om@dVkPjtAiz@tbCc}AxeAom@~PiI~N_Hru@qZfaAwZnXyGpL{CxKuBvs@oMlOqB`mAaPryAmQfk@yNbIeC|YmL|ZeN|RmMjQsMtQaNtOeNn^yc@|a@yk@zZ_p@jVwp@vUgw@lQky@rGah@|Gmn@xGwdAnGkqAzByd@lB}\\hDik@`Fwm@xT{mBrDiWz^sgB~BkKrM_g@bh@c~Ahm@muA`lBmdD~mBccChZi_@rkB}~Bpr@e_AvXsc@bT}_@z]u`AnMcb@~Kie@fM_t@`Fwf@xDyc@hDar@`Aqm@M{r@g@_l@cBwnAgE}jDTyt@nAon@bEyn@rE}g@tJgo@vN_o@lLab@xn@{mB|Ucs@~GkUhKy]tKuf@nHoa@n@qDvEaf@rB{b@PoRFiGUo\\iAyb@oBe^sH}{@mFgl@gEqh@qAu`@`@se@`Fci@vFg[dNyc@|Na[hRoZhVyVvE{ErWaShv@kn@pZ{ZxY_`@rm@ubA`v@srAjO{Sjb@{e@`g@ue@diA{cA`c@u_@zqA_jAf`A}`Apy@{dA|[{h@vi@ebAhb@w_A~gAcmCpxAgnDdm@cuAlV{h@rVif@hwAkzB|We\\vYo\\jm@yn@~RmSx]g[tr@aj@zlBwjAfw@_^nu@qWb|@oUds@{PhpDkn@jp@aMxl@gObw@g[pg@_Vj_BieAhl@k^bZkQfVcLrsAcf@ttBqm@lcAqUpp@{Inh@oCpm@qAl{@{C~r@uE|c@aIrfAs\\zx@eVj^yDvSs@jf@fCvx@bKx]`Cv_@?tU}A`QwCf^}KhXgO|TqPfVqUhRiV|U_e@xP_j@~Kso@fDmW~BaXdAoo@c@wm@yEmgAeBy`@s@_b@Vo]`BuZnCi_@bFk^dMei@pHuTrO}^zTu_@j]oc@rm@er@xFqGbx@eeAzV}\\~Vga@zV}b@vXkk@dHaOna@gcA`Qud@dJ{\\jJ_]dJs\\hLsi@vBiK`Ogu@dKwq@tOqkAzKejA~GmlAdD_s@|@cZhBar@tAgw@BgAv@i|@OytBsBegBkHu|CiLsnEeJmlCaD{`AwGkyBsIorCqe@ibOuHy`Cu@e^k@yXq@}_@c@cgAMe]Haa@Dm^r@{h@h@m[lD}lAbQ{bDn_A_fKrAg]fDol@xFmmAvBeqA|@opBcA{gAkBocAaGyyAwHanAcIa~@oDo[_D{YkXiwBc]_kBkJyg@mD}Qyy@inEqCiPcWwwAwVqaBsSi_BgPkxAcXymCcUslCil@e|Gk}AcwQsCoZ}v@{aJyAuPq`@crEgQs~BmD{n@oFuoAkAmwAb@qsB`Cmy@pFijAvHgcAtJubAbNmaAvRejApIyb@zI{`@|nB{{H`z@gsDdt@etDv]kjBfLqp@|q@gtDla@icCr_@ctBrk@}}Cvy@irDnSsx@fVmy@bfAscDz`@}gAje@sjAlmAcsCxd@wlA|S}k@|Rwi@pNgg@lLqe@`WgkAlScfApV_hBhHqz@bG_w@dMcdCzSc|EzMe`DfFimAhDsaAdBmqAKwoAiAqv@wCuz@{I{nBoZehGm@}Lm`@ylHw^otFmi@crE{y@u~EadB_`Jwa@_}B{]{gCcOspB}HoyBHiuCbFawBvVo}EtBaxAi@c}AgPutCgd@m|Cyf@ykBmO{d@eZkw@kf@klAuMi\\aK}W_Qee@_KqZaScp@_Jw\\yKgc@gQqw@aHg^wKsn@}Kas@gRkpA_QelAeRypAcNe`AyWajBqCmRaIej@gTizAoKot@wQ{oAcOmdAcZ_tBcZirBoNk~@yOq`AgT{kAqj@ssCkd@mzB}b@uyBgPs{@cDqQsMss@q[wkB}Wm`BuKqs@eMw{@yPclAsJes@mSk~AmSscBy[gpCiZ}iC{YihC{M{jAoKm|@yRecB{OayAsOm}AgJsdAoFyr@eFot@kH_mAmCef@kCkr@kDegAqCskAqAu}@u@abAKkQEwm@N}vAj@q{@fBwmAxDc`BtGcwBzGgsBrKy|CrLysDtEs`BbBy|@hAgvARsv@WeaAeCwjBuDgsA}FmsAmIiyAsN{wBcIcjAuOm{ByOe|ByR_pCuH_~@qLojAeQ}vAcJao@mSaoAoUinA{f@c~Bo_@u~AwKsd@_f@krBi[uvAg[k_B{Oa`AmCaPkQ{oAsP_vA{^aoDy[{tCaKox@}Mu`AiVk_BiW}bBuZspBoKwu@oK_z@{Hov@{Dwd@{Eku@iDww@wBmy@s@{v@Omc@Nik@rBwkAxCux@~D}u@jE}l@zH{z@rIey@jIqx@fPcjB`Fiu@xDuy@pCkeAd@}g@Tal@a@ow@kAwt@kDqaA}Eqz@iEwm@wE{h@_M}nAgSktBmHgy@mGez@mE}p@qD_r@gDcy@oBwn@yC_pAsAk{@_Aus@KgNqAk`AgA_bAm@ev@kA_|C?wl@@_d@Hwj@F_qAJgj@Fo{@KweAk@_xAgAayA}Cs~BgEmqBaGqcC{E_nBmGiuC{AmkAkBedCg@k}AAaeBb@mhBnCgqEzCepEz@}vAr@yqALe~@Qyu@sAahAyBkx@_GmoAuEar@cI}|@eMmhAuNobAaSiiAkQ}}@gY_sAg[uvAiXamAyYyqAka@yhB}`@qiBsi@{bCow@cmDed@}rBiP_v@qLum@{Lis@uJcu@iHss@yE{r@}Byi@{Ash@o@om@@{l@|@mp@zCy~@vEwv@lGyq@`KuaAzZopCv`@aoDf\\{tCpZ_mC~PgvAjTs`BjPyjAfTavAf\\wqBta@u~B~YkaBjWaxAh]mnB~]mqBf^mqBrZkcBpN_y@dMiv@lHif@hI{m@lJe{@pF}l@pH_fAjBa]nCsp@lB{p@~@uq@j@cu@Ka{B?u@i@_}BD_x@l@{v@pAcn@xBwn@tDet@bFou@vFan@vGmm@hGie@rH_g@`Hqb@|I}d@xNuq@zG_WnIo[rImZt@kBtg@qoAh}@aiBre@i`AxOke@fD{Jz_AgsC~H_XdIeWnHoU`Nig@`Lid@dIe]jHi^vIwd@zJml@zIen@vH}k@nFyb@pC_UhIgr@`Fuc@dFie@zFeq@xDck@hCqj@vAoj@p@up@Cuq@gBidAiCyl@cDyh@_C{X_L{bAqMw{@gSqbAgSsw@_Qcj@uWis@_Vwj@uIsRo_@iw@q_@{u@uq@cuAee@i`AoSab@_u@q{AyXwk@gMwXmCaGyTsf@o`@_aAa]i~@}Ssn@eSun@uXe~@so@{{Bu]gnAgb@svAoTgr@gDoKcYcy@iMo^s[q|@um@}yAcXcm@mKoUs^yu@sYuk@gVmd@cv@isAit@akAic@mo@il@ey@u`@_h@g`@mf@ul@ar@w_AubAkaAc_Aa`Auy@io@wg@qu@}j@ycAcr@o}A}}@muAgr@upAcj@}}@u]}rBes@ypBup@aeAs]szAcg@{zAcg@ipAmb@}dCgy@{o@kUeZcL}RqI}l@m[k\\gTcTuOmY}Uu]c[y`@{]oc@}^yd@u[o\\qRc_@yQec@{Pyn@}QcYoGc^uGkc@iHqg@eIeZqFoa@{Ied@}Mgc@{Pga@{Sc^gUiYoTks@ao@_^i\\}]y[m]yYoY}Ta]uUoXgPi`@iSg`@{PcYiKoZcJo_@sJ}b@wIaQ_Cgc@_Fc]gDwpAwJqiAkIw[cCc]mCsm@}F{XsCsYwEwSmE{\\{I{L}DaMwEgViK_VeMmNiIa]qUyEaEcVoSwBwB_J_JsG_Hec@ue@mRkUuh@{n@cZi`@mK{N{NqUoMsUcNcXaVsh@eT{h@mZwx@gqAelD_GaPigCi`HKWem@iaBie@_pA_oAmhD_Z_x@gEmLi^aaAcp@agBms@mnBi]g_Ak_@ycAih@cwAuw@}vBck@s|Aq[o|@uPyf@aXo~@aQcv@aJwe@kIwh@kH{l@oI{w@_Gon@_Ic|@iIkw@gBuNeCaSiGcc@sJuh@eIu_@gO{m@qMoc@cMm_@eXwr@ca@e}@mYml@oa@az@w[ep@mw@g`BcqBmbEinBc}Dox@uaBcrAwlCwoBi`E}}BywEmzB_rE[q@yrAmnC}Oa\\idBolDmpAijC}hAg}B_o@}pA}yAezCgzAyzCkdBqmDmi@sfAkDeHq\\}q@um@}nAe[go@_h@eeA{f@}bAuJaSmc@o}@_j@shAekAacCum@ynAqk@akAw`Cm}Eu|@_iBubAmrB}dAewBscAotBklBuyDakAmaCqjAq`CoT_d@cnC_uFg~BayEqm@wnAkHgOqQg_@cG{Lg]qp@ik@smAkKsSaVyf@y`@_y@{`@ky@ohAe}Bqi@sgAypAwkCwhBetDkyAizC{hBitDo{Ag}Cce@a`Aev@}}AsAoCgWgh@u@{Amt@{yAib@}{@yDaImEkJqc@w}@gn@{oAo^iu@mrAwmC_~AqaDe{Ai}Cg`@gx@ub@s~@_rAswCwx@obBao@oqAqt@_}Aw`@iy@kdA}uBgfAkyBenA_gC}a@uz@{]_t@g^is@gb@ay@{k@}hAyaB_bDet@}xA_t@ezAkdBemDgCiFogB{qDg`AkoB{IyQ_Po\\goAajCqC}FaG}KkL{UcNiY_^ct@i^it@md@}_Acz@odBe|@ghBs]ws@q^eu@gu@c|AmYol@sQ}^aSka@gw@u_B_f@gbAmj@uiAys@syAmr@awAqs@syA{a@c{@ajAa`C}a@oz@{u@e~AyBmE_[qn@aj@shAa^qu@i`@ax@yWui@aUge@{N{Yq\\sq@cWkh@{Rya@mVcg@{eAszBg`@cy@u]kt@m@oAoh@ygAkc@k~@oTcd@aWch@gv@m}AYk@_nAucCmBwDgL_UyzC{jGeGoLgKmTeq@wuAeg@_cAmYao@_BoDeScd@_v@yeBoGqNc_@ew@}c@}~@{k@ylAyHyO_Ps\\iLyU_Zqm@qYsl@_w@a_Bg]us@y^gv@ah@weAic@w}@wEsJaJ}Q_Rw^{l@mmAyC{FeKmSo^qu@am@omA{`@ex@aVse@mP{Y}[ei@_Vg^mXa^eP{RcReT_VsViYcXwX_Vk\\iVe[{Se]_Ssi@cXmTcJoRqHwf@oPk]gKwb@}Lkz@iVe|@yVskAs\\cr@uRoo@yQscBcf@uJqCsjAg\\o`AsXisAua@ocB{j@c_Co{@mfBss@ebBas@c_Aea@ieBuu@qRmI{o@iY{aB}q@iYwJwcAi`@e|Aul@gq@cWiu@yXwCgAif@mQmbAg_@sdAo`@}g@gR{]_Nc_Ag^aZmKkVaK{w@kZwbAe_@iiAob@ek@aTiw@gZm{@w[}`A}]of@kQyg@{QokA{`@o{Asg@u}@o[}j@{RmWyJij@}Sui@uSiJoDur@gXqx@e[kn@oUkr@yW{xAej@yn@}UopAcf@im@aUsk@mTm^eO{a@yQum@yY_k@qZcc@yVcm@__@_g@uZgi@k[cc@aVca@iT{r@w\\ys@u[eq@mZydA{g@_vBohAgxBuiAqf@kWm{@md@igAuk@ymBkcA}bA}h@sdA_j@}u@}`@{`@}SaVkMmNqHof@qWkUoLsSyJga@gPq[{JkVwGaSoEi_@{EwVqBaYeAoWQqU`@kc@jCc`@lEoaAvOsaAxQirAzVqhCne@_W~E{~A~Y}aBzZyn@nLaq@bMo_BpZ_d@dIe]jG{YtEeX|CyU`BsXbAwVQKAi\\oAaUoBeWgEuWwFeXoIsU}IyUsL}YoQkWgRkUiRyXeW}h@{f@ywAatAyv@ct@uWcVy`@a]oZcV_\\gU_BiAkXgPuScMsn@a\\mr@}\\cw@w_@ex@i`@{cAcg@ca@_Scv@c_@_k@yXmi@yWck@wXea@}Rwq@}\\s_@}Qq`@cSuTmLa[_Q{^uTi_@}W_`@{Zoc@i`@}VwV}[k]ud@yg@yWkZwa@ge@mk@wn@mVwVsd@ib@{c@}^{b@c[{d@yYck@e[uc@qTqx@e_@qk@kWwt@}\\kq@oZgn@aYyi@qV{e@mTw]oPkq@a]}]qRgP_KwXiPg^oUeXwQkZsTaWyRsa@w\\e^a[a]o[{\\q\\sYoZeXkZy`@_e@wXm]oUmZmY_a@gS{YeMiRiFiIiXac@}MoU}Uya@yZwk@qn@mpAg[or@a\\ev@cPq`@kHiQcp@g{Aae@_kAmA}CqRee@}Qyg@u`@qwAuSsi@{KoXmQk`@eCsFm^_v@wcAouBsRy`@wn@evAoC}GwOa`@}Tqi@ca@qaAmWmn@yi@{qA{Uek@e[au@}m@qzA{Poa@ic@}dAwSof@_l@urAcU_f@yVih@q\\{o@a`@cs@e^gn@ur@eiA}b@yo@ia@mk@ib@}j@mh@op@cu@s{@wa@}c@ad@wd@ue@ke@c|@ow@_}@iv@ez@{r@ei@{d@_Z_WopAcjAwd@mb@eh@qf@wi@ii@sN}Pi^e^yi@ij@qc@gd@qm@om@iNkMwWmVai@se@sh@oe@ql@}g@eZaWy[wXuv@{p@{s@wo@}nA}iAs~Aw|AoQiQq[c\\ih@{i@qSgT_uBa`Cst@iy@w\\y^eYyZyt@qv@}v@sw@ak@yj@yQ}PkXuWwl@mj@gm@}i@un@kj@e@a@qYuV}b@c_@y\\qXqm@qf@ww@}o@qtAukAgSoQqT_S}q@yn@eNuOoeAmbA{m@io@}o@{p@e[o\\sy@a{@oh@ii@aZsXeRiOqUcPsNyHkP}HoPmGyOuFo[aJoY}Gwb@mIcVaFqn@mM","duration":8755.707,"driving_side":"right","duration_typical":8755.707,"weight_typical":8272.373,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit A64 onto E 80 toward Toulouse/Pau/Bayonne-Mousserolles.","modifier":"slight right","bearing_after":61,"bearing_before":61,"location":[-1.452636,43.475461]},"speedLimitUnit":"km/h","destinations":"E 80, A 64: Toulouse, Pau, Bayonne-Mousserolles","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Albi"},{"type":"text","text":"/"},{"type":"text","text":"Foix"}],"type":"fork","modifier":"right","text":"Albi / Foix"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"right","text":"E 80"},"distanceAlongGeometry":286997.312},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Albi"},{"type":"text","text":"/"},{"type":"text","text":"Foix"}],"type":"fork","modifier":"right","text":"Albi / Foix"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"right","text":"E 80"},"distanceAlongGeometry":1609.344}],"exits":"A64","voiceInstructions":[{"ssmlAnnouncement":"Continue for 178 miles.","announcement":"Continue for 178 miles.","distanceAlongGeometry":286967.656},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on E 80.","announcement":"In 1 mile, Keep right to stay on E 80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 80.","announcement":"In a half mile, Keep right to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 80 toward Albi, Foix.","announcement":"Keep right to stay on E 80 toward Albi, Foix.","distanceAlongGeometry":200}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[59,61,241],"duration":6.285,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":6.277,"geometry_index":12560,"location":[-1.452636,43.475461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":3.434,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":3.52,"geometry_index":12561,"location":[-1.451825,43.475791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":1.508,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":1.543,"geometry_index":12562,"location":[-1.451385,43.47597]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,241],"duration":2.344,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":2.402,"geometry_index":12563,"location":[-1.45119,43.476049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,238],"duration":0.102,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.105,"geometry_index":12565,"location":[-1.450891,43.476183]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.172,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":1.203,"geometry_index":12566,"location":[-1.450874,43.476191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":2.344,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":2.402,"geometry_index":12567,"location":[-1.450733,43.476258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.668,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.688,"geometry_index":12568,"location":[-1.450442,43.476395]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.887,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.91,"geometry_index":12569,"location":[-1.450364,43.476432]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":0.449,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.461,"geometry_index":12570,"location":[-1.450169,43.476523]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":16.109,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":16.512,"geometry_index":12571,"location":[-1.450068,43.476569]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.446118,43.477954],"geometry_index":12579,"admin_index":3,"weight":8.617,"is_urban":false,"turn_weight":6,"duration":2.562,"bearings":[85,252,260],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,270],"duration":10.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.383,"geometry_index":12582,"location":[-1.445369,43.477977]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,277],"duration":13.973,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.312,"geometry_index":12585,"location":[-1.442386,43.477817]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,325],"duration":5.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.973,"geometry_index":12598,"location":[-1.438854,43.476112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":11.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":11.68,"geometry_index":12601,"location":[-1.438002,43.474904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":34.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":33.598,"geometry_index":12605,"location":[-1.436352,43.472309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,311],"duration":10.789,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.496,"geometry_index":12626,"location":[-1.430053,43.465359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,291],"duration":123.402,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":117.211,"geometry_index":12633,"location":[-1.426814,43.464029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,287],"duration":25.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.023,"geometry_index":12716,"location":[-1.385628,43.45222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,304],"duration":113.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":101.883,"geometry_index":12729,"location":[-1.377584,43.449123]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[111,115,291],"duration":9.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.762,"geometry_index":12804,"location":[-1.338272,43.452531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,290],"duration":17.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.664,"geometry_index":12807,"location":[-1.33515,43.451651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":65.086,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":58.57,"geometry_index":12816,"location":[-1.329174,43.450584]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":48.48,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":43.617,"geometry_index":12870,"location":[-1.303362,43.453695]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,206],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.723,"geometry_index":12907,"location":[-1.28851,43.464084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":20.277,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":18.242,"geometry_index":12908,"location":[-1.288344,43.464314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":35.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":31.59,"geometry_index":12916,"location":[-1.284714,43.469273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":2.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.84,"geometry_index":12935,"location":[-1.277054,43.477348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,216],"duration":41.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":37.492,"geometry_index":12936,"location":[-1.276593,43.47781]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":14.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.844,"geometry_index":12959,"location":[-1.263223,43.484095]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.258413,43.486025],"geometry_index":12960,"admin_index":3,"weight":51.902,"is_urban":false,"turn_weight":15,"duration":57.176,"bearings":[61,241],"out":0,"in":1,"turn_duration":15,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":65.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":57.062,"geometry_index":12988,"location":[-1.244977,43.495272]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,193],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.047,"geometry_index":13046,"location":[-1.224399,43.508881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":14.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.637,"geometry_index":13047,"location":[-1.224286,43.509253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,214],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.559,"geometry_index":13058,"location":[-1.222492,43.512851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,217],"duration":3.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.039,"geometry_index":13059,"location":[-1.222353,43.512986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,226],"duration":49.613,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":44.645,"geometry_index":13064,"location":[-1.221471,43.513692]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":4.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.758,"geometry_index":13114,"location":[-1.207439,43.5222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":8.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.953,"geometry_index":13118,"location":[-1.206807,43.52328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,203],"duration":37.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":33.34,"geometry_index":13119,"location":[-1.205501,43.525509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,264],"duration":4.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.324,"geometry_index":13153,"location":[-1.193715,43.528623]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":3.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.66,"geometry_index":13156,"location":[-1.192011,43.52879]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.781,"geometry_index":13157,"location":[-1.190788,43.528921]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":0.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.328,"geometry_index":13159,"location":[-1.189861,43.529033]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":14.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.434,"geometry_index":13160,"location":[-1.18975,43.529048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":1.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.332,"geometry_index":13162,"location":[-1.186881,43.529538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.186786,43.529559],"geometry_index":13163,"admin_index":3,"weight":16.5,"is_urban":false,"toll_collection":{"name":"Sames","type":"toll_booth"},"turn_weight":15,"duration":1.621,"bearings":[73,253],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.828,"geometry_index":13164,"location":[-1.186685,43.529582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":6.941,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.414,"geometry_index":13165,"location":[-1.186189,43.529699]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.184967,43.529986],"geometry_index":13166,"admin_index":3,"weight":3.297,"is_urban":false,"turn_weight":1,"duration":2.492,"bearings":[72,211,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.184393,43.530118],"geometry_index":13167,"admin_index":3,"weight":3.68,"is_urban":false,"turn_weight":1,"duration":2.906,"bearings":[72,215,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.183662,43.530294],"geometry_index":13168,"admin_index":3,"weight":1.57,"is_urban":false,"turn_weight":1,"duration":0.625,"bearings":[73,228,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":69.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":64.352,"geometry_index":13169,"location":[-1.183432,43.530345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,289],"duration":9.188,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.488,"geometry_index":13183,"location":[-1.157196,43.530326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,295],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.391,"geometry_index":13185,"location":[-1.15398,43.529325]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[117,121,295],"duration":16.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15,"geometry_index":13186,"location":[-1.15383,43.529275]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.148318,43.527226],"geometry_index":13189,"admin_index":3,"weight":101.844,"is_urban":false,"turn_weight":1,"duration":112.07,"bearings":[117,294,298],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.043,"geometry_index":13207,"location":[-1.110337,43.514085]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[92,94,272],"duration":21.805,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.617,"geometry_index":13208,"location":[-1.109897,43.514074]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.101656,43.513872],"geometry_index":13211,"admin_index":3,"weight":91.82,"is_urban":false,"turn_weight":1,"duration":100.918,"bearings":[92,270,272],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,266],"duration":52.762,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":47.477,"geometry_index":13241,"location":[-1.057209,43.511515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":3.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.328,"geometry_index":13283,"location":[-1.034829,43.508001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,268],"duration":8.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.242,"geometry_index":13286,"location":[-1.033423,43.508053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,273],"duration":4.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.008,"geometry_index":13291,"location":[-1.030244,43.508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":22.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.715,"geometry_index":13294,"location":[-1.028508,43.507864]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,269],"duration":114.332,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":100.012,"geometry_index":13300,"location":[-1.019647,43.506881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":116.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":104.434,"geometry_index":13319,"location":[-0.978772,43.519142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,318],"duration":25.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.254,"geometry_index":13341,"location":[-0.934672,43.518678]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[114,118,297],"duration":19.047,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":17.598,"geometry_index":13354,"location":[-0.927341,43.513852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.920388,43.511645],"geometry_index":13358,"admin_index":3,"weight":1.719,"is_urban":false,"turn_weight":0.5,"duration":1.324,"bearings":[116,290,294],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,296],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.109,"geometry_index":13359,"location":[-0.919929,43.511482]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,293],"duration":37.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":34.551,"geometry_index":13360,"location":[-0.919114,43.511234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,267],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.148,"geometry_index":13367,"location":[-0.904585,43.508753]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,264],"duration":43.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":39.184,"geometry_index":13368,"location":[-0.904109,43.508787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,280],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.379,"geometry_index":13379,"location":[-0.887037,43.511166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,283],"duration":69.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":62.98,"geometry_index":13380,"location":[-0.886038,43.510993]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,260],"duration":7.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.371,"geometry_index":13398,"location":[-0.856258,43.506554]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,256],"duration":87.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":79.109,"geometry_index":13401,"location":[-0.853436,43.507021]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,324],"duration":6.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.684,"geometry_index":13415,"location":[-0.825436,43.494445]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,322],"duration":4.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.734,"geometry_index":13416,"location":[-0.823863,43.492976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,320],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.035,"geometry_index":13417,"location":[-0.822781,43.492041]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,321],"duration":38.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":34.992,"geometry_index":13418,"location":[-0.822487,43.491781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,311],"duration":3.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.555,"geometry_index":13422,"location":[-0.810786,43.483833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,311],"duration":79.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":75.758,"geometry_index":13423,"location":[-0.809609,43.483087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,248],"duration":1.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.574,"geometry_index":13472,"location":[-0.780495,43.479313]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.961,"geometry_index":13473,"location":[-0.779893,43.479479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,251],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.77,"geometry_index":13475,"location":[-0.779521,43.479573]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[77,83,255],"duration":17.402,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":16.961,"geometry_index":13478,"location":[-0.778821,43.479712]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.77181,43.479457],"geometry_index":13495,"admin_index":3,"weight":3.195,"is_urban":false,"turn_weight":1,"duration":2.258,"bearings":[111,282,288],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,293],"duration":30.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":29.297,"geometry_index":13498,"location":[-0.770948,43.479207]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.492,"geometry_index":13529,"location":[-0.760783,43.47381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,291],"duration":23.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":22.273,"geometry_index":13530,"location":[-0.760189,43.473643]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,292],"duration":2.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.035,"geometry_index":13542,"location":[-0.751754,43.470139]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,289],"duration":16.82,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.539,"geometry_index":13545,"location":[-0.750921,43.469922]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,288],"duration":25.414,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.488,"geometry_index":13552,"location":[-0.744278,43.468503]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,297],"duration":117.312,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":108.508,"geometry_index":13560,"location":[-0.733844,43.465281]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,316],"duration":13.492,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.477,"geometry_index":13582,"location":[-0.687436,43.448986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,316],"duration":3.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.469,"geometry_index":13583,"location":[-0.683251,43.445842]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,316],"duration":38.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":35.199,"geometry_index":13584,"location":[-0.682178,43.44504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,276],"duration":1.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.707,"geometry_index":13593,"location":[-0.669111,43.439192]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,274],"duration":3.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.906,"geometry_index":13594,"location":[-0.668374,43.439156]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,271],"duration":1.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.523,"geometry_index":13595,"location":[-0.667099,43.439134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":90.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":83.883,"geometry_index":13596,"location":[-0.666435,43.439117]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,313],"duration":76.629,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":70.867,"geometry_index":13607,"location":[-0.631865,43.432625]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.176,"geometry_index":13617,"location":[-0.603794,43.422916]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,115,279],"duration":25.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.805,"geometry_index":13618,"location":[-0.602829,43.422806]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.592535,43.420753],"geometry_index":13626,"admin_index":3,"weight":44.457,"is_urban":false,"turn_weight":1,"duration":46.988,"bearings":[113,287,290],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":74.52,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":70.785,"geometry_index":13631,"location":[-0.575257,43.414672]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,324],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.121,"geometry_index":13637,"location":[-0.552551,43.400491]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,323],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.891,"geometry_index":13638,"location":[-0.552273,43.400219]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.551549,43.39951],"geometry_index":13639,"admin_index":3,"weight":10.328,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.598,"bearings":[142,323],"out":0,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,321],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.043,"geometry_index":13641,"location":[-0.548815,43.397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":13.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.52,"geometry_index":13642,"location":[-0.548521,43.396754]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.544821,43.393824],"geometry_index":13645,"admin_index":3,"weight":211.227,"is_urban":false,"turn_weight":0.5,"duration":221.836,"bearings":[134,314,316],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":32.188,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":30.57,"geometry_index":13687,"location":[-0.461587,43.359052]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.344,"geometry_index":13697,"location":[-0.448865,43.354243]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[121,122,301],"duration":2.246,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.125,"geometry_index":13698,"location":[-0.448728,43.354184]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,301],"duration":40.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":38.57,"geometry_index":13699,"location":[-0.447936,43.353844]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.433004,43.348659],"geometry_index":13715,"admin_index":3,"weight":6.5,"is_urban":false,"turn_weight":1,"duration":5.66,"bearings":[109,289,290],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":5.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.359,"geometry_index":13717,"location":[-0.430796,43.348123]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,286],"duration":20.887,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.836,"geometry_index":13719,"location":[-0.428568,43.347639]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,103,281],"duration":0.047,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.027,"geometry_index":13726,"location":[-0.420183,43.346263]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":19.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":18.289,"geometry_index":13727,"location":[-0.420167,43.346261]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.412466,43.345404],"geometry_index":13734,"admin_index":3,"weight":5.156,"is_urban":false,"turn_weight":1,"duration":4.383,"bearings":[98,275,278],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,278],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.215,"geometry_index":13735,"location":[-0.410532,43.345217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":144.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":144.441,"geometry_index":13736,"location":[-0.410431,43.345208]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,295],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.531,"geometry_index":13748,"location":[-0.349473,43.331575]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,295],"duration":0.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.086,"geometry_index":13749,"location":[-0.348872,43.33137]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.348844,43.33136],"geometry_index":13750,"admin_index":3,"weight":14.762,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.418,"bearings":[115,120,296],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.343786,43.329733],"geometry_index":13753,"admin_index":3,"weight":10.934,"is_urban":false,"turn_weight":1,"duration":9.715,"bearings":[110,280,294],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,289],"duration":151.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":147.797,"geometry_index":13755,"location":[-0.339711,43.328693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":18.48,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":17.086,"geometry_index":13779,"location":[-0.275141,43.315219]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[105,108,285],"duration":23.438,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":21.672,"geometry_index":13781,"location":[-0.267174,43.31369]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.257903,43.311761],"geometry_index":13785,"admin_index":3,"weight":170.941,"is_urban":false,"turn_weight":1,"duration":183.727,"bearings":[110,286,288],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,316],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.242,"geometry_index":13803,"location":[-0.199336,43.277153]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[136,142,316],"duration":17.398,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":16.52,"geometry_index":13804,"location":[-0.198958,43.276864]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.193937,43.27328],"geometry_index":13807,"admin_index":3,"weight":25.637,"is_urban":false,"turn_weight":1,"duration":25.953,"bearings":[129,308,312],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":3.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.941,"geometry_index":13811,"location":[-0.185071,43.269226]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,299],"duration":62.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":57.402,"geometry_index":13812,"location":[-0.18401,43.268797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":201.137,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":181.016,"geometry_index":13822,"location":[-0.159177,43.261923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[127,307],"duration":1.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.172,"geometry_index":13861,"location":[-0.08279,43.233544]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[127,130,307],"duration":31.27,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":28.137,"geometry_index":13862,"location":[-0.08233,43.233293]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.07231,43.228219],"geometry_index":13867,"admin_index":3,"weight":18.391,"is_urban":false,"turn_weight":1,"duration":19.348,"bearings":[120,303,304],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,269],"duration":55.719,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":50.125,"geometry_index":13873,"location":[-0.064959,43.226759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,257],"duration":68.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":61.422,"geometry_index":13885,"location":[-0.044103,43.232251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,319],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.238,"geometry_index":13895,"location":[-0.018363,43.230301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,322],"duration":48.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":43.227,"geometry_index":13896,"location":[-0.018027,43.229988]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,291],"duration":43.961,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.645,"geometry_index":13907,"location":[-0.003286,43.221344]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,278],"duration":4.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.598,"geometry_index":13914,"location":[0.014072,43.21936]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.015533,43.21915],"geometry_index":13916,"admin_index":4,"weight":17.121,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.527,"bearings":[102,130,281],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.021142,43.218008],"geometry_index":13921,"admin_index":4,"weight":11.629,"is_urban":false,"turn_weight":1,"duration":11.496,"bearings":[111,283,290],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,293],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.855,"geometry_index":13923,"location":[0.024582,43.217014]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,296],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.941,"geometry_index":13924,"location":[0.025148,43.216809]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,295],"duration":11.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.223,"geometry_index":13925,"location":[0.025449,43.216705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,298],"duration":0.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.922,"geometry_index":13929,"location":[0.02912,43.215278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,301],"duration":6.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.477,"geometry_index":13930,"location":[0.029403,43.215152]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,304],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.93,"geometry_index":13932,"location":[0.031416,43.214189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":14.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.652,"geometry_index":13933,"location":[0.031685,43.214047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,306],"duration":1.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.637,"geometry_index":13936,"location":[0.035893,43.211782]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,308],"duration":46.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.379,"geometry_index":13937,"location":[0.036365,43.211514]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.836,"geometry_index":13950,"location":[0.053238,43.209017]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":15.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.559,"geometry_index":13951,"location":[0.053538,43.209062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":34.688,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.672,"geometry_index":13954,"location":[0.059443,43.21006]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.641,"geometry_index":13957,"location":[0.072246,43.212312]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":50.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.594,"geometry_index":13958,"location":[0.072821,43.212412]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,263],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.047,"geometry_index":13964,"location":[0.091753,43.215095]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":29.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.168,"geometry_index":13965,"location":[0.092822,43.215177]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":3.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.312,"geometry_index":13968,"location":[0.10365,43.216008]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.10484,43.216098],"geometry_index":13969,"admin_index":4,"weight":16.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.965,"bearings":[84,100,264],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.110646,43.216539],"geometry_index":13971,"admin_index":4,"weight":9.859,"is_urban":false,"turn_weight":0.5,"duration":9.367,"bearings":[86,246,264],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,281],"duration":23.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.977,"geometry_index":13976,"location":[0.114785,43.21635]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,303],"duration":23.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.746,"geometry_index":13983,"location":[0.123885,43.212624]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,290],"duration":1.461,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.332,"geometry_index":13989,"location":[0.13325,43.20925]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,289],"duration":133.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":120.152,"geometry_index":13990,"location":[0.133856,43.209101]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,285],"duration":14.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.359,"geometry_index":14035,"location":[0.187697,43.197515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,262],"duration":4.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.285,"geometry_index":14046,"location":[0.194237,43.197256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":17.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.578,"geometry_index":14050,"location":[0.196301,43.197618]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,262],"duration":16.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.574,"geometry_index":14059,"location":[0.203286,43.199864]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,290],"duration":33.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.414,"geometry_index":14067,"location":[0.210607,43.198808]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,331],"duration":24.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.016,"geometry_index":14079,"location":[0.218018,43.193727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,334],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":14083,"location":[0.221495,43.18875]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":10.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.473,"geometry_index":14084,"location":[0.22166,43.188462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,345],"duration":3.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.418,"geometry_index":14089,"location":[0.222908,43.185647]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.223199,43.184598],"geometry_index":14091,"admin_index":4,"weight":12.566,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.594,"bearings":[171,206,349],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.224144,43.180766],"geometry_index":14096,"admin_index":4,"weight":8.574,"is_urban":false,"turn_weight":1,"duration":8.211,"bearings":[160,322,344],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,326],"duration":25.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.633,"geometry_index":14102,"location":[0.225551,43.178709]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,278],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.473,"geometry_index":14112,"location":[0.234121,43.175609]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[99,106,278],"duration":9.941,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.188,"geometry_index":14113,"location":[0.234726,43.175547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,285],"duration":1.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.973,"geometry_index":14117,"location":[0.238436,43.174945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,288],"duration":4.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.371,"geometry_index":14118,"location":[0.238825,43.174855]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.240499,43.174345],"geometry_index":14119,"admin_index":4,"weight":1.035,"is_urban":false,"turn_weight":0.5,"duration":0.586,"bearings":[114,287,293],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,294],"duration":1.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.723,"geometry_index":14120,"location":[0.240697,43.174281]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,297],"duration":26.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.363,"geometry_index":14121,"location":[0.241337,43.174047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":2.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.887,"geometry_index":14125,"location":[0.249003,43.169127]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":70.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":63.691,"geometry_index":14126,"location":[0.24952,43.16869]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":4.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.379,"geometry_index":14152,"location":[0.273253,43.161883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,291],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.75,"geometry_index":14155,"location":[0.274933,43.161331]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,283],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.379,"geometry_index":14157,"location":[0.275647,43.161199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,272],"duration":26.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.969,"geometry_index":14159,"location":[0.276533,43.161132]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,323],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.496,"geometry_index":14174,"location":[0.284716,43.160212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,323],"duration":5.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.875,"geometry_index":14175,"location":[0.284826,43.160104]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,328],"duration":199.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":179.777,"geometry_index":14177,"location":[0.285905,43.158825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,189],"duration":38.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":35.965,"geometry_index":14232,"location":[0.321757,43.112578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,279],"duration":15.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.105,"geometry_index":14254,"location":[0.330684,43.107148]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.543,"geometry_index":14262,"location":[0.335162,43.104734]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[138,146,321],"duration":12.77,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.789,"geometry_index":14263,"location":[0.335299,43.104609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,308],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.809,"geometry_index":14268,"location":[0.338734,43.102135]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,308],"duration":5.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.965,"geometry_index":14269,"location":[0.338991,43.101988]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.340686,43.101147],"geometry_index":14271,"admin_index":4,"weight":2.98,"is_urban":false,"turn_weight":0.5,"duration":2.781,"bearings":[117,291,303],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":3.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.93,"geometry_index":14273,"location":[0.341644,43.100786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.5,"geometry_index":14275,"location":[0.3428,43.100394]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,293],"duration":25.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.914,"geometry_index":14276,"location":[0.342997,43.100334]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[90,101,272],"duration":14.996,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.477,"geometry_index":14287,"location":[0.352344,43.099025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":8.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.379,"geometry_index":14290,"location":[0.358419,43.099241]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.361741,43.099454],"geometry_index":14291,"admin_index":4,"weight":56.855,"is_urban":false,"turn_weight":1,"duration":60.402,"bearings":[84,255,265],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[99,106,275],"duration":6.656,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.312,"geometry_index":14307,"location":[0.386194,43.100753]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,279],"duration":16.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.23,"geometry_index":14308,"location":[0.388816,43.100463]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.395072,43.099431],"geometry_index":14309,"admin_index":4,"weight":27.781,"is_urban":false,"turn_weight":1,"duration":28.98,"bearings":[97,277,283],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,258],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.082,"geometry_index":14319,"location":[0.406659,43.099624]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":12.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.266,"geometry_index":14320,"location":[0.407115,43.099712]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.738,"geometry_index":14324,"location":[0.411851,43.100862]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":8.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.867,"geometry_index":14325,"location":[0.412154,43.100949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.664,"geometry_index":14326,"location":[0.415471,43.10189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":123.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":111.59,"geometry_index":14327,"location":[0.415748,43.101963]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[116,122,294],"duration":35.617,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.938,"geometry_index":14352,"location":[0.465286,43.106966]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.47865,43.102675],"geometry_index":14357,"admin_index":4,"weight":247.367,"is_urban":false,"turn_weight":1,"duration":266.352,"bearings":[111,277,290],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.867,"geometry_index":14423,"location":[0.590126,43.1026]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.591435,43.102907],"geometry_index":14424,"admin_index":4,"weight":6.93,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.301,"bearings":[72,100,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.789,"geometry_index":14426,"location":[0.594191,43.103546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":5.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.332,"geometry_index":14427,"location":[0.594502,43.103619]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.596654,43.10412],"geometry_index":14429,"admin_index":4,"weight":8.922,"is_urban":false,"turn_weight":1,"duration":8.348,"bearings":[72,229,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":37.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.34,"geometry_index":14432,"location":[0.599915,43.104878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.742,"geometry_index":14441,"location":[0.614211,43.108749]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":2.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.082,"geometry_index":14442,"location":[0.614508,43.108831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.61535,43.109065],"geometry_index":14443,"admin_index":4,"weight":8.043,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.703,"bearings":[70,101,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.618649,43.109921],"geometry_index":14445,"admin_index":4,"weight":8.098,"is_urban":false,"turn_weight":1,"duration":7.68,"bearings":[72,221,251],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":67.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.449,"geometry_index":14448,"location":[0.621696,43.110636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.684,"geometry_index":14469,"location":[0.649116,43.115028]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,268],"duration":174.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":165.895,"geometry_index":14470,"location":[0.64941,43.115034]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,268],"duration":69.625,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.137,"geometry_index":14524,"location":[0.724726,43.124563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,267],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.762,"geometry_index":14556,"location":[0.755267,43.124929]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.756557,43.124976],"geometry_index":14558,"admin_index":4,"weight":12.156,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.805,"bearings":[87,107,267],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.761756,43.125073],"geometry_index":14562,"admin_index":4,"weight":8.051,"is_urban":false,"turn_weight":1,"duration":7.43,"bearings":[90,251,270],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":4.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.5,"geometry_index":14566,"location":[0.765052,43.125057]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":219.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":202.695,"geometry_index":14568,"location":[0.767152,43.125059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,290],"duration":60.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.582,"geometry_index":14632,"location":[0.861265,43.127417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":7.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.719,"geometry_index":14659,"location":[0.887493,43.123792]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,293],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":14663,"location":[0.89012,43.123065]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.602,"geometry_index":14664,"location":[0.890504,43.122923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,298],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.207,"geometry_index":14666,"location":[0.891399,43.122585]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,304],"duration":13.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.496,"geometry_index":14667,"location":[0.891453,43.122558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":15.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.52,"geometry_index":14669,"location":[0.894439,43.12091]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.895484,43.120292],"geometry_index":14670,"admin_index":4,"weight":21.23,"is_urban":false,"toll_collection":{"name":"Péage de Lestelle","type":"toll_booth"},"turn_weight":15,"duration":6.734,"bearings":[121,309],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[121,182,301],"duration":0.895,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.82,"geometry_index":14671,"location":[0.896098,43.120023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":11.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.266,"geometry_index":14672,"location":[0.896288,43.119939]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.89866,43.118901],"geometry_index":14673,"admin_index":4,"weight":2.34,"is_urban":false,"turn_weight":1,"duration":1.469,"bearings":[119,286,301],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,299],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.199,"geometry_index":14674,"location":[0.89906,43.118741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.133,"geometry_index":14675,"location":[0.899447,43.118578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,300],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.871,"geometry_index":14676,"location":[0.899807,43.118426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,297],"duration":4.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.27,"geometry_index":14677,"location":[0.900452,43.118185]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.902033,43.117663],"geometry_index":14680,"admin_index":4,"weight":9.441,"is_urban":false,"turn_weight":1,"duration":9.133,"bearings":[111,270,292],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,286],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.867,"geometry_index":14685,"location":[0.905411,43.116851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,286],"duration":3.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.387,"geometry_index":14686,"location":[0.905763,43.116778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,285],"duration":1.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.477,"geometry_index":14688,"location":[0.90717,43.1165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,284],"duration":17.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.227,"geometry_index":14689,"location":[0.907783,43.116385]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":1.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.969,"geometry_index":14698,"location":[0.914802,43.116233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,258],"duration":17.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.867,"geometry_index":14699,"location":[0.915216,43.116297]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.91,"geometry_index":14706,"location":[0.921488,43.118437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":5.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.223,"geometry_index":14707,"location":[0.921802,43.118608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":4.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.062,"geometry_index":14709,"location":[0.923581,43.119649]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":13.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.23,"geometry_index":14710,"location":[0.924959,43.12046]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":0.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.371,"geometry_index":14715,"location":[0.929174,43.122904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":28.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.973,"geometry_index":14716,"location":[0.929303,43.122975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,241],"duration":2.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.137,"geometry_index":14725,"location":[0.93921,43.127243]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.527,"geometry_index":14726,"location":[0.94003,43.127587]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.94023,43.127671],"geometry_index":14727,"admin_index":4,"weight":12.621,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.664,"bearings":[58,75,240],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.944842,43.129925],"geometry_index":14732,"admin_index":4,"weight":7.82,"is_urban":false,"turn_weight":0.5,"duration":7.934,"bearings":[53,208,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,230],"duration":8.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.816,"geometry_index":14736,"location":[0.947393,43.131428]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":87.254,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":80.691,"geometry_index":14738,"location":[0.949959,43.133163]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.457,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.879,"geometry_index":14759,"location":[0.965969,43.1564]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":2.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.598,"geometry_index":14760,"location":[0.966901,43.158543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":75.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":69.762,"geometry_index":14761,"location":[0.967259,43.159325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":6.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.645,"geometry_index":14801,"location":[0.979263,43.179888]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":22.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.82,"geometry_index":14803,"location":[0.979535,43.181678]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,209],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.391,"geometry_index":14817,"location":[0.981577,43.188124]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.371,"geometry_index":14818,"location":[0.981674,43.188233]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,213],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.223,"geometry_index":14819,"location":[0.982002,43.188603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.672,"geometry_index":14820,"location":[0.982062,43.188663]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.982238,43.188839],"geometry_index":14821,"admin_index":4,"weight":8.691,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.406,"bearings":[37,68,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.984658,43.190968],"geometry_index":14826,"admin_index":4,"weight":1.348,"is_urban":false,"turn_weight":0.5,"duration":0.922,"bearings":[43,196,222],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,223],"duration":7.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.223,"geometry_index":14827,"location":[0.984912,43.191167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":10.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.102,"geometry_index":14832,"location":[0.987373,43.192603]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.738,"geometry_index":14834,"location":[0.991068,43.194358]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":29.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.562,"geometry_index":14835,"location":[0.991341,43.194486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.637,"geometry_index":14841,"location":[1.002474,43.199737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":3.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.008,"geometry_index":14842,"location":[1.002689,43.199837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":55.941,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.73,"geometry_index":14843,"location":[1.003746,43.200338]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":0.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.602,"geometry_index":14861,"location":[1.023241,43.207784]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":2.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.184,"geometry_index":14862,"location":[1.023492,43.207836]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.024391,43.208036],"geometry_index":14864,"admin_index":4,"weight":13.09,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.176,"bearings":[69,86,252],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.029257,43.210053],"geometry_index":14871,"admin_index":4,"weight":7.559,"is_urban":false,"turn_weight":1,"duration":7.113,"bearings":[51,210,233],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":119.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":110.684,"geometry_index":14874,"location":[1.031716,43.211488]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.383,"geometry_index":14893,"location":[1.073262,43.235775]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":2.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.176,"geometry_index":14894,"location":[1.073409,43.235861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.074224,43.236334],"geometry_index":14895,"admin_index":4,"weight":12.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.41,"bearings":[51,231],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.988,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.906,"geometry_index":14899,"location":[1.078485,43.238826]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":6.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.219,"geometry_index":14900,"location":[1.078806,43.239013]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":98.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":88.871,"geometry_index":14902,"location":[1.080984,43.240284]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.723,"geometry_index":14917,"location":[1.112936,43.258917]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":1.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.418,"geometry_index":14918,"location":[1.113196,43.259067]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":0.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.617,"geometry_index":14919,"location":[1.113712,43.259364]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.113934,43.259494],"geometry_index":14920,"admin_index":4,"weight":5.898,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.562,"bearings":[50,75,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.115985,43.260687],"geometry_index":14922,"admin_index":4,"weight":1.945,"is_urban":false,"turn_weight":1,"duration":1.07,"bearings":[51,200,232],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":7.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.992,"geometry_index":14923,"location":[1.116315,43.260885]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":58.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.223,"geometry_index":14926,"location":[1.118814,43.262337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.195,"geometry_index":14935,"location":[1.137624,43.273308]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.914,"geometry_index":14936,"location":[1.137696,43.27335]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.138356,43.273738],"geometry_index":14937,"admin_index":4,"weight":0.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.156,"bearings":[51,231],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":7.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.051,"geometry_index":14938,"location":[1.138402,43.273765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.477,"geometry_index":14940,"location":[1.140831,43.275185]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":0.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.523,"geometry_index":14941,"location":[1.140992,43.275278]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":7.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.578,"geometry_index":14942,"location":[1.141174,43.275381]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":129.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":119.605,"geometry_index":14944,"location":[1.143472,43.276722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.852,"geometry_index":14970,"location":[1.185343,43.301115]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":1.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.348,"geometry_index":14971,"location":[1.185644,43.301289]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.186116,43.301561],"geometry_index":14972,"admin_index":4,"weight":6.438,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.965,"bearings":[52,232],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":0.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.363,"geometry_index":14973,"location":[1.188341,43.302845]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,232],"duration":0.676,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.605,"geometry_index":14974,"location":[1.188468,43.302918]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,229],"duration":7.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.129,"geometry_index":14975,"location":[1.188675,43.303047]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":70.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":65.527,"geometry_index":14979,"location":[1.191165,43.3045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.312,"geometry_index":14998,"location":[1.214131,43.317853]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.234,"geometry_index":14999,"location":[1.214234,43.317914]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.214995,43.318362],"geometry_index":15000,"admin_index":4,"weight":12.891,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.574,"bearings":[51,231],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":7.082,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.707,"geometry_index":15005,"location":[1.219254,43.320831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":33.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.609,"geometry_index":15009,"location":[1.221713,43.322262]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.301,"geometry_index":15021,"location":[1.233244,43.328953]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.09,"geometry_index":15022,"location":[1.233336,43.329008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,230],"duration":14.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.086,"geometry_index":15023,"location":[1.233688,43.32922]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.715,"geometry_index":15024,"location":[1.237974,43.331713]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,230],"duration":12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.102,"geometry_index":15025,"location":[1.23819,43.331844]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.27,"geometry_index":15029,"location":[1.241778,43.333909]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.801,"geometry_index":15030,"location":[1.241866,43.333957]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.24246,43.33428],"geometry_index":15031,"admin_index":4,"weight":4.996,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.418,"bearings":[54,73,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":11.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.191,"geometry_index":15032,"location":[1.244105,43.33516]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.247521,43.337119],"geometry_index":15036,"admin_index":4,"weight":1.797,"is_urban":false,"turn_weight":1,"duration":0.879,"bearings":[51,199,232],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":7.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.832,"geometry_index":15037,"location":[1.24779,43.337276]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":17.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.91,"geometry_index":15041,"location":[1.250104,43.338618]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.555,"geometry_index":15046,"location":[1.255504,43.341745]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.906,"geometry_index":15047,"location":[1.25569,43.341853]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.551,"geometry_index":15048,"location":[1.255993,43.34203]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.256501,43.342334],"geometry_index":15049,"admin_index":4,"weight":8.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.469,"bearings":[51,70,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[51,213,232],"duration":8.898,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.434,"geometry_index":15053,"location":[1.259082,43.343844]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,231],"duration":53.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.895,"geometry_index":15056,"location":[1.261871,43.345492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.664,"geometry_index":15080,"location":[1.270707,43.359585]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":56.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":53.715,"geometry_index":15081,"location":[1.27078,43.359772]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,201],"duration":5.531,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.094,"geometry_index":15093,"location":[1.278383,43.375619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":11.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.617,"geometry_index":15095,"location":[1.279104,43.37714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.262,"geometry_index":15098,"location":[1.280634,43.380304]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":2.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.164,"geometry_index":15099,"location":[1.28067,43.38038]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.280965,43.381009],"geometry_index":15100,"admin_index":4,"weight":7.77,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.199,"bearings":[19,199],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":7.859,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.449,"geometry_index":15102,"location":[1.282017,43.383202]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":47.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.164,"geometry_index":15105,"location":[1.283065,43.385377]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":6.977,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.438,"geometry_index":15120,"location":[1.289268,43.398692]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":111.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":103.145,"geometry_index":15124,"location":[1.290211,43.40064]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.84,"geometry_index":15158,"location":[1.307797,43.431158]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.156,"geometry_index":15159,"location":[1.30795,43.431405]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.308343,43.432037],"geometry_index":15160,"admin_index":4,"weight":8.207,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.879,"bearings":[24,45,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[9,166,193],"duration":7.195,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.633,"geometry_index":15166,"location":[1.309458,43.434425]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,355],"duration":23.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.645,"geometry_index":15171,"location":[1.309652,43.436492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.32,"geometry_index":15177,"location":[1.307912,43.443268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":24.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.848,"geometry_index":15178,"location":[1.3078,43.443652]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":1.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.707,"geometry_index":15184,"location":[1.305876,43.450471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":38.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":38.492,"geometry_index":15185,"location":[1.305742,43.450954]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":0.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.172,"geometry_index":15209,"location":[1.31209,43.462099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,209],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.113,"geometry_index":15210,"location":[1.312127,43.462147]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.312629,43.462884],"geometry_index":15212,"admin_index":4,"weight":20.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.199,"bearings":[24,206],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":12.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.379,"geometry_index":15218,"location":[1.315592,43.46793]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":5.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.656,"geometry_index":15222,"location":[1.317328,43.470901]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[1.318126,43.47226],"geometry_index":15224,"admin_index":4,"weight":40.07,"is_urban":false,"turn_weight":15,"duration":24.469,"bearings":[23,42,203],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.322936,43.4781],"geometry_index":15236,"admin_index":4,"weight":6.176,"is_urban":false,"turn_weight":0.5,"duration":5.559,"bearings":[39,189,219],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,218],"duration":93.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":93.23,"geometry_index":15238,"location":[1.324312,43.479367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.871,"geometry_index":15282,"location":[1.344741,43.50163]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":5.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.223,"geometry_index":15283,"location":[1.345034,43.50178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":4.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.418,"geometry_index":15284,"location":[1.34651,43.502566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":2.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.523,"geometry_index":15285,"location":[1.347726,43.503175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,235],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.34,"geometry_index":15287,"location":[1.348416,43.503527]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,237],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9,"geometry_index":15288,"location":[1.349069,43.50383]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":12.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.535,"geometry_index":15290,"location":[1.351168,43.5047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.602,"geometry_index":15292,"location":[1.35211,43.505201]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.352232,43.505268],"geometry_index":15293,"admin_index":4,"weight":23.758,"is_urban":false,"toll_collection":{"name":"Péage de Muret","type":"toll_booth"},"turn_weight":15,"duration":8.758,"bearings":[52,233],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":9.426,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.406,"geometry_index":15294,"location":[1.353112,43.505771]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":2.352,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.344,"geometry_index":15295,"location":[1.355008,43.506871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,231],"duration":5.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.266,"geometry_index":15296,"location":[1.355549,43.507185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":95.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":98.098,"geometry_index":15298,"location":[1.357087,43.508021]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":18.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.531,"geometry_index":15328,"location":[1.381961,43.52539]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,216],"duration":1.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.453,"geometry_index":15333,"location":[1.385424,43.529073]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.385711,43.529323],"geometry_index":15334,"admin_index":4,"weight":3.621,"is_urban":true,"turn_weight":0.75,"duration":2.691,"bearings":[36,204,220],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":10.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.57,"geometry_index":15335,"location":[1.38621,43.529824]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,216],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.375,"geometry_index":15338,"location":[1.388243,43.531839]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":2.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.254,"geometry_index":15339,"location":[1.388473,43.532084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.629,"geometry_index":15340,"location":[1.388848,43.53248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":3.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.586,"geometry_index":15341,"location":[1.389466,43.533153]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[33,68,214],"duration":31.398,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":33.73,"geometry_index":15342,"location":[1.390082,43.533819]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[36,196,215],"duration":7.848,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.43,"geometry_index":15349,"location":[1.395811,43.53999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":54.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":58.309,"geometry_index":15352,"location":[1.397256,43.541404]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.344,"geometry_index":15367,"location":[1.407198,43.551221]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.407712,43.551796],"geometry_index":15368,"admin_index":4,"weight":10.727,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":9.77,"bearings":[32,53,213],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.409537,43.553926],"geometry_index":15371,"admin_index":4,"weight":9.41,"is_urban":true,"turn_weight":0.5,"duration":8.117,"bearings":[33,175,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":5.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.176,"geometry_index":15373,"location":[1.41106,43.555619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,214],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.387,"geometry_index":15375,"location":[1.412145,43.556779]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.412412,43.557022],"geometry_index":15376,"admin_index":4,"weight":16.957,"is_urban":true,"turn_weight":0.5,"duration":14.984,"bearings":[35,206,219],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":15.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":16.531,"geometry_index":15380,"location":[1.415534,43.560134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,203],"duration":8.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":9.082,"geometry_index":15387,"location":[1.418433,43.563365]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[12,192],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":15392,"location":[1.419178,43.565366]}]},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Take the ramp on the left toward Albi.","announcement":"In a quarter mile, Take the ramp on the left toward Albi.","distanceAlongGeometry":282.911},{"ssmlAnnouncement":"Take the ramp on the left toward Albi, Foix.","announcement":"Take the ramp on the left toward Albi, Foix.","distanceAlongGeometry":147.778}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[1.419522,43.566497],"geometry_index":15394,"admin_index":4,"weight":3.129,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.789,"bearings":[7,15,192],"out":1,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"bearings":[11,195],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":15395,"location":[1.419712,43.567024]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Albi"},{"type":"text","text":"/"},{"type":"text","text":"Foix"}],"type":"turn","modifier":"slight left","text":"Albi / Foix"},"distanceAlongGeometry":312.911}],"destinations":"E 80: Albi, Foix, Périphérique extérieur, Montpellier, Toulouse-Centre, Empalot","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 80 toward Albi/Foix.","modifier":"slight right","bearing_after":15,"bearing_before":12,"location":[1.419522,43.566497]},"speedLimitSign":"vienna","name":"","weight_typical":17.922,"duration_typical":15.938,"duration":15.938,"distance":312.911,"driving_side":"right","weight":17.922,"mode":"driving","ref":"E 80","geometry":"ayabrAcosuA}_@{Jm`@iHoNoCaIuBkGwCwFyDgEqEaDaFoEaJiDkLqGib@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6630.205},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 61.","announcement":"In 1 mile, Keep left to take A 61.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 61.","announcement":"In a half mile, Keep left to take A 61.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 61 toward Barcelone, Montpellier.","announcement":"Keep left to take A 61 toward Barcelone, Montpellier.","distanceAlongGeometry":190}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[69,104,251],"duration":5.91,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":6.629,"geometry_index":15405,"location":[1.421335,43.568733]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,249],"duration":7.855,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":8.836,"geometry_index":15406,"location":[1.421544,43.56879]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.421801,43.568907],"geometry_index":15407,"admin_index":4,"weight":11.352,"is_urban":true,"turn_weight":6.75,"duration":4.109,"bearings":[72,238,253],"out":0,"in":1,"turn_duration":0.018,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.07,"geometry_index":15408,"location":[1.422984,43.569188]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":6.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.66,"geometry_index":15409,"location":[1.423515,43.569314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":11.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":13.012,"geometry_index":15410,"location":[1.42557,43.569802]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.429495,43.570331],"geometry_index":15417,"admin_index":4,"weight":7.57,"is_urban":true,"turn_weight":0.5,"duration":6.438,"bearings":[81,246,261],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,261],"duration":3.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.918,"geometry_index":15419,"location":[1.431638,43.570575]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":5.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.594,"geometry_index":15420,"location":[1.43283,43.570715]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,250],"duration":6.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.898,"geometry_index":15424,"location":[1.434475,43.570996]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,225],"duration":7.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.168,"geometry_index":15432,"location":[1.436173,43.571872]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":2.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.566,"geometry_index":15433,"location":[1.437896,43.573142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":1.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.133,"geometry_index":15434,"location":[1.438404,43.57352]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.07,"geometry_index":15435,"location":[1.43863,43.573686]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[41,58,224],"duration":4.93,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.395,"geometry_index":15436,"location":[1.43903,43.573981]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":10.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.57,"geometry_index":15440,"location":[1.440087,43.574791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,264],"duration":1.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.512,"geometry_index":15450,"location":[1.442825,43.5759]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.44325,43.575901],"geometry_index":15453,"admin_index":4,"weight":7.438,"is_urban":true,"turn_weight":0.5,"duration":6.18,"bearings":[98,246,271],"out":0,"in":2,"turn_duration":0.013,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":16.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":18.387,"geometry_index":15459,"location":[1.444986,43.575486]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.258,"geometry_index":15465,"location":[1.449348,43.573864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.450115,43.573579],"geometry_index":15466,"admin_index":4,"weight":20.031,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":17.812,"bearings":[117,148,297],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.455397,43.572283],"geometry_index":15481,"admin_index":4,"weight":1.773,"is_urban":true,"turn_weight":0.5,"duration":1.125,"bearings":[94,249,274],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[94,274],"duration":5.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.844,"geometry_index":15482,"location":[1.455743,43.572264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,273],"duration":4.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.578,"geometry_index":15484,"location":[1.45769,43.572174]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[94,274],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.586,"geometry_index":15485,"location":[1.45927,43.572094]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":2.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.449,"geometry_index":15486,"location":[1.460009,43.572054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,273],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.07,"geometry_index":15487,"location":[1.460696,43.572026]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[92,273],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.762,"geometry_index":15488,"location":[1.460999,43.572014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,270],"duration":10.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":12.023,"geometry_index":15490,"location":[1.461742,43.572005]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,230],"duration":3.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.363,"geometry_index":15501,"location":[1.464841,43.572882]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.46575,43.573454],"geometry_index":15504,"admin_index":4,"weight":21.242,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":18.102,"bearings":[45,56,230],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,300],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.395,"geometry_index":15525,"location":[1.470979,43.573765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[125,300],"duration":23.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":27.227,"geometry_index":15526,"location":[1.471299,43.573633]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,311],"duration":3.09,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.609,"geometry_index":15533,"location":[1.477134,43.570225]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,309],"duration":0.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.16,"geometry_index":15534,"location":[1.477968,43.569727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,311],"duration":6.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.09,"geometry_index":15535,"location":[1.478231,43.569563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":16.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.523,"geometry_index":15537,"location":[1.479858,43.568579]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,318],"duration":4.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.75,"geometry_index":15544,"location":[1.484122,43.565567]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[138,146,318],"duration":11.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":13.539,"geometry_index":15546,"location":[1.485081,43.564784]},{"bearings":[140,320],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":15549,"location":[1.487778,43.562586]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Barcelone"},{"type":"text","text":"/"},{"type":"text","text":"Montpellier"}],"type":"fork","modifier":"left","text":"Barcelone / Montpellier"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 61","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 61"}],"type":"fork","modifier":"left","text":"A 61"},"distanceAlongGeometry":6653.538}],"destinations":"Albi, Foix, Périphérique Exterieur, Toulouse Centre","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the ramp on the left toward Albi/Foix.","modifier":"slight left","bearing_after":69,"bearing_before":71,"location":[1.421335,43.568733]},"speedLimitSign":"vienna","name":"","weight_typical":310.156,"duration_typical":265.441,"duration":265.441,"distance":6653.538,"driving_side":"right","weight":310.156,"mode":"driving","ref":"A 620; E 80","geometry":"ydfbrAm`wuAqBaLiFaOqP}hA{Fe`@o]m_CaB{JaCyVcBwT_C{\\iDem@sEsq@{Ee|@cFc~@cGyeAwGoiAiDsj@_BkR}B}RiD{RoEmRqEcPsEyL{DsJqEoJkFaJwDsGoH}KknAujBsVw^kIcMmQ_X{OqSyLkQ}IwM_HkKiTy[sIuNwFkLiDeJeDwJ_EmOuCwNyBmPuAeP}@oVMuJ?gFJsFj@iNtA}QpBwOvCqQ~DoQpFmStNui@~Io\\tQcq@zNci@nNsh@rWqaAxP}n@|Je_@fIsZvKaa@pIg[`FcTtBiJrBgLlDcV|BmSbBsRtAcQ`A}Rj@gSj@uSb@cSd@sTlAuo@dB_hA~CwaBnAem@v@}i@V}QTo[C}Ps@eX{@cPeAuNyA_OsB}NyC}PwDcQmFgRyEkNwGyPcHgNkHcNgFeIcRo^gHmKcEiJcE_K}DuM{BaJmEuOiD}TwBkTiAkQo@gPOiN@cMV{Kd@eO|@oPdBuPvA{KfBuJpGkZ`GkR|@uCfG_SvXoq@|h@gdAjY}j@~\\_r@fo@gqAx[{o@zJ{Qb^cs@fImOdg@qbAhTca@pXwh@nY_h@hZ{f@l`@mm@dl@az@nOgTvLcPfSoWt[mb@hl@gx@zx@wfAda@qf@zHoJdH_IjJkIzJkH`HmEnLoGxLcFrQqGpq@}Udr@yU"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 86 miles.","announcement":"Continue for 86 miles.","distanceAlongGeometry":139130.781},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 9.","announcement":"In 1 mile, Keep left to take A 9.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 9.","announcement":"In a half mile, Keep left to take A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 9, E 15 toward Lyon, Montpellier.","announcement":"Keep left to take A 9, E 15 toward Lyon, Montpellier.","distanceAlongGeometry":210}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[155,170,342],"duration":1.172,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.312,"geometry_index":15559,"location":[1.48966,43.559401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,335],"duration":10.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":12.07,"geometry_index":15560,"location":[1.489833,43.559138]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":16.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":18.566,"geometry_index":15564,"location":[1.491004,43.55657]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.493628,43.552887],"geometry_index":15574,"admin_index":4,"weight":1.301,"is_urban":true,"turn_weight":0.5,"duration":0.738,"bearings":[144,317,329],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,324],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.465,"geometry_index":15575,"location":[1.493762,43.552751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,326],"duration":14.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":15.758,"geometry_index":15577,"location":[1.495011,43.551402]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,331],"duration":20.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":21.965,"geometry_index":15583,"location":[1.497581,43.548523]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,330],"duration":6.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.594,"geometry_index":15593,"location":[1.499528,43.545194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,317],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.055,"geometry_index":15595,"location":[1.499893,43.544879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.461,"geometry_index":15596,"location":[1.500037,43.544789]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.500194,43.544691],"geometry_index":15597,"admin_index":4,"weight":21.109,"is_urban":true,"toll_collection":{"name":"Péage de Toulouse Sud Ouest","type":"toll_booth"},"turn_weight":15,"duration":5.684,"bearings":[129,311],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,309],"duration":4.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.293,"geometry_index":15598,"location":[1.500488,43.54452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.501245,43.544287],"geometry_index":15600,"admin_index":4,"weight":20.539,"is_urban":false,"turn_weight":16.5,"duration":3.867,"bearings":[125,289,324],"out":0,"in":1,"turn_duration":0.02,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,318],"duration":122.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":122.027,"geometry_index":15604,"location":[1.502388,43.543552]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":35.512,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.727,"geometry_index":15627,"location":[1.527421,43.513305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":70.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.57,"geometry_index":15632,"location":[1.534079,43.504233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.148,"geometry_index":15646,"location":[1.547632,43.486493]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.207,"geometry_index":15647,"location":[1.547886,43.4862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.548154,43.485891],"geometry_index":15648,"admin_index":4,"weight":12.191,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.199,"bearings":[147,182,328],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,326],"duration":4.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.371,"geometry_index":15652,"location":[1.551028,43.482732]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.5521,43.481623],"geometry_index":15654,"admin_index":4,"weight":7.121,"is_urban":false,"turn_weight":1,"duration":6.633,"bearings":[144,304,325],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,324],"duration":3.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.559,"geometry_index":15656,"location":[1.553667,43.480062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,323],"duration":86.379,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":79.891,"geometry_index":15657,"location":[1.554598,43.479168]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,303],"duration":3.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.961,"geometry_index":15677,"location":[1.580264,43.462453]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.581331,43.461923],"geometry_index":15679,"admin_index":4,"weight":11.246,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.168,"bearings":[124,153,304],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.584459,43.460399],"geometry_index":15683,"admin_index":4,"weight":6.184,"is_urban":false,"turn_weight":1,"duration":5.477,"bearings":[123,283,304],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,305],"duration":53.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.379,"geometry_index":15685,"location":[1.586486,43.459409]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,318],"duration":1.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.906,"geometry_index":15703,"location":[1.604232,43.448067]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,318],"duration":14.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.133,"geometry_index":15704,"location":[1.604749,43.447646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.922,"geometry_index":15710,"location":[1.608429,43.444464]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":14.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.836,"geometry_index":15711,"location":[1.608668,43.444247]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.242,"geometry_index":15715,"location":[1.612105,43.441129]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":1.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.586,"geometry_index":15716,"location":[1.612416,43.440847]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.612808,43.440491],"geometry_index":15717,"admin_index":4,"weight":19.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.07,"bearings":[141,160,321],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.618261,43.435994],"geometry_index":15723,"admin_index":4,"weight":7.723,"is_urban":false,"turn_weight":1,"duration":7.273,"bearings":[135,293,316],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,313],"duration":32.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.219,"geometry_index":15726,"location":[1.620203,43.434637]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,302],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.379,"geometry_index":15734,"location":[1.629807,43.429371]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,302],"duration":6.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.148,"geometry_index":15735,"location":[1.630295,43.429151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":15.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.738,"geometry_index":15738,"location":[1.632482,43.428226]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.699,"geometry_index":15742,"location":[1.637431,43.42622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,299],"duration":17.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.156,"geometry_index":15745,"location":[1.641651,43.424526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":15749,"location":[1.647317,43.422243]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[120,132,300],"duration":38.113,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.25,"geometry_index":15750,"location":[1.64783,43.422026]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.65975,43.416013],"geometry_index":15759,"admin_index":4,"weight":5.75,"is_urban":false,"turn_weight":1,"duration":5.141,"bearings":[129,296,309],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,310],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.418,"geometry_index":15761,"location":[1.661315,43.415071]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[131,222,310],"duration":1.668,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.535,"geometry_index":15763,"location":[1.66178,43.414786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,311],"duration":39.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.805,"geometry_index":15764,"location":[1.662281,43.414474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,315],"duration":46.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":42.707,"geometry_index":15771,"location":[1.673459,43.406591]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,304],"duration":1.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.711,"geometry_index":15782,"location":[1.687822,43.39867]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,303],"duration":3.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.629,"geometry_index":15784,"location":[1.688409,43.39839]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.689656,43.397791],"geometry_index":15785,"admin_index":4,"weight":4.664,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.93,"bearings":[123,130,303],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":9.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.828,"geometry_index":15787,"location":[1.691202,43.397048]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.694176,43.395696],"geometry_index":15790,"admin_index":4,"weight":5.363,"is_urban":false,"turn_weight":1,"duration":4.613,"bearings":[120,286,301],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,298],"duration":6.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.75,"geometry_index":15792,"location":[1.695777,43.395047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,295],"duration":16.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.617,"geometry_index":15795,"location":[1.697938,43.394274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,287],"duration":2.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.035,"geometry_index":15801,"location":[1.703913,43.392662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":4.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.434,"geometry_index":15802,"location":[1.704684,43.392508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":2.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.672,"geometry_index":15804,"location":[1.706409,43.392196]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.707449,43.392034],"geometry_index":15806,"admin_index":4,"weight":22.637,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.852,"bearings":[100,117,282],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.716563,43.390906],"geometry_index":15814,"admin_index":4,"weight":10.582,"is_urban":false,"turn_weight":1,"duration":10.094,"bearings":[105,270,284],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,292],"duration":24.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.613,"geometry_index":15818,"location":[1.720362,43.389959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":2.801,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.574,"geometry_index":15827,"location":[1.727965,43.38621]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":30.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.363,"geometry_index":15828,"location":[1.728745,43.385698]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,311],"duration":82.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":73.945,"geometry_index":15834,"location":[1.737296,43.380134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":67.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.984,"geometry_index":15851,"location":[1.757974,43.369459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":12.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.137,"geometry_index":15870,"location":[1.776723,43.362815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":77.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":72.039,"geometry_index":15875,"location":[1.779846,43.361354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,292],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.879,"geometry_index":15898,"location":[1.802129,43.355317]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,294],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":15899,"location":[1.802813,43.355095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,296],"duration":0.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.387,"geometry_index":15900,"location":[1.803437,43.354878]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.803569,43.354832],"geometry_index":15901,"admin_index":4,"weight":2.918,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.16,"bearings":[117,128,296],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,297],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":15902,"location":[1.804583,43.354461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":14.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.797,"geometry_index":15903,"location":[1.804856,43.354355]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.809322,43.352184],"geometry_index":15909,"admin_index":4,"weight":4.125,"is_urban":false,"turn_weight":1,"duration":3.387,"bearings":[129,284,309],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,309],"duration":335.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":309.996,"geometry_index":15910,"location":[1.810494,43.351496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,307],"duration":13.801,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.086,"geometry_index":16001,"location":[1.934339,43.292682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,301],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.457,"geometry_index":16005,"location":[1.938938,43.29058]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.41,"geometry_index":16006,"location":[1.939096,43.290516]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.939942,43.290172],"geometry_index":16008,"admin_index":4,"weight":15.523,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.941,"bearings":[117,134,299],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.945669,43.288209],"geometry_index":16014,"admin_index":4,"weight":11.84,"is_urban":false,"turn_weight":1,"duration":11.43,"bearings":[111,273,293],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":59.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":55.254,"geometry_index":16018,"location":[1.950023,43.287093]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":28.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.781,"geometry_index":16035,"location":[1.973695,43.283707]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,300],"duration":3.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.992,"geometry_index":16045,"location":[1.984358,43.280229]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.985465,43.279725],"geometry_index":16047,"admin_index":4,"weight":25.637,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.734,"bearings":[123,138,302],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.994599,43.275236],"geometry_index":16053,"admin_index":4,"weight":12.723,"is_urban":false,"turn_weight":1,"duration":13.035,"bearings":[124,291,304],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":257.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":238.574,"geometry_index":16057,"location":[1.998951,43.273074]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,292],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.523,"geometry_index":16116,"location":[2.090994,43.238229]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":2.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.203,"geometry_index":16117,"location":[2.091206,43.238169]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.092085,43.23792],"geometry_index":16119,"admin_index":4,"weight":16.629,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.512,"bearings":[111,124,291],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.098533,43.236028],"geometry_index":16124,"admin_index":4,"weight":7.332,"is_urban":false,"turn_weight":0.5,"duration":7.012,"bearings":[115,279,294],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":20,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.492,"geometry_index":16128,"location":[2.101337,43.235026]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":2.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.863,"geometry_index":16135,"location":[2.108821,43.231531]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.109878,43.230966],"geometry_index":16136,"admin_index":4,"weight":22.645,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.855,"bearings":[126,139,306],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.118295,43.227899],"geometry_index":16147,"admin_index":4,"weight":11.551,"is_urban":false,"turn_weight":1,"duration":11.129,"bearings":[104,275,287],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,276],"duration":33.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.051,"geometry_index":16152,"location":[2.122667,43.227307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":0.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.633,"geometry_index":16163,"location":[2.13598,43.22837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":22.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.586,"geometry_index":16164,"location":[2.136247,43.228391]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,281],"duration":179.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":161.523,"geometry_index":16172,"location":[2.145287,43.228051]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":3.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.617,"geometry_index":16221,"location":[2.214837,43.219291]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.216344,43.219034],"geometry_index":16222,"admin_index":4,"weight":21.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.141,"bearings":[104,122,283],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.224854,43.21672],"geometry_index":16231,"admin_index":4,"weight":10.699,"is_urban":false,"turn_weight":1,"duration":10.496,"bearings":[119,255,297],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,303],"duration":14.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.117,"geometry_index":16234,"location":[2.228397,43.21518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,313],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.312,"geometry_index":16239,"location":[2.232778,43.212661]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[135,315],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.996,"geometry_index":16242,"location":[2.234137,43.211705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,315],"duration":132.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":122.57,"geometry_index":16243,"location":[2.234437,43.211484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,288],"duration":20.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.258,"geometry_index":16295,"location":[2.288439,43.197605]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":0.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.324,"geometry_index":16301,"location":[2.297219,43.196087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,282],"duration":4.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.453,"geometry_index":16302,"location":[2.29736,43.196065]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.299338,43.19572],"geometry_index":16304,"admin_index":4,"weight":10.438,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.715,"bearings":[104,122,283],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.303387,43.194887],"geometry_index":16308,"admin_index":4,"weight":12.617,"is_urban":false,"turn_weight":0.5,"duration":12.434,"bearings":[108,270,287],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":19.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.559,"geometry_index":16312,"location":[2.30799,43.193681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,277],"duration":2.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.18,"geometry_index":16320,"location":[2.315212,43.192307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,275],"duration":40.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":39.73,"geometry_index":16321,"location":[2.316059,43.192253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,258],"duration":3.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":16342,"location":[2.331798,43.194528]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,264],"duration":2.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.91,"geometry_index":16345,"location":[2.333334,43.194662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,269],"duration":4.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.164,"geometry_index":16347,"location":[2.334482,43.194689]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,274],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.855,"geometry_index":16349,"location":[2.336119,43.194638]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,275],"duration":33.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.711,"geometry_index":16350,"location":[2.336468,43.194615]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,285],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.879,"geometry_index":16367,"location":[2.348726,43.191534]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,284],"duration":33.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.91,"geometry_index":16368,"location":[2.349078,43.19147]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,258],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.027,"geometry_index":16384,"location":[2.361824,43.19172]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,257],"duration":12.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.203,"geometry_index":16385,"location":[2.362238,43.191787]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[87,94,265],"duration":12.59,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.27,"geometry_index":16390,"location":[2.366847,43.192295]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.371363,43.192198],"geometry_index":16395,"admin_index":4,"weight":12.543,"is_urban":false,"turn_weight":1,"duration":11.848,"bearings":[98,263,277],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,286],"duration":5.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.961,"geometry_index":16400,"location":[2.37548,43.191553]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,290],"duration":118.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":112.234,"geometry_index":16402,"location":[2.377186,43.191113]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":0.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.395,"geometry_index":16455,"location":[2.415659,43.192202]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":2.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.973,"geometry_index":16456,"location":[2.415772,43.19227]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.416344,43.192615],"geometry_index":16457,"admin_index":4,"weight":11.09,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.684,"bearings":[52,68,230],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[59,210,234],"duration":9.703,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.207,"geometry_index":16461,"location":[2.419728,43.194516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,248],"duration":147.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":136.734,"geometry_index":16466,"location":[2.42358,43.195923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,295],"duration":24.223,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.781,"geometry_index":16522,"location":[2.483793,43.179894]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":1.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.844,"geometry_index":16531,"location":[2.494032,43.177504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,279],"duration":110.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":102.535,"geometry_index":16532,"location":[2.494788,43.177416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,289],"duration":3.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.926,"geometry_index":16580,"location":[2.536025,43.178133]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.537221,43.177885],"geometry_index":16582,"admin_index":4,"weight":24.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.184,"bearings":[103,146,284],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.547125,43.178079],"geometry_index":16594,"admin_index":4,"weight":2.371,"is_urban":false,"turn_weight":1,"duration":1.504,"bearings":[74,217,256],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":8.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.859,"geometry_index":16595,"location":[2.547677,43.178198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":18.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.352,"geometry_index":16598,"location":[2.550842,43.178909]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.277,"geometry_index":16606,"location":[2.55798,43.180014]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,267],"duration":93.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":83.867,"geometry_index":16607,"location":[2.558508,43.180032]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":7.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.332,"geometry_index":16654,"location":[2.598426,43.175374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":36.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.973,"geometry_index":16657,"location":[2.600779,43.173873]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":9.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.848,"geometry_index":16677,"location":[2.61564,43.170174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":32.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.109,"geometry_index":16683,"location":[2.619896,43.170904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":59.379,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":53.434,"geometry_index":16694,"location":[2.633503,43.174298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,259],"duration":88.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":81.637,"geometry_index":16722,"location":[2.659667,43.174017]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.023,"geometry_index":16766,"location":[2.698129,43.171367]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,291],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.488,"geometry_index":16767,"location":[2.699038,43.171113]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.699231,43.171061],"geometry_index":16768,"admin_index":4,"weight":0.859,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.938,"bearings":[111,122,290],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,291],"duration":21.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.668,"geometry_index":16769,"location":[2.69958,43.170965]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.707684,43.169081],"geometry_index":16778,"admin_index":4,"weight":10.906,"is_urban":false,"turn_weight":1,"duration":10.715,"bearings":[104,270,285],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,281],"duration":58.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.02,"geometry_index":16782,"location":[2.71187,43.168406]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.484,"geometry_index":16802,"location":[2.73515,43.168093]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":3.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.543,"geometry_index":16803,"location":[2.735357,43.168112]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.736915,43.168267],"geometry_index":16804,"admin_index":4,"weight":0.441,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.5,"bearings":[81,96,262],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":5.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.316,"geometry_index":16805,"location":[2.737107,43.16829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":10.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.277,"geometry_index":16806,"location":[2.739435,43.168568]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[79,245,259],"duration":7.977,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.371,"geometry_index":16809,"location":[2.743386,43.169096]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":1.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.195,"geometry_index":16811,"location":[2.746518,43.16955]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":3.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.984,"geometry_index":16812,"location":[2.747021,43.169621]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":4.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.191,"geometry_index":16813,"location":[2.748279,43.169786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,261],"duration":3.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.902,"geometry_index":16815,"location":[2.750057,43.169997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":25.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.414,"geometry_index":16816,"location":[2.751308,43.170114]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,270],"duration":42.348,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.105,"geometry_index":16825,"location":[2.762547,43.170353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,270],"duration":69.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.18,"geometry_index":16831,"location":[2.781385,43.170261]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,284],"duration":8.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.977,"geometry_index":16854,"location":[2.807247,43.170449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,288],"duration":45.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.551,"geometry_index":16858,"location":[2.810981,43.16953]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":19.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.648,"geometry_index":16874,"location":[2.830584,43.166878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,294],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.328,"geometry_index":16884,"location":[2.838143,43.165546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":8.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.934,"geometry_index":16885,"location":[2.838674,43.165358]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":3.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.184,"geometry_index":16889,"location":[2.841796,43.164108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.02,"geometry_index":16891,"location":[2.843038,43.163599]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.844182,43.163127],"geometry_index":16892,"admin_index":4,"weight":25.332,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.391,"bearings":[119,137,299],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.853728,43.159207],"geometry_index":16896,"admin_index":4,"weight":5.535,"is_urban":false,"turn_weight":1,"duration":4.91,"bearings":[119,283,299],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":6.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.82,"geometry_index":16898,"location":[2.855469,43.158496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":12.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.137,"geometry_index":16900,"location":[2.857701,43.157578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":42.754,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.473,"geometry_index":16901,"location":[2.861965,43.155823]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,263],"duration":20.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.297,"geometry_index":16916,"location":[2.878048,43.151812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":29.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.953,"geometry_index":16927,"location":[2.885557,43.154196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":5.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.82,"geometry_index":16942,"location":[2.897062,43.15635]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,274],"duration":33.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.355,"geometry_index":16944,"location":[2.899231,43.156204]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":37.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.035,"geometry_index":16955,"location":[2.91253,43.158255]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,284],"duration":25.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.633,"geometry_index":16969,"location":[2.927528,43.15906]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":8.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.148,"geometry_index":16982,"location":[2.937785,43.159938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,265],"duration":17.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.062,"geometry_index":16986,"location":[2.941052,43.160377]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":9.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.734,"geometry_index":16996,"location":[2.947775,43.15918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,314],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.336,"geometry_index":17002,"location":[2.950926,43.157319]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.951335,43.157],"geometry_index":17003,"admin_index":4,"weight":9.773,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.887,"bearings":[132,141,317],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,300],"duration":19.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.398,"geometry_index":17008,"location":[2.954756,43.155008]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.96246,43.153513],"geometry_index":17016,"admin_index":4,"weight":12.441,"is_urban":false,"turn_weight":1,"duration":12.051,"bearings":[99,260,279],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":22.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.867,"geometry_index":17020,"location":[2.967052,43.152976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,280],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.434,"geometry_index":17024,"location":[2.975604,43.151962]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.844,"geometry_index":17025,"location":[2.976152,43.151886]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":2.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.484,"geometry_index":17026,"location":[2.977108,43.151747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,281],"duration":0.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.898,"geometry_index":17027,"location":[2.977938,43.151626]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[102,113,283],"duration":2.145,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.125,"geometry_index":17028,"location":[2.978238,43.151575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.605,"geometry_index":17029,"location":[2.978948,43.151467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":3.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.105,"geometry_index":17030,"location":[2.979491,43.151381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":7.66,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.66,"geometry_index":17031,"location":[2.980554,43.151215]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,282],"duration":2.414,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":2.414,"geometry_index":17032,"location":[2.983166,43.150794]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,280],"duration":11.285,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":11.285,"geometry_index":17034,"location":[2.983955,43.150688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,225],"duration":4.367,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":4.367,"geometry_index":17043,"location":[2.987037,43.151529]},{"bearings":[12,199],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":17046,"location":[2.987632,43.152391]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Lyon"},{"type":"text","text":"/"},{"type":"text","text":"Montpellier"}],"type":"fork","modifier":"left","text":"Lyon / Montpellier"},"distanceAlongGeometry":139160.781}],"destinations":"A 61: Barcelone, Montpellier, Carcassonne, Foix","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 61 toward Barcelone/Montpellier/Carcassonne/Foix.","modifier":"slight left","bearing_after":155,"bearing_before":162,"location":[1.48966,43.559401]},"speedLimitSign":"vienna","name":"","weight_typical":4047.766,"duration_typical":4298.305,"duration":4298.305,"distance":139160.781,"driving_side":"right","weight":4047.766,"mode":"driving","ref":"E 80","geometry":"q}sarAwn|yAlOyI`^aM``@wMb`Aw[f^sN`HkCxQsHn[eOvWgMlKgGlY{QfV{QjWwRfQ{Ohk@}c@nGkG~YiWhx@wt@dj@sf@|d@wa@xc@q`@jWcUjP_NfSqNr\\wQfW}N~LkGnMqFrYaJzQiGbQ_HxTaLhSwL|R{NlHyHfI_LrD_HbEyHtIkQjGyUdEoWtJ{UtJ}QdIgMjKkN`OkOzr@op@b^a]p}@_{@|aBk}AtzC_tCrqBqhBx^c\\nqAuhAbfAu}@j}B{iBxpAyaArsAgbArw@}k@lg@k]~o@md@bfAor@~nBorAbnAuu@~xA__A||Bk|AjuCyqBtiBsmAjy@si@daDkvB~|DmjCfvBivAdd@kZhd@oZjpAm{@t}DojCnzC_qB`dAgr@`cAar@fnByrAbhAex@~cAat@r~@wr@~m@ae@nn@cf@b|@mr@ba@{[hQ{NhRwOfe@u`@p~@}w@hy@{t@hd@cb@~b@wa@h`@g_@nm@im@`r@sr@zv@ey@rE}Ett@{w@nbAifAtg@kk@bv@_|@`uAmbBvi@_s@jjA}_Bvt@aiAly@{sAxr@aoAjq@}pAxj@yjApa@i|@bb@aaAvpAyaD|o@kcB`dAsmCds@sjB`d@ulApJsUpTak@`Qmd@@Evr@uiBjXer@n_@acAj\\sy@ja@udAh`@s~@zc@sbAxb@q_AxYun@z_@_x@ha@ky@pd@s}@|p@mmAp{@u}A|i@g~@DI~l@oaAtl@__A~n@m`A|l@s{@nl@iz@ds@k`AhYi_@rWg\\hc@gj@rm@eu@zi@}o@fj@uo@dDuDpL}Mjb@kf@dZe]b_AkeAdcA{iArPmRfUoWdp@uu@nXc\\b_@wc@lgA}vAve@{n@`~@msAz_@ml@b_@em@xRw\\dZyg@r`AygB~gAy|BlYuo@|Usj@`o@i}A`e@koAxZy|@vLo]bAuCv[ibA|Yu_AtMeb@phA_uDxHkWhZwbAjm@crB|^ioApZicAjSat@|Mad@~{@svCjm@koBpLa_@~\\}eAnh@uzAdw@cwBhw@wnBxX}q@jb@abA~cA}|Bre@gbA~Uif@r_@{u@fY}i@tB_EbMaVnRi^bhBu`Dj}@iyAp_AyxAxiBgqCn_BuaClv@elAz@uAli@k|@jr@yjAt`AkdBx{@ehBvh@}jAfd@qgA~fAcsClf@mqArh@suAz]k_AxJ{V~Lk\\nBiFld@}lAh`@mdAbLeZfVgo@v]acAn]qdApSep@~R{q@vRkt@nMkg@`Mih@rNgn@tO{u@jMer@tVuvApMu{@xNwfArHeo@lJ{z@`G}n@pDka@pCs]fKqzAhHciAfFaaArDyv@hGyqA`HyoA`He_ArHgu@pJay@nNuaA|N}x@dOwu@rTe~@xO_l@bSyp@jUcq@vWer@z\\qw@r^qt@~a@kw@b_@kp@~^wo@bn@wfApmAiwB~eAqkBfn@yfAj}@c`Blh@{_Arm@mkAj`@ex@za@i}@be@ugA`d@ajAdd@kmAl`@miAz`@ekAbbAitCd`@eeA|Pmb@|q@y`Bf`@i{@ph@eiAthA}aCbb@g_AxRgd@dDyHzOs`@rp@{cBr\\g`A~Zs`An[ceAhOgj@dPem@nOsm@f_@__BxWcqArR_cA`]mlBr`@k}BzKen@fMon@|Ik`@~O}o@~Jo^pOsg@vPog@jRsh@v`@e`AzBgFjXqn@|Wqn@tRqd@p\\e|@jRak@`Pig@dQqn@tNuk@jLwi@lRe_AfOu}@xIgo@dIyq@hGco@vGc|@zMkmBxO{~BrJalA~LklAbMccAdOgaA`SwiArKmi@zLwi@pL_f@zAgGdVk~@rEaPhSop@fMo`@jOu`@j_@ubAz_@a|@nRu`@~i@ghAta@kv@fa@iv@fp@}mAf~AcxCf|AcxCllAaaCtkAkeCl{@slBjt@acBnf@wkApd@miAvy@otBfdAudCrn@gwAhs@s|AplAgfC|`AemBbdAcpBzhAutB|yAumCtqAw~B`vAigCxnAqcCfy@agBdp@eaBfEmK|Zkz@b^udAvr@e~B|c@qaBn_@s_B~EaUfJqb@hNyq@fZo|A`j@euCzc@q}Bhe@{yBv[mtApe@}hBnf@uaBjtA}bEhs@auBr^whAfR}l@p\\}hAxS}t@rc@}eBz`@aiBx[yaB~[coB`XyiBp\\qeCnHyl@~Eq_@fKyw@l`@qwC`Ne|@tM_z@`T}mA`Oev@zMmo@``@}cBpKgb@bJq^h]_oAxl@{lBh]ecAjb@ciAnl@qxAx`@m}@p_@mx@jYkl@fe@}}@dY_e@vf@gz@v^{m@f`@cn@n^qk@`CuDnYyd@tYae@fg@ww@hj@_{@~{@iuAx|@kyAvl@}bAzkA{|Bvd@{_A|a@g~@dZ}o@tV}p@nc@ujAzb@wnAhb@aqA~B{H|CcKpOwg@fd@acB~Sex@bPmq@|P{u@nQoz@zI{b@nL_o@fPq}@nNo|@nVacBnRwxAdL}aAbKccAvKalAvJkpAdJquAvNkrCtHwdBpU}lF~JkiB|HcnA|Goz@`Ges@|Ik{@`Gqi@zIwt@hMwcA|@qHzQ}kA`TcpAhNev@fSubArYkqAp\\}rAn^_sAva@gsAnPkh@rO_d@zMe_@`\\u|@ba@weAd\\_z@z}@g~Bzl@y{AlnAk~Cb_@s_Ajh@crAp_@k`A`\\{y@t|@c{Bbq@gdBb_@q_AjS{g@hhAmrC`hBwrEhU_l@xq@ueBxi@auAls@{hBlaAkdCly@wtBrw@iqBnr@}iBl\\q~@jg@}yA~e@c|Ala@evA`Twv@lMgf@vUa~@jl@g`Cdr@_rCpz@uiDll@a`Cld@ojB`\\cuAh]w{Ax[c|ArXgwA|Os}@fUavAvSkwAzEy\\~D_Zh^_nCv^usCn\\keCrf@{gDpf@uqCbd@exBjl@ygCxb@gaBhc@s{Apj@ohBxf@e{Avg@gzA|g@oyAfe@itA~g@g}Ad`@alAb^ckAfY_dAhXubAtPer@bTa~@pV{fAxd@g|BzRmcAvBgLxLyo@v@cE`]ojBjS}gAt]mgBhQc{@xQ_y@zNsn@~Omn@fNmi@nMwd@z^coA`\\_cAtg@gyAph@csA`[sv@f\\}v@|Pu`@hb@aaAj[mu@zZyw@zPmg@|Nwd@jYycAfNij@lO}s@nJ_f@tM{v@jIal@~Es^|J}~@bHey@nEqo@zCsl@pC}w@~BunAXyvAkA}iAwB}|@gCgq@}G{jA_O{lBeOsmBmH{hAqEa{@wBcn@i@uOmBmt@iAmx@]_|A|@oqAfC_rAtDa~@|Ey`AbHwaAlKcmArNqlAfIip@`QwpA|uAo_Kfz@kfGrAwJbHch@~`@}vC|a@ayCf_@}mCrd@efDfTaaBrNokAhKweAjI{bAzEyr@bFw{@|EekAbEmsArB_zANa|Ay@a`BiBkiAuGcuBkJqaCmFuuAkE}sAkCetAy@my@O}lAJyh@l@}m@p@mc@pB}{@zBcu@`Dqx@hCmd@jF_z@zEgs@l@yHfJogAdNk|Ad\\kuDbLsqAvFom@~J{gApKukAjKgkA`Oe}ArFai@|PkvAbJyo@bPcfAlL{o@hN}s@~VqiAlUo_ArNsh@d_@yoAf[a`Axb@qjA|Wsq@|h@skAhWai@lk@ggAxTg_@jXed@jQwX~N_UxLwQhXu_@v[wc@fe@so@d}@mnAhXu`@vYge@b\\ol@nX}h@vZuq@ja@ubAvWwu@bPgg@tM}e@fZikAfNqo@xMcs@pPwfAzJ{v@~JqaAnGww@lAkPbCya@xCkp@rBaq@rAiu@|AmhBjBedDzAwhDjBcbClBu|AxBadArDabAjEc{@dB{\\dD_g@nDse@dGsv@xGkp@jImu@rIcp@`Mk|@nRgiAnKuk@`L{k@bMwk@dl@ogCrm@wiCr`@uiBf\\o_BfBwIbXqaBtU{~AtIqp@bLqbALgAtLijAvWktCd_@ukEj@yGdNevAjEmc@|LekAzIgu@pQqsAtGae@dKiq@hR}iAhW_zApRmfAhLao@|QcgAnMa}@xG{j@|Fkl@fGet@bGq~@~Dc~@jB}s@rAm|@Puv@Mgo@gAeu@oBex@qD}w@wDoq@}Dsh@cGkq@iGsj@sImp@wJuq@aKen@qL}p@}Hmd@iKmn@wG}b@cF}_@kEu^uFkl@iDyb@_BuY{Aw`@oAqb@k@kb@Ikc@Vuo@lAst@l@yT`Cwj@pDok@|Emj@xCuYhFub@hH}e@~Hed@jJ}d@lQgv@tO}m@zL{f@hMah@rM_m@rOsy@dHia@~OqgAlKk~@~B_UxEyi@lEup@zCoh@|Bmn@nBws@vAcbAJi|@Q_o@_Bcz@}Byz@oCyl@iCqb@yCab@kGcx@mFsn@kF{l@eC{XsFwn@}F}w@oE{r@_Dgx@uCgiAeAc`AK}aAZ_h@tAip@`D{z@~Csn@hFgu@jFao@|Io|@tH{l@fJum@fO}z@jOst@lMyi@pQ{p@dOih@zP_i@zTwn@dc@yiArVco@pS_k@dLg]zM{d@vNaj@pNkn@xJ_h@dI{h@vHsl@rFoh@hFuq@jEmt@~Cor@~Bq}@|@ao@F{b@Ua~@y@kq@uBmy@wCqu@kEus@yFez@_Iuw@_Gkj@gI_q@wKcw@_Jao@{Img@iJ_i@cLql@kL{j@eJ{a@kNum@}Myh@uOak@cQ_l@_Sco@uN{c@oTan@yRqg@oTai@_Pg_@{Ne\\_P}\\eOi[uIiQgCaFqTwb@o{@khB_Xil@u\\qt@sBgFyVwt@cQwl@uP}o@mNon@{Kyk@aLcy@cGgg@mFaj@kEqj@iBe[aDur@mBu_ASoZEql@d@sh@nAmp@hCuq@nDeo@vEul@jI_`A~Io|@hLwkAxP}eBxb@_kE~Z}`D~MurAdMamA`LwbApLmaAzJgu@nK_t@|Jop@`Oq|@pNwx@vQq`AtPow@dMwl@`Raw@zTc~@pUg|@tPim@jD_MdWiz@pMka@pSin@hc@coAln@wdB`{@_{Bnq@yeBhw@utBbm@o~Atq@chB`g@}sAvV{q@tZc|@`Vot@|Rqn@t\\_jAxZojArZkqApXohAhCiKr[}aBdUgpAlUeuAj_@emCvOeqAdJw~@xDoa@tDse@nDgn@bCql@`B}aAJig@Ogf@u@kb@mCwv@}FgcAgH_z@cNsfAoJil@kL}l@iLyg@eOej@aR_m@a^cfA{[gbAmS_s@iRst@cNan@wKsk@sJ_l@qJeq@sHwl@eFcj@mFkr@_Fmy@yCat@}Aku@y@qr@DwfA`Akz@pByr@nBsd@nCug@`Ekj@pFum@jH{p@pG_g@|Jip@nM{s@rLwi@tWsiAnk@ezBxk@o}BrRuy@lHe]pK{k@nIgh@nImn@~CiZ|Geu@nD{g@jCan@jBai@bAcn@Jo_AgAa`A_Bul@mCal@uDoj@qFwp@{LciAmFoa@uUwcBaH{g@uKew@iHai@oT_bBkKi_A}F{p@yEoq@aDio@sBwn@mAik@c@_`@G}j@Zqo@hAkt@pB}s@jDyp@`Emn@nGku@`K}}@hS{aBnJew@xIkz@zD{e@rDmi@~Cms@xBaz@b@ar@Kks@w@sm@_Csu@oCiw@qH_xAyGkoAcGcnAeD}v@}Co`AoAur@a@uq@@ku@\\um@lBm{@lCor@rCug@`Doh@dE_h@lFuj@dHeo@dJap@fLmr@fJof@vKsi@xOyp@hSeu@dTir@hWat@jUkk@dRoa@jX_j@pSqa@xi@saAl]{l@|a@ms@~\\qn@hOc[dVam@jOaa@nQmj@hR_q@bNel@bPuw@pLcu@bHil@nGqq@vGk}@|Csv@zAmk@Rsg@Hib@s@ul@aA}f@uCgr@yBwe@gB{UqDsg@iI}v@iHyn@kL_{@uJgo@cYogBee@mlCmXizA{RyeAkXa`BgMox@yMk}@yLu|@oKo{@aI_v@sHyw@gDuh@aDkh@wDqx@MqCeCgv@mAco@o@el@QegA`@il@x@}o@bByu@vC{x@jEs}@tFe|@lG{`AdIsnA~HcjAdMkmBnEax@zC_x@zAmz@Fmr@g@o{@wBa}@kFufAaI}lAiFst@gGccAcCqo@kAuj@m@eh@E}c@f@oo@nAop@rB}i@tCof@xEqp@rFul@nJ_y@|Kc~@|LodAb_@e|C~Hws@tFao@lEgq@xCun@rB}q@x@qq@?ix@q@aj@o@kb@mAe]{Dmw@wHqhAyOutBqEmr@cBc\\iCyy@iAuj@[{j@P_h@l@ol@hBsp@dC_j@|D_m@hD_c@`G{j@jIep@|Lkv@t`@gzB|QgcAzNyw@fBaK~DyTjPq_ArK{o@bL}q@tL_v@fJgn@hLky@dLc}@vJgz@lJc{@vNiwA|KsmAjFmr@bEgj@lCoa@xKmhB`L_dCdGadBvBqw@pAsp@jCscBr@{_Ap@i_ABmfAIsjAs@uiAqA{lAuAggAyAqs@wBijAmCqbAiDafAwCcw@uCoq@e@}KuHk`Bm@_KkPopCyDyo@gLyaB}LibByKexAqNqiBmCm^iIsmAsEyr@qEiz@iFemAwAa`@sAm]kByr@sAys@{AupAi@saASgvAHmuC\\isCNcdC`@g~Dd@apGn@e_H\\a}CPudCBmZHkbCM{cCo@c}@o@_|@yBaaBcDmnAaEewA_GqaBgJmyBeFmoAaEmoAw@ce@o@wc@_@_z@Xkw@nBegAbAe`@`Cgj@jCug@jFwv@rGgu@bKm_ArLa{@dNk|@rUavA~D{W~b@yiCZmB~PwlAzNgeAvMwhAjMmnA|JwfAjG{y@fGy_AbG_dAnD}y@nCmr@hDesAvCw|ApB_wApD_lCP}LzAyq@|Bmr@`D{l@rFcw@dGcn@fIsp@xJqo@fOyw@tOcs@vJe`@nMye@lMic@vXw}@lVgx@nE}NhXu|@n\\ofArl@_nBtg@obBpdA{gDbxAgxEvQem@tXs}@`Nuc@hi@yeBtlBoiGlcAcfDbaBuoF~Suv@lNcm@`L}j@vJqo@fJwv@fEke@nCca@hC_n@zA_l@\\cl@Wyn@yAip@uBqg@QgEkDgj@mE_g@qHim@sJap@gOav@cNqj@aOmh@wPug@wSwk@o\\}y@ad@akAiM_`@}Js[oLsd@kOyq@gLoo@cIwj@oG{m@wEkn@aDkk@iBcp@q@mh@Fgs@vAg|@bC_y@hDadAxBoaAn@cm@Sqs@eAmm@cDau@iEyo@iG}r@wJqy@cV}mBaUglBq[emCsTimBee@iaEcTciBkJix@uGcp@wE{k@oCse@iB{i@eA{k@Jol@lAuk@jD{v@rFkp@jLuiArOcxArHc~@bEmn@lBcq@Vcj@Qkq@_Bcl@_Dgk@wFgr@gJev@aKcp@qJsl@wJwl@{Jqq@iHoi@iFwj@gFu}@qBgv@Acl@j@gm@bCio@xCee@nGiq@`Iqn@dJsk@~Gs]rLig@dK{[pF{PvM{\\lOu^dWqg@`Xed@h[wf@|RqXb}@m|A~L_VdTge@|K{XfMg`@pQko@jH_^lNsu@jJqq@dGgo@bFgn@`GceAhNibCbDek@fJk}AtFkaAnHaqAh^ckGfNydCvN_|B`@qFvCga@tGwz@pF{r@dBwQvEkk@jD}`@jImaAhYgbDnBaWbBgX`@sWF_Yw@kSkBqQmCmQ_FuTuH}TsJmR_OqTqRgQmQsJ{NiF}L_CoJy@mNMwP|@cJvB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 53 miles.","announcement":"Continue for 53 miles.","distanceAlongGeometry":84826.945},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 9.","announcement":"In 2 miles, Keep left to stay on A 9.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 9.","announcement":"In a half mile, Keep left to stay on A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 9, E 15.","announcement":"Keep left to stay on A 9, E 15.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[168,346,359],"duration":15.844,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"weight":15.824,"geometry_index":17051,"location":[2.987641,43.153507]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,206],"duration":7.523,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.523,"geometry_index":17060,"location":[2.987623,43.156755]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.988724,43.158212],"geometry_index":17062,"admin_index":4,"weight":12.203,"is_urban":false,"turn_weight":7.2,"duration":5.016,"bearings":[32,204,213],"out":0,"in":1,"turn_duration":0.012,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":3.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.41,"geometry_index":17065,"location":[2.989635,43.159189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":7.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.352,"geometry_index":17068,"location":[2.990287,43.159838]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":2.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.727,"geometry_index":17071,"location":[2.991743,43.161213]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":5.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.902,"geometry_index":17072,"location":[2.992331,43.161694]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,223],"duration":7.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.039,"geometry_index":17075,"location":[2.993631,43.162673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,229],"duration":15.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.496,"geometry_index":17078,"location":[2.995519,43.163917]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":1.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.559,"geometry_index":17084,"location":[2.999661,43.165831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.191,"geometry_index":17085,"location":[3.000084,43.165974]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.001546,43.166407],"geometry_index":17086,"admin_index":4,"weight":11.691,"is_urban":false,"turn_weight":1,"duration":10.438,"bearings":[67,232,248],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.609,"geometry_index":17089,"location":[3.004749,43.167367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":14.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.254,"geometry_index":17090,"location":[3.00493,43.16742]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,248],"duration":0.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.449,"geometry_index":17091,"location":[3.009508,43.168774]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,249],"duration":15.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.555,"geometry_index":17092,"location":[3.00966,43.168816]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.195,"geometry_index":17093,"location":[3.014805,43.170346]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,247],"duration":34.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.426,"geometry_index":17094,"location":[3.01521,43.170469]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.945,"geometry_index":17097,"location":[3.02743,43.174097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":1.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.621,"geometry_index":17098,"location":[3.028114,43.174302]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":2.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.172,"geometry_index":17099,"location":[3.028681,43.174477]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":2.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.496,"geometry_index":17100,"location":[3.029442,43.174711]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.030318,43.17498],"geometry_index":17102,"admin_index":4,"weight":9.07,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.309,"bearings":[66,72,247],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[63,222,243],"duration":9.387,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.133,"geometry_index":17105,"location":[3.03358,43.176087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":9.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.625,"geometry_index":17108,"location":[3.036763,43.177351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":1.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.617,"geometry_index":17110,"location":[3.039755,43.178688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,238],"duration":2.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.625,"geometry_index":17111,"location":[3.040312,43.178943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,235],"duration":1.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.078,"geometry_index":17112,"location":[3.04118,43.179381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":3.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.871,"geometry_index":17113,"location":[3.041544,43.179545]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.125,"geometry_index":17114,"location":[3.042522,43.180004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":6.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.566,"geometry_index":17115,"location":[3.043235,43.180338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,239],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.09,"geometry_index":17117,"location":[3.045513,43.181326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,240],"duration":13.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.941,"geometry_index":17118,"location":[3.045899,43.181487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":3.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.117,"geometry_index":17122,"location":[3.050778,43.183273]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":7.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.711,"geometry_index":17123,"location":[3.051937,43.183654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":3.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.008,"geometry_index":17125,"location":[3.054548,43.184535]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":10.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.805,"geometry_index":17126,"location":[3.055687,43.18495]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":17128,"location":[3.05938,43.186433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,239],"duration":27.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.848,"geometry_index":17129,"location":[3.059751,43.186593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":73.625,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.246,"geometry_index":17138,"location":[3.069546,43.191972]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,207],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.672,"geometry_index":17160,"location":[3.089199,43.210974]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,205],"duration":6.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.141,"geometry_index":17161,"location":[3.089318,43.211161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,200],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":17164,"location":[3.090307,43.212961]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,200],"duration":1.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.422,"geometry_index":17165,"location":[3.090626,43.213599]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,199],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.363,"geometry_index":17166,"location":[3.09083,43.21402]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.091028,43.214426],"geometry_index":17168,"admin_index":4,"weight":14.746,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.41,"bearings":[17,66,200],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.093184,43.218895],"geometry_index":17174,"admin_index":4,"weight":6.836,"is_urban":false,"turn_weight":1,"duration":6.492,"bearings":[23,184,203],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,208],"duration":31.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.125,"geometry_index":17178,"location":[3.094304,43.220581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.77,"geometry_index":17191,"location":[3.1027,43.22711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":14.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.605,"geometry_index":17194,"location":[3.104869,43.227984]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":35.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.012,"geometry_index":17201,"location":[3.110363,43.229416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,259],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.824,"geometry_index":17209,"location":[3.124352,43.231097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.582,"geometry_index":17210,"location":[3.124682,43.231151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":81.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":74.996,"geometry_index":17211,"location":[3.125344,43.231262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.25,"geometry_index":17234,"location":[3.151092,43.245369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":1.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.309,"geometry_index":17235,"location":[3.151424,43.245683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":9.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.465,"geometry_index":17236,"location":[3.15177,43.246009]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":13.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.18,"geometry_index":17237,"location":[3.15407,43.248158]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":3.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.41,"geometry_index":17239,"location":[3.157377,43.251244]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":10.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.188,"geometry_index":17240,"location":[3.158296,43.252094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,220],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.535,"geometry_index":17242,"location":[3.160858,43.25439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,221],"duration":30.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.973,"geometry_index":17243,"location":[3.161835,43.255206]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.23,"geometry_index":17250,"location":[3.171383,43.26212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.359,"geometry_index":17251,"location":[3.171793,43.262425]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.434,"geometry_index":17252,"location":[3.172243,43.262769]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.172717,43.26313],"geometry_index":17253,"admin_index":4,"weight":12.695,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.742,"bearings":[42,69,224],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.176233,43.266214],"geometry_index":17258,"admin_index":4,"weight":7.27,"is_urban":false,"turn_weight":1,"duration":6.797,"bearings":[36,197,218],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":154.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":142.574,"geometry_index":17261,"location":[3.177804,43.267869]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":3.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.938,"geometry_index":17304,"location":[3.215504,43.302247]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.449,"geometry_index":17307,"location":[3.216745,43.302531]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":2.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.703,"geometry_index":17309,"location":[3.217342,43.302653]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.285,"geometry_index":17310,"location":[3.218475,43.302864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.223,"geometry_index":17311,"location":[3.218595,43.302885]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.395,"geometry_index":17312,"location":[3.219111,43.302976]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.219706,43.303072],"geometry_index":17313,"admin_index":4,"weight":6.688,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.238,"bearings":[79,99,257],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.222535,43.303469],"geometry_index":17315,"admin_index":4,"weight":3.52,"is_urban":false,"turn_weight":0.5,"duration":3.273,"bearings":[80,239,259],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":4.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.316,"geometry_index":17317,"location":[3.223839,43.303635]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.23,"geometry_index":17319,"location":[3.225703,43.30386]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":42.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.887,"geometry_index":17320,"location":[3.225799,43.303871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,247],"duration":3.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.414,"geometry_index":17333,"location":[3.242192,43.307005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,246],"duration":14.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.801,"geometry_index":17334,"location":[3.24354,43.30745]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":3.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.445,"geometry_index":17339,"location":[3.24881,43.309583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,237],"duration":9.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.926,"geometry_index":17340,"location":[3.250057,43.310164]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":2.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.23,"geometry_index":17342,"location":[3.253126,43.311797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,231],"duration":26.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.059,"geometry_index":17343,"location":[3.253844,43.312222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":2.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.965,"geometry_index":17346,"location":[3.261741,43.317595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":17.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.77,"geometry_index":17348,"location":[3.262525,43.318171]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":3.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.211,"geometry_index":17350,"location":[3.267655,43.321824]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":10.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.508,"geometry_index":17351,"location":[3.268749,43.322609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.992,"geometry_index":17352,"location":[3.271762,43.324762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.07,"geometry_index":17353,"location":[3.27202,43.324945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":9.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":10.449,"geometry_index":17354,"location":[3.272342,43.325174]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":20.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":21.523,"geometry_index":17355,"location":[3.275436,43.327381]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.28181,43.331927],"geometry_index":17356,"admin_index":4,"weight":19.598,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.684,"bearings":[46,58,226],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,230],"duration":14.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.496,"geometry_index":17360,"location":[3.287182,43.335519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.291941,43.337756],"geometry_index":17365,"admin_index":4,"weight":6.398,"is_urban":false,"turn_weight":1,"duration":5.41,"bearings":[65,235,240],"out":0,"in":2,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,245],"duration":21.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.152,"geometry_index":17367,"location":[3.293892,43.338422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":96.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":89.25,"geometry_index":17375,"location":[3.302043,43.340474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,216],"duration":2.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.051,"geometry_index":17396,"location":[3.33531,43.352964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,216],"duration":9.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.262,"geometry_index":17397,"location":[3.335807,43.353468]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.059,"geometry_index":17400,"location":[3.337927,43.355484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":8.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.75,"geometry_index":17401,"location":[3.338212,43.355733]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,228],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.398,"geometry_index":17407,"location":[3.340911,43.357719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,231],"duration":1.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.645,"geometry_index":17408,"location":[3.341068,43.357811]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.341683,43.358199],"geometry_index":17409,"admin_index":4,"weight":18.574,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.645,"bearings":[51,76,229],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.348815,43.361109],"geometry_index":17421,"admin_index":4,"weight":10.281,"is_urban":false,"turn_weight":1,"duration":10.32,"bearings":[71,229,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,259],"duration":92.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":83.277,"geometry_index":17427,"location":[3.352844,43.361881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":1.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.129,"geometry_index":17457,"location":[3.388967,43.367174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,237],"duration":44.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.758,"geometry_index":17458,"location":[3.389377,43.367369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.398,"geometry_index":17470,"location":[3.404168,43.374421]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,243],"duration":18.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.91,"geometry_index":17471,"location":[3.404691,43.374613]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,258],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.32,"geometry_index":17481,"location":[3.411917,43.376358]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.492,"geometry_index":17482,"location":[3.412049,43.376376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.413094,43.376508],"geometry_index":17484,"admin_index":4,"weight":13.586,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.941,"bearings":[81,103,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.418625,43.376777],"geometry_index":17491,"admin_index":4,"weight":9.473,"is_urban":false,"turn_weight":0.5,"duration":9.211,"bearings":[91,249,270],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":38.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.551,"geometry_index":17495,"location":[3.422259,43.376679]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":2.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.289,"geometry_index":17507,"location":[3.437368,43.37717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":11.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.996,"geometry_index":17509,"location":[3.438285,43.377344]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.754,"geometry_index":17513,"location":[3.4427,43.378583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,245],"duration":1.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.652,"geometry_index":17514,"location":[3.44299,43.378682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,244],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.68,"geometry_index":17515,"location":[3.443619,43.378909]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":8.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.855,"geometry_index":17516,"location":[3.444241,43.379166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,235],"duration":1.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.652,"geometry_index":17519,"location":[3.447086,43.380533]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,233],"duration":8.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.914,"geometry_index":17520,"location":[3.447646,43.380838]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.348,"geometry_index":17523,"location":[3.450242,43.382473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.469,"geometry_index":17524,"location":[3.45092,43.382982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,224],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":17525,"location":[3.451345,43.383299]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.984,"geometry_index":17526,"location":[3.451571,43.383478]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.309,"geometry_index":17528,"location":[3.453255,43.384832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":6.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.574,"geometry_index":17529,"location":[3.453898,43.385339]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":3.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.855,"geometry_index":17531,"location":[3.455726,43.386818]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":16.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.863,"geometry_index":17532,"location":[3.456515,43.38746]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":17534,"location":[3.460987,43.391043]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,221],"duration":16.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.23,"geometry_index":17535,"location":[3.461202,43.391223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.258,"geometry_index":17542,"location":[3.46583,43.394479]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.402,"geometry_index":17543,"location":[3.466232,43.394726]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.466684,43.395005],"geometry_index":17544,"admin_index":4,"weight":14.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.617,"bearings":[50,65,230],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.471418,43.397938],"geometry_index":17548,"admin_index":4,"weight":8.996,"is_urban":false,"turn_weight":1,"duration":8.426,"bearings":[49,201,229],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":112.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":103.77,"geometry_index":17552,"location":[3.474278,43.399705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":33.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.582,"geometry_index":17589,"location":[3.518958,43.41518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":45.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.551,"geometry_index":17601,"location":[3.532324,43.420321]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.707,"geometry_index":17616,"location":[3.551634,43.424348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":59.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":53.402,"geometry_index":17617,"location":[3.551902,43.424437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":72.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.957,"geometry_index":17643,"location":[3.566576,43.436591]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,257],"duration":5.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.785,"geometry_index":17674,"location":[3.586242,43.450158]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":0.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.152,"geometry_index":17677,"location":[3.588197,43.450416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,260],"duration":27.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.137,"geometry_index":17678,"location":[3.588259,43.450424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":1.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.441,"geometry_index":17688,"location":[3.598669,43.451824]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,252],"duration":6.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.469,"geometry_index":17689,"location":[3.599216,43.451952]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.031,"geometry_index":17693,"location":[3.601604,43.452653]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":69.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":64.449,"geometry_index":17694,"location":[3.601613,43.452656]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,254],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":17725,"location":[3.624382,43.461866]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":5.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.688,"geometry_index":17726,"location":[3.624796,43.461962]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.707,"geometry_index":17729,"location":[3.62668,43.462452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":1.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.445,"geometry_index":17730,"location":[3.627357,43.462661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.627927,43.462837],"geometry_index":17731,"admin_index":4,"weight":14.594,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.234,"bearings":[65,84,247],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.63325,43.465252],"geometry_index":17737,"admin_index":4,"weight":9.41,"is_urban":false,"turn_weight":1,"duration":9.629,"bearings":[50,211,232],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,230],"duration":93.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":84.328,"geometry_index":17739,"location":[3.636,43.466936]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.918,"geometry_index":17768,"location":[3.665795,43.479558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":19.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.953,"geometry_index":17769,"location":[3.666163,43.479577]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":1.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.043,"geometry_index":17775,"location":[3.673635,43.479876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":3.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.668,"geometry_index":17776,"location":[3.67404,43.479889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,267],"duration":9.934,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.668,"geometry_index":17777,"location":[3.675456,43.479946]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.965,"geometry_index":17781,"location":[3.67918,43.480248]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":3.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.156,"geometry_index":17782,"location":[3.679547,43.480294]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.680729,43.48048],"geometry_index":17783,"admin_index":4,"weight":7.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.422,"bearings":[75,101,258],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,252],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.238,"geometry_index":17787,"location":[3.683354,43.481059]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.685452,43.481661],"geometry_index":17790,"admin_index":4,"weight":15.465,"is_urban":false,"turn_weight":0.5,"duration":14.973,"bearings":[68,221,247],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":31.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.188,"geometry_index":17793,"location":[3.688773,43.482663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,252],"duration":2.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.273,"geometry_index":17800,"location":[3.695943,43.484704]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":9.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.707,"geometry_index":17801,"location":[3.69678,43.484876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":2.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.984,"geometry_index":17803,"location":[3.700146,43.485489]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,257],"duration":3.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.348,"geometry_index":17804,"location":[3.700841,43.485604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":32.34,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.715,"geometry_index":17805,"location":[3.702071,43.485828]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.047,"geometry_index":17814,"location":[3.713062,43.48896]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,236],"duration":4.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.445,"geometry_index":17815,"location":[3.713407,43.489129]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":1.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.617,"geometry_index":17817,"location":[3.71482,43.489899]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,230],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.305,"geometry_index":17818,"location":[3.715316,43.490201]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.715702,43.490451],"geometry_index":17819,"admin_index":4,"weight":13.926,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.074,"bearings":[47,70,228],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.719511,43.49351],"geometry_index":17825,"admin_index":4,"weight":8.656,"is_urban":false,"turn_weight":1,"duration":8.285,"bearings":[37,187,217],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":139.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":125.777,"geometry_index":17826,"location":[3.721529,43.495432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,235],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.07,"geometry_index":17862,"location":[3.761703,43.523556]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":90.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":81.414,"geometry_index":17863,"location":[3.762095,43.52375]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,225],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.203,"geometry_index":17887,"location":[3.788378,43.541816]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.016,"geometry_index":17888,"location":[3.788445,43.541862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.789059,43.542288],"geometry_index":17889,"admin_index":4,"weight":15.859,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.715,"bearings":[46,76,226],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":0.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.602,"geometry_index":17892,"location":[3.793754,43.545543]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":18.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.277,"geometry_index":17893,"location":[3.793935,43.545671]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.799511,43.549022],"geometry_index":17901,"admin_index":4,"weight":6.277,"is_urban":false,"turn_weight":1,"duration":5.562,"bearings":[60,234,239],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,246],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.355,"geometry_index":17905,"location":[3.801494,43.549741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":1.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":17906,"location":[3.80202,43.549891]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,250],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.824,"geometry_index":17907,"location":[3.802682,43.550065]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,251],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.801,"geometry_index":17908,"location":[3.803002,43.550143]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,254],"duration":19.262,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.809,"geometry_index":17909,"location":[3.803704,43.550287]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,267],"duration":20.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.582,"geometry_index":17921,"location":[3.81107,43.550849]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":3.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.391,"geometry_index":17931,"location":[3.818361,43.552588]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":3.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.938,"geometry_index":17934,"location":[3.819534,43.553165]},{"bearings":[49,234],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":17935,"location":[3.820511,43.553673]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E15","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 15"}],"type":"fork","modifier":"left","text":"A 9 / E 15"},"distanceAlongGeometry":84850.281}],"destinations":"Lyon, Montpellier, Béziers, Narbonne","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 9/E 15/E 80/La Languedocienne toward Lyon/Montpellier/Béziers/Narbonne.","modifier":"slight left","bearing_after":346,"bearing_before":348,"location":[2.987641,43.153507]},"speedLimitSign":"vienna","name":"La Languedocienne","weight_typical":2491.883,"duration_typical":2649.543,"duration":2649.543,"distance":84850.281,"driving_side":"right","weight":2491.883,"mode":"driving","ref":"A 9; E 15; E 80","geometry":"ee{hqAqfjuDaDh@aOdEom@xTmX|FaRbAePo@gQoCaT{Gka@kVe}@kr@{[mPeJwHsRoOg]u]qIwI_N{M_NcNm]y[s]e`@{W_\\a]wc@cOyS{Xsb@eRyWaX{b@oVec@e\\}l@qa@o{@uV{m@yQkg@mNkc@qLoa@qLgg@}GmYaZkzAgGoYaX_tAuYuwAiBiJssAc}GsAoHs~Aq`IuFiXkhAutF{Mer@oiC{qMyKwi@}Imb@sMqn@_Hg\\yFoX{e@qtB}W}fAkDkMaSgt@sZ{dAi^yjAix@o`CgYox@}Nya@kZgu@gIwUu[c|@{Sqk@eXsy@qc@wrAaIcWyd@i~AcRcs@{WmdAy\\awAyVmgAcZsqA}ZqoA}XefAyw@}pC{b@{sA_IeVmOwa@yZ{|@qf@}oAqUwk@eQ{a@}h@clA{m@mqA_{@oaBy}@}_BkU{_@cu@mkAa|@ypAy_A_pAsqAs_BOQwsAoyAar@cs@}XkX_ZiYi~@ky@sn@ij@wpBoeBcu@{q@{t@ss@w`AgaA_~@qbAisAivAwf@{c@kf@m`@_h@i_@on@g`@uJmFo^yQsl@iXkb@uP{f@}RiYwK}SeImCeAgJwCosAce@miA}`@ou@_[{a@sQwRiJgVmLs^kS_YgQoW}Pyf@o]eu@ao@kY{X_QqQik@yn@uf@uo@qa@cm@ub@ir@_]so@uSga@oSad@_Ykp@gQoe@_FwMsUot@_XibAqG_VuTe`AoNyu@gQufAaFw^gMugAeCgWcC{VkFcn@qGc`A{ImyAkUikEc^gzGsLioB_F{n@kBsS}Ekh@{@eJiQmbBuOslAiQwhAaU}nA{UojAwT{`AkUo{@_Uww@kUsu@oTsq@}JoXcKwXil@mxAcj@glAwk@miAoY}h@q]al@e|@erA{gAcxAmx@i`Ay}B_hC}iCmtCsRwSkSsTieCwnCy{B{cCacAyhAct@mx@ctAm{Aky@ubA_r@a|@iv@qcAUY{r@aeA}uA{yBwxBwnDw}@wvAys@}eAaRsXoTc[qUs\\cCaDee@eo@ak@oq@s[_`@wlA_rAoZiZuUuUgt@eo@{UaScn@yg@{pAq_AaoAey@mgAon@ufAej@yjA_k@{iA{g@yvC_pAsYwLuo@uWojAyf@ojAuh@qjAij@waAoh@_Q_KsT}Mg}@sj@uo@gc@{dAmx@yy@ir@_gAidAugAikAgrAe`Baq@_~@ye@qr@gSi\\gc@er@mk@gcA_j@geAga@a{@ui@}nAsPsa@wW}q@gf@orAik@ygB{d@saBqh@qwB_Pau@_Oyu@{Ngw@qMkw@uNy_AuGke@oC}RqCgReC_QmBiReLyeAi@oFuDg_@_Eed@eHi}@sNoqBoEyp@{Bu^qCad@oHmnAU_EoNseCwFy`AcL_cBqFqs@aLwuA_I}y@yM_rA}QsuAaNmcAqPkfA_Pa~@s[obB{O{t@yZgsAiSgw@eb@u{A_\\ydA_Vwt@yX{w@ic@}lA}b@qdAcaAgyBqY{k@kpC}|Ek}AcfCa_BogCcKsO{Vk_@oiA}gByxCuvEap@kcAqeCi{DmJcOiMcS}hCk`Ec{GkmK_vAmyB_|@szAul@ieAy]kr@uZis@iYor@wUon@cXyw@}d@ixAyRux@yTg_AsLgj@iF_XsHgc@sKql@iGs`@g_@uaCsOmfA{ZszBqeA}kHwMg~@qv@erFeLwx@o`A{|Gar@yxEeQedAgSilA_\\mxA{Rwu@{Wc|@gc@mmAoa@acAmr@{tAuy@qtAwl@qw@}j@as@aOeQma@ac@wi@}j@_a@y`@o^a^a~@y_A}i@el@_SoUqNyP_Zw`@mYy`@IMe^ui@{^sm@iFkJwDyHgWme@cLsUcD}GgNe]yYor@}W}u@wPgg@yOsj@{Ua_AiKic@yH__@cJyf@}DoTwFa^gEcY_Imm@sEcc@eGwm@mHi`AgEcv@{Bug@aCo{@}Ae{@{@{x@mAcoCk@qhBcBkrDEkLe@inA_BgwCwB_qBmBy{@cCg|@cEkbAuHivAgI}gAyGqu@qDy\\wLieAwOelAiQ_hAyNqz@cTwfAk]y{Awd@ebB_b@gsAyZi~@oQag@qLy\\eKsXeIiSkMy\\_{@guBuiB{zE{}@i|BuOk`@ig@{qAui@{uAc`@_hAoOue@oSeq@yO{l@_Ku_@cT}~@qNes@wLep@qG{a@wIak@yDoWiFoc@aKo|@wFel@kEuf@c@gGkC_^{Bia@{Bia@wA}c@iBuh@wAwo@aBw_A]e_ACav@Lad@r@a|@t@yy@jAeeAfA{eAjCa~BxAqhC^uvAQ}bBiAegAmBoeAgCmv@}D}x@qF}y@qFqs@oHst@mCyYmEo]oHmk@eKkp@iUioAm`@ydBeEcQeMif@aO{e@cW{v@yd@ikAoVsl@aR_b@ir@arAw`@av@cPcWy^ki@yRqYeJcMmMsQeeAsuAu^eg@uOqSwjAu|Acg@ip@mdD_nEoy@ogAgJmLgc@_o@k[kd@wRiZo\\wg@w]ym@ea@up@uWif@mNcXmPg[mYkj@wmAe_CeYyi@}r@opAeTe`@e`@au@yUwe@g`@ws@un@ujAe{@{cB}g@oaAus@ewA{g@ojAoR}d@}_@cfAy]mgAw[glAmYolAoSodA{L{o@_Jck@yNmcAwN_nAmGmg@iIox@}LmsAsn@ctGkR}aBaMe~@ySawAiWyaB}Gk]cRccAaXgsAqWonAwUkhAwXebA{X_dAi]ooAsq@_uByAoEiT}o@_\\a_A_]q`Ama@ujA{]ybAqx@q{Bas@{nBek@sfBmP_h@uWs_A{Tq}@iU_hAgNct@wKgm@gMiu@aGs_@aMux@kUyuAm^yaCqLkv@uKew@aKq{@sJo`AaHyz@wXgyCy]saEcJgz@oGok@yKyw@iQ_eAoPuu@qDwOsM{f@uUyu@}Umq@w|@q_Cg\\kx@wW}l@mW}g@_Wgd@ob@kp@a[oc@wb@sg@c^u^o]{[iNyKuXsSq]uU}_@iWcPkJ}]iSmk@i\\u`@cUs\\uS}^iVy[qTc]sXaVcSwTqRaQoOmXcXaQuPgW_Ycj@yk@ac@qd@_m@{n@ka@gc@smAsnAsLqMkiAanAycA_iAsWcYe]w`@sZe`@mXm^uUs\\iTm]uVmd@mOq[kSkd@eRqe@qY{|@_Xi~@_Mkj@yNwv@uFu^}Geg@oGok@iFij@m@oG_F{w@uFyw@O{BoEqx@yEe|@eImvAgG}fA{M{dCqHydAuH{{@{Dq_@}Gmk@yE}]_Gea@_FeZgJyh@aPkv@oG{WEQ_GkVQq@wP_p@iJo[cOef@{Pcg@s\\i{@_Umg@}MsYa`@iw@_d@cy@ak@mbAy[sm@}Vwh@iVkl@{JcXyM{_@cU_t@qT}w@kY{dAwJg_@wD_O}Oqn@kNil@iLcj@mMqp@_Kkl@sJmp@wKkw@kJkv@eXcwB_E{XcLqv@wJci@wDaSaLii@_Jsb@kOkn@yVy|@e\\ebAcUil@mYus@_`@iy@ma@ex@yeAuqBefAqqBk`@av@c`AygBy[kn@qc@k}@mb@{|@ae@gbAw}@cqBs_@e}@q]_z@kv@gmBcScg@cVcm@ke@}nAk\\ey@{V{r@eYu|@{Ue{@iQat@_N_o@cIwc@_Kym@cMc|@oJax@aJu`AiEyk@wFubA}Co{@}Bu~@e@_VoA}`A{Aq~@cBu{@y@iv@qAm_AyDa|CYiXqBowAiAcr@uFihBsDaq@gBgY{A}UsJ{hAmBiQiFyd@kIol@aNm}@oRqdAkMup@wB{J{UelAwN}r@_WmmAw_@}hBKi@cd@}zB{Osy@yG_^aO{|@qNm`AwIis@eTsmBcPwbBeFmj@_M{kAiXooCkOkrAmSc}AgXwyAwVyhAsYogAmRam@iNcb@gVum@qIqTgc@ecA{JcS{Q_^sNcWm]sl@uZif@ak@_v@sd@{i@o]s`@{SsTcwBc}BicAmfAofCkwC}Xu^{c@gm@}t@ggA{a@}q@c^mk@qL_TaHiM_X{e@m[qk@a`@ov@wl@slAyz@mfBoa@oz@qlAueC}qAukCeu@osAol@{~@o{@wkAym@{v@ir@{t@}mCadCelAkiAk`@q`@ke@gj@s`@gh@{h@yu@mf@ky@i^{o@ol@mpAu]q{@q[ky@}iAczCai@mvAij@}tAcKoWe}@wzBa|@oqBgl@wpAstAawCul@yjAqbAynB_w@g{AyaA{kBkh@saAs\\wk@{^cm@{d@yp@u`@og@u_@wc@ck@mm@ij@{j@wsA}rAi[k[o[k^uh@cm@an@{y@so@m`A}u@kmAoIoM{AeCsYke@wu@umAayA_`Csy@wtA_GiJaoAasBsa@es@}]cr@uQu`@wH{Q_JeUeKcYeKg[yM{b@}HoZaIg\\cIi^kH{_@{Ikh@{C_S_H{j@eBiQkEkc@wCub@}Bsa@kBia@eAe]yAcw@w@}g@g@aj@{@in@u@}d@}@ol@yBao@}Bof@qC_a@sFuj@qF}c@gK}q@kOiz@yMkj@q[unAeHeSyEaN{FgPkT_h@w^a|@kg@w_Aqi@}z@m_@og@{u@}w@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 33 miles.","announcement":"Continue for 33 miles.","distanceAlongGeometry":53047.344},{"ssmlAnnouncement":"In 2 miles, Take exit 25.","announcement":"In 2 miles, Take exit 25.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 25.","announcement":"In a half mile, Take exit 25.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 25 onto A 54 toward Nîmes-Centre, Garons.","announcement":"Take exit 25 onto A 54 toward Nîmes-Centre, Garons.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[29,37,217],"duration":6.707,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.508,"geometry_index":17939,"location":[3.824065,43.556397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":45.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.949,"geometry_index":17941,"location":[3.825368,43.557968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":55.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":59.703,"geometry_index":17956,"location":[3.838615,43.565896]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.844,"geometry_index":17972,"location":[3.858699,43.570316]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,263],"duration":8.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.867,"geometry_index":17973,"location":[3.858998,43.570343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":2.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.887,"geometry_index":17977,"location":[3.862116,43.570456]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,271],"duration":2.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.672,"geometry_index":17979,"location":[3.863132,43.570441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.73,"geometry_index":17980,"location":[3.864071,43.570415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":7.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.02,"geometry_index":17981,"location":[3.864327,43.570407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,268],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.906,"geometry_index":17983,"location":[3.867173,43.570414]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":59.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":65.074,"geometry_index":17984,"location":[3.868453,43.570508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.629,"geometry_index":17996,"location":[3.886638,43.577934]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":17.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.477,"geometry_index":17997,"location":[3.886797,43.578018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.586,"geometry_index":17999,"location":[3.892031,43.580876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":12.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":14.254,"geometry_index":18000,"location":[3.892178,43.580959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.816,"geometry_index":18003,"location":[3.895825,43.582918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":3.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.512,"geometry_index":18004,"location":[3.896034,43.58303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":2.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.586,"geometry_index":18005,"location":[3.896945,43.58352]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":30,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":33.75,"geometry_index":18006,"location":[3.897609,43.583878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,236],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.582,"geometry_index":18014,"location":[3.906548,43.588326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":17.973,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":20.211,"geometry_index":18015,"location":[3.906978,43.58852]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,238],"duration":16.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":18.469,"geometry_index":18016,"location":[3.912492,43.591011]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":17.867,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.648,"geometry_index":18019,"location":[3.917661,43.593238]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.141,"geometry_index":18021,"location":[3.923175,43.595591]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,241],"duration":80.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":82.727,"geometry_index":18022,"location":[3.923504,43.595724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":34.02,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.312,"geometry_index":18039,"location":[3.946086,43.60846]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":2.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.344,"geometry_index":18048,"location":[3.950835,43.616644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":10.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.77,"geometry_index":18050,"location":[3.951344,43.617174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.148,"geometry_index":18053,"location":[3.953752,43.619222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,223],"duration":23.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.375,"geometry_index":18054,"location":[3.95431,43.619662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":1.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.383,"geometry_index":18061,"location":[3.96034,43.624025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":54.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.762,"geometry_index":18062,"location":[3.960701,43.624298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,196],"duration":0.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.945,"geometry_index":18072,"location":[3.971027,43.636053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":84.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":84.285,"geometry_index":18073,"location":[3.971116,43.636299]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":97.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":97.645,"geometry_index":18095,"location":[3.988492,43.651759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":9.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.973,"geometry_index":18112,"location":[4.010315,43.669217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,231],"duration":10.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.676,"geometry_index":18115,"location":[4.012646,43.670673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":3.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.871,"geometry_index":18119,"location":[4.015618,43.672214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,238],"duration":16.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.391,"geometry_index":18121,"location":[4.01674,43.672722]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.021774,43.67452],"geometry_index":18126,"admin_index":4,"weight":1.344,"is_urban":false,"turn_weight":1,"duration":0.375,"bearings":[65,224,248],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,245],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.793,"geometry_index":18127,"location":[4.021886,43.674558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,247],"duration":19.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.262,"geometry_index":18128,"location":[4.022434,43.674724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,251],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.836,"geometry_index":18130,"location":[4.024935,43.675366]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":57.215,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.348,"geometry_index":18131,"location":[4.02532,43.675483]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,247],"duration":8.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.961,"geometry_index":18135,"location":[4.035299,43.678571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":14.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.969,"geometry_index":18139,"location":[4.038163,43.67956]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.945,"geometry_index":18149,"location":[4.043753,43.682076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,236],"duration":13.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.117,"geometry_index":18150,"location":[4.044053,43.682222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":67.289,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.223,"geometry_index":18154,"location":[4.048017,43.684275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.633,"geometry_index":18181,"location":[4.071188,43.690812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":59.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":55.234,"geometry_index":18182,"location":[4.071419,43.690867]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,262],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.098,"geometry_index":18203,"location":[4.092433,43.696481]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":4.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.547,"geometry_index":18204,"location":[4.092863,43.696515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":1.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.035,"geometry_index":18206,"location":[4.094619,43.696628]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,267],"duration":50.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.109,"geometry_index":18207,"location":[4.095029,43.696644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.766,"geometry_index":18230,"location":[4.113044,43.700462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":3.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.176,"geometry_index":18231,"location":[4.113284,43.700601]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.114269,43.701202],"geometry_index":18233,"admin_index":4,"weight":11.262,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.195,"bearings":[47,68,229],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[43,199,223],"duration":9.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.012,"geometry_index":18237,"location":[4.11755,43.703558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,223],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.055,"geometry_index":18238,"location":[4.12004,43.7055]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":19.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.418,"geometry_index":18239,"location":[4.120326,43.70571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.41,"geometry_index":18246,"location":[4.126854,43.710118]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":18247,"location":[4.127004,43.710209]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.127652,43.710601],"geometry_index":18248,"admin_index":4,"weight":24.359,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.352,"bearings":[48,72,230],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.135148,43.715187],"geometry_index":18253,"admin_index":4,"weight":10.262,"is_urban":false,"turn_weight":1,"duration":10.02,"bearings":[50,203,230],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.152,"geometry_index":18255,"location":[4.137915,43.716883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":36.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.016,"geometry_index":18256,"location":[4.138262,43.717095]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,246],"duration":6.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.504,"geometry_index":18265,"location":[4.149332,43.7227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":14.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.809,"geometry_index":18267,"location":[4.151584,43.723314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,262],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.254,"geometry_index":18272,"location":[4.156875,43.724156]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.918,"geometry_index":18273,"location":[4.157367,43.724193]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":17.039,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.184,"geometry_index":18275,"location":[4.158516,43.724254]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,269],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.215,"geometry_index":18279,"location":[4.164862,43.724352]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":23.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.211,"geometry_index":18280,"location":[4.165316,43.724362]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,259],"duration":2.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.152,"geometry_index":18287,"location":[4.173958,43.725113]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.457,"geometry_index":18288,"location":[4.174744,43.72523]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[76,87,258],"duration":6.887,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.695,"geometry_index":18289,"location":[4.175274,43.725309]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,256],"duration":4.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.16,"geometry_index":18290,"location":[4.177758,43.725751]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,254],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.184,"geometry_index":18291,"location":[4.179287,43.726066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.309,"geometry_index":18294,"location":[4.180444,43.726338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,251],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.387,"geometry_index":18295,"location":[4.181274,43.726546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":10.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.141,"geometry_index":18296,"location":[4.182856,43.726954]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.18636,43.728142],"geometry_index":18299,"admin_index":4,"weight":7.867,"is_urban":false,"turn_weight":0.75,"duration":7.332,"bearings":[56,235,243],"out":0,"in":2,"turn_duration":0.033,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,231],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.398,"geometry_index":18303,"location":[4.188605,43.729322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":47.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.535,"geometry_index":18304,"location":[4.188996,43.729583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,200],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.824,"geometry_index":18322,"location":[4.195535,43.738938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":47.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.5,"geometry_index":18323,"location":[4.195646,43.73916]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,239],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":18340,"location":[4.20779,43.748911]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,242],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.648,"geometry_index":18341,"location":[4.208464,43.749173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,244],"duration":2.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.465,"geometry_index":18342,"location":[4.208694,43.749254]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.209605,43.749551],"geometry_index":18343,"admin_index":4,"weight":0.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.375,"bearings":[67,101,246],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":11.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.48,"geometry_index":18344,"location":[4.20973,43.749589]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.213632,43.75053],"geometry_index":18349,"admin_index":4,"weight":13.512,"is_urban":false,"turn_weight":1,"duration":13.535,"bearings":[77,229,255],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,263],"duration":128.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":118.691,"geometry_index":18353,"location":[4.216855,43.750942]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,261],"duration":20.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.445,"geometry_index":18378,"location":[4.247512,43.748479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,240],"duration":17.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.223,"geometry_index":18386,"location":[4.252117,43.749742]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,227],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.371,"geometry_index":18392,"location":[4.255502,43.75157]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,218],"duration":63.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.777,"geometry_index":18396,"location":[4.257118,43.752898]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":83.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":79.688,"geometry_index":18406,"location":[4.265435,43.762311]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.156,"geometry_index":18423,"location":[4.27977,43.772084]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":19.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.391,"geometry_index":18426,"location":[4.281657,43.773225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":49.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.953,"geometry_index":18432,"location":[4.285702,43.776594]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.395,"geometry_index":18448,"location":[4.295491,43.785147]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":18449,"location":[4.296063,43.785537]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.296119,43.785575],"geometry_index":18450,"admin_index":4,"weight":13.344,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.066,"bearings":[46,84,227],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,220],"duration":9.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.969,"geometry_index":18454,"location":[4.298124,43.787141]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.299329,43.78828],"geometry_index":18456,"admin_index":4,"weight":11.363,"is_urban":false,"turn_weight":1,"duration":10.914,"bearings":[36,199,217],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,216],"duration":64.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.543,"geometry_index":18459,"location":[4.301543,43.790453]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":24.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.238,"geometry_index":18481,"location":[4.315728,43.802063]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,256],"duration":47.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":51.516,"geometry_index":18485,"location":[4.320338,43.80295]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":29.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":32.039,"geometry_index":18496,"location":[4.332383,43.80594]},{"bearings":[66,246],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":18502,"location":[4.339395,43.80832]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Nîmes-Centre"},{"type":"text","text":"/"},{"type":"text","text":"Garons"}],"type":"off ramp","modifier":"right","text":"Nîmes-Centre / Garons"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"25"},{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 54","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 54"}],"type":"off ramp","modifier":"right","text":"Exit 25 A 54"},"distanceAlongGeometry":53084.012},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Nîmes-Centre"},{"type":"text","text":"/"},{"type":"text","text":"Garons"}],"type":"off ramp","modifier":"right","text":"Nîmes-Centre / Garons"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"25"},{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 54","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 54"}],"type":"off ramp","modifier":"right","text":"Exit 25 A 54"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 9/E 15/E 80/La Languedocienne.","modifier":"slight left","bearing_after":29,"bearing_before":37,"location":[3.824065,43.556397]},"speedLimitSign":"vienna","name":"La Languedocienne","weight_typical":1990.891,"duration_typical":2026.297,"duration":2026.297,"distance":53084.012,"driving_side":"right","weight":1990.891,"mode":"driving","ref":"A 9; E 15; E 80","geometry":"yanarAa{khFgf@}\\}y@or@k^mZwj@}k@}UmZaRyUmZwa@}l@_gA{hAmpBkbAmeBme@_cAqa@}cA{[{aAcGsTqQqp@gX}jA}Hw^wKyg@eIo_@oYczAu\\ukBmSmtAid@}jDqF_b@{QqsA_e@umDyUwgBcOihAqJs|@aHox@eEum@qB}XsDu{@u@uQwAub@eByaAg@seABwTTyk@FuQr@uy@N_On@mqA}@m~A{D_oAmB{i@}F_y@qKckAaUsaBoWstA{Okq@mEcRcVyz@qX{y@sxBu`FepCoeGyu@}aBgD}HifAm`CijBudEeDeHesAy{CgIaR_[as@_FaLs]}w@kUoh@yGmO_|@mpB_o@y|AsZ}s@}z@g{Bg]{aA{W}u@oP_c@cK{YuzCswIqkAsoDmHaUet@k{BifCkzHwJg\\iGqSmkAqpDon@imBmsAwhEeo@c}Bu_AypDqWkw@{Qkj@s\\wy@qt@y{A{t@ckAgkAobBsh@gl@yi@yh@_f@w`@kg@g_@iHoE{k@i^o[{RqtAgl@yvA}g@awAkf@weAee@sr@m_@cj@{^qS}Pob@}]{N}LgP{Pia@ib@wr@w|@}h@mt@oZ{a@qg@ox@{hA_fBaN}RuNaTe^sh@{Wg`@mfAocBaPqUwdC{xDij@mp@cuBc}B{]i]iw@}s@_r@ye@idAwp@saAch@{`As]obBkg@kNqDwwAy_@sp@mV}o@eYu]uRs`Awi@aoA{_A{k@mg@{i@gl@}`@ke@cq@kz@mT{[eReZso@cgAkPyYg`@yw@kv@y_Biy@maBgq@csAg[_q@av@sxA}EgJuc@wq@cRgXoV}]gUs_@{Vaf@cbDwoGsx@kqAgWo^_`AuqAik@cp@eYk\\ar@}s@}pCkvC_dBogBo}B{aCwv@w}@ciAkyAobAm~AwHyLyl@ggAmb@sz@ac@a`Ae\\gw@gUel@yGgR}J_YyRck@qScp@gX{~@c[smAqXsmA{Kkk@kA_FkIga@kPa_AwUg{AiFaW}x@wxDcp@y}Coi@ekCmj@}iCaX}jAoL_f@mToz@y@qCuSet@aJo\\_Ke[yTwp@yTon@sQ}e@gQ}d@IUoUej@eIoScHwQqk@_tAw]ez@y]wz@eUyj@sLaYs_@abAcLuZ{Qcg@gQih@kOme@qM}a@_Nwd@oMwd@yLue@cM{f@qLwg@gKgf@sHq^iNiu@{S_oAoF}`@qGqd@oHyg@oFed@cNilAw_@usDwMopAoG_p@sYoiCwMkcAoEwZmBmMgEwXsKeo@yMut@aWisAaYisAaXypAcScaAeWkmAiIqa@{Jaf@ed@gwBil@esC}K_k@mRadAuJcl@qIyl@kJuy@uI{y@{Ekk@wDum@uBcc@cA{YkCay@uAur@_@sXgB_fA_AqeAw@gp@gAsv@oDozAyEgoAiCif@sCic@aFyk@wEif@kIav@}Lkz@cIwf@sIqe@_Lwg@iLkg@eJw]iWi_AkRil@}Mi_@}Vyn@qUci@sEoJuG_NgU{c@iNuWc`@up@ku@alA_d@}o@wUk\\kxBszCcL{Poa@um@an@o~@S[co@eeAoUg`@}nAm{Bwi@adAuDkHoWog@w\\im@ccAaqBiyAsrCs{AavCyDmHudAepBic@wz@gLuTwrCupFkc@c}@cf@}gAgW}o@aXov@aWcx@sPql@qZkpAoGsYuUwmAuN_}@cHuh@_Jes@{JoeAsLmaB_F{bAiAw]_Bon@YiW_Bo|Ao@{iBYcnBYctASk[cCa_BoDq}A_EqkAuBkj@oHw|AuF_}@mIyhAiFcp@}Cc`@sZgzCuRq~AkDcRiF}`@iCgR_L{r@oX{aB{Lus@mIs_@}p@udCkMw\\yMa\\oUej@aUie@iOmWaN{TqQmYmSuXg\\wa@sTkWyWcX{_@w]sa@yZac@kY_f@iX{i@mUqh@wQem@wQcd@gMeu@iUa^uLs]cNw[{M{L}Ea{@wb@cc@qWs\\cTel@ub@mh@_c@al@{j@gn@eq@sx@mcA_SgYy[og@oUw_@y_@{r@iVqf@_Wuj@c]e_A}e@}qAqYs|@kOci@aDkMqQ}w@kAyFwJwe@yH_b@_H}b@_QaoAgIcu@oGyq@kEgm@gE_t@sCkr@_Buo@s@ii@A}@g@{}@@_{@jAqy@dA_g@fC_s@`GwjAxEot@lFcv@l[kmEhUmfDvWqrDtNasB|M{jBbIijArJouAxFu~@rCwv@xAww@Tow@m@mr@cBct@qI}wA_Iex@cL{z@yIaf@uJ}f@uI__@kMsf@aGuREMsFwQeQ_g@iTmi@yVsi@kVae@}Ru\\kCoEi]wf@gXy\\aV}WuDcEuZyYkh@se@{f@ic@wvB_nBafD{uC{xAglAs\\{Ui]sVad@iYaIcF_fAsk@wt@ib@yl@ca@qs@oq@k]g]cZa_@_\\wf@kr@kqAoa@q`As`@ykAkx@yvCu[ohAw]_bA}\\oy@aT}f@yBuE{M}Xm^et@_Xye@uBuDklA}iBagAerAi`@u_@uQyQmDoDaGcG}sC}dCsS_Ssg@_c@gRcRyQeR}]q_@y^wb@eZu_@gSaXiRmX{Ymd@a[eh@m\\ml@u[yk@ub@av@kWwb@kAoBoTo]{i@wv@o\\ua@_CkCyW}Ykm@ko@sb@kc@ki@}i@yx@az@ixBuzB_tAcmAwy@ip@{i@eb@_~@ap@gd@i\\y]iXsWoUeVkU}TwUsU}X}TkZmWqa@kTs_@uS{a@gR{c@{Uyn@sOmg@cOsi@mJob@{Hw`@sHqc@}Ei]eH_k@uS}nBsQ{dBqMslAkXcbCkJsr@wIiq@cLqu@sDuVaLcu@kT}lAkWkrA_VciAgWiiAqMuk@c^ezAcc@shBsZ{mAyYwnAoKce@oa@mlB"},{"ref":"E 80","mode":"driving","weight":1434.73,"distance":40069.516,"geometry":"oe{prAsx}gGoCkUoFia@cHei@}BoQiBaRoB_\\_@wSI_SLqRl@uS`AyQjBuSxB{QnCcRhNc}@lMi|@|E{^bHak@bHsp@nHsw@xaA{bL`OmeBhCw[bDad@fBcZ~AgWlDew@fB{l@x@_c@h@oa@Jmf@?og@_BojDA_]Pm\\`@g]~@g]z@gSfBe\\jCo]hEub@rGcg@vDqVdGg\\zGc[dFuSrAqFvJo]`Okd@|KeYbPg_@hG_MjOgYjI}NnLsRvLkQjXy_@xY}_@po@e{@`QaU|b@qk@xJoMxT}ZfVo]n]ij@zRe]pMyUpMcWbW}i@nSgf@vQwe@dQmg@pT}r@pSms@rf@seB~Neg@tOof@fQ_g@|Qwe@lM_[rNs[`Qi^|Qs]hIcOHOjJeP|HoMrI}Mv\\_g@bMyP`NaQrN_QdUuXza@kb@rAuAzPePpIoHxHyGl^iZ`]cYtFsE~c@k^`c@o^f\\uYpZmYjQiQvQwRr]qa@nVk[hVg]rS}ZtSa]rPcZhOcYnQe^fLsVfP}_@xNk^jVwp@tdAk{CzHkThKmXtLyYbMcYjOc[|Pe\\zNiVbJuNjNiSdN{QnVkZhPsQdNmNdQ_PxQ{OtQmNbQcMvQgLpQoKhVeMpUmKrOoGfOqFl_@gM~f@sNvf@iM~}@wUvx@yTp\\wJ~\\oKvYaKvZaLxa@}Obb@mQrS{ItSyJp\\cPv\\uQz|@cf@t_G{gD~k@s\\`hAmn@n{BspA`iEmcCte@}Xjf@yYhe@gZrf@w\\t\\yVx[eWtXiUnXqU|FmFvg@}f@nX{XrS}TpSuU`QwSrP}StTgYbTqYzRcYjRmYnQuX`QkYz\\wl@bQy[lPm\\~O_]fO}\\tQsb@|Qse@bKiXjJoXhPig@bN{c@~Lsc@zKmb@lKuc@tJec@jFoVvEgVzK_n@`Kon@dJio@bIsm@dd@guD~A}LdL{x@xHkf@~Hsc@xHk`@pI{_@pKsc@jIq[xJs]xK_^`KmZfNo`@bK}WvK}W~LaY`NuYjX}i@fGgLxKqSzWcf@bn@mhA|e@u}@tQk_@vPa_@bQcb@~M}]tBuFxLy]dLy]nIeYbJw[fLed@nN{m@nGq[|FuZ`Nqx@~Jwt@tIot@dIcv@rHsu@fHet@tU}_CtK{hAhJ}cAtFer@nEsk@jD}h@`Dgh@fD{l@tE_cAvDieAhCmaAvBw`AjAqp@bDoaCt@wh@p@w]v@o\\fAc]|Ak^xB{\\bEeg@tDq\\jE{[rDeVxE{VbGkY~Hu\\|F{SrGyTfKwZxHwSjJ_UbLsV~LsVxM{UzSm\\~Y}b@`OaSfMgOlrAwcBxcAsqAln@yv@lf@sj@n]w^pWeW`XeVbXgUhc@e]lc@a[lf@}Zjg@uYvdBs~@ja@gUdZcQj_@iV~^{Wld@}_@zRcRrQeRhVoXvUaZnScYlRuYnUw`@fSk_@vLqVrL{WbLoXzJoW~Neb@nGqSdDqKjLw`@~GmW~Soz@xj@i`CfMsg@nNoh@fQql@jJ}YdKmYpJyWRi@dPea@vIkSjJuSjJaSfKySlWgf@rW{f@|wA_iClh@q~@nk@{_Abi@gt@t[o`@lZa]|b@mc@tb@_`@zhAw}@trAocA`g@g`@toBw|A`oAw`AhHuF`z@yo@tVyQhUkN|`Bw|@hLgHvKaJrIyGpCeCpJaKl`AcgA`w@mq@zd@aa@``@i_@bQmRzOiRpJyLnZuc@~K{QzJaRnQq^lHuOhHeQlLi\\rH{TlGqTnIy[xEoSbEsR~Fk[|Eg[bEsZtDm]|Cm]jBuYjAiYdCku@t@kw@@iQBmq@a@kxCoBwdNiHeld@?gAFieAn@sm@vA{k@zBwm@tC{j@lCi^`Dy_@jG}n@tIyp@rGgb@hOuz@xWuyApIog@|O_v@`GcZjKqd@lF{TfJ_^nIqZxG{Uj@qBp]kmAnTmu@nOoj@xEeQzHo\\tEmUhF_Zx@{EzCgTjDwXhE{_@lCc\\`Cec@jB_g@xAyi@jAig@~@i_@r@qYfBig@d@iI`B{VlC}V`E{YjDeQtE{QhJm[pH_TdIeTjNyZlLyT~MsS`MwRxIkMvOwT|Zmb@v^_h@hOmS`fAyvAdhAmyAnPqRns@cw@~_@sd@tj@{r@boAsbBdf@ur@zPgWhNcUfHsM|MqVlMyUzDgHzVyd@lJoQnKeSng@e_ArN}V|LuTlgAgtBtKgUdU{f@`DaHv]sw@h]q`Ahc@{sAh]{iAlRer@dBkGxm@mzBlWs~@n|@kaDlnA}mEvi@ipBvScu@xNmi@jWybA`Owq@xJyf@dL{p@lN__AfWqfBpr@s_FxVkgBhPgkAhk@aaE`}AmyKpp@kwE~hEwnZ~jBuvMfuB{_OhJ}o@twAi`KfyAyhKnUcaBjv@sqFb[sxBh\\wyBzYu_BzM}j@nO{m@hTer@~Ucq@|tBsfFjEcLpi@cwA","duration":1474.539,"driving_side":"right","duration_typical":1474.539,"weight_typical":1434.73,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 25 onto A 54 toward Nîmes-Centre/Garons/Arles/Aix en Provence.","modifier":"slight right","bearing_after":74,"bearing_before":66,"location":[4.341146,43.808872]},"speedLimitUnit":"km/h","destinations":"A 54: Nîmes-Centre, Garons, Arles, Aix en Provence, Marseille","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"N 113","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N 113"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"N 113 / E 80"},"distanceAlongGeometry":40069.516}],"exits":"25","voiceInstructions":[{"ssmlAnnouncement":"Continue for 25 miles.","announcement":"Continue for 25 miles.","distanceAlongGeometry":40032.848},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 80.","announcement":"In 2 miles, Keep left to stay on E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":207.778}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.341146,43.808872],"geometry_index":18503,"admin_index":4,"weight":1.238,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":1.137,"bearings":[68,74,246],"out":1,"in":2,"turn_duration":0.013,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":1.727,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":1.898,"geometry_index":18504,"location":[4.341504,43.808944]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":49.273,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":52.969,"geometry_index":18505,"location":[4.342053,43.809064]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.357937,43.807053],"geometry_index":18524,"admin_index":4,"weight":10.906,"is_urban":false,"turn_weight":6,"duration":4.691,"bearings":[102,280,282],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.367,"geometry_index":18525,"location":[4.359576,43.806796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,282],"duration":32.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.039,"geometry_index":18526,"location":[4.360036,43.806727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,284],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.898,"geometry_index":18544,"location":[4.372004,43.806088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,287],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.91,"geometry_index":18545,"location":[4.372646,43.80595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":3.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.77,"geometry_index":18549,"location":[4.374272,43.80547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,301],"duration":3.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.125,"geometry_index":18552,"location":[4.375479,43.804983]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.376414,43.804502],"geometry_index":18554,"admin_index":4,"weight":13.074,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.418,"bearings":[129,145,306],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.379936,43.801893],"geometry_index":18562,"admin_index":4,"weight":4.73,"is_urban":false,"turn_weight":0.5,"duration":4.348,"bearings":[139,307,318],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,318],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.926,"geometry_index":18564,"location":[4.381002,43.801029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,318],"duration":3.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.969,"geometry_index":18565,"location":[4.381234,43.80084]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,317],"duration":41.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.23,"geometry_index":18567,"location":[4.382169,43.800119]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,320],"duration":4.285,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.055,"geometry_index":18595,"location":[4.396936,43.792169]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,324],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.191,"geometry_index":18597,"location":[4.397913,43.791256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,324],"duration":2.023,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.914,"geometry_index":18598,"location":[4.397956,43.791214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":4.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.707,"geometry_index":18600,"location":[4.398383,43.790759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":9.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.129,"geometry_index":18603,"location":[4.399379,43.789618]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.401341,43.787417],"geometry_index":18608,"admin_index":4,"weight":39.445,"is_urban":false,"turn_weight":1,"duration":40.488,"bearings":[144,321,325],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,313],"duration":70.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":67.391,"geometry_index":18630,"location":[4.413311,43.780251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":2.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.789,"geometry_index":18663,"location":[4.424322,43.762272]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[155,160,335],"duration":12.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.977,"geometry_index":18664,"location":[4.424796,43.761552]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[155,325,335],"duration":19.902,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.898,"geometry_index":18666,"location":[4.426861,43.758391]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[152,248,333],"duration":9.695,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.188,"geometry_index":18670,"location":[4.43026,43.753296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,327],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.523,"geometry_index":18675,"location":[4.432222,43.750907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,326],"duration":62.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":58.113,"geometry_index":18676,"location":[4.432341,43.75078]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.582,"geometry_index":18710,"location":[4.452167,43.741139]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.996,"geometry_index":18711,"location":[4.45239,43.741091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,289],"duration":39.934,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.934,"geometry_index":18713,"location":[4.453946,43.740723]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":0.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.359,"geometry_index":18736,"location":[4.466358,43.734545]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,304],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.742,"geometry_index":18737,"location":[4.466481,43.734486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,301],"duration":20.633,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.551,"geometry_index":18739,"location":[4.467467,43.734054]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,284],"duration":2.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.102,"geometry_index":18750,"location":[4.474984,43.732064]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,284],"duration":18.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.031,"geometry_index":18751,"location":[4.475835,43.731916]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,280],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.785,"geometry_index":18758,"location":[4.483047,43.730775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,279],"duration":50.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.238,"geometry_index":18759,"location":[4.483781,43.730691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,321],"duration":6.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.59,"geometry_index":18790,"location":[4.501872,43.726517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":57.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.715,"geometry_index":18791,"location":[4.503484,43.725182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,300],"duration":27.172,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.77,"geometry_index":18823,"location":[4.518812,43.710335]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,311],"duration":7.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.816,"geometry_index":18841,"location":[4.529203,43.705808]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":43.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.711,"geometry_index":18842,"location":[4.531411,43.704385]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,329],"duration":5.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.121,"geometry_index":18853,"location":[4.540578,43.695327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,329],"duration":4.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.383,"geometry_index":18854,"location":[4.54163,43.694046]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,329],"duration":28.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.469,"geometry_index":18856,"location":[4.542534,43.692952]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.544394,43.690232],"geometry_index":18861,"admin_index":5,"weight":18.988,"is_urban":false,"toll_collection":{"name":"Péage d'Arles","type":"toll_booth"},"turn_weight":15,"duration":4.43,"bearings":[149,328],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,328],"duration":15.59,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.008,"geometry_index":18863,"location":[4.544602,43.689989]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.546756,43.68786],"geometry_index":18866,"admin_index":5,"weight":9.773,"is_urban":false,"turn_weight":1,"duration":9.77,"bearings":[147,322,327],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,319],"duration":8.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.023,"geometry_index":18871,"location":[4.548659,43.68598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,308],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.922,"geometry_index":18876,"location":[4.550625,43.684695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,305],"duration":21.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":19.18,"geometry_index":18877,"location":[4.550916,43.684546]},{"entry":[true,false],"in":1,"bearings":[90,272],"duration":1.027,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.926,"geometry_index":18892,"location":[4.558125,43.682974]},{"entry":[true,false,false],"in":2,"bearings":[90,253,270],"duration":2.133,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.664,"geometry_index":18893,"location":[4.558418,43.682973]},{"entry":[true,false],"in":1,"bearings":[89,270],"duration":6.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.832,"geometry_index":18894,"location":[4.559225,43.682971]},{"entry":[true,false],"in":1,"bearings":[89,269],"duration":86.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":80.07,"geometry_index":18895,"location":[4.561679,43.682988]},{"entry":[true,false],"in":1,"bearings":[107,284],"duration":26.266,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":25.609,"geometry_index":18906,"location":[4.594474,43.682698]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":66.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":66.398,"geometry_index":18909,"location":[4.59679,43.682128]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.668,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.684,"geometry_index":18918,"location":[4.602457,43.680356]},{"entry":[true,true,false],"in":2,"bearings":[118,121,298],"duration":40.289,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":42.297,"geometry_index":18919,"location":[4.602514,43.680334]},{"entry":[true,false,false],"in":2,"bearings":[99,270,276],"duration":4.91,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":6.02,"geometry_index":18938,"location":[4.612879,43.678069]},{"entry":[true,false],"in":1,"bearings":[112,287],"duration":4.078,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":4.383,"geometry_index":18942,"location":[4.614239,43.677833]},{"entry":[true,false],"in":1,"bearings":[122,299],"duration":18.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":19.484,"geometry_index":18945,"location":[4.615287,43.677459]},{"entry":[true,false],"in":1,"bearings":[138,317],"duration":2.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":2.531,"geometry_index":18955,"location":[4.619203,43.674821]},{"entry":[true,true,false],"in":2,"bearings":[138,144,318],"duration":8.875,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":9.758,"geometry_index":18956,"location":[4.61953,43.67456]},{"entry":[true,false,false],"in":2,"bearings":[138,298,318],"duration":9.805,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":11.777,"geometry_index":18957,"location":[4.620935,43.673423]},{"entry":[true,false],"in":1,"bearings":[142,321],"duration":22.285,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":24.512,"geometry_index":18959,"location":[4.622695,43.671972]},{"entry":[true,false],"in":1,"bearings":[136,318],"duration":9.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":10.09,"geometry_index":18963,"location":[4.626619,43.668623]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":3.602,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":3.871,"geometry_index":18967,"location":[4.628422,43.667317]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":0.73,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":0.785,"geometry_index":18969,"location":[4.629164,43.666847]},{"entry":[true,true,false],"in":2,"bearings":[131,135,311],"duration":2.969,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":3.184,"geometry_index":18970,"location":[4.629312,43.666753]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":1.43,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.539,"geometry_index":18971,"location":[4.629917,43.666371]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":7.879,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":8.469,"geometry_index":18972,"location":[4.630213,43.666188]},{"entry":[true,false,false],"in":2,"bearings":[132,300,312],"duration":1.516,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":2.609,"geometry_index":18975,"location":[4.631946,43.66509]},{"entry":[true,false],"in":1,"bearings":[130,312],"duration":8.141,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":8.547,"geometry_index":18976,"location":[4.632293,43.664867]},{"entry":[true,false],"in":1,"bearings":[128,310],"duration":1.512,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.59,"geometry_index":18977,"location":[4.634169,43.663708]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":2.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.762,"geometry_index":18978,"location":[4.634525,43.663505]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":13.469,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":13.805,"geometry_index":18979,"location":[4.635163,43.66315]},{"entry":[true,true,false],"in":2,"bearings":[119,127,301],"duration":7.258,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":7.422,"geometry_index":18983,"location":[4.638621,43.661511]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.453,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.465,"geometry_index":18985,"location":[4.640638,43.660715]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":10.418,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":10.418,"geometry_index":18986,"location":[4.640772,43.660664]},{"entry":[true,false,false],"in":2,"bearings":[118,296,298],"duration":8.855,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":9.852,"geometry_index":18988,"location":[4.643765,43.659524]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":62.164,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":60.609,"geometry_index":18989,"location":[4.646363,43.65854]},{"entry":[true,true,false],"in":2,"bearings":[108,110,287],"duration":30.645,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":28.34,"geometry_index":19002,"location":[4.665529,43.652835]},{"entry":[true,false,false],"in":2,"bearings":[108,286,288],"duration":102.309,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":95.617,"geometry_index":19004,"location":[4.675201,43.650621]},{"entry":[true,false],"in":1,"bearings":[108,288],"duration":2.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.219,"geometry_index":19008,"location":[4.708492,43.642976]},{"entry":[true,false],"in":1,"bearings":[108,288],"duration":19.355,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":17.887,"geometry_index":19009,"location":[4.709275,43.642795]},{"entry":[true,false],"in":1,"bearings":[108,288],"duration":79.742,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":73.746,"geometry_index":19010,"location":[4.71544,43.641376]},{"bearings":[124,304],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":19022,"location":[4.73964,43.634137]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 20 miles.","announcement":"Continue for 20 miles.","distanceAlongGeometry":31739.662},{"ssmlAnnouncement":"In 1 mile, Keep right to take A 7.","announcement":"In 1 mile, Keep right to take A 7.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take A 7.","announcement":"In a half mile, Keep right to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 7 toward Nice, Toulon.","announcement":"Keep right to take A 7 toward Nice, Toulon.","distanceAlongGeometry":190}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[122,125,304],"duration":2.836,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.602,"geometry_index":19023,"location":[4.74105,43.633456]},{"entry":[true,false],"in":1,"bearings":[120,302],"duration":18.293,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":16.922,"geometry_index":19024,"location":[4.741956,43.633049]},{"entry":[true,true,false],"in":2,"bearings":[111,169,293],"duration":17.07,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":15.773,"geometry_index":19029,"location":[4.748139,43.630788]},{"entry":[true,false],"in":1,"bearings":[98,280],"duration":0.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.508,"geometry_index":19036,"location":[4.754343,43.629511]},{"entry":[true,false],"in":1,"bearings":[98,278],"duration":32.141,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":29.73,"geometry_index":19037,"location":[4.754531,43.629492]},{"entry":[true,false],"in":1,"bearings":[70,253],"duration":2.754,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.547,"geometry_index":19049,"location":[4.765135,43.63011]},{"entry":[true,false],"in":1,"bearings":[68,250],"duration":33.055,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":30.574,"geometry_index":19050,"location":[4.766014,43.630338]},{"entry":[true,false],"in":1,"bearings":[81,259],"duration":1.238,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.176,"geometry_index":19064,"location":[4.776286,43.633608]},{"entry":[true,false],"in":1,"bearings":[82,262],"duration":28.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":27.648,"geometry_index":19066,"location":[4.776708,43.633657]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":47.203,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":47.203,"geometry_index":19076,"location":[4.786115,43.632806]},{"entry":[true,false],"in":1,"bearings":[97,278],"duration":19.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":19.82,"geometry_index":19086,"location":[4.801475,43.629728]},{"entry":[true,false],"in":1,"bearings":[85,267],"duration":3.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.652,"geometry_index":19091,"location":[4.807923,43.629552]},{"entry":[true,false],"in":1,"bearings":[82,265],"duration":66.492,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":66.969,"geometry_index":19092,"location":[4.809107,43.629621]},{"entry":[true,false],"in":1,"bearings":[62,241],"duration":6.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.277,"geometry_index":19107,"location":[4.82915,43.636117]},{"entry":[true,true,false],"in":2,"bearings":[68,83,245],"duration":2.598,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.457,"geometry_index":19109,"location":[4.831126,43.636823]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":10.32,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.805,"geometry_index":19111,"location":[4.831926,43.637054]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.835514,43.637806],"geometry_index":19117,"admin_index":5,"weight":31.137,"is_urban":false,"turn_weight":0.5,"duration":33.129,"bearings":[81,245,257],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,271],"duration":5.391,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.844,"geometry_index":19130,"location":[4.847474,43.638214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,275],"duration":7.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.574,"geometry_index":19133,"location":[4.849412,43.638119]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.16,"geometry_index":19138,"location":[4.851966,43.637895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,277],"duration":4.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.445,"geometry_index":19139,"location":[4.852033,43.637889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,274],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.449,"geometry_index":19151,"location":[4.853625,43.637791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,273],"duration":17.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.801,"geometry_index":19153,"location":[4.853787,43.637784]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.906,"geometry_index":19158,"location":[4.857715,43.637706]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.857838,43.63771],"geometry_index":19160,"admin_index":5,"weight":16.906,"is_urban":false,"toll_collection":{"name":"Péage de Saint-Martin-de-Crau","type":"toll_booth"},"turn_weight":15,"duration":2.117,"bearings":[87,267],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,267],"duration":0.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.406,"geometry_index":19161,"location":[4.857963,43.637715]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.344,"geometry_index":19162,"location":[4.858127,43.637724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":6.387,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.574,"geometry_index":19163,"location":[4.858258,43.637732]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,261],"duration":10.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.055,"geometry_index":19166,"location":[4.860528,43.637935]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.864202,43.63834],"geometry_index":19172,"admin_index":5,"weight":125.184,"is_urban":false,"turn_weight":1,"duration":141.93,"bearings":[81,253,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.277,"geometry_index":19215,"location":[4.914993,43.638573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":10.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.27,"geometry_index":19216,"location":[4.915531,43.638565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":121.41,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":109.262,"geometry_index":19220,"location":[4.920144,43.638612]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[92,94,271],"duration":49.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":44.496,"geometry_index":19259,"location":[4.974531,43.63949]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.994267,43.63882],"geometry_index":19271,"admin_index":5,"weight":62.281,"is_urban":false,"turn_weight":1,"duration":68.098,"bearings":[88,265,268],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.004,"geometry_index":19285,"location":[5.021401,43.63924]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[103,107,281],"duration":3.641,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.359,"geometry_index":19286,"location":[5.021829,43.639182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":18.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.527,"geometry_index":19287,"location":[5.023216,43.638951]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.030217,43.637147],"geometry_index":19293,"admin_index":5,"weight":112.973,"is_urban":false,"turn_weight":0.5,"duration":115.363,"bearings":[114,291,294],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,304],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.32,"geometry_index":19312,"location":[5.073235,43.625567]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,298],"duration":4.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.027,"geometry_index":19313,"location":[5.074007,43.625265]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":0.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.195,"geometry_index":19316,"location":[5.075775,43.624755]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[105,110,289],"duration":1.223,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.23,"geometry_index":19317,"location":[5.075841,43.624739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,285],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.488,"geometry_index":19318,"location":[5.076288,43.624652]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":0.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.234,"geometry_index":19322,"location":[5.077941,43.624454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,276],"duration":14.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.223,"geometry_index":19323,"location":[5.078025,43.624448]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.083646,43.625088],"geometry_index":19330,"admin_index":5,"weight":9.914,"is_urban":false,"turn_weight":0.5,"duration":8.988,"bearings":[72,251,253],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":29.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":30.91,"geometry_index":19334,"location":[5.08691,43.625779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,273],"duration":13.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":15.008,"geometry_index":19344,"location":[5.095987,43.62561]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":21.926,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":23.562,"geometry_index":19352,"location":[5.100266,43.625996]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.106702,43.627572],"geometry_index":19359,"admin_index":5,"weight":38.16,"is_urban":false,"turn_weight":0.8,"duration":35.59,"bearings":[77,246,255],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,280],"duration":2.875,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.918,"geometry_index":19373,"location":[5.116997,43.626437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":4.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.332,"geometry_index":19375,"location":[5.117844,43.626395]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,267],"duration":10.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.727,"geometry_index":19377,"location":[5.119101,43.626413]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,251],"duration":4.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.273,"geometry_index":19381,"location":[5.122104,43.62693]},{"bearings":[69,247],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":19382,"location":[5.123115,43.627234]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Nice"},{"type":"text","text":"/"},{"type":"text","text":"Toulon"}],"type":"fork","modifier":"right","text":"Nice / Toulon"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"right","text":"A 7"},"distanceAlongGeometry":31776.328}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":122,"bearing_before":124,"location":[4.74105,43.633456]},"speedLimitSign":"vienna","name":"","weight_typical":1055.801,"duration_typical":1078.938,"duration":1078.938,"distance":31776.328,"driving_side":"right","weight":1055.801,"mode":"driving","ref":"N 113; E 80","geometry":"_rdfrAszj`HlXsw@`m@kkBtl@uwBFSvRy{@p\\}~AzQkaAjQokAhKqv@bLqcAvFeo@xBc]pDmi@d@wJ`Cof@`Cyq@tBsz@h@mv@[ov@m@}v@aBot@wDk_AkH{dAeJi_AsJ_w@mG{d@gM}u@iUsiAeQqt@iPsm@aPui@iX{{@qZeaAmJm\\aMif@}Kaj@_I}e@wFe_@sF_b@uFok@cD_b@W}CiAmTkDwu@uAkq@]of@F_f@p@oh@vBit@bEqu@fF}n@hIow@|_@ouCzYywB`t@qkFzSq|AvF_b@xXawBzMqfAtSaqBhG{s@pIkqApBc`@|C_t@rCy|@dCylBHuvAaBuyAiC_iAgJgpBcJujAkJifAkPuxAmOeeAsRmjAg_@ugB{b@scBw`@mrAak@g`Big@yqA_t@cmBkg@{tAcUsq@aPuh@qVq|@qS}|@iHq^cDmQ{Hgc@iKis@iDkWcCcToE}b@{Ggu@qGehA_F_rAuCwbAy@af@]e[g@{fAEahAU}cAU}fA[yyATyq@JiTBqFn@uf@nAir@|@c]bAg]bB{c@vD_x@z@gUb@gLJeCZiLVkIJiDNqET{HHeDLqDNkF\\sRFyDFgDFgDDuDFmCRu[xAwgAbAu|@J}l@a@mc@EyCA{AIyFQgIOeGyAco@uCym@eD}m@iBw`@sAo_@mCod@yBka@wGmfAkAaScCeb@yH{qA{Ewx@{FaaAiEk{@wCcu@{Biq@uCcqAiAes@qAwpA_@_{@Jmg@X_}@n@e|@`Au|@hAes@lAmp@fAebAvAyiAzAkeAvAgdAdAu~@lAk}@hAcx@fAc_BDgiC[knDK{}AK}iBM_yASmbB@}gAIysAAshA`@ecAPe`AVah@x@omApAq_BhAsnAz@uiA`@en@b@qsBNs`@C_iBOm`Ae@qz@c@ix@IsNu@k_ACuBy@_|@y@}g@_BweA{Cu}AgGolCqCusAiDcrBgB_uAaCcjBaA_pAu@clAiAevBc@smCOmrAM__CEugA[k}BCg~@[}fCMit@O}aCIslAGosA_@e}BI{rASqhBQ{rBM}rAMw|AKisAKqhAOq}AK_sABwmABq`ARwn@vAejClA{oAvAwgAdFuxCpGieCjGktB`EgfBrCcsBb@us@ZseAMshBmA_vAi@}l@aFycC{QukFoG_vBgFawBsEouC{CkuE{@g}Bg@gcCjAcbBpCy|A~E{rAjEa{@`JcpArBwYlMuuAzAkPnK{_AhNybAhTavA~TkmAve@ayBdgC{bL`a@{hBda@sqBluAm|GjZcaBlVy_BrVmgB~i@{uEf\\ycD~k@{`GdhAoyJfOqiA|R{eAjM}j@dO{j@`Vku@x]{}@rOg`@v]s~@zQgo@lMmi@tIkg@vEuZ^cClD}ZnAoMdCoZlB{]fAm]JgDl@go@Sem@yB}v@oFyv@iFai@kI{p@yJet@gPwiAaKau@gH{l@sCi\\gAeMyCef@qCav@{AihA^_t@t@af@nBmo@hN_iDx@a[v@_n@Egr@Qm\\?MeAw`@}Au^{Coi@wDae@sFig@sFse@qMgy@uBkMml@cnDiN_{@yEa\\aDyYiAmLeCuWgB_b@oAsc@Oa[\\a\\r@yZpAaXbDab@hHiq@pNukA~a@ukDtGmp@zCof@dAya@LcQTu[y@{p@mDay@cEke@_Hkl@wJ{l@_Re~@mQa`A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 7 miles.","announcement":"Continue for 7 miles.","distanceAlongGeometry":11706.286},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 8.","announcement":"In 2 miles, Keep left to take A 8.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 8.","announcement":"In a half mile, Keep left to take A 8.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 8, E 80 toward Aix en Provence, Toulon.","announcement":"Keep left to take A 8, E 80 toward Aix en Provence, Toulon.","distanceAlongGeometry":281.111}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[66,69,249],"duration":44.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":44.203,"geometry_index":19383,"location":[5.124156,43.627529]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.129554,43.625964],"geometry_index":19398,"admin_index":5,"weight":7.641,"is_urban":false,"turn_weight":6.75,"duration":0.906,"bearings":[141,307,321],"out":0,"in":1,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":1.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.727,"geometry_index":19399,"location":[5.129722,43.625815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,322],"duration":6.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.035,"geometry_index":19400,"location":[5.129987,43.625571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":38.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.547,"geometry_index":19401,"location":[5.131263,43.624405]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":28.809,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":26.641,"geometry_index":19403,"location":[5.139482,43.616979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,324],"duration":83.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":74.977,"geometry_index":19407,"location":[5.1455,43.611353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":9.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.137,"geometry_index":19421,"location":[5.164256,43.596498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.281,"geometry_index":19423,"location":[5.166888,43.595678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":7.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.801,"geometry_index":19424,"location":[5.166971,43.595654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":22.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.465,"geometry_index":19429,"location":[5.168936,43.59509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":6.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.797,"geometry_index":19430,"location":[5.171679,43.594251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":19431,"location":[5.172452,43.594015]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.172557,43.593982],"geometry_index":19432,"admin_index":5,"weight":15.223,"is_urban":false,"toll_collection":{"name":"Péage de Lançon","type":"toll_booth"},"turn_weight":15,"duration":0.25,"bearings":[111,293],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":2.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.824,"geometry_index":19433,"location":[5.172623,43.593964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":10.766,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.684,"geometry_index":19434,"location":[5.173188,43.593803]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,291],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.559,"geometry_index":19435,"location":[5.176184,43.592951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,292],"duration":15.453,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.891,"geometry_index":19436,"location":[5.178526,43.592274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.75,"geometry_index":19439,"location":[5.182869,43.591127]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[107,128,289],"duration":17.793,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.992,"geometry_index":19440,"location":[5.183415,43.59099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.676,"geometry_index":19444,"location":[5.18989,43.58964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":20.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.172,"geometry_index":19445,"location":[5.190164,43.589586]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.197475,43.587978],"geometry_index":19450,"admin_index":5,"weight":116.875,"is_urban":false,"turn_weight":1,"duration":132.438,"bearings":[114,289,291],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,311],"duration":27.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":23.672,"geometry_index":19474,"location":[5.216996,43.570301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,302],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.797,"geometry_index":19476,"location":[5.222445,43.567717]},{"bearings":[123,303],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":19477,"location":[5.222722,43.567587]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Aix en Provence"},{"type":"text","text":"/"},{"type":"text","text":"Toulon"}],"type":"fork","modifier":"left","text":"Aix en Provence / Toulon"},"distanceAlongGeometry":11729.619}],"destinations":"A 7: Nice, Toulon, Marseille, Aix en Provence","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 7 toward Nice/Toulon/Marseille/Aix en Provence.","modifier":"slight right","bearing_after":69,"bearing_before":69,"location":[5.124156,43.627529]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":493.316,"duration_typical":516.699,"duration":516.699,"distance":11729.619,"driving_side":"right","weight":493.316,"mode":"driving","ref":"A 7; E 80; E 714","geometry":"q_yerAwbwwHgMms@gCmQkBoP}@cQKoLZkMlAgPnBiOlCqMrHmUbNaWvQiXpe@gl@pU_XbEyKhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 128 miles.","announcement":"Continue for 128 miles.","distanceAlongGeometry":206585.828},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 80.","announcement":"In 1 mile, Keep left to stay on E 80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":170}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[158,173,340],"duration":11.254,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.672,"geometry_index":19486,"location":[5.228036,43.56103]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,339],"duration":13.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.699,"geometry_index":19489,"location":[5.229491,43.558194]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,333],"duration":3.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.977,"geometry_index":19493,"location":[5.231416,43.554878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,326],"duration":30.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.645,"geometry_index":19495,"location":[5.232054,43.554172]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.242116,43.551453],"geometry_index":19509,"admin_index":5,"weight":12.781,"is_urban":false,"turn_weight":1,"duration":12.422,"bearings":[79,246,262],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":1.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.996,"geometry_index":19510,"location":[5.246639,43.552116]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":83.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":76.898,"geometry_index":19511,"location":[5.247031,43.552173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.484,"geometry_index":19541,"location":[5.283954,43.554887]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":53.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":49.242,"geometry_index":19542,"location":[5.284147,43.554882]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.586,"geometry_index":19556,"location":[5.304726,43.55327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":27.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.816,"geometry_index":19557,"location":[5.304965,43.553244]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[104,108,283],"duration":1.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.457,"geometry_index":19564,"location":[5.315388,43.551978]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,284],"duration":2.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.527,"geometry_index":19565,"location":[5.315984,43.551874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":17.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.188,"geometry_index":19567,"location":[5.316996,43.551671]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,298],"duration":19.762,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.273,"geometry_index":19577,"location":[5.323371,43.549721]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,309],"duration":2.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.855,"geometry_index":19587,"location":[5.329719,43.546431]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,310],"duration":191.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":186.383,"geometry_index":19588,"location":[5.330317,43.546067]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.227,"geometry_index":19662,"location":[5.397344,43.529014]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[124,149,303],"duration":0.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":19666,"location":[5.400254,43.527736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":4.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.352,"geometry_index":19667,"location":[5.40048,43.527625]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,304],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.484,"geometry_index":19669,"location":[5.401764,43.526997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,305],"duration":16.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.543,"geometry_index":19670,"location":[5.402461,43.526648]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":171.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":184.824,"geometry_index":19671,"location":[5.403763,43.525963]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":74.133,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":83.375,"geometry_index":19688,"location":[5.418758,43.520191]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":17.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":20.375,"geometry_index":19698,"location":[5.426055,43.519351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,298],"duration":10.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":12,"geometry_index":19705,"location":[5.428906,43.51847]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,309],"duration":3.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.852,"geometry_index":19708,"location":[5.431359,43.517251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[135,312],"duration":5.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.777,"geometry_index":19709,"location":[5.43207,43.51678]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.433094,43.516037],"geometry_index":19711,"admin_index":5,"weight":9.926,"is_urban":true,"turn_weight":1,"duration":7.941,"bearings":[135,311,315],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,315],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.492,"geometry_index":19712,"location":[5.434144,43.515286]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,314],"duration":23.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":25.344,"geometry_index":19713,"location":[5.434393,43.515112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,302],"duration":11.785,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":12.926,"geometry_index":19718,"location":[5.438326,43.51272]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[98,104,281],"duration":24.352,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":26.766,"geometry_index":19723,"location":[5.441651,43.511909]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[86,259,266],"duration":57.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":60.27,"geometry_index":19729,"location":[5.448906,43.511714]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.466608,43.51274],"geometry_index":19738,"admin_index":5,"weight":32.805,"is_urban":false,"turn_weight":15,"duration":17.379,"bearings":[82,87,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.471717,43.513103],"geometry_index":19743,"admin_index":5,"weight":24.121,"is_urban":false,"turn_weight":0.5,"duration":23.629,"bearings":[87,259,267],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":1.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.133,"geometry_index":19748,"location":[5.478945,43.513033]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,273],"duration":47.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.645,"geometry_index":19749,"location":[5.479295,43.513021]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,292],"duration":4.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.828,"geometry_index":19765,"location":[5.493984,43.512307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[127,303],"duration":19.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.941,"geometry_index":19768,"location":[5.495101,43.511854]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,316],"duration":2.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.938,"geometry_index":19773,"location":[5.499512,43.508659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,314],"duration":3.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.191,"geometry_index":19774,"location":[5.499969,43.508338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,306],"duration":3.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.496,"geometry_index":19776,"location":[5.500787,43.507876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,297],"duration":16.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.68,"geometry_index":19779,"location":[5.501758,43.507467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,293],"duration":4.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.883,"geometry_index":19786,"location":[5.506571,43.506383]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.422,"geometry_index":19787,"location":[5.507694,43.505984]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[116,297],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.887,"geometry_index":19788,"location":[5.50867,43.505617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,296],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.832,"geometry_index":19789,"location":[5.509514,43.505323]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":27.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.027,"geometry_index":19790,"location":[5.510095,43.505132]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,303],"duration":0.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.398,"geometry_index":19797,"location":[5.518381,43.502593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[127,306],"duration":17.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.555,"geometry_index":19798,"location":[5.518506,43.502527]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":2.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.262,"geometry_index":19804,"location":[5.522902,43.499256]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[151,158,327],"duration":1.949,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.797,"geometry_index":19806,"location":[5.523373,43.498727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,331],"duration":8.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.738,"geometry_index":19807,"location":[5.523711,43.498293]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,340],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.52,"geometry_index":19811,"location":[5.524904,43.496354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,342],"duration":12.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.367,"geometry_index":19812,"location":[5.525086,43.495953]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":1.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.797,"geometry_index":19815,"location":[5.526287,43.492885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,341],"duration":18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.648,"geometry_index":19816,"location":[5.526514,43.492415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,325],"duration":13.848,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.133,"geometry_index":19821,"location":[5.529354,43.488544]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,310],"duration":0.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.309,"geometry_index":19826,"location":[5.532641,43.48606]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,310],"duration":4.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.137,"geometry_index":19827,"location":[5.532731,43.486006]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,307],"duration":5.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.07,"geometry_index":19829,"location":[5.53392,43.485349]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":13.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.152,"geometry_index":19831,"location":[5.535228,43.484738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.537837,43.483531],"geometry_index":19833,"admin_index":5,"weight":9.266,"is_urban":false,"turn_weight":0.5,"duration":9.242,"bearings":[122,296,303],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,302],"duration":2.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.777,"geometry_index":19834,"location":[5.538263,43.483338]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.538396,43.483277],"geometry_index":19835,"admin_index":5,"weight":23.145,"is_urban":false,"toll_collection":{"name":"Gare de Péage de la Barque","type":"toll_booth"},"turn_weight":15,"duration":8.57,"bearings":[118,302],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,298],"duration":6.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.27,"geometry_index":19836,"location":[5.539494,43.482854]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[107,120,293],"duration":2.809,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.574,"geometry_index":19837,"location":[5.540947,43.482405]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,281],"duration":0.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.379,"geometry_index":19839,"location":[5.541763,43.482253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":9.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.59,"geometry_index":19840,"location":[5.541884,43.482242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,277],"duration":33.867,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":32.156,"geometry_index":19841,"location":[5.544674,43.481995]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.812,"geometry_index":19846,"location":[5.55594,43.481518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":8.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.828,"geometry_index":19847,"location":[5.55623,43.481513]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[91,113,271],"duration":8.238,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.816,"geometry_index":19848,"location":[5.558977,43.481461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,271],"duration":16.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.16,"geometry_index":19849,"location":[5.561953,43.481411]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.567867,43.481272],"geometry_index":19851,"admin_index":5,"weight":5.918,"is_urban":false,"turn_weight":1,"duration":5.324,"bearings":[92,269,272],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,272],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.254,"geometry_index":19853,"location":[5.56986,43.481225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":158.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":150.191,"geometry_index":19854,"location":[5.570353,43.481202]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,287],"duration":16.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.191,"geometry_index":19895,"location":[5.639194,43.47159]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":5.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.25,"geometry_index":19899,"location":[5.646358,43.470455]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":4.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.457,"geometry_index":19902,"location":[5.648872,43.470205]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[94,99,275],"duration":25.559,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":23.625,"geometry_index":19904,"location":[5.651014,43.470046]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.661272,43.470061],"geometry_index":19910,"admin_index":5,"weight":71.68,"is_urban":false,"turn_weight":1,"duration":78.555,"bearings":[85,262,266],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,265],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.152,"geometry_index":19934,"location":[5.692981,43.472908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":110.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":99.5,"geometry_index":19935,"location":[5.693495,43.472948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,266],"duration":60.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":55.758,"geometry_index":19975,"location":[5.735826,43.481741]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.759439,43.479189],"geometry_index":19999,"admin_index":5,"weight":92.543,"is_urban":false,"turn_weight":0.5,"duration":99.531,"bearings":[78,258,260],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,279],"duration":1.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.492,"geometry_index":20038,"location":[5.796593,43.471706]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,277],"duration":20.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.98,"geometry_index":20039,"location":[5.797237,43.471647]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[83,263],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.141,"geometry_index":20048,"location":[5.806375,43.471973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":61.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":56.844,"geometry_index":20049,"location":[5.806843,43.472017]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[105,108,284],"duration":20.418,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.879,"geometry_index":20064,"location":[5.830617,43.470229]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.838361,43.468575],"geometry_index":20068,"admin_index":5,"weight":30.34,"is_urban":false,"turn_weight":1,"duration":30.902,"bearings":[109,282,288],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,292],"duration":78.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":80.758,"geometry_index":20075,"location":[5.849711,43.465534]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[126,130,305],"duration":27.574,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.242,"geometry_index":20095,"location":[5.876764,43.454811]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.886669,43.449509],"geometry_index":20104,"admin_index":5,"weight":229.793,"is_urban":false,"turn_weight":0.6,"duration":241.277,"bearings":[124,306,307],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[112,115,289],"duration":4.453,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.113,"geometry_index":20197,"location":[5.983334,43.424039]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,292],"duration":14.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.406,"geometry_index":20198,"location":[5.984962,43.423555]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":0.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.293,"geometry_index":20202,"location":[5.990279,43.422019]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,287],"duration":14.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.582,"geometry_index":20203,"location":[5.9904,43.421992]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,268],"duration":0.391,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.355,"geometry_index":20207,"location":[5.99612,43.421474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,269],"duration":0.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.883,"geometry_index":20208,"location":[5.996271,43.421475]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":163.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":159.57,"geometry_index":20209,"location":[5.996636,43.421492]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.637,"geometry_index":20245,"location":[6.061379,43.420873]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[76,82,255],"duration":12.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.852,"geometry_index":20246,"location":[6.061613,43.420917]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,260],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.121,"geometry_index":20250,"location":[6.066496,43.421677]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,261],"duration":8.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.734,"geometry_index":20251,"location":[6.066927,43.421727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,268],"duration":1.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.168,"geometry_index":20255,"location":[6.070336,43.421922]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,270],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.309,"geometry_index":20256,"location":[6.070799,43.421921]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.071686,43.42189],"geometry_index":20258,"admin_index":5,"weight":58.086,"is_urban":false,"turn_weight":0.5,"duration":59.07,"bearings":[94,267,273],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,266],"duration":5.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.566,"geometry_index":20287,"location":[6.094752,43.419614]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,273],"duration":1.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.828,"geometry_index":20289,"location":[6.097125,43.419572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,277],"duration":17.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.066,"geometry_index":20290,"location":[6.097879,43.419502]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":120.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":108.703,"geometry_index":20294,"location":[6.102475,43.418589]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":1.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.262,"geometry_index":20331,"location":[6.133093,43.414205]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,304],"duration":237.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":207.625,"geometry_index":20332,"location":[6.133419,43.414045]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[97,101,282],"duration":19.445,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.48,"geometry_index":20399,"location":[6.196058,43.404757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.203565,43.405286],"geometry_index":20405,"admin_index":5,"weight":24.73,"is_urban":false,"turn_weight":1,"duration":26.375,"bearings":[80,252,259],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":6.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.598,"geometry_index":20414,"location":[6.21326,43.403552]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":58.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":51.09,"geometry_index":20417,"location":[6.21514,43.40243]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,255],"duration":140.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":123.016,"geometry_index":20434,"location":[6.236091,43.403214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":0.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.371,"geometry_index":20468,"location":[6.290157,43.40456]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,255],"duration":55.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":51.613,"geometry_index":20469,"location":[6.290314,43.40459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":10.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.766,"geometry_index":20492,"location":[6.309341,43.399685]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,321],"duration":0.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.16,"geometry_index":20495,"location":[6.311573,43.39747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,320],"duration":4.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.5,"geometry_index":20496,"location":[6.311614,43.397434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,308],"duration":9.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.176,"geometry_index":20498,"location":[6.312942,43.396609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,292],"duration":13.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.762,"geometry_index":20503,"location":[6.316059,43.395432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,265],"duration":2.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.621,"geometry_index":20510,"location":[6.320929,43.395032]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":29.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.742,"geometry_index":20511,"location":[6.321546,43.395115]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,261],"duration":39.012,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.016,"geometry_index":20533,"location":[6.334696,43.395609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,272],"duration":1.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.367,"geometry_index":20560,"location":[6.3512,43.397153]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,269],"duration":6.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.645,"geometry_index":20561,"location":[6.351739,43.39716]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":2.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.289,"geometry_index":20566,"location":[6.354298,43.397512]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[63,69,248],"duration":6.652,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.461,"geometry_index":20568,"location":[6.355141,43.397747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":15.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.77,"geometry_index":20569,"location":[6.357429,43.398598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.362934,43.400381],"geometry_index":20572,"admin_index":5,"weight":2.949,"is_urban":false,"turn_weight":1,"duration":2.059,"bearings":[70,246,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":112.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":107.25,"geometry_index":20573,"location":[6.363686,43.400577]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,248],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.039,"geometry_index":20591,"location":[6.407512,43.403754]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,246],"duration":102.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":96.961,"geometry_index":20592,"location":[6.407906,43.403883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,283],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.16,"geometry_index":20617,"location":[6.44368,43.41366]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":8.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.152,"geometry_index":20618,"location":[6.444127,43.41359]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.582,"geometry_index":20628,"location":[6.447399,43.413377]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[82,89,264],"duration":21.945,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.277,"geometry_index":20629,"location":[6.447634,43.413395]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.455382,43.415711],"geometry_index":20649,"admin_index":5,"weight":57.16,"is_urban":false,"turn_weight":1,"duration":62.41,"bearings":[77,246,254],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.703,"geometry_index":20705,"location":[6.467591,43.427786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346],"duration":41.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":37.219,"geometry_index":20706,"location":[6.467513,43.428005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,228],"duration":27.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.816,"geometry_index":20724,"location":[6.47108,43.439082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":3.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.973,"geometry_index":20731,"location":[6.481649,43.441565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,257],"duration":30.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.012,"geometry_index":20732,"location":[6.482851,43.441765]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,231],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.488,"geometry_index":20744,"location":[6.494037,43.445437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":126.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":117.141,"geometry_index":20745,"location":[6.494507,43.44573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.18,"geometry_index":20799,"location":[6.546648,43.456757]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[71,75,253],"duration":17.484,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.152,"geometry_index":20800,"location":[6.546736,43.456777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.553048,43.458673],"geometry_index":20804,"admin_index":5,"weight":8.785,"is_urban":false,"turn_weight":1,"duration":8.219,"bearings":[62,237,244],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.605,"geometry_index":20807,"location":[6.555772,43.45983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":34.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":32.594,"geometry_index":20808,"location":[6.556337,43.460093]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,261],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.027,"geometry_index":20819,"location":[6.568418,43.464329]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,264],"duration":119.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":113.18,"geometry_index":20820,"location":[6.569652,43.464428]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.871,"geometry_index":20852,"location":[6.615541,43.461999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":49.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.016,"geometry_index":20853,"location":[6.616659,43.462386]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,269],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.121,"geometry_index":20876,"location":[6.63616,43.464217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":93.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":91.32,"geometry_index":20877,"location":[6.63663,43.464226]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,290],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.23,"geometry_index":20922,"location":[6.672702,43.465861]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[112,120,290],"duration":2.168,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.105,"geometry_index":20923,"location":[6.673169,43.465735]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,292],"duration":15.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.809,"geometry_index":20924,"location":[6.673958,43.465502]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,303],"duration":4.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.098,"geometry_index":20934,"location":[6.679439,43.46334]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,305],"duration":12.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.848,"geometry_index":20936,"location":[6.680955,43.462587]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":2.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.574,"geometry_index":20939,"location":[6.68567,43.460206]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[117,125,304],"duration":8.602,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.785,"geometry_index":20940,"location":[6.686621,43.459736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,297],"duration":12.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.969,"geometry_index":20941,"location":[6.689379,43.458721]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.693693,43.457662],"geometry_index":20946,"admin_index":5,"weight":30.504,"is_urban":false,"turn_weight":0.5,"duration":29.289,"bearings":[103,280,284],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,258],"duration":1.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.566,"geometry_index":20956,"location":[6.70438,43.457547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,256],"duration":66.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":66.094,"geometry_index":20957,"location":[6.704915,43.457644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":2.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.602,"geometry_index":20979,"location":[6.723998,43.467316]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":2.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.199,"geometry_index":20981,"location":[6.724728,43.46756]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":3.422,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.414,"geometry_index":20984,"location":[6.725362,43.467735]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.309,"geometry_index":20985,"location":[6.726227,43.467934]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":14.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.883,"geometry_index":20986,"location":[6.726556,43.46801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.762,"geometry_index":20988,"location":[6.729109,43.468545]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.729244,43.46857],"geometry_index":20989,"admin_index":5,"weight":30.672,"is_urban":false,"toll_collection":{"name":"Le Capitou","type":"toll_booth"},"turn_weight":15,"duration":15.672,"bearings":[67,256],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,247],"duration":8.266,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.242,"geometry_index":20990,"location":[6.730086,43.468834]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,242],"duration":5.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.828,"geometry_index":20991,"location":[6.731992,43.469561]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":21.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.391,"geometry_index":20992,"location":[6.733415,43.469963]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.914,"geometry_index":21001,"location":[6.739489,43.472685]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":6.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.086,"geometry_index":21002,"location":[6.740187,43.473234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,214],"duration":8.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.695,"geometry_index":21006,"location":[6.74159,43.474465]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,188],"duration":10.758,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.195,"geometry_index":21015,"location":[6.742495,43.476358]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,330],"duration":21.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.09,"geometry_index":21029,"location":[6.741805,43.479031]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,184],"duration":75.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":67.602,"geometry_index":21044,"location":[6.739068,43.483976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,218],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.652,"geometry_index":21094,"location":[6.754712,43.497935]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,214],"duration":0.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.43,"geometry_index":21097,"location":[6.755098,43.498336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.755192,43.498442],"geometry_index":21098,"admin_index":5,"weight":0.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.578,"bearings":[29,42,213],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.664,"geometry_index":21099,"location":[6.755285,43.498566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":9.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.996,"geometry_index":21105,"location":[6.755895,43.499553]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.756603,43.501869],"geometry_index":21111,"admin_index":5,"weight":8.422,"is_urban":false,"turn_weight":1,"duration":8.488,"bearings":[12,184,192],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.242,"geometry_index":21118,"location":[6.757519,43.503965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":12.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.07,"geometry_index":21121,"location":[6.75807,43.50484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":15.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.578,"geometry_index":21124,"location":[6.759926,43.507802]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.504,"geometry_index":21128,"location":[6.762277,43.511536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,206],"duration":74.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":63.348,"geometry_index":21129,"location":[6.762369,43.511672]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,214],"duration":52.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":44.988,"geometry_index":21195,"location":[6.780234,43.525265]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.543,"geometry_index":21243,"location":[6.782722,43.538316]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[25,30,203],"duration":27.793,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.312,"geometry_index":21245,"location":[6.782967,43.538738]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.477,"geometry_index":21256,"location":[6.788116,43.544796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":2.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.816,"geometry_index":21258,"location":[6.788839,43.545306]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[54,232],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.211,"geometry_index":21260,"location":[6.789407,43.54565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,234],"duration":19.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.023,"geometry_index":21261,"location":[6.789803,43.545859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":4.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.484,"geometry_index":21268,"location":[6.79594,43.548214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,269],"duration":29.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":26.293,"geometry_index":21273,"location":[6.797697,43.548388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,290],"duration":0.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.594,"geometry_index":21283,"location":[6.807299,43.545583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,290],"duration":20.512,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.441,"geometry_index":21284,"location":[6.807517,43.545526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.77,"geometry_index":21286,"location":[6.814468,43.543819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":5.453,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.891,"geometry_index":21287,"location":[6.815877,43.54346]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":1.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.398,"geometry_index":21289,"location":[6.817687,43.543015]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,288],"duration":172.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":151.113,"geometry_index":21290,"location":[6.818211,43.542892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,293],"duration":17.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.004,"geometry_index":21378,"location":[6.872688,43.533511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":152.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":148.855,"geometry_index":21385,"location":[6.879001,43.533925]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.652,"geometry_index":21429,"location":[6.935016,43.541134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,251],"duration":5.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.199,"geometry_index":21430,"location":[6.935566,43.541271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":1.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.996,"geometry_index":21434,"location":[6.937219,43.542001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.512,"geometry_index":21436,"location":[6.937689,43.542295]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[40,45,222],"duration":7.727,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.473,"geometry_index":21438,"location":[6.938228,43.542702]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":5.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.551,"geometry_index":21442,"location":[6.939867,43.544216]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.940897,43.545188],"geometry_index":21443,"admin_index":5,"weight":1.766,"is_urban":true,"turn_weight":0.5,"duration":1.168,"bearings":[37,213,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":8.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.91,"geometry_index":21444,"location":[6.941129,43.545415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,218],"duration":2.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.02,"geometry_index":21445,"location":[6.942833,43.547011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":45.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":50.422,"geometry_index":21446,"location":[6.943397,43.54757]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,245],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.02,"geometry_index":21477,"location":[6.94931,43.557525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.215,"geometry_index":21479,"location":[6.949611,43.557607]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[73,82,251],"duration":18.008,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":19.801,"geometry_index":21481,"location":[6.949974,43.557698]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.955987,43.557394],"geometry_index":21499,"admin_index":5,"weight":27.559,"is_urban":true,"turn_weight":1,"duration":24.168,"bearings":[100,277,283],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":26.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":29.375,"geometry_index":21509,"location":[6.96375,43.558799]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,232],"duration":56.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":61.098,"geometry_index":21514,"location":[6.971359,43.562297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,221],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.477,"geometry_index":21532,"location":[6.97815,43.575121]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,225],"duration":62.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":68.867,"geometry_index":21533,"location":[6.978715,43.575531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,256],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.52,"geometry_index":21553,"location":[6.997326,43.585669]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,260],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.172,"geometry_index":21556,"location":[6.998003,43.585763]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":5.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.121,"geometry_index":21557,"location":[6.998322,43.585793]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[7.000002,43.585869],"geometry_index":21562,"admin_index":5,"weight":21.531,"is_urban":true,"turn_weight":15,"duration":5.941,"bearings":[87,97,267],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":11.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":13.188,"geometry_index":21565,"location":[7.001925,43.585931]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.005804,43.586035],"geometry_index":21567,"admin_index":5,"weight":9.469,"is_urban":true,"turn_weight":0.75,"duration":7.934,"bearings":[90,260,269],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,287],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.926,"geometry_index":21574,"location":[7.008329,43.585769]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.008582,43.585707],"geometry_index":21575,"admin_index":5,"weight":5.555,"is_urban":true,"turn_weight":0.5,"duration":4.605,"bearings":[113,277,289],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,300],"duration":5.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.855,"geometry_index":21580,"location":[7.009929,43.585242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,312],"duration":4.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.93,"geometry_index":21584,"location":[7.011288,43.584479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,324],"duration":0.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.254,"geometry_index":21588,"location":[7.01221,43.58367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,325],"duration":6.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.152,"geometry_index":21589,"location":[7.012256,43.583623]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[133,144,319],"duration":12.594,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":13.816,"geometry_index":21593,"location":[7.013468,43.582396]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,261],"duration":3.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.695,"geometry_index":21607,"location":[7.017024,43.581573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,247],"duration":35.926,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":38.594,"geometry_index":21611,"location":[7.01801,43.581824]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,236],"duration":8.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.754,"geometry_index":21619,"location":[7.030111,43.586305]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[40,46,221],"duration":21,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.98,"geometry_index":21624,"location":[7.032428,43.587933]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.036728,43.591678],"geometry_index":21627,"admin_index":5,"weight":93.684,"is_urban":false,"turn_weight":1,"duration":90.43,"bearings":[41,214,221],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":6.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.797,"geometry_index":21680,"location":[7.06105,43.602773]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,244],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.758,"geometry_index":21685,"location":[7.062876,43.603516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,246],"duration":10.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.09,"geometry_index":21687,"location":[7.063076,43.603581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":3.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.039,"geometry_index":21695,"location":[7.066278,43.604152]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[92,101,272],"duration":8.605,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":9.246,"geometry_index":21699,"location":[7.067449,43.604175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,286],"duration":4.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.988,"geometry_index":21706,"location":[7.070071,43.603878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":6.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.25,"geometry_index":21709,"location":[7.071423,43.603525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,292],"duration":5.012,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.363,"geometry_index":21711,"location":[7.073286,43.602958]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,284],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.062,"geometry_index":21714,"location":[7.074659,43.602683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,279],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.062,"geometry_index":21715,"location":[7.07515,43.602626]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,278],"duration":4.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.758,"geometry_index":21716,"location":[7.075646,43.602577]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,275],"duration":2.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.602,"geometry_index":21717,"location":[7.076579,43.602518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,272],"duration":2.594,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.766,"geometry_index":21718,"location":[7.077083,43.602505]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,270],"duration":10.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":10.781,"geometry_index":21719,"location":[7.077331,43.602506]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.078301,43.60255],"geometry_index":21721,"admin_index":5,"weight":17.727,"is_urban":true,"toll_collection":{"name":"Antibes","type":"toll_booth"},"turn_weight":15,"duration":2.535,"bearings":[87,267],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,267],"duration":4.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.188,"geometry_index":21723,"location":[7.078679,43.602566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,258],"duration":6.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.949,"geometry_index":21725,"location":[7.079395,43.602655]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":5.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.156,"geometry_index":21726,"location":[7.08034,43.602826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,256],"duration":13.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":15.039,"geometry_index":21728,"location":[7.08118,43.602978]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.988,"geometry_index":21731,"location":[7.083261,43.603268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":2.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.445,"geometry_index":21732,"location":[7.083493,43.603299]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,260],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.879,"geometry_index":21733,"location":[7.084101,43.603373]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":0.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.195,"geometry_index":21734,"location":[7.084324,43.6034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.084375,43.603406],"geometry_index":21735,"admin_index":5,"weight":1.957,"is_urban":true,"turn_weight":0.5,"duration":1.344,"bearings":[79,253,261],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":4.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.828,"geometry_index":21736,"location":[7.084679,43.60345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,259],"duration":6.066,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.645,"geometry_index":21737,"location":[7.085626,43.603584]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":14.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":15.703,"geometry_index":21741,"location":[7.087341,43.604015]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":65.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":70.418,"geometry_index":21745,"location":[7.091052,43.605551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.227,"geometry_index":21767,"location":[7.108633,43.61159]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,247],"duration":8.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.66,"geometry_index":21768,"location":[7.10892,43.61168]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,236],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.082,"geometry_index":21772,"location":[7.111019,43.612582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,231],"duration":101.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":104.48,"geometry_index":21774,"location":[7.11171,43.612973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,248],"duration":44.633,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":45.727,"geometry_index":21817,"location":[7.122555,43.632361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,216],"duration":4.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.656,"geometry_index":21841,"location":[7.130201,43.640565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":0.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.281,"geometry_index":21845,"location":[7.131103,43.641375]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[42,46,220],"duration":18.246,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.695,"geometry_index":21846,"location":[7.131162,43.641426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":17.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.188,"geometry_index":21851,"location":[7.134969,43.644452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.234,"geometry_index":21854,"location":[7.138606,43.647319]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":36.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.789,"geometry_index":21855,"location":[7.139244,43.647829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":23.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":25.18,"geometry_index":21864,"location":[7.146167,43.654646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,229],"duration":9.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":10.359,"geometry_index":21881,"location":[7.149609,43.659279]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.152189,43.660295],"geometry_index":21892,"admin_index":5,"weight":6.352,"is_urban":true,"turn_weight":0.5,"duration":5.336,"bearings":[71,239,251],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,257],"duration":62.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":67.336,"geometry_index":21897,"location":[7.153742,43.660616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.156,"geometry_index":21930,"location":[7.172249,43.662778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,254],"duration":64.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":70.773,"geometry_index":21932,"location":[7.172833,43.662902]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":5.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.453,"geometry_index":21956,"location":[7.1912,43.666539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.192864,43.666814],"geometry_index":21958,"admin_index":5,"weight":5.789,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":5.172,"bearings":[71,80,256],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,249],"duration":6.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.367,"geometry_index":21960,"location":[7.194157,43.667142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":3.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.719,"geometry_index":21962,"location":[7.195771,43.667614]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.196534,43.667843],"geometry_index":21963,"admin_index":5,"weight":11.391,"is_urban":true,"turn_weight":0.5,"duration":9.688,"bearings":[68,242,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.198904,43.668557],"geometry_index":21965,"admin_index":5,"weight":2.023,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.809,"bearings":[67,72,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,247],"duration":16.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":19.016,"geometry_index":21966,"location":[7.199344,43.668694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,346],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":1.82,"geometry_index":21985,"location":[7.201668,43.671364]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,338],"duration":6.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":7.219,"geometry_index":21987,"location":[7.201546,43.671676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,312],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.656,"geometry_index":21996,"location":[7.20053,43.672711]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,312],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.805,"geometry_index":21997,"location":[7.200413,43.672786]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,312],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":2.68,"geometry_index":21998,"location":[7.200268,43.67288]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.199773,43.6732],"geometry_index":22000,"admin_index":5,"weight":15.102,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":13.141,"bearings":[132,313,322],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,319],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.047,"geometry_index":22006,"location":[7.196955,43.675242]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.196943,43.675252],"geometry_index":22007,"admin_index":5,"weight":6.055,"is_urban":true,"turn_weight":1.4,"duration":3.969,"bearings":[130,139,320],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,324],"duration":2.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":3.219,"geometry_index":22010,"location":[7.196179,43.675952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[147,329],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":7.68,"geometry_index":22012,"location":[7.195696,43.676475]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.194717,43.677795],"geometry_index":22016,"admin_index":5,"weight":8.07,"is_urban":true,"turn_weight":0.5,"duration":6.59,"bearings":[144,154,337],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":2.891,"geometry_index":22020,"location":[7.193953,43.679218]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":48.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":55,"geometry_index":22022,"location":[7.193709,43.679778]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[172,353,358],"duration":15.738,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":17.305,"geometry_index":22036,"location":[7.189897,43.690765]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":41.398,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":60.539,"geometry_index":22039,"location":[7.189261,43.694343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,180],"duration":3.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.562,"geometry_index":22057,"location":[7.188316,43.703803]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,190],"duration":1.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.305,"geometry_index":22059,"location":[7.18843,43.704535]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,196],"duration":2.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.461,"geometry_index":22060,"location":[7.18853,43.704793]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[26,41,204],"duration":4.301,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.617,"geometry_index":22062,"location":[7.188784,43.705244]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,213],"duration":3.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.375,"geometry_index":22066,"location":[7.189354,43.705968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,219],"duration":10.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":11.289,"geometry_index":22069,"location":[7.189868,43.706447]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":5.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.234,"geometry_index":22072,"location":[7.190762,43.707133]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.859,"geometry_index":22074,"location":[7.191304,43.707476]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.19138,43.707521],"geometry_index":22075,"admin_index":5,"weight":15.984,"is_urban":true,"toll_collection":{"name":"Nice Saint-Isidore","type":"toll_booth"},"turn_weight":15,"classes":["toll","motorway"],"turn_duration":15,"duration":15.918,"bearings":[53,231],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,233],"duration":4.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.172,"geometry_index":22076,"location":[7.191655,43.707669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,241],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.602,"geometry_index":22079,"location":[7.1932,43.708375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.194024,43.708661],"geometry_index":22081,"admin_index":5,"weight":4.016,"is_urban":true,"turn_weight":0.8,"duration":3.012,"bearings":[64,237,245],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,244],"duration":11.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.43,"geometry_index":22082,"location":[7.194744,43.708912]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":72.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":74.742,"geometry_index":22083,"location":[7.197836,43.709924]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":7.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.641,"geometry_index":22131,"location":[7.21352,43.7159]},{"tunnel_name":"Tunnel de Canta-Galet","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[17,195],"duration":19.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":19.641,"geometry_index":22137,"location":[7.21368,43.717596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,225],"duration":8.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.375,"geometry_index":22145,"location":[7.217384,43.721144]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,258],"duration":19.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":19.227,"geometry_index":22155,"location":[7.219649,43.721959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,262],"duration":15.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.18,"geometry_index":22156,"location":[7.225626,43.722596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,215],"duration":6.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.734,"geometry_index":22170,"location":[7.229552,43.724555]},{"tunnel_name":"Tunnel de Saint-Pierre de Féric","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[46,227],"duration":8.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.141,"geometry_index":22174,"location":[7.230902,43.725678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,224],"duration":15.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.031,"geometry_index":22179,"location":[7.232893,43.727076]},{"tunnel_name":"Tunnel de Pessicart","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[37,217],"duration":22.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":23.328,"geometry_index":22187,"location":[7.235761,43.729857]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.852,"geometry_index":22197,"location":[7.240647,43.733508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,239],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.883,"geometry_index":22199,"location":[7.241363,43.733832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":10.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.367,"geometry_index":22200,"location":[7.241587,43.733926]},{"tunnel_name":"Tunnel de Las Planas","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[78,257],"duration":44.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.352,"geometry_index":22209,"location":[7.244456,43.734755]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.672,"geometry_index":22228,"location":[7.255478,43.73171]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,166,341],"duration":6.293,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.898,"geometry_index":22229,"location":[7.255689,43.731266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,327],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.07,"geometry_index":22234,"location":[7.256516,43.730084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,321],"duration":8.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.828,"geometry_index":22236,"location":[7.256864,43.72976]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.25882,43.728771],"geometry_index":22246,"admin_index":5,"weight":2.438,"is_urban":true,"turn_weight":0.5,"duration":1.785,"bearings":[109,284,293],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,287],"duration":9.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":10.906,"geometry_index":22248,"location":[7.259323,43.728651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,259],"duration":8.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":9.297,"geometry_index":22257,"location":[7.262243,43.728678]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,251],"duration":12.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":14.453,"geometry_index":22261,"location":[7.264685,43.7291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,223],"duration":6.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.891,"geometry_index":22271,"location":[7.267482,43.731008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,251],"duration":1.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.211,"geometry_index":22278,"location":[7.269014,43.731715]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,254],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.398,"geometry_index":22279,"location":[7.269321,43.731777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,270],"duration":4.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.086,"geometry_index":22284,"location":[7.270802,43.731879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.797,"geometry_index":22285,"location":[7.272206,43.731891]},{"tunnel_name":"Tunnel de Cap de Croix","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[90,269],"duration":16.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":17.953,"geometry_index":22286,"location":[7.272689,43.731895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,261],"duration":7.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.555,"geometry_index":22297,"location":[7.277724,43.731626]},{"tunnel_name":"Tunnel de la Baume","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[62,241],"duration":13.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":14.508,"geometry_index":22303,"location":[7.279854,43.732302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.289,"geometry_index":22311,"location":[7.283765,43.733368]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,257],"duration":4.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.492,"geometry_index":22313,"location":[7.284105,43.733427]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[83,94,261],"duration":4.688,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.148,"geometry_index":22318,"location":[7.285335,43.733595]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,273],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.375,"geometry_index":22323,"location":[7.286785,43.73364]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,283],"duration":1.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.875,"geometry_index":22328,"location":[7.287779,43.73353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":12.102,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":28.312,"geometry_index":22330,"location":[7.288313,43.733417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.062,"geometry_index":22338,"location":[7.292112,43.732686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.445,"geometry_index":22340,"location":[7.292715,43.732598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,279],"duration":3.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.227,"geometry_index":22341,"location":[7.292835,43.732584]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.293993,43.732437],"geometry_index":22343,"admin_index":5,"weight":3.773,"is_urban":true,"turn_weight":0.5,"duration":3,"bearings":[98,275,280],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"tunnel_name":"Tunnel du Paillon","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[96,277],"duration":15.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":17.141,"geometry_index":22345,"location":[7.29488,43.732353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,274],"duration":11.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":12.617,"geometry_index":22347,"location":[7.299868,43.732005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":50.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":51.742,"geometry_index":22353,"location":[7.303595,43.731991]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":0.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.391,"geometry_index":22379,"location":[7.318876,43.734917]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,234],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.312,"geometry_index":22380,"location":[7.318974,43.734968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,232],"duration":8.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.055,"geometry_index":22381,"location":[7.319311,43.735159]},{"tunnel_name":"Tunnel du Rosti","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[46,225],"duration":9.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.648,"geometry_index":22384,"location":[7.321207,43.736435]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":11.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.664,"geometry_index":22385,"location":[7.323465,43.738005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":26.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.852,"geometry_index":22387,"location":[7.326137,43.739855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,244],"duration":2.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.719,"geometry_index":22401,"location":[7.33398,43.741965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":38.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":36.625,"geometry_index":22404,"location":[7.334756,43.742278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.25,"geometry_index":22430,"location":[7.346278,43.743787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,246],"duration":18.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.047,"geometry_index":22431,"location":[7.346354,43.743812]},{"tunnel_name":"Tunnel de la Borne Romaine","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[101,283],"duration":29.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":27.266,"geometry_index":22447,"location":[7.352027,43.743546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,247],"duration":16.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.32,"geometry_index":22459,"location":[7.361128,43.74447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[105,280],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":22475,"location":[7.365985,43.745371]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":206622.5},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":1609.344}],"destinations":"Aix en Provence, Toulon, Nice","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 8/E 80/La Provençale toward Aix en Provence/Toulon/Nice.","modifier":"slight left","bearing_after":158,"bearing_before":160,"location":[5.228036,43.56103]},"speedLimitSign":"vienna","name":"La Provençale","weight_typical":7341.574,"duration_typical":7378.348,"duration":7378.348,"distance":206622.5,"driving_side":"right","weight":7341.621,"mode":"driving","ref":"A 8; E 80","geometry":"kcwarAg_b~HjX_MvsAwh@bbAeb@zbAwd@rcAgc@fb@{Snb@mX`MuJ`]e[|QkUfSuXx`@}n@vXsm@rUoq@nRmt@nMmq@xIws@zEim@vA}[zAg{@O_r@cCsq@cC_i@mh@uyGqBoWkPgwBoUkwCkLqxAkKowAs@kKyH{fA}MkwBkKykBgIq`BkFakAyEejAmEujA{D}iAkD}jAwCyiAcCygAyBueA{AgbAqAq{@qBwmB?Aq@kw@g@ou@k@geBSehBLuqBPqz@`@my@Vcb@PcXHaKv@obA`AkaAxAqaAzAicAtEexBpBa{@`C_{@dFk`BvCuz@`Dgz@dHo`BzIejBxRiqD`S{oDr@}MzYimFxN_gCbMsxBhEyo@rEan@tCw]tC{[nEgd@tFof@~CwV`BmMlHwg@`Isg@pJui@fMup@xK_i@lMyj@~Mej@`L_b@dQgm@tMkb@zLa_@tMk^lPcd@nSug@hTsg@bW_k@hYkm@|Xik@vYyk@vUkd@xSq`@nv@uwAjm@ckAdVoe@n^it@rc@w_AnTkf@vOs^zOe`@hNu]p\\a}@`Mm]nL_]fNwa@tM{a@lMab@xLoa@tYsdAdX}dA~UqcAbJqa@pI{`@zRs`AzQeaAjYg~AlVcyAt`@oeCx_@cfCd`AwmGlN_aAzMubAjN{hA|KucAfD{\\zCm\\zCa^pCa^lCu`@fC_a@vB_`@jBm_@fBab@~Agb@xAoa@lAw`@bCqdAvBkeA~MccIbC{nAlByz@xB_x@nCiy@~Cgy@zAc]|A_\\rCgh@~Cuf@jFat@dGus@|Eih@jFig@hK{{@nLkz@vFk_@~Fe_@dPq~@bLyk@|Lyk@dKud@zJma@jJa_@pLmc@bMsc@vDeMnHkV`N_d@hZq|@~Z}z@|EcMdSch@`Rcf@xTqj@xi@kpApkC{iGjbAaiCz_@alAvJy\\zNgi@hKua@~G_ZrGoZ`Iob@zHac@|C}QpGwc@rFoc@|G}m@tCu[xEmn@ZcFxC_g@jC{h@`G{vA~CsoAdDer@hEun@`Dwd@vD_^xB}QbCcRtJgp@~G}_@xIa`@lDgOhEuO`DsKvEkPnQmk@rYav@`^yt@l\\mk@`SqZjYmc@|m@s`AzIqNl`@gm@jf@kw@bZ{h@f]cz@hRei@pLof@zK{g@~Iol@xEuc@lEgl@xEk_AxBsl@rFczBd@im@c@o}@cEonBcFsgC{A}`BiFcuFkAygAiAkdAuAey@cB_t@wIghCqXajFaEiw@_Dwt@{EihBsA_l@cA}y@u@gm@i@agA?w}Az@w_BnD}lCV{TbCotAzDorAdHysB`GouBv@{lAkAceAmCidAmDyvAOm[N}Tj@yTtAkZxBqXfD{YlDsWhH__@rGwWhFiQjKwY~Wsl@j\\kh@b|AkxBpWc^rZec@`Sq[nNaYjLaXvGkQtGsSbGuTnPc`AdEu_@tD_c@lKwdAjDkYtFo[zKki@|WeeA|U_|@jQws@|Jic@pKae@dR_|@lPo`Atm@y~DnTuaAvS_r@pSyj@bCyFhc@_aAbn@qgAdc@sn@v^ic@bg@ug@|KqJzKqJdS{PbZcTpUqPdn@c]fXqLdYiL`XkJtjAw\\hpAm]va@{Mj\\eMhu@s[bm@_\\fw@wg@lw@_r@x[c[rq@_w@vZsa@tZye@l[}h@vSaa@jBsD`IyO~]ox@r[c{@pHsTpXey@zp@{gB`KsYxBiGlYscA`[yyAfEi[fBuUTqFlNkmDzPunFpCahBtA_mBx@w|AzAszCHcQfBujDbB_yDFuLlG}bJNoXlAabBl@y]r@q]~Bes@~D{q@|KknArM{kAb_@obD~Ik_AtHe`AfFk_ArCa_ApAup@Rqp@c@_q@q@yr@qFqaCgFapBiAek@Kuk@h@mk@|@af@z@}c@rCiq@xG_wApWm_H|Om|FrOmfFbIcpBxLwrBdPasBhSytBvZglCf^spCrn@upE|e@_aDni@}gDXcBzm@ipDxq@u|Dlp@i}DdU}|ApP}oAvd@{kEbO_mBlMukBrAeW|FchAbD}t@pAa]~Byn@|DauAtEanC|@sqAZyvB{@gjAmBqrBcDygBoLwaEyIubD_FcmCgAswAYgxAPoyB`@oaBBolAe@}hAaB_w@{Buq@kFq}@iFqp@qJy{@wKuy@cTqvAuLaz@kXwoByIoy@qGg{@cDqf@uBce@gEapAqBwv@oAc_@wB{r@mFydAyGw~@aJoy@gKww@qOk{@eRs|@cPwo@{Qmp@yl@sqBk`@qvAsVgjAeJek@wI{p@cHmw@sEux@}Bsm@oBicA_DeeBiDgoByCihAoFktAsIqtAoKerAkJk}@oK{|@kKit@cLmt@kO{y@cPey@qc@woBg]qwA{g@e{BcLan@}Jiq@yGao@sEio@oCoc@iBee@}@kg@Sqx@t@ux@tBmo@nDio@zEwj@zG{i@bIsn@`Ksm@~]cjBlZ__BhRaiA`OofApIms@`Het@fGk}@dF_cAxBmw@tAgy@RcnA[gp@_Agh@yCeeAyFqfAeHegAkBuUwLstAsNo_BcPanB{D{l@cCgm@uBi{@c@uf@Okf@^an@~Aar@nCyw@bFgw@pGsu@vIot@hK_s@pKen@rPww@jR}v@rVo{@da@gpAd\\a`AxSul@f\\y|@|h@cwA~Yqz@li@g|At[sdAn\\}iAha@k_B`Pet@hNws@~Kyp@nJkp@pGih@jHcr@xDgc@rFes@zEk|@tBgg@pB}y@~@an@^gn@Igk@?s@q@cl@{@es@sBis@qRk}EwAg\\_Gs_BkF}aBcBeaA}@abAQmoBjAe~AdEanBrFsqAxGetA~IguA~Pu}BvO_hBlSizBnT}xB`SkjB~OgvAzg@wbEdUebBhVydBfOoaAnJ}o@zGib@pm@}sDvw@glEnD{Qrk@qxCzq@o`Dbh@{~BjVieAha@{aBvX_fA`]ytArQmn@~h@ioBn[cgAvo@mxBd\\igA~_@ulAjh@s~AxY}z@xW{w@l^{cAl^cbAv[y{@fp@ieBv]q{@puAedDt[cv@f@kAz\\iw@r[es@fYeq@bYcm@lXyn@pmAwnChRaf@vOoa@nIqU~HiUhImYdPuj@~Pir@|FgWpOiu@vMur@fXg{A`_@{aBbRwy@zPyo@~U}s@zVon@j^}y@x\\er@ra@qu@zUs_@|U{]hj@ev@|n@ow@vn@sp@lc@ud@bq@g}@`_@{q@nWgr@pViz@tQoy@nKep@tJix@pHsz@hMcsB|IsuCzEmgDpCgfBvEgtB~LizCpN_kBhM}eApUs{A|TggAhYefA|Tuq@nRmg@pRob@v\\an@r^si@v\\oe@`^gf@hk@g|@|Tyb@dSge@zSgp@xTo`ArVqxAhMc|@rNoz@vLqi@hJmYjRyf@f[ko@r^ep@zq@mrAhf@krArZ{mAdPiy@~Wi_BdPkqAbLwmArIukAlFmjAzCydAdAabAHgkAaA_`AmD_sAuDqz@cHwfAoMgdB}Rs}B_KcmAyGgaAyGcqAyCobAgAqdAEgEjAgzAtF}oAlGsw@zLkeAxYgiBf]wdBx\\__Bf^qaBxYwbBbG_e@t@qF`QcuAbKelBjB}bBe@g}@AmHa@yUsCsjCmAwnBg@}yAt@wwAzBukArJubChLegB~WgkC|QkzAtUshBlPqlAhf@msDrR{~A|R{nB`NkeBpJ}hCpEexCPabAMioAkDktCsGefDkGyeDoBwcCBalBzAuiE?anAm@sx@kBmw@_C_q@qHsiAkKihAec@oyDwZmhCyU_tB_`@cdDkE}`@wAsMoSgpB_Hau@oEgm@oJszAcB}YoDyfAkAu^mAqg@{@_dA@}[d@se@VyOTaN`A{XlAoY~AyVxAkSrCk\\`CwVvMkcA`Lom@rLmk@`R{u@zUk}@n[{rAjN}m@pOi|@xN{iAbEyh@~Cuh@~@m[`Byk@b@gz@y@acA_Cqx@cIelAgLuxAgMq|AuEer@eCwjAAiCQi`AdB_rAjCcn@nJglAvMikAnQopAhKes@tNeaAvJck@nGmi@dIgu@dF{`AbAux@qAkl@eFc}@{Ki~@cL}p@kNes@yN{k@a]_xAsL_x@yD{b@wEsv@cAir@bBw~@lGcw@xHgk@|Nys@pPej@pVwn@zTah@~Tcf@vVek@fUep@jR{p@xPst@jRg_A~Ry`AvMwo@fQgx@zIo^hPwh@`[e}@vH_S~HkSvCwHhQ_i@zYyjA|Loz@jHyfA`D{x@xAam@pBqi@dFol@|Gih@nOiy@hTo~@fNos@bQqeAvKieAjF_fAjCytA`EygBtBqp@b@mNlEocAbF{w@~Gi{@fI{y@`Jox@~Kk_AtMwcAlHgp@zIiw@lIwdA`Ey{@pCmaAf@eo@Akk@i@sz@oBu~@iFw~@gJ{jAsJceAkGup@iMa{AkEmbA_B_r@Cot@fAqx@`Ewt@zIk`AtMu}@tOsw@`Oen@pT}y@dWu{@z]ilA|WegA`Our@xHwj@pJwaA~Fku@`G}`ApJkmApJ}p@nKim@~Nqs@hUuz@nN{s@fJwk@xBqW|GscBs@o`AyDa_AqJ{lAuIafAiKayA}@qM{DefAaBkgBzDghArMmyAjVotA|\\mnAj\\_{@`OeZ`Ued@bg@saA|FuLpVog@z[ew@r]{dAt\\qtAfUctAtQqlBpH{uA`@sv@uDslA{LahAy[{{Aa`@aqAae@qsAkd@e~AcZerAaRelAgIku@sF_x@oCkeAZsoAvCuz@nFyy@jKceAvIiq@vVsfBz]odCrd@w~DbMexApIwrA|FcxAxBgfAZucBqDi|BkJyvCuKkzCiSayFsMeqDaLc~CkGgkBcHspBcDaaAg@eLcEsbAuGyiAkLm~AkHsv@sMg_Aga@u|CiPwiAqRaxA_LadA{@yHuFso@iDci@yCs_Aw@u|@Xuz@~CcmAlKotApHyn@bNuw@~Sqy@dLy[`MkZfd@mdA`Xc|@pT}gApS_qAzPoy@pMwc@lQsf@lPe]dS}]~^se@~HmHpl@cj@`y@gx@xa@cf@fAqAnY}e@`Xak@`^kfAxI{YdLma@dGsYhIob@tHcl@lFsf@rEop@~Aqc@bAck@Y{g@aBqo@eDqe@QaCoGat@_Iqr@_Fcl@yEkj@kC}c@cBwf@uA_h@g@oj@Jaf@?[h@gf@vAog@zBen@dE}cA|Bmv@t@s_@Ha`@Kq]q@}ZiAuWwAkVoDkc@{Fad@}H}e@oJ{c@{N{j@kd@uwA}Uiw@}HiYcGuXaGwZgEcZeDwYiCwZuAwXuAka@[wd@f@ul@bCmg@|D}h@xHwt@hK{r@zIql@`Gsj@rCu]|Byf@d@aSNuSMu`@Yq[uA__@_Dec@gFae@gEcXiDmTkHg^et@_nCyn@qgCyWqfAye@}fCgK_n@gJoo@_Kg~@uF{p@aFsp@sGgmA_EywAaHgrDgDkuB_FajDcDmwCaBwdDi@mkC}DokCkw@gi_@oCci@}Ga~@aLg~@iYiyAaGsWyKy_@cKm[cP{b@wi@usAcuI{yS__@m`A_\\c`A_m@irB{XmhAyYerAuOiz@aHab@_Igj@uH{l@eHot@cF_t@uDso@cCcq@}Acz@e@qz@GabAhB{aAhEahAzHikA~^}`EjC}ZdAsLzAmQvAyRvAqUv@}Rl@iTZmWFsUUgW[oPc@uM_B_[mByUeCsU{CiTmD{TcEeTgGcW{EmQyHwXeW_y@oHaVoHqWyHoX{EwRyEqSsDkR}CeQ_DoR_DoUoDcZ{Cc[oB{UsCq_@sBu]aBuZ}By_@aDon@eCcb@yBsZqB{UaCkSsDmX}C}R}EcUsHa[oHyVuGsRiK{VwEeKaGmLwFqKyIgOaMmSoOmUiOiSuMePaVqXsNcOeTsTuNwMaQuNaSyN{KoHuRmL}OgIePsHe[kKoPsEeQeEeNeC_M}A{P_B}PeAoPe@}OOwQZkMd@mIh@sL|@cPdBoMjB_NbCeP|CeW~F{d@hLa^dKuLzCoR|Eaw@lOuw@~K{n@dHwo@`Ck}@{@{_@aDk^gEei@kJyg@aMie@wQ}e@kTw_@mWm^wY_]a^y\\{`@uYud@{X_g@iUyi@ySym@cXucAsWsaBcJsbAyYm|DkWqqCoKcjAuG_p@cJ{v@wJuv@k^m}B}_@}jByMml@eNei@}Wi|@sYmy@mWio@wVgi@{BgEiQk\\y_@qs@{uBkbDg\\mn@e_@{s@w_@k_AkXcx@uSkt@_AgDam@_xCcQirA{La}A_Gs{AaBolANqoAhJcdGDyeAWgd@kAia@}Bmk@qDqi@}Fsk@eIqk@cLsn@iLci@qR}p@eUmn@Sk@uf@_iAef@wcA{Uuh@wPsc@gOaf@yN}l@uKmn@sIau@uFo|@iAei@Uge@bAin@xB{l@zJegBdE_}@pBsf@d@_g@Tyg@_@eu@cBkv@qBeh@wCum@_Fgs@}For@qJwaAwQm}AwCoTg@oDiHid@eW{}Aud@i`Cin@_dCkVm{@g\\uaAuRcj@mOib@ueAwsCkaAchCiVgu@sV}z@uTa~@{RseAoO{hAyEqa@_Eyb@iDme@qCse@eEclA}Aiy@[{y@d@umAtEshBzHo{AvK_|AxOidBvLmgA|Jcy@vKsz@zW_qBvSo_Bz[a~Bbj@aaEpsAcdKvd@yiDpKc|@`H_~@fCoi@|Aap@`@ex@c@ew@_Boj@_Dmn@eG_n@iF_g@mL_v@oMio@oNgm@md@uaBcp@{vBil@{yBeW{dAuTajAuIof@aI{f@kKgt@_Hei@gGck@yGup@cEwf@oDie@sCkg@{Bm`@gB{a@{Aia@gAmc@eAad@q@ic@e@yp@Owg@G{q@d@}eEFqbBG{s@Qmr@Qk\\w@gx@aAuv@oCenAcB{h@eB{g@oFenA_Dgj@mDql@iD{f@eFqp@cHuz@eIy~@mIy{@qTavBaUkwB{TwvB{Is_AqG_x@eFwr@_Eup@}Baf@gB}b@qAu`@aAia@s@a`@i@qc@]ei@Can@Lug@d@kh@v@wf@pAkh@`Ay\\pA{]jBka@~Bsb@nEyq@nBsWvBsX~JkdA|Dg^tFod@bEe[dOuaA|EyXzFe\\pMip@jJ{c@rJ{`@pLge@zRit@dIuX~IoYbJuYbJaXbQ}f@bPkc@rVco@lVsm@fKiWvgAilCx~@a`Cj\\mz@l~@kkD~UyjAbPeaA|K{z@zCsVfGck@zBkU|Dqd@rDsk@zHs`BjAim@Zyj@_FedFeBys@kD_v@yDse@aEm`@iCuR{Gmc@iKei@gLwd@oZwaAw^c|@mLeVqvDivHwzAszCevA_tCqKeUuIyRyJuUgIsScJyUcIeUsImViHyTcI}V}GyU}Lkc@aJ}]sEqRsGaYU_AwEsVoB_MmKau@wCqSyQupAsM{lAq@mGoOss@ml@cvBcX}wAud@_gCaI}\\kJm]qJaZyP{c@iM_XqI{Po[_h@g[mb@ia@sj@_a@ej@ePcS{ImI{M}LiMkJ{MmI{LkG{MmFeHgCmLaDoKaC{J_BkLqAmIe@mIY{OC{IPkNf@oGp@cIhAcLrBgK`C{LvDeLhE_JfEaHlD}JbGgP~LuqBl~AeKpHgMpImKhGeKhFgLtE{L~D}LxCcM|BwLvAkM`AkMZwL@sMi@{LeAoSkCcZsFydCqe@{|Buc@{LqCkSgG{RmHyLkFwKwFgLkG}KeHcKeH_P{LeLsJ_M{LcVsXaQoUeIqLwHeM_IgNqH{NyOk\\mOq\\q_@wy@aOe\\qGoOoFmNuIqUeG_RyHyVmHmX}GcYkEoSaMqo@wTujAwIuc@sDmQcEgQaFsQeE{MiFyN{F{N_HmO}G_NmHsMuHwLeIgLmJgMqImJqRgRWUwCeCsE{DwFyDgMuIeKcGcIkEmIwDmJwDgBm@eA]qKoDmM}CeOaD_rAaVkOwC{TiE_TiF_RmFsSiHoUmJgI}DwNoH{X{OaMsGwM}Gok@}ZohCcuAcB}@k|BymA{nAaq@_R}JcHcEoGwDmH_FgG}EyGuFsFkFoIyHsGmHeJ{KaIwK}FuIyEcIsL{T_HaOuFaNcF_NqEwM_EkNoDqMmMck@_O{o@cDkMqDcNyFwQmFmO{FoOwFaNaLqUaHoM_I}M_NaSoMsP}KuMaNgNeKkJ}L{JuNiKcMqH}OyI}SoKosAir@wz@ic@}VgN}KgHgLsIgMaLqHoHwIcKyIoLiIeMeHiMkHwNiG}NiGcP_FmN_KwYgd@msAmMi^kGaOuGiNcHsMiHsL{IwMqIoLwHiJ{HoIiH}GqFaFmI{GuJkHiKiHwW}QqjAox@ae@}ZoKsGkL_GeL}EyL_EqLmDiMqCeM{BuMyAeLw@cFWyMa@}LCyMVoMz@sLnAeM`BuMjCgLlCqLrDsSpGsLtDgp@`SkLzCyLjCoSpDgTfC_O~@oRp@kMHgMMmMWoMs@oOwAqQwBeMwB{LcCuLaDaMwDaN_FwJkEuJeEuI}DwBaAsUgLoPiJg[wPi[qRgQeLgo@ib@kfAmx@__Akw@kbAadAiKgMwOsRgE}FsMsQgPqYaPeZmCiGaLwWaP_d@onAi_EuPok@_Pol@qFqXoE{[{@yHiBcPgC{\\cAsXi@kWByKJg_@rBwn@vEek@fI}j@jL{i@h`A}iDdWg}@dWg}@pOet@tIog@pBsL~p@glEtw@edFlUawAlX{eBjAgItFw_@tDwYdB_QtBi^|@{a@@u_@k@yXkBk[mCmYiE{[{E}XyH_[iJgZoHcRgKeUaMuTsJaOs}@wiAqJsN{MwT{NyZkKeZmIo^wFq^sC{]uAgb@Pgb@tA_^nDk]nDmVnFeW~IkXrLm[tMuVvPeUt_@{a@pPePzcAg_AnZcVjE{Ct_@kVduCqfBhUwNfSuOdQ_P`QcRbOwS`NyVzKcWnLs`@hI_c@`Fyb@vBqb@R}a@iAcg@aDs_@eGec@qIs_@cLk`@on@qpBiPsh@sPgi@aLga@iHu^sEuY}Dg^yCmc@sAoh@Gke@bAga@xAo\\fD{]vCeUdFi[lAsHlIu`@|Pmi@vSyi@`iAkoClm@g{AdJkUbK{]lHyZvDeSnDaVdu@ubGhNu}@|TskAjbAq{ElFe^tDc`@rB}b@\\qc@a@sd@qDim@}c@ylDaUq`Bq|@goGiIeo@iDo_@qBq]uAqf@qIa_Gs@yk@Iuc@Ha]d@a^fAgk@nBokArGw`DnCe`BZuu@{Ao}@qDq|@aGco@iHeo@{iCypQi\\gxBgNs~@{Lqr@aPqq@}Pup@yf@wcBsLgf@iMin@uKet@mGij@cDud@oDco@}Asr@Iik@j@}h@vCagA|LepDpAiq@Xqr@}@si@eCch@oF_j@wA_JqGka@cJk^gKm]cJgTcJgSwG{MsHoMaOcUkHqJsPkS{OmQeXoY}a@cd@w{@k_AeMoMwbBoiB}a@gb@}QqQ}McLqUwOsV}MsSmIuPaFyWwFqTaCiTkAi]Nog@jCs_@bCoXZ_Tg@oVmBo\\qFc]aKkW{K}RyKqVcQeR{P}OgPgPqSkOyUuQm\\uLiY}Ms_@yDmMqCcK_CmJwBkJwBqLk@gDkA_HiBuL_CgQqAiMuAiOeAaPs@wNg@eN_@{SK{PFoVX_Px@aWbA{PpBeWnAyM|Gqi@pEc^vBqRjCoXnAsRrAcWx@k[Tc[Gm\\kB}s@cFev@cJmu@qXepA_o@wnBy|@ogCmjAclD{Zg~@_Yyu@oZ{n@i]ef@_^i\\}^{TeTuJuQ}F{]cGywE}\\{`AqQ{s@{V_n@yYop@w_@io@u]e`@}Te_@mXyTgSyVwWed@sg@}GuIsXib@_g@wbA}Tkk@{Ocf@qfAqvD{x@yoCuk@iwAqi@_`Aa@u@qm@uw@or@wp@qpAonA}a@kg@uZuf@iSmb@sQoc@yOog@kSo}@qIok@iC}TyBeTkA{Mw@gLw@eM{@}RK}Bq@gWa@gTk@ik@KgJYcXyA{uAGeGaDoxCm@}wAAoOPyUt@g[rA}WxC{]vBcSfBiMzByN~A_I`A{EjIg_@`EgPpFyP|E}MhHgQpQc_@zKsRlFgIrJ_MzH_KrTkT|A{AzSqRn[iYjQaR|GyIbJuOnHyN~FoO~E{OvDuOzEqXfAqJbAeMj@_M^eTCgPa@iMs@kPWgCw@aIuAaMwCsOoE{SiT{z@ib@ubBe|Ba}Ik^ewAuMgh@yKo_@cRak@gSug@w[oo@}_@un@??}KsOcZ__@m{DiwEuUkX}UaZaNkQ{O_V_EeGcGuJwKkRyGcNeJeRgLmW_IaSiHySaJeYyIk[{FoTwFoWaGeZaF{YuEy[wCsVyDma@iBoTgG{x@yDqd@}AaRmAaLgDmWqDwW}EqYcCkM}Gs\\cHcZaHsWqJ_[_Le[aLoYwM}YiMaWoQc[}LyRoR_YySaYaa@mh@{Vo\\kQwVeQ_XiPaYwNaYgMeWcIaRqNi_@aM_^ue@ctAmo@gkBi_@kgAk@_BsRok@}FsQeGgTiHwYaAyE_AuDeHi^_EyWwC_UgDkYmBeWgBk[oAyVi@gROuF]aSOmUN_VX{Xp@gXr@_Sx@sP|Be\\rDa^dB{MjA}InF}\\dKsj@lVuiA~Jwh@pG{f@pCeV`CwUpBu]`B_^tBiy@Xo^AoNmAat@IqFIuEU}Ou@}Q{ByXuIaz@aEi`@mBeRU{BkBcVaMafB}@oMsC_e@u@}LKeBwA_RkGez@gEu]qCcRaFkYaH_^yGg[eLcd@_IyW__AwlCsaDgeJs}@whCeKsZwH}T}HmWeHcWiGaVeFkUuE_VcEyVeEyXaDiWuCiXcFsh@{Ggs@_Fgh@uF_l@cEoa@aEo]eFi_@uH_c@cFqVsD}PeIa[gJw[iJyYsVqn@iJwScLmUsRa]gS}ZkLsPoR}UsUyWaYeXaR{Os[eT_VsOiYoNoPqHgSkHyVgI}TyFoQoDeSwCyToCkW{BeU_AgoLaNqiAeBoWaAuOwAmQqCsQkE{LeEeQiIuKcGeO}JyM{KkM{LoMiOmLuP{J}PqJaS}I{SkG}QiIeYuGiZwDiT_I}d@{O}|@gDsPuPqt@wKu\\sKeZ{O{]oQy\\yOyUwOwSsNiPeKaKoNmMsTiQoTcNmQcJkSaJ}v@sYa`Ag\\aV}IiNiGyKqFgXeOoVcPuTwPaTiQyJuJcCaCoReTcNgP{J{LeBuB_n@wy@gXa_@sc@gm@cb@sj@cl@gx@kyAmqBan@az@wh@yt@{^{f@kr@{}@iy@w_A_i@cg@yl@ae@gbA{}@g_AgfAq~@ibAqOsL}OyJuK{GeL{FcNiGePgG_}@{]uVqLoTeMaUoNeKqHsIyGsLuJgH{GeG_GoQwR_JuLyKkP}D}HoCoFaFuKkEaK}DaLgEuMgDgLmDqMkDuMkEkRgEySuCqQyBsNmC{Q{B{OeCwUwB}UoAuS}@eTo@cUUgXDmVl@{^z@kYdF{oAjMw~CzEukAvBgl@dAob@`@a]Co]{@}^wAq[mBsVcEq^mC_TwBqNmDsQqDmPiIm\\eIkWyNsc@kKyZ{Wov@wRyk@cKc\\_GuSkFiTeEeT}E}ZkBsNkC{SeAyJkCaX}Co`@yHabAaDe_@gGwr@yHiy@aIey@qUgvBsOsxAuFof@}Du\\{DyYyH_h@iHob@ySkfAeRi_AsJqg@sF_]gF}^iCwTiEsb@iF_s@qIcpAqG_x@sG_n@_PycAoB_KqJag@}Py{@iMun@yNst@y[o}AqGoZyG_YqFmS{F_QkEaKsFyJuEqHcEgFiAuAaJ}IwFcEwFwDsImE_LkDuG}AkJcAiJo@oJDqJj@{GdA{IpBsG`CeFxB_EtByGjEwGlF}EvEeE~EwGxIcHbL}AnCuChF{D`HkFnJsKlRuNdVgOvUqZhe@aSb\\aUt\\_Y``@SVwQrTwIrJgMnMeIhIoUzReOlLsTpOkMvIi]lSm\\|OqTbKmOnGoTdI_WpI_JtCkWlIyt@pUq[|JynB`n@gl@zQ{x@vUol@jP{q@pPio@xNum@jLml@bK}gApPwN`Bof@vFgs@dHu|@`JulBnRatAdOkt@tHuS`BaTx@sTl@w[Dw_Ai@wPKkRDaNj@_WtAyRzBui@nGgXdCoUnBg`@z@y{@fAmNAsYgAcR{CcOgE_PwGeJcFyPeKiEyC_CaBcPqNmHiHiG_HeKyLsKkMuP}UqKqQkGyJaLaUyAwCgHePea@yfAsFkQiAkEiG{UqHs[uN_l@g~@g`EeJw`@oHi_@wD_XaC}SiAiSq@eYBo[lA}d@bG_mAzBmYtCcZzF}_@b^a_BxDwRjBaL`B{JzA{Lz@mIb@oGLqBd@uJZ_OFaQQuNo@wOaBmUsCoWmC{Q}CmQ}CuNsEkPcEoMoD_KyDmJaOiZ_PqWeRgXaSuUqQmRkL}KmNoK}OaK_RoIu[iKmUeEeZmB_`@LefBnGsPl@c[f@oNWyMkAqMyBkNwDyX}IwSiJqU}NsSsRqOgQ}d@kn@ex@{nAiSe[aJePsFqLwEgLqDgLoDgNsBkKqB_MyAuMwAqNu@mKyf@qtJgBsXuAeOsC{UuC_SmE}Q{FuSuF}OmF{LqHuNmJmOyJuLiMeMsUkU_G{FeO_OsMyNyRsVqR}[eJeOgf@ww@aRoZ{KuP_DiEcFsGkGiGeP{Pcg@sh@}TyTa]k]_D_D_k@sl@{u@gx@{l@kt@gVcYuQiWgPuWeP}XqMkV_LyUcK{VkJsViIoT}HgV{D_McGwR}HkZ_FaTwCoNsBuKaDuPwBkNcDaVmCyYsFqr@gEen@}Bqz@c@o}@z@wr@`Cyo@lEwu@lIyhAxJ_|@hGma@fGuYjD_L|EcLnD_GjGkIdMoL~OuJ`\\iMrfAy_@vZeLfY_OxNyH`IaFhHoFlKiJ`IgIdIoJpEgGRWlHaLtFsJfEwIdD_IhFeOdFmPpEsP~CqOlB_L`CmQjB{Tx@oOt@}UFgPKaUk@uR{@mTqAiTsAmRg@}GgQmqBqBoOiBwKoCgMmDcNyDkLmF_MyGcNgGeKcI_Lit@ey@qJaM_CoDiF}HeIyOqF}LeEsLcDeLkCuLmBqM{BeRw@gIy@kLq@aSc@cWCwWWwvAGe]?uY\\}[`Ag\\~AqW`Cga@lEmq@lAo`@PyZAk\\]qPu@iKaCcTuD}TmDwRwFuTqH{VwHwWcFkQcHsXuIm_@aLmn@yDwUaFw\\aHcj@uC}Wg@aFmAeMuA_NmAmOkAgQs@eMk@_LgAiZYsNQ_SDaKRsNTcMb@sKt@_M~@aMj@iFj@iFtDaY|CgTnGsf@rE}^zD}\\nEcb@bFah@tC{[l@sHx@aKtBsXZoFrB}\\pDmi@zAy\\jAsXrSq`Hb@eUJqPCgVKsv@Mqp@N_p@\\}d@Nek@Gqf@Yeu@{A{n@_Gk_BoCgf@}Foy@iG}p@gHyo@_J{r@mHee@yHcj@sGmb@sHgj@_E_YgCsP{E_Z}DoUoE_W}EgUgEiP}I{Z}GiRgLmZsFaNmHcQeBcE}JaTuLsT{e@yy@eZae@caBclCk`Aq}Agq@mgA}MwTeIaNoPw_@oI{WyIu_@wGa`@_Ema@mE{n@eK_fByCg\\eFqc@iEwYcIoa@cEsPoC{KmImXsCeIqJuX_Yes@qN_b@kEwM}EyR}DsT{C}SiBmQcAmUMsVj@kWxBu^nPmiAxGab@`Fab@tA_Up@}X?{X_AeUoCgYaDaTuCmNuIy^yJ_]iHeY}DgQq@wCeJei@eCmUwBo[m@yQI{UPwZfBs\\bBeTpCeUhB_MxDkVxDuXdBiMtA}JpA_MrAuNnA_PtAi[Cs`@q@_m@iAoq@}E{pAaL{aBuHabAcGaw@iG_j@cFg[uDgQcLo^{Jm[aFwPuAgGqAoFsFc[uBwPkC_XuAsR_AsN{@oZWmWTmR\\uMh@kI`@qFn@aHpB_PtCeR`EuS"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 101 miles.","announcement":"Continue for 101 miles.","distanceAlongGeometry":162026.625},{"ssmlAnnouncement":"In 1 mile, Keep left to take A26.","announcement":"In 1 mile, Keep left to take A26.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A26.","announcement":"In a half mile, Keep left to take A26.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A26 toward ALESSANDRIA, MILANO.","announcement":"Keep left to take A26 toward ALESSANDRIA, MILANO.","distanceAlongGeometry":180}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.36704,43.745118],"geometry_index":22479,"admin_index":5,"weight":23.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.09,"bearings":[114,125,292],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,277],"duration":0.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.859,"geometry_index":22494,"location":[7.374556,43.743787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.484,"geometry_index":22495,"location":[7.374828,43.743765]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,276],"duration":4.969,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.828,"geometry_index":22496,"location":[7.374949,43.743756]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,275],"duration":18.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.898,"geometry_index":22497,"location":[7.375629,43.743716]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,257],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.266,"geometry_index":22503,"location":[7.378152,43.743645]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,250],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.617,"geometry_index":22504,"location":[7.378187,43.743654]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.378272,43.743672],"geometry_index":22505,"admin_index":5,"weight":15.352,"is_urban":false,"toll_collection":{"name":"La Turbie","type":"toll_booth"},"turn_weight":15,"duration":0.359,"bearings":[73,254],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.266,"geometry_index":22506,"location":[7.378318,43.743682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":12.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.281,"geometry_index":22507,"location":[7.378355,43.74369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,235],"duration":9.586,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.32,"geometry_index":22511,"location":[7.378968,43.743907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,233],"duration":5.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.977,"geometry_index":22516,"location":[7.38037,43.744745]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.195,"geometry_index":22518,"location":[7.381432,43.745298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":1.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.656,"geometry_index":22520,"location":[7.381938,43.745557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,236],"duration":12.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.062,"geometry_index":22522,"location":[7.382476,43.745819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,247],"duration":10.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.766,"geometry_index":22536,"location":[7.386806,43.747118]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":35.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":34.281,"geometry_index":22547,"location":[7.389451,43.748388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,259],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.086,"geometry_index":22564,"location":[7.397539,43.753943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,265],"duration":4.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.148,"geometry_index":22566,"location":[7.397899,43.753966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,282],"duration":4.551,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.43,"geometry_index":22571,"location":[7.399274,43.75388]},{"tunnel_name":"Tunnel du Col de Guerre","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[119,293],"duration":11.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.148,"geometry_index":22575,"location":[7.40057,43.75354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,299],"duration":18.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.625,"geometry_index":22576,"location":[7.403742,43.752278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":40.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":40.578,"geometry_index":22588,"location":[7.409873,43.751416]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.422088,43.755483],"geometry_index":22616,"admin_index":5,"weight":8.234,"is_urban":false,"turn_weight":1,"duration":7.242,"bearings":[39,208,218],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"tunnel_name":"Tunnel de L'Arme","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[53,230],"duration":38.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.562,"geometry_index":22621,"location":[7.423762,43.75677]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":5.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.016,"geometry_index":22635,"location":[7.436987,43.758786]},{"tunnel_name":"Tunnel Ricard","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[91,272],"duration":14.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.82,"geometry_index":22637,"location":[7.43866,43.758766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,242],"duration":6.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.242,"geometry_index":22645,"location":[7.443551,43.759173]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.391,"geometry_index":22651,"location":[7.445168,43.760088]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,227],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.844,"geometry_index":22653,"location":[7.445698,43.760445]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.447073,43.761529],"geometry_index":22658,"admin_index":5,"weight":32.703,"is_urban":false,"turn_weight":1,"duration":33.402,"bearings":[31,208,217],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,180],"duration":11.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.148,"geometry_index":22680,"location":[7.449352,43.769045]},{"tunnel_name":"Tunnel de la Coupière","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[4,187],"duration":30.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.547,"geometry_index":22687,"location":[7.450134,43.771784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,176],"duration":4.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.195,"geometry_index":22699,"location":[7.448848,43.779084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,192],"duration":9.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.812,"geometry_index":22703,"location":[7.449015,43.780165]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,223],"duration":6.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.148,"geometry_index":22711,"location":[7.450527,43.782134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":2.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.398,"geometry_index":22716,"location":[7.452242,43.783181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":13.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.164,"geometry_index":22718,"location":[7.452983,43.78355]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,259],"duration":19.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.375,"geometry_index":22726,"location":[7.457187,43.784803]},{"tunnel_name":"Tunnel du Col de Garde","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[60,248],"duration":8.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.945,"geometry_index":22738,"location":[7.463707,43.785409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,239],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.938,"geometry_index":22740,"location":[7.466117,43.786426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":18.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.969,"geometry_index":22741,"location":[7.466392,43.786569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":2.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.664,"geometry_index":22746,"location":[7.471392,43.789415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,230],"duration":8.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.914,"geometry_index":22747,"location":[7.472118,43.789858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,222],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.688,"geometry_index":22752,"location":[7.474082,43.791239]},{"tunnel_name":"Tunnel de Sainte Lucie","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[36,218],"duration":5.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.57,"geometry_index":22753,"location":[7.474229,43.791375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,203],"duration":18.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.586,"geometry_index":22757,"location":[7.47517,43.792571]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,241],"duration":0.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.219,"geometry_index":22772,"location":[7.477994,43.79619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":11.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.305,"geometry_index":22773,"location":[7.478057,43.796213]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,259],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.477,"geometry_index":22778,"location":[7.481692,43.796991]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[81,89,262],"duration":9.477,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.234,"geometry_index":22779,"location":[7.481834,43.797006]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.484826,43.797187],"geometry_index":22786,"admin_index":5,"weight":18.516,"is_urban":false,"turn_weight":16,"duration":2.598,"bearings":[89,265,270],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,271],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.367,"geometry_index":22788,"location":[7.485674,43.797186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.922,"geometry_index":22789,"location":[7.485796,43.797182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":17.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.328,"geometry_index":22790,"location":[7.486112,43.79717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,297],"duration":4.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.008,"geometry_index":22802,"location":[7.491678,43.796202]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,301],"duration":2.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.508,"geometry_index":22804,"location":[7.492799,43.79574]},{"tunnel_name":"Tunnel de Castellar","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[123,303],"duration":22.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.203,"geometry_index":22806,"location":[7.49348,43.79542]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,274],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.625,"geometry_index":22816,"location":[7.500086,43.793574]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":5.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.922,"geometry_index":22817,"location":[7.50056,43.79356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":5.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.047,"geometry_index":22822,"location":[7.502458,43.793554]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":4.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.078,"geometry_index":22825,"location":[7.504019,43.793559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":5.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.172,"geometry_index":22828,"location":[7.505279,43.793517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.32,"geometry_index":22831,"location":[7.506943,43.793417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":23.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.578,"geometry_index":22832,"location":[7.507048,43.793409]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":8.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.375,"geometry_index":22845,"location":[7.513507,43.791343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,292],"duration":13.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.688,"geometry_index":22851,"location":[7.515765,43.790353]},{"tunnel_name":"Tunnel du Peyronnet","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[85,263],"duration":5.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.375,"geometry_index":22860,"location":[7.519695,43.790291]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,274],"duration":10.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.859,"geometry_index":22864,"location":[7.521464,43.790306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,290],"duration":0.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.898,"geometry_index":22872,"location":[7.524231,43.789766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":8.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.898,"geometry_index":22873,"location":[7.524477,43.789699]},{"tunnel_name":"Tunnel de la Giraude","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[107,287],"duration":10.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.586,"geometry_index":22877,"location":[7.526662,43.789166]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.529787,43.788623],"geometry_index":22883,"admin_index":5,"weight":3780.656,"is_urban":false,"turn_weight":3775.554,"duration":5.52,"bearings":[96,276],"out":0,"in":1,"classes":["tunnel","toll","motorway"],"entry":[true,false],"tunnel_name":"Galleria di Cima Giralda (W)"},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,262],"duration":10.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.695,"geometry_index":22888,"location":[7.531503,43.788635]},{"tunnel_name":"Galleria Grimaldi (W)","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[78,258],"duration":29.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":27.352,"geometry_index":22890,"location":[7.534349,43.789055]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":5.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.703,"geometry_index":22899,"location":[7.543821,43.789515]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,290],"duration":6.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.953,"geometry_index":22901,"location":[7.545233,43.789178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[121,301],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.43,"geometry_index":22905,"location":[7.546929,43.788578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":19.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.75,"geometry_index":22907,"location":[7.547586,43.788288]},{"tunnel_name":"Galleria Mortola","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[77,263],"duration":3.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.492,"geometry_index":22919,"location":[7.55278,43.78701]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,250],"duration":7.605,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.031,"geometry_index":22922,"location":[7.553793,43.787234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,223],"duration":8.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.57,"geometry_index":22929,"location":[7.555482,43.788116]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,196],"duration":6.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.805,"geometry_index":22936,"location":[7.55654,43.789632]},{"tunnel_name":"Galleria Belvedere","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[10,190],"duration":14.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.008,"geometry_index":22939,"location":[7.556852,43.790828]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":10.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.023,"geometry_index":22943,"location":[7.557916,43.79374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,207],"duration":2.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.664,"geometry_index":22948,"location":[7.559344,43.795939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":26.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":24.93,"geometry_index":22949,"location":[7.559737,43.796436]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,271],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.5,"geometry_index":22962,"location":[7.565694,43.799086]},{"tunnel_name":"Galleria San Bartolomeo I","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[100,280],"duration":13.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.188,"geometry_index":22965,"location":[7.566435,43.799015]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,304],"duration":12.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.969,"geometry_index":22973,"location":[7.569904,43.797849]},{"tunnel_name":"Galleria del Monte","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[108,294],"duration":69.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":65.703,"geometry_index":22978,"location":[7.572335,43.796871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":13.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.453,"geometry_index":22992,"location":[7.590763,43.79935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,250],"duration":5.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.883,"geometry_index":22993,"location":[7.592109,43.7997]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[78,103,254],"duration":27.086,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.398,"geometry_index":22994,"location":[7.592486,43.79978]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.594553,43.800199],"geometry_index":22998,"admin_index":6,"weight":32.547,"is_urban":false,"toll_collection":{"name":"Ventimiglia - Confine di stato","type":"toll_booth"},"turn_weight":15,"duration":18,"bearings":[67,253],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,235],"duration":4.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.289,"geometry_index":23005,"location":[7.595275,43.800542]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.595919,43.800719],"geometry_index":23006,"admin_index":6,"weight":17.164,"is_urban":false,"turn_weight":1,"duration":16.59,"bearings":[71,242,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,252],"duration":1.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.781,"geometry_index":23009,"location":[7.599511,43.801587]},{"tunnel_name":"Galleria di Siestro","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[70,254],"duration":78.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":76.797,"geometry_index":23010,"location":[7.599952,43.801681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":6.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.984,"geometry_index":23022,"location":[7.622375,43.802255]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,277],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.508,"geometry_index":23025,"location":[7.624022,43.802099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,278],"duration":35.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":35.062,"geometry_index":23026,"location":[7.624181,43.802083]},{"tunnel_name":"Galleria Colle Aprosio","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[101,282],"duration":31.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":30.773,"geometry_index":23034,"location":[7.635202,43.800678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,261],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.602,"geometry_index":23041,"location":[7.645461,43.800161]},{"tunnel_name":"Galleria di Monte Bauso","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[85,266],"duration":17.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.648,"geometry_index":23049,"location":[7.652184,43.801123]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,280],"duration":9.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.562,"geometry_index":23056,"location":[7.657817,43.800826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,279],"duration":17.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.109,"geometry_index":23058,"location":[7.660729,43.800496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":6.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.375,"geometry_index":23060,"location":[7.665987,43.799843]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,282],"duration":5.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.148,"geometry_index":23062,"location":[7.667926,43.799592]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":2.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.727,"geometry_index":23066,"location":[7.669479,43.799283]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,294],"duration":6.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.281,"geometry_index":23068,"location":[7.670299,43.799061]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,311],"duration":13.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.203,"geometry_index":23072,"location":[7.671956,43.798264]},{"tunnel_name":"Galleria di Bordighera","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[126,311],"duration":12.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.531,"geometry_index":23073,"location":[7.675053,43.796306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,306],"duration":16.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.43,"geometry_index":23074,"location":[7.678392,43.794547]},{"tunnel_name":"Galleria Madonna della Ruota","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[96,279],"duration":15.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.641,"geometry_index":23085,"location":[7.682688,43.792897]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,233],"duration":11.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.391,"geometry_index":23096,"location":[7.687333,43.793791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,206],"duration":3.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.68,"geometry_index":23105,"location":[7.689251,43.79563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,204],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.461,"geometry_index":23107,"location":[7.68973,43.796411]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,206],"duration":16.199,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.961,"geometry_index":23108,"location":[7.689796,43.79651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,212],"duration":4.602,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.25,"geometry_index":23113,"location":[7.691794,43.799257]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":4.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.336,"geometry_index":23116,"location":[7.692508,43.79996]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":27.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.148,"geometry_index":23119,"location":[7.693311,43.800631]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,237],"duration":13.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.062,"geometry_index":23127,"location":[7.698947,43.803767]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":14.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.828,"geometry_index":23130,"location":[7.701519,43.805029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":5.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.523,"geometry_index":23135,"location":[7.704818,43.806769]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,237],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.328,"geometry_index":23137,"location":[7.706144,43.807451]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,238],"duration":10.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.836,"geometry_index":23138,"location":[7.706508,43.807617]},{"tunnel_name":"Galleria Costa Martina","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,245],"duration":11.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.398,"geometry_index":23142,"location":[7.709295,43.808641]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":2.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.766,"geometry_index":23143,"location":[7.712392,43.809757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,244],"duration":6.52,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.172,"geometry_index":23144,"location":[7.713236,43.810058]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":9.531,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.047,"geometry_index":23146,"location":[7.715067,43.810757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":14.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.859,"geometry_index":23148,"location":[7.717818,43.811736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":18.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.25,"geometry_index":23153,"location":[7.722246,43.812928]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,252],"duration":4.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.758,"geometry_index":23162,"location":[7.727841,43.814083]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[50,234],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.516,"geometry_index":23169,"location":[7.729458,43.814717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,211],"duration":2.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.43,"geometry_index":23174,"location":[7.730805,43.815851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,203],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.031,"geometry_index":23177,"location":[7.731128,43.816347]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.731471,43.817217],"geometry_index":23181,"admin_index":6,"weight":5.836,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.996,"bearings":[12,24,193],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.731832,43.818608],"geometry_index":23186,"admin_index":6,"weight":3.266,"is_urban":false,"turn_weight":1,"duration":2.332,"bearings":[12,170,191],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,194],"duration":6.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.07,"geometry_index":23188,"location":[7.732005,43.819155]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[36,211],"duration":13.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.117,"geometry_index":23197,"location":[7.732824,43.820512]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":12.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.984,"geometry_index":23204,"location":[7.736958,43.822611]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,246],"duration":1.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.312,"geometry_index":23206,"location":[7.740591,43.823819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,242],"duration":6.355,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.18,"geometry_index":23207,"location":[7.740992,43.82397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":2.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.211,"geometry_index":23210,"location":[7.742751,43.824797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,233],"duration":15.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.125,"geometry_index":23211,"location":[7.743356,43.82513]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,190],"duration":14.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.039,"geometry_index":23219,"location":[7.74577,43.828333]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,355],"duration":3.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.758,"geometry_index":23224,"location":[7.745613,43.831852]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":3.25,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.078,"geometry_index":23228,"location":[7.745412,43.83274]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,350],"duration":2.738,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.594,"geometry_index":23230,"location":[7.745238,43.833462]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,348],"duration":1.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.273,"geometry_index":23232,"location":[7.74509,43.834077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,353],"duration":19.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.438,"geometry_index":23233,"location":[7.744985,43.834434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,231],"duration":2.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.102,"geometry_index":23245,"location":[7.74814,43.839057]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[66,241],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.375,"geometry_index":23246,"location":[7.748796,43.839318]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,265],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.602,"geometry_index":23250,"location":[7.752369,43.840001]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[101,273],"duration":4.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.195,"geometry_index":23251,"location":[7.753296,43.839966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,287],"duration":19.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.758,"geometry_index":23253,"location":[7.754752,43.8397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.68,"geometry_index":23259,"location":[7.7605,43.837408]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[110,292],"duration":14.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.219,"geometry_index":23263,"location":[7.764862,43.835764]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,281],"duration":5.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.453,"geometry_index":23266,"location":[7.769699,43.834753]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[102,281],"duration":9.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.219,"geometry_index":23270,"location":[7.772103,43.834384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,282],"duration":14.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.688,"geometry_index":23271,"location":[7.775156,43.83392]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,281],"duration":6.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.047,"geometry_index":23274,"location":[7.780082,43.833167]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[103,283],"duration":18.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.07,"geometry_index":23277,"location":[7.782411,43.8328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.07,"geometry_index":23281,"location":[7.788522,43.832287]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.203,"geometry_index":23284,"location":[7.789514,43.832424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,255],"duration":9.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.188,"geometry_index":23285,"location":[7.789904,43.832498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":14.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.984,"geometry_index":23288,"location":[7.792853,43.833221]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[70,251],"duration":14.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.078,"geometry_index":23295,"location":[7.798939,43.834758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":8.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.469,"geometry_index":23296,"location":[7.803541,43.835951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":3.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.141,"geometry_index":23298,"location":[7.806283,43.836668]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[65,250],"duration":15.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.523,"geometry_index":23301,"location":[7.807284,43.836943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,223],"duration":20.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":19.18,"geometry_index":23305,"location":[7.811442,43.839295]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.938,"geometry_index":23314,"location":[7.815941,43.842929]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":3.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.609,"geometry_index":23317,"location":[7.817407,43.843604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,243],"duration":11.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.969,"geometry_index":23318,"location":[7.81847,43.843992]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,263],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.93,"geometry_index":23324,"location":[7.822041,43.844571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":6.527,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.195,"geometry_index":23326,"location":[7.823989,43.844569]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":18.688,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.742,"geometry_index":23328,"location":[7.826025,43.844557]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[74,258],"duration":22.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.922,"geometry_index":23333,"location":[7.831822,43.844695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,219],"duration":3.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.18,"geometry_index":23338,"location":[7.837495,43.847458]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[29,46,212],"duration":5.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.586,"geometry_index":23340,"location":[7.837878,43.847901]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.838657,43.849023],"geometry_index":23342,"admin_index":6,"weight":1.312,"is_urban":false,"turn_weight":1,"duration":0.344,"bearings":[20,175,203],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,200],"duration":3.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.547,"geometry_index":23343,"location":[7.838689,43.849087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":4.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.195,"geometry_index":23345,"location":[7.839044,43.849885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,189],"duration":9.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.25,"geometry_index":23347,"location":[7.839304,43.850857]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":4.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.242,"geometry_index":23350,"location":[7.839628,43.853115]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,192],"duration":7.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.094,"geometry_index":23353,"location":[7.839845,43.854148]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":2.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.328,"geometry_index":23358,"location":[7.840739,43.855777]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,212],"duration":2.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.617,"geometry_index":23360,"location":[7.841149,43.856277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,210],"duration":7.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.305,"geometry_index":23362,"location":[7.841606,43.856846]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[31,215],"duration":7.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.57,"geometry_index":23366,"location":[7.843039,43.858355]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,211],"duration":4.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.422,"geometry_index":23367,"location":[7.844357,43.859937]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,209],"duration":7.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.656,"geometry_index":23370,"location":[7.845059,43.860842]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,209],"duration":7.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.266,"geometry_index":23372,"location":[7.846241,43.862263]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[31,215],"duration":17.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.891,"geometry_index":23375,"location":[7.847633,43.8638]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,211],"duration":9.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.375,"geometry_index":23376,"location":[7.850732,43.867476]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,221],"duration":5.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.766,"geometry_index":23379,"location":[7.852349,43.869268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,240],"duration":23.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.523,"geometry_index":23383,"location":[7.853697,43.869995]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,320],"duration":11.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.57,"geometry_index":23395,"location":[7.860472,43.869072]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,334],"duration":7.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.508,"geometry_index":23398,"location":[7.862223,43.866775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,334],"duration":2.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.609,"geometry_index":23399,"location":[7.863308,43.86514]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.406,"geometry_index":23400,"location":[7.863683,43.864566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.438,"geometry_index":23401,"location":[7.86374,43.864479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[153,335],"duration":6.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.172,"geometry_index":23402,"location":[7.863949,43.864161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,326],"duration":12.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.211,"geometry_index":23406,"location":[7.864989,43.862878]},{"tunnel_name":"Galleria S. Michele","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[119,302],"duration":14.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.422,"geometry_index":23414,"location":[7.867961,43.860926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,275],"duration":10.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.07,"geometry_index":23423,"location":[7.87229,43.860045]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,274],"duration":0.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.375,"geometry_index":23425,"location":[7.875656,43.859855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,273],"duration":6.336,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.016,"geometry_index":23426,"location":[7.875782,43.85985]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,276],"duration":1.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.766,"geometry_index":23428,"location":[7.877765,43.859728]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,278],"duration":11.402,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.82,"geometry_index":23430,"location":[7.878349,43.85967]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":5.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.641,"geometry_index":23437,"location":[7.881824,43.859034]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,288],"duration":0.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.07,"geometry_index":23439,"location":[7.883371,43.858663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":7.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.586,"geometry_index":23441,"location":[7.883391,43.858658]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[107,289],"duration":29.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.914,"geometry_index":23444,"location":[7.885591,43.858121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,290],"duration":13.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.898,"geometry_index":23446,"location":[7.894782,43.855962]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[118,300],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.32,"geometry_index":23450,"location":[7.898861,43.854454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,298],"duration":8.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.82,"geometry_index":23451,"location":[7.90315,43.852779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":9.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.578,"geometry_index":23454,"location":[7.905655,43.852076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.953,"geometry_index":23458,"location":[7.908518,43.851572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,282],"duration":7.059,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.523,"geometry_index":23459,"location":[7.908841,43.851522]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":1.918,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.766,"geometry_index":23460,"location":[7.91113,43.851151]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[103,283],"duration":4.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.617,"geometry_index":23461,"location":[7.911761,43.851048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.234,"geometry_index":23462,"location":[7.913468,43.850771]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,283],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.031,"geometry_index":23463,"location":[7.913549,43.850757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,281],"duration":9.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.391,"geometry_index":23464,"location":[7.913556,43.850756]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[102,282],"duration":6.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.711,"geometry_index":23466,"location":[7.916617,43.850267]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,282],"duration":9.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.203,"geometry_index":23467,"location":[7.91875,43.849931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,273],"duration":19.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.203,"geometry_index":23472,"location":[7.922236,43.849627]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":4.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.188,"geometry_index":23478,"location":[7.929104,43.849416]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[92,273],"duration":8.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.914,"geometry_index":23480,"location":[7.930683,43.849367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,255],"duration":17.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.156,"geometry_index":23486,"location":[7.933645,43.849551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":13.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.242,"geometry_index":23494,"location":[7.939256,43.851271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,240],"duration":4.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.891,"geometry_index":23498,"location":[7.943486,43.852694]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[45,229],"duration":11.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.906,"geometry_index":23501,"location":[7.944604,43.853332]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":8.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.945,"geometry_index":23506,"location":[7.946749,43.855741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":9.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.352,"geometry_index":23510,"location":[7.948001,43.857674]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,218],"duration":28.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":27.742,"geometry_index":23514,"location":[7.949826,43.859801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,265],"duration":4.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.094,"geometry_index":23525,"location":[7.958553,43.863009]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[91,272],"duration":13.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.977,"geometry_index":23528,"location":[7.960039,43.863007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,268],"duration":22.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.312,"geometry_index":23532,"location":[7.964862,43.86306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,262],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.75,"geometry_index":23541,"location":[7.972219,43.863434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":11.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.875,"geometry_index":23544,"location":[7.972796,43.863531]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,246],"duration":18.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.445,"geometry_index":23548,"location":[7.976281,43.864474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":7.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.594,"geometry_index":23552,"location":[7.981977,43.86651]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":19.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.758,"geometry_index":23554,"location":[7.984328,43.867364]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,231],"duration":5.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.594,"geometry_index":23557,"location":[7.989975,43.870018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,217],"duration":7.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.055,"geometry_index":23559,"location":[7.990939,43.87082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.664,"geometry_index":23562,"location":[7.992217,43.872314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":16.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.953,"geometry_index":23563,"location":[7.992341,43.872463]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[32,44,213],"duration":6.16,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.141,"geometry_index":23569,"location":[7.995292,43.875994]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,217],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5,"geometry_index":23573,"location":[7.996486,43.877295]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.997646,43.878271],"geometry_index":23576,"admin_index":6,"weight":1.492,"is_urban":false,"turn_weight":1,"duration":0.508,"bearings":[50,206,223],"out":0,"in":2,"turn_duration":0.013,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,230],"duration":14.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.648,"geometry_index":23577,"location":[7.997781,43.878354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":5.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.453,"geometry_index":23581,"location":[8.001655,43.880764]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.789,"geometry_index":23582,"location":[8.003124,43.881647]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":6.777,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.766,"geometry_index":23584,"location":[8.004391,43.882418]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,232],"duration":1.316,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.297,"geometry_index":23587,"location":[8.006213,43.883484]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[51,229],"duration":10.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.055,"geometry_index":23588,"location":[8.006545,43.883695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,231],"duration":11.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.664,"geometry_index":23589,"location":[8.009261,43.885302]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,240],"duration":3.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.922,"geometry_index":23594,"location":[8.012519,43.887]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,242],"duration":9.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.734,"geometry_index":23595,"location":[8.013736,43.887462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":3.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.281,"geometry_index":23597,"location":[8.016849,43.888438]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,252],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.023,"geometry_index":23598,"location":[8.017903,43.888689]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.398,"geometry_index":23600,"location":[8.020244,43.889155]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,249],"duration":6.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.273,"geometry_index":23604,"location":[8.025061,43.890198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,228],"duration":6.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.57,"geometry_index":23606,"location":[8.026747,43.8911]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[17,206],"duration":4.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.492,"geometry_index":23610,"location":[8.027981,43.892423]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,197],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.914,"geometry_index":23611,"location":[8.028439,43.893481]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":4.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.93,"geometry_index":23612,"location":[8.028476,43.893706]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[174,349],"duration":3.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.102,"geometry_index":23615,"location":[8.028501,43.894917]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":1.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.305,"geometry_index":23616,"location":[8.028297,43.89567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,348],"duration":5.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.945,"geometry_index":23617,"location":[8.02822,43.89599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,346],"duration":6.699,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.844,"geometry_index":23620,"location":[8.02778,43.897447]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":1.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.648,"geometry_index":23622,"location":[8.027231,43.899112]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":18.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.07,"geometry_index":23623,"location":[8.02711,43.89952]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,206],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.172,"geometry_index":23632,"location":[8.02783,43.904019]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[21,207],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.734,"geometry_index":23633,"location":[8.027859,43.90406]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,232],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.781,"geometry_index":23639,"location":[8.029559,43.905534]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,236],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.117,"geometry_index":23640,"location":[8.029786,43.905645]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.547,"geometry_index":23641,"location":[8.030123,43.90579]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":5.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.234,"geometry_index":23642,"location":[8.030283,43.905859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":0.152,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.148,"geometry_index":23646,"location":[8.031885,43.906445]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,248],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.148,"geometry_index":23647,"location":[8.031936,43.90646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.562,"geometry_index":23648,"location":[8.032305,43.906542]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[73,252],"duration":7.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.984,"geometry_index":23649,"location":[8.032484,43.906584]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":10.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.797,"geometry_index":23654,"location":[8.035093,43.906724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,299],"duration":9.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.195,"geometry_index":23660,"location":[8.038379,43.90588]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[142,151,320],"duration":3.199,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.273,"geometry_index":23666,"location":[8.040532,43.904402]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,324],"duration":4.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.414,"geometry_index":23668,"location":[8.041173,43.903781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.727,"geometry_index":23671,"location":[8.041991,43.902926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,327],"duration":5.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.648,"geometry_index":23672,"location":[8.042663,43.902189]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.043646,43.901039],"geometry_index":23673,"admin_index":6,"weight":3.742,"is_urban":false,"turn_weight":1,"duration":2.695,"bearings":[145,317,328],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[134,320],"duration":12.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.383,"geometry_index":23676,"location":[8.044192,43.900525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,287],"duration":7.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.164,"geometry_index":23684,"location":[8.047752,43.898997]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[80,262],"duration":38.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":38.367,"geometry_index":23689,"location":[8.050144,43.898948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":11.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.094,"geometry_index":23699,"location":[8.060879,43.904054]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,234],"duration":9.094,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.07,"geometry_index":23703,"location":[8.063889,43.905688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":3.113,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.094,"geometry_index":23707,"location":[8.066086,43.907304]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,217],"duration":10.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.266,"geometry_index":23709,"location":[8.066741,43.907911]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[15,198],"duration":8.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.75,"geometry_index":23714,"location":[8.068186,43.91027]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,187],"duration":4.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.82,"geometry_index":23719,"location":[8.068776,43.912458]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":10.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.602,"geometry_index":23720,"location":[8.069062,43.913683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,189],"duration":4.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.523,"geometry_index":23722,"location":[8.069666,43.916303]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[9,188],"duration":13.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.789,"geometry_index":23723,"location":[8.069893,43.91741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,224],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.227,"geometry_index":23735,"location":[8.071734,43.920497]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,241],"duration":9.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.805,"geometry_index":23742,"location":[8.074114,43.921787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":4.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.094,"geometry_index":23746,"location":[8.077286,43.922329]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[88,267],"duration":14.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.906,"geometry_index":23747,"location":[8.079005,43.922397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,268],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.227,"geometry_index":23748,"location":[8.084043,43.922551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,267],"duration":18.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.266,"geometry_index":23752,"location":[8.087458,43.922731]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.523,"geometry_index":23761,"location":[8.09317,43.923935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,232],"duration":4.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.195,"geometry_index":23762,"location":[8.093304,43.92401]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,224],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.383,"geometry_index":23764,"location":[8.094317,43.924711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":6.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.102,"geometry_index":23766,"location":[8.095174,43.925571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":11.168,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.883,"geometry_index":23768,"location":[8.096324,43.926807]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.914,"geometry_index":23772,"location":[8.09849,43.929117]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.098891,43.929523],"geometry_index":23773,"admin_index":6,"weight":12.828,"is_urban":false,"turn_weight":1,"duration":12.156,"bearings":[33,206,215],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,222],"duration":4.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.969,"geometry_index":23779,"location":[8.101541,43.931863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,220],"duration":11.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.211,"geometry_index":23780,"location":[8.102443,43.932636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":7.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.625,"geometry_index":23783,"location":[8.104984,43.934773]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":10.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.945,"geometry_index":23786,"location":[8.106676,43.936243]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":6.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.5,"geometry_index":23790,"location":[8.108123,43.938442]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":9.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.414,"geometry_index":23792,"location":[8.109,43.93989]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,221],"duration":8.656,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.219,"geometry_index":23799,"location":[8.110797,43.941782]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,235],"duration":5.488,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.203,"geometry_index":23807,"location":[8.112888,43.943072]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[62,242],"duration":58.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":55.539,"geometry_index":23809,"location":[8.114403,43.943691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,228],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.648,"geometry_index":23819,"location":[8.132198,43.950601]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":0.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.312,"geometry_index":23820,"location":[8.132601,43.950905]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,224],"duration":17.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.375,"geometry_index":23821,"location":[8.132679,43.950964]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[185,359],"duration":5.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.352,"geometry_index":23830,"location":[8.134886,43.955061]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":16.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.953,"geometry_index":23832,"location":[8.134814,43.956443]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":22.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.727,"geometry_index":23847,"location":[8.135554,43.960457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":6.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.281,"geometry_index":23855,"location":[8.141479,43.964774]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,212],"duration":0.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.414,"geometry_index":23859,"location":[8.142986,43.966105]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,210],"duration":5.992,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.969,"geometry_index":23860,"location":[8.143059,43.966196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,197],"duration":12.434,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.094,"geometry_index":23863,"location":[8.14384,43.967655]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[167,343,353],"duration":7.117,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.914,"geometry_index":23872,"location":[8.143806,43.970808]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.142869,43.972464],"geometry_index":23875,"admin_index":6,"weight":1.172,"is_urban":false,"turn_weight":1,"duration":0.188,"bearings":[141,155,339],"out":2,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,337],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.055,"geometry_index":23876,"location":[8.142848,43.972503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,332],"duration":12.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.055,"geometry_index":23877,"location":[8.142699,43.972753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346],"duration":5.852,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.555,"geometry_index":23884,"location":[8.141008,43.975699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":1.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.172,"geometry_index":23889,"location":[8.14058,43.977136]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[169,348],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.266,"geometry_index":23890,"location":[8.140496,43.97744]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,334],"duration":3.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.391,"geometry_index":23892,"location":[8.139926,43.979049]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,330],"duration":12.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.789,"geometry_index":23893,"location":[8.139366,43.979873]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[151,336],"duration":8.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.18,"geometry_index":23897,"location":[8.137126,43.982613]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,176],"duration":14.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.484,"geometry_index":23903,"location":[8.136415,43.984765]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,186],"duration":7.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.562,"geometry_index":23908,"location":[8.136807,43.98839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,185],"duration":16.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15,"geometry_index":23909,"location":[8.137018,43.990131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,343],"duration":15.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.555,"geometry_index":23915,"location":[8.136531,43.994094]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[151,329],"duration":15.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":13.766,"geometry_index":23920,"location":[8.134132,43.997602]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":3.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.039,"geometry_index":23926,"location":[8.131705,44.001017]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,352],"duration":8.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.672,"geometry_index":23928,"location":[8.131446,44.001825]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[2,181],"duration":56.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":50.945,"geometry_index":23932,"location":[8.131364,44.003906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[182,359],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.164,"geometry_index":23933,"location":[8.131907,44.01817]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,356],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.547,"geometry_index":23934,"location":[8.131896,44.018487]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,354],"duration":15.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.719,"geometry_index":23935,"location":[8.13175,44.020007]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,359],"duration":5.906,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.453,"geometry_index":23943,"location":[8.130991,44.024134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,184],"duration":23.531,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.758,"geometry_index":23946,"location":[8.131049,44.025679]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,195],"duration":5.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.516,"geometry_index":23953,"location":[8.133616,44.031546]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":10.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.062,"geometry_index":23957,"location":[8.133839,44.033097]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,356],"duration":6.32,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.992,"geometry_index":23961,"location":[8.13343,44.035855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,189],"duration":15.414,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.25,"geometry_index":23965,"location":[8.133508,44.037503]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":5.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.039,"geometry_index":23975,"location":[8.136368,44.04083]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,237],"duration":11.125,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.273,"geometry_index":23978,"location":[8.138024,44.041622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":1.047,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.953,"geometry_index":23982,"location":[8.14141,44.043215]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.875,"geometry_index":23983,"location":[8.141726,44.043361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,237],"duration":4.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.93,"geometry_index":23984,"location":[8.142346,44.043651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":2.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.477,"geometry_index":23987,"location":[8.143615,44.044284]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[47,233],"duration":10.453,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.641,"geometry_index":23988,"location":[8.144395,44.044703]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":9.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.922,"geometry_index":23990,"location":[8.147102,44.046584]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,227],"duration":27.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.352,"geometry_index":23992,"location":[8.149693,44.048324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.922,"geometry_index":24001,"location":[8.157791,44.052593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":14.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.734,"geometry_index":24002,"location":[8.158113,44.052714]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,236],"duration":5.562,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.258,"geometry_index":24006,"location":[8.162826,44.054621]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,228],"duration":8.305,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.883,"geometry_index":24009,"location":[8.164428,44.055525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,223],"duration":3.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.156,"geometry_index":24013,"location":[8.166589,44.057041]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[36,219],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.141,"geometry_index":24014,"location":[8.167348,44.057725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,216],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.547,"geometry_index":24015,"location":[8.168279,44.058634]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[30,211],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.797,"geometry_index":24017,"location":[8.169207,44.059665]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,210],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.141,"geometry_index":24018,"location":[8.169731,44.060325]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":5.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.648,"geometry_index":24019,"location":[8.170114,44.060837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.43,"geometry_index":24023,"location":[8.171154,44.062164]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,209],"duration":1.805,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.711,"geometry_index":24024,"location":[8.171232,44.062264]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,210],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.828,"geometry_index":24025,"location":[8.171556,44.062661]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.844,"geometry_index":24026,"location":[8.171716,44.062856]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":8.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.922,"geometry_index":24027,"location":[8.17208,44.063278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,216],"duration":0.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.172,"geometry_index":24029,"location":[8.17379,44.065054]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[41,56,224],"duration":3.938,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.82,"geometry_index":24030,"location":[8.173837,44.065089]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":2.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.18,"geometry_index":24032,"location":[8.174763,44.065842]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":2.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.828,"geometry_index":24034,"location":[8.175303,44.066266]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.176016,44.066778],"geometry_index":24036,"admin_index":6,"weight":10.852,"is_urban":false,"turn_weight":1,"duration":10.391,"bearings":[46,220,226],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":25.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":23.938,"geometry_index":24039,"location":[8.178569,44.068634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,224],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.172,"geometry_index":24045,"location":[8.184997,44.073356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,223],"duration":15.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.711,"geometry_index":24046,"location":[8.185309,44.073593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":53.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":50.594,"geometry_index":24052,"location":[8.189322,44.076498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.914,"geometry_index":24066,"location":[8.203505,44.086223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.242,"geometry_index":24067,"location":[8.203745,44.086389]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":15.883,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.078,"geometry_index":24068,"location":[8.204067,44.086617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":2.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.195,"geometry_index":24073,"location":[8.208367,44.08969]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.32,"geometry_index":24074,"location":[8.208948,44.090106]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":5.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.945,"geometry_index":24076,"location":[8.209839,44.090742]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.766,"geometry_index":24077,"location":[8.211159,44.091681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.648,"geometry_index":24078,"location":[8.2119,44.092217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.805,"geometry_index":24080,"location":[8.212894,44.092924]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.172,"geometry_index":24082,"location":[8.213661,44.093471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.867,"geometry_index":24083,"location":[8.213978,44.093701]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.453,"geometry_index":24085,"location":[8.214761,44.094259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,225],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.031,"geometry_index":24086,"location":[8.215697,44.094931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,216],"duration":6.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.547,"geometry_index":24087,"location":[8.215699,44.094933]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":9.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.141,"geometry_index":24090,"location":[8.217484,44.096204]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":16.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.789,"geometry_index":24092,"location":[8.21995,44.097967]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":1.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.641,"geometry_index":24103,"location":[8.224695,44.100444]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":12.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.516,"geometry_index":24104,"location":[8.225235,44.100651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,226],"duration":2.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.773,"geometry_index":24111,"location":[8.228735,44.102363]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[37,222],"duration":27.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.477,"geometry_index":24113,"location":[8.229425,44.102906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,349],"duration":7.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.938,"geometry_index":24130,"location":[8.231806,44.109527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,335],"duration":4.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.594,"geometry_index":24137,"location":[8.231029,44.111297]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,334],"duration":15.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.711,"geometry_index":24140,"location":[8.230265,44.112403]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,334],"duration":11.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.625,"geometry_index":24149,"location":[8.227679,44.116051]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,342],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.719,"geometry_index":24154,"location":[8.225822,44.118908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,345],"duration":5.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.367,"geometry_index":24156,"location":[8.225622,44.119348]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,354],"duration":3.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.172,"geometry_index":24160,"location":[8.22521,44.120741]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[7,177,358],"duration":13.781,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":13.43,"geometry_index":24162,"location":[8.225116,44.121592]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.225839,44.125103],"geometry_index":24173,"admin_index":6,"weight":3.266,"is_urban":false,"turn_weight":1,"duration":2.344,"bearings":[19,190,198],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":8.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.117,"geometry_index":24175,"location":[8.226119,44.12564]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[35,214],"duration":9.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.656,"geometry_index":24181,"location":[8.2275,44.127436]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":4.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.938,"geometry_index":24187,"location":[8.229789,44.129213]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":5.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.242,"geometry_index":24190,"location":[8.231137,44.129919]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,242],"duration":8.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.375,"geometry_index":24194,"location":[8.232733,44.13057]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,240],"duration":3.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.883,"geometry_index":24196,"location":[8.235287,44.131612]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.82,"geometry_index":24199,"location":[8.236416,44.132199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":11.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.844,"geometry_index":24200,"location":[8.236653,44.132335]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,219],"duration":10.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.422,"geometry_index":24208,"location":[8.239746,44.134574]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,213],"duration":5.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.82,"geometry_index":24209,"location":[8.241808,44.136832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.992,"geometry_index":24211,"location":[8.242881,44.138096]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.227,"geometry_index":24212,"location":[8.243459,44.138761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,212],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.062,"geometry_index":24213,"location":[8.243695,44.139029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,211],"duration":5.891,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.734,"geometry_index":24214,"location":[8.244652,44.140185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,214],"duration":3.625,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.508,"geometry_index":24217,"location":[8.245779,44.141477]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[37,211],"duration":7.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.023,"geometry_index":24218,"location":[8.24645,44.142267]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,217],"duration":6.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.094,"geometry_index":24219,"location":[8.247954,44.143721]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":7.812,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.602,"geometry_index":24222,"location":[8.249366,44.144943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,228],"duration":12.453,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.133,"geometry_index":24226,"location":[8.251312,44.14638]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[52,229],"duration":12.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.586,"geometry_index":24229,"location":[8.254658,44.148499]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,231],"duration":3.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.781,"geometry_index":24231,"location":[8.258295,44.150596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":10.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.016,"geometry_index":24233,"location":[8.259407,44.151195]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[57,65,238],"duration":7.57,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.359,"geometry_index":24237,"location":[8.262651,44.15279]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.242,"geometry_index":24238,"location":[8.264909,44.153856]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":9.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.172,"geometry_index":24239,"location":[8.264985,44.153892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":12.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.992,"geometry_index":24241,"location":[8.267774,44.155161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":0.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.172,"geometry_index":24245,"location":[8.271141,44.157193]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.271182,44.157223],"geometry_index":24246,"admin_index":6,"weight":14.023,"is_urban":false,"turn_weight":1,"duration":13.383,"bearings":[39,208,224],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,205],"duration":12.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.953,"geometry_index":24250,"location":[8.273665,44.160023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":6.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.469,"geometry_index":24255,"location":[8.275172,44.162913]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,203],"duration":13.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13,"geometry_index":24258,"location":[8.275974,44.164504]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[42,216],"duration":48.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":46.055,"geometry_index":24264,"location":[8.278112,44.167572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,226],"duration":6.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.281,"geometry_index":24285,"location":[8.292777,44.173355]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,211],"duration":6.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.164,"geometry_index":24287,"location":[8.29395,44.174614]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":7.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.961,"geometry_index":24289,"location":[8.294893,44.176018]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[36,209],"duration":33.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":30.68,"geometry_index":24294,"location":[8.29609,44.177663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,217],"duration":1.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.047,"geometry_index":24296,"location":[8.302877,44.184256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,214],"duration":6.117,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.641,"geometry_index":24297,"location":[8.303072,44.184462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,218],"duration":7.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.883,"geometry_index":24300,"location":[8.303947,44.18541]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,208],"duration":0.828,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.742,"geometry_index":24303,"location":[8.305089,44.186889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":17.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.117,"geometry_index":24304,"location":[8.305188,44.18706]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[182,355],"duration":12.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.383,"geometry_index":24311,"location":[8.306339,44.191033]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":8.352,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.719,"geometry_index":24315,"location":[8.305821,44.193868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":10.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.102,"geometry_index":24316,"location":[8.305431,44.195682]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[8,182],"duration":63.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":59.125,"geometry_index":24320,"location":[8.305206,44.198149]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[50,228],"duration":10.969,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.141,"geometry_index":24344,"location":[8.316845,44.208814]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,224],"duration":6.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.828,"geometry_index":24347,"location":[8.319336,44.2105]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,213],"duration":13.18,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.844,"geometry_index":24350,"location":[8.320457,44.211621]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.322308,44.214256],"geometry_index":24353,"admin_index":6,"weight":2.32,"is_urban":false,"turn_weight":1,"duration":1.477,"bearings":[27,197,205],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":5.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.828,"geometry_index":24354,"location":[8.322535,44.214572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":18.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.094,"geometry_index":24356,"location":[8.323323,44.215754]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,212],"duration":9.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.836,"geometry_index":24361,"location":[8.326201,44.219908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,233],"duration":13.43,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.078,"geometry_index":24366,"location":[8.328501,44.221532]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":0.25,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.219,"geometry_index":24372,"location":[8.332453,44.222712]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":4.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.672,"geometry_index":24373,"location":[8.332524,44.222728]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[71,252],"duration":43.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":40.031,"geometry_index":24374,"location":[8.333743,44.223005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,273],"duration":6.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.859,"geometry_index":24383,"location":[8.346756,44.225381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":12.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.141,"geometry_index":24386,"location":[8.348653,44.225182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":7.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.234,"geometry_index":24390,"location":[8.35222,44.224636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":9.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.211,"geometry_index":24395,"location":[8.354577,44.224493]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,251],"duration":14.047,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.625,"geometry_index":24401,"location":[8.357757,44.224951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,245],"duration":2.977,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.664,"geometry_index":24405,"location":[8.362028,44.226336]},{"tunnel_name":"Santa Libera","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[65,245],"duration":18.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.531,"geometry_index":24407,"location":[8.362901,44.226642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,266],"duration":3.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.805,"geometry_index":24416,"location":[8.368783,44.228092]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[100,274],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.008,"geometry_index":24418,"location":[8.369822,44.228059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,284],"duration":27.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":24.977,"geometry_index":24421,"location":[8.370918,44.227889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":5.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.359,"geometry_index":24433,"location":[8.380204,44.226191]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.062,"geometry_index":24434,"location":[8.382225,44.226161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":6.406,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.922,"geometry_index":24435,"location":[8.38263,44.226163]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,256],"duration":2.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.086,"geometry_index":24439,"location":[8.384814,44.226305]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[66,250],"duration":9.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.492,"geometry_index":24442,"location":[8.385563,44.226463]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,249],"duration":10.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.852,"geometry_index":24445,"location":[8.388447,44.227338]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[76,87,258],"duration":20.258,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":19.227,"geometry_index":24449,"location":[8.391953,44.227996]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.39804,44.230102],"geometry_index":24459,"admin_index":6,"weight":2.531,"is_urban":false,"turn_weight":1,"duration":1.633,"bearings":[36,206,223],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,217],"duration":16.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.641,"geometry_index":24461,"location":[8.398353,44.230404]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,350],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.258,"geometry_index":24470,"location":[8.399638,44.234371]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":6.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.383,"geometry_index":24471,"location":[8.39956,44.234701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,353],"duration":3.719,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.438,"geometry_index":24475,"location":[8.399182,44.236329]},{"tunnel_name":"Galleria Fornaci","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[177,356],"duration":64.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":57.664,"geometry_index":24477,"location":[8.399078,44.237214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,204],"duration":17.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.57,"geometry_index":24490,"location":[8.406432,44.251041]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":11.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.055,"geometry_index":24501,"location":[8.406982,44.255015]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":21.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":20.078,"geometry_index":24504,"location":[8.406964,44.257997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,223],"duration":10.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.812,"geometry_index":24520,"location":[8.40948,44.262926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,235],"duration":82.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":80.375,"geometry_index":24526,"location":[8.412352,44.264433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,195],"duration":3.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.031,"geometry_index":24565,"location":[8.429572,44.280227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,197],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.594,"geometry_index":24567,"location":[8.429856,44.280915]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,219],"duration":4.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.586,"geometry_index":24575,"location":[8.430928,44.282264]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":12.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.312,"geometry_index":24577,"location":[8.431915,44.283059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.695,"geometry_index":24579,"location":[8.434646,44.285222]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":3.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.25,"geometry_index":24580,"location":[8.434803,44.285344]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.016,"geometry_index":24583,"location":[8.435524,44.285893]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.435977,44.286232],"geometry_index":24584,"admin_index":6,"weight":8.836,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.844,"bearings":[48,55,224],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":15.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.078,"geometry_index":24593,"location":[8.438754,44.287608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,243],"duration":22.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.695,"geometry_index":24597,"location":[8.44265,44.28917]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.446459,44.293302],"geometry_index":24612,"admin_index":6,"weight":1.742,"is_urban":false,"turn_weight":1,"duration":0.75,"bearings":[3,176,185],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[183,358],"duration":6.016,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.141,"geometry_index":24613,"location":[8.44647,44.293475]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,179],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.75,"geometry_index":24616,"location":[8.44641,44.294936]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,356],"duration":5,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.969,"geometry_index":24617,"location":[8.446418,44.295348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,179],"duration":4.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.266,"geometry_index":24619,"location":[8.446368,44.296583]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[180,359],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.602,"geometry_index":24620,"location":[8.446378,44.297617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,179],"duration":10.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.031,"geometry_index":24621,"location":[8.446349,44.298501]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[27,203],"duration":3.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.781,"geometry_index":24628,"location":[8.447142,44.30087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,212],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.406,"geometry_index":24631,"location":[8.447814,44.301683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,217],"duration":10.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.906,"geometry_index":24632,"location":[8.447896,44.301761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":7.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.719,"geometry_index":24643,"location":[8.45071,44.30351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,259],"duration":4.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.586,"geometry_index":24650,"location":[8.453172,44.304081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":9.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.352,"geometry_index":24654,"location":[8.454693,44.304245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,259],"duration":24.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.734,"geometry_index":24658,"location":[8.457806,44.304612]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,220],"duration":0.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.547,"geometry_index":24670,"location":[8.464809,44.307802]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":0.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.547,"geometry_index":24671,"location":[8.464915,44.307902]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,217],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":3.164,"geometry_index":24672,"location":[8.465024,44.308005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,213],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":6.453,"geometry_index":24674,"location":[8.465598,44.308609]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[22,204],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":2.844,"geometry_index":24677,"location":[8.466552,44.309926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.578,"geometry_index":24678,"location":[8.466912,44.310553]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":5.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":5.414,"geometry_index":24679,"location":[8.466985,44.31068]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":7.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":7.586,"geometry_index":24680,"location":[8.467655,44.311885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.57,"geometry_index":24684,"location":[8.468626,44.313541]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[22,203],"duration":8.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":9.461,"geometry_index":24685,"location":[8.4687,44.313668]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":1.977,"geometry_index":24686,"location":[8.469828,44.315686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":9.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.234,"geometry_index":24687,"location":[8.470073,44.316108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,236],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.547,"geometry_index":24695,"location":[8.472107,44.317976]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[73,247],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.312,"geometry_index":24697,"location":[8.473114,44.318345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":6.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.742,"geometry_index":24701,"location":[8.474783,44.318554]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[84,266],"duration":6.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.797,"geometry_index":24703,"location":[8.476944,44.318672]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,248],"duration":5.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.477,"geometry_index":24709,"location":[8.479009,44.318996]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[45,233],"duration":2.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.141,"geometry_index":24713,"location":[8.480484,44.319646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,225],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.383,"geometry_index":24714,"location":[8.480974,44.319995]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[57,236],"duration":9.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.953,"geometry_index":24720,"location":[8.483502,44.321634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,254],"duration":8.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.711,"geometry_index":24726,"location":[8.486525,44.322642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,247],"duration":0.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.102,"geometry_index":24731,"location":[8.489268,44.323437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,250],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.141,"geometry_index":24732,"location":[8.489303,44.323446]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.789,"geometry_index":24733,"location":[8.489631,44.323571]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[40,231],"duration":32.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":31.844,"geometry_index":24736,"location":[8.490967,44.324224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,223],"duration":5.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.594,"geometry_index":24746,"location":[8.498429,44.330165]},{"tunnel_name":"Galleria Torrefaraggiana SUD","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[25,210],"duration":9.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.609,"geometry_index":24748,"location":[8.499427,44.33134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,212],"duration":10.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.383,"geometry_index":24751,"location":[8.500891,44.333539]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,255],"duration":6.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.07,"geometry_index":24762,"location":[8.503817,44.334939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":3.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.766,"geometry_index":24769,"location":[8.505893,44.334971]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.507177,44.334905],"geometry_index":24773,"admin_index":6,"weight":2.539,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.625,"bearings":[94,103,274],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.578,"geometry_index":24774,"location":[8.508064,44.334862]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":2.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.148,"geometry_index":24776,"location":[8.508972,44.334816]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.509728,44.334784],"geometry_index":24779,"admin_index":6,"weight":3.156,"is_urban":false,"turn_weight":1,"duration":2.234,"bearings":[90,260,273],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,269],"duration":2.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.391,"geometry_index":24781,"location":[8.510465,44.334789]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,263],"duration":5.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.445,"geometry_index":24785,"location":[8.511314,44.334848]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":11.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.57,"geometry_index":24789,"location":[8.513175,44.335131]},{"tunnel_name":"Galleria M.G.Rossello","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[77,257],"duration":17.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.688,"geometry_index":24791,"location":[8.51712,44.335802]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,279],"duration":6.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.625,"geometry_index":24799,"location":[8.522857,44.336435]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,298],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.422,"geometry_index":24809,"location":[8.525032,44.335806]},{"tunnel_name":"Galleria Fighetto","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[120,298],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.93,"geometry_index":24810,"location":[8.525161,44.335757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,299],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.586,"geometry_index":24812,"location":[8.526658,44.335159]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.234,"geometry_index":24813,"location":[8.526831,44.335107]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.273,"geometry_index":24814,"location":[8.526896,44.335087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,293],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.445,"geometry_index":24815,"location":[8.526972,44.335064]},{"tunnel_name":"Galleria Pecorile","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[79,261],"duration":7.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.219,"geometry_index":24820,"location":[8.529001,44.334948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,249],"duration":8.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.867,"geometry_index":24824,"location":[8.531286,44.335409]},{"tunnel_name":"Galleria Arma","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[34,212],"duration":3.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.711,"geometry_index":24830,"location":[8.533184,44.336634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":11.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.32,"geometry_index":24832,"location":[8.533894,44.337389]},{"tunnel_name":"Galleria Terrizza","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,213],"duration":7.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.844,"geometry_index":24835,"location":[8.536463,44.340097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.961,"geometry_index":24836,"location":[8.537826,44.341604]},{"tunnel_name":"Galleria Cassisi","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[34,214],"duration":6.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.289,"geometry_index":24840,"location":[8.538232,44.342035]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":6.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.602,"geometry_index":24841,"location":[8.539523,44.343401]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,214],"duration":0.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.484,"geometry_index":24842,"location":[8.540877,44.344863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":1.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.969,"geometry_index":24843,"location":[8.540967,44.344966]},{"tunnel_name":"Casanova","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,212],"duration":3.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.039,"geometry_index":24844,"location":[8.541151,44.345178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,213],"duration":10.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.711,"geometry_index":24845,"location":[8.541743,44.345832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,239],"duration":5.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.664,"geometry_index":24851,"location":[8.543932,44.347572]},{"tunnel_name":"Costa","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[90,269],"duration":3.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.742,"geometry_index":24856,"location":[8.54583,44.34779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":8.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.414,"geometry_index":24857,"location":[8.547142,44.347797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,269],"duration":0.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.078,"geometry_index":24860,"location":[8.550169,44.347837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,270],"duration":13.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.078,"geometry_index":24861,"location":[8.550188,44.347837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,267],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.172,"geometry_index":24865,"location":[8.554846,44.347885]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[68,94,253],"duration":3.43,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.234,"geometry_index":24869,"location":[8.555562,44.347999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,239],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.336,"geometry_index":24872,"location":[8.556535,44.34834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.556916,44.348515],"geometry_index":24873,"admin_index":6,"weight":11.195,"is_urban":false,"turn_weight":0.75,"duration":11.039,"bearings":[43,213,237],"out":0,"in":2,"turn_duration":0.048,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.57,"geometry_index":24880,"location":[8.558579,44.35075]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,207],"duration":4.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.266,"geometry_index":24888,"location":[8.561099,44.354448]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":6.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.383,"geometry_index":24889,"location":[8.56189,44.355403]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,211],"duration":8.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.406,"geometry_index":24890,"location":[8.563053,44.356794]},{"tunnel_name":"Boschetto","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,210],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.766,"geometry_index":24891,"location":[8.564555,44.358684]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,213],"duration":4.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.602,"geometry_index":24892,"location":[8.565081,44.359272]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[53,230],"duration":16.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.828,"geometry_index":24895,"location":[8.566264,44.360091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,233],"duration":4.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.445,"geometry_index":24896,"location":[8.570808,44.362511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,233],"duration":16.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.773,"geometry_index":24898,"location":[8.572107,44.363184]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":4.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.117,"geometry_index":24907,"location":[8.576961,44.3637]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,279],"duration":9.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.977,"geometry_index":24909,"location":[8.57831,44.36355]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,274],"duration":21.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.789,"geometry_index":24913,"location":[8.581358,44.363303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,286],"duration":9.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.492,"geometry_index":24927,"location":[8.587811,44.362675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,279],"duration":16.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.891,"geometry_index":24931,"location":[8.590618,44.362305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":10.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.164,"geometry_index":24939,"location":[8.595015,44.363694]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,230],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.703,"geometry_index":24942,"location":[8.597818,44.365353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":3.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.445,"geometry_index":24943,"location":[8.598019,44.365466]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,235],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.922,"geometry_index":24945,"location":[8.599029,44.36602]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[71,77,248],"duration":22.672,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.398,"geometry_index":24948,"location":[8.600326,44.366472]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.607253,44.368885],"geometry_index":24961,"admin_index":6,"weight":4.859,"is_urban":false,"turn_weight":0.5,"duration":4.852,"bearings":[76,239,256],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[83,90,263],"duration":9.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.305,"geometry_index":24965,"location":[8.608928,44.369103]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,256],"duration":3.266,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.914,"geometry_index":24970,"location":[8.61198,44.369422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,241],"duration":28.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.969,"geometry_index":24975,"location":[8.613121,44.36977]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,231],"duration":7.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.648,"geometry_index":24988,"location":[8.619031,44.372447]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":8.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.273,"geometry_index":24990,"location":[8.620801,44.373732]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,226],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.844,"geometry_index":24993,"location":[8.622695,44.37517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,227],"duration":21.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.086,"geometry_index":24994,"location":[8.624021,44.376058]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":1.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.195,"geometry_index":25001,"location":[8.62882,44.379464]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":7.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.844,"geometry_index":25002,"location":[8.629011,44.379725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":5.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.906,"geometry_index":25004,"location":[8.630427,44.381082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.242,"geometry_index":25006,"location":[8.63157,44.382043]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[41,222],"duration":3.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.258,"geometry_index":25007,"location":[8.632108,44.382476]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,221],"duration":24.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.422,"geometry_index":25008,"location":[8.632872,44.383106]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,203],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.422,"geometry_index":25017,"location":[8.636356,44.388192]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[48,213],"duration":6.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.914,"geometry_index":25020,"location":[8.637669,44.389762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,231],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.969,"geometry_index":25022,"location":[8.639151,44.390665]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,224],"duration":3.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.625,"geometry_index":25023,"location":[8.63938,44.390835]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,232],"duration":15.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.898,"geometry_index":25025,"location":[8.64029,44.3914]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,293],"duration":3.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.039,"geometry_index":25034,"location":[8.644304,44.392066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,291],"duration":9.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.07,"geometry_index":25035,"location":[8.645212,44.391822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,260],"duration":6.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.961,"geometry_index":25044,"location":[8.648029,44.391582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":2.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.789,"geometry_index":25046,"location":[8.649985,44.39185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":19.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.539,"geometry_index":25047,"location":[8.650895,44.391973]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[47,223],"duration":13.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.312,"geometry_index":25062,"location":[8.656365,44.393616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,223],"duration":8.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.961,"geometry_index":25064,"location":[8.659567,44.395946]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.422,"geometry_index":25065,"location":[8.661674,44.397473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":4.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.023,"geometry_index":25066,"location":[8.662009,44.397715]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[44,223],"duration":7.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.883,"geometry_index":25069,"location":[8.662917,44.398397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,224],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.961,"geometry_index":25070,"location":[8.66475,44.399732]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[44,49,227],"duration":6.703,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.68,"geometry_index":25071,"location":[8.664982,44.399888]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,223],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25075,"location":[8.666437,44.400964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":3.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.477,"geometry_index":25076,"location":[8.666501,44.401012]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.883,"geometry_index":25079,"location":[8.66726,44.401569]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.667915,44.402037],"geometry_index":25081,"admin_index":6,"weight":1.094,"is_urban":false,"turn_weight":0.5,"duration":0.633,"bearings":[44,208,226],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":4.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.984,"geometry_index":25082,"location":[8.668053,44.402138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,226],"duration":2.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.961,"geometry_index":25084,"location":[8.669032,44.402829]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[55,232],"duration":3.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.031,"geometry_index":25087,"location":[8.669553,44.403131]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":4.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.977,"geometry_index":25090,"location":[8.670406,44.403543]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,241],"duration":4.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.172,"geometry_index":25093,"location":[8.671625,44.40403]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,242],"duration":15.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.141,"geometry_index":25095,"location":[8.672885,44.404509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,236],"duration":4.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.547,"geometry_index":25105,"location":[8.677239,44.406544]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.445,"geometry_index":25106,"location":[8.678587,44.407082]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":5.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.82,"geometry_index":25107,"location":[8.678717,44.407134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.938,"geometry_index":25108,"location":[8.680186,44.407717]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.836,"geometry_index":25109,"location":[8.680467,44.40783]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,241],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.234,"geometry_index":25110,"location":[8.681033,44.408052]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,241],"duration":1.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.641,"geometry_index":25112,"location":[8.681401,44.408201]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,247],"duration":3.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.203,"geometry_index":25115,"location":[8.68192,44.40837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":7.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.875,"geometry_index":25117,"location":[8.682964,44.408597]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":7.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.336,"geometry_index":25119,"location":[8.685237,44.409081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.406,"geometry_index":25122,"location":[8.687721,44.409613]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.898,"geometry_index":25123,"location":[8.689255,44.409939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":1.883,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.734,"geometry_index":25124,"location":[8.689569,44.410004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":2.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.219,"geometry_index":25125,"location":[8.690171,44.41013]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.867,"geometry_index":25127,"location":[8.690939,44.41029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":0.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.242,"geometry_index":25128,"location":[8.691241,44.41035]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,255],"duration":0.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.344,"geometry_index":25129,"location":[8.691328,44.410367]},{"tunnel_name":"Galleria Terrarossa","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[72,254],"duration":4.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.578,"geometry_index":25130,"location":[8.691452,44.410392]},{"tunnel_name":"Galleria Terrarossa","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[72,252],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.562,"geometry_index":25131,"location":[8.693034,44.410757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.797,"geometry_index":25132,"location":[8.693572,44.410881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,251],"duration":6.578,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.07,"geometry_index":25133,"location":[8.693846,44.410947]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25136,"location":[8.695923,44.411479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":1.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.109,"geometry_index":25137,"location":[8.696014,44.411504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,250],"duration":10.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.75,"geometry_index":25138,"location":[8.696396,44.411603]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,251],"duration":6.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.625,"geometry_index":25142,"location":[8.699728,44.412447]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,236],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.602,"geometry_index":25147,"location":[8.70147,44.412973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":1.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.578,"geometry_index":25154,"location":[8.702684,44.41467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,203],"duration":1.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.617,"geometry_index":25155,"location":[8.702881,44.415004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,214],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25158,"location":[8.703141,44.415314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,223],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.32,"geometry_index":25159,"location":[8.703202,44.41536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,224],"duration":10.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.102,"geometry_index":25160,"location":[8.703272,44.415412]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,256],"duration":9.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.227,"geometry_index":25168,"location":[8.706033,44.416121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":3.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.484,"geometry_index":25175,"location":[8.708611,44.416935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":9.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.555,"geometry_index":25176,"location":[8.709673,44.417407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":7.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.789,"geometry_index":25182,"location":[8.71222,44.418611]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,232],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.602,"geometry_index":25184,"location":[8.713973,44.41958]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,316],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.047,"geometry_index":25198,"location":[8.716496,44.419309]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,331],"duration":3.836,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.438,"geometry_index":25203,"location":[8.716821,44.418929]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,334],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25205,"location":[8.717259,44.418227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,335],"duration":12.836,"turn_duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.523,"geometry_index":25206,"location":[8.717295,44.418173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":2.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.5,"geometry_index":25220,"location":[8.720557,44.417618]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":5.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.234,"geometry_index":25221,"location":[8.721412,44.417693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,258],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.93,"geometry_index":25224,"location":[8.723141,44.417859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,229],"duration":6.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.75,"geometry_index":25231,"location":[8.724239,44.418338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":3.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.203,"geometry_index":25235,"location":[8.725679,44.419316]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.648,"geometry_index":25239,"location":[8.726429,44.419895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":8.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.438,"geometry_index":25240,"location":[8.72679,44.420189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":11.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.398,"geometry_index":25247,"location":[8.728619,44.421417]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[60,240],"duration":16.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.445,"geometry_index":25255,"location":[8.731561,44.422812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":4.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.68,"geometry_index":25256,"location":[8.736319,44.424764]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.656,"geometry_index":25257,"location":[8.737623,44.425296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,238],"duration":8.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.992,"geometry_index":25260,"location":[8.738611,44.425724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,224],"duration":5.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.312,"geometry_index":25265,"location":[8.740576,44.426848]},{"bearings":[43,210],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":25271,"location":[8.741377,44.42777]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"ALESSANDRIA"},{"type":"text","text":"/"},{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"ALESSANDRIA / MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A26","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A26"}],"type":"fork","modifier":"left","text":"A26"},"distanceAlongGeometry":162056.625},{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left","slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"ALESSANDRIA"},{"type":"text","text":"/"},{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"ALESSANDRIA / MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A26","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A26"}],"type":"fork","modifier":"left","text":"A26"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":114,"bearing_before":112,"location":[7.36704,43.745118]},"speedLimitSign":"vienna","name":"","weight_typical":5988.453,"duration_typical":6178.359,"duration":6178.359,"distance":162056.625,"driving_side":"right","weight":9763.922,"mode":"driving","ref":"E 80","geometry":"{t~lrA_ws`MfGkXjOeq@~DuQhE}RlEgWbDuSfCaV`CkVzCsb@lAiUf@uJ|Ckq@hDqu@bB}b@lCut@j@_PPqFnAoi@zEsrBTmN?wFIkDOgCiAgHQeAc@iDS{AOiA{AyM}BiJcBgEsB}D_EwHoOsXmHsNgKiTeGiNmOa_@cQia@eHiP_FiMgKyWcCyGuFqO_F}OMa@_D_LgD_N}BgKiDqPmDuRyD}UuDuVqIwj@{EgYwFoZmCmMgE_QyE_Q}CoKsDeLkFkOuFoOsFoMaHgPkF_LgFsJkHkMeMmReGqI}HeKqNmQ{`BglBaeBiqB_NkP{KkO}LgRgJ_QiFaMmHeRwEyOkFsTaEsU{C{VoCc_@a@uJKyII_IAmTp@oXlAgRv@wHpAiMjD_VfEuS`F_VzmAgeE|EmTnE{SrEmX|Ec\\`D_XbEca@lCq]pBq]jBaf@p@a]j@ig@j@sw@Ta\\@cVKoPy@{a@uBua@wAeP_BeO}DqZ{DqU_FwVoEoQ_Nwd@mLu_@yLo`@eJi^eJ}c@iGia@aKys@_FuZqGo\\gEyQcFwQiJeWcKgUcIoNiL}QmRyUwd@ug@cKkLaPaRmSiW{MeT}NuYmRsb@mOq_@iPeh@cMag@uL_i@iNqx@mGio@wEym@wDoq@qDwvAsAqp@i@qz@AgpBXyxBEku@l@eq@j@o_Bm@a`Am@yZsAqY}A{TsBgRkFa\\kFqRyEkNoD{JsEwKuIiQwQs\\yGcLmJgP{I{NsQyXkKmPqJ_NaJwKcM}MeGeFgHaFw_@_UoZcPkUaNmRoOoQ{OeR}OsPsLaNgIqOyGkPsEgQmD{JeAkRaAeLKqO^wd@fD{eA~LkUxBcQn@qPBqD?uQq@cTuBgReE{t@qWg[uGmWeCkZoA{j@q@o_@b@y_@nBw_@jFwhAvQyrAp[q^hGw^rFed@fEqPz@iJ`@mG?yZqAsReCuJuBcDs@wS{G_XkMkQuL}QaOaOwO}JuL{EmHeJmNwJyQ{NwYoNkXcJySqJ}ToJkW{Uao@{HwVkIw\\qGo[_FwXeGic@cEs`@iD_d@iBsa@cAk`@e@k\\m@ieBa@{c@aAoe@_A}RyBaYyCgX{DqWyDgUkCkMu]{iA{_@wjA}GePiz@ckBcb@i|@y\\}r@qYil@aZyl@uZkl@qSc_@gMuSaM}ScPyViSeXoGeHiOoOaQyOkR{K_TsKs[mM_RgFqa@kIwPmD{MsDePkHyHeEiIeG_MkKkLcMsJwNgIyNoGeOyG_PoFkQm@}BcGcUaIwb@sHii@gKoaAqGo{@]{GsAyUsAyWgAa[oAwe@[mUQsUBoZGwZHgXFsFVwRZqTh@oWz@uYxAo^|AyYnBaZlFmn@vF}b@lGsa@lGs[vDiPjHyXvNkf@bLu]dAcDxPmd@fTqk@tn@{aBpMic@lDkP~E{WlCiT~Ci^zAcXbCgt@~A{z@Zs\\HkN@_C@gO?gWAwy@MedA@oR@{G@uO\\i[r@w`@r@{^r@_\\~Acj@NqEv@{TbBa_@xAsZzBm[lBkSjCkWfFq]vDmTdHi\\pEuP~GsSzSki@br@}uAdL}UnL{WfI{T`IsW~F}UzE{VlDcW~BaX~@kSXsSJoTSu[{@sZ}@iYiCir@{@{ZUq[JmYf@uZ`AuTnAkSlBwUpAeNdBqMbHwc@~Fa^zAqIdCkNzFa\\fDwS~Gwc@dJ_q@hP{nAnCsV~Ck\\rBqVpAgW\\sMl@aSTuUByQUsTiAaW{Fky@kQovBoNaaB}K}sAwFit@mFkgAeCu{@r@kdArCiaA|E{w@zDa]dIcm@zIci@`Ic`@hHeZvGwVjH}TpDcLpK}Z~^ifA|Lea@zHsX`FoShF{WdDaUtBeUjAoU\\uTAmVa@eUk@aMoBkT{C_TsD}SyEkSiDmLmEkLkFiMqHsOsHiM_IcLsL{McJuI_JmHoJmGeJcF{NuFmS{FgHaBqFaA}x@kMyx@mLcy@gRgc@wOy\\aPkXsM_YmNoXcOIEg{@{i@a^qWkKyHyb@}ZiVmW{NaTuVqb@sPuc@_FgQaIg^gHy`@oFih@sA_a@Ye]H_[^oOd@{JfA}PvAeUbB}PrC}TfDoS~Io_@jHgV`IuVtYyu@hKe[dLi]`Ood@tIg[zGuZjDiUtCc[tDun@pCcp@pBay@v@ehA@uk@{Bk`AwB_g@cGiy@eGcq@oLq|@wPyeAm|BkaN{TcsA_DqVU{BiAyNiBmR{RayA}A{JmAsD_CaEyBwD_BgCgAgC_BiFaJgg@iQuiAqW_dBkJyo@{DqZaIsd@gI_k@oJoeA}Esu@ePexC}D}iHs@g{Ix@e|@vBovAhEktAhGysAlFmjA~Bi`@~Byo@v@yS^}HnAcWhB_WfKiaBt[}hF`SweDjDie@jCk[fJ_jA|e@o~G`Dm}@tAuaAw@ycA_Awm@wAuj@{Fi`A_Hsr@yMyvA{P{bBcFcn@aCo^oB}e@s@{UcAmg@eBku@e@qi@Zch@z@g`@hBim@tDqn@dJ{uA`Coh@pOokCh\\wmFnJ{xAzImwAxCw_@dFka@`Fic@hAeMvAeKzDiY~F}W~Hm\\nLa^lH_OzOaZjyBq`E|lBuoExCqG`]it@rMeZ~GmPlHcTnFsQfHcZnEiWhDoWbCwVnAqUjAi]h@_`@Uc`@eA}[qBcYaEm\\oE_UqFsS{JgZgJcT{HkQ{KySsJwO{KwOkOcQyIuIsJoHqMqI}JiGgKkGoXqNiVkMeEcCa|@}c@gPqJ{ZuSwZyUwd@{_@aQiPyQeRaFcGaRyT}K}N}HmK}IuLgJsMsQ}Ws_@iq@{j@anAuPw`@kQ}j@si@}zAmc@yiAeIgVg_@u}@y@sB_GuNeJ}Sck@mqAsj@orAa^{x@qJ_XkIwUoSss@}Riv@uJe^{Jab@wdAq`EyQws@uXm~@_Q_r@k]}wAy]_rAsT}|@wRa`AmLov@uIgq@_H_k@_CuSE]yN{lAqK{}@K{@wIiv@wRy{AuDwWaBqKa@gCwDwS{DuQeDcMmDeKsFwMuGiO_K{RmMcSsKkN_OoNyNiLoIsFiH_EeJqEiLaFaK_DwLuCgNuCcKqBmMwBwV_E}O}BuRiD}RaEgMwCsGaBmGqBsJmDeKoEwIsEmHuEaGgEyFoE{FqEuHuHeMyO}K{PQYa`@qw@kZoaAk`@cyAcc@chBkf@}xBmHaX}Loa@yRwi@}Pu_@ySyd@k^qm@y`@wg@yNqLkVmN}MqHyTeIgU{Dyc@}Gap@iGwe@{@sz@xEwa@|Fwd@fDmDC_TxCyUdEgEt@sNdCo\\tEiYfEcK~AiUpEwYxCu\\\\iXwBiWeDaWyGkXgMcUmP_QqPgL_N_P_T_a@{p@a\\aq@iO_h@qRuz@qKyv@aF{u@oB}s@dA}x@xDgi@xIwo@nHsa@~Jgb@tRer@dZs|@|X}|@|o@sqB`]acAp[kaAjUk`AvTygAf_@swBlOuoAnM_dBhGgp@xFys@?C|Eao@~[y}DrIi~@hKefAbWklD|A_S|Gay@`JobAhP}hBnNszB~@o{AwA{z@o@wRiC{[wAkLsCkWiD}X}Lcv@}XgfByQmsA_RwnAcOo~@qMoq@G_@qQoaAwGua@qiAs~GsRorAeX{vA{AyFyHkd@oCkPaSmz@o`@{hAai@_{@kr@qaAkw@c{@m^qd@}[m_@cZs^{Xu^sNaTyP_ZyPe\\cEoIqMyWgNma@kKk_@gWmaA{Let@aHio@sDca@{AcWiAia@mAc\\O_~@Rwy@ZklAC{p@nBy}Em@kg@iAqa@gDwj@cByScPwqAi[smAgm@}xAwb@}r@gl@ir@{VySyBcBgh@q^{[cP_C_Aci@uRwFoAa[eHu_@aFsoAoJyg@mDuRiB_XeCeVuCkOuC_`@}JwR{HkQiIoN{JeN{J_QaMgLqJgT_PiMqJqKiJiReNcSiTii@wh@{aBkqA}LcJuTsO}ScOgj@ue@ql@eb@_]eWeUgS{j@qi@wdFu`EqjAo{@aSySkOwRmM_TgJqRwFwM_K}[qJ_c@oHwc@iEae@aB{e@Daf@nBwe@tE}d@zHqc@zKwa@vNm_@hQs\\|SsWl^e^bh@q]~eAun@deBybAzb@mVlDqBzRaLj]sThPqLnO{M~N}M|I{InNiOzLmO`T_\\zSaa@tJsSlIaSrPke@lHgVlJc_@jIw^xEiYvC{V~BiZdBi\\vAee@hAme@lD{wAlEoxBH{FdDqyAlAk`@NsEbB{\\hByXzBaZtBmWjD_a@hDgYbGyc@`Iyi@dVq_B?CF_@@GBQxAoJr]m|Bd{Am{Kvi@_aDzRa~@nUe}@hWk}@pZibAtgBakGlWsnAvIog@vGmc@pIqo@rFcj@pGow@vCw]bBeSdVanClEmf@hPuiBZaD@MdOm_BjM{}A~SidCnGqcAvAuYzAsa@~Akl@z@si@n@wr@\\}^l@}j@d@ej@fDw{CzAudB^ua@`A__Ab@sh@KwYw@me@sA_^oCq\\kBwPeDuUcC{OyDoTgKgg@cMcl@cKge@aTo`Ay_@ocBm`A{gEqGgXkEuPqGqSaK}VyJmS_OoXiYgc@qSiVkXmVmb@{W{i@eYubAuj@_QsJ}X_PeH}DcZiPqe@e]kb@s^{^}a@sd@ci@m\\af@kWwe@_Ziu@}Poj@cJe]kVsfA_O}pAoGmkAcBkd@_Ac]_@ia@FwYZy^\\kz@c@e`B{@{~Ag@_p@oAet@_E{jBk@g`@W{Tc@w|@g@sp@u@w`@cBul@qDys@KcAkDe_@Iw@oBaT}Jst@aKek@m^}aBkj@urBqL_f@mr@csC{Qet@wW_jAs[}fAklAm`E{c@yfAsr@uvA}Ykc@eV{Vec@}]qi@wc@sMeKiHwF{b@{\\m_Auv@uZwVe[_Uuo@cf@yN_MyXgUcTaQeNgMeRaSoW}ZwV{ZwKuOeDmGmb@ot@ok@afA}k@wiAwXyi@ev@yzAw`@kv@mMyVqLmUsYik@mYcn@eLwSmcBwhDwOqW_L}TeS}a@yWco@k^aiA{[akAqa@y{AmYwdBuN{`AqNijAqL_fA{Qm_BgU}nBaKgq@_Kmi@eRmo@ed@}w@uRcVeT{S}R_Q{TcNcaAs[aMiAiXcCa`@BiPlAan@vK_SxCoa@hI{]hIuXzEqv@nRoo@xMoXpFmo@vMsa@xBc_@^cXgBo[cEs^{Ie[kKqa@qR_QkKqAy@aRkIeTmQsM}OiNyTsMmXiFgL}EeMaHaTiC_ImDkKaOue@mBsGuJmg@]eBcDaVsAeJmEi\\oD}`@y@}]R_e@jC{]pBa]t@cMjGkk@~M{u@xI{[hLa`@fLoY|LwVjPqY`PsUlNmPhNuPnOwPhUiUbTiTvQkPpLmK`m@_i@zfAm|@vLoLvHmIrGeInKwP`M{TnP{]tL}ZrKq]`Iu]nH_e@pDyWrBuXpA}[Z{\\a@ma@}Aq]wGqcAeFqi@kG_n@}Jgj@uNsi@w^{z@g]cl@eqAoqBea@yr@ywAszCwm@wtAkLmWkU}g@sR_d@{S_b@}Sq]eb@gl@_WoYyJqLcYkZaRyNeZ{TgYwOuYsMgo@gTeXiHu_@uHqW_FmXwD{[cDqkA{P{aByV{_A}LedAeMcm@sHw_@_GaOeEuKgEuIoE}Q}LcEeDyCgCyDuDiC_DgMgPkSeZkG{LiKoNiUgc@uGeO}IcVoEoNoJi[mOyx@{H_q@mDcp@cAih@gCmjBsH{yHcDccBoCcdAAa@q@cj@{@o_AcCa`AoDgh@qBsVoDeVwCcSuPas@aTcn@eJaSuCkG_Vub@ySsZaVoWu]a\\cs@ko@cXoVus@cq@yU_Twf@id@c\\}YkXaXmFmEyd@gd@cOsPaL{NqVm[go@_{@io@kw@oa@ei@cw@{_A}i@wr@oA_Bak@ut@il@ap@mLcLyQsMmu@sc@wq@aYmkAel@aMsH_WuPuOyLeQ_OiMiLwPcReLiNcMaPmFeHsHcLkQ{YqEwIyKwT{FiMeHePwGoPkPmf@iTgv@ct@}iCqvAmoF{z@gaDqmA{xEcaAisDuScr@kJeXgOk`@aRq_@gRc]_ReXuB{CeJ{LeW}ZkYeViW_QmWyMsm@cRw\\wHoZ}Duh@iDwr@Tsa@xB}AHy_@fCmYt@gGNkUj@eICaKk@sMu@gO{AgT_DkY}HiScIgIyDeMsGqKyGqSsMwP{LYSyUqUaOoRwNuUqgDoiGoF}HyN_Tu\\ob@{U}WyMwKuDqCk^iSaVkLwc@cN{QsD{a@qFcb@eBm[b@eTdAcWfD{PpCcEfAmIbB{_@jMge@~Uk_@dTmAh@sNhHg[~SsWnPkd@`UmSdKmUlIgZnLwV~GqA\\uX~GaU~Eo[vE_J`B_RfDms@`Nco@pSor@~a@{XzS_a@zZ}w@po@mu@ti@kQrJcTxIaWpH{ZxEqRpBoV`Aaa@Oy^yA_bA_Hay@gFsb@}CykBeL}}@wEye@XqY~@iRnC{l@hJeu@pQoYnJwp@`Zmv@ph@_m@~d@qh@x^afAf{@ca@`\\kZ`TgUpMuQvI}f@~N{YtIsVnDsEp@ab@|C}`@Jmu@w@ozZ}`@yRT_~AbHsy@|Fk[zDsUjC}YlEwWvDca@|Eu\\xDy_@hC_`@Z}h@oAsT_A{]iE_\\qFo`@gLo_@aMksDe}A_]yLm]gJiXeFqXuCuTcAkW@gTf@qSfA}g@tEsxAjNo^tA}]s@mTs@cRiCwk@}NqYiMyTiL_VwRwRiQcMqNgMoOsL}QkNkSuMwXuIeRqLe\\gXcv@a^c`AgZix@uUqo@qQsg@cHwRcQwe@uC}H{Tcl@_LgWeYwo@ks@enAe`A_yAil@_aAm~@}~Ac[kf@{_@up@mf@i`Ay_@uz@o\\aw@}d@unAgf@}uAkLs_@oLwc@qFcSsn@ocCaWgz@_Uop@oXit@aXan@eQw_@gLiSmLuSsZch@c[qf@qXu`@wi@mn@yw@ey@}`@k_@o]sXgh@w_@__@}VuTgO{UuQuP{LuSeOgE{CyWgSeK_IkYwU_o@_j@_~@{~@eA}AcUoY}Wk^cOyRkI}LcKeO{Rk[{\\yi@_l@o|@ch@gv@e^qi@qeAq~Ace@ys@gg@mu@}W{`@ayAoyByMoRae@ms@mWm`@oQcXiNeTax@mmAe[eg@gc@sr@wsAa{By\\kk@}f@mz@o^ol@mEgHyGwKek@{~@u~@g}Aua@er@u[}g@{e@yw@asAc|BckAgjBkI_NgMcSyWya@e[qf@wu@ikAEGcsAytB_Yic@eWy`@qN{Tuy@oqAo`@im@wWwa@mRkZ}IkNgVq_@kMyRc[of@wEmH_i@oy@CCcRuYe_@ml@c[mf@qr@egAsy@}pA{HaMyPsYoNiWyKyTaKoSqMmYkPg`@oMo]{Ls^gJwZeNuf@}Kw`@sW}_AwKo]cNe_@cNe[eMeXyMwUkI_N{JkNaUwZ_VyVoL{KcKyHmUaQiTwO_XiNiVwKes@{UcYiGuWaEkZsDmZoAwYm@gXIkWh@}RvA_RrBgNbCaPxDeO`EeQnGwOlGoKlFuMdGoXnOaQlKqXxQqIfFoHxEiMjI}a@~Wcp@da@on@b`@_OvJa^vU_NjIuG~DekBtiAwa@hToRpImFnBmMtEaLxDcXbHwW~FiZxE{Hx@{X~BiZz@uTd@c`@a@{^qBkL_AyM_BqSmCaEw@yNuCkWaH{RoG{PiGgTmIiKaF}ToKsOcJaLyHuSmO{SoQaR}PkUuT_W}YaOgSwNgUcMuTwQg]yI}PiQka@_N}^qJaZ_IuV}ImZeGqTyKy^is@y~BsIsTsNg^mIuPoGyMoYkl@gLgSgPgX}PeWuM_RoSgXsKuMePiRclC{_Ccu@yl@{WgTqh@cc@wOwMggAyz@sLaLil@wc@yTsSkp@}h@{yA_}Ag\\g`@mQ}Su[aa@uIuKaa@wi@a^uk@_MoT_KiQciAetBim@shAgsA_sCym@inAy_@}{@sCqGo\\mw@_Vol@aWop@cVir@saAclCgAwC{k@eeBma@cgAmRef@qd@ycA__@eq@_e@gs@{@qAoe@yi@{b@_d@qa@}^aaAmj@a`@kPm\\sN{n@sXs_@ePsd@kQwf@iQ}a@_PwWyMmq@uXsh@yUw_@gW}UqPgPsOwYuYiOcSgKyMeJoOqPaZgLiUuMsZeKoWyMk`@yPwp@yNiv@a_@onCed@weDmKim@_Loj@eKka@kMya@sEkNcG}OwMiZm^}o@k`@kn@ue@of@_g@y`@qn@_`@eg@}Xo]wRcH}EyOuJsLoJw_@}WoeH_lHqtBezB{KeKy\\kYoNiL}L_NySyPu_@sW}e@}[uIeE}GcDmOqHea@kOkw@_Tct@{K_j@kDgc@s@ob@hCkWxBsTrBu~ArSkpBjWmZdE}k@lFaj@bAwe@u@omAgNoiAwKu_@_EkXkGgk@qVoe@mYm^uZqt@c}@yi@_}@{d@uaAsQee@ySoi@{Ns`@eVaq@qNca@{Lw]eGwP}GoRyJoVoGmPkRsc@gIyQyIkSgTi`@sQi^_i@s~@wk@w{@mj@ik@}SaTuDuCcj@ga@wm@e`@yiAgo@wReMcEmCwbAyk@agBqbAit@_c@ks@}b@i]iVqRaP__@wb@ia@al@{Oe\\_EyIiK}UyLc\\}HcYiJsa@qIad@iResAyG{b@_@mCiPekAyn@y{DsmAmuHmKmx@uEer@{B_s@q@um@Tsg@^eg@X}X|Bir@xBma@tCy_@xBsYrMccBfJkcAlCyZdBwRrAmYjA}Yl@{f@Uia@]mUm@}S}Ay\\mGyw@aI_p@yCwR_FeWut@}cDyPot@aGiWuLqe@mD_OaHqYoYckAcRuy@}Fi[uGg_@wF{b@yEwi@kBgc@k@y]F{]x@aa@hCu`@VeCpDs]pEg_@|Fe_@~Iuh@bKmk@~Mkv@xJ}m@jJwj@nL{x@xFym@tC{h@vB{`APifAz@i}BCiXLka@oBsy@_Ba\\yAmMm@eFcC}UiCuOqO{r@kSa`AwPi~@}Hw`@uDs]mS{xBaD{_@a\\udDcFmZcFiV_Ii[gH_VeLaYgI{S_JyOeL_TmT}ZoJqJkF_Ga_@c\\kTmMyTaJs]kMk^qI_UsCiTmA{Z@of@fEsSzCsTdD}a@`Gs[pEqOxBmSpB{a@|A{^zAmZjA_]p@m^_Ayu@iJcg@cLad@kPyw@ua@{_C_{Ac{GakEqf@sZid@gVw_A_h@qNgFmMuDyTkFiOkCqPwBqSiB_YwA{KQkd@Cu^Nea@HshBBy^Z}o@Bsk@DkKWgQy@{Q_B{NkBoQwDgTmG_SiHkOyGqL}HeW_PsWeTeSuR{KuMmKeNaMoQgIoNyHaOeJsS{Rag@_Oc`@aZcu@aDuI_EqKqScg@iT{e@iXif@yg@gt@oAoAyYsYa[wYiG_G_b@}^}b@i^{l@gi@yi@ef@ox@qs@q\\m[qYaZcVmYuWw]kOuUke@}v@kMsT}Ra]eZif@kPcYgo@ogAqQs[iUw`@}RwZoNeReSgTyWsUwc@kYyVsKqU}IgRqFol@sOyLyDmOgEif@}NuBy@CAkIeD}LuFoUkOeH_GyHoHgI_JcGeHoJ_Lee@uo@us@oaAoqAegBsFyHuDiF_JeMsPqVeTi[qJ}PgHgNwHgPaHwO}HkS}IoWEOgM_a@aJ_ZCK_m@ynBs[{dA{Um|@oVyv@uLw[aXee@{QwVgLyM}R_QcT_PqTmLyRkH}LkDkJ{BeK_B_KgAeEa@wXkByIU{^t@g`@h@eYVwXOeWlA_t@Ts_ASgv@x@_^{AsSgBkPcDiXaHgN_FcKmEkYyN}L}HgLaJsV_T{CcDiLaLsJgKsHkJyHmLcIeNkKeRsGeNaHuPiG}PyGmSsFcSmFwS{D}R{DeTeBqLuFuf@uB{V}@{M?CWwDsBq`@{Dsv@qAcWmEgx@yDex@cG_w@i@cHmJqx@mLin@{Ner@oMed@qCwJo^idAsOe\\_Ucb@{b@uq@oZia@wC}CgEsEmEyE}GkHy[oY_GkF}f@k]ka@{Tef@oU}FqCijA{h@ga@_S{XgNyXgNqPeI}FsCc}BoeAkYiNo_@aS_JgGcKuIsHkI{U_[wJ{PqGqMiGiP}Nmf@cFoVuC{SkBaVyAyYeAq`@cCc~@gB}fA{Bsu@iAgNwAcNiB}MwBuMgCmM}DqPyHwZsMuZgIeRyTs]ySyX{Um]sSo]_LeTgIiR{Mw]_Tsl@_IyUuG}VuGa\\wFy`@{Eu`@eHwY}DiUqDmT{Nex@cLwj@QeAyFoS_L}`@aLiWwMgX}h@uo@{a@um@cd@uo@ub@mk@c^ae@e`@ck@mZ{a@ca@}f@kh@up@mu@efAab@w^ke@s]qeAkl@co@u\\wQmOiJeJaHmIcJmMkJgPmIgR{FcPiFwQeE_QsDmSsBePqByQ{AaVa@sOEeM@cRN}TVoQXiOP{IVkM|@ae@Z}OtAmv@x@g`@`@oVFeD\\gRXyU@gSKyXMeKWcLa@qKm@eNu@wMuAgTwAyPqIo}@eIe{@w^kyDmWyoCgM}sAeBoT{@mQ[{RLiUp@yR`B{YrAmQ|B_R`CyO|AyIf@qCbD}NdDoLrC_KxDeNvBuH`BaG`S_p@hPqk@fByIf@aCl@wCtC_QlCs\\|@s\\]eX{AkWiEum@cFod@qF{]yFwZyFmUyGkTsLmVwJ{NmQeTcOiMKKym@_k@qrAcpAii@mf@kj@_g@e}AetAaByAoHyGoHaH{CuCktAuoAkzAssAmEsDgLoJ{g@_d@gv@ot@cFuFaJ{JeLaR{IoQgJeYoCqO}C}S_BiW_@s_@EeWM_qAWsv@CiLs@gwB?e@Fi~@Uw~@i@{}Bg@ed@?Cc@kLmB}SqAiIwGy]eGqSkCmH}IyVgKwN{LgOqS{MgV{Lmb@_Uc`@kSe@Y{TkMot@cb@wg@}VoG}CyAu@eVyOkv@ui@cX}Puz@mp@}uAugAcuB{|Awc@{_@cTg[kOwUuL}UgvC_{GuRyf@kUkh@aZ{x@uDmMqD}NqCwQsAgXAgN?mR|Ae[jIgkBzB}`@nDkq@pGwyA`Aoa@hBk`@n@{^AuY{@oX{MycAaBqNy@{SMuPt@_VlBiPbDiQ`N_d@rJqa@dIg^hEcZ|Fsf@rFsq@z@yJ`HqhApCmf@dA}[Mw^y@iTeFae@wNkg@gMe]sQo_@}]ur@if@qcAoYak@{d@q}@aFqKwZkp@{EwLyEwLuIi]wI_d@wJeo@_Mqo@cPal@aYmx@eCiHgOkb@cOic@sJq\\cIiZ_FoUkDcRaDmRcEwa@i@oGgCuUsCua@mBye@mJozBeAiYq@qLgAcMoAgL}CmSuB{LwDiQsD_Nw@uBcE_LIUwFiNaJyR_LgSwSm_@cTqc@cJaXuFiVkGsYk]s_BsL{^_OyZm{@yqA{RyZcZic@_d@kl@wXuc@ov@{qA}OiVuLkUko@kpB_Yww@sNgS_WeQgcAul@iO}JsYoRey@_dAmToXse@}l@aZs`@kf@wn@{Va[kQcOaRwOsH}DsSuKay@yb@um@a\\ka@mTevA{r@}]eXqg@w_@sYcWwSy^ub@y{@sIiMkQwY}Oc]il@whA_GsO{DkOqBqNu@wODsUj@oLbBgNbQm{@fNww@jIch@nCoTbAiKx@yL^yNKiQSeOi@yPoAeRkHwbAkFou@uF{w@kFuv@oFchAsAcPyBsRiH{e@}CiOuDqNgEcNgIuTyFkN_FcKiEiHoG{JaFmHgGsImt@{oAe{AgvBm~AubCcN}SoP}VcMsQ_JeMmrAqqBwHoMoWq_@cMeRsQ_Y_IeL_B_C{AyBeYwb@wD{FiMqR}MkTiEsGc[af@aNcUgEeImE{IeEoJ_D}HkOm`@kC}HcDwJmDuL{Rwq@sY_eAiBwGkLc`@uFgQsIwWuWos@cLqYqJuUwEcMcXkq@qI}TuByFs`@gsAgBcGmc@yzAaFqP{Lkb@uCeJsCyJkCeKyBqJkAuGsAqJqJut@uHsk@qSm`B{E_`@kF{`@_RkwAkS{~AaCsR{Fsd@iDsWuCkVwB{Qa@mDq@wFyU{aBwFs`@cCcPoGm`@{RgmA{CcQq@uDeE{V{Kyr@wMuw@gJgk@{Lov@cRahAuBgLiBgHaByEuBoE{EuIgDkEiF}FaG{DsFkD}LqF_x@a_@{SiK}D_CyEgDsE_F{AyBgBkCaFgJ_DwHeCqIgBiIuA{JoAyKyHss@yHkt@iD}ZgFqa@uB_MyBiKmCcKsCiJwT{o@o\\kaAiOyc@gVas@aG}PkEcLuEmKqMyYkg@ghAeSic@}CmJ}BeKyAqKy@yJUgJGeKTeK~@mKrBuM~BiJrCsI~CkHhD_GbEsF`EeEvCgCr@g@rDkCtDgCbWcMvRgLjBgAfEiDrEyE|FmJrEyJnC_H|AeHfBuHlAsIt@yIZ{IIaMa@gMcBw_@}Bgn@uCmt@wEiqAo@mLcAiKiAcIgBgJ{ByImCsH}B{EwDwHkEeIwKiQsTk_@yMoT}JyPoAwBkHcLyFeIoOyRkQqUwX}]uFiHcFuG_EwG}C{F{F_NkPw`@gZ{s@iNa]cGgO_FeN{GoRaImWaHgUo@iB_yBkhHg`@opAmIeXcG{PeGuQuSsj@eIgRwMaXuJiP}KqPsIsK{FcG}IcGiQ}KiDeCqCaCgDoEyCuEoDaHs`@gy@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 28 miles.","announcement":"Continue for 28 miles.","distanceAlongGeometry":44624.457},{"ssmlAnnouncement":"In 1 mile, Take the A7 exit.","announcement":"In 1 mile, Take the A7 exit.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the A7 exit.","announcement":"In a half mile, Take the A7 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the Diramazione A7 exit onto A7 toward MILANO GENOVA.","announcement":"Take the Diramazione A7 exit onto A7 toward MILANO GENOVA.","distanceAlongGeometry":200}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left","slight right"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.742665,44.428557],"geometry_index":25275,"admin_index":6,"weight":4.617,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":4.648,"bearings":[45,52,231],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[25,212],"duration":10.148,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":0,"weight":10.148,"geometry_index":25280,"location":[8.743248,44.4291]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,322],"duration":22.688,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":22.688,"geometry_index":25288,"location":[8.743099,44.430683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,325],"duration":10.797,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":10.797,"geometry_index":25308,"location":[8.739843,44.433985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,336],"duration":6.258,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":6.258,"geometry_index":25316,"location":[8.738194,44.435447]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.737854,44.436422],"geometry_index":25321,"admin_index":6,"weight":14.672,"is_urban":false,"turn_weight":6,"duration":8.672,"bearings":[163,173,354],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,330],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.898,"geometry_index":25328,"location":[8.737289,44.438001]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,330],"duration":16.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":16.102,"geometry_index":25329,"location":[8.737173,44.438146]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[148,329],"duration":11.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.266,"geometry_index":25333,"location":[8.734954,44.440753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,300],"duration":18.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.141,"geometry_index":25339,"location":[8.732655,44.442374]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":4.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.656,"geometry_index":25348,"location":[8.727543,44.443251]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[97,276],"duration":29.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.242,"geometry_index":25349,"location":[8.726133,44.443368]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,311],"duration":11.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.258,"geometry_index":25365,"location":[8.717882,44.443678]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,335],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.305,"geometry_index":25372,"location":[8.715987,44.44523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,337],"duration":17.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":16.484,"geometry_index":25373,"location":[8.715822,44.445487]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[23,200],"duration":36.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":33.727,"geometry_index":25386,"location":[8.715667,44.448908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,282],"duration":37.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":35.172,"geometry_index":25403,"location":[8.724906,44.451304]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[86,271],"duration":10.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.047,"geometry_index":25429,"location":[8.734147,44.447121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,237],"duration":8.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.062,"geometry_index":25437,"location":[8.737297,44.447946]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":21.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.891,"geometry_index":25442,"location":[8.73897,44.449116]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[30,39,214],"duration":4.156,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.922,"geometry_index":25447,"location":[8.743832,44.452855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,201],"duration":9.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.43,"geometry_index":25451,"location":[8.744389,44.453673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,179],"duration":0.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.109,"geometry_index":25458,"location":[8.744777,44.455889]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":4.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.586,"geometry_index":25459,"location":[8.744777,44.455916]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,358],"duration":6.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.477,"geometry_index":25461,"location":[8.744719,44.456938]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,356],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.039,"geometry_index":25463,"location":[8.744616,44.458378]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.328,"geometry_index":25464,"location":[8.744615,44.458388]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[177,356],"duration":39.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":36.227,"geometry_index":25465,"location":[8.744591,44.458683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,338],"duration":6.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.586,"geometry_index":25474,"location":[8.743081,44.467369]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[151,329],"duration":6.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.016,"geometry_index":25479,"location":[8.742233,44.468584]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[140,318],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.039,"geometry_index":25484,"location":[8.741044,44.469725]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[138,320],"duration":0.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.344,"geometry_index":25485,"location":[8.741034,44.469733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[140,319],"duration":9.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.164,"geometry_index":25486,"location":[8.740964,44.469792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,318],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.078,"geometry_index":25490,"location":[8.738811,44.471502]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,320],"duration":6.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.453,"geometry_index":25493,"location":[8.737576,44.47251]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,324],"duration":8.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.273,"geometry_index":25495,"location":[8.736292,44.47362]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,354],"duration":9.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.57,"geometry_index":25506,"location":[8.735294,44.475357]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,187],"duration":4.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.469,"geometry_index":25515,"location":[8.735501,44.477626]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,348],"duration":4.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.359,"geometry_index":25521,"location":[8.735426,44.478798]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,335],"duration":7.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.289,"geometry_index":25527,"location":[8.734941,44.479846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,349],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.086,"geometry_index":25537,"location":[8.733983,44.481583]},{"tunnel_name":"Turchino","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[170,353],"duration":36.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":32.805,"geometry_index":25539,"location":[8.733911,44.481855]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,338],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.648,"geometry_index":25546,"location":[8.733215,44.490562]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,331],"duration":20.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.609,"geometry_index":25551,"location":[8.732804,44.491181]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[133,309],"duration":2.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.266,"geometry_index":25563,"location":[8.729261,44.495311]},{"tunnel_name":"San Pietro","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[123,301],"duration":9.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.344,"geometry_index":25566,"location":[8.728589,44.49566]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,285],"duration":2.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.188,"geometry_index":25572,"location":[8.725781,44.496364]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[106,290],"duration":15.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.523,"geometry_index":25575,"location":[8.725022,44.496515]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[120,298],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.812,"geometry_index":25587,"location":[8.720512,44.498506]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[114,290],"duration":32.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":29.633,"geometry_index":25590,"location":[8.719898,44.498714]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[126,311],"duration":11.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.633,"geometry_index":25604,"location":[8.709179,44.499961]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336,344],"duration":4.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.258,"geometry_index":25614,"location":[8.707032,44.502285]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.477,"geometry_index":25615,"location":[8.70636,44.503351]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336],"duration":3.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.531,"geometry_index":25616,"location":[8.70613,44.503723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,335],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.656,"geometry_index":25618,"location":[8.705567,44.504612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,337],"duration":6.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.023,"geometry_index":25619,"location":[8.7053,44.505029]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.704528,44.506559],"geometry_index":25625,"admin_index":6,"weight":1.773,"is_urban":false,"turn_weight":1,"duration":0.844,"bearings":[151,164,343],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,344],"duration":66.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":61.82,"geometry_index":25626,"location":[8.704446,44.506754]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[181,358],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.789,"geometry_index":25673,"location":[8.699889,44.522227]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,356],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.789,"geometry_index":25677,"location":[8.699784,44.523492]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,356],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.273,"geometry_index":25679,"location":[8.699654,44.524759]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,356],"duration":16.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.531,"geometry_index":25680,"location":[8.699647,44.524834]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[159,334],"duration":6.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.32,"geometry_index":25686,"location":[8.698834,44.528878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,343],"duration":20.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":19.016,"geometry_index":25689,"location":[8.697777,44.530369]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,343],"duration":28.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.586,"geometry_index":25699,"location":[8.696233,44.535188]},{"tunnel_name":"Anzema","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[117,286],"duration":31.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":28.18,"geometry_index":25712,"location":[8.691437,44.540875]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,285],"duration":7.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.445,"geometry_index":25715,"location":[8.681058,44.542041]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,304],"duration":17.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.492,"geometry_index":25718,"location":[8.678848,44.542598]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[134,316,342],"duration":10.297,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.266,"geometry_index":25721,"location":[8.674535,44.545336]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,335],"duration":0.969,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.859,"geometry_index":25724,"location":[8.672559,44.54722]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,333],"duration":4.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.898,"geometry_index":25725,"location":[8.672425,44.547421]},{"tunnel_name":"Poggio","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[153,342],"duration":17.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.453,"geometry_index":25726,"location":[8.671779,44.548326]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,346],"duration":8.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.484,"geometry_index":25728,"location":[8.670518,44.552284]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,345],"duration":19.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.57,"geometry_index":25730,"location":[8.66984,44.554234]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":7.016,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.305,"geometry_index":25732,"location":[8.668041,44.558786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,338],"duration":1.484,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.312,"geometry_index":25733,"location":[8.667422,44.560367]},{"tunnel_name":"Broglio","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[158,328],"duration":6.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.594,"geometry_index":25734,"location":[8.667245,44.560683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,318],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.305,"geometry_index":25735,"location":[8.666139,44.561928]},{"tunnel_name":"Castello","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[138,320],"duration":18.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.312,"geometry_index":25736,"location":[8.665594,44.562363]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,345],"duration":12.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.242,"geometry_index":25739,"location":[8.662333,44.566092]},{"tunnel_name":"Montà","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[166,348],"duration":27.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.305,"geometry_index":25741,"location":[8.661321,44.568815]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,350],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.477,"geometry_index":25742,"location":[8.659362,44.575283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,354],"duration":3.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.586,"geometry_index":25743,"location":[8.659277,44.575636]},{"tunnel_name":"Lagoscuro","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[0,174],"duration":8.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.195,"geometry_index":25744,"location":[8.659144,44.576523]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,196],"duration":4.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.727,"geometry_index":25750,"location":[8.659435,44.578517]},{"tunnel_name":"Roccadarme","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[27,200],"duration":19.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.961,"geometry_index":25751,"location":[8.659877,44.579398]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":21.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":19.508,"geometry_index":25755,"location":[8.663733,44.583184]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,349],"duration":3.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.508,"geometry_index":25768,"location":[8.664789,44.587897]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,358],"duration":24.648,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":22.18,"geometry_index":25773,"location":[8.664596,44.58896]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,191],"duration":1.914,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.703,"geometry_index":25789,"location":[8.667168,44.595416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,185],"duration":2.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.258,"geometry_index":25791,"location":[8.667233,44.595884]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,359],"duration":44.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":40.023,"geometry_index":25794,"location":[8.667247,44.596505]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":6.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.625,"geometry_index":25807,"location":[8.66312,44.606731]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[161,337],"duration":21.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.125,"geometry_index":25812,"location":[8.662648,44.608168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,323],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.141,"geometry_index":25818,"location":[8.65882,44.612192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,324],"duration":9.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.281,"geometry_index":25819,"location":[8.658351,44.612633]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,339],"duration":1.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.234,"geometry_index":25825,"location":[8.656755,44.614585]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,343],"duration":8.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.906,"geometry_index":25826,"location":[8.656585,44.614906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,353],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.07,"geometry_index":25831,"location":[8.655942,44.617092]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[173,359],"duration":2.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.609,"geometry_index":25832,"location":[8.655894,44.61739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,179],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.031,"geometry_index":25833,"location":[8.65588,44.618108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,198],"duration":8.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.938,"geometry_index":25838,"location":[8.656217,44.619208]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[16,198],"duration":14.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":13.258,"geometry_index":25840,"location":[8.65721,44.621322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,185],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.453,"geometry_index":25846,"location":[8.657893,44.624925]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[11,18,188],"duration":10.773,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.227,"geometry_index":25850,"location":[8.658132,44.626556]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.659588,44.629004],"geometry_index":25855,"admin_index":7,"weight":1.367,"is_urban":false,"turn_weight":1,"duration":0.422,"bearings":[27,199,215],"out":0,"in":2,"turn_duration":0.033,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,207],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.742,"geometry_index":25856,"location":[8.659649,44.62909]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,215],"duration":13.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":13.102,"geometry_index":25857,"location":[8.660022,44.629469]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":9.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.312,"geometry_index":25860,"location":[8.662535,44.632443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,355],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.086,"geometry_index":25865,"location":[8.663054,44.634865]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[171,349],"duration":15.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.172,"geometry_index":25867,"location":[8.66295,44.635411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,345],"duration":5.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.5,"geometry_index":25872,"location":[8.661558,44.639306]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346,359],"duration":8.594,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.156,"geometry_index":25873,"location":[8.661037,44.640719]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,177],"duration":13.016,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.359,"geometry_index":25878,"location":[8.660455,44.642904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,191],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.93,"geometry_index":25882,"location":[8.6612,44.646298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":9.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.031,"geometry_index":25883,"location":[8.661277,44.64655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[182,356],"duration":2.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.578,"geometry_index":25886,"location":[8.661837,44.64903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,356],"duration":3.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.133,"geometry_index":25887,"location":[8.661773,44.649746]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,344],"duration":0.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.164,"geometry_index":25889,"location":[8.661539,44.650597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":17.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.586,"geometry_index":25890,"location":[8.661521,44.650642]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,356],"duration":2.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.266,"geometry_index":25897,"location":[8.659638,44.655128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,355],"duration":8.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.039,"geometry_index":25898,"location":[8.659575,44.655772]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":5.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.914,"geometry_index":25899,"location":[8.659292,44.658067]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,356],"duration":33.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":31.367,"geometry_index":25900,"location":[8.65913,44.659459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.812,"geometry_index":25911,"location":[8.660113,44.668292]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,182],"duration":5.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.75,"geometry_index":25912,"location":[8.660123,44.668528]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":17.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.094,"geometry_index":25915,"location":[8.660004,44.669904]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,352],"duration":16.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.094,"geometry_index":25919,"location":[8.658499,44.674469]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[21,25,202],"duration":11.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.516,"geometry_index":25925,"location":[8.659071,44.67874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":29.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":27.531,"geometry_index":25926,"location":[8.660649,44.681595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,201],"duration":38.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":35.336,"geometry_index":25927,"location":[8.664776,44.689063]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":0.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.367,"geometry_index":25932,"location":[8.666892,44.699232]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":82.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":74.172,"geometry_index":25933,"location":[8.666912,44.699343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,338],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.758,"geometry_index":25950,"location":[8.666232,44.725905]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,337],"duration":39.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":35.75,"geometry_index":25951,"location":[8.665772,44.726725]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[134,311],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.867,"geometry_index":25957,"location":[8.658063,44.736582]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[131,306],"duration":51.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":46.367,"geometry_index":25958,"location":[8.657111,44.737171]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,349],"duration":4.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.07,"geometry_index":25970,"location":[8.647109,44.749298]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.742,"geometry_index":25974,"location":[8.646794,44.75052]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.031,"geometry_index":25976,"location":[8.646689,44.751045]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"bearings":[173,353],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"geometry_index":25977,"location":[8.646688,44.751051]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"MILANO GENOVA"}],"type":"off ramp","modifier":"right","text":"MILANO GENOVA"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"off ramp","modifier":"right","text":"A7"},"distanceAlongGeometry":44644.457},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"MILANO GENOVA"}],"type":"off ramp","modifier":"right","text":"MILANO GENOVA"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"off ramp","modifier":"right","text":"A7"},"distanceAlongGeometry":1609.344}],"destinations":"A26: ALESSANDRIA, MILANO","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A26 toward ALESSANDRIA/MILANO.","modifier":"slight left","bearing_after":45,"bearing_before":51,"location":[8.742665,44.428557]},"speedLimitSign":"vienna","name":"","weight_typical":1518.078,"duration_typical":1635.133,"duration":1635.133,"distance":44644.457,"driving_side":"right","weight":1518.078,"mode":"driving","ref":"E 25","geometry":"youvsAqortO{HuLeDwDkEeEcDuCkFcEgLsGiE_CsHuAiLKgJ|@wNbDgMbFeNxIgD~CkFxGgHnMyIdRsJbToDtH{EvIwFjJeI|KqFhGgN`MeHzFeJvFoJ~EmNlFmJlDgStI}InEcK~G{E`EuLpLoHlJcVj^oJfNiElFwHlIqH|F}FrDwHnE}KfE{HfBeJnAePvA{Kx@qLjAsLhBcOnD}M`EqKxE_NlHaHfFePxLuz@zq@oi@|b@qj@`e@cSzO{VxY}Q|WmKfRcHbQyOtd@kEfNsDjM_EfRyCrPgEn[oDf`@oCn^aH|tAuExhAiFbwAkAla@Lf[vCxi@pJljArEnd@rCz\\bAh\\\\dQA|Oy@n]wBna@yDn`@qGl_@mHt[wGjT{H|TuLjUqH`N_NlT}IjMaKbLmM|MiTbPaOhIyNjHmOlFyOjF{N|BaPxBqPtAuRTeNAiTaBgUkEmOmEeJkDeGiCwGaDqUqLqQ}LuY}YiKsNeIqL}KkRmO}[qOea@}Hc^wDeYoCo[mBiv@cAek@Xao@lFetAvKuvAbDs\\nByPbDcQ`FgTzGgUbHqSpF}L`GqLnFaKbJcMvLeP~b@wf@d^}a@nYq_@dRcYdMiW|JwWbGoR`EoQvDeS|BsOxBwQpB}TtAyTh@yVJo`@g@eW_Ak\\qBiXmCmQgFyVoIuYoLm\\aHsRcFuKoFyJyM}SsUu]aTm[stDcsFqPkVwJ_McMkMsG_GaRsNmJqF{KqFwFaCmT{HsOaEmSgDgRiBgK_@cTJkZZu@?eFJuw@fBkd@dAss@fCS@mQn@kVbAmxIx_@qf@`DqU|CeSjDkTpG{SzHa`@lOmOdHyPfIuKdGeN`J_LzHgPrLoH~FkLvJcOhP_QfSiM~OORuBjCki@~r@y_@jh@wP|U}LfQ{PzUiPpSyZv`@gx@faAcK~LcGpG}E|DwE~DcItFcK~FkI|DgFxBqMpEcLpCgIdB}GbA{L`A{Kl@aL?eJO}Lq@{MsAi_@mEkS}BiHk@uFa@iKOoJBcKVeL|@mOlBkNvCgIpBuHjC_I~CsHvDqIzE{IdFkPtJcL|GgIlEeHnDaI`DcJfD_HtB}KtCsCl@_Ex@_JtAqMpAcQn@kzLnTaWtB{UpDmKhCwGjCiFzBqFrCoGrDkH`F}DnCu_@~Wsf@t\\ga@`Y}d@t[_WhQyQpM}MnKgJrIeLlL}JtM}IzMqG~KsIlQ}DvJgDxJ}E`O{ChKsEzSkDxTeLbaA_Fhe@oBbQoAdLmBbOuC`QcEpSkEtQqFbRqHnTgJjV}LlYcQx`@iNx[uJvVgJtYqG`TmDhMiChLgBvIwH`d@uE`g@mDzn@aAxi@KvwAzAj`DRzh@s@`e@oC|e@sEt[kIx^sIhYaKvWiJpTgJ|PuH|LmJzLeJhL_KbKsKhJeOdKcNrIuTxLaW`NsaA~h@gVjMwi@fZyK|FaYtOsMvGiOnHqMvFyOfGaOdFgPxEeKbDec@|Mgd@hOeY`KsXhK{MvGkO~HsLbHsNbJyMtJiPrMmOrMqQxOsWbV{b@|`@mR|PuIbHaLhHwKlGeOfHuNdFsPvE_c@nL{f@pN_s@vRg~@vVeUzF}MbDiKjBkIz@uJp@iJ`@cM?qMYwLeAcMgB}MqCoMyDmOoFmYqKqh@cSqP_GiL{DqNgDaOwCoNcBkL}@oKIcHF{ENq]xAo_@~Acp@tCa]lBuCLebDbOs_@zFcD`AuWxHyI|DiO~G}[rRun@fc@qOdI}[rKsYrIgMvAc`@tCov@jCkf@fKsi@~NyRfI}ShJ_SrJmd@xNmk@tGoj@lGkSfEaW~KsWhOoRhN_XnXwe@|t@ma@|s@sWxg@uI~S_GvTmQbyAkf@hqKaNf{CgLxfAmLnk@cGxTsZ|x@yTz_@uxBvqDyVp_@ir@lv@si@nb@qKjGqw@jg@ooBtq@{eCb[edAbWus@fQsv@dT{cFfzAyaBte@wR`JylAbdAeZ`a@u_BhqB{fAhw@o_Ad`@qwA`a@spAd\\gsKlyBaUhDmv@hGyPC}P_@s^m@m[}CkM{CmMyDav@sZuRiMyTqR_u@mt@clCuxCy\\i\\cUqPyR_KwLwFuO}FyWqGiSoCoOgAeNW}K?iYhBuUfDst@`OcI|AwJtAePlBsNt@wJh@yIR{T@cXoAiLaASAcVyCsYkGa[sJsd@qSuu@w]oi@aWax@a_@mTmIkNgEsJaCsLyByNqAmLo@A?uOc@aUF{{CrAw[r@e_@xEy[zLqUlL}WzQcYnZii@tr@{a@bf@sc@f[uf@`Tik@zMaxBdQqOrA_Q~BmPnDgNdEqUdJeRfJeQ|JoQ|LyQxOkRfRm|C`eDqZh\\}e@~f@eM~KyM~JqL~H_MpHoYdNaSrIoYfJeZrHqZ`F}[nEmYvDsQ~A{k@ZwHYeHq@iKaB{M_DsUsIegBap@}Z_LyR_GiVsFa`@uFkS}Bej@}DmtAoHix@}C{NeCwR{B_H}@a[wFy^mMcc@yTc\\}R{ZaZkDyBuViVsxBsmBqb@e\\u[gPiPkI{_@oIgS{Emu@gDoYPeKj@}TbDce@jIqh@jJwg@xMiR~EufBlj@iwAp_@i|@fUsUrEkR|BaIx@eVv@qTQcX{Awm@sIuuBo_@wNyCseBc]i^aCaTYwk@~BqNj@sd@fLyAb@wNdEsx@n]{w@fa@}WvJyXnIyz@xOqf@tFgg@|BmnCtP_vAbIsjAjFmKLsNJyP?_SKyRg@gR_AeMaAoPgAk_Hmx@mr@gCwMSuUW{b@fBmZ|Cmh@xFk`@bIy}Bzl@urAf]om@tGqaAfCkq@_F{`@iH}m@wRuUsKmqDsaBwqM}`GqzBql@uxB{SazAiRi{F}d@}m@qG}Eg@g}Du_@ikBeLiiCeBk`F`ZkpCjTgmApHikAlAm~AuDuDIe{AsIe_CsO_nAyEo_Ar@efAvKkt@zK{x@`Toq@zUgr@v[w|InkEmw@|f@ar@dj@ieAziAuh@dr@ym@bcAyc@nz@qq@`aBcn@lvAgh@x|@ol@~y@_`A`bAo}@nr@{eAzi@_`FhgBqYtIgq@`R}o@|NkWjF}AZie@pIc[vE_Fn@gWbDqGl@K@a}C~XgUrBwbBhO"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 11 miles.","announcement":"Continue for 11 miles.","distanceAlongGeometry":16949.836},{"ssmlAnnouncement":"In 1 mile, Keep left to take A7.","announcement":"In 1 mile, Keep left to take A7.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A7.","announcement":"In a half mile, Keep left to take A7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A7 toward MILANO.","announcement":"Keep left to take A7 toward MILANO.","distanceAlongGeometry":188.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[8.645953,44.755532],"geometry_index":25980,"admin_index":7,"weight":22.375,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":24.875,"bearings":[173,353,360],"out":2,"in":0,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,202],"duration":2.422,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":2.242,"geometry_index":25994,"location":[8.645975,44.76142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,206],"duration":13.031,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":12.055,"geometry_index":25995,"location":[8.64633,44.761936]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.649577,44.764193],"geometry_index":26003,"admin_index":7,"weight":44.883,"is_urban":false,"turn_weight":6,"duration":43.211,"bearings":[59,234,239],"out":0,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":13.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.922,"geometry_index":26005,"location":[8.664083,44.770487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,238],"duration":10.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.516,"geometry_index":26006,"location":[8.668527,44.772423]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.289,"geometry_index":26007,"location":[8.672102,44.773937]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,239],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.75,"geometry_index":26008,"location":[8.672209,44.773982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":0.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.258,"geometry_index":26009,"location":[8.672893,44.77424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.195,"geometry_index":26011,"location":[8.672996,44.774279]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.539,"geometry_index":26014,"location":[8.675911,44.775165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":118.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":106.438,"geometry_index":26015,"location":[8.676134,44.775224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,247],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.945,"geometry_index":26025,"location":[8.72117,44.785277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,246],"duration":20.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":18.031,"geometry_index":26026,"location":[8.721556,44.785398]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[52,59,232],"duration":21.32,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":19.188,"geometry_index":26029,"location":[8.72818,44.788494]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.734879,44.792256],"geometry_index":26031,"admin_index":7,"weight":20.898,"is_urban":false,"turn_weight":1,"duration":22.742,"bearings":[52,227,232],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":2.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.898,"geometry_index":26034,"location":[8.742042,44.796262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":13.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.57,"geometry_index":26036,"location":[8.742722,44.796633]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,231],"duration":19.539,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":17.578,"geometry_index":26038,"location":[8.746833,44.798957]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":39.453,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":35.5,"geometry_index":26041,"location":[8.753035,44.802434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.547,"geometry_index":26044,"location":[8.765566,44.809441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":98.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":88.625,"geometry_index":26046,"location":[8.766101,44.809744]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.438,"geometry_index":26069,"location":[8.802977,44.827437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":24.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":21.742,"geometry_index":26071,"location":[8.803575,44.82758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.531,"geometry_index":26073,"location":[8.81277,44.82975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.812,"geometry_index":26074,"location":[8.814227,44.830097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":3.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.039,"geometry_index":26076,"location":[8.816612,44.830663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.234,"geometry_index":26077,"location":[8.817868,44.830959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":5.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.367,"geometry_index":26078,"location":[8.817964,44.830982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":4.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.836,"geometry_index":26079,"location":[8.820148,44.831495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[72,252],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"geometry_index":26081,"location":[8.821698,44.831857]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"fork","modifier":"left","text":"A7"},"distanceAlongGeometry":16976.502},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"fork","modifier":"left","text":"A7"},"distanceAlongGeometry":1609.344}],"destinations":"A7: MILANO GENOVA","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the Diramazione A7 exit onto A7 toward MILANO GENOVA.","modifier":"slight right","bearing_after":360,"bearing_before":353,"location":[8.645953,44.755532]},"speedLimitSign":"vienna","name":"Diramazione Predosa-Bettole","weight_typical":483.664,"duration_typical":529.531,"duration":529.531,"distance":16976.502,"driving_side":"right","weight":483.664,"mode":"driving","ref":"A26/A7","geometry":"wctjtAasunOuW@uq@bHkq@lGc^bDi^tCuZvAmRVuSQoWuAaP_BkWeEuOqDyOaFqKgFg_@eUgPsMoM}MePaRkOuTqNoU{McXaMcXg^{z@qrHucUytA}dE_xBwtGs}Am~EyAuEcOwi@g@iBe@cBmF{Rab@qnB{Kwq@uB}LqGo`@k_@ylDqhA_yReq@s_H_w@yuFugCypNq~Bi}L{bAueFobAmkF_GwYqFcWym@q}Byf@i`B{iBc}DuaCahFmgBsxDwOu\\qi@ckAa~D{tIqJgTsJgTsl@uoAsbBgoDw~AkiDeo@muAkhAyaCeyAi`D}sBcpEyeFw{KgFwKuJuSswBujEspCmmFwvBcdEg|@kcBaS}_@ilBsqDymBktD_c@sz@u]ut@ka@w`AsW}o@eX{s@Ws@{b@eqAc\\wfAyVa`A{Tg_AqNqo@yYozAeKsk@{a@ymCq]u_Cac@guCyDeWcBeLejBcfMm[qvBuTazAaWadBiJ_o@oQomAm@_Ea_@ogCeGkb@mMo|@iSouA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":74377.508},{"ssmlAnnouncement":"In 1 mile, Bear left toward Viale Liguria.","announcement":"In 1 mile, Bear left toward Viale Liguria.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Bear left toward Viale Liguria.","announcement":"In a half mile, Bear left toward Viale Liguria.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Bear left toward Viale Liguria, Centro. Then Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","announcement":"Bear left toward Viale Liguria, Centro. Then Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.823082,44.832182],"geometry_index":26082,"admin_index":7,"weight":8.195,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":8.883,"bearings":[71,79,252],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":5.297,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":4.898,"geometry_index":26087,"location":[8.82609,44.832901]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.562,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":0.523,"geometry_index":26088,"location":[8.827894,44.833319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,252],"duration":2.594,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":2.398,"geometry_index":26089,"location":[8.828087,44.833364]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,248],"duration":56.758,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":52.5,"geometry_index":26091,"location":[8.828788,44.833557]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.828951,44.841466],"geometry_index":26118,"admin_index":7,"weight":182.281,"is_urban":false,"turn_weight":26,"duration":168.961,"bearings":[2,180,182],"out":0,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,197],"duration":7.375,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.984,"geometry_index":26141,"location":[8.840676,44.889227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,191],"duration":11.227,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.93,"geometry_index":26144,"location":[8.841348,44.891298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,186],"duration":11.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.969,"geometry_index":26149,"location":[8.841958,44.894454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":28.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":27.805,"geometry_index":26150,"location":[8.842479,44.897604]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.843518,44.905756],"geometry_index":26157,"admin_index":7,"weight":11.086,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.383,"bearings":[4,10,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[8.843808,44.908952],"geometry_index":26158,"admin_index":7,"weight":13.492,"is_urban":false,"turn_weight":1,"duration":13.156,"bearings":[4,177,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.844155,44.912615],"geometry_index":26160,"admin_index":7,"weight":31.031,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":33.555,"bearings":[4,8,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[17,23,194],"duration":16.586,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":15.336,"geometry_index":26167,"location":[8.845597,44.922]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.848045,44.926383],"geometry_index":26173,"admin_index":7,"weight":20.891,"is_urban":false,"turn_weight":1,"duration":22.109,"bearings":[24,196,204],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":14.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.656,"geometry_index":26176,"location":[8.851689,44.932175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":66.836,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":58.477,"geometry_index":26177,"location":[8.854026,44.935892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":9.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.047,"geometry_index":26192,"location":[8.867889,44.952262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,241],"duration":99.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":89.648,"geometry_index":26193,"location":[8.871275,44.953576]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[26,37,207],"duration":7.797,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.195,"geometry_index":26219,"location":[8.898781,44.979167]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.900276,44.981215],"geometry_index":26221,"admin_index":7,"weight":112.086,"is_urban":false,"turn_weight":1,"duration":120.109,"bearings":[26,199,209],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[27,37,206],"duration":9.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":8.594,"geometry_index":26233,"location":[8.923231,45.013298]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.924958,45.015692],"geometry_index":26234,"admin_index":8,"weight":144.703,"is_urban":false,"turn_weight":1,"duration":155.375,"bearings":[26,200,207],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":3.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.539,"geometry_index":26245,"location":[8.958008,45.060259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":10.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.766,"geometry_index":26246,"location":[8.958918,45.061091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":63.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":58.414,"geometry_index":26248,"location":[8.960974,45.062966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":17.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":16.016,"geometry_index":26253,"location":[8.970518,45.071699]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,209],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.32,"geometry_index":26255,"location":[8.972963,45.074274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":40.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":35.281,"geometry_index":26256,"location":[8.972991,45.074323]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":25.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.469,"geometry_index":26265,"location":[8.97342,45.080211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":116.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":101.695,"geometry_index":26267,"location":[8.970552,45.087099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":0.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.109,"geometry_index":26283,"location":[8.972128,45.103987]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":96.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":87.156,"geometry_index":26284,"location":[8.972134,45.104001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":1.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.648,"geometry_index":26291,"location":[8.977144,45.120483]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":93.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":81.438,"geometry_index":26292,"location":[8.977233,45.121004]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[23,30,204],"duration":7.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.688,"geometry_index":26309,"location":[8.990237,45.145919]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[23,203],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.523,"geometry_index":26311,"location":[8.991424,45.147907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.117,"geometry_index":26312,"location":[8.991514,45.148055]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[19,196,202],"duration":60.844,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":54.742,"geometry_index":26314,"location":[8.99306,45.150691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":2.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.617,"geometry_index":26321,"location":[9.000987,45.167069]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,198],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.977,"geometry_index":26322,"location":[9.001341,45.167816]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":1.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.328,"geometry_index":26324,"location":[9.002041,45.169256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,198],"duration":6.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.133,"geometry_index":26325,"location":[9.002221,45.169644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":2.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.906,"geometry_index":26326,"location":[9.003074,45.171416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":1.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.766,"geometry_index":26327,"location":[9.003343,45.171962]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[19,23,199],"duration":11.039,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.195,"geometry_index":26328,"location":[9.003592,45.172475]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[18,191,199],"duration":54.977,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":49.461,"geometry_index":26329,"location":[9.005057,45.175467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":4.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.672,"geometry_index":26335,"location":[9.013454,45.189786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":22.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":19.266,"geometry_index":26336,"location":[9.014098,45.190843]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.375,"geometry_index":26339,"location":[9.017468,45.196581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":14.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":12.875,"geometry_index":26342,"location":[9.017971,45.19761]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":0.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.422,"geometry_index":26348,"location":[9.018215,45.201724]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,351],"duration":27.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":23.711,"geometry_index":26349,"location":[9.018183,45.201853]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,357],"duration":18.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.344,"geometry_index":26353,"location":[9.016651,45.209211]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":3.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.078,"geometry_index":26358,"location":[9.017169,45.213374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":50.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":44.609,"geometry_index":26361,"location":[9.017344,45.214153]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":10.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":8.922,"geometry_index":26373,"location":[9.02768,45.228801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":68.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":61.383,"geometry_index":26374,"location":[9.029813,45.231251]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[24,28,205],"duration":10.43,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.633,"geometry_index":26382,"location":[9.043422,45.247707]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.045057,45.250348],"geometry_index":26383,"admin_index":8,"weight":304.172,"is_urban":false,"turn_weight":1,"duration":319.133,"bearings":[24,196,204],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":2.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.477,"geometry_index":26419,"location":[9.093651,45.332932]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":12.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.852,"geometry_index":26420,"location":[9.09402,45.333594]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.047,"geometry_index":26423,"location":[9.096356,45.337177]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.097625,45.338597],"geometry_index":26425,"admin_index":8,"weight":8.562,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.047,"bearings":[27,39,213],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.099517,45.340656],"geometry_index":26427,"admin_index":8,"weight":69.133,"is_urban":false,"turn_weight":0.5,"duration":74.219,"bearings":[33,204,214],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":3.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.672,"geometry_index":26436,"location":[9.11442,45.357682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":70.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":65.117,"geometry_index":26438,"location":[9.115217,45.358594]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,212],"duration":15.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.852,"geometry_index":26444,"location":[9.129942,45.374495]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":9.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.383,"geometry_index":26447,"location":[9.132394,45.378332]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.305,"geometry_index":26449,"location":[9.133779,45.38073]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.336,"geometry_index":26450,"location":[9.133821,45.380801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":10.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.148,"geometry_index":26451,"location":[9.134016,45.381134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.93,"geometry_index":26453,"location":[9.135454,45.383557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":20.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":20.727,"geometry_index":26454,"location":[9.135582,45.38377]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,207],"duration":14.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":15.211,"geometry_index":26459,"location":[9.137542,45.386889]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.1391,45.389064],"geometry_index":26463,"admin_index":8,"weight":44.688,"is_urban":false,"toll_collection":{"name":"Milano Ovest","type":"toll_booth"},"turn_weight":15,"duration":28.961,"bearings":[20,202],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,182],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.922,"geometry_index":26470,"location":[9.139525,45.390616]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,188],"duration":1.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.891,"geometry_index":26472,"location":[9.139556,45.390769]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.139586,45.390868],"geometry_index":26473,"admin_index":8,"weight":3.062,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.93,"bearings":[15,18,21,192],"out":0,"in":3,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":4.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.211,"geometry_index":26474,"location":[9.139833,45.391502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,197],"duration":15.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":16.023,"geometry_index":26476,"location":[9.140272,45.392573]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.14189,45.396211],"geometry_index":26480,"admin_index":8,"weight":9.141,"is_urban":false,"turn_weight":1.4,"duration":7.391,"bearings":[19,190,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,199],"duration":11.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.562,"geometry_index":26481,"location":[9.142581,45.397655]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.143801,45.39983],"geometry_index":26482,"admin_index":8,"weight":13.594,"is_urban":false,"turn_weight":1,"duration":12.297,"bearings":[23,191,201],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":7.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.703,"geometry_index":26483,"location":[9.145358,45.402429]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":7.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.859,"geometry_index":26484,"location":[9.146285,45.404031]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.14723,45.405661],"geometry_index":26485,"admin_index":8,"weight":11.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.148,"bearings":[22,32,202],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[22,196,202],"duration":30.758,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":31.516,"geometry_index":26487,"location":[9.148656,45.408105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":12.766,"geometry_index":26489,"location":[9.15271,45.415064]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.578,"geometry_index":26493,"location":[9.154763,45.417736]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,39,214],"duration":12.609,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":12.914,"geometry_index":26494,"location":[9.15506,45.41805]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":10.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.922,"geometry_index":26495,"location":[9.157553,45.420589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":7.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.406,"geometry_index":26501,"location":[9.159493,45.422805]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.160445,45.424394],"geometry_index":26502,"admin_index":8,"weight":26.102,"is_urban":false,"turn_weight":1,"duration":23.914,"bearings":[22,194,203],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":0.273,"geometry_index":26506,"location":[9.164068,45.429759]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,216],"duration":5.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":6.023,"geometry_index":26507,"location":[9.164119,45.429808]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[43,52,223],"duration":6.836,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":7.344,"geometry_index":26509,"location":[9.165431,45.430809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":3.062,"geometry_index":26510,"location":[9.166889,45.431908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,223],"duration":4.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":4.406,"geometry_index":26511,"location":[9.167479,45.432353]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":2.562,"geometry_index":26513,"location":[9.168278,45.433036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,219],"duration":4.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":4.898,"geometry_index":26514,"location":[9.168736,45.433439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,211],"duration":3.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":3.906,"geometry_index":26515,"location":[9.169392,45.434195]},{"bearings":[25,211],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26517,"location":[9.169857,45.434787]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Centro"},{"type":"text","text":"/"},{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Centro / Viale Liguria"},"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Viale Liguria"},"distanceAlongGeometry":74404.172},{"sub":{"components":[{"type":"text","text":"Via Spezia"}],"degrees":174,"driving_side":"right","type":"roundabout","modifier":"right","text":"Via Spezia"},"secondary":{"components":[{"type":"text","text":"Centro"},{"type":"text","text":"/"},{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Centro / Viale Liguria"},"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Viale Liguria"},"distanceAlongGeometry":1609.344}],"destinations":"A7: MILANO","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A7 toward MILANO.","modifier":"slight left","bearing_after":71,"bearing_before":72,"location":[8.823082,44.832182]},"speedLimitSign":"vienna","name":"Autostrada dei Giovi - Serravalle","weight_typical":2435.711,"duration_typical":2569.25,"duration":2569.25,"distance":74404.172,"driving_side":"right","weight":2435.711,"mode":"driving","ref":"A7","geometry":"kziotAsqoyOgOs`AeGsa@u@cFqPkjAg@gDcYwoByAaKoDiTqEoUqHmVcHaQiImN{HiIsG}FqI{F{DqBcEaB}JyBcKcAwIUqKd@eHt@wM|BwNnEcNtFuWvMcQnIyPtHeP|FuR|EcVrEaRjByTjBc_@fAu^Ow_BDaoHgPqgKsTcbBqD{zDqHqoG_N_oBuDyaA_Ds`@qB_c@mEui@qGkf@cIoj@uMeQmE_o@{Ro{GozBahFkdBa{@yY_bIswCwoFupBuzA{i@iQwF_WcHiLuDmr@wQi\\oHuo@wL}i@uIq^_Fo^iEqZyCu~@iH{cEq_@kjBkP}{@gIgk@qEcm@qD{xA}GwqAgGemA_GwfEcQsvBmJilBgImoGgYwdAqEsh@mCqx@uHwi@sH{s@sNqp@}Puz@aYw`@{OsZcNeb@uSeh@mYokAyn@g|BqmA_tBghAwvB}jAigFaqCmsTisLkw@}b@uQ_LmYySeQwNgL_KgT}SsYk]yPwUaSqZcSw]cUyd@gTei@{Oof@s^woAcqAsrEkMma@wL}\\}Pgb@sPm\\{OqZiMkSwVe_@mVyZa^ga@wvA}{AmyBq`CuoA{tAcf@qh@eCmCmqEi~EgaFeoFw~AceBwmAgrAcw@yz@kiByoBsr@av@sp@mr@oW}VcRgOmyAcaAcrAez@eaAwl@y|@un@gbAkm@atHo|EwjDwzBszEu{CygDyyBcuFioDq}FetDoaHwsEu`@qVgyAa~@iZkQg}BiwAstC}jBoxWclPkpFgdDgiCicB_xJicGwfFegDyaGmzDcyJujGgfA_r@qh@wa@eg@yf@stEwhF_s@{w@qbA_iAsp@ou@otB_`C??ifCsqCu}EuuFieAeiAc`BmeBy~@kq@aBw@ch@gVoj@gSmy@yMm\\iCy[aAsa@x@eh@zDqv@xNib@jMolFxcB_`ElmAe`Cdt@y`AvX{]hJ__@xHkk@jHul@|Fgn@bD}m@Nc}@kEud@cFke@mGu_@sGwb@cLilAy_@o~HskC}HkC[K{zJ_gDubB_h@{pAkSofB_QwwAkOw|C_\\uuBkSq_@qD{fBcQqhBsTmm@qGwm@aKkn@wOaVmHyl@}T}b@mScE{Cq}EqgC_nAao@s}BeoAs~Fc{C_lAmn@okA_o@wwCy}AeiBwbA_zAeu@g`@_SgHsDkwAwt@kkA{i@gnByu@sgAsa@k|@}\\ev@qYogEa_BkhEeaBi`IgzCum@cUwg@{Rgp@{VgWgJwmBit@ca@yOa_@qN_zDqzAugAoa@ejCaqA_pGaaDygDceBshBm|@sfCsqAaaAgg@}b@{T_sHesDuMqGoQyIm]_NkNsDwh@eNkz@_Iii@wBki@Xwk@fEqYrEaG~@kqGhz@}{AzRs_AxK}ZvByg@tAch@F{k@_Eqi@iGyyA_Tw^kFSCiOmB_}BiYqp@_Pgl@uTab@eP{X{Pcp@}b@yaBsuAgyBoiB{zB_kBeaAuw@ur@gl@yxB}iBcxCidCmpEwwD_{AslAyyAkpAewAikAeuCmdCozCcdCaz@gk@ivDuvBadDeeBgfD_jB_eGifDs_Bg|@{|Au}@ez@md@_z@yc@onAkn@qkAua@c}GqfBy_Dyx@qcDk|@}nD{_AwaDo{@k}Ao`@{yA_b@}_Bwb@spAc_@ccKgiCix@yX_j@mTmcA}m@_mAms@ikFi|CgaFoxC{tIcfFeu@ij@yoHobHojG_}FmrAwpAy~AevA{n@ae@ey@eb@u{FanCqkDk_BytA_q@izAyq@kh@aVg~@gb@myAkv@geAkv@uU}PaaAk|@_MeIuqBakByn@mj@kpAcoAc|BwrBi_CqsBuaBuoAyvFaqE{yDq|CsuAciAo|@ct@qc@s^mSeQegAi_AwqAqfAez@aw@imNgoMmrFabF}h@ad@wz@ml@_cCmoAao@kZcsA_o@w`Aqe@mCsAySeK_jA_k@mkA{l@iL_Gy[iPmo@_\\yw@_`@qX}Pib@gXkXgTyi@{a@}g@cYyYcN_MeFmNmEuVsEk\\sDoDMoFAo@E_E[qBa@eE{@sf@mNyc@kMc]aLykAg`@c@O}jA{`@ohAo`@gyAej@}fCgkAmaDi`BccB}x@{dBaz@qiAyj@emAil@kaEyoBqoFqkCwt@e`@uh@i\\wi@se@y[eZsRqQu}CyzC{OqOujAggAqJ_IcJiGcKsFcJoEibBoz@m~Ei~B_h@c\\c_@_\\we@_h@aBeBaTkYoh@sv@ucAczAyZ{c@yFiI{a@sf@eXs[gn@_h@_YwR_JiHkUyMkRwH}VyJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","announcement":"Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","distanceAlongGeometry":97.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[17,25,199],"duration":5.828,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":8,"out":0,"weight":6.531,"geometry_index":26520,"location":[9.170439,45.435838]},{"entry":[true,false],"in":1,"bearings":[21,197],"duration":1.234,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":8,"out":0,"weight":1.383,"geometry_index":26521,"location":[9.170895,45.436876]},{"bearings":[24,201],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26522,"location":[9.170952,45.436982]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Via Spezia"}],"degrees":174,"driving_side":"right","type":"roundabout","modifier":"right","text":"Via Spezia"},"distanceAlongGeometry":174.58}],"destinations":"Viale Liguria, Centro, Viale Liguria","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left toward Viale Liguria/Centro/Viale Liguria.","modifier":"slight left","bearing_after":17,"bearing_before":19,"location":[9.170439,45.435838]},"speedLimitSign":"vienna","name":"Via del Mare","weight_typical":12.281,"duration_typical":10.945,"duration":10.945,"distance":174.58,"driving_side":"right","weight":12.281,"mode":"driving","ref":"A7","geometry":"{zdtuAm_vnP{_Ao[sEqBuKaGaGeE"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Via Spezia.","announcement":"Exit the roundabout onto Via Spezia.","distanceAlongGeometry":57.228}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[61,207,275],"duration":5.383,"turn_weight":5,"turn_duration":0.067,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":10.977,"geometry_index":26524,"location":[9.17118,45.437314]},{"entry":[true,true,false],"in":2,"bearings":[11,87,224],"duration":5.555,"turn_duration":0.223,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":5.992,"geometry_index":26532,"location":[9.171482,45.437476]},{"bearings":[103,165,323],"entry":[false,false,true],"in":1,"turn_duration":0.104,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":2,"geometry_index":26542,"location":[9.171464,45.437791]}],"rotary_name":"Piazza Gian Antonio Maggi","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Via Spezia"}],"degrees":174,"driving_side":"right","type":"roundabout","modifier":"right","text":"Via Spezia"},"distanceAlongGeometry":73.895}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":2,"instruction":"Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","modifier":"slight right","bearing_after":61,"bearing_before":27,"location":[9.17118,45.437314]},"speedLimitSign":"vienna","name":"Via Spezia","weight_typical":17.984,"duration_typical":11.945,"duration":11.945,"distance":73.895,"driving_side":"right","weight":17.984,"mode":"driving","geometry":"cwgtuAwmwnPEg@WiBa@eBk@}Aq@uAy@kA_AaAk@a@WSiAg@kA[mAMg@AmADkARkA`@gAn@c@^]Z}@dA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":615.056},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Piazza Serafino Belfanti.","announcement":"In a quarter mile, Bear right onto Piazza Serafino Belfanti.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Piazza Serafino Belfanti. Then Enter the roundabout and take the 1st exit onto Viale Liguria.","announcement":"Bear right onto Piazza Serafino Belfanti. Then Enter the roundabout and take the 1st exit onto Viale Liguria.","distanceAlongGeometry":78.333}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[0,143,300],"duration":3.844,"turn_weight":5,"turn_duration":0.077,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.234,"geometry_index":26544,"location":[9.171415,45.437837]},{"entry":[true,false],"in":1,"bearings":[24,206],"duration":13.906,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":15.992,"geometry_index":26552,"location":[9.171554,45.438226]},{"entry":[true,true,false],"in":2,"bearings":[14,70,201],"duration":6.594,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.547,"geometry_index":26555,"location":[9.172387,45.439637]},{"entry":[true,false,false],"in":2,"bearings":[7,169,191],"duration":3.445,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.93,"geometry_index":26558,"location":[9.172556,45.440177]},{"entry":[true,true,false],"in":2,"bearings":[4,79,187],"duration":5.281,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.047,"geometry_index":26559,"location":[9.172585,45.440346]},{"entry":[true,true,false],"in":2,"bearings":[3,92,184],"duration":4.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.891,"geometry_index":26562,"location":[9.172604,45.440519]},{"entry":[true,false,false,false],"in":2,"bearings":[3,94,183,275],"duration":3.281,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.766,"geometry_index":26564,"location":[9.172613,45.440639]},{"entry":[true,false,false,false,true],"in":2,"bearings":[2,92,183,260,290],"duration":2.492,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.844,"geometry_index":26565,"location":[9.172619,45.440731]},{"entry":[true,false,false,false],"in":2,"bearings":[2,94,182,275],"duration":20.945,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":24.062,"geometry_index":26566,"location":[9.172625,45.440832]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":5.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.211,"geometry_index":26568,"location":[9.172676,45.441665]},{"entry":[true,true,false,false,true],"in":2,"bearings":[3,93,182,253,303],"duration":4.586,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.266,"geometry_index":26569,"location":[9.172689,45.441881]},{"entry":[true,false,false,false],"in":2,"bearings":[2,94,183,275],"duration":29.477,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":34.609,"geometry_index":26570,"location":[9.172699,45.442003]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":6.219,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.305,"geometry_index":26571,"location":[9.172738,45.442814]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[1,182],"duration":0.266,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.312,"geometry_index":26572,"location":[9.172745,45.442986]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[2,181],"duration":0.617,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.719,"geometry_index":26573,"location":[9.172746,45.443013]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":1.578,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.859,"geometry_index":26574,"location":[9.172749,45.443078]},{"bearings":[2,92,182],"entry":[true,true,false],"in":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26575,"location":[9.172755,45.443237]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Piazza Serafino Belfanti"}],"type":"turn","modifier":"slight right","text":"Piazza Serafino Belfanti"},"distanceAlongGeometry":631.723},{"sub":{"components":[{"type":"text","text":"Viale Liguria"}],"degrees":88,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Liguria"},"primary":{"components":[{"type":"text","text":"Piazza Serafino Belfanti"}],"type":"turn","modifier":"slight right","text":"Piazza Serafino Belfanti"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Via Spezia.","modifier":"slight right","bearing_after":0,"bearing_before":323,"location":[9.171415,45.437837]},"speedLimitSign":"vienna","name":"Via Spezia","weight_typical":135.938,"duration_typical":113.367,"duration":113.367,"distance":631.723,"driving_side":"right","weight":135.938,"mode":"driving","geometry":"ywhtuAm|wnP_DBqBB_@?k@CYEYKe@WqIoFwAs@cd@oWio@}XoMeDoGqAwIyAqIy@{BSwBKeBE_DKoAEwDKiEKqj@uAoGOoLYsFSuq@mAwIMu@AaCE}HKcCEgBC"},{"voiceInstructions":[{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit onto Viale Liguria.","announcement":"Enter the roundabout and take the 1st exit onto Viale Liguria.","distanceAlongGeometry":27.453}],"intersections":[{"bearings":[20,182,272],"entry":[true,false,true],"in":1,"turn_weight":5,"turn_duration":0.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26577,"location":[9.17276,45.443355]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"degrees":88,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Liguria"},"distanceAlongGeometry":27.453}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Piazza Serafino Belfanti.","modifier":"slight right","bearing_after":20,"bearing_before":2,"location":[9.17276,45.443355]},"speedLimitSign":"vienna","name":"Piazza Serafino Belfanti","weight_typical":11.719,"duration_typical":5.742,"duration":5.742,"distance":27.453,"driving_side":"right","weight":11.719,"mode":"driving","geometry":"upstuAopznPyCo@uBqA{DqB"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Viale Liguria.","announcement":"Exit the roundabout onto Viale Liguria.","distanceAlongGeometry":21.814}],"intersections":[{"mapbox_streets_v8":{"class":"roundabout"},"location":[9.172882,45.443585],"geometry_index":26580,"admin_index":8,"weight":4.453,"is_urban":true,"traffic_signal":true,"turn_duration":2.063,"turn_weight":0.75,"duration":5.211,"bearings":[56,203,266],"out":0,"in":1,"entry":[true,false,false]},{"bearings":[29,96,236,276],"entry":[true,false,false,false],"in":2,"turn_duration":0.142,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26581,"location":[9.173028,45.443655]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"degrees":88,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Liguria"},"distanceAlongGeometry":21.814}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":1,"instruction":"Enter the roundabout and take the 1st exit onto Viale Liguria.","modifier":"slight right","bearing_after":56,"bearing_before":23,"location":[9.172882,45.443585]},"speedLimitSign":"vienna","name":"Viale Liguria","weight_typical":6.57,"duration_typical":7.156,"duration":7.156,"distance":21.814,"driving_side":"right","weight":6.57,"mode":"driving","geometry":"a_ttuAcxznPkCcHc@UyAkA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":2943.228},{"ssmlAnnouncement":"In a quarter mile, Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","announcement":"In a quarter mile, Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","announcement":"Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","distanceAlongGeometry":70}],"intersections":[{"mapbox_streets_v8":{"class":"primary"},"location":[9.173077,45.443718],"geometry_index":26583,"admin_index":8,"weight":8.75,"is_urban":true,"traffic_signal":true,"turn_duration":2.541,"turn_weight":7,"duration":4.031,"bearings":[15,94,209,275],"out":1,"in":2,"entry":[true,true,false,false]},{"entry":[false,true,false,false],"in":3,"bearings":[1,94,177,274],"duration":5.484,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":6.414,"geometry_index":26584,"location":[9.173232,45.443711]},{"entry":[true,false],"in":1,"bearings":[95,274],"duration":2.234,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.625,"geometry_index":26585,"location":[9.173797,45.443685]},{"entry":[true,true,false],"in":2,"bearings":[94,176,275],"duration":2.68,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.125,"geometry_index":26586,"location":[9.174021,45.443672]},{"entry":[true,true,false],"in":2,"bearings":[94,177,274],"duration":13.992,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":16.422,"geometry_index":26587,"location":[9.174239,45.443661]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":5.93,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.969,"geometry_index":26588,"location":[9.175081,45.443619]},{"entry":[true,false,false],"in":2,"bearings":[94,122,274],"duration":4.891,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.727,"geometry_index":26589,"location":[9.175435,45.443601]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":3.062,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.242,"geometry_index":26590,"location":[9.175735,45.443585]},{"entry":[false,true,false,false],"in":3,"bearings":[6,93,186,274],"duration":1.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.242,"geometry_index":26591,"location":[9.175798,45.443582]},{"entry":[false,true,true,false],"in":3,"bearings":[8,94,189,273],"duration":0.906,"turn_weight":7,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":8.055,"geometry_index":26592,"location":[9.175868,45.443579]},{"entry":[false,true,false,false],"in":3,"bearings":[8,93,190,274],"duration":0.164,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":0.172,"geometry_index":26593,"location":[9.175913,45.443577]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":2.664,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.125,"geometry_index":26594,"location":[9.175937,45.443576]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":0.664,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.781,"geometry_index":26596,"location":[9.176152,45.443565]},{"entry":[true,true,true,false],"in":3,"bearings":[8,94,189,274],"duration":1.016,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":3.164,"geometry_index":26597,"location":[9.176217,45.443562]},{"entry":[false,true,false,false],"in":3,"bearings":[7,94,189,274],"duration":1.016,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.164,"geometry_index":26598,"location":[9.17632,45.443557]},{"entry":[true,true,false],"in":2,"bearings":[94,186,274],"duration":6.875,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.883,"geometry_index":26599,"location":[9.176416,45.443552]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":10.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":11.633,"geometry_index":26600,"location":[9.176925,45.443528]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":14.055,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":16.164,"geometry_index":26601,"location":[9.177677,45.443492]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":2.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.758,"geometry_index":26603,"location":[9.178719,45.443442]},{"entry":[false,true,false,false],"in":3,"bearings":[6,94,184,274],"duration":1.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.578,"geometry_index":26604,"location":[9.178892,45.443434]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":0.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.141,"geometry_index":26606,"location":[9.178996,45.443429]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.179015,45.443428],"geometry_index":26607,"admin_index":8,"weight":4.383,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":2.5,"duration":3.656,"bearings":[6,95,186,274],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[4,92,184,275],"duration":13.602,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":15.617,"geometry_index":26609,"location":[9.17914,45.443421]},{"entry":[true,false],"in":1,"bearings":[77,263],"duration":11.125,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":12.797,"geometry_index":26613,"location":[9.1802,45.443443]},{"entry":[true,false,false,false],"in":2,"bearings":[67,160,249,339],"duration":1.656,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.883,"geometry_index":26616,"location":[9.181027,45.443624]},{"entry":[true,false,false],"in":2,"bearings":[67,173,247],"duration":8.109,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.312,"geometry_index":26617,"location":[9.181143,45.443658]},{"entry":[true,true,false],"in":2,"bearings":[66,158,247],"duration":10.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":12.602,"geometry_index":26618,"location":[9.181772,45.443849]},{"entry":[true,false,false,false],"in":2,"bearings":[65,170,246,351],"duration":1.586,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.797,"geometry_index":26619,"location":[9.182595,45.444102]},{"entry":[true,true,false,false],"in":2,"bearings":[65,189,245,346],"duration":3.805,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.07,"geometry_index":26620,"location":[9.182706,45.444138]},{"entry":[false,true,false,false],"in":3,"bearings":[7,67,189,245],"duration":1.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.32,"geometry_index":26623,"location":[9.182838,45.444181]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":21.602,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":24.844,"geometry_index":26624,"location":[9.182915,45.444204]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":2.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.391,"geometry_index":26625,"location":[9.184469,45.444671]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":3.93,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.516,"geometry_index":26626,"location":[9.184679,45.444733]},{"entry":[true,false,false,false],"in":2,"bearings":[64,137,247,315],"duration":1.656,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.883,"geometry_index":26627,"location":[9.184966,45.444817]},{"entry":[true,true,false,false,true],"in":3,"bearings":[17,64,166,244,308],"duration":4.031,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":2.32,"geometry_index":26628,"location":[9.18508,45.444856]},{"entry":[false,true,false,false],"in":3,"bearings":[7,67,187,244],"duration":1.734,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.984,"geometry_index":26629,"location":[9.185237,45.444909]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":0.719,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.828,"geometry_index":26630,"location":[9.185374,45.444949]},{"entry":[true,false],"in":1,"bearings":[66,247],"duration":12.961,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":14.906,"geometry_index":26631,"location":[9.185438,45.444968]},{"entry":[true,false],"in":1,"bearings":[67,246],"duration":7.922,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.305,"geometry_index":26633,"location":[9.186486,45.445295]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":3.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.555,"geometry_index":26634,"location":[9.18713,45.445491]},{"entry":[true,false,false,false],"in":2,"bearings":[67,163,247,344],"duration":1.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.352,"geometry_index":26635,"location":[9.187378,45.445566]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.187474,45.445594],"geometry_index":26636,"admin_index":8,"weight":11.453,"is_urban":true,"traffic_signal":true,"turn_duration":2.008,"turn_weight":7,"duration":5.797,"bearings":[67,159,247,341],"out":0,"in":2,"entry":[true,true,false,false]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.187714,45.445665],"geometry_index":26637,"admin_index":8,"weight":3.328,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":2,"duration":3.141,"bearings":[66,175,247,356],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[69,175,246,353],"duration":0.828,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.969,"geometry_index":26638,"location":[9.187844,45.445705]},{"entry":[true,false],"in":1,"bearings":[69,249],"duration":4.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.836,"geometry_index":26639,"location":[9.187945,45.445732]},{"entry":[true,false,false],"in":2,"bearings":[74,122,249],"duration":3.094,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.625,"geometry_index":26640,"location":[9.188423,45.44586]},{"entry":[true,false,false],"in":2,"bearings":[78,189,254],"duration":18.625,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":21.875,"geometry_index":26641,"location":[9.188798,45.445934]},{"entry":[true,false],"in":1,"bearings":[87,266],"duration":25.711,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":29.57,"geometry_index":26645,"location":[9.191102,45.446087]},{"entry":[true,false,false,false],"in":2,"bearings":[87,175,267,356],"duration":0.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.945,"geometry_index":26646,"location":[9.194292,45.446213]},{"entry":[true,true,false,false],"in":2,"bearings":[86,176,267,356],"duration":6.133,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.734,"geometry_index":26647,"location":[9.194397,45.446217]},{"entry":[true,false,false,true],"in":2,"bearings":[86,176,266,356],"duration":3.055,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.211,"geometry_index":26648,"location":[9.194604,45.446226]},{"entry":[true,false,false,false],"in":2,"bearings":[86,176,266,358],"duration":16.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":18.805,"geometry_index":26649,"location":[9.194699,45.446231]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":7.203,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":8.281,"geometry_index":26650,"location":[9.196093,45.446293]},{"entry":[true,true,false],"in":2,"bearings":[86,175,266],"duration":16.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":19.047,"geometry_index":26651,"location":[9.196709,45.446321]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":4.32,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.969,"geometry_index":26652,"location":[9.197595,45.446361]},{"entry":[true,false,false,false],"in":2,"bearings":[86,170,266,351],"duration":2.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.758,"geometry_index":26654,"location":[9.197822,45.446371]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.197945,45.446377],"geometry_index":26655,"admin_index":8,"weight":2.773,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":3.547,"bearings":[87,163,266,344],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[86,267],"duration":1.711,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.969,"geometry_index":26657,"location":[9.198066,45.446382]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.198197,45.446388],"geometry_index":26659,"admin_index":8,"weight":2.242,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":3.086,"bearings":[87,170,266,353],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[86,172,267,351],"duration":28.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":33.258,"geometry_index":26660,"location":[9.198314,45.446393]},{"entry":[true,false,false,false],"in":2,"bearings":[87,176,266,356],"duration":0.969,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.102,"geometry_index":26661,"location":[9.201397,45.446532]},{"entry":[true,false,false],"in":1,"bearings":[86,267,356],"duration":6.984,"turn_weight":5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":13.016,"geometry_index":26662,"location":[9.201501,45.446536]},{"entry":[true,true,false],"in":2,"bearings":[86,177,266],"duration":17.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":20.031,"geometry_index":26663,"location":[9.202272,45.44657]},{"entry":[true,false,false,false],"in":2,"bearings":[86,177,266,356],"duration":1.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2,"geometry_index":26664,"location":[9.204186,45.446655]},{"entry":[true,false,true],"in":1,"bearings":[86,266,356],"duration":4.422,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":10.078,"geometry_index":26665,"location":[9.204372,45.446663]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":23.109,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":26.578,"geometry_index":26666,"location":[9.20486,45.446685]},{"entry":[true,false,false,false],"in":2,"bearings":[86,177,266,356],"duration":3.023,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.469,"geometry_index":26668,"location":[9.207402,45.446797]},{"entry":[true,false,false],"in":1,"bearings":[86,266,282],"duration":10.602,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.883,"geometry_index":26669,"location":[9.207738,45.446812]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":6.734,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.742,"geometry_index":26670,"location":[9.208689,45.446854]},{"entry":[true,false],"in":1,"bearings":[84,266],"duration":4.531,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.211,"geometry_index":26672,"location":[9.20943,45.446886]},{"bearings":[75,145,258,325],"entry":[true,false,false,false],"in":2,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26676,"location":[9.209922,45.44694]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":234,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Viale Umbria"},"distanceAlongGeometry":2959.895}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Viale Liguria.","modifier":"right","bearing_after":94,"bearing_before":29,"location":[9.173077,45.443718]},"speedLimitSign":"vienna","name":"Viale Liguria","weight_typical":523.359,"duration_typical":439.586,"duration":439.586,"distance":2959.895,"driving_side":"right","weight":523.359,"mode":"driving","geometry":"kgttuAid{nPLuHr@ib@X_MTsLrAss@b@cU^wQD}BDkCByA@o@LyGFsCDaCHmEH_En@y^fA_n@?AbBa`ANyIHiE?E@e@@_@JyEPsVAqKUkPe@uKoB_TiDoUoAeGcAgF}Jif@yNmr@gA}ECIWoAy@mDm@yCe\\c`B{BcLgD}PmAcFiByHoAqGe@_CeRu|@g@yBgKgg@uCoNw@_EmC_NoAcGu@iE_G{\\sCmViA}N{@aQe@gReCwyA{FkfEGqEQ}KI}D{BcvAw@oe@oAkv@M{HEiCKuFIyE?WAq@IsEIiFuGu_EGoEcAeo@iDsvBOsJk@o]{E{zCC_B]_TsAmz@w@mg@G{D]yMe@{GSsBSmB}AcO"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Viale Umbria.","announcement":"Exit the roundabout onto Viale Umbria.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[85,255,284],"duration":1.383,"turn_weight":5.5,"turn_duration":0.013,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":7.078,"geometry_index":26677,"location":[9.21018,45.446987]},{"entry":[true,true,false],"in":2,"bearings":[64,96,265],"duration":5.391,"turn_duration":0.097,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":6.086,"geometry_index":26679,"location":[9.210284,45.446993]},{"entry":[true,false,false,false],"in":2,"bearings":[42,132,238,313],"duration":0.695,"turn_duration":0.061,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":0.734,"geometry_index":26686,"location":[9.21056,45.4471]},{"entry":[true,false,false,false],"in":2,"bearings":[29,132,222,313],"duration":2.797,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":3.164,"geometry_index":26687,"location":[9.210588,45.447122]},{"entry":[true,false,false],"in":2,"bearings":[5,153,209],"duration":3.852,"turn_duration":0.097,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":4.32,"geometry_index":26691,"location":[9.210671,45.447227]},{"bearings":[63,181,331],"entry":[true,false,true],"in":1,"turn_duration":0.192,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":2,"geometry_index":26700,"location":[9.210686,45.447439]}],"rotary_name":"Piazzale Lodi","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":234,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Umbria"},"distanceAlongGeometry":95.128}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":3,"instruction":"Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","modifier":"straight","bearing_after":85,"bearing_before":75,"location":[9.21018,45.446987]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":26.211,"duration_typical":18.508,"duration":18.508,"distance":95.128,"driving_side":"right","weight":26.211,"mode":"driving","geometry":"usztuAgscqPAgBIgBQ}ASsAYwAo@sB]{@a@u@e@w@k@w@o@q@s@m@u@e@w@_@g@S{@Si@Kq@Ew@CoAFCHk@?o@Lg@Pg@Pi@Xg@ZeAz@q@t@k@x@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1337.606},{"ssmlAnnouncement":"In a quarter mile, Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","announcement":"In a quarter mile, Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","announcement":"Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","distanceAlongGeometry":122.222}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[14,151,310],"duration":2.586,"turn_weight":5,"turn_duration":0.122,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.836,"geometry_index":26707,"location":[9.210555,45.447602]},{"entry":[true,false,false,false],"in":2,"bearings":[30,122,194,303],"duration":27.492,"turn_duration":0.02,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":31.594,"geometry_index":26710,"location":[9.210596,45.447715]},{"entry":[true,false,false,false],"in":2,"bearings":[30,121,210,300],"duration":1.711,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.961,"geometry_index":26711,"location":[9.21152,45.448843]},{"entry":[true,true,false,true],"in":2,"bearings":[29,114,210,301],"duration":3.086,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.242,"geometry_index":26712,"location":[9.211576,45.448911]},{"entry":[true,false,false,false],"in":2,"bearings":[29,121,209,301],"duration":16.805,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":19.32,"geometry_index":26713,"location":[9.211634,45.448985]},{"entry":[true,true,false],"in":2,"bearings":[30,111,209],"duration":2.109,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.414,"geometry_index":26714,"location":[9.21251,45.450078]},{"entry":[true,true,false],"in":2,"bearings":[28,114,210],"duration":8.898,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":10.211,"geometry_index":26715,"location":[9.212598,45.450186]},{"entry":[true,false,false,false],"in":2,"bearings":[28,114,208,294],"duration":4.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.969,"geometry_index":26716,"location":[9.212823,45.450482]},{"entry":[true,true,false,true,true],"in":2,"bearings":[29,106,208,246,284],"duration":3.305,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.492,"geometry_index":26717,"location":[9.212927,45.450622]},{"entry":[true,false,false,false],"in":2,"bearings":[30,107,209,287],"duration":8.406,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.867,"geometry_index":26718,"location":[9.213008,45.450725]},{"entry":[true,false,true],"in":1,"bearings":[30,210,298],"duration":6.219,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.297,"geometry_index":26719,"location":[9.213541,45.451385]},{"entry":[true,false,true],"in":1,"bearings":[30,210,298],"duration":13.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":15.805,"geometry_index":26720,"location":[9.213984,45.451925]},{"entry":[true,false,false,false],"in":2,"bearings":[31,87,210,267],"duration":1.711,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2,"geometry_index":26721,"location":[9.214438,45.452481]},{"entry":[true,true,false,false],"in":2,"bearings":[27,110,211,265],"duration":5.172,"turn_duration":2.024,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.703,"geometry_index":26722,"location":[9.214499,45.452553]},{"entry":[true,false,false,true],"in":2,"bearings":[28,121,207,334],"duration":3.469,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.719,"geometry_index":26723,"location":[9.214579,45.452661]},{"entry":[true,false,false,false],"in":2,"bearings":[30,138,208,318],"duration":7.656,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":8.992,"geometry_index":26724,"location":[9.214658,45.452764]},{"entry":[true,false],"in":1,"bearings":[30,210],"duration":7.312,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":8.594,"geometry_index":26725,"location":[9.2151,45.453295]},{"entry":[true,false,false,false],"in":2,"bearings":[30,124,210,300],"duration":0.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.664,"geometry_index":26727,"location":[9.21551,45.453798]},{"entry":[true,true,false,true],"in":2,"bearings":[29,120,210,301],"duration":0.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.914,"geometry_index":26728,"location":[9.215545,45.45384]},{"entry":[true,false,false,false],"in":2,"bearings":[29,121,209,301],"duration":10.125,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":11.891,"geometry_index":26729,"location":[9.215593,45.4539]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,205,297],"duration":0.703,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.797,"geometry_index":26734,"location":[9.216212,45.454728]},{"entry":[true,false,false,true],"in":2,"bearings":[21,113,206,293],"duration":1.648,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.906,"geometry_index":26735,"location":[9.216249,45.454781]},{"entry":[true,false,false,false],"in":2,"bearings":[22,115,201,296],"duration":8.828,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":10.367,"geometry_index":26736,"location":[9.216289,45.454853]},{"entry":[true,false],"in":1,"bearings":[21,202],"duration":4.32,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.078,"geometry_index":26737,"location":[9.216521,45.455266]},{"entry":[true,true,false,true],"in":2,"bearings":[20,68,201,310],"duration":3.617,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.227,"geometry_index":26739,"location":[9.216632,45.455464]},{"entry":[true,false,false,false],"in":2,"bearings":[16,134,200,315],"duration":2.664,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.102,"geometry_index":26740,"location":[9.216695,45.455588]},{"entry":[true,true,false,true],"in":2,"bearings":[19,137,196,317],"duration":5.609,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.227,"geometry_index":26741,"location":[9.216733,45.455684]},{"entry":[true,false,false,false],"in":2,"bearings":[17,138,199,320],"duration":6.023,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.047,"geometry_index":26742,"location":[9.21678,45.455782]},{"entry":[true,false,false],"in":1,"bearings":[20,197,266],"duration":1.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.344,"geometry_index":26743,"location":[9.216855,45.455953]},{"entry":[true,false,false],"in":2,"bearings":[16,139,200],"duration":10.242,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":12.008,"geometry_index":26744,"location":[9.216886,45.456013]},{"entry":[true,false,false,true],"in":2,"bearings":[8,100,196,284],"duration":27.031,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":31.727,"geometry_index":26745,"location":[9.217255,45.45692]},{"entry":[true,false,false,false],"in":2,"bearings":[8,114,189,296],"duration":1.82,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.117,"geometry_index":26748,"location":[9.217507,45.458121]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.217523,45.458198],"geometry_index":26750,"admin_index":8,"weight":13.648,"is_urban":true,"traffic_signal":true,"turn_duration":2.022,"turn_weight":7,"duration":7.68,"bearings":[5,115,188,296],"out":0,"in":2,"entry":[true,true,false,false]},{"bearings":[5,92,185,272],"entry":[true,false,false,false],"in":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26753,"location":[9.217557,45.458492]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":188,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Viale Umbria"},"distanceAlongGeometry":1354.272}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Viale Umbria.","modifier":"slight right","bearing_after":14,"bearing_before":331,"location":[9.210555,45.447602]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":252.492,"duration_typical":218.617,"duration":218.617,"distance":1354.272,"driving_side":"right","weight":252.492,"mode":"driving","geometry":"cz{tuAujdqPiASoA[gAa@oeAwx@gCoBsCsBicAwu@wEoDoQaMwGoEmEaDgh@i`@w`@uZwa@k[oCyBwE_DmE}Ce`@sZ]Yo]yWsAeAwB_BaKmHmYoSw@g@cH{DkAs@iBiAoCoAyXoMaAe@iIwDwF}B_EkAcE}AuIuCwB}@uw@aVy_@{E_e@}FgC]{B[]Ci@C}N{@c@CkBKaBK"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Viale Umbria.","announcement":"Exit the roundabout onto Viale Umbria.","distanceAlongGeometry":27.01}],"intersections":[{"bearings":[4,84,185,244],"entry":[true,true,false,false],"in":2,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26755,"location":[9.217569,45.458595]}],"rotary_name":"Piazza Michele Cappelli","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":188,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Viale Umbria"},"distanceAlongGeometry":27.01}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":1,"instruction":"Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","modifier":"straight","bearing_after":4,"bearing_before":5,"location":[9.217569,45.458595]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":5.758,"duration_typical":4.055,"duration":4.055,"distance":27.01,"driving_side":"right","weight":5.758,"mode":"driving","geometry":"eiquuAaarqPsCOoIa@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":1018.868},{"ssmlAnnouncement":"In a quarter mile, Turn left onto Piazzale Dateo.","announcement":"In a quarter mile, Turn left onto Piazzale Dateo.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left onto Piazzale Dateo. Then Turn right to stay on Piazzale Dateo.","announcement":"Turn left onto Piazzale Dateo. Then Turn right to stay on Piazzale Dateo.","distanceAlongGeometry":142.13}],"intersections":[{"entry":[false,false,true,true],"in":1,"bearings":[156,184,344,358],"duration":2.336,"turn_weight":6,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":8.766,"geometry_index":26757,"location":[9.217594,45.458837]},{"entry":[false,true],"in":0,"bearings":[177,359],"duration":6.602,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":7.922,"geometry_index":26760,"location":[9.21758,45.459123]},{"entry":[true,false,false,false],"in":2,"bearings":[0,90,180,270],"duration":6.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.773,"geometry_index":26762,"location":[9.217574,45.459621]},{"entry":[true,false,false],"in":2,"bearings":[0,90,180],"duration":4.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.906,"geometry_index":26763,"location":[9.217574,45.460106]},{"entry":[true,false],"in":1,"bearings":[0,180],"duration":0.938,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.125,"geometry_index":26764,"location":[9.217575,45.460473]},{"entry":[true,false,true],"in":1,"bearings":[90,180,359],"duration":21.617,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":2,"weight":25.922,"geometry_index":26765,"location":[9.217575,45.460591]},{"entry":[false,true],"in":0,"bearings":[179,359],"duration":6.445,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":7.734,"geometry_index":26766,"location":[9.217538,45.461611]},{"entry":[true,true,false],"in":2,"bearings":[0,99,179],"duration":3.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.602,"geometry_index":26767,"location":[9.217527,45.461919]},{"entry":[false,false,false,true],"in":1,"bearings":[90,180,270,359],"duration":2.422,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":2.883,"geometry_index":26768,"location":[9.217527,45.462056]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.217525,45.462161],"geometry_index":26769,"admin_index":8,"weight":3.438,"is_urban":true,"traffic_signal":true,"turn_duration":2.008,"turn_weight":2,"duration":3.211,"bearings":[1,92,179,270],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[1,90,181,272],"duration":1.461,"turn_weight":5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.727,"geometry_index":26771,"location":[9.217526,45.462205]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.217527,45.462259],"geometry_index":26773,"admin_index":8,"weight":3.797,"is_urban":true,"traffic_signal":true,"turn_duration":2.021,"turn_weight":2,"duration":3.523,"bearings":[0,92,181,270],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[false,false,false,true],"in":1,"bearings":[90,180,270,360],"duration":6.758,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":8.102,"geometry_index":26774,"location":[9.217528,45.462348]},{"entry":[false,true],"in":0,"bearings":[180,359],"duration":21.148,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":30.383,"geometry_index":26775,"location":[9.217525,45.462755]},{"entry":[false,false,false,true],"in":1,"bearings":[89,179,269,359],"duration":0.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":1.078,"geometry_index":26776,"location":[9.217495,45.46402]},{"entry":[true,true,false,false],"in":2,"bearings":[0,89,179,269],"duration":2.82,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.977,"geometry_index":26777,"location":[9.217494,45.46407]},{"entry":[false,false,false,true],"in":1,"bearings":[89,180,269,360],"duration":17.195,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":20.625,"geometry_index":26778,"location":[9.217494,45.464134]},{"entry":[false,false,false,true],"in":1,"bearings":[90,180,270,359],"duration":0.719,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":0.836,"geometry_index":26779,"location":[9.217489,45.465463]},{"entry":[false,false,true,true],"in":1,"bearings":[90,179,270,359],"duration":2.672,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":0.797,"geometry_index":26780,"location":[9.217488,45.465515]},{"entry":[false,false,false,true],"in":1,"bearings":[89,179,270,359],"duration":11.094,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":13.305,"geometry_index":26781,"location":[9.217486,45.46558]},{"entry":[true,false,true],"in":1,"bearings":[66,179,359],"duration":26.555,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":2,"weight":31.859,"geometry_index":26782,"location":[9.217465,45.466628]},{"entry":[false,false,false,true],"in":1,"bearings":[75,179,253,359],"duration":4.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":4.859,"geometry_index":26783,"location":[9.217447,45.467687]},{"bearings":[82,179,239,358],"entry":[true,false,false,true],"in":1,"turn_weight":6,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"geometry_index":26784,"location":[9.217442,45.467847]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"left","text":"Piazzale Dateo"},"distanceAlongGeometry":1035.535},{"sub":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"right","text":"Piazzale Dateo"},"primary":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"left","text":"Piazzale Dateo"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Viale Umbria.","modifier":"straight","bearing_after":358,"bearing_before":4,"location":[9.217594,45.458837]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":213.055,"duration_typical":166.117,"duration":166.117,"distance":1035.535,"driving_side":"right","weight":213.055,"mode":"driving","geometry":"ixquuAsbrqPiC@sA@}IVkELwWAi]?}UAkF?w~@hAgRTqG?qEBaAAU?_@?kAAqDAmXDanAz@cB@_C?arAHgB@aCBo`Ah@eaAb@_IHeQV"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right to stay on Piazzale Dateo.","announcement":"Turn right to stay on Piazzale Dateo.","distanceAlongGeometry":94.444}],"intersections":[{"mapbox_streets_v8":{"class":"tertiary"},"location":[9.21743,45.468138],"geometry_index":26785,"admin_index":8,"weight":8.602,"is_urban":true,"traffic_signal":true,"turn_duration":2.72,"turn_weight":5,"duration":5.719,"bearings":[1,115,178,309],"out":3,"in":2,"entry":[true,false,false,true]},{"entry":[false,false,true,false],"in":0,"bearings":[129,179,294,359],"duration":2.664,"turn_weight":1.5,"turn_duration":0.061,"mapbox_streets_v8":{"class":"tertiary"},"is_urban":true,"admin_index":8,"out":2,"weight":4.617,"geometry_index":26786,"location":[9.217281,45.468224]},{"mapbox_streets_v8":{"class":"tertiary"},"location":[9.21713,45.468272],"geometry_index":26790,"admin_index":8,"weight":5.438,"is_urban":true,"traffic_signal":true,"turn_duration":2.122,"turn_weight":4,"duration":3.32,"bearings":[114,180,269,359],"out":2,"in":0,"entry":[false,true,true,false]},{"bearings":[89,179,269,359],"entry":[false,false,true,false],"in":0,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"tertiary"},"is_urban":true,"admin_index":8,"out":2,"geometry_index":26791,"location":[9.217016,45.468271]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"right","text":"Piazzale Dateo"},"distanceAlongGeometry":117.909}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Piazzale Dateo.","modifier":"left","bearing_after":309,"bearing_before":358,"location":[9.21743,45.468138]},"speedLimitSign":"vienna","name":"Piazzale Dateo","weight_typical":33.117,"duration_typical":22.508,"duration":22.508,"distance":117.909,"driving_side":"right","weight":33.117,"mode":"driving","geometry":"s}cvuAkxqqPkDhHcA|BUt@Ef@?pA@bFXl_A"},{"voiceInstructions":[{"ssmlAnnouncement":"In 400 feet, You will arrive at your destination.","announcement":"In 400 feet, You will arrive at your destination.","distanceAlongGeometry":119.609},{"ssmlAnnouncement":"You have arrived at your destination.","announcement":"You have arrived at your destination.","distanceAlongGeometry":41.667}],"intersections":[{"entry":[false,false,true,true],"in":0,"bearings":[89,179,267,359],"duration":4.023,"turn_weight":1.5,"turn_duration":2.105,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"weight":3.805,"geometry_index":26792,"location":[9.215985,45.468258]},{"entry":[false,false,false,true],"in":1,"bearings":[89,179,269,359],"duration":5.047,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"weight":8.047,"geometry_index":26793,"location":[9.215983,45.468329]},{"entry":[true,false,true],"in":1,"bearings":[90,179,359],"duration":1.203,"turn_weight":6,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":2,"weight":7.438,"geometry_index":26794,"location":[9.215978,45.468521]},{"entry":[false,true],"bearings":[179,359],"duration":18.961,"turn_weight":1,"in":0,"stop_sign":true,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":1,"weight":23.75,"geometry_index":26795,"location":[9.215977,45.468567]},{"entry":[true,false,false,true],"in":1,"bearings":[89,179,269,359],"duration":1.578,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"weight":3.891,"geometry_index":26797,"location":[9.215955,45.469274]},{"bearings":[89,179,269,359],"entry":[false,false,false,true],"in":1,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"geometry_index":26798,"location":[9.215954,45.469334]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"You will arrive at your destination"}],"type":"arrive","modifier":"straight","text":"You will arrive at your destination"},"distanceAlongGeometry":129.609},{"primary":{"components":[{"type":"text","text":"You have arrived at your destination"}],"type":"arrive","modifier":"straight","text":"You have arrived at your destination"},"distanceAlongGeometry":41.667}],"speedLimitUnit":"km/h","maneuver":{"type":"continue","instruction":"Turn right to stay on Piazzale Dateo.","modifier":"right","bearing_after":359,"bearing_before":269,"location":[9.215985,45.468258]},"speedLimitSign":"vienna","name":"Piazzale Dateo","weight_typical":51.578,"duration_typical":33.023,"duration":33.023,"distance":129.609,"driving_side":"right","weight":51.578,"mode":"driving","geometry":"cedvuAa~nqPmCB_KH{A@{g@f@iBBwB@oDB"},{"voiceInstructions":[],"intersections":[{"bearings":[179],"entry":[true],"in":0,"admin_index":8,"geometry_index":26799,"location":[9.215952,45.469422]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"You have arrived at your destination.","bearing_after":0,"bearing_before":359,"location":[9.215952,45.469422]},"speedLimitSign":"vienna","name":"Piazzale Dateo","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"{mfvuA_|nqP??"}],"weight":82396.188,"duration":74254.391,"duration_typical":74254.391,"weight_typical":71069.57,"annotation":{"maxspeed":[{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"}],"congestion_numeric":[null,null,null,0,0,0,null,null,null,null,null,null,12,12,12,12,3,3,3,3,3,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,6,6,6,9,9,0,0,null,9,9,9,9,null,12,12,12,1,1,1,1,1,1,1,1,1,1,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,8,8,8,8,8,9,9,27,27,27,27,27,27,27,27,27,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,8,8,null,null,null,0,0,0,0,0,0,0,0,0,1,4,4,4,6,6,41,41,41,0,null,null,null,null,null,0,0,0,null,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,9,9,3,null,null,null,null,null,17,17,0,0,0,0,9,9,9,9,null,null,null,null,null,null,null,null,null,27,27,72,70,70,77,67,69,69,46,46,46,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,null,20,20,20,20,20,20,20,20,20,25,25,25,25,25,null,0,0,0,0,0,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,25,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,null,14,14,14,0,0,0,0,0,0,0,0,null,0,0,0,0,0,6,6,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,14,14,14,14,14,14,14,0,0,0,0,14,14,14,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,14,14,14,14,14,0,null,11,17,17,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,20,20,null,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,null,null,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,6,6,6,6,null,0,0,0,0,27,27,35,35,35,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,null,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,24,20,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,24,24,24,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,30,30,30,30,30,30,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,25,25,25,25,25,null,8,null,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,6,6,6,6,6,6,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,null,46,46,46,46,46,46,46,46,46,46,46,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,12,null,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,12,12,12,12,12,12,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,43,43,43,43,null,null,null,null,null,null,null,null,null,48,null,null,null,null,null,null,null,null,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,32,32,32,32,32,32,32,32,32,32,32,32,32,null,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,16,16,16,16,16,16,16,16,16,16,16,16,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,38,38,38,38,38,38,38,38,38,41,41,41,41,41,41,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,0,null,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,null,null,null,null,null,null,27,null,null,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,12,12,12,12,12,29,29,29,null,null,null,null,null,null,null,null,null,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,null,19,19,19,19,19,19,null,12,12,12,12,12,12,null,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,20,20,20,20,20,20,20,20,20,20,20,38,38,38,38,46,46,46,0,0,0,0,0,0,0,null,null,null,null,35,35,35,25,25,25,25,25,null,11,11,11,6,6,6,6,6,6,6,6,6,null,11,11,11,11,11,11,11,null,11,11,11,11,11,11,11,11,null,11,11,11,11,11,11,11,11,11,11,11,27,27,27,27,27,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,6,6,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,0,0,33,33,33,33,33,33,33,33,14,14,14,14,14,14,0,0,0,30,30,null,25,25,25,25,25,25,22,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,30,30,30,30,30,30,11,11,11,11,11,11,11,11,11,11,11,null,22,22,22,22,22,22,11,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,30,30,30,30,30,30,35,35,35,35,35,35,37,37,37,37,37,37,37,37,37,37,37,37,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,29,29,29,29,25,25,0,0,0,4,0,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,22,22,22,22,22,27,0,0,16,16,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,30,30,30,38,38,38,38,38,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,22,32,32,32,32,32,32,32,32,32,32,null,null,25,25,20,37,37,37,37,37,37,37,30,30,30,27,27,27,27,27,27,27,27,27,27,27,27,22,43,43,32,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,20,20,27,22,24,24,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,6,6,6,6,6,6,29,29,29,29,29,29,29,29,29,29,29,29,29,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,37,37,37,37,37,37,37,37,37,0,0,0,0,0,0,0,0,0,0,null,null,1,1,1,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,29,29,29,29,29,29,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,11,11,11,11,11,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,22,22,22,11,11,11,11,11,33,33,33,33,33,35,35,35,35,35,35,38,41,41,33,33,33,33,33,33,33,33,33,33,17,17,17,17,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,37,null,46,54,62,62,62,62,62,62,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,43,43,43,43,43,43,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,33,33,null,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,40,40,40,40,40,50,50,50,50,50,50,50,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,6,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,0,0,0,0,0,37,37,37,37,37,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,20,20,20,27,25,25,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,12,null,6,6,6,null,0,0,0,0,0,0,0,6,6,6,6,6,null,null,null,null,null,0,0,null,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,37,37,37,37,37,37,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,null,0,0,0,12,12,0,0,0,0,null,12,0,0,59,59,59,59,59,59,59,59,59,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,6,6,6,null,0,0,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,51,51,35,35,35,35,null,null,null,20,20,20,null,25,25,25,14,11,27,17,17,14,22,22,14,14,14,null,38,38,38,38,38,38,38,38,38,46,46,46,46,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,29,22,22,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,41,32,32,32,32,32,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,30,30,30,30,30,30,11,24,24,24,24,24,32,32,35,35,35,35,33,33,33,27,27,27,27,25,25,25,25,25,25,32,27,27,27,30,30,30,30,30,30,30,30,30,30,17,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,40,40,40,6,43,43,43,43,43,43,43,43,32,32,32,32,32,32,6,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,22,22,22,22,22,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,0,0,17,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,17,17,17,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,11,11,33,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,6,6,6,6,11,14,6,6,0,0,0,0,0,0,0,11,11,11,11,11,6,6,27,0,0,0,0,0,0,0,0,0,22,22,6,6,6,6,6,null,20,20,0,0,0,0,0,11,11,11,11,11,11,11,11,11,30,30,30,30,30,30,30,30,30,30,38,38,38,38,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,83,83,83,83,83,83,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,83,82,82,82,82,82,82,82,82,82,88,88,88,88,88,88,88,88,88,88,90,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,0,0,0,0,0,0,0,0,0,0,0,58,58,58,58,58,58,58,58,58,58,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,19,19,19,19,19,19,19,22,22,22,22,22,22,22,22,22,22,37,30,30,30,30,30,30,30,30,30,30,30,30,30,30,24,null,27,27,27,null,19,null,0,0,0,0,0,0,0,null,12,12,0,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,null,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,43,43,43,43,43,43,43,43,43,43,43,43,43,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,null,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,27,27,27,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,37,37,37,35,33,33,33,0,22,22,22,22,22,29,29,29,29,29,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,53,53,53,53,53,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,33,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,27,27,27,27,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,20,20,20,20,20,20,0,0,0,0,0,null,0,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,null,14,14,14,14,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,35,35,35,35,35,35,35,45,45,45,45,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,null,null,null,null,null,null,null,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,53,53,53,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,0,0,0,0,0,0,0,0,54,27,20,6,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,46,46,46,46,46,46,46,46,46,46,46,46,46,51,51,51,50,50,50,50,50,50,56,56,56,56,56,43,43,43,43,43,43,43,43,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,14,14,14,14,14,14,14,14,14,14,0,0,0,40,40,40,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,27,27,33,33,12,12,12,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,35,0,0,0,12,17,17,17,17,17,17,17,17,17,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,59,59,59,59,54,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,17,17,17,17,17,17,17,17,17,17,17,17,17,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,24,24,24,null,null,22,22,22,22,22,22,22,12,12,12,12,12,12,50,50,50,50,50,50,70,53,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,29,29,29,29,29,29,29,29,29,29,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,41,41,41,41,41,32,32,32,32,32,32,32,32,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,51,56,56,56,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,27,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,51,51,38,38,41,41,33,33,33,33,33,33,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,32,30,30,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,30,30,30,30,30,30,30,30,30,30,30,30,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,8,8,8,83,83,83,83,83,83,83,83,83,83,83,83,67,67,67,67,67,null,null,19,19,19,19,19,19,19,19,74,74,74,74,74,74,74,74,74,74,74,74,75,75,80,82,82,82,82,82,74,79,79,79,79,79,66,67,67,67,67,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,77,77,77,77,77,77,79,91,91,91,91,91,91,91,null,null,null,null,83,83,83,83,83,83,83,83,83,83,83,83,70,70,70,70,51,51,51,51,51,51,51,51,51,51,null,40,40,40,40,40,41,41,41,41,41,41,45,45,45,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,16,16,16,16,33,33,33,33,null,19,19,19,19,19,19,19,19,19,19,19,19,19,19,12,12,12,8,8,8,8,8,8,8,8,null,null,null,null,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,3,0,0,0,0,14,14,14,14,14,14,14,3,25,25,25,24,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,12,12,12,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,8,8,8,8,25,25,25,25,25,25,25,25,25,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,20,20,20,20,20,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,8,8,8,8,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,null,45,0,0,0,0,0,0,16,16,16,16,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,8,8,null,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,67,67,67,67,67,67,67,67,67,22,22,22,22,22,null,null,54,54,null,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,16,22,22,20,20,20,20,12,12,12,12,12,12,12,12,27,27,27,27,27,27,27,27,27,72,72,70,74,74,74,74,75,75,75,75,75,75,75,58,58,58,58,58,58,58,50,50,16,16,16,16,null,8,8,8,8,8,8,8,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,null,null,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,8,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,69,69,38,38,38,38,38,null,null,null,null,null,14,20,20,38,24,24,24,24,24,24,24,24,24,24,24,24,46,46,46,46,46,46,46,54,54,54,54,58,62,8,8,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,54,56,56,56,56,56,56,null,32,32,32,32,32,32,6,30,30,30,30,30,30,0,0,0,0,38,38,45,45,45,45,45,45,45,50,50,50,50,50,50,50,50,46,46,22,22,22,22,22,22,22,22,22,22,null,null,35,35,35,35,35,35,35,35,35,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,41,41,33,33,33,33,33,33,33,33,33,33,null,0,0,0,32,32,32,32,32,32,32,32,32,0,0,0,null,null,32,32,32,32,32,32,32,25,25,25,25,25,0,0,0,null,35,35,35,35,30,30,30,30,30,30,33,33,33,33,33,35,32,32,32,32,32,32,46,46,46,46,46,58,58,58,58,58,58,70,70,70,70,70,70,null,null,50,64,64,64,64,64,64,64,64,41,41,41,33,33,33,33,33,33,33,11,11,11,11,33,33,33,33,20,20,20,20,35,35,35,35,35,35,35,35,35,35,38,38,38,38,38,38,38,40,40,40,40,40,40,51,51,50,50,58,58,58,58,58,58,58,58,58,null,41,41,41,41,27,27,27,35,35,35,35,33,24,35,35,12,null,41,41,41,41,41,null,null,35,35,35,null,33,33,33,33,0,0,33,33,33,35,35,35,35,35,35,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,0,0,0,0,0,6,6,6,6,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,null,null,25,25,25,25,25,25,25,25,25,25,25,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,null,null,null,null,25,25,25,25,25,25,25,25,null,null,null,null,null,22,25,25,25,16,null,19,19,19,16,16,16,16,19,19,19,22,22,null,null,null,null,null,null,0,0,null,null,6,6,6,6,6,0,0,0,0,22,22,22,22,22,20,20,20,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,27,27,30,30,30,30,30,8,8,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,null,null,null,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,33,33,33,33,33,33,33,33,33,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,29,29,29,29,29,29,29,29,29,29,29,29,32,32,38,38,38,38,38,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,6,6,6,6,6,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,8,8,16,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,12,null,null,16,16,16,0,0,0,0,0,0,0,0,0,0,16,16,8,8,8,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,12,12,12,12,12,12,33,33,33,33,33,33,33,33,12,12,12,12,12,12,12,12,12,12,12,8,8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,null,29,29,29,29,19,25,null,null,24,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,null,null,null,null,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,19,19,27,27,27,25,null,null,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,62,62,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,8,8,8,12,12,8,8,8,0,12,12,12,12,12,12,12,12,12,12,8,8,null,24,12,12,12,12,12,12,12,12,12,16,16,16,16,16,null,null,null,12,12,12,12,12,12,12,12,12,17,20,20,20,20,20,20,20,20,20,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,null,83,83,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,null,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,8,8,8,8,8,8,8,8,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,null,33,33,33,35,35,35,35,35,0,0,0,0,0,0,33,33,33,33,null,null,null,null,null,9,9,9,9,9,9,9,9,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,null,null,null,null,null,null,50,50,50,50,50,30,30,30,30,30,30,30,30,30,30,30,30,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,12,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,29,29,29,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,12,12,12,12,12,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,12,12,12,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,null,8,8,8,8,8,0,null,19,null,null,null,null,null,null,null,12,12,12,12,16,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,25,25,25,25,25,null,null,null,null,null,null,null,12,12,12,12,12,12,12,6,6,6,6,6,12,0,12,12,12,12,12,12,12,19,19,19,19,19,19,29,29,29,29,56,56,56,56,56,null,62,50,50,50,51,51,51,51,51,51,51,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,null,27,27,27,11,11,11,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,null,33,33,33,33,33,33,33,0,0,0,0,0,0,35,35,35,35,35,35,35,null,38,38,38,38,38,38,38,38,24,24,24,24,24,24,24,24,24,11,6,6,6,6,6,6,0,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,22,6,null,null,null,null,6,6,6,null,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,12,12,12,6,6,6,6,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,41,41,41,46,46,46,46,46,0,0,0,0,0,0,0,0,6,14,14,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,null,null,null,null,null,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,67,67,67,67,null,null,null,0,0,12,12,12,0,0,17,17,17,17,17,17,17,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,8,20,20,20,20,20,30,32,null,null,null,null,null,null,null,null,null,null,4,4,4,4,4,4,4,4,4,4,null,null,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,25,25,25,25,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,17,17,17,17,17,17,17,null,6,6,6,6,6,6,6,6,6,6,6,14,14,22,22,22,22,22,22,22,22,1,1,1,1,1,1,1,1,null,9,9,9,9,9,9,9,9,9,9,null,9,9,9,null,null,null,null,0,0,0,0,3,3,3,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,1,1,1,1,1,null,null,null,null,null,null,null,0,0,0,0,0,9,9,null,null,null,null,null,null,4,4,null,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,11,11,11,11,11,null,null,null,null,null,null,null,25,25,25,25,25,25,25,25,27,27,null,null,null,null,null,null,20,20,20,20,6,6,6,11,11,0,0,null,0,0,0,0,0,9,9,null,null,null,null,null,null,null],"speed":[6.7,6.7,5.5,4.7,4.7,4.7,3.7,3.7,3.7,3.7,4.3,4.1,4.5,4.5,4.5,4.5,4.5,4.5,4.4,4.4,4.3,3.8,3.8,3.9,3.9,4,3.9,3.9,3.9,5,5,5,5,5,5,5,5,5,4.9,5,5,4.5,3.9,4.4,4.1,4.1,4.1,4.1,4.1,4.1,4.1,4.1,4.5,4.5,3.4,4.1,4.1,7.3,8.6,8.3,8.3,8,8,6.4,6.4,6.2,5.7,5.6,5.5,5.5,6.4,4.4,4.5,4.4,5.4,6.3,6.3,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.3,5.6,5.6,6.6,6.4,6.4,6.4,6.3,7.1,7.1,7.2,7.2,7.4,9.1,9.1,7.7,8.1,8.3,7.5,7.5,7.5,7.7,7.1,7.5,6.1,6.1,6.1,6.1,6,6.2,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.2,5.2,5.1,5,5,5,6.3,6.6,6.4,6.9,6.9,6.6,6.7,6.8,7.5,7.5,7.5,7.1,7.8,7.5,7.5,7.5,7.5,9.2,10.5,10.2,10.2,11.9,11.9,12.6,12.3,10,12.1,11.7,5.5,5.5,5.5,5.4,10.2,11.2,11.2,5.5,11.9,11.9,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.6,10.6,8.7,8.7,6.4,6.4,11.4,12.3,11.1,11.1,11.1,11.1,8.7,8.6,5.6,5.6,5.6,5.6,6.3,6.3,6.4,6.4,4.8,4.8,4.8,4.8,7.5,8,8,8,8,8.3,8.3,10.3,10.8,10.8,10.9,11.7,7.2,7.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,18,18,18.1,18.1,20.4,20.4,20.4,21.3,20.3,20.3,20.3,20.3,20.7,20.7,18.6,18.6,18.6,18.6,18.6,19.4,19.4,19.4,19.4,19.4,19.4,19.4,21.5,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,17.8,17.8,17.8,17.8,17.9,17.2,17.4,17.4,17.4,18,18,19.2,19.2,19.2,19.2,19.2,19.2,19.2,18.6,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.8,21.5,21.5,21.2,24.2,24.2,24.2,24.2,24.2,24.2,23.6,20.6,20.6,20.6,20.6,20.6,24.7,23.4,24.4,24.4,24.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.2,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,28.1,28.1,28.1,27.8,26.4,26.4,26.4,26.4,26.4,26.4,20.6,20.6,20.6,20.5,15.3,15.3,15.2,15.2,21.1,21.1,23.2,27.5,27.5,27.5,27.5,27.5,27.5,28.1,28.1,28.1,28.1,28.1,28.7,28.9,28.9,28.9,28.9,28.8,28.9,28.9,28.9,28.3,29.2,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,27.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,28.9,28.9,28.9,28.9,28.9,28.9,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.9,29.4,29.4,29.1,29.7,29.7,29.7,29.7,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.2,29.2,28.5,28.7,30,30,30,30.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,29.5,29.5,29.4,29.3,29.5,29.5,29.5,28.9,29.5,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,29.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.3,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.4,30,30.2,29.9,30.3,30.3,30.3,29.6,30.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.3,30.1,30.4,31.3,31.3,31.5,31.5,31.3,30.7,30.7,30.1,30.1,30.5,30.5,31,30.9,30.9,31.5,31.4,31.4,31.4,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,32,32,32,32,32,32,32,32,32,32,32,32,32,32.3,32.3,31.4,31.4,31.4,31.4,31.4,31.3,31.8,31.2,32,32,32,32,32,32,32,32,31.2,31.9,31.9,31.9,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31,30.9,30.9,30.5,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,15,19.1,19.1,19.1,19.1,25.3,25.3,25.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,28.9,29.7,28,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.8,29.8,29.8,29.7,29.7,29.6,27.8,23.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,29.7,30,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,29.1,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.1,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.6,29.2,29.2,29.2,29.2,29.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.2,32.2,32.2,32.2,32.2,32.2,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,29.5,29.6,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,31.7,31.7,31.7,31.7,31.7,31,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28,29.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,30.1,27.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.5,27.5,27.5,27.1,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.1,29.1,29.1,29.1,28.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,31.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.9,29.8,30.2,30.2,29.6,29.7,29.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.4,30.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,30.3,30.3,31.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.4,29.4,29.4,29.4,31.6,31.7,31.7,31.6,31.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,27.8,27.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,31.3,29.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.3,30.3,30.3,29.1,30.5,30.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,28.7,29.2,29.2,29.2,29.2,29.2,29.2,26.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.4,27.4,27.4,27.5,27.8,28.4,27.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.6,24.6,24.6,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.5,24.5,21.7,21.7,23,23,22.9,23.1,23.1,23.4,23.4,23.6,23.4,23.4,23.6,23.6,23.6,23.6,23.6,23.6,23.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.3,29.5,29.5,29.5,28.3,29.4,29.4,29.4,29.4,27.7,28.2,28.4,28.4,28.4,29.5,28.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.6,28.6,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.3,30,30,30,29.5,29.5,29.5,29.5,29.5,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.7,29.1,27.7,27.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.1,28.1,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.4,30.6,30.5,30.5,30.5,30.5,30.5,30.5,29,29.5,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30,30,28.2,30.5,30.5,30.5,30.5,30.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,33.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,27.7,30,30,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.3,31.7,31.7,31.7,31.7,31.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,24.7,25.9,25.9,25.9,25.9,25.9,25.9,26.4,26.4,26.4,26.4,26.4,26.4,30,29.9,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26.9,27.5,27.5,27.5,27.5,27.6,27.6,27.6,27.5,27.5,27.5,25.6,24.5,24.4,24.4,24.4,25,25,25,25,25,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,28.2,28.1,28.1,28.1,28.1,28.1,28.1,30,30,30,30,30,30,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.8,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,28.9,29.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30.1,29.7,28.3,28.3,29.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,29.7,29.8,29.8,29.4,29.4,29.4,29.4,26.9,26.9,28.3,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.9,28.6,28.6,28.6,28.1,25.2,28.9,28.9,28.9,28.9,28.9,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.6,29.7,29.7,29.7,29.7,29.7,29.9,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.9,29.5,29.5,29.5,29.5,29.5,29.5,29.2,28.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.5,29.2,29.2,28.9,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,29.9,29.9,29.7,30,30,30,30,30,30,30,30,29.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,30,30,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,31.7,31.7,31.7,31.7,32.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32,30.6,30.6,30.6,31.9,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.6,31.6,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.1,29.5,29.5,29.5,29,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.3,28.6,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,22.2,22.2,22.2,22.2,22.2,21.4,23.1,23.5,24.8,24.8,24.8,25.3,26.1,26.1,26.1,26.1,26.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,27.6,27.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,28.8,28.8,29.2,29.2,29.2,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29,29.3,29,28.8,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.2,29.2,29.2,29.4,29.2,29.2,29.2,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,31,30.3,30.3,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.2,30.7,30.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31,31.4,31.4,31.4,30.9,30.9,29.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.5,31.8,31.4,30.6,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.3,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,29.8,29.7,29.7,29.8,30,30,30,30.6,30.6,30.6,30.6,30.6,30.6,29.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,30.8,31.1,31.1,31.1,31.1,31.1,30.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31,30.9,30.9,30.5,29.7,30.8,30.6,30.8,30.8,30.3,30.7,29.6,28.7,30,30,30,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,30.9,31.7,31.7,31.7,31.7,25,25,25,25,25,24.6,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.9,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.2,28.9,28.9,28.9,28.9,28.9,30.3,30.3,31.8,28.2,29.4,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30,28.6,29.1,29.1,29.1,29.1,30.7,30.5,30.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30,30,30,30,30,30,30,30,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,29.4,29.4,29.1,29.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.2,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.2,29.7,29.7,29.7,29.7,29.7,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,28,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.1,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,34.8,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.7,28.7,29.3,29.3,29.3,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.5,29.5,29.1,29.1,29.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.5,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.2,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,34.4,33.4,33.4,33.4,33.4,33.4,33.4,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.4,29.8,30,30,30,30,30,30,30,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31,29.5,28.2,28.2,28.2,29.4,29.1,29.1,29.1,29.1,29.1,29.1,29.1,30.3,30.3,30.3,30.3,30.3,29.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,30,30,30,30,30,29.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,29.5,29.6,29.6,30,30,30,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,32.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.8,29.8,30,29.7,29.7,29.6,31,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.5,30,30,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.2,27.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.2,30.2,30.2,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.5,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.7,31.7,31.7,31.7,31.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.3,29.8,29.3,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,12.8,12.8,12.8,14.8,14.8,15.1,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,18.9,18.9,18.9,18.9,18.9,18.9,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.4,30.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.6,20,20,20,20,20,20,20,20,20,26.1,26.2,26.2,26.1,26.1,26.1,26.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30.2,30.2,30.2,30.2,30.2,30.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,31.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.6,30.6,29.7,29.7,29.7,29.7,30.3,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,30.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,28.6,28.6,23.5,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.7,23.7,23.7,23.7,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,27.2,27.2,27.2,27.4,27.4,27.4,27.4,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27,27,27,27,27,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.6,29.2,29.2,29.2,29.2,29,29,28.9,28.9,28.9,28.9,28.8,28.8,28.3,28.3,28.3,28.3,27.5,27.5,27.5,27.5,27.5,27.5,12.8,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,6.7,6.7,6.7,8.4,8.4,8.4,8.9,8.9,9.1,8.9,11,11.2,11.2,12.7,12.7,13,14.7,14.7,15,15,16,14.1,12.8,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,30.6,30.6,30.6,30.6,29.5,30,30,30,30,30,30,30,30,30,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.7,30.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,29.9,29.9,29.9,29.2,32.5,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30,30,30,30,30,30,29.7,29.7,29.7,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,26.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.3,28.3,28.3,28.3,28.4,28.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,30.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.6,30.3,30.3,30.3,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.8,29.1,29.1,29.2,29.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.2,29.4,29.2,32.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30,30,30,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,28.2,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,27.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.4,30,30,30,30,30,29.7,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.4,30.3,30.6,30.6,30.6,30.6,30.6,30.6,29.3,29.4,29.4,29.2,30,30,30,30,30,30,30,30,30,29.9,30,30,30,30,30,29,28.8,28.8,28.8,28.9,28.9,28.9,28.7,28.7,28.6,28.6,29.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.3,30.3,30.3,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.6,28.6,28.6,28.6,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,12.7,12.5,12.4,12.6,12.7,4.7,4.7,4.7,4.7,6.2,12.5,12.5,6.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,8,8,8,9.7,9.7,9.7,7.8,8,8,25,25,25,25,25,25,25,25,25,25,25,25,25,22.2,22.2,22.2,22.2,22.2,22.2,7.3,7.2,7.7,7.7,23.9,23.9,23.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,24.4,24.4,24.4,24.4,24.4,24.4,24.4,17,17,17,17,16.2,16.2,27.5,27.5,26.7,26.6,26.6,26.6,26.8,26,26.9,22.7,22.7,22.9,17.5,17.5,17.5,7.5,7.8,7.6,7.5,29.4,29.4,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.3,29.8,29.8,29.8,29.8,29.8,29,28.8,28.8,29.2,29.2,29.4,29.4,29.4,28.2,28.7,28.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.5,29.5,29.5,30.3,30.3,30.3,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.3,30.5,30.5,30.5,30.5,30.1,30.1,30.1,30.1,30.1,30.2,30.2,30.2,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.5,29.5,29.5,29.5,29.5,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.7,29.7,29.7,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.7,29.4,29.2,29.2,29.2,29.2,29.2,29.2,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.7,33.3,33.3,33.3,33.3,33.3,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,27.7,27.7,27.7,27.7,27.5,28.4,28,28,28,28,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.1,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.1,28.1,26.6,26.6,26.6,26.6,26.6,26.1,26.1,26.1,26.1,26.1,26.4,26.4,26.4,26.4,26.4,26.4,26.4,28.6,28.2,27.6,27.6,28.6,28.6,28.6,28.6,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.5,28.5,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.5,28.5,27.3,27.1,26.8,26.8,26.8,26.5,26.5,26.5,25.8,25.8,25.8,25.8,25.8,25.2,25.2,25.2,25.8,25.8,25.8,25.8,25.8,25.8,22.3,22.3,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.9,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.8,27.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.1,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.9,26.9,26.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.6,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.7,24.7,24.7,24.7,25,25,25,25,25,25,25,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25.1,25.1,25.1,25.1,25.1,25,25,25,25,25,25.8,25.8,25.8,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.4,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,33.5,33.5,28.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.4,25.4,25.4,25.4,25.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.2,25.2,25.2,25.2,25.2,25.2,23.5,23.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.2,23.2,23.2,23.2,23.2,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25,25,25,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.8,22.8,22.8,22.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,19.2,19.2,19.2,19.2,19.2,19.3,19.3,19.1,19.1,11.1,5.9,5.8,5.8,18.8,18.8,18.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,23.9,23.9,23.9,23.9,23.9,23.9,23.9,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,27.5,27.5,27.5,27.5,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.3,27.3,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.3,28.3,28.3,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,28.1,28.1,28.1,28.4,28.2,28.2,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,27.5,28,28,28,28,28,28,27.7,27.7,27.7,27.7,28,28,29.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29,28,28,28,28,28,28,28.1,28.1,28.2,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.8,27.8,27.8,27.6,27.5,27.5,27.8,27.4,27.9,27.9,28,28,28,28,28,28,28,28,28,28,28,28,28,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.2,29.2,28.4,27.5,27.4,27.4,27.4,27.4,27.4,28.3,27.5,27.5,27.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.2,25.2,25.2,25.2,25.2,25.2,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,27.6,28,28,28,28,28,28,28,27,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.7,25.7,25.7,25.7,25.7,21.1,21.3,21.3,21.3,8,8,8,8,8,8,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.1,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,21.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,20.8,21.3,17.6,20.4,20.5,18.2,19.4,19.3,17.9,17.8,17,9.7,9.7,9.7,4.9,4.3,4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,30,30,30,30,30,30,30,29.6,29.6,29.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,28.3,28.3,28.3,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.9,29.5,29.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.6,30.6,30.6,30.6,30.5,30.5,30.4,30,30,30,30,30,30,30,30,30,30,30,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,13.4,13.4,13.4,13.4,13.3,13.3,13.3,13.3,25,25,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,27.5,27.5,27.8,27.8,27.8,28,28,28,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,12,11.9,12,12.1,12.1,16.1,11.6,12,11.3,21.1,21.4,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,23.7,23.7,23.7,23.9,23.9,23.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.1,28.1,28.1,28.1,28.1,28.1,28.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.3,30.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,25.2,25.2,25.2,25.6,16.4,16.4,5.6,5.3,6.7,15,19.6,21.4,31.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.6,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,30.7,30.7,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,31.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,32.8,32.6,33.3,33.3,33.3,33.3,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.2,32.3,32.3,32.3,32.3,32.3,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.2,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.3,32.8,32.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.8,33.1,33.7,33.7,33,33.6,33.6,33.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,33.3,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,48.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,36.1,37,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,30.8,31.1,31.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,33.3,33.3,33.3,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,31.7,31.7,31.7,31.7,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,25,25,25.5,25.5,25.5,25.5,25.5,26.1,26.1,26.3,27.2,28.6,28.6,28.6,28.6,27.7,28.7,28.7,28.3,30.3,30.3,30.3,28.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29,30.8,30.8,30.8,30.8,30.8,30.8,29.9,31.1,31.1,31.1,31.1,31.1,31.1,30.1,30,30,30,30,29.7,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,31.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,31.9,31.9,31.9,31.9,31.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.5,31.2,30.4,31.2,31.7,31.7,31.7,31.7,31.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.4,27.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.2,30.8,30.8,30.8,30.8,30.8,30.3,31,31,31.8,31.8,31.9,31.9,31.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.4,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.3,33.3,33.3,33.3,33,33.1,32.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,32.2,32.2,31.9,32.7,32.7,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,33.4,32.7,32.7,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,32.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33,33,36.1,36.1,36.1,36.1,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,29.2,29.1,29.1,23.9,22.5,22.5,7,8.6,20.4,20.2,25.6,28,27.6,29.1,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,32.4,32.4,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.8,32.8,32.7,33.1,33.1,33.1,33.1,33.1,32.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,33.1,33.1,33.1,33.1,33.1,33.7,33.7,33.7,33.7,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.7,32.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,32.9,33,33,33,33,33,33,33,33,33,33,33,33,33,33,34.3,33.1,34.1,33.4,32.8,32.8,32.8,32.8,32.8,33.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.9,36.1,36.1,36.1,36.1,36.1,36.1,31,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.9,35.9,33.1,33.1,33.1,33.1,34,33.7,33.7,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.4,33.8,33.8,32.5,32.5,33,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,35.4,33.2,32.3,33.1,33.1,32.3,33.2,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.8,33.5,33.1,33.2,33.8,33.5,33.5,33.5,33.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.8,33.7,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.4,31.4,31.4,30.2,30.9,30.9,30.9,30.9,30.4,30.9,30.6,32,32,32,32,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.9,33,32.7,31.7,31.7,31.7,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,30.9,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,32.5,32.5,32.5,32.5,32.3,32.5,31.6,31.6,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,33.2,31.7,31.7,31.7,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.4,32.2,32.2,32.2,32.2,32.2,32.2,31.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.5,30.1,30.1,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.8,29.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,32.4,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,28.3,27,27,27,26.8,21.7,21.7,7.5,7.5,7.7,10.3,20.8,23.9,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,26.7,26.7,26.7,26.7,26.7,26.8,25.8,25.8,25.8,25.8,25.8,25.5,26.7,26.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,21.8,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,3.1,3.1,24.6,24.5,25.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,27,26.7,25.1,25.3,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.5,25.5,25.5,24.1,24.1,24.1,24.1,24.1,24.1,24.2,24.2,24.2,24.2,24.2,24.2,24,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.3,26.4,26.4,26.3,26.6,26.1,26.3,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.4,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,26.2,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,7.5,7.5,5.4,5.2,5.4,13.5,13.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,31.9,32,32,32,32,31.9,31.9,32.5,32.5,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.7,25,25,25,25,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.1,31.9,31.9,31.9,31.9,31.9,31.9,32.7,30.5,30.5,30.5,30.5,30.7,30.4,31.7,31.7,31.7,31.7,31.7,31.7,30,30,30,30,30,30,30,30,30,30,30,30.2,29.9,29.9,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,32,32,32,32,32.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.7,30.7,30.8,30.5,30.5,30.5,30.5,30.5,32.3,32.3,32.2,32.2,32.2,31.4,31.4,31.4,31.4,31.4,31.4,31,31.6,31.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.2,32.2,32.2,32.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,29.8,29.7,28.3,29.1,28.9,29.2,29.2,29.2,29.2,29.2,29.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,32,32,32,31.3,31.8,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.5,33,33,32.2,32.2,32.2,32.2,32.2,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,31.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.2,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.5,31.5,31.5,32,32,31.9,31.9,32.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,32.6,30.3,30.3,30.3,30.3,30.3,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.7,29,29.7,29.7,29.7,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.5,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.4,32.4,32.1,32.4,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.3,32.3,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.5,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,27.8,27.7,27.8,27.7,28.1,28.4,28.4,27,27,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.6,24.6,24.6,24.6,24.6,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.7,24.7,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.4,26.4,26.4,26.4,26.4,26.4,24.9,25.3,27,27,27,26.7,26.9,30.2,29.7,30.5,31.1,31.1,31.1,30.9,30.8,30.9,30.9,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31,30.6,31.3,30.7,31.1,31.1,30.6,31.7,31.7,31.7,31.7,30.6,31.3,31.3,30.9,31.4,31.4,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.8,31.7,31.7,31.7,31.5,31.5,31.6,31.6,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.7,31.6,32.3,32.2,32.2,31.8,32.3,32.3,31.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,36,35.9,32.5,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.2,33.2,33.2,32.1,32.1,32.4,32.4,32.5,32.7,32.3,32.3,32.8,32.8,32.8,32.8,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.8,32.8,32.8,32.8,32.8,32.2,32.8,32.8,31.9,32.8,32.8,32.8,31.2,31.2,32.5,32.5,31.8,31.9,31.5,36.6,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.3,30.8,30.8,30.8,30.6,36.1,36.1,36.1,36.1,36.1,36.1,37,36,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.7,32.7,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.3,32.7,32.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,32.3,32.3,32.3,32.3,31.9,31.8,31.9,32.5,32.5,32.5,31.7,32.5,32.5,32.5,31.9,31.9,32.1,32.2,32.2,31.6,32,32,31.9,32.3,32.3,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.5,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31,31,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.6,30.6,30.6,30.6,25.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,31.1,31.1,31.1,31.4,31.2,31.4,31.4,31.4,31.4,31.4,31.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.9,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.5,30.6,30.6,30.6,30.6,30.3,30.2,30,30,30,30,29.2,29.2,29.2,19.4,19.4,19.4,19.5,19.5,19.5,19.5,19.5,19.5,19.5,30.1,30.6,30.6,27.5,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.7,30.4,30.5,30.5,30.5,30.5,30.5,30.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,34.7,32.3,31.4,31.4,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,31,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.2,31.2,31.2,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.4,30.8,30.8,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.4,30.5,30.5,28.9,28.9,28.9,28.9,28.9,29.3,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29.2,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.1,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,26.9,26.9,26.9,26.9,26.8,26.8,26.9,26.9,26.9,26.9,26.9,28.3,26,10.8,10.8,17.9,15.3,15.3,15.3,15.3,30.5,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.3,28.9,28.9,29.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30.2,30.2,30.6,30.6,30.6,30.6,30.3,28.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36.1,30,30,30,30,30,29.2,29.2,29.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,30,30,30,30,30,30.1,30.2,30.2,30,30,30,30,29.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.1,30,30,30,30,30,29.9,30,30,30,30,30.6,30.6,30.6,30.6,29.9,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.3,31,29.7,30,30,30,30,30,19.5,19.5,19.5,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,30.5,30.5,30.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,20,16.9,16.9,16.9,16.9,16.9,16.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,15.6,15.6,15.6,15.6,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.3,26.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,28.8,28.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.1,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.1,30.1,29.2,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.7,31.7,31.6,31.6,31.6,31.6,32,32,32,32,32,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.8,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,11.9,11.9,11.9,11.9,11.9,7.2,7.2,18.9,18.9,18.9,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.2,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,23,30.6,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.8,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23.1,23.1,23.1,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,17,19.1,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,22.1,22.1,21.7,21.8,21.9,23.5,23.5,23.5,25,24.4,24.1,24.7,24.7,24.7,24.7,24.7,25.6,25.6,26.9,26.1,26.1,26.7,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.7,26.7,27.5,27.5,27.5,27.5,27.6,27,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.3,30.5,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,27.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.3,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.8,26.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,28.4,28.4,28.4,28.4,28.4,30.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.4,26.4,18,18,18,18,18,4.7,4.7,4.8,29.5,28,29,29,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,31.6,31.6,31.6,31.6,31.6,31.6,31.6,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,31.3,31.3,31.3,29.3,31.1,30.9,30.9,30.9,30.9,30,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.6,30.6,30.6,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24,24,24,24,23.8,23.8,23.8,23.8,21.2,20.6,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,24.1,20,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.6,25.6,23.1,22.6,22.6,22.6,22.6,22.6,10.6,10.5,10.8,22.7,24.1,24.1,24.2,24.2,24.2,24.2,23.9,30.6,30.6,30.6,30.6,30.4,30.5,30.5,30.5,30.5,30.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,30.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.2,31.8,31.8,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,29.5,29.4,29.4,28.2,8,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,14.2,14.2,14.2,14.2,14.2,14.2,14.2,22.5,22.5,22.5,22.7,22.8,22.8,15,21,18.1,18.1,18.1,18.1,18.1,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,25,25,25,25,25,25,25,25,25,23.9,23.9,23.9,23.9,23.9,24.7,24.7,24.7,24.7,24.7,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.7,25.7,25.7,25.3,25.3,25.3,25.3,25.3,25.2,24.9,24.9,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.6,24.9,26.7,26.9,26.9,26.9,26.9,26.9,26.9,26.9,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.6,28.3,28.3,28.3,28.3,28.6,28.9,28.9,28.9,28.6,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,29.1,27.7,27.7,23.5,23.5,18.1,18.1,4.4,4.3,11.7,18.8,24.5,24.5,24,24.5,26.9,26.9,26.9,26.9,26.9,27.4,26.9,29.2,29.2,29.2,30.3,30.3,30.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,32,32,32,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,31.9,31.9,31.9,31.9,32.3,31.9,31.9,31.9,31.9,31.9,30.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.5,32.2,32.2,32.2,32.2,32.3,32.5,32.5,32.5,32.5,32.9,31.9,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.9,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.7,30.7,30.7,30.2,30.2,30.2,30.2,30.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,19.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,38.2,31.7,31.7,31.7,31.7,31.1,31.1,31.1,32.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.2,36.2,36.1,36.1,36.1,36.1,29.2,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,25,25,24.9,24.9,24.9,21.5,21.3,14.4,14.4,14.8,4.7,21.1,21.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.7,28.3,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.8,28.8,28.8,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.5,28.9,28.9,28.8,28.4,28.4,28.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,27.2,27.2,27.2,27.2,27,27,26.9,26.9,27.8,27.8,27.8,27.8,27,27.4,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,24.8,24.8,24.8,25,25,25,25,25,25,26.2,26.2,26.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.5,26.2,26.2,26.2,26.2,26.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.8,25.8,25.8,25.8,25.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.2,25.2,25.2,25.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.6,24.6,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.2,25.2,25.2,25,25,25,25,25,25,25,25,25,25,24.2,24.2,23,23,23,20.9,21,17.1,16.8,7.8,7.8,7.8,12,12,12.1,12.1,12.1,12.2,12.2,12.2,12.2,12.2,21.2,22.4,22.8,23.2,18.9,17.7,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,21.6,23.9,23.9,23.9,23.9,23.5,23.5,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,27.1,25,25,25,25,25,25,25,25,24.9,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.5,24.5,24.5,24.5,24.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.5,24.5,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24,24,21.5,21.5,21.4,21.4,20.1,21.4,21.4,21.4,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.1,22.3,23,23,24.5,24.5,24.5,24.5,24.5,24.5,37.7,25.1,25.1,25.1,25,25,25,25,25,25,25.8,25.8,25.8,25.8,26,26,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,24.8,24.8,24.6,23.7,23.7,21.6,21.6,21.6,21.6,21.5,21.5,21.5,10,10,10,10,10,9.9,30.1,30.6,30.6,30.6,30.4,30.4,21.5,23.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.9,24.9,24.9,24.9,24.9,24.9,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,24.4,24.4,24.2,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,21.5,23.6,23.6,23.6,23.6,23.6,24.3,24.3,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.1,24.1,24.1,24.1,24.1,24.1,24.1,23.9,25,25,25,25,25,25,24.4,25,25,25,25,25,25,25,25,25,25,25,24.1,24.1,24.1,24.1,24.1,24.1,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24,24,24.7,24.7,24.7,24.7,24.7,25,25,25,25,25,26.4,26.4,26.4,26.4,26.4,26.2,26.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.4,26.4,24.1,24.6,24.6,24.1,24.1,25.3,25.3,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.9,26.2,25.9,25.9,25.9,26.1,25.5,25.5,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.7,25.7,25.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,24.9,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,19.9,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.3,10.7,11.5,4.4,4.4,4.4,4.4,15.3,15.3,15.3,15.3,15.3,20.6,20.6,22.2,22.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,26.2,26.2,26.2,26.2,24.4,24.4,24.4,24.4,26.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27.3,27.3,27.3,27.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,25.5,25.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.2,25.2,25.2,25.2,25.2,25.2,23.2,23.2,22.8,22.8,22.8,22.8,22.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.2,27.2,27.2,27.2,27.2,27.9,27.9,28,28,28,28,28,28,28,28,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,27.8,27.8,27.8,27.8,27.8,27.9,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25,26.4,26.4,26.4,26.4,26.4,23.4,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.4,26.4,25.9,26.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.2,25.2,25.4,25.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,23.4,25.8,25.8,25.8,25.8,25.8,24.3,24.3,24.3,24.3,24.3,24.3,25.3,25.3,25.3,25.9,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.2,24.2,24.2,24.2,24.2,24.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.5,24.5,24.5,24.5,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.8,21.7,21.7,21.7,21.7,25,25,25,25,25,25,25.1,25.1,25.1,25.1,25.1,22.3,22.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,23.5,23.5,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.6,22.6,22.6,22.2,22.2,22.2,22.2,22.2,22.2,22.2,23.3,23.3,23.3,23.3,23.3,23.3,23.3,21.6,21.6,21.6,23.9,23.9,23.9,23.9,25,25,25,25,25,22.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,22.3,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,17.8,17.8,17.8,17.8,17.8,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,8.3,6.3,6.4,6.4,6.4,6.4,3.9,3.9,3.9,3.9,3.9,3.9,3.9,12.6,18.4,18.4,18.4,20.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,21.8,21.8,21.8,24.8,25,25,25,25,25,25,25,25,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.8,25.8,25.8,25.8,25.8,25.8,25.8,24.1,24.1,24.4,24.4,24.2,24.2,24.5,24.5,24.5,24.5,25.2,25.2,25,25,25,25,24.4,25.8,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.9,23.9,24.3,21.4,21.4,21.4,21.4,21.4,21.1,21.1,21.1,21,21,21,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,19.2,19.2,19.2,22,22,22,22,22,21.9,21.9,24.1,23.6,23.6,23.6,23.6,24.7,26,25.6,25.6,25.9,25.9,26.1,26.1,26.1,26.1,26.1,25,25,25,25,25,25,25,25,25,30.5,30.5,30.5,30.5,30.5,30.5,30.5,25.1,25.1,25.1,25.1,25.1,24.5,24.5,24.5,24.4,24.4,24.4,24.4,26.3,26.3,26.3,26.3,26.3,26.9,26.9,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,26.1,26.1,26.9,26.7,26.7,26.7,27,27,27,27,27,27,27,27,27,26.7,26.7,26.7,26.7,26.7,25.4,25.4,25.4,25.4,25.2,25.2,25.4,25.4,30.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,26.5,26.7,26.7,26.7,26.7,26.5,26.6,26.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,36.2,36.2,36.2,36.2,27.2,27.5,27.5,27.5,27.8,27.8,27.8,27.5,27.5,27.5,27.5,26.5,26.5,26.5,27,27.2,27.2,27.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,27.2,27,27,26.7,26.7,26.7,27,27,27,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,25.2,25.6,25.6,25.6,25.6,25.6,25.6,25.1,25.1,25.1,25.1,25,25,25,25,25,25,25,25,25,25,17.8,17.8,24.4,24.4,23.6,25.6,25.6,25.6,25.6,26.6,26.6,26.6,26.7,26.7,26.7,27,27,27,27,27,27.1,27.1,27.3,27.3,27.2,27.2,27.2,27.2,26.4,24.8,24.8,24.8,26.3,26.3,26.7,26.7,26.7,26.9,26.3,26.3,26.3,26.3,26.3,26.3,26.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.6,25.6,25.6,25.5,25.7,25.2,26,25.5,25.5,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.6,25.6,25.7,25.2,25.2,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.1,21.7,21.7,26.2,26.2,26.2,26.7,26.7,26.4,26.4,26.4,26.4,27.2,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,26.7,27.2,28.2,26.3,16.3,27.8,27.8,28.4,28.3,28.3,28.3,28.3,28.3,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.3,28.3,28.3,28.3,28,28,28,28,28,28,28,28,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.4,28.4,28.3,28.3,28.3,28.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.8,25.8,25.8,26.1,26.1,26.1,26.1,27.8,27.8,27.8,27.8,26.4,26.4,27.5,27.5,27.5,20.6,20.6,27,27,27,28.6,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.7,28,28,28,28,28.1,27.8,27.8,27.8,27.8,27.8,27.5,28.1,27.7,27.7,27.7,27.7,27.7,28.1,28.1,28.1,27.8,27.8,27.8,28,28,28,28,27.7,27.7,27.8,27.8,27.8,27.8,28.1,28.3,28.1,28.1,28.1,28.2,28.5,28.6,28.6,28.6,28.5,28.5,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.2,27.3,27.6,27.6,27.6,27.6,30.6,26.9,26.8,26.7,26.7,26.7,26.7,26.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27,27,26.9,26.9,26.9,27,27.3,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,27,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.7,27.7,28.1,28.1,28.1,28.1,28.1,28.4,28.4,28.4,28.4,28.4,28.7,28.6,28.6,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.5,27.5,27.5,27.5,27.8,27.8,30.5,30.5,30.5,30.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26,26.9,26.9,26.9,26.9,27.2,27.2,27.8,27.8,27.8,27.8,28.3,27.7,27.7,27.7,27.7,27.7,27.7,27.6,27.2,27.2,27.2,27.2,27.2,27.2,26.6,26.6,26.6,26.6,26.4,26.4,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,28.5,29.2,29.2,29.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,25.9,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.6,27.8,27.8,27.8,27.8,28.1,28.1,28.1,28.1,28.1,28.1,27.8,27.8,27.8,27.8,27.8,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,27.7,27.7,27.7,28.1,28.1,28.1,28.1,28.1,28.1,27.3,27.3,27.2,27.2,27.2,27.2,28.1,28.1,28.3,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.4,29.3,29.1,29.1,29.1,29.2,28.9,28.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.1,29.1,29.1,29.1,29.3,28.8,28.6,28.6,28.7,28.8,28.6,28.6,28.6,28.6,28.2,28.5,28.8,28.5,28.8,28.8,30.1,28.6,28.6,28.6,28.6,27.1,27.1,28,28,28,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.7,27.5,30.6,30.6,30.6,30.6,30.6,28.5,28.8,28.8,28.5,28.9,29.1,29.1,29.3,29.3,29.2,29.2,29.2,29.1,8.8,29.2,29.2,29.2,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.2,29.2,28.8,28.8,28.8,28.8,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,28,28,28,28,28,28,27,27,27,28,28,28,28,28,28,28.7,28.7,28.7,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.3,28.3,28.4,28.1,28.8,28.9,28.9,28.9,28.6,28,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.6,28.6,30.6,30.6,30.6,30.6,28.6,30,28,28,28.6,28.6,28.6,28.6,27.2,27.8,27.8,27.8,27.8,28,28,28,28,28,28.4,28.4,28.4,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,25.5,25.5,26.8,26.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,24.5,20.8,20.8,20.8,25.3,25.3,25.3,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,25.9,25.9,25.9,24.5,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.4,24.4,24.4,25,25,25,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.4,26.4,26.4,26.4,26.4,25.6,25.6,25.6,25.6,25.6,25.6,24.5,25,25,25,25,25,25,25,25,25,25,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,26.1,26.1,26.1,26.1,26.1,26.1,26.7,26.7,26.7,26.7,26.3,26.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,26.7,26.8,26.8,26.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.1,27.4,27.4,27.4,27.4,27.6,27.6,27.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26,26,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,26.6,26.6,26.6,26.6,26.7,26.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.3,26.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.5,26.4,26.4,26.6,25.8,25.8,25.8,25.9,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,23.6,23.6,23.6,23.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,26.3,27.2,27.2,27.2,26.8,27.7,27.7,27,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,26.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.4,27.4,27.4,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,27.6,27.6,27.6,27.6,27.6,28.5,28.8,28.7,28.3,28.3,28.3,28.3,28.8,27.5,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.7,26.7,26.7,26.7,26.7,26.7,26.9,26.9,26.2,26.2,26.2,26.2,26.2,26.2,26.6,26.6,26.6,26.6,27,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,29.2,26.5,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,26.7,27.6,27.6,27.6,27,27,27,27,27,27,27,27,27,27,27,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.1,27.4,27.4,27.4,27.4,27.4,26.5,26.5,27.8,27.8,27.8,27.8,27.1,27.1,27.1,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.1,26.3,26.3,24.2,22.5,22.7,24.2,24.2,24.2,24.2,24.2,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25.9,25.9,30.6,30.6,30.6,27.7,27.9,27.9,27.9,27.9,27.7,28.1,26.6,27.3,27.1,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,25.9,25.9,25.9,26.5,27.2,27.2,27.2,19.4,26.9,26.9,26.9,26.9,25.7,25.7,25.7,25.7,25.4,25.4,25.4,25.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27,27,27,27,27,27,27,27,28.2,27.6,28.1,27.4,27.8,27.8,27.8,27.8,28,28,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.8,25.8,25.9,25.9,25.9,25.9,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.8,24.8,24.8,24.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,26.3,26.3,26.3,26.9,26.5,26.5,26.4,26.4,26.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28,28,28,28,26.6,26.6,26.6,26.6,26.6,30.6,30.6,30.6,30.6,30.6,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,27.2,27.2,27.2,27.2,27.2,26.9,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.4,25.6,25.6,26.5,26.5,26.6,26.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,26.5,25.8,25.8,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.9,25.9,25.7,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.7,26.7,26.6,26.6,26,26,26,26.4,26.4,24.9,24.9,24.9,24.9,26.2,24.9,24.9,24.9,24.9,24.9,25.8,26.8,26.8,26.6,26.6,26.6,26.3,26.3,26.3,27.2,27.2,27.2,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.3,26.1,26.3,26.1,26.6,25.8,25.8,26.3,26.3,26.3,25.8,25.8,26,26,26.7,26.7,26.7,26.7,26.6,26.6,26.5,26.5,26.6,27,27.3,26.7,26.6,26.8,26.7,26.7,26.7,26.1,26.9,26.7,26.7,26.7,26.7,24.2,24.2,24.2,24.2,24.2,22.5,22.5,22.5,22.5,22.5,22.5,22.5,23,22.5,22.5,22.5,22.6,22.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.7,25.6,25.6,25.6,25.6,25.6,25.6,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,21.8,21.8,21.8,21.8,21.8,22.4,22.4,21.3,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,24.6,23.9,23.9,23.9,23.7,23.7,23.7,23.7,23.7,23.7,23.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.4,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26.1,24.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,22.3,22.3,22.3,22.3,22.3,22.3,20.8,20.8,20.8,20.8,16.6,16.6,16.6,16.6,16.6,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,18,18,18,18,18,21.1,21.1,21.1,21.1,21.1,21.1,21.1,20.7,21.1,21.1,21.1,21.1,22.5,22.5,22.5,22.5,22.5,22.5,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.3,22,22,22,22,22,22,22,22,22,22,22,22,22,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,22.5,22.5,22.5,22.5,22.5,25.9,25.9,25.9,25.9,25.9,24.6,24.6,24.6,24.6,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.6,23.6,23.6,23.5,23.5,28.6,23.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.4,24.4,24.4,24.4,24.4,30.6,23.4,25.8,25.8,25.8,25.8,26.4,26.4,26.4,26.4,26.4,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.4,26.4,26.4,26.4,26.4,26.4,26.2,26.2,26.2,26.2,26.2,26.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,26.3,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.9,25.9,25.9,25.9,25.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.5,26.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.5,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.3,27.3,28.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,26.7,26.7,26.1,26.1,26.1,26.7,26.7,26.7,25.5,25.5,25.5,25.8,26.1,26.4,26.4,26.9,26.9,27,27,26.1,25.9,26.4,26,26.4,26.4,26.4,25.8,25.8,26.9,24.9,25.6,25.3,25.3,25.3,25.3,25.3,25.3,25.9,26.1,26.1,26.1,26.1,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.7,27.7,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.4,26.4,26.4,26.4,26.4,25.5,25.5,25.5,25.5,25.5,25.5,25.9,27.5,27.5,27.5,27.5,27.5,27.5,27.9,28.3,28.3,28.3,28.3,28.3,28.9,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,26.9,26.9,26.9,26.9,27.7,27.7,27.7,27.7,27.7,27.5,28.1,28,28,28,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28.8,28.9,28.9,28.9,28.9,28.9,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.4,29.4,29.4,30.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.5,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30,29.9,29.9,29.9,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,31.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,31.9,31.9,31.9,31.9,31.9,31.9,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,21.5,31.4,31.4,31.4,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31.1,31.1,31.1,31.1,30.7,31.5,31.9,31.9,31.4,31.4,31.4,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.3,31.3,31.4,31.4,32,32,32,31.9,31.9,31.9,31.5,31.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.3,31.3,31.7,31.7,31.8,31.6,31.6,31.8,32,31.3,31.1,31.1,31.1,28.3,28.3,28.3,28.3,28.3,28.3,28.5,22.9,22.9,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,31.6,31.6,31.6,31.6,31.4,32,32,32,32,32,32,32,31.3,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,25,25,19.4,19.4,19.4,19.4,19.4,19.4,19.4,16.4,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,31.1,31.1,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,13.9,19.4,19.4,19.4,19.4,19.4,19.4,19.4,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.4,31.4,31,31.3,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31,31.5,31.5,31.6,31.4,31.3,31.5,32,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,30.6,30.5,30.5,30.5,30.5,25,25,25,25,25,24.9,24.9,24.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,36.1,36.1,36.1,36.1,36.1,30.3,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.2,29.2,28.1,29.2,28.1,28.1,27.7,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.2,6.2,6.3,25,25,25,27.8,27.8,27.8,27.8,23,23.1,25.5,25.6,25.5,26.4,26.4,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27,27,27,24.5,24.3,24.6,24.6,24.6,22.1,21.2,21.2,21.1,21.1,21.1,20.8,10.2,10.6,10.6,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,7.1,7.1,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,9.4,9.4,9.4,5.5,3.7,3.7,3.7,3.1,3.1,3.1,4.6,4.4,4.4,4.5,3,3.1,3.1,11.3,11.7,11.2,11.4,11.4,4.8,4.8,4.8,4.4,4.4,4.4,8.1,8.1,7.9,6.4,4.7,4.7,4.8,4.6,5.2,3.9,13.4,6.3,6.3,7.7,8.1,7.5,5.8,5.8,5.8,5.8,5.6,5.9,5.9,12.7,6,6,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6,6.6,6.4,6.1,6.3,6.3,6.3,5.7,6.1,6,6.2,6.1,6.8,6.7,7.6,6.9,6.9,6.9,7,7.1,5.4,9.8,10.3,9.7,9.9,9.7,9.7,9.7,9.7,9.7,10,3.9,7.1,6.7,6.7,4.2,4.1,4.1,4,6.2,6.2,6,6,8.5,8.3,8.5,8.7,8.6,8.4,8.7,8.6,8.6,8.7,8.7,8.6,8.6,8.6,8.6,8.6,8.6,8.5,6,6,4.7,4.7,4.7,4.7,4.7,4.7,4.7,5.2,4.9,4.9,4.9,4.9,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,5,5,5,5,5,5,5,5.3,5.3,5.3,5.3,5.1,8.7,8.3,6.6,4.2,4.1,10.1,10.1,11.2,5.3,5.5,4.3,8.9,8.9,8.8,8.8,9.6,9.8,10.3,10.3,10.3,10.3,10.3,9.6,5.3,5.6,5.5,5.5,4.1,4.2,3.2,3.3,6.2,10.3,5,5,5,4.8,4.8,5.8,5.8,5.8,5.6,5.6,6.7,6.7,13.8,13.8,13.8,8.4,8.4,8.3,8.3,14,5.3,5.3,5.1,4.9,4.1,4.1,4.2,4.2,6.6,6.7,6.7,6.2,8.8,8.6,8.2,10.9,10.5,4.4,4.4,4.5,5,5.2,5.2,5.2,5.2,7.4,7.5,4.1,4.2,4.3,4.2,4.2,4.3,4.4],"distance":[68.3,4.5,44.8,5.8,55.7,12.1,0.8,2.8,5.5,6.1,10.3,11.9,34,42.2,24.8,31.6,6.1,42.2,6.2,44.7,9.5,6.6,13.1,4.9,25.2,18.4,32.1,34,22.9,2,4,81.4,3.6,100.3,9.2,59,63.6,7.9,32.7,33.1,42.1,52.2,26.3,7.5,6,8,8.8,9.3,9.9,9.6,7.8,9.2,36.4,4.1,13.1,7.9,21.5,9.8,18.5,141.3,74.8,18,22.9,178.3,18,10.2,13.3,133.3,3,19.9,8.3,17,99.3,27,22.5,6.9,4.5,4,7.6,5.1,5,4.9,7.1,7.2,5.3,5.2,5.3,5.2,5.3,5.3,5.3,5.2,5.3,5.4,5.3,9.4,5.3,5.6,5.2,6.3,4.6,5.4,2.9,4.8,5.3,11.3,56.4,18.9,69.8,24.6,27.7,41.6,81.6,41.9,10.2,88,11.5,10.5,80.2,13.4,44.2,29.8,27.1,15.4,9.6,98.2,18,19.1,28.2,15.4,9.8,14.2,12.9,14,6.9,6,6.4,5.9,5.4,5.3,16.6,12.2,9,4.4,10.1,7.6,65,14.2,6.9,7.3,27.1,72.8,11.9,13.8,85.1,17.4,18,86.1,7.7,4.7,5.2,7.8,35.3,50.3,10.9,13.6,10.2,21.7,28.1,23.9,121,69.5,35.3,54.9,56.6,58,22.2,31.5,74.7,24.6,11.2,3.4,28.8,38.9,49.1,206.8,17.1,12.5,8.9,9.7,38.5,6.2,6.9,20.7,21.7,5.4,7.4,23.7,60.6,60.5,79.2,20.7,14.6,92.3,94.3,217.6,37.4,37.5,90.4,18.3,59.6,39.4,101.3,5.7,8,41.2,6.3,43.9,13.7,43.1,34,9.7,11.7,7.2,12.2,63.9,36.4,9.3,10.7,18.3,58.6,44.4,92,73.5,139.4,54.4,27,53.5,161.9,209.6,45.2,40.5,175.8,7.9,64.6,29.8,60.5,85.1,155.3,154.2,100.4,35.9,27.4,43.4,30.7,32.4,42,40.2,38.7,34.7,39.4,34.6,51.3,39.7,94.8,132.1,55.6,50.4,67.8,64.5,65.2,58.4,45.1,61.8,97.1,64.2,46.1,39.5,28.1,12.9,23,68.8,116.9,29.6,104,62.7,80.4,21.1,31.1,33.5,49.7,100.7,29.1,91.4,52.6,36.9,13.7,35,18.5,33.9,27.4,6.5,60.4,25.8,20.2,16.9,21,18.2,20.2,37.4,39.7,46.6,121.6,121.7,60.7,60.9,61.3,47.7,13.3,83.3,63.2,39.6,25.7,48.1,24.5,37.1,57.3,38.5,19,40,51.6,30.8,31.8,156.1,43.4,10.6,481.1,94.1,55.4,291.4,290.3,290,49,49.1,77.3,83.8,44.4,127.2,90.4,45.7,45.7,47.8,46.5,35,60.8,61.9,122.7,124.6,808.4,263,620.2,942.4,137.6,116.6,123.8,274.5,227.9,397.7,400.2,169,65.1,54,72.2,63.4,69.2,70.4,69.2,306.8,182.5,153.5,120.5,100.7,107.7,103.2,93.8,160.8,162.9,141.8,118.1,154.8,106.2,61.5,416,377.4,160.1,56.9,106.3,262.8,115,116,107.8,107.7,42.6,33.1,66.2,89.6,37.7,82.3,43.5,34.1,51.9,242.1,40.6,78.2,149.1,48.4,183.8,35.9,150.9,86.1,369.7,200.3,125.4,90.1,62.2,113.6,146.1,166.4,61.8,63.4,676.6,715.9,116.7,51.9,312.3,53.4,215.1,325.6,330.4,126.2,114.6,99.4,84.1,120.5,262.7,89.6,85.2,86.7,102,244.4,105.4,114.5,119,451.1,39.5,80.4,44.5,89,58.8,116.8,229.1,75.2,45,64.2,63.5,108.9,123.6,135.3,130.5,130.9,91,114.5,126.6,56.8,54.8,73.8,54.9,144.7,142.2,108.3,33.2,85.9,133.7,48.4,90.9,113.9,97.1,69.7,52.9,158.4,58.8,60.3,59.1,57.6,91.1,44.9,69.5,48.5,73.6,113.5,131.4,133.1,61.9,164.4,289.3,289.6,386.2,614.4,307.1,286.7,240.9,244.6,119.9,83.5,84.1,56.7,212.2,110.5,294,108.4,91.9,80.6,59.1,69.1,118.3,190,89.3,217.8,117.8,87.7,120.4,131.1,59.4,76.9,137.6,0.4,91.8,120.8,47.6,64.8,57.1,28.5,24.7,79.7,21.8,53.8,131,41.4,44.2,42.3,54.2,87,73.7,52.6,112.2,128.6,133.3,128,111.6,139.7,134.7,494.6,207.4,181.5,274.7,165.1,140.2,108.6,122.1,146.2,122.6,109.1,103.6,117.3,87.9,123,192.3,120.7,100.5,281.3,190.5,102.7,124,122,118.5,127.9,98.4,96.6,137.4,123.4,57.9,19.8,73.3,257.2,212.2,150.7,161.5,138.4,190.4,159.4,114.2,111.8,131.8,101.9,121.4,121.6,101.4,182.3,126.5,10.1,128.6,133,142.3,222.8,210.6,172.2,153.3,142.1,146.9,120.3,146,130.6,136.2,112.4,85.3,138.5,110.3,145.3,179.1,154.6,162,163.1,151.2,83.3,64.9,271.6,102.1,42.6,112.1,156.9,131.7,65.9,138.8,221.1,219.3,203.5,136.4,130.9,65.5,169.6,57,191.3,120.1,116.6,88.9,87.6,80.5,22.6,42.2,18.3,154.2,81.8,73.9,9.7,45.4,129.8,85.5,80.8,92.3,200.6,168.4,155.4,198.9,154,171.3,181.4,186,112.8,161.1,175.4,171.9,211.3,235.9,177.8,170.6,159.4,306.5,186.7,149.2,227.6,262.9,147.3,217.7,116.5,41.3,230.7,423.3,239,162.6,170.5,200.3,218.9,333.1,300.7,336.6,64.2,198.7,234.2,165.4,249.5,207.2,213.3,194.1,218.5,76,24.4,104.8,452.3,272.6,249.3,116,192.5,71.2,151.2,163,158.7,93.8,63.5,26.5,78.8,128.1,162.2,281.5,321.4,150.2,111.4,162.2,242.5,253,272.1,257,261.4,478.1,190.8,176.2,11.7,178.5,197.7,186.6,142.1,205.6,182.9,421.3,195.5,58.1,100.1,73.3,101.8,64,90.4,77.5,74.1,100.5,161.2,193.5,272.3,165.8,115.1,123.5,58,178.1,76.6,41.2,59.6,55.9,86.5,83,41.3,46.4,75.2,71.4,47,105.2,126.8,69.4,75.3,119.9,115.3,54.5,131.6,85.2,47.3,169.9,73.9,135.9,110.7,109.7,121.9,22.6,93.9,80.2,173,212.9,188.9,112.5,189.9,112.7,56,46,96.8,180.4,128.5,129.8,88.3,76.5,60.4,63.7,100.5,85.8,95.1,125.2,128.4,92.3,100.1,68.7,82.5,348.2,164.5,79.8,42.3,154.5,52.6,31.2,93.4,118.9,110.9,108.5,117.2,162,37.3,32.1,122.3,173.8,126.6,26.8,145.2,144.4,147.6,146.9,176.5,134.7,169.2,352.5,45.7,102.7,89.8,173.9,156.9,125.2,136.1,30.1,224.7,233.2,118.9,617.5,146.1,141,92.6,97.9,96,95.2,78.4,87.7,398.2,115.6,123.3,95.8,136.1,104.7,123.3,155.8,111.2,118.2,103.5,291.5,158.9,261.4,199.6,233.7,165.2,105.9,85.9,121.3,208.5,110.8,85,83.7,104.3,101.7,120,98.5,106.9,85.3,15.8,339.6,163.5,195,194.8,149.8,130.3,121.4,67.8,95.1,169.3,198.6,450.3,153.2,88.7,76.4,57.4,32.1,87,53.5,133.4,93.7,50.6,130.8,120.8,118.2,176.8,410.5,141.4,142.9,136.5,189.1,112,84.6,118.6,117.4,109.9,450.8,194.4,159.3,161,342.2,144.9,132.4,264.6,179.3,100.5,123.5,154.2,73.9,88.3,139.5,95.2,113.1,116,107.2,145.7,313.4,215.3,177.6,141,132.3,123.8,175.1,136.5,135.9,126.9,155.8,230.7,221.9,178.5,150.2,143.7,112.8,113.3,149,107.4,79.8,80.9,68.6,99.7,68.3,104.1,81.2,46.6,53.7,20.9,38.6,40.1,38.4,32.1,32.3,28.9,214.1,151.6,82.6,50.7,67.7,176.4,145.2,94.5,178.8,269.4,14.1,95.3,106.7,1491.3,109.8,119.3,133.4,106.5,146.8,130.6,551.4,94.7,98.6,136.6,297.3,1807.9,108.2,89.5,76.7,75.7,487.6,110.9,140.2,485.9,74.9,111.8,148.7,57,43.4,17.4,173.3,204.6,39.6,110.1,155.1,525.2,63.7,52.1,35.6,26.6,29.7,54.6,41.6,69.2,211.4,33.3,41.8,60.5,42.8,52.2,63.1,47.2,119.3,341.9,127,112.4,133.1,117.8,67.3,58.6,55,60.9,64.9,64.1,212.8,104.8,285,87.1,569.1,142.9,44.6,93.1,402.9,69.5,69.9,95.9,74.6,71.5,537.2,140.6,192.9,243.4,86.7,54.9,54,68.9,83.4,90.1,94.6,225.1,103.6,223.8,42.3,37.3,30.8,20.3,24,26.4,24.8,15.6,15.1,40.1,31.3,28,27.3,27.4,28.9,26,62.1,117.1,55.6,53.1,57.4,66.5,53.9,8,148.7,336,366.4,101.8,103.7,132.2,705.7,101.8,69.1,68.6,63.2,63,74.2,110.3,1026.7,131.9,154,166.6,93.5,142.6,66.4,179.3,332.7,169.4,166.1,448.3,107.7,56.6,35,18.7,26.1,26.8,17.8,24.9,14.7,18,22.6,20.3,21.7,20.3,18.2,236.2,77.6,95.5,61,64.1,26.2,19.8,20.7,19.3,21.9,15.8,23.2,27.1,17.5,19.6,24.7,19.6,21.2,17.8,24.6,18.6,27.9,32.4,27.2,33.5,24.5,32.2,47,34.6,95.8,110.7,128.8,42,81.8,48.6,48.5,88.3,24.5,28.5,30.4,24.6,30,26.2,22.1,19.7,17.2,13.4,26.3,45,36.9,32.9,34.3,43.8,64.4,43.7,81.8,297.8,16.4,26.5,42.3,34.2,32.4,43.1,38.5,45.3,30.1,34,33,23.9,29.4,59.1,71.3,30.7,45.9,29.2,26.7,29.7,27,43.5,24.9,28.7,24.3,7.4,136.5,63,32,50.7,51.8,30,34.2,24.9,29.4,29,38.6,74.6,34.5,46.2,33.1,43.7,40.2,30.9,30.4,37,31.1,29,27.6,28.1,26.7,30.7,46.8,83.4,119,134.6,130.9,244.7,149.4,138,305.6,70.8,35.5,23.9,30.8,27.4,27.2,23.7,33.7,30.6,26.6,26.8,22.7,24.9,27.2,28.1,26,24.6,23,31.2,25.7,35.8,21.6,39.5,108.7,277.9,151.6,156.2,127.7,400.5,132.4,148.6,41,134.6,460.8,177.7,108.3,128.4,247.1,118,106.5,101.8,221.1,97.3,110.5,316.5,121.2,135.4,658.5,147.8,97,81.8,73.5,76.2,67.9,33.2,55.1,354.5,23.3,18.4,14.3,12.2,13.2,18.7,15.8,20.3,16.3,10.8,11.8,11.7,10.7,19.8,21.8,19.5,13.8,34.8,21.3,22.8,24.1,20.5,21.2,22.2,17.6,22.6,16.6,14.6,17.2,48.1,40.3,80.4,126.7,143.8,84.3,67.3,56.9,102.7,23.8,26,52.8,67.7,182.9,304.2,305.3,396.7,24.9,26.6,27,26.4,26.1,28.2,19,11.2,9.7,18.6,26.4,26.9,26,15.3,19.7,23.9,30.8,1252.7,129.7,123.9,128.9,127.7,96.1,60.5,74.3,899.3,489,114.5,112.7,117.9,125.9,112.9,61.5,120.5,128.9,123.3,116.5,122.2,42.6,27.3,26.2,14.4,17,17.7,15.4,6,10.4,17.6,17.3,16.2,20.4,17.4,23.3,16.8,14.2,16,13.6,13.3,17.7,27.3,297.3,22.4,30.3,16.3,17.2,20.2,19.9,9.9,13,18.6,10.9,11.3,16.1,18,17.2,21.6,18.4,594.3,312.4,65.4,55.1,105,247.3,126.6,96.8,122.7,123.2,124.8,467.9,127.4,107.8,124.3,123,145.8,122,75.7,133.5,216.1,33.3,25.4,22.3,14.6,16.4,15.3,14.6,17.8,16.7,18.9,25.9,15,11.2,13.6,12.9,15.2,21.7,19.5,12.6,21.5,12.5,16.2,47.7,62.3,69.5,36.6,97,60,148.2,27.8,70.3,116.8,80,29.6,31.1,24,32.1,24.5,29,30,23.1,19.2,23.7,26,17.8,17.3,26.4,22.7,18.5,1.2,22.5,26.9,587.2,52.3,41.5,31.3,21.8,24.7,17.5,17.1,16.9,24.1,23.6,15.5,18.9,24.6,28.1,29,28.3,33.3,49.4,31.4,40.3,44.6,40.3,37.7,42.3,36.9,30.8,23.4,28.2,24.5,20.2,16.1,15.4,19.2,18.2,28.9,36.3,28.2,28.7,32,30.8,28,46.7,34.4,39.2,21.6,15.7,77,45,31,21.6,17.7,43.4,20.1,18.9,18.8,26.8,35.3,23.2,24.2,30,28,25.1,18.6,28.8,27.5,24.6,26,28.1,42.7,34,63.2,60.5,100.4,110.5,89.1,49.2,32.7,275.5,30.5,31.8,35.7,31.8,41.7,28.6,30.1,33.7,174.6,139.4,152.7,273,91.8,203.8,99,35.7,24.3,25.3,23.1,37.3,20.1,28.7,20.4,26.5,29.3,28.1,26.5,26.9,26.9,23.7,32.2,31,30,24.2,22.6,30.2,19.8,27.3,22.7,18.8,17.2,34.7,130.4,80,39.5,48.6,120.4,89.2,69,68,40.3,42.1,45,40.8,40.1,39.3,40.1,39.6,32,47.9,94.6,204.8,90.3,54.2,45.8,62.5,53.9,33.6,52.2,62.4,56.3,37.7,16,57.9,44.2,42.1,27.1,38.8,23,28.3,28.2,33.9,29.8,33,26,22.5,22.7,28.5,44.7,50.5,47.1,42.7,44.4,42.7,31,33.2,33,26.7,31.3,43.1,28,19.9,23.8,25.1,35.2,28.7,38.3,29.7,56,49.6,30.2,40,37.7,29.9,27.1,30,29.1,15.7,16.5,23.6,22.7,24.5,25.8,29.4,28.5,24.7,32.7,30,25.8,29,45.5,71.2,75,41.8,32.9,23.1,26.5,27,29.7,26.8,18.9,27,25.2,21.1,26.7,20.5,19,23.7,23.1,22.3,49.5,60.9,45.2,25.8,26.3,19.1,20.1,19.6,29.1,29.5,26.7,24.6,26.1,24.3,23.1,28.4,25.4,36.6,23.7,23.4,24.4,22,19.8,47.2,61.4,46.9,46,35.8,31.8,43.4,42.7,35,30.4,30.5,26,35.5,24,65.4,56.6,81.9,179.3,62.2,52.5,61.7,82.1,54,56.7,122.7,151.6,95.6,71.7,59.5,40.6,40.2,35.8,74.9,41.7,49,51,69.3,59.9,88.4,71.1,146.7,61.4,52.3,52.5,48.9,58.3,55.8,96.7,82.3,142.4,43.5,221.2,166.7,203.6,188.9,182,172.7,191.3,163.3,51.2,47.9,50.2,46.5,57.4,70.1,56.8,47.8,52.1,97.9,71.1,889.4,2.3,72,54.7,26.2,21.3,20.4,22.6,39.7,38.6,31.2,36.7,31.3,24.5,39.3,31.8,34.6,43,35.5,35.8,37.1,37.5,36.9,73.8,76,285.4,137.7,70.2,59.8,60.6,90.5,59.3,80.7,146,621.6,47.4,38.8,28.7,30.5,29.7,27.2,27.6,28.4,25.6,26.2,29.4,28.6,28.5,27.4,27.9,33,35.9,56,71.2,221.5,53.7,46.8,41.8,39.2,34.5,32.6,37,41.9,39.8,29.4,27.4,33.9,28.5,27.8,38.3,48,48.4,43.7,48.7,47.4,168.7,163.9,38.4,35.5,34.9,40.5,44.2,40.8,44.8,41.4,39.7,40.2,41.3,40.1,67.5,61.9,20.2,38.3,12.8,12.8,14,14.8,14.3,13.7,14,15.3,12.5,14.3,14.3,17,14,13.8,13.3,15.1,14.4,14.4,13.9,14.8,14.2,13.1,15.1,14,13.8,14.3,14.8,13.9,14.7,14.1,13.8,14.7,14,14.2,27.8,27.3,15.9,14.2,13.3,14.3,13.2,14.8,14.2,13.7,14.4,14.1,15,13.9,14.7,13.9,14.1,15.1,13.7,13.8,14.3,14.6,14.4,13.8,14.3,13.8,14.2,14.3,13.5,15,14.1,20.8,47,46.2,44.5,38.8,43.4,39.7,34.4,36.6,41.6,42.5,38.8,40.1,256.3,98.8,97.8,60.4,52.7,84.2,101.4,111.9,389.5,76,64.2,41.7,41.8,30.2,26.8,28.6,27.8,27.9,37.8,30.2,31.2,38.7,40.3,47.5,82.1,83.3,99.4,55.9,97.4,72.6,86.9,42.8,22.3,32.1,27,28.5,29.4,26.1,25.6,16.4,37.8,26.1,27.6,25.9,28,26.2,28.5,27.1,27.8,29.9,28.6,20.4,23.5,20.8,49.4,64.7,591.7,342.5,142.2,60.8,84.7,140.5,216.2,75.2,78.8,74,73.1,54.2,61.1,45.7,78.1,140.4,137.7,89.1,38.6,43.5,76.5,230.8,22,98.1,123.5,127.2,52.8,57.7,35.1,138.6,172.8,155.3,99.3,41.6,42,39.9,97.6,107.6,55.8,48.8,112.1,275.6,68.6,135.9,92.9,11.7,36.6,129.5,211.1,85.9,232.2,89.9,330.8,130.1,123.4,60.6,63.1,55.3,58.2,89.6,60.1,245.6,109.7,151.1,79.6,64.5,127.4,192.3,149.2,97,171.6,71.3,70.7,144.5,133.1,118.2,126.9,252.3,67,15.8,45.9,30.6,31.7,33.8,30.8,24.6,25,19.1,17.3,24.8,28.3,27.1,27.7,29.3,51.7,29,32.9,35.7,27.8,29.4,25.7,28,28.3,23.1,31.1,26.9,172.5,95.8,129.1,63.4,47.9,112.5,126.6,73.6,84.4,102,6.1,104.8,129,138.3,284.9,108.3,63.6,73.4,106.6,119.6,108.9,301.5,129.6,143.6,100.6,99.9,120.6,779.2,123.9,107.9,130.7,100.2,100.3,88.1,42,78.5,95.9,33.3,28.9,25.4,1.5,25.9,32,37.3,42.9,29,20.2,29.1,26.2,28.1,30,26.4,41.3,40.7,23.4,32.7,27.6,43.9,78.4,93.7,609.5,32.4,37.9,27,26.5,27.2,28,12.3,14.6,15.2,13.5,13.4,12.9,15.5,13.2,13.5,13.5,13.4,15.1,24.6,14.1,14.1,15.5,11.9,14,15.8,26.6,14.1,24.3,16.9,13.9,12.6,14.4,13.8,13.3,11.9,12.8,14,13.7,13,13.9,13.4,14.1,13.4,13.8,15.2,15.1,27.2,25.2,26.3,28,27.9,16,10.8,28.9,27.6,26.3,27.2,28.4,27.3,26.6,26,17,39.7,41.8,26.1,25.7,17.7,25.9,117.4,188.4,103.2,76.2,72.7,46.8,46.3,45.1,47.6,39.4,49.1,49.1,48.9,34.7,30.2,61.1,75.6,69.9,35.5,149.4,38.1,53.1,86.4,56.2,66.5,40.2,64.3,100.2,57.1,44.3,108.3,74.8,84,46.8,68,56.8,41.7,72.7,114.2,91.5,191.7,63.2,116.5,18.7,122.7,132.2,127.8,122.1,123.7,135.1,285.1,109.6,105.8,110.8,370.3,168.6,117.8,111.3,68.7,91.6,88.3,495.6,272,188.8,131.6,126.2,82.6,63.2,172.6,907.7,72.6,76.3,73.4,65.2,131.9,1820.7,149.9,153.9,127.4,43.2,85.2,924.3,102.3,102.5,105.7,108,94.9,87.5,99.3,151.4,148.8,156.5,151.3,159.5,151.4,68.9,27.9,251.4,44.3,282,187.4,145,146.8,133.5,328.2,155.5,131.1,144.6,139.4,135.4,142.2,136,0.4,228.7,143.8,139.6,127.6,122.3,133.4,345.8,358.7,166.5,76.1,47.3,55.1,21.5,48.1,95.2,50.5,93.1,46.2,53.6,65.3,32.5,113.3,141.9,161.7,162,152.3,150,152.6,113.7,83.4,184.8,88.7,93.7,9.2,226.8,160.3,277.9,148.7,183.9,106.6,233.8,109.4,86.8,90.6,67.2,124.8,119.4,267.9,151.4,161.9,353.5,382.7,209.9,689.9,82.3,158.6,93.7,78.5,160.7,468.1,152.1,132.9,169.2,172.9,131.3,122.5,131.1,128.5,376.3,45.1,130.6,91.3,88.8,104.2,90.3,117.9,27.3,96.3,211.5,208.1,52.5,173.7,594.6,338.9,423.1,499.2,611,144.6,146.3,144.3,499,205.6,92.1,114.4,66.1,23.3,221.2,255.8,203.7,187.8,148.1,81.3,73.3,87.6,54.5,117.4,126.1,611.3,68.1,82.2,47.9,10.4,72.9,62,93.2,154.4,257.4,278.6,28.9,19.3,48.7,42.4,60.5,61.2,109.7,93.1,88.2,38.2,116.8,140.2,129.6,127.2,152.1,818.8,113.6,1314.9,166.7,127,133.8,376.2,295.8,132.3,128.5,128.5,125.3,122.9,436.6,125.7,138.8,1378.1,548.9,38.9,102.9,138.8,12.4,39.5,52.8,240.8,383.8,124.3,129.8,135.3,754.5,157.9,172,130.6,416.4,115.7,125.9,138.2,123.6,133.3,474.2,125.3,119.2,149.4,181.9,184.6,134.2,162.5,68.9,108.1,213,167.7,241.8,27.6,447.5,142.9,138.6,122.6,0.3,30.8,40.7,57.9,520.4,129.5,127.2,126.9,131.2,984.6,147,173.4,473.5,61.9,55.3,49.7,46.9,37.1,29.3,70.1,49.7,67.4,63.5,146.9,210.9,14,78.4,151.9,60.7,52.8,68.4,299.3,73.9,62.8,66.9,53.6,30.7,46.5,35.8,24.6,42.7,35.9,40.8,40.9,34.9,41.4,40.6,37.4,36.9,85.8,35.8,54,139.3,88.2,33.2,27.1,30.6,36.7,36.5,31.1,38,44.7,5.7,32.4,32.7,30.2,37.7,24.4,25.5,50.5,39.3,30.9,28.6,9.1,72.4,61.5,42.3,77.8,63.5,12.6,53.6,19.9,21.8,121.3,165.5,24,32.8,43.7,55.9,124.4,112.1,67.3,39.4,10.3,6.8,179.4,25.3,26.7,28.4,24.7,26.3,1304.3,180.1,63.7,64.8,30.8,51,66.4,99.3,176.1,74.4,53.3,133,396.4,35.1,100,102.5,76.6,42,44.5,131.5,122.1,83.8,20,35.8,114.7,62.4,64.4,39.5,170.6,60.9,70.5,120.2,143.4,368.6,163.2,125.5,135.2,580.9,70.7,60.5,60.1,76.4,69.7,60.3,126.9,218,295,231.8,137.5,93.9,48.2,83.1,59.4,77.9,47.4,436.4,178.6,31.6,92.1,116.2,101.3,21,117.6,127.4,127.7,74,23.1,31.8,127.5,125.5,65.1,48.4,51.1,51.3,73.5,88,123.7,9.8,309.4,69,48.6,64.8,62.8,62,62.1,60.3,60.1,126.5,63.8,63.7,118.7,138.8,128.9,33.5,33.2,23.3,41.5,124,123.3,127.6,133.3,122.1,117.8,120.4,118.1,132.5,64.9,66.1,117.7,139.4,125.8,123.5,133.5,177.4,129.6,123.6,125.7,65.7,22.8,26.9,35.4,36.7,45.4,28.8,53.9,32.6,37.8,75.2,86.7,26.4,33.1,26.9,58.7,49.7,61.3,50.2,81,56.3,93.6,98.4,152.1,142.5,147.9,59.7,79.2,48.1,130.3,137.1,42.3,84,121.9,131.9,142.9,127.2,123.8,447,130.6,135.2,141.6,131,127.6,78.8,256.7,116.6,141.7,134.8,127.6,138.2,130,138.9,210.7,58.9,120.5,769.1,125.2,126.6,44.3,243,138.2,134,473.5,351,349.8,126.5,141.7,141.4,154.9,154.9,140.9,1566.2,160.8,165,259.4,703.5,132.8,141.6,125.9,132.1,127.5,96.1,17.1,127.4,133.8,131.4,114.1,22.4,131.8,40.9,82.9,3.3,411.5,115.8,135.9,113.4,139.6,128.2,2.4,133.3,158,172.3,141.7,155.5,27.8,82.5,98.2,81.7,49.3,207,49.6,72.3,86.1,89.7,686.5,166.3,180,593.2,20.7,186.6,164.5,158.1,810.2,47.7,82.2,231.7,190,154.8,141,147.3,91.5,94.4,94.9,90.5,101.8,92,93.8,106.2,120,360,189.1,94.7,254.7,130.3,101.7,125.7,145.3,94.6,128.4,30.1,17.1,79.2,405.3,249.2,311.9,108.1,141.6,123.7,155.9,149.2,9.7,159.5,353.1,391.3,94.8,93.7,110.2,124.1,159.8,73.2,96,88.8,73.5,68.8,71,78.5,66.8,58.3,64.8,78.8,153.7,160.7,94.8,93.3,96.9,91.9,92.4,125.5,111.6,107.6,112.1,112.2,120.1,289.9,84.3,85.5,83.7,119.4,158.4,91,93.7,255.4,93.7,93.2,94.9,94.2,91.4,122.9,94.4,95.3,89.7,96.4,96.9,83.1,56,50.4,160.4,72,49.2,53.7,59.1,87.6,98.9,77.1,60.8,71.7,83.2,127.6,84.5,84.5,81.3,94.1,91.8,94.1,36.7,57.2,98.4,262,247.3,83.8,51.8,44,69,54.3,95.2,83.8,1.8,99.8,100.3,93.6,107.5,296.8,114.2,105.4,94.7,74.3,87.9,82.5,188.1,87,43.8,41.2,68.1,29.3,22,19.8,43.7,28.2,28.5,39.5,26.5,25.3,19.8,32.6,22.7,57.9,37.4,30.4,26.2,29.3,27.8,28.5,28.8,27.2,19.4,35,30.4,29.6,34.3,31.1,31.3,27.6,27.4,26.4,28.3,28.3,42.3,48,38.2,39.7,40.6,325.8,24.4,26.2,34.6,41,43.7,35.2,30.2,32.6,37.1,35,42,25.5,115,4.7,51.1,35.5,37.3,31,29.7,16.8,27.3,23.7,18.4,26.5,129.5,130.1,117.8,123.3,327.2,103.6,95.5,128.7,128,109,89.5,112.5,534.1,95.5,89.2,140.5,70.9,24.6,20.4,24.9,15.5,21.5,23.8,40.9,29.7,24.8,28.3,2.1,33.5,31.3,22.1,32.7,18.9,11,38.8,27,58.8,82.8,62.8,60.7,89.5,38.9,28.2,27.9,20.8,25.7,32.8,31.5,45.6,20.6,37.6,18.5,25.9,45.6,52.4,261.7,49.3,72.3,156.8,54.4,97.1,71.9,20.5,91.3,72.8,80.6,80.5,71,77.8,33.5,44.8,78.5,94.2,122.5,123.9,27.5,188.5,85.1,247.2,140.2,94.1,97,90.9,105,111,369.3,76.5,97.5,140.3,71.7,149.2,80.2,104.1,79.8,84.4,14.4,75,84.5,86.4,37.8,191.7,83.8,57.2,73.7,77.9,73,84.7,83.1,83.5,96.1,95.8,88.8,96.5,84.4,87.3,42.7,57.4,76.5,104.9,32.4,80.1,73.8,65.9,84,111,81.8,70.1,46.2,76.2,79.8,79.3,177.7,104.4,125.2,78,84.8,91.5,54.7,286.8,499.2,80.7,84.6,80.7,89.2,88.9,84.6,89.6,89.6,92.7,81.1,51.1,369.9,85.1,85.4,76.3,83.5,166.3,122.9,87.7,80.9,81.1,1310.4,13.5,80.7,83.4,76.6,84.4,78.8,909.9,93.1,89.2,326.6,83.6,78.6,79.4,88.7,91.2,94.2,103.3,85,88.4,76.6,73.3,217.9,86.8,82.4,85.8,86.9,91.8,88.8,93.1,845.6,85.4,89.5,90.3,75.8,492.8,76.7,79.1,89.2,90.4,545.9,84.6,87.7,81.2,92.2,109.3,98.8,83.6,844.2,74.5,77.7,86.2,44,46.6,84.6,98.7,238.9,188.9,37.6,164.5,178.2,1226.9,87.2,79.6,89.1,80.3,494.5,75.6,77.1,76.9,77.2,209.1,215.3,91.8,112.7,91.9,86.9,99.6,106.1,109.6,135,91.6,88.9,76.9,76.9,82.8,85.9,82,471.1,85.5,78.4,88,75.5,84.3,83.2,88.3,72,778.5,181.3,73.4,466.6,103.1,93.4,84,87.4,110.8,77.8,179.2,648.7,84.6,87.9,93.2,103.5,424.8,143.4,36.5,263.4,350.2,253.8,64,30.7,31,56.4,73.1,72.6,84.2,225.6,84,86.6,80.7,82.9,136.4,231.8,87.5,77.9,79.1,64.9,472.6,89.5,63,63.1,481.5,110.8,109,95.7,87.5,519.9,95.6,77.2,87.4,72.9,211.6,77.9,93.9,90.4,53.1,37,88.1,98,162.1,75.8,85.8,60.8,49.7,84.6,67,176.3,86.6,78.2,70.8,81.1,863.7,512.9,520.6,498.8,378.8,195.1,69.5,90.5,35.9,51.4,56.2,49.9,33.1,57.5,54,42.2,57.9,12.4,114.8,73.4,73.2,58,53.9,82,336.3,476.9,202.2,90.1,30,48.4,56.8,66.8,33.7,66.3,38,97.2,85.8,73.8,114.8,66.5,98.5,54.8,41.1,17.4,61.8,90.1,87.6,141.2,99,52.4,50.7,105.6,89,108.4,83,54.7,50.2,26.8,64.5,95.7,102.6,93.1,91.2,1.9,16.7,82.4,85,129.5,104.7,7.8,110.7,60,124.8,139.9,113.5,35,83.8,50.6,37.6,55.9,68.4,57.2,84.7,71.3,73.2,5.8,67.7,69.4,78.4,85,112.3,83.7,102.9,67.5,120.3,121.9,71.2,62.9,40.3,72,94.2,75.2,51.6,102.9,18.9,256,246,238.4,190.2,174.5,170.8,179.4,111.3,109.8,104.1,106.3,148.5,95.5,99,85.6,95,218.6,184.4,270.3,197.2,257.2,139.9,67.3,69,17.8,159.5,186,373.1,280.8,87.9,77.5,60,72.5,98.7,41.8,124.1,61.4,74.2,69.8,73.1,41.8,51.6,51.4,78.8,74.1,78,108,91.5,70.8,49.5,46.4,62.1,51.9,61.8,68.4,70.2,78.4,50.9,66,79.5,143.3,163.8,206,199.2,88.3,100.7,111.1,6.6,108.4,129.4,113,139,100.7,107.3,89.7,118.8,146,158.3,402.4,149.1,163.4,295.2,337.2,50.9,501.7,329.5,177.5,91.3,64.3,71.5,144.8,127.2,129,256.8,269.9,143.9,58.7,63.8,42.8,49.6,42.6,37.7,44.6,48.2,65.1,57,29.4,41.2,201.1,263.8,61,35.1,84,62.1,48.6,37.4,67.3,61.8,68.5,60.4,64.1,67.7,59.4,66.2,60.7,63.4,51.4,56.9,56.9,64.5,279.1,298,608,9.6,364.8,358,343.1,170,177.8,101.4,43.3,51.5,56.5,59.2,65.1,71.9,36.9,38.5,65.8,71.3,244.5,185.6,256.1,5.9,248,349.5,337.5,153.7,65.9,71.2,48.1,21.9,57.9,73.2,72.4,150,340.7,420.4,121.1,65.7,64.8,46.8,41.9,253.6,227.2,179,174.4,52.1,49,34,35,46,28.4,53.1,68.7,41.5,78.2,65.4,91.6,63.3,48.2,61.2,52.8,51.3,50.3,60.6,60,48.3,42.1,50.5,41.9,103.6,176.2,185.2,36.7,56.2,112.4,50.1,48,49.2,39.3,49.7,57.8,53.5,41,39,33.6,43.2,37.6,84.6,65.6,60.6,72.2,57.3,60.9,52.9,63.4,63.9,65.1,61,50.7,53.1,80.6,55.8,57.6,114.8,22.2,86,74.8,57.2,43.8,52.4,59.1,57.7,48.9,44.6,44.7,57,74.1,66.3,104.4,47.6,42.4,63.1,55.6,58.7,55.6,76.3,77.6,66.3,40.8,44.1,67.6,68.2,73.5,47.9,51.3,73.7,208.1,163.6,84.9,35.7,40.3,45.1,48.8,59.4,62.6,50.5,82.4,131.3,198.6,437.8,138.9,94.1,89.6,58.8,51.6,63.1,79.4,83.6,140.2,130.8,125.4,49.8,54.3,53.5,54.6,44.4,41.8,47.9,86.7,98.3,62.7,58.8,59.8,56.9,40.2,37.3,39.2,46.8,60.7,65.1,65.4,61.4,73.8,73.8,94.8,84.9,59.7,57.6,55.2,41.8,56.2,61.2,41.5,45.1,40.2,40.8,35.8,37,44.3,48.8,129.9,167.9,168.1,136.3,502.9,112.4,102.2,49.2,54.2,106,54,55.4,89.5,75.4,78.4,96.3,142.9,137.2,149.7,117.2,67.3,89.7,86.4,72.3,78.5,139.6,59.4,306.6,143.5,274.5,151.5,152.5,104.3,109.2,55.5,50.5,42.3,47,52.4,48.8,66.6,62.6,51.7,73.2,104.5,64.5,55.6,52.1,56.4,72.3,50.4,55.9,80.3,67.3,186.3,162.6,55.5,70.8,66.4,59.9,44.3,51.4,53.3,59.6,62.7,89.2,66.6,57.8,70.2,57.9,66.3,157.1,299.9,340.5,343.2,101.5,66.3,52.5,58.5,61.3,35.1,45.4,70.2,85.4,289.5,825.2,329.7,25.8,477.2,558.4,557.6,542.3,383.8,81,93,66.3,74,69,80.7,42.1,44.9,85.3,109.8,120.8,83,67.3,73.3,75.4,92.5,54.7,63,61,72.4,136.2,137,146.6,547.9,10.2,577,425.2,435.7,363.7,196.3,81.4,88.1,68.3,83.5,93,59.5,16.1,74.7,81.9,74.1,55,90.8,68.6,158.7,147.8,91.7,103.9,39.9,81.5,96.5,59.6,65.7,59.5,107.5,109.5,62.2,63.9,79,81.4,67.4,68.9,225.5,179.9,139.8,124.4,87.1,92.8,109.7,101.6,94.9,112.9,135.1,101.7,89.3,124.7,88.8,291.2,155.4,72,79.2,72,88.4,158.2,107.3,122.9,116.9,152.1,60.5,128.2,205,101.3,28.7,65.6,74,80.7,90.6,92,147,84.7,104.3,122.8,93.8,89.2,83.4,129.1,122.8,120.4,105.4,124.6,92.4,77.4,97.6,124.9,76.2,64.6,71.4,68.2,68,120.6,117.4,91,98.3,222.5,82.2,86.8,120.4,75.3,78.5,137,132.2,111.4,61.5,69.1,79.9,84.9,113.4,87.8,108.7,104,117.5,232.3,243.6,214.3,352.1,377.3,171.1,194.4,92.7,101.1,195.7,146.5,153.8,210.6,55.1,139.1,146.1,111.2,0.7,115.1,106.5,78.2,74.7,78.1,46,87.7,119.2,128.1,41.6,195.1,196,249.4,282.4,258.6,234.9,118.3,124.7,49.7,53.7,101.6,72.2,107.8,121.4,86.4,418.3,72.8,200.2,370.2,513.6,394.6,27.6,108.4,119,115.6,123.8,161.8,151.5,185,308.5,320.2,626.4,620.5,314.8,307.2,91.4,83.7,47.7,76.5,86.4,4.4,78.1,72.9,87.9,84.6,57.2,77.2,34.4,48,62.4,68.7,94.8,56.6,73.8,22.6,45.6,69.8,58.3,52.5,58.4,133,57,52.6,112.6,107.9,82.4,108.5,102.7,122.2,257,162.7,252.6,425.2,418.9,425.1,90.4,277.5,370.9,201.5,20.1,518.7,426.8,394.7,26.7,614.9,215.6,221.9,104.1,128.7,237.6,1.2,102.1,98.8,260.7,117.4,111.1,95,212.1,114.1,129.9,242.1,433.7,441.2,888.9,1410.5,285.1,324.8,601.3,189.6,275.3,351.3,27.5,78.8,339.1,379.6,172.5,178,88,88.5,54.6,58.4,50.4,47.8,84.6,66.4,41.7,53.7,103.4,153.3,39.5,78.8,80.8,78,22.2,60.7,73.9,75.7,13.3,117.8,94.2,61.5,65.1,122.4,72.2,58.2,84.7,50,52.8,92.8,104.1,127,63.7,70.9,37.2,60.3,88.6,77.1,56.9,54.8,50.7,84,26.3,58.1,161.6,523.5,527.1,524.1,526.1,104.2,277.3,167.8,207.6,258.5,219.9,238.4,555.1,99.9,166.5,321.8,649.7,11.5,73.3,74,13.9,53.5,56.5,82.6,43.6,46.2,68.5,70.6,44.1,119,113,56.1,9.6,48.9,84.1,62,41.2,78,74.1,83.9,49.8,64.8,68.3,83.3,92.2,80,66,64.7,63.3,94.8,187.9,34.3,77,29.1,58,70.3,85.4,79.1,95,89.6,88.7,62.7,77.1,57.1,72.1,67.1,59.7,76.2,54.2,57.7,55.4,61.5,78.4,64.6,59.1,69.3,61,63.9,63.2,60.5,50.4,50.3,68.4,51.8,53.5,48.6,62,66.4,72,80.7,41.3,46.1,64.6,63.8,80,73.1,43.9,67.1,76.4,84.2,241.4,52.2,57.8,61.2,64.6,107.6,112.3,103.2,14.5,118.6,130.8,60.5,64.6,119.3,96.8,113.4,110.7,66.8,44,97,39.4,96,104.6,75,54.2,50.4,61.8,52.3,45.5,11.8,57,44.5,43.8,51.1,47.9,36.8,78.9,56.1,62,57.6,88.1,16.8,201.1,73.6,144.3,68.5,76.6,29.6,75.9,60,95.8,102.3,114.2,86.7,43,48.5,68.3,54.7,46.9,17.4,68.7,137.6,143.6,74,82.6,83.4,80.7,78.4,265.2,356.8,26.6,135.9,38.4,133.4,62.7,76.6,85.7,51.9,63,68.3,126.2,169,50.3,46.5,50.5,94.9,34.4,67.7,81.6,76.9,106.8,117.5,56.3,56.6,93.8,18.4,62.8,100.3,95.3,88.8,66,22.2,98.7,147.1,173,155,288.4,60.7,63.9,60.6,92.8,105.6,109,27.6,26.3,32.1,224.5,46.5,55.6,70.6,75.3,83,51.2,98.4,248.9,117.3,100.5,68.2,71.9,29.8,98.3,105.7,400.1,20.2,174.7,97.7,84.7,320.1,8,180.9,131.6,108.7,109.2,50.7,55.7,52.3,67.3,81.6,8.2,146.3,110.7,119.6,231.2,444.4,439.6,159.9,79.8,93.9,103.2,85.9,98.8,89.4,112.4,134.1,111.9,123.2,35.8,124.5,138,108.4,160,168.8,205.2,184.2,189.9,107.6,118.9,109.7,106.2,110.9,157.3,94.5,99.4,239.1,121.2,106.7,95.7,62.1,69.7,74.8,78.4,129.5,125.9,86.5,111.4,92.4,132.1,130.2,113.7,115.8,83.9,74.1,67.1,65,73.5,77.9,73.8,100.8,99.4,122.5,114.8,124.6,121.2,234.1,169.4,32.1,56.3,99.8,54.3,60.7,100.4,120.4,77.3,74.6,77.8,81,139.3,159.8,121.4,72.6,49.8,83.4,77.7,91.5,45,93.3,109.6,56.6,52.4,59.7,63.6,76.6,49.2,58.3,48.5,63.2,55.4,80.8,72,85.1,142.4,159.4,179.3,179,118,61.9,91.8,83.3,73.9,70.1,62.1,55.6,46.5,56.1,53.8,52.8,53.4,111.8,64.7,56.9,95.7,96.8,50.3,47.8,93.4,70.5,75,84.4,136.2,183.2,144.2,139.2,14.2,10.2,110.7,128.4,62.6,86,99.1,79.1,90.2,94.2,108.2,117.8,120,160.4,162.7,298,146.3,72.8,69,74.7,102.6,73.7,59.9,56.1,58.8,84.2,92.5,61.5,71.6,56,12.1,56.2,48.9,59.6,57.8,91.1,101.3,63.3,76.5,98.6,96.5,144.4,142.1,199.5,198.1,98.8,79.8,68.3,145.8,73,68.6,105.8,89.1,87.2,104.7,47.1,100.6,94.6,54.7,47.4,55.7,59.9,150,142.9,64.2,85.6,91.5,94.5,66.4,69.1,88,49.7,88.6,108.2,122.6,188.1,199.8,164.8,160.3,167.8,131.2,167,101.9,76.2,92.4,83,150.2,80.9,71.1,104.4,166.9,162.5,148.7,108.3,100.4,97.3,111.6,62,68.8,85.7,70.1,69.5,61.5,72.5,62.5,56,92.1,72.4,81.7,84.9,90.1,86.8,81.9,83.2,117.3,214.3,78.2,70.5,64.7,72.4,135.5,82.3,75.4,117.9,82.5,78.1,149,94.6,51.5,226.9,100.2,95.3,139,131.8,21.2,49.1,109.3,79.9,87.6,157.1,117.6,135.2,133.4,134.1,92.2,101.3,76.8,82,80.4,87.3,83.9,91,75.4,78.3,76.1,82.4,55,64.6,69.7,63.3,57.6,62.6,66.9,62.8,86.6,64,69.9,104.7,79.5,102.6,80.1,73.4,163.3,153.8,85.9,102.1,34.7,18.9,61.9,100.8,111.5,128,127.1,69.5,75.7,69.6,66,86,68.4,97,125.8,170.2,157.5,97.1,89.2,85.7,70.5,104.8,48.2,55.6,61,101.2,71.2,90.5,55.8,52.2,127.7,30.5,20.5,17.3,81.4,224.9,268.1,257.8,366.5,142.3,184.1,133.5,173.6,93.7,88.4,122.3,68.9,65.3,49,39.4,71.2,78.2,73.2,79.7,42,94.6,45.8,51.1,59.3,48.5,99.1,95,102.7,142.5,149.3,151.3,77,103,256.2,138.3,147.8,43.3,99.2,81,85.6,56.9,42.2,118.7,55.8,54,106.2,72.2,65.7,79.7,57.7,60.3,171.5,165.3,93.5,146.9,138.9,122.4,106.8,172.6,551.4,312,172.9,79.2,71.8,51.1,56.1,58.9,77.7,93.8,75,106.7,55.3,87.9,110.9,162.1,212.3,138.1,71.3,63.8,57.9,67.2,78.3,58.3,71.5,44.7,29.6,78,85.9,66,85.5,316.9,117.1,72,32.1,56.9,83.1,88.8,102.2,123.9,89.4,113.3,94.2,53.7,56,84.8,71.7,53.9,52.8,254.5,138.6,58.1,83.4,99.2,77.8,88.1,77.5,100.5,199.3,72.1,69.1,125.2,97.7,99.9,109.3,128.9,142.3,367.4,206.3,186.6,348.8,176.5,94.6,89.6,105.3,99.3,37.6,45,53.7,69.5,58.9,169.5,43.4,107.9,119,156.8,53.4,47.5,70.9,44.7,32.7,56.7,64.6,56.8,51.1,161.3,154.1,213.2,119.9,101.1,61.7,77.9,77.4,69.7,70.2,92.1,77.2,67.1,60,55.2,64.6,76.1,127,150.2,63.8,198.2,94.7,78.5,82,86.3,46.5,31.3,86.3,58.3,77.8,64.4,69.9,94.1,47,44.3,62.9,84.4,53.6,73.5,72.6,200.1,406.4,220.1,189.9,104.5,112.5,125.7,117.1,68.4,57.9,78.2,61.6,150,133,104.5,133.8,137.8,135.4,91.7,146.2,141.6,105.1,115.1,74.8,10.8,86.8,76.3,87.9,78.1,68.2,91.9,101.3,227.7,85.3,33.5,69.2,27.3,5.1,96.8,88.4,126.1,61.8,34.5,91.5,40.1,65.8,108.9,110.8,98.6,90.9,104.4,102.7,281.2,168.1,70.3,358.2,7.1,373.2,333.3,205,210.6,217.4,108.5,117.7,117.3,114.8,124.7,127.1,152.3,171,184.1,187.7,152.8,175.2,76.5,81.1,77,76.1,95.9,80.5,74,82.2,107.2,132.6,27.6,74.8,13,77.6,195.2,42.6,147.1,88.4,67,89.8,179.8,157.1,140.8,379.4,208,33,595.9,454.3,208.5,209.9,324.8,326.1,131.3,128.2,2.8,114.6,99.7,53.5,57.9,78.8,84,93.9,50.6,68.8,83.4,51.8,103.4,89.4,96.3,60,59.3,72.4,123.3,122.5,19.4,70.4,38.5,32.6,100.1,101.5,58.9,76.9,50.2,80.2,22.8,51.4,58.8,47.6,37.1,55.5,75.4,164.4,166.6,180.2,141.2,16.6,354.2,216.7,123.6,73.9,454.8,211.8,197.3,1018.9,501.1,252.8,102.7,388.1,97.1,91.8,95.8,66.1,91.6,59.9,116.2,167.2,120.3,123.9,46.1,169.7,130.1,70.1,52.5,65.7,59.1,63.1,38.2,52.3,44.3,51.5,51.3,39.9,45.2,46.3,49.1,29.6,48.1,47.9,32.1,69.3,156.2,67.9,23.6,159.8,29,174.9,57.9,14.9,65.2,9.7,11.5,128.5,185.8,106.7,39.3,44.7,47.3,70.6,43.3,48.3,42.1,40.5,38.7,84,0.1,90.3,34.2,52.9,46.5,43.8,18.4,18.1,62.5,27.2,32.8,29.1,35.6,62.3,48.2,52.9,212.3,68.5,104.2,67.8,77.7,65.1,74.8,46.2,115.1,90.4,75.4,127.6,106.4,219.3,189,100.1,113.1,58.2,51.9,58,71.1,2.3,135.4,57.8,49.8,41.8,52.1,40.5,40.2,46.4,35.8,59.2,57.8,73.6,76.2,110.4,60.4,59.5,94.2,107.4,45.8,201.5,173.1,165.1,172.9,166.8,0.3,33.2,303,169.1,173.1,109.2,93.9,85.3,83.5,173.8,164.2,171.5,43.3,17.8,11.7,85.3,154.5,500,283.4,805.3,466.9,275.4,4.3,71.7,28.5,309.7,314.3,171.7,327.8,95.5,66.1,63.8,104.1,246,260.2,489.9,13.2,671.4,835.3,280.6,149.3,150.3,298.9,217,374.6,15.1,81.9,187.5,52.7,112.3,104.7,274.1,334.6,9.4,10.5,337,156.4,285.5,145.6,137.9,125.5,176.1,249.3,59.4,79.8,67.1,71.4,75.8,63.3,59.3,65.6,68.9,134.8,89,40.3,53,55.6,42.4,71,52.7,83.4,158.9,123.5,33.6,66.4,59,49.7,39.7,37.4,43.8,45.4,54.7,43.6,94.2,44.3,16.9,26.4,34.2,33.2,52.7,47.3,30.4,33.1,48.8,55.8,28.2,17.3,47.6,60.2,111.2,31.7,38.8,46.2,343.1,135.5,16.8,120.6,120,160.8,296.5,249.9,211.5,212.3,18.4,30.9,91.3,95.1,91.3,86.4,141.9,56.3,39.3,310.2,191.3,69.2,120,54.3,43.9,46.9,72.2,60.6,63.5,48.3,47.3,58.1,66.3,38.4,35.1,124.2,117.3,78.6,43.2,49.3,49.5,51.5,57.5,44.6,16.1,17.9,11.9,44,59.1,31.9,34.2,39.4,43.3,37.2,113.8,129.4,82.7,131,65.5,121,118.6,30.4,39.2,53.8,35.8,45.5,42.4,35.1,58.3,29.5,15.6,55.3,70.3,219.4,117.6,68.3,48.7,116.7,77.7,74,81.4,33,47.5,1.5,86.9,94.6,9,51.4,31.1,51.3,52.6,52.9,87.6,26,74.5,53.2,49.4,70.3,84,38.9,65.8,56,50.7,61.2,60.3,31.9,35.6,35.9,51.8,51,87.2,36.6,25.2,46.3,27.3,30.3,27.4,25.5,17.3,47.1,45.9,32.8,37.9,54.8,39.1,153.8,70.5,155.9,64.1,45.3,24.8,108.7,72,71.8,52.5,56.5,78.3,82.6,56.8,70.3,83.6,114.1,60.8,44.2,33.6,28.5,35.4,24.2,46.7,47.3,42.8,38.6,50.2,50.7,44.8,45,40.4,41.1,51.9,53.9,52.2,53.4,42.7,36.3,48.4,42.9,49,52.6,46.8,45.2,42.5,43.6,52.5,56.2,53.3,53.7,63.4,67.7,57.7,63.9,40.1,37.2,78.4,70.1,4,72.5,60.2,57.7,77.2,50.6,47.9,52.3,50.2,65.5,62.1,142.8,75.2,80.7,88.7,133.4,168.9,76.8,77.3,57.9,53.8,52.5,31.1,18.5,69.6,70.4,68.2,50.6,115.3,117.8,64.8,33.3,56.1,37,48.8,79.9,73.7,65.4,18.5,71.2,101.9,49.9,94.4,83.7,92.6,79.3,98.9,101.7,67.1,70.1,58.6,54.7,59.6,68.3,35.9,66.4,54.7,84.5,49.3,48.7,47.6,44.2,50.4,46.3,54.1,34.6,32,39.9,40.3,26.6,36.2,51.5,53.5,24.3,25.9,31.3,50.9,54.2,35.2,34.7,59.9,104.2,107.7,114.5,71.1,20.8,126.1,125.7,151.9,94.3,34.2,80.9,82.8,66.5,118.4,152.6,155.4,148.9,128.8,61.2,63.7,104.9,74.5,52.7,82.8,40.3,99.8,70.5,52,58,58.7,51.5,47.8,71.7,62.4,62.8,120,56.9,42.1,26.8,33.4,57.5,65.3,41.4,46.3,42.1,52.5,72.4,111.2,50.2,55,169.8,58,32.4,34.3,65.7,78.4,138.8,152.6,108.2,93.1,141.3,91.7,83.8,69.2,62.1,43.6,65.5,65.3,66.6,62,104.9,125.8,82.2,61.6,79.4,111.4,102.6,88.4,85.1,94.8,99.9,137.5,114.3,168.4,155.4,156.4,107.6,106,77,69.7,115.7,68.8,50.2,55.3,45.5,48.1,37,36.1,50,41.5,43.8,82.5,35.8,42.2,69.5,91.6,82.4,81.6,122.3,89.6,191.3,187.4,215.5,86.9,10.8,68.9,138.6,99.7,15.1,115,129.5,123,100.4,104.3,117.7,139.8,66.6,83.4,101.3,96.3,107.6,97.5,94,111,116.8,138.6,101.2,153.2,48.3,23.2,27.4,27.6,56.3,137.6,133.3,151.1,167.8,150.7,128.4,152.5,107,106.8,97.9,100.8,179.8,152.9,146.5,126.3,110.3,67.4,76.3,5.2,17.3,69.4,64.8,76.4,86.6,81.5,97,83.5,40.6,33.1,57.1,107.4,70.2,85.2,41,48,49.7,53.3,71.2,87.2,87.3,76,97.5,63.7,30.6,44.1,43.3,27.8,35.6,63.8,52.6,161.4,81.9,52.7,83.9,67.5,66.6,52.7,66.2,67.6,66.5,77.7,108.8,68.1,68.1,99.6,94.5,104.1,39.1,134.5,119.7,120.1,47.2,1,68.6,82.4,99.1,69.7,91.6,99,57.9,51.2,78.3,75.8,188.8,149.5,160.9,165.1,169.9,53,56.8,247.6,245.9,13.2,4.7,5.1,16.7,18.4,27.5,31.9,43.1,56.3,51.5,37.6,30.5,34.1,35.2,31.8,28.6,34.8,22.8,33.7,34,31.3,25.2,16.3,26.6,20.6,33.8,31.4,32.9,27,24.1,20.6,28.6,36.3,33.5,33.4,49.4,34.2,45.3,23.4,34.3,34.5,50.4,52.3,67,47.6,49.8,36.4,101.1,100.7,84.5,74.9,26.6,20.4,38.1,85.3,67.5,66.8,51.5,50.4,50.8,52.3,33.2,53.1,14,68.3,49.7,51,34.8,33.8,31.3,34,25.7,26.9,33.9,30.9,20.1,49.6,46,38.1,40.5,30.2,31,34.6,32.6,35.8,33.3,34.1,34,33.8,33.2,35.4,33.1,32.9,51.2,49.1,21.9,36.3,27.6,34.8,15.9,34.6,66.8,85.3,67.6,68.2,95.5,94.7,80.1,82.8,57.6,15.3,45.5,52.2,34.4,19.4,26.9,37.5,50.1,35.7,17.3,31.3,26.7,25.6,25.8,30.6,26.6,36.3,31.9,34.4,19.2,94.4,27,28.6,20.9,28.8,33.7,34.7,32.4,34.2,34.6,34.5,49.3,67.3,50.8,33.1,35.6,33.9,35.8,38.1,49,113.6,94,100.1,67.1,43.1,39.4,34.4,28.7,30.2,20.5,44.1,55,34.7,50.1,49.2,51.9,0.6,50.8,56.2,13.5,64.6,51.2,69.3,50.3,66.4,83.4,51.4,85.3,84.4,87,35.2,49,83.2,53.6,59.4,22.8,47.5,68.3,56.7,59.3,62.6,75.5,83.3,107.9,41,56.3,42.9,42.7,50.6,54.3,40.3,28.5,29.4,33.1,34,48.3,35.4,35.1,34.2,39.1,43.5,29.2,40.3,33.3,34.5,33.6,32.7,32.6,34.2,50.1,51.5,64.1,34.4,36.6,43.9,36.1,38.3,38.1,42.2,31,44.4,44.1,46.9,41,35.3,35.5,37,37.3,33.2,38.5,39.8,50.4,70.5,36,44.6,40.9,33.6,31.3,40.9,43.9,41,29.9,14.4,53.6,40.2,55.7,70.6,29.2,34.8,31.5,29.5,44.4,46.7,27,25.9,44.8,46.4,63.5,73,72.5,24,24.5,35.1,27.9,56.9,72.3,61.8,72.8,90.4,72.5,60.1,50.9,49.3,45.1,37.9,50,64.4,51,66.9,85.9,134.3,107.2,126.9,77,84.7,90.1,57.7,55.9,47,88.1,90.9,62.3,85.2,93.2,51,148.1,65.6,40.6,45.9,71.3,61.7,56.3,35.4,44.9,36.8,52.3,52.3,58.7,52.2,52.3,72.9,55.3,47.3,99.1,96.4,98.6,71.6,75.7,84.9,22.2,107.3,43.9,41.7,51.3,45,78.7,40.4,46.7,52.4,35.3,51.3,39.6,50.9,59.9,51.6,46.6,37,43.9,23.4,44,47.2,43.2,40.9,33.8,34.9,69.4,51.9,49.8,52.2,51.4,50.9,68.9,68.3,68.2,51.3,52.9,47.2,57.1,69.3,69.3,108.1,76.7,50.2,24.2,25.2,62,31.7,45.9,40.2,50.4,90.5,55.2,59.1,81.3,61.4,77,68.5,69.1,50.5,33.6,25.7,16.5,68.6,80.8,66.2,50,53.7,51.9,32.6,33.5,30.7,39.8,32.9,50.8,35.5,36.7,43.9,22,33.1,34.8,40.4,34.1,30.4,39.7,35.2,42.3,55.5,49.2,64.7,67.9,86.6,66.1,70.5,49.4,53.3,51.3,55.4,52.3,47.3,72.1,63,36,90.5,64,51.3,113.2,216,84.6,93.2,86.7,68.3,104,139.8,58.7,87.9,90.2,99.9,63.9,4.6,69.6,67.4,86.6,66.8,51.7,105,145.7,41,74.2,85,83.9,69.8,66.2,84.6,38.7,62,77.6,57.8,54.8,79.5,81.1,56,66.9,80.3,56.6,65.3,69.5,115.2,70.9,66.4,114.4,69.3,72.9,100,72.8,102,44.1,61,29,99.4,69.7,93.6,65.2,89.9,103.7,137.6,145.8,153.5,74.8,90,58.7,78.1,91.2,106.8,94.2,62.1,47.8,57.7,73.2,46,76.3,57.1,53.9,86.7,61.5,56.9,52.9,56.6,67.2,68,38,40.6,35.4,78.5,57.8,105,67.9,89.1,76.9,58,80.4,77.8,79.6,63.8,42.6,46.2,35.5,39.7,20.4,16.4,29.6,27,34.6,6.4,34.7,54,50.8,37.3,59.5,53.7,34.1,32.1,34.9,29.6,32.7,39.9,39.5,26.7,39.5,32.3,43.7,270.3,212.7,27.4,43.9,18.4,93.3,73.5,128.5,53,43.6,19.7,81.5,61.8,59,61.2,59.1,63.2,39.6,23.9,38.5,54.8,7.5,141,178.5,113.5,103.1,70.1,44.8,2,106,143.8,104.1,111.8,115,80,103.7,143,102.4,27.4,144,13.9,41.2,41.9,40,40.7,42.7,51.3,62.2,83.3,76.4,96.4,76.4,221.1,96.6,109.8,80.8,75.1,84.4,91.2,37.6,58.7,32.3,44.1,41.4,32.3,30.3,35.1,34.8,39.8,43.9,60.2,42.2,38.6,40.9,24.9,14.5,24.3,44.8,98.9,65.1,58.2,40.8,33.8,29.1,22.2,38.9,61.8,62.3,61.7,79.4,69.4,56.7,73.1,74.3,46.6,28.3,41,35,36.7,36.3,34.8,34.4,30,49.7,38,33.5,37.6,39.2,82.2,64.1,56.3,96.1,92,81,67,80,56.3,37,38.1,24.5,23.8,26.8,36.4,30.6,25.6,34.7,56.2,51.1,70.8,89.1,74.8,68.1,78.3,64.9,35,39.4,36.7,37.7,35.7,36.2,53.9,73.7,58,62.9,55.8,54.3,26.3,24.2,34.4,95.8,55.5,163.7,66.2,73.6,63.7,45.3,27.9,59.8,58.4,28.2,39,1.3,46.2,78.2,43.7,43.2,28.7,43.1,70.3,60.6,75.9,72.7,40.8,53.2,34.7,37.9,27.1,27.6,37.6,38.2,53.3,55.4,41.5,50.5,41,51.8,65.6,65.5,71.3,29.1,39,32,29.3,50.7,56.4,39.2,77.3,71.4,81.3,116.4,137.1,146.5,66.3,38.4,38.8,39.8,24.3,27,36.6,31.8,28.2,33.7,37.7,37.8,38.8,34.1,24.2,32.9,38.1,50,42.9,39.1,40.2,41.6,45.4,37.4,34.4,30.7,28.1,18.7,39.7,71.5,37.3,38.2,36.2,18.7,29.8,24.8,30.4,31.5,22.8,29.6,45.6,67,162.8,190.4,100,148.1,95.3,94.4,89.1,93.7,86.1,212,165.8,75.3,93.4,102.2,102.7,92.1,89.7,75.1,36.3,32.5,26.8,33.8,35.7,38.1,36.3,37.8,37.3,35.4,37.6,38.3,35.6,38.4,36.1,36.5,37.6,54.8,55.6,37.7,36.8,36,38.3,37.2,56.6,36.5,35.1,30,44.3,37.6,38.5,37.4,31.7,37.5,40.1,53.8,46.4,48.6,37.6,35.6,38.4,26.5,30,28.1,25.7,37.8,30.1,29.7,25.1,24.6,25.2,52.2,52.4,91.7,54.8,41.1,35.6,34.5,57.5,53.4,44.1,29.3,19.4,20,35.7,38.1,36.1,35.2,39.5,37,35.6,37.4,37.5,36.6,93.3,101.7,113.7,399.7,99,111.8,108.4,104.3,82,90.1,60.8,53.9,72,147.3,110.6,95.1,108,124.2,590.2,245.3,71.6,130.2,94.4,109.1,148.1,111.8,128.9,52.7,38.8,22.1,34.3,13.1,41,55.9,34.9,25.1,34,19,37.6,53.3,35.3,38.3,58.9,73.4,74.3,91.7,72,37.1,38.1,36.3,21,18.1,32.6,32.5,16.9,17.9,22.9,31.3,36.3,22.3,32.9,41,48.9,43.6,21.6,16.6,30.9,42.7,54.6,38,52.6,55.9,36.7,108.3,77,86.2,78.6,54.2,57.2,55.3,44,47.1,57,58.4,52.4,35.4,51.8,35.8,40.5,45.9,36.6,53.1,33.2,38.7,35.7,134.2,28.3,52.5,72.7,52.4,72.3,89.1,89.9,89.8,64.6,43.8,34.4,72.1,41.3,49.2,52.4,36.8,35.6,72.2,35.1,0.8,51.8,121,45.3,31.8,33,33,33.7,34.9,33.4,16.2,18.6,49.5,35.9,33.2,32.7,34.9,33.6,34.2,34.6,32.6,51.2,35.1,34.8,31.9,49.1,47.1,38.8,33.2,33.4,52.4,50.7,35.1,33,43.5,43,37.1,45.1,55.3,33,29.9,55.9,46.1,42.6,42.9,58.2,60.1,49,35.4,51.6,49,38.9,49.3,98,51.4,49.3,51.1,85.3,48.1,53.2,68.4,52.2,50.3,67.1,36.3,65.1,105.1,90.5,77.4,85.1,84.4,114.5,121.6,1.8,80.1,107.5,67,68.6,106.1,69.2,54.3,51.6,54.4,43,43.8,34.3,52.5,49.9,38.8,46.9,89.8,74.9,109.6,111.1,76.6,154,152.3,109.5,156.3,65.9,109.2,156.8,108.3,6.4,36.7,59,50.2,32,72.3,71.1,53.1,67.2,37.1,46,58.5,68.9,81.7,62.8,56.4,372,137.6,84.3,85,103.1,67.2,49.3,49.6,18.5,16.3,34.3,33.7,33,32.8,33.2,65.2,35,31.8,50.8,50.5,49.7,50.2,48.3,34.4,32.9,33.7,32.5,32.9,33.8,35.1,32.1,32.3,34.5,50.3,34.4,30.4,33.7,33.9,16.5,34.2,32.9,32.7,33.4,27.5,40.8,34.6,67,68.6,61.1,109.5,86.6,53.4,85.7,118,68.6,179.5,83,97.1,68,35.4,97.1,172.3,61.4,160.5,101.4,83.5,37.8,32.8,253.5,198.5,98.1,94.6,58.2,65.9,134.8,59,132.7,99.8,104.2,101.6,85.1,108.7,62.6,54.8,54.2,82,49.4,116.6,90,53.8,74.9,77,26,72,117.8,69.8,68,70,84.8,101.2,86.3,35.7,33.6,95.7,97.4,166.6,76.4,210.7,66.3,51.8,32.5,37.2,87.5,50.8,50.7,48.9,39.1,34,49,50.5,120.4,56.6,41.7,37.2,34.8,33.2,46,29.5,51.3,71.7,52.5,51.7,51.4,38.8,45.2,43.2,38.8,53.4,54.6,36.9,35.1,35.8,35,53.8,62.5,59.5,37.6,36.5,48.6,77,44.3,49.2,47.5,68.3,35.7,43.3,64,55.4,71.5,69.3,84.8,86.9,126.8,132.8,109.6,198.6,101.7,173.4,105.8,137.3,47.9,32.8,75.5,38.5,44,88.5,94.1,31.6,50.5,63.9,40.7,68.2,61.5,35.5,42.6,43.4,55.1,29.2,65.8,42.7,25.6,34,49.2,37.7,33.2,37.7,37.4,44.9,64.9,38.4,46.1,37.3,33.6,29.6,34.5,45.9,35.7,37.1,34.9,33,37.3,44.6,40.1,47.9,48.7,51.6,81.3,84.8,86.4,104.9,126.3,93.6,68.3,64.5,84.1,89,45.6,81.3,29,84.7,52.3,36.4,40.7,43.7,45.2,51.9,71.4,220.1,114.8,127.9,175.2,52,151,55.9,86.6,238.7,170.8,123.6,100.5,67.4,73.6,132.2,364.5,0.1,106.4,75.8,66,74.5,51.5,107.3,104.8,101.6,173.2,118,88.5,127.2,136.3,81.7,64.8,27.3,25.2,42.3,21.8,23.7,25.7,31.7,18,17.2,19,26.1,17.7,82,26.3,25.6,26.9,28.7,30.5,21.6,15.1,13.8,20.7,29.8,37.3,31.1,26.1,26.1,19.5,25.1,23.7,22,34.5,49.3,41.8,46.4,16.4,36.1,35.7,16.8,31.2,19,25.6,24.1,33.9,22.9,40,24.5,34.7,29.8,24.7,33.1,31,35.2,33,31.2,19.7,32.3,27,25.7,35.7,34,25,22.9,23.2,18.7,20.9,16.9,33.2,46.7,59.5,45.2,51.4,47.3,51.6,59.9,114.8,77.6,60.7,35.7,73.5,77.5,162.8,111.1,52.3,70.2,46.8,91.1,42.7,75.8,107.2,80.9,93.2,44.9,70.2,86.9,51.2,69.8,86.5,69.1,117.3,87.8,62.2,7.1,87.5,83,52.7,89.8,118.4,68,83.2,185.8,224.4,74.9,86.3,168.2,67.7,69.1,58.4,111.6,105.9,84.1,88.1,71.3,77,109,102.4,70.5,84.9,100.2,47.5,57.6,45.7,45.8,42.5,18.6,17.4,11.9,11.6,16.5,7,8.8,8.4,9,8.5,6.2,6.3,7,5.9,4.3,4.7,7.8,7,8.6,7.6,8.1,7.8,9.3,10.1,16.1,18.2,30.9,34.3,16.8,11.2,19.3,23.8,26.2,21.7,19.2,25.2,15.9,14,16.6,9.9,14.6,27.3,22.2,20.9,15.4,16.3,8.5,14.6,17.3,16.4,14.1,17.4,17,63.7,33.5,23,15.8,26,12.3,13.3,19.4,15.9,14,9.6,9.9,9.8,12.4,11.9,12.1,12.6,10.3,12.8,13.1,18,32.2,29.9,13.1,16.6,14.5,16.9,11.7,22.9,31,25.8,25.1,29.6,47.9,29,31.7,20.3,55,42.8,103.6,69.1,86.3,68.1,53,52.3,51.9,47.4,108.3,136.7,208,86.1,107,257.8,236.3,160,155.3,264.4,107.1,134.8,129.6,106.5,69.4,71.9,78.8,96.8,94.9,69.8,49.6,113.1,126.3,72,13.1,30.2,41.1,26.5,28.8,24.5,104.4,102.4,85.9,71.6,28.3,169,107.9,44.1,48.4,66.6,44.4,8.7,49.1,54.7,49.9,54.5,44,55.8,27.9,10.9,42.2,7.5,70.2,53.5,72.9,24.9,50.5,49.3,45.1,38.9,27.9,22.5,49.1,53.5,56.4,30.1,27.8,30.3,50.1,43.1,30,24,32.7,24,34.7,34.9,20.4,18.2,17,34,28.3,38.5,30.8,25.3,27.2,26.1,24.9,41.5,36.6,89.3,50.1,71.8,88.9,135.7,142,122.7,105.1,157.2,221.1,25.2,153.6,107.1,83.6,65.3,151.3,158,131.8,122.9,143.4,73.6,72,133.2,196.6,70.1,76.3,137.7,84.4,66.6,109.9,128.5,117.2,98.1,87.2,59.7,120.6,121.7,137.3,115.9,96.8,249.1,73.9,109.3,148.9,123.1,22.3,66,127.1,136.1,233.6,223,40.4,35,29.4,29.8,29.9,58.6,98.2,116.6,133.4,100.6,29.8,70.6,52,58.4,44.2,52.6,51.9,45.6,63.5,57.9,38.3,16.7,16.6,17,16.6,18.7,14.9,17.7,16.9,16.9,16.3,17.8,16.7,16.9,17,16.8,16.7,16.8,17,17,17,17.3,16.1,16.9,16.8,17,17,11.4,6,16.6,16.2,17.5,16.9,16.6,17.1,16.7,16.8,16.7,17.2,16.7,17,16.8,16.9,16.9,16.7,16.5,17.7,33.1,62.3,73.6,122.7,34.9,50.9,34.1,27.8,24.1,49.6,49.2,54.8,47.1,19.4,16.7,15.8,17.9,18.1,7,8.8,16.6,20.9,19.9,26.8,16.9,17.5,16,18.1,17.1,16.2,17.5,34.4,16.3,17.6,16.5,17,17,16.2,17.4,16.9,17.5,67.2,68.3,51.2,77.1,177.9,118.2,51.2,50.1,52.3,33.7,34.1,61.5,42.4,36.6,6.1,43.8,58,95.3,62.1,55.6,62.7,60.9,53.5,80.5,47.4,115.5,69.1,49.5,44.2,148.7,26.9,96.5,46.9,45,47.1,38.6,34,29.8,35.2,28.8,32.1,44,13.2,55.7,56.7,50.2,85.7,55.1,5.6,96.5,97.7,106.2,49.7,18.7,29.2,23,29.2,24.5,26,27.3,21.7,8,18.2,19.2,35.8,24.2,31,25.7,34.8,40.8,22.4,21,36.9,37.7,47.9,54.6,37.9,52.5,77.4,53,46.3,52.2,56,24.2,31.9,46.9,42.9,39.2,74,36,83.5,38,60.6,44.8,61.9,37.1,29,67.1,45.7,26.7,69.7,47.7,48.3,32.4,44.6,43.9,43.6,12.8,12.7,20.9,172.3,56.3,50.5,45.5,43.8,37.6,51.6,43.1,34.7,25.3,27.4,34.2,30.4,19.1,23.6,28.2,18.3,24.8,36.6,26,29.5,38.4,46.1,28.5,29.3,30.9,50.2,42.5,35.9,41,54.8,63.4,53.2,25.1,33.3,44.3,23.5,47.8,41.9,64.8,37.1,35.4,25.1,39.7,65.5,11.7,37.4,30,43.4,71.3,26.4,72.2,49.3,42.9,48.9,56.6,67.2,53.2,55.6,48.6,55.1,28.7,18.4,42.3,31.6,39.6,79.9,62.3,34.7,25.2,33.1,18.5,14.4,27.6,4.9,6.4,6.8,8.7,7.4,8.2,10.8,8.6,8.9,10.6,5.4,14.4,17.9,2,10.4,0.4,16.3,0.3,29.9,64.8,5.8,50.5,65.3,93.5,72.7,13.2,11.6,11.5,9.8,10.1,8,12.8,9.8,9.4,10.5,9.7,12.4,11.7,14.3,8.6,4.1,11.1,10.2,8,10.1,13.8,8,14.4,15,11.1,12.3,14,62.9,38.8,28.3,73.9,22.1,38.2,60.4,30.9,34.2,5.5,38.1,39.3,52.6,63.3,64.9,51.5,48.3,34,26.7,32.2,23.1,28.2,38.3,35.6,37.6,27.5,22.3,22.7,33,30.6,37.9,31.3,39.1,39.9,46.5,43.9,33,63.8,42.7,50.8,44.6,32.6,48.4,67.7,85.2,42.8,65.7,39.1,28.5,45.9,28.2,48.5,48.5,58.1,52.7,37.1,63.1,28.3,26.9,58.3,57.5,55.2,93.1,52.1,68.3,30.2,36.7,63.1,52.3,49.4,58.6,70.1,77.5,54.2,45.9,36,36,47.7,49.9,55.3,52.8,44.8,48.6,56.2,66.8,21.3,22.1,41.1,44.5,50.2,52.1,49.8,41.4,58,43.4,43.2,62.6,67.1,78.4,69.4,42.8,28.6,35.2,50.1,35.4,43.6,36.3,34.6,29.5,35.8,31.4,39.1,15.1,25.8,36.3,43.5,31.5,27.9,54.1,58.3,64.8,68.6,53,60,54.5,57.2,36.3,41.2,40.4,83.9,72.1,97.6,195.2,109,114.4,70,54.1,78.7,107.8,89.4,55.3,32.4,37.7,41.9,46.1,54,62.9,71.9,70,60.2,88.2,73.2,49.8,29.7,39.5,45.2,38.5,35.4,34.7,47.5,32.4,44.5,51.6,1.4,63.3,46.9,46.8,56,47.3,33,44.9,46.6,29.7,63.2,80.9,51.5,49.4,53,28.8,36.6,43.4,47,46,51,40.9,45.5,42.8,48.3,66.6,46,42,26,30.4,50.1,50.5,54.1,57.5,56.3,62.8,25.5,26.4,24.3,43.8,69.8,86.2,51.6,39,49.3,44.7,45,36.5,43.8,31.6,38.4,48.1,30.4,30.4,39.1,42.7,46.5,109.5,15,53.3,81.4,53.1,33.9,40.6,112,84.5,111.7,103.1,82.6,68.2,52.2,34,32,25.2,30.1,41.1,19.3,41.7,50.6,79.6,56.4,5.8,80.6,46.6,55.8,45.3,36.1,33,35.9,35.5,48.2,104.4,38.5,7.1,19.1,67.9,49.3,42.1,43.8,41.4,57.6,36.4,50.3,55.2,65.9,47,47.3,37.5,47.5,42.4,64,69.1,83.8,68.7,36,41.6,43.3,47.8,52,59.3,48,42,62.5,60.3,86.3,63.1,92,44.2,31.9,60.5,85.6,46.5,41.4,71.1,62.6,48.4,71.6,61.4,50.8,56.3,57.4,68.8,53.7,52.2,57.9,64.2,86.7,38.6,72.8,42.5,35.8,31.3,67.9,35.1,49.6,38,27.5,28.8,26,45.6,50.1,83.1,68.3,58.3,55,48.7,48,67.7,53.2,58,59.3,49.4,35.8,36.9,50.6,47.9,67.1,53.9,49.5,49.2,51.4,52,52,54.7,39.5,65.6,70.8,47.4,29,36.8,47,37.7,35.7,30,41.1,41.5,56.4,36.4,57.1,44.9,28.8,21.8,45.2,78.1,62.6,58.6,44.7,34.9,46.8,38.9,38.7,47,50.1,71.5,108.9,132,70.9,47,50.9,71.2,49.3,30.9,54.1,48.7,47.4,44.3,55.5,58.3,57.7,99.4,85.5,136.1,106.5,100.4,67.8,69.7,54.6,46.2,67.5,56.5,58.2,69,60.8,91,57.6,80.9,91.2,86.5,69.3,83.5,72.3,114.2,113.9,89.4,66.5,86.7,76.7,99.8,102.6,109.2,108.7,75.3,91.8,73.4,86,164.9,169.5,96.3,76.5,66.8,43.3,44,40.2,56.7,53.5,55.8,46.5,44.9,59.2,87.4,78.3,72.3,82.3,51.3,39.2,41.6,35.8,36.6,38.7,62.7,41.5,41.2,38,51.5,51.1,47.8,47.7,59.4,35.3,36.6,47.5,34.2,52.8,68.9,51,67.8,52.9,46.7,69.7,72.1,53.2,69.2,67,67.6,70,68.3,63,83.6,103.5,99.4,111.8,76.3,70.6,55.5,67.9,70,82.7,53.7,77.8,58.8,51.8,50.3,71.7,70.9,68.3,38.4,32,52.1,57,52.3,64.1,129.8,98.6,58.8,47,50.7,68.9,59.8,103.2,60.5,77,69.1,50.4,53.4,72.9,35.1,41,72,68.2,59.9,37.1,32.2,52.6,19,39.9,43.7,28.6,5.4,86.1,47.6,37.5,32.7,35.7,53.7,50.4,45.9,29.2,86.2,42.1,48.5,51.6,42.8,30.5,30.3,54.6,38.5,73.5,57,59.4,56.9,45,31.6,38.1,93.2,75.3,97.4,58.2,57.5,52.3,54.4,69.8,80.2,87,71.9,77.4,82,106.7,122.9,86.8,99.5,103.7,55.7,53.9,65.3,71.2,76.6,61.7,65.4,81,15.6,17.4,74.5,87.3,60.4,71.9,90.6,69.9,48.9,66.2,87.1,66.1,78.2,71.6,57.6,66.3,49.7,62.4,51.3,1.5,38.4,38.2,45.9,49.9,63.2,54.1,70.9,47,46,55,60,53.1,90.4,83,91.2,70.5,76.6,52.7,67.8,75.5,62.8,60.9,87.8,104.6,68.2,90.4,44.6,67.9,73.8,80.2,91.4,182.1,103.4,106.3,108.1,98.8,88.2,39.8,25.5,45,84.3,74.9,48.2,78.7,76.1,80.7,89.5,53.9,82.4,70.5,63.2,102.2,72.3,73.7,93.4,96.8,66,78.3,89.1,85.6,87.8,45.8,71.3,109.2,35.7,61.7,264.8,147.5,123.9,122.1,88.3,89.2,82.7,59,52.9,60.3,77.2,46.7,41.7,41.1,99.6,34.1,48.1,80.6,49.6,61.2,65.5,57.5,61.5,102.2,64.6,27.4,38.3,34.7,31.8,24.4,26.3,23.1,54.6,42,47.4,27.5,45.7,56.6,31.3,35,41,49.8,47.9,54,39,34.4,49,44.8,58.9,76.9,120.4,108.6,67.3,75.8,70.6,71.4,54.1,44.3,54.4,42.2,47.3,60.8,66.8,46,33.3,53.4,61.2,54.3,45.2,48.9,50.1,119.3,80.6,59.3,49.9,32,40.1,37.3,49.7,34.7,27.9,26,34.2,34.3,28,23.6,28.5,54.7,34.6,35.4,32.9,31.5,50.6,59.8,96.8,78.5,96.9,89,58.6,39.7,45.7,70.9,104.2,119,89.1,103.6,55.9,70.9,23,54.3,32,55,26.8,83.1,76,52.8,42.5,78.6,25.2,44.7,49.1,18.3,73.9,42,34.4,57.2,68.5,77.1,175.1,75.2,51.6,113.6,79.8,8.1,41.7,46.1,47.4,43.6,60.1,36.6,112.6,77.9,99,77.4,25.4,37.7,37,37.8,31.6,30.1,33.3,55.6,15.8,42.1,33.5,52.9,23.1,29.3,46.3,34.4,25,69.6,101.2,71.4,22.8,71.5,32.1,17.7,76.1,42.3,41.4,69,40.9,47,94.3,71.1,34.7,38.6,32.9,75.9,37.1,48.3,59.9,21.1,65.8,96.6,128.5,66.9,48.1,82.3,71.6,21,87.7,53,21.4,89.3,66.9,72.1,72,44,64.6,74.4,68.2,51.5,121.7,18.2,29.3,38.8,17.1,64.3,35.3,27.1,0.5,41.6,19.9,59.4,57.4,36,67.3,48.1,45.5,60.1,43.1,43.3,49.4,39.1,23.5,47.4,43.4,68.4,57.8,56.7,65.4,58.5,64.2,68.1,35.1,32.3,55.3,49.4,74,159.8,72.5,53.5,62.6,67.4,53.3,44.2,27,23.9,19.5,23.9,34.7,34.5,35,29.1,32.7,86,43.1,35.7,35.2,28.3,52.1,47.6,45.4,45,253.3,119.5,38.5,37.7,88.7,77.9,45.9,18.3,22.7,47.9,51.8,25.6,39.8,54.2,37.1,59.1,67.3,51.8,49.5,55.8,61.2,64.7,68.5,58.5,57.2,52.1,43.5,29.6,77,94.6,41.1,28.4,60,60.5,61.1,64,34.9,18.8,59.6,67.8,50.1,150.1,22.5,87.1,70.8,43.4,56.5,76.1,77.3,67.7,58.9,57.6,67.8,52.4,57.8,32.5,29,51.3,86.3,97.9,72.6,67.4,62.6,55.5,72.7,72.6,99.2,72.9,90.8,79.2,80.2,82,80.8,82.4,86.1,86.2,83.1,70.1,71.6,81.7,70.3,82.9,67.9,57.6,63.1,54.6,55.3,47.2,44.5,49.6,42.3,50.4,67.1,35.7,60.7,61.5,77.7,59.5,51.5,52.5,71.4,80.6,89.3,91.2,89.8,67.4,80.8,73.8,83.3,88.5,59.5,56.2,59.4,63.3,72.2,86.6,101.7,81.7,99.4,98.3,94.3,88.5,116.6,111.5,79.7,121.6,103.7,113.5,114.9,98.5,90.6,138.8,123.2,135.7,5.6,129.9,135.6,158,120,146.3,147.2,153.9,149.1,153.6,186.1,192.9,184,153.2,133.3,137.8,129,127.8,196,115.1,169.4,48.9,55.6,21.4,31.1,73.3,80.4,71.2,70.4,51,49.4,61.7,51.5,52.9,49.8,56.3,38.5,31,58.2,77.9,82.5,99.4,101.2,96.6,120.1,119.9,125.5,106.7,151.6,21.9,76.7,82.4,110,105.5,120.7,141.3,92.7,128.6,47.1,241.6,131.6,103.6,176.7,72.1,142.4,127.1,137.3,64.6,107.1,60.5,88.2,59.1,86.4,66.4,80.5,42.3,47.3,58.3,51.7,20.4,67.8,21.6,7.4,39.5,70.4,59.3,51.1,60.9,63.4,57.2,48.9,97.6,41.5,60.8,86.7,113.2,91.4,96.5,92.2,97.6,88.9,91.6,70,60.2,51.7,55.3,71.1,67.5,79.3,71.4,62.3,69.7,45.2,55.7,54.6,76,69.7,74.4,85.1,64.6,71.9,134.1,21.6,87.5,51.9,49.1,54.6,46.4,64,65.1,61.2,70.1,63.5,79.6,74.9,48,20.1,50.7,45.3,40.9,46.1,36.6,71.1,56,64.9,51.2,156.6,44.3,67,24.7,66.4,27.6,22.3,35,30.5,26.9,44.4,32.4,23.9,62.5,33.4,35.1,28.4,27.6,27.7,21.9,27.3,29.7,72.3,51.7,79.9,91.2,100.2,32.2,20.5,24.6,14.2,14.1,19.1,20,31.4,24.1,19.8,19.6,34.9,272.8,140.2,64.8,52.2,31.1,30.3,31.1,42,22.9,33.2,31.8,31.5,58.3,34.2,31.6,46.8,67.3,58.3,50.4,38.1,34.5,32.3,92,69.8,125.3,113.3,103.2,111.1,55.8,46,53.3,44.5,70.5,63.8,51.3,69.4,61.7,50.6,53.7,54.6,80.3,73.1,104.2,111.2,99.5,206.7,419,30.4,325,247.5,121.3,117.7,166.3,36.6,130.9,87.6,84.7,69.5,91.9,82.5,76.9,100.6,77.7,79.5,77.5,80.6,67.8,61.6,15.4,32.8,22.8,57.6,57.8,53,55.5,48,84.6,37.8,71.8,85,18.8,98,49.9,52.3,128.4,57.3,87.9,87.9,81.5,380.8,73.5,242.4,92.7,129.4,102.9,105,63.4,39,101.9,58.6,111.7,79.7,37.5,39.7,73.7,269.6,229.2,108.8,18.4,114.4,78.3,133.7,77.9,100.8,140.7,102.2,97.8,85.3,49.7,39.8,72.1,62.8,67.7,61.1,60.8,79.2,79.7,275.5,37.6,184.7,70,97.5,182.5,169.7,101.6,64.1,38.6,66.1,65.5,56.4,49.9,148.1,104.2,109,62.2,58.5,57.7,2.6,116.6,131.8,37.3,214.5,508.2,472.7,509.7,201.6,384.5,70.1,137.7,157.7,146.1,106.2,115.9,86.2,85.1,97.8,93.9,94.3,93.3,104.1,99.2,68.2,75.8,79.8,81.1,71.2,58.7,52.6,59.9,64.6,39.8,46.4,56.9,33.1,26.4,67.2,51,47,131.8,74.8,67.7,54.2,52.2,45.3,44.7,37.9,84.9,68.9,120.9,80.9,51.5,51.5,37.8,43.8,51.3,50.1,62.4,65.9,62,46.9,40.4,47.9,29.2,23.6,67.1,52.2,60.8,58.8,62.4,68.6,71.9,160.6,91.6,127.1,71.2,63.7,74,68.1,54.5,69.1,84.2,56.9,71.2,75.2,51,53.1,44,48.5,88.3,66.5,68.7,79.8,112.2,69.3,60.9,102.4,55.3,62.1,66.8,43.6,45.8,65.7,62.6,79.6,93.8,101.4,100.6,89.6,82.9,66.5,69.8,33.9,22.1,47.8,49.2,72.9,64.3,70.7,56.3,76.2,64.5,65,29.6,20.9,26.7,41.5,36.9,91.6,68.6,67.5,68.1,67.6,45.5,57.3,54,65.2,50.9,36.3,79.4,26.3,105.2,30.7,68.5,30.4,34.2,22.9,21.8,42.6,39.3,40.7,35.4,23.3,14,10.8,13.2,10.8,10.8,9.6,9.4,13.4,10.9,9.8,13.4,10.8,11.7,10.7,10.7,10.1,10,13.8,11.9,13.7,7.8,10.3,11.9,38.6,94.9,33.2,24.7,24.2,70.1,10.6,58.1,76.8,19.5,96.6,15.3,112.4,100.2,91,61,48.6,75.6,79.4,61.3,82.8,60.2,99.8,85.3,86.7,66.8,61.5,55,47.3,130.1,63.7,35.8,162.6,162,133.4,203.9,21.8,20.1,24.1,23.1,21.3,19.4,29.3,29.2,22.1,19.3,23.8,24.3,5.5,20.8,24.4,20.1,28.7,25.5,28.1,36.6,37,51.7,85.8,44.6,40.4,31.4,38.7,40.8,27,19.4,44.1,76.5,62.9,100.2,97.9,34.8,30.6,42.3,63.5,30,13.5,35.5,26,27,8.8,23.2,50.7,9.2,35.2,46.2,34.3,28.7,88.1,8.3,8.1,113.6,21.1,15.1,75.4,21.6,101.7,99.8,75.2,77.3,71.5,53.2,64.4,72.4,78.6,68.7,277.2,124.8,9.7,48.4,61.6,36.7,122.6,131,122.5,79.5,111.3,99.2,90.3,12.6,92.3,102.6,135.3,133.3,102.9,112.6,153.5,89.7,114.6,180.2,104.9,108.3,104.1,92.8,117.7,54.2,66.5,64.3,101.8,69,46.8,86.3,50.8,48.7,42.7,64.5,92.1,69.1,54.8,11.5,75.2,28.9,81.1,51.1,4.2,94.1,96.5,61.4,42.7,93.4,94,61.1,54.6,88.1,202.3,196,242.1,155,135.5,160.9,162.3,337.3,121.4,47.8,50,27.2,66.1,80.1,64.3,34.9,31.2,62.3,83.6,45.6,37,70.6,47,52.7,44.8,59.9,71,77.9,84.9,78.2,118.3,59.5,58.4,21,67.9,49.6,51.7,33.7,37.5,49.3,52.9,44.1,38.7,51.9,34.2,52.7,254,66.7,55.7,70.7,54,98.4,65.6,96.4,111.8,68.8,76.6,116.7,227.5,220,1810.9,115.1,55.8,48.5,83.7,71.7,68.2,79.6,106.9,69.5,63.5,65,80.3,73.1,78.8,80.9,93,62.8,40.6,33.3,33.1,35.1,56.6,64.1,71.8,96.6,108.1,93.3,53.9,49.6,62.9,45.4,40.7,40.8,37.9,36.9,68.5,76.7,44.3,40.7,35.1,41.6,35.5,112.2,73,80.9,218.7,122,115.6,81.7,67.4,85.1,50.5,81.2,73.3,150.6,143.1,60.2,48.2,41.2,36.3,48.8,33.5,33.2,34.6,33.6,36.1,35.7,18.1,35.7,45.1,34.1,21.8,29.7,33.5,36.7,36.7,32.1,35.7,37.3,30.1,33.7,51.5,65,55.7,62.7,40.5,46.4,56,32.1,34.5,58.8,47,51.4,37.6,36.5,43.5,37.2,51.5,33.2,35.8,35.1,32,27.4,35.8,37.1,56.1,10.5,55.8,58.8,59.6,65.3,55.7,106.5,157.4,77.2,50.7,43.8,49.9,30.8,30,28,47.7,43,82,32.2,25.2,51.1,36.7,46.6,39.3,33.5,33.5,39.9,44.4,36.5,94.5,91,85.2,88,102.8,67,38.8,31.4,42.4,33.1,56.5,49.6,30.2,36.3,28.1,38.7,34.4,34.4,35.4,46.3,61.5,58.3,73.4,117.7,48.2,44.5,28.5,43.4,34.4,48.9,35.5,33.3,31.7,28.5,31.2,32.8,32.7,69.4,58.9,55.9,55.5,62,32.6,28.7,49.6,44.9,46.5,84,57.6,78,48.9,52.7,48.9,52,46.9,43.4,40.8,86.9,173.7,92.1,81.1,124,51,45,53.8,63.4,71.1,43.8,179.9,130,73.9,63.4,123.1,130.2,111.1,105.4,247.7,94.3,68.1,39.4,38.2,59.8,26.3,44.8,35.3,42.4,80,74.8,79,73,107.7,69,75.3,71.9,40.6,33,41.2,1.4,49,47.6,55.1,45.5,48.4,54,35.9,43.3,35.3,10.3,56,54,92.9,51,50.1,37.6,39.5,38.5,42.2,19.6,33,51.2,34.9,49.1,34,35.5,37.9,50.7,47.7,25.3,874.2,52.4,59.9,70.6,81.2,21.6,177.1,92.8,78.4,18.9,31.1,36.4,34.6,5.3,45.5,14.9,19.6,48.8,51,33.5,32.8,32.2,24.3,27.7,27.6,39.9,24.1,36.7,32.2,85.9,70.2,66.2,58.3,62.9,18.6,36.8,32.3,32.1,33.6,14.3,35.2,35.8,35.7,46,9.9,6,45.7,23,11.3,35.2,34.2,35,36.9,15.1,74.3,42.2,41.7,79.3,42.1,43.6,44.5,45.6,98.1,97.5,77.9,77.5,43.4,42.2,43.1,45.5,85.1,56.1,39.7,10.8,51.2,56.1,39.9,43.3,40.2,43.7,81.6,82.3,43.4,46,43.3,14.7,90.7,135.2,115.5,138.5,555.5,140.7,156.3,150.4,55.7,57.6,167.6,69.6,69.8,70.8,70.7,58.8,57.7,41.7,43.9,77.1,19.7,77.8,49.8,47.5,42.8,50.4,37.4,17.9,26.6,39.8,40.1,79.3,39.6,38.8,29.9,6,14.3,54,105.1,103.7,66.8,65.9,93.3,115.1,260.7,392.9,381.1,70.1,70,67.1,56.4,42.7,37.5,73.9,2379.9,21.1,164.4,54.6,169.2,196.1,185.5,184.2,151.5,117.6,57.3,30.4,29.1,65.5,24,28.9,42.1,40.4,45.2,44.6,32,31,79.2,12.7,22.2,53.9,54.1,42.8,36.5,62.6,41.3,7.2,44.8,60.8,55.7,51.2,8.3,27.4,21.1,88,32.4,17.1,42.6,47.8,24.6,45.7,38.6,40.1,55,23.1,22,36.6,13.1,19.2,34.9,28.6,23.2,33.6,74.4,29.8,13.6,29.2,24.4,25.9,34.6,7.7,89.8,19.9,27.4,32,34.4,35.7,30.2,32.8,32.3,28.6,33.3,26.9,24.9,29.3,30.9,25.1,30.5,26.6,39.9,37.4,28.6,26.4,28.4,28.9,28.5,19.6,24,31,33.2,39.5,36.1,33,32.7,34.3,26.8,30.2,28.7,19.1,11.9,41.1,47,42.2,56.2,36.3,12.4,9.2,14.7,18,21.8,28.7,39.8,39.1,28,24,25.4,17,8.7,10.1,19.2,16.6,20.4,22.2,22.5,18.6,14.6,18.8,22.4,25.4,50.8,26,21.7,26.5,22.6,16.2,21.8,14.9,20,25.2,19.9,24.1,21.5,29.4,22.7,21.8,23.8,24,36.9,18,47,16.3,16.5,36.6,33.8,41.6,25.4,42.4,49.9,31.9,26.7,23.3,27.4,26.9,29.7,36.7,70.1,19.2,19.1,21.8,22.4,23.8,22.5,31.7,40.8,32.1,26.2,35.3,29,14.6,23.5,31.6,23.8,29.5,13.9,18.7,35.5,24.6,33.7,19.5,29.6,29.3,25.9,30.2,29.7,21.8,34.2,37.2,42.8,43.2,40.1,49.3,49.7,34,17.3,23.9,43.3,33.4,31.1,41.4,33.9,31.1,65.9,63.3,53.3,48.4,32.8,5.2,27.1,20.3,22.9,8.9,13.9,50.8,41.8,38.5,10.5,14,39.9,21,5.5,8.4,23.7,19.1,19.4,10.6,8.3,16.7,20.9,19.6,13.3,20.2,21.3,20,7.9,11.9,15.8,27.5,18.1,19.3,17.3,15.4,16.1,24.1,28.7,35.6,39.5,25.2,29.1,19.7,19.6,32.8,31.8,34.7,36.5,33.2,27.3,17.3,17.4,20.5,21.9,25.8,28.2,27,24.2,27.3,22,28.1,28.2,32.5,32.1,23.6,26.4,21.8,19.8,20.8,19.6,33.7,33.5,29.4,25.2,27,40.3,72,47.1,40.8,65.3,48.3,38.1,38,36.7,31.4,59,33.5,24.9,39,44.2,46.9,46.7,43,47,29.7,32.5,31.1,37,51.7,69.4,32.2,30,35.1,20.5,19.9,20.9,19.7,18.1,18.3,18.6,25.6,19.5,24.4,24.6,67.7,25.7,29.4,44.4,22.5,23.2,24.3,20.4,46.7,35.6,26.2,44.3,40.1,45.1,43.1,40.4,53.7,50.6,72.5,44.2,10.7,39,46.6,44.1,34.3,46.1,43.8,62.2,39.4,33.1,31.1,42.8,38.8,32.9,26.1,26.8,24.6,24.7,44.8,31.4,35.7,43.2,24.8,31.8,37.4,23.9,22.1,35,31.6,36.4,34.9,38.4,47.8,32.5,36,34.9,31.5,31.8,35.9,31.5,47.1,35.6,45.6,38.4,28.9,35.4,35.7,35.8,36.8,30.4,56.7,33.3,33.8,41.4,20,9.7,13.7,23.9,32.3,46.8,64.9,49.1,37.2,7.4,26.4,56.8,31.5,26.3,28.3,25,22.4,34.6,54.7,51.9,37,69.1,55.7,51.5,40.3,20.2,41.7,55.2,69.4,100.7,49.4,52.5,42.9,55.6,55.3,48.9,38.3,50.1,43.7,44.8,32.7,40.5,33.5,41.3,44.3,47.8,40.5,21.8,27.4,21.8,22.3,24.8,26.7,25.9,25.8,30,30.4,32.3,23.3,32.5,26,35.9,27.4,27.1,23.4,31.6,27.4,39.3,26.7,26.2,26.5,13.4,11.2,23.6,22.4,31.2,24.5,28,45.4,28,35.7,37.6,21.8,12.3,44.6,32.7,36.4,43.8,120.5,135.9,204.2,80,46.1,49.8,52.4,47.9,64.1,47.7,38.7,58.2,55.1,35.4,39.7,42.8,20.5,34.8,23,21.7,12.8,42.7,32,20.6,27.4,32.9,35.1,32.5,37.2,31.9,26.7,26.3,28.6,38.9,44.1,23.3,47.3,20.4,37.3,31.7,27.6,50.3,38.2,66.1,88,18.3,32.6,37.9,40.6,30.8,30.4,21.2,33.5,36.1,34.4,24.1,25.1,28.4,20.7,14.4,15.9,16.6,22.6,37.2,33.3,30.6,26,25.2,22.8,28.1,20.2,18.3,20.4,16,25.7,26.1,22.1,24.9,23.6,21.9,23.6,22.6,29.6,35.1,28.6,30,25.9,26,29.7,23.5,21.8,27.2,27.5,26.5,40.1,22.4,23.5,25.3,29.6,25.3,29,22.9,20.1,21.7,25.1,29.1,28.6,33.7,33.9,33,33.5,26.6,28.5,53,29.8,30.6,31.8,42.1,51.7,39.2,17.8,16.6,25.9,38.5,21.6,29.4,24.7,25.2,24.9,27.3,24.2,29.4,34.2,31.4,23.8,21.3,28.4,30.5,30.3,32.5,25,25.7,27.6,44.1,24.3,30.5,28.7,25.1,26.2,25.5,29.2,26.2,30.1,22.4,28.6,18.7,16.8,19.6,23.5,20.2,20.1,24.8,17.6,27.1,53.6,33.2,30.5,31.5,37.9,25.3,28,25.7,38.1,38.7,49.1,29.9,40.5,32.6,7.5,37.3,45.1,34.1,28.6,28.6,30.9,32.9,33.1,44.2,32.4,39.6,43.9,60.9,39.1,44.7,58.7,47.6,34,28.1,30.6,18.2,9.9,27.3,24.2,8.3,22.9,18,29.3,22.4,21.6,23.5,24,23.4,21.6,27,31.2,41.4,28.9,33.7,34,30.2,21.7,20,18.1,16.1,13.8,31.1,11.1,13.7,21,29.3,27.2,16.5,18.2,12.6,16.1,17.8,39,27.7,25.9,21.6,12.3,17.1,18.2,18.4,16.3,17.3,23.2,20.6,14.8,20.4,24.9,26.1,24,18,18.4,18.1,14.6,12.6,12.5,16.2,15.7,15.1,28.7,16.4,12.6,29.2,20.1,20.1,21.8,20.1,20.9,19.4,24.9,6.6,13.3,23.3,27.4,29.1,27.3,22.8,24.2,18.3,17,15.7,19.2,15.5,21.9,13.2,22.3,6.7,10.1,15.5,16,16.4,12.7,16.6,19.9,19.5,17.8,19.3,26.8,20.1,9.9,8.5,17.8,15.8,19,16.3,12.9,13.4,12.1,13,14.1,13.1,22.1,17.9,17.9,12,21.7,15.7,15.7,17,18.3,22.7,12.5,16.9,16.7,17.1,19.2,12,19,17.9,19.2,30.5,31.3,29,31.3,16.1,16.2,13.8,16.4,15.7,14.9,18.6,16.8,15.5,17,18,23.4,16.1,22.4,34,24.5,39.6,39.1,38.6,38.9,35.3,38.5,34.3,30.6,33.5,39.1,40.4,45.2,41.1,42.9,41.5,43.3,40,33.7,41.6,44.2,37.7,26.9,36.9,34.3,78.1,12.5,16.3,53.9,6.2,58.1,60.1,35,41.7,47.1,33.9,33.1,43.5,50,39.3,38.3,53.7,41.3,53.3,35,35.6,34.4,36.8,44.2,31.5,51.4,46.6,36.1,46,25.6,42,18.1,46.4,52.1,53.8,45.8,39.2,45.5,46.5,31.6,31.6,45.3,44.4,33.8,28,33.2,41.5,23.7,26.2,24.6,74,38.6,35.1,37,8.7,32.8,45.5,43.8,21.8,28.5,32.9,31.2,30,78.7,40.8,92.5,110.3,112.8,106.8,63.5,76.7,34.6,48.1,90.5,51.2,42.2,71.5,74,55.9,55.8,67.7,48.9,54.4,42.9,53.7,42.9,42,42.2,37.4,41.6,63.1,52,40.5,40.8,41,43,20,25.5,46.8,42.5,29,32.9,28.7,31.9,31,29.6,32.9,27.4,67.4,26.9,15.7,36.9,19.8,22.5,21.7,28.4,34.8,23.2,29.8,41.2,32.9,38.3,23.2,27.7,36.1,17.3,50.1,59.6,53.5,43.9,51,38,37.3,28.8,27.6,40.2,45.9,30.9,37.4,33.5,34.9,29.4,20.5,30.2,30.5,42.4,39.4,22.8,32.6,27.6,28.6,30.4,32.1,29,13.2,9.9,33.5,25.4,9.6,85.5,36.2,6.5,68.3,34,27.2,23.5,26.3,32.2,29.6,34.9,8.9,49.8,78.9,87.4,66.2,73.4,98.3,65,32.2,29,30.2,33.1,51.7,34.4,39.9,36.1,39,36.9,51.6,50.2,28.1,27.8,48.4,38.3,26.2,24.7,33.7,46.7,7.6,30.7,7.4,31,51,9.5,43,66.8,36.7,35.6,27.4,41.7,29.2,26.7,42.2,41,38.4,28.8,35.4,36.4,43.2,108.6,46.5,40.8,35.7,81.6,47.6,37.7,38.5,36.8,50.2,114.3,207,89.1,150.1,100.7,49.2,44.8,49.8,37.7,50,36.4,40.1,39.6,39.2,31.7,33.9,33.4,41,49.8,46,37.8,31.6,36.7,42.2,41.4,34.6,32.9,26,46.9,57.3,22.5,7.4,51.5,44.1,10.8,36.3,54.6,221,205.1,135.2,85.3,165.3,106.2,166.5,59,113.1,124.4,37.8,39.6,32.8,28.2,33.9,32.5,37.1,40.9,41.6,49.8,49.5,48.3,32.6,43.2,35.1,34.7,34,76.8,49.3,53.3,67.2,71.7,71.2,97.9,92.5,63.3,95.8,297,67,143.5,175.8,99.6,130.5,77.5,135.2,141.2,75,41.5,47.9,49,38.6,7.3,62.5,30.7,43.5,64.6,59.1,37.6,43.7,51.3,39.9,41.7,78.9,48.9,34.1,37.7,38.5,39.9,73.1,34.5,39.6,37.5,37.1,35.5,51.3,72.8,40.3,58,37.7,51.3,63.8,16.8,51.2,51.3,54,78.2,77.6,53.1,45,48.9,67.6,52.5,51.7,64,32.2,36.8,15.2,113.2,82.1,69.6,58.7,81.8,50.4,39.6,30.3,64.4,75.8,81.3,66.6,101.8,83.3,110.8,49.5,55.6,61.5,65.3,105.2,113.2,53.3,49.7,38.3,40.9,44.1,24.5,27.3,34.9,33.5,113.9,85.2,46.2,38,51.2,105.3,43.4,59.1,68.7,62.2,58.5,87.8,42.9,82.2,111.4,145.7,75.4,106.6,89.1,81.7,74.2,36.3,48.4,48.9,45.6,46.4,71.3,71.5,77.9,189.6,40.4,29.4,56.2,69.7,72.1,70.3,60.1,69.5,63.4,61.1,63.7,97.6,36.8,37.5,33.2,33.1,62.5,105.5,126.2,112,86.1,49.9,124,142.3,92.9,36.6,144.9,58.1,53.7,62.7,40.9,39.4,65.7,60.2,87.2,61.3,27,45,68.7,12.2,43.4,38.9,39.4,65.3,51.7,76.2,17.7,22.6,32.8,66.4,59,25.8,26.1,36.1,41.8,42.9,36.1,31,35,7.6,66.7,45.5,57.5,61.1,54,37.6,88,65.6,64.3,68.8,78.7,71.5,88.6,81.4,101,36.6,128.6,54.4,48,7.6,38.9,72.6,2.1,105.3,82.5,94.5,114.1,54.8,57,52.6,47.5,51.9,80,89,69.4,51.7,46.2,39.2,46.3,33.7,6.9,19.6,22.5,39.2,19.9,50.5,56.6,68.3,73.8,78.2,55.2,51.3,43.2,82,29.3,28.6,10.6,41.2,57.1,66.5,66.2,44.5,65.6,63.9,81.5,68.9,26.2,108.9,91.7,71.7,44.4,30,69.5,81.6,122.6,112.8,129.5,78.9,97.8,45.8,131.1,84.4,56,51.9,76.5,67.8,60.7,66.2,62.3,66.4,63.3,58.6,68.4,61.1,47,64.4,58.9,62.1,104.3,38,56.7,81.2,40.4,10.7,25.6,5.1,41.2,45.3,27.5,23.5,20.1,18.8,18.5,12.7,9.2,21.8,4.2,17.2,20.7,19.9,13.3,5,27.9,39.8,14.1,31.2,37.7,37,26.3,26.8,31.8,37.4,18.4,23.9,71.8,32.4,35.1,54.8,48.1,48.5,47.3,46.9,36.1,28.6,20.2,21.8,26.5,23.9,19.2,27.2,47.9,30.9,32.7,42.9,39,25.1,21.4,18.3,23.6,14.4,28.1,27.2,27.9,31.7,50.8,33.9,28.4,51.5,35.1,28.6,35.5,39.7,30.8,21.6,24.8,28.6,30.3,26.8,31.8,42.1,31.3,39.2,36,33.1,33.5,39.9,38.1,46.2,48.5,41.8,34.3,30.5,38.9,49.2,39.1,48,36.3,47.1,44.8,43.2,50.3,54.9,50.3,50,44.5,48,29.3,40.9,32.3,38.1,36.5,41,38.2,46.2,42.8,48.9,35,44.8,21.8,26.2,36.5,18.9,13.4,17.8,20.8,28.3,20.2,23.1,18.4,18.9,16.3,20.2,23.1,16.6,15.8,12.6,17.5,13.7,13.2,14.5,17.8,21.2,19.8,28.9,25.2,20.3,23.5,21.6,24.8,22.5,27.8,29.1,25.9,20.9,20.6,20.5,23.3,19.9,22.1,19.4,22.6,23.9,20.1,21.6,24.5,19.6,20.1,11.4,17.5,22.5,19.6,19.2,20.7,23.8,20.7,20.1,25.4,14.6,13.7,18.7,26.1,27.4,14.8,6.5,22.9,21.4,17.6,24,9.9,13.8,22.8,32.2,48.4,49.3,39.4,35.6,26.8,51,34.8,49,78.7,72.8,100.5,91.3,16.6,32.4,47.8,28.5,27.7,34.2,30.6,29.5,24.8,26.7,24.7,24,21.3,33.2,27.1,44.9,100.1,46.9,44.3,51,60,33.7,44,51.1,64.2,63.8,71.7,63.1,58.2,61.7,1.1,41,35.1,38.9,26.3,40.6,18.6,60.8,76,43.4,41.2,42.4,57.6,31.4,57.9,56,48.9,54.9,53,38.3,47,46.1,21.6,16,9.5,35,30.2,40.3,19.7,15.8,25.7,40.5,41.3,42.3,47.4,45.8,36.8,53,13.7,16.1,32.2,34.3,26,16.5,18,13.4,10,33.3,34.3,46.2,37.5,34.5,39.2,41.2,43.1,53.1,75.8,52.3,52.9,46,37.9,35,39.4,32,24.4,34.5,38.8,37.6,29.9,33,39.5,29.3,31.1,28.7,37,40.1,36.5,38,40,47.6,48,45.4,28.5,34.5,46.5,44,38.6,51.8,44.9,60.9,49.5,49.9,31.4,37.1,77.5,48.3,35.1,24.1,28.4,32.9,33.9,32.9,31.7,27.1,34.2,32.1,36.6,39.1,34.5,26.6,35.1,43,31.7,29.8,33.9,34.8,32.8,30.7,24.7,26.4,30.2,37.3,30,33.6,35.9,40.2,41.1,44,25,28.6,23.4,39,34.4,25.4,33.9,37.2,37.1,28.7,44.7,11.5,37.1,51.9,62.3,0.9,41.7,33.3,38.5,22.6,13.1,43.3,23.9,14.9,27.7,23,68.5,56.4,49,47.2,66.4,73.3,28.8,12.8,16.4,14.5,57.7,25.3,29.5,31,25,39.2,15,29,151.2,154.1,341.5,114.8,117,125.6,105,97.5,110,106,143.9,158.7,136.9,95.7,103,148.3,92.7,113.8,208.1,53.6,55.1,47.9,46.3,86.3,181.4,88.3,89.6,81.9,96.7,100,90.7,115,179.6,127.2,102.1,103.9,110.5,122,72.4,77.3,75.5,60.4,146.3,65.4,78.1,171,186.2,89,54.5,57.1,34.8,131.2,276.9,230.2,211.2,175.1,161.3,16,63.9,85.2,85.2,111.8,107,117.1,242.6,168.1,95.6,93.1,105.6,93.8,99.9,100,102.2,96.6,97.4,98,85.1,42,66.2,54.3,69.3,63.5,57.9,81.4,86.2,92.3,94.1,233.6,131.8,139.1,110.8,89.6,107,117.9,119.2,119.6,320.3,128.7,85.8,170.5,89.7,119,57.9,72.7,81.3,97.6,166.8,59.4,68.3,68.8,95,110,111.4,92.8,102.3,99.7,109,84.4,89.9,120,179.6,126.6,101.1,93,94,119.8,86.5,57.6,68,61.9,104.9,114,56.7,55.3,75.9,136,181.6,51.9,56.5,62.8,63.6,192.1,83,89.3,81.6,100.9,192.9,93.8,17.4,60.4,37.4,7,107.4,114.3,61.9,61.9,47.7,50.3,44.1,42.8,65.1,71.3,152.4,148.8,103,105.6,39.6,180.4,119.3,103.8,94,6,83.2,388.3,0.4,99.6,96.6,50.7,121.2,79.1,65.2,77.6,78.6,90.8,101.9,80.9,65.2,87.9,117.4,104.8,97.8,94.9,109,89,79.4,90.9,78.9,101.8,81.9,77.4,20,59.8,16.4,47.5,66.6,14.7,36.3,60.8,55.5,5.3,123.8,63.7,7.6,93.3,117,74.4,79.7,75.7,66.1,85.9,249.7,72,97.6,65.4,63.3,81.4,86,76.4,65.7,66,65.5,65.8,76.6,68.2,88.3,99.6,80.9,81.5,71.3,52.5,4.9,90.6,104,107.9,172,69.4,74.1,77.3,89.3,92.9,171.5,82.9,79.6,81.7,63.2,81.2,61.4,63.6,66.6,61.4,67.3,65.9,101.9,317.6,99.6,90.8,85.5,270.8,51.5,108.1,54.9,40.3,30.8,63.9,48.9,65,60,140.3,209.9,196.7,81.3,75.2,155.8,132.2,98.5,467.3,126.6,118.4,117.4,93,57.8,38,65.2,63.2,67.3,35.2,28.5,89.7,96.5,97.6,20.2,25.2,37.6,25.8,52.6,92.5,17.7,27,26.4,26.1,25.5,19.7,20.5,24.5,21.8,23.5,24.2,33.2,25.4,27.1,25.3,26.2,26.8,26.6,89.2,38.8,26.9,25.9,71.7,32.4,27.3,26.4,25.7,31.2,33.6,75.1,40.8,18,22.6,5.8,1.6,13.6,28.1,7.5,18.7,9.7,157.4,54.3,26.7,26.4,26.6,25.7,21.3,19.1,22.3,19.3,19,10.8,169.9,61.1,44.5,21.2,25.1,24.5,27.1,39.6,30.3,23.3,25.2,27.1,25.6,24.8,14.6,34.7,29.9,86.6,192.2,66.7,43.3,15.9,11,36.4,64.9,45.4,50.5,49,29.7,39.5,51.3,41.5,38.9,49.7,28.7,51.2,50.8,53.1,63.8,50.9,37.1,39.3,55.4,57.7,36.1,38.9,32.2,48.1,50.5,38.5,38.2,68.4,65.2,23.9,26.1,27,28.3,36.5,37.8,41,24.3,28.7,37.9,27.5,39.7,40,54.1,128.7,42.5,51.9,53.9,39.5,39.3,26.2,27,25.2,26.5,38.1,53.5,25.7,32.4,31.5,26,37.5,40.6,50.5,37.1,42.7,53.1,49.3,60.4,58.2,48.8,53.9,48.5,53,53,36.7,91.3,36.7,45.6,49.7,49.6,51.7,38.9,47,54.5,52.6,51.9,76.5,53.1,51,50.9,57,89.1,49.4,50,41.5,36.8,27.4,36,25.3,54.6,52.2,0.7,75.7,36.8,48.2,58.2,44.2,58.4,54,38.1,46.7,45.4,56,51.7,42.5,44.8,84.6,80.9,48.2,42.4,52.4,51.9,91.5,45.1,35.1,49.3,45.7,37.5,43.7,45.4,64.9,51.8,41.1,63.4,65.7,79.3,65.2,51.6,52.3,49.8,46.8,88.7,38.8,104.8,25.3,26.5,51.4,53.3,51.4,41.7,61.2,52.1,27.1,38.7,36.7,54.8,50.2,54.3,65.1,37.1,28.6,53.9,67.6,78.8,61.7,52.9,37.6,38.6,39.5,39.6,68,125.6,129.9,54.4,39,41.9,25.2,28.7,23.5,30.3,27,24.5,15.3,27.8,26.2,28.2,31,35.6,29.6,20.4,28.7,28.6,28.7,3.1,32.8,40,41.5,32.3,176.2,65.8,28.6,52,50.7,47.6,36.6,44.2,133.3,40,59.3,34.1,55.7,46,45.7,56.6,58.3,49.7,66.8,38.3,91.4,51.5,52.4,50.1,40.6,33.6,26.6,42.5,28.6,50.5,39.2,39.1,38,37.3,27.2,39.3,26.3,26.2,23.9,33.7,43.2,41,64.4,39.3,25.2,42.1,28.2,35.3,40.7,37.8,68.1,76.2,88.7,27.4,29.2,63.9,24.9,27.5,30.8,32.2,41.9,42.6,7,58.2,58.6,60.8,94.1,60.1,82.1,89.8,78,126,57.3,40.8,74.7,37.7,50.9,39.2,39.3,29.7,35.6,40.6,32.3,43.9,28.1,38.3,38.5,24.7,51.2,25.7,20.6,32.4,47.1,28.3,29.7,49.5,52,50.9,47,35,47.5,41.1,9.9,28.9,58.2,95.6,54.1,87.1,111.3,112.2,58.9,48,14.5,41.5,24.4,31.4,55.3,25.6,41.8,52.7,30.2,70.2,44.2,78.5,78.2,64.6,104.3,171.1,61.6,48,54.1,63.5,47.2,47.8,38.5,36.3,37.3,36.7,40.2,31.7,35.1,30.9,39.7,60.2,49.8,51.5,74.4,73.6,61.6,63.7,102.4,72.1,62.5,100.3,102.3,443.9,132.3,100.6,51.5,37.8,69.2,65.2,48.5,43.7,55.9,57.7,39.1,38.1,41.6,80.3,37.2,30.2,56.2,35.6,37.3,60.2,25.9,59.6,38.8,36.2,73.9,39.4,61,69.7,56.3,37.8,36.6,25.9,37.1,25.7,50.1,41.2,35.5,24,27,35.8,40.4,35.9,38,25.6,32.2,42.9,14.3,25.2,50.1,74.5,63.5,88.2,56.4,108.2,65.4,72.2,39.1,50.4,38.6,18.9,5,26.9,48.9,51.1,49.4,38.7,51.4,37.4,37.9,39.3,23.5,51.8,25.9,37.3,25.9,26.3,24.2,25.4,24.9,25,38.3,25.6,39.6,56.7,54.7,50.7,42.4,90.2,43.9,39.7,25.9,38.7,50.2,49.9,24.8,22.7,25.3,17.7,18.7,16.8,22,25,24.2,18.2,20.5,24.2,24.2,24.2,25.8,25.2,25.4,30.4,29.7,37.8,25.7,25.9,36.2,50.6,49.6,37,37.2,48.9,25.9,38.5,35.3,27,25,36.2,24.5,26,37.7,38,23.4,38.7,37.7,38.2,36.1,25.1,25.1,25.2,23.8,24.5,27,24.3,24.1,26.1,36.9,25.2,38,43.2,50.5,26.1,37.1,7.8,43.3,38.6,34.4,14.3,269.6,16.5,13.5,32.6,29.4,31.3,31.6,26.1,37.6,31.5,22.2,31,27.1,29,20.9,27,37.2,27.2,24.1,31.8,34.7,28.8,38.4,44.4,40.7,41.2,42.5,55.6,36.7,47.1,37.7,35.5,48.7,35.5,6.3,40.5,37.5,60.8,99.8,41.5,34.4,9.1,119.4,118.7,8,8.6,42.1,103.6,48.6,62.2,19.4,9.7,116.4,242.4,227.7,334.2,200,97,201.1,100.7,98.4,197.9,83.9,143.2,92.6,143,139.6,13.4,134.2,221.9,143.8,120.8,376.1,182.5,201.3,200.5,200,173.1,123.6,200.9,103.6,195,202.1,166.2,167.1,167.3,183.9,111.2,410.4,35.5,130.3,265.2,270.2,139.8,264.8,317.2,212.1,172.4,173.9,523.3,402.6,169.3,86.4,64.7,44.4,51.8,64.6,69.5,48.2,53.8,46.1,56.3,71.4,72.6,78.7,84.8,93.5,59,64.5,29.6,21.8,65.5,41.4,42.4,50.6,36,50.3,4,45.7,46.2,43,47.8,30.5,39.6,47.1,46.5,44.3,42,47.8,39.7,43.8,52.6,45.4,46.9,38.7,39.8,38.4,36.9,52.7,30.9,37.6,51.5,33.9,52.7,40.8,30,68.8,41.2,44.9,73.9,39.4,64.6,94.4,58.4,43.1,23.7,51.9,38.1,30.8,29.4,61,71.1,64.5,49.1,51.9,40,131.2,173.5,168.3,22.3,131,99.6,143.1,123.2,123.5,125,569.2,326.6,262.7,263.8,175.6,180.6,169.1,162.7,190.3,155.9,148.1,170.7,146.5,80.7,165.5,511.4,267.6,270.6,209.8,213.8,179,179.6,175.4,353.2,167.9,103.4,100.4,99,102.5,102.4,99.3,99.4,102.6,101.4,101.2,99.8,99.4,257.5,51.9,53.2,37.7,36.3,66,45.5,44.3,35.8,34.2,34.7,38,74.4,105.5,90.4,260.3,156.6,41.2,71.4,183.4,195.4,258.1,256.8,124.4,126.5,69.4,38.6,21,130.8,129,128,198.7,153.2,126.3,135.7,142.8,150.2,111.2,82.9,114.4,153.6,152.8,461.2,6.2,155.8,122.5,102.1,104.1,104.4,102.2,103.6,103.8,119.4,257.5,127.8,174.1,61.2,67,90.8,75.9,361.4,107.8,102.5,99.8,100.4,103.7,97.3,93.7,112.5,104.3,675.7,206,209.2,555.8,207.1,135.9,37.4,361.8,145.7,243.3,544.9,126.3,223.1,173,214.7,148.1,458.1,52.1,51.7,38.5,39.4,26.4,38.8,25.3,25.8,25.8,26.2,26,25.5,26,26.2,27.8,23.3,26.4,25.9,25.9,25.5,26,26,38.4,40.4,40.2,26.3,26.3,28,25.9,36.3,30.2,27.8,26.2,32.5,46.8,28.3,97.8,35.3,40,29.7,21.3,39.6,20.3,20.7,52,24.6,7.3,16.3,20.6,21.7,21.2,25.9,36.2,29.6,45.6,34.9,32.3,36,32.8,34.7,35.8,40.6,36.4,28.3,38.2,26.8,39.8,37.2,26.2,11.6,14.2,27.4,42.5,27.9,33.1,32.4,33.5,37,39.9,25.9,51.8,39.2,38.9,39.8,38.7,65.4,26.5,25.7,26.5,25.1,27.1,30.4,33.6,26.6,36.8,27.8,25.4,27.1,28.1,24,50,51.5,44.8,35.7,39.1,34.8,31,127.1,221.1,46,48.3,50.1,49.1,61,36.3,21.8,13.4,59.1,59.5,114.1,78.1,78.8,78.6,91.3,104.5,105,52.2,53.4,111.8,149.7,149.4,191.1,307.8,500.7,301.7,197,96.7,106.2,99.9,102.1,100.8,198.2,225.4,248.3,206.4,12.5,219.2,176,238.1,181.5,229.5,199.6,208.1,80.4,486.7,124.4,134.1,238.1,118.3,122.1,137.5,142.2,137,135.1,114.5,59.7,103.1,53.7,648.8,719.7,155.6,101,102.4,151.1,153.6,153.7,150.6,254.7,456.6,516.1,274.3,206.6,205.7,204,207.1,268.8,243.8,376.3,72.3,79,111.5,93.8,89.5,150.7,99.2,83.3,75.7,161,117.1,219.4,544.1,149.2,522.9,615.8,211.8,303.8,351.4,352.4,627.6,37.7,98.3,140.7,215.6,36.3,122.1,141.4,179.3,309.3,258.2,276.8,293.8,86.9,95.9,66.6,82.6,66.2,62.2,69.3,59.8,12.2,38.8,108.9,67.5,88.7,86.4,64.3,331.1,207.6,171.5,202.6,148.8,147.3,168.6,185.6,306.4,853.3,633.1,52.3,54.3,139.6,94.7,152,495.7,182,182.8,314.3,224.5,460.1,107.2,251.3,53.1,40.5,39.9,155.1,41.8,170,57,225.3,128.1,12.9,74.4,0.2,72.9,61.4,107.4,114.4,80.8,81.3,85,103,74,60.8,59.6,90.3,78.6,77.4,194.8,116.7,71.7,71.1,117.2,116.1,117,142.7,73.3,73.3,83.3,90.4,1.3,85.5,64.6,56.4,55.3,93.7,93.9,181.3,158,8.2,150.5,720.9,604.7,458.3,248.1,182.3,159.1,184.5,609.9,960.3,589.2,348.1,53.8,2.5,124,265.4,58.4,177.4,172.4,99.3,175.4,176.9,203.1,196.1,300.7,436.4,247.9,242.2,197.4,3.2,172.6,172.8,187.1,191.2,190.7,239.2,358.2,142.4,229.4,207,379.9,187.6,537.6,228.7,438.7,348.5,158.3,102.4,172,99.4,251.6,272.4,269.4,482.8,506.2,435.3,561.6,662.5,511.6,520.8,350.3,216,222.6,200.5,229.5,156.6,226.4,44.4,238.1,199.3,132.8,107.6,98.2,247.6,397,98.4,252.1,327.9,2.4,518.1,132.8,131.4,120.1,111.4,107.1,538,402.7,191.4,200.4,143.4,123,153.6,177.7,177.9,135.7,146.4,119.4,146,199.9,240.6,171,168.1,165.9,159.7,159.6,214.9,222.9,236.8,127.2,81.8,122.3,105.6,258.4,162.1,154.8,157.9,123,144.7,148.9,137.9,141.4,287.5,554,307.4,191.5,46.6,34.2,228.1,279.7,281.4,166.4,83.7,133.5,136.2,109.7,108.1,56.3,110.4,96.7,100.6,102.5,102.9,203.7,196.7,199.7,103.7,150.7,211.3,231.2,20.8,231.2,841.7,214.5,170.6,151.4,171.1,135.3,136.2,144.8,44.2,295.6,165.9,119.7,118,121.4,112.2,173.2,205.3,88,91.6,70.1,136.4,216.4,1.6,249.2,575.1,191,58.6,89.6,31.2,78.1,67.4,174.6,111.2,41.5,137.7,162.5,51.3,27,122.9,116.6,52.6,45.6,26.9,100.8,94.6,26.9,140.8,141.4,142.3,48.5,165,240.1,81.4,42.3,143.7,107.4,140.3,140.9,85.7,86,80.6,85.9,35.6,24.9,115.9,114.6,261.3,454.9,221.5,392.2,48,344.8,369.1,235.3,225.1,320.8,70.9,87.2,285,368.5,229.8,97.1,261.8,211.7,82.3,44.2,42.3,91,78.3,27.6,95.7,104.3,98.8,186.6,178.4,160,72.7,221.4,159.3,207.1,135.3,53.7,51.9,185.5,252.1,124.8,112.8,109.1,104.4,137.7,107.3,65.6,121.4,56.1,53.5,87.3,56.4,52.5,44.2,42.9,45.6,46.6,100.8,112.3,68.5,57.3,104,95.6,73.7,74.1,59.3,59.7,82,82.6,64.3,68.7,135,273.2,66.4,71.1,97.6,132.2,60,61.4,410.4,8.8,404.6,191.4,74.5,64.3,65.1,1.6,51.9,50,49.6,48.8,31.2,32.4,66.4,15.1,53.3,49.2,54.8,63.5,78.1,81.3,158.1,58.3,53.4,49.5,47.6,34.7,34.1,42.9,46.1,35.4,239.1,101.2,88.8,20.7,84.8,87.3,60.9,71,82.2,0.5,84.6,62.4,63.4,64.1,61.5,126,47,170.5,264.5,139.8,34.7,30.8,103.7,123.4,46.8,25,23.3,95.8,29.7,140.8,163.2,81.4,18.8,51.1,53.5,40.2,37.8,38.6,35.7,73.7,85.2,80.7,76.9,83.6,82.6,55.5,63.6,92,108,49.6,39.4,58.3,62,149.2,33.1,147.3,17.6,58.1,143.7,139.3,289.7,261.8,64.2,255.1,124,66.1,57,101.5,52.5,54.9,73.3,53.2,48.9,67,60.6,67.4,58.5,103.8,223.6,70,61.8,63.1,54.5,66,68.4,51.5,167.3,79.1,33.2,45.6,56.3,47.9,7.7,52.2,47,25.4,10.8,38.4,46.7,41,81,60.2,55.2,44,50.2,56.1,39.3,54.9,46.2,49.6,51.8,15,51,116.1,61.1,64.1,121,146.4,39.8,80.7,87.3,159.6,77,176.9,144.4,138.3,74.9,115.9,105,225.9,278,138.9,68.6,66.2,224.6,58.4,61.2,103.4,44.4,66,107.8,219,108,102.2,112.7,95.8,321.8,89.8,84.3,106.5,78.2,194.5,90.4,53.9,44.8,159.1,218.1,125.4,89.4,74.2,83,107.8,93,67.1,133.3,107.4,56.4,37,70.3,104.1,55.1,58.3,40.6,32.8,58.1,49.8,45.3,50.7,45.9,64.1,64.3,67.3,33.2,33.3,63.2,60.8,95,44.3,45.6,39.7,36.4,42.8,42.7,60.4,33,51,57.7,71.9,106.5,17.8,136.7,57.6,61.7,63.2,73.7,26.6,107.9,58.7,43.6,44,43.4,60.3,17.3,76.1,69.5,103.9,100.5,101.9,68.3,35.4,66.7,73.3,3,79.8,153.2,135.6,205.8,271,185.1,86.1,159.9,192.8,673.6,169.7,40.7,33.7,42.9,93.8,39.3,44.3,40.9,54.5,37.1,101.8,215.5,521.3,39.7,59.9,102.9,107.1,147.7,94.8,89.3,119,104.3,83.9,38.4,36,162.9,150.4,56.8,26.4,289.3,23.9,123.2,134.9,130.6,120.2,191,188.4,379.5,798.3,36.7,472.1,23.5,281,169.1,63,105.8,115,151.6,76.4,98.8,90.4,90.5,90.5,103.9,50.2,48.1,457.8,256.9,254,150,68.6,252.6,182.6,163.1,221.4,255.6,83.4,86.5,248.8,112.4,119.8,238,121.5,69.3,66,59.2,55.6,108,99.4,142.9,79.2,74.3,175,290,211.3,102.7,87.2,107.3,105.1,72.4,78.1,146.8,348.3,18.4,397,324.3,284.8,309.3,493.1,175.2,186.3,150.5,160.3,195.5,156.7,292.4,116.1,122.4,197.1,215.2,158.3,57.3,87.9,122.6,46.3,38.9,59.1,41.7,73.2,43.4,52.4,80.4,43.7,66,71.5,111.2,105.4,111.8,88.9,146.1,26.5,59,124.6,73.1,110.3,94.8,159.6,157.5,87,90.3,106.9,208.3,173.7,171.9,84.6,25.8,73.3,150.2,134.3,72,82.9,105.2,71,129.2,135.8,195.7,187.1,184.9,102.1,82.9,135,120.9,126.3,92.7,68.7,70.7,102.8,51.6,67.2,94.4,99.9,81.6,87.3,23.9,60.8,114.3,78.8,102.6,126.7,156.9,152,206.4,236.3,127.5,80.6,113.5,72.3,86.1,140.3,110,110.7,118.9,159.6,99.3,164.5,165.5,191.8,83.7,101.1,118.9,65.5,110.3,110.6,179.9,137.2,54,165.3,124.6,135,89.8,23.6,110.1,117.4,235.8,201.5,77.7,89.5,132,136.9,155.8,74.5,79.9,74.3,50.1,71.8,74.4,76.2,72.7,47.4,57.6,100,75.5,72.2,60.8,79.8,77.9,77.1,142.6,71.7,77,91.9,53.3,58.5,73.5,70,87.1,78.4,61.8,55.8,106.8,156.8,77.6,78.4,65.9,67,76.2,62.4,105.6,78.6,68.6,19.9,85.1,87.2,71.7,204.2,59.5,48.1,56.8,106.6,56.3,78.6,92,115.7,117.2,166.1,149.2,172.9,144.8,196,99.5,173.2,122.7,132.7,137.1,273.4,272.1,114.4,107.7,82.1,71.3,95.1,74.8,105.6,67.4,82.5,98.8,92.1,103,88.1,118.8,124.6,111,117.8,150.5,151.2,187.4,247.7,164.6,77.9,65.3,72.4,73.3,70.4,68.5,56.1,54.4,60.5,59.6,64.3,83.4,73.5,67.7,89.3,195.6,236.6,201.6,191,117.9,132.5,103.3,119.3,158,177.1,136.6,123.7,154.6,158.6,158.9,139.4,80.4,76.2,53.8,63.6,80.9,61.2,93.8,39.6,65,65.1,66,70.4,161.3,2.2,163.8,74.1,72.7,61.4,62.4,69.9,72,62.7,62.4,51.9,54.8,49,53,71.6,35,41.5,40.4,5.3,127.4,177,109.3,58.2,18,224.7,37.1,36.3,33.8,58.9,53.8,43.2,44,52.7,62.7,64.4,60.9,48.5,29.7,69.1,49.3,51.5,66.7,58.3,57.2,56.7,64.7,65.9,90.3,60.1,55.1,34.4,91.2,83.1,95,82,64.6,81,70.1,31.8,93.3,92,143.8,108.8,58.4,154,74.2,42,13.1,64.6,104.5,98.2,72.2,71.7,94,184,116.6,130.1,76.8,18.8,88.7,48.3,94.8,144.6,74.8,36.7,90.8,75,63.9,147.1,137.1,90.3,110.6,80.2,78.3,105.1,145,144.7,138.7,101,112.7,139.5,187.1,167.7,156,118.9,217.4,212.7,131,171.3,171.8,152,250.2,91.8,51.3,38.1,89.8,59.1,43.5,55.7,65.7,72.4,77.1,77,58.4,62.2,68.5,88.6,47.9,56.5,65.9,73.5,49.4,63.1,69,68.6,66.7,62.6,54.5,112.3,67,66.7,64.4,55.1,61.1,50.7,64.9,63.6,49.2,51.1,59.8,65.5,32.6,65.2,54.1,146.4,133.5,51.5,54,83.6,46.5,48.2,37.9,55.1,25.9,26.5,44.4,44.9,30.6,61,14.5,49.1,8.2,24.3,19.3,81.7,45.2,96.8,64.9,30.2,40.8,39.1,42.3,67.9,66.2,89.5,268.4,26.3,447.3,1.2,151.8,125.4,262.1,88.3,20.7,102.3,161,172.2,99.3,106.4,136,185.6,144.7,94.7,60.5,93.8,78.5,54,57.2,61.9,76.2,63.3,81.3,75.4,21.2,27.1,49.2,57.9,46.2,67.4,54,49,80.8,101.1,75.4,98.3,81.9,161.3,325.1,316.6,164,236.2,321.3,361,351.2,2.6,238.6,48.3,288.5,231.8,210.2,136.5,258.4,259.4,289.7,119.8,15.3,84.5,133,80.2,116.7,113.2,33.4,103.8,122.5,218.6,132.8,126.6,369.7,176.1,192.2,199.6,195.4,310.8,216.8,215.3,61.4,408.4,362.5,132.6,26.9,53.3,23.1,83.9,128.9,34.7,66,96.3,96.9,209.5,121,233.5,301.2,257.8,301.5,263.1,108.4,157.5,7.5,68.7,4.8,151.5,101,16.7,18.6,104.3,134.4,90.1,237.3,270.4,262.8,95,104.1,247,165,137,154.8,96.6,197.6,203.2,225.8,99.3,88,87.7,98,124.8,275,150.3,151.2,289.2,12.1,297.3,186.4,31.1,48.8,230,13.1,22.1,38,43.5,88.3,88.8,107.4,168.5,174.6,87.4,90,154.6,75.5,53,57.1,160.5,111.4,123.9,150.5,146.4,150.1,99.7,214.1,99.1,157.4,10.7,79.3,122.4,89.8,94.8,70.8,63.3,44.8,84.1,68.8,57.3,66.7,203.9,95.8,88.2,4.1,119.9,104.6,61.4,68.4,157.1,2.2,222.2,9.6,37.1,444.3,22.8,35.3,143.6,113.5,78.1,8.9,60.1,165.3,25.2,92.6,105.8,128.6,27.9,48.9,37.9,77.2,75.7,159.4,87,91.3,117.2,103.9,19.3,31.4,53.3,130.4,13.3,34.3,90.2,130.6,95.6,64.7,46.7,75.1,57.6,60.6,40,43.7,51.1,57.1,54.7,60.4,57,59.7,82.6,40.8,36.9,74.3,56.4,66.2,110,113.2,141.8,94.6,89.7,186.3,21.6,139.9,121.3,156.8,187.8,241.2,196.5,189,122.5,195.5,37.4,93.5,188,49.3,129.8,176.2,94.8,102.4,8.9,74,127.2,131.3,77.1,58.3,121.2,50.8,44.5,107.3,127.6,140.2,83.2,106.4,113.9,124,74.3,76.7,143.1,173,117.6,82.3,46.2,81.7,80.6,21.4,97.7,108.8,89.3,97,169.5,90.2,153.7,87.3,84.2,59.8,66.7,90.1,86.1,71.3,92,79.8,83.7,70.9,66.8,100.1,101.1,96.2,135.1,232.3,236.6,77.2,118,141.2,216.3,132.6,135.9,107.3,66.1,45.1,30.1,77.2,43.5,39.8,65,53.1,43.2,36.7,58.2,42.6,46.5,43.6,40.2,65.1,59.5,120.4,121.2,151.5,250.1,43.7,174.3,179.8,87,91,175.5,67.2,54.9,48.6,45.3,40.8,45.8,42.3,0.7,52.3,39.5,43.8,45.1,46.9,42.7,44.3,53.6,50.1,47,55.6,90.8,192.6,120.8,53.2,71.7,57.4,59.1,6.1,50.4,41.1,92.8,99.5,108.5,110.6,133.2,66.1,106.6,85.1,82.1,85.4,66.1,98.3,63.1,65.2,42.3,55.2,63.3,66,68.9,78,52.5,64.8,85.4,56.6,79.2,100.4,51.8,81.1,77.5,73.5,75.9,86.6,71,110.7,85.4,103.2,96.5,90.7,82.1,74.6,59.2,97.8,60.6,34.4,51.1,62.8,50.9,56.2,50,72.6,66.4,65,65.5,59.2,57.1,77.7,60.5,53.5,64.4,50,35.5,18.7,64.8,39.4,60.8,76.1,135.1,83.4,88.1,53,29,147.8,119.4,7.7,60.4,62.6,129.2,66.2,40.2,54.2,12.3,90.5,196,56,141.1,14,52.1,67.5,105.3,75.2,131.4,70.1,86,144.9,54.7,111.1,63,134.6,64,68.1,82.2,89.5,82.5,132.9,89.8,83.9,84.7,97.6,124.2,78.2,82,84.9,131.1,131.5,124.9,89.7,57.2,174.6,81.3,89.4,93.7,36.2,68.8,94.6,81,102.3,33,53.5,90,89.3,96.8,57.6,61.1,118.3,113.2,172.2,208.9,40.6,63.3,92,45.8,268.2,121.6,67.1,58.8,119.7,123.6,96.8,40.7,55.3,98.9,99.3,101.7,2.5,56.4,76.2,62.6,97.4,119.2,181.7,43.2,46.3,109.7,34.6,152.8,104.2,108.4,63,130,91.9,58.5,40.1,45.9,30.6,33.5,33,31.5,52.8,48.5,65.1,42.2,86.8,60.6,60.7,28.3,18.5,16.1,15.7,14,12.8,18.4,19.7,48.1,18,24.5,100.4,45,174.5,16.2,31.6,28.6,39.2,60.4,66.4,79.9,82.4,92.5,97.4,57.1,25.6,26.6,27.4,27.6,25,21.4,18.3,18.9,19.4,15.1,23.8,198.2,58.7,26,46,40.1,34.2,27.2,22.6,53.2,27.7,22.1,17.2,17.8,23.7,22,23.5,22.7,30.5,15.1,9.4,9.8,20,24.9,22.5,25.4,26.1,29.6,61.8,42.8,72.8,61.2,60.4,96.5,69.5,46.7,40,49.5,41,30,16,18.3,31.4,27.3,25.9,23.9,26,26.2,26.8,26.1,27.9,63,94.4,127.7,59.8,55.5,24.5,36.8,23.1,32.7,22.3,20.6,21.3,21.5,24.7,25.5,28.2,23.2,27.8,25.5,25.7,18.5,53,23,18.2,19,21.7,15.8,24.4,29.9,28.3,24.1,22.4,19.8,18.2,16.7,21,22.8,23.6,17.3,16.1,38.5,28.8,7,29.7,79.7,116.5,73.6,84.8,136.5,81.3,32.3,87.2,27.9,112.9,58.1,70.5,70.9,70.9,84.4,110.9,40.2,33,47.9,68.6,109.4,138.6,79.5,23,20.8,24.3,24.4,18.1,26.5,26.2,35,94.8,95.8,32.4,58.3,61.9,121.7,59.2,17.1,35.8,54.9,47.7,24.6,53,48.1,50.3,39.2,92.2,18.6,57.4,123.4,92.4,81.1,78.6,52,36.5,41.3,58,47.8,27.2,27.6,49.6,35.3,34.3,42.3,40.3,41,21.1,24.8,15.3,16.7,30.4,33.1,33.4,36.2,32.1,25.8,29.7,35.6,112.3,67.7,135.7,214.2,337.5,245.5,68,175.1,150.3,264,169.4,173.9,116.4,82,99.8,143.1,226.7,157.7,180.3,254.7,306.2,215.4,117.7,327.4,383.4,240.5,75.1,75.3,164.7,384.5,313.6,139.7,138.1,225.8,149.7,140.8,131.5,97.1,98.6,127.5,71.4,38.5,40.6,80.9,135,125,80.5,78.3,72.5,102.2,112.8,124.7,14.9,120.6,151.5,92.4,125.9,200,101.6,183.6,135.4,151.3,138.6,138.8,125.3,100.4,105.8,255.9,156.4,221.6,167.3,120.2,35.8,68.7,58.1,0.3,165.9,80.1,105.3,92.1,108.9,101.5,109.3,105.1,78,94.1,97.1,105,134.9,163.2,112,0.5,118.8,116,120.3,113.3,111.6,125.6,62.8,57.9,85.5,108.7,99.2,99.5,11.8,30.9,81,62.2,146.1,155.3,40.2,50.7,112.6,59,74.4,172,92.7,156.7,83,82.7,52.2,71.6,179,208.3,78.6,69.7,149,124.1,94.1,46.4,7.2,101,96.5,52.4,269.5,36,100.3,170.3,118.4,101.1,77.6,54.9,224.2,167.2,48,106.2,139.7,184.9,175.9,80.4,107.2,204.1,110.9,65.3,91.8,72.6,10.1,39.1,53.3,280.8,161.2,163.5,268.3,241.2,140.4,4.8,109.7,134.1,175.8,173.9,123.3,114.9,230.7,127.7,134.4,99.8,37.4,45.5,11.3,120.9,107.7,42.2,75,103.7,105.1,73.5,74.9,77.5,58.3,59,67.2,77,71,121.1,82.7,97,64.7,80.2,63.6,45.6,40.5,120.5,97.3,86.5,72.9,108.2,105.9,84.6,72.3,77.9,90.6,80.2,76.5,90.4,65.5,73.8,76.1,79.6,90.5,89.3,96,85.8,85,125.2,209.4,189,125.4,167.8,111.8,129.2,94.9,101.9,116,117.5,121.2,113.2,115.7,227.3,108.4,55.9,155.7,98.1,121.2,214.4,104.1,59.8,15.7,52.9,157.7,99.6,98.5,104,63.1,67.2,67.2,136.9,115.2,94.7,151.5,174.2,65.3,66.5,47.4,70.3,46,60.3,61.3,64,103.6,11.7,76.4,75.9,60,95.1,66.7,60.4,69.6,64.2,60.3,90,86.2,65.4,68.3,64,80.7,145.4,168.3,101.9,103.3,91.7,90.5,103.2,59.4,60.6,56,11.9,91.8,25.1,73.6,50.3,52.4,105,98.4,55.7,122,94.6,94.1,134.7,261,258.7,217.7,221.3,178.2,160.7,121.8,117.4,184.7,212.6,142.3,153,223.1,184.9,191.4,201.4,245.7,221.6,235,223,170.1,154.5,19.6,91.6,105.9,188.9,143.6,138,31.1,50.3,71.3,130.5,209.2,176.6,173.3,121.9,153.5,146,296,179.1,110.9,68.7,109.4,79.1,148.5,150.1,138,154.2,145.4,182.2,61.7,44,76.8,206.5,83.7,80.9,108.9,77.1,68.1,143.5,50.8,45.5,116.9,164.1,103.6,114.9,141.6,100.8,94.4,75.3,106.3,67.8,104.4,83.1,85,80.6,10.3,68,68.5,102.8,109.5,156,160.7,120,213,107.7,102.9,79.9,77.2,117.7,121.6,123.6,14.6,18,60.5,145.8,83,72.1,78,83.9,50.4,66.7,86.8,84.3,136.4,121.4,89.9,90.9,102.5,107.6,113.9,193.2,133,311.1,139.6,104.1,78.8,69.1,80.7,57,72.4,92.7,12.9,105.2,111.7,76.6,94.9,116.8,120.9,122.6,125.5,62.1,56.3,49.5,95.3,110,92.5,199.4,145.5,250.5,101.4,130.6,102.7,92.3,194.9,158.7,101.5,64.2,231.5,332.4,70.6,161,135.2,166,209.6,184.9,179.3,166.3,97.7,138.1,139.4,128.6,81.5,57,91.3,186.1,211.4,245.5,186,154.5,123.2,131.8,131.3,123.2,86.7,119.7,120.5,40.5,36.6,193.8,201,182,230.2,203,170.5,195,142.6,136.5,157.3,139,138.9,138.2,130,142.4,116.2,113.2,101.1,98.7,73.5,90,102.3,175.9,95.6,18.5,67.9,8.6,149.4,101.3,146.2,84.5,82.4,68,68.6,61.4,55.3,118.5,102.3,137.7,131.9,87.8,89.4,54.1,106.4,86.8,88.9,61.4,56.6,100.9,62.4,74.7,54.6,77.1,61.3,42.9,85.7,77.2,64.1,59.9,74.3,103.7,113.9,97.4,80.6,65.7,99.7,145.5,146.4,97.3,78.8,61.6,21.7,69.7,74.6,120.7,107.1,108,82.5,86.3,88.1,103.8,104.4,66.6,110.9,522.4,357.8,15.9,55.8,206.3,209.4,194.2,227.1,132.8,103.1,94.4,90.1,68.3,79.9,99.6,110.2,118.3,120.7,126.1,96.7,154.1,170.6,113.3,110.9,110.8,75.9,101.2,54.3,60.9,47.4,79.4,70.5,75.3,49.2,77.7,68.9,13,96.2,124.2,242.3,109.8,61.9,97,102,101.4,125.5,56.3,117.8,66.4,97.2,67.8,74,105.8,92.8,60.7,119.6,98.3,117,79.3,124.4,69.7,122.7,57.1,66.1,46.8,40.4,34.6,61.9,70,92.8,151.4,62.8,68.8,78.6,70.9,82.3,107.1,83.7,60.5,56.9,110.3,68.7,72.6,98.3,75.5,89,75.3,22.9,45.8,64.7,65.3,70.7,137,214.5,220.5,170.3,121.8,89.9,87.7,78.9,39.2,52.7,51.1,73.7,66,73,66.6,83.5,102.5,62.1,62.7,63.3,194.7,198.4,150.9,135.7,15.1,135.6,130.8,67.1,90.8,3.1,100.7,198.9,271.9,11.7,116.4,48.7,102,73,114.7,51.8,68.8,103.3,125.8,99.1,66.8,99.5,84.6,59.1,60.6,70.6,83.8,82.7,69,79.9,72.3,62.7,70.5,74.5,74.6,66.4,55,67,58.6,66.9,69.1,64.9,69.2,51.7,65.4,49.2,44.6,42.7,60.5,47.5,35,44.1,46.4,46,47.3,63.2,69.8,28.4,57.3,58.6,57.8,35.6,48.2,53.2,51.5,53.2,78.9,67.8,57.4,59.1,65.2,81.7,47.4,99,85.2,29.5,56.9,65.5,54.6,62,68.8,87.3,79.6,62.3,77,78,60,46.8,46.4,75.6,63.3,61,34.4,63.5,75.3,68.3,74.9,96.8,84.6,86.9,53.3,64.2,78.3,62.5,71.6,63.8,82.2,62,63.9,83,75.5,61.2,72.8,60.9,63.1,73.3,116.5,75.4,67.9,45.7,55.9,62.6,67.4,57.3,57.3,61.8,55.5,67.1,70.4,67.4,81.6,62.5,46.6,81.9,65.5,76.2,71.3,69.4,78.1,75.8,58.1,67.4,76.4,65.4,55.9,58.2,63.6,61.8,49.4,66.6,60.4,64.5,66.8,71.9,55.5,72.1,63.4,66.7,51.7,47.3,49.2,46.8,30.4,11.9,60.3,174.1,73.8,87.4,11.4,81.7,67.6,70.9,67.5,62.6,79,54.2,57.4,57.7,37.1,67.7,84.2,35.8,59.1,54.1,64.4,66.2,63.4,60.5,86.4,82.2,102.4,137.4,272.5,216.1,111.9,104.5,91,89.6,73.5,72.3,67.7,84.9,80,91.4,79.9,64.6,80.3,90.7,89.2,67.9,20.5,88.2,51.7,71.5,122.5,156.9,193.3,161,182.8,148.7,163.7,131.4,78.5,93.4,80.7,71.3,110.8,109.9,117.7,105.8,17.7,138.3,112.7,118.8,193.5,110.8,85.2,46,51.2,62.1,59.7,87.1,52.3,51,46.1,72.8,89.8,78.4,96.8,62.3,64.3,58.1,63,68.7,107.7,101.4,76.7,77.7,66.8,62.2,62,68.4,61.8,57.5,68,76.9,69.5,70.8,67,93.2,77.2,67.6,49.3,53.4,57.4,62.1,66.9,54.1,67.5,73.4,60.6,106.4,178.6,182.6,83.9,42.6,62.5,56.7,64.4,36.6,72.2,53.9,61.7,54.9,61.3,83.8,84.6,59.6,59.1,57.4,66,99.4,46.7,137,55.4,76.4,57.1,134.2,86.4,66.3,66.7,63.4,62.3,57.8,42.9,57,63.1,69.5,69,65.4,62.6,72.2,84.5,133.4,75.8,79.5,51.6,56,68.7,77,66.4,68,60.6,71.3,73.6,116.9,105.5,103.8,73.3,85.5,67.3,65.8,70.6,60.7,78.7,67.4,53.5,54.6,54.4,58.3,64.7,66.7,70.9,55.1,59.8,71.3,79.1,76.6,81.4,70.1,56.4,71.8,57.9,115.4,80.5,92.3,81.7,46.7,72.7,53,65.3,73.5,64.6,79.7,74.3,61.1,67.4,82.5,72.8,58,52.7,45.9,59.4,52,67.1,50.8,30.3,53.7,74.9,64.3,81.5,66.1,143.5,195.9,127,98.5,134,78.8,85.2,83.9,81.6,73.7,75.8,54.9,54.5,75.4,6,72.2,62.7,58.7,93.8,58.9,63.6,71.4,75.7,82.1,80.7,86.8,105,99.2,145.6,75,74.6,77.4,66.8,78.6,80.9,94,102.8,70.9,89.7,63.5,56.9,53.6,48,63,64.4,56.2,52,65.5,60.9,78,85.2,93.6,212.1,70.8,63.9,66.3,62.5,66.5,65.7,74.5,56,46,39.5,74,97.1,155.8,67.9,38.2,76.8,56.9,57,53.2,59.2,64.7,56.4,60.7,47.7,58.8,66.5,76.1,170.9,94.9,79,16.7,30.3,89.4,67.3,70.2,75.5,64.6,79.4,84.1,79.7,80.8,118.1,104.7,68.1,57.2,45.5,138.9,174.3,132.1,73.8,64.6,131,84.3,83.6,92.8,98.2,97.1,101.3,93.9,68.5,98.1,88.1,92.8,73.4,66.1,17,127.6,15.8,191.5,64.3,130.5,131.4,118.1,141.1,41.6,103.8,68.4,77.9,102.4,43.2,39.8,67.6,68.8,106.2,86.6,113.3,195.4,192.7,172.9,248.5,354.7,374.4,205.3,173.7,35.6,170.7,172.6,80.7,79.3,127.6,103.6,115,128.8,160.3,105.3,105.1,49.6,47.8,76.7,73.2,94,43.3,56.6,53.4,73.6,72.2,86.4,81.7,84.2,120.1,34,191.4,4.7,106,95.5,99.4,106.3,95.6,77.9,85.5,90.8,77.2,67.3,109.7,122.1,114.5,183.4,18.2,66.2,67.2,60.3,74.1,63,67,66.5,79.2,74,47.9,56.7,53.7,93.5,85.3,23.7,92,106.7,165.5,148.2,252,323.8,68.7,93.4,54.7,153.3,397.6,249,358.3,81.5,65.9,61.6,66.5,75.2,51.1,45,61.6,58.7,58.7,62.1,64.3,53.1,8.2,57,53.2,62.5,67.1,77.2,62.6,61,61.6,68.9,92.9,118.8,49.9,42.9,54.4,72.2,67.3,59.6,62.8,62.7,58.4,64.1,53.9,67.9,79.7,75.7,90.3,86.6,60,68.3,60.5,70.8,64.4,69.1,78.9,149.9,147.3,191.7,148.4,261.4,143,77.1,65.7,59.5,50.8,56.1,58.4,59.1,58.2,73.3,65.5,99.9,119.6,83.8,62.6,65.4,56,65.5,58.8,58.2,68,74.5,67.3,62.8,63,69,57.7,58.3,82.4,72.1,58.6,60.2,63.2,50.3,67.1,64.3,61.3,42.9,57.8,43.3,26.9,46.8,50.5,68.1,65.8,72.2,48.6,164.3,38.9,62.4,40.8,50.1,71,43.6,76.1,68.8,64.3,62.7,92.3,172.7,58.2,124.2,87.4,107.9,352.9,175.9,164.9,10,45.3,79.1,68.8,25,58.9,45.1,88.3,217.3,31.8,33.3,32.1,33.8,26.6,24.9,25.2,30.8,33.3,32.7,40,42.1,36.2,29.8,25.4,20.6,27.5,31.7,20.4,9.2,29.7,87.5,46.5,34.1,30.6,33.1,39.2,68.4,129.3,56.2,23.6,41,67,23.5,32.9,33.2,65.9,69.5,58.2,71.7,39.4,65.4,46.9,64.6,62.9,79.2,99.8,74.1,62.2,54.7,50.9,57.6,37.9,128.1,37.4,119.1,124.7,15.8,401.1,13.2,451.1,35.6,344.9,71.6,654.7,60,50,67,41.3,35.9,167.7,103.4,21,77.8,103.3,113.2,196.7,88.1,53.4,85.7,34.7,94.4,68.8,88.4,126.8,36.1,140.9,75.8,100.5,126.1,103.2,117.6,115.9,103.3,214.9,127.4,35,53.8,94.4,126.5,70.7,55.7,124.9,135.8,166.6,168.4,58.4,138.4,152,156.2,193.4,1.2,191.3,113.3,56.8,59,135.8,101.8,242.4,116.9,117.8,145.3,142.4,188.1,85.5,82.5,84.2,95,22.9,61.2,87.7,67,75.6,49.7,39.6,8.4,20.9,158.5,139.7,103.6,66.7,38.1,44.9,62.3,52,49.4,81.3,114.9,57.7,40.1,100.4,94.8,85.9,92.1,82.7,57.7,60.4,79,59.7,22.8,80.3,98,33.5,93,76.3,98.6,43.1,97.7,32.3,31.9,62.5,85.9,118.9,268.2,371.7,147.8,63.3,27.5,55,14.9,133.1,105.1,101.1,110.9,106.1,93.9,88,83.4,81.4,76,39.3,39.8,141.4,126.3,125.2,72,79.9,153.4,173.8,132.9,287.4,314.4,44.1,45.9,303.3,281.3,154.5,120.4,193.3,136.1,120.6,132.7,1.6,129.6,222.2,314.7,159.5,131.6,47.5,52.9,55.6,9.8,92.4,102.2,66.6,175.4,60.4,50,113.6,48.3,99.3,168.1,161.4,142.9,139.5,146.6,143.5,290,50.7,92.4,144.1,144.9,145.9,130.5,35.6,43.1,124.5,98.6,145,124.1,156.6,163,194.5,121,96.1,52.4,92.6,118.7,119,98.9,128.5,54.8,79.4,128.9,157.1,144.5,173,76.3,76.5,78.2,77.6,88.5,52.1,27.1,26.2,24.5,25.8,94.7,10,43,49.4,82.4,151,65.6,41.7,48.7,104.3,7.9,176.7,86.4,131.7,69.4,114.9,78.4,110.8,117.2,92.7,97.6,87.2,138.7,76,119.9,81.4,135.5,104.2,80.8,86.9,119.9,110.6,197.4,75,387,242.7,246.1,30.5,59.7,190,391.4,124.4,342.1,29.1,36.5,350.9,722.9,221.7,160.9,122.2,86.2,83.9,81.5,73.7,86.1,134,82.6,91.9,61,34.9,50,63.2,46,178.8,97.1,167.7,409.6,86,330.2,78.4,388.3,296.4,95.3,106.4,126.9,79.2,90.8,120.3,107.5,144.1,152.3,109.6,103.3,37.1,77.1,95,74.8,69,140.2,96.3,46,36.1,65,64.3,0.8,78.3,82.9,19.7,16.3,65.9,37.5,14.7,47.6,82.1,83.8,61,63.9,92.5,51.8,45,55.2,29.8,42.6,35.6,62.7,48.2,62.3,86.2,72.3,53.1,78.7,78.1,75,186.7,136.7,232.4,17.3,102.7,197.2,147.8,79,79.6,88,114.3,96.2,72.4,39.9,94.3,104.3,100,82.1,100.2,131.8,145,125.6,95.8,61.5,45.5,39.6,32,46.3,186.7,342.3,197.1,52.5,129.1,135.8,111.4,58.1,74.5,66.5,47.4,90.9,73.1,68.2,47.7,60.1,33.4,49,82.5,60.1,52.6,10.9,40.9,44.9,45,48,54.3,63.3,84,83.1,71.3,48,79.1,76.2,91,91.8,164.7,178.2,113.5,129.4,93.5,91.5,72.2,75.7,77.5,69.4,71.4,35.6,41.1,60,67.5,111.3,144.7,25.9,56.8,57.9,84.1,119.6,72.4,56.6,141.1,93.3,43.6,78.9,49.3,27,35.2,168,76.7,39.9,181.4,95.9,398.2,140.2,26.6,89.6,69.9,49.9,74.5,81.6,88.6,67.2,42.6,48,73.3,217.2,72.4,140.3,57.2,91.6,64.5,90.4,129.7,168.9,112.8,147.7,121.9,60.1,109.2,108.6,112.3,110.8,97,67.9,60.4,92.9,106,54.5,76.6,112.1,368.4,132.6,85.5,119.9,134.9,42.4,94.5,117.8,111.8,103.3,98.2,100.5,117.3,177.4,9.7,73.9,97.6,100.3,115.5,103.6,191,171.9,155.4,61.5,94.4,89.9,102.4,73.9,64,74.7,44.6,78.7,119.2,178.3,75.6,76.1,81.2,87.2,79.1,204.7,257.7,79.2,59.5,77,96.2,77.3,23.8,57.8,81.6,77,199.4,90.7,74,68.5,64.4,89.9,68.8,82.5,69,65.9,31.9,53,61.8,66.6,33.8,61.1,87.7,66.5,59.2,64.3,58.5,63,48.7,46.2,38.6,55.8,39.5,54.7,96.2,80.5,102.7,77.2,173.8,30.7,167.3,155.5,55.4,69.2,65.3,60.9,55.7,54.7,64.2,47.1,60.5,60.4,93,93.2,61.3,77.4,43.2,54.4,59.5,57.5,11.3,74.6,74.7,5.1,75.3,80,114.5,94.2,175.1,91.9,80.6,43.4,59.6,41.8,46.4,37.3,57.7,77.8,35.5,0.8,33.4,2.3,70.8,42,58.2,60.9,94.2,65.3,43.5,93.6,100,117.3,79.2,68.8,71.8,38.8,50,79.1,83,101.8,46.7,23,68.5,64.7,60.6,69,62.5,67.2,76.3,74.4,161.6,35.2,75.5,58.3,27.9,59.5,50,67.8,90.5,101.2,70.6,82.8,95.6,96.1,194.6,195,92.7,178.4,79.9,103.6,101.9,110.3,185,99.2,93.7,173.3,63.1,72.4,123.9,91.6,79.4,92.4,87.8,75.9,67.6,50.8,64.1,83,76.5,87.2,58.9,88.6,78.7,82.6,29.8,85.3,82.3,78.7,71.5,83.4,203.3,32.7,114.6,66.2,136.8,65.5,34.4,30.1,97.7,24.4,50.6,61.6,85.1,96.3,69.2,16.7,107.8,72.7,110,148.8,1.9,173.2,81.5,43.1,84.9,89,70.2,147.9,132.5,57.5,102.5,192.1,111.6,127,125.6,104.3,105,68.9,52.9,73.2,33.6,109.3,33.5,52.3,41.8,80,70.8,105.9,87,69.5,46.5,269,152.7,311.5,61.7,88.8,133.9,90.5,79.8,36.4,24.5,67.1,76.7,92.8,129.2,170.9,98.4,222.2,234.2,145.7,115.7,146.4,110.3,114.8,307.2,167.7,73.6,88.3,80.1,102.9,103,84.3,132.7,95.5,90.9,240.7,135.6,135.1,38.3,194.5,183.5,132.9,248.6,127.3,188,155.3,184.2,113.3,78.3,82.2,93.3,79.5,75.2,98.8,95.7,185.9,62.3,64.9,95.2,113.2,121,140.7,26.5,7.4,68.6,140.8,231.3,152.1,20.4,206.9,91.3,86,54.8,29.9,34.7,40.1,42.4,53.3,39.7,41.8,44.3,45.6,56.8,27.2,58.9,24.3,48.3,46.9,45.2,44.7,39.2,72.6,52.9,55.7,61.1,49.1,58.8,62.4,51.5,44.6,58.1,49.5,69.3,81.9,61.9,114.8,30.7,23,26.3,65.2,97,110.2,108.4,77.9,122.3,79.8,124.3,66.1,97.2,54.1,44.9,66.3,123.8,196.9,178.5,111.3,108.2,100.5,31.4,72.1,107.8,44.6,57.4,45.7,126.7,149.9,116.1,231.6,47.2,114.2,235.3,141.2,98.9,82.1,76,61.2,34.1,78.9,24.3,46.3,86.4,91.2,28.1,57.8,24.1,75.8,20.7,106.4,123.2,103.8,55.7,76.1,100.8,133.2,118.8,71.6,27.2,87.5,88.6,362.9,426.2,160.7,15.9,209.8,318.7,15,251.9,30.6,83.7,20.9,91.5,66.8,26.4,182.2,148.2,84.2,192.6,101.7,83.6,55.9,40.9,523.9,265.6,33,186.4,472.8,43.2,30.3,266.5,165.5,300.6,183.9,256.7,84.8,65.3,92.3,153.1,137.3,186.9,94.3,93.4,82,83.1,18.5,89.6,56.9,163.1,165.1,164.9,135.3,101,87.1,43.3,74.8,33.5,38.4,76.2,121.8,101.6,66.5,103.6,186.9,37.2,38.9,77.3,61.6,181.6,42.1,337.9,100.1,265.9,67.4,121.4,103.7,139.1,129.9,123.8,184.8,28.3,163.6,93.4,93.5,60.2,129.3,165.3,95.4,96.1,78.1,117.6,53.3,48.9,127.1,46.4,94.2,159,164,140.5,81.8,151.5,19.1,92.4,47.1,57.8,57.8,65.9,456,147.7,59.3,157.3,101.2,60.1,113.6,325,224.7,281.4,128.1,176,172,24.9,123.7,99.5,105.6,89.2,70.4,29.3,39.7,66.9,73.1,93.8,113,111.1,61.5,10,47.8,88.2,125.5,33.7,260.5,222.6,195.8,194.9,107.6,55.7,85.6,6.7,77.8,42.8,42.1,75,72.4,60.2,58.7,1,68.6,32,29.1,135.3,93.8,94.5,68.9,41.5,104.1,42.6,61.7,62.3,57.5,51.9,55.5,55,55.6,57.2,57.8,55,44.2,75,109.6,45.7,50.7,55.2,49.8,103.1,239.9,108.2,64.9,184.6,91.9,37.5,19.6,35,66,74,116.8,118,114.5,92.4,109.7,48.2,54.5,168.5,207.2,61.1,95.5,61.7,61.9,78.3,78.1,58.5,61,47,34.8,75.1,66.8,33,91.6,91,63.5,71.7,118.3,104,51.2,47.5,59.1,52,73.3,80.3,54.3,53.2,57.3,57.2,44.3,93.4,67.8,49.4,74.9,67.5,19,24.7,61.9,41.8,87.1,138.6,91.2,55.4,294.8,32.8,86,117,1.6,124.6,58.6,214.4,117,15.8,68,79.8,190.5,248.9,255.1,15.9,191.4,100.5,36.6,407.5,102.9,116.9,76.4,84.3,85.1,66.5,115.7,37.4,109.2,84.5,56.1,70,93.1,129,88.3,39.8,61.4,31.3,120.5,137.6,143,109.6,36.5,123.9,122.1,99.1,56.2,121.9,81,96.8,64.5,43.6,205.8,127.9,26.4,45.6,25.9,70.7,135.1,72.2,45.9,193.7,46.1,45.7,68.5,63.1,42.8,38.9,47.5,49.1,68.7,49.7,54.7,70.7,71.3,72.7,76.7,81.6,77.9,85.7,68.6,100.7,58.1,57.9,54.7,26.3,116.4,71.7,59.3,92.7,87.1,98.2,106.1,135.2,49.1,73.1,58.2,88.7,65.7,70.6,98.5,127.3,92.3,61.5,20.6,80.4,10.9,54.1,48.3,48.9,107.9,72,67.1,60.6,69.1,66.6,62.8,54.6,2.4,81,77.2,75.4,51.6,67.4,98.5,69.9,72.1,270.3,219.1,235.2,151.9,141.3,98.6,113.2,83.1,72.2,73.2,72.7,66.3,68.5,116,75.7,80.5,53.8,55.5,45.3,57.1,29.1,0.7,27.7,60.8,66.5,69.3,64.3,52.1,11.5,74.3,59.1,52.1,12.9,60.2,88.8,85.1,256.6,355.3,188.4,60.4,62,74.2,20.1,138.9,105.9,92.7,113.9,66.7,63.5,72.7,140,104.3,115.6,220.3,107.5,102.1,92.2,63.6,11,42.6,88.4,66.9,9.8,194.7,167.1,72.7,41.2,12,17.7,316.3,44.9,85.9,42.2,41.6,69.2,72.9,64.2,48.3,47.5,67.9,72.8,78.5,77,95.2,63.2,6.2,54.8,104.7,69,9,56.2,103.4,78.8,93.5,128,268.3,181.6,122.4,88.7,128.8,76.3,63.8,52.5,50.3,48.9,52.3,52.5,62.2,56.7,58,58.5,73.8,59.8,61.9,49.9,46.8,50.1,40.9,58.8,148.6,135.1,103.1,174.5,69.4,67.4,73.9,32.1,73.4,107.1,115.7,103.7,104.8,63,129.7,150.2,112.7,113.1,53.9,153.5,29.8,46.1,56.6,24.8,25.2,37.8,26.7,25.7,25.2,26.7,24.5,27.2,25.2,25.9,84.3,82.9,42.8,59,65.8,74.7,552.7,134.7,37.8,48.5,35.3,31.6,72.9,59.3,46.3,44.5,50.7,52,220.5,38.6,37.8,39,39,26.3,37.9,40,47.2,53.8,32,40.3,39.5,29.5,10.8,44.4,55.9,40.8,51.5,23.3,44.6,27.6,34.9,34,61.8,63.8,116.1,42.9,85.9,28.1,52.9,57,77.8,52.5,39.2,40.4,70,62.2,60,61.3,77,76.7,149.6,59.1,58.8,60.8,60.2,44.2,46.2,51.5,51.8,27.8,0.8,30,25.7,26.9,73.9,34,35.5,36.2,51.5,77,5.8,38.7,22.5,20.8,66.1,63.2,16.1,77.3,75.9,62.4,59.7,40.4,41.9,70.4,55.5,56.9,51.4,53.4,46.9,44.4,51.9,38.5,52.3,49.2,76.3,236.3,32.7,39.4,42.2,42,46.4,49.3,41.2,28.3,37.8,36.4,54.7,39,33.6,39.1,39.9,38.7,37.1,37.5,36.7,45.4,43.2,31.6,30.5,60.7,74,73.1,116,106.6,54.8,55.8,50.1,52.2,65.7,66.9,39.3,39.9,57.1,58.2,121.1,506.2,88.7,143.8,245.3,398.2,76.6,78.1,76.7,80.3,61.1,60,54.1,53.9,17,89,56.3,46.3,46.8,41.8,41.4,51.3,50.9,48.8,48.4,46.7,46.8,79.3,49.2,49,49,48.2,56.6,60.1,39.1,38.6,60.3,54.6,53.3,51,52.2,51,32.9,32.3,64.7,64.8,65.2,62.7,243.7,18.7,78.1,53.6,50.4,46.3,46.3,52.2,41.1,44.7,46,41.3,51,38.6,39.4,41.7,43.6,71.4,22.5,35,67,126.4,106.4,53.3,52,55.6,47.9,11.9,46.7,46,38.6,42,53.3,66.4,39.7,38.4,78.7,72.4,71.5,73.2,72.4,70.4,170.8,97.7,91,67.3,58.6,54.8,53.8,59.8,88.3,91.1,85.9,84.8,64,168.2,53.8,39.7,38.1,38.9,40.8,39,52.9,39.3,38.9,31.5,33,36.9,42.2,30.3,32,41.9,31.9,34.8,38.4,39.3,39.5,53.1,66.8,38.5,32.9,197.2,162.3,110.9,89.9,68,53.7,53.7,53.1,75.5,74.3,78.9,79.7,198.9,67.5,53.8,65,65.4,79,43.1,41.4,52.9,53.5,49.6,48.8,59.1,55.1,39,40.2,40.3,37.9,53.6,30.5,18.6,49.5,35.4,85.2,183.9,58.1,60.2,67,40.2,40.4,37.9,2.1,53.6,32.5,33.5,32.8,34.5,66.7,67.6,238,110.2,115.2,101.6,66.9,62.3,79.4,76.4,154.4,173.3,83.2,234.2,165.8,19.4,122.5,48.7,44.4,191.7,26.5,26.8,22.1,9.7,25.8,149.1,119.1,80.5,72.1,40.8,39,27.3,68,33.6,32.4,52.3,27.3,28.7,44.7,33,31.6,41.5,29.1,27.5,39.2,38.5,37.2,40.5,40.2,34.9,34.1,70.4,72.7,23.6,65,197.5,625.7,1542.2,2.9,90.5,60.2,58,60.6,57.1,41.1,43.2,63.5,67,47.9,82.2,124.9,55.4,77,37.8,53.2,31.1,44.7,40.1,33.4,5.2,114.7,79.9,63.3,26.4,41.8,31.3,37.1,9.5,28.7,34.5,43.8,38.4,47.1,51.9,55.4,52.1,41.8,34.3,52.2,13.5,31.2,31.9,36.2,25.3,27.1,41.8,32,32.8,45.1,36.9,37.6,35.7,26.8,40.9,67.5,77.4,39.2,169.8,174.8,40.1,118.2,76.2,102.5,192,96.5,44.6,39.4,25,40.4,39.1,15.8,64.7,31.3,34.3,109.7,41.6,37.3,198.7,36.5,64.8,14.8,91.2,100.3,127,110.6,74.5,12.2,179.6,92.8,236.1,301.9,164.7,78.9,61.5,97.6,71.4,55.4,68.5,86.9,140.3,303.7,141,103,262.2,554.9,292.5,1189.5,637.7,693.8,66.2,521.1,532.5,132.7,327.9,164.6,166.6,133.5,62.5,67.2,76.1,76.5,365.1,20.4,136.6,85.9,162,175.6,0.9,85.9,134.5,91.9,103.9,74.9,91.4,63.7,39.4,55.6,15.3,51.4,65.9,77.2,71.5,71.6,72.1,69.2,83.6,91.7,85.2,75.1,51.1,75.3,104,76.3,67.6,62.8,90.5,98.5,43.1,56.5,60.1,53.3,43.7,47.1,59,46,6.5,28,71.2,65.1,50.9,50.3,53.6,69,71.2,63.2,75.1,202.7,162.9,319.3,126.2,47.2,161.4,96,151.6,69.8,107.8,43.2,68.9,80.1,141.8,113,117.1,95.7,147.3,99.6,94.1,119.7,95.1,103.4,146.7,144.6,123.2,147.9,128.6,170.5,132,76.3,61.7,89.8,87.8,44,25.4,49.9,70.9,32.9,28.2,47.7,71.7,95.6,107.7,87.7,50.5,36.3,92.7,94.2,88.9,92.7,117.1,65.5,27.5,9.7,51.2,66.3,39,39.2,47.9,74.1,28.9,17.2,5.5,17.2,13.4,6.9,8.5,12.8,6.7,7.2,9.6,25.3,7.5,6.8,6.8,7.3,5.8,37,93.9,79.6,59.2,47,6.2,3.7,10.1,13.3,10.6,62.2,60.9,61.2,43.9,42.2,48.9,44.9,93.4,26.2,45.9,108.3,75.4,86.3,78.6,70.3,65.2,106.2,67.4,105.5,77.4,52.1,79.9,78.9,79.6,67.4,63.9,86.7,96.6,90.8,89.4,82.2,80.5,73.8,123.9,178.2,226.1,122.3,137.8,116.1,128.1,94.1,109.3,94.9,87.9,84,53,101.2,124.6,102.7,96.3,60.9,150.2,43.4,136.6,84.4,76.8,73.9,20.1,83,4.8,78.7,52.9,91.3,122.4,183,109.5,148.6,111.1,138.2,104.5,99.5,153.6,183.9,107.6,164.9,93.7,162.9,81.6,175.2,68.7,168.8,100.1,108.9,162.6,108.2,136,149.4,108.2,120.8,108.7,94.9,121.8,108.3,101.5,84.5,61.6,179.5,104.3,93.9,198.5,173.8,152.1,133.5,149.9,67.9,91.1,136.1,112.3,59.2,171.7,306.9,154.2,155.3,194.3,276.5,162.7,170.5,127.9,121.2,108.8,78.2,106.4,35.1,114.7,23,86.5,91.6,118.4,108.4,171.8,593.1,149.4,159.8,398.9,135.5,131.6,141.1,287.4,218.8,342,505,100.4,98.1,62.1,63.5,81.3,97.9,52.1,98.6,70.7,60.5,55.4,37.7,5.6,37.3,19.2,36.2,40.3,39.4,6.8,62.3,59.6,72.4,73.2,55.8,66.9,71.7,101.2,72.9,61.4,38.7,18.7,51.2,71.5,94.7,68.3,50.5,62.7,220.9,36.3,60.7,66.1,37.9,0.6,43.7,41.2,55.4,50.2,53.7,51.6,79.5,19.6,239.9,82,39.4,35.7,17.8,32.7,45.5,47.4,36.2,37.5,36,32.6,46.1,67,102.7,231.2,65.6,51.6,45.1,23.4,37,64.4,75.4,50.7,60.7,62.7,88.2,90.1,72.2,24.9,23.4,23.6,17.4,18.6,22.7,21.9,20.4,33.6,41.1,46.7,90.1,51.5,19.8,21.4,34.6,165.6,437.1,622.2,338.4,219,96.5,138.3,183,184.7,504.1,138.9,173.2,127.6,134.7,111.5,117.5,110.5,141.5,154.4,103.9,105.9,160.5,70.5,7.2,42.2,17.3,32.2,57.5,21.2,240.1,67.6,9.2,5.7,49,259.5,203.3,149,134.6,89.1,46.6,19,154.1,209.1,161.1,22.9,359.2,92.4,60.6,51.8,52.6,44.4,56.7,68.4,96.9,107.8,33.8,105.5,94.3,138.2,135.1,95.2,84,11.2,190.8,249.1,249.6,256,143.1,103.9,61.2,64.4,70.9,71.7,42.4,197.7,327.9,26.6,24.3,52,60.8,78,50.2,40.5,77.6,69.6,412.3,48.7,160.3,127.9,130.3,130.9,68.3,71.2,29.3,64.7,44.4,49,86.4,75.6,76.7,77.2,70.1,70.7,61,37.7,78,65.8,65.8,54.7,372.3,32.2,158.3,200.7,118.1,116.3,16.3,94.4,157.6,142.2,127.3,99,97.8,98.4,97.3,98.5,96.9,94.3,91.5,86.9,78.3,143.2,0,72.8,70.4,132,135.8,148.1,76.8,75.5,45.4,32.4,15.6,87.2,85.7,86.1,88.3,156.9,77.8,77.8,126.3,77.5,77,127,139.7,232.8,231.1,19.5,311.3,177.8,159,64.1,61.8,40.6,38.2,49.5,52.8,31.9,19.4,55.2,55.4,58.9,68.9,58.9,62.1,61.8,50.8,68,52.6,48.2,48.2,57.1,64,64.7,71.3,76,73.5,75,63,57,151.3,128.3,64.7,88.8,106,63.7,50.5,52.4,48.1,95.8,46.6,45.6,52.5,52.1,52,50.9,101.7,100.8,97.6,48.8,47.6,91.8,91.9,131.6,123.6,183.8,184,368.4,89.5,91.3,99.3,91.6,39.7,39,41,41,44.2,44.5,43.2,42.3,45.6,45.9,44.8,43.8,90.1,91.1,419.4,103.4,77.5,73.9,75.7,75.8,39.2,37.8,53.9,52,69.8,69.6,54.7,53.7,81.6,80.4,44,44,87.6,62.4,62.9,53.3,49.3,46.1,52.9,53.5,21,34.6,54.8,93.2,92.1,22,64.2,60.8,68.4,129.8,426,215,115.4,43.9,61.4,49.9,38.4,38.7,49.2,49.8,26,49.8,49.1,62.7,37.9,62.5,9.3,52.4,54.6,114.4,104.6,66.7,62.6,49.6,41.3,25.4,25.8,66.9,45.5,46.8,23.1,24.3,18.7,25.4,66.2,85.5,88.8,77.8,50.4,66.5,119.1,27.9,84.3,101.1,72.6,93.4,64.5,56.4,57.6,61.9,49,59.5,84.1,59.3,159.6,59.9,80.7,144.5,176.9,126.6,318.2,94.1,89.8,75.3,68.7,178.3,307,73.5,70,136.6,58.3,76.3,59.8,93.1,122.4,125,183.6,28.3,110.7,108.3,151.8,153.7,100.7,90.7,89.8,113.9,36.7,28.4,28.3,35.6,33.7,36,33.2,44.6,35.5,27,40.9,73.9,74.8,228.2,59.5,67.8,51.4,43.5,40.2,28.4,30.8,31.6,89.7,43.6,47.6,92.8,35.4,39.3,59.3,101,88.8,75.6,51.5,54,85.9,90.1,261.4,94.3,75.5,67.5,12.4,107.1,125.8,89.1,73.5,88.7,27.5,27.3,42.8,55.4,46.2,92.6,48.3,49.7,47,140.2,150,64.9,55.4,103.6,90.3,113.1,120.2,62.9,115.6,66.7,70.4,74.1,57.5,9.4,28.2,92.6,92.9,32.7,87.9,162.1,40.6,12.7,100.4,127.5,38.3,29.9,9.8,227.1,311.3,136.1,142.2,121.2,201.2,23.4,222,240.4,17.7,460.3,33,128.1,39.9,39.6,67.8,66.6,105.1,102.7,219,85.4,86,84.2,83.2,64.4,64.1,64.6,67.1,169.2,146.7,57.3,57.7,57.5,50.6,47.9,65.5,114.8,375.4,328.9,300.6,147.3,151.6,153.1,156.5,189.1,196.3,284,220.6,231.1,4.3,243.9,261.3,261.3,127.7,109.2,273.2,145.1,142.8,31.6,95.6,70.3,39.1,62.2,111.8,185.3,106.9,154.8,97.4,149.5,135.8,252.8,212.5,184.1,114.7,115.3,158.4,127.3,100.2,95.6,72.6,65.9,81.9,65.4,81.2,79.2,119.3,80.1,152.6,78,79.4,51.9,49.8,105.3,72.4,41.7,67.4,91.2,83.9,78.1,76.6,83.4,86.7,70,72.2,169.1,127.8,106,60.5,67.2,74.8,75.5,60.6,88.5,132.4,145.4,95.1,111.2,112.2,109.8,83.1,83,72.4,72.9,81.5,81.1,159.6,126.5,176.3,65.1,68.4,64.1,63.6,47.8,49.7,52.3,74.4,74.6,63,63.2,57.8,57.6,64.2,63.9,149.1,133.3,101.8,96.7,70.3,70.6,82,88.8,73.2,75.5,102.3,63.6,53.5,91.1,93.5,94.7,30,113.3,127.8,146.7,60.2,60.3,78.2,51.3,50.9,60.9,66.2,73.8,73.8,72.2,71.8,70.7,64.9,79.8,80.1,88.8,121.4,98.9,69.7,95.4,136.2,90.8,142.2,103.5,110.2,138.8,75.1,73.5,68.4,67,55.5,68.2,48,68.8,80.3,52.4,76.5,60.9,61.1,57.2,2.1,58.4,67.5,68,289.5,38.1,125.7,128.6,85.7,86.8,145.3,123.1,144,107.6,111.3,113.2,166.8,139,163.5,162.2,143.3,116.8,263.3,134.2,138,90.7,66.4,48.4,248.1,283.9,26.3,213.9,227.6,180.8,99.9,141.7,102.6,123.2,69.7,163.4,106.1,179.5,106.9,116.4,143.9,91,85.8,105.2,103.3,93.8,158.8,95.5,263.4,87.8,3.7,90.2,84.6,80,75.6,76.7,232.6,61.1,53.7,34.6,34,38.8,64.2,73.7,34.4,76.2,71.8,127.5,140,83.3,70.7,79.7,74.7,94.6,84.8,93.7,58.7,57.1,105.1,112.4,106.5,81.2,120.2,87.1,79.4,87.4,82.7,67.4,77,78.9,152.4,195.8,218.1,133.8,152.2,202.4,142.4,95.2,126.4,101.2,103.3,76.4,62.8,57.6,80.7,78.8,72.7,75.1,111.8,60.6,61.2,73.8,93.2,123.2,83.1,81.8,60.3,39.7,62,80.3,85,140.9,128.6,113.2,81.4,132.4,110.8,104.5,101,98.5,90.7,86.9,98.6,84.2,109.1,77.7,94.2,133.5,167.6,103.3,87.2,107.3,87.8,90.1,8,118.2,105.6,74.7,94.4,145.5,142.2,135.1,139.1,137.6,51.2,10.2,116,142.9,129.4,80.6,12.2,29.6,180.8,144.6,117.7,114.8,99.5,171.6,136.8,186.9,122.9,142.5,105,243.7,128.9,149,135.2,179.6,198.5,86.8,103.9,193.5,216.8,216.3,171.9,141.1,262.3,102.3,74.6,73.2,65.1,98,97.4,249.7,184.6,156.7,221.6,45.3,19.5,151,71.8,60.9,120.3,35.3,93.4,41.2,52.7,89.3,37.4,50.1,21.7,19.6,33.6,34.6,31.3,26.8,38.9,31.5,92.3,64.5,62.4,78.7,90.4,119.8,66.6,84.6,100.9,55.2,54.7,36.9,58.3,76.6,88.1,74.9,101.4,118.4,123.7,67.3,98.3,5.6,84.5,107.5,61.4,102.1,102.1,110.5,71,90,60.8,57,72.5,86.2,74.7,58.9,81.4,85,68.7,72.9,64.5,127,77.6,47.6,72.9,66.5,82.7,74.1,59.9,74,64,74.7,65.9,64,71.1,75,73.1,76.3,90,92.3,68.4,80.8,45.2,62.2,94.7,31.1,31.9,15.2,63.3,109.2,80.9,94.4,75.4,59.8,55.4,60.3,55.7,81,90.5,73.2,96.8,93.8,92.8,111.3,136,64.5,20.1,89.3,74.7,79.7,78.3,77,86.4,92.8,65.9,75.4,92.1,79.4,86.4,62.4,57.4,77.2,82.6,83.5,100.2,93.1,66,121.8,88,66.2,69.2,74.6,70.4,86.8,85.2,79.1,67.4,85.4,89.5,114.2,103.4,72.8,59.2,88.8,71.8,86.5,103.5,67.8,64,73.7,86.9,73.8,61.2,32.5,131.2,84.8,83.6,102.8,93.9,118.6,19.2,92.7,135.1,95.4,119.9,118.2,115.8,93.6,45.4,62.1,112,22.7,67.1,89.1,105.6,122.7,117,145.7,113.7,72,101,97.7,130.7,121.4,128.7,140.1,117.9,105.5,72.7,75,91.5,104.3,77.7,77.3,93.4,67.8,140.6,181.3,257.1,118.1,110,116.2,92.4,130.4,162.4,197.5,202.4,325.6,232,207.3,140.8,148,85.9,17.3,88.1,98.1,125.8,73.9,87.1,213,101.5,120.4,92.3,13.1,64.4,55.4,84,79.9,77.3,101.4,112.9,64.1,78.2,84.5,44.1,43.4,111.6,90.9,101.9,112.2,82.2,54.1,60.9,49.9,53.8,75.8,21.6,98.5,127.3,80,5.2,69.1,72.4,107.6,39.8,50.4,37.4,49.5,60.9,52.9,65.2,47.6,57.2,53,63,50.8,5.4,70.3,69,59.8,57.4,48.4,51.8,53.3,56.3,50.6,1.1,50.8,52.7,61.4,89.9,72.1,42.4,42.8,39.5,36.3,32.2,30.6,48.1,50,53.4,51.9,63.5,132.7,83.5,38.4,36.2,38.7,36.9,35.8,36.7,33.7,44.7,48.9,59.2,52.8,55.3,71.7,70.7,62,58.3,40.5,52,26.1,26.8,43.6,37,41.7,47.6,51,34.3,29.3,43.8,207.9,196.2,102.6,189,64.6,65.9,84.6,66,65.4,102.4,115.5,232.5,153.5,221.7,197.5,214.5,181.8,182.1,1342.1,55.1,83.2,85.1,125.9,34.9,48.3,42.6,55.6,133.4,1056.4,102,98.9,170.2,105.6,117.7,82.3,48.2,58.7,61.8,71.2,69.7,63.7,65.3,76.7,77,86.8,86.7,95.2,100.3,257.3,37,18.1,24.4,26.1,29.6,25.9,27.7,31.7,29.3,31.4,22.7,19.1,36.6,30.1,30.2,29,29.9,29.5,34.5,26.8,37.6,86.5,34.3,36,37.4,28.3,29.2,27,25.2,26.7,30.5,36.4,37.4,30.3,42.9,40.2,36.2,43.1,62.1,46,36.4,30.3,27.3,34.4,27.3,31.1,40.2,35.1,29.8,37.9,19.8,22.5,21.4,28.5,36.4,41.3,39.2,34.3,52.7,34.8,47,33.8,38.1,41.1,26.1,39.1,33,33,52.7,32.3,33.4,27.6,25.2,32.1,32,31.3,30.1,33.4,25.7,18.7,24.4,30.7,26.2,27.3,31.2,44.4,69.6,57.5,25.2,35.9,102.1,102.3,86.1,87,111.1,58.9,56.5,76.6,74.9,72.4,74.7,66.3,65.8,66.9,68.8,68.1,69.3,68.2,70.9,99.5,134.9,89.7,249.6,194.4,99.7,65.2,74.9,75,172.8,151.4,64.4,60.9,90.9,89.2,76.2,69.1,10.6,50.1,89.6,299.1,80.5,89.2,101.7,86.6,78.2,7.7,214.1,112.5,124.1,120.6,100.4,104.1,338.3,91.5,48.2,44.6,57.9,55.9,59.4,60.4,65.9,59.4,73.3,73,2.1,119,113,67.6,56.9,58.2,65.7,65.4,72.4,80.7,54.7,49.5,61.3,59.7,136.3,80.9,51.7,51.7,52.8,70.1,71.8,53.6,61,68.7,68,88.8,126.5,29.1,7.5,51,130,180.1,191.5,88.6,100.7,65.9,54.2,229.9,213,81.5,88.2,90.2,97.9,100,46.3,47.5,50.6,50.5,100.4,75.5,76.1,101.8,137.1,120.8,122.4,134.3,96.8,78.1,80.4,153.9,130.1,172.1,262.4,525.1,230.9,82.1,83,55.5,63.6,74,72.7,56.5,61.9,62.5,53.3,75.1,67.6,65.8,144,177.9,178.2,100.1,104.5,54.5,54.5,72.3,56.9,58.9,66.1,52.5,50.5,52.8,43.8,45.5,44.6,47.3,48.1,47,64.4,52.7,65.8,257.2,128.7,68.3,66.5,38,74.1,72.1,102.7,54.4,53.1,103.3,56.6,59.7,52.4,65.3,78.9,84.4,80.8,158.6,160.5,159.7,85.7,75.3,68.1,65.1,51,46.8,43.8,44.5,42.8,47.3,54.6,60.8,52.6,53.6,51.4,53.7,38.7,40.2,44.8,46.6,66.7,32.5,33.8,92.2,41.7,50.4,38,90.9,35.6,40.3,68.8,51.8,48.4,55.1,77.4,37.9,39.4,39.8,38,60.9,56,75.2,73.3,38.2,224,201.9,93,249.8,106.3,90.8,80.8,31.7,58.9,29.8,49.7,58.5,127.5,60,56.7,296.5,68.6,71.7,51,44.6,26.6,49.6,58.8,54.2,99.3,97.2,38.3,518.5,259.2,247.5,36.3,31.9,36.1,32.4,35.5,33.9,35.7,32.7,35.8,33.5,53.2,44.6,27.9,37,2.9,32.8,19.1,73.3,27.9,110.8,104,11.3,74.1,173.9,123.4,188.2,42.6,44.3,40.6,57.2,41.2,29.8,73.4,68,83.1,82.4,40.2,23.6,32,29.5,29.7,27,28.1,17.3,24.8,22.9,21.5,24.1,18.6,18.6,30.1,19.4,27.4,15.3,18.3,23.8,22.4,25.8,24.9,21.2,17.6,23.7,35.7,238.6,25,28.8,24.6,23.7,25.1,25.9,25.6,25.7,24.7,25.8,25.6,24.5,26.1,24.9,36.9,49.3,243.5,229.2,25.4,37.8,37.4,26.4,24.8,26,25.9,24.7,35.2,27.8,30.8,52.8,43.4,25.2,25.2,26.6,26.7,48.3,48.1,95.6,47.3,26.2,24,34.8,28.6,35.4,36.9,37.3,28.8,67.6,105.2,51.1,25.9,25.9,27.2,22.1,24.3,24.8,26.6,25.1,25.3,24.8,24.9,27.5,23.9,42.8,1.6,10,14.1,15.7,28.9,24.1,19.8,20,21.7,6.1,4.1,23.5,26.5,29.5,150.8,29.8,39.8,38.6,35.2,38.7,42.7,19.8,30.6,51,27.4,28.7,87.1,269,6.1,245.4,156.3,37.2,18,16.9,19.1,17.2,18.6,16.6,22.5,19.7,25.9,24.3,19.8,17.8,37.3,26.2,23.8,23.2,22.3,22.6,21.2,62.5,69.3,20.7,21.9,27.9,25,25.5,23.9,37.3,24.7,26.3,37.2,34.4,29.9,33.2,26.3,29.1,32.2,28,33.3,40.6,164.4,116.3,47,26,27.3,30.4,21,24.8,25.9,26,24.7,26.3,25.3,26.7,23.5,40.6,127.6,48,25.5,25.1,24.9,24.2,27.2,25.6,22.7,22.2,20.3,16.2,21.9,24,25.1,50.4,153.7,76.8,24.9,25.9,25.2,25.8,25.1,26.2,25.7,26.5,23.6,12.7,26.4,24.8,26.4,26,24.4,25.6,26.8,24.3,25.2,38.4,25.3,91.5,24.6,25.3,37.2,38.2,28.6,34.8,25.6,25.4,25.8,25.9,29.6,33.4,25.7,25.3,25.2,26.2,28.3,22.5,22.3,20.5,7.2,43.7,34.5,55.3,56.4,36.7,97.2,147.2,135.3,149.5,28.6,39.1,15.2,35.4,46,46.5,13.3,39.5,56.6,285.9,65.5,66.1,35.6,39,13.1,22.9,39.3,33.3,31.6,16.5,41.6,62,58.3,59.6,60.3,249.4,91.2,91.2,74.7,55.7,18.7,279.5,312.7,120.5,140.3,13.9,44.4,36,23.9,41,45.2,42.2,33.4,37.1,35,39,35.6,40.2,40.5,30,36,37.5,29.3,147.5,28.9,38.6,45.7,41.4,44.7,43.1,40.7,45.7,45.5,40.3,40.5,31.8,33.9,38.2,44,40.2,42.7,73.6,38.4,148,57.4,13,65.6,299,44.7,42,39.1,40.6,39.2,40.8,38.7,49.7,49.9,48,46.4,45.1,52,43,49,46.1,49,169.3,62,62.9,50,44.1,36.5,41.7,47.8,53.8,49.5,44.4,38.4,41,29.8,38.8,13.1,47.3,63.5,66.5,228.3,145,35.1,45.4,39.6,28,31.4,348.9,85.4,106.4,309,42.4,44,46.8,47.3,48.6,60.6,233.9,132,368.2,64.9,43,40,51.3,331.1,58,47.4,38.8,40.1,57.3,99,209.4,125.8,70.6,80.9,80.1,63.7,64.4,805.7,165,86.5,71,72,71.7,148.2,56.1,66.2,72.3,57.9,49.5,62.9,66.9,57.2,54.2,93.4,230.2,65.1,66.6,55.1,53.6,57.1,15,47,45.1,44.9,33.9,32.8,24.7,25.4,40.4,22.4,41,38.3,56.4,78.6,136.4,31.5,224.6,77.1,41.4,31.5,45.6,46.3,39.2,32.8,45.3,38.7,38.1,54,72.4,58.3,45.5,37.4,42.1,53.4,55.9,46.5,39.2,48,41.2,37.5,40.6,41.5,50.5,41.8,49.8,21.3,17.7,16.4,16.1,18.7,7.2,12.4,18.6,24.6,19.1,21.5,22.4,20.5,19.8,27,23.1,30.3,22,31.2,23.4,31.9,19.6,57.2,41.8,26.1,33.9,25.7,31.5,36.7,36.4,38,68.6,72.3,73,114.3,167.6,207.8,260.7,95.6,84.5,78.9,74,66.9,63.5,40.6,34.9,55.9,388.1,119.8,99.1,90.6,97.7,94.8,65.5,66.1,46.8,53.1,84.4,21.1,64.5,112.8,69.3,58.7,269,213.4,139,113.1,2.8,110.6,112,177.8,81.2,71.1,58.3,57.6,60.2,88.4,60.4,29.4,28.1,19.7,17.3,18.6,26,5.1,31.4,27.5,57.2,14.5,32.5,112.2,10.5,198.3,114.7,21.3,29.5,36.5,32.6,40.7,26.8,19.4,21.5,14,9.6,45.5,24.7,26.7,22.9,28.8,53,34.1,18.8,27.4,23.5,47.3,6.4,45,61.1,40.9,21.2,29.2,26.5,25.6,25.1,23.9,35.2,15.4,18.7,18.2,27.4,22.3,18.5,22.6,5.7,13.3,18.8,23.1,29.3,86.1,143.1,503.7,126.8,59.3,47.7,66.3,63.7,80.8,85,0,31.5,63.6,436.5,52,53.7,35.8,42.2,15.1,20.9,33.7,25.1,31.7,39.4,31.4,31.6,39.1,41.4,31,34.5,37.9,36.9,39,31.7,45.6,28.3,76.1,49.6,25.1,17.4,32.9,33.4,36.4,20,41.4,38.6,35.6,41.6,43.1,41.3,43.6,40.1,49.1,35.6,48.3,50,80.9,57,44.9,45.7,45.6,43.8,40.2,30.5,50,47.2,129.6,164.2,109.6,4.6,67.2,27.9,31,38.3,9.5,8.2,43.6,33.7,29.6,35.3,31.8,37,31.1,24.9,10,25.9,28.9,29.7,33.4,32.7,26,22.9,38.3,41.3,20,14.7,40.9,60.3,105,57.9,53.7,31,30.2,40.1,40.3,75.5,40.7,20,68.5,9.8,8.7,21.8,24.6,34,78.6,44.3,25.5,5.1,30.4,135.3,19,49.7,18.2,4.2,25,77.8,41.1,26,36.2,43.1,39.7,53.3,36.7,215.4,545.3,209.8,41.7,33.2,36.2,35.1,33.2,31.6,32,32.6,35,32.6,33.7,55.2,69.2,54.7,59.6,45.8,40.8,43.6,49.5,32.9,25.2,40.5,42.2,40,74.4,33.5,37.2,52.2,50.9,33,45.6,51.4,56.7,40.3,57.9,46.2,50.9,33.6,38,44.4,40.4,33.7,36.5,39.2,43.7,39.6,770.2,132.8,43.8,29.9,33.4,34.1,26,35,24.9,32.7,31.2,31.2,33.3,33.1,31.3,33.1,33.2,28.6,38.4,38.5,29.3,52.1,85.3,24.6,75.9,44.5,41.6,49.9,50.6,42,40,35.7,26.7,33.3,45.2,43,35.8,39,105.4,121.8,43.4,29.4,24.8,49.5,47.4,44.9,44.3,25.9,9,44.2,34.9,27.7,7.4,112.9,61.1,88.3,84.1,109.2,218.3,113.2,101.7,76.6,122.2,133.2,91,95.2,144.6,146.7,142.6,34.4,33.8,25.3,25.6,29,32.4,117.3,45.7,42.4,44.1,25,22.1,28.5,20.1,17.8,41.7,26.3,32,16.6,12.6,20.6,19.2,19.9,22,19.4,21.2,21.2,27.4,29,25.4,21.2,25.6,22.8,30.2,30.3,27.1,27.5,28.6,32.6,30.2,41.1,34.2,105,207.4,99.6,58.7,45.9,38.8,39.3,41.2,37.2,31,42.1,28.2,21.2,25.8,24.6,42.1,36.3,55,42,84.2,67.6,43.3,30.2,30.4,29.5,38,21.1,28,15.7,33.2,44,88.2,42.4,68.3,77.2,77,158.9,119.2,52.7,39.7,36.1,55.6,48.7,99.1,89.6,56.3,40.9,43.2,29,47.3,68.2,106.2,75,62.5,93.7,16.7,55.5,84.6,66.6,74.6,132.1,38.6,37,29.5,27.1,19.3,20.4,17.1,14.4,5.4,24.2,15.9,15.7,20.6,24.2,15.9,20.5,20.2,20.5,20.7,16,19.9,16.2,13.8,11.7,17.7,18.3,15.1,14.2,20.9,23.5,7.8,12.6,15.6,19.8,33.7,40.9,41.2,69.6,51.8,54.9,62.9,1.4,43.5,24.3,31.6,22.4,47.6,33.6,44.1,29.1,60,56.8,41.5,31.2,40.5,44.9,20.5,45.4,100.2,53.1,208.2,84.2,107.2,84,93.4,88.5,84.9,82.4,131.9,28.3,71,93.9,110.8,196.9,153,95.8,37.1,37.6,38.5,51.3,115.3,31.6,34.5,26.9,42.9,35.6,76.9,45.2,40.4,59.2,108.4,27.5,47.5,34.6,29.9,32.3,21.9,35.4,12.8,8.2,36.5,20.6,18.8,28.1,29.1,43.2,32.7,21.3,36.8,7.9,27.6,110.7,27.2,9.2,33,40.6,64.3,273.1,47.8,45,33.7,27.9,26.5,33.8,36.7,49.1,101.4,34.8,35.9,44.6,135.6,27.4,17.9,16.2,18.6,13.8,11.1,4.7,15.2,20.7,23.2,20.3,21.7,29.4,32.6,25.5,25.4,22,25.3,21.6,18.3,18,45.3,43.8,47.2,46.1,41.5,29.1,31.8,34,36.4,53.5,40.7,48.7,58.7,184.2,31.4,50.1,27.7,26.5,26.4,28.4,48.1,39.7,45.1,44.6,37.7,91,144.8,51.2,29.6,22.1,20.9,19.7,22,17.2,19.1,19.5,20.6,16.3,486.1,33.5,21.4,30.5,27.1,26.9,30.1,25.8,22.2,26.4,29.4,27.4,31.4,49.5,17.5,35.4,33.1,46.6,51,28.8,101.1,49.1,32.3,12,16.9,18.4,38.3,89.3,48.1,66.3,11,97.9,122.4,106.8,53.3,45.7,44.2,45.3,39.7,37.4,37.5,36.6,33.2,34.8,20.8,29.2,39.5,29.8,21.7,17.5,24.5,20.9,31,35.4,67.8,61.7,77,80.5,66.6,63.3,71.4,96.7,81.3,46.8,37.3,19.3,20.9,14.2,20,30.7,33.8,55,134.3,52.3,51.1,30.9,20.1,19.1,26.6,22.2,23.4,15.8,1.5,23.8,20.2,17.8,15.8,24.6,25.9,25.5,23.1,17.8,24.8,28.8,21.5,29.6,22.3,28.4,25.4,27.8,27.8,25.5,11.7,150.8,22.2,17.4,20,21.8,20.1,22.3,25,21.5,24.6,121,27.4,10,18.3,28.2,22.4,20.8,19.2,19.3,19.7,25.6,13.6,17.5,26,31.1,31.9,112.9,38.9,34.3,37.3,37.8,32.1,44.6,66,43.3,35.8,37.8,22.7,16.1,28.1,30,27.2,31.2,35.1,36.3,26.8,36.8,45.9,65.3,31.1,40.3,57.8,33.1,9.4,18.7,19.9,21.6,23.9,18.5,16.9,35.4,20.1,25.8,15.5,20.2,18.2,16.3,18.3,18.5,9.7,9.7,35,28.8,53.2,42.7,40,46.6,54.4,38.1,12.6,15.9,33.6,9.8,39,55.5,38.7,33.3,374.5,28.6,22.6,29.9,71.6,63.8,63.1,48.8,56.9,50.9,69.8,61.8,124.9,51.1,76.6,66,64.9,69.6,51.9,58.2,48.1,58.3,35.1,23.9,36.9,30.8,33,31.2,24.9,40.8,29.5,42.5,23.7,28.7,9.7,34.5,37,102.6,68.8,252.1,168.4,129.2,38.6,26.6,52.4,37.1,46.2,45.4,45.5,62.7,134.3,38.6,48.8,36.2,47.9,25.2,18.4,37.6,15.5,38.9,81.6,52.9,22.1,28.3,29.8,28.3,24.5,29.1,30.4,31.5,41.3,100.7,47.8,46.8,28.7,33.5,33.3,28.8,34.7,28.6,21.5,45.2,43.9,37.6,25.7,6.8,57.8,29.8,37.3,24.3,29.5,35.7,38.5,27.9,29.6,19,31.8,34.7,19.2,16.1,18.6,20.7,22.3,36.8,43.3,59.2,65.1,106.1,129.3,88,73.6,57.3,38.5,25.6,46.8,42.2,26.1,11.6,10.7,38.7,23.7,33.1,25.7,20.4,35.6,31.5,25,19,13.5,9.9,12,22.8,26,28.8,35.8,70.8,26.3,28.1,33.2,28.1,30.7,30.9,46.7,29,15.2,65.4,70.8,46.6,69.6,22,9.8,54.8,149.3,19.9,10,6.9,5.6,12.6,2.9,7.2,3.8,3.1,19.8,16.1,9.8,10,16.5,44.2,26.2,35,24.5,50.6,54.7,27.6,22.3,38.7,13.5,25.3,25.1,1.6,18.9,21.5,17.2,24.5,27.1,31.3,32.1,59.4,35.9,38,20.2,25.7,26.1,18.4,19.7,24.8,25.3,23,27.5,21.2,19.8,24.9,35.6,19.9,23.7,36.4,224,233.8,34.8,31.2,35,30.7,22.3,29.8,24.8,30.7,31.1,31.9,42.1,15.2,13.9,12.9,27.5,33,25.1,12.9,19,31.1,28.9,32.1,291.2,30.2,29.3,34.8,39.4,33.4,45.3,40.1,39.8,50.6,38.8,51.9,72.9,37.4,29.8,22.5,45,45.1,22.6,21.5,37,30.9,33,26.5,55.4,48.4,49.6,45,51.5,46.6,71.2,37.8,40.9,26.6,27.3,37,35.9,26.9,34,45.4,85.2,27.6,39,48,38,44.6,57.4,51.1,61.3,57.4,59.3,78.9,63.9,61.4,65.8,113.3,63.9,76.7,145.7,156.7,69.9,64.7,124.1,83.8,35.8,34.5,28.6,25.6,39.7,28.4,23.2,18.1,20.2,30.3,50.7,23,30.1,28.2,46.9,31.5,28.2,25.6,31.7,17.3,18.8,64.8,53.7,44.3,40.6,39.5,40.5,36,29.9,31.6,32.1,33.2,21.4,34.6,23.5,29.5,67.6,127.5,40.1,32.4,31.3,9.9,33.3,37.9,35.2,101.1,51.5,43.9,48.8,78.2,57.9,58.6,59.1,133.6,153.7,57.2,57.4,66.7,31.4,20.2,15,49.7,35.3,21.4,9.4,38.6,48.2,37.2,39.6,35.8,27.6,17.2,28.1,32,44.6,42.7,33.3,34.9,37.5,74,35.2,42.5,39.7,35.4,48.9,44.6,48.5,44.9,43.1,37.8,131.6,47.5,49.6,25.9,34.2,33.6,33.3,30.4,20,110.7,113.7,27.2,174.6,100.7,85.3,75.1,76.1,76.4,55.2,36.7,36.8,43.2,48.6,19.2,36,38.7,38.3,40.8,54.2,35.1,63,32.4,27.4,32.9,19.3,21.1,29.6,30,28.9,27.3,25.8,26.9,27.1,5.7,31.9,49.3,57.1,88.2,79.3,11.5,29.7,32.2,36.3,50.1,28.8,29.1,35.4,35.7,32.4,9.9,25.4,27.7,31.6,34.5,40.8,34.9,35.3,62.4,48.2,47,39.8,24.5,37.1,57.9,45.9,7.6,57.7,68.6,152.9,53.4,24.4,34.3,28.5,41.2,32.7,68.9,77.2,38.1,19.8,5.1,20.9,31.2,75.5,89,25,11.4,21.5,36.4,43.5,41.1,37.4,55.7,8.5,28.3,41.6,35.9,37.2,26.9,32.3,41.3,29.4,41.1,25.6,31,65.9,144.2,37.7,40,33.5,36.4,32.8,33,32.5,33,26.5,26.5,27.7,36.9,35.7,34,66.4,36,36.7,34,35.7,28.1,26.6,29.9,20,19.6,50,42.4,14.5,21.1,39.9,28.3,49.9,67.3,107.2,31.4,38.8,31,31.5,18.9,25.9,29.2,24.2,27.9,31.2,76.3,157.1,129.1,111.6,69.9,94,78.4,89.3,85.6,74.2,40,62.1,57.5,46.2,38.7,34.3,32.7,19.6,42.3,108,50.5,37.3,29.2,34.6,29.8,29.3,29.2,28,30.1,28.6,18.2,28.2,28.4,28.7,28.9,19.7,20.6,22.6,27.4,25.1,24.6,30.9,24.1,23,23.2,21.9,30,37.8,16.9,13.7,104.9,104.4,106.4,68.1,57.4,49,50.4,49.9,0.6,120.7,63.7,25.4,73.2,52,39.2,62.2,56.6,26.6,44,46.5,54.8,43.9,38.8,36,21.3,15.4,23.4,29,23.7,29.4,28,46.1,34.2,35.4,85,42.3,45.5,56.1,41,38.9,30.3,37.1,62.1,63.7,74.9,94.2,57.4,84.3,51.9,76.4,66,82.7,96.4,659.2,114.9,31.6,5.1,20.8,25.6,121.1,16.1,8.5,10.5,10.1,7.6,6.8,10.8,55.4,101.4,137,65.9,37,51.5,59.5,92.9,71.3,199.3,384.4,447.7,78.7,112.7,110.3,110,97.9,43.4,63.2,26.9,12.9,31.3,31.4,128.3,305,217.3,50.2,37.3,98.5,376,80.8,85.9,88.5,60.2,56.4,85.1,68.3,115.9,132.3,61.9,41.1,50.4,29.6,52.1,70.1,54.8,52.9,42.9,59.8,62,113.4,53.8,183.1,311.3,117.3,115.4,42.9,46,48.4,18.7,16.4,35.4,35.1,41.8,46.6,26.6,46,330.8,332.1,14,86.9,43.6,27.6,31.9,27.5,38.5,33.4,32.8,31.5,29.3,39.2,42.5,42.6,37.4,34.2,39.4,30.5,29.8,40.9,33.7,29.5,35.2,29.9,31.5,37.3,23.6,24.1,29.3,23.8,24.3,49.6,45.5,12.2,118.7,34.1,56.3,57.5,79.4,39.1,41.6,16.4,44,30.9,23.8,26.3,27.4,46.2,86.9,128.2,53.6,65.3,140.5,116,35,98.9,5.7,24.7,33.5,131.9,132.5,92.7,38.2,34.6,76.9,79.4,45.2,49.8,278.1,75.6,93.5,73,126.4,120,88.4,90.8,75.2,67.3,58.8,27.5,1.3,104,83.8,2.5,73.6,124.4,33.4,17,5.8,28.6,26.2,20.3,18.5,23.3,26,33.3,36.5,29.9,34.8,33,21.1,18.3,21.6,25.4,22.4,25.3,27.8,22,26.2,43,30.6,35.7,36.4,26.1,15.8,15.8,21.8,23.3,20.9,18.9,16.5,16.2,16.3,21.3,33.3,32.5,1.5,93.5,98.4,130.2,149.6,171.7,36.3,50.8,65.3,52.8,61.1,81.9,79.8,33.1,46.1,29.3,41,40.4,66.5,88.1,69,106.6,62.7,67.6,9.7,37.9,41.4,11.3,28.4,53.2,47.6,21.9,40.6,48.1,52.9,45.3,43.8,44.3,48.8,45.3,39.2,30.5,40.6,88.1,82.6,60.1,84.3,75.1,71.6,68.3,74.5,55.3,65.5,47.6,50.1,74.5,92.8,92,171.1,102.6,99.2,93,101.3,165.2,107.8,132.3,65,69.2,0.2,63,250.5,83.5,94.1,226.8,26.3,76.2,89,139.5,161.3,118.9,77,25.6,37.8,17.9,32.4,34.6,75.1,140.5,113.5,107.9,86.5,69.9,1.3,91.7,47.2,392.6,112.9,121.5,11.2,51.1,23.7,84.3,112.2,107.4,125.3,126.7,73.9,66.3,63.1,61.5,38.8,47,49.1,17.4,41.1,51.9,47,95.7,72.7,64.1,44.9,31.5,44.2,37.7,80.9,75.5,99.4,64.1,286.3,51.9,44.6,57,27.3,110.6,112.8,141.9,92.3,104.1,50.2,7.9,83.9,55.9,7.6,79.2,14.2,51.3,58.9,144.4,73,35.4,44.8,41.7,29.8,60.8,37.4,35.3,31.5,31.1,36.8,27.8,43.7,29.5,26.7,39.6,45.1,92.5,205.4,28.6,44.2,42.6,91.7,92.9,61.8,47.3,95.4,478.8,155.4,44.6,38.7,37.3,32.1,23.4,42.9,50.6,50.1,50.2,50.2,50.1,50.2,50.1,50.2,50.1,50.3,50.1,48.9,68.8,83.1,140.5,201.8,70.6,10.7,39.2,60.8,35.4,35.1,34.3,24,34.6,32.5,52.9,57.4,33.7,31.8,58.4,34.3,46,44.7,36,31.8,35.7,38.1,49.3,49.5,114.6,156.4,10.2,116.6,43.1,8.6,38.8,33.6,35.5,32,44.7,35,49.5,57.8,130.7,0.2,1.3,0.4,0.7,15.6,170.1,554.6,221.5,88.4,89.4,91,99.5,391.5,111.2,55.4,49.3,65.2,57,74.2,40.3,26.6,188.3,51.9,140.5,6.7,0.6,127.1,124.6,175.2,89.4,34.6,44.8,58.5,54.9,66.5,41.1,56.4,55.6,201.5,130.7,44.6,82.3,53.5,34.4,49.5,40,38.9,23.5,30.6,22.9,29.5,56.1,63.2,53.7,92.1,141.7,283.1,35.8,25.4,30.5,37.5,33.7,43.4,66,47.3,54.4,70.7,83.4,133,35.4,51.1,18,53.2,78.9,75,72.3,86.1,72.6,66,84.8,64.3,43.6,100.9,109,99.4,48.3,38.8,44.1,34.4,40.9,76.2,124.8,123.2,63,68.4,139,42.7,28.2,79.3,63.8,43.4,58.9,68.6,2.8,42.4,2.3,27.8,72.1,60.6,138.9,167.4,55.6,211.1,76.2,105.9,105.5,284.1,113.2,145.3,67,51.4,75.7,89.3,30.4,19.4,74.5,135.2,58,57.6,100.2,33.4,54.2,44.2,32.6,42.8,56.5,55.4,31.2,14.3,93.2,120.9,125,71.5,153.5,93.1,40,37.6,74,76.7,35.5,281.9,43.4,36.5,57.5,75.9,110.3,110.4,134.1,138.8,89.1,100.5,94.3,128.3,149,68,58.5,71,98.6,46,46.3,42.3,43.5,123.4,25.2,45.4,58.9,31,85.4,36.2,62.8,56.6,46.6,102.1,88.4,46.5,88.3,61.9,57.2,44.9,51.4,58,52.7,66.5,35.8,5.1,36.4,44.6,33.9,39.1,41.8,21.4,22,31.5,14.9,18.6,57.3,12.7,55.9,4.4,31,15.1,39.3,44.6,39.9,48.7,40.4,39.1,18.4,58.8,75.4,41.7,48.6,41.4,39.3,46.1,42,35.4,35.5,37.2,49,46.5,40.2,28.9,98.2,150.3,30,22,20.1,31.9,37.6,50.4,43.4,45.2,43.3,51.6,33.3,33.6,37.5,38.3,44.3,39.5,89.4,56.1,62.1,59.5,61.4,95.4,79.1,207.4,90.2,254.8,138,39.3,66,58.9,58.4,54.1,85.4,54.6,27.3,58.3,39.6,56,51.4,51.1,90.2,46.4,59.5,44.7,45.9,51.9,138.2,178.8,116.9,124.6,83.1,59.2,29.7,24,20.7,38.2,12.8,10.1,12.7,10,33.7,50.3,23.3,29.6,61.1,25.9,35.5,23,41.7,79.8,66.5,63.7,53.2,138,404.3,128.8,89.1,1.3,55.4,82.8,83.8,53.8,31,31.3,27.2,73.8,71.2,32.5,13.6,61.5,51.3,51.7,66.1,111.7,54,113.7,48.8,85.4,62.4,55.4,15.7,82.5,36.6,30.9,55.6,115.4,112.4,81.8,130.1,101.3,5.9,104.4,102.3,29.3,38.4,107.7,96.4,148,27.9,48.4,34.6,38.3,30.7,40,30.6,33.4,17.7,24,47.6,18,36.1,23.1,27.4,27.3,59.3,80.4,201.8,345.5,233.8,312.5,259.5,75.2,38.1,51.7,53.8,51.6,46.8,9.1,26.7,56,55.6,49.1,47.5,86.6,54.4,49.6,74.5,92.2,61.9,5.2,58.7,47.2,14.7,39.9,18.1,21.6,26.1,29.2,38.4,48.7,38.4,19.7,27.6,25.1,41.1,36.3,1.6,49.9,38,40.4,454.8,18.5,39,69.7,51.8,31.1,11.6,61.7,44.5,68.3,34.4,62.8,62.7,50.7,37.8,43.5,32.4,11.3,19,61.4,74.2,63.8,4.6,30.3,57.1,49.2,72.4,39.6,42.1,51.5,43.9,4.7,47.2,40.3,51.5,20,34.5,95.3,89.7,102.1,53.3,70.3,119,111.4,35.9,40.1,44.6,50.4,35.1,42,60.6,56.8,119.9,103.8,63.8,194.6,112.4,69.1,47.4,34.9,83,99.4,49.4,95.2,112.2,95.3,84.5,148.2,71.3,55.7,43.8,36.1,74,49.8,42.6,12,62.8,60.4,97,1588.5,35.3,169.6,104.9,51.1,40.7,48.7,44.7,61.4,53.4,58.7,58.8,74.7,38.6,55.6,52.6,62,60.6,343.2,56.3,56.1,46,45.9,38.7,43.4,37.9,36.8,73.4,160.8,56.2,55.2,38.2,34.5,82.3,50.7,42.5,48.1,42.3,32.1,33,34.3,37.8,42.1,31.1,44.5,83.7,100,88,74.2,61.6,30.1,59.2,15.2,69.7,38.7,77.9,137.8,163.5,116.9,166.9,71,86.5,109.2,96.2,88.9,122.4,131.4,48.1,52.8,29.1,189.6,87.2,74.5,81.9,75,53,35.1,35.7,72.1,71.2,62.7,97.4,125.6,73.3,63.5,84.6,64.7,43.8,47.3,36.2,42.2,12.8,51.2,25.2,55.3,101.7,138.8,5.4,52,59.9,38.3,25.7,29.9,50.7,76.4,112.3,101.8,77.8,175.4,95.8,100,62,224.3,36.3,95.4,61,46.1,38.4,142.9,71.8,92.4,219.1,77.7,104.1,80.9,16.5,22.6,113.5,165.5,90.1,73.1,100.4,219.2,192.9,26.7,36.1,62.8,71.3,137.9,0.5,212.5,65.6,61.1,39.4,148.5,84.1,62.6,49.2,27.7,58.8,36,71.1,17.1,105.8,0.3,48.2,81.6,71.1,130.2,148,25.1,46.6,41.6,36,33.9,42.6,52.6,46.8,47.4,40.8,57.5,48.9,94,45.1,49.2,45,41,39.2,26.7,28.8,53,51,29.2,25,46.1,43.6,48.7,44.6,97.4,47.7,44.7,49.3,49,47.6,45,43.5,35.6,34.2,27.7,31.3,29.8,34.2,31.7,24.2,28.2,50.1,35.9,51.5,20.9,19.1,28.7,70,97.8,94.6,32.2,62.5,29.8,17.3,215.1,67.6,37.3,14,27.1,24.4,46.2,45.3,49.4,17.7,46.4,48.7,38.7,59,56.9,24,26.7,37,11,28.8,45,37,33.6,40.1,23.7,42.2,32.9,26.4,42.4,44.1,41,48.5,54.9,38.6,40,37.4,51.1,29.9,54.8,48.8,40.2,35.2,40.1,31.2,46.6,188.1,33.5,48.7,29.2,24.3,74.8,35,44.6,44.4,35.7,48.8,29.3,39.3,300.5,112.8,52,87.2,35.3,149.7,29.5,93.3,47,103,201.6,67.2,42.4,67.1,25,81.6,79.6,37.1,31.7,199.6,125.1,241.5,131.2,97.4,13.7,89.2,71.2,76.4,77.4,215.9,7.3,153.1,110.7,60.9,110.4,85.8,95.1,4.7,87.7,79.5,73.9,130.1,62.9,56.1,91.3,62.2,71,74.5,65.9,48,95.7,79.6,66.1,46.6,37.3,58.6,38.8,28.9,29,46.6,37,44,38.1,50.1,71,76.1,192,223.1,63.2,60.2,49,51.3,22.9,26,43.7,84,84.8,85.4,83.3,94.6,78.9,59.9,18.5,33.5,28.3,66.5,650.4,261.9,27.7,62.9,32.4,31.4,43.5,66.1,78.6,20.6,17.2,31.8,64.3,104,96,76.9,64.6,63.5,43.7,38.8,172.4,204.3,49.5,80.6,76.8,69,141.2,133.7,58.7,46.5,84.3,76.4,66.3,124,110,108.6,59,65.7,51.4,76.1,51.6,46.4,27,29.5,36.7,26.9,58.1,30.2,32.3,57,51.9,110.4,111.2,95.9,46,11.7,88.4,93.4,146.8,39.6,12.3,133.5,204.5,105.5,103.9,61.7,41.1,73,83.9,47.9,17.4,36.6,44.6,37.7,48.6,50.9,112.9,48.4,5.9,102,255.6,420.3,76.6,66.4,66.7,59.6,51.9,51.3,33.2,65.8,44.5,42.7,34.7,130.4,89.5,36.4,25.9,34,34.7,50.9,43.8,28.7,26.9,38.4,74,65.1,26.6,33.3,231.2,75.3,34.2,54.9,22.6,37.6,108,82.3,38.8,44,47.8,55.9,46.6,39.4,39.5,43.5,43.7,5.5,40.4,42.7,43.5,56.7,60.7,75.5,63.5,59.4,77.7,61.4,54,84.4,91,161.3,32.3,43.9,75,37.5,19.1,9.5,30.2,22.7,72.4,90.7,86.7,46.6,40.4,159.7,43,217.7,37.2,32.4,40.2,33.7,40.7,32.3,29.1,35.6,52.3,25.2,16.6,68.2,42.3,41.3,57.6,57.4,39.7,38.1,49.6,70.8,37.3,39.1,63,51.7,29.9,36.7,62.2,56.9,49,53.4,56.1,98.7,73.4,69.6,110.5,257.8,569.1,78.8,72.8,126.6,29.2,26.7,40,29.6,31.6,36.9,46.4,23,66.6,56.4,60.9,188.1,56.7,87.2,79.4,22.1,32.6,33.8,28.6,33.8,39.3,37.6,31.2,27.3,48.3,51.5,43.8,29.6,29.5,34.4,26.9,26.9,33,62.2,51,84.2,16.3,19.3,62.9,62.4,67.5,99.4,5.5,58.6,60.5,18,74.5,75.4,97.9,91.2,122.4,63.9,58.6,53.2,58.9,41.1,98.8,37.7,52.2,69.7,45.5,126.2,49.3,58.5,50.2,36.9,45,52.8,73.6,45.3,42.6,35.6,83.8,25.6,30.4,72.9,7,0.2,19.6,26.7,45.2,19.3,21.3,23,18.6,26.3,92.1,126.5,198.1,18.5,13.7,26.7,43.5,52.2,30.8,25.4,28.1,26.7,31.5,36.8,0.7,50.2,39.7,0.5,164.5,102.6,88.3,82.5,44.1,66,45.3,30.2,42.3,43.4,42.1,37.2,25.8,20.8,22.1,21.5,11.1,46.1,19.3,56.8,59.2,46.7,45.9,43.1,94.4,115.2,98.4,55.3,37,31.6,46.6,28.6,23.1,51.1,27.8,27.5,49.9,10.9,28.9,26,22.4,24.5,26.5,32.9,24.7,27.7,27.3,30.4,29,29.6,27.5,28.9,18.2,52.4,31.2,19.2,0.2,7.5,43.2,71.7,31.1,73.8,73.7,72.8,11.9,76.1,64.9,71.1,54,17,104.7,47.5,59.5,90.9,65.6,10.6,14,14.3,20,61.4,17.1,80.9,67.3,75.5,15.3,144.3,66.1,50.1,49.9,33.8,15.4,241.9,50.9,63.3,22.2,25.5,21.7,54.1,31,24,26.6,57.7,32.5,27.9,30,34.5,43,80.7,91.9,69.9,19.9,19.9,19.9,19.9,19.9,24.7,39.5,43.8,30.6,55,49.6,56.2,53.5,35.6,30.6,47.3,69.2,34,34.3,40.1,45.2,44.7,37.8,30.3,29.1,78.1,60.5,2.9,29.6,49.1,38.7,41.6,97.1,86,90.7,85.1,73.6,81.6,66.1,79.2,97.2,132.8,74.4,78.7,138.3,93.7,39.4,24.7,20.9,27,29.9,30.8,25.9,27.2,25.5,27.9,22.8,24.8,29.8,21.3,18.1,24.3,28,23.6,20.8,13.9,18.4,48.6,21.6,70.8,42.5,30,6.6,24.6,29.1,25.8,32.9,15.5,16.8,16.1,19.6,19,27.5,23.2,81.8,78.8,244.1,189.5,111.2,27.9,23.8,25.3,28.5,25.4,34.6,24,25.2,22.6,14.7,6.2,22.3,19.5,17.4,21.9,14.1,11.6,71.9,64.6,15,5.6,6.6,24.4,38.5,37.9,32.2,31.5,60.5,49.4,41.6,38,31.8,31.4,38.5,29.1,42.5,34,0.8,100.5,181.2,90.6,92.5,199.8,6.5,20.3,20.5,10.6,183.5,195.2,13.5,27.8,86.7,119.7,16.1,24.8,33.8,30.5,38.9,22.6,28.1,31.4,41.6,30.8,104.4,70.9,16.9,153.2,1.5,80.7,81.2,161.6,47.4,0.2,17.1,27.4,13.9,42.2,30,14.3,36.1,29.6,32.3,41.2,45,69.1,64.4,2.4,43,105.3,78.7,16.4,5.5,46.5,112.6,50.3,123.5,180.4,242,77.7,52.1,41.1,38,451,61.6,66.1,88,21,22.6,25.2,32.5,19.4,24.8,36.3,139,43.8,64.9,116.5,44.1,42.9,40.7,34,32.6,91.6,20.5,26.8,22.5,29.5,22.9,25,54.2,48.7,43.7,36.3,52.4,65.9,15.4,95.1,50.8,37.1,40.4,27.3,50.2,58.5,46.1,53,85.9,111.9,73.3,104.4,20.4,79.9,21.4,21.3,43,50.9,64.8,66.7,65,86.6,14,53.5,54.5,42.9,39.2,31.2,26.2,26.3,45.6,11.1,29.8,45,49.8,158.5,33.8,17.4,18.5,17.4,27.5,18.8,25.5,21.6,5.6,19.8,1.1,23.9,32,34.6,55.4,59.9,37.6,32.6,37.1,134.4,47.3,45.4,150.7,50.1,66.8,87.7,65.4,144.6,42.3,37.5,168.1,85.8,38,48.6,134.7,32.8,53.5,135.9,50.1,90.3,64.5,92.8,55.5,38.6,40.1,18.8,40.1,113,91,67.1,168.7,63.8,83.4,56.5,54.8,100.1,26.3,47.2,48.8,123.8,25.5,23.3,20.8,21.6,28.8,17.3,20.2,83.4,77.2,55.5,28.5,16.1,17.9,20.2,23.3,20.7,22.8,24.8,87.8,70.6,73.7,72.1,94,22.3,25.9,52.1,22.6,22.2,22.3,33.1,24,19.8,16.3,21.4,17.4,20,140.2,223.6,238.7,37.9,43.6,34.5,26.7,208.2,25.3,60.2,35,46.9,24.5,7.3,7.1,65.1,14.4,35.6,38.1,15.7,70.5,38.9,17.1,18,18.3,15.5,51.6,14.8,17.5,20,73.6,100.9,12.6,48.4,27,36.7,80,41.1,35.5,21.6,78.2,33.6,11.9,122.8,11.9,133.6,25.7,51.3,16.5,17.2,17.3,16.2,11.8,15.5,71.3,59.4,129.2,43.8,45,117.5,127.2,26,49.9,32.8,30.8,25,7.1,10.3,132.2,44.9,23,45.2,105.7,24.6,7.7,32.4,69.8,76.7,59.8,74.8,99,18.1,13.1,10.3,10.5,18.3,12.4,16.5,16.2,15.2,26.6,109.4,40.4,11.7,13.9,14.8,7,8,19.1,15.3,15.3,14.4,15.8,16.9,69.2,70.1,36.8,45.8,19,17.1,17.3,16.6,73.3,99.4,55.1,78.1,27,20.2,19.8,42.9,117.7,58.5,17,17,16.8,15.3,14.4,15.5,15.6,16.2,19.7,16.1,15.8,14.9,13.9,14.6,13.4,10,3.3,11.5,11.5,46.5,39,6.7,13,14.7,20.3,19.1,13.9,12.8,13.7,14.2,14,14,17.9,18.2,42,60.5,68.5,105.4,17.3,16.2,13.5,15.4,15.4,14.6,11.2,16.1,17.2,32.5,56.4,38,31.1,6.5,23.6,19.1,38.7,43.5,60.4,18.1,16.9,15.4,13.3,23.7,52.9,83,47,25.2,23,29.4,35.9,32.6,4.9,436.3,119.4,37,27,27.9,66.6,30.5,41.3,30.3,32.1,24.8,17.4,22.1,36.5,10.8,9.7,12.5,12,15.2,95.2,24.8,11.8,13.8,10.9,15.3,26,12.3,17.5,23.7,20.2,28.8,27,30.3,11.3,17.3,24.7,31.1,33.9,15.8,18.3,20,24.5,17.1,32.5,19.2,22.3,22.3,29.1,21.5,38.5,21.2,24.4,14.5,29.9,22.3,57.3,28.2,14.7,21.9,19.8,15.8,19.3,24.3,18.1,20.2,30.8,23.1,24.3,24.6,29.6,27.7,24,29.3,18.6,35.3,124.4,88.4,91.5,41.8,54.5,46.3,33,28.2,56.5,22.5,20.8,26.7,24,37.9,43.4,40.9,110.4,94.7,112.8,44,35.9,55.1,98.1,49.1,38.9,37.5,23.2,21.5,38.9,44.4,43.8,44,40.2,31.3,33,37.4,25.7,38.1,26.8,27.2,31.9,43.8,31.5,30.6,30.7,31.4,28.7,30.8,31.5,35,27.1,38.1,40.5,30.4,21.1,15.5,16.9,43.7,37.5,58.6,29.6,25.1,33.7,47,52.5,43.4,34.8,37.1,70.6,56.3,61.2,109.1,113.8,38.7,23.5,24.8,29.8,32.4,30.8,22.2,22.5,20.3,26.8,32.8,81.6,71.2,62.7,47.7,39.9,38,28.7,25.9,27.6,22.3,24.8,28.6,28.2,30.3,42.6,30.9,37.5,32.8,24.7,32.9,38.8,44.5,29.7,20.5,20.1,37.5,56.1,52.1,448.3,43.2,27.4,31.1,18.5,39.3,22.5,24.9,14.7,40.2,30.6,37,34.6,21.8,37.7,48.7,3,12.9,101,66.6,93.9,1.1,32.9,41.8,616.6,70.8,40.7,36.6,39.6,39.2,62.5,31.5,34.3,24.9,30.5,26.3,35.3,19.7,28.1,36.2,41.1,33.4,1.2,8.6,100.4,78.6,43,34,43.1,40.4,65.5,132.3,28,18.1,14.4,14.3,20.5,23.9,19.9,13.8,27.3,24,18.7,16.2,24.8,23,23.3,20,24.9,26.7,58.1,36.6,16.7,13.8,21.9,20.5,21.6,23.6,29.6,28.1,18.8,18.1,18.9,18.6,20.8,21.4,34.3,26,20,17.8,19.1,20.9,16.7,23.8,8.4,10.9,19.9,26.2,32.3,790.2,43.1,41.3,22.9,16.5,13.9,14.7,16.8,18.9,12.1,66.3,80,69.4,76.8,48.7,38.2,31,24.2,29,28.3,27.1,22.5,30.1,18.3,17.7,23.9,17.9,29,29.3,87.2,50.3,23.8,17.4,21.4,24.4,28.3,26.3,27.8,32.2,35.8,41.8,53.7,45.7,36.6,39.4,30.8,20.6,18.6,14.8,50.2,52.3,61.5,54.6,112.7,205.1,53.2,48.4,50.1,38.4,44.4,38.4,38.1,34,30.3,24.8,26.9,26.1,26.4,26.7,32.7,30.1,42.4,47,130.1,45.2,83.7,24.9,51.1,28.3,31.5,27.7,31.7,30.1,31.9,22.6,67.2,69.5,49.1,48.3,28.7,31.8,26.9,31.2,30.3,36,34.7,39.3,52.8,77.1,41.4,22.3,26.1,25.1,31.2,29.4,32.5,66.4,73.7,95.9,116.7,40.7,27.4,22.4,18.6,20.9,20.2,25.2,25.9,24.7,25.5,27.2,26.9,30.7,49.8,78.3,32.9,24.8,28.5,29.3,27.9,23.9,22.3,16.2,12.3,54.5,58.1,87.7,53.7,8.4,291.3,59,9.5,45.7,20.7,31.2,57.2,96.6,32.3,53.9,49.3,25.7,59.3,99,71.8,78.6,37.6,40,38.5,69.7,79.9,78.2,37.1,46,48.5,39.8,55,97.2,91,67.9,32.8,31,119.1,515.5,200.2,94.1,61.4,31.2,88.5,57,313.8,59.2,115.4,88.3,24.7,113.1,210.4,242.9,127,96.6,102.7,423.8,182.7,37.9,164,64.9,225.2,146.6,122.3,163.6,150,736.6,39.9,99.3,31.7,32,56.3,51.1,26.3,26.8,104.1,39.5,46.1,117.7,318.1,64.8,45.3,38.4,26.4,31.4,45.5,36.6,29.5,27.1,23.1,47,41,97.6,18.4,21.2,31,27.9,21,19.2,39,44.9,23.8,1.1,41.7,48.6,52.1,71.9,104.9,81.6,109.5,40.4,28.5,21.4,24.7,28.4,24,0.1,29.7,39.3,279.5,51.2,58,54.2,43.7,50.5,58.1,99.9,79.5,74.4,75.6,81.1,216.9,29.7,32.4,31.9,28.2,42.6,37.1,35.7,37.4,39.7,42.3,350.7,61.6,85.9,30.1,30.5,27.3,27.7,51,38.2,49.3,49.9,49.9,52.2,47.7,33.4,79.9,17.4,16.5,22.2,27.3,42.5,195.7,52.4,36.7,42.7,59.6,36.7,77.3,152.6,102.3,28.8,35.5,16.2,50.9,59.6,70,57.7,60.4,10.7,51.5,258,73.4,55.6,33.5,60,37.1,97.2,47.2,21.8,39.6,69.2,75.4,75,35.5,192.7,162.6,112.8,41.2,34.9,18,41.4,38.4,44.9,84.3,215.4,28.7,186.7,56.1,37.5,79.9,27.7,69.1,5.2,29.1,109.7,110.2,46.9,47.8,108.7,71.1,71.9,256.4,155.5,135,22.2,27.8,31.8,35.6,35.3,34.4,25.4,31.3,518.8,91.7,26.3,40.4,64.1,49.2,74.5,60.8,233.2,153.9,83.6,118.7,90.1,61.5,87.3,43.4,341.5,893.2,227.5,218.4,164,451.9,84.3,12.5,341.4,193.6,246.4,402.9,260.3,139.9,136,170.1,10.2,164.7,229.3,141,114.9,127.8,96.4,106.5,94.5,98.3,674.5,112.5,106.1,157,98.6,119.9,99.8,153.3,138.9,107.3,110.2,143.5,129,137.4,421.9,49.2,92.7,89.5,44.4,5.3,69.6,50.8,12.6,43.7,15.3,0.7,283.4,39.9,178.9,44,91,90.3,55.8,56.1,49.5,34.6,36.9,43.7,30.7,44.1,30.5,31.3,24.1,64,35.8,32,39,40,39.8,41.3,40.5,94,1050.3,293.3,412,329,9.8,61.2,4.8,4.5,28.4,154.2,68.2,18.8,45,227.2,812.2,375.7,327.6,674.9,608.2,315.7,322.2,36.7,33.3,180.4,142,306.6,375.5,299.4,47.9,122.5,550.1,33.8,33.9,130.4,284.8,274.7,138.9,210.8,259.5,336.5,664.1,20.7,33.4,335.2,397.6,327.9,167.3,54.8,298.1,302.4,98.9,87.2,103.1,75.8,80.5,2.5,121.9,104.4,92.5,90,67.4,125,60.4,190.8,171.5,200.3,32.3,17.6,605.8,159.3,121.3,134.7,63.8,104.5,8,181.7,47,81.8,115.1,87.8,46.1,9.5,100.2,7,149.8,16.1,28.6,30.7,34.2,28,26.8,21.9,18.3,21.3,11.4,11.6,21.8,21.7,19.2,22.4,16.5,26.8,29.2,28.6,47.8,34.9,34,32.2,36.1,42.1,34.2,39.1,57.3,56.4,172.3,542,699.8,176.7,334.8,485.8,199.7,119.1,60.1,64.6,76.8,71.3,79.7,33.4,89.1,530.1,434.4,112.2,606.7,452.2,172,34.1,44.2,24.8,94.6,53.6,88.4,77.7,56.9,56.7,49.4,114.1,353,192.5,109.3,79.3,82.4,160.5,147.8,139.6,356.5,213.6,195.1,486.4,124.5,74.3,103.3,77.1,96.2,91.1,111.3,63.8,52.7,67.9,80.6,149,244.1,227.9,233.8,452.9,1350.5,110.1,37.1,53.9,38,28,46.2,60.9,42.8,49.8,52.8,61.9,65.3,58.1,116.3,304.3,50.4,45,54.7,48.6,45.9,36.2,58.6,54.5,70.2,195.3,272.5,179.9,87.2,9.3,468.7,504,213.6,175.2,125.2,236.8,115.2,109.6,53.1,39.7,181.3,165.8,131.2,125.5,133.2,617.2,343.3,438.2,338.1,491.4,507.6,582.7,66.9,179.3,53.9,250.8,299.2,1577.8,477.6,276.7,747.1,463.9,517.8,753.1,142.2,85.9,87.4,480.9,117.1,152.1,111.9,264.8,0,303.5,503.6,156.2,215.7,130.1,5.9,78.9,81.5,105.7,52.8,51.3,61.8,73.7,100.9,65.5,441.6,357.6,239.6,121.6,56.8,58.4,79.9,82,84.4,83.6,110.9,67.7,69.2,59.2,65.8,143.7,595.9,18.6,1.6,708.8,184.9,148,185.8,159.4,283.3,212.9,58.5,186.4,189.9,83.5,84.6,87,42.7,86.1,69,12.5,432,153.1,247,495.8,149.5,149,297,207.4,175.8,64.3,18,171.2,146.3,209.8,136.5,115.6,103.8,376.9,379.3,604.6,87.7,76.7,92.7,45.5,208.3,64.3,60.4,352.3,136.6,268.4,527.1,326.9,203.3,262.9,128.1,69.6,593.4,28.3,35.6,57.4,28.3,76.7,106.5,75.6,75.4,80.1,48.1,14.5,494.4,167.4,116.2,50,72.7,73.3,80.3,76.5,163.9,57.3,1.1,29.4,226.8,90.8,85.1,66.1,51.2,98.4,206.9,255.5,258.9,137.7,108.1,255.1,319.9,439.2,190.6,191.2,184,315.5,323.4,118.9,359.4,320.7,326.7,511.6,188.5,184.7,115.4,114.8,153.6,143.1,525.9,295.4,303.1,323.7,299.6,173.3,167.7,178.4,150.8,712.7,107.1,81.1,135.4,153.7,464.7,446.5,674.3,110.7,654.3,572.9,180.4,202.6,97.7,112.6,484.4,330.2,165.2,174.6,79.2,121,175.4,143,46.2,140.6,28,245,101,176.3,265.8,271.2,202.7,513.8,386.8,180.1,128.1,76.2,43,151.6,172.5,126.6,1054.9,518.4,87.9,120.6,255.8,92.2,161.4,126.6,8.6,40.1,144.5,147.7,25.8,55.7,93.5,109.3,50.8,70.4,52.4,87.9,79.9,51.3,26.5,28.7,43,52.8,9.8,13.3,2.7,10.8,6.4,11.3,73.2,68,56.1,143,2.1,141.7,137.4,169.6,260.2,313.9,192.5,195.9,143.7,150.3,373.9,463.1,104.3,82.8,90.2,61.5,42,343.3,36.5,162.2,24.1,22.4,23.6,21.4,191.9,428.6,81.6,67.8,85.9,6.8,49.9,101.5,167.1,67.7,19,79.4,57.4,98.5,52.5,22.8,43.9,36.6,45.2,120.9,12.6,24.7,16.3,1.6,4.4,4.4,4.4,4.4,4.4,4.4,2.7,1.6,4.4,4.4,4.3,2.3,4.3,4.3,4.4,4.5,2.3,2,4.4,8.9,6.4,1.8,2.4,1.5,1.5,2.3,21,5.3,72.9,92,26.6,15.5,19.4,19,6.9,6.7,5.7,8.9,4.5,10.2,11.3,77.7,15.1,24.1,13.6,90.3,19.2,3,7.2,17.7,7.4,5.8,8.7,7.3,11.4,13.8,2.2,5.8,12.2,44.2,17.5,17.1,65.9,27.8,23.4,5,5.5,3.5,1.9,11,5.8,5.1,8,7.6,39.8,58.9,0.1,81.5,13.5,7.9,0.2,1.5,1.3,8.5,29.6,15.7,21.7,16,27,29.6,11.2,9.8,53.5,70.2,9.6,0.4,3.4,7.5,6.6,132,17.8,24.3,9.9,13.6,11.6,5.4,84.4,5.2,54.8,21.1,8.1,20.4,11.1,8.4,40,30.4,20.3,22.9,24.1,113.6,249.6,8.2,16.2,7.4,109.1,48.2,69.4,12.3,5.4,9.7,8.5,0.9,2,8.3,9.1,241.3,8.2,60.3,149.8,14.5,38.2,195.2,3.7,26.3,74.4,50.7,7.3,18.6,11.3,4.7,4.4,20.8,4.1,4.1,3.8,3.4,3.8,5.2,2.9,2.8,3.1,3.3,3.3,3.4,3.3,3.4,2.4,3.4,2.4,2.8,3.1,4.4,0.5,2.4,2.8,2.3,2.3,2.6,2.5,4.5,3.5,3.3,4.2,4.6,4.2,144.9,8.7,9.4,139.6,13.8,37.4,17.6,13.1,84.4,69.4,71.3,9.3,13.6,13,68.4,2,62.5,5.4,7.7,24.5,53.6,3.5,17.8,4.7,6.6,8.6,49.4,4,19.7,14.7,11,11.6,19.9,7.1,105,59,68.5,7.6,7,1.7,2.3,28.5,2,6,5.5,8.3,18.7,7.7,4.7,19.5,11.4,44,54,40.9,13.1,113.6,34.3,15.3,11.6,3.7,1.2,1.8,4.3,9.9,45.3,140.8,5.6,7.1,147.9,5.8,7.3,116.6,117.9,17.9,32.4,15,6.2,2.5,1.6,3.2,8.9,80.5,7.9,21.4,5.1,72.8,5.9,6.7,9.8],"duration":[10.244,0.671,8.107,1.247,11.889,4.541,0.225,0.775,1.495,1.666,4.422,4.899,7.658,9.475,5.566,7.056,1.38,9.471,1.403,10.079,2.271,1.748,3.43,1.283,6.452,4.635,8.237,8.75,5.925,0.512,0.803,16.208,1.024,20.035,1.842,11.8,12.628,1.572,6.6,6.731,8.4,11.707,13.725,5.681,1.484,1.935,2.116,2.251,2.373,2.314,1.892,2.217,8.661,0.915,3.942,2.085,7.299,6.728,2.167,18.963,8.965,4.246,2.851,27.868,4.825,1.655,2.347,25.948,0.542,3.606,1.317,3.832,24.282,6.075,4.197,1.143,0.708,0.699,1.243,0.835,0.814,0.808,1.169,1.174,0.896,0.859,0.861,0.856,0.859,0.873,0.859,0.856,0.861,0.875,0.866,1.709,0.971,0.998,0.95,1.129,0.846,0.969,2.558,0.867,0.944,1.739,10.848,2.954,10.927,3.934,3.896,5.823,13.369,5.819,3.404,9.67,1.258,1.385,9.95,3.633,5.915,3.961,3.611,2.019,1.354,15.074,2.965,5.128,4.674,2.545,3.645,2.299,2.148,2.301,1.136,0.996,1.047,0.973,0.898,0.853,2.726,1.985,1.771,0.849,2.017,1.534,13.014,2.859,1.103,1.103,4.233,10.519,3.735,2.107,12.757,4.557,2.407,11.511,1.029,2.674,0.674,1.034,4.706,6.687,1.446,1.49,0.992,2.13,2.744,2.029,10.137,5.52,2.864,5.5,4.664,4.971,4.079,5.696,13.5,4.5,1.114,0.303,2.577,7.068,4.133,17.314,1.632,1.191,0.843,0.922,3.664,0.582,0.658,1.97,2.061,0.508,0.707,2.248,5.75,5.684,7.484,2.393,1.679,14.422,14.713,19.162,3.027,3.382,8.14,1.648,5.371,4.557,11.729,3.051,1.428,7.386,1.133,6.957,2.156,6.735,5.317,2.085,2.425,3.637,2.518,8.576,4.555,1.156,1.338,2.281,7.034,5.333,8.973,6.802,12.878,4.993,2.314,7.401,22.369,9.429,2.033,1.82,7.915,0.356,2.907,1.34,3.368,4.727,8.585,8.529,4.951,1.76,1.347,2.037,1.509,1.598,2.065,1.979,1.874,1.678,2.121,1.859,2.758,2.134,5.097,6.816,2.856,2.592,3.491,3.313,3.355,3.003,2.104,2.963,4.657,3.076,2.21,1.893,1.348,0.62,1.103,3.297,6.6,1.657,5.843,3.524,4.5,1.226,1.798,1.925,2.857,5.59,1.618,4.789,2.747,1.923,0.715,1.828,0.965,1.77,1.48,0.352,3.301,1.412,1.103,0.922,1.151,0.993,1.109,2.048,2.173,2.404,6.265,6.265,3.125,3.136,3.15,2.457,0.669,3.902,2.943,1.87,1.061,1.987,1.013,1.535,2.371,1.591,0.805,1.943,2.506,1.5,1.547,7.585,1.778,0.45,19.697,3.852,2.265,10.912,10.883,10.874,1.837,1.843,2.899,3.141,1.664,4.771,3.411,1.371,1.369,1.435,1.396,1.049,1.825,1.855,3.681,3.75,24.24,7.889,18.607,28.269,4.127,3.498,3.715,8.235,6.84,14.045,14.126,5.914,2.272,1.888,2.524,2.218,2.416,2.461,2.419,10.724,6.38,5.364,4.213,3.519,3.767,3.606,3.278,5.622,5.693,4.955,4.129,5.413,3.713,2.21,14.82,13.447,5.702,2.052,4.031,9.963,4.362,4.397,4.085,4.084,2.074,1.611,3.223,4.386,2.544,5.387,2.861,2.244,2.54,11.463,1.757,2.847,5.426,1.763,6.717,1.328,5.494,3.084,13.171,7.132,4.468,3.21,2.167,3.934,5.058,5.76,2.141,2.202,23.417,24.777,4.04,1.835,10.697,1.852,7.446,11.264,11.435,4.366,3.968,3.438,2.91,4.188,9.564,3.134,2.982,3.03,3.568,8.546,3.682,4.004,4.161,15.772,1.381,2.776,1.539,3.079,2.032,4.043,7.924,2.602,1.604,2.29,2.262,3.882,4.407,4.821,4.653,4.667,3.182,4.007,4.428,1.989,1.917,2.582,1.916,5.059,4.968,3.785,1.11,2.924,4.548,1.662,3.06,3.836,3.272,2.347,1.8,5.375,1.998,2.046,2.009,1.955,3.093,1.523,2.382,1.663,2.586,3.949,4.398,4.433,2.06,5.489,9.643,9.655,12.871,20.483,10.235,9.558,8.03,8.152,3.997,2.784,2.803,1.889,7.067,3.667,9.992,3.68,3.147,2.751,2.004,2.344,4.008,6.596,3.023,7.546,3.541,2.631,3.612,3.934,1.782,2.305,4.129,0.012,2.755,3.624,1.428,1.943,1.715,0.853,0.741,2.391,0.654,1.614,3.931,1.241,1.326,1.269,1.626,2.915,2.46,1.783,3.671,4.208,4.363,4.185,3.652,4.572,4.408,16.184,6.789,5.939,8.989,5.401,4.592,3.557,3.96,4.741,3.977,3.536,3.363,3.803,2.85,3.99,6.238,3.914,3.259,9.125,6.178,3.331,4.022,3.955,3.845,4.146,3.193,3.133,4.456,4.003,1.879,0.655,2.199,7.716,6.368,4.521,4.844,4.151,5.713,4.782,3.426,3.354,3.954,3.056,3.642,3.649,3.043,5.471,3.792,0.303,3.858,3.99,4.27,6.685,6.316,5.168,4.597,4.264,4.407,3.609,4.381,3.916,4.087,3.373,2.558,4.156,3.31,4.357,5.373,4.64,4.859,4.894,4.535,2.5,1.946,8.151,3.063,1.29,3.648,5.093,4.275,2.138,4.52,7.172,7.111,6.601,4.423,4.246,2.089,5.513,1.849,6.253,3.925,3.816,2.908,2.865,2.651,0.753,1.4,0.611,5.104,2.704,2.44,0.348,1.486,4.133,2.723,2.574,2.939,6.391,5.365,4.953,6.335,4.907,5.457,5.779,5.925,3.595,5.132,5.588,5.477,6.73,7.517,5.663,5.437,5.076,9.767,5.946,4.754,7.25,8.375,4.693,6.935,3.714,1.318,7.288,13.37,7.545,5.138,5.384,6.325,6.914,10.52,9.497,10.631,2.021,6.387,7.526,5.32,8.018,6.662,6.858,6.237,7.026,2.441,0.778,3.4,14.669,8.838,8.088,3.762,6.26,2.303,4.897,4.918,4.765,2.818,1.929,0.794,2.364,3.845,4.864,8.446,9.64,4.507,3.344,4.864,7.276,7.59,8.163,7.711,7.84,14.342,5.726,5.287,0.35,5.355,5.93,5.598,4.265,6.167,5.488,12.638,5.865,1.745,3.217,2.359,3.274,2.056,2.91,2.49,2.386,3.23,5.227,6.272,8.83,5.374,3.731,4.004,1.898,5.879,2.543,1.354,1.925,1.79,2.746,2.638,1.318,1.51,2.447,2.389,1.563,3.444,4.149,2.238,2.439,3.886,3.672,1.734,4.186,2.713,1.484,5.414,2.354,4.331,3.527,3.495,3.881,0.731,2.997,2.557,5.513,6.785,6.018,3.585,6.05,3.59,1.783,1.479,3.031,5.646,4.02,4.062,2.765,2.391,1.891,1.995,3.145,2.687,2.976,3.917,4.018,2.858,3.101,2.189,2.631,11.097,5.241,2.544,1.35,4.863,1.688,0.976,2.922,3.721,3.47,3.393,3.669,5.069,1.167,1.029,3.832,5.445,3.965,0.853,4.546,4.522,4.618,4.601,5.524,4.216,5.295,11.036,1.466,3.19,2.789,5.398,4.874,3.887,4.224,0.947,7.032,7.3,3.721,19.326,4.571,4.377,2.874,3.04,2.977,2.956,2.432,2.721,12.36,3.587,3.825,2.974,4.223,3.251,3.826,4.834,3.454,3.668,3.212,9.046,4.932,8.1,5.988,7.011,4.957,3.176,2.578,3.639,6.255,3.325,2.551,2.509,3.13,3.05,3.602,2.953,3.207,2.561,0.473,10.189,4.907,5.848,5.846,4.493,3.911,3.641,2.034,2.853,5.081,5.958,13.51,4.595,2.663,2.295,1.725,1.083,2.871,1.767,4.4,3.093,1.672,4.258,3.924,3.833,5.734,13.312,4.586,4.637,4.425,6.134,3.634,2.743,3.848,3.805,3.566,14.621,6.304,5.167,5.221,11.098,4.702,4.294,8.58,5.815,3.261,4.006,5.001,2.394,2.867,4.524,3.088,3.666,3.763,3.475,4.727,10.162,6.984,5.761,4.574,4.29,4.015,5.679,4.427,4.409,4.114,5.052,7.483,7.197,5.791,4.871,4.658,3.661,3.672,4.833,3.482,2.589,2.626,2.225,3.232,2.206,3.37,2.63,1.524,2.856,1.105,2.038,2.125,2.032,1.701,1.711,1.536,14.288,7.918,4.314,2.65,3.536,6.982,5.743,3.739,5.372,8.081,0.425,2.857,3.201,44.746,3.295,3.578,4.004,3.195,4.404,3.919,16.544,2.842,2.959,4.097,8.92,54.233,3.245,2.684,2.303,2.271,14.626,3.326,4.206,14.576,2.247,3.354,4.468,1.713,1.488,0.594,5.996,6.904,1.412,3.738,5.262,17.836,2.161,1.769,1.209,0.904,1.009,1.853,1.412,2.35,7.177,1.133,1.417,2.057,1.451,1.774,2.142,1.604,4.05,11.609,4.314,3.816,4.521,4.004,2.291,1.991,1.889,2.088,2.226,2.2,7.3,3.553,9.589,2.927,19.003,4.766,1.485,3.103,13.431,2.316,2.33,3.197,2.485,2.383,17.906,4.686,6.43,8.115,2.889,1.829,1.799,2.316,2.8,3.026,3.186,7.58,3.499,8.071,1.829,1.361,1.107,0.726,0.866,0.948,0.889,0.563,0.543,1.44,0.967,0.841,0.819,0.823,0.868,0.78,1.863,3.514,1.669,1.592,1.724,1.994,1.616,0.242,4.462,10.078,10.994,3.055,3.112,3.964,21.174,3.054,2.075,2.058,1.894,1.892,2.225,3.309,30.803,3.957,4.622,4.997,3.124,4.75,2.242,5.967,10.897,5.542,5.436,14.671,3.524,1.853,1.144,0.612,0.854,0.876,0.584,0.815,0.481,0.588,0.74,0.665,0.709,0.665,0.595,7.73,2.538,3.126,1.998,2.096,0.858,0.646,0.679,0.632,0.716,0.516,0.759,0.886,0.574,0.642,0.81,0.639,0.694,0.584,0.803,0.609,0.913,1.063,0.888,1.098,0.801,1.055,1.536,1.134,3.138,3.623,4.211,1.4,2.7,1.602,1.601,2.916,0.816,0.927,0.986,0.799,0.971,0.852,0.716,0.64,0.558,0.433,0.853,1.461,1.197,1.069,1.114,1.422,2.089,1.417,2.653,9.842,0.54,0.874,1.397,1.127,1.07,1.425,1.27,1.496,0.992,1.124,1.088,0.789,0.973,1.949,2.354,1.015,1.515,0.962,0.883,0.981,0.892,1.434,0.822,0.948,0.805,0.242,4.491,2.062,1.049,1.66,1.696,0.981,1.122,0.815,0.963,0.948,1.265,2.44,1.16,1.525,1.094,1.443,1.328,1.02,1.006,1.222,1.028,0.956,0.911,0.929,0.882,1.015,1.546,2.754,3.931,4.443,4.326,8.081,4.935,4.556,10.093,2.34,1.171,0.789,1.017,0.906,0.899,0.78,1.115,1.01,0.877,0.886,0.751,0.82,0.897,0.93,0.859,0.813,0.759,1.032,0.847,1.183,0.713,1.304,3.591,9.178,5.006,5.16,4.218,13.216,4.37,4.907,1.353,4.343,14.802,5.337,3.251,3.852,7.412,3.541,3.195,3.054,6.635,2.92,3.315,9.497,3.637,4.062,19.756,4.437,2.908,2.456,2.206,2.284,2.036,0.998,1.855,11.934,0.782,0.62,0.484,0.411,0.443,0.63,0.551,0.71,0.571,0.375,0.414,0.409,0.374,0.693,0.763,0.731,0.502,1.266,0.774,0.829,0.878,0.747,0.768,0.81,0.638,0.824,0.604,0.528,0.627,1.75,1.385,2.701,4.263,4.713,2.756,2.203,1.862,3.36,0.777,0.85,1.729,2.214,5.984,9.952,9.992,12.982,0.814,0.871,0.882,0.865,0.853,0.926,0.62,0.366,0.317,0.61,0.861,0.88,0.854,0.5,0.643,0.782,1.01,40.994,4.243,4.054,4.219,4.179,3.145,1.981,2.473,29.715,16.46,3.852,3.795,3.965,4.236,3.802,2.067,4.055,4.61,4.393,4.012,4.187,1.46,0.937,0.896,0.495,0.583,0.613,0.534,0.209,0.358,0.587,0.579,0.539,0.679,0.581,0.775,0.559,0.476,0.532,0.453,0.444,0.589,0.911,9.907,0.747,1.007,0.545,0.574,0.67,0.664,0.328,0.436,0.619,0.364,0.376,0.536,0.598,0.575,0.72,0.611,19.807,10.411,2.175,1.832,3.493,8.479,4.342,3.317,4.207,4.224,4.282,16.042,4.367,3.697,4.263,4.215,5.001,4.181,2.596,4.577,7.412,1.137,0.862,0.758,0.494,0.557,0.519,0.496,0.604,0.567,0.642,0.882,0.509,0.379,0.464,0.438,0.516,0.737,0.661,0.43,0.729,0.425,0.549,1.728,2.134,2.379,1.254,3.322,2.054,4.453,0.835,2.109,3.504,2.399,0.888,0.936,0.719,0.963,0.734,0.872,0.899,0.694,0.577,0.71,0.781,0.534,0.518,0.791,0.681,0.556,0.035,0.677,0.805,17.617,1.569,1.245,0.939,0.654,0.743,0.526,0.511,0.506,0.724,0.709,0.464,0.566,0.741,0.842,0.871,0.847,1.001,1.483,0.94,1.21,1.339,1.208,1.131,1.268,1.106,0.926,0.702,0.844,0.737,0.604,0.484,0.463,0.577,0.545,0.867,1.089,0.847,0.859,0.96,0.924,0.842,1.4,1.031,1.178,0.648,0.472,2.392,1.399,0.961,0.67,0.552,1.349,0.652,0.612,0.611,0.867,1.146,0.751,0.784,0.972,0.909,0.814,0.603,0.935,0.889,0.8,0.842,0.91,1.385,1.105,2.049,1.961,3.256,3.583,2.887,1.596,1.06,8.793,0.915,0.953,1.071,0.954,1.25,0.858,0.904,1.009,5.236,4.184,4.58,8.189,2.752,6.114,2.969,1.072,0.727,0.76,0.691,1.121,0.601,0.861,0.611,0.795,0.878,0.844,0.793,0.809,0.807,0.712,0.966,0.928,0.902,0.724,0.678,0.905,0.595,0.82,0.68,0.563,0.516,1.043,3.91,2.4,1.184,1.458,3.612,2.677,2.069,2.039,1.208,1.264,1.349,1.223,1.204,1.18,1.201,1.2,1.087,1.619,3.192,7.04,3.097,1.86,1.571,2.143,1.847,1.155,1.79,2.137,1.933,1.292,0.549,1.984,1.518,1.383,0.889,1.269,0.753,0.927,0.922,1.109,0.975,1.083,0.851,0.734,0.746,0.932,1.463,1.652,1.541,1.398,1.453,1.399,1.012,1.087,1.079,0.874,1.026,1.409,0.918,0.65,0.779,0.824,1.152,0.939,1.254,0.971,1.834,1.623,0.987,1.311,1.233,0.979,0.886,0.981,0.953,0.513,0.542,0.77,0.744,0.803,0.842,0.964,0.934,0.806,1.073,0.979,0.845,0.949,1.49,2.331,2.453,1.37,1.075,0.757,0.868,0.881,0.974,0.876,0.618,0.885,0.825,0.691,0.873,0.67,0.621,0.777,0.756,0.729,1.618,1.995,1.478,0.845,0.86,0.624,0.658,0.642,0.919,0.931,0.842,0.777,0.824,0.769,0.727,0.897,0.804,1.154,0.749,0.739,0.77,0.694,0.625,1.736,2.254,1.721,1.691,1.315,1.167,1.596,1.567,1.285,1.119,1.118,0.956,1.302,0.882,2.403,2.079,3.009,6.584,2.287,1.928,2.267,3.016,1.981,2.082,4.508,5.568,3.511,2.634,2.186,1.488,1.479,1.314,2.753,1.532,1.798,1.872,2.193,1.892,2.787,2.245,4.627,1.979,1.746,1.755,1.629,1.948,1.861,3.228,2.479,4.279,1.305,6.635,5.002,6.108,5.667,5.459,5.183,5.737,4.899,1.536,1.437,1.505,1.397,1.72,2.103,1.704,1.434,1.562,2.938,2.132,26.682,0.07,2.159,1.641,0.785,0.64,0.611,0.679,1.335,1.297,1.052,1.235,1.054,0.823,1.309,1.061,1.151,1.436,1.181,1.194,1.237,1.251,1.23,2.46,2.533,9.512,4.589,2.342,1.992,2.02,3.015,1.977,2.691,4.866,20.717,1.583,1.292,0.957,1.014,0.993,0.907,0.919,0.944,0.855,0.874,0.979,0.953,0.949,0.914,0.931,1.099,1.198,1.864,2.374,7.383,1.792,1.56,1.391,1.306,1.152,1.084,1.234,1.396,1.326,0.982,0.913,1.128,0.952,0.927,1.275,1.601,1.635,1.457,1.625,1.58,5.622,5.465,1.279,1.184,1.161,1.351,1.473,1.363,1.493,1.38,1.322,1.339,1.379,1.335,2.249,2.218,0.686,1.198,0.401,0.399,0.439,0.464,0.445,0.43,0.438,0.478,0.391,0.448,0.45,0.532,0.438,0.431,0.416,0.473,0.452,0.453,0.435,0.461,0.444,0.412,0.471,0.439,0.432,0.448,0.463,0.436,0.461,0.44,0.431,0.462,0.437,0.443,0.872,0.854,0.496,0.446,0.416,0.448,0.411,0.463,0.446,0.43,0.448,0.442,0.472,0.435,0.46,0.433,0.442,0.472,0.429,0.431,0.449,0.456,0.45,0.434,0.447,0.432,0.447,0.446,0.421,0.47,0.442,0.652,1.469,1.447,1.394,1.214,1.359,1.241,1.078,1.146,1.303,1.33,1.214,1.254,8.023,3.093,3.063,1.889,1.65,2.635,3.175,3.504,12.848,2.533,2.139,1.388,1.393,1.007,0.894,0.952,0.929,0.927,1.261,1.006,1.039,1.29,1.343,1.584,2.735,2.776,3.313,1.864,3.246,2.417,2.897,1.425,0.744,1.071,0.902,0.947,0.981,0.87,0.855,0.546,1.26,0.87,0.92,0.861,0.934,0.874,0.95,0.903,0.926,0.994,0.955,0.679,0.782,0.689,1.642,2.153,21.319,11.749,4.874,2.084,2.904,4.817,7.413,2.577,2.702,2.537,2.505,1.859,2.095,1.565,2.677,4.814,4.721,3.053,1.368,1.501,2.645,7.982,0.789,3.427,4.316,4.445,1.846,2.015,1.228,4.842,6.04,5.424,3.472,1.451,1.471,1.393,3.411,3.758,1.952,1.706,3.915,9.632,2.512,4.935,3.372,0.432,1.356,4.662,7.602,3.091,8.363,3.237,11.909,4.685,4.44,2.184,2.271,1.989,2.095,3.226,2.167,8.842,3.949,5.44,2.867,2.319,4.589,6.924,5.369,3.495,6.175,2.568,2.547,5.202,4.793,4.253,4.568,9.085,2.413,0.569,1.551,1.031,1.064,1.137,1.036,0.828,0.84,0.643,0.581,0.834,0.953,0.91,0.934,0.985,1.74,0.973,1.109,1.2,0.935,0.991,0.865,0.939,0.955,0.777,1.046,0.904,5.804,3.286,4.424,2.172,1.644,3.861,4.343,2.529,2.965,3.059,0.185,3.144,3.869,4.151,8.548,3.249,1.909,2.201,3.199,3.588,3.268,9.046,3.887,4.31,3.018,2.996,3.618,23.378,3.718,3.237,3.923,3.007,3.009,2.643,1.259,2.35,2.87,0.997,0.866,0.762,0.044,0.777,0.96,1.117,1.287,0.96,0.654,0.94,0.851,0.908,0.974,0.854,1.338,1.317,0.758,1.069,0.894,1.423,2.538,3.036,19.607,1.068,1.253,0.893,0.876,0.897,0.928,0.405,0.484,0.503,0.446,0.44,0.427,0.511,0.438,0.445,0.446,0.442,0.499,0.814,0.466,0.466,0.511,0.395,0.461,0.523,0.878,0.465,0.805,0.557,0.461,0.416,0.477,0.456,0.437,0.394,0.425,0.461,0.451,0.43,0.459,0.443,0.468,0.442,0.456,0.5,0.5,0.897,0.835,0.868,0.923,0.923,0.53,0.354,0.992,0.945,0.901,0.931,0.972,0.936,0.911,0.887,0.582,1.312,1.381,0.861,0.851,0.586,0.853,3.879,6.225,3.408,2.518,2.4,1.548,1.528,1.489,1.574,1.301,1.624,1.62,1.615,1.149,0.996,2.02,2.497,2.308,1.173,4.94,1.257,1.754,2.855,1.853,2.198,1.327,2.124,3.308,1.886,1.48,3.634,2.503,2.777,1.582,2.291,1.915,1.373,2.34,3.672,2.944,6.166,2.033,3.748,0.602,3.944,4.25,4.11,3.927,3.975,4.346,9.165,3.526,3.4,3.563,11.903,5.42,3.786,3.577,2.207,2.946,2.838,15.929,8.744,6.07,4.228,4.055,2.656,2.032,5.546,29.178,2.331,2.454,2.358,2.096,4.239,58.523,4.816,4.947,4.094,1.425,2.802,29.444,3.259,3.265,3.365,3.439,3.023,2.788,3.165,4.821,4.741,4.986,4.819,5.079,4.823,2.198,0.943,8.293,1.414,9.314,5.63,4.349,4.406,4.005,9.848,4.666,3.933,4.337,4.185,4.061,4.268,4.079,0.011,6.864,4.314,4.188,3.829,3.668,4.003,10.374,10.769,4.995,2.286,1.419,1.891,0.734,1.633,3.234,1.597,2.934,1.456,1.693,2.064,0.981,3.399,4.258,4.85,4.861,4.569,4.5,4.578,3.409,2.503,5.543,2.663,2.809,0.276,6.804,4.811,8.335,4.462,5.517,3.197,7.014,3.282,2.605,3.15,2.263,4.198,4.018,9.014,5.095,5.447,11.895,12.88,7.063,23.664,2.694,5.151,3.042,2.544,5.214,15.179,4.933,4.312,5.488,5.608,4.256,3.973,4.254,4.165,12.204,1.543,4.391,3.069,2.984,3.504,3.038,3.965,0.918,3.421,7.471,7.495,1.928,5.842,20.007,11.406,14.235,16.795,20.56,4.867,4.922,4.855,16.791,7.126,3.187,3.954,2.289,0.805,6.645,7.674,6.113,5.633,4.446,2.438,2.199,2.629,1.635,3.522,3.784,18.341,2.045,2.464,1.439,0.312,2.189,1.858,2.796,4.633,7.723,9.058,0.938,0.623,1.664,1.34,1.909,1.933,3.465,2.939,2.783,1.207,3.687,4.429,4.092,4.015,4.801,25.629,3.558,41.156,5.217,3.978,4.188,11.774,9.26,4.14,4.024,4.022,3.923,3.845,13.667,3.936,4.343,43.137,17.189,1.218,3.404,4.583,0.408,1.358,1.731,7.891,12.022,3.891,4.062,4.235,23.618,4.941,5.384,4.087,13.035,3.623,3.941,4.327,3.868,4.174,14.841,3.924,3.731,4.677,5.692,5.941,4.311,5.222,2.211,3.481,6.845,5.396,7.783,0.96,15.349,4.9,4.756,4.203,0.011,1.056,1.537,1.984,17.845,4.438,4.361,4.35,4.499,33.76,5.04,5.943,16.235,2.123,1.895,1.704,1.607,1.271,1.006,2.405,1.811,2.457,2.314,5.346,7.615,0.516,2.808,6.011,2.4,2.088,2.706,11.839,2.924,2.484,2.644,2.119,1.214,1.841,1.415,0.972,1.691,1.419,1.613,1.621,1.379,1.638,1.605,1.48,1.457,3.393,1.418,2.135,5.509,3.377,1.273,1.035,1.171,1.405,1.399,1.192,1.455,1.71,0.23,1.307,1.323,1.218,1.525,0.985,1.03,2.04,1.588,1.265,1.163,0.372,2.936,2.485,1.708,3.141,2.565,0.535,2.16,0.834,0.89,5.604,7.643,1.044,1.429,1.915,2.444,5.387,4.8,2.871,1.68,0.449,0.286,7.597,1.075,1.127,1.203,1.046,1.114,55.238,6.482,2.292,2.332,1.107,1.837,2.39,3.576,6.336,2.677,1.92,4.786,14.27,1.2,3.394,3.48,2.601,1.482,1.51,4.468,4.146,2.849,0.72,1.271,4.049,2.196,2.27,1.337,5.977,2.039,2.33,3.968,4.738,12.176,5.389,4.146,4.465,19.188,2.334,2,1.985,2.523,2.301,1.993,4.191,7.201,9.743,7.657,4.543,3.102,1.593,2.742,1.965,2.573,1.564,14.414,6.258,1.101,3.185,3.986,3.478,0.722,4.033,4.369,4.383,2.539,0.788,1.062,4.253,4.185,2.21,1.641,1.731,1.741,2.493,3.04,4.271,0.339,10.725,2.387,1.674,2.223,2.152,2.127,2.128,2.068,2.061,4.335,2.189,2.182,4.07,4.758,4.42,1.212,1.143,0.842,1.498,4.212,4.186,4.333,4.528,4.149,3.999,4.09,4.009,4.501,2.206,2.242,3.998,4.737,4.273,4.194,4.534,6.024,4.401,4.199,4.269,2.232,0.789,0.93,1.226,1.27,1.571,0.999,1.916,1.161,1.343,2.673,3.011,0.914,1.146,0.931,2.033,1.723,2.124,1.773,2.651,1.843,3.064,3.221,4.98,4.665,4.841,2.058,2.683,1.562,4.229,4.446,1.374,2.678,3.884,4.204,4.551,4.056,3.945,14.243,4.163,4.31,4.51,4.174,4.069,2.511,8.411,3.745,4.553,4.332,4.099,4.441,4.175,4.463,6.771,1.896,3.875,24.732,4.194,4.224,1.578,7.956,4.523,4.387,15.501,11.487,10.493,3.796,4.249,4.243,4.647,4.648,4.226,46.989,4.825,4.948,7.784,21.105,3.984,4.249,3.777,3.961,3.828,2.883,0.513,3.822,4.014,3.941,3.425,0.675,3.988,1.236,2.488,0.099,12.349,3.475,4.078,3.402,4.189,3.846,0.073,4.001,4.738,5.172,4.251,4.666,0.833,2.729,3.238,2.692,1.782,6.909,1.657,2.305,2.718,2.83,21.682,5.249,5.686,18.73,0.663,5.889,5.195,4.991,25.577,1.516,2.595,7.319,6.001,4.889,4.454,4.65,2.891,2.981,2.996,2.859,3.215,2.905,2.962,3.356,3.791,11.369,5.97,2.991,8.045,4.114,3.212,3.971,4.588,2.987,4.056,0.95,0.542,2.436,12.471,7.667,9.597,3.326,4.357,3.807,4.972,4.752,0.314,5.033,11.145,12.356,2.996,2.959,3.479,3.921,5.047,2.332,3.059,2.829,2.429,2.274,2.344,2.592,2.206,1.925,2.141,2.604,5.075,5.307,3.132,3.083,3.2,3.035,3.05,4.146,3.687,3.554,3.702,3.707,3.969,9.575,2.784,2.825,2.765,3.943,5.232,3.004,3.097,8.434,3.097,3.077,3.136,3.109,3.021,4.058,3.117,3.149,2.965,3.184,3.199,2.744,1.753,1.58,5.025,2.256,1.541,1.682,1.867,2.766,3.124,2.433,1.92,2.263,2.628,4.029,2.67,2.667,2.568,2.973,2.898,2.971,1.161,1.822,3.137,8.357,7.946,2.694,1.563,1.322,2.071,1.632,2.858,2.514,0.054,2.997,3.464,3.209,3.686,10.174,3.913,3.614,3.248,2.546,3.012,2.83,6.448,2.983,1.5,1.415,2.333,1.003,0.754,0.679,1.498,0.968,0.976,1.355,0.909,0.866,0.681,1.109,0.786,1.984,1.282,1.042,0.897,1.004,0.955,0.978,0.987,0.933,0.664,1.199,1.042,1.015,1.175,1.066,1.073,0.946,0.941,0.905,0.967,0.97,1.453,1.644,1.31,1.362,1.391,13.187,0.944,1.014,1.339,1.586,1.691,1.362,1.141,1.234,1.401,1.323,1.589,0.965,3.833,0.164,1.709,1.191,1.241,1.035,0.99,0.558,0.913,0.789,0.613,0.884,4.317,4.336,3.927,4.111,10.906,3.453,3.185,4.288,4.267,3.633,2.984,3.749,17.803,3.183,2.974,4.685,2.363,0.821,0.677,0.833,0.576,0.779,0.866,1.489,1.083,0.907,1.027,0.074,1.229,1.139,0.804,1.277,0.769,0.473,1.592,1.125,2.355,3.316,2.513,2.431,3.586,1.385,1.002,0.995,0.74,0.913,1.168,1.121,1.623,0.74,1.335,0.666,0.922,1.624,1.865,9.322,1.754,2.411,5.226,1.812,3.238,2.395,0.685,3.097,2.469,2.736,2.73,2.411,2.639,1.136,1.555,2.688,3.225,4.197,4.246,0.942,6.409,2.859,8.311,4.761,3.198,3.293,3.089,3.567,3.769,12.546,2.597,3.313,4.765,2.437,5.069,2.81,3.641,2.789,2.951,0.503,2.647,2.952,3.022,1.32,6.698,2.93,1.997,2.575,2.723,2.553,2.957,2.907,2.917,3.356,3.349,3.102,3.374,2.948,3.051,1.501,1.989,2.647,3.633,1.122,2.923,2.685,2.4,3.024,3.995,2.943,2.524,1.663,2.743,2.874,2.853,6.397,3.138,3.757,2.338,2.545,2.744,1.642,8.603,14.977,2.422,2.537,2.423,2.674,2.668,2.54,2.688,2.687,2.781,2.433,1.625,11.096,2.554,2.562,2.29,2.503,4.988,3.689,2.631,2.428,2.431,39.313,0.403,2.421,2.502,2.299,2.533,2.363,27.297,2.794,2.676,9.796,2.509,2.359,2.381,2.662,2.734,2.825,3.099,2.553,2.651,2.297,2.199,6.538,2.603,2.472,2.575,2.606,2.755,2.664,2.794,25.367,2.56,2.684,2.71,2.273,14.784,2.302,2.372,2.675,2.714,16.375,2.539,2.63,2.438,2.764,3.28,2.964,2.507,25.326,2.235,2.332,2.583,1.322,1.397,2.54,2.964,7.169,6.378,1.303,5.518,5.678,39.079,2.776,2.536,2.838,2.559,15.749,2.408,2.458,2.45,2.458,6.66,6.973,3.066,3.757,3.06,2.899,3.32,3.535,3.655,4.5,3.054,2.962,2.564,2.562,2.759,2.863,2.734,15.702,2.85,2.613,2.933,2.516,2.81,2.774,2.945,2.399,25.954,6.044,2.447,15.555,3.477,3.147,2.828,2.939,3.732,2.602,5.972,21.626,2.821,2.93,3.109,3.449,14.164,4.785,1.215,8.767,11.782,8.972,2.26,1.043,1.025,1.862,2.415,2.4,2.784,7.455,2.773,2.861,2.666,2.742,4.506,7.584,2.863,2.548,2.589,2.122,15.463,2.93,2.063,2.064,15.771,3.734,3.667,3.249,2.971,17.657,3.247,2.622,2.967,2.477,7.186,2.645,3.19,3.07,1.803,1.258,2.988,3.327,5.515,2.577,2.915,2.068,1.683,2.54,2.008,5.29,2.598,2.344,2.126,2.43,25.91,15.385,15.63,14.969,11.367,5.855,2.085,2.715,1.203,1.711,1.871,1.661,1.104,1.913,1.798,1.404,1.928,0.413,3.829,2.441,2.439,1.934,1.796,2.736,11.098,16.049,6.796,3.028,1.038,1.645,1.926,2.27,1.251,2.46,1.341,3.4,3.003,2.58,3.986,2.305,3.41,1.9,1.424,0.603,2.138,3.119,3.034,4.888,3.426,1.813,1.754,3.659,3.079,3.753,2.875,1.892,1.738,0.927,2.316,3.338,3.584,3.248,3.243,0.072,0.581,2.849,2.941,4.479,3.62,0.307,3.87,2.098,4.362,4.893,3.965,1.226,2.928,1.769,1.315,1.955,2.377,1.985,2.934,2.469,2.54,0.199,2.344,2.401,2.713,2.942,3.886,2.897,3.562,2.336,4.16,4.22,2.461,2.181,1.406,2.516,3.294,2.626,1.802,3.596,0.634,8.613,8.278,8.018,6.4,5.869,5.749,6.036,3.744,3.692,3.504,3.576,4.995,3.212,3.33,2.882,3.196,7.353,6.203,9.094,6.633,8.653,4.709,2.263,2.321,0.6,5.366,6.256,12.552,9.444,2.957,2.609,2.019,2.439,3.333,1.411,4.198,2.069,2.497,2.351,2.462,1.4,1.721,1.716,2.625,2.471,2.601,3.268,2.751,2.122,1.486,1.39,1.864,1.555,1.856,2.049,2.107,2.351,1.526,1.979,2.385,4.299,4.913,6.178,5.978,2.647,3.022,3.332,0.197,3.253,3.882,3.389,4.168,3.021,3.219,2.69,3.967,4.958,5.376,13.66,5.063,5.548,10.022,11.562,1.808,16.726,10.983,5.917,3.044,2.143,2.382,4.827,4.243,4.3,8.558,8.998,4.796,1.956,2.126,1.428,1.656,1.419,1.256,1.488,1.607,2.17,1.899,0.98,1.405,6.033,7.916,1.829,1.053,2.52,1.863,1.458,1.123,2.02,1.855,2.056,1.81,1.923,2.032,1.781,1.988,1.819,1.903,1.543,1.706,1.71,1.933,8.376,8.94,18.239,0.289,10.944,10.743,10.293,5.099,5.334,3.528,1.496,1.781,1.956,2.046,2.252,2.486,1.279,1.332,2.274,2.469,7.354,5.567,7.683,0.177,7.439,10.487,10.125,4.61,1.977,2.135,1.444,0.747,1.984,2.509,2.481,5.143,11.678,14.414,4.152,2.252,2.22,1.643,1.434,8.68,7.857,6.142,5.983,1.79,1.68,1.166,1.204,1.578,0.977,1.788,2.311,1.399,2.631,2.201,3.083,2.132,1.621,2.061,1.779,1.726,1.717,2.059,2.035,1.642,1.43,1.718,1.421,3.521,5.988,6.291,1.289,1.927,3.854,1.721,1.646,1.687,1.348,1.703,1.984,1.835,1.404,1.339,1.151,1.481,1.291,2.901,2.249,1.826,2.166,1.721,1.826,1.588,1.902,1.915,1.953,1.833,1.521,1.593,2.418,1.672,1.729,3.444,0.733,2.866,2.493,1.906,1.461,1.746,1.971,1.923,1.633,1.484,1.492,1.901,2.469,2.209,3.48,1.587,1.414,2.103,1.853,1.959,1.852,2.542,2.589,2.207,1.36,1.472,2.254,2.271,2.452,1.597,1.709,2.456,6.937,5.453,2.83,1.19,1.342,1.503,1.628,1.981,2.085,1.683,2.748,4.375,6.754,14.867,4.72,3.195,3.042,1.984,1.739,2.12,2.674,2.812,4.716,4.402,4.217,1.676,1.828,1.802,1.835,1.496,1.404,1.612,2.916,3.307,2.111,1.978,2.012,1.915,1.351,1.256,1.317,1.574,2.042,2.191,2.2,2.067,2.483,2.484,3.187,2.859,2.007,1.937,1.859,1.405,1.89,2.062,1.395,1.519,1.352,1.37,1.205,1.245,1.491,1.64,4.372,5.649,5.655,4.585,16.785,3.747,3.406,1.641,1.805,3.536,1.8,1.832,2.957,2.487,2.591,3.181,4.721,4.529,4.944,3.872,2.342,2.909,2.803,2.346,2.545,4.526,1.929,9.943,4.653,8.904,4.912,4.948,3.382,3.542,1.801,1.636,1.402,1.538,1.716,1.596,2.179,2.047,1.693,2.395,3.419,2.108,1.821,1.702,1.845,2.368,1.648,1.829,2.652,2.213,5.99,5.225,1.786,2.276,2.132,1.926,1.426,1.651,1.715,1.913,2.016,2.868,2.142,1.856,2.257,1.861,2.13,5.051,9.642,10.221,10.297,3.045,1.991,1.574,1.905,1.989,1.139,1.473,2.275,2.77,9.387,26.76,10.69,0.866,15.337,17.947,17.921,17.431,12.333,2.605,2.989,2.13,2.379,2.218,2.592,1.353,1.444,2.833,3.669,4.032,2.793,2.245,2.444,2.515,3.085,1.827,2.101,2.036,2.414,4.576,4.11,4.398,16.433,0.306,17.309,12.754,13.069,10.909,5.889,2.44,2.643,2.048,2.506,2.789,1.787,0.528,2.467,2.705,2.445,1.818,2.996,2.267,5.238,4.88,3.029,3.432,1.337,2.693,3.188,1.97,2.172,1.966,3.552,3.618,2.055,2.11,2.61,2.691,2.225,2.295,7.45,5.942,4.618,4.109,2.878,3.065,3.624,3.354,3.135,3.727,4.462,3.361,2.95,4.117,2.932,9.62,5.132,2.38,2.615,2.377,2.923,5.223,3.546,4.059,3.861,5.023,2.04,4.273,6.834,3.376,0.958,2.186,2.469,2.688,3.021,3.069,4.908,2.824,3.477,4.094,3.125,2.972,2.781,4.304,4.092,4.013,3.514,4.153,3.083,2.579,3.253,4.163,2.542,2.154,2.377,2.274,2.267,4.02,3.915,3.032,3.276,7.416,2.743,2.891,4.014,2.509,2.618,4.566,4.407,3.712,2.051,2.304,2.661,2.831,3.781,2.928,3.622,3.467,3.915,7.744,8.122,7.143,11.736,12.576,5.704,6.477,3.091,3.371,6.522,4.884,5.125,7.021,1.851,4.632,4.868,3.356,0.02,3.453,3.193,2.343,2.242,2.34,1.381,2.628,3.574,3.841,1.288,5.953,5.979,7.609,8.615,7.889,7.167,3.608,3.805,1.515,1.639,3.098,2.201,3.369,3.769,2.682,12.987,2.259,6.344,11.693,16.222,12.465,0.854,3.254,3.568,3.468,3.714,4.854,4.543,5.551,9.255,9.603,18.792,18.612,9.442,9.215,2.742,2.51,1.433,2.292,2.594,0.13,2.345,2.187,2.636,2.539,1.812,2.438,1.087,1.516,1.969,2.169,2.994,1.788,2.328,0.708,1.454,2.226,1.86,1.673,1.862,4.241,1.818,1.685,3.588,3.437,2.625,3.458,3.272,3.894,8.186,5.184,8.047,13.547,13.348,13.544,2.879,8.84,11.818,6.42,0.626,16.975,13.966,12.914,0.838,19.768,6.488,6.655,3.122,3.86,7.126,0.037,3.063,3.193,8.382,3.771,3.574,3.053,6.817,3.668,4.174,7.783,13.941,14.182,28.572,45.34,9.164,10.44,19.327,6.095,8.848,11.291,0.9,2.556,11.002,12.316,5.596,5.775,2.853,2.873,1.771,1.896,1.597,1.511,2.674,2.098,1.317,1.694,3.26,4.835,1.245,2.485,2.551,2.46,0.701,1.915,2.328,2.388,0.422,3.751,3,1.958,2.074,3.899,2.299,1.853,2.699,1.591,1.683,2.956,3.316,4.044,2.029,2.256,1.222,1.975,2.901,2.52,1.861,1.789,1.659,2.743,0.798,1.741,4.848,15.705,15.811,15.722,15.782,3.126,8.317,5.035,6.229,7.753,6.598,7.151,16.651,2.997,4.994,9.653,19.491,0.345,2.199,2.219,0.42,1.823,1.922,2.804,1.484,1.569,2.326,2.4,1.498,4.041,3.841,1.907,0.34,1.685,2.853,2.106,1.419,2.626,2.493,2.823,1.675,2.181,2.296,2.804,3.101,2.691,2.219,2.178,2.129,3.189,6.319,1.134,2.691,0.958,1.914,2.324,2.819,2.614,3.135,2.96,2.93,2.073,2.546,1.886,2.382,2.215,1.973,2.516,1.792,1.903,1.832,2.031,2.588,2.133,1.955,2.286,2.018,2.109,2.088,1.998,1.666,1.661,2.259,1.711,1.765,1.605,2.05,2.192,2.378,2.665,1.365,1.524,2.131,2.108,2.644,2.414,1.449,2.218,2.524,2.779,7.975,1.725,1.908,2.021,2.133,3.555,3.711,3.406,0.5,3.993,4.404,2.033,2.176,4.017,3.258,3.817,3.724,2.25,1.481,3.265,1.337,3.393,3.699,2.65,1.902,1.758,2.159,1.826,1.589,0.411,1.994,1.554,1.529,1.787,1.672,1.332,3.555,2.523,2.794,2.592,3.969,0.808,8.718,3.134,5.853,2.767,3.094,1.174,2.905,2.296,3.668,3.918,4.37,2.981,1.474,1.661,2.342,1.875,1.605,0.598,2.356,4.715,4.92,2.538,2.83,2.859,2.765,2.689,9.091,12.228,0.917,4.932,1.395,4.62,2.169,2.65,2.965,1.796,2.185,2.365,4.366,5.844,1.74,1.611,1.749,3.288,1.194,2.341,2.797,2.636,3.662,4.026,1.933,1.938,3.218,0.628,2.155,3.439,3.267,3.047,2.267,0.769,3.427,5.051,5.929,5.314,9.992,2.102,2.216,2.098,3.186,3.614,3.733,0.951,0.9,1.107,7.789,1.576,1.888,2.398,2.558,2.821,1.737,3.344,8.453,3.985,3.415,2.316,2.443,1.01,3.37,3.623,13.716,0.705,5.986,3.348,2.906,9.623,0.238,5.428,4.448,3.656,3.674,1.706,1.874,1.757,2.264,2.746,0.275,4.923,3.723,4.022,7.779,14.95,14.788,5.379,2.685,3.16,3.472,2.887,3.323,3.008,3.783,4.494,3.727,4.105,1.189,4.077,4.514,3.551,5.237,5.526,6.714,6.029,6.216,3.525,3.889,3.593,3.474,3.631,5.15,3.092,3.254,7.827,4.021,3.523,3.162,2.05,2.302,2.471,2.591,4.276,4.159,2.855,3.681,3.052,4.362,4.301,3.757,3.823,2.772,2.448,2.217,2.146,2.428,2.572,2.438,3.328,3.283,4.046,3.794,4.114,4.003,7.733,5.582,1.068,1.86,3.298,1.796,2.006,3.317,3.978,2.553,2.465,2.569,2.669,4.551,5.23,3.974,2.375,1.629,2.732,2.541,2.995,1.473,3.051,3.59,1.851,1.715,1.954,2.081,2.505,1.61,1.911,1.585,2.068,1.814,2.643,2.357,2.787,4.66,5.216,5.869,5.858,3.86,2.026,3.003,2.726,2.421,2.294,2.031,1.82,1.521,1.838,1.761,1.728,1.746,3.661,2.116,1.863,3.132,3.17,1.646,1.562,3.057,2.308,2.455,2.763,4.456,5.996,4.72,4.554,0.459,0.337,3.657,4.244,2.071,2.843,2.978,2.375,2.706,2.827,3.244,3.535,3.6,4.813,4.88,8.942,4.389,2.183,2.072,2.242,3.076,2.212,1.799,1.683,1.763,2.527,2.776,1.845,2.147,1.681,0.364,1.685,1.467,1.788,1.734,2.734,3.039,1.901,2.295,2.956,2.897,4.332,4.263,5.985,5.945,2.962,2.395,2.049,4.374,2.19,2.06,3.172,2.674,2.812,3.367,1.512,3.234,3.043,1.759,1.522,1.793,1.925,4.822,4.594,2.054,2.727,2.913,3.009,2.115,2.203,2.803,1.581,2.823,3.446,3.905,5.994,6.362,5.249,5.108,5.343,4.179,5.322,3.246,2.426,2.942,2.646,4.782,2.578,2.263,3.325,5.032,4.878,4.464,3.251,3.013,2.919,3.35,1.86,2.066,2.866,2.335,2.319,2.048,2.416,2.084,1.866,3.071,2.413,2.721,2.83,3.005,2.891,2.729,2.776,3.909,7.141,2.609,2.349,2.156,2.411,4.519,2.742,2.512,3.931,2.747,2.604,4.967,3.151,1.718,7.562,3.34,3.178,4.631,4.394,0.682,1.567,3.482,2.544,2.793,5.005,3.748,4.307,4.25,4.27,2.94,3.227,2.446,2.613,2.563,2.782,2.671,2.9,2.401,2.495,2.424,2.625,1.752,2.06,2.22,2.016,1.834,1.997,2.129,2.001,2.759,2.038,2.229,3.337,2.532,3.27,2.553,2.338,5.202,4.9,2.738,3.252,1.106,0.605,1.954,3.184,3.52,4.042,4.013,2.194,2.391,2.198,2.083,2.714,2.16,3.065,3.97,5.375,4.973,3.068,2.818,2.704,2.228,3.308,1.523,1.756,1.926,3.196,2.248,2.857,1.762,1.648,4.032,0.964,0.682,0.56,2.651,7.183,8.539,8.215,11.673,4.533,5.865,4.253,5.528,2.985,2.819,3.893,2.197,2.08,1.56,1.256,2.268,2.493,2.331,2.54,1.338,3.014,1.457,1.629,1.889,1.546,3.157,3.026,3.272,4.54,4.754,4.822,2.452,3.28,8.25,4.441,4.75,1.395,3.163,2.583,2.729,1.852,1.367,3.967,1.674,1.623,3.186,2.17,1.973,2.392,1.731,1.809,5.143,4.959,2.807,4.407,4.165,3.673,3.204,5.179,16.542,9.359,5.187,2.375,2.156,1.532,1.683,1.768,2.331,2.812,2.253,3.198,1.66,2.636,3.328,4.864,6.368,4.145,2.136,1.915,1.738,2.015,2.35,1.748,2.146,1.34,0.888,2.34,2.576,1.982,2.563,9.506,3.514,2.159,0.966,1.704,2.493,2.664,3.067,3.718,2.68,3.401,2.825,1.612,1.681,2.542,2.153,1.617,1.584,7.633,4.158,1.742,2.503,2.976,2.333,2.643,2.327,3.015,5.979,2.163,2.073,3.756,2.931,2.998,3.277,3.868,4.268,11.022,6.19,5.597,10.465,5.295,2.837,2.688,3.16,2.978,1.128,1.351,1.609,2.258,1.894,5.45,1.383,3.376,3.725,4.908,1.673,1.486,2.218,1.398,1.025,1.773,2.022,1.779,1.6,5.048,4.822,6.673,3.752,3.165,1.93,2.439,2.423,2.18,2.27,2.934,2.457,2.138,1.911,1.757,2.059,2.423,4.042,4.782,2.034,6.338,3.018,2.5,2.612,2.75,1.481,0.999,2.748,1.858,2.481,2.074,2.226,3,1.496,1.411,2.007,2.688,1.707,2.342,2.312,6.377,12.951,7.01,6.053,3.328,3.586,4.006,3.731,2.179,1.844,2.493,1.962,4.779,4.238,3.33,4.311,4.431,4.355,2.95,4.702,4.554,3.369,3.669,2.383,0.344,2.766,2.43,2.8,2.487,2.171,2.928,3.225,7.253,2.717,1.084,2.197,0.859,0.169,3.165,2.894,4.124,2.023,1.109,2.886,1.266,2.077,3.438,3.498,3.115,2.869,3.294,3.243,8.879,5.304,2.25,18.42,0.369,19.194,17.14,10.541,10.834,11.181,5.58,6.056,6.029,5.905,6.414,6.539,7.833,8.791,9.472,9.649,7.859,9.014,3.934,4.168,3.96,3.917,4.932,4.142,3.802,4.232,5.509,6.824,1.418,3.857,0.445,2.613,6.573,1.434,4.896,2.942,2.228,2.949,5.882,5.141,4.608,12.419,6.809,1.109,21.455,16.356,7.507,7.558,11.691,11.74,4.727,4.613,0.102,4.126,3.588,1.929,2.081,2.837,3.026,3.38,1.823,2.475,3.001,1.865,3.725,3.217,3.469,2.158,2.137,2.605,4.438,4.412,0.699,2.27,1.248,1.055,3.258,3.292,1.911,2.496,1.628,2.602,0.726,1.623,1.856,1.504,1.171,1.752,2.382,5.19,5.261,5.69,4.458,0.524,11.184,6.842,3.904,2.334,14.361,6.686,6.231,32.172,15.824,7.982,3.244,12.364,3.09,2.922,3.05,2.105,2.917,1.945,3.738,5.376,3.867,3.985,1.483,5.569,4.148,2.233,1.674,2.091,1.883,2.01,1.218,1.664,1.41,1.641,1.633,1.273,1.437,1.477,1.563,0.941,1.534,1.524,1.044,2.24,5.057,2.225,0.793,5.189,0.949,5.675,1.881,0.49,2.127,0.328,0.408,4.284,6.191,3.558,1.776,2.012,2.128,3.175,1.948,2.172,1.896,1.821,1.74,3.777,0.007,4.062,1.537,2.377,1.551,1.447,0.607,0.598,2.062,0.898,1.081,0.96,1.175,2.059,1.59,1.744,6.947,2.233,3.379,2.201,2.521,2.111,2.426,1.499,3.735,2.933,2.445,4.139,3.454,7.115,6.132,3.246,4.078,2.096,1.867,2.086,2.556,0.083,4.87,2.079,1.795,1.503,1.873,1.348,1.341,1.544,1.158,1.921,1.874,2.386,2.47,3.579,1.961,1.929,3.052,3.482,1.487,6.486,5.57,5.308,5.562,6.001,0.01,1.195,9.089,5.074,5.195,3.275,2.817,2.562,2.503,5.216,4.927,5.145,1.298,0.539,0.401,2.694,4.876,15.784,8.95,32.226,18.679,11.019,0.173,2.868,1.16,10.052,10.198,5.571,10.733,3.125,2.162,2.087,3.405,8.051,8.514,16.029,0.426,21.966,27.097,9.103,4.842,4.873,9.693,7.039,12.149,0.486,2.842,6.489,1.823,3.888,3.625,9.065,11.056,0.297,0.394,11.445,5.182,9.425,4.805,4.552,4.13,5.763,8.163,1.96,2.612,2.198,2.335,2.481,2.073,1.939,2.149,2.254,4.412,2.91,1.319,1.735,1.821,1.385,2.325,1.723,2.728,5.203,4.039,1.102,2.17,1.931,1.737,1.388,1.305,1.532,1.587,1.959,1.543,3.326,1.566,0.594,0.899,1.159,1.127,1.791,1.606,1.031,1.124,1.658,1.893,0.958,0.578,1.681,2.065,3.815,1.085,1.332,1.528,11.238,4.438,0.572,4.136,4.116,5.513,10.165,8.567,7.248,7.279,0.633,1.056,3.129,3.254,3.066,2.881,4.731,1.875,1.312,10.34,6.377,2.306,4.252,1.917,1.547,1.653,2.547,2.139,2.238,1.705,1.668,2.048,2.34,1.307,1.195,4.268,4.029,2.648,1.441,1.643,1.652,1.718,1.918,1.487,0.535,0.599,0.398,1.466,1.972,1.061,1.142,1.315,1.434,1.241,3.797,4.315,2.76,4.371,2.182,4.008,3.918,1.007,1.296,1.776,1.185,1.503,1.401,1.159,1.926,0.975,0.515,1.831,2.391,7.376,3.957,2.298,1.635,3.507,2.329,2.218,2.441,0.989,1.425,0.046,2.605,2.837,0.342,1.814,1.101,1.809,1.858,1.865,3.091,0.919,2.63,1.876,1.745,2.482,2.963,1.375,2.322,1.975,1.789,2.163,2.127,1.112,1.243,1.256,1.807,1.782,3.043,1.279,0.879,1.603,0.943,1.047,0.95,0.882,0.598,1.584,1.545,1.103,1.273,1.846,1.316,5.175,2.37,5.246,2.159,1.524,0.834,3.736,2.446,2.443,1.783,1.919,2.662,2.808,1.729,2.107,2.507,3.425,1.822,1.326,1.01,0.853,1.063,0.724,1.404,1.416,1.284,1.16,1.505,1.52,1.345,1.351,1.212,1.232,1.557,1.615,1.566,1.602,1.282,1.087,1.454,1.286,1.471,1.578,1.403,1.356,1.273,1.311,1.573,1.687,1.598,1.61,1.903,2.031,1.73,1.918,1.203,1.113,2.353,2.104,0.119,2.174,1.988,1.87,2.503,1.641,1.552,1.696,1.626,2.126,2.013,4.629,2.438,2.614,2.888,4.323,5.479,2.6,2.597,1.949,1.808,1.764,1.042,0.624,2.295,2.324,2.25,1.695,3.81,3.893,2.14,1.1,1.852,1.225,1.612,2.637,2.434,2.16,0.614,2.351,3.364,1.649,3.118,2.767,3.056,2.621,3.266,3.361,2.216,2.315,1.935,1.807,1.968,2.258,1.186,2.193,1.808,2.789,1.631,1.606,1.572,1.462,1.665,1.53,1.786,1.144,1.055,1.32,1.33,0.878,1.241,1.733,1.802,0.821,0.872,1.055,1.714,1.783,1.148,1.136,1.96,3.408,3.52,3.747,2.323,0.706,4.168,4.153,5.015,3.116,1.13,2.672,2.735,2.196,3.912,5.041,5.135,4.918,4.253,2.022,2.104,3.466,2.462,1.744,2.708,1.318,3.265,2.309,1.701,1.898,1.92,1.686,1.562,2.348,2.04,2.063,3.927,1.863,1.378,0.876,1.095,1.883,2.137,1.354,1.516,1.378,1.718,2.37,3.64,1.642,1.837,5.608,1.915,1.068,1.132,2.17,2.586,4.585,5.036,3.572,3.077,4.686,3.028,2.766,2.285,2.051,1.44,2.164,2.157,2.199,2.049,3.463,4.156,2.716,1.982,2.528,3.514,3.241,2.791,2.685,2.992,3.153,4.34,3.607,5.482,5.042,5.072,3.492,3.44,2.504,2.262,3.751,2.231,1.63,1.793,1.476,1.56,1.2,1.17,1.62,1.348,1.419,2.678,1.159,1.287,2.082,2.748,2.473,2.448,3.665,2.688,5.737,5.622,6.464,2.605,0.33,2.067,4.157,2.993,0.454,3.45,3.885,3.689,3.013,3.13,3.53,4.196,1.997,2.502,3.041,2.887,3.23,2.925,2.819,3.331,3.504,4.159,3.035,4.595,1.45,0.696,0.824,0.828,1.687,4.13,3.998,4.532,5.036,4.52,3.852,4.575,3.211,3.204,2.938,3.023,5.394,4.588,4.396,3.788,3.31,2.024,2.287,0.15,0.573,2.315,2.16,2.546,2.889,2.716,3.234,2.785,1.352,1.105,1.903,3.58,2.342,2.84,1.365,1.599,1.66,1.774,2.142,2.618,2.62,2.278,2.925,1.91,0.918,1.323,1.299,0.835,1.07,1.913,1.579,4.84,2.458,1.581,2.516,2.024,1.998,1.583,1.986,2.028,1.993,2.331,3.263,2.046,2.041,2.989,2.833,3.122,1.175,4.033,3.591,3.603,1.42,0.029,2.061,2.707,3.243,2.28,2.998,3.24,1.897,1.675,2.563,2.481,6.178,4.893,5.267,5.404,5.562,1.735,1.86,8.103,8.047,0.433,0.18,0.179,0.572,0.626,0.941,1.086,1.474,1.894,1.734,1.265,1.027,1.148,1.182,1.07,0.964,1.17,0.767,1.133,1.144,1.054,0.848,0.548,0.895,0.692,1.154,1.067,1.114,0.93,0.829,0.71,0.956,1.211,1.114,1.115,1.649,1.138,1.512,0.78,1.145,1.15,1.679,1.745,2.235,1.585,1.661,1.213,3.373,3.358,2.817,2.499,0.9,0.693,1.283,2.868,2.273,2.248,1.734,1.694,1.711,1.761,1.117,1.738,0.454,2.217,1.611,1.656,1.129,1.098,1.016,1.103,0.833,0.874,1.102,1.002,0.651,1.612,1.492,1.236,1.316,1,0.996,1.114,1.047,1.152,1.071,1.098,1.094,1.086,1.067,1.14,1.064,1.058,1.648,1.58,0.702,1.168,0.889,1.118,0.512,1.113,2.147,2.739,2.171,2.192,3.068,3.045,2.574,2.661,1.851,0.5,1.478,1.69,1.115,0.632,0.872,1.214,1.623,1.159,0.559,1.017,0.865,0.829,0.837,0.993,0.862,1.177,1.034,1.113,0.642,3.193,0.877,0.927,0.678,0.934,1.096,1.124,1.054,1.11,1.122,1.119,1.601,2.182,1.649,1.072,1.155,1.1,1.161,1.237,1.59,3.686,3.049,3.248,2.177,1.397,1.278,1.055,0.859,0.907,0.613,1.323,1.649,1.038,1.501,1.477,1.556,0.016,1.523,1.686,0.391,1.938,1.533,2.079,1.508,1.99,2.502,1.78,2.919,2.894,2.977,1.209,1.68,2.857,1.839,2.023,0.785,1.584,2.275,1.89,1.975,2.086,2.516,2.775,3.553,1.345,1.843,1.405,1.398,1.652,1.776,1.319,0.934,0.962,1.082,1.112,1.579,1.16,1.147,1.119,1.277,1.429,0.96,1.321,1.089,1.128,1.103,1.068,1.068,1.118,1.642,1.684,2.098,1.128,1.195,1.439,1.183,1.251,1.249,1.382,1.013,1.454,1.442,1.538,1.34,1.157,1.162,1.21,1.22,1.088,1.261,1.359,1.663,2.33,1.189,1.473,1.352,1.109,1.034,1.35,1.45,1.351,0.99,0.472,1.816,1.425,1.971,2.498,0.994,1.194,1.081,1.011,1.524,1.603,0.926,0.89,1.5,1.531,2.097,2.409,2.392,0.807,0.787,1.129,0.895,1.83,2.323,1.987,2.339,2.907,2.328,1.933,1.635,1.583,1.45,1.219,1.607,2.072,1.639,2.149,2.762,4.315,3.445,4.079,2.477,2.72,2.896,1.854,1.798,1.51,2.83,2.924,2,2.74,2.994,1.64,4.759,2.108,1.305,1.476,2.292,1.983,1.809,1.139,1.442,1.181,1.684,1.678,1.889,1.677,1.682,2.342,1.778,1.52,3.184,3.098,3.168,2.302,2.435,2.727,0.732,3.576,1.461,1.387,1.71,1.498,2.633,1.321,1.529,1.716,1.154,1.679,1.296,1.666,1.958,1.689,1.526,1.211,1.436,0.766,1.441,1.543,1.414,1.339,1.107,1.142,2.27,1.698,1.63,1.708,1.684,1.664,2.256,2.236,2.231,1.678,1.732,1.545,1.869,2.267,2.269,3.537,2.511,1.642,0.792,0.825,2.029,1.038,1.504,1.36,1.681,3.015,1.841,1.97,2.71,2.046,2.615,2.309,2.333,1.694,1.123,0.858,0.539,2.204,2.598,2.129,1.606,1.727,1.667,1.047,1.077,0.986,1.282,1.057,1.631,1.143,1.179,1.411,0.706,1.065,1.117,1.301,1.096,0.978,1.274,1.134,1.357,1.784,1.583,2.081,2.182,2.784,2.124,2.268,1.588,1.713,1.648,1.782,1.681,1.521,2.317,2.026,1.158,2.908,2.056,1.65,3.637,6.944,2.721,2.815,2.601,2.051,3.118,4.196,1.759,2.637,2.707,2.997,1.919,0.136,2.089,2.02,2.599,2.003,1.551,3.15,4.373,1.229,2.226,2.549,2.518,2.093,1.985,2.539,1.162,1.859,2.327,1.734,1.645,2.385,2.434,1.68,2.006,2.41,1.696,1.959,2.087,3.456,2.361,2.194,3.778,2.289,2.41,3.305,2.405,3.368,1.458,2.014,0.957,3.253,2.282,3.063,2.132,2.941,3.396,4.503,4.769,5.026,2.447,2.943,1.924,2.556,2.984,3.493,3.082,2.034,1.564,1.889,2.395,1.503,2.498,1.867,1.766,2.836,2.013,1.862,1.73,1.855,2.199,2.225,1.242,1.329,1.159,2.569,1.891,3.436,2.223,2.915,2.516,1.897,2.631,2.545,2.607,2.088,1.394,1.512,1.162,1.297,0.667,0.54,0.97,0.886,1.138,0.197,1.142,1.767,1.665,1.22,1.949,1.756,1.117,1.05,1.143,0.967,1.07,1.306,1.295,0.874,1.29,1.096,1.47,9,7.151,0.923,1.48,0.613,3.081,2.428,4.247,1.751,1.44,0.652,2.692,2.04,1.949,2.041,1.947,2.087,1.306,0.788,1.27,1.809,0.23,4.718,5.948,3.785,3.435,2.529,1.615,0.071,3.816,5.181,3.748,4.026,4.14,2.88,3.733,5.15,3.687,0.973,5.184,0.478,1.362,1.384,1.321,1.345,1.408,1.696,2.052,2.751,2.524,3.184,2.496,7.234,3.162,3.592,2.645,2.458,2.761,2.985,1.23,1.92,1.058,1.444,1.355,1.056,0.993,1.15,1.137,1.304,1.434,1.971,1.382,1.261,1.341,0.815,0.476,0.8,1.472,3.209,2.111,1.885,1.323,1.097,0.943,0.72,1.261,2.004,2.02,2.002,2.576,2.249,1.839,2.372,2.408,1.511,0.933,1.34,1.145,1.202,1.189,1.138,1.127,0.98,1.626,1.245,1.095,1.232,1.284,2.691,2.097,1.842,3.147,3.011,2.65,2.191,2.618,1.845,1.209,1.248,0.801,0.778,0.878,1.191,1,0.838,1.138,1.84,1.67,2.317,2.917,2.447,2.229,2.562,2.127,1.145,1.289,1.201,1.234,1.17,1.184,1.763,2.413,1.897,2.059,1.825,1.779,0.86,0.82,1.135,3.161,1.833,5.404,2.184,2.429,2.103,1.496,1.026,2.152,2.106,1.016,1.404,0.046,1.665,2.817,1.575,1.556,1.031,1.551,2.53,2.181,2.728,2.617,1.466,1.915,1.247,1.363,0.977,0.992,1.354,1.277,1.777,1.848,1.384,1.682,1.367,1.724,2.189,2.182,2.374,0.972,1.299,1.067,0.976,1.689,1.88,1.306,2.579,2.378,2.709,3.881,4.525,4.841,2.192,1.266,1.283,1.316,0.804,0.892,1.21,1.05,0.931,1.112,1.245,1.248,1.282,1.127,0.809,1.086,1.26,1.652,1.417,1.293,1.327,1.375,1.501,1.236,1.138,1.014,0.927,0.618,1.313,2.361,1.234,1.26,1.197,0.62,0.987,0.82,1.008,1.033,0.75,0.979,1.491,2.196,5.331,6.234,3.277,4.851,3.082,3.034,2.864,3.011,2.769,6.815,5.33,2.42,3.003,3.286,3.301,2.961,2.884,2.414,1.164,1.047,0.861,1.085,1.149,1.224,1.166,1.217,1.197,1.138,1.209,1.23,1.146,1.234,1.161,1.175,1.207,1.763,1.785,1.213,1.184,1.156,1.233,1.195,1.819,1.175,1.126,0.966,1.424,1.208,1.236,1.203,1.018,1.208,1.287,1.73,1.493,1.561,1.207,1.146,1.235,0.851,0.966,0.9,0.826,1.217,0.968,0.955,0.804,0.793,0.808,1.766,1.763,3.09,1.846,1.383,1.199,1.161,1.938,1.779,1.442,0.96,0.636,0.652,1.169,1.247,1.183,1.151,1.295,1.209,1.164,1.225,1.227,1.2,3.053,3.33,3.628,12.735,3.153,3.563,3.452,3.322,2.613,2.871,1.938,1.717,2.294,4.693,3.521,3.03,3.44,3.956,18.804,7.814,2.28,4.149,3.008,3.474,4.719,3.561,4.108,1.677,1.238,0.702,1.084,0.452,1.355,1.847,1.153,0.829,1.123,0.627,1.24,1.761,1.168,1.263,1.947,2.425,2.455,3.029,2.379,1.223,1.261,1.199,0.691,0.597,1.078,1.074,0.56,0.591,0.756,1.033,1.2,0.736,1.088,1.355,1.614,1.439,0.714,0.55,1.019,1.412,1.802,1.253,1.738,1.848,1.21,3.578,2.543,2.848,2.597,1.789,1.89,1.826,1.454,1.554,1.883,1.929,1.733,1.169,1.71,1.181,1.339,1.515,1.21,1.753,1.099,1.276,1.179,4.433,1.041,1.888,2.62,1.884,2.604,3.208,3.235,3.232,2.328,1.574,1.239,2.595,1.488,1.771,1.887,1.323,1.283,2.597,1.265,0.029,1.864,4.354,1.486,0.996,1.034,1.032,1.055,1.093,1.045,0.509,0.581,1.549,1.124,1.039,1.024,1.092,1.052,1.071,1.082,1.019,1.603,1.101,1.087,0.998,1.537,1.475,1.214,1.039,1.045,1.642,1.586,1.097,1.033,1.361,1.346,1.162,1.407,1.715,1.022,0.93,1.733,1.43,1.324,1.33,1.805,1.866,1.519,1.098,1.601,1.52,1.207,1.53,3.039,1.858,1.776,1.839,3.072,1.729,1.918,2.461,1.881,1.811,2.415,1.306,2.346,3.782,3.259,2.786,3.066,3.037,4.123,4.379,0.065,2.884,3.869,2.412,2.473,3.819,2.489,1.957,1.856,1.958,1.549,1.577,1.237,1.889,1.797,1.395,1.69,3.234,2.695,3.947,4.001,2.758,5.545,5.482,3.942,5.627,2.374,3.934,5.643,3.901,0.212,1.191,1.916,1.629,1.038,2.345,2.307,1.724,2.18,1.204,1.493,1.899,2.237,2.652,2.035,1.852,12.071,4.464,2.733,2.76,3.343,2.18,1.602,1.609,0.599,0.511,1.073,1.055,1.034,1.025,1.039,2.042,1.095,0.996,1.589,1.581,1.557,1.571,1.512,1.076,1.03,1.057,1.015,1.031,1.057,1.098,1.006,1.012,1.08,1.572,1.079,0.949,1.054,1.061,0.519,1.071,1.029,1.022,1.045,0.861,1.278,1.082,2.099,2.147,1.912,3.427,2.712,1.67,2.682,3.694,2.148,5.617,2.6,3.039,2.128,1.107,3.038,5.393,1.922,5.027,3.173,2.612,1.249,1.075,8.299,6.5,3.211,3.099,1.905,2.157,4.37,1.916,4.303,3.236,3.379,3.294,2.76,3.528,2.028,1.778,1.757,2.66,1.603,3.781,2.918,1.744,2.43,2.498,0.846,2.294,3.751,2.224,2.164,2.232,2.7,3.221,2.751,1.135,1.072,3.048,3.103,5.305,2.434,6.91,2.169,1.695,1.062,1.215,2.863,1.663,1.657,1.6,1.277,1.112,1.595,1.638,3.905,1.835,1.354,1.205,1.129,1.077,1.492,0.957,1.662,2.328,1.702,1.677,1.667,1.258,1.466,1.401,1.256,1.732,1.774,1.193,1.141,1.16,1.134,1.747,2.026,1.928,1.222,1.183,1.575,2.496,1.439,1.594,1.54,2.213,1.158,1.407,2.075,1.804,2.296,2.228,2.726,2.793,4.078,4.267,3.525,6.383,3.27,5.573,3.401,4.414,1.537,1.057,2.426,1.237,1.413,2.846,3.026,1.016,1.621,2.056,1.308,2.239,2.016,1.162,1.394,1.421,1.803,0.958,2.153,1.396,0.84,1.115,1.61,1.235,1.086,1.234,1.225,1.47,1.972,1.154,1.384,1.117,1.009,0.887,1.038,1.375,1.073,1.112,1.048,0.99,1.117,1.339,1.205,1.436,1.461,1.549,2.44,2.542,2.594,3.147,3.79,2.807,2.049,1.935,2.524,2.671,1.366,2.441,0.871,2.54,1.57,1.09,1.221,1.313,1.355,1.556,2.142,6.605,3.445,3.837,5.256,1.563,4.785,1.766,2.735,7.538,5.394,3.725,3.015,2.023,2.208,3.965,10.934,0.002,3.191,2.275,1.979,2.436,1.673,3.48,3.402,3.298,5.694,3.864,2.898,4.218,4.576,2.785,2.261,0.952,0.878,1.477,0.76,0.827,0.895,1.109,0.625,0.599,0.664,0.908,0.618,2.868,0.919,0.895,0.941,1.004,1.067,0.755,0.529,0.483,0.722,1.045,1.302,1.088,0.911,0.914,0.682,0.904,0.827,0.768,1.209,1.723,1.461,1.622,0.572,1.262,1.248,0.577,1.051,0.638,0.864,0.811,1.14,0.771,1.349,0.824,1.169,1.003,0.833,1.114,1.043,1.186,1.112,1.102,0.698,1.095,0.918,0.874,1.212,1.156,0.848,0.781,0.787,0.635,0.71,0.574,1.129,1.585,2.022,1.536,1.652,1.518,1.66,1.926,3.691,2.494,1.948,1.15,2.36,2.491,5.233,3.572,1.681,2.258,1.502,2.929,1.374,2.436,3.445,2.601,2.994,1.444,2.255,2.795,1.644,2.243,2.78,2.223,3.771,2.821,2,0.227,2.812,2.667,1.694,2.886,3.808,2.184,2.675,5.974,7.21,2.407,2.775,5.406,2.176,2.22,1.879,3.587,3.403,2.703,2.832,2.29,2.478,3.501,3.293,2.266,2.729,3.222,1.527,4.515,3.576,3.578,2.88,1.263,1.154,0.86,0.834,1.188,0.505,0.633,0.606,0.651,0.609,0.451,0.454,0.5,0.426,0.314,0.335,0.564,0.506,0.618,0.544,0.589,0.559,0.668,0.731,1.159,1.311,2.225,2.473,1.214,0.807,1.394,1.716,1.891,1.57,1.381,1.825,0.836,0.742,0.875,0.521,0.772,1.442,1.04,0.977,0.723,0.762,0.396,0.681,0.809,0.771,0.658,0.813,0.796,2.981,1.565,1.075,0.739,1.214,0.578,0.62,0.908,0.742,0.656,0.449,0.461,0.46,0.578,0.56,0.565,0.589,0.483,0.598,0.612,0.844,1.504,1.397,0.615,0.774,0.679,0.79,0.55,1.07,1.448,1.207,1.174,1.383,2.243,1.356,1.483,0.947,2.572,1.396,3.362,2.24,2.798,2.211,1.717,1.698,1.683,1.535,3.514,4.434,6.746,2.791,3.471,8.36,7.664,5.191,5.035,8.575,3.475,4.369,4.205,3.452,2.253,2.332,2.554,3.14,3.08,2.261,1.635,3.7,4.13,2.356,0.43,0.991,1.35,0.868,0.947,0.826,3.515,3.449,2.895,2.41,0.954,5.687,3.633,1.49,1.635,3.33,2.22,0.436,2.456,2.741,2.496,2.725,2.204,2.791,1.08,0.417,1.612,0.286,2.69,2.046,2.791,0.855,1.728,1.692,1.545,1.333,0.955,0.77,1.682,1.835,1.932,1.033,0.952,1.037,1.72,1.477,1.03,0.824,1.122,0.822,1.19,1.197,0.699,0.625,0.584,1.164,0.972,1.321,1.054,0.869,0.932,0.895,0.856,1.423,1.256,3.064,1.639,2.348,2.913,4.442,4.647,4.017,3.441,5.145,7.237,0.825,5.026,3.504,2.738,2.135,4.952,5.169,4.312,4.022,4.693,2.41,2.354,4.359,6.434,2.292,2.497,4.506,2.761,2.179,3.596,4.205,3.837,3.208,2.854,1.956,3.945,3.983,4.494,3.791,3.168,8.301,2.443,3.613,4.925,4.07,0.736,2.18,4.538,4.852,8.326,7.952,1.438,1.249,1.046,1.063,1.066,2.088,3.343,3.961,4.533,3.419,1.011,2.399,1.767,1.983,1.5,1.789,1.761,1.548,2.158,1.968,1.299,0.566,0.566,0.577,0.563,0.634,0.508,0.601,0.573,0.574,0.556,0.604,0.566,0.576,0.577,0.572,0.568,0.57,0.578,0.576,0.576,0.587,0.547,0.575,0.572,0.577,0.575,0.375,0.202,0.551,0.542,0.583,0.563,0.553,0.572,0.556,0.561,0.554,0.575,0.558,0.566,0.56,0.565,0.564,0.556,0.55,0.589,1.102,2.079,2.405,4.009,1.176,1.717,1.148,0.938,0.793,1.79,1.773,1.975,1.697,0.702,0.599,0.572,0.645,0.651,0.242,0.296,0.559,0.702,0.669,0.899,0.57,0.589,0.536,0.609,0.577,0.545,0.587,1.158,0.545,0.594,0.554,0.573,0.571,0.545,0.587,0.569,0.587,2.263,2.3,1.725,2.594,5.989,4.091,1.773,1.734,1.813,1.166,1.178,2.132,1.467,1.266,0.21,1.523,2.051,3.364,2.193,1.963,2.213,2.153,1.888,2.845,1.609,3.918,2.345,1.678,1.501,5.046,0.916,3.283,1.592,1.53,1.598,1.31,1.157,1.011,1.194,0.979,1.09,1.495,0.448,1.895,1.927,1.71,2.914,1.872,0.191,3.274,3.434,3.714,2.128,0.794,1.241,0.976,1.236,1.042,1.103,1.158,0.921,0.338,0.769,0.809,1.514,1.009,1.268,1.048,1.424,1.67,0.918,0.856,1.511,1.542,1.961,2.233,1.393,1.932,2.846,1.931,1.687,1.903,2.043,0.873,1.161,1.701,1.561,1.424,2.688,1.304,3.033,1.408,2.245,1.66,2.293,1.375,1.068,2.419,1.648,0.96,2.506,1.718,1.736,1.167,1.603,1.579,1.567,0.461,0.459,0.751,5.872,1.916,1.714,1.544,1.487,1.277,1.753,1.464,1.178,0.859,0.932,1.162,1.033,0.648,0.801,0.958,0.621,0.842,1.244,0.884,1,1.304,1.567,0.967,0.993,1.05,1.704,1.444,1.22,1.393,1.86,2.151,1.805,0.854,1.13,1.505,0.796,1.623,1.425,2.188,1.27,1.212,0.859,1.357,2.261,0.405,1.295,1.036,1.502,2.467,0.919,2.509,1.742,1.518,1.728,2,2.442,1.93,2.02,1.764,2.001,1.043,1.46,3.389,2.53,3.164,6.382,4.98,2.778,2.007,2.648,1.481,1.145,2.21,0.391,0.513,0.542,1.482,1.098,1.215,1.37,1.024,1.056,1.263,0.609,1.646,2.025,0.202,0.925,0.042,1.281,0.021,2.299,4.416,0.399,3.381,4.362,5.853,5.152,1.039,0.923,0.92,0.785,0.807,0.639,1.024,0.783,0.75,0.841,0.772,0.991,0.942,1.139,0.685,0.329,0.886,0.82,0.635,0.814,1.097,0.646,1.151,1.199,0.883,0.98,1.125,5.027,3.098,2.261,5.911,1.767,3.052,4.825,2.476,2.734,0.434,3.049,1.294,1.722,2.07,2.123,1.75,1.608,1.136,0.888,1.076,0.767,0.943,1.275,1.187,1.254,0.908,0.737,0.75,1.09,1.011,1.252,1.033,1.291,1.318,1.537,1.45,1.09,2.107,1.411,1.678,1.473,1.075,1.599,2.236,2.814,1.413,2.171,1.29,0.94,1.516,0.933,1.601,1.603,1.918,1.739,1.226,2.082,0.936,0.889,1.925,1.898,1.825,3.073,1.721,2.258,0.995,1.214,2.083,1.727,1.633,1.934,2.317,2.56,1.788,1.516,1.19,1.189,1.576,1.649,1.825,1.745,1.478,1.606,1.856,2.206,0.721,0.752,1.397,1.509,1.705,1.769,1.692,1.405,1.971,1.474,1.468,2.125,2.278,2.666,2.355,1.454,0.971,1.196,1.702,1.202,1.481,1.234,1.172,0.907,1.074,0.941,1.174,0.453,0.774,1.088,1.305,0.945,0.836,1.626,1.749,1.941,2.06,1.59,1.8,1.634,1.715,1.09,1.235,1.211,2.519,2.163,2.926,5.856,3.272,3.431,2.099,1.623,2.362,3.233,2.681,1.659,0.974,1.129,1.257,1.384,1.62,1.885,2.158,2.1,1.806,2.645,2.197,1.493,0.892,1.185,1.355,1.154,1.062,1.041,1.426,0.972,1.336,1.548,0.044,1.898,1.406,1.403,1.68,1.42,0.992,1.345,1.398,0.892,1.894,2.428,1.544,1.485,1.589,0.884,1.098,1.304,1.41,1.378,1.529,1.228,1.365,1.285,1.448,1.997,1.38,1.262,0.781,0.912,1.502,1.514,1.622,1.727,1.688,1.884,0.768,0.79,0.731,1.313,2.096,2.586,1.548,1.171,1.48,1.341,1.351,1.096,1.313,0.95,1.153,1.444,0.91,0.912,1.175,1.282,1.393,3.288,0.448,1.6,2.44,1.595,1.018,1.216,3.36,2.536,3.352,3.092,2.478,2.046,1.567,1.021,0.958,0.757,0.904,1.233,0.577,1.251,1.517,2.388,1.692,0.172,2.419,1.399,1.675,1.358,1.083,0.99,1.078,1.064,1.447,3.133,1.156,0.211,0.573,2.037,1.477,1.263,1.316,1.241,1.727,1.091,1.51,1.655,1.977,1.411,1.417,1.126,1.424,1.274,1.918,2.072,2.516,2.058,1.08,1.247,1.301,1.432,1.56,1.777,1.44,1.261,1.874,1.809,2.591,1.892,2.763,1.327,0.958,1.813,2.57,1.396,1.241,2.134,1.878,1.454,2.148,1.844,1.526,1.689,1.721,2.066,1.61,1.566,1.74,2.094,2.822,1.179,2.181,1.277,1.073,0.938,2.037,1.053,1.485,1.141,0.824,0.863,0.782,1.367,1.503,2.492,2.047,1.748,1.65,1.469,1.441,2.031,1.596,1.74,1.78,1.481,1.075,1.105,1.519,1.436,2.014,1.617,1.483,1.476,1.543,1.561,1.559,1.641,1.187,1.967,2.125,1.422,0.868,1.104,1.412,1.132,1.07,0.899,1.235,1.242,1.693,1.093,1.711,1.348,0.863,0.656,1.355,2.343,1.877,1.758,1.343,1.047,1.403,1.168,1.161,1.408,1.505,2.144,3.267,3.96,2.127,1.409,1.528,2.137,1.479,0.926,1.623,1.463,1.421,1.329,1.666,1.747,1.731,2.982,2.563,4.085,3.196,3.011,2.033,2.091,1.639,1.384,2.027,1.693,1.746,2.07,1.825,2.73,1.728,2.427,2.736,2.595,2.077,2.507,2.167,3.428,3.415,2.683,1.997,2.601,2.3,2.993,3.078,3.275,3.261,2.261,2.754,2.202,2.581,4.947,5.083,2.889,2.296,2.006,1.297,1.321,1.207,1.699,1.606,1.673,1.397,1.347,1.776,2.622,2.349,2.167,2.469,1.541,1.174,1.249,1.076,1.096,1.163,1.88,1.245,1.236,1.141,1.545,1.532,1.433,1.432,1.783,1.058,1.097,1.425,1.027,1.583,2.069,1.53,2.031,1.589,1.402,2.09,2.165,1.594,2.076,2.011,2.028,2.099,2.049,1.891,2.509,3.102,2.984,3.355,2.289,2.116,1.665,2.039,2.1,2.48,1.612,2.332,1.764,1.555,1.508,2.15,2.127,2.049,1.152,0.96,1.565,1.708,1.571,1.921,3.894,2.96,1.984,1.582,1.709,2.319,2.01,3.472,2.037,2.592,2.324,1.696,1.797,2.454,1.182,1.386,2.397,2.273,1.997,1.238,1.072,1.755,0.635,1.337,1.462,0.977,0.174,2.848,1.574,1.238,1.082,1.181,1.774,1.666,1.517,0.984,2.903,1.416,1.636,1.738,1.44,1.029,1.021,1.839,1.179,2.205,1.71,1.782,1.708,1.349,0.948,1.144,2.796,2.257,2.922,1.746,1.727,1.569,1.63,2.094,2.406,2.612,2.157,2.321,2.461,3.2,3.689,2.604,2.986,3.112,1.67,1.617,1.959,2.136,2.298,1.851,1.964,2.43,0.465,0.525,2.234,2.619,1.813,2.155,2.719,2.096,1.469,1.986,2.612,1.981,2.346,2.15,1.728,1.99,1.49,1.873,1.538,0.047,1.151,1.146,1.378,1.496,1.897,1.622,2.127,1.41,1.38,1.651,1.799,1.592,2.712,2.492,2.735,2.115,2.299,1.58,2.035,2.266,1.883,1.826,2.634,3.139,2.044,2.713,1.34,2.036,2.215,2.404,2.742,5.465,3.1,3.189,3.245,2.964,2.647,1.192,0.766,1.348,2.531,2.245,1.447,2.36,2.283,2.423,2.684,1.619,2.471,2.115,1.897,3.064,2.168,2.213,2.801,2.904,1.981,2.348,2.68,2.568,2.634,1.375,2.137,3.276,1.071,1.851,7.944,4.445,3.717,3.662,2.65,2.675,2.481,1.771,1.586,1.809,2.318,1.4,1.251,1.233,2.986,1.023,1.443,2.42,1.486,1.837,1.965,1.724,1.845,3.067,1.939,0.822,1.149,1.039,0.955,0.734,0.788,0.693,1.637,1.259,1.424,0.824,1.372,1.698,0.939,1.05,1.23,1.493,1.436,1.622,1.169,1.032,1.468,1.345,1.767,2.307,3.613,3.258,2.018,2.273,2.118,2.142,1.623,1.328,1.633,1.265,1.419,1.826,2.003,1.38,0.999,1.602,1.834,1.629,1.356,1.466,1.505,3.578,2.416,1.78,1.498,0.958,1.205,1.118,1.491,1.04,0.836,0.78,1.027,1.03,0.84,0.707,0.854,1.641,1.039,1.061,0.987,0.945,1.519,1.793,2.906,2.355,2.906,2.67,1.757,1.191,1.373,2.125,3.126,3.571,2.674,3.105,1.677,2.129,0.688,1.63,0.96,1.648,0.806,2.492,2.279,1.586,1.273,2.359,0.755,1.34,1.472,0.551,2.216,1.259,1.032,1.717,2.055,2.312,5.252,2.256,1.548,3.408,2.395,0.243,1.251,1.384,1.421,1.309,1.801,1.099,3.379,2.336,2.969,2.323,0.761,1.132,1.11,1.134,0.947,0.902,0.999,1.667,0.477,1.261,1.005,1.587,0.693,0.996,1.543,1.146,0.835,2.319,3.373,2.378,0.762,2.382,1.07,0.589,2.537,1.409,1.378,2.3,1.385,1.566,3.142,2.372,1.154,1.287,1.097,2.531,1.237,1.61,1.995,0.703,2.192,3.22,4.281,2.231,1.605,2.743,2.386,0.698,2.923,1.766,0.715,2.975,2.229,2.403,2.4,1.466,2.153,2.481,2.272,1.717,4.055,0.6,1.019,1.316,0.581,2.187,1.201,0.919,0.018,1.413,0.679,2.019,1.949,1.199,2.243,1.602,1.517,2.002,1.437,1.48,1.667,1.317,0.814,1.672,1.534,2.411,2.042,2.001,2.309,2.063,2.265,2.403,1.242,1.14,1.952,1.741,2.614,5.938,2.485,1.836,2.144,2.309,1.829,1.516,0.923,0.819,0.671,0.819,1.188,1.184,1.197,0.999,1.121,2.948,1.477,1.224,1.206,0.971,1.785,1.631,1.557,1.543,8.842,4.062,1.31,1.28,3.016,2.648,1.562,0.624,0.8,1.69,1.83,0.903,1.412,1.911,1.173,1.865,2.125,1.636,1.566,1.761,1.934,2.041,2.166,1.845,1.806,1.647,1.374,0.936,2.43,2.987,1.298,0.897,1.896,1.91,1.93,2.024,1.1,0.595,1.881,2.14,1.585,4.738,0.781,2.929,2.384,1.459,1.902,2.559,2.603,2.279,1.982,1.937,2.282,1.762,1.945,1.095,0.976,1.726,2.919,3.289,2.389,2.206,2.048,1.817,2.378,2.374,3.248,2.385,2.971,2.591,2.624,2.686,2.645,2.697,2.817,2.82,2.719,2.296,2.342,2.674,2.3,2.713,2.221,1.898,2.066,1.786,1.811,1.543,1.456,1.626,1.382,1.651,2.196,1.169,1.985,2.014,2.364,1.785,1.545,1.573,2.144,2.416,2.681,2.734,2.694,2.023,2.424,2.215,2.497,2.657,1.786,1.684,1.782,1.901,2.165,2.598,3.051,2.45,2.983,2.949,2.827,2.657,3.498,3.343,2.393,3.648,3.11,3.405,3.447,2.954,2.719,4.162,3.696,4.071,0.168,3.898,4.068,4.739,3.599,4.389,4.417,4.616,4.473,4.608,5.583,5.786,5.522,4.595,4,4.134,3.869,3.834,5.879,3.454,5.531,1.615,1.839,0.708,1.023,2.358,2.584,2.29,2.261,1.64,1.587,1.984,1.656,1.7,1.602,1.81,1.221,1.033,1.907,2.548,2.697,3.252,3.312,3.161,3.93,3.921,4.106,3.526,5.003,0.732,2.488,2.672,3.569,3.423,3.915,4.582,3.007,4.171,1.522,7.769,4.23,3.332,5.683,2.317,4.58,4.086,4.417,2.166,3.68,2.08,3.018,2.004,2.909,2.232,2.71,1.422,1.594,1.961,1.74,0.674,2.309,0.74,0.251,1.282,2.282,1.923,1.659,1.974,2.056,1.855,1.587,3.165,1.347,1.972,2.812,3.673,2.964,3.176,3.02,3.194,2.912,2.997,2.292,1.97,1.691,1.811,2.326,2.211,2.594,2.338,2.039,2.283,1.479,1.824,1.787,2.486,2.282,2.435,2.787,2.114,2.355,4.391,0.732,2.787,1.653,1.564,1.741,1.478,2.039,2.074,1.95,2.233,2.021,2.538,2.5,1.598,0.67,1.699,1.524,1.375,1.551,1.231,2.394,1.883,2.183,1.725,5.267,1.491,2.254,0.873,2.307,0.963,0.781,1.223,1.068,0.939,1.554,1.133,0.836,2.185,1.167,1.225,0.994,0.965,0.968,0.766,0.958,1.038,2.526,1.81,2.793,3.187,3.505,1.125,0.716,0.861,0.495,0.494,0.666,0.701,1.134,0.852,0.697,0.696,1.231,9.639,5.143,2.288,1.84,1.096,1.068,1.097,1.483,0.807,1.172,1.122,1.112,2.056,1.208,1.102,1.633,2.352,2.033,1.762,1.329,1.207,1.126,3.211,2.364,4.217,3.814,3.474,3.738,1.877,1.548,1.793,1.497,2.373,2.144,1.728,2.334,2.076,1.702,1.808,1.837,2.699,2.461,3.503,3.741,3.346,6.956,14.094,1,10.837,8.251,4.044,3.922,5.546,1.232,4.283,2.869,2.773,2.273,3.012,2.701,2.514,3.296,2.542,2.602,2.539,2.636,2.221,2.016,0.505,1.08,0.78,1.883,1.888,1.732,1.815,1.568,2.764,1.291,2.442,2.89,0.645,3.271,1.666,1.743,4.287,1.926,2.931,2.928,2.714,12.687,2.457,8.077,3.089,4.308,3.426,3.498,2.182,1.352,3.539,2.033,3.869,2.761,1.298,1.391,2.566,9.429,8.012,3.736,0.559,3.433,2.349,4.009,2.337,3.025,4.221,3.065,2.935,2.56,1.49,1.195,2.16,1.887,2.028,1.835,1.822,2.375,2.391,8.268,1.146,6.649,2.517,3.509,6.572,6.107,3.657,2.306,1.391,2.376,2.358,2.03,1.796,5.332,3.75,3.925,2.238,2.106,2.078,0.093,4.195,4.746,1.249,7.084,16.785,15.93,17.153,6.785,12.94,2.318,4.509,5.165,4.782,3.477,3.85,2.848,2.811,3.229,3.101,3.113,3.082,3.437,3.277,2.252,2.502,2.633,2.68,2.351,1.938,1.737,1.978,2.132,1.315,1.532,1.881,1.091,0.871,2.27,1.717,1.581,4.436,2.516,2.28,1.825,1.756,1.525,1.504,1.275,2.856,2.372,4.143,2.773,1.768,1.765,1.294,1.502,1.759,1.719,2.138,2.33,2.188,1.639,1.413,1.671,1.021,0.826,2.299,1.789,2.084,2.014,2.136,2.352,2.463,5.503,3.105,4.278,2.396,2.146,2.489,2.291,1.835,2.325,2.834,1.916,2.397,2.53,1.774,1.837,1.523,1.68,3.058,2.303,2.377,2.763,3.884,2.399,2.11,3.543,1.914,2.153,2.31,1.509,1.588,2.272,2.17,2.753,3.249,3.511,3.481,3.104,2.87,2.302,2.415,1.173,0.762,1.762,1.808,2.674,2.362,2.592,2.066,2.799,2.367,2.387,1.083,0.771,0.968,1.493,1.33,3.297,2.469,2.429,2.451,2.434,1.639,2.061,1.945,2.347,1.832,1.308,2.857,2.09,8.4,2.48,5.439,2.4,7.235,4.818,4.613,8.985,6.405,3.253,2.827,3.6,1.887,1.442,1.748,1.439,1.439,1.272,1.257,1.784,1.455,1.298,1.789,1.426,1.566,1.425,1.418,1.34,1.334,1.837,1.581,1.828,1.036,1.369,1.582,4.832,11.791,4.133,2.559,2.486,7.214,1.375,7.222,9.536,0.791,3.86,0.612,4.497,4.008,3.641,2.441,1.943,3.027,3.175,2.452,3.315,2.409,4.495,3.839,3.9,3.004,2.769,2.475,6.513,18,8.229,4.629,6.815,6.781,5.583,8.849,0.942,0.873,1.043,1.001,0.926,0.839,1.272,1.264,0.961,0.836,1.029,1.054,0.238,0.901,1.059,0.872,1.243,1.104,1.217,1.588,1.604,2.239,3.717,1.935,1.662,1.283,1.588,1.67,1.106,0.792,1.808,4.531,3.711,5.9,5.772,2.171,1.89,1.552,2.313,1.125,0.504,1.334,0.975,1.012,0.338,0.863,2.228,0.406,1.537,2.637,1.956,1.635,11.732,1.066,1.066,15.199,0.719,0.515,2.585,0.741,3.485,3.421,2.575,2.649,2.45,1.826,2.205,2.483,2.694,2.353,9.5,4.278,0.331,1.659,2.113,1.258,4.204,4.493,4.202,2.727,3.819,3.401,3.098,0.432,3.168,3.518,4.638,4.571,3.529,3.858,5.264,3.075,3.93,6.182,3.596,3.714,3.567,3.183,4.035,1.852,2.256,2.158,3.421,2.32,1.572,3.001,1.765,1.695,1.459,2.209,3.128,2.348,1.86,0.408,2.621,1.004,2.916,1.84,0.152,3.386,3.473,2.208,1.537,3.36,3.383,2.201,1.965,3.171,7.279,7.052,8.708,5.026,4.394,5.218,5.263,10.939,3.936,1.551,1.62,0.883,2.142,2.598,2.085,1.132,1.012,2.021,2.709,1.479,1.201,2.288,1.526,1.709,1.452,1.943,2.3,2.528,2.751,2.537,3.836,1.931,1.892,0.683,2.201,1.61,1.675,1.094,1.214,1.599,1.813,1.513,1.268,1.701,1.117,1.727,8.319,2.184,1.823,2.313,1.77,3.25,2.166,3.183,3.694,2.269,2.531,3.854,7.514,7.265,59.807,3.799,1.842,1.602,2.767,2.368,2.25,2.63,3.565,2.317,2.115,2.169,2.674,2.437,2.629,2.694,3.1,2.038,1.315,1.08,1.073,1.14,1.833,2.079,2.33,3.132,3.504,3.056,1.767,1.624,2.077,1.502,1.344,1.346,1.254,1.217,2.263,2.536,1.464,1.345,1.191,1.409,1.205,3.708,2.413,2.673,7.223,3.997,3.785,2.673,2.207,2.788,1.653,2.658,2.399,4.932,4.685,1.972,1.577,1.352,1.188,1.599,1.095,1.089,1.132,1.1,1.183,1.146,0.585,1.146,1.45,1.095,0.703,0.955,1.077,1.18,1.178,1.032,1.149,1.196,0.968,1.083,1.656,2.091,1.79,2.017,1.301,1.493,1.801,1.031,1.109,1.891,1.51,1.653,1.208,1.175,1.397,1.197,1.656,1.068,1.15,1.127,1.03,0.882,1.15,1.191,1.804,0.339,1.795,1.939,1.964,2.155,1.836,3.486,5.153,2.528,1.661,1.454,1.659,1.025,0.996,0.932,1.578,1.422,2.712,1.056,0.815,1.657,1.19,1.513,1.274,1.085,1.084,1.295,1.44,1.183,3.066,2.949,2.763,2.854,3.334,2.253,1.292,1.048,1.412,1.104,1.882,1.653,1.007,1.211,0.934,1.291,1.146,1.145,1.179,1.572,2.089,1.978,2.493,3.993,1.615,1.499,0.959,1.462,1.158,1.648,1.193,1.123,1.065,0.96,1.05,1.106,1.109,2.337,1.983,1.883,1.871,2.086,1.077,0.948,1.638,1.482,1.537,2.774,1.905,2.602,1.633,1.755,1.633,1.736,1.563,1.449,1.361,2.952,5.9,3.127,2.752,4.213,1.731,1.529,1.825,2.156,2.414,1.487,6.109,4.415,2.509,2.153,4.139,4.378,3.737,3.544,8.326,3.262,2.359,1.362,1.323,2.07,0.91,1.559,1.225,1.457,2.742,2.566,2.709,2.502,3.693,3.58,3.874,3.7,2.09,1.697,2.12,0.072,2.523,2.449,2.835,2.344,2.489,2.777,1.846,2.231,1.815,0.527,2.868,1.899,3.25,1.787,1.753,1.316,1.389,1.335,1.462,0.676,1.144,1.774,1.206,1.702,1.176,1.231,1.313,1.755,1.652,0.75,26.22,1.569,1.797,2.119,2.436,0.777,6.309,3.308,2.793,0.673,1.111,1.297,1.232,0.189,1.619,0.53,0.702,1.738,1.815,1.192,1.169,1.15,0.864,0.986,0.986,1.421,0.859,1.305,1.149,3.034,2.482,2.341,2.06,2.222,0.67,1.329,1.163,1.159,1.225,0.528,1.256,1.281,1.272,1.644,0.348,0.21,1.599,0.805,0.394,1.232,1.196,1.223,1.293,0.527,2.603,1.519,1.484,2.825,1.516,1.566,1.604,1.641,3.532,3.508,2.804,2.789,1.563,1.518,1.551,1.639,3.064,2.017,1.426,0.378,1.789,1.964,1.395,1.514,1.405,1.528,2.853,2.877,1.519,1.607,1.514,0.563,3.405,5.067,4.333,5.196,20.835,5.275,5.863,5.64,1.91,1.978,5.745,2.386,2.393,2.428,2.424,2.016,1.977,1.43,1.507,2.721,0.697,2.748,1.759,1.679,1.513,1.781,1.338,0.642,0.958,1.432,1.442,2.854,1.425,1.398,1.075,0.214,0.507,2.052,3.945,3.896,2.507,2.475,3.573,4.405,9.984,15.047,14.593,2.659,2.656,2.542,2.138,1.618,1.423,2.803,83.184,0.748,5.963,1.98,5.913,6.855,6.484,6.438,5.383,4.112,2.003,1.064,1.018,2.289,0.839,1.014,1.476,1.413,1.585,1.569,1.123,1.086,2.767,0.446,0.775,1.887,1.894,1.496,1.279,2.189,1.447,0.251,1.568,2.129,1.953,1.795,0.325,1.012,0.788,3.289,1.21,0.646,1.606,1.799,0.951,1.77,1.494,1.552,2.129,0.914,0.875,1.455,0.506,0.746,1.354,1.111,0.902,1.301,3.341,1.339,0.53,1.139,0.953,1.011,1.349,0.302,3.52,0.781,1.073,1.25,1.346,1.398,1.183,1.282,1.265,1.117,1.305,1.054,0.973,1.147,1.209,0.983,1.193,1.041,1.562,1.464,1.119,1.032,1.112,1.129,1.115,0.77,0.939,1.212,1.298,1.547,1.413,1.292,1.28,1.342,1.047,1.184,1.122,0.748,0.464,1.609,1.838,1.649,2.196,1.422,0.485,0.359,0.572,0.705,0.851,1.122,1.556,1.529,1.084,0.925,0.983,0.657,0.338,0.387,0.746,0.64,0.789,0.861,0.87,0.721,0.563,0.728,0.868,0.981,1.965,1.008,0.839,1.024,0.875,0.628,0.846,0.573,0.777,0.971,0.77,0.934,0.831,1.139,0.877,0.846,0.919,0.929,1.428,0.697,1.817,0.634,0.635,1.466,1.355,1.665,1.018,1.696,1.998,1.277,1.069,0.932,1.099,1.075,1.19,1.467,2.809,0.766,0.766,0.873,0.896,0.954,0.898,1.272,1.631,1.283,1.051,1.413,1.163,0.588,0.854,1.177,0.883,1.099,0.515,0.698,1.319,0.912,1.256,0.721,1.102,1.09,0.962,1.122,1.105,0.811,1.273,1.383,1.59,1.608,1.494,1.824,1.842,1.258,0.642,0.887,1.607,1.239,1.152,1.536,1.259,1.152,2.446,2.352,1.979,1.796,1.218,0.194,1.002,0.753,0.85,0.33,0.518,1.947,1.58,1.458,0.4,0.53,1.512,0.795,0.206,0.317,0.901,0.72,0.734,0.403,0.314,0.634,0.79,0.742,0.504,0.764,0.806,0.757,0.299,0.455,0.601,1.03,0.681,0.722,0.647,0.578,0.602,0.903,1.075,1.333,1.481,0.945,1.088,0.737,0.738,1.23,1.192,1.3,1.367,1.247,1.024,0.647,0.652,0.771,0.821,0.965,1.058,1.011,0.907,1.026,0.823,1.054,1.057,1.219,1.206,0.883,0.993,0.816,0.743,0.779,0.736,1.264,1.256,1.101,0.948,1.012,1.511,2.7,1.765,1.531,2.447,1.811,1.428,1.425,1.378,1.175,2.214,1.256,0.934,1.463,1.656,1.758,1.751,1.614,1.763,1.113,1.219,1.165,1.388,1.938,2.602,1.206,1.128,1.313,0.769,0.746,0.785,0.736,0.68,0.686,0.697,0.962,0.73,0.914,0.923,2.537,0.965,1.103,1.667,0.843,0.868,0.912,0.766,1.749,1.337,0.983,1.661,1.5,1.692,1.616,1.515,2.015,1.896,2.718,1.657,0.404,1.462,1.752,1.654,1.29,1.728,1.648,2.312,1.467,1.23,1.229,1.696,1.534,1.302,1.035,1.059,0.973,0.978,1.771,1.244,1.411,1.71,0.981,1.26,1.478,0.947,0.873,1.387,1.248,1.44,1.381,1.52,1.893,1.284,1.424,1.382,1.247,1.258,1.421,1.246,1.86,1.412,1.802,1.52,1.145,1.399,1.413,1.419,1.454,1.206,2.244,1.318,1.334,1.641,0.788,0.384,0.542,0.947,1.274,1.849,2.564,1.942,1.469,0.291,1.029,2.352,1.304,1.09,1.173,1.038,0.927,1.437,2.264,2.15,1.536,2.797,2.258,2.088,1.634,0.809,1.67,2.209,2.779,4.032,1.978,2.099,1.72,2.223,2.117,1.87,1.465,1.917,1.672,1.715,1.251,1.551,1.309,1.616,1.73,1.872,1.583,0.85,1.074,0.852,0.874,0.969,1.043,1.012,1.01,1.173,1.188,1.264,0.911,1.269,1.02,1.405,1.068,1.06,0.918,1.233,1.075,1.535,1.07,1.053,1.064,0.534,0.449,0.943,0.898,1.25,0.98,1.12,1.809,1.118,1.423,1.501,0.869,0.492,1.787,1.307,1.458,1.756,4.667,5.266,7.913,3.131,1.804,1.948,2.051,1.874,2.509,1.864,1.525,2.25,2.111,1.358,1.519,1.641,0.788,1.332,0.881,0.831,0.49,1.638,1.228,0.788,1.052,1.259,1.285,1.168,1.338,1.151,0.959,0.949,1.027,1.402,1.587,0.837,1.702,0.736,1.34,1.141,0.995,1.812,1.373,2.379,3.168,0.659,1.174,1.365,1.46,1.108,1.093,0.765,1.205,1.302,1.238,0.865,0.904,1.023,0.744,0.517,0.573,0.598,0.813,1.34,1.199,1.102,0.935,0.907,0.819,1.013,0.726,0.658,0.735,0.576,0.924,0.941,0.793,0.896,0.85,0.79,0.848,0.816,1.064,1.264,1.029,1.078,0.933,0.935,1.071,0.845,0.786,0.978,0.99,0.954,1.445,0.804,0.846,0.912,0.888,0.759,0.869,0.687,0.604,0.649,0.755,0.873,0.856,1.011,1.019,0.988,1.007,0.798,0.855,1.588,0.894,0.919,0.954,1.263,1.552,1.176,0.535,0.498,0.776,1.156,0.647,0.881,0.741,0.756,0.748,0.82,0.725,0.883,1.026,0.941,0.715,0.637,0.852,0.916,0.908,0.976,0.75,0.771,0.829,1.321,0.729,0.915,0.863,0.75,0.788,0.764,0.877,0.787,0.902,0.671,0.858,0.562,0.503,0.59,0.703,0.606,0.604,0.745,0.526,0.813,1.609,0.994,0.916,0.945,1.137,0.76,0.838,0.77,1.144,1.161,1.473,0.897,1.216,0.977,0.227,1.118,1.355,1.021,0.858,0.86,0.926,0.988,0.992,1.325,0.973,1.187,1.317,1.828,1.172,1.341,1.761,1.427,1.02,0.843,0.918,0.549,0.295,0.815,0.721,0.3,0.842,0.661,1.076,0.822,0.795,0.865,0.883,0.858,0.795,0.992,1.146,1.521,1.06,1.24,1.262,1.121,0.807,0.742,0.67,0.597,0.514,1.152,0.465,0.541,0.828,1.16,1.077,0.652,0.719,0.497,0.636,0.703,1.543,1.097,1.024,0.852,0.488,0.673,0.72,0.729,0.641,0.684,0.92,0.815,0.583,0.807,0.982,1.029,0.948,0.708,0.724,0.718,0.577,0.5,0.494,0.644,0.621,0.598,1.135,0.647,0.503,1.155,0.795,0.798,0.862,0.796,0.828,0.826,1.059,0.282,0.572,0.999,1.176,1.25,1.168,0.98,1.029,0.783,0.729,0.676,0.822,0.666,0.938,0.569,0.954,0.291,0.432,0.67,0.687,0.707,0.547,0.714,0.851,0.835,0.764,0.83,1.148,0.86,0.425,0.364,0.762,0.675,0.81,0.696,0.551,0.576,0.52,0.554,0.606,0.56,0.949,0.769,0.764,0.517,0.929,0.673,0.674,0.728,0.786,0.974,0.537,0.725,0.713,0.733,0.825,0.514,0.817,0.767,0.82,1.31,1.341,1.242,1.345,0.689,0.694,0.592,0.703,0.673,0.64,0.795,0.72,0.667,0.727,0.772,1.003,0.689,0.962,1.454,1.051,1.469,1.451,1.433,1.444,1.311,1.43,1.271,1.136,1.245,1.449,1.5,1.677,1.528,1.591,1.54,1.605,1.485,1.25,1.546,1.639,1.4,0.999,1.37,1.274,2.896,0.466,0.604,2.001,0.23,2.155,2.232,1.299,1.548,1.747,1.256,1.231,1.613,1.855,1.46,1.422,1.995,1.531,1.979,1.3,1.319,1.278,1.367,1.64,1.166,1.908,1.729,1.342,1.705,0.952,1.556,0.674,1.85,2.081,2.149,1.813,1.553,1.801,1.84,1.25,1.249,1.796,1.756,1.337,1.107,1.315,1.641,0.94,1.034,0.974,2.929,1.53,1.388,1.467,0.355,1.406,1.949,1.876,0.937,1.222,1.408,1.335,1.289,3.37,1.752,4.057,4.837,4.948,4.685,2.461,2.97,1.339,1.86,3.506,1.983,1.633,2.766,2.865,2.165,2.161,2.62,1.896,2.106,1.661,2.076,1.664,1.625,1.632,1.451,1.61,2.444,2.013,1.568,1.579,1.588,1.665,0.773,0.989,1.809,1.647,1.124,1.271,1.113,1.236,1.2,1.144,1.277,1.06,2.608,1.041,0.609,1.428,0.765,0.871,0.841,1.099,1.35,0.896,1.156,1.593,1.275,1.48,0.899,1.071,1.399,0.672,1.936,2.308,2.071,1.703,1.971,1.474,1.443,1.113,1.07,1.556,1.777,1.197,1.448,1.297,1.348,1.141,0.793,1.167,1.184,1.64,1.525,0.885,1.26,1.069,1.108,1.175,1.242,1.123,0.512,0.382,1.297,0.985,0.372,3.309,1.399,0.255,2.648,1.771,1.419,1.221,1.373,1.676,1.534,1.806,0.463,2.615,7.12,14.914,11.385,12.615,5.217,3.449,1.711,1.352,1.412,1.547,2.414,1.605,1.862,1.688,1.819,1.567,2.155,2.099,1.176,1.163,2.027,1.599,1.022,0.965,1.319,1.821,0.299,1.202,0.288,1.212,1.996,0.372,1.683,2.618,1.435,1.391,1.075,1.631,1.143,1.047,1.65,1.604,1.503,1.128,1.383,1.428,1.689,4.253,1.817,1.597,1.399,3.193,1.862,1.475,1.508,1.441,1.963,4.16,7.534,3.242,5.465,3.019,1.473,1.344,1.492,1.132,1.498,1.091,1.203,1.187,1.175,0.95,1.014,1.002,1.231,1.492,1.38,1.132,0.95,1.1,1.265,1.24,1.038,0.989,0.779,1.405,1.72,0.673,0.222,1.544,1.325,0.322,1.09,1.636,6.628,7.407,4.867,3.071,5.951,3.822,5.995,2.126,4.07,4.481,1.36,1.424,1.181,1.015,1.22,1.171,1.334,1.475,1.498,1.791,1.782,1.74,1.174,1.556,1.265,1.249,1.223,2.766,1.776,1.919,2.42,2.582,2.563,3.524,3.33,2.278,3.451,10.694,2.411,5.166,6.329,3.586,4.7,2.789,4.869,5.083,2.701,1.492,1.725,1.767,1.389,0.261,2.253,1.104,1.568,2.325,2.128,1.351,1.577,1.845,1.435,1.501,2.842,1.759,1.23,1.357,1.387,1.435,2.634,1.241,1.427,1.35,1.335,1.276,1.848,2.622,1.449,2.089,1.358,1.848,2.296,0.605,1.844,1.846,1.944,2.815,2.795,1.914,1.62,1.761,2.437,1.89,1.863,2.362,1.181,1.35,0.557,4.153,3.017,2.56,2.155,3.008,1.855,1.455,1.115,2.366,2.787,2.989,2.446,3.595,2.939,3.913,1.764,1.98,2.194,2.329,3.75,4.037,1.901,1.769,1.369,1.458,1.572,0.872,0.973,1.247,1.193,4.063,2.946,1.597,1.314,1.773,3.64,1.5,2.045,2.372,2.149,2.021,3.068,1.486,2.845,3.856,5.045,2.608,3.693,3.083,2.827,2.57,1.258,1.673,1.694,1.579,1.606,2.466,2.475,2.696,6.566,1.412,1.026,1.966,2.439,2.52,2.458,2.103,2.431,2.218,2.195,2.268,3.477,1.312,1.318,1.186,1.173,2.226,3.761,4.497,3.989,3.068,1.778,4.419,5.081,3.312,1.307,5.273,2.074,1.919,2.235,1.461,1.408,2.345,2.17,3.144,2.209,0.973,1.609,2.454,0.442,1.503,1.347,1.362,2.263,1.791,2.638,0.619,0.779,1.134,2.292,2.034,0.921,0.929,1.29,1.492,1.529,1.288,1.125,1.246,0.269,2.368,1.588,2.012,2.132,1.888,1.316,3.073,2.294,2.246,2.404,2.75,2.499,3.093,2.845,3.531,1.279,4.579,1.939,1.712,0.27,1.386,2.587,0.075,3.824,2.998,3.432,4.146,1.644,1.711,1.58,1.424,1.558,2.403,2.67,2.494,1.858,1.66,1.418,1.682,1.227,0.269,0.713,0.807,1.402,0.711,1.801,2.018,2.434,2.633,2.787,1.967,1.83,1.56,2.921,1.046,1.021,0.376,1.469,1.957,2.28,2.269,1.525,2.248,2.188,2.795,2.361,0.855,3.565,3.004,2.348,1.453,0.982,2.273,2.671,4.016,3.691,4.239,2.584,3.199,1.5,4.292,2.763,1.832,1.699,2.506,2.218,1.986,2.168,2.037,2.176,2.07,1.918,2.24,2.002,1.538,2.107,2.019,2.129,3.67,1.426,2.068,2.958,1.473,0.39,0.93,0.182,1.498,1.648,0.998,0.919,0.787,0.737,0.724,0.498,0.361,0.855,0.164,0.671,0.811,0.78,0.52,0.196,1.107,1.578,0.558,1.234,1.491,1.469,0.955,0.968,1.146,1.351,0.664,0.861,2.583,1.168,1.265,1.972,1.733,1.748,1.704,1.686,1.301,1.009,0.711,0.769,0.933,0.841,0.678,0.959,1.69,1.091,1.188,1.531,1.392,0.897,0.763,0.652,0.845,0.514,1.039,0.958,0.986,1.117,1.795,1.198,0.999,1.82,1.236,1.012,1.252,1.399,1.088,0.762,0.877,1.008,1.056,0.927,1.101,1.456,1.084,1.358,1.248,1.144,1.159,1.382,1.32,1.599,1.681,1.445,1.189,1.056,1.347,1.701,1.356,1.66,1.256,1.631,1.552,1.494,1.74,1.904,1.74,1.73,1.542,1.66,1.014,1.418,1.119,1.316,1.266,1.42,1.323,1.598,1.483,1.693,1.21,1.553,0.752,0.981,1.357,0.701,0.498,0.662,0.773,1.05,0.752,0.858,0.681,0.702,0.606,0.753,0.855,0.617,0.59,0.467,0.648,0.511,0.491,0.537,0.662,0.785,0.736,1.073,0.935,0.757,0.87,0.803,0.921,0.837,1.032,1.08,0.961,0.776,0.765,0.763,0.862,0.74,0.821,0.719,0.839,0.889,0.746,0.801,0.911,0.726,0.745,0.425,0.648,0.837,0.726,0.714,0.769,0.955,0.816,0.789,1,0.573,0.537,0.735,1.022,1.078,0.581,0.255,0.892,0.834,0.685,0.934,0.467,0.649,1.068,1.509,6.041,6.135,4.904,4.428,3.325,6.344,1.99,2.796,4.495,4.162,5.736,5.218,0.946,1.849,2.732,1.628,1.583,1.952,0.943,0.886,0.743,0.8,0.743,0.717,0.641,0.996,0.814,1.346,3.003,1.408,1.327,1.532,1.8,1.01,1.32,1.535,1.924,1.914,2.154,1.891,1.746,1.854,0.033,1.23,1.053,1.165,0.792,1.218,0.557,1.823,2.282,1.303,1.236,1.272,1.727,0.942,1.739,1.679,1.467,1.648,1.589,1.15,1.41,1.386,0.646,0.609,0.347,1.285,1.109,1.479,0.721,0.579,0.943,1.488,1.517,1.552,1.738,1.68,1.36,1.956,0.505,0.591,1.183,1.258,0.955,0.607,0.662,0.493,0.367,1.223,1.258,1.698,1.377,1.268,1.44,1.515,1.581,1.953,2.786,1.919,1.944,1.69,1.392,1.287,1.445,1.177,0.898,1.265,1.427,1.382,1.098,1.213,1.448,1.078,1.142,1.056,1.36,1.471,1.342,1.394,1.471,1.749,1.761,1.67,1.044,1.268,1.711,1.616,1.419,1.903,1.648,2.237,1.819,1.834,1.152,1.362,2.849,1.775,1.287,0.887,1.043,1.208,1.246,1.208,1.165,0.998,1.253,1.18,1.344,1.438,1.267,0.979,1.289,1.579,1.163,1.098,1.244,1.277,1.208,1.125,0.91,0.969,1.11,1.369,1.104,1.234,1.318,1.475,1.51,1.619,0.917,1.049,0.862,1.433,1.263,0.933,1.246,1.364,1.365,1.053,1.641,0.56,1.116,1.559,1.869,0.028,1.252,1.002,1.155,1.112,0.615,2.457,1.168,0.73,1.527,1.184,3.549,3.15,2.756,2.773,6.851,7.513,2.958,2.626,3.84,3.6,2.104,0.918,1.076,1.129,0.911,1.426,0.547,1.053,5.497,5.605,12.419,4.173,4.255,4.569,3.816,3.548,3.997,3.857,5.231,5.772,4.978,3.478,3.747,5.393,3.37,4.138,7.569,1.946,2.004,1.742,1.685,3.139,6.595,3.209,3.259,2.977,3.516,3.638,3.3,4.182,6.529,4.623,3.716,3.777,4.017,4.437,2.631,2.812,2.744,2.047,4.875,2.179,2.602,5.697,6.203,2.964,1.86,1.928,1.188,4.335,9.146,7.601,6.978,5.782,5.328,0.528,2.113,3.014,3.008,3.946,3.776,4.136,8.562,5.523,3.129,3.045,3.457,3.073,3.268,3.275,3.344,3.163,3.187,3.209,2.785,1.376,2.167,1.776,2.267,2.08,1.895,2.666,2.82,3.021,3.079,7.647,4.314,4.554,3.626,2.935,3.502,3.969,4.049,4.061,10.875,4.374,2.912,5.789,3.049,4.041,1.966,2.469,2.759,3.316,5.664,1.984,2.319,2.333,3.18,3.667,3.715,3.097,3.41,3.325,3.638,2.812,3,4.002,5.992,4.22,3.372,3.098,3.135,3.99,2.884,1.919,2.268,2.061,3.498,3.8,1.888,1.845,2.529,4.534,6.051,1.732,1.884,2.093,2.12,6.401,2.767,2.977,2.717,3.531,6.312,3.069,0.568,1.982,1.225,0.23,3.587,3.811,2.061,2.065,1.588,1.678,1.469,1.426,2.169,2.379,5.078,7.674,5.301,5.434,2.035,9.282,6.143,5.34,4.833,0.311,4.276,19.973,0.017,5.123,4.967,1.766,4.157,2.714,2.235,2.661,2.695,3.114,3.494,2.775,2.236,3.014,4.027,3.594,3.354,3.254,3.739,3.049,2.725,3.116,2.704,3.492,2.808,2.655,0.686,2.063,0.566,1.645,2.307,0.512,1.257,2.105,1.921,0.186,4.293,4.769,0.567,6.993,8.757,5.584,5.974,5.682,4.959,3.46,10,2.355,3.196,2.14,2.071,2.666,2.813,2.501,2.149,2.163,2.143,2.153,2.508,2.232,2.892,3.259,2.648,2.669,2.331,1.721,0.159,2.966,3.403,3.533,5.629,2.272,2.425,2.53,2.924,3.042,5.611,2.714,2.606,2.675,2.068,2.658,2.008,2.083,2.18,2.01,2.202,2.157,3.335,10.396,3.258,2.973,2.816,9.843,1.871,3.907,1.974,1.45,1.103,2.284,1.746,2.273,2.095,4.9,7.333,6.873,2.839,2.629,5.444,4.617,3.426,16.34,4.424,4.142,4.102,3.254,2.044,1.343,2.293,2.223,2.354,1.229,0.998,3.138,3.374,3.413,0.705,0.883,1.313,0.905,1.838,3.235,0.641,0.981,0.962,0.948,0.928,0.718,0.745,0.89,0.794,0.855,0.879,1.208,0.927,0.985,0.919,0.956,0.975,0.966,3.243,1.411,0.977,0.944,2.605,1.177,0.994,0.961,0.934,1.134,1.221,6.284,3.434,1.508,1.867,0.477,0.102,1.172,2.344,0.668,0.887,0.449,7.093,2.446,1.201,1.19,1.201,1.158,0.959,0.862,0.949,0.811,0.804,0.45,7.12,2.559,1.769,0.84,0.995,0.968,1.072,1.568,1.198,0.921,0.999,1.073,1.012,0.982,0.579,1.373,1.181,3.419,7.065,2.448,1.587,0.586,0.403,1.338,2.383,1.668,1.856,1.8,1.091,1.45,1.883,1.525,1.43,1.826,1.054,1.878,1.867,1.949,2.343,1.871,1.363,1.442,2.037,2.08,1.287,1.386,1.147,1.715,1.802,1.373,1.273,2.238,2.132,0.782,0.854,0.886,0.925,1.194,1.237,1.344,0.795,0.936,1.243,0.899,1.299,1.311,1.769,4.211,1.392,1.697,1.765,1.291,1.288,0.855,0.885,0.826,0.865,1.248,1.751,0.842,1.058,1.032,0.851,1.227,1.329,1.652,1.215,1.397,1.736,1.616,1.974,1.905,1.598,1.763,1.589,1.734,1.734,1.201,2.987,1.203,1.49,1.627,1.624,1.691,1.275,1.538,1.783,1.719,1.701,2.504,1.738,1.667,1.666,1.867,2.915,1.615,1.636,1.36,1.204,0.896,1.176,0.829,1.789,1.706,0.023,2.478,1.203,1.578,1.905,1.448,1.911,1.767,1.246,1.625,1.574,1.936,1.792,1.47,1.549,2.929,2.802,1.669,1.466,1.812,1.798,3.169,1.482,1.147,1.615,1.496,1.227,1.43,1.485,2.124,1.695,1.342,2.076,2.15,2.596,2.133,1.69,1.712,1.63,1.53,2.904,1.271,3.426,0.831,0.865,1.684,1.744,1.679,1.366,2.003,1.704,0.887,1.266,1.203,1.793,1.641,1.78,2.128,1.214,0.937,1.761,2.215,2.578,2.017,1.732,1.231,1.264,1.292,1.297,2.225,4.109,4.252,1.779,1.277,1.37,0.823,0.94,0.77,0.99,0.884,0.801,0.503,0.907,0.858,0.922,1.015,1.167,0.968,0.665,0.94,0.937,0.939,0.101,1.071,1.311,1.358,1.055,6.173,2.304,1.002,1.818,1.773,1.662,1.281,1.548,4.661,1.399,2.072,1.192,1.551,1.274,1.266,1.566,1.615,1.375,1.851,1.06,2.53,1.427,1.45,1.387,1.122,0.931,0.739,1.176,0.791,1.4,1.083,1.083,1.052,1.033,0.754,1.087,0.728,0.727,0.661,0.933,1.198,1.136,1.781,1.088,0.698,1.167,0.78,0.978,1.125,1.049,1.883,2.111,2.457,0.759,0.806,1.771,0.689,0.762,0.854,0.891,1.159,1.179,0.195,1.611,1.622,1.685,2.623,1.666,2.273,2.488,2.16,3.491,1.585,1.131,2.07,1.044,1.408,1.086,1.089,0.825,0.984,1.124,0.895,1.217,0.777,1.062,1.067,0.682,1.42,0.711,0.57,0.897,1.304,0.783,0.822,1.372,1.442,1.408,1.304,0.967,1.316,1.14,0.275,0.805,1.893,3.1,1.751,2.824,3.608,3.635,1.911,1.556,0.472,1.333,0.786,1.009,1.777,0.821,1.342,1.694,0.972,2.254,1.42,2.525,2.513,2.074,3.352,5.5,1.978,1.544,1.737,2.043,1.517,1.537,1.239,1.166,1.2,1.181,1.289,1.019,1.129,0.992,1.278,1.936,1.6,1.655,2.391,2.365,1.983,2.046,3.292,2.317,2.011,3.223,3.289,14.27,18.665,2.787,1.427,1.046,1.917,1.805,1.344,1.21,1.549,1.598,1.083,1.055,1.153,2.224,1.029,0.838,1.555,0.986,1.035,1.667,0.716,1.65,1.075,1.005,2.047,1.092,1.687,1.931,1.567,1.047,1.014,0.716,1.029,0.712,1.387,1.14,0.985,0.663,0.748,0.992,1.119,0.996,1.05,0.709,0.892,1.188,0.395,0.697,1.388,2.064,1.758,2.444,1.56,2.996,1.813,1.998,1.084,1.395,1.07,0.522,0.14,0.743,1.355,1.416,1.369,1.072,1.421,1.038,1.047,1.088,0.652,1.434,0.717,1.034,0.715,0.73,0.672,0.703,0.689,0.693,1.059,0.709,1.099,1.57,1.515,1.403,1.164,2.96,1.438,1.297,0.85,1.265,1.641,1.635,0.812,0.742,0.826,0.58,0.621,0.533,0.701,0.793,0.773,0.579,0.659,0.772,0.773,0.771,0.82,0.805,0.808,0.97,0.948,1.204,0.817,0.825,1.153,1.615,1.581,1.178,1.185,1.56,0.825,1.226,1.126,0.858,0.798,1.154,0.781,0.829,1.2,1.211,0.745,1.233,1.201,1.219,1.15,0.799,0.802,0.8,0.76,0.781,0.86,0.774,0.769,0.83,1.176,0.804,1.21,1.376,1.61,0.832,1.181,0.25,1.383,1.233,1.097,0.459,8.836,0.555,0.453,1.095,0.991,1.053,1.06,0.879,1.265,1.059,0.745,1.045,0.91,0.976,0.703,0.907,1.253,0.914,0.812,1.07,1.165,0.969,1.292,1.493,1.368,1.385,1.429,1.871,1.235,1.581,1.268,1.195,1.639,1.194,0.213,1.362,1.266,2.048,3.957,1.646,1.362,0.355,7.284,7.24,1.441,1.621,6.301,6.941,2.491,2.905,0.625,0.313,3.776,7.859,7.383,10.838,6.488,3.143,6.523,3.264,3.19,6.417,2.722,4.644,3.004,4.655,4.534,0.422,4.36,7.199,4.663,3.903,12.088,5.867,6.473,6.447,6.429,5.563,3.974,6.458,3.333,6.269,6.497,5.343,5.369,5.379,5.912,3.575,13.192,1.156,4.274,8.683,8.847,3.879,7.333,8.784,5.874,4.774,4.815,14.491,11.148,4.689,2.394,1.789,1.231,1.433,1.79,1.925,1.335,1.489,1.276,1.559,1.977,2.013,2.178,2.349,2.588,1.634,1.787,0.817,0.605,1.815,1.145,1.185,1.4,0.999,1.391,0.113,1.264,1.281,1.191,1.321,0.846,1.095,1.306,1.287,1.226,1.163,1.324,1.099,1.214,1.458,1.257,1.297,1.074,1.101,1.064,1.022,1.46,0.855,1.041,1.427,0.939,1.458,1.13,0.831,1.905,1.141,1.244,2.048,1.09,1.79,2.613,1.618,1.194,0.769,1.689,1.241,0.964,0.921,1.913,2.228,2.022,1.55,1.638,1.265,4.071,5.387,5.226,0.689,4.068,3.091,4.472,3.826,3.83,3.881,17.667,10.136,8.152,8.189,5.448,5.605,5.25,5.048,5.906,4.839,4.597,5.298,4.546,2.506,5.135,15.88,8.306,8.398,6.51,6.633,5.557,5.572,5.442,10.961,5.212,3.21,3.115,3.073,3.18,3.178,3.081,3.086,3.184,3.146,3.14,3.098,3.083,7.995,1.612,1.651,1.172,1.126,2.051,1.411,1.376,1.113,1.061,1.078,1.18,2.31,3.298,2.806,8.082,4.86,1.324,2.281,5.646,6.012,7.941,7.901,3.829,3.893,2.135,1.242,0.639,3.992,3.936,3.907,6.061,4.675,3.855,4.14,4.356,4.582,3.393,2.645,3.167,4.255,4.231,12.773,0.171,4.315,3.394,2.827,2.884,2.89,2.83,2.869,2.876,3.307,7.13,3.538,4.824,1.693,2.03,2.751,2.297,10.841,3.233,3.074,2.996,3.01,3.111,2.919,2.811,3.374,3.13,20.268,6.182,6.273,16.675,6.316,4.148,1.148,10.855,4.372,7.301,16.351,3.844,6.751,5.233,6.498,4.478,13.86,1.577,1.564,1.164,1.192,0.8,1.173,0.766,0.781,0.779,0.795,0.787,0.77,0.787,0.791,0.843,0.704,0.797,0.785,0.784,0.77,0.788,0.786,1.163,1.223,1.215,0.796,0.796,0.847,0.782,1.101,0.911,0.841,0.794,0.985,1.414,0.856,2.958,1.07,1.209,0.899,0.644,1.198,0.614,0.628,1.613,0.76,0.225,0.505,0.641,0.671,0.649,0.785,1.094,0.896,1.38,1.055,0.975,1.09,0.993,1.049,1.084,1.226,1.102,0.858,1.154,0.81,1.205,1.123,0.788,0.347,0.425,0.823,1.275,0.838,0.992,0.97,1.006,1.11,1.196,0.776,1.554,1.176,1.166,1.193,1.16,1.962,0.794,0.77,0.795,0.754,0.812,0.912,1.008,0.797,1.104,0.832,0.764,0.813,0.842,0.717,1.501,1.57,1.335,1.062,1.162,1.036,0.922,3.782,6.576,1.368,1.436,1.492,1.462,1.812,1.087,0.654,0.4,1.795,1.786,3.426,2.346,2.367,2.359,2.742,2.913,2.907,1.445,1.479,3.096,4.145,4.137,5.292,8.532,13.864,8.354,5.456,2.678,2.94,2.767,2.828,2.79,5.488,6.243,6.876,5.714,0.348,6.068,4.874,6.593,5.026,6.356,5.528,5.761,2.227,13.492,3.75,3.991,7.082,3.522,3.633,4.093,4.23,4.077,4.021,3.407,1.848,3.141,1.648,19.306,21.412,4.63,3.007,3.047,4.493,4.572,4.573,4.48,7.578,13.586,15.373,8.163,6.147,6.119,6.069,6.161,7.998,7.254,11.195,2.15,2.352,3.328,2.79,2.665,4.484,2.953,2.479,2.252,4.791,3.554,6.638,16.46,4.517,15.82,18.639,6.408,9.191,10.631,10.664,18.986,1.148,2.965,4.19,6.407,1.098,3.635,4.209,5.336,8.586,7.149,7.667,8.136,2.405,2.656,1.844,2.288,1.834,1.721,1.922,1.655,0.337,1.075,3.015,1.871,2.456,2.394,1.779,9.169,5.75,4.749,5.612,4.119,4.079,4.67,5.14,8.485,23.631,17.534,1.446,1.506,3.864,2.622,4.21,13.727,5.04,5.063,8.704,6.218,12.74,2.969,6.967,1.47,1.121,1.104,4.296,1.158,4.707,1.58,6.239,3.547,0.359,2.245,0.006,2.206,1.857,3.25,3.461,2.446,2.457,2.572,3.118,2.238,1.838,1.804,2.732,2.379,2.34,5.894,3.514,2.147,2.131,3.51,3.492,3.508,4.28,2.198,2.2,2.499,2.709,0.048,2.608,1.974,1.719,1.689,2.859,2.866,5.535,4.383,0.223,4.167,19.965,16.746,12.69,6.871,5.048,4.405,5.11,16.889,26.594,16.315,9.641,1.496,0.082,4.006,8.534,1.878,4.938,4.778,2.751,4.857,4.897,5.623,5.43,8.327,12.085,6.864,6.708,5.466,0.086,4.78,4.785,5.18,5.297,5.279,6.626,9.917,3.943,6.352,5.733,10.519,5.194,14.887,6.338,12.142,10.461,4.746,3.07,5.16,2.963,7.486,8.105,8.014,14.363,15.058,12.952,16.707,19.709,15.22,15.493,10.422,6.426,6.623,5.966,6.827,4.659,6.734,1.309,7.271,6.078,4.049,3.305,2.993,7.549,12.105,3.094,6.98,9.08,0.066,14.345,3.677,3.64,3.327,3.084,2.964,14.896,11.158,5.3,5.549,3.971,3.406,4.253,4.922,4.926,3.757,4.054,3.307,4.042,5.534,6.663,4.736,4.653,4.594,4.423,4.419,5.95,6.172,6.557,3.523,2.267,3.386,2.924,7.154,4.489,4.286,4.374,3.404,4.007,4.125,3.819,3.914,7.962,15.339,8.513,5.303,1.301,1.086,7.205,8.835,8.887,5.255,2.602,4.11,4.192,3.381,3.328,1.734,3.421,2.976,3.095,3.152,3.167,6.267,6.052,6.144,3.19,4.637,6.501,7.115,0.64,7.116,25.904,6.601,5.249,4.659,5.267,4.163,4.192,4.456,1.379,9.096,5.103,3.684,3.63,3.738,3.451,5.33,6.316,2.709,2.819,2.156,4.221,6.657,0.05,7.666,17.689,5.876,1.803,3.59,1.25,3.077,2.637,6.838,4.35,1.625,5.276,6.219,1.953,0.992,4.299,4.078,1.839,1.597,0.973,3.515,3.301,0.953,4.644,4.665,4.694,1.68,5.351,7.787,2.641,1.371,4.66,3.483,4.551,4.569,2.781,2.79,2.613,2.787,1.155,0.855,3.762,3.716,8.479,14.778,7.184,12.725,1.602,11.084,11.863,7.564,7.236,10.312,2.277,2.898,9.497,12.279,7.658,3.234,8.836,7.129,2.286,1.222,1.173,2.518,2.168,0.764,2.649,2.888,2.735,5.165,4.935,4.431,2.01,6.128,4.411,5.733,3.745,1.485,1.462,5.136,6.983,3.456,3.125,3.021,2.891,3.814,2.972,1.815,3.363,1.553,1.481,2.418,1.562,1.456,1.222,1.188,1.262,1.293,2.79,3.11,1.899,1.585,2.881,2.648,2.041,2.053,1.641,1.653,2.272,2.288,1.778,1.903,3.74,7.566,1.838,1.97,2.701,3.663,1.661,1.701,11.365,0.243,11.205,5.3,2.066,1.781,1.801,0.045,1.438,1.385,1.374,1.354,0.862,0.898,1.841,0.416,1.472,1.358,1.515,1.759,2.165,2.254,4.38,1.616,1.481,1.371,1.32,0.962,0.942,1.188,1.276,0.98,6.616,2.803,2.457,0.574,3.392,3.496,2.434,2.845,3.289,0.017,3.388,2.497,2.536,2.566,2.462,5.041,1.883,6.82,10.582,5.595,1.113,0.957,3.221,3.833,1.455,0.776,0.722,2.969,0.935,4.408,5.109,2.55,0.59,1.652,1.706,1.28,1.206,1.231,1.137,2.349,2.715,2.572,2.449,2.662,2.633,1.769,2.028,2.93,3.443,1.594,1.274,1.876,1.994,4.797,1.051,4.727,0.586,1.863,4.533,4.397,9.143,8.263,2.039,8.271,4.023,2.143,1.848,3.292,1.7,1.78,2.38,1.724,1.587,2.173,1.965,2.186,1.897,3.365,7.252,2.267,2.006,2.045,1.767,2.142,2.217,1.669,5.426,2.565,1.076,1.481,1.827,1.555,0.25,1.695,1.719,0.926,0.397,1.408,1.715,1.505,2.974,2.213,2.024,1.616,1.844,2.062,1.44,2.017,1.697,1.821,1.901,0.551,1.653,3.765,1.978,2.081,3.923,4.747,1.292,2.619,2.831,5.176,2.497,5.736,4.683,4.485,2.431,3.757,3.407,7.325,9.018,4.505,2.224,2.147,7.284,1.894,1.983,3.352,1.441,2.141,3.494,7.105,3.502,3.314,3.656,3.107,10.435,2.913,2.734,3.454,2.536,6.307,2.933,1.748,1.453,5.159,7.076,4.066,2.899,2.405,2.692,3.497,3.017,2.175,4.322,3.483,1.829,1.201,2.282,3.406,1.804,1.909,1.328,1.072,1.903,1.63,1.481,1.661,1.501,2.098,2.104,2.204,1.084,1.092,2.068,1.991,3.108,1.451,1.493,1.299,1.192,1.4,1.399,1.977,1.078,1.669,1.887,2.356,3.484,0.59,4.456,1.87,2.002,2.049,2.391,0.875,3.478,1.889,1.4,1.382,1.361,1.892,0.555,2.49,2.273,3.399,3.285,3.336,2.233,1.159,2.181,2.398,0.096,2.61,4.66,4.107,6.23,8.199,5.616,2.606,4.837,5.831,20.379,5.133,1.23,1.018,1.298,2.838,1.188,1.34,1.237,1.65,1.121,3.08,6.657,16.031,1.237,1.829,3.142,3.269,4.507,2.895,2.725,3.631,3.183,2.563,1.168,1.082,4.885,4.509,1.704,0.801,8.742,0.738,3.695,4.049,3.916,3.607,5.731,5.651,11.387,23.95,1.101,14.164,0.706,8.429,5.074,1.89,3.173,3.452,4.548,2.29,2.966,2.713,2.713,2.715,3.117,1.507,1.444,13.737,7.706,7.617,4.499,2.059,7.002,5.059,4.515,6.133,7.078,2.309,2.397,6.889,3.113,3.317,6.59,3.365,1.92,1.827,1.64,1.539,2.992,2.753,3.957,2.194,2.057,4.846,8.031,5.852,2.843,2.414,2.974,2.909,2.005,2.163,4.065,9.647,0.508,10.996,8.98,7.887,8.564,13.657,4.851,5.16,4.169,4.439,5.414,4.338,8.099,3.213,3.391,5.458,5.961,4.383,1.587,2.433,3.397,1.28,1.077,1.637,1.156,2.027,1.201,1.45,2.227,1.211,1.827,1.981,3.081,2.918,3.102,2.767,4.533,0.832,1.803,3.811,2.197,3.309,2.841,4.789,4.727,2.608,2.711,3.207,6.248,5.213,5.157,2.538,0.781,2.191,4.6,4.103,2.131,2.446,3.102,2.094,3.814,4.008,5.776,5.521,5.455,3.015,2.447,3.983,3.568,3.728,2.736,2.027,2.087,3.033,1.522,1.985,2.784,2.95,2.409,2.575,0.738,1.683,3.167,2.182,2.84,3.509,4.347,4.209,5.717,6.545,3.531,2.231,3.144,2.003,2.384,3.885,3.047,3.066,3.293,4.42,2.751,4.556,4.583,5.312,2.318,2.8,3.291,1.816,3.054,3.064,4.982,3.8,1.494,4.578,3.452,3.739,2.486,0.653,3.05,3.251,6.531,5.58,2.154,2.477,3.655,3.793,4.313,2.065,2.212,2.057,1.39,1.987,2.06,2.112,2.013,1.32,1.596,2.769,2.09,2,1.683,2.21,2.159,2.135,3.949,1.986,2.132,2.544,1.475,1.623,2.035,1.939,2.411,2.172,1.712,1.544,2.96,4.342,2.148,2.171,1.826,1.856,2.109,1.728,2.926,2.177,1.899,0.549,2.357,2.647,2.174,6.182,1.801,1.34,1.576,2.954,1.558,2.182,2.552,3.204,3.244,4.601,4.131,4.788,4.01,5.427,2.755,4.797,3.398,3.674,3.796,7.572,7.534,3.167,2.982,2.275,1.973,2.633,2.074,2.922,1.867,2.285,2.735,2.55,2.852,2.44,3.289,3.45,3.075,3.261,4.169,4.185,5.191,6.859,4.558,2.156,1.809,2.003,2.032,1.949,1.897,1.553,1.505,1.675,1.651,1.782,2.309,2.034,1.876,2.473,5.414,6.552,5.584,5.289,3.264,3.669,2.86,3.304,4.375,4.904,3.783,3.424,4.281,4.394,4.399,3.862,2.225,2.111,1.49,1.763,2.239,1.695,2.599,1.095,1.8,1.804,1.828,1.95,4.467,0.06,4.537,2.052,2.013,1.701,1.729,1.935,1.993,1.737,1.727,1.439,1.742,1.558,1.687,2.28,1.199,1.426,1.387,0.223,5.654,7.858,15.695,6.734,0.894,11.098,1.468,1.297,1.223,2.023,1.76,1.414,1.439,1.669,1.98,2.03,1.923,1.529,0.938,2.136,1.524,1.598,2.036,1.779,1.744,1.732,1.973,2.011,2.755,1.832,1.682,1.047,2.76,2.515,2.873,2.48,1.954,2.45,2.121,0.984,2.843,2.801,4.395,3.288,1.765,4.655,2.241,1.27,0.398,1.936,3.135,2.946,2.168,2.15,2.821,5.52,3.499,3.902,2.309,0.57,2.703,1.459,2.869,4.371,2.262,1.109,2.698,2.228,1.898,4.374,4.075,2.708,3.291,2.388,2.33,3.124,4.316,4.303,4.128,3.006,3.354,4.148,5.568,4.991,4.639,3.54,6.467,6.33,3.897,5.097,5.11,4.521,7.457,2.809,1.54,1.142,2.693,1.775,1.303,1.672,1.972,2.171,2.313,2.309,1.751,1.866,2.055,2.659,1.435,1.697,1.977,2.203,1.482,1.891,2.07,2.058,2.003,1.875,1.637,3.367,2.012,1.998,1.933,1.654,1.833,1.519,1.948,1.908,1.476,1.532,1.795,1.965,0.978,1.956,1.646,4.456,4.04,1.558,1.633,2.533,1.407,1.46,1.147,1.666,0.784,0.803,1.344,1.36,0.926,1.847,0.422,1.48,0.242,0.727,0.597,2.494,1.38,2.956,1.979,0.922,1.241,1.192,1.289,2.069,2.017,2.731,8.19,0.801,12.385,0.033,4.205,3.472,7.258,2.444,0.668,3.164,5.014,5.344,3.084,3.3,4.221,5.759,4.492,2.938,1.878,2.909,2.435,1.677,1.777,1.919,2.364,1.964,2.524,2.342,0.652,0.838,1.521,1.819,1.431,2.09,1.675,1.521,2.505,3.134,2.116,2.726,2.27,4.469,9.003,8.767,4.542,6.541,8.901,9.998,9.726,0.071,6.609,1.338,7.992,6.42,5.822,3.779,7.158,7.185,8.023,3.318,0.414,2.355,4.028,2.427,3.531,3.424,0.987,3.085,3.637,6.503,3.952,3.768,11.001,5.237,5.72,5.938,5.814,9.248,6.45,6.407,1.827,12.152,10.785,3.945,0.805,1.578,0.684,2.59,3.971,1.07,1.978,2.889,2.902,6.289,3.628,7.009,9.037,7.737,9.045,7.897,3.25,4.728,0.211,2.07,0.155,4.575,3.05,0.516,0.569,3.104,4.005,2.679,7.063,8.042,7.821,2.825,3.099,7.349,4.909,4.076,4.605,2.874,5.879,6.045,6.718,2.954,2.618,2.61,2.916,3.713,8.182,4.47,4.501,8.602,0.361,8.846,5.544,0.922,1.457,6.964,0.395,0.675,1.134,1.295,2.631,2.647,3.195,5.013,5.194,2.602,2.676,4.6,2.245,1.578,1.699,4.773,3.316,3.686,4.477,4.354,4.468,2.964,6.37,2.948,4.682,0.328,2.352,3.772,2.761,2.916,2.178,1.946,1.261,2.33,1.903,1.588,1.847,5.65,2.654,2.442,0.115,3.32,2.898,1.703,1.895,4.35,0.063,6.155,0.328,1.18,14.145,0.754,1.144,4.651,3.676,2.528,0.293,1.945,5.418,0.789,2.897,3.309,4.025,0.879,1.506,1.167,2.377,2.333,4.908,2.676,2.809,3.609,3.197,0.586,0.953,1.629,4.12,0.42,1.08,2.847,4.007,2.916,1.976,1.423,2.291,1.757,1.848,1.22,1.334,1.56,1.74,1.668,1.843,1.739,1.82,2.519,1.245,1.125,2.267,1.72,2.019,3.355,3.455,4.324,2.884,2.738,5.681,0.699,4.232,3.669,4.741,5.68,7.298,5.941,5.719,3.705,5.913,1.13,2.827,5.688,1.538,3.993,5.416,2.914,3.146,0.277,2.277,4.042,4.156,2.374,1.782,3.703,1.55,1.357,3.274,3.895,4.275,2.541,3.244,3.475,3.786,2.266,2.34,4.367,5.276,3.588,2.513,1.415,2.475,2.44,0.647,2.955,3.292,2.7,2.934,5.129,2.728,4.651,2.641,2.547,1.809,2.018,2.726,2.605,2.158,2.783,2.412,2.533,2.146,2.019,3.028,3.059,2.91,4.088,7.028,7.157,2.335,3.571,4.271,6.543,4.012,4.112,3.244,2.001,1.364,0.906,2.328,1.379,1.255,2.049,1.676,1.361,1.158,1.832,1.32,1.442,1.353,1.247,2.019,1.85,3.738,3.761,4.706,7.762,1.391,5.41,5.583,2.698,2.825,5.448,2.086,1.754,1.347,1.255,1.13,1.266,1.172,0.019,1.448,1.095,1.214,1.249,1.298,1.183,1.226,1.485,1.386,1.302,1.54,2.513,5.335,3.346,1.472,1.985,1.589,1.637,0.168,1.674,1.366,3.087,3.287,3.588,3.655,4.402,2.183,3.591,2.864,2.761,2.87,2.219,3.3,2.033,2.095,1.361,1.772,2.035,2.12,2.215,2.506,1.688,2.082,2.743,1.819,2.462,3.096,1.594,2.494,2.386,2.262,2.333,2.665,2.185,3.404,2.627,3.177,2.969,2.789,2.526,2.294,1.823,3.008,1.865,1.059,1.57,1.932,1.569,1.729,1.536,2.236,2.041,1.999,2.015,1.823,1.758,2.39,1.859,1.646,1.981,1.54,1.093,0.573,1.995,1.212,1.869,2.342,4.156,2.566,2.711,1.631,0.891,5.223,4.418,0.286,2.238,2.34,5.949,3.051,5.333,7.202,1.602,8.758,9.425,2.351,4.789,0.477,1.77,2.291,3.577,2.553,4.465,2.382,2.922,4.92,1.86,3.774,2.14,4.571,2.173,2.315,2.792,3.038,2.803,4.514,3.052,2.848,2.878,3.317,4.219,2.654,2.788,2.883,4.452,4.468,4.243,3.046,2.145,6.545,3.049,3.351,3.513,1.352,2.69,3.662,3.135,3.965,1.277,2.098,3.375,3.336,3.69,2.18,2.317,4.481,4.292,6.522,7.917,1.631,2.532,3.685,1.83,10.725,4.863,2.681,2.354,4.787,4.942,3.868,1.629,2.211,3.956,3.97,4.069,0.1,2.253,3.039,2.203,3.402,4.164,6.56,1.557,1.666,3.951,1.262,5.361,3.639,3.784,2.2,4.54,3.208,2.041,1.401,1.601,1.067,1.169,1.154,1.103,1.843,1.699,2.275,1.475,3.033,2.79,3.167,1.47,0.966,0.841,0.819,0.729,0.668,0.958,1.026,2.505,5.911,7.855,4.108,1.84,6.809,0.597,1.159,1.05,1.439,2.215,2.436,2.932,3.038,3.4,3.563,2.125,0.952,0.992,1.017,1.023,0.925,0.791,0.677,0.699,0.718,0.56,0.88,7.426,2.336,1.027,1.883,1.607,1.351,1.077,0.894,2.099,1.095,0.873,0.682,0.701,0.938,0.868,0.928,0.896,1.205,0.591,0.366,0.386,0.84,1.034,0.936,1.055,1.086,1.23,2.553,1.77,3.007,2.532,2.496,3.986,2.898,1.833,1.567,1.936,1.605,1.175,0.626,0.715,1.227,1.068,1.014,0.934,1.017,1.027,1.049,1.019,1.125,2.381,3.568,4.852,2.25,2.129,0.93,1.472,0.926,1.248,0.855,0.789,0.813,0.825,0.944,0.977,1.077,0.89,1.063,0.976,0.982,0.705,2.028,0.935,0.722,0.75,0.859,0.628,0.966,1.182,1.124,0.953,0.888,0.783,0.722,0.66,0.831,0.904,0.931,0.686,0.64,1.523,1.142,0.276,1.188,3.054,4.463,2.822,3.248,5.233,3.116,1.236,3.089,0.988,3.983,2.053,2.491,2.504,2.5,2.983,3.914,1.419,1.165,1.699,2.43,3.94,4.98,2.856,0.829,0.75,0.874,0.877,0.654,0.952,0.946,1.259,3.413,3.45,1.171,2.075,2.206,4.34,2.11,0.61,1.274,1.957,1.703,0.876,1.891,1.713,1.795,1.395,3.288,0.737,2.156,4.633,3.465,3.043,2.948,1.95,1.37,1.549,2.94,2.423,1.376,1.398,2.508,1.787,1.738,2.145,2.041,2.077,2.816,3.317,2.844,3.223,5.684,2.443,2.479,1.144,0.998,0.803,0.922,1.104,3.487,2.1,4.212,6.65,10.475,7.619,2.111,5.433,4.666,8.195,5.256,5.399,3.612,2.546,3.097,4.441,7.038,4.893,5.598,7.905,9.502,6.687,3.658,10.162,11.897,7.463,2.33,2.338,5.108,11.931,9.734,4.335,4.283,7.007,4.647,4.367,4.083,3.013,3.058,3.958,2.213,1.211,1.273,2.549,4.223,3.911,2.517,2.454,2.273,3.163,3.47,3.848,0.464,3.711,4.661,2.843,3.874,6.154,3.125,5.65,4.165,4.652,4.266,4.27,3.854,3.087,3.257,7.873,4.809,6.819,5.148,3.697,1.095,2.104,2.328,0.012,6.625,3.201,2.932,2.546,3.016,2.808,3.028,2.909,2.159,2.606,2.689,2.908,3.735,4.518,3.101,0.014,3.289,3.214,3.331,3.138,3.09,3.479,1.957,1.815,2.679,3.404,3.107,3.117,0.37,0.945,2.654,2.037,4.784,5.088,1.309,1.668,3.561,1.862,2.348,5.428,2.926,4.944,2.773,2.758,1.741,2.387,5.964,6.94,2.62,2.321,4.965,4.135,3.134,1.535,0.239,3.373,3.221,1.749,8.976,1.201,3.339,5.679,3.95,3.371,2.588,1.828,7.475,5.574,1.602,3.452,4.534,5.996,5.708,2.607,3.478,6.621,3.598,2.119,2.873,2.268,0.317,1.218,1.668,8.864,5.091,5.162,8.472,7.613,4.434,0.152,3.463,4.237,5.552,5.494,3.892,3.632,7.284,4.034,4.245,3.153,1.181,1.479,0.369,3.926,3.546,1.383,2.453,3.396,3.443,2.294,2.319,2.407,1.81,1.834,2.14,2.452,2.262,3.857,2.635,3.091,2.09,2.533,2.014,1.451,1.288,3.859,3.101,2.754,2.323,3.446,3.371,2.696,2.302,2.424,2.81,2.487,2.373,2.959,2.144,2.415,2.492,2.605,2.962,2.924,3.141,2.808,2.8,4.099,6.855,6.19,4.106,5.493,3.661,5.166,3.797,4.072,4.641,4.698,4.846,4.53,4.624,9.09,4.335,2.236,6.23,3.919,4.85,8.574,4.163,2.39,0.628,2.116,6.309,3.985,3.941,4.161,2.524,2.688,2.686,5.478,4.607,3.79,6.06,6.971,2.611,2.662,1.896,2.809,1.842,2.422,2.451,2.561,4.147,0.466,3.056,3.038,2.399,3.806,2.667,2.416,2.784,2.571,2.411,3.602,3.448,2.615,2.73,2.562,3.227,5.815,6.732,4.077,4.131,3.67,3.621,4.128,2.375,2.035,1.883,0.418,3.16,0.867,2.521,1.722,1.797,3.594,3.37,1.91,3.387,2.621,2.606,3.731,7.227,7.164,6.029,6.127,4.934,4.451,3.373,3.25,5.115,5.888,3.942,4.235,6.179,5.119,5.301,5.577,6.806,6.135,6.508,6.174,4.711,4.277,0.543,2.537,2.934,5.229,3.978,3.82,0.864,1.392,1.974,3.614,5.793,4.892,4.797,3.378,4.251,4.042,8.196,4.961,3.072,1.902,3.028,2.191,4.112,4.157,3.82,4.271,4.028,5.045,1.71,1.219,2.127,5.718,2.318,2.238,3.018,2.133,1.887,3.973,1.409,1.259,3.237,4.545,2.868,3.182,3.921,2.794,2.613,2.084,2.943,1.879,2.893,2.299,2.356,2.23,0.286,1.884,1.897,2.845,3.034,4.319,4.452,3.323,5.899,2.982,2.851,2.21,2.444,3.684,3.804,3.868,0.469,0.567,1.905,4.54,2.577,2.239,2.42,2.603,1.563,2.055,2.645,2.573,4.157,3.705,2.743,2.774,3.126,3.282,3.478,5.892,4.059,9.492,4.258,3.176,2.403,2.11,2.461,1.74,2.207,2.829,0.4,3.211,3.407,2.336,2.894,3.565,3.688,3.737,3.83,1.893,1.723,1.511,2.976,3.415,2.87,6.188,4.514,7.772,3.103,3.984,3.134,2.814,5.946,4.844,3.094,1.96,7.064,10.139,2.154,4.913,4.124,5.067,6.394,5.639,5.471,5.074,2.981,4.215,4.251,3.925,2.486,1.74,2.785,5.678,6.448,7.491,5.673,4.716,3.757,4.024,4.005,3.76,2.644,3.652,3.675,1.238,1.117,5.91,6.133,5.555,7.023,6.191,5.204,5.95,4.349,4.164,4.8,4.242,4.237,4.217,3.966,4.346,3.544,3.456,3.082,3.012,2.243,2.748,3.12,5.367,2.917,0.551,2.061,0.259,4.645,3.147,4.536,2.625,2.557,1.886,1.897,1.698,1.531,3.29,2.834,3.815,3.654,2.432,2.475,1.5,2.934,2.716,2.76,1.906,1.758,3.133,1.938,2.319,1.695,2.394,1.904,1.332,2.656,2.375,1.97,1.84,2.286,3.191,3.508,2.997,2.483,2.021,3.071,4.476,4.508,2.996,2.426,1.894,0.684,2.161,2.317,3.746,3.324,3.351,2.559,2.678,2.735,3.221,3.241,2.065,3.441,16.215,11.102,0.495,1.732,6.402,6.499,6.027,7.048,4.121,3.2,2.93,2.794,2.121,2.479,3.093,3.418,3.671,3.749,3.911,3.001,4.782,5.297,3.516,3.439,3.44,2.356,3.139,1.684,1.892,1.47,2.462,2.191,2.335,1.527,2.411,2.139,0.403,2.986,3.854,7.521,3.406,1.921,3.01,3.166,3.147,3.91,1.769,3.689,2.079,3.044,2.123,2.315,3.313,2.905,1.903,3.753,3.079,3.665,2.482,3.892,2.18,3.839,1.787,2.066,1.462,1.261,1.105,1.714,1.938,2.572,4.191,1.739,1.906,2.177,1.963,2.279,2.966,2.316,1.676,1.576,3.055,1.901,2.011,2.721,2.092,2.465,2.083,0.636,1.268,1.791,1.809,1.957,3.794,5.941,6.105,4.717,3.373,2.49,2.427,2.184,1.086,1.461,1.415,2.04,1.828,2.023,1.842,2.313,2.838,1.721,1.737,1.753,5.39,5.493,4.179,3.758,0.418,3.754,3.624,1.857,2.512,0.084,2.789,5.504,7.524,0.332,3.223,1.347,3.205,2.29,3.595,1.624,2.162,3.23,3.939,3.102,2.091,3.117,2.65,1.851,1.898,2.211,2.624,2.589,2.18,2.48,2.244,1.944,2.187,2.313,2.315,2.06,1.709,2.079,1.817,2.077,2.143,2.015,2.147,1.605,2.029,1.527,1.384,1.325,1.877,1.473,1.111,1.399,1.47,1.436,1.474,1.98,2.184,0.875,1.808,1.851,1.823,1.127,1.52,1.68,1.625,1.682,2.491,2.141,1.812,1.866,2.058,2.579,1.499,3.125,2.691,0.926,1.829,2.106,1.754,1.993,2.211,2.806,2.559,2.004,2.474,2.506,1.929,1.505,1.489,2.432,2.033,1.961,1.055,2.098,2.487,2.259,2.474,3.198,2.908,2.977,1.824,2.199,2.681,2.17,2.479,2.207,2.845,2.146,2.212,2.877,2.613,2.12,2.517,2.108,2.186,2.535,4.035,2.608,2.349,1.584,1.934,2.165,2.336,1.981,1.984,2.137,1.924,2.322,2.434,2.335,2.823,2.164,1.613,2.835,2.267,2.636,2.47,2.401,2.704,2.621,2.011,2.335,2.642,2.264,1.937,2.012,2.202,2.137,1.713,2.303,2.093,2.232,2.311,2.49,1.919,2.496,2.194,2.309,1.789,1.637,1.705,1.617,1.054,0.414,2.078,5.873,2.485,2.942,0.384,2.27,1.871,1.963,1.869,1.731,2.187,1.502,1.591,1.598,1.027,1.875,2.332,0.989,1.638,1.498,1.782,1.835,1.754,1.676,2.393,2.277,2.837,3.805,7.546,5.985,3.099,2.893,2.52,2.481,2.037,2.003,1.875,2.351,2.214,2.533,2.211,1.788,2.225,2.514,2.468,1.881,0.568,2.444,1.43,1.981,3.393,4.344,5.354,4.459,5.063,4.12,4.533,3.638,2.173,2.588,2.235,1.973,3.07,3.043,3.261,2.929,0.51,3.828,3.12,3.291,5.357,3.069,2.358,1.273,1.417,1.992,1.867,2.727,1.639,1.596,1.441,2.28,2.81,2.454,3.032,1.951,2.011,1.818,1.974,2.151,3.371,3.173,2.402,2.432,2.091,1.949,1.941,2.14,1.936,1.799,2.13,2.408,2.174,2.217,2.099,2.917,2.417,2.116,1.542,1.673,1.796,1.945,2.094,1.695,2.113,2.297,1.897,3.332,5.59,5.718,2.625,1.336,1.955,1.777,2.015,1.145,2.339,1.736,1.981,1.767,1.971,2.693,2.72,1.915,1.899,1.845,2.122,3.195,1.504,4.328,1.754,2.414,1.803,4.236,2.728,2.093,2.106,2.001,1.969,1.822,1.383,1.58,1.747,1.923,1.912,1.811,1.732,2,2.34,3.694,2.099,2.201,1.428,1.551,1.902,2.132,1.837,1.884,1.679,1.974,2.037,3.235,2.923,2.874,2.028,2.368,1.863,1.824,1.955,1.68,2.18,1.865,1.481,1.513,1.506,1.613,1.791,1.849,1.962,1.525,1.657,1.974,2.191,2.121,2.254,1.94,1.56,1.989,1.606,3.197,2.233,2.555,2.263,1.293,2.014,1.468,1.81,2.036,1.789,2.208,2.059,1.691,1.867,2.285,2.016,1.605,1.462,1.271,1.646,1.441,1.858,1.405,0.837,1.485,2.073,1.778,2.254,1.829,3.973,5.424,3.516,2.729,3.708,2.184,2.359,2.321,2.261,2.039,2.105,1.522,1.509,2.089,0.166,1.998,1.735,1.627,2.597,1.631,1.763,1.978,2.095,2.274,2.233,2.406,2.908,2.747,4.031,2.077,2.064,2.143,1.85,2.177,2.24,2.604,2.847,1.962,2.484,1.759,1.576,1.483,1.329,1.746,1.785,1.555,1.439,1.814,1.686,2.162,2.359,2.593,5.872,1.96,1.77,1.835,1.732,1.841,1.821,2.062,1.551,1.275,1.092,2.051,2.689,4.314,1.878,1.059,2.126,1.576,1.579,1.475,1.638,1.792,1.56,1.68,1.321,1.627,1.842,2.107,4.734,2.627,2.188,0.527,0.937,2.751,2.073,2.159,2.323,1.987,2.445,2.586,2.454,2.484,3.639,3.22,2.094,1.76,1.4,4.271,5.363,4.063,2.27,1.988,4.028,2.594,2.571,2.855,3.022,2.986,3.115,2.891,2.106,3.017,2.711,2.855,2.258,2.034,0.523,3.938,0.499,5.906,1.976,4.014,4.041,3.636,4.339,1.293,3.227,2.117,2.414,3.137,1.198,1.103,1.872,1.905,2.943,2.399,3.14,5.414,5.338,4.794,6.878,9.82,10.364,5.684,4.808,1.166,5.584,5.648,2.642,2.594,4.174,3.39,3.765,4.215,5.245,3.444,3.437,1.624,1.564,2.508,2.397,3.075,1.416,1.853,1.748,2.408,2.36,2.828,2.263,2.332,3.325,0.943,5.299,0.13,2.934,2.645,2.75,2.944,2.647,2.157,2.366,2.514,2.137,1.863,3.039,3.38,3.17,5.079,0.551,1.987,2.017,1.809,2.226,1.889,2.011,1.996,2.379,2.22,1.477,1.727,1.638,2.851,2.6,0.726,2.813,3.266,5.103,4.562,7.757,9.969,2.086,2.824,1.654,4.639,12.039,7.544,10.841,2.465,1.995,1.866,2.012,2.274,1.546,1.364,1.863,1.776,1.775,1.881,1.945,1.607,0.247,1.724,1.61,1.891,2.027,2.334,1.896,1.844,1.863,2.084,2.809,3.594,1.509,1.296,1.648,2.183,2.035,1.803,1.898,1.897,1.765,1.938,1.63,2.053,2.411,2.29,2.732,2.624,1.815,2.066,1.829,2.143,1.948,2.09,2.387,4.534,4.455,5.796,4.489,7.919,4.325,2.335,1.987,1.801,1.538,1.695,1.768,1.789,1.762,2.216,1.984,3.024,3.617,2.535,1.894,1.979,1.696,1.981,1.781,1.76,2.058,2.253,2.038,1.899,1.907,2.088,1.741,1.761,2.49,2.176,1.774,1.819,1.912,1.523,2.03,1.947,1.855,1.298,1.746,1.311,0.812,1.417,1.527,2.058,1.989,2.182,1.48,5.03,1.186,1.901,1.242,1.527,2.168,1.331,2.324,2.099,1.965,1.914,2.816,5.275,1.861,3.962,2.785,3.443,11.247,5.61,5.254,0.319,1.434,2.844,2.484,0.906,2.146,1.605,3.105,7.66,1.181,1.233,1.295,1.365,1.077,1.004,1.019,1.245,1.346,1.319,1.614,1.702,1.46,1.205,1.029,0.837,1.116,1.287,0.828,0.405,1.243,3.662,1.944,1.425,1.283,1.382,1.642,2.859,5.244,2.279,0.909,1.559,2.548,0.892,1.255,1.263,2.502,2.641,2.209,2.727,1.498,2.48,1.784,2.45,2.389,3.004,3.78,2.805,2.357,2.07,1.928,2.181,1.52,5.063,1.395,4.418,4.623,0.594,14.883,0.438,15.176,1.168,11.084,2.3,21.042,1.945,1.621,2.172,1.334,1.162,5.345,3.294,0.668,2.497,3.286,3.602,6.27,2.808,1.703,2.766,1.137,3.02,2.238,2.838,4.072,1.18,4.447,2.391,3.171,3.979,3.371,3.756,3.697,3.34,6.839,4.056,1.145,1.49,2.614,3.505,1.957,1.542,3.46,3.76,4.616,4.664,1.638,3.832,4.211,4.325,5.357,0.031,5.298,3.14,1.572,1.634,3.763,2.819,6.714,3.237,3.262,4.024,3.945,5.211,2.367,2.284,2.332,2.631,0.746,1.933,2.769,2.118,2.398,1.578,1.25,0.265,0.674,4.921,4.34,3.22,2.071,1.184,1.403,1.934,1.617,1.537,2.521,3.568,1.793,1.245,3.117,2.943,2.666,2.858,2.567,1.792,1.875,2.454,1.851,0.708,2.489,3.04,1.039,2.883,2.366,3.055,1.336,3.029,1.003,0.988,1.941,2.665,3.691,8.32,11.535,4.585,1.966,0.867,1.664,0.451,4.027,3.178,3.059,3.356,3.21,2.84,2.664,2.524,2.46,2.301,1.19,1.204,4.277,3.821,3.789,2.179,2.417,4.641,5.26,4.019,8.696,9.512,1.391,1.453,9.402,8.735,4.797,3.789,5.992,4.219,3.82,3.676,0.044,3.589,6.154,8.713,4.418,3.644,1.328,1.469,1.551,0.324,2.839,3.142,2.046,5.392,1.848,1.512,3.436,1.462,3.002,5.087,4.881,4.325,4.218,4.435,4.341,8.775,1.533,2.796,4.357,4.384,4.412,3.948,1.078,1.304,3.765,2.984,4.387,3.754,4.737,4.929,5.886,3.658,2.909,1.585,2.801,3.591,3.6,2.992,3.888,1.657,2.402,3.898,4.753,4.373,5.231,2.309,2.316,2.366,2.346,2.678,1.57,0.815,0.791,0.763,0.803,2.922,0.309,1.324,1.508,2.56,4.678,2.005,1.268,1.486,3.182,0.242,5.391,2.637,4.019,2.119,3.504,2.394,3.38,3.577,2.828,2.98,2.66,4.232,2.32,3.691,2.484,4.136,3.18,2.467,2.652,3.723,3.374,6.024,2.348,11.81,7.407,7.51,0.978,1.916,5.842,12.033,3.914,10.707,0.926,0.996,9.719,20.023,7.021,5.081,3.857,2.724,2.646,2.574,2.326,2.719,4.23,2.567,2.842,1.895,1.084,1.552,1.961,1.428,5.55,3.016,5.205,12.713,2.671,10.249,2.434,12.05,9.201,2.958,3.304,3.937,2.46,2.816,3.736,3.335,4.473,4.728,3.401,3.206,1.15,2.393,2.95,2.32,2.277,4.556,3.129,1.495,1.18,1.8,1.781,0.022,2.171,2.295,0.545,0.441,1.828,1.171,0.457,1.477,2.546,2.603,1.892,1.984,2.868,1.61,1.396,1.714,0.924,1.306,1.088,1.916,1.474,1.902,2.634,2.204,1.621,2.4,2.383,2.288,5.694,4.17,7.087,0.528,3.133,6.016,4.508,2.409,2.43,2.682,3.489,2.934,2.208,1.216,2.876,3.182,3.05,2.505,3.058,4.02,4.422,3.833,2.922,1.875,1.389,1.254,0.983,1.425,5.744,10.53,6.065,1.613,3.972,4.177,3.428,1.787,2.293,2.046,1.473,2.776,2.23,2.083,1.455,1.837,1.019,1.496,2.518,1.835,1.607,0.336,1.25,1.375,1.403,1.492,1.685,1.964,2.607,2.579,2.212,1.509,2.474,2.383,2.845,2.875,5.156,5.578,3.555,4.051,2.929,2.864,2.259,2.372,2.426,2.172,2.237,1.118,1.292,1.859,2.093,3.451,4.484,0.813,1.785,1.816,2.588,3.678,2.227,1.785,4.342,2.869,1.343,2.473,1.547,0.844,1.093,5.208,2.43,1.247,5.671,3.004,12.348,4.347,0.844,2.755,2.151,1.533,2.289,2.511,2.723,2.068,1.324,1.477,2.281,6.739,2.246,4.352,1.592,2.539,1.789,2.505,3.59,4.678,3.124,4.092,3.374,1.665,3.023,3.008,3.11,3.068,2.688,1.88,1.672,2.573,2.935,1.508,2.122,3.103,10.204,3.672,2.368,3.318,3.738,1.174,2.617,3.262,3.096,2.859,2.722,2.782,3.249,4.911,0.27,2.044,2.705,2.776,3.2,2.873,5.288,4.759,4.304,1.702,2.615,2.487,2.837,2.046,1.772,2.068,1.234,2.18,3.3,4.936,2.094,2.108,2.25,2.415,2.189,5.67,7.136,2.192,1.648,2.131,2.665,2.141,0.785,1.858,2.624,2.475,6.41,2.915,2.379,2.204,2.071,2.89,2.211,2.654,2.217,2.12,1.026,1.703,1.988,2.14,1.089,1.963,2.822,2.137,1.902,2.07,1.878,2.028,1.564,1.488,1.241,1.792,1.269,1.76,3.093,2.589,3.302,2.479,5.588,0.988,5.38,4.999,1.78,2.226,2.099,1.957,1.79,1.758,2.064,1.515,1.943,1.943,2.988,2.996,1.973,2.488,1.389,1.747,1.913,1.849,0.364,2.404,2.408,0.16,2.42,2.572,3.679,3.026,5.626,2.951,2.589,1.394,1.916,1.343,1.52,1.219,1.885,2.543,1.162,0.031,1.093,0.074,2.318,1.375,1.907,1.993,3.082,2.139,1.424,3.065,3.272,3.84,2.591,2.252,2.353,1.269,1.638,2.587,2.718,3.333,1.527,0.756,2.242,2.117,1.983,2.26,2.044,2.199,2.499,2.435,5.291,1.145,2.432,1.878,0.898,1.895,1.605,2.182,2.885,3.228,2.251,2.64,3.048,3.194,6.434,6.438,3.062,5.89,2.638,3.422,3.364,3.64,6.112,3.275,3.094,5.723,2.082,2.393,4.091,3.025,2.622,3.05,2.9,2.508,2.231,1.678,2.119,2.738,2.528,2.878,1.948,2.925,2.598,2.728,0.965,2.816,2.716,2.595,2.362,2.752,6.708,1.07,3.762,2.186,4.478,2.143,1.127,0.992,3.238,0.838,1.688,2.057,2.838,3.299,2.366,0.573,5.558,3.747,5.667,7.648,0.095,8.906,4.189,2.211,4.365,4.574,2.332,4.834,4.33,2.09,3.434,6.472,3.757,4.273,4.227,3.512,3.534,2.318,1.782,2.463,1.102,3.581,1.099,1.703,1.375,2.643,2.318,3.467,2.847,2.278,1.523,8.284,4.699,9.584,1.899,2.732,4.122,2.785,2.456,1.118,0.755,2.065,2.359,2.855,3.976,5.259,3.028,6.836,7.207,4.483,3.559,4.506,3.393,3.535,9.452,5.161,2.264,2.716,2.467,3.164,3.171,2.592,4.086,2.936,2.799,7.408,4.17,4.159,1.223,5.982,5.647,4.086,7.65,3.917,5.783,4.78,5.667,3.485,2.408,2.532,2.868,2.449,2.311,3.041,2.945,5.717,1.918,1.998,2.928,3.481,3.722,4.331,0.814,0.215,2.125,4.504,7.364,4.846,0.633,6.419,2.834,2.668,1.699,0.929,1.077,1.245,1.317,1.662,1.231,1.297,1.373,1.426,1.832,0.867,1.895,0.79,1.553,1.506,1.455,1.437,1.259,2.335,1.702,1.789,1.967,1.578,1.892,2.007,1.655,1.435,1.865,1.593,2.228,2.635,1.99,3.69,0.99,0.734,0.843,2.088,3.176,3.61,3.546,2.551,4.004,2.643,4.063,2.166,3.18,1.77,1.471,2.171,4.053,6.444,5.845,3.643,3.542,3.289,1.029,2.357,3.53,1.461,1.878,1.496,4.148,4.907,3.801,7.583,1.543,3.738,7.706,4.621,3.237,2.689,2.486,2.005,1.115,2.585,0.785,1.516,2.828,2.984,0.919,1.894,0.79,2.488,0.68,3.458,4.003,3.637,1.927,2.636,3.487,4.61,4.111,2.479,0.942,3.028,3.065,12.562,14.748,5.562,0.559,6.873,10.44,0.52,8.713,1.06,2.895,0.727,3.121,2.297,0.905,6.251,5.081,2.887,6.604,3.488,2.866,1.918,1.406,17.972,9.194,1.144,6.451,16.373,1.493,1.039,9.136,5.676,10.306,6.307,8.801,2.91,2.238,3.166,5.249,4.707,6.407,3.235,3.202,2.811,2.848,0.637,3.071,1.958,5.598,5.663,5.655,4.641,3.465,2.988,1.486,2.565,1.15,1.319,2.616,4.181,3.488,2.262,3.549,6.409,1.274,1.336,2.648,2.114,6.226,1.453,11.697,3.464,9.205,2.335,4.199,3.59,4.816,4.499,4.285,6.394,0.969,6.074,3.467,3.469,2.237,4.796,6.136,3.542,3.567,2.899,4.365,1.979,1.817,4.716,1.722,3.495,5.903,6.086,5.218,3.035,5.624,0.707,3.432,1.748,2.145,2.144,2.446,16.925,5.48,2.2,5.84,3.755,2.229,4.219,12.061,8.339,10.445,4.752,6.533,6.382,0.922,4.592,3.688,3.925,3.315,2.618,1.091,1.479,2.494,2.717,3.484,4.198,4.126,2.288,0.374,1.84,8.148,11.606,1.883,17.067,14.566,12.818,12.764,3.525,1.826,2.808,0.22,2.156,1.186,1.167,2.077,2.008,1.666,1.626,0.029,1.9,0.888,0.996,4.514,3.133,3.155,2.3,1.401,3.47,1.421,2.055,2.079,1.915,1.731,1.849,1.835,1.852,1.906,1.926,1.835,1.471,2.503,3.651,1.524,1.691,1.841,1.657,3.439,7.997,3.607,2.163,6.153,3.063,1.252,0.688,1.155,2.18,2.444,3.856,3.901,3.78,3.052,3.625,1.591,1.803,5.563,6.844,2.02,3.152,2.039,2.045,2.585,2.582,1.93,2.015,1.552,1.188,2.603,2.311,1.121,3.026,3.004,2.098,2.37,3.906,3.437,1.691,1.569,1.951,1.719,2.421,2.656,1.793,1.755,1.895,1.888,1.464,3.087,2.239,1.631,2.474,2.23,0.625,0.824,2.047,1.386,2.868,4.533,2.981,1.812,9.75,1.141,2.38,3.24,0.045,3.448,1.623,5.933,3.241,0.441,1.883,2.677,6.348,8.297,8.498,0.532,6.573,3.447,1.246,13.713,3.464,3.935,2.57,2.835,2.864,2.239,3.893,1.261,3.858,2.99,1.867,2.33,3.103,4.296,2.939,1.32,2.033,1.038,4.025,4.589,4.77,3.654,1.246,4.207,4.148,3.367,1.909,4.139,2.75,3.288,2.207,1.496,6.888,4.266,0.881,1.52,0.865,2.367,4.5,2.407,1.532,6.46,1.538,1.496,2.239,2.06,1.434,1.573,1.919,1.989,2.777,2.009,2.215,2.858,2.884,2.938,3.103,3.302,3.149,3.467,2.775,4.073,2.348,2.342,2.211,0.867,3.743,2.304,1.908,2.978,2.801,3.154,3.409,4.346,1.578,2.351,1.869,2.851,2.111,2.27,3.165,4.09,2.967,2.012,0.68,2.594,0.375,1.802,1.61,1.631,3.595,2.399,3.454,3.111,3.549,3.421,3.234,2.806,0.127,4.163,3.971,3.882,2.655,3.463,5.067,3.595,3.711,13.904,11.268,12.098,7.814,7.269,5.07,5.823,4.275,3.714,3.765,3.74,3.407,3.528,5.965,3.897,4.144,2.77,2.854,2.335,2.937,1.499,0.034,1.425,3.13,3.423,3.568,3.308,2.684,0.588,3.825,3.04,2.681,0.66,3.095,4.572,4.372,13.202,18.273,9.691,3.108,3.187,3.816,1.035,7.142,5.449,4.765,5.86,3.427,3.267,3.738,7.2,5.366,5.941,11.334,5.526,5.251,4.743,3.271,0.564,1.395,2.895,2.191,0.393,7.78,6.677,2.906,1.644,0.479,0.71,12.65,1.794,3.436,1.688,1.664,2.768,2.918,2.565,1.935,1.899,2.715,2.913,3.14,3.08,3.806,2.52,0.309,3.26,6.193,4.075,0.537,3.323,6.119,2.87,3.396,4.647,9.755,6.606,4.449,3.227,4.681,2.774,2.32,1.91,1.83,1.775,1.902,1.912,2.262,2.06,2.11,2.127,2.681,2.175,2.249,1.817,1.702,1.819,2.625,3.781,9.539,8.676,4.82,8.158,3.244,3.153,3.456,1.498,3.429,5.01,5.405,4.848,4.901,2.949,6.067,7.03,5.273,5.291,2.519,7.199,1.138,1.727,2.123,0.93,0.945,1.418,1.003,0.964,0.944,1.002,0.917,1.023,0.945,0.97,3.165,3.109,1.605,2.21,2.469,2.803,20.729,4.691,1.305,1.616,1.178,1.054,2.428,1.974,1.546,1.48,1.689,1.735,7.347,1.285,1.261,1.297,1.301,0.874,1.265,1.332,1.574,1.852,1.084,1.367,1.338,1,0.366,1.507,1.896,1.382,1.743,0.779,1.473,0.911,1.151,1.124,2.042,2.108,3.833,1.453,2.895,0.949,1.466,1.581,2.154,1.455,1.084,1.12,1.937,1.725,1.661,1.696,2.133,2.124,4.143,1.634,1.629,1.685,1.666,1.225,1.278,1.427,1.436,0.767,0.023,0.83,0.712,0.747,2.045,0.942,0.983,1.002,1.729,2.556,0.199,1.284,0.739,0.687,2.181,2.085,0.532,2.548,2.504,2.057,1.969,1.315,1.349,2.262,1.785,1.829,1.652,1.717,1.508,1.428,1.669,1.237,1.682,1.582,2.454,7.596,1.049,1.266,1.357,1.349,1.494,1.584,1.325,0.909,1.216,1.168,1.758,1.255,1.078,1.256,1.283,1.246,1.191,1.205,1.182,1.458,1.39,1.014,0.981,1.948,2.379,2.351,3.727,3.427,1.761,1.793,1.61,1.678,2.112,2.15,1.263,1.281,1.834,1.87,3.894,16.268,2.859,4.545,7.747,12.589,2.419,2.47,2.424,2.532,1.912,1.877,1.69,1.686,0.551,2.833,1.794,1.476,1.492,1.332,1.318,1.634,1.619,1.555,1.544,1.487,1.49,2.528,1.566,1.56,1.563,1.535,1.805,1.913,1.245,1.228,1.922,1.738,1.698,1.626,1.661,1.625,1.05,1.027,2.06,2.064,2.08,1.996,7.763,0.629,2.562,1.758,1.657,1.517,1.515,1.707,1.346,1.462,1.504,1.352,1.667,1.266,1.286,1.368,1.426,2.336,0.737,1.143,2.195,4.136,3.481,1.745,1.701,1.818,1.569,0.391,1.49,1.471,1.248,1.338,1.701,2.115,1.267,1.222,2.512,2.308,2.278,2.335,2.307,2.332,5.441,3.113,2.899,2.144,1.867,1.746,1.716,1.98,2.814,2.902,2.736,2.705,2.037,5.36,1.715,1.264,1.214,1.242,1.297,1.244,1.684,1.255,1.238,1.003,1.053,1.176,1.343,0.967,1.02,1.334,1.017,1.109,1.222,1.253,1.26,1.692,2.126,1.228,1.048,6.391,4.493,3.071,2.49,1.882,1.487,1.487,1.471,2.089,2.057,2.185,2.207,5.507,1.872,1.488,1.8,1.81,2.188,1.194,1.145,1.466,1.48,1.375,1.351,1.637,1.526,1.08,1.113,1.116,1.052,1.482,0.844,0.516,1.379,0.978,2.36,5.091,1.61,1.665,1.857,1.112,1.118,1.052,0.057,1.485,0.899,0.927,0.909,0.957,1.847,1.87,7.789,3.778,3.948,3.485,2.293,2.137,2.721,2.621,5.294,5.938,2.853,8.03,5.691,0.663,4.204,4.072,3.716,16.045,2.221,2.244,3.072,1.358,1.39,7.892,6.308,3.041,2.708,1.534,1.465,1.022,2.556,1.261,1.217,1.965,1.025,1.055,1.593,1.175,1.125,1.481,1.036,0.981,1.398,1.37,1.326,1.443,1.432,1.244,1.217,2.51,2.59,1.027,2.132,6.5,20.477,50.47,0.094,2.964,1.967,1.898,1.984,1.87,1.345,1.414,2.079,8.921,6.389,10.955,16.665,7.4,10.274,5.04,7.094,4.155,5.961,5.354,4.455,0.668,5.232,3.64,2.882,1.202,1.908,1.424,1.692,0.429,1.308,1.573,1.996,1.747,2.149,2.363,2.523,2.373,1.903,1.564,2.38,0.593,1.358,1.384,1.576,1.096,1.172,1.81,1.339,1.373,1.889,1.546,1.578,1.496,1.119,1.714,2.829,3.241,2.301,8.874,7.977,1.827,5.388,3.473,4.676,8.749,4.405,2.037,1.802,1.143,1.831,1.771,0.73,2.968,1.43,1.454,4.661,1.764,1.515,8.141,1.512,2.629,0.596,3.687,4.051,5.134,4.344,2.914,0.453,6.868,3.55,8.855,11.205,6.113,2.93,2.283,3.622,2.65,2.058,2.54,3.227,5.207,11.272,5.235,3.823,9.84,20.804,10.653,43.248,23.183,25.224,2.398,19.355,19.99,4.976,12.299,6.173,6.249,5.007,2.345,2.52,2.855,2.869,13.693,0.764,5.191,2.837,5.303,5.747,0.03,2.813,4.4,3.03,3.402,2.452,2.993,2.083,1.291,1.82,0.551,1.91,2.447,2.865,2.655,2.657,2.679,2.569,3.105,3.402,3.166,2.789,1.897,2.754,3.787,2.775,2.458,2.287,3.293,3.581,1.567,2.057,2.187,1.938,1.591,1.714,2.146,1.675,0.234,1.004,2.622,2.391,1.871,1.846,1.967,2.536,2.614,2.318,2.758,7.443,5.983,11.724,4.635,1.733,5.929,3.525,5.567,2.562,3.96,1.585,2.564,2.974,5.263,4.197,4.345,3.563,5.492,3.696,3.494,4.443,3.53,3.836,5.444,5.367,4.574,5.49,4.775,6.328,4.9,2.83,2.292,3.339,3.267,1.648,0.95,1.71,2.429,1.124,0.966,1.636,2.456,3.285,3.693,3.008,1.73,1.247,3.177,3.229,3.047,3.179,4.013,2.246,0.942,0.334,1.77,2.28,1.341,1.381,1.686,2.614,1.018,0.606,0.176,0.661,0.516,0.264,0.326,0.491,0.258,0.277,0.366,0.973,0.288,0.26,0.26,0.278,0.218,2.051,5.206,4.413,3.283,2.606,1.326,0.791,2.117,0.449,0.379,2.169,2.104,2.114,1.518,1.457,1.693,1.55,3.228,0.906,1.598,3.747,2.611,2.987,2.722,2.433,2.258,3.676,2.333,3.651,2.678,1.804,2.767,2.732,2.755,2.333,2.211,3.001,3.342,3.145,3.095,2.845,2.787,2.553,4.291,6.169,7.825,4.233,4.772,4.016,4.437,3.254,3.784,3.285,3.043,2.909,1.833,3.504,4.311,3.556,3.335,2.107,5.201,1.422,3.787,2.338,2.128,2.048,0.566,2.299,0.133,2.179,1.464,2.53,3.388,5.067,3.031,4.118,3.074,3.829,2.893,2.754,4.256,5.091,2.978,4.569,2.595,4.511,2.258,4.852,1.903,4.674,2.771,3.016,4.505,2.994,3.768,4.136,2.996,3.346,3.01,2.626,3.375,2.998,2.811,2.34,1.705,5.578,3.238,2.914,6.161,5.394,4.718,4.144,4.653,2.109,2.826,4.226,3.483,1.847,5.328,9.526,4.784,4.82,6.032,8.58,5.052,5.291,3.968,3.761,3.378,2.429,3.303,1.086,3.64,0.726,2.734,2.893,3.743,3.424,5.429,18.416,4.636,4.96,12.38,4.208,4.085,4.378,8.92,6.79,10.614,15.677,3.116,3.043,1.929,1.971,2.522,3.038,1.617,3.061,2.262,1.932,1.771,1.204,0.191,1.222,0.623,1.174,1.305,1.278,0.227,2.002,1.915,2.329,2.353,1.793,2.151,2.307,3.328,2.386,2.008,1.265,0.75,2.051,2.86,3.789,2.736,2.019,2.512,8.841,1.454,2.429,2.645,1.518,0.024,1.749,1.649,2.22,2.006,2.15,2.072,3.179,0.787,9.598,3.282,1.576,1.43,0.753,1.369,1.905,1.986,1.515,1.57,1.506,1.366,1.931,2.803,4.299,9.679,2.746,2.163,1.903,0.973,1.55,2.684,3.165,2.125,2.544,2.631,4.168,4.379,6.053,2.089,1.955,1.978,1.458,1.557,1.897,1.837,1.706,2.815,3.44,3.91,7.545,4.313,1.657,0.904,1.727,6.035,15.892,22.616,12.311,7.961,3.508,5.028,6.653,6.713,18.33,5.049,6.299,4.637,4.899,4.054,4.271,4.017,5.143,5.614,3.78,3.848,6.28,2.759,0.313,1.872,0.767,1.426,2.55,0.941,22.738,6.441,0.852,0.25,2.027,10.765,8.398,6.191,5.572,3.69,1.945,0.643,5.04,6.842,5.269,0.754,11.761,3.026,1.986,1.696,1.722,2.291,2.919,3.514,4.986,5.546,1.737,5.426,4.851,7.107,6.952,4.897,4.32,0.574,9.817,12.814,12.835,13.17,7.361,5.342,3.151,3.313,3.645,3.686,2.185,10.176,16.875,0.883,0.796,1.701,1.988,2.552,1.642,1.326,2.536,2.278,13.489,1.645,5.344,4.264,4.347,4.365,2.279,2.376,0.975,2.158,1.466,1.618,2.852,2.499,2.531,2.55,2.313,2.337,2.015,1.244,2.574,2.174,2.172,1.807,12.421,1.047,4.382,5.558,3.268,3.221,0.449,2.614,4.365,3.937,3.523,2.743,2.708,2.724,2.694,2.727,2.684,2.61,2.533,2.408,2.168,3.963,0.001,2.016,1.949,3.655,3.76,4.099,2.129,2.089,1.256,0.898,0.523,2.777,2.732,2.741,2.814,4.997,2.478,2.478,4.024,2.469,2.453,4.043,4.45,7.417,7.361,0.617,9.921,5.666,5.067,2.04,1.972,1.293,1.217,1.543,1.658,1.002,0.607,1.728,1.734,1.84,2.158,1.84,1.944,1.934,1.59,2.125,1.657,1.51,1.51,1.789,2.004,2.028,2.231,2.382,2.303,2.348,2.008,1.866,4.95,4.201,2.115,2.906,3.47,2.083,1.655,1.713,1.574,3.138,1.525,1.492,1.716,1.704,1.704,1.665,3.328,3.3,3.192,1.598,1.558,3.005,3.005,4.308,4.046,6.013,6.022,12.055,2.931,2.989,3.248,2.999,1.299,1.276,1.343,1.339,1.447,1.458,1.412,1.385,1.494,1.5,1.467,1.433,2.949,2.982,13.725,3.384,2.536,2.419,2.478,2.479,1.284,1.237,1.764,1.702,2.283,2.277,1.792,1.757,2.671,2.63,1.441,1.438,2.867,2.042,2.061,1.744,1.612,1.509,1.731,1.753,0.687,1.134,1.795,3.054,3.017,0.753,2.178,2.068,2.422,16.137,52.881,26.681,14.335,5.44,7.629,6.192,4.764,4.804,6.111,6.18,3.227,6.189,6.09,7.781,4.715,7.753,1.159,6.519,6.779,14.193,12.966,8.282,7.767,6.151,5.127,3.149,3.197,4.729,3.212,3.31,1.633,1.718,1.317,1.799,2.936,3.792,3.941,3.426,2.216,2.921,7.941,1.328,4.673,5.601,4.018,5.178,3.57,2.366,2.379,2.56,2.021,2.461,3.499,2.454,6.604,2.477,3.341,5.976,7.085,5.065,12.728,3.766,3.588,3.013,2.748,7.133,12.281,3.089,2.932,5.722,2.443,3.193,2.427,3.767,4.951,5.057,7.427,1.133,4.427,4.334,6.07,6.149,4.025,3.627,3.595,4.553,1.47,1.134,1.131,1.427,1.348,1.438,1.33,1.781,1.382,1.052,1.597,2.921,2.958,9.026,2.35,2.684,2.039,1.747,1.613,1.152,1.249,1.279,3.631,1.766,1.926,3.756,1.432,1.59,2.402,4.086,3.602,3.039,1.93,2.006,3.189,3.347,9.705,3.5,2.805,2.503,0.434,3.743,4.401,3.117,2.57,3.103,0.961,0.955,1.491,1.95,1.63,3.272,1.705,1.756,1.645,4.852,5.194,2.243,1.941,3.803,3.316,4.157,4.414,2.309,4.183,2.398,2.53,2.669,2.068,0.324,1.016,3.339,3.946,1.39,4.87,8.978,9.242,2.926,8.57,6.777,1.589,1.22,0.41,9.285,11.575,5.048,5.279,4.498,7.466,0.855,8.238,8.238,0.607,15.78,1.095,4.228,1.32,1.097,1.878,1.845,2.911,2.844,6.062,2.367,2.381,2.331,2.304,1.783,1.774,1.79,1.856,4.687,4.062,1.585,1.599,1.592,1.401,1.325,1.815,3.179,10.394,9.109,8.323,4.079,4.198,4.239,4.334,5.237,5.435,7.864,6.108,6.4,0.118,6.754,7.237,7.235,3.536,3.024,7.57,4.019,3.957,0.876,2.646,1.947,1.083,1.724,3.096,5.723,3.289,4.768,2.996,4.602,4.18,7.671,6.428,5.571,3.468,3.49,4.791,3.852,3.031,2.892,2.196,1.993,2.479,1.978,2.458,2.396,3.608,2.425,4.616,2.361,2.401,1.572,1.504,3.188,2.189,1.281,2.073,2.806,2.581,2.404,2.355,2.567,2.667,2.154,2.222,5.204,3.933,3.261,1.861,2.069,2.299,2.323,1.867,2.723,4.073,4.474,2.927,3.42,3.452,3.378,2.558,2.554,2.226,2.244,2.507,2.497,4.911,3.893,5.423,2.005,2.105,1.971,1.955,1.472,1.529,1.609,2.29,2.296,1.937,1.945,1.78,1.773,1.974,1.969,4.587,4.104,3.13,2.977,2.164,2.173,2.522,2.733,2.254,2.321,3.147,1.959,1.644,2.804,2.878,2.915,0.943,3.488,3.932,4.516,1.853,1.853,2.407,1.58,1.566,1.873,2.037,2.273,2.271,2.223,2.208,2.175,1.999,2.455,2.465,2.733,3.736,3.042,2.146,2.935,4.192,2.793,4.378,3.185,3.391,4.27,2.313,2.26,2.106,2.063,1.709,2.098,1.477,2.118,2.47,1.613,2.116,1.687,1.692,1.585,0.057,1.617,1.87,1.881,8.016,1.234,3.969,4.06,2.707,2.739,4.589,3.888,4.547,3.4,3.512,3.574,5.269,4.388,5.163,5.122,4.526,3.662,8.239,4.198,4.318,2.884,2.1,1.526,7.839,8.968,0.831,6.754,7.187,5.709,3.157,4.474,3.24,3.89,2.202,5.158,3.352,5.665,3.378,3.675,4.545,2.874,2.709,3.322,3.261,2.963,5.012,3.017,7.317,2.431,0.103,2.498,2.343,2.216,2.096,2.123,6.446,1.715,1.486,0.96,0.939,1.075,1.779,2.041,0.953,2.11,1.989,3.53,3.878,2.306,1.958,2.209,2.069,2.617,2.35,2.595,1.624,1.582,2.91,3.112,2.951,2.248,3.329,2.413,2.198,2.421,2.289,1.866,2.132,2.187,4.219,5.422,6.042,3.705,4.213,5.605,3.944,2.637,3.499,2.805,2.861,2.114,1.739,1.596,2.235,2.183,2.014,2.079,3.097,1.678,1.694,2.043,2.581,3.413,2.301,2.266,1.669,1.099,1.717,2.224,2.353,3.903,3.561,3.137,2.254,3.664,3.07,2.894,2.797,2.727,2.512,2.405,2.732,2.331,3.021,2.152,2.609,3.697,4.642,2.861,2.413,2.974,2.43,2.495,0.223,3.271,2.924,2.071,2.612,4.029,4.454,4.227,4.354,4.307,1.604,0.316,3.632,4.475,4.053,2.523,0.391,0.957,5.563,4.45,3.62,3.534,3.06,5.28,4.211,5.748,3.782,4.384,3.232,7.498,3.965,4.585,4.158,5.527,6.108,2.67,3.197,5.953,6.672,6.656,5.288,4.341,8.07,3.147,2.295,2.254,2.002,3.016,2.996,7.684,5.678,4.822,6.817,1.395,0.621,4.694,2.227,1.892,3.734,1.094,2.879,1.27,1.622,2.753,1.137,1.57,0.684,0.603,1.027,1.054,0.954,0.819,1.186,0.963,2.815,1.968,1.904,2.401,2.758,3.655,2.032,2.582,3.078,1.684,1.668,1.128,1.777,2.34,2.688,2.282,3.096,3.613,3.773,2.053,2.999,0.17,2.578,3.281,1.926,4.595,4.602,4.976,3.198,4.054,2.736,2.563,3.262,3.879,3.363,2.65,3.663,3.828,3.092,3.279,2.904,5.715,3.494,2.14,3.283,2.992,3.72,3.337,2.694,3.33,2.882,3.361,2.965,2.881,3.201,3.374,3.293,3.433,4.051,4.154,3.075,3.64,2.031,2.799,4.263,1.402,1.441,0.683,2.852,4.911,3.64,4.248,3.394,2.691,2.494,2.711,2.51,3.644,4.073,3.292,4.358,4.219,4.176,5.009,6.122,2.9,0.904,4.022,3.36,3.585,3.525,3.463,3.89,4.172,2.966,3.393,4.146,3.574,3.886,2.807,2.584,3.473,3.719,3.758,4.509,4.188,2.97,5.482,3.96,2.979,3.115,3.356,3.167,3.905,3.835,3.558,3.034,3.842,4.03,5.137,4.654,3.273,2.666,3.996,3.23,3.893,4.657,3.052,2.877,3.318,3.909,3.32,2.757,1.463,4.169,2.678,2.638,3.248,2.966,3.745,0.612,2.927,4.267,3.01,3.785,3.732,3.655,2.955,1.431,1.965,3.541,0.717,2.121,2.813,3.335,3.876,3.698,4.6,3.592,2.274,3.189,3.087,4.128,3.835,4.066,4.422,3.727,3.332,2.296,2.368,2.887,3.295,2.453,2.44,2.949,2.143,4.44,5.725,8.116,3.73,3.473,3.669,2.919,4.115,5.13,6.236,6.389,10.282,7.327,6.543,4.448,4.671,2.715,0.543,2.785,3.096,3.972,2.333,2.751,6.725,3.206,3.802,2.915,0.41,2.108,1.811,2.752,2.615,2.529,3.322,3.694,2.101,2.558,2.767,1.443,1.42,3.657,2.973,3.336,3.675,2.689,1.773,1.993,1.634,1.762,2.482,0.707,3.226,4.167,2.622,0.164,2.252,2.362,3.56,1.315,1.666,1.237,1.636,1.993,1.734,2.132,1.559,1.874,1.732,2.065,2.621,0.148,1.947,1.912,1.654,1.59,1.341,1.433,1.475,1.56,1.4,0.031,1.408,1.458,1.702,2.489,1.996,1.172,1.185,1.095,1.004,0.892,0.849,1.353,1.383,1.479,1.438,1.756,3.673,2.313,1.062,1.004,1.071,1.019,0.992,1.017,0.932,1.239,1.353,1.638,1.463,1.531,1.985,1.955,1.718,1.613,1.123,1.439,0.721,0.742,1.402,1.191,1.342,1.534,1.639,1.106,0.942,1.406,6.651,6.252,3.27,6.024,2.058,2.081,2.672,2.084,2.067,3.235,3.645,7.343,4.847,7.002,6.236,6.776,5.74,5.752,42.386,1.74,2.626,2.687,3.976,1.094,1.522,1.348,1.754,4.214,33.363,3.223,3.121,5.376,3.335,3.719,2.599,1.521,1.855,1.952,2.246,2.202,2.013,2.061,2.422,2.435,2.74,2.739,3.007,3.167,8.127,1.188,0.581,0.785,0.839,0.952,0.836,0.891,1.018,0.942,1.01,0.73,0.609,1.2,0.969,0.971,0.93,0.962,0.949,1.109,0.862,1.21,2.782,1.103,1.158,1.201,0.911,0.94,0.868,0.808,0.86,0.979,1.172,1.19,0.955,1.356,1.27,1.144,1.359,1.962,1.454,1.149,0.956,0.863,1.086,0.861,0.985,1.268,1.11,0.939,1.196,0.626,0.712,0.673,0.9,1.15,1.305,1.237,1.084,1.665,1.098,1.484,1.069,1.201,1.3,0.822,1.236,1.041,1.044,1.664,1.021,1.054,0.871,0.797,1.013,1.013,0.986,0.953,1.055,0.81,0.59,0.77,0.972,0.827,0.86,0.988,1.399,2.199,1.817,0.781,1.104,3.142,3.15,2.65,2.677,3.42,1.813,1.738,2.357,2.306,2.229,2.298,2.042,2.026,2.057,2.119,2.095,2.132,2.096,2.184,3.06,4.149,2.758,7.678,5.981,3.129,1.991,2.287,2.289,5.274,4.621,1.966,1.858,2.774,2.723,2.324,2.109,0.324,1.566,2.482,8.282,2.228,2.471,2.815,2.398,2.167,0.212,5.93,3.114,3.437,3.34,2.779,2.884,9.366,2.535,1.334,1.234,1.603,1.548,1.645,1.673,1.824,1.645,2.032,2.019,0.059,3.294,3.129,1.871,1.577,1.612,1.82,1.81,2.005,2.234,1.515,1.37,1.697,1.653,3.776,2.241,1.429,1.433,1.462,1.941,1.988,1.485,1.688,1.902,1.885,2.457,3.505,0.805,0.195,1.634,4.107,5.692,6.05,2.866,3.237,2.117,1.691,7.198,6.672,2.552,2.761,2.825,3.066,3.129,1.45,1.488,1.584,1.584,3.102,2.325,2.343,3.131,4.218,3.719,3.765,4.134,2.979,2.403,2.473,4.736,4.004,5.297,8.074,16.159,7.104,2.527,2.555,1.707,1.959,2.276,2.236,1.738,1.907,1.923,1.641,2.309,2.08,2.027,4.43,5.477,5.483,3.102,3.241,1.691,1.693,2.243,1.764,1.828,2.052,1.63,1.567,1.64,1.358,1.41,1.385,1.467,1.492,1.459,1.999,1.635,2.041,7.98,3.994,2.121,2.063,1.18,2.339,2.276,3.243,1.719,1.678,3.26,1.788,1.885,1.655,2.063,2.49,2.667,2.551,5.01,5.069,5.041,2.708,2.376,2.151,2.056,1.61,1.478,1.383,1.406,1.353,1.494,1.723,1.921,1.661,1.69,1.626,1.695,1.223,1.269,1.416,1.472,2.106,1.024,1.067,2.912,1.319,1.591,1.201,2.871,1.124,1.262,2.169,1.622,1.517,1.724,2.427,1.185,1.236,1.246,1.189,1.907,1.755,2.081,2.024,1.059,6.2,5.589,2.574,8.601,3.647,3.119,2.773,1.09,2.023,1.02,1.672,1.97,4.288,2.02,1.906,9.978,2.305,2.414,1.716,1.527,0.929,1.737,2.055,1.895,3.469,3.397,1.341,18.125,9.06,8.649,1.272,1.115,1.262,1.13,1.242,1.184,1.249,1.144,1.252,1.171,1.859,1.558,1.118,1.484,0.115,1.317,0.768,3.421,1.309,7.677,7.206,0.762,15.672,8.266,5.828,7.06,1.598,1.659,1.521,2.146,1.543,1.117,2.75,2.55,2.988,2.961,1.444,0.849,1.152,1.06,1.071,0.972,1.016,0.622,0.894,0.824,0.775,0.867,0.678,0.65,1.05,0.677,0.958,0.534,0.639,0.833,0.784,0.902,0.869,0.74,0.615,0.828,1.245,8.335,0.872,1.007,0.86,0.827,0.878,0.905,0.894,0.897,0.864,0.899,0.895,0.855,0.912,0.869,1.291,1.723,8.509,8.008,0.888,1.322,1.308,0.922,0.867,0.907,0.906,0.861,1.23,0.974,1.073,1.847,1.515,0.882,0.882,0.928,0.932,1.689,1.682,3.338,1.654,0.916,0.839,1.217,0.998,1.237,1.29,1.304,1.007,2.361,3.676,1.786,0.903,0.908,0.949,0.774,0.847,0.868,0.93,0.876,0.884,0.865,0.872,0.96,0.836,1.483,0.056,0.348,0.488,0.577,1.003,0.837,0.688,0.695,0.753,0.211,0.141,0.812,0.916,1.022,5.215,1.031,1.384,1.333,1.216,1.336,1.476,0.684,1.058,1.763,0.948,0.992,3.042,9.397,0.213,8.578,5.462,1.3,0.632,0.594,0.661,0.596,0.643,0.574,0.782,0.679,0.898,0.843,0.684,0.618,1.289,0.908,0.824,0.802,0.774,0.781,0.734,2.164,2.398,0.716,0.758,0.967,0.866,0.883,0.826,1.291,0.856,0.909,1.288,1.192,1.033,1.152,0.907,1.01,1.113,0.97,1.151,1.407,5.692,4.026,1.626,0.898,0.945,1.055,0.727,0.856,0.899,0.898,0.855,0.911,0.878,0.921,0.814,1.406,4.418,1.659,0.884,0.869,0.863,0.837,0.94,0.888,0.786,0.769,0.699,0.563,0.756,0.834,0.866,1.745,5.321,2.658,0.862,0.899,0.87,0.893,0.871,0.906,0.892,0.914,0.817,0.441,0.914,0.859,0.914,0.898,0.847,0.885,0.926,0.841,0.873,1.328,0.878,3.166,0.853,0.874,1.288,1.324,0.991,1.204,0.886,0.879,0.891,0.897,1.025,1.157,0.891,0.875,0.874,0.904,0.98,0.778,0.772,0.71,0.249,1.517,1.211,1.933,1.971,1.283,3.4,5.144,4.727,5.226,1.001,1.368,0.529,1.232,1.6,1.622,0.464,1.383,1.96,9.897,2.269,2.288,1.234,1.352,0.454,0.794,1.364,1.156,1.095,0.574,1.441,2.146,2.018,2.063,2.086,8.635,3.156,3.156,2.587,1.926,0.656,9.694,10.819,4.188,4.963,0.489,1.555,1.178,0.783,1.341,1.478,1.381,1.094,1.215,1.147,1.274,1.167,1.314,1.327,0.98,1.179,1.23,0.959,4.828,0.944,1.264,1.496,1.357,1.464,1.408,1.332,1.498,1.49,1.319,1.323,1.041,1.112,1.249,1.44,1.317,1.396,2.409,1.255,4.847,1.878,0.425,2.146,9.788,1.461,1.375,1.281,1.327,1.286,1.336,1.266,1.624,1.636,1.568,1.519,1.477,1.701,1.41,1.602,1.51,1.605,5.541,2.028,2.06,1.635,1.445,1.192,1.365,1.565,1.76,1.622,1.453,1.257,1.34,0.978,1.268,0.43,1.548,2.076,2.176,7.475,4.746,1.149,1.484,1.298,0.917,1.026,11.421,2.796,3.482,10.115,1.389,1.44,1.535,1.547,1.592,1.985,7.66,4.318,12.05,2.123,1.408,1.308,1.679,10.837,1.896,1.55,1.27,1.314,1.874,3.239,6.853,4.115,2.311,2.646,2.621,2.087,2.107,26.364,5.4,2.831,2.324,2.356,2.345,4.848,1.839,2.166,2.366,1.895,1.62,2.058,2.188,1.872,1.774,3.057,7.53,2.131,2.179,1.804,1.755,1.869,0.492,1.539,1.659,1.654,1.245,1.207,0.916,0.94,1.506,0.834,1.495,1.378,2.028,2.824,5.047,1.168,8.102,2.746,1.475,1.124,1.627,1.65,1.395,1.169,1.615,1.382,1.357,1.924,2.579,2.08,1.619,1.334,1.5,1.905,1.991,1.657,1.396,1.713,1.47,1.336,1.447,1.477,1.8,1.49,1.775,0.76,0.629,0.584,0.575,0.669,0.257,0.441,0.664,0.902,0.691,0.785,0.813,0.746,0.717,0.981,0.839,1.102,0.799,1.135,0.85,1.158,0.713,2.078,1.52,0.949,1.229,0.957,1.145,1.337,1.32,1.381,2.494,2.63,2.654,4.153,6.095,7.627,9.573,3.508,3.104,2.895,2.69,2.434,2.309,1.478,1.266,2.036,14.113,4.355,3.603,3.294,3.555,3.445,2.383,2.402,1.703,1.931,3.072,0.766,2.305,3.69,2.268,1.923,8.801,6.983,4.548,3.699,0.095,3.618,3.663,5.819,2.656,2.326,1.908,1.885,1.971,2.893,1.977,0.96,0.922,0.791,0.7,0.748,1.039,0.205,1.259,1.101,2.293,0.582,1.247,4.289,0.404,7.593,4.396,0.824,1.129,1.402,1.246,1.562,1.028,0.742,0.844,0.542,0.366,1.738,0.944,1.017,0.878,1.104,2.033,1.31,0.717,1.052,0.897,1.814,0.23,1.739,2.363,1.584,0.819,1.202,1.059,1.024,1.003,0.953,1.406,0.617,0.747,0.729,1.095,0.89,0.742,0.903,0.226,0.531,0.746,0.917,1.166,2.84,4.687,16.489,4.15,1.941,1.563,2.17,2.085,2.648,2.782,0.002,1.031,2.081,16.91,2.012,2.079,1.378,1.618,0.576,0.8,1.293,0.959,1.217,1.508,1.203,1.209,1.498,1.584,1.19,1.321,1.452,1.413,1.495,1.211,1.747,1.086,2.914,1.898,0.963,0.666,1.259,1.28,1.395,0.764,1.586,1.478,1.365,1.592,1.651,1.584,1.668,1.538,1.877,1.365,1.849,1.917,3.097,2.186,1.717,1.751,1.747,1.677,1.54,1.168,1.917,1.807,4.965,6.286,4.2,0.182,2.574,1.068,1.189,1.466,0.387,0.332,1.724,1.335,1.171,1.396,1.258,1.466,1.228,0.986,0.396,1.031,1.151,1.18,1.345,1.309,1.04,0.92,1.534,1.654,0.802,0.59,1.636,2.415,4.347,2.399,2.354,1.346,1.313,1.922,1.922,4.426,2.418,2.595,8.777,1.25,0.718,1.817,2.027,2.801,6.465,3.635,2.092,0.421,2.492,11.079,0.898,2.223,0.801,0.18,1.343,4.387,1.72,1.071,1.496,1.779,1.641,2.207,1.515,8.914,22.561,8.678,1.726,1.373,1.495,1.454,1.375,1.306,1.322,1.348,1.451,1.35,1.394,2.282,2.863,2.26,2.467,1.895,1.687,1.803,2.049,1.362,1.168,1.694,1.764,1.675,3.113,1.425,1.583,2.111,2.062,1.332,1.845,2.081,2.292,1.631,2.34,1.87,2.061,1.356,1.539,1.797,1.632,1.363,1.475,1.589,1.768,1.602,31.149,5.374,1.768,1.211,1.349,1.382,1.05,1.416,1.007,1.322,1.261,1.263,1.347,1.337,1.268,1.337,1.344,1.157,1.554,1.556,1.186,2.105,3.451,0.994,2.992,1.741,1.629,1.952,1.981,1.642,1.568,1.396,1.045,1.303,1.768,1.682,1.402,1.526,4.124,4.769,1.699,1.147,0.971,1.94,1.852,1.757,1.734,1.013,0.354,1.731,1.369,1.085,0.273,4.527,2.445,3.538,3.368,4.368,8.735,4.527,4.065,3.078,4.784,5.215,3.56,3.727,5.66,5.743,5.583,1.344,1.323,1.002,1.012,1.147,1.282,4.644,1.807,1.679,1.744,0.987,0.873,1.13,0.793,0.706,1.647,1.043,1.265,0.657,0.497,0.816,0.762,0.787,0.869,0.77,0.836,0.839,1.086,1.149,1.003,0.887,1.044,0.932,1.235,1.237,1.081,1.101,1.145,1.302,1.208,1.646,1.366,4.2,8.298,3.983,2.348,1.836,1.551,1.572,1.652,1.485,1.242,1.684,1.128,0.846,1.035,0.982,1.686,1.451,2.198,1.683,3.365,2.705,1.732,1.209,1.218,1.178,1.522,0.859,1.145,0.658,1.391,1.844,3.691,1.777,2.859,3.23,3.227,6.649,4.991,2.207,1.662,1.511,2.33,2.037,4.151,3.753,2.354,1.715,1.806,1.217,1.979,2.858,4.446,3.129,2.606,4.396,0.777,2.595,3.952,3.305,3.501,6.186,1.809,1.626,1.3,1.191,0.846,0.896,0.753,0.631,0.236,1.064,0.699,0.688,0.908,1.062,0.7,0.898,0.889,0.9,0.908,0.706,0.872,0.711,0.602,0.514,0.778,0.803,0.664,0.625,0.918,1.03,0.343,0.57,0.703,0.862,1.466,1.679,1.684,2.846,2.118,2.241,2.572,0.039,1.742,0.97,1.257,0.899,1.902,1.346,1.763,1.165,2.405,2.207,1.605,1.21,1.567,1.727,0.789,1.76,3.878,2.058,8.06,3.259,4.149,3.255,3.616,3.424,3.288,3.191,5.105,1.097,2.751,3.682,4.34,7.716,5.986,3.753,1.45,1.471,1.509,2.004,4.515,1.238,1.351,1.052,1.679,1.395,3.007,1.773,1.578,2.32,4.241,1.076,1.918,1.398,1.215,1.361,0.924,1.644,0.593,0.376,1.687,0.959,0.874,1.304,2.911,4.316,3.273,2.13,3.671,0.801,15.918,3.62,0.892,0.3,1.085,1.337,3.013,11.84,1.913,1.797,1.351,1.117,1.059,1.354,1.468,1.962,4.059,1.39,1.437,1.787,5.423,1.098,0.715,0.649,0.744,0.554,0.444,0.188,0.608,0.827,0.931,0.809,0.869,1.176,1.304,1.022,1.013,0.881,1.012,0.865,0.732,0.72,1.814,1.752,1.887,1.847,1.659,1.163,1.275,1.358,1.458,2.14,1.63,1.945,2.352,7.366,1.261,2.01,1.108,1.065,1.059,1.138,1.881,1.554,1.765,1.744,1.475,3.56,5.661,2.004,1.198,0.894,0.844,0.798,0.887,0.695,0.772,0.791,0.834,0.659,19.227,1.324,0.846,1.209,1.07,1.065,1.19,1.018,0.879,1.045,1.162,1.085,1.24,1.959,0.692,1.401,1.307,1.842,2.017,1.152,4.039,1.959,1.291,0.482,0.667,0.726,1.514,3.532,1.903,2.622,0.434,3.872,4.898,4.271,2.134,1.828,1.768,1.812,1.589,1.496,1.503,1.462,1.359,1.422,0.859,1.185,1.598,1.209,0.878,0.712,0.992,0.846,1.258,1.435,2.772,2.527,3.15,3.293,2.729,2.588,2.921,3.961,3.326,1.912,1.529,0.789,0.856,0.582,0.819,1.255,1.384,2.249,5.499,2.43,2.193,1.309,0.852,0.814,1.124,0.917,0.965,0.654,0.061,0.984,0.839,0.735,0.656,1.017,1.069,1.056,0.956,0.761,1.023,1.177,0.879,1.214,0.908,1.162,1.041,1.137,1.137,1.041,0.479,6.164,0.906,0.713,0.819,0.89,0.822,0.916,1.024,0.88,1.007,4.951,1.123,0.411,0.756,1.17,0.929,0.858,0.798,0.798,0.817,1.074,0.542,0.701,1.039,1.245,1.274,4.52,1.594,1.374,1.492,1.514,1.283,1.788,2.638,1.734,1.433,1.513,0.907,0.645,1.165,1.242,1.127,1.29,1.455,1.503,1.05,1.438,1.795,2.556,1.215,1.576,2.261,1.297,0.39,0.782,0.807,0.876,0.968,0.75,0.686,1.424,0.807,1.031,0.621,0.806,0.69,0.62,0.692,0.699,0.368,0.371,1.336,1.099,2.035,1.636,1.527,1.785,2.079,1.457,0.484,0.601,1.274,0.406,1.588,2.256,1.622,1.377,14.809,1.132,0.885,1.171,2.803,2.497,2.469,1.913,2.226,1.992,2.729,2.419,4.885,2.001,2.998,2.581,2.541,2.723,2.032,2.277,1.883,2.279,1.374,0.936,1.442,1.206,1.291,1.22,0.975,1.597,1.155,1.662,0.926,1.125,0.391,1.316,1.429,3.962,2.66,9.652,6.598,5.062,1.494,1.027,2.028,1.434,1.79,1.753,1.763,2.424,5.196,1.493,1.886,1.401,1.854,0.974,0.717,1.466,0.603,1.508,3.159,2.048,0.857,1.097,1.153,1.096,0.947,1.128,1.178,1.218,1.601,3.901,1.85,1.814,1.112,1.297,1.289,1.114,1.344,1.106,0.834,1.748,1.703,1.455,0.997,0.27,2.265,1.168,1.46,0.953,1.153,1.399,1.51,1.09,1.163,0.742,1.246,1.357,0.755,0.63,0.728,0.812,0.883,1.454,1.712,2.344,2.576,4.196,5.116,3.481,2.911,2.266,1.523,1.012,1.873,1.692,1.044,0.466,0.427,1.548,0.951,1.325,1.029,0.817,1.423,1.26,1.003,0.76,0.543,0.397,0.481,0.916,1.048,1.156,1.44,2.834,1.052,1.12,1.329,1.125,1.225,1.237,1.866,1.161,0.608,2.616,2.833,1.863,2.781,0.879,0.492,4.97,13.42,1.789,0.896,0.624,0.498,1.132,0.27,0.629,0.359,0.27,4.467,3.657,2.214,2.264,1.104,2.884,1.711,2.288,1.6,2.462,2.654,1.247,1.003,1.262,0.441,0.829,0.82,0.053,0.62,0.702,0.564,0.802,0.887,1.023,1.051,1.942,1.175,1.243,0.66,1.004,1.021,0.716,0.77,0.97,0.987,0.901,1.072,0.831,0.772,0.973,1.362,0.764,0.906,1.398,8.578,8.957,1.334,1.193,1.343,1.173,0.854,1.144,0.948,1.179,1.189,1.223,1.613,0.578,0.531,0.491,1.052,1.256,0.959,0.493,0.785,1.272,1.18,1.315,11.145,1.111,1.075,1.279,1.451,1.228,1.664,1.475,1.465,1.861,1.426,1.909,2.68,1.367,1.082,0.819,1.636,1.64,0.824,0.782,1.346,1.122,1.2,0.963,2.016,1.76,1.805,1.634,1.874,1.693,2.591,1.372,1.487,0.969,0.991,1.348,1.304,0.978,1.236,1.65,3.099,1.02,1.432,1.761,1.394,1.634,1.989,1.769,2.122,1.986,2.052,2.732,2.214,2.126,2.277,3.923,2.213,2.654,5.044,5.426,2.745,2.536,4.51,3.042,1.303,1.253,1.04,0.93,1.439,1.031,0.92,0.72,0.801,1.201,2.01,0.914,1.3,1.215,2.062,1.381,1.24,1.126,1.391,0.676,0.705,2.431,2.014,1.661,1.523,1.479,1.52,1.348,1.121,1.185,1.203,1.247,0.8,1.298,0.881,1.107,2.534,4.781,1.505,1.213,1.173,0.372,1.251,1.423,1.321,3.791,1.934,1.646,1.833,2.932,2.172,2.199,2.217,5.009,5.766,2.146,2.153,2.503,1.177,0.757,0.562,1.856,1.322,0.798,0.352,1.452,1.81,1.395,1.485,1.345,1.036,0.647,1.035,1.177,1.638,1.573,1.225,1.252,1.342,2.64,1.257,1.515,1.415,1.262,1.744,1.59,1.73,1.633,1.567,1.376,4.785,1.726,1.805,0.941,1.243,1.221,1.21,1.106,0.729,4.019,4.126,0.961,6.29,3.625,3.073,2.703,2.742,2.734,2.032,1.353,1.354,1.591,1.787,0.707,1.337,1.44,1.422,1.515,2.035,1.316,2.362,1.214,1.03,1.234,0.72,0.794,1.109,1.123,1.086,1.025,0.965,1.009,1.018,0.227,1.21,1.871,2.163,3.347,3.006,0.492,1.171,1.264,1.423,1.96,1.132,1.141,1.386,1.369,1.228,0.379,0.949,1.064,1.21,1.321,1.563,1.336,1.354,2.391,1.847,1.8,1.523,0.939,1.423,2.295,1.818,0.301,2.269,2.686,5.981,2.089,0.953,1.343,1.116,1.613,1.28,2.694,3.019,1.629,0.768,0.2,0.811,1.211,2.933,3.668,1.034,0.47,0.885,1.502,1.793,1.623,1.477,2.2,0.328,1.165,1.702,1.468,1.523,1.101,1.322,1.693,1.203,1.681,1.046,1.268,2.699,5.9,1.557,1.652,1.384,1.502,1.352,1.365,1.359,1.381,1.106,1.111,1.157,1.544,1.492,1.423,2.779,1.468,1.499,1.387,1.455,1.297,1.226,1.379,0.925,0.903,2.305,1.956,0.67,0.969,1.838,1.302,2.298,3.1,4.292,1.257,1.553,1.24,1.261,0.756,1.034,1.165,0.965,1.11,1.245,3.429,7.055,4.943,4.274,2.678,3.599,3.002,3.418,3.28,2.84,1.533,2.637,2.445,1.957,1.639,1.452,1.389,0.83,1.795,4.575,2.139,1.583,1.238,1.463,1.264,1.241,1.239,1.184,1.277,1.212,0.773,1.248,1.256,1.272,1.3,0.887,0.931,1.018,1.231,1.133,1.105,1.325,1.034,0.988,0.994,0.941,1.285,1.62,0.785,0.636,4.857,4.366,4.451,2.846,2.403,1.962,2.019,2.001,0.024,4.835,2.879,1.142,3.292,2.342,1.761,2.798,2.548,1.195,1.978,2.091,2.463,1.977,1.747,1.619,0.956,0.692,1.051,1.227,1.006,1.245,1.185,1.956,1.451,1.498,3.603,2.384,2.561,3.156,2.308,2.192,1.361,1.67,2.797,2.866,3.372,4.238,2.586,3.796,2.334,3.437,2.974,3.723,4.338,29.671,13.801,5.008,0.814,3.254,4.028,18.992,4.126,2.157,2.7,2.566,1.954,1.732,2.765,4.398,5.532,7.465,3.593,1.824,2.237,2.578,4.029,3.092,8.643,16.671,19.415,3.414,4.887,4.784,4.772,4.245,1.996,2.903,1.238,0.52,1.253,1.256,5.128,12.198,8.69,2.006,1.492,3.938,14.252,3.061,3.254,3.355,2.282,2.137,3.226,2.674,4.54,5.18,2.424,1.611,1.975,1.157,2.041,2.715,2.12,2.048,1.66,2.317,2.4,4.393,2.23,7.579,12.747,4.804,4.768,1.774,1.875,1.971,0.762,0.669,1.407,1.394,1.681,1.865,1.063,1.84,13.539,12.852,0.571,3.559,1.784,1.128,1.307,1.122,1.578,1.364,1.346,1.285,1.201,1.552,1.682,1.687,1.481,1.353,1.558,1.21,1.178,1.62,1.336,1.166,1.529,1.296,1.364,1.619,1.026,1.043,1.27,1.032,1.055,2.076,1.901,0.504,5.57,1.596,2.634,2.687,3.713,1.859,1.969,0.774,2.093,1.465,1.133,1.243,1.301,2.184,4.116,6.069,2.538,3.09,6.65,6.054,1.825,5.164,0.258,1.124,1.525,6.006,6.032,4.228,1.741,1.434,3.251,3.361,1.911,2.106,11.246,2.91,3.671,2.848,4.895,4.636,3.391,3.479,2.885,2.582,2.254,1.102,0.05,4.163,3.356,0.102,2.948,4.979,1.337,0.682,0.19,0.937,0.859,0.668,0.604,0.764,0.854,1.329,1.455,1.194,1.387,1.315,0.863,0.748,0.885,1.04,0.919,1.033,1.14,0.846,0.994,1.634,1.163,1.358,1.361,0.971,0.596,0.591,0.822,0.875,0.788,0.71,0.619,0.61,0.616,0.697,1.089,1.065,0.048,3.064,3.223,4.264,5.725,6.568,1.352,1.925,2.45,1.98,2.281,3.037,2.961,1.229,1.711,1.087,1.521,1.497,2.469,3.301,2.59,3.996,2.352,2.534,0.382,1.495,1.633,0.447,1.133,2.116,1.876,0.862,1.344,1.571,1.73,1.483,1.433,1.45,1.595,1.482,1.282,0.996,1.326,2.883,2.7,2.273,3.155,2.814,2.683,2.559,2.813,2.077,2.462,1.73,1.82,2.709,3.374,3.345,6.221,3.728,3.61,3.38,3.681,5.945,3.875,4.759,1.797,1.915,0.005,1.741,9.219,3.034,3.417,8.241,0.942,2.739,3.194,5.078,5.866,4.326,2.805,0.964,1.431,0.675,1.199,1.272,2.755,5.157,3.144,2.988,2.395,1.935,0.037,2.537,1.307,14.438,4.181,4.502,0.422,1.915,0.889,3.128,4.159,3.988,4.647,4.704,2.745,2.461,2.344,2.283,1.441,1.745,1.824,0.644,1.524,1.925,1.746,3.797,2.842,2.508,1.759,1.229,1.732,1.473,3.228,3.01,3.972,2.555,11.457,2.077,1.783,2.278,1.092,4.426,4.518,5.679,3.691,4.167,2.819,0.443,3.458,2.29,0.343,3.088,0.553,2.005,2.3,5.42,2.742,1.326,1.677,1.561,1.114,2.254,1.387,1.31,1.17,1.152,1.358,1.029,1.6,1.08,0.981,1.454,1.658,3.4,7.77,1.154,1.779,1.719,3.483,3.529,2.312,1.77,3.567,17.777,5.898,1.694,1.467,1.415,1.22,0.89,1.628,1.959,1.94,1.941,1.944,1.941,1.941,1.941,1.941,1.942,1.944,1.94,1.892,2.69,3.247,5.49,7.921,2.753,0.426,1.508,2.385,1.389,1.375,1.347,0.947,1.37,1.284,2.089,2.269,1.331,1.256,2.309,1.325,1.779,1.731,1.388,1.23,1.384,1.472,1.906,1.915,4.483,6.123,0.395,4.629,1.707,0.336,1.523,1.34,1.401,1.268,1.768,1.385,1.955,2.287,5.009,0.006,0.062,0.016,0.029,0.596,6.5,20.794,8.308,3.347,3.384,3.449,3.765,14.398,4.352,2.17,1.931,2.552,2.234,2.905,1.582,1.035,7.058,1.917,4.988,0.254,0.035,4.583,4.487,6.176,3.152,1.222,1.579,2.065,1.935,2.372,1.464,2.014,1.979,7.186,4.66,1.591,2.936,1.909,1.226,1.765,1.43,1.384,0.841,1.09,0.816,1.052,2.001,2.253,1.914,3.285,5.053,9.996,1.265,0.897,1.077,1.342,1.203,1.553,2.356,1.687,1.936,2.523,2.975,4.683,1.245,1.799,0.636,1.875,2.78,2.642,2.551,3.011,2.537,2.309,2.962,2.25,1.522,3.53,3.811,3.472,1.689,1.358,1.552,1.209,1.439,2.69,4.403,4.345,2.221,2.593,5.263,1.62,1.065,3.004,2.415,1.646,2.232,2.596,0.109,1.642,0.09,1.062,2.757,2.321,5.31,6.024,2,7.596,2.739,4.006,3.99,10.337,4.12,5.29,3.248,2.495,2.805,3.308,1.126,0.676,2.656,4.82,2.067,2.053,3.572,1.191,1.932,1.562,1.154,1.512,1.973,1.936,1.091,0.509,3.327,4.311,4.457,2.553,5.453,3.351,1.438,1.359,2.662,2.756,1.315,10.051,1.565,1.314,2.072,2.738,3.975,3.922,4.781,4.95,3.203,3.623,3.397,4.574,5.314,2.424,2.086,2.561,3.56,1.652,1.665,1.524,1.566,4.383,0.891,1.615,2.095,1.103,3.031,1.27,2.196,1.976,1.628,3.599,3.099,1.612,3.089,2.164,2.002,1.572,1.796,2.03,1.842,2.325,1.251,0.176,1.299,1.586,1.208,1.392,1.487,0.763,0.785,1.117,0.547,0.681,2.076,0.458,2.026,0.151,1.152,0.563,1.475,1.675,1.494,1.83,1.515,1.497,0.704,2.254,2.885,1.599,1.861,1.587,1.507,1.765,1.612,1.359,1.361,1.385,1.814,1.732,1.495,1.078,3.637,5.512,1.134,0.813,0.748,1.171,1.383,1.854,1.594,1.662,1.591,1.898,1.226,1.246,1.388,1.423,1.64,1.467,3.249,2.04,2.259,2.161,2.233,3.468,2.875,7.54,3.278,9.261,5.065,1.445,2.42,2.164,2.117,1.944,3.069,1.962,1.006,2.107,1.409,1.993,1.833,1.82,3.211,1.636,2.098,1.574,1.618,1.827,4.824,6.253,4.091,4.41,2.907,2.073,1.039,0.839,0.727,1.336,0.447,0.356,0.443,0.35,1.178,1.761,0.871,1.11,2.293,0.971,1.33,0.863,1.563,2.898,2.417,2.317,1.931,4.969,14.543,4.221,2.919,0.044,1.816,3.103,3.139,2.016,1.16,1.173,1.018,2.767,2.666,1.22,0.523,2.287,1.909,1.921,2.458,4.111,1.986,4.098,1.753,3.074,2.242,1.961,0.585,2.976,1.317,1.114,2.004,4.158,4.074,3.005,4.774,3.717,0.217,3.842,3.766,1.098,1.441,4.043,3.617,5.609,1.059,1.873,1.339,1.484,1.188,1.549,1.185,1.291,0.7,0.939,1.858,0.706,1.409,0.903,1.073,1.068,2.336,3.154,7.265,12.443,8.42,11.253,9.345,2.708,1.373,1.861,1.938,1.86,1.691,0.324,0.952,1.997,1.981,1.749,1.692,3.086,1.94,1.766,2.657,3.284,2.204,0.187,2.094,1.682,0.525,1.423,0.647,0.769,0.932,1.041,1.369,1.736,1.371,0.703,0.984,0.894,1.347,1.189,0.053,1.633,1.244,1.323,14.894,0.604,1.278,2.289,1.699,1.018,0.41,2.134,1.522,2.334,1.227,2.2,2.194,1.773,1.324,1.522,1.133,0.395,0.666,2.208,2.641,2.268,0.189,1.078,2.035,1.757,2.579,1.413,1.503,1.838,1.564,0.176,1.685,1.439,1.838,0.713,1.241,3.398,3.195,3.566,1.919,2.532,4.285,4.009,1.281,1.428,1.587,1.795,1.251,1.494,2.184,2.044,4.316,3.738,2.296,7.094,4.087,2.513,1.722,1.268,3.016,3.613,1.782,3.429,4.043,3.435,3.046,5.282,2.54,1.986,1.561,1.283,2.638,1.822,1.561,0.439,2.304,2.219,3.56,56.602,1.258,6,3.6,1.753,1.396,1.67,1.533,2.108,1.832,2.014,2.023,2.562,1.323,1.914,1.801,2.126,2.078,11.762,1.929,1.923,1.578,1.575,1.328,1.489,1.299,1.26,2.518,5.516,1.936,1.891,1.311,1.183,2.857,1.756,1.468,1.666,1.463,1.111,1.143,1.187,1.309,1.456,1.071,1.524,2.865,3.452,3.018,2.544,2.114,1.044,2.023,0.523,2.395,1.331,2.672,4.798,5.657,3.973,5.675,2.415,2.938,3.711,3.269,3.022,4.158,4.466,1.634,1.795,0.992,6.498,2.985,2.553,2.809,2.571,1.8,1.193,1.232,2.474,2.445,2.153,3.328,4.359,2.567,2.222,2.945,2.25,1.543,1.654,1.266,1.48,0.453,1.805,0.875,1.938,3.527,4.816,0.18,1.841,2.095,1.338,0.897,1.105,1.872,2.747,4.012,3.636,2.667,6.011,3.284,3.426,2.127,7.688,1.234,3.242,2.074,1.565,1.307,4.854,2.442,3.137,7.439,2.64,3.536,2.746,0.56,0.769,3.853,5.622,3.058,2.485,3.409,7.444,6.551,0.961,1.313,2.061,2.333,4.515,0.016,6.956,2.312,2.123,1.37,5.211,2.906,2.151,1.692,0.943,2.002,1.234,2.433,0.583,3.633,0.031,1.654,2.799,2.438,4.506,5.119,0.888,1.643,1.468,1.273,1.197,1.505,1.857,1.652,1.673,1.439,2.031,1.727,3.346,1.608,1.753,1.603,1.459,1.399,0.949,1.031,1.891,1.819,1.039,0.89,1.645,1.553,1.734,1.59,3.473,1.701,1.591,1.756,1.745,1.699,1.603,1.548,1.272,1.217,0.976,1.104,1.053,1.205,1.119,0.854,0.994,1.762,1.263,1.812,0.713,0.647,0.977,2.377,3.324,3.215,1.095,2.124,1.014,0.586,7.3,2.296,1.265,0.475,0.929,0.837,1.603,1.569,1.713,0.615,1.589,1.669,1.346,2.044,1.973,0.83,0.923,1.284,0.382,0.997,1.556,1.283,1.163,1.482,0.865,1.536,1.195,0.961,1.543,1.603,1.49,1.733,1.959,1.377,1.426,1.336,1.824,1.108,2.025,1.805,1.439,1.255,1.434,1.114,1.664,6.711,1.167,1.696,1.02,0.82,2.517,1.179,1.5,1.496,1.201,1.64,0.986,1.324,10.422,3.985,1.836,3.07,1.258,5.195,1.03,3.235,1.627,3.624,7.203,2.378,1.498,2.374,0.892,2.851,2.777,1.296,1.113,6.97,4.369,8.366,4.548,3.404,0.479,2.918,2.326,2.498,2.532,7.568,0.242,5.459,3.947,2.127,3.86,2.997,3.321,0.172,3.183,2.861,2.658,4.683,2.246,2.002,3.259,2.217,2.534,2.624,2.32,1.689,3.41,2.84,2.355,1.662,1.332,2.089,1.383,1.03,1.034,1.662,1.319,1.566,1.358,1.788,2.533,2.712,6.846,7.953,2.252,2.146,1.746,1.829,0.817,0.928,1.557,2.992,3.024,3.346,3.264,3.536,2.948,2.18,0.674,1.218,1.033,2.419,23.642,9.522,1.133,3.046,1.56,1.509,1.718,2.614,3.105,0.831,0.659,1.215,2.466,3.981,3.679,2.946,2.475,2.454,1.689,1.5,6.669,8.351,1.967,3.191,3.038,2.733,5.649,5.349,2.35,1.858,3.376,3.058,2.65,4.964,4.398,4.347,2.36,2.63,2.057,3.045,2.066,1.856,1.078,1.182,1.466,1.077,2.325,1.207,1.295,2.278,2.09,4.424,4.456,3.93,1.885,0.482,3.561,3.74,5.877,1.476,0.452,4.908,7.515,3.878,3.822,2.266,1.511,2.768,3.182,1.815,0.662,1.387,1.752,1.477,1.9,1.992,4.414,1.894,0.25,4.078,10.229,16.817,3.065,2.658,2.67,2.387,2.076,2.054,1.326,2.723,1.839,1.766,1.434,5.396,3.705,1.505,1.067,1.407,1.431,2.105,1.81,1.1,1.03,1.473,2.841,2.496,1.021,1.271,8.67,2.823,1.282,2.113,0.861,1.378,3.965,3.02,1.424,1.614,1.755,2.052,1.712,1.446,1.476,1.633,1.632,0.206,1.506,1.541,1.565,2.042,2.186,2.722,2.287,2.14,2.798,2.21,1.949,3.038,3.279,5.797,1.148,1.607,2.737,1.366,0.696,0.364,1.093,0.82,2.665,3.332,3.19,1.714,1.486,5.878,1.579,8.013,1.367,1.187,1.479,1.236,1.495,1.186,1.067,1.308,1.918,0.996,0.639,2.477,1.538,1.503,2.092,2.09,1.441,1.385,1.805,2.574,1.359,1.475,2.368,1.94,1.123,1.385,2.335,2.179,1.875,2.048,2.147,3.78,2.812,2.667,4.231,9.875,21.799,3.018,2.788,4.851,1.13,1.034,1.546,1.145,1.224,1.426,1.797,0.888,2.575,2.184,2.356,6.774,2.041,3.138,2.863,0.795,1.174,1.219,1.03,1.216,1.417,1.352,1.126,0.983,1.737,1.855,1.58,1.066,1.06,1.239,0.978,0.979,1.199,2.259,1.852,3.06,0.594,0.7,2.288,2.271,2.452,3.617,0.199,2.131,2.2,0.654,2.708,2.743,3.559,3.315,4.451,2.325,2.129,1.935,2.142,1.494,3.592,1.368,1.9,2.534,1.653,4.59,1.791,2.13,1.823,1.341,1.637,1.919,2.676,1.65,1.547,1.295,3.046,0.934,1.103,2.767,0.264,0.009,0.744,1.012,1.713,0.731,0.806,0.873,0.706,0.994,3.475,4.798,7.515,0.695,0.533,1.033,1.683,2.016,1.017,0.834,0.917,0.876,1.029,1.205,0.023,1.645,1.298,0.022,6.966,4.349,3.741,3.228,1.721,2.582,1.769,1.182,1.653,1.698,1.644,1.457,1.007,0.815,0.862,0.843,0.434,1.801,0.754,2.118,2.182,1.718,1.711,1.588,3.409,4.266,3.602,2.031,1.357,1.161,1.708,1.049,0.848,1.876,1.001,0.988,1.792,0.406,1.052,0.942,0.815,0.889,0.961,1.196,0.897,1.007,0.989,1.104,1.054,1.075,0.999,1.052,0.661,1.904,1.131,0.7,0.006,0.272,1.58,2.618,1.128,2.681,2.672,2.643,0.432,2.77,2.36,2.586,1.963,0.62,3.807,1.729,2.164,3.305,2.388,0.384,0.508,0.508,0.721,2.225,0.619,2.939,2.441,2.648,0.531,5.031,2.336,1.767,1.763,1.196,0.531,8.797,1.836,2.297,0.807,0.927,0.786,1.966,1.123,0.872,0.964,2.159,1.216,1.043,1.122,1.292,1.606,3.005,3.417,2.671,0.759,0.759,0.761,0.759,0.76,0.931,1.483,1.649,1.148,2.039,1.841,2.089,1.986,1.321,1.138,1.757,2.51,1.238,1.242,1.457,1.643,1.621,1.362,1.092,1.046,2.815,2.177,0.102,1.117,1.816,1.435,1.538,3.565,3.158,3.329,3.126,2.705,2.995,2.425,2.911,3.567,4.875,2.787,2.948,5.021,3.4,1.431,0.914,0.775,1.002,1.107,1.14,0.961,1.008,0.943,1.034,0.846,0.919,1.119,0.798,0.678,0.914,1.049,0.886,0.782,0.523,0.691,1.83,0.815,2.629,1.552,1.096,0.242,0.898,1.063,0.994,1.239,0.559,0.604,0.58,0.702,0.701,1.013,0.856,3.016,2.896,8.971,6.959,4.08,1.027,0.871,0.931,1.044,0.932,1.273,0.889,0.936,0.84,0.547,0.231,0.827,0.725,0.645,0.815,0.521,0.445,2.737,2.458,0.617,0.25,0.289,1.007,1.592,1.564,1.326,1.299,2.428,1.983,1.668,1.524,1.27,1.255,1.537,1.162,1.698,1.359,0.032,3.875,5.926,2.962,3.027,7.203,0.234,0.727,0.733,0.377,6.625,6.953,0.508,1.016,3.195,4.637,0.621,0.962,1.309,1.182,1.507,0.871,1.084,1.213,1.605,1.189,3.938,2.603,0.623,5.626,0.078,2.993,3.014,5.999,1.76,0.006,0.668,1.066,0.542,1.688,1.18,0.564,1.406,1.196,1.248,1.596,1.743,2.673,2.495,0.091,1.597,3.905,2.92,0.608,0.202,1.726,4.178,1.864,4.375,6.547,8.625,2.836,1.872,1.478,1.368,16.234,2.202,2.36,3.485,0.831,0.894,0.998,1.286,0.768,0.979,1.435,5.504,1.699,2.52,4.508,1.705,1.659,1.573,1.375,1.321,3.705,0.832,1.084,0.912,1.191,0.926,1.013,2.194,1.968,1.77,1.47,2.121,2.662,0.623,3.84,2.055,1.497,1.634,1.104,2.026,2.367,1.861,2.143,3.469,4.248,2.783,3.962,0.758,3.021,0.807,0.806,1.629,1.925,2.391,2.451,2.389,3.184,0.515,1.968,2.001,1.579,1.44,1.149,0.962,0.968,1.675,0.402,1.066,1.604,1.778,5.962,1.267,0.657,0.692,0.655,0.926,0.616,0.832,0.705,0.184,1.018,0.055,1.228,1.646,1.782,2.85,3.078,1.931,1.681,1.904,6.91,2.431,2.337,5.541,1.841,2.456,3.218,2.404,5.383,1.656,1.467,6.578,3.358,1.484,1.902,5.273,1.289,2.091,5.307,1.893,3.411,2.422,3.523,2.127,1.48,1.536,0.718,1.537,4.329,3.486,2.567,6.463,2.446,3.2,2.167,2.145,3.918,0.992,1.829,1.89,5.187,1.069,0.977,0.871,0.902,1.207,0.727,0.846,3.495,3.117,2.248,1.155,0.653,0.724,0.818,0.944,0.835,0.923,1.005,3.391,2.726,2.867,2.823,3.682,0.873,1.014,2.044,0.883,0.871,0.871,1.296,0.94,0.777,0.64,0.838,0.681,0.782,5.26,8.389,8.961,1.422,1.673,1.327,1.023,7.883,0.961,2.436,1.406,1.879,0.981,0.281,0.283,2.618,0.576,1.432,1.529,0.632,2.634,1.452,0.643,0.676,0.689,0.587,1.958,0.564,0.643,0.732,2.703,3.799,0.474,1.815,1.011,1.378,2.999,1.541,1.33,0.811,2.931,1.262,0.447,4.664,0.453,5.078,0.984,1.93,0.64,0.665,0.66,0.616,0.45,0.599,2.768,2.279,4.964,1.639,1.688,4.4,4.766,0.977,1.883,1.241,1.165,0.938,0.266,0.375,4.953,1.688,0.859,1.708,3.952,0.922,0.297,1.211,2.617,2.878,2.24,2.805,4.096,0.749,0.545,0.424,0.437,0.815,0.551,0.734,0.721,0.677,1.185,4.872,1.758,0.522,0.616,0.658,0.313,0.359,0.817,0.654,0.659,0.615,0.679,0.724,2.965,3.005,1.489,1.855,0.768,0.691,0.702,0.671,2.965,3.875,2.156,3.056,1.055,0.79,0.775,1.676,5.035,2.504,0.729,0.73,0.718,0.659,0.616,0.665,0.667,0.695,0.848,0.689,0.679,0.638,0.596,0.626,0.614,0.461,0.152,0.527,0.528,2.094,1.745,0.313,0.614,0.65,0.9,0.848,0.62,0.568,0.604,0.63,0.625,0.618,0.794,0.809,1.866,2.686,2.788,4.426,0.725,0.676,0.57,0.651,0.649,0.614,0.472,0.678,0.726,1.316,2.281,1.537,1.257,0.265,0.957,0.771,1.57,1.781,2.42,0.725,0.674,0.618,0.534,0.948,2.12,3.318,1.879,1.009,0.92,1.177,1.436,1.304,0.2,16.695,4.922,1.553,1.13,1.169,2.791,1.277,1.731,1.27,1.345,1.114,0.782,0.99,1.64,0.487,0.432,0.599,0.58,0.726,4.572,1.521,0.711,0.834,0.658,0.921,1.421,0.674,0.955,1.295,1.102,1.573,1.472,1.657,0.558,0.853,1.221,1.535,1.675,0.777,0.906,0.987,1.209,0.845,1.606,0.947,1.098,1.103,1.436,1.062,1.903,1.045,1.207,0.714,1.536,1.148,2.949,1.451,0.756,1.124,1.018,0.815,1.068,1.354,1.004,1.121,1.711,1.101,1.155,1.169,1.403,1.315,1.139,1.39,0.898,1.673,5.9,4.192,4.336,1.854,2.419,2.055,1.465,1.252,2.508,0.962,0.893,1.144,1.028,1.623,1.858,1.749,4.73,4.051,4.898,1.909,1.559,2.39,4.256,2.131,1.686,1.625,1.006,0.934,1.688,1.925,1.902,1.908,1.743,1.359,1.431,1.799,1.23,1.832,1.282,1.306,1.535,2.101,1.414,1.392,1.401,1.428,1.307,1.401,1.432,1.597,1.231,1.737,1.841,1.384,0.959,0.709,0.706,1.831,1.571,2.453,1.239,1.048,1.412,1.969,2.2,1.815,1.459,1.554,2.956,2.358,2.559,4.569,4.764,1.586,0.961,1.014,1.22,1.326,1.26,0.911,0.918,0.832,1.094,1.343,3.341,2.911,2.569,1.95,1.634,1.554,1.175,1.059,1.131,0.911,1.014,1.171,1.152,1.243,1.743,1.169,1.423,1.244,0.938,1.248,1.469,1.687,1.127,0.911,0.892,1.663,2.489,2.312,17.338,1.669,1.063,1.203,0.713,1.626,0.918,1.013,0.6,1.593,1.212,1.466,1.369,0.866,1.491,1.932,0.125,0.543,4.285,2.831,3.989,0.039,1.398,1.668,24.658,2.829,1.626,1.463,1.583,1.569,2.498,1.26,1.369,0.993,1.217,1.051,1.408,0.81,1.154,1.485,1.687,1.371,0.039,0.367,3.883,3.043,1.665,1.315,1.634,1.532,2.483,5.004,1.059,0.693,0.554,0.545,0.785,0.913,0.764,0.528,1.042,0.922,0.715,0.618,0.931,0.862,0.872,0.747,0.933,1.001,2.179,1.373,0.625,0.521,0.831,0.776,0.819,0.894,1.121,1.072,0.719,0.693,0.723,0.712,0.793,0.81,1.298,0.983,0.757,0.673,0.72,0.791,0.632,0.9,0.319,0.416,0.756,0.98,1.212,29.619,1.616,1.55,0.855,0.62,0.537,0.567,0.646,0.731,0.464,2.464,2.973,2.578,2.852,1.808,1.422,1.151,0.897,1.079,1.051,1.008,0.835,1.118,0.679,0.656,0.905,0.679,1.102,1.113,3.31,1.907,0.9,0.654,0.806,0.906,1.051,0.977,1.031,1.195,1.33,1.55,1.995,1.694,1.361,1.462,1.143,0.748,0.674,0.539,1.824,1.9,2.239,1.982,4.099,7.455,1.934,1.761,1.822,1.392,1.615,1.396,1.384,1.236,1.113,0.907,0.989,0.959,0.967,0.979,1.201,1.106,1.557,1.722,4.733,1.633,3.021,0.901,1.836,1.018,1.131,0.998,1.141,1.08,1.148,0.843,2.444,2.528,1.786,1.755,1.045,1.157,0.978,1.135,1.101,1.309,1.261,1.432,1.92,2.804,1.507,0.811,0.949,0.913,1.132,1.069,1.184,2.414,2.681,3.49,4.242,1.483,0.996,0.813,0.678,0.761,0.735,0.915,0.944,0.896,0.927,0.99,0.977,1.12,1.808,2.849,1.196,0.904,1.037,1.063,1.014,0.871,0.81,0.597,0.45,2.003,2.13,3.212,1.968,0.297,10.694,2.164,0.349,1.677,0.759,1.146,2.103,3.549,1.183,2.004,1.831,0.951,2.202,3.676,2.667,2.918,1.397,1.484,1.432,2.557,2.935,2.872,1.364,1.687,1.781,1.462,2.022,3.571,3.342,2.493,1.203,1.141,4.465,19.339,7.509,3.612,2.353,1.198,3.316,2.137,11.758,2.326,4.515,3.456,0.971,4.328,7.968,9.196,4.72,3.593,3.807,15.716,7.015,1.487,6.211,2.492,8.53,5.554,4.635,6.34,5.816,27.352,1.602,3.875,1.254,1.264,2.227,2.017,1.041,1.057,4.023,1.511,1.764,4.503,12.174,2.538,1.772,1.505,1.033,1.229,1.782,1.434,1.156,1.06,0.902,1.842,1.603,3.824,0.601,0.692,1.009,0.911,0.685,0.638,1.274,1.467,0.781,0.036,1.362,1.59,1.705,2.352,3.432,2.67,3.581,1.322,0.932,0.698,0.809,1.048,0.867,0.004,1.079,1.425,10.166,1.864,2.109,1.974,1.588,1.836,2.116,3.634,2.892,2.708,2.749,2.952,7.889,1.125,1.23,1.207,1.072,1.616,1.45,1.4,1.464,1.555,1.655,13.727,2.375,3.135,1.099,1.109,0.993,1.01,1.856,1.375,1.74,1.763,1.761,1.842,1.682,1.156,2.82,0.602,0.571,0.771,0.943,1.471,6.772,1.814,1.297,1.506,2.109,1.294,2.73,5.392,3.799,1.069,1.319,0.602,1.845,2.147,2.525,2.081,2.176,0.424,1.836,9.2,2.615,1.981,1.195,2.14,1.323,3.464,1.683,0.779,1.417,2.467,2.69,2.674,1.267,6.872,5.641,3.908,1.424,1.206,0.625,1.43,1.314,1.525,2.865,7.314,0.977,6.335,1.9,1.273,2.719,0.945,2.352,0.172,0.998,3.756,3.775,1.604,1.639,3.721,2.436,2.445,8.695,5.313,4.628,0.759,0.954,1.087,1.221,1.211,1.178,0.871,1.073,17.779,3.145,0.875,1.35,2.138,1.645,2.48,2.025,7.767,5.126,2.814,3.997,3.037,2.07,2.939,1.464,11.374,29.773,7.584,7.278,5.467,15.065,2.81,0.398,9.454,5.363,6.823,11.157,7.21,3.874,3.765,4.713,0.28,4.562,6.35,3.904,3.182,3.54,2.671,2.949,2.617,3.07,21.123,3.523,3.322,4.917,3.085,3.755,3.188,4.883,4.423,3.418,3.51,4.572,4.109,4.377,13.44,1.567,2.953,2.85,1.414,0.17,2.211,1.616,0.401,1.393,0.49,0.031,9.026,1.27,5.696,1.661,3.416,3.391,2.095,2.105,1.855,1.3,1.383,1.643,1.149,1.655,1.146,1.173,0.907,2.422,1.29,1.151,1.401,1.44,1.428,1.488,1.455,3.379,33.783,9.43,13.242,10.578,0.32,1.945,0.149,0.14,0.906,4.92,2.173,0.602,1.422,7.174,25.647,11.863,10.344,21.308,19.207,9.969,10.173,1.159,1.055,5.748,4.524,9.768,11.864,9.456,1.52,3.865,17.356,1.081,1.083,4.152,9.067,8.6,4.346,6.592,8.131,10.533,20.788,0.656,1.062,9.286,11.011,9.082,4.633,1.519,8.255,8.376,2.74,2.413,2.858,2.099,2.228,0.068,3.377,2.893,2.562,2.494,1.865,3.464,1.673,5.285,4.748,5.55,1.032,0.562,19.127,5.03,3.82,4.26,2.021,3.281,0.25,5.797,1.514,2.635,3.695,3.125,1.63,0.335,3.543,0.247,5.297,0.563,1.251,1.342,2.049,1.68,1.607,1.313,1.101,1.277,0.683,0.694,1.308,1.306,1.15,1.345,0.99,1.604,1.754,1.718,2.865,2.094,2.04,1.932,2.168,2.521,2.053,2.345,3.437,3.386,10.338,16.83,21.718,5.484,10.393,15.079,6.195,3.699,1.864,2.006,2.384,2.213,2.473,1.037,2.765,16.455,13.482,3.482,18.83,14.034,5.339,1.057,1.374,0.769,2.962,1.664,2.748,2.473,1.798,1.791,1.563,3.604,11.242,6.023,3.42,2.48,2.58,5.021,4.623,4.369,11.382,6.878,6.278,15.503,3.967,2.369,3.29,2.457,3.065,2.903,3.52,2.013,1.665,2.143,2.543,4.703,7.65,7.138,7.321,14.062,41.562,3.39,1.142,1.659,1.169,0.863,1.42,1.876,1.316,1.534,1.625,1.903,2.009,1.79,3.58,9.195,1.396,1.246,1.516,1.346,1.272,1.002,1.623,1.51,1.944,5.409,7.545,4.983,2.415,0.257,12.981,13.958,5.917,4.851,3.467,6.56,3.19,3.036,1.469,1.101,5.023,4.591,3.995,3.799,4.021,18.516,10.301,13.145,10.144,14.743,15.228,17.481,2.008,5.379,1.616,7.526,9.054,43.709,13.225,7.662,20.688,12.845,14.338,20.851,3.938,2.381,2.419,13.316,3.828,6.087,4.475,13.619,0.002,15.606,25.898,8.032,11.1,6.696,0.359,4.732,4.893,6.343,3.162,3.083,3.702,4.423,6.056,3.926,14.189,11.491,14.375,7.296,3.408,3.498,4.794,4.918,5.063,5.015,6.656,4.063,4.15,3.553,3.946,8.624,35.749,1.112,0.117,36.451,9.508,7.614,9.551,8.198,14.57,10.951,1.828,5.837,5.948,2.611,2.65,2.723,1.339,2.697,2.159,0.392,13.525,4.794,7.734,15.522,4.682,4.665,9.299,6.494,5.619,2.049,0.578,5.465,4.668,6.645,4.308,3.65,3.277,11.901,11.974,19.088,2.828,2.438,2.945,1.438,6.625,2.055,1.914,11.043,4.368,8.553,16.792,10.413,6.478,8.375,4.078,2.218,18.897,0.901,1.131,1.822,0.898,2.444,3.39,2.404,2.403,2.549,1.529,0.477,16.181,5.48,3.804,1.636,2.913,2.932,3.213,3.063,6.559,2.299,0.046,1.179,6.283,2.516,2.356,1.83,1.42,2.727,5.73,7.076,7.172,3.814,2.996,7.066,10.195,14.115,6.126,6.147,5.912,10.142,10.395,3.823,11.55,10.427,10.415,16.299,6.004,5.886,3.676,3.656,4.892,4.56,16.753,9.412,9.654,10.313,9.545,5.519,5.342,5.682,4.806,22.704,3.411,2.586,4.312,4.896,14.806,14.224,21.479,3.527,20.843,18.251,5.749,6.454,3.112,3.588,15.432,10.519,5.262,5.563,2.539,3.347,4.852,3.957,1.282,3.898,0.953,8.091,3.389,5.876,8.861,9.038,6.758,17.126,12.896,6.001,4.271,2.539,1.43,5.056,5.749,4.221,35.162,17.28,2.931,4.025,8.532,3.076,5.533,4.342,0.305,1.375,5.145,5.261,0.93,3.04,5.109,5.965,2.771,3.842,2.865,4.8,4.365,2.806,4.342,4.693,7.043,8.648,1.607,2.188,0.439,1.735,1.047,1.797,2.931,2.718,2.243,5.145,0.075,5.1,4.946,7.394,11.273,12.297,7.516,7.672,5.452,5.697,13.743,17.015,3.834,3.043,3.314,2.262,1.539,12.609,1.34,5.957,0.884,0.821,0.867,0.786,7.055,15.44,2.938,2.439,3.095,0.25,1.848,3.754,6.836,2.781,0.772,3.235,2.328,4.453,2.478,1.076,2.087,1.738,2.143,5.825,1.234,2.34,1.543,0.344,0.753,0.763,0.764,0.755,0.759,0.761,0.482,0.447,0.638,0.633,0.634,0.323,0.63,0.623,0.642,0.641,0.342,0.387,0.624,0.809,0.522,0.146,0.202,0.121,0.125,0.19,1.728,0.433,5.956,7.516,2.869,1.649,2.075,3.446,1.912,1.822,1.546,2.858,1.419,3.28,2.489,17.532,3.417,5.398,4.586,29.474,6.219,0.266,0.617,1.578,0.662,0.506,1.851,1.522,2.369,5.211,0.633,1.313,4.034,5.488,2.234,2.683,13.996,5.93,4.894,3.063,1.075,0.906,0.161,1.747,0.917,0.664,1.019,1.019,6.879,10.117,0.013,14.041,2.398,1.355,0.04,0.117,2.229,1.43,4.856,2.569,3.558,2.617,4.426,4.868,1.831,1.66,8.109,10.96,1.589,2.078,0.537,1.189,1.157,21.602,2.945,3.93,1.655,4.035,1.736,0.719,12.2,0.761,7.922,3.023,1.156,5.797,3.14,0.829,4.117,3.096,2.101,2.348,2.484,11.693,25.711,0.827,6.136,3.054,16.358,7.203,16.569,3.007,1.313,2.405,3.394,0.152,0.326,1.385,3.086,28.941,0.968,6.988,17.429,1.749,4.421,22.673,0.436,3.023,10.601,5.88,0.854,2.161,1.313,0.542,0.516,2.46,0.693,0.687,0.903,0.734,0.79,1.114,0.609,0.6,0.644,0.694,0.723,0.698,0.687,0.688,0.463,0.533,0.371,0.434,0.485,0.694,0.07,0.381,0.424,0.657,0.465,0.507,0.494,0.905,0.695,0.664,0.916,0.868,0.799,27.489,1.71,3.085,16.805,2.109,8.896,4.327,3.305,8.406,6.218,13.46,1.711,5.173,3.468,7.656,0.222,7.091,0.569,0.788,2.389,5.208,0.339,1.733,0.456,0.707,1.651,8.828,0.723,3.598,3.621,2.667,5.609,6.021,1.157,10.245,11.835,13.667,1.53,1.475,0.349,2.426,4.906,0.346,1.085,0.978,1.245,2.809,0.584,0.338,1.411,1.353,5.248,6.483,4.929,0.938,21.621,6.445,3.007,2.425,2.91,0.301,0.447,1.017,3.521,6.757,21.148,0.905,2.82,17.194,0.722,2.671,11.093,26.554,4.054,9.222,5.72,1.262,0.472,0.309,0.62,3.317,10.804,4.027,5.046,1.202,17.539,1.422,1.577,2.21]},"incidents":[{"id":"17965439984674256","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-23T07:10:00Z","end_time":"2023-10-28T07:10:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 163 y 155,156 N-122","long_description":"Obras de construcción en la Hacia el este A-62 entre 163 y 155,156 N-122.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":6651,"south":41.458908,"west":-5.078611,"north":41.497512,"east":-5.021798,"congestion":{"value":101},"geometry_index_start":5295,"geometry_index_end":5344,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"2172616635993489","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:05:00Z","end_time":"2023-10-25T12:05:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 14 N-620A y BU-30 5","long_description":"Obras de construcción en la Hacia el este A-62 entre 14 N-620A y BU-30 5.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1103,"south":42.306003,"west":-3.797653,"north":42.307323,"east":-3.784382,"congestion":{"value":101},"geometry_index_start":7526,"geometry_index_end":7540,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"11395404330211866","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:41:00Z","end_time":"2023-10-25T12:41:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción en 3 N-I","long_description":"Obras de construcción en la Hacia el este AP-1 en 3 N-I.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":33,"south":42.544986,"west":-3.291532,"north":42.545188,"east":-3.291242,"congestion":{"value":101},"geometry_index_start":8738,"geometry_index_end":8740,"affected_road_names":["AP-1/E 05/E 80/Autopista del Norte"],"affected_road_names_unknown":["AP-1/E 05/E 80/Autopista del Norte"]},{"id":"11127683043770410","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:48:00Z","end_time":"2023-10-25T12:48:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción en Ameyugo","long_description":"Obras de construcción en la Hacia el este AP-1 en Ameyugo.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":3014,"south":42.622596,"west":-3.115016,"north":42.641849,"east":-3.094671,"congestion":{"value":101},"geometry_index_start":9036,"geometry_index_end":9093,"affected_road_names":["AP-1/E 05/E 80/Autopista del Norte","AP-1/E 05/E 80/Túnel de San Nicolás","AP-1/E 05/E 80/Túnel de Barrio"],"affected_road_names_unknown":["AP-1/E 05/E 80/Autopista del Norte","AP-1/E 05/E 80/Túnel de San Nicolás","AP-1/E 05/E 80/Túnel de Barrio"]}],"admins":[{"iso_3166_1_alpha3":"PRT","iso_3166_1":"PT"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"ITA","iso_3166_1":"IT"},{"iso_3166_1_alpha3":"ITA","iso_3166_1":"IT"},{"iso_3166_1_alpha3":"ITA","iso_3166_1":"IT"}],"via_waypoints":[]}],"geometry":"eds{bBmk_jH`MvNtz@l`AwLph@{v@ifA{Tk\\u[k_@_VcYrAqFPw@bFiSVuAz@cEL_ALyAtBwJP_BXoBdGeXhBeIP{@xEaRFYVgAd@mBiMcFmQuGyuA}i@u@m@_@e@_@q@c@oA]sAa@aCSmAoAyHhGsIjB{BrAoArB}AhAm@jAWpCYrM@fBItAWtBk@bB{@hAeA|@kAzA_C~HoMxCwGxBqE|@qBlOa]pq@i~AnPm^dJcR`L_TzFiL~@sBpHeOrBeErCoGxEyHlAwC~@aD~@}Dl@eFzBoLzAcJxBoJbMgh@hDsJnFaUbDqHr@iApBsBhAa@dAEbBrAjBvBnVz`@xEnIvHpOfBfD|AtCdCrErGlLbH`PhE`LfCzGbB~C~@xA|EtH~HhYzq@~dCnEzVj@|BzBhJnGvRzGxSl@bB`ApCvCnG~A`DxBdDhJbKbBnBdApAb@^fAn@RBXBV@`CUlAy@|@yAhLkUhBoDvAsBfAqAlAiAzCwBnn@uZtFkCdDoCl`Aef@fEqDrGeDhEq@rf@wXzEwBjFcCbFkCxWgMdCsAnIeEjC_B`q@{\\|Ao@fJaEzAy@~ZaOrTkK`GsCz@a@bBy@|DkBXOVOvAs@jBcA|Aw@dSkKfNaHl@]t@a@nCsA`PeIlEyBzAw@jXsMjk@eZtAu@z@c@xDkBtDoBpv@o`@hAk@nCqAtAm@VMTMtAs@tBeAn\\uPrU{KdAe@nAq@`DiB~CoBrAo@|b@qTvMkGdw@}`@dZ_O`TuLhAk@rAs@dF{ClDeB`Ag@|t@w^vh@oWrEeCpFcEdFgGzAqCjd@caAtJ}Sh@gAvDcIrCoFl@oA`^qs@lB}CrAwBl@eA~AmC|FuIbE}GtGcK~To[lC}FfCqEtJoLpFkGp@o@zAyAvCoCrHmGzDmF`AuB|@_Er@yHBoHCwEEwJq@oIoAkNcFyt@kB{TUuCu@oJuHegA?Cw@iQY}SP}OdAoRh@_HlB{M~E}VfFgQjFwNtNmX`w@}pA`NyTrWgc@rpEusH`FkIp[}j@r`Ci{DhVq_@fN_SrNmS~E_CxQkXvKcQhe@ex@nAuBxBkA`BF~BfAnEhEbGvEvF`D~EjBpGpAlI`AhKf@pUS|CHlIfAlErAtIxFjEzDrFzGpEhIxB`EnB|E`QtYv[zjAtIt\\x~@nxDdo@bkCbsAhtFv\\ntAjUx_AtZrpAre@hoBdB|`@pErU~F|ZhQp~@vCpPxIvl@`Fje@~BtV`B~Td@nTMxM{@vXeDf]eGd^gMno@_CpPw@|Lm@nMQjJIpKPjNf@rKjAhMbB|M`DbOtDhMtDnKjDhH|DjGjDbG~IrHpKjH~ErBhItB~JjApKInOuBpIyDtL_JfOcR`PiZhHaPpHaNtOiYpIyKlGmEhQyQnJuHvK{HtLsH`IiDvIaDrHmBdQmDfa@oJd^mK~YwJhWcLrWuKvx@ib@znAct@x^kXh`@mX``@m_@nmCouCl_C_iCvcAyiAdPuQfmBwuBzpCavCjxB}|B`ZuZxhAwjAlc@}d@peB_jBn\\}^|^__@nWwVfx@ys@nu@un@`y@sp@lp@si@tdDknCdxAokAvwAkmAnbCynB~oCk~BzXmUnf@q`@nfBcxAdy@mj@`eAaq@tbDspBzdAcn@hg@m_@|a@aZbNcKhIgGvpBexAzVmPr|Ai~@rjBc_Ar{Akm@btBiu@v@Yh_B}m@ns@q\\ziAio@xpA{u@lgAyk@rs@e]pDyAhgA_d@XMtJ_E\\Ojk@{Rrk@sQ|fA}WrmAu]tcF_vAdrG_jB`bAu]vy@e\\bhGepCf_EiiBx[uNx}FulCnzAsx@z^eVrwBkyAzlAeaAloCwfCbdAcw@jr@id@|sAun@fHqCf[sLpd@iOvgA}Uz`@uGpXwCl~@gIpx@wAjfDhAvnErB|rFbBbfFp@`I@hsSqHl~G`KjgGfFvFDdLJnyAjCtaCAdnB}GbcCuJrt@wCjfHuU|FKlIQ~FGn[]neA}@hICdRI`j@i@|i@kBv|@kDxy@uPxXsF|OyDhO{DpYkIfYaJrRaHbRcIfRiIrXoMlQgJfMgHxOuIhSuLbi@c\\r[kS`XwPrVeSlQsLtc@g[pQyLn{AgcAraAop@hp@wc@`p@ib@bcAgn@j`Ew_C|hAav@n{BitA~[eT~^}TnrD_{BntA}y@lBkA~E}C|vAw{@zkA{s@vo@ea@rs@mc@tZcRxkA}s@xp@ga@pnB}kA`c@eY~_@eXvf@y_@zSoQrRsQzVyUlOsOfa@md@zTqXvTmYhToY`To[hSs[|Rg\\nRi\\nRo^zQi^rRw\\`Rq^xQq^~Qw]tQg^`Rc^nQm^lMkVbe@q}@t[mn@lTig@v`AqkB|Pu\\`Rk\\tGoMpMeWhXai@nd@eaAb[ss@tZgv@d]eaAnTor@|e@e_BjL_`@rOkh@tLy`@lE_OfzFamRrJ{[~q@o`CjUyu@jh@aaB~k@o_B`Uqp@hM_\\pb@idA~`@}~@tVmh@d[oo@rf@w`ApSm_@ld@iy@vXid@rCuEtXwc@dt@kfAvk@mw@h\\cc@zg@im@|c@ag@no@_r@vl@qk@`i@qf@lr@cm@pmBayAviA{u@nwAeeAfkBqnAzxBgyAdjB_}@psA}f@|zAm[j~@}KjwAqKzm@g@|m@L`PTjZv@`i@fD~OjA~RbBrMhBrc@fGnQjCf_A~Sv~@pVb`C~u@zM~@`b@lMn`@|Lxj@vOfqFnvAxiBxi@`jBzj@fi@tPzmC`z@dc@pNzrErwArgAh]nRxK`dAd\\~cAl[to@|RtY|I`[hHb\\dH|YlE~AVvXjDtZpCbm@dCrb@|AzmAdA`bAfBbbAtAzpFfH~lCnCpPNlqIbMbn@v@dr@x@ll@z@rzBxBl~BhCliAtAlb@PzXMv^k@rViAj`@oCpQgB|[_Efi@aJvh@}L`j@qPjXmJhnB_v@b_Aw^d^iNxMyFfQ}GpAi@j|@u^vh@wV`q@a]zxAaz@vPyI|gAkk@~qC_qAdcDqzAlNwGlL}Epo@eYr}@i]tf@yPtf@mOfqA{]xg@cOrg@qP`N{E`MoEh^kM~eAyc@~oCapAbkCylAbtDmiBv_A{h@d_CkuAj\\ySdPuLtUaSfn@wp@f\\}d@`Yee@fg@m|@nQqa@|Mi[rhB}eEzpA}wC~d@uhArg@ijAfEi@vZmk@jPyVnQiVpm@uq@l\\uWx^uU~YqN`[iKba@qJz`@aFv\\mAb^b@nVdAva@nFfa@tK|ZlLpb@xTf[|TnExD|QvOpWlXbRbSzHlIhVvXxw@f|@xKlH`QdTPTzInLpcAfsA~tAbmBv|@`rAjf@lt@dc@pr@r^fl@blAvqBpv@lwAhf@nbArXpl@zOh^~Xjq@nWvo@dSli@j]tcAf[ndAfQlo@fOtk@|Lzi@zM~n@hGzZDT|Ifg@fLjr@dKfs@fItn@`Hxm@dF`h@fE~d@bF~o@|Fl~@hFdgAx@~UtAj`@tAbh@fAnu@t@vv@h@bvA@`b@@r_@k@x_A_@|jFC|h@Ezu@}@xaNi@j~KJd|A?L`@hq@?h@b@nvA?h@p@|s@b@ta@p@rb@dCfrArAdh@tAtd@nCdu@|Bth@\\dI~FlfANpBrC~a@xHjaAxGzs@bEf`@fG`h@fFp`@dGrb@vFv]vHxa@dIn`@jRh|@fHlYdI~[`T|t@vY`}@xQ|e@~Rze@~KvVxMdYnQn]jR|\\fUl_@fW|^rUl[rSpVlVfXnN|Nj[l[|dDxeDdtDvtDp@p@jj@rj@jFjFTT|sIftIjAlAzC~Cr@t@zi@zi@jBjB~FbG`C`CfaApaAxa@~a@nZhZpj@pg@fSnPlN|K~AnAtItGTPjWtQhZhSpWpPn]`S|f@nWlfJ~tEjrChvA``G~wCrzDzmBpBbAfbA|f@xWxMnb@xR|XzLrWdKlf@bQTHv]|KpoB~k@vuB|m@`zExuA`oCnx@|sB|l@jSdGnDdApGjBZJ~SfGzAb@lrCly@bQfFjvAxa@voAb_@|cA~[hd@vPde@lSxWhMp_@|RrsDpoBte@`W`{IbxEhwFtxCts@|_@zx@dc@lhAvl@nJxEhoBnaArJzE|Av@lCrA`mEnwB|tEd|B~kA`l@tjD`dBxl@dYzDhBvz@h_@xg@rSr`@lOxX`KvWrJpfCn}@huA`g@pb@fOdxEncB~e@`QzJnDrdA`_@t`@nN~u@fXB@xrBrt@ro@nU`LnDxjDhnA|FrBdVrIzFrBrUhIxgAr`@bcE|yA`NnEjc@tOfj@lRxMjDpxA~_@r^~IrlBlf@fItB`RzEjOzDttGzbBv`EffAzPpEpy@`T~bDhbAjhCh|@fwChhApzLdiEdnCp`AvP~FdMzDddAxWfa@|Gtg@jGvuDhb@vxAhP|lGps@|oUrhCxw@lD`q@XbYQn_AuB~fAeD|aFoNjR]jQe@zEMjTk@trCoH`Oa@pn@e@vV`@nPXpg@|BhpFng@|zAzN~iApMbk@rJ`i@`Mvj@zPnhBdq@vEfB~{@r\\l`H`kCtgA`b@f@Rbi@dTxc@bTpr@d`@hWdPtQrMj`@lXxw@pq@~`Ab|@~n@ll@hU|Tz_Az~@`dAleAncA`hAfo@xt@|[ba@r[jc@r`@rl@bWta@vWbd@~Utc@p]hr@fQz^||CpyGliArcCxk@fnApRn^zX~f@~MbVfQpXl]tg@tNfSdMlPrd@dk@hl@pn@f@h@do@ll@t_@b[b_@dY~m@x`@fXtOra@xUdk@`Y`_@pOv^fNbX|IzO~E~EzAx@VbZjIbjAx[hvAn`@pk@vO|XpGjUvEzl@|Jrl@nGpNpAhPpAh_A|Dln@rBbwDhJhdFtMriC~Gns@nCbb@tAxu@dGfu@rI|{@dMd~@`Q`sJfsBp}@dRtOhDxb@fJjJnBtu@|O~jDpt@xa@pI`bA|StIhBrSlE~k@zLhl@~Lja@`Jna@pInm@jMrhDns@|wEt`Aby@pM~bAjLnv@nFrw@hA`]f@vk@?htAuAttA}I`pCeWfgLa}@r_Fk`@doAaJrbA_G|bAsEhq@yBfJ[pmA_EhfAqD|_BuEzgDiK`_B_FnDKb|AyD|f@}Avk@Kja@vCjXdDhW~Efi@jOpZ|L~m@d[l`@bXte@`d@la@ng@`yBdiCr~DnwEz`@he@vh@nn@jkB~xBzM|OxdBlsBliAbpA|s@jv@lRnQtVbVv\\d\\buPthPdBbBdtAhtArm@~r@ls@r}@nb@|l@zn@z`Atm@rcAnZ|h@|fCrmF|nAnnCjDtH|CpGld@v_A~y@zaBh_@|p@jh@by@lFlIxObVfi@bv@pp@`|@viB`aCt]~b@r`AtmAxyB`tCjs@dx@zYp[dw@pu@h`@~\\fa@j[hn@fb@tn@j^`a@|S~k@pXjT~Jr_A`]`e@nNf_AzT|`@lGhv@rNhgAxJrk@lCtd@jCrhCMt~@t@xp@lB|u@fDl{@nGrbArIdyA~Rjr@~Knr@jM|sBxb@tz@bQvx@hNlq@xJ~q@nIfj@lFnk@lEbc@hDtc@rCvz@vFda@lCh_@tDnVzClVtDfn@~KbuAv[hXlC`WdBpX]r\\_Dv[{GpPwFjKkE~J}ErJoFlLwHzOmLxFiFjL_LlQeKzOyQtNuS`Um^`Su[nQmVvOqQdQ{NzUiOxPwGxV}FtVcB|JSzGb@pLd@tShC~QbFrVdLrRdMxKlKvPdRxO`U|LbVdWrr@zHrTt_@b}@le@vzAlx@dgCzo@xpBnMt`@xoBz`GbdCffHrrAf~DxSto@nh@lbBpQdm@tYhbA~c@nzA`s@~iCx_@nxAzPfs@t]vtAdy@dhD~^l{Axr@rtCbsBbhJlOls@`kAdrFhShhArQjgAbUv}A~K~_AnJj|@`Jb}@rEzh@~C`c@hNpoB|Ev~@rD|{@xCd{@hCbv@p@pd@dAvt@|@dt@TzhAYrqAMl~@q@|aAP~HIlI_AvjAuFb`H?HkA|bBqAxsAO~MMrS[`Zm@fQ}@fK{AzKuB|IuCpIkDbGiHxGaFfCuLdB{Gu@gGyBaFgE{D}EaEgJ_EsLcBeKo@uL@sJ^{JfA}IhBmKlCuIzFcJpIwHpFoCtIeClhA}[xJaIbk@yKjs@aLxv@cK|v@eIps@kEju@}Czx@mBxjAMfm@t@~e@vA~}AxHr{A|IJ@xhJ|p@dyAhKvaCjUtvArMnpAnSxjB`ZfCh@l{@xQn_@zIhzBhp@vi@`R|b@lP`_@jNb{Afp@~xH|oD`pDrbBtI~Dt`@rQryDfcBlgD|qAffCtbAdz@`[j}@~[r{@tZr{@bZlkAlb@daChv@fa@jKnl@tQp|Bpp@`jAx[hjA|ZjtEngAhtFtuArlAxZziBth@nVnIngBbk@ty@xXly@h[bmE|{AnvAtg@jjCx_AtaJ~`D~fL~bEreAt`@nu@hWv^dM~aBrl@~fKzuD~_Bfo@r~Axr@jo@dZnn@b[p_@vRz}@bh@~i@r\\tVzO~]~U|_Azp@fx@jn@t]|Xd]dZza@l^|^r\\fQvPjJ`Jr\\j\\jTpThc@be@`e@~g@bb@dg@zf@bl@j^be@rb@fj@~Zva@j\\~c@da@fk@xf@pr@lg@|u@h]xg@rSvZ~l@x_AzaC`oDrsCxiEzu@nlA``EdfG~eAp`Bti@ty@~pCndErdBlgC|dBfbC`cBhzB~uA~hB`~Cn}DvcDxbEhwLxoOvfB`~Bf}Dp`FncAfpAzQjUpoJ~`L`]ba@~Q|SlXx[b}ApiBltFttGt`H~cI|mG~|Hv_@lh@hjFdqHtiDhoFvz@xzAhxAtjC`vAxmC`y@hbB|gBfzDjo@dyAnn@`yAv|AlvDz}FfhOpwAf{D~xAfyDxlB|~EvxB``Gn@bBzbBtjE`V`n@xkA`aDzeBz}E`h@dvAnoAtvDzh@|`BblBd{Ft^bhAxk@hfBfl@zgBdL|\\`jAbhDduAvvDvaAbfC||AjuDjdCnjFf`BnhDvbB~kDtiAv_Cjt@tvA~EpJjuA~xBvcAzxAfvA|hBniBnkBhtAjmAt`@t]|~B~sBjzAfzAvo@vl@bo@xl@xgAbhAlrAlxA|bAxpA~m@`~@dr@jgAto@xhAhl@loA~r@fbBlk@z`B|`@d|AtXxkAtWlrAbRxjAzMleAvJjgAfHbjApFxpA~CbrAZxpA[dvA_DfbBaItsB}In{AqKhnBsNlnBgNbrBwFv~@wEj~@_Dv_AiBbjACln@DxUHvVJjGV|SfBz}@|Alq@pBbz@bGtvB\\xLdGh~BtG~fDdEl{ArBrm@tJbaCbNbiCfH|x@pEb`@dIbr@rPxtAzQ|jApO|u@dO|q@dGpWjE|Q~DdPfD`N~FpTpFvRlFtQfGpSxFhRhGdRbGrQlGnQvFxO|GhQrGnPdH~P`HpPxH~PfHzOnHvOvHlOzHrOdIbOnIdOtH~MrIhN~IpNlJ~NrHvKpJ`N|I`MdJfM|I|LfKdNrI|JpJlLvJ~KxJxKnEzEjEvEtP|PjOzNhKnJvQfPpLxJ|K~I`PrLtK|HzLfIpPrK~LhHjLfJnHxDpXrNhOnH`WrKjWxKl{@lXbbAnTl{@jLpoAvIbi@p@jTTbUDrm@^r\\Pz`CwC|RCtfAKff@OreD_A~]Yzw@q@zZk@|Ik@|Iq@pIeAbIgAdHwAjJ{BdJiC~HkCbH_DnI_E`KcGxIgGxGmFbHgGrIwIrHuI~GaJdIsLvFcJnHoNfEaJ~CkHlFyMhH{RvDaLnDcLnD}LnEcPvEyPtYsiApEiQjEeP~E{QdDuLrCwJxDuMhEwMlEiNbDwJ~C_JlD}JnDoJvD}JbEkKhDcIrEeKjFoLtFaMnFeLbFwJjKwRtHmNjGoKnEyHjHkMna@uq@zn@oeAbu@cnAft@slAth@i|@~r@knArz@{tAxt@kgAtEgIhUi[|LuPrd@kj@nf@qi@`^wY|ImHzc@y\\|m@g\\d[cKnUuHpZ}Ht_@qGzEk@fS_CpR{@pw@n@vo@|Ff]pH|\\rJ~e@jSln@n^jPhL`PxLpZvVt}B`sB|v@ls@p_Azw@buAbrAtn@nj@v_A|{@tmA~jA~m@nj@to@`i@ja@l^vk@za@b}@vh@ff@dY`e@vTjFbCp`A|c@xh@hUno@|YbQjIjQbJjT~KxQvKxVtO~OvKbMlJ~OnMdLdKhJpIzMxNxOlQdR|UdGpIfHpKbEtGnFdJxDzGxMbXtPf^xL|ZnO|b@jNtd@dRrm@rKn`@hOvo@fSbbArGt[zMjy@bMry@dMz_ApGjq@dDz^pCx`A`@lPf@rYBzYCdFE`Is@fZuBlc@{AxNqDhWqDhTqBlMeAzG}ElXiFf^eFx`@wD`c@qCvg@eA~e@S`VvCf]zA~NfCjO`DlM|ElL`GnJxH|HxFlDxQlDbKMzNyDdG_E`IwF~HmJ~CuDhPyY|Sac@xHoPpIeOfIiN~IiMx_@mc@rLuJxSoMzTgMlC_C~EgEpFqArFmC|LiF|ZmMlpBwr@`}Aoo@xi@sSfo@gNzQoAn_@kCxn@n@`VhCvN`Cb@HvUfFnQ`FtZjQxmAtq@f`B|iA~X|Lby@|Zhx@lOp_@pDtaAxI~SvBt_BdPlWhCfU~Bvs@lGhbA~F~t@k@jm@gEjd@}Gza@oJr\\_Mnr@kXbc@mTji@o[lcA{l@v_DqiBpaBycAtVoOpjBqiAbeGovDx`FmxCxwDi~BlXmPtReLnZsPn\\qMpZuK`ZaJd`@sL|]wHfj@eDja@gBjg@cAfo@oArrAMbzE_@f`A`@fAAfPA`@?~}B_DhdBIpXAnVa@nWMbSKpl@?ziB_AbpBaAdO?jaD{Bz[q@lgBmDh~AiKzvAcOr{Bq]jeA_UzqBgg@nnAg`@vkAia@r{EsgBxz@k[zvKiaEzpBwv@thAcc@zuA_h@lNgFbuAug@flAed@|zBgw@`tAm]`e@{JbaA_N|}@sHlqBwDzK?vf@Bf}Bj@|h@l@feDoBvWWp{BgJftA_KvtAeQtEq@tPgCdUiDr}AaYnwA}\\luBgm@ddEg~AtkMkvF~u@wXh{@gUl{@_Ohf@_Ehf@cCbQaA~`@{@vYw@pSi@l`AcCnM]ry@Mrt@l@hl@hEzRtBn_@xD`_@jGrQxDrSrF|NpEzSdGlf@rQrc@rR~VxKhp@f]|HhElPxIz{@~d@~_@lRnv@x^~fAbf@`mBdq@v~Brb@juAvQtv@~EvxAzDrlAPb_BaG`sBaVl_B_[`iAe[niA}_@bjD}bBla@_Ulw@i^tj@aZ~sBkiA|LyGr~DyxBzyBgxAhFiDdd@q]`k@gb@r]}Y~LiKlsCgdChYaVv`@_\\fl@qd@~s@yh@fm@{a@hs@ae@pbAmq@nnAocA~QwSlz@gbAd}@_uApk@oaAzcAepBflBksDfwDeoHth@k|@nJ{Nn]ak@hvAakBn|@cdAf_@w`@`QuPpOaQvKyJtm@cj@hg@w_@zq@ef@zPeL`G{DzU{Ojy@_e@xy@c^jy@g`@f}Auf@rfAuWpk@{LxReD~o@eJdp@{Fbb@qDtc@_CnLc@`Nq@n\\Szx@ObmBrHl{BnVhuBxb@|rExvAdEpAdtNj_FzjB|v@bmB|aAr~DtqCj|B|~AbJnG~yBb~Av{AphAn|ApeA~`BvmAbZzTxcBtnAxaAvs@rtMfoJfPnMzfGrnExWpR`UpOzdBdoAjj@pa@fVvNba@zYlSbOnCnB`i@x`@~GdF`HbFb[fWnQlOfHdGjf@|c@nDdDpr@|o@xi@bn@~w@phAj^hi@fT|]nq@vmAnHpOtJlTbAzBb_@py@hTlk@vQ`f@t]hgAxZnhA~XxjAbl@xgCvGpZvEzRzLpm@bFrZ`AjHtBzOvClYtCb^jDxw@rAz\\dCz^rBtV|D|YxD`SlDnM~CrJxGjNbClE|FtI~GtHjJzHdKtFhIzCdKjBfL`@hKg@lE{@`Eq@lFuAfF{BxEmCzE{DpE_FrE}EbKaO~NmYzGqQrFeP|FaR~Tuv@vVe{@tJ{\\`Umv@|Roq@dU_r@~Hgd@`c@{pA|zBgvG`Lc\\z]scApL{Z`EkKlOq_@rPo]tQe]xJ{PxEkIhAgBpUc^p`@sh@`X{Y|WkYruAclAboAkfAt@s@~a@w`@huAkqAng@cg@hc@y`@|i@_a@`YsLvL}Dv[sHxMgBbT}AtUqD|S_@`Q_@bj@aC~[kEnYkHhRiGvUwJ`i@eXrPsJJG~aA{l@hOcJhCqBnRoLbBaA~iAkp@v`EmfCxdAen@xe@uZv\\_TzrDczBblBkjAp~AgaAnFiDtr@ec@p_Aqk@|n@{_@xOoJlc@qVtc@cSzGkCbOgFjPkFti@_MrWyD|OiBfOqAd`@iBda@aBjIQnh@wClY}BdXcCp[oEhRgDhVcFlWuGlX_IxYoJz_@wOtZ_Ox_@sTvZwQ|PeLtE}Cnl@ia@v_Agp@`OcKzhCqgBh_A_p@f[{SrUwNn[{PjXoM|LyErZuJra@gJn[eFn^aD~YyAz}CkHdcBcDjv@yAddAwAza@nA~_@bDzPrBtPtCxZ`JvOjFpO~Fn`@jQvpBfhAvsA|v@pfBbaArWdM~TfLjPbF|QhEvVlCbUrAbz@nCzm@vCzUpAdh@hJd]~MbX~K~k@`Zhb@~S|fAlp@jMzHz`HluDtq@z^zg@xX`sCl|AjGhDz{A~y@d|Axy@ngBx`AtbAvj@hL|GbB`A~t@ra@hw@nb@zM~GlNhH`MlHd[xQ|h@bZpNbIlPnIfg@bYpcAxk@hb@lVlQ`KjoAps@`cA`m@xrAxu@nhBfdAjcClvAf`ChtAhyAdy@tSvLpc@fWdXtOhDpBrn@r^vcAtl@t`@xU|VfOzVhOnp@p_@lNbI|_DlhBb`Bd_AfbBp`AzjA|p@bvAjx@r_Ali@ho@v^hY`OpgBtaAdIjEhMbHhKjGpK`GrlBlcAbc@pW`~G~sDn{BnmA|~DxwBrcAbj@j^xRrvAvu@|^lSzkBlcAxhJnbFtyCh`BvpE`aCjdCfpAxFxC~j@bZ~BnAdUfLzC|AzDnBbwCz{Ax`Bnz@hk@~YlbA~g@feAri@rk@bZjeJfyEjo@p\\tT`L`]`Q~Ax@n_@nR`RlJlWlLxa@pMbd@bKla@bFvVfAtk@@hn@kD|k@uDty@kDn{@mAtu@Erc@Zhe@z@dfB|Gxv@`DrnBxHjZjAvrBxH`a@BpeAuB`dAcFbI]|_C}JhfDiOfnCyLt_@aAjb@_@bpBw@tx@FhXb@xYfChZnFfZfKrXpOxZrVdXlZpO~TdLdSbIvOrRtd@vQbc@vj@x{Avm@n`Bdj@vxA`U`l@nLpY`a@j~@tZ~l@he@~x@vk@`y@vf@jl@`d@`e@~r@po@x~BjrBx{EbfEXVvmCb`C~~BfrBbq@tm@hr@ho@rZ`[|\\x^na@df@pVl[nWf^jj@tz@fu@huApYzm@|b@`dAlYlx@dXry@hSls@fRds@pYzqAbS|eArKfp@hMn~@`Fla@vOh}AlFho@zEjs@dDvn@hC~p@pBnq@vAru@x@ju@`@t{@BdpBo@fnBsCdxFkChvFmBb}D{B`uEAxBgDdfHe@fdAmBhfEq@ftAaD~yGsF`nLkChqDg@bXYf\\iApi@qBnp@q@nVk@|m@HvYkAdjCAtCKpTAtC{AjgD{@b`@MnYy@pkBCdPaApb@}An[}BhRwDjOiFvKcIdLqKjIiLlB}IIuK_CyGoEmJ{J_EeJgFcP_CcRu@iRz@sVxC}SfFoNxJqNxK}IbLaEjJ{BnYwBrk@lCxu@`DfMP`ZnBbPCrU_A`SqCr{BnPnpAxHrbBdNf}Ghq@rvBpRvvBpOdpBxMxuBtKxyBbJlzBfHdgEjItaBdBr~@f@~aB`BrrAtD~f@|CpVlAxrApONB~dA|RbfAbYpbAj]|]jOxv@h_@pr@|_@rs@pd@~d@z]hjA~_Al|BhoBbrAhbAjl@x^zi@tZp~@rc@`w@vZha@nN~o@zQdp@|N`p@jLlp@`Jlp@dFhq@hDjr@tAnk@Qrp@aBnq@uDlr@oH`p@gJ~v@yNhn@cPdm@aRpl@oTrl@aWbk@uX~l@e]dh@g\\d^_Uj]uWn`Ass@dgAqx@t_Aqn@~k@uZvm@{Zdg@aW``@_Qfa@iN~_@iNnk@}Pbt@iPvS{C|PmDdPeCnPaCpIeAzW{BrPoAxOgApPaBrQc@nOw@xSs@hPJbS[hPDrQDbRf@nPt@lQ`ArPzAvPtBvQ`DvPxCpPvD~QvEp\\rKnf@hRdb@|Rjb@`Uba@rTxa@bV``@fVzGbEpsBboAdd@zU|\\lPrB~@x`@nQnd@pSvpAhm@tcBbx@hg@tTpKnDfKjDfUzF|Q`CxPdApOEjOkAjOyBdNyErNiHjM}JdMgL|LiPxKiQjKwUfJqZvFkWpE}WpCkVhC{XjBs\\tFstAxDchAxKs}CnJckCnEi_BbAup@pAkaBGyaBaBadBwDo_BwFyuA{NqaDsIglBq@kO}NmdDoHc}AcNg|C{Cyp@aCep@oBez@}A_dAk@cdADgwA~Aa~AfDm|AtGq_B`B}XbGscAnAaPdJejAlOs{AjRi{A|TixArW}wAdZmvAj^awAx^}pA`Lc]fXay@pQwe@bd@wiAjc@kaAfDiGfh@ueAfk@weAjk@mbAfm@iaAxm@k}@zo@c}@tn@ey@`o@st@dp@es@fr@gr@nt@{p@dw@{o@rv@_l@~x@}j@px@cg@~cAck@ri@k[~pBuhAfnBsfAvrByiAlqBohA`tBojAhwA}w@hZsPxt@oa@fw@ie@hu@_h@d}@ar@tF_Ftg@_d@bs@yq@ps@yv@fp@gw@lq@o}@nn@c~@zl@aaAll@{eAj^gr@dW{h@`\\ct@`g@olAbY{t@d\\g_Adb@grA`m@cmBtCmItq@yyBrOwf@rj@ygBbn@cpB`d@gtAve@anArh@ikA~g@{aAhk@c`A`@q@rf@ms@bTgYpb@}f@pf@_i@bp@sm@vg@ua@nv@mi@bz@oe@lr@i[tHcDjy@aYj{@sTdz@gOb{@mJh|@}Dn{@U|{@pCr|@nHtx@hJf}@bKf~@`IpNf@pl@|Bj`A@hgAyDhy@eIdOqBbn@yJv|@mP`fBu[jF}@hj@kIby@cHh~@aEn|@q@xs@n@h_AbE~d@lDjc@lEzc@dEzoAbNhrBlS|oAvMtx@pIxJdA|y@|HfhAbLbyAfOfpAdMdrB`T~`@lDpk@fExh@bBx]Hx^y@ha@sChV_EzJaBrb@qK|TkIzRkIfQgJnSsLf`@cYj^w\\t^ua@j\\wd@jY}d@lVyc@jWih@t[{r@hZur@|_BmwDrWoq@`T{k@rUsp@`Ueo@lTem@nSul@vRkn@`Qco@zHa_@pG_^jHal@`F{i@vCoj@xB{v@xAou@t@cSxAgVbEwi@tGad@|F}XxG}VhI_VrJyS~Q{\\fLuP|N}OfNmLvPyKdP{HbO{EdPiDrNuBtXeBzu@s@doAmAv|C}ArmDuB|[g@~[}BrYeFl[oJtTkJrQ{Jbc@m\\|^ka@xRmX~Wud@dSwd@rRsh@x\\o}@lO}a@|Oyb@dSub@pRu]vRg[vPsU`MuNx\\c]xVwS`XiQ|XqOnEeBlCeA~PwGp`@kLfT}DdOsB|OsAxZyAbgA}CfOg@pK]rm@wBla@g@lWN|SpAdVnCvW`FbUtHh[`Mt]tPzt@f^|XxMbZnNdS|H|QrFnY`FvoB`_@bM|DzLpFrI~GtIfItJvN`LfVpDpLlAlEnAvFrAtI`BhKzB|GzCx[~Etk@nBdVd@jKtAnl@`@do@Pl_@nB~OHfWMxXj@pXn@jVfAvObBnLtBpNzCzK~DpMtDbK`A`CfBhCdB`CxArBbAtAnFnGlLpIrGpCzAZfHhC|PxC`c@zGlb@fH`QxEbPlGjHpDrG`DnKhI`KlK`K`Lbm@rw@bNnPrIfKzPzQrPhNbKtHjLpHxT`MrTnMpj@f\\rG|DvTfNpItEjGlG~TtMtOnHbFxBhF`BrDfAnEpAtKdBzGp@rGd@xHL~HkAvDr@nqAvBva@z@|LT|E\\pC`@tKSvKqBpEuAfHgDvKwHdDkD~EaGdE}F`EyHnFkMbEmOnD}OnB}NhBm[nAuZN_Pv@eSpXiaG~AeHdJseBl@wMb@oLPwJI}K[oKo@kLu@}GqAcJBkJeDiSgDiNmF{PaC}FgC_F_H{KoIcNaEaHsB_EaB}DaByF{@_Fs@cGYcGCuGXaJ\\}F~ByMxBmJ~C}JlFoIvA{AbDmDrd@{g@t~@ycAnf@md@bQaK|c@sW`WeNtKuCddAen@xVcPzcAsp@vVcPzaBefAba@qWb\\}S|X{Qf@[dSsMt@g@`F}C|DgClUuNtK}Gtr@ic@hcA_o@d}C{pBj@_@|E_D`LsG|w@gg@xBuAxNmJ`Ai@zDeChMeIvEuCxc@}XbEiCvA}@pz@ok@zk@q`@r^uTp@a@zL{JrIeLbCwE^HvBJtBUvDqBvCeEhBeGbEa@vIwC~NcF~Di@tDe@lIwApWoCxXmE|ToDhF{@zdBkT`Da@xUuCv`@cF|Fo@|m@sGtOeBjuAaTpz@_Jbb@_FlWoDrI}AvRsBnU}C`~AcSzjD_c@fBHfBTd@hAj@z@t@j@x@V~@B~@Qx@g@h@o@b@{@ZeAnCwBrAaA^WfOyBtd@yFx[_E|`@kFtK}@ra@_FtHmAxY{Czt@aJrLgAfTgC`VsCrbAoLnJy@|CUzPyB~AEnILz@tBnApAzAf@xAG~Au@hA_Br@_C~DeCpDmArG}@nKoAfZiDfDa@fxXs`DxWmDpkAyMxX_DpT_Cn@G^El@Gpy@gItC[fBn@f@`Br@nAtAbA|AR|A]rAoA|@uB`@oCtBaBbDmAdo@uHzUyBjxA{Pp|@}JlX{CxsAmOvh@wF`xCq[hm@uGjyDwa@b_@iEnfAcMXCrv@}Iz[uDjn@iHdkHq}@tqEoi@lsKorAryAuQhNeBhwHc~@tzEik@te@wFbAMfn@oH|LyAxxBeY~MgBzk@kHxZgBn\\e@|WzAnOxBjEl@fTtDxCh@r[jIbO|FjAd@nGdC~MrFlO|Fv`Cr}@b]`MrNnE`XnGtU|Ez\\vEpY~BB?hXpAzT`@vTKb_@}@`TwA|RmBnSqChToErU_FxPcF|OqEjZ}LzWqLhWaNfQoKrPaLpQ}MlQoNnQ}OxO_PhPqPrMyOrPiTlN{R`N}RpNeVfMeTzMeWhL}UzL{YhJeW|Ja[|HgYlHqZpGm[rFyZpF{]fE}ZzD_^~By\\~Bk^dPqgDxPy`DvEs}@fCu`@~Dq^zFya@pKai@hJu^hIeUxK}WhL_UlLiQtEiGhSgVhRmRfPoM`RkK`R_IbPcFhUkFhSmCnSoAbROvUv@`SnBlQrC`SdF|MzExP|GfPdJ|OzK|M~JhVvV|MdL|NtJjPrHnO`F~LpCrQ`CbT`@dOYbOaAlNqCvTgGnPoHhVyNnUkPfrA_aAjcAwt@fuAecAlg@}^zx@gi@dUuOlfAyu@f\\eUfPwJ`@SfMsGdR}G`a@wKxRkEvbCcg@dr@gNt`KcpBlf@sJllCch@tbAoQly@aOtmAgUhHsA`l@oKbe@qGzc@aE|d@{B`d@s@|o@x@hh@lCpd@rEfc@vFtj@pJh\\~Hf]rJjpCz~@lrDjnApc@vJxZxEh^dCvb@d@te@{Apb@}Exc@{Ihc@gNbc@mRhLyFnp@a\\htCsvAn_Boy@tuAwt@`nByiAleAws@xTkPj^}WbmAcbAj]qZzJsIz`BivAj}@ow@`n@kh@do@cj@~x@yn@l_@uW`~@{l@|KwG~{@ag@t}@gf@ls@}]lf@wTzf@oT|c@}Qd^uMf^mMxu@qWrm@eQhc@yL~gAuWrw@uPrNkCxu@iMde@}Gnl@gH`yBaRhv@_Evm@aB`gA_BzvAZ~iA~BvyA~Gpv@pF~rB`Vvy@pLlg@~Iv`@`IxH`BtXzF`_@rIrc@tLni@lOtv@jVHBpuBpq@tShHlW`KfWbLrMpGnVjNhRtLnQdMxVvRvH|GvMnLxT`VpSbUnU|Y~\\|f@|]ph@hgAzaBpjAxdBb]~e@r]rd@hXb]pXj\\hTnVlTpUzSdTdg@pf@xgAddA~tAhpAjgApcAbnAziAlg@je@x\\`[p`Af}@pQtPfPlOn\\tZvBnB~TvSpg@~e@r]p[do@pl@lWfTxS~NzVbNdMfG`JrCrVpIlJvBlJ`BjPjChN`BrO~@rSh@bUEjv@FhfAAjg@Fj]?h]FhxEZpvAd@vENzShAzQfBtWfE~WfFvV`GnV`HpOhFjOxF`ZjLlLzF~MhH|XpOlVvQdShPdQtOjz@lw@tkApiA~XnX~Z`\\rPbSzPtTzOtTz`A`{ArPzWzPdUjObR|LhMrOtNdIdGvRjNbTlLnUdKbTpHbTjF`V`EvVtBtUp@~UMzTcArIkAdNkBfY_G`ZoHdVsGpq@gPvb@uL~LkDnx@eTxHaCh`@uLfkBkp@djBwo@dUqHbTqEpTmCxTeA~U@tj@xB|aB~HtaBtIlp@`Cfm@nClcAjE`dAxFjyA`H|URfUiAjUuCbUgFpXaJ`PiH|RgK~RkMxYoVjTsR|EcF|SgWpRaZt}@c{Avn@ueAx`Aa_B`_Aw}Ap_@_p@`k@c~@dVc]jMeObOqPfPkPfPeOdQaNlR_NnQ{KzOcJ|OqHfOmGdPcGfO_FjyAsc@~y@}VxVwHzx@{VvuDkjAt^_LpjBkk@|cAa[~v@oUt^eJ|^}HhQ}CbJkA`OsBve@aDxd@s@fi@l@xTjA|Z|DhZpHnLrEpJ~EbLxGnJ`HpJbI`f@je@~BzBpvAdqAng@bd@jQvPjUjVtLvM`M~NbGlIfFbI~I|Onc@xv@nJhPpJzNhGvIzIxKnJjKvLnLdLtK|IxHzIjGtKhHvKhG`GxCpLpF|S`Ib\\|Kje@pM|c@tJpb@pGx_@`Ena@jBpp@Ab[a@r]sAl[mCnaAwK`_Dk\\hZ_DjZgE`u@oMvm@oMpj@aOvSyGbIiCxc@qQ`a@}RjSyKtWoPh_@kXtWiS~WsW`W}XhQyRpSmS~QaPjNcKnRoNx]}TzTaMt\\oOlNyE|LcEzTgGjT}Dbe@cH`OcBrQcAxNYnNW~ZHbYj@lYdCb]dF~k@~L|e@rOh_@rQdh@bX|g@``@to@jm@xLdKvg@d_@fGtDlXpPfUzLnl@rTx`@pKfg@hK`YfCr\\lBhj@hCr_@u@vw@{Gb\\{F`IwAn]{JxRgGr\\aNnTaL|RkLf[uSll@oc@xn@in@vb@gi@rYyd@zUkb@`a@{v@rMaX`Wkk@haBeoEtm@q~ApZcu@rRob@|Qq\\rRc\\xY}d@z[md@jkAmyAl~C{{Dp^kb@jdDo`EvrBucCt_@q`@f~@uy@`m@}d@pz@_h@`t@k`@hq@qY`sCoeA`cAib@baA}c@xqBucA`dAkh@ln@_[vRgJ|n@kX|XsKd_Bof@lx@uRvy@cKrg@eBfg@mBdp@t@`}@tFrx@xJxf@jI|bAnV|}C~_AjtCb{@ja@vJv}@|NhqBvThiAhIzlBzGzyAtFdi@tBxhAnEhvA|MrqEzh@p`Cvd@prArZj|B~n@ln@hSB@dNnEzoAbd@xQjHn`@dNrf@bStFlChe@nUt`@tU~t@xj@hg@xe@df@rl@dj@~m@dbCltC~mAdzAdf@xc@vb@~Ylf@dWrg@~Sfe@~Kvt@jI~Db@|h@n@hs@eE~d@yHzh@uNvc@{QfYyOt`@eXv\\yY|a@s`@tDqDrn@ol@ps@ks@|fAucA~sB}mBd{AixA~mAgjA`LuKft@wr@~a@_`@v[}Xdc@uZnVoOh[mMh^iKh[mFxd@uFvl@Kpg@rEvG|@jW`Er[xH|`@vOne@dXf~Ar`AzcDlqBpqCrcBdF~C`iArr@h_Aln@ht@vl@zg@rg@vi@lk@va@zd@`]t]fQjQzQfQfVtR|jAt}@br@|a@|{@jd@~nAfg@h|@bXny@~Qrn@rJtk@fH`pAlH~^~CzyFd\\zKf@laFpYlwAvH~mDpTzuBlNxiBnW|gBd`@zfBrh@baAv^b{@`_@ddBf~@~gD~qBpc@rVxOnI`bAje@taAnf@tkBpr@v_AxZz`ArUbpBzc@dr@`LjYtE~gAzMfLbAvcBfOtlBvE`{@l@jyAQtT_@rlBcJp{AcL|lAiN~zCaj@n`F{`AjpB}]dkB{Tzf@gEbr@cEjWy@jk@{Ahv@aA|eAj@to@dA~iAvErt@vFf`AlJp_BnRr}A|QzbG`r@lg@`E|kBzKfeAhAreB}CbtBgKhtAsOhlAkR`yA}Y`lAe\\d`AuWx@U`yAeo@`zAes@|hA{n@zlBcoAruAejAzrAsmAvgAkjAplBw{BxmE}nFhcA{kAt`@ag@t`BkpBb_AkgAti@mj@x\\e\\xf@i`@lFcEdDiCn]cXtf@o^xYiUfa@a\\pb@u`@`YiYrb@_f@vf@ip@r^mi@rDaGvc@su@bLqTb]at@h[{u@xa@_hAnUav@`ByF|Skv@tRaz@~Ogy@bSmiA|R}xA~Iy{@zUmwCt]_dEzo@yzHzgAuvMtWgbDvAyOhUi~CbAsOjFo`AvEk}@`Cmi@`GoxAlUo{GVwHnQy~EjHmmB~FoqA~Ec}@`Eio@l@wJ~Ba\\~Gw{@nAqOvJsgAlCsZzQq`BdFgd@xFsc@vIyn@`AgHpG_e@fQ_iAvRmhAvd@_bCt^kaB`b@udBx`@swAdb@}tAvU{u@dn@}gBvbAubCza@ybA||@qgBpcBshDd|@wiBjgAgfCdf@smAhg@urA`fAk~Ct{@atCliAajEbeAu~Dhd@o~ArX_~@v`@ykAlY}y@l\\uz@ri@itAfa@y_A|c@e_A~Oe\\fHuN`IcPxI}QdUya@v[{l@`_@}o@~[qg@b\\}f@vcAe{AnTmYtl@ot@pu@s|@v~CgnDlfAkkA|r@ov@zw@yaAjy@sgAnt@ugAvaAwbBbUya@hm@ujAtiAuaCla@i{@zh@ofApf@w}@dx@{vAnf@yv@fGsJ|rAaoBdlB{xChhBe`Db_Cc{EbmB}|Dv~@ycBz}@cwAjfAkxAx|@cdAfp@or@~u@gt@lq@gk@ry@wo@`hAss@lx@kd@h`Amc@tEuBzs@aZlk@cSnk@wQnb@uK~YsHfP{CzS}DrZ_Gf[_FbSmCdQ_Czd@cFdk@}DzGW~OcAfiAcDzp@Svo@lAl_@zAdj@|Clu@lGdg@nFxh@`Hzm@bM`o@lNh`@`Khr@nS~v@`WbfAf_@nzD~~Azf@~SlTnKxTvM~_@|Wt^t[x[x\\bZr^fOjT~Rl[pK`RdMjV|Pr_@fQjc@tK~ZpK~]zPpo@~F`W`GpYdLdo@zNjaApKft@xFj^lIfg@tGr^lKpe@fGdV`GnThKn]p@vBpEnNbCjG~H`T~GvPpLvWpL`WvMtVhVba@zSfZ|OrRp`BpkBntAjxAtyBf_CnhCnoCpu@`x@nv@by@fKdN|DhFnm@dy@zVp_@nh@z~@vZti@xWfe@~Ylh@jYni@zXxn@~Xzx@vTvj@xMf]jPj`@pRt\\bRhXvj@|r@~b@hk@l]xl@zf@paAlZbm@vY~f@lTzYvRnWbEbFxHhJbFfGnf@bm@`Zja@xF|HjXbd@tOrZxPd^`Sph@~W~y@fNnf@dn@`{B~Szn@|Slj@pR|_@lR~\\tY~b@lGpHlTvVrp@ro@bwAprArcA~_A~fAhcAx_@h\\z]t[tp@lh@da@nXnz@jf@zu@~]np@xVfu@lT|gAbVrhC~Y|uA|Ohr@pMdkA`_@ho@~XfjBthAhfCn}AFDlYtSJH\\TfNpKpQxOTRh]z[|DzENP|GhIlO|SnM`S|Ql\\jOz[jN~\\nHxTt@|B|Txs@dU`s@f[baA~Qhn@zM|f@bLle@pJ`d@hIdb@dJri@xJ|p@dIlq@|Fxj@|Fds@fD~h@pCbj@xA~b@pApd@v@db@b@tb@J|`@Eb_@[lg@s@zd@kBvp@mCtp@iCre@mDbf@mCr[{Efg@_Ef_@{Fxc@eHfg@iKdo@aKvl@w}@blFe}@~jFwXr_BwTnrAaGh_@wEt\\}Ffa@yEn_@aGvi@cFhj@_Dz`@mCr`@yCdj@uAp\\gBfm@qAxi@q@zo@I|ZCb^Pjb@`@l_@~Ajx@jAr`@rAd^lBh]vCjh@jE|j@hIp|@nD~ZbDvXpGnc@tIdj@zKbo@`H|\\vNfp@hKpa@pIn[rP`k@tMja@|BhHhRrg@BHrPfb@~Qva@rWhj@v]pn@z_@tn@tg@pv@bi@tw@~X|a@h`@fk@~_@dk@xSfZrQjVha@~g@va@ff@vXlZhYbYrt@xq@zbAd~@lHvGx[fZl|EnmE`u@~q@fTfRvrAvnAzoA~hAbk@bh@dp@rl@~|@vy@td@bd@|U~U|c@xd@|V|X|V|WbWbZ~e@`j@lqAx_Bp\\`c@p]pe@bU`[v]|g@fQhVp_@rk@pHpKj_@jl@nQ|ZnPxXjWdb@hf@lz@t]no@r@rA~y@f_B|`@rx@n[tp@rb@z~@v[|s@~f@pkA`DtI~Zvv@~]d~@rf@`sAn`@jiAzOve@hP|g@zTbr@rN|d@|a@vvApBbH~iAdyDlIlYzDtMnx@noCvObi@x@nCdDlL~@~C~qBd_Hjy@jnCzf@txAtYbw@vW~r@jh@pnAno@lvAxq@htAn`@~s@f`@jq@jg@hx@tMxShNfT~^rj@rl@rv@tVz[`Yn]xX`\\lWrY~VrXt^n_@bxQjyQdQ|PpmBvmBzwB~wBvtIbuIhqHpqHnr@pr@bk@fk@pk@tk@le@vf@b[n]`d@`i@vV`[tZf`@rc@nm@zNlSpWt_@l^|j@x_@jn@tQb[tRf]~Wlf@p[~m@fSra@hWvi@`]nv@~Pda@vO~_@f]p|@n\\~}@vSrm@hPjg@`O~d@dt@vcCbBjGns@nbCha@tsAvX|z@jRjj@bP`d@vHjS|Ybv@lV|l@lXbo@td@vbAln@poAld@pz@th@d~@|d@lu@zm@n~@to@h}@zg@~o@v`@~e@po@bt@j^l_@fXfXp\\p[na@f_@d_@z[zc@d^`n@jf@pl@be@haDdfCpLjJ|AlAtiA`}@vhAl|@zm@hh@jY~Wl]d]~c@re@xb@dg@nj@lr@nd@po@rTd\\~Td^hJtO~KfRbM~SvXjg@bZ~k@bYfl@|Rvc@nXto@d^f`AvI|UfYlw@pg@pyA`dAx_Df~@lqCNd@bl@fhBdQjl@|@zC~Iz[nLxf@nEjTjFdWjHna@tJfo@~Irv@bHnw@vCpg@jBx_@lBli@rAxw@J|p@a@bz@}Att@yB~g@gDvk@yEro@cGxk@cHti@oIji@gI~d@}Kxh@yyEx_SwGhZyCxNuBbKsIdj@}F`e@eFno@{Bxh@y@bp@Rhl@bB~m@jHxfAjJp{@bLl_AzxCvxVvKlw@zJni@jMjl@zKp`@nL`_@zOza@zRre@xRb`@~GrLfTp\\nR|WbKbMzIvKhQfQ|EzEnWvTn_@~Wd`@~S~l@pVjhAj\\dOpErsAda@`PxDj[|EnRnAbR\\`ZcAt[{CbRwChViHh^cOzTuMl_@_Y`oAwmAjQaRtnCqtCvEaFlAmAt~CudDbTyRdGuF~KoHj_@gUja@kPff@qKjc@sEtGWdIMl\\r@nIh@tN|AXDdJxAxEv@xRtEhQbGxTbJpS|Kb`@tWb^vXrs@xk@pm@ve@~~@tu@f_Ajw@zd@ne@ja@pi@nsLrbR|tIr_NbtCppE~bEzoHto@pgAjhLvuQb`@zj@v\\xc@b_Nf{NlsBbhCrc@vg@v_@v^beCf{Bj]h_@lOlRrOdTjPzWdPfYzR|_@jTnf@xUxo@|Opj@fLjd@bM~j@p{@jhFnLvo@~Ina@pKfa@lQpi@zNj_@lC`HxFjMhDpHtYzg@ha@dk@d]x_@~e@ra@|RtMna@dTxi@vRpb@~Inf@nGrnGrNni@pEd\\fHhZzJd`@rRnVnPhRzOpRzQhZv[jmNtgO|nB`lBjnB~lB~\\n]`DbDdfAphAfU~Vx\\p_@dd@xg@leYdoZtjN`bOn`Cn~B`sAztAlXjZlXxZrfC`xCps@tw@dm@|m@lInItn@|k@lm@rh@|aBfvAds@fo@jaAdaAx@v@baPlxOnClCvnF`fFvs@nj@rRdQzhA|fAnqDlkDxWdUzU|PvTjM`T~IlPvFxg@pMdVjCxe@pDpcA~G`q@rHvLlBhh@~Ixt@jPzP|Ezh@tNhg@pPfa@fO|Y|LrErBla@bRvIfE`ErBtE~Bjr@p[n[bQnUtOhPhNbU`UfMzNxObS`N~TbR`]hPp`@|Ld]pLb_@pJpb@bHt^~C|QPdAbB~LxDd]lDz_@xEbw@bIhgBfDpg@|Dje@|J|w@vF`\\`Lxf@bP|i@bKnYfLlYzJdT`[zg@j_@pi@`kF`}GnHpJzfEvtFpGhIrcCp_D~tArfBhpb@daj@dPxS|hA`yAxAlBf{DfdFxjAzzAz~Lr`PnYh_@~Yj_@zYz_@`TbWnTnVlPtQrSjSxPfPfPxNlTrQ~ZdVfUtPrX~QlrDfwBjY~PjiAzr@z_Bp`A~a@~Vt[~S|T~NlZtT~VhSfYlUj^n\\`ShRvSxSlWvXxTzV`SdVjJpK|TpY~Q|VpQzVdT|[lUj^pSj]|S~^tMrVtRd_@xMxWpMxXxOd^vPh`@|Mn\\|Lv[vOpb@tTxn@~T|r@lThu@zLld@bVhaAx[|rAdChKdkCvtKveAdmEl[hqA`r@dsCrPxn@jR`n@bRfk@dSzi@tTdj@nVlj@|a@jy@|b@fv@dTr\\nTz[j\\xb@n[t`@bf@|h@jk@hi@hj@zb@~Y`TdZtR`o@b^fp@rZ`{@hYtAd@hy@pSdw@jMvi@`Gli@bDraKzNz}BhOh|AfXxcBxi@ziBrd@xfGbdBz\\pKpStG|VvIttA~i@dNlGhJhEz~@xc@lY`Opf@fX`}BpqAlHfEjqBfjAviAfp@|aBheAbsA~y@nTjMhInFn[pXzZhc@fJvPnAzBzBbEvFpLpFzMfVbq@vMv`@xFfPrFdNpFtLpF`K`FjIfKzNdDdEhEnEvHdItFpFdIdHzHtFjHrEtIhEdN|FxOhGlm@fTpl@~VxX~Fxr@fWrXnJnCbAlTtHb]hL~HzClGdCfVbInOjGrKfEpVxJ`EdAvEbA|Ej@lDPrDAdDWhFy@tEoA|C{A`DcB|C}BjDuC`DsDxDuFzBcErBkE|AmDdByFfByGjAeFdAaHvAcKtFof@xAaLlBcL|BkLpCgLzC}K~BgHbDiIbDsHrBuDhJyMlF_IfHgJ`]g^|[s^l]g]~K{LpT}U`a@wf@vJgJn{AiwAff@gd@rjA{gAjoA}sAdjAenAlWyZde@go@no@w`AbFuHzVga@dSu]zB{AlKaRbD{EfEuEjGqGvE_EvHeFdHoDbHoClKoCjSaDfO{BpJuBdIcCxIqElGcEhJwHtDcEdE_FjDyEpCsEbFcJnF{MhEsL`CkJjBsH|AwI`BmKfA_Kx@sJl@qLb@iPFaY@e^JgO\\{Iv@wN`AqKxB}PdDmR|VwnAhLgi@NkJtq@apCvRc|@|Kmh@nKoi@nAsG~Lyq@nWw|AxTe}AxXyxBxpBgcPrKcw@|Gwe@`M_y@bIce@bOc{@rPg|@~Re_AvTk`AjTg|@zo@{eCzcGugUrx@uwClT}v@by@{nC~j@ceBzk@ybBzZ_z@jdAklC|h@ioAnfAabChfBipD|sAslCtoAueCdxDkrHrv@c{Ar^at@hzA{`Dzd@qfAv`AycCji@}}Alr@{zBrXm`A`iCiiJzp@iyBdx@m~Bhg@qrAzg@qmAd`@i{@hp@ysAbq@}nAzb@qu@pd@}u@`c@ap@jo@i~@|k@iv@hj@sq@xi@on@lm@{q@vo@}r@hgDcsDvcByoBl`AylArHmJxsAgjB~}CuuEvs@wgA|e@as@dn@u|@dn@gy@zr@}z@|u@a{@tp@op@ro@km@|g@gd@x`@y[|`Aat@~bAku@ltA}`AzyBkbBpoA{hA`{@{{@j}@sdAlk@qs@dk@qw@hu@miAvw@itAvl@khAde@abAv\\}t@vm@e{Adl@_|Atw@_vBvx@gtBd^a|@|]{x@t^gw@hB{D~]wr@~Ry_@xr@wmA~q@ufA``@uk@vh@ys@vm@ev@n^mb@r^ea@fn@{o@rVuUhV_Unp@gk@|]uY|]yW`GkEjh@q^ho@ga@xh@}Z~j@uZrFsCzc@cTdg@yTnv@gZzu@mWrdAwYd`AcTpw@yNlp@iJdc@gFlj@cFtc@cDnvAuHx|AiGtwAyHne@uD`c@cEpGm@~U}CpHmAxlBm[llBch@~gA_`@xdAub@ptC}qAtsAek@l\\mMb^wMl]_L~}@sXb~@{UdtBsg@fmBwf@~q@iSrp@_Ubq@oWrr@oYt|A}x@`z@eg@fr@ee@xf@m^|w@}n@rx@st@jfAgdArdBsqBdkFi|GttAufBpiGgbIpDHjPkS~PgTzIyKrm@os@dBqB~P{RhOoOvJ}IdHaFfIsEvLgFtNiEzKoBdNyA`KWlMFtLv@`P|CjLlD`LjFvGdD`JbG`QhOhh@pi@nWtWbRxOhPxKzErCjDnBdFtCxFtC~FlCbI|CzGdCnHlCnHvBnJ|BpKvBjOvBdzA~OfPhCzS`E~ZzHtk@~NxWfGpb@lIv`@|GrWvD`p@xHvy@nHbo@`D~c@jAfo@p@tw@a@|Z{@v_@{Apa@uBHA`]qCfb@iEja@_Flb@kG~_@uG`w@_QxfAoYlj@aRhi@cSfl@qV|kAgl@h~@mi@he@sY|v@ag@zq@ud@v{@yj@j~@il@vDaCzbAim@j}@ug@j_Akh@v}@ag@~{@ug@`mMc{HbXsNh[oOb`@{Pl\\qM|`@sMnTiGnUaGhm@gMhl@oIbp@_Hro@qDv`@aAjc@GdY^|]|@|ZvBbXrBx[|Dhv@`Mh_@xHtc@bJr[pGphAvShfHbtAha@fGvx@fNtaAxNz{@|Mdp@|Kfd@lI|ZnHjE`AxT|Fb\\zJp\\pLx]`Nj\\hOx]vQzRlKtSnMvBrAjQ|Kh\\|T|b@n\\luA`jAnm@tg@j`A~x@j^dZdc@z[vOhLte@j[bh@~[b_@jTl^bSbe@bV|~@pb@vn@tUj]pLf[dJ|VhHb^xHxe@`Jzw@zJbo@nEhh@tAhdA^n^{@bk@cEfFc@lOuAhQ}A|}AcU|bA}TjhA_[lwBqv@t{@ub@xfB}w@nnAod@b~Agd@zrA}Xpe@{HtN_Cfd@wDzFe@lvAaMxvAqBvdARxv@vCnbAxGtt@bJfSdChO~BraBtZhdBde@zt@dWxwFv~Ab`FflArgDbm@|qDfb@hlCjRtxBvGdCH|iClDnoCUrh@GppHuFd|DuQrd@wBvtBmOtvBiT`tCy\\~sF}o@zfCo]~tBm`@nbCyi@pvEqkA`bCak@li@yKj}@_NtgAwLniBuMvuAcCh`Bs@poBjHvx@jGlkChZrxCnb@hyDbl@zrCph@rqDnu@deB|ZzfAtP`~AjPtcAfHfm@xBro@~A`Td@vCBv]Jbq@Y|rBcEzmEc\\~UsB|jCcUnfEi_@~qDoXjmDeYxyCiV~vAqLzxDkRz{CoIfyDwIdnEiMj`G{QfbBqBzsAfBpfAxE`gAjLdpAzT~QdD~_@tJbkCrt@niA~d@baB|y@v@`@xrAn{@~lBjzAjqAvnAhjBxqBdcBnjB`xBb_CbiBvkBziB|iBzsAttAbmAxkAhoBvcBzoBf|A~aBtkAllCtgBxtBpvAdwBbwAxeCv`BvrC|pBnaCxqB|lBhoBbJjKhpBrdCviAhaBp~AthChgBh~Cnd@fx@t^jn@xgArlBfa@tq@jNrT`a@tn@dq@r`AjN|RzSnXbc@li@f_BrhBxsAtpAxzAtlArmArz@fwAd{@djA~j@|iApf@x_Bnj@jgApYv_A`TpEbAbw@lNnwAnSl{Cx`@baCn]bkA`P`Db@jzAnSt_AnRl|Aj^doAda@`f@xQf[rMfe@xR~l@zYt{@zd@zx@fe@hjAds@txBdsAn_CtxAbKlG~dBbbAhcBt{@hhAfh@vdAxd@`tBtz@dgD~uArhAvd@jfAth@~JfFrPrIjy@~f@jv@tg@jeAry@`z@ls@xf@ff@t{@v`Anq@bx@dfAxtAfeA~xA|uAluBtJrO`zA~bCh`C`hEnyI`uOpC`FptF~_K`t@vjA|eAxwAlD|D|dAhoA~gAthAjoAjhAjeAzv@jdAlp@xeArk@~z@h`@du@vYnyA`e@dGhBt~@tTv_AjQ`m@tIfm@jG~MdAdj@zDhi@pBlw@~@p`@b@hoAsBvmAkHhsA}NnoAoT~pAwZjdBsi@prBer@zaCsz@~aAe]n`Beg@||Aka@|`Bq^dxDgm@`lCu]xsBi[fcBwZ`_B_ZlHuA~PcDflCgg@flBuZ~sB{VziCeYteCyW~wAmMbE_@l{BaTbdCaVpkBmNb`B{Drz@G~qAbDnyCzSv}B`SdWvBjlBbPjmCnY~eDz]roCfWzvApIhp@tBbtA|Bv{A}AvhBcHdeBcPx{@yL~O{BpjC_h@hg@sNdeAcZlqDesAf_Cy~@bxFmzBz}FsvBdtCucAniEgzA`EwAfiFeeBfLqDp{Ayc@`[qHf`Bc`@~eB_Yn{AqMrsBaIfxA?p`BfE`iAzHr|BdXhyB|d@j{Bbr@~cBvq@ffElkBjKjEjYdMv`Axc@|n@hYt^|Ot}Atq@xiBtv@tkAjf@|a@tPl`Al_@pqBfv@xjAlc@~oCraAlwBrt@bg@zPxcFn_BpqC~|@nm@dSdv@nXhx@|Zb_B|q@|jB|}@`vA~v@rcEnlCf[zUr~B~aBpeB|mApn@fb@lf@pYnf@rX~bAdg@xtAbj@~eAd]zoAf[|mA~SbiAfNplAfIvyA`ErwFiHle@m@vlBkDndCeC~}BgBvrBm@rtCwA`bCqAvbB?lz@vAzfA`Grx@dH|bAhNl|@xPdsAp\\lfAp]`rChfAfcCfaAdcAb_@frAxc@xoAx\\vs@`O|}Bb^|qDde@PB|xBpYhH`Aj_BfTdjBrRvv@xEtlAlGf`E|KxbBlFncAtEzp@~E|z@dKh_A`OhnAzWdkAp]xlAxd@jfBdy@|gNnzHx[`PzVvKdeAl`@toAp`@n~@rTf~@tQjsA~QliAnI|uAbEvoAe@fZMlI_@d`@}Arq@{D|hA_MxMyA`_@oFj~@}PhUuEzYaGp~Ag^t~Byh@fcg@scLzcEa_Afi@wLpxByc@hpBmYdfAwKjnBgNd{CmRvdA}JhyA_RddCmc@zmBme@d|Byp@`y@kUruD{fAr`Da}@bpAmZd~@yQ`t@_MltA_Rtz@{IrhJiy@l~BgSfOoAtAMnpBqQvdCqTjnCsVfpBwPpNmA|}AgL|fA{E~kA_BziAm@vq@`A|dBrElnAnHn`AtHv~@|JrxAjSnpEv{@~hCjg@xaAbP|cBdPhcAlFz`Bl@|}@{Av~@mEl`BaPx|@yN~yAgZnaFybAlz@uKtiAcKbbAaEf}AyAbfAxAjpAbI~eDbZlE`@n}@dIhTnBlw@hHdtClXrqAlLvc@rC~aBxN|x@hH|hCtTrp@vEvp@~Ct}@pCb}@bAbcCm@xwB_FdSUnrEcKhf@yA|lCsFx_E_PpoCeSzeCkV`QqBb@GrsC}^hvD}g@|kDee@zyBsYtpBg\\raAkSjkAmXhkAa[f}A}d@~yBqx@rD{Az{@m^plBw|@|zAow@tfBgeAhpAoy@zcBeoAzh@i`@b_@iZ`F_Et}AclA`QgNpFiEdViSrKoK~FiGfImKlHkK|IcOtGsMrGsOjEaMdF}Px@eDfC}JpBwJxAmHrB_MnBmOzA_N`AoNrAoWn@{TBkDFqF?qOMoNk@cScAyTkB_XuHk`AqAsSw@oT[gROcRLuSXmMx@}RnAkRfC_V~BgS`Es[jHgg@BuLz`BkhKpQsiAPgAlrAcnI|aByiKbi@ceDjZieBlpCc|OdAgGx_@muBzc@qbC~q@ofDrh@mzBr`@w|Ad_@usAjEuO~Kq^vLm`@bJqYjHkUpUmr@|z@s_Cpc@_jAbl@qtApoAinChPa\\|Qa^|b@kx@n_@up@bd@ou@|JePrhAqeBxyB}dDptBk|ClrAqtBviAwoBdgAitB|uAmrCdaActB~wAc{CppAqiCzoBopDjrAmtBn`CgoD`yAovBpcCyvD|sAg~B~uAclCxhB{_Epv@ukBnjBycFhbAmxC~z@ypC`c@k{Aty@u~Crg@}tBxr@cgDld@ybChw@_dFvw@{yFf{AubLf_@{tCjNofA~Fop@lEsf@jJgeArDct@bAmSrCmz@vAwv@r@at@Biz@[gf@k@gm@mAwh@oAuf@yDey@cGiaA}IucAeJiz@sIsr@gSwzA{nAwvIyJyq@qhDceUa[osB}Guc@uZomBk^wtBw[mdBq_@miBqpAsjF}gBm~G}_Ao~DoZwzAq`@y{Bec@i}CaNmoAyUg}BAK}QycCsHwqAqKgwCuDahBaCuhBUe{BfB}pBfEgaCtE_yAlJwvBxTo_DvXo~CtAmOPkBhp@ipGxp@}qGln@awFxOgqAp[edClVqfBjWifBhOgbAnTguAxw@g~ErAeIJk@df@ezCdSwnA`RkjAdv@gyE~}@irFlTsyAhV}dBxNsiAtb@iyDbQagB~TyjC`Q{_CjV{aDpNkkB~Lk~ArJihA`MerAhLahAnQy~A~Qo}Adm@geFpb@qpDbS{dBhRwgBhTk`CxKktAfPkbCvJyeBtG}vArEokAzDijArEskBrD_xBtCclDE{dDcBqfDsPyxMid@c{YcHckCoE}tAaMikCkG{jA}N{}B}Ly~AyOakBoRakBqPwyAkXsxBeh@ujEiYyhCaMinAuP_iB_NqlBkLymBuJykBaHqbC}EeiCS}aC?y@z@mjAxCknAlHefBrHwlAbMesAdIgu@vM{aA`QagArSmcAfNoq@jLue@lMcf@pDqMbOmg@d_@whAnc@gkAxe@ikApY}l@hj@_iA`_@ir@xo@}hAr`@_p@rj@c{@|u@_fAz|AcoB`f@}i@xa@ic@vq@yr@vfA}bArgAq`AxlOadM|t@gn@ls@cq@z{@g}@xq@qx@~n@k|@~j@c`A|HkOne@w~@bHkPnWsm@vKiWfMg]xUms@vPgk@tNui@~\\gzA~VavA`ToyAdFgd@hBcPnHqw@bHa_AhEs{@xFitAnCu|@~P_~EfM}pCvCyb@vKi~AxPacBpPoxAfTc|AlNyv@~Ne{@tVwnAz@gExj@clCpmAiqFn`AqhErAoHbs@{bD~\\cjBrCqOz@kFpDaU|SerApOcfA|TmjBrR}jB`PmhB|KevAvJq`BxAmUlHknAnp@yjKvVqjDhn@_cIvx@syIhF{g@vyBglTp]qjDb`@imDtVemBbUg|Atf@_rCd}Cq_Qdl@ceDzXaeBnd@udDjm@qiEll@{fE`Su|AdRw~ArGas@hFgo@vEit@|Das@B[~DeaA|A{g@fAyn@b@{s@Fah@?qs@}@yt@eAyi@sBgp@wFurAYcHgSc{EmEa}@cDe`AaBqh@gAiq@uA_yA^ulArAauA`Cqz@jDa_AhDkx@|Dww@fFm~@fEos@pEqs@fJoqAfEoi@dEug@lHky@pHmx@Da@hEqd@bFye@hFif@lJ}w@`H_h@|F{`@vEm[xF}\\|EgYtMwp@rIka@~FiWbBsGfGyVpG_WjAeEdKg_@`Owf@`Ke[dL}\\rJsWrIaUpI}SdJoU~Qwb@lZqp@tYil@bAsBvyCseGd]ir@zz@ufB`o@ytA|Qod@dR{d@|Xew@r\\adAbYkfA~Sk}@`Pkv@~BeLhZabBhr@qiEtTcqAtXixA~Y{tAb\\onAr^{lAhJaWjZey@`b@iaA~h@}eAf_A}dBjpBehD~v@e|Apf@gfAxAcDxa@yeAt_@skAjU{w@lWweAxR{`A`TcqAnNmcA`Iws@hAkKbC{XpFiv@rDmm@bF}dAb@{L|Akb@xOe}FfFiqAvE_`AxF}x@|JohApJyx@xKsz@xRaiAjLqk@v@iDxPwt@fZqiA|Tyt@pQ{i@~a@qfAbtC_hH~b@oqAtXa`AjSmx@dMei@xLaj@vN{y@tQ}kAdl@}oEf\\yhCheBw~Mr[e}BtPebAdR}`AtZipAxZweA`Y{x@dZi{@`Ssb@l]ev@bVgf@l}DipHhHaNlpBosDdeB_bDbd@o|@bXgk@tVcl@~Tkk@~V{t@fXw{@hWibAvRc}@dTkhAfNy|@`Jqs@hI_s@zGmq@zEit@|FedAbDidAtB}fA\\ybA[cfAuBelAAYgEsnAgMyqByPeuByQcrBwPsuBsJsfBqCys@gBqq@gA}oAXgoA|B{vAjEcqAlEmu@zFaz@fNqrAvQctA|Kir@jLko@rMym@bRcx@|Mof@tNcf@tGsSxGgSrQwg@lSch@fTwg@jUkg@vjBq{DFMnn@{qAzDiIf\\_s@~_@ez@ly@yjBrEcK~u@uiBxn@c_BjC{Gdr@miBv]aaA|IaV~hAadDbaAi}Cj^imAla@auA~aA_mDlkAieEliAi_EtvAcaFjlBccHfv@mlDn\\chBnSslAdUuxAhSs|A~P_zAlPo`BxMcyAlLg~A`Jy`BnHc|AvEwrAvCknAxCovApAmzATq|AGcwAqAytA}Bw~AoHkmCmIkrBgLqqB_W_{Dw]kyEoT{bDcGy_AmF}_AuCoj@iCwj@_Dws@eCms@wAyc@kA_d@_CmhAu@ac@e@ec@w@u~@[__AD{eAVieAvAopAdAgp@`Bey@jI{jCjDmy@|Ea_AdFsz@NkClDyg@rDgg@~AsSlCwZpJmfAxK}eAvHsq@j@qE|SsaBvOqgAfNi~@xSklAbIac@tHya@jr@{bDx\\mtAb^oqAj]sjAx_@ulA`]qbAra@whArh@erAd|@upBvaAunBbh@}_Azw@urAxw@_mAdo@q}@h~@_jAzj@er@zm@yq@`TwTjAkApY}X~}@_|@hq@qk@hz@kq@feAww@jtBmyAb|B}~ADEdaBklAn}@ks@zj@od@pc@_`@rc@oa@rAoAtPkPz[{[t{@{~@hgBaxBnv@aeArx@ikAndAa}AddAq~AhlBouCxF}Ixp@ceAtrAynBlg@ys@dj@us@rtAmdBnf@yi@d`@ab@hcA{bA`y@qs@xn@}g@jaAeu@zhAmu@pcAep@zgAyn@~EqCrtAcu@~lBafA~cA}j@zbB_eAhiAcv@x{AsjA~{AqnAptAcjAn^gZjfAc{@rcBquAhtCe`ChtBgcBlqA_gAryA{sAb`A}~@~i@}j@~AaBvb@yd@tRaTvN}Onm@wr@zm@ur@xXs[tZ{]vu@yz@bpBk{BpiAesAfm@ku@|l@}w@np@waArSm[|f@_z@vGiLzSm_@|]yp@vf@mdA|g@ckAb\\yx@xWqr@t`@yjA`Pqe@dOgg@jNcf@hNof@hV}~@f[oqAx]mcBda@yvBje@agCz[m~ApJcd@j_@o~A`[mlAnWo}@la@soAt[o_Ax[y|@vpBqtFj}CmrIjeB_yEn~@ygCrt@mqB~c@cpA`hAomCdz@ciBne@q}@ju@gqAxO_Vjg@gv@fy@_iA|k@qt@xq@gw@~o@ip@zM_N`a@o_@lh@}c@vo@wg@rd@_]rn@sb@~X_QjYkP`t@u`@j^eQpc@aSxj@gUjdAa_@`e@sNdu@eTvkAgZv~@kUn~@qS`}@aRzgAcT|}@uOhYkE`x@_Lrl@sHbh@sFrgA{Kz~AuLvb@sBz[_Bdk@sCrMh@neKug@p_AsEpqBaHxfB{A|sAv@px@dCbs@fC|v@vEz`AxIz{@dIvq@pI||ArWpk@jLb}@xRhkA|YrgDl_AncAtW`cAjUho@vKleA`M`cAjGnx@tBfq@?daA{B|`AuGfBMb|@aL|aAoPvz@cS~t@cT~iAka@ngBeu@peIsaDzfDstAx}De~A`xBk{@pcBgr@hiBus@foAad@vo@oP`g@qKtm@qKbt@_I`_A}Ezr@u@jj@n@hl@rBrdA`Knq@dLni@pK`}@tWbu@xUt|@f\\dbCdz@blAzb@`bBvj@zhAd]bsA|\\btCxl@jaBb]leBr[dpBl^`fArOla@lFxKvAnn@|Fv@Fvl@hFl[vBf[lBlb@vB~\\zAtpAnC~PDbmAXjdAiA`Tk@zVo@|qAcEhy@cFpdCwNjiAkHzaAmErv@mDvu@}BvzAcB~z@Htz@nApr@~Ajr@`Dvf@rClf@pDbn@vFrd@jFru@tIxTdDd|AhUjgBza@pT~FtYzHxn@~Rxl@|S~MzEf_Ada@fk@dYth@vYfn@d_@~v@lh@ff@d_@v_@b[f`Ar{@zi@lj@|f@hj@pq@px@v_@xf@pg@lr@`}@xtA|v@vkAnaAn`B~f@n{@fl@|hAja@z|@nd@~dAn\\r}@vZb_AvZ`gAvPbq@rQby@h}A`_HpYtcApX|y@jS|j@d\\rr@zYvj@zd@jp@hUnX`i@di@vSzQvj@t]hYpOz[fOps@jTp_@fHdq@hG`s@z@bl@cC|i@wG~c@wJvf@_Pdr@cZzs@s]hjCq}AnxAwy@bLsG`m@oXdoAoh@v|@eZzw@eU~x@gRxv@_Npw@wK~i@}FrfAeHb_AsDf|@iAxjAd@hvArAnhAxA`aB|DhfCjLplApH|dArHxuAvMhzCh^voLnvB~f@dMlzCzu@rN`EtwEpfApdEro@xqEbe@`mDvWlaBzJr|Gxa@bcAnJfc@lE`c@zFvhAjQjv@rN~`@pHv`@|Iz_@rIzqAn^ht@hUxa@nNd{@tZtp@|W`p@vYlo@tYdn@z[~iA~k@ba@tSn{@vc@|~Afy@~g@lVpf@tTzCpAxcAxb@~^hN`]nMxIdDvi@xPxx@fVr}@hVta@hKbc@bK|\\lHza@rHhj@bJ`n@dJ|i@dH~k@fGhf@tEpg@~DrbAhGhb@lB`d@zAhr@xAf\\`@t]JpZAl[Y`y@eAjs@sBzw@}D|e@{Clg@cErg@cFbe@gFbj@aH~i@aItb@{Gp}@eO`~Ec}@`hAsTxeAmTzb@gIxdBgZ|gAgSxdAoStfAmRbfAsQr]mFj_AyLj^kE`a@{Dj`@kDp_@uCny@aFd]{An[eA|b@gAb]c@laAg@~^DvZX~A@hm@|@rq@`Bpr@tCfk@fDpj@lEpi@fFpr@xHhq@`Ir_AtKraAbLh_@|D~_@lDhq@`Erd@fAzg@@df@_Azb@uBxc@eDrj@cGvg@gItk@mL`\\wIj[gJra@cOv_@_P`f@qTnTgLlViNbg@{ZxRcNdXgSpQyNrRqPb^g\\x^q^rWuYnSwU|QuUh`@{h@|d@gs@lb@at@x[om@xUge@n]qt@~\\qt@l^gw@j_@ex@xy@}_Bp]mn@j]ul@d^wk@~_@ul@j_@gj@~a@wk@t^we@~c@ij@hf@ml@`i@wk@zg@ih@ri@wh@|RsQnMoLr`@}\\ld@}^ve@y^fn@cd@fq@}c@vf@kZzf@kYdg@kXvm@sZpWyLlVwKph@sTtl@qTtTcI`TyGzZcKjYmI`d@_MrKmChk@mNda@sIfXeF|p@iLva@gGzc@sFvp@gH|c@gDfy@mEb[_AfYw@pf@Y~c@Bv]d@hm@bBh_@lBdc@pCzj@jE|fAvOpAR`SdDdARtg@`Kjf@fLpe@lMhV|GxUtHhl@pS`u@nZ~s@h]dg@dWxe@xXxy@ji@dz@|m@pr@xj@v}BhqB^ZxeAx~@x|@bp@`l@n_@xfA`k@~h@~Tjr@zVte@xN~h@hNpi@fKtu@dNpn@~Hnn@zF@?zJx@~f@hDfg@~Blr@zBvm@r@paD_ApkBoHl|CyL|m@{Dlz@yEn|@yE|_BuIdl@yCpEU\\AnaBqJ|r@cEhw@kDf^gAf|@qCb`C}Dr{DYjPRth@Lhi@lAznA~BdoAlEdqAvFlwDhXbbAxIzpA`OzdAjMfeBbVnvBj_@j@Jto@xL~[bHjiCtj@|hCrp@pyC~~@fuB`r@fr@dWjk@lTfbDzqAhyAvj@ba@lNhCz@po@hSfhAnYzmB`^|_BdPdaBrIjaB`AjaBwD`_BsHboGgl@z`BqMjjAqEnd@gAbd@Vr_@\\j_@zA``@|Av_@lCp`AnKv_@nF~^lHfb@hJja@hKvb@dMjb@rNjuA~k@xk@zYvk@z[l]vTxVnQbeArx@prBxjB|wB`wBtlDlkD~yEbeDvmPv`JzvCfrAfm@zSdm@fSj{@xTh}@|Rz~@vOhi@vG~`@rEja@jCfaAtE|`AjBh|@Kp|@kCtJ]hl@kDtk@_F|fCqZrdAcSxJmBnmAw[jhAe]zaAq]nPwGrt@}Z`t@m\\h]qPx^iSp~@yf@pdA}j@`k@{YtuAeq@nq@{Xlz@oZzrCe|@f_Cgt@zaAe_@pa@aQh`@wQrUkLzYsOn`@sTv`@uUvYoQlhCg`B`YuP~S_MpRoK|OmI|LgG`VkLpYcM|LcFjLiEtZgKfMsDxLkDzRsEhNwCpMcCra@aGtQaBxQqAxQy@tVo@lRKlN@pMTvTr@pc@tCx[pDjTfD~Z`GNB`TfFf[|IhZhKnZtLf[hOdO|HrNnI`YpQrXhSjUbRdTlRhSzR|SxTpg@~k@t_@ne@haAhoApb@dj@vQbU|S~VdQfSdP`Qr\\|\\tWjWxSjRzUfSrW`T|X|Shl@pa@rUxNvVhOlf@~W`h@bWp{@|_@tbBxq@lnCzfAtxApk@rb@tOnc@dOpe@hOzf@tNjb@|Kj`@dJja@xIva@`Itb@pHxb@rG|c@`Gzb@xEvc@hEfwCnU~^hDbr@rHhk@lH~j@~In\\tFpnAzUpxAdXbhAfRb`@bFha@xEpc@nEvVzBzU`Bla@bC|]`B~c@|Axd@dApc@Xhy@E`o@q@`i@yAvp@yC|j@sD`w@_HdoAsOf@GdZaEvfA_OpU_DxXcDrYwCrh@mEhg@iDnsA}I|p@{Efh@mF|[wDzAS~XuDjx@mMn]kGdXuFnDs@rSiEndAaWnp@gRx~@sZ~lDupAhcAk]po@mRpm@yO`o@yOlo@wMt`AsOhiA_Ol_Du[|nAcMhd@}D|SsBjlB_RrnCw[|qAgRx|@uLnTyCfrByXnaDgd@|jBeQ|h@oB~h@uAhi@Wfi@Rrh@rCrh@tD~b@|E~b@`Gnc@xHla@zI`o@bQrk@pR|h@zSbs@`\\`w@hb@h`CxgBjdBtiBhkBdxBhjBjcCvkBfuBnnArlAhuAzkAxo@~g@~WlSfgAvs@v~EjbDpD`CveBfqAzn@pm@rr@tr@t`@zb@xMnKrj@np@he@~m@tQjVlQrVro@jaAdZte@`e@`y@nUhc@zU`e@tVvg@jVrh@fJnTfIbRxHxQhf@hoA~mAhdDrnAbcDhq@dvArVvh@fPb\\nRv]nd@tw@r|AfaClXl^rl@xu@rl@fu@z~B`jCvaEphEl^n^vxDpeEn}ArgBn|Bt|CbdB|iCt{@v~Apy@hdB`{@pzBfp@rtBzj@jvBpVnjA|Hle@rOndArObmAxJleAtjAx{PxNjyCv@vQvG|}AhBbaBPtkBaAt`A_DlfAcE~|@oFzv@oRhpBaZ|yBe]b_Beg@hmBmmBfkGoGlTaLb`@sMdh@yNfq@aJpi@uLvz@wH|}@kDdq@iB|t@a@rXGjYAx\\h@`]nCzy@jDlo@nGnr@tIrq@tKrq@vL|j@xNxl@pd@dbBne@haBjUvz@fQbs@rOvr@hN~o@vPn~@~NdaAvLncAfCzWnD|`@vDnd@`G~cArCzo@rBrr@pF`cCrB~s@hDxq@hHt_A`Lp}@jLnq@fPvv@`Phk@fKn[vLp\\bLhY`Qh_@dXrh@tTn]nTdZlSzVfXdYfPpOrGzFbL~IrTxOfT`Nt[pPjUtMvf@tTth@hV~\\rPzl@j]|_Ato@zu@~p@dfA|eArhAvjAxi@`n@bi@pn@fd@|h@fEjFz{BbsCx}ChzDpoBnyBx|@z_AviAlgAna@la@|uAnhAjmAt}@|_BteA`wArw@zx@rb@tn@rYn{Avl@xf@nQ|sAtd@`_Blc@tnAnWtvA~Vl}AdTvjBvOfvAdHbgA|Bz_A`@fcHgW~tXc}E|l@yGlaAyIpxC_Qb`E}BpuA`CzhFzWnLhAdd@lE`aBlSzo@tLdz@fPtiAhVzdDv}@F@byCvhAzeEpmBzrArt@tz@zh@`hAdv@to@he@jE~C|gAvz@prA|hAjkAbgAxiAbjAhhA~lAj}BreC|zDlnEtrAt{AllAztAflArtApzClhDrQrQjM`Nf_@d_@x_@t_@lbAv}@b`A~w@npBd{Afw@zg@|wA~|@rf@vXve@pWhzAlt@de@dVpf@fV|lA~k@`oBp`Afj@hXfGnCpPjKhbE~zBdZrQ`ZfR`t@de@|r@df@tu@hi@nXzTlXfUzK~I`LnIlYtSxW|SjWpUvr@no@bXjW~WrWrWnWpWtW~VjWzV~WzVxXbWbX~WlYnWdZtm@nr@|m@~s@zl@nr@fm@hs@jl@js@jl@~s@vk@~r@zUjYjV~XbVvXtUvYnU|XvUdXbm@tr@dVbYrVnXxk@hp@pm@hq@pVdXtVxW`n@vo@xn@no@jn@ln@`WzVdWjVjWdVnW~Ufp@|l@fWlUnWzTpp@|j@rWrTtWlTvo@vh@bX~SbXpSdq@vh@nq@`i@lq@xg@tXrSxXjS~q@jg@~q@|f@pr@dg@h_@hXzDrCjrAl`A`r@vg@lv@~j@zWfSpYfT`d@p]pLbJrn@`g@dhBnwAbp@ti@|i@~e@`j@~e@nc@t`@tc@na@nyAnwAdl@hl@nl@bk@xm@|q@vc@~e@dU~Vv[t^`VjXpUpXfVjYfVrYba@tf@`a@dg@rj@ds@fVr[zOrSb`@jh@dOjSzVn]vf@vq@ri@rv@pBrCnj@nx@vTz[tT`\\hTv[dCtDhPjVfTz[dxCnqEfi@by@`j@dz@tSf[hTd\\|i@~x@xi@fx@~Uh]bV`]xTd[zT|ZtTlZ|TlZrU~ZlUdZdUrYxU`ZlUfYrUhY`WjZ|LpN|RhUzU~WtUvWNP|VtXhVtWvV|W~VpWxYlZhl@bl@de@nc@rh@tf@th@ne@zWnU|WhUxW|TbXzTbXpTfXfTnXdTlXxSjXjSxXhSrXbSzXxR~XrRxXdRxX~QfY`RvY|QzXbQ`ZjQjYvPjYpPzYrPzYdPdYpOlZzObZjO`ZdOnu@v^lu@z]d[|NfXfPl[lNlu@p\\ft@p[nv@p\\fZnMfZjMhv@n\\pnCjjAbjFz|B~eE|eBlhFf{B|MzFlH~C||@jb@`jBru@ps@d[ltArn@nsD~cBrmBzdAd}BdtAxlBzfAhrBzuAt~G~oE``JjfGvkCx_Bv`DhfB~|@lb@baAza@pBx@hHxCzhA~a@fv@|Wz`A~XxpAx]vrAf\\n`EdaA`lA~Yht@pSbdAvZ`Y~Ixg@rQpi@vRps@tXhpAzh@nyA~s@b{BfbAldDlxA|_D~sApqBn|@bxB``A`aBrt@v`Atc@``B~r@bs@tZ~FhC~e@vSneAld@|eAja@|w@fUdThIfX~I`^jLxXbJla@~NhaAfXnf@dMhKlCdv@`Qvt@nMxi@nJjh@hItn@|I`r@~Gnu@lGzj@nEtm@~Ct_AnFhn@|@pa@X~FDvq@_Atm@M|\\_Ar{AoCfh@oCta@_Cbb@oC`q@mFrk@_DdgA}M`r@_JbqAmS~_AmNrz@oMryAmUlsA}TtlAmRfhA}Ohm@}Ibc@oDph@_Fdg@_Czg@}Api@o@fw@Nbe@?v_@?fj@lCbc@nC|\\~Br[nDxcAlMfh@nHddAlPlqBz\\ruClf@psCjc@j_A|KlX|Chs@`Ijp@|Gri@~D|k@~Ddt@~Dhk@lDr\\~@feB~@llBn@`a@_Bbc@o@xc@oAh\\oB~l@}B~{@_HncAmJbaA_Mba@}E|x@oLdf@}Ilp@_Njn@}N`UsF~n@oObk@wOrx@mUxvAag@n{@a\\zg@aSxmB{y@x_B{w@zbA{d@xzCwwA~cDwxAvbA}b@tfA_`@v|@wXna@}Knr@wQzk@_Oh_@cI|MeBvb@sJbl@oKdi@_H~}@sLrl@eGxfAwJfz@gEt|@sC|dA}BroA}@vm@?nj@zBnIJpTXh_AlDr{@lF~aAjHvi@dG~L~Axl@zHplAhLrGz@fpBzYfwCnf@`rBn[vdBbYbgDdg@tkAzQzeB~XplEpr@vDl@f_ApNzqA`QbaDfa@tn@~IznBnXjp@vHbQrBxfAhPB?|n@tM|t@tQ|Y`I`dA`[zGpBtoCpy@h]|L~WjIhUjGh@PteAl\\daC`w@|WpHxZvIze@zJxZhEnW~D`IlAna@nBnc@nBjsAnBhn@|@pe@p@b_@r@`}AtClcBtCfkBbDhf@r@|JFnjBlCje@vArl@?p`@k@|RcBhJm@b^aGlp@iLld@oPpw@o^fdBe`AbpA}r@`fCsuAxkDwoBvyAex@t}BcpA`u@u`@h{@qc@vf@{U|`Agb@v`Bim@|VmI~\\eKtXyHhK{Cn[aHjDu@~p@}Nro@oN|`@kHhOoCfi@}Ir]qEfv@wJfWeDr`Cm\\beBuTreAsN`|BuZriEak@tsF_t@``Hi~@ngGkx@dcFup@v{Gk}@beGav@~vFwm@lvFei@ldFie@|gA{Jx|@cIhe@gEnV{BtTcBvu@{HjuC{WxzBiSfhF_g@~h@oEvnAoLtjBsQfNoAlxAuMprDg]lNoAbrBsUv~@{L~q@kL~x@cOz]_HzPaEtp@_Pl|@eV~aAkZzmAwb@fxAek@hjAih@fRgJ`JmEh{A}t@xuA_t@pdCqrA~`Aah@x[yPfc@oT|H{DlgAcj@nrA_l@nq@kYlw@eZxz@iYzt@eT~p@mQhv@_Qzf@yJjhAmRjp@gI`m@qGpi@kEb_@oBjt@yDbEGd\\sAdWi@|Ya@~bAQ|z@ZpmAzBh}AlFniAdErm@pCl`@jAr]~@|j@Dzi@qAf_@sBb_@sDd[mEbWaFln@oNvr@wOjb@qI|d@oHtYuBpWwAl][j\\ZxZr@zd@tD`\\hEhh@|Gl_@tEj_@jC~\\vAh^NlYm@v`@kCxT_CpYyD|PkClQaEb_@yJd]aMh[}Mn[}NfWwO`^yUt^uXx\\uYlj@mh@`i@uj@xn@mt@ze@oj@bu@y~@fcActAng@ks@vf@yt@p|@usAvu@}mA|w@usAln@mfA|f@i{@d[si@tg@u|@rFsJzk@abAje@{w@d}@azA|[qi@jI}Lt|@uuAhaBkgC|`@}k@v~@spA`xAgkBplCkaDzkA_qA~eA}hA~p@ip@lkAwfAf_A}u@|s@}g@tq@gb@`e@iVnl@kX|X}Kl\\_Ljo@{Pb[aHf_@}Fdb@aEbl@yCb_@g@fF@`\\Fds@nCxPx@z[rDnl@tJnr@lPtThFvwD`bA|lBlg@xn@fP`pDh_AzTxFrh@jMjw@jQ~q@rLpj@vFph@`Dn]dA|`@Dj_@]lk@aDjf@uFni@qHrNiCpn@uMthAeYbr@}R~r@wUbk@gTrm@kWp@Ync@iUjd@uX`_@yXvSuOnk@_f@|q@_x@lr@q_AlQkWps@emAnaBiwCt}A}sC~~@waBvm@{fAdi@}z@tg@sw@`o@{}@b`@qf@zXi\\dXyYbX{W|VaUnXwU|VuQli@i]hi@qY|o@uYds@mUbt@uPhm@iLtt@aJb|@aIdo@}DpYiB`m@wB||@qCfjAgBngAIxn@f@nk@hBx^hCzb@~E~b@nF`j@nKpc@jJzZhIbWpIb\\|Lfp@vW~|A~v@||An}@dq@~_@|t@ra@l]zPrb@zSlt@p\\dt@hZhkAbd@dv@vWxY`K`LzD|}@b\\plAhb@llBdu@z_@xOnkBl_A~KvF|O`Id{@ng@fq@|a@na@fX`]fUb\\nUty@vn@j_Avv@nx@vq@flAhcAt~@`u@j_BfjA|fA|r@fs@fb@tr@v_@`cBzz@rx@z^j~@xb@dnAzk@xfB|y@dwAtt@loAhr@vlArq@v|Aj}@`xBhoAheC|wArgCnzA`kBhfAlcAvl@`bAtk@xp@ba@xV|NfWxMdg@bY`eBnbA~uAvy@`rAju@vsAfv@xU~LlfBl`AnbAlg@x|Avt@l}@xa@ju@j[bbA|`@f{@j\\lgAx_@xbA~[lvA~a@`hAfZ|_AzUrqAzYxmA|UnaAfQ|dA~O`TvCn\\lFtgCrYx_CzSryBrOx|AxIbCNriAvF~iAzG`tAfHvpAfHpoAbI~o@jFxv@vGbhAtLd|@lLpp@bKdbAdRxjAtVxi@|Nli@lOrI`CrBz@~bBvg@v`Az^h`Av`@jQxH~jAnj@hjAdm@xp@l_@xg@lZ`S|LjgAjq@|uB|tAdfBtiAro@v`@|h@~Zna@`T~_@rRbd@dSze@zRtc@zOf[lKri@dP~`@fKxm@~M|g@pJtu@jL`oBhUrnB|Sn|@xJxt@jJj_AjLhaA~NjnAbUxgA~Tl{@rSxz@pT|dAfZti@jQrzArh@~p@rWdr@pY`l@nWhk@dXhm@fZvk@pZhb@jU|a@`Vvx@nf@nk@x^lg@z\\ze@r\\jy@rm@tv@`m@p|@tt@lZtWn~@nz@fh@`g@ho@zo@dq@vr@hAlAro@pr@pkAlsAnbAdjApZ|\\`y@~}@pJtJ~^|_@r\\`[hN~L~PnN`R|N~^xXjYpRbZpQjRxKf_@xRz[`OxZhMpa@tOpo@hTtw@tTdx@nSv{@lR~rAjXzg@nKtfBp\\zn@nKjo@fLvs@nOva@nKxd@dNvj@bR`X~JrYzLjZzMr`@hR`o@b\\ts@p_@xg@fW|g@`Vb`@lQ|\\~NnR~Hln@rVdi@lRng@dPxc@dM`i@`Nbd@vJfb@bIxp@|Khr@dKrb@lGtj@dI`d@fHnd@zHlo@pMtT~E~SpFlP~ExPlFvTdIvYfMlZtOvl@d`@`VbRjTzRzPzPlKfLrO|QjLxNxOnTdRnYzNnVxMhV~NlZhH~OfL~WlLnZdK|Y~Kh]hItX~P~l@|Pdo@xLzc@tLdd@lCtJhLb`@tSvp@`GvPpLl\\tJpVhEnKpKbWbElJzMxXzM`XnXlf@jLvRhO`VpPjVnTbZpRlVbT|Vbj@nl@fc@pb@lZtXl[rXh^~Zz]hYxz@dp@d`@~Xna@fY`_@pVn_@~U??v`@vUzYlPlZlOxYzMzYxLf_@xMjFbBl]fKt\\fIvVzFbYjFfk@dKbo@pJvu@jKvl@~H~_Gxx@lbHf`AzaEvi@xaF`p@hoBfW|v@zJdx@nKriAfObD`@j_@tEz\\pEzhCv\\`LvAf^vE|YxD~YxDtw@lKnqA~P~t@hJxu@bJdo@xGf|@fHbo@zDph@vBzb@|@`[\\~YA~VCfLKvMYpLSfYy@hh@gCbk@_Ep`@wDni@uGp^sF|_@yGx^mHx]}Hth@{Mnb@_Mxd@aOxV_JvTmIjWaK|YoMlXoLpWwLjj@{WnlAum@|JkFtq@q_@fg@iXjm@c\\|{Auy@vuAqu@hkAwm@nq@a\\d^}OrZ}M`UoJzVuJne@sPdYgJzTsGrYaInYaHpb@qIxUcE~RyCxb@oFh\\eD`[{Bl\\qBbZu@r\\i@rPKrQ@tSNbTd@pM^vNf@jRdAxObAnS~A~TrB`TlCrUvC~f@`Ir^bHx^zHlYvGfa@bKv~@vVrf@fOpY`JnLpD~PlFnk@jQbBh@~WzI`aB|g@ldBpi@t}Avf@~|@|XriHb|BhdAn\\reAr]zgAr_@rhAp`@viAva@rnFnrBz{GvhCx_At^`WrJrtCjgA~`Bln@zva@xxOfrAhg@pkAhc@df@|Pxf@pP|_@bMnr@bTpt@`Spo@|Ohj@jLxc@jI`a@jG`r@vIrb@`Efk@fEpq@`Dfc@lA`c@p@h]Rvj@?jj@Ulc@k@vc@y@`_AyB|nD{Kdl@mBvtEaOx}GkTt_A_Cp`AoApeA]feAZxxAtBzj@|Abq@jCn_AtEd~@hGd\\dCl]vCln@`Gxo@dHjh@nGpd@lG|WpD|UvD|i@vI|l@pKtq@vMnw@nPri@dMnl@zN|sAz]zm@tOrzAp]psAlXbVvEtp@bLhc@|Gtb@hGni@pHri@rGlr@rHhq@lGfvArLzqGdj@p~Jxz@t{A|M|j@xFvj@xFlh@rHpSzCfUzDf\\fG~]pHtYhHbZfIlXjIbWpIhn@xUp]~Nl\\jOpVzLjl@n\\~k@b_@lh@p^lg@n`@zWxTjX|Utq@~m@t}Ad|ApdC`eChOpOfmAfmAzaAz`A~z@|w@xq@tm@rWzT~d@d_@lRhO~W~Rp^nWdYjRdt@fd@t_@jT|_@jSpb@nSde@lS|ZfM|[rLjZlKbk@dQ|f@dNbWnGd[|Gz^fHb`@xG~c@vGhg@|Fr|@hIjy@|Fnr@zDls@vCloAbF~t@~Cvu@nDzt@bEjv@|Env@xFvu@jGd_AfJp~@xJrh@jGnd@`GbDb@`uArRxbAzOjeAbRraAlRtaAhSfbAtThlAvYnfAdYlx@vTbx@~UfiA`^tiAv_@ho@bUjo@bVl~@|]r~@f_@dn@xWdjA`h@jjAvi@df@~Udg@`Wfg@bW`f@dWrmBnfAztAzx@zWlOt{@ne@fYvNra@zQfPhHfQlH`b@vOrg@`QvRhGt\\fJr\\fJxi@~LjTdEhUjEbUxDvUjDtY|DpZhDlV`C~\\rCp[tBhq@nDjbCnJfzN`k@t~AnGbd@zAxLV`f@~@zTFzUGjWi@~]cAx\\eBlb@uDtc@yFjb@wGzToElUeFnQiEh^kK~q@{ThgAa_@vsHygCnjC{|@jy@yXlrBcr@l}@{Zl^uMtZ}Lf]gNr\\{Nr^oPvt@k\\zh@gV~_@cQza@uQ`b@kP`_@}Mv[uK~UsHlZ_JdUkGh[eI`b@{Jr[yG~[iGd[iFlUkDzTyCb\\iErYsClZcCxHk@rUiBt[uBfk@wBvc@kAp[_@jk@K`hGfAtMB`JBjfBb@vz@Hnb@R~k@XzQZrPh@hMj@jMr@zMfArLlAlMzAlMjBhMnBvLbCrVhFpZzHbFzAhJnCvOfFf\\bMjS~IvNjHr]pQrXnPvKhHbNlJzHjGfB~AbCzBrNlNpeBt}Axa@x_@jh@jg@t\\j]`z@rs@bM`Kp]fVxOtLdj@fd@xuCj_Cjm@pg@beDnmCfqHfeGjo@|g@dW|Q~_@dWfQlKjRhKxNpHtQrIlXjLbZrK`QxFdWvHta@rJ|YvFpUlDvZzDrZdCxU~AhWz@xT^`ABtPD~RMtZg@r_@uAfU_BlWoCn[iE`i@gK|TuFvSyFlh@_QzYkLpSsIfY_OhP}IhR{KzQuLnR{MtP_MhTaQbT_R`UaTfTuTrUyWzZu^`w@k_Alk@_s@ji@su@vLqOhj@gs@rT_ZvUqYhQkSnL{LxLgLxLqKnQuNtRgNjY}PfOeIxP_IfR{HvOeFbK_D~S}EfSyDrXyD|QkBxTuAtTq@pPGpRTlQz@hJb@|WpB~Hr@hQ`DvFbA|RxEfUpG~R|GjS`IpNpGrPzIvc@|VjKpGfh@`[lNlIlOfIvSpJtT|IdUrHrStFzPxDtOrCbOvBj[`D|Mt@nQp@fPJ`TK~Ro@tP_Ah`@cEz`AwKj~BcXxyCc^`zC{^thCo[hsAkPpuDyd@d\\aEbtAoPjy@yKnf@_Izg@{Ilc@qIrc@oJzk@{M`k@{Ndl@aPrgA{\\xcAi^tm@yU`@Qnm@yU~yBe{@`bBoo@doAef@`mC_eA|~A_n@bhBmr@tc@}PxKcEbj@iShs@oUhp@sRn\\uI`_@aJfn@aNtl@_Lns@oLxPcCt[eEfe@qF`r@aG~u@{EzgAwEdoAoFvgDqMjbEkP`wB{IjaB}GvhBsHvlAmGns@cFrf@yDz[kClh@_G`g@oGfw@sLpg@yIlg@eKz`@yIf`@sJ~g@iNpa@{Llo@}Sxf@gQzj@cUz^mOx_@yP~^kQ~_@uRzWsNhWsNjh@qZzBqApY{Q~YsRjr@kf@fh@e`@xQaN|g@ob@|y@gu@hf@id@fp@oo@bCcCtiAoiA~n@oo@hl@yl@f\\q\\f_A_`AxOuNhn@gk@df@{a@vn@me@lG}DrXqTdf@}\\|c@mZpQaLn\\kSza@gVra@mTxX{Nlg@qVdj@kVpNyFpTyIti@{Rho@cUvt@sVjRkFtOkEft@kRjt@aQnb@qJpn@mNjYoGrSuEhf@wK~u@wPz{@uQvu@qPjj@sMxqAqYxtAo[xe@yKptCop@~lC}l@zs@cPtb@cK|PuD||C_q@jKqC~^sJx]gK|b@aOh[sN|R}Kxa@iWbUiQf[{Xn]s\\fnAuoAz}@a_A~uCczC`PwPrRwQ|FaGruCuyCd{@gz@~Q_PxRwO|MiKbRoMpX{Pn]yR|b@}Sdv@i[bWwJjHqCzPeGt|@q]dk@wTnR}FvR{EdQgChSqAbTPbOt@bSpC~InBnIxBlH`CjIjDtMtGxK|G~KnIxKfKzJ|Jb`@he@tn@rr@db@fd@fOtN|AxAhKhIfK|G|MpHfNtFzIlCrL|C~P|B`PbAlNDjO_@`S{B~UgFlRsGjLyGnGeEnHeGnFkFpBmB`NsM~c@gg@jk@kp@pl@}p@xXu\\t@{@~We]zUq]xF_JxOaZhKqTxOk]rJeUn_@u~@pNa]`B{Dzt@ahBrBkFzD}JvEwLlPi_@jRs_@vUib@xVeb@rn@gcAnm@geAr}@qcBlZem@`a@ky@lQ}]rQy]tPoZ~P{[pSe_@pr@khA|K_QnIsMzDeH~AwCz_@wp@h`AorBdHsWn~@ciDhRme@le@mkAheAebBpTk]taBejCjTe]taBajCjJcOhHgJxZu`@xhBelBfT}U`EwElEyFxEiH`CqEjCyFvBsFjBsFzVw|@tI{[pBcIbB{H~EiV|BuMfF_]bAmFlAkEbA_DhAcDfBcErD}HtAcDdAqCv@mCpAyEfy@muD~@mDbA{DjAmDpAyCnGuMrVsd@hHuMjCqD`BcBpB_BfBw@`A[`AOnAIlAAhADpATzAd@fAb@x@`@xElDrEnEpI`JjF|EdRrO~VvQn[rU~VjRbVhRf^f[`oNrdL|XtU`ZpUbH|Fd^~Yfk@je@vtAvhAbK`IhQbNvFlE|GlFv\\hY`At@pa@n\\vZ`VlF|ClDdB~B`ArBp@`Cd@dBVjBTvBJlB@tBI|BOjBUrBc@dBe@nBo@xAq@lVwM|OqH~B_AdFiB~E_BfIoBvOaDpgAmS`|B_b@d^mG`^kGf}@iOvb@eG~rC}_@`TiDdMkCxLsC|LoDxLwDxG}BvHsCrY}Ln_DuuAh[iNxSoJ|H}DjHwDhI{EtH}E`EiC~PyLxJyHlKwIxMyL`M{LzNyO~H_J|FoHtGiIpFwHfGqIpDqFrEcHpHeMtHwMbHqMjHsNvGqNdGcN`GwNtGuPxt@gpBfEuKdCmGrCuGjC{FzFeLnHoM~HaMlIeLdGiH~FmG`K_KvJeJhq@wo@RSfcCe_Cf}A}yAjWuVjE{DrD{C`DgCxEkDdEuChEmC~EsChEyBzEwBdHsClFkBxPaE|SoDlWcD`bAwMrs@qKlKuApIuAfLwCpMgE~JqDpKkF~HoExGaEbHoEdHsFlGsF`GyF|FkGjFoGxFoHjFsHhFmInEuH~MeXtFqJpwD__IdEoIhJcQxCqErE}FvDiEnMsMhFmEtEoDrGyElGyD`EiCtEeCvFcCfPsFxFcB`FwAxKaC`IsAdJqAbjHkfA`g@oH|ZgErh@uFlh@}Dj~D_YpbDgUxN}@vS_AdNi@lSe@nRMvFCjAAtM?xNPzNV~Sj@zT`AzO`AdSzAvWdCtXnDr[bFvPrCzQtDj\\xHl^vJ|PnFxSdHfTzHpPzGfP`HryA|o@xq@xZzq@|Y`TzIpSlIbk@~T`e@dQne@zP|p@lUd[lKpi@|P~QxF~VxHnfArZtp@|Q|b@xLpb@tMvTnHdTtHnWrJjW|Jnh@vTvSpJjSvJpPjIbPnIxRlK`P|IdOvIbMvHhOfJxOzJ`RbM`UtOhTpO|S|OhStOpXhTxXbUbXlTnXbU`b@z]bb@h^lp@dl@t^f\\lf@fd@jr@tp@`k@hj@v_@x_@~l@|m@`T|TtXvYjXbZri@|l@~~@hdA`WrX`W`XbXlXtMpM`NzMnP`P`NpMze@dc@rg@hc@`RtOzQfOhc@h]j^xXra@bZ~LvIrMhJxXhRpYbRxY|QvYpQrY|PjZ~Plr@t_@|mAtn@j\\bPn\\`Phc@bS|c@`S~`@bQ|c@fRpg@lS|i@tSnh@pR|eAn_@xzA|h@zo@`Vro@|VfZ|LhZ`MvYbMvYnMrg@nUzf@xU|f@nV|_@|Rjf@jWh`@dT|^vSt_@xT~^tThRlLdRvLzUzO`UvO~WvRdW~R|]zYr]xZhb@t`@nVfVbWjWtLdMhMlNvO~P`PvQne@jj@jVvZrYh_@xTjZ~X|`@fn@x}@dSnYlQhWpS|XnTxXnOdRfPnRzOhQjPbQrV~UbNtLbHfG~JhI`LbIpQjL|L|G|KtFjL`F`LnEfMnEtSdGtHnBfIbBnKhBbL|A`LjAvE^|E`@dLf@nL\\jEFxE@rKEvUg@p]iAfj@uCvh@kDrh@{D|i@oFfaAuKzd@kG|RyCxOaC~a@uGza@mHtb@mIlg@eKby@eRraAkWjdAsZptAcc@xZmKzwAsj@~VoIta@qP??ff@kSx|@m_@vAm@lO_HzI}DjN_Gpe@uThu@_^~b@}Shb@wSb[}Ol`@kS~LiGrOaJpKqGvMgJhJcH~ImH`HeGfLmKfKkKrPoRzO_SfL_PzIiMbH_LpNgVhOqYvNc[zLkZ~M}^|Xix@bGoPxKoXjLwXjHmPvHuOtMiWjOyXrM}TbC{DrFyIbKmOdJ}MxJ}MpT_YfPmRnOuPlQmQlQeQlRyPvQaOvP_MrTaOtR_MjRmKdWuMtLuFnU}JpPwGt]aNbYeLtO_H`P}HpXuNvY}Prb@mX|SmNhToO`d@c\\pn@ce@by@ao@ldAuy@p`@k\\ld@k`@dd@o`@~x@it@fq@an@bg@ue@|v@{u@n[u[rZg[rd@kf@b[i]hZi]n]qa@x\\ab@dW}[`Vm[hZka@`Zya@tZ}c@nQiXnP_XxZgh@xUgb@rRg^vQg^vPe^bEcJdW}j@rDoIpIqSdQsc@jNi_@|GyRxFiPdPqf@`HoUlLwa@fNmi@vMqi@bGyX~FaYzDkTfB_L|AuJdEk\\jBoT~@kN\\sIj@oL\\{MR{SC{MGmM]_Pi@gO_AoViAkUyC_r@mAgd@AyCMaRLkS^uOf@eNnA{RjAuMzAiNxDgX|E{U`FiSlFiQnI{T|L_WnLwS|N_SpIoJxMuMhH_GdIeGrFsDdGiDxFqCtKeFdMqEfsDylA`VgIrQ_Gn\\cLnZqKx`@mPxY}NhRaL`RgMpRoNzTuQjd@c`@bk@ke@vUuQhRwL|PwJhNwH|QwIhRuHdOiFnSkGfTcF`T{D|UwCpQcB~TkAlUe@rRFlQVrQn@nPjBvQ`CtS`DnRvDrPtE~UfH`W~Iv^zN~n@fVdq@bXpWrJbRnGpPzE~OfD`FbAbPbCnRhBvQpAha@zA~\\|@l]fB~QpBbP`CpPjDvTtGzPxGn[nPbV|PpSlQhOzOjNtPdK`O~L|RrNlX|JrTrKtYzGfSjIzXvJb]dg@xfBzPhn@tP`l@vNnf@`JbX`H|QrKtVjJ~Q`MfTtJbO~KnOpNxPvMbNrUbU`j@fh@bKtJzSdSfUjTdZjYfK~KnJbLbC`DtJjM`K~OxJbQfIhP`HlOfKxWnLh]x@dCtL`_@xGdRhGfPhEpJlFpKbFlJzC`FrBbDnLtPxNzPhHtH`EnD`JjIhMvJpRrKfNrGdM`EpP`FbM~BbL|AfM`AzQh@~KC`PW~Ws@|j@}AzvB{Gva@g@bNNfRnA`Jz@~KfBjMnCbKxClLdE|JxEdMbHjHzEzP|NpIfIbJvJzPfTnVz]fRzZjj@~u@lXv_@tRnXlPtTlQzSpTvTjQbPpQlNzNtI~QlIzOpFrLdDvOzC~RnCrCPzIh@nODjLMdNq@|MkBhMeC|OoDvJqDjNwFxXqNxg@gW`x@oa@pQiJxQuGnNmDtLkBzKqApKw@nMQ~PH`WlAbJbAbJlApOtD|NjE|eA~[vu@zTvAb@`B`@pHfB|OvDh^vI|OxD`s@fMtm@lIv}@lJhJ`AhJXbRW`QoEl|@sGlPgApn@gE~f@aA~p@kCnDMpaCmHhSi@v`@gAbc@_@~_@@`f@HzZZtf@fAjP\\rv@tC|k@|Bzp@zEj^xCd^dDjl@~Gtp@lIti@zHzj@pJdv@tNdARlDl@|aAnSzX`Grs@nO`n@pMds@dOn|A|\\tqDxv@`gDrr@vqB~b@ll@jMrv@fP|i@fL~s@lOtq@vN~p@rNjrAbYjwBrd@`{Ble@jd@rJnd@rJj`@tItU~DtRtCtUjCxb@vClW|@~Yb@|VNp[SrMWdc@gBnNmA~PiBvb@eG~HuA~ZqFrc@iL~XwIf^wMpXuLvLkFxg@qThl@kWvj@aVrVgM|c@eTjQgIjQaHdSwGhPuF~SuFjTeEtTaErQoCdTeCx[_CvYoAtYUpSZvRZj[l@pUlBtUpCb\\fFra@xIlYbIzSzGxQ|GdQnH`RtIpWxMb[xQpSdN`O~KnVdSbWzU`]j[l`@l^zf@|d@tk@ni@ntA|oAvd@vb@|YnXxl@tj@tK~J`MfLh~BrwBl_CfyBlhA~dA`x@rt@tz@lw@z[jZf}@hz@dyAltAdg@`d@|b@d]`GhExNlKn[zSlWnOpYdP|W~MnWnLzc@|Qj[|KxWjIdHxBrWpHve@nL~YhGnQnCxO`CxU|CtYtCl[rBrWhArVj@zWPfRC`RQ~V}@~TkAjH_@vWuAhM]|Oc@b_@[d\\PtWb@jUz@~]nBnS`Bna@lEl`@bF`v@hKxq@fJt`@hFlMdBza@xFnc@tFbWtCrRz@bQJlMKtQeAfUaCrOsCxMcDtUgIzPkHlPaJzQsLnQyNnXqXbp@ar@nRoPvNiKtLsHvUcLdX_KdTqF|MgClNeBhPoAvLa@xJEpORzSlAzNbBjOpCj`@hIxT`FjnAlWxbA`TbVdF~d@vJnd@`Jx`@nHxZdFl]bF|p@pIdw@zI~_AnKltApOrt@fHf\\vBtYrArIJv[b@xDFnWFlUIvg@gBnd@gCfc@gDne@{Fd}@qOrlCse@pf@yI`eDql@`{Baa@d|Boa@lQ_D|`BqYth@oJjZsFnQ}Cz~@oP??tlBe]dcAsQht@kMvr@oKr`@{Fhk@qHvj@eH~~@_Kjd@kEj{@wHfy@iGdn@qDzCOta@{B~Mo@jKe@|f@iBby@{BnnAcCh|@o@v[EdWEhRAfULbRHrU\\tQHfZ\\nk@~@vs@pB`FNvJXx_@jA|Ux@nk@nBraAzCreA`Dr}@hCxf@PxX[zRk@zScAjWoBzT_CnVgDhReD|\\qGh\\gIh`@yLpc@aQr`@iQnGkDjS{KjWoOfK}G|\\sVbW{R~UwS|UkUnVqWtQaTpQaUjVk\\nXqa@by@inArz@ipAlSsZjRaYxPiTzN}PrN}N~OqOdRaPhR{NdNmJlVeOrR}JzSsJdTwInJuCxEaBfWyGzXmGpMkBbZ{C|T}AbPk@lQUjRDtTj@nWtAlTzB~PhCnTvDj[tH~o@pPdq@~Px`@bKni@pN|e@|Lf]vH~TbE~W~DzTrB~UpAzTn@lRArYg@bZoBfb@}Eje@uJj]kJlXcKf]wP|Aw@|YiOz[gUx[eWrb@i^nc@w_@|e@ya@dlBoaB~lB{aBtgAk_Apc@s`@hd@u`@lq@gl@bQiOjWkTvSeQpXiU~f@m`@bb@aZv`@aWzYmPxXqN~c@qS|a@qPdi@iQtc@}Lxj@aMrc@oHr`@gFvl@aFfc@yBza@{@ld@OxY\\v]hA|jAdHfzArMxJt@dg@fEj\\xC||AbNpp@tFdd@|Dz_@vC``@lCn`@vAte@Z|f@cAn[kB|`@aEnc@iHtd@eKt]iKfb@sO|a@wRvp@i_@bU{O|SeP~ZiWbUyTl`@{c@lZk_@tP}UfUm_@~Qa\\n]cq@pRw`@vIuPvWcf@lZqe@d_@gf@f[}\\jXaV|XkTzTkOvNeIr]cQxa@kQjb@mQza@cQteAuc@ljCehAbd@kTrb@aVvc@mYf`@{Yr]aZzYiYrg@ik@rl@uu@zl@cw@pd@qi@xb@ce@`e@kd@ff@ec@jXaUvQwNzNwK`l@ea@fYqQxQeLbh@kXto@yZhl@yV~w@wYt`AaZj|@mV|cAeXnVmH~m@eQ`WcJ`\\yL|UiLtZkQxM{IvLeIjSkPhCuBhWwVpc@og@nV_]rU}^xVue@~Xmo@xMi^`Ma`@|Q{q@tPau@rGaZxHu]xIq^|Jq]zJ}ZlNi`@tQub@fRk_@xNeWz]_i@~NsRtRyT|Ze[t[mXvT_PhSgM~ZmPzY_MjYeKxXyHxWuFpUmDrVqC`[aBfWe@hQD|Yh@p_@rCf]nEna@dItOxEnUpHfj@hR|a@nMnXhGnSvDzZ~Dr\\dCxZj@dXJpP_@fNq@nY_CpZeEpViEdUsFrSgGpa@{O~ZcOze@cZhZ{TxVgTbu@}q@bk@mh@|x@}u@|a@s[`SwMdVkN`VmLnZ_Mvc@aNnWyFd\\gFxVkDht@mKne@qKva@{M|XuL|WeNnS_MfWgQnW_SbXiT`SuPpVqTvc@w^j\\wVhRqN~NwJn\\oSf_@{Sxa@cS~h@gUjYkKf_@{LbQyErVyGdZuGh]_G|WaEtXcDn\\aDxZsBph@uBdUYz^Ohk@h@hi@nA`oB~DxoBdEloBbE|nBfEvMLhnAnCr|@vB`eAbC~`@p@`b@`AhnAdC`{ApCvqAxCzs@|A|f@r@pQBnr@y@nNw@r^oBpe@aFrf@aI|_@mI|WmHz_@eMla@}Obk@aXrk@m[fH{Dbt@ab@tn@_]fa@_R``@{Ova@_Oz`@cMjn@kPtn@gOtaAaUtu@_QhKaCb}@gSdjAwWthAkWf_Bq^hm@cNfp@kOn~@{Sdj@wK~m@kIf]{Cl`@mB|n@}@pr@vAvo@lEzt@~Jfm@jMp`@~Kvg@rQr`@vPtg@rW`e@lYle@l]xVvSpWhVh^v^xd@zi@~~@lkArt@`_Al]bb@dn@|r@lr@jr@vr@nm@`y@vo@t|@dr@jtBb`BzkFbbEtl@fc@dn@x_@zZrOj_@rOh_@~Ldd@nL~c@|Hpd@fFt`@xB~^p@f_@Wpc@{A|i@_Glh@wIfUiFt}@mTjc@aJv_@qFb^aDtb@gB~b@O|_@p@dp@lEpa@vDb_@bEjBRhb@pGze@vJvh@lNn^|K~_@xNn_@rPd_@fRvk@d]v\\jUlb@~[b\\dYz`@l`@~_@lb@jY|]vt@rbA`[vc@~d@rm@tX~[|\\p]nb@d^jVdQ`UzMj[bPfP~GfSzHp^dK`a@`Jbc@zFt_@fCv`@p@h]Ux[oB|ZcDj]_Gb[_Hr[}JjSoIzKsEpCkAnOkHpEwBx^gUt]uWvRcQ~QeQls@kr@bOaNva@{]d|@ip@rVePr`@mWjg@kYdc@yTbj@cWp{@y\\|~@aZzt@wQxh@sKz~@cNh{@wIxx@aFlrBiLxrBoLvdBmJ`hAqGzgCuNvwAsHfj@cBdb@g@zd@A~c@Xp}@jCdm@dDvk@zEv_AxKlmAtS~{Ax\\b}A`]ti@nL`i@xJ|q@~Kpr@lKjp@~Hxy@xIbiArItf@nCtf@vBlb@zAjb@bArdAjAbe@D~g@Qdp@s@fSe@hk@kBvl@gCvl@eDzIe@`RaAba@yB|lA}GvyAyHzq@yDx_@}Bnb@uBpd@kB`t@eA~s@Hpp@f@|e@bApaAhBlsAtBhsAfClhApBxhArB|p@`@xm@a@leA}CfbAkGfo@oG~o@wIx`@eGdO}Cld@iJfw@uQjc@_MdTgHju@cWnj@kTxk@cWdn@wZl{@af@dvA}v@xr@c^p\\sN`\\yLh[{JnPkEdb@_K|XuEfEs@f^{Et^{Cx\\mBvu@mBvhBy@xi@aAxy@sDba@yDxMoAno@cJ`De@tu@qNnImCbOwEjN_EtFiBbBi@pKiD~\\kLlh@cSvcAec@`f@gSt_@gOz|@c]bI{BjLcDlVaFxWcEhDi@fXaChRiAlO[pOKtRNrSt@jRbAtQhBpWpDnOtCxb@lIvi@zKjs@`Npi@nLdc@lKzVjF~`@pEt[xBz]f@`a@eAn`@gDt_@cHh`@{LlXwLde@iWd[gPva@gRd_@cOrVoIdNqEtk@uOxnAkYdb@uJrb@{Jza@cI`e@mH|u@cIjsAuMduAgN|AOdHs@xVgCz^wFtg@wMld@{P`b@iTnc@iW|WwLzWiJvX{Gd\\yEv[sBn\\_@jZdA~YtCv]pGlE~@h]hHn|@dR`o@jJlb@bDxc@rBvp@zCjrArFfm@rCxa@hDv^lGhVfGl[vJ~c@hRfa@`Tn^dVpZlVlZlYbYp[to@zy@tZh^zXrXlq@jj@vx@~n@br@pi@~OdMjl@vd@zc@t]tt@zk@ve@|^dg@p_@rZdTda@fWlMrH`t@`^rc@bQ`e@bOvt@nQhe@rHnq@xG`[fBt_@bAho@Axq@mBdfBaIdcBkGjq@cAvu@Ojd@Xf_@t@xt@zCbu@`Fl\\zCxAN~J`Azq@~Htz@`LrfAfO|TlDjr@jKzeCb^hf@dH`~@jN`|@zNje@zHxe@bJbe@~Jjn@tO|k@jPpgAf\\h~@xZxPbGfSdHlg@zPhrBps@fZbKfHbCju@~WniC~}@h}DluAjlAza@~cAn^vXvJrSjHrh@pQ~IzCdSfHvx@bWnj@xN~NlDd[zHfm@~Lrv@bMru@pJ|q@hG~e@bDpk@~Bh^v@fj@h@dk@Qp`@i@``@}Adn@wCzWsBnZaCdX_Cvb@wEnnAgP~oBaZz~AgTfW_Dxk@_G|_@yD|d@aDhk@yCnU_AxZs@t^oAjdAi@ndAx@xdAvClpAxH`h@rEhnA|MxdCf[jxAzR~`Cl[htCz_@v]vEdiFjr@tjBpXzb@vFnf@fHjt@tKhnArQnh@bIntBv[bqB|ZnpCnb@v`Fjv@ziCda@vkA|RjgAjRxu@nOn`@`Jxy@nSlfCxs@hhDveAzvBlt@fdA~`@n`A~a@zz@ha@xaAvh@~k@|\\bl@p^vy@nj@haAbs@x|@|q@jd@f_@dg@t`@dG|Exa@l\\~}@pt@dz@dq@ts@fk@tqAfeAdi@zc@fk@rc@~r@~j@~X~Tpv@bn@lv@`n@~u@xm@tv@dp@lXdWrVdV|]l_@|Xr[bZt^pUj[xVz]t`@xm@fW|b@nTza@f[ln@pWvj@xRje@pOda@`Whs@pTxq@|Mvd@~T`|@rMdi@pKvh@nYz}Af\\htBv[`xBxDtWzYflBtUhsAjQh}@|Ntq@fGdWxPjp@~Vd}@x`@`nAxUxo@l^v}@`S|c@zX`l@`Wxf@th@r~@~a@~o@|e@br@vf@bo@|a@rf@j\\d^|v@|u@d{@xt@|v@fm@f|@nm@jaArm@zHtEbl@x\\bkBvaAbTbK|o@h[tp@h[hPvHj[pNh^bPxe@~Sl`Azb@ln@vX|CvA`Q~H~P|Hj|@l`@br@|Zvl@bXvb@lRjg@~T~q@zZ`]rOrGrCxCrAbnB|z@fg@`Tlx@n[fi@|Q~d@lNnc@vL~h@vLjy@~N~d@pG|e@dF|NnAzd@rCpUlAnd@tAl^d@tb@Cxg@c@je@mAxaAeErsAyH|\\_Dt_AkGzi@mCzZiA~]w@p]Yb]B`c@l@x[`A|i@fCpYfBdb@hEjOzB~HjAjx@hLln@jMd{@vTvs@rSx`@jMzj@rQnw@|Ut^jKl`@~Jha@bJdUvExNvC~[hFrb@`Fli@zFt\\pC|g@zD`h@zDf{@fG~n@nExp@vErb@tCpc@rCbt@vDj^fBfX~@tc@nAxDJtn@tAfq@p@r}@Cnr@y@xf@y@lj@aBf`@cBfYsAph@iDrt@}F~`AwJ~{@eKjr@qJl_@{Fzr@cLf`BmX~bBaYb`AwO`M{BdXsEh`@eHpj@cKv`@mIhb@{Ixf@kLxu@sSjHqBfd@yN`k@_St_@aOdb@aQf_@iPbh@sVli@mYbv@{b@r~@ok@fpAoz@hoAiz@x_@mVnc@}W~`@qTzm@iYhp@wWfn@wSxm@qPvg@eLxe@wI~j@aIl_@{Dpa@yCj^gBbi@qAhc@]~b@b@pi@~@|Zx@j_@vAreAhEz|@`Drm@zBri@pBhPn@|pCjKfgB`Hdh@dC`Yr@fs@jCj~@dErjAxFrkAxGfrAbKfcA~J~]|D|a@bF~{@zL`sAxTfrAxV~rBlc@ftBdf@pFpAp_@bJdz@xRhi@xKvb@xHfl@jJhf@`Hje@pGn\\tDx^dDxd@xD~c@zC|i@zCbq@dClc@~@vr@x@vb@Jn[Adf@i@|[[|vC}JjnCeNtwCuLpqAaE~wBqFnz@aBl_AuAndAoAzh@a@ff@i@`g@Mpm@]hn@IteAA|k@Rne@Hbl@V`r@Jpp@Pl}@Jv|@Uju@a@vq@u@dl@oA|d@sAnk@uBlt@eDbg@uCpl@}Dvf@wD~a@sD``@uDbe@aFnMwA~h@qHvs@gJro@cKry@cOxj@{Ktf@yKpGwAva@sJrEeAbl@qOnp@cS~p@qThp@aU`o@kU`u@{[|iAug@tz@aa@d_@iQb_@}Phs@e\\hx@w^jl@mWnt@yZx@]ja@uPzg@oSrj@eTbf@wQxO_GpdA_^hc@cOpwAsf@vWwIzgCa}@xkByo@dkB}o@dz@sYzz@kYno@}Slh@kP~n@eRbn@wPz_@yJx`@wJfi@cM|i@yL|q@iNjy@_Olj@iJ`q@aKzm@mIlh@sG~b@_Frj@}Fv{@{Hlt@kF~l@mDl_AwEpaAcDx}@aBje@i@pe@Mjm@\\na@t@fTx@l^nAfX|Ar_@pCdg@xErm@pHrk@~Inj@lKvl@vM~o@`PzlAr[joA|]|NdEdvA`a@ju@jUvs@`TvoA`a@fy@dXj|@dZfuBht@xt@zWft@lXxq@rWv`@fPzQvHrPzGfgAtd@nr@|[n_@zRp_@lStl@l]fk@|\\nl@r^zb@nYdk@fa@xjAb}@pdAt}@zgA~eAbjAdmArv@j}@rv@z`Axa@hj@z`@nj@d_@pj@dW~_@dTr\\hd@zu@jXle@zXdg@jT|`@vKhSrP`[dN|WtUfd@vVpf@xWjh@`a@fw@nm@|jA`]do@j[bl@rXpf@jU|_@fRzZ|Rh[`PlV~]`h@rUd\\``@bh@xPrSh_@tc@nZj\\~TtU`YfYvXtW~`@`^tc@t^lRpN~ZlUjv@fi@pt@rc@nq@j^xX~Mhb@vRh\\dNx_@jOxf@tPvi@~Pxd@nMpi@`Mxo@vMdl@zL`p@`Jdm@fGlh@hEbz@hEtw@pCxiAxBp_AbAnk@`@xv@Upv@|@fzAtCdfE~EnJJ`b@b@v_AtAzyA|A|bAx@rkAxAzzA`Bdk@v@nn@jB|W~@hZdB~\\xBb`@dDvZpD`]fE~i@jIxv@bOtc@|Jnk@fO|l@tQjt@dWfi@vStjAti@dwArv@|HfEjeBhbA`iBncAhqAhq@`n@l[xe@zUtcApd@la@jQxc@~Q`t@dYvp@xVjh@fRfa@bNl]bLrx@|V~_@zK~]zJdc@`Lla@bKtqAnZdwAnZn{AhZf`A|QbaA`SbbAbUh{@tUvc@vNde@xPjbAta@l{@xa@fbAlj@|TrNtXxQtPbLdThOrbAdw@jfAlbAv{@b|@fGfGt~@heAlj@`p@vy@p`AtnAdvAls@zu@riApgAvq@~m@bhAp~@dg@x_@zZzTvaAfp@`UnNjp@z`@hw@nc@zj@nY|k@tXhd@jSl`Av`@jj@~Sjj@|Rpk@|Qpi@pPx_AzW`bAvUj{@hR`RtDpXdFzVnEzZhFhp@hKxr@pJff@xFrc@xExy@tH|h@hEjVtA~T~@|Qv@`e@~Ars@|Brg@|@xg@l@~n@Nha@Gdc@Y~d@w@fd@}@fi@cBj`@_B|l@gDln@{DhmAsIxqCcUvdCkSdyAyLnxA{JdwBwRzxBiQheBsNnc@oDrjBqOtmB}OtaCyR``AyHr_A}Hhv@kHhs@uH`p@oHt}@kMhd@uHr[wFdzAqZhsBwc@htAgZpdAuU`bAqRfEw@|_AgQv{@{NfiAkPvC_@fz@kKfgAmLtmAeKleAeHffAyFrPm@~{@eC`Mc@|q@kAj_AiAfvA]~}BAlpCNx~BQlyAu@fwBgC^AzlByDbeAeD~eAsDlb@_BjmBsInpC{QncA}G~q@_Ft{@wFtn@sEvlB}Lrz@kGzv@{Gdv@qHpi@eHjk@_Jjb@_Ivg@yKzi@_Nfc@_Mpo@}Sh_@_Ntf@{RffAee@zkAsl@|fBe~@xcBe|@dh@mVvY_MzVuJhAc@hk@mQjd@yKjh@aJh]iEd\\_Dp]kBj^q@l]m@p\\Nr\\l@zw@fB|v@dBdc@`Aj~@jB|_ArBv]t@zLRzCFdj@dAlKd@lr@`Bta@fBj]tBba@lDdUtCjX~D|a@`I\\FxZhHf[zIj\\jKx\\lMp^xO|b@dTpUdM~S`N~d@~[dYlTde@da@lx@dw@`zAv{Adz@l{@v_AjaApKvKbTrT~m@zn@flAnmAxoA~pAz{@f{@rn@zl@nn@bk@hn@li@zaBrqArl@~b@ps@dg@tuAj_Ax_@fWbqBjrA`rCrjB|nCjhBvfB|jAxxBvxAdsAx|@tVvP|m@d`@nv@pg@p^bVfy@ti@v{@hk@lwB|vAp]nUnpB|qA`uBvuA|{@rk@``@lVvXxPzY|Pv_@tR~ShJlMxFde@`Q`^rKp^hJdo@tLtc@rG|i@xGtx@vIfEb@lEb@fk@~F~~@rJnrApNra@~Dld@hDfa@lBz]t@dg@Fh]w@nZyArj@eFzc@sGva@aI|a@sK|_@qL`c@mOtFwB|f@ySzNgG~j@wV~HkDnyAko@z^mPr\\cOzo@q[x_@cSh]kRx_@mUn]cUvb@wZz\\yWbZyVjSiQt`@s_@|^e_@lb@}d@ht@cz@fu@c}@tS_Wf\\i`@v\\w`@hVsXxW_Zxh@ki@di@{g@hVsSnWuS`YwShUkO~RaMdRaKnN_IxZkN~CyAt[cMfVeIpZ{I|SeF`VcFzNmCrN}BbJsAlKuAhU}BdT_BnNm@lSq@bTa@tVKjW@lw@hAxa@n@vb@FxRK|R[fXcAxMw@xMeArZqD`KaBbLeBbWqFbOwDvLqD`TuGfQ_HzFaCnKqE`M_GzPuInQcKpOwJtNyJ~McK`OsLhQoOrRiRlZk\\xTwXbCgDlXu_@b]aj@jP_ZfXkh@tUgf@zJwTlJ_UbYwq@zTmk@xiAs{C|Sej@bWgo@bPg`@lPe`@fSkd@dWyi@fQy^|X_k@vTka@fTu`@jZsh@xZeh@rYyd@nZqd@bUs\\~]ag@t^uf@Xa@l]mc@r_@sd@dPeR~OaRtW}Y|X_ZjPqPvMuMdS_SvMkMn`@i^`UeSbVgSfZsVzZcVbYiT~YmTxZsSha@cYzy@kj@xp@ic@fwA_`Alf@y[je@e[vm@ma@dIaF~sAm}@`{AibAft@af@ta@wWlg@{\\jaAqo@|yGwmExh@u]fqBirAzt@kf@z|AwcAds@ge@rQsLbRuLpNsIdRiK`LyFhSwJ~g@wSvtC}fApHkCd\\kMfpAcf@hfDsoAtj@yS|cAw_@nr@_W~pAgf@tc@wPv^_O`O}GpMmGjVgNfNiHhMgH|y@uf@b|@mh@dbAil@rb@wVpb@iWlj@_]|SoNnMqJlMsJzNwLtLkKlLoKlUgUvQaStC_DhYk]tXu]|^_f@~]me@jq@w{@pZi^`}@mpAju@ubApsAegBhb@gj@puBgqCvn@oy@hUcZ`UmZzw@ydA|tDu`FvW_]`pBqiCdcD}gEfUmZvTe\\db@gr@r`@}v@t[ss@~Mu\\lMs_@lMw_@lMsb@tSmx@xSwcAzMmz@bMq_AdJccA|HejAnJyzAhJytAn@kKfByW~f@_wHx_@m}FpXgdE`Q{mCjDsk@nEip@jNysBtFgy@`Fax@dEmq@`MkkBlNmsBlOgxBlFcm@~Gil@zIgn@`Hub@tJgg@hEuT|Psq@z@aDbHuWjTsr@rQ}f@xZgt@d[mm@rxHaiNtmAo~BblA{~B~n@woAxYch@fYwc@zZ_c@fYk^b_AoeAnZi[d^m]vuAkoAl`Aqw@p{@_p@daA}n@jo@a]t`@mQdW}Ipw@wVld@mMfoCam@~bAmUld@iJl{@ySvaAwVflAuZfyDybAhtLa`DfgA_[zZeJtKiDtt@eZnr@qZ`yAqq@vx@e[vm@mPxa@cI`a@wFtYeDnYaCj`AcEpk@uAl[w@ttAgDhcCqFzuHcQt_AeB`\\m@xW`Atb@rAtc@xDn_@bEfZfFpg@jJx`@~Kbc@xNbi@fT`XdLnFhClj@zVfRbKfpAbn@ju@~^p_@tLhb@vKz\\jGhg@tFhXpBn`@j@vk@iBfP{@dSeChTeDlNsCnU_Gla@mLp\\}K|a@kO`}@e]`NgFhpAkb@nNiFzv@kYfOkFhj@eSlZ_LrReFhS}Dlp@kJbgAiM|w@gJl{@oKv_AkI|wAuQtdAqL~b@{Eh`@eEf{Hg{@lk@qEr_@}BbXg@j]Znk@xDbrCj]hIrAvBZzYvEp}BlZnMpBh`Dfc@l|I|mAnc@lGdb@`Dn\\|@l`@Kdh@_C~o@{GpIiA~R{EzW{Hxc@wMzd@sNbx@uVtw@cVngHgwB~xAsb@bVcHrtD_fAjSaGnhGaeB|v@aVn`Bwe@~NmEp~Bon@`cEajArf@kOlQ{FvUiK~j@}ZzBmAlhOiqIlsH}hEp_F_rCda@}T`OgHp\\aOp\\gLpY_Ij]iHzXyDj`@{DliNss@h}@wE|qPs`AxVwAjfOo|@nzDeSry@cEj[]n_@j@|^hBxf@`GhmFdz@j{@pMnfDpg@h`@~Fd\\fFld@hE~YvAjU@nXWnYsA~d@mEjNiCrNiCfW}F`XaH~WqKrCiAx`@yRzc@wXve@u_@l]w\\vV_Zx\\ed@|Uw^rm@ybAfa@_q@rm@yy@rLyMxZ}ZvViVnWkStZ{Sdb@_Tx^cPvb@}Lpj@qLz~@_PhuA}Trv@eO|q@mQvv@iUhq@wUlg@iRxb@wRxe@gWn_@kWpZqVlZkYb\\e_@n`@{j@h\\yi@dYwl@`Zuu@jOof@zOso@~EuT|EoWvJko@tH_m@hHis@tM}~AzB_Y|F_t@zJwgA`ScmB`WqtBvNgbAhPceAlMuw@|Kkm@xTggA~Okx@tQux@hg@_uBpa@ozA`c@y{Ax|BiwH|{ButHvdAygDn`@uhA|d@yjA|s@}xAbc@mv@dMiQda@ak@lh@so@ptAqwAr|AcwA|fBkaBrn@yo@lk@{p@~p@_|@~f@{t@~j@m}@hi@e|@hq@qiA`p@scAf_@ki@~\\_d@db@mh@pf@eh@lc@s`@dVwS`e@{\\`l@{^|}@we@paAwd@nmBm|@v}@_e@tx@gg@~j@m`@vt@on@vd@sc@nk@qm@xw@g`Ahw@meAdl@{z@xo@idA|o@{iAhm@gkAld@uaA^w@vc@ucAxe@cnAzx@{_CdZobAb]mpA`\\uwAre@wiChLiq@h\\ijBrTufArLui@nJo_@vUqz@tJq[rKi[rQ_g@l\\ex@lc@k}@jg@i~@j\\ig@z\\ie@j_@ee@z`@yc@tg@ai@rm@wi@zv@eq@n}@et@xlBkzAniAe}@x`Acv@`dCanBn{AqfAbn@}b@ps@ce@lsByiAb_A_c@neAu`@bz@mWr{@{Sb`AaPxl@sG`VyB`aAyDdcAm@npB^tv@o@fq@aBtx@aGjo@gJvn@eNjf@gOta@sOrh@_Vp`@_Td]{Sdq@ef@ll@gg@pp@}l@fr@oo@~V{UrX_XnlAyhAjdCqdCh|@a}@`v@m~@rk@st@re@ao@nd@mo@jw@cjAzVu_@pXgc@loFamIxjAydBllAwdBbKgN~gAm{AdwAejBt`B_pBtgBasBhxAg}A`}A}|A|zC_vCrj@{e@v|@su@`g@u_@xp@sg@lt@ig@bp@kd@zu@oc@fbA{h@puAcp@`vAgk@rq@uUvt@oVzq@uSfs@eR`dBe`@bGiAxAYlLkC~k@uMnfAmVho@gOlp@uNlKqBnWyFlpBed@~h@wLvT}Er}As]pf@uJbQkDzeAoQvaAuMj|@cJbp@uD~cAmE~~@qBpvA{CjcCi@bmBwAb_A_Bnr@cCnr@aDzh@yCjn@mFhq@yGvi@oGhMeBns@{J`~@gPzt@oOzy@aR`uBwm@tgAk_@`iAwc@vpAel@bl@{Xvn@k_@pj@oZvG{Dvb@eW@?lwAqx@vn@g[nw@q^vc@cOPGjc@oNt]mJ|XkFnUqD`_@yD|x@uFvr@Y|URbc@pBt]pBn`@|E~{@hMlcArPrrAnTF@hmC`c@vl@jIfiAzO|TxCz_AnKpm@jGza@pDt^pCxuAzGrcC`I`hCnEfwA`C`xBfE`{@fCnnAUhf@qArl@wAv{@eF|d@mCzdEsY`wAyNpsAqSbv@}Ojm@qOj|@iYLE|{@k]vw@e_@|w@yc@zp@gb@fw@ci@j{BifBjU_Rha@o\\lSiPv_Em~CtaBcpAvdBepAhp@uc@hq@cc@lp@o`@to@c^|]iRxR{KxfBe}@`w@ga@`o@qUrWuJ|g@_Tzg@sXvpAwq@bg@{ZpJ_Flz@cf@dkAuu@|mAw|@tcAq~@ju@yu@vy@w{@ryEosF`sBy}Bt^_b@h`CylCbImJhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmBjFBzL}DfW{Hba@wNzgAq`@|fAeb@hsAuc@xA]jg@uLnc@wIzc@}Fxc@cFxZyBrg@q@xb@\\vk@lC|l@~HfYlFdz@fUxa@dObb@zQhb@jThy@fe@~_@dW~UhQrt@tm@pmAxkA~jApmAvv@|z@dn@~p@fs@lr@`iAdbApl@dd@z\\dTfXhOzXjNrSzJhOlGnZhJz\\`JhMzCdPtDbj@vIr^rCrn@tBj`@`@lo@oBd[wCj[_Fdd@cJvg@aOl`@aNbh@}UxL{Gr`@oVz^aXb\\uWri@qf@lw@iu@xiAkgAljAsgAblAugAniAkdAjbAe}@hv@wo@neAc{@j`@e[pjAa{@hsAs~@vkAut@bn@w]tdAgj@r_Aec@hy@s\\~lAyc@llAo_@fkAk[fmAcXva@wJ`bBeZh~AuWxUkC|IcA|]aEdvAcPblBmR~SgBrbA{IjtAgLr`@aDzOsAt{AgKjgH_k@|oBsCnz@jBty@xHt]bEfc@vIjv@zRjKjDhRhGvItCbq@vZxj@p\\psB`|ArmB|~AhmA`t@tyAxi@noB`ZniA|Bza@c@|_AkFvlAaJjfC}Tjh@kE`aBaNlsB_Sf|@gMt^oFf\\sGhvAg[b`B{c@xpAqd@lf@uS\\O~e@cTz]uPl^gRh|@of@pUqNv^}Tr[iUjaBwlAldAc}@hJaJ~k@_k@|]c_@`zAy~AdR_TxuCazDvwBumCnwAw|A|nBsmBp_Fu~Ej[i[dRcRtf@qf@~[}[poCylCbRwQfdAcaAtCoC||@}}@flAioAjqBsdCtn@i{@tBsCv@gAnAiBpBuC~a@}l@lfAwbBt|@i{Ap]gq@DKf}@_cBrb@}u@b^sm@dKkPzj@i}@lq@kcAzp@{_AnoA_eBbyAqtBnJyM`CgD|q@qcA`\\qi@zYci@h^mu@nS{d@dTei@bR{g@`HcTjYev@xSqp@|Nsh@`Vw_AfCqLhEiSvEmTbC{KfHsXtE_PjG}RbH}QnNoZzOmWvOgUhNmPbSeSlQ{NdPkKpM_GrMgFxAe@`GsBpE}AxS_GpJkBxQkCrUaBbSwA~IOzPDtj@fAjR^jcAfBlREzPq@pIo@na@wFpiB_\\xZyGlRcEvKu@xGiBbYgKnc@oTh[cTjS}Pv{@e|@|s@g}@rx@g_A~[a^hCsCbIkJlg@il@~d@ev@hc@{~@xMe_@xNeg@rLoc@|Pio@|Omj@~Nae@zKgYxI}Rl\\mn@~Z_f@pSgWrRmSfFqF|VsT~eAyu@dd@c[pgAet@zbA{m@laAkk@rlAso@vOcIj^kQjo@cWbm@aRrs@yS|n@{QjH{BlQwFjTeJrHaDvSwK|MeJ|RuOxNoNxSmUnO}TxSm^hxAerDra@qnAzPwi@rPoh@rXm}@xJq^zIk`@j@eDxGs`@hCkTrBkVpAuSvAcj@tAcn@nCixAbBwo@nB{a@nC}ZpCiVzF}\\pDcPzCwLpB}HjHyVfJeX|KgYvLgVjPyWbNcR~MaOxK_KjSwPbAs@hDaCh\\}Uhh@q]rAw@lw@{f@nb@yXlEqClk@q^l\\gSnZ{QvZaRje@i\\h`@mZj]oYtWyVju@av@rf@ib@xHqFhMiHnSeKhVqHbReD|QiAxHWvKAnPr@vUlD~O~DvKfErUtLpPlLxNzM|A|AdPjRh`@zf@bd@fi@rMlNnJrHtJnFxNtGhBp@jMdEjOlC`Sh@rM_@|OiAjBShD{@lLgChK{DxKuElJ_EfPgHnRqNlV}O~ZyRdY{QnT_NrLaHziA}l@~LaGdL{ElKyDzIuCbM{C`J}A~LsAdMcAfMa@fMSzHOfLIrR[~PY|J]lJm@fRcCjGiA`Q}DpGwBbGeCxIqEvG}DnIsGxFcF`HaHvDqE|C}D|DmFbEoGfDaHvLwV`Oi_@rCeIzCmJvR}j@tGcRjGaPnGaOrEeIhE}HlGkIxD{DjHiIvCiDzCmCbBkAfCeBlH}ElGeCrGuCzHgAtDs@`FgAnEw@nF_@`Ik@`JDjH]tM[xL?re@d@l[a@tKq@~JeAjMwBnMkDvJiDbJgEbLwFlKgHlIeH~ImIhR}SfRsTdS{WbQsUhIkMfTu_@fR}WlJ{KnH}JfSuXpJwQ~FyLnPm_@xOyZ`Tu^bIwLpNoSlj@gq@h@o@xXoX|m@sn@lL{L|L}LxGeGrHqFfKyG~J}EdJaDtIkC~IiBvKoA~Ga@zNUhLb@vGv@rIpAvBVjEz@dMvD`LrE~SxJpSfJnNhFbLfC~JtAfI`@~LIzKm@tMkCzHwBxIuDtL_HtMmJzFeErPwLl\\wSbIiEfM}GzL}FxWkL|TsHnn@_S|SuHhRwI`HsDbf@mWrT{IrSiMpMsF~J}C|LiBbOw@pHCxHf@lPxBrb@bIhhAbTnr@vLrhApUjvChk@|xBtb@b}ApZ`{D|u@zEnAxQpCtRjDlOlFdOlElMdCfRdBdJGlOeAjScE|Q}FbKyE~QaMfXyTvlAshAtMmKbIsEtJiFrTmHz]eMn@BhA?dCApDr@|B~@tCrBdBpB~BlEtAxEnDdXh@v@dD~VZ|GD`EStEs@pF_A~B{AvBuBbB{B|@iBJgBI_AMeD{@kJkCgN}DmBa@oCKgCV}El@iKjAsC`@iDVmB[gB}@iByB}@eCi@mDI_DXoDz@aDdAmC`B}AdCq@nBIrBv@rA|@xAnAlBdHn@zB@lCJrX@`FYt[CrHAlBAtB@fAQzs@AzL?hIEt^EfJJxIjBda@LvCxBjc@TjEl@rLTtFRpEFrA\\lHZrFD~@zAb]ZjG|D~~@tCYfZoCtCYzD]dX}BnCUlZmDpCSrh@iEvEa@`AEhCMjDi@|AOtd@sE`Ea@`Fg@nD}@b^cJrRqEt]oIfXyGnEeApRsFxYx`@vPhEvUdHzALhD]dLmEjBu@~E_AvBUVkAr@oDx@eA|DuCrByAxAtEvCpIf@xAvJv[h@`Bv@`CbCsBzBkAtCiBdKuI`CsBtGqDfEyCz@g@fF{D|@eB~HkDlDiBxCkArC{BzDsDbEuDvBuBjIwEvKgEjGcCnJuC`A}@dN{^`AuA|CuJ~CgKdBoHNgDMuDnAw@vAyBrHwMtA{AbIsG`BgAhI_EnEeCzEwAnDG`HtCpOfJzBjBkAtBkPtWEjATp@zAlBjCfDz@Fx@c@fUc_@}L_G{BkBqOgJaHuCoDF{EvAoEdCiI~DaBfAcIrGuAzAsHvMwAxBoAv@u@TyAFkAOoAUoBaAyHqD{AoBPeEJqCj@{UCcGeCyHaCsBgBg@iDZaMdD_FrAcD|@aG`B{F|Aeb@tLwVtGsOxDgl@|PoEpAaHlB{RpFQD{Bn@mEwDkAc@w@ESA}MjA_Hz@o@JkA[s@]aUoU_BcCeAsDy@cF]}ECoKFqeB?}@Ca@_@cHeCfB]PgDbASF{b@nGmBXeEn@}Cd@wVxDeFv@iEn@iYdEeC^qg@rHmBX{@LwDh@k@cGMsAoEoe@mAsMSwB{G_w@aE|@mTbFu\\|HcQfE[FuJ~BUFaDt@iBGeUrFme@nKcC_A{@}@s@wAa@eBWoBJeLHwBXsA^kAj@cAn@_AlA_AzA_@nBQfBHv@_@~WfGlEz@tCJpAd@`NiEhAc@bAu@r@}@f@aAXsALiAFqAi@qCEcCu@}OcFaz@uAoSsA{FgBaFsBgDaGyE}D_B}AWeCIiCR_Cj@eJ|CqFpDoHxG}ErGmDzGkMbFeKnFkI~EgNvKqmAtiAqXdUePfL}IxEeR|F_QfDwLrAsMOcJgBqH}B}FwCsSsNiNaHmIuFoE}C{E}DgE{DyC{CsA{A{@mAkWe]w_@mk@eFsDiGcCwzA{UgwCii@_dBu\\qt@cEaeGelAa]cFs^qH}IwAiE[uCQ}OIiHVcQrBeHlBwE`BsN`FmY|JuUrIw`@dOmXnMqKvFiJxFmEjDeHlG}DhEmErFuC~DkDxFuH`N{`@br@qItLwKxLyN|L_XtSuc@`]cGrEaGrE_N|H}HnDoO~D}LbBiMb@kJKcK{@oH{AaJyBcMwEuOeHoN{G}TqJsSkFqB_@wE}@gK_AkKUoII{I^gNpAgM`CaT`HeSzJcMvIkL~K_fB|hBsNrOUVuUxYoOdS_IdMsMdU_J`P_Tzd@iNf\\oK|QqD~Egs@f{@wC~Fi^ni@wBbDaEfF_FfGuGbIgEvFaKdLqMbPyIrJ}IxIuExEmJhIuIhGcLrGcJvD}Q|GqPpDsS~BoSl@yV?c}@qAaMLmFNkGn@yGp@iEt@qEbA}F~AeErAkGhCmF`CcF|CiHtEuEzD_FrEcFpFuE|F_F`HuEvHsFpKcJrS}JjXoIfWeHpSuCfIeLh\\sKfX{JpS}GxK_GhIgGzH_KlKoIbHiKdHaLbGsMbFwMrDcCd@{FhAwYpCiNl@g\\f@mUXeV^}MZgN~@ySlCcOzCaOfEeTtIkS~Jc~@be@gSdLeTrMwn@da@kn@j`@iLbHmS`KwKbEyFzBqJvBgJjBkOfA{OCeOeAgOeBsQwFqL}F}IwEkI{GgMkLad@ck@s\\ob@sScWyIuHeKuI_ZqRaUiKiZoGcTeCmMe@mN@uELcXhCgLdBeM`DoSxHoInHuT|Mmj@vd@g@b@}y@hz@gWtV_YjVga@b[ib@|YaZxR{ZzRe\\xSch@tZgdBphAml@v`@q[tUyC|BsUjQqK|I{LvLmTnVuPxVgNxW{KrWyTjt@oAxEaDvL_Hf[wCbTuCnVaFjn@q@xRyB`eAsBtbAiBvx@sA|^qCxa@mCfXmGh_@uNdl@mEnPwG|Sgj@j{Ayv@|tBemAn|C_G|KoN`VgIpL}KvOoLdNwTxUwYjVuKxHgL~G_OzI_GfCmU`Kur@~T_s@hSm`Ab\\e]lNwr@r^ol@xZo_@zRqm@l^mqAtv@gXvQccBdiAqA|@kl@zb@qK|H}[jZaVlXgZ|_@_I`MwS|]wShc@cSrf@wRbm@m]lpAiWr`AeStk@wb@f_A}Wza@eOtSeo@nu@kC|Ci|@jdAcgA~oAye@zf@ac@r_@sd@xY_c@bToUjIySlFePlDsKf@_X`DyNpAajAjImr@lD{YfA}NNcbA`Amr@mA{h@{Bmj@gBkj@m@gRZgJj@sTjBgQvCiXtHcLjEmMpHeRbMqVvUaDnDuExGmGpJwCpEwMxXgHvQ}HnVgEnSaF~Y_@|BqEj_@mE`g@sEjo@yJ~nAyFv^gIpb@oH|YgElNeYzz@me@nsAyHzQwPl^gZ~i@i\\pi@_\\ni@sh@dv@cCnDyJrNq`Br|BwhAn}AmBnCuZjc@iZpc@u_AvzAyNbWkwAxhCex@vxA}CvFw]nm@]l@k{@|zAkiAjdBk_@zj@_CjDuArBg@p@sBnCsn@bz@kpBpdCqnAtpAq}Bh~ByQlQ}iGdeGoaFp}Ekz@d}@oaAfbAqgArpAurBbeC}z@biAsgBfyB}RfSmLjOsXh^st@vw@w`Av_A{FxFeeA|_Auh@z`@q]`W}f@z^ec@zXyb@rWcx@zc@a\\lPg`@`Rcg@|TSHgr@vXudAh^co@pRiWbH{]~IgoA`Xq{@~Ngc@dGyXnCksBbTkrBhQkUnBcgCzSomAxKk~@jEwa@d@oeAmE_nBoZwxA}i@akAkm@}mBe_BewBeaByf@kXsc@{Ss[aMwQgHmLsEaw@_Rs_@sHqc@qGiu@gGa`AgBarBbBgdHnj@ooBzOg]pCoLrAg~@xHyv@vGyVvAgDZoMhAg}@bJoxCd^gHz@od@|FqvBr\\_dBb\\uXlGe{@rR}mAl[_lAr`@qkAtb@y}@|_@sz@r`@meAbj@i_A`i@or@rc@y|AdeAqnAv~@k`@b[epAhfAkvAnmAo{AjtAqnBrgBysBdrBmtBpkBg|@xn@cj@hYaZrMg[rLqZ~Icl@fNq^zFm`@lDmm@lCux@{@s\\eBgW_Cgr@}J{aAuXcl@kUwi@kYck@w]kd@s]{nAqfAup@kp@qeBilBs`CqdCuaAo{@eh@q_@e`@sVgz@}f@m_@yQuPyHoEsAyd@aRyc@_Oou@eSyn@oMsa@cGu^aEgI_AgcAkIod@eAid@cAeVf@iUlAuYhA{[`Eu]hJyZdKy\\|Os`@dTco@`c@ug@v^wg@~YaOfJyRfKuf@vVguAdn@maAdc@uNfMqKvGij@b]cd@j\\iTrSgTrVg_@|i@yRr^iQ|^iOv_@adBlbFwc@`eAwh@jfAsZbf@e[tc@m[n^k[b\\gm@jh@ceAlt@w}BjyAgzBlwAkAt@i{BdxA}zAvgAal@ph@{j@~k@ay@beAgw@rkAub@fx@in@zrAuSzh@_Rfg@cL~^iQrl@{Pfo@wMjm@iG~YcChLaKtl@__@~nCgk@hbFeBdPyV~uBcBxNcR~~A{[|_Cg`@dgCo@vDcApFoEpUcJze@gH`_@y@|C}Ovl@yb@pmA}Rrj@}Lh_@s@zCo@pC}F~UaHdYm\\xhBcOdu@uR~`A}YtaD_RbbB{Mv|@}QrfAe{@rzD}XjfAkg@pdBmi@zyA}e@xfA_h@`cAwi@d}@wt@veAkv@t~@qgAngAadAh}@uoFjeEo{A|lAcoA`jAql@vl@iaAlaAi`BrhBmoCh}CwsGvqHkiCjwCgp@hu@qKzK_~@lfAwLtMweC~qCyKdNq_@bc@suIfwJa{@|}@ku@xu@kcAd}@}cAvx@yqAjz@gx@tc@iHtDij@n\\}nAjp@of@jXcg@~SmVxI}m@pUy_Ahe@g_B`x@sRnJ}d@nVwq@`_@sn@n^iq@pb@eq@~d@qdBppAccBzpA}zDvzCwRzPmb@j[mUnQe`CzjB{t@jg@yp@dc@gw@ta@gu@`^}{@z\\m{@jZOF{l@bP_aAtR_fAhOmvAdNieEfY}d@hC}y@vEim@tBcd@p@yrAl@{x@m@wiAiB{l@_AaxAsCygCsFabCcGs{AqIy_AoHuh@kFmaAoLo}AwSqn@}IegFkz@i|@mN_{@uM_c@gEk_@sCsa@}Age@Okb@h@w}@zEoa@dF{V|DoYtF{[nIub@~Mea@|Nwz@n_@mo@jYa@P{qAdx@sa@hV}GbE_m@n\\iq@x\\gn@pZqoA~k@ahAvc@eiAh`@apBxj@iz@pRev@`Pwz@|O}p@nJsNlBgk@jH_s@hHem@lFkj@hD_p@jDiu@pBqz@fBerBpAs`CNsvAbD_~@fBeeAxEwp@~D__A~Ia~@nMmhArRqObDog@vHyxA`^{UnFwDz@sRjEkVrFyy@zQin@dNaYfG}gA~VgzChq@cLrCuoBxc@yw@bScq@pRuu@nV}q@|UixA~k@stAdn@w`Anl@sr@vc@wo@bb@wv@lh@co@xe@}g@pb@caAbu@ai@xd@svCvoCoaBxcBkzAb~AyiBjuB_}AtpBqxAdlBudAdvAwLrPqkAhcBaiA~bBwpFjnIkW`a@oVn_@k}@rrAwb@rl@cd@tl@_l@lu@cu@b{@}{@j`AacChbCooAtkAmUzSs[zZmo@jl@mq@vm@sk@~e@mm@fc@ia@dWg`@`Sch@fUu_@|Nid@vMgo@lNks@vJqq@tFsq@pBey@b@_mB_AyhA`Aa_AnCiTnBmo@bJy}@nNk|@rTez@`WwjAnd@{aAbd@{qBliAoq@zc@qv@~h@}_Afr@mw@xl@obBlrAcz@zo@mpApcAchBhvAm_Azu@}q@zk@qo@xl@_T`TgWhXs^na@m^fd@g^dg@a]nh@e`@lr@oEbIi\\bq@y\\vw@wFhOeO|`@eMj_@cPnh@iOrj@cKhb@yMrk@gSlbAof@ppCcChN}Nry@_Ibc@wK|k@{Ldk@sMpj@qLjd@gOxi@wZtcAqQpi@gRbj@yXfv@q_@p`Aid@heAue@jbAen@tmAeo@lhA{o@hdA}k@|y@yv@fdAys@f{@yn@zq@yf@pe@gp@ti@ko@fd@it@tc@w~@le@ikBp{@adAbf@q_Afg@}g@d[gj@pa@uR|Ooe@hc@ce@bg@y`@zf@gb@`k@i[pd@ucBtoCui@f}@ok@|}@{g@zt@cj@`t@so@lu@en@xo@odBf_BaxAvqAk}A~`Bud@nj@}]zf@oR|Xab@bt@yt@rzA}g@~oA}_@nhAwcAneDs{BltHi~Bb{Hub@xxAua@~{A}g@~uBkb@roBcTtfAi[niB_QbfAoMl~@oJ~t@_MrdAuK|cAqHnv@}Gfw@yJ`pA_LrsA}H`w@yH`n@{DrW_E|U_@|BoHd_@mHp[uFnTaI~XaK`[uUrm@oZno@a]lk@}^~g@gZn\\c[~YeYjUgWjQeIfFqd@xVk`@zPoh@rSwp@lUqx@~Ugo@|Ouw@`PysA`U_~@`Oon@hNe\\zJqXxKwUdKuUlMcG|D{a@nXqOxLcTnRqWjXoVtZiWv\\aa@vo@oMbTgMzSg_@xn@sMtRyHdLkNzR}NbR}IpKuLxMaLpKeU`TeNpKmO~KwNjJyR~KkNnH_QlHeM|EuOtFwNhE{UfGwQtD}PpCgSrB}SlBwPj@}Uh@kREuRe@qNu@oR{AwPgBoYgEyb@uGokAyQ{bAuOy{@_NsVcDwmFiz@kd@aGe`@_D}^w@g`@Zq}@fEicEzUanNtx@c~@hFutO||@c}@xEalNzv@i^rCg]bFu\\|H{YjIsYbKs^`OkPtIi`@nSa_FzoCgqH~gEmhOpsI]Rip@j^kVrJsRtGag@lOg~DxhAq`Cvo@oOrEamAl]eRnFioJhnCikGdjBieH~uBm}@vWkr@nUakAh]qKpCw^lIiYtEs^`Ege@pB}b@Ac`@gBq\\oCsb@}Eu}I{mAibDyc@yLiBgkBwXag@kGmBU}JoAgrCq`@gn@yD{\\K{[N{]|Bkj@dEcpE|i@opA~MqQrByd@hFuKnBee@tEqm@hG{}@lKwe@jEetBfVglBnTutA|R{^dJef@xOmi@rSeP~Ea_AzZepAxf@iN~E}{@x\\}[jKoc@hOu]`KeUjFkV|DuOnCaWhCuGNse@`Aad@Yo^cCwa@wEc^_H{`@wKwYcJqw@s]k{A{t@sR}J}g@{U{UaLmj@uToe@gPq`@qKsd@sKa\\oFw\\gEec@{B_f@oBex@YmaA`BqwH~Pq|C`HasApD}j@rAcbA|EwUdBm^lEac@pFi`@vIcn@~O{a@vNw_@dOisA|m@st@z[if@zRcTfH_]zKchA`[{sA~^guAx]aiG|aB{`E~eAcpA|\\e|Ax^{[`H_a@nIm_A|SgqCpn@w`@tKys@tUA?qC~@eVfJkc@dRsl@zZqr@jd@qb@fZ}h@|a@o`A|w@kkAneAoh@jh@c^d^_`AnfAwYz^uZpb@gZve@gW~c@g\\bp@_Sd`@ci@vfAma@nx@mp@voAa\\zk@yzH~iN_Wtj@o\\hx@yNp`@oT~r@{Jv]}Qtv@aEbSwJpf@uMvy@mHhk@yF~i@cG`s@{@`K_HnaAoHflAgKt~AaKvxAoVjvDaGx}@iWx{DoIzpAyIhtAgHreAiZ~sEuM~nBya@pmG{AbVcAvMcJvwAgJp{AsHlcAoJ|cAoJdt@gMhy@}N~t@eQdu@cUby@uOff@k[py@_]nv@eO~YgN~Vep@beA{_@fi@w`@jg@u`@|g@}c@|l@eg@lp@_c@fk@sl@`w@}Ud[wj@bv@i\\xa@}K~Nq`D~eEgLhO_a@~h@gq@p|@acDvhE}mBhgCc`@tg@}Wt]gl@zv@}o@f{@uc@jl@ieAfrA{]hd@eV`YmLdMgMlMmN~MqOzN{^lZyWhRyXxQmf@~Y{aAdl@odC~xAg^~SyXtPq^fS}W~Ms\\vNk`@dOug@nRyy@lZo{@l]uaAv`@sj@pSaGtBscCf_Aw[xL}XbK__@rNyp@fW}HzCc`Cx|@am@~UeStI}NhHkR~JeOpIq]hT}_@tUseAbt@iiAbu@gmAhx@cpArz@az@`j@g}@nl@ajEhsCszAzbAgNvIca@tXkt@lf@w|ArcAmoAzy@oI|Fko@fb@if@z[ye@h[edBvhAgDxBiVdPgeApr@wx@pj@s]bWuYtTyZdViYpU_VnSkUhSad@za@e^p]eSnSqQbRyQtRyX|Zia@be@y`@`f@g\\nb@u_@dg@u@`A}\\nf@gUp\\sZbe@{Yne@qZpg@aZhh@cTh`@mSz_@wMnW_MpV{S|b@yInRwInRgJpSqIrRqMvZ_\\xw@}Z|w@mf@lqAyOfb@iV|o@_Xvq@mXjp@oQfa@mYfm@aXdh@cQnZ{Ub`@gOvTmP|TyW`\\qJvK}InJmSdSeSnQ}P|MyKbIsNzJcOjJsPfJcPtIgM`GaLxE_VfJiV|HgLdDgNjDiU`FsKjBqLjBgMbB}LrAmMfAoMt@cWbAsSTeSPsb@Qw`@a@ex@_AgXUgVReUZkQp@_Ox@eTtAeXlC}U`D}N~BiJdBC@qB^_V`FuS`FiZbJsWtIMDi\\vMa^zOyOlI{QhKaTpM_U`OoXbSgXdTyVlTiR`Q{]b]_KlKuStT_Y|ZqVvX}\\da@_\\|_@}TjXsu@r}@mu@z{@s`@pb@q]f^g`@x^_ShQyZfW_]zWyb@tZ_]zTk^pT{\\hR_a@vSuo@f[w[tNm`@dQayAzn@qH`Dwr@xZuNrGe_@lOsFnBgc@|O}`@zLq_@zJia@|Hoc@lGqj@hF}[zAk\\p@of@?}]y@}a@sBeb@aDkb@aEurAqNy}@mJk^uDqO_BcbAkKqj@sGwc@uG_o@qLu]}Iy]qK_f@gQka@uQo^eR{R{K{X}Pag@u[uz@{j@wvBawA}jBumAq^gVozB_yAa}@el@uy@ij@q^}Uev@eg@mk@i_@aXiQ}sAm}@oxBsxAsfBujAeoCohBgrCyjBkqBurA}]uUc]oU}w@gi@ys@mg@um@kc@{_BopAuo@cj@qn@kk@}l@ik@}|@i|@}oAypAelAqmAsh@wi@yE_Fa`@q`@o~@y_Ao|@s}@}wAgzAgx@{v@of@ob@}SaPCAqB}Aae@y\\mU_NyU_Nga@mSo_@mP}[}LoUyHaWuHuQ{EQEgS{EiRwDiSmDkVqDeVwC_PuAmPyAm]qB}e@yBi\\q@i^y@en@gAmPYgUq@{eAuBk~@kBq]gAk|@cBuw@iBo\\k@u\\Mq^h@i^x@q]`Ba]`Ds]hEkh@dJ{d@|Kog@~O{Br@cYpKgY~Lih@hVedBl|@qgB|~@_lAfl@}fAne@{e@pR}^|Mqn@dSoc@hMki@bNsh@|Kua@|Hak@rI_j@|GeG|@cRlCyh@xEiE^{`@hCo{@bGclBtMqn@xDg|@dG{r@bFgbAbHarCdQ_lBzIob@bBseA~DsdAxCa@@slBvDqxBpCsxAv@i_CJupCS}|B@mwA`@}KJar@p@ij@jAeNZabA~C}Pn@cfApFcfA|GmnApKmgAjLk~@dLaiAjPaV`E{e@bIcfA~RkbAlRqcAbV}sAbZotB|c@wyA`Zw[|F}b@~G}}@nMyo@zH{t@rHcu@dHy_AzHk`AfI{`CrRooB`PmiBlOqc@pDodBlNsyB|Qc|CbVct@rGwwAhLqeCnS{qChUulAjI}n@zD}m@~Cs_@`Bqg@zAsd@dAmd@x@}b@Xka@Nio@Wki@m@}e@y@}s@uBed@gBue@aC{XiB_h@uD}z@qHkc@qEie@uFcs@yJyp@aKiZeFq\\gGkVuE{QmDcy@gQ}aAkVo~@eWyg@yOsj@wQol@oSmi@qSg`Au`@{d@ySuk@uXak@qY{w@sc@an@k_@ySgMu_Aao@e]wVwh@{a@ygAy}@mp@eo@siAshA{r@}t@{mAiuAg|@_cAui@_o@c}@sbAcfAogA_gAg`AibAyv@oUcPaP}KgMwIab@sW}aAaj@}y@ca@kdAub@ee@qPed@sNw{@aVcaA}Ty`A{RaaAcRg{AeZuwAyZgqAiZ{a@gKsb@gLsBi@a[mIgQcFqLiDiy@iWs\\uK_a@eNak@kSuq@yVgq@sXmf@iSg_@ePwbAsd@ge@aUac@sToGcDotA}r@ahBecAQKseBsbA}`Bw|@ckAmi@sh@_Tuu@oWem@{Qyk@eO{ZeHw~@}Qkk@oI}\\sE}ZcDqa@yDu\\qBeY{AuDOkMg@ii@{AgIUyp@mAeuAsAqpAeB_`Aq@yxAoAwt@iAyw@cAeeE_Fu|AuCut@}@ip@Lwq@c@g`AaAejAyB}v@_Cyy@{E_i@_Eel@gGoo@cJul@mLcp@sMai@wLmd@mMqh@sPqg@iQi`@qOs[yMyb@wRsVyL{r@m_@st@}c@gw@_j@aYqTqXwSm^}Ym`@a]yX}Wgn@ao@g[}\\u]}a@aSwVg]md@{CcEqQiVc]qg@}PmW_Sq[qRk[_Um`@{Wyd@u[uk@m]wo@ym@wkAg`@ov@_Xmh@a}@geB_]eo@_To`@yX_g@uX}e@ie@{v@cSg[yXqb@y]_h@aa@}j@{a@yj@cw@oaAqv@{|@ajAkmAciAyfAqcAg}@kkAk}@uj@}`@kd@cZsl@}^oj@q\\ul@o]}_@gSe`@cSgr@c\\{bAac@qP{GkUcJeQqH{OkGqq@sWkt@aXqt@_XeuBkt@u|@oZwy@eXwpAaa@or@gTgu@aUsxAyb@{NcEumAa]qlAi[cp@{Oyl@wMok@sKgk@}Ian@wH{f@mE}_@wCqWwAwb@iBoMc@ef@{@cl@Yye@B{d@j@a_AfB{aAfDm_AzEgl@hDqt@rFk|@xHak@tFcc@tEch@tGoo@~Ico@vJuj@dJuy@jOqp@zMsj@xLek@xM}_@jJs\\tIqp@~Qop@lR}h@hPap@fTsy@dYoz@rYijBno@wkB`p@ohCh|@{WhJuwAhg@ukBro@cPdGeb@zOsGdCib@`P{g@jSga@nPIDcUpJk`@jP}k@bWqy@`_@gr@n[s_@lQa_@bQk{@ha@uhAhg@}t@pZio@nVcp@lUmq@lTmo@bRol@`Pqh@|Lun@jNqi@tKmz@pO{o@|Jss@~J}i@~GcNzAec@vEg`@zDib@pDuf@vDgk@xDsh@zCks@|Cok@tBud@tAol@fAor@~@wt@b@i|@Ru}@Gwo@Oor@Wul@Ogd@Sql@E_fAA_n@Jmm@Rch@Ti[Ryr@z@qdAfAe`AxAmz@bBawBlFasAjEiwC|L_nCvMyuCvJu[l@qe@Va^BqGCcZIcq@y@sd@aA_p@eCwj@wCoc@}Cmd@}Du^mDy\\sD_e@_G}f@kHaIqAoa@yG{b@}Hei@wK_z@qR}f@kLetBgf@_sBec@}sAkWwrAoTc{@_Mkb@iFa`@iEwaAoJwqAyJklAmHajA}Fm}@uD}s@mCuNm@kr@uCkgBuGurCgLkPi@gh@oBmm@{BqmAcEis@_Dc`@sAk]cAai@{@_b@]oc@Vii@vAm_@hB}a@~Cs`@zDcj@zHsf@zIyf@|Kan@zPko@dTap@xWqm@hY}d@jWy`@rUm_@zUgoAdz@epAzz@q_Azk@mt@hb@wi@|Xag@bVg_@pPcb@`Qw_@~N_k@dSoc@hNqHzB{v@bTef@|K{a@hJ{`@|H{j@bKo_@`Ha\\pFaDh@}GlAw|@`OubBbYiaBhXmq@tKs_@zFe]`FkT~Cm|@jKs_ApJeu@|F{g@bDiZbBqYhAap@tBuf@z@gs@r@w}@Eyp@m@ko@sAue@uAqAEyXeA}^aByGa@mi@aDad@iCmb@mCaq@uEqn@oE}{@iG{g@yD{g@wDm\\{Cyh@yFmp@uIg_@_HuTgEaa@}Iq`@aKs]_K{w@cV{k@aRw_@sL{s@eTu{@oT}m@iMym@aKed@{Fsb@yDuZwBiIg@k_@aB}[_Asb@k@s]@e]Ze^r@c\\jAqi@pCgdAfHm`@lCqkAzGyaAtE{d@|@kg@l@ya@Ga_@[ob@sAcXqAuc@qCyNmA_f@kF{d@oGcy@}Nai@}Lwb@kLud@gNmi@{Q}w@e[mg@aTqrBu}@kM{FqWeLaq@qZuf@iU{IwDsXqLqRoIwUgKiu@_]as@q[{[aNsUwKcn@{XqbA{c@sc@{Ro^cPa[uNyOoHoq@o[un@aZmV{LokByaAme@yW_B_AaJgF}aAko@{|@an@yu@ol@k{@gu@qu@}t@i\\y]mb@yf@of@wn@ye@wq@ea@mo@_h@s}@gVce@_Yel@gSed@s_@y_A{Twm@}`@umAsVk|@gSax@aGaWuLaj@_Qu|@kUksAo[}sBwDkWoZ_qBk[wqBuXm{A_Mam@}Muk@kUs{@eNge@qTar@cVqq@yCyHmLiZyQ_d@yXam@_[wm@yTya@_W}b@ia@yn@cVa]sVw\\mN_QwJsLaYw[u^_`@uTqTk[mYgv@ip@iu@mm@ov@sm@}v@qn@qXsTss@ok@}i@oc@cj@gc@}qAseAcs@ok@sz@kq@yx@gp@sn@og@wg@ka@qd@s^_}@ar@g`Air@{z@ik@yk@a^ul@u]obAwh@m|@qb@a~@q`@sdAma@owBot@}gDueAyfCat@uy@oSua@iJ{t@iOsfAsT}lAwPajCaa@s`Fgv@gpCwb@sqByZusBg[qh@eIwnAeRot@mKoj@sIm_@gFkjBcWohFur@osDuf@m`Cq[_yAuRcdCm[woAgNgi@qEyoAuHqcAaDyeA}@cdAh@a{@bCsUx@mk@`Due@nDik@jFuHx@yT`CuRdBkDZy_BnUyoB|YinArPoh@rFcYnCqk@fEmo@zCa]hAyb@n@ij@Lmj@c@e^y@gl@cCmd@wC_s@oGqt@iJsw@oMmk@kLg[_IaOqDui@_Oox@yViWyIgJyC{d@qO_l@sSaeA{^amAsb@m}DquAwhCq}@ku@qW}c@}OmqBks@uh@}QwW}IykAsb@sfAi\\qj@uO}p@}Okd@eK}f@oJ_gAcRoa@uGiG_Aen@oJqBYabByTg_@cFam@iJgpCy`@go@}HmZkDaVoCqDc@_k@kF}u@mFkt@}Cg_@s@{c@Us\\FwXFgr@fAmcBnG_fB`Iqq@xBoo@Vg_@{@oZaBmq@_Hce@uHys@kQ_e@yNkc@_QiB}@sq@u\\cPeJm\\}SsYwSqh@m`@ge@y^iIqGgj@ac@}c@{]}i@wb@_fAcz@qw@}m@qr@gk@qXmXcZ{]uo@oy@aYq[i[gZ}ZsVq^aVoa@oTwc@{Q{[mK}VuGq_@gGmb@mD}l@sCkv@_Da[qAqq@aD{b@mB{b@cDwm@gJc}@iRmc@gJcKwB_ScDuYuCa[y@w\\Re\\pBi\\fFoYdH}XzJoYzMka@xUqb@bUec@rOuf@lMo^|Fmc@jEstA`NctA`Ngv@dI}d@hHqa@~Hic@`Ksb@tJanAfYai@jNaNhEiVrI{b@xPoa@zQu[rP}e@zWqWbLu_@lLu_@lHaNhAyOrAYBg_@bAq[a@c^iBy`@oF}TqE{d@iKei@yLke@gJ{f@yJ_u@_OcOiCkWqDwQiBcSiAuSu@iRGuOD{O^gQhAsZdCc]fFyVnFuVzGi^`MeYdLi]rNoNdG{]fOecAbb@wh@hScJ`DuQnGoKfDeH~ByOpEmLrC_NdDms@bNst@~Kgo@~F_z@|D}i@v@ahBbAev@lBo\\dBe_@dDa^lEw_@vG_SxE}NjDoPnEg[tJe]jMs\\zNqs@h^ouAhw@g{@ne@an@pZkk@pVqj@nTar@bW{WpI_c@zLet@tP}e@|IgOnCmb@~Gsn@bI{m@nGoaAjGufAvCsl@^op@_@wiAcBuhAwBqrAiC}rAuBqbAeBcf@{@yo@y@yt@Bms@`Aue@fB}UnAkKj@g`@|Bor@zDqxA~HmlArGka@~Bk]jBim@dDyk@~Bik@dBsSl@}n@t@og@Nqf@CadA}@eb@qAwa@wA_f@yBwg@oC{iA{Iiy@sIqo@{Hgr@eKer@eL_i@yJuVoFgQwDswAo[oDw@a|A{\\ioA{Se_A{Kuk@wE{m@gD_~@iCmd@c@md@H{a@f@ik@`BowAxHggCnNshAvGydBlJesBrLcrBbL{x@vEe|@xIe~@nNij@xKmt@vQk_AxYg|@`]qi@zVoc@`Ush@hZwb@bXwTvOmV`Qid@`^_YvUoHrGuNbNmr@`q@}R~Q}RhQkZdUmMjI_TdM_T~KmLrE_WxJwZnJ{ZdHg\\pFi[bD{[fBc\\^_`@m@ma@qCqb@aGu_@eIi^qK{RgH{OyGe[{OeUmNgVqPoa@q]{[a\\uXg\\ee@_n@o[ad@wUi\\y]oe@kZ__@u_@}a@wa@ia@c]qYca@e[w\\iUcl@k]e_@iRo`@_Qk_@yNc`@qL}g@gNif@sJia@kGUE_c@sEoa@yDsp@iEy`@{@wb@Vgb@vAu_@vDc`@tFid@hJ}}@dTwSnEmg@~Iqj@pF}b@bBi^V{^k@ia@iCgd@yE}b@{Hcd@gL}^}Lw^qOoZmOmn@{_@gk@wa@krDasC_y@{n@auBo`Bg{@{p@sy@_p@os@gn@sq@qq@yl@uq@y]}b@st@c_Ag_AikAyd@ui@}RoSeKoK}O{N{EoEsXeUa]}V{FiEsFeDc^kTag@mWmb@sQcf@}Pub@uLml@eMs^cFyUeD{o@qEas@wAyEFqi@t@}_@jBg^|Ckm@hImk@hLg_AzSuo@bOul@xMg_Bz^yhAbWeiApWa~@tSqPvDwp@jOwaAxTio@pO_n@hPia@fM{b@lO_`@zO{`@bRkn@v\\mt@jb@ut@`a@il@vXi_@|Nmb@xMaWvGc]hH{d@xHaf@lFyl@nD_t@|@uVUa\\c@oCE}t@{AsqAiCgzA_DqoAgCya@aAca@}@ceAuBe|@eBqnAoC{M_@mnByDyoBgE}oBgEymB{D{i@}@yk@c@q]A_WZyh@bBi\\~Bu[tCwWvCgYdE}\\pGi[~Gah@`Ng`@zLgZ|K_i@~Tob@`Te^fSo]pTcN|IySfOe\\|Vub@d^{VjUcSpPqWxSgXnS_WvPuSbMuU~L_ZfMca@lMme@lK}r@nKmVdDg]pFwXfGad@bN_[dM}UjLeVlNyQvLse@b_@_x@tt@_l@pi@_t@`q@wV~SwYlTaf@dZyZvNuY|KaZ`JuUpFsUlEwYdEwXvBcNj@gP`@kX@wY{@a]gCkZuDaSuDwWkGua@aMoj@uRqUsH{OsEsb@wIy\\oEg`@qC_Zg@gSGwUd@{[jBsWnCqV|DyVlFqXpHwZtKuXzL{\\`QmTfNsSbOc[lWw\\l]mSxUgO~RmMxQyNjUyObXqQj_@}Qhc@{Nl`@aKh[gK~^aJd_@}Hj^iGfYoP~s@mSzu@sKj\\aMf\\sX|n@aWte@gUr^mUv[w`@|c@aYxXeVtRSN}MtJuPtKaWhOsUnKm\\tMyUxHoZ|IeRhFmWlH_cAtX}|@jV}`AfZgy@~Ymm@tW{o@`[ee@bWoR`LeZ`Qul@x_@qOjKwQnMiZ~Tci@ld@{a@bb@uc@ph@gc@fk@wk@lx@il@lv@mf@vi@sYfY__@~Z}_@lYsc@rY{a@fU{b@tSmjCbhAcfAtc@eb@zP{b@xQw`@hQw\\xPwNjImWxPsZjUmWvUe[j\\}`@ph@wXzb@wYxi@oJxQuQb_@o\\np@{Q~[cUn^sPbVcY~]cb@zd@cTtS}YpVmS~OqU`P{XpPoWrNo_@xPib@zOk]bKwc@`Ksd@lHc`@zD{ZhB}f@lAse@_@i_@wAe_@eC}`@iDgd@wD_p@_Gw}A_Ni\\qCog@qE}eBeO}jAkH{]_AwYc@ce@D}a@`Aic@|Bcm@fFo`@vE_e@|Hwj@dMsc@|Lei@bQwc@nQmb@pRgZnO_ZtPo`@nVeb@jZyg@z`@yWlTcTrQqWtUwM|KkB~Agp@tj@qd@da@sc@|_@uhAdaAylBnaBo~ChnCcXtUeb@b^{UbReQ`MiOlKg[vQ{\\nOeX`KmOvE_NjDae@jJ{a@bF_XzAsYf@oRByTi@yUiAsTsBuWoDiTgEy]iI{d@oLqj@{Nk`@wJwp@{Puq@aQk]cIaSyDyPcCmTyByWsAuTc@sRGcRNuOj@wV`BwYfDyLvB_Z~F}VrGyEvAoJxCkTxIwT`KwSzKmTpM{OvKeRlN{R|PePrOwMvN{OnQeQjUmRfX{RbZc{@zpAgz@dpAmXfa@oUl[wQjUgQfS}U`WwTlTgOnMgFlEgVxRuZdUgNtIiVtNe\\fQq`@tQwb@fPk_@lLc]lIk[tG{SjD{T|CqUxBmVvBgR~@aSp@kY\\cg@Yq~@cCodAiDcbA_Diq@oBcOc@_`@qAyQo@mt@uBsi@gAyX[{CEwd@_@eRIqWEmRGeX?kZJe~@z@alA|Biz@dCkc@bBo^zAwf@nCmn@hDqx@bG{|@zHgc@fE}}@vJyk@lHsk@vHc`@vFqr@jKiu@pMcbAdQ{kB~\\g@Je`AfQyOpCi[~Feh@zIcsBr^{|Bpa@i{B|`@{cDfl@s`@hHssCbh@i|@|Nye@dGua@xD{d@hCeg@`BuVVaWGak@{@uYqA_\\kByt@kHktAkOg`AuKuw@_Jqp@iIu]kFiZ_Faa@mHyc@cJwd@yJkVoFacAiTazAm[{TwEgTqEyOuC{NeBaQgA{LYkJCeT`@gPlAiOlBwNfCuR|EoYtKyVrLuLtHgP|LsQzOsp@pr@iXzWsPlNaQbLkPvI{P~HaUlH_NhD_OjCwTbC{PbAyMLwPI_RcA_XoCac@uFwr@kJc]qEir@gJkv@qK_`@{Eab@qE}TeBo]kB{Ts@iWk@a\\Mo`@Vq]`AqXnA}]|BkVp@}QPqRAoWUgVq@sWmAuPyAcJm@sYqCoUyCwa@wG{YcGod@gLsQcFsg@mOo[gLuZ{L_`@gQmVcMsY}O_YqPy[gTqT}Oub@}\\wg@wd@{xActA}}@uz@g\\uZay@cv@gy@yu@ihAudAsIaIyuBsoB{uB_pB{`@e_@i[}YoOwNm[yYaYqWsK}JssAioAgj@ah@}h@qf@{|@m{@}W{TmWyS_NaKyTkOu[_RiXmNoQcIcP}GkRiHwS{Gc[yIka@mIi\\kF}UkCyV{ByZyAeRc@gRK_\\LoYdAu[dCcTvBwQlCkTfE}U`GqTvG_P`FaTtHqP|GiQ~Haa@fS_VjLwm@xWsl@~Vmi@zTke@vSy^vMuXnIuUhGu\\dHyThE}a@zFmO|AcOfAsc@vBoM^s[FsVKuYc@oWcA{a@{C}TgC{QaC}UoEma@uIid@mJod@}Jw{Bie@kvBud@gsAcYop@oNgq@}Ngt@mOsj@gLeo@{Mis@}OcrBwb@{gDcs@_pDgv@m}A}\\mr@cOmn@yM_t@qOgWsFqy@wPmBa@}cAyRqk@oJuh@wHyp@sI_m@}Gq^iD}\\uC_r@{Eam@kDmu@yDsPo@cj@cAmVa@qn@o@ml@j@uDDe[d@qTTyUn@_DH}[~@icArCoTh@iFLuWgBmj@oFok@cMc]gJa\\sB{Z@wZtBciBxNi\\|DkQvBqMd@yj@cBi\\mBaf@kKec@aN}V}H}eAk\\wKwCgD}@yMwC}ImAiIaAkL}@sLk@wQ?oMTwLn@}KpAeLfBmOfDcRzGmR|Jax@da@uf@zVc]zOaUzHiSpF_N`CeSpCyPf@qM?kJg@iCOcSoC_O}CwLkD}PgGuOkHyNyIaPaMmRuPmTmTsPcS_PyS}RsX}Xi`@kj@cv@wTk\\aAsA}RyXiQgUkNaOeMuK}KkI}JaGiCoAmFiCgGyCyMmFkLiDeNoC}MuBkJ_AqRiAwPIa\\^{{@xCkiBvFwUt@}OXiK@kQm@mMeAyK}AwLyBmQiF{Q_HyNmHgEgCuEsCyIoG}NmMaLwLaHiI}GyI}FsIiHkLwHeO}F}LeJuUaFmNkHaTwGcSkLs\\aKkWqHqP_IwO_LwRaLuP}LwPiK}LiKkKyZuZwTwSg^c]yCqCug@{e@gVeVaM{MwLuNoJ_MmLmQaMkTkIkPmKuVgHuQgIsV{Nqf@{Osj@wQ{o@ug@khBeJq[aJyZyGiSoK{XgLiWsMgW_M}R_L_PaOwQiPyPuRoPeWoQo\\{PqP{G{T{GaQ{DoQwCkP_Bg_@sB}]oAs[oAuUoAgTiB_RsCwAY_O{C{PgEiRyGkWyJkq@yWao@aWm^aNgWaJaViH}P}EgRyDuTmDiQyBmRcB{Pi@sQa@gSCsUZuUhAsPvAgWvDySnDiUzFuRxFsQhGyOzGyRbJiNlHkPrJqT`NmTpP{c@j_@kEnDke@`a@eU`RwQdNqShNuP|J{YfOw_@nO}t@bWwOdF}V`IwvDhoAkLnE{KrEkIbEwIfFoIzFgHlFuIfHeHhHiKlL}NhS}FjJ}E~I{F|K}F|MmG~PyFxQkE`QeCtLeCjM_DxSgBbP_BpQo@bK}@nSc@xRKnOBjQTlQv@bYnD~t@rBrj@b@zLXtMXtR?~QQfLQ`M}@vUu@xLeAjNaB~OkDnW{DdVaFbXuEdTeFzUeN~k@yMlg@wMfe@_HlTkOde@oFlOgIlUcNz^cQjb@cNz\\}Ulh@wF`M_Pz\\uRp_@mBrDuNpXoVzb@aY~e@eQtXmQhX}Z`d@wYja@}Y`a@gUpZuWl\\k]vb@a]|`@_Yd\\w[~]cd@|e@q[`\\i\\j\\sx@tw@od@~b@gq@hn@_y@jt@qd@|`@ee@`a@k_@l[qcAby@sy@jo@_o@le@mf@~]uQlM_SvMgc@rXyWrOaYfOqOrHuObHeZtLk\\hMmTtI_ThJmKbFqVdMoShLcS`MuShN{OnLsOxLoWrUgPtOwR`SqNlOoPbScO~QmDlEkLdPmKnOmIlM}H|L_N`U}GvLcG`LaLdToMfXwIvRuI|SuIhTcIbT{CvIgRhi@{Orc@iLhYkNlZkOlYcNrU{H|L_IpLaLpOgPlSuOfQ_JhJmJ|IaHbGqJfIkL|IgM~IsJpGaMhH{JtF{IpEsY~Ny[lP_b@rSsb@vSas@l\\qh@~U}\\fN}hAtd@GBwe@pR{ClAkb@hPwY`LeQzGyd@bLmVxFi[bJgDz@wNvD_OlDmJzAoF`@aFE{Ec@iFsAkEeB}EqCmEmDwD{DkDoEuD}EiDgF_DqFaDyFkCqFsCkGiCgGcCyG_C}GuByGkBaHgBiHaBoH}AyIsAcImAeJgAaJ{@{Is@qK]qIk@iVm@mUe@uQ{Aum@s@s\\e@uYWa\\AmSFaRZk^h@aYbAo_@tA_]lBs^tBc[`Is`AnDu_@pA{MdDi]vEci@vDke@`Co^jCai@pAs_@tAui@j@md@Rm_@?o_@i@im@o@w_@_B{h@aAwV_ByZeAkRaB}UwC}]cDs]yDg^oI}p@{Feb@kGsc@wb@_aDwGmh@cI{p@{CcXsCkWyGyq@{Dcd@kGe`AgBkZyAyXgBu_@aFifAaCkh@{Buf@{Cyp@yAe[eC}c@kCie@oC{a@yCi_@cDm_@mC{XwCiXiEi^}Eq_@}Fq`@eG_`@{Gk`@oJig@aJub@aKkc@aLgd@}Lwd@qNqe@yHmVcJeXsJqX_IaTuLyZiRcd@yQga@aJeR}J_SsH}NqH_NoNaWyMuTeN}T{Sk[qNmSwVk\\aDgEaVqZgVaZgi@yo@qSgVeRqUiSmVmSaVeTsVmYwZ{m@_k@}LsJgLyIoMkJ{MeJqN_JcPsJwRyKarAor@iN}HeOcJwMuI_MwIuPiMyRePoPkOwLmLoMaNsQmSqTkXoGsI_HuJoHoKqKmP_PcXuLoTuPc\\oO_]mM}Z_HsQwHwScFkOyEiOoFkQyEyPaF}QiEcQkEeRuDuPwDgRmDeRiDuR}C{RsCqRiEk[_D{ViF}b@qEo_@kUsmB_Jav@aJcu@wMohAcN}iAwKe~@}K}~@cDyXiKs{@wImt@aEs[mEo[kCcQqCuPiEaViEqTiFeVkFeUeLyb@eMac@sNwb@mN{_@_Qua@mR_b@iXeh@kU{_@_QgWcQiV_P_SeJqKaKaLeRuR}WwV_WeT}[_V}\\cTaRkKkR{Jwe@eSc]oL{d@uM}\\{Gk`@uF}WuCkWeBeVs@sa@e@}[b@i\\jAa_@xBasDrT}vDzTiz@fFu`@|AgZNcXc@sZeB{YaDsYyEaSgEeT{F}Y}JkPeHkXyMkXwOwWwQgUqQ_SwQeWuW{UeY}RiXcTq\\sKkReK}RyP}^wOc`@_Pqd@iOsh@qJc`@gIi`@iFsZ_Lyu@aP_qAuCeT_@wE}Iwr@qPmsAsPmrAaOgkAeYk{B_Jep@}J_l@oJoc@eLob@gHqUoKq\\uJeYiLwXmRga@uLeUsYcf@}U_]aOaRwSaUuUcUm^sZgP}KmPkKkPeJ}NyHaRcIe^qMma@aLokB_b@{g@_L}RiEq{@kR{\\oHcmBeb@so@oNq]}Hko@uNmDy@}`@qIyl@}Mu}Am]op@{NoGuAa\\yHeEkA}UyGqZoKoMwFySkKgT_MmPwKsTcP{PyNqPsOyRyS{MkOsOiSoVi^cRa[eRw^{KeVkPga@eJiXsIaXoIaYkIa^oGyYmHe`@mFu[_Fq\\_Gga@qV_iBci@qwDuW_lBmh@uwDeS}yAqE}Xc@aDmKwu@mPklAuOghAyg@ysDaT_|AmRusAwF}ZaH}Z{HuY{G{S}Mk]gJ_SyMqVqOyUkQuUsP}R}gAuqAsQkTuJmLuZu]yTsT{UaTeUkPaVmOuMiHuQyIkVgK{MmE{LsDwS_FqNsCuMkBmLuAuLgA{M{@uXs@c]e@mf@gAmKc@qTiBwR_CaPsCwPoDoMeDqQsFqRsH{RaJcTcLoRyLaPuK_PsM}OsNqDoDsHoHcM_NcPeS}RqWit@{aAaZq`@{LoPgM}PuN_RcT{W}MaOuNsNsMqL{MsJqJsGof@aVeTqGyPoDwRwAeQq@iRHcQ~@aLxAiNjC_NjDeOjFoR|I{NvIsLrIqQ`OkOtNmN`OwKdLqWdX}b@ja@eI~GiO~JsPzI{N`F}JvC{NtEwN~AcR~@i]~@ud@cDem@oH}gAsSgRmD}~@oPcv@aN_@Iax@wN{H}By`AaPicAaQy^oGaq@sMapBqg@}\\yJwq@{Pyf@kOod@eOk}@_Z_eAi_@{p@gTog@wSs]}S_]qVa~@aq@kz@ch@eDcByt@u_@md@{RaUuI_WsJuh@kOkWsHs]iHy]qLkr@qUc]sN_l@iV}XeNylA{p@w|BspAml@e\\{]{Ryd@}Y_RgNyWiRis@}i@kdDmoCooDgyCgNmKsd@w]yWkPy_@mRk\\}LkYuIy[uGi`@sFg`@_CyWc@{DGwh@hBgPhAqZ|Do`@|HsV|Goa@tOo[xOqbAvi@{RfK{O|HaRhIsS`ImLzDuRrFwTrEmG`AuYvCgk@zD}M^{n@v@aKFyRTqhAnCqHPaeAjBcfClE{nA`Au[b@yxHvMqo@fAkeArBoeAvAePXubBvCwr@nAcb@~AoOlAkIbAaOzBuPvE{GrBcUbJwNhIiG`EyG~DcJ~FaOjOyQdTcM`RsJnQwJ~R}HtS}IbWgI`YkG|YqDbU{Eb`@uDld@_Cl_@sBl`@aCpn@kMrkCyInjBwInhBiKjuBmBnc@kBxb@cPdeDwBd]uB|]mD`\\cFjf@iF`ZeEpTgGrZcGxWgI`[kRdm@mHhQ{Nl]aRp^yHvMuRn[aQhUaRnWaXhYmUxRgR|NiRlMoP|JaHlDcBz@i]dO}HrCiKrDiTdGa`@pH}W~DyObAwTbAaUTsRO{DKw_AeGm]eBcYSgVLmTrAaT|CgOfDiPtEsJ|CkIdDwPtH{RpK}P~KkHdFeIdHmLvKcPrPoG|HcHfJaLbPaM|RsHhNcH~N_GxMcFnLeFrMyIxUgIvU_Plh@yMte@yLbd@kc@lbBiSdw@oNvk@oQrw@_Kbf@iLdo@gF|[oDnWmClToF`f@wA`QoAlO{ApUkAjYu@~To@nc@Gh^Zx]d@jRXrGvAn[|Cvb@rCbYpE|\\hFd[|Fb[zRdaAnGn\\zF|^bCnSrBpTz@bTPnWi@nWcCj\\mBjNeDtOqGdTuIlTcLlR}LrOeNdLwRtKqRjGmXdJye@hPiGvF{jBll@qeB|t@{kAff@eI|BeNhD_H`BeG`A}Fh@{J\\_NMmK_AgPyCcMoEqQcJoQkLyNaMaHwG{FoGcImJoH}JiRc]{R_a@gKqWmG{OwSek@mR_f@qJ{W_Ssl@cVyv@}Mee@qMed@k_@k{Ac]w{AwKag@oRe~@aBoIyHw`@wN{v@_VmsA}^i}BiXijBqLe}@eNkhAeIks@}Je_AaKyaAgJ{aA_JgeAcIeeA_N_rBqLouBmN}{CwJm_CiGoeBaMafDkUcyF_NivCeDcv@kMk_CuJw}AoMuoB{IaiAeFwo@_Fun@cH{u@wQ_pByLseAsDgYwA_L{Hsh@}Hgf@gKak@kJie@wAwGyNwq@yQy{@_Iga@qXieBgGsb@eLi^}EoOuMg`@gD_JsHgSi_@ms@eBsC}Si]wHcQgGuRcNui@sHm]yFwZmKom@eJem@{vA_oJuK}s@uc@kyCcRykAaR{hAmUyoAeWeoAqL_k@gMoh@a[_oAy[yhA}[geAe\\_bAWu@}h@{xAoQmg@gW_q@gs@amBow@uuBmUun@cXks@g^oaAeRsh@sWeu@od@yrAeTop@cg@q`B{Omh@s[_hAwLid@uLcd@sLue@sKmc@oIa^_Pas@_Myl@gEoSmS{aAgPo}@qJki@qIig@iG_`@qLst@uQ}nA}C}TaV{iBcDsWiFib@kMeeAyRocB}QcaBwTyoBe`@wjDoLqeAiKm~@kNqmA}Iuu@sTyiBiCgSeJws@eEe[sQ_sAkUy}A}Vy_BmRgkAcIuc@eOux@eU{iAoEqRuOss@oWuiAcRyt@eWcaAmVi}@wfAatDia@wtA{a@qwAe`@euAaa@a}AoPoq@mRwy@gByIwAmGsl@usCsPs}@q_@ovByb@ukC_eAcnGk^gxB_ZceBaZcdBg]olB_^olBgRqaAuUikAm^ueBw^udBah@u}Beu@_cDwV}eAgw@ceDya@cfBi]k{AsRm~@{Pw}@iOa}@kLmx@sKi}@qJ_aAiFuq@uEix@{Dw|@sBsv@}@kh@g@oj@Ooo@D{m@v@_dAbAgr@hBqq@fCkz@vFsxAbBw]vEe_AtEg{@xEsv@rCyb@`AsOfGa`AjR{qC~R}wCjYehEjMcnBzLovBpHa`BnCa{@|Aop@jA}w@f@eo@Jmw@Ygs@oA}mAwAqp@IuDeCko@yC{r@}F}aA_IeeAgG_r@eHar@mIus@gYatBkJ{k@uMiu@_Lkl@{Lgm@kMuj@mUs`AwPqo@c^anAqb@yrAsZsz@{Wqq@_\\}u@y_@my@{a@qy@ca@yt@gO}W_Ri[sTe^eb@cp@gb@ao@iw@miAiyAiuB}l@sz@il@ox@eh@cr@yg@io@gh@gn@el@ip@ar@ct@iw@qu@ur@on@g|@is@y_Akr@qbAqp@c^eUexA_{@{qAst@ucBk_Aan@s]in@o^soA_w@m_Aun@qq@}f@gq@qi@er@al@yu@cs@go@ko@on@sq@aq@kw@kk@ks@{j@kv@gh@wu@{g@qw@il@iaAuT{_@iXeg@if@w_A_l@{mA{p@q{Aoq@waBeQwb@eK_Xyn@k}AaVkl@yNm^sRse@yBmFehBopEcw@_mBs`@u`AgpAazCse@qgAwT{f@_Ucg@iPk^op@{vAce@saAonAofC}oBwyDqjB}mD{b@}x@imE_iIklAgwBar@akAebAy~AscAmzAoi@kt@wd@kk@gByBgm@_s@wh@ak@wk@{j@ep@cm@sbBwwAcaAk}@uXyZ}Vm[}]_g@s\\mi@g]oo@qZwp@_Seg@iRch@_b@iqA}`@qoA}b@mpAi\\o}@g_@g~@s\\kv@_e@{aA{`@kv@w`@os@ed@qt@af@yt@mp@y}@_]sb@_e@{i@ig@aj@{f@}f@q`@q^w`@s]wPsNen@ie@yr@mf@_t@yc@mo@}]go@c[cz@}^mt@eY}\\wLep@qT}m@eRafAuY_iAsX_b@oJuv@}P}o@sM}gAsTmhAmTqrHyxAkrHgyAomDyq@wm@oLgZyFcw@cPabAgRi`@aIqa@yHq[sFus@aNqcAeQieAqPywA_Rqr@aJmeAmK{VuBms@eFoc@eC}r@}Ciu@eCoAEorAiCikA[imATqs@n@wmAvBq_@v@ovCbJ{{CxKksCjJ{oClGk}AjBi|Ax@arAOqvAeBeqA_DooAsEak@qC_j@gDsjAqIa}@gIm}@iJc~@{Kq_AsMmsAcT_qAkVgv@mPot@oQge@qLce@mMwcA_[{n@sS}lAgc@ma@ePuw@w[ew@g]gfBaz@maAqf@gjEszB{aBcw@iv@w[}x@}ZuzAwe@oEuAuXsI}o@mP_f@iLyn@wNkWcGi_AwRoh@gKay@sPsQwDgXsFkXwFsk@uLaSyDukCij@w~A}[cdAaTufA_Uwy@yOuf@wHsb@aFaReBsQgAac@{B_X]eV?eKH_Zb@mUxAyTdBiYjD{W~DkNhCcWrFgOtDmMjD}FnBcB`@ga@`QwLbF{S~IiXpMqQ`Ku[dR{L~HeLdIuUrQqX|Ua]d[aZvZeUjXi^td@oTpZqYtd@sVrd@gn@nnAyMr\\oMx\\iXvz@oJx\\oPtp@cE~Q}Nzr@kWvwAeOjz@sDxSmLhn@qBrKukAhtGejAnmGid@pdCaPry@gR|}@_Nzl@uNtk@kMre@aNjd@a[z|@kNz]uMp[}a@lz@wOfYgPzWoUp]{c@nm@s\\z_@s`@pa@sg@tc@ob@p[wd@bZme@bW{f@vTsd@hP_a@~Lk`@vIu]jGw]pEq`@nDk_@fBsXl@eXFaSQa[s@qg@sCog@{Dsq@uGsyB_WawBsV_[kDcfDo_@eNwAkcDq_@kgCgZmfCmYeg@sFyZwCus@_Fi^aBgUYyVE{BCo]|@gLXoc@`Dyb@hFkk@hK__@tJq_@nL{XlK_XfLa[tOeg@lZkUjOwQnNcUdReUrRuSbRaTlSq^b^aa@~`@eb@hb@o]r\\e]`[mi@bc@se@|[yk@z[mf@~T_o@vTsp@bPkn@jKui@nFwZzAkYn@y^D}Zu@i`@mBq_@mD_[sEgZoFwWgGcSkFeZmJit@mYaq@u[{NsHs_@cSofAkk@c^aRuT}KsHyDq^sQwg@gVqYcNko@eZyzA{o@a~A_o@irBmu@iE_Bao@gTod@oOab@yMkh@gPsLwDyg@{NaNsDaKqCuWqHoc@qLau@cRwr@aQwaBq^ibBa^{dBm`@_`B{`@ah@oNmc@kMqn@qRev@eWw`@wNkmAaf@gq@{YyY}Muc@gTuoAqn@apA_q@g`EmxBo}@gc@qk@sV}l@_U_k@_Qwl@}Nse@wIoe@mGqSmBa_@kCo^uAw_@q@k_@Hcf@`Au_@rBip@lGcWvDke@hIc_@pIgf@dNae@jOqq@fZck@`Ym^jS_u@|c@ukAzv@kc@vYcg@l\\yp@lb@eq@r`@_ZvOiv@r^{l@fUyd@dOue@lMcd@|Jkc@zH{ZhEk`@fE}[hCqn@fDox@jBe`@d@}DFgpA\\yXGee@L{{@B}b@MeQ@si@BguBLcoBDwsA@iZEu^d@q_A~Aem@rBwfBhJae@lEwu@jHgfAdNuu@fLap@nL_mBna@_g@hM_m@jP}v@~UyL|Dis@`Ws}@f]_t@tZ{w@f^yl@rYeo@x\\ao@~]cv@|d@kt@ve@_b@xYqbApt@yo@dg@{_Ahx@aj@~f@w`A`_Aat@zu@iVtWyTdW_GxGqd@bg@u_@xd@uw@p`AuXv]cNpPmf@jn@if@|m@mf@`o@{h@xq@}g@vl@uY`_@wj@lt@a@h@ao@`y@_[da@osAteBcrArcB{yDjbFa{ArqBql@nx@ml@h|@og@dy@k\\tn@eUle@c[hu@s`@`lAqVnw@e_@llAmWny@_Vdt@iSzj@aU|j@yPh`@iVtg@oO`Z}`@lr@{Xfc@mXl_@wQ`Wy[~_@gZb\\i\\f\\gVlTwUjRg^|Ws^nV_k@n\\g[hOsQbKaj@~Tcl@rSeZbJk_@hK_t@fPs}@|O}y@fLwc@zE{i@hFyy@rGmx@~Esz@vD}{@jCkx@nAicAb@aeA[aeA_BkeAaC_h@gB}YcBu`AiGef@aEae@sEocA_L_i@mHc`@yF}y@_Nq`AqQya@{Ig\\gHyDy@{EeAuc@wKah@_N}~@qWudA}[k|@uZkv@kY}z@m]{f@cTqb@yRyc@ySaf@gVsr@u^qr@m`@kp@a`@}`@{Vyi@_]oi@g^e~@in@}~@cq@s~@qr@e}@ss@efAo}@wbAa}@wpA_mAqk@ek@ec@ga@yd@}e@y{@{}@{r@ow@}WgY{]_]u`@c_@wpAekAwu@mj@uJ}Euh@g[il@i\\g@YakAwl@glAwl@mYmNm^kQox@ga@g]yQs]uRom@y]yi@u[iNiIwp@e`@qo@{_@__Acj@{u@kf@sg@__@iXsTgEkDiw@sq@q{@iv@q{@ct@iy@_p@cz@wn@ix@qj@i]kUgfA_s@}iAwu@ma@iXcmBooAarBosAi{@wj@iu@}f@}|@qj@ie@{W}[gPoa@wQg`@yNa\\oK_[mI_]mI{[sGk\\kFg_@qEsd@eEkt@cFw{@}Eyo@uD}`@yB}h@qCeh@uC_m@cBye@c@}a@\\w_@jAga@|Bsi@xEgj@jHy]xG{\\jIk\\dJag@jPsb@hQeg@vUmb@tUue@jZ}d@z\\cg@`b@}[rZwh@fj@ui@lp@_^df@e[vd@is@tgAon@paAuV|_@ci@`y@ug@`u@g`@jh@c`@dd@_`@~a@}F|FoSnRyVnTsDbDsb@`\\ib@nYgg@~Ykc@jTqe@`Tce@rPmg@hO}k@bNck@~Jgj@tGkk@`Ea[tAwd@l@s]Bmw@e@kg@}@sc@u@_|@eBky@eDy^cCa]gCcc@aFib@kGek@mL{j@cOwh@}OcsAad@{pAwb@qm@gQ{d@aLkh@_Koe@oGyB[mj@qFqk@eEu`BsKuxAsJmw@uFmw@iGyy@uHg_@gEet@wIoj@iImi@_Jok@aKo`@{Hej@mLggA{Ug`@_Jsf@cLmdB_`@wl@}Koi@qI{h@aFmi@gDii@oAej@HgXn@yZlAo_@fCwm@|Gw[hF{Z~Fyg@tLoc@zM_k@pS}m@nXeq@h^up@|b@sjAvx@igAfw@uBzAwbAdq@gr@ra@}f@~Vei@vUgq@dVyj@lPkd@nK_ZxFkb@xGwf@bGuk@nEa^xAo]z@e]Hkh@e@ch@}Aml@uEwk@}Guh@kIke@_Kkl@}Oo]{K}b@aPuj@mVaZ{NoZkPaSuLoRyLa^sVm^qXw[kXkRmQ{NmNq_@_`@yYi\\eYk]aIqKgFyGyZuc@mRmY{NyUkRg\\k`@ot@sIsPg^gu@eH_OwYyn@a[yp@}Oi]wd@obA{d@mbAk^eu@_]up@qf@w|@sN_VgWw`@c[ce@cZ{a@{c@ck@_d@}h@md@}e@oe@wd@u^y[yb@}]m`@yYeg@g]sc@oXkl@g\\iKkFeg@sUk]oOc\\aMyj@oRqf@cNsl@}Nmf@yJs_@cGom@cIcl@{Fae@uDot@aFqr@sDar@eEir@_E}~@aGye@gE}c@kEs]mEq_@aG{p@gMgi@_Muk@mPc_@yLc_@cNci@mTkj@}Wah@wX{V{Ni\\sSg\\{Tae@o]}b@w]wPgOqJmIeXuWkf@}f@g_A_eAoyBekCoo@mw@gnA}xAmg@ui@qb@ob@m^o[}[iVqYuSs[_Tok@m\\{WuMiYoMme@{QiPmF_UsGgIkBwf@gLeQeDe[sFaCc@m]qEs\\eDc_@yB{ZaA_Ve@}WA_f@h@sd@jBuZtB_J~@uPbBua@dFwy@pMkt@lLs]bGiu@pLgtBb]gsBt\\{gC`b@ocArPsaArOm_AhM{_@lEqj@vE}p@|Duq@jBwc@b@qc@Ksf@e@ek@aCuq@cEws@wGsu@mKkq@aMyw@kQe~@gWog@gQag@cR{f@oTwg@}U}a@sTkg@{XebAol@urB}nAyZeRml@k^qg@u[o`@sWge@m]ei@ed@if@qc@y^g_@a`@sc@}]ac@}Xa_@_z@kiAoy@egAuc@wk@cUuYma@me@{`@yb@_XwWag@wc@}u@yo@iY{TeSqOii@a_@mVoPaWwO_d@iW_@Sog@mXqX}McXqLie@yRif@aRo]wLmImCaSmGsi@}OmcBwd@mNmDkc@sL{YeIyw@uV{i@qSoUgJmUcKaVcLaVqLcOeIaOsI__@qTm_@oV{c@m[up@ke@qh@e_@qZuTakAa{@wlAg{@oj@{a@g\\kV_k@ya@ys@af@o_@aUsi@mYyj@gWyk@mTwxAad@}}Ayd@es@oWeZwMgUiLg^iRqk@w]{j@w_@{a@kYmUyOqs@id@aa@mTqa@wRkf@wRaq@}Tow@wT{w@aTcl@kQwe@_Qaf@kScf@oVed@oWup@md@_n@kg@{a@s`@{j@cl@u}@qaAkd@ef@sc@sc@}TmTy[iYsg@{a@iq@af@ap@eb@i^kSk]oQyTuKwn@aXsq@cVkp@cSsm@}N{q@{M_r@_Kqx@eI}pA}J{h@}Duj@yE_e@kFui@uHaw@yNyj@wM{c@oMgk@aR}\\gLqXqKw]sMioDyrAqoD}sA}u@k[yu@i^uk@e[ik@c]_k@u_@gj@qa@_`@sZg_@u\\u[qYgXmXe]g^{OiQcKgL}@eAkY{\\o]kc@g\\{c@me@sr@aBcCuU{^aRg[sRo\\wQy\\_NmWyBgEsn@ooAk|@{gBeSi`@cf@k_Aqj@w`A}a@uo@ua@_m@ae@en@qf@ml@ed@_g@sS}SqUkUoo@wl@at@im@am@kd@o`Aeq@}x@}j@gy@mk@cx@oj@yq@cg@ew@ip@gl@mk@wf@qi@_}AonBws@{|@ie@oh@sZuZuZuX}i@wc@cOuKog@y^aXmSyc@m\\wm@oe@mn@uh@qo@_m@cm@wo@qu@q~@ot@qcAew@ulA}b@er@q^kk@ai@{z@qa@ap@}a@ao@ka@yl@cc@gm@qg@kq@ah@_p@qi@wo@yk@_p@mTyU}XyY{d@ae@_f@ge@qcAa_Aqp@ij@ie@k_@_^mXmZcUaOoKcWoQ{YcScGaEib@_Xql@a^ga@{Ui^eScGgDwf@eWmc@kTek@iXi\\ePiVmLuVcM_`@sSmb@{Vsp@{a@es@wf@of@g_@eMaKwVaTqWmU_^y\\y\\e]iXsY}Zk]yY_^wXm]k\\{c@c]qe@c^ki@gb@{q@{OcXa`CklEi_A}fBoiA}wB{pGo|LkDwG}z@k`B}n@kxAsu@mjBswBmjGyg@{uAsj@quAch@mkAikAggCeWoj@mnCy`Gg`@wz@ex@caB_u@czAuVc`@{MoT{e@ev@ul@eu@qn@kr@}f@_f@ud@ka@oeGg{Esm@ii@_U}Reb@sc@ce@_j@yb@il@{b@yq@s_@aq@qM}VkL{UcQy_@eNq[sOe`@_Ni_@wRkk@_Rul@_b@gvAwV_y@sU{t@gOoc@_KiYwL_\\oJiVwKwWmLsXcNa[wOm\\sOk[iQ{\\{Re^g`@}o@m`@gm@uc@gn@ed@sk@oTeWcT_VqWiXwVuVmXwVuWkUg]wXk\\{Vc\\_Ug[cSmS_MyT_Mg[kPcN_HiOgHc^mOuVyJgT}HqWaJ}UoHyX}HePoEmf@}LyyA{]cZeHymBkd@m{HkjB}l@sMcm@gLqg@sHaSiCaRmBoWaCoYsBc\\{Aw]eAq`@g@__@CmZX{[|@ib@bBo\\`CeY`CsXtCab@tFeo@pJ}uAzUaMlBkw@bM{i@~H{}@tK}\\|Cu\\lCwz@tEs]nAs\\r@}j@h@mm@AuVYyUa@q`@gAgi@{Bah@mDse@_Egf@eFkYsDcm@gJkm@qK}c@mJcc@mKq^iJu]_Ks`@aMo]oL{]mMy[iMc[wMcZsMa[gOo[{O}e@mWwd@eXgW}OuWyPsb@{Yg`@gYiRyNmQuNsb@a^{AoAiXsUaC{BkSkRmR{QsYaZmXkXof@uj@{^ub@o\\}`@sp@_x@qdAmpA_\\{^a\\a^yf@_g@wb@q`@sBmB}f@ua@af@m^yYsSmKcHgn@i^}a@}Uoh@uV_bAya@odAi[qo@mPev@cNa]yF_^{Dw`AuGkoB}Ocm@_EyzA{Rkr@qL}n@{LowB}i@mqCa{@yjAqZiEiAs_AeTmaAuPcgAiNklG}s@yp@gIarAoQaiAwTyw@qSox@_Wqq@eW}j@aU_}@ib@a_A_h@{z@gi@y|@oo@mq@ui@ihBoyAa{@oq@__Air@ol@q`@yt@}b@a[iOsq@y^i~@mf@oz@ae@ibAwn@}z@sk@cw@el@iQwMmcAg{@ys@wp@qs@_r@egAokAaeAomA{eA}vAou@qfAk|D_hGuh@}v@y|@aoAokCsjD_b@ki@ib@mg@}a@ud@mf@me@_a@c^_`@qZyZqTuU{OkIiFmQsKkh@cZkF{CyRgKuV}My_@oU}XaQgd@oZud@c]ix@_o@w{AulAof@i_@oc@s\\kc@s[gIiGoQ}Ms[iTiv@wc@kg@iXuf@yVqZ}M_i@iTcr@uWmiAi]miDw`Au{H{zBszAac@af@iNms@cSckD{bA_j@yOmsJspC{_@kL_`@_Ku_@eIo_@kGab@iFib@}Cac@{Bo_@]m_@Aah@t@mYfAoYfBiY`CcY`DkYtEgYnFaY|G}XbIyZ`J{[hLiPhGwRrI{MnGkSvJ_b@zTaa@jWgMxI{IvGwQ~MiKdImQbOeQ~O_LpKgO`OcStSue@zh@ed@rm@ec@pp@wa@|r@}j@ziA{^tw@gf@|eAqGhNeWbk@_X~h@mrDvaIihA|dCwkA|bCc[dl@}[vj@qb@~q@ck@ry@}k@|v@cn@rr@sn@jp@yk@hh@}j@je@m_@jY{]dVcg@xZi]hRg]~Pk]hPc^hOc[tL_\\jLiZxJy]tJwV|GkAZqYtGmYbGgZxFe\\lEq\\lDi\\dDe\\bC}b@|C}b@lByb@l@uc@Dqg@]cqEmHotA_C}pHeLaY[_YCoYr@oY|AkYrBiYnCc`@zEq[xFq[dGyYlHyYlI{YzIyYxKi\\`Oc\\hPi\\bPi[lQqUfOoUdPwTnQaTbSqXvU{WfVwWvW{V|YwY~^iYr`@wWn`@eWdb@k[vk@sZhm@av@`|AsWth@_Xxg@wXdg@cYtf@wo@`dAgq@zaAkqI~nLw~F~fIyo@b_Amo@z_Awn@v`Aym@zbAuoG`zJ_k@`z@kk@tx@kXv^gXv]qp@fw@kq@|t@}l@|p@cq@xo@mq@pm@g~@`t@if@d`@mf@~\\sv@xf@ew@|e@cbAnj@sj@bY_k@pVuo@xWgq@hWcXbJ}^nMqkC~~@y}@b\\qrExaB{}Avj@yTpIkdAja@q`Aff@e_Azi@yu@fh@_t@jk@iq@bq@sKlKkKvKqKxKiK~KcVhX{U~X}KbN{KlNuKvNqKxNkK`OiKnOmWl`@eLvQ}KbRoLnQuKhRoUdc@eJdQiJjR_LxUoMnX}JfUiJhU_J`TwI|TmIrT}I|U_IxTeItUcHbWuHbVkHfViHnVcHpV{GtVqH`YmHdYcHdYcHhY_p@llCcFjSaFvRaIbZmFrRoFhRwItY}G|S}GtSgHbSiHxRuGzPuGvPaHlPcHjPmJtSuJhS}J~RaKhRmJ|PsJtP{JhP}J`PcOzTiOhTuOzS{OhSsJlLuJ~K{JxK{JpKeKfKeKbKgKxJkKnJ}KvJ_LnJcLdJgLxI}K~H{KzHaY`RcRvLwM|HqM~GyMhGaX`L}WxKwp@~SwUhGwUxFac@nJmSlEkw@jP_|@fRcrC`m@uoApWug@xK}|Bpf@gOrCeOjDwq@hOcSbE_SlEoRdEuSjF{NlEmK|CiK`DkKpDiKzDqWbKkW~KkNxGkN`HiNnHgN~HkMvH}QpLgLxHsLrIkRtNgRlOwLpKeQ~NgNrM}MdN{MpNwMbOoPtReP`SyO`TuOhT}Q~XuQlYwi@haAsJvRmJzRgJnSaJhS}Nl]KT}^n|@k~AdtDoLnW{EzJeFtJmMfVgFpJkFfJ_HnLcHbL}GxKEFeHxKyIrM}IfM_J|L_JpLkOhRmO~QmOdQqOzPoPjQuPxPuPtP_QnPwjAhgAupAzlAkzAfuAmFxEiZ~Wua@l^kGjFuGfFcPxLyPnM_Q`MeOjK}N~JsO|JwOlJgYvOuLnGsKdFgVtK_X~KyJrDuJdDeKhDiLhD}VdHyNnDcTvEwVvEo[~E_VzC_U|B{a@lCq^lAwJXkNPiTLqMFaVS_N[yU{@yGe@aJe@eJg@aJo@cJu@_JaAuS{BqSeCqSkCqSyCgV{DkyAiUk\\cF{y@}KqFo@mIeAof@yE_SiA}R{@uOk@aPa@_X[mPBs]d@yVt@ePt@wM|@qMhAwFf@iP~AqPvBsP|BqHhA}VzEqQbEqQlEkPvE{OxEyRrG{HjCyHtCqPpGkPdHkPrHsGbDqGhDgPtIsGnDoGnDmRjLcRtLqFpDcKpHuJjHyNhL{NpLoO|M_N`MoK~JmKfKeNxN}MhOiIjJcIrJ_IvJ_IdKqIzKoIdLiIlLeIrLwI~MsIbNoIlNkIpNeIzNaI~N}HhOwHlOqIpQmIzQeIbRcIhRgHrQ_HzQaH~QuGfRuGdRqGhRkGjRcGxRcGrR}F~RyN`g@_bAzlDeVp{@c^poAsO~i@uObi@qMrc@yMpc@iUvs@mJ`YoJzXkVnp@wJrWcKjW}HtReIlRqSre@oI|QoI|QkTdd@iD|GeQh]{Vje@{KvR_LvRaLdRcLfReL|QiLrQmLtQqLdQiOrTqObTyOxS}OnSyKfN}K`N_Yv\\wYf\\mLhMmL|Lm[l[cM`MkMhLmMnLkMhLqM|KuMzKkLrJmLjJaZzTwLbJwLpIyLjI}LfIaMjI_M`Ig[fRe\\`Rg\\lQcVvLgV|KiV~KiVlKwVvJwVjJcWxIeWlIy`@nL}`@|Kea@`Kka@jJ_g@lKeg@~JeoAxVit@lOsYtGsYfHmYvHiYjIcYbJaYnJeSlHi_@vMm[lMe`@pPaKrEkKzEkG^w[`Nky@z^cPjHmI`EgKrFuUtMsC~AmEfAwFlC}MpHmbAdi@aFfCkF`CgGzBwGfBiFfAaEd@}DXkGJmE?gDMuCS}Fo@gIoAcKiBwYcFcNaCaSeD_SiDySqDoR}CuUsEkFsAgF{AiK{EeK{G_HyFeGmH{DgFeEkGaD}FaCaFcHyPyJcXuJuY}Kk]kKi^i\\ciAkF_KyEkQsEkQiFkSyD{OqE}QoEeRoEeRmEqRkEuRmEcSiEgScE_SaEeS{Jgg@{Ime@yIwf@iD{ReD}RaD{R_D{R{C}RwC_S_Hoe@_D{TqCsSoCqSkCuSiCkS_CkS}BmSqFah@cFog@aDw[iAoLkBwSiB{SeB_TcB{S_B_T}A{SyA}SwA_TsA_T_Dci@kA_TiAgTcAcTaAaTWoFiBya@eAsU}@wUgB_k@qAqi@oA}k@e@aTc@qTa@oTaAki@yBqtAiBstAo@cj@y@si@i@si@kBotA{AuoAeBevAaCsoBq@{i@w@ej@{@ij@eAeq@s@ua@eAui@iAej@sAej@yAki@gBsi@oAg\\uBmj@SiE}Bug@eDen@kCod@wCqd@oDki@cEsi@wC}^kB}SiBySmBySsBySsBwSuBuS}B}S_C}S_CsSaCqSoGkh@_Gyc@YyBaH{g@iHqg@qHqg@yHkg@{Hig@eIgg@kSeoAue@muCkLms@{K_s@yHeh@uHkh@mCwRoCkSmCoSkCsSeCuS_CwS}BwSyBqSuBsSsBuSmB_ToBeUkBgUaB}S}A}SyAqTsAaTqAcToAkTiAmTgAoTaAkT{@cTw@gTu@oTo@cTk@mTg@oTe@mTa@cTYgTWoTUoTOoTMiTGqTEoTAuTBgTHiTLqTLoTPmTViTZmT`@oTb@gTf@kTh@gTj@gTr@kTt@kTx@gT|@gTz@gT~@cT|Bei@~Bui@vBki@jByi@p@cVh@mU`@qUXoTTeULaUHkT@qT?sTMkTMuTWsTIeGSgN_@aSe@eTgAe]]aLy@iT_AeTgAcToAoTyAkTyA{SaBiTeBcTiBsSoBaT}C}ZoAkL_CwScEc]oIaq@}Gkh@kQupAgHog@cHig@_Hqh@sGsg@kCoSiCsSoEw`@eDe[uB_TyA{O}B{WcBySaB{SaBcTsAuSqAgToAgTgAiTeAkT}@}S{@eTu@gTo@wSk@_Tc@aTc@yS]aTYaTOsKQkUIsUKk`@Agf@BwDTe`@NaTVaTV_T`@_Tb@kTf@kTz@cY~Asc@z@_TjBya@ZeHdBa\\rAuUvBw^lHseApFav@lKypAtHy~@tKkrAdEoh@~Duh@xDuh@rD{h@lDqh@fDck@zC{j@nCwj@zB}i@nB{h@zA{h@jAmi@|@ii@\\}TP{SL_TPkTHgTDeT?yXEmYIqTMmTMoTUiTYgTYqSc@qTg@qTg@eTk@gTo@eTs@qTw@mT_AmT_AmTeA{SgA}SkAeToAcT{Bo]oCs_@}AsSwC{]oBcTmBqSoBqSuB{SqAiMoDa\\aC{SeCySgCiSiCeSoCsSoCiSqCcS}Kiu@oIki@qIqg@uIkg@_Jcg@iJ}f@mJsf@yJkf@}Jif@eKaf@gKmf@oKmf@iK}d@yk@ufC{Kke@{XykAai@y{B}[muAc[ssAeTy_AwKkf@kKse@sK}f@gKgf@aKef@}Jgf@uPez@qJmf@kJof@cJyf@{Imf@qDmSoDoSmDkSeDyRkIog@}Heg@{Hcg@uH_h@uCoSsCuSiCkReFg`@}D}ZcC{RaC{RiCgTeCyTaC{T_CyT{B}TqBsSoBuSqBaTeCaY_CaYwBkWoBoWsDsh@uAwSqA}SqAwSmAwS_AcQqAeWmCui@qAuYm@wN{B_i@uB{h@sBai@wLa`DyCmr@cAiTiA_TmA}SsAmT{AyT_BcTcBgTgBcTgBcTsB{SyBsSkCaVuC}UyCgU_DaUyCyS_DwSgD_SiDaSmD}RqDmRuDiRcEyRgEsRiEcRuEwRsE{QuE{Q}EoQcFiQoFyQoFkQuFeQyFeQyFuPcG{PmGuPqGsPqGiPuGaPaHqP}GmOiHwOkHkOmHcOyHkOyH_OaIwNaIuNaIaNkIcNmI{MyIaNoIcMsIcMcJmMeJ_MgJwLkJoLsOiR_QcSwV{X_b@id@wV}WkX_ZgWiYuJ}KoJaLmJaLmJqLyIeLcJoLcJ_MaJoMwH}Ka@k@uIsMwI_NkIyMmIsNaIiN_IuN}H{NsH}NoHaOqHkOeHmO_HmO_H{OsGuOwGgPoGePgGoPgGwPgGaQyFwPuFcQsFkQkFoQaFaQwD_NkGuUaF{RoE}QoEkRcE_RcEqR{DiRuDsRoDkRkDkScDyR{CoRuCmRsC}RsC{SgCqSaCiS_AgIcCeUuB{Ss@wHy@yIgBmScB_T_BySyA_TuAsSoAgTcAgR_AgRsAkX{@cSy@ySw@mTq@cTq@eTm@iTi@aTc@gTc@gT_Asi@[qT[_TY_TSyT_@e_@c@wi@g@y~@y@kyA[kj@Us^Y__@g@{i@[sT[sTa@kVc@uVg@uVk@}Tm@_Tq@sTy@}T{@aTcAuTiAkToAySuAqTwAcTeB}SkBkTqBiTyB_T_CuSmCcTsC_TyCySgDqSgDyRgDqR{DgS}DqRgEqRmEsRuEsRwEwQaFeRkFwRkF}QmFqQoFiQsFgQeG}QwF{PyFuPaPkd@qGgQkG}PwGeQuGcQsGwPsGsPma@yeAwGyP{X{s@gG_PoGkPwG_QiVyn@cPab@{GgQmGkP}Osa@}Xat@iPkb@mOka@cGoOyGkQgGmPaGkP_GyP{FmPqJwYoFaQqFoQgFmQ}EqQwC}KcFiSeEuQiEaS{DoRoDsRiDcSaDcSwCwSiCgSiC{SuBcSuBoSsBcTiBySiBaTgBaTaBmSeByScBmSgBaTgBoSqBmTqBmSuBcS_CuSiCkSsCcSyCaSeDcSkDqRsEqUiEoSuEyRuEcR}EaRkF_RoFkQ_GqQeGcQkG{PiG}O{GkPyGmOcHqOkHiOyH{OcHsNgHqNcf@w~@qHuNsHcOsHaOiHaOkHmO}GaO_H_PuGuOqGkPcGgPeGaQqFsPqFoQgFqQaFyQuE{QoEaRaEyQ_EgRuDiRgDiRuCkQ_DgTgCuRgCgTwBmR{AePkBwSkBeT{A{S}A}SuAySuAcToAeTmFm}@wA{SyA}SyAwSeBiTkBgSqAaN_CoToCsToAwIcAkHaDqSgDoRwDcS}DyR_EiRgEaRsEoR_YsjAoEoRkEiRgEoRyDyQuDmRgDcRiDuSmEmZ]_CuEk`@uBmUmC{]aC}]iBoa@_Am\\UwJMwJMwKEwKAcLBaLJcYV{S`@cTh@iTn@mT|@uSlBmf@nCim@zBog@|@iTt@mSp@uSj@{Sf@{SZsSFgKJuP?w]Sc^s@c^m@uQs@_RqAwVcBcXqBcWqC{ZqBeS{BoSeCeTaN{gAgGsg@gCyScCkSaCqSuBuSsBySmBiTgB}S}A_TsAcTkAkT_A_Tu@cTo@mT_@{SYuTOkTCmTBoTNkT\\aTb@aTh@cTt@gTz@gT`AiTfAySpAiTnAaTtA}SxAcTrE{l@jIgdAdE}h@|A{S|AySxAaTvA}SrAiTlAgThAeTdAoTz@mTr@kTn@qTh@qTZkTL_NFgVAwTKsTUaUa@kUm@eTu@wT_AiTg@iIiAiTuAqTeBiTkB}SwBoTaCuSkCmSqCuS{CkSgDaSkDoRwDqR_EgReEaRsE{Q}EaR}EyQeF{PeFaRiFcQiOsg@yFiR}FcRuJa[uJ}ZcN{a@}FwP}FsPoFsPsFcQkF}P}FoRoFsQmFuQsF{QeFuQeFoQaFmQgFiR}EuQcFuRwE_RuE_RqEcRkEaRiEgRcEiR_EcR{DqRoFyXmDaRoDeSiD{RgDiS}CwRyCuRyCwSsC{RiC_ScBsMiC_TwBeReCgUyBuSwBcToBaTiB}SeBcTcBaT{AcTwAwSoAcTmAcTeAuSgAuT{@wSy@uSu@wSs@mTm@uTk@eVe@aWa@uT[sTYuTOsTMuTMoTGqTG_T?sTBwTBaTHuTJkTLmTd@_i@l@qi@t@qc@^uTd@uTd@mTd@qTtAmj@~A}i@p@gUp@wSjBki@pBej@vBmi@xB_j@|@kTx@}S|@uT`AsTlL}hCdAkU`C}i@`AuTz@qTz@cTv@yTt@kTp@gTl@yTh@qTf@sT`@cU\\kTRsTLwTJyT?mTCaUK_US_T_@aUg@yTo@mTs@uT}@cTkAeTuAkS{AgSkBkTgCkX}BeSkCsSoCmS{CkScD}RkDqRwDwR_EkRiEkRoEaR}EcReFuQoFsQ_G}Q{F}PiGaQqG{PsGmPyGmP_HcPiGsNWo@cHaPmHcPsQk`@qQc`@qQg`@qQ_a@yGqOwGePwGmPmGsPgGwP}FcQsFkQcFoPaF}QsEoRcEeRwCwNkDcRiD_SaDySmCiSiCuS{BcTqB_T}AsSyA}TmAgTaAuTo@gTg@mT[oTMqTGqT?_UHeTHwTNwTh@kj@~@u_ALyTF{TD}TCqTK}TWwTa@yTk@uT{@qTeAkToAkT_BiTiBaTwBaTeC_TmC_TwCkSgDkSoD{R}D_SiEwRqEeRkFkS{EyPwF}QuF}PiG_QkGmP{GwP_HiPwHqP}GyN{HmOwH{NeIcOeIiNqIoNqIcNsIyM_K{NaKuNyJeNoJ_MaJmL}JmMoB}BwF}GmJoLuJ}KyVkYyVwX_WsXqo@_r@qW}XyViXqVkXoVqXaV{XcVkYeJeLcJgLcJgLoJ_M_JyLcJcMyIcMwIgMoIeMoIyMsIgNcIoMcIgNaNmVsHqNmHqNoHkOoHwO}GoOsGkOuGcPqGkPgGqPaG_QqFsPkF{PiFmQ_FsQwE_RiEwQaE_R_EyRqDsRgDmR{CwRwCmSmCgSaCgSwBmSsBuS}AqRyAwSsA_TkAuScAcTy@cTu@aTq@eTo@mTK{D_@gNi@cT]aOuAop@uAoi@m@}Ss@sTy@_TaA}SkAkTsA_T{AeTaB{SkBwSuB}ScCiTiCkSyCmS{C_SgDcSqDyRyDqRcEgRmEmRoEuQcFaR_FiQsFyQqAgEeDeKyF{PyFyPeGwPeGuPgGsPiGqPkGoPiGaPmGoPmGsPiGiPeGqPcGoPaGyP}FwPwFcQuFmQkFiQcFsQ{EuQqE_RkEkReE}RqD{QmDsReD{R{C{RqCkSiCoSaCmSwBoSsBySmBqSiBsSmBiTqEkh@uEih@_Fsh@qBiSyB{S}B}S}BmScCiSkCwSqCuSwCmS}CuScDiSgDcSmDyRqD_SwDoRcEeS_EeRkEyRqEkRsEeR{EcRaF}QiFsQkFoQ_GaRaGiQcGyPkGuPuGoPcHiPcHuOoH{OwH{N_IyNgIeNmI_NyIgM_JiMcJoLsJgLsJyK{JiKcKuJmNeMwHsGsKoIwKmIiN_KmT_OyYaSqZ}S_LkIwKmIuK_JsKkJqN_NyCuCcCiC}JuKoJaLiJmLgJ_MmJ}M_ImMoIuNaIiNsHqNqHaOoHqOgHkOcc@caAyHuP}HePmHuNaIeOiI{NiIcN{I}M}IkMgJ_M_NoPwQiScRkQsJwIwFeFoOwLiLqIyL{HaMiH}EmC_FgCaFeCcFaC}EyB_FwBeFsBcFoBeFgBcFcBsMcEkMeDoMyC_NgCkF{@oFw@oFq@uFo@sFm@uQyAkJ]cN]qMO}MB_NNqMZy^lAmQn@sNb@mNb@aNVwMJsMCsMUkGSmESqMy@{MmAoM_B_NwBuMgCsM}CmMiDiM{DiUcImP{GyJ_FgKuFwHqEyKcHs`@eWyKoJwK{JcLwKkM_N_KiLuJsLmJaMmJgNwIyMmIeNsImO{JoR{H{OoHgPcHsPaHuQoGyQoGkR_FkO{EsOy^_lAgK{[aHmScI{T}GkQqH{PqHmPeIuPmIgPsI{N}ImNeKmOmK_OsJ}LyJoLoKkLsKcLuKcK}K{JgbAk{@mYwV_PyN}OoOsNuNqN_O{NaP{F_HwFeHmIqKkIuKqLwP_QyWyGqKyGyKwImOsIsOqLgUkLwUkMwXqIqRgs@y_Bsl@wtAsS{e@yLoX}LgXcHiO_I}OwHeOwIwO{IcOsI{MoJgNiJgMuJ{LwJiL_K{KgKeKkKuJoK{IsKqIaLiIwLmIeKuGun@e_@wf@uYoYsPwXwPeKsGeK{GkRuMoRgNoe@y_@wJiIuKsJsK{JgHcH{AyAaKcKgOgPgOoPoR{TuHgJmReViO{R}NeSaOmTwNuT}I_OyIgO}JwQsJmRaMaWaHsO{G_PeGyOuF{NsGaRmFuPmF}QyEkQiBkHcC{J}B}JaEaRwDoRoDuRwFs\\cFc]{WyqBkG{b@_Gg_@sHyg@yGoa@sDeSmGo\\yGc\\}Gg\\mE_R{Ho[mIe\\cIwYcJ}[gFgQiF}PeFcQ}FkRei@ebBgFmPqF{QkI{YwEuQsEaReEaRuDyQqD}R_DmRyCsRoCaS}BgS_C}SoBoS}AqSsAmSeA}SYgH_@mJs@{Te@qS_@kTIwSEySH{SVgT\\wSf@gSt@aT`A{RlAqSdAmOlAyOdBmSjBqR`CgUrBiRbCsSfCcSpCmSpCuSlO_dAdFi]vCqRbCcPpi@ipDnOmgAbHei@xCwWbB}NhD}]xCq^lCs^rBq^lA__@`@aTT{SRi^AcUOcT]yTk@kTk@qT_A_TmA{SyAeUeBwSoBoSyBySgCsSuCySgDqTeDkRoDeR_EuRqE}RuFoQwHoYiGiTeI}XcC_IK[wLka@kMod@mHeXiDwNQs@s@_DSy@uFcY_F_WsDcVWyAqAuHoCcPwE_\\cDiU}BoSqEkf@}KswAmMu~A_D_]kLwtAwMc|AgEed@cEic@sCa\\{NawAiKi{@iDuV{DuVuI{e@}Icf@iMkj@gMgg@sRio@oSym@{IqVsJqV_K_UmKsTkHeNqHeN{Rk\\ajA}eB}JgP_KwPuJmQcJaRaLuVoKyVeJcVuIiWwGsT{GoUgG}UoFcV}XswA{R_eAqIgb@qJoa@sHoXkIyXyIkXqJaX{GuPgHkPwHgPyHgO}HuNkI}NsImNaJeNaHaKgH{J}_@ye@saAggAatA{{Aco@os@}d@qh@mf@oj@cLgM_LuMyKqMoK{MiK{NaKkOaKcPcJoOwUkd@iJwRiIcSsGuPsGsQaGwQcGkRaF_Q_FkR}EgSeEkSmEmTqD_SiJci@kUmrAyDeUoE{UuIy_@aK__@cKy\\sKu\\aNk^wNa]mOm[sPkZkLwRsLaR_OcT}JuNop@{~@qQ}XyCoF{JmQkKqRyJoSgLeWoKaXkJ{WsIaWcGaSuFsScFkSqEcTi@iCaD{O}DgTuEeWmEoXwDkXeDcX}CgWwC}X_CkX}BiXmBuXgBcYoAgYiAkYsAaa@{@}a@O_KgAey@aEicH_@}b@WeTa@iZs@iTaA{W_By\\wBw\\sBkVcCmVgCgVyD_ZuCiQ_EsUeEgUoEaUkFkUcG}UgGuUyGeUuIiWqI_WkTcn@ew@qsBsl@q~A_m@_aBgVgq@}b@mmAmb@ymAce@ewA_c@ixAaTgt@uTcw@qHyXoR}s@aRqt@oM_h@_VsaAyVgjAkVkkAiZw|AiLwm@_Len@_Mos@sLwt@iYckBsZayBqYizBaPerAsO{pA}_@{dDyZchC_Fs`@{Foa@{Fia@mGga@sFk^iGc_@oDwS_Kii@kGqZsGyZwGwZ}GiZiKqd@_Lqd@yNwj@{Iy\\qZ_iA_Mic@_M{c@a[_iAoLmd@iLae@sIc^cIc_@kH{^{Gq^kFk[oFy[{Eu[qEo\\kFoa@gDgWaH}j@iImt@k[}lCwFea@iGy`@uGk`@oCcPqCgPiFgY_GyYoGkYsGiYwMmi@qNwi@cp@{aCwOgk@sOqk@}HsZgHi[aEyOuHk^oFkXcD{OaHka@aKan@qDsViDqVyE_`@wE_a@qEu`@_Ey`@uJyeAcK_jAeKmhAkEec@sEwb@gGyh@_Hyi@aIuh@uIqh@}Hoa@eIua@wIsa@cJ_`@aPip@}Qqq@ckAieEmCeLoWyaAaEaPaHkXaPkp@cOcr@cVsjAeLgm@mK{m@aH}`@_J{m@eEoZkIao@wGel@_H_p@qGmp@uEyi@yDyh@aEyh@{Cci@yEyaA_EobA}Byz@q@k\\o@g]g@i[Wc\\c@gy@Esc@Jkd@Hoc@^ud@jBssAv@mh@fAki@bCwcA|Ka}DnCujAz@cd@n@wd@|@uk@l@el@Zcl@Pil@Ein@Y}n@c@on@q@{n@qB{_AwB{`AiE{_BoEoaBac@qsOcCcjAwBekAaAcu@i@ku@[{{@Lis@jAy`BlHueEvCqjAtC}vAzD{nBhB{kBPes@Jew@]sr@o@sr@{@as@aB}r@iCav@{Cgv@qD}u@eEcv@gDie@yDkf@{Doe@kEef@aDy\\oD{\\mE}\\cE}\\eF{`@kFea@cGya@kGq`@qLas@wLsr@oNuu@aOyu@k_@olBca@apBw^siBmOaw@uMor@}S}kAiIwe@}Hif@iHyf@_Heg@uG}f@gGyg@kGol@wFal@yEqh@kEsj@{Dek@oDkk@yAuWqEm_AiBye@aBof@kAwg@y@sf@c@cZc@q[g@ew@Cm^Gcn@Jof@Vwf@~AsfAhFovBrAu[|Bke@bC}d@fFsx@rDaf@rDue@xDga@jE{_@vEc`@hF{_@vBiOzBoOfGq_@bGk]rGu]zGs\\fHc]|Hq\\dIw\\zKwb@lLec@nLib@|L}b@tFmR``@}qAnHqXfHkY`HuYtGoYzF{ZfF_\\`Fc\\lEu\\~CaYhCoZ~B}YrB{ZdBuXpAsYz@yYp@oYf@u[P_\\Im\\Ma\\WuQ]sQg@}Qi@aRoDgu@}B}YkC_\\uCwZeDaZeCiSkCaSyAqLsEsY}Fs\\mGu\\{Gi]}Gk\\mH_]wH{\\qHa[{HiZuJa^iKk^kKa^cLw]_FwNiKk[wKmZyK_ZeLkZkH}PqHmQmHwPcHaPkUog@kVyf@kVue@}Vqe@mdAalBmP}[uO_\\cG_N}FkNmFgNuFaO}GiSeGuSiGiTqF}S}E}SuEoTiEoTcE}TsG}`@wDwUaMqw@gFg[qFo[cGa[yGmZqEoQ{E_QyG_TmEuMwGqPcHgPuHgP{HeOcHqMmH}L{H_M}H{KsI}KsIcKcJkJ}IuImK{JcLgJoL}IiLqHsMiHcMmGaNgGoMwEuMcEsMcD}MyCsMiCqMgC}MwB{\\eF{MkBwOcCcHqAmHuAeHyAmHeBsGyAaHiBcHwBsIuCoIwCaI_DkIgD{I_EwIgEoIuEqIcFyQyLkQcM_QcNqPaOqIuIgIwIeI_J}HkJyHsJqH_KgHiKmHsKgEmGsDeGmD}FwDwGui@c`Aon@_gAqQk[_X_b@qUg^uU{]qSuYyQ{Vip@y{@_LeOwWu]OQuKsNsJ}MaZcb@oLiRgLuRaLqSmK_T{HiQeHsQaHqQoGaRuIaX}HeXiRsr@uH}XwHgXgIsXgIeXuIaWwJiWcKuVeKyUop@cxAwJ{TkJ_VcJwUqD{JkDeKgHgVaHqVsGgWaGoWyFuYiFiZcFeZqEcZwEeZeEmZaEsZsD{ZeF_c@uEsc@mEmc@_E}c@{Dad@qDqe@aIekAyBac@oBic@eByb@yAqb@{Agh@mAch@w@{h@k@yg@]{`@Oo`@CyWI_[Pqr@`@sc@xA{gAfBa~@zBe_AlGcyBbCa|@zBo{@jAsf@|@ig@h@}f@^og@Nsi@B}i@Cwi@]ij@i@ya@e@cb@s@_b@}@kb@eIqhCmIwyBmBgl@QiFc@aN_B{i@]{KK}DeDucBCgCi@id@O_WIeNIcZOit@?gh@Bck@@{JPoc@Vk{@Baa@Mka@[ma@S}O]eQu@qWaAgXcAaVmAkUsA_SyAuSkB_SuBuSgCiT{BmQoCcSqCwRqDiT{D_TcEkTiE_T}C}MmDoNiDaNsD_NyDoNcEqNsEoNuEkNcGoQkG{P_HyPcHgP}HkQ{HyPwIuQkIoP_HiNeHoNiHkNaHyM_c@s{@mHqOmHsOoQg`@kH}OyGcP{GcQkGwP{H{S}HyT}HiUqHgUwHuV_H_VcHqVcHsVuEcRmEoRmEuRmEuReEmR{DqRuDyRyDoS_F}YaFc[uE_[gEe[eD{W}CmX_DiXmCyXyBeUqByUkB_V}A_ViAsPeA}P}@aQy@cQgBgc@}A}c@m@qT]uTa@oTY{TUiTSkTMcTIqTi@ohCQ_W_@yWu@iYy@cUcBs[sBwY_Dy[qDe[aEaXqDyS}EcW{DqQmGkWeGcTyFcRaGgQqH_SqHkQaI{PeIePiJ{PqJyOgMyQaMgP}G}HyGwHyNoN{NgN}GwFoG{EgHaFaHoEuHcFmHoEyHaE}HsDkHuCkHmCqHmCgHaCsGqB}GkB_HcByGwAmHiAmHcAmHcAgHs@}h@_E}SiAoNqAuLoAmPiC{K{BoKgCsGoBoGuBsGaCcGcC{MgGgFaCiFqCcFyCeFaD{EeDiEcDqHeG{G_GmHsGqGiGeEgEeEyE}DyEsDgFiFgHcFkHoFkIgF}HmE}HwEeImEoIoEsIsXqi@eM}UmFqJgF{I}NuTeOkTyJkLcK}KsKoK}KuJsEmDiEcDyEgDwE_DcM{HcFwCeFoC{JqFwFsCiCsAcV}L{MsGwM}GgF}CcF_DeFkD}EkDgEkDoEmDkEwDmE}DaF_FcFgFyEiF_FwFyCwDwCyDuC_EsCeE{GgKeHmJcDwFwEmI{GmM{Py_@eL}XoN_]eLaXyKsVkKsRoIgOyRg[mj@ox@cWi]sIsLmIaMgIqMcIqMmNaWoKiTuJiTqJ_UwPqd@uE{NmEuNaGwSeIa\\wHi]{@oE_FuXgCiMyBwN{D{XuDa[iDk[qBcW]oEiAwOaA{Q{@_Ro@kR_@aSI_F_@_UU}\\EcNDcNLuMP_MrB_y@vB{e@pCme@zCoa@pDya@zE_d@fFgd@jJms@vJis@|Ms~@dF__@zE{_@|Fgg@|B}RtBsSxAkPrAiPpAiPnA{PxAeYdA{Xz@g_@X}NTmOD_M?kM@{MIiMa@sRCuAoAil@gHkjAIcAuGgw@{K}y@yL{p@wJcd@}G_Zw_@o`BmCsMmCeNeCcNuBsNoDqXoAeLiAkLaAiK{@}Ks@{Ki@qLe@cLa@qLYiLSoLKgICqIAiIBcJH}LJ}Lb@mPl@gP`AyRnAkSdAoMjAoMrAkMxAoMhByMlBuMvBqMbCwLrBuJxBsJ~BwJdCqJbBmGhAgE~DkN|Je]vJa]rJi]fCiJ~BsJzBwJtBcKdDuP|CcQjCkQzBoQ|BmT|@{It@{IbAuMx@_Nl@iNd@eNVuKX}KNyKHaLDcNIcOM}N[oOYyKe@eLg@iLk@_L{@sLaA{LeAyLoAqLeA_JkA}ImA_JwAyIsBwL{B}LiC}LoC_McBwHmBqHgF{QsFqQ}FcQ}CuIaDsIcI_SaTgh@qVal@qL_Ycz@eoBwKyWy`Ac~BeG}N{F_OgFgNQc@sFaPmNyb@kMce@eKye@}Hid@qH}e@{Fee@wE}f@kDie@oBy^_B}b@cB{iA_@kp@_@sr@f@cjAfAo|@zAcw@~CcbAtEqbAjEyu@dJgrAjHybAjNq`BzFso@bK}gA|JkiApRccC~Gu`AfCe`@xBu`@lB{^bBg_@rBke@~Aaf@bAg`@t@y`@`BwgA\\yf@Rog@D_^?u^Mq^Yq^Ya]e@k]m@}^q@u[y@a\\{@u[aAgYeAgYkBua@qBo`@_C{`@}@aPeAiPaCc\\mAsPuEal@gFcm@uGos@oOsbBsHwy@aEmc@mGkq@wCw]qF_n@{Doi@aCs^oAyWk@aMe@_Kq@gNiCoi@uAgb@{Asf@o@mc@c@mUi@{Uk@yYw@gw@G_r@Hal@VmVJqULgb@Tgb@z@i{AZ_m@Hqm@Im\\Uw\\a@q\\s@y\\u@mV_AkVeAiViA_W}AmWiBgXsBmW_CuW{E_d@uFyd@wFq`@iF}[gGs]}G}]mEgTaF_UaFwTiFwT{Mwf@gOkf@cNed@yJc\\{F_SgCeIwc@_yAky@}pCgk@klBma@}rA{Tcv@iLi`@yKu_@_Mgd@oIy\\}GkZaGeZqFc[qEo[aCkQ}BgQoBmRaB}QuBkYgBoYsAgZeAaZe@yQ[_RMkR?aR@wUNuU`@uUn@eUt@oT|@_UtAiVrAcTfDsj@nDwj@tDun@|Dqn@xKeeBnHqmAnHylAza@exGra@kxGzK}dB`HmkAnCoe@|Boe@`B}`@rA}`@~Ach@x@yYb@cTZiTZcTPkTRe]Ds]GkYSo\\e@gf@UyR]uRk@eUu@cUq@}T{@aU{AgZ_BeZiBcZwBmZaCq[uCy[gDa^{CeZsEaa@aF{`@cGgb@mEwY{EcZeF{YsF_ZuEwT}EiTeFwTgFiTkFsTyEmQuFuSwFkR{Jq\\kKq\\eLy\\mLy[eFwNuF}N{FwN{FsNaGsNwE_LmN}[mNu[qN}ZwcAuuBq_@yv@a_@yv@kPo]kP{]iRqa@eMs[gIcSgIySeSwh@{H{SoHySqHoTsH_UkGgRaG}RgG}RyFyRoFyRsFmSoFgScFkSuFaU}FqVoFcVcFmVuD_RqDcSaDsRkD_T{Fy^oFc_@{Ek_@uEy_@_Ek]oDu^wCs^kC__@aCi^sBg_@wAuYmAeZy@wZq@cZUaZByY^iZv@wYhBg_@fCo^pA_N|AiNfBcNrBiN`CaOnCwNvCwN|CuMpEiRtE{QhFkRnFsQvF}QlE}MrQmh@x]abA~@iCbm@ieBxOma@xXws@tMi[bLi\\pu@o|BhDqMlFcS|BgInBmI|EcUjEeUdEqU~DaVrCiTnC_U~BuTvBaUlAcOfAcO~@cPz@oOpA}[~@yZBm@ZiRJyRJcSDuRMgMK{MY{NY{Lc@eN_@_Ne@mMk@sMiAmQoA_RwAyRcBiQaCkUeAoIaAqI{C_TeDsSkCmNsCmMuCmMwCqL_CoI{B_IaC}HcCsH{BwG{BeGeCgGgC{FaDaH{CaGiI_OaEcHwDcGeEgG{DkFaEcFeEwEmLoLsFyEuFqEyFgE{F{DmDyBkDuBaJ_FiJuE_JeEoLgFw^sOaJ{DiJ}DqDeBqDeBkDeBkDkBuE_CiEaCqEkCgEoCwE{CgE{C}FuE{F}EgEgEiEiEqEoFiDkE{BqC}B}C}BiDsBcD_EqGyDuGsDyGkDcH{CwGmCkGmCeHeC{GgCwH{BeH{B}HsBuHqBsIgBgIiBmIcBqIwAeIqAcIqAsImAcIkBmNiB{NeE_^eFsb@eFwb@_AkG}@cGcAoGgAgGeAoGeAcGaAoFcAoFuC}L_DcMcDmLgDwK{C_J_DwIuDyIoDcIyDuH}DsHaEmH_EgH}QeZuRmYyRsXmRcYwLyRqKgRkFgKaHgOmC}GmDoJyFgPcFeQkE{QuD_QaCwM{BqNcBmNqAyNyAqQgAuRw@yS[sQMaLBwKDaLRsLZ}Nl@yOjB_]nAyS|AsTrEuh@~Kc{AxA_VzAkVhAeWfAqVh@eO^cP\\}ORcPPgQF}QGmQUuRc@mTe@}Rw@{ScAgSaCm_@aDg_@kD_]eBcNqBkMgCmPsCqP_D{PgDqP{CuM{CkMaDgM_DkLqJmZ_KgYqEyLsEkLcGmNiGmMyEkJeF{JwNcVmMcSuMuRsLiOeMaOq[k\\yTqTmAgAm^e\\gZiX{XyWgU}T_RwR}TmWkP}T{I}LqM}RiO{W_J_QuKgTeLyWoIoSeJoWiKw[aIkXaG_UuHi\\aJic@sGu_@eFq^iGgg@gDw]_F_j@MuAaAmKaHix@{Eqg@k@yFaCmV}B_S}ByQmC_S}CiR_EkTaEoT_FyTyE_TcFsReFiQwL__@mMu^gHqQuHgQcIeQyH}NoS__@gTi]iA}AwEsGcHcJqQuTmV}WcWoVsWuVcKoJ}JeK{OaQcPcRoO{R{NcT_QeYcPmYkGwMwFuLsFeM}EiLsF_OgF}MuFmO_FoNeKe[yJy[qJuZkKw[iJ_XaEcLgEeK_GqMgH{NkHiNuHgN}HiMaGgJkGaJsGkIoGiI_GuG{FyFuOqOyIeIiJuHmVcRam@ca@aSaNuB}Amm@cd@}JmIcHsGgH_HyEmEuEyE_FmFiE{EmUoZcSsZoLiT{Swb@kSmg@qQed@kj@kqAiKyT{KmRmH}LkOeUiPmS}QgRoU}RqOqK{YcSct@s`@gl@{\\_e@uZia@c]cPgPcQwScOeToRw[}Qi_@_Ok_@eLk\\uY}dA_ZahAsReq@iQke@oPc^iImPwPoYuZsd@gSaWiTeX_`@ud@uh@}n@{d@ok@ea@uh@_`@gi@uYcc@_`@ym@oW_e@kXii@m[ut@_Rce@{Syl@yQyl@yQqo@wOem@q[qoAgUe`Akb@cgB_P}p@g`@w_Bo[srA{ZyoA}WqhAsRwx@kb@qeBcMge@wYkeAuDkMiQim@uXmgAmZypAul@gdC}U{z@eN_b@gOab@_Sad@wMaXkHoNaW_b@kPwU}OuSeP}QeSySi[mYo_@{We\\wSsOkIy\\yR{HcDuk@oSi[iJq]_Iqa@eIym@kJ}j@}J_b@iIeB]mk@yPiSiGsf@}Q}OmG{ZwOkNaIsKmGkXuQaYkSo_@w[{KsKgy@sz@eSoVkUyYeSyZwS_]eSy]}Vge@qb@u_Ayn@k}AsIsSuQgd@eJuUaL}Z{Rem@sLcc@sNgj@gRit@kPgp@{Jya@cYyeAae@ciBym@}aCmCoKwOin@aUocAqVkbA_XeaAoY}_A{Zs~@o\\}`AyO_c@yNq\\c[qq@m^su@}j@adAax@egA{RkW{r@i|@yeA{cAcXkVEE{zAsjAo}@gn@ad@uY}i@g[{MwHwHiEg^kSoKsFmPsIgb@mToy@{a@gn@wZMGsgAeh@}_B{r@qv@e\\az@u\\gWuIwm@mUc]mL_b@yNgt@aVwu@_Vof@uNabAiYo~A_b@gaBm`@{~Aa]a_AwQc}@gP{Z}E}zAsU_mBqVugA}LwvAcN_{@_HosA}IwjAsF{Zq@yt@oBcx@g@cy@Fix@xAgo@fCyy@~Fup@zG_i@nHoUhEg[xFeh@`L}LvCat@bT}x@xY{]vNs^rPim@~Zgh@pY}kAfv@gf@n]ye@x\\gg@t]kf@v[ug@nXkSbJuT|Imc@fNaj@lMyl@~Hmg@nDoa@d@}]M{[aBe^yCw[}Eo[eGqm@qMar@}OiViEuPoBoVwB_^mA}a@?m]pAee@rEih@jKm`@fLyc@lPeTpJsWtLof@vSyCbAgNtEkUnGq[|HeWpDqf@vEgU|@mVFaZ]eQcAc`@_EuV{DyReEod@uL{hAu[m]gJkYeGwHuAeSoDi[qDa\\oBsg@kAkHLs_@b@kd@bCmFp@gJjAgc@jHsUfFuq@xRw_Bbg@g`@fKk^nG{Y|CuYrAmMl@ea@M}_@}Ae[cDi[oEgv@_O{f@{Jks@aN{c@yGsl@mFsm@cCmS?aT@wk@hBeW|AsZxB_a@jDi\\xCeQbBwg@bE{k@vDwe@|A}i@r@eg@?ue@s@eh@sBuc@iDyc@cFip@sI{i@uJwYoGmNeDyRsFgT{Fa[uJ{ZoKyUcJsb@mQuUmLiV{Lk[eQuU{Mk\\eSwZ}RiUoPmXkSsKwIg_@c[oZmVmZcVoOyLc[_WwVoSur@uj@mS_P}XmUyScRsRyQsRiSiZs]{\\{c@eXab@cT}^yT{b@wVwi@aToi@qVct@mPgk@yOim@wTg_AuVycAoN}g@eNgb@oSij@}Og^oZem@aOcXeNeVec@{t@}a@er@aRsYoRgX}MuQaLqN_E_FgNyP_VwWcVmUei@eg@oi@se@qReQkd@qb@u]{^cPoR{Ui[oTu[sSc^cUke@sSsf@gP{e@oMuc@_Ik[sNuo@gJ_h@oHci@uFwi@aGyw@u@eNeBsa@oDg}@eCow@iE}pAyC{z@kB{e@aEe`AwGumAgFqw@eLasAuLaiAyRyzAaDsRiEoXqIcg@kNcw@sJkf@qOuu@qLqi@eCwK}Kkf@mj@e}BqOoo@}Lyf@io@kiCgh@}uB{l@acCaG{Va]wsAms@iuCsYkkAse@inBag@wqBqr@qtCsa@g`B_n@gaCsM}f@y]uqAg[igAi\\ahAw]{fAsb@wnAyg@iuAme@{jAq_@_|@{\\}t@oc@m}@ad@m{@c|@q_Bae@my@kZai@kAoB_cBgyCuXgg@eYwi@kd@_~@sn@quA}Red@qa@geAa^_bAq[g~@q]uhAy[qgAaf@{cBkgAm}D}d@wcBif@mgBoZsjAu[}nA}ZitAw\\}|AgKeg@w_@mjBkUmiA{O{v@yQobAe@wByVwlAy\\eoAwIab@wTogAcAaFkUwgAgZuvAg`@ahBsg@qzB{|@kuD}k@waCck@k~Buj@qxB{Y_dAeZ_bAc^_gA_Yqu@ea@gcAgb@y`A}b@a~@qb@yy@_d@iw@oe@cw@yc@yp@}c@}m@mh@cq@yi@ap@ec@oe@{i@_l@wp@cr@yr@gs@ux@sz@mYwYsa@ua@oAqAmuA}wAuWiXq[a]ak@qn@kZi]qZi^sUyY_]ac@g\\ic@w\\me@ma@wl@ca@ao@wV{`@}a@cu@qZ{i@sEgIem@kkAwp@ewAoRgc@e^_{@}b@agAks@_kBi[cz@kd@omAg_@ucA_k@ebBsRkn@aQkn@iNch@sHc[mKsd@cJub@mNcs@cN_x@aJsm@qNkfA{Hyt@sF}j@yEwm@sDqj@wDmp@qBub@sBaj@iBqt@cAao@c@mn@Uiu@Pao@l@kl@rAky@vAqq@nBiw@rCwq@tCun@xG{sAlGyrAlG_kAvFgfAvJykBvFyfArWmaFvMweCdH{sA~G{xAjGg}AbD_`AzCcbA|Bk|@|DgjBdCgfBbBg`BfAmnBZevBYsfBe@_eB}Aw|AeC_aBgBu~@iB{x@a@kR_A{[gBum@cC}t@{D}dAgEcdAsDax@mDyt@kJefBuJabBsEst@cI{lAcI{fAuBeYeJojAuOqgByQymBuX}hC{]_xCgV{iBoQioAuQ}nAeLqt@uIgi@kSmmAiUgsAqP{}@wPc}@y[q_BgPqw@eSo~@wRw{@{W{iAaIe^sRo{@uXqmA_[ytA{s@e_Dk[gtAk\\atAkr@gmC_u@amCcYycAgXscAcWkcAaKua@}Jac@_Pgs@aPqu@mPmw@yRecAoIoc@mQobA{Jql@gCmOoNs|@cRooAgBwLsMaaAe@oD}McdAwHik@iIan@sSi~AwM}bAyMscAaOoiAgWwqB_UilB{SojBsSgpBmP{dB_Hss@uVqtCkQwlBqS{oB{PqzA_Q_wA_RyuAsMs~@qQojAkDsUwAiJ_Lis@}RukAu[khBuNqv@uNou@gZi_Bq@qDge@}eCem@m`DaF}Vwh@orCgd@ufCgc@ujCm[}tBeYoqB{XkwBaQsyAiQo~AqK}cAeIsy@}OmeB}Mo`BcU_|CeIenAuEkw@_OaoCgL_yBaTqaEkTwdEyPueDiJ}fB{SaaEuIm_BkH}qA_IklA{KczAmLcxAcM}sAqUwzByNapA_M{`AiI{n@aKku@cEmYeJym@qBwMeMay@yXuaBkMis@o[obBoB}JyP}y@wWkmAqBgJ_Oeo@cXeiAqQss@{S}x@ga@yzAec@q~AkMwb@mQem@iEeNwRon@ev@c}Bce@qvAq@oBwNib@u@{BuVcw@ACim@_hBoB}Fw\\{dA}FsQaSmq@_XmgAsUkfAyQs_A_RonA{Jcq@qUgjB{NeaAcLwq@oMir@_L{h@{Mal@qGuWmOek@s^amAo\\o`AgV_q@{Wor@qn@w`B_Sci@gQ{f@eOgd@yPyj@wIgZqJe_@sOkq@gJcd@iKqj@sKyr@eJ}w@eEgi@kF}r@{GajAeGs|AaJsjBgHsjAeHew@kEob@oEg_@sGmd@iPu_A}O_y@oOen@_Mid@iNgf@_c@okAiMg[aEuIcGiM_ByCu]as@cBgD{@gB_JgP_Q_Zoa@kt@}y@q}AuDoHiBqDgd@ux@kO{[eBqDgM}YiLgYkLa[{KyZgKu[eJ{ZmMkd@sHmZ{VujAkNmv@kJ_n@_Jwr@{Gso@sFin@yD_l@{Em~@oCs}@w@uj@Wuf@As^Loj@j@ib@rA_p@??h@mQ~Am`@fBs]jDul@fGur@jBkSvG{r@zJmaA~PigBlIm_AvEkn@vEcx@hFilApBer@bBkz@b@gi@Pop@D}j@Wgh@]i[u@oc@MeGg@_WmAwa@cBme@uCgo@yCag@OmCsE}o@oFkp@gH}s@oEua@cH}k@cNg`AkMmv@ESmMir@sMyq@cUaeAeOup@w]oxAeV}aAgPuo@uAoFav@}wCyd@ciBmq@qjC}\\_sAsTsx@wQyt@yT}{@ajCqcKwcAyzDcrAsdFsE{PsXadAyRyu@}WoeA}DuOcUc}@ot@s`Dgm@mwCqHeb@gMou@}`@alC{MieAoPaaBgLkzAsG}_AkGqjAoFurAiE{dBgAcx@m@kx@BypBt@wlA`CgtAbMa|DpIifBrJuvA~`@mjFnc@uqF~f@ilFji@omFrrBkbQ`dBkmMlyBepPbdBilMdq@}dFxGch@rKcz@tAcKtRsxA~[ocCd]adCdOckAlHqn@hGgo@tMmvA`J_iAfH}aA\\}FrDmm@bCsZ|Cgp@zDs`A~Ca~@xD_zBhGmgEjEy~ChAuq@h@qn@Je\\My]K_Ua@}TgAyZo@sS_AoSy@aQoAwRyByYu@eHyI{|@gDaX}DgY_E}WwG{^iKig@kEgR}IyY}DqMyGeQmG_N}IwOaFiIiF_HqG{HuEmEyFkF{FmEgH}EgGkDkH}CiGgCgIeCuGcB_I{AuHq@iH_@uHSaHNaIJeKvAuNlC_K~CyN|FoJbFyM|IkQ|NoUfSyWhTsOjKgL~FcRdGoOfCmL|Ayf@bCwx@kLwx@sNyoAyWkeAyWsvBio@ur@oUe|Agk@sIaDiAc@}tA_j@}zAyn@e|BecAogAkg@axBkfAe`A}c@yOwIq~Ac|@}}Ai|@itCkdB}hAyq@ifBkjAmn@u`@gIgFqJsG}B{AsdBkiAo|AibAeaAqo@yYuRuuAo|@u{AqbAmPkKqoBipAo@a@shA_r@qbBi~@}uAgq@qsDgaBuzAgj@_hC}x@_j@_Q{hB{d@moA_ZadB_\\}jBuZ}pB{WydBwNchBwLmoAuDad@YsoAcB_}Al@evAbCkmAhFq`CrM}rBvMgeB`K}kAzCymAvA_sAK}Oe@gaBsEiv@aEaZ}BYCyf@wD{_A{Jqt@iJWCiIeA_p@uKerAyUe|A}^mTwFSGap@yPmoBis@cv@}X_gA_d@w]cPg~BmlAuWeOMIuJuFcv@cg@is@ad@qVuPebAqu@ssCs{B{uAijAaz@oo@gkAsz@k_Aio@qt@ee@yIuEozAc|@sz@ec@kx@m`@chA{f@aeA_d@{zA_j@}iAo_@orAk`@qlAyYwoAyXujC{k@qqB{b@e|@}UgmCit@s~@{[g`@eMqfD}nAaQsG_|@}`@emAmk@{mAqn@ykAmp@{rAiy@}FcDmyAi`Aom@ca@}|@aq@{iAk`Ak_Aox@cw@cu@y{@g~@ih@{j@yWk[}VgZsp@cy@ej@ot@ui@st@el@{|@mn@o`Aar@qjAiv@cuAqu@mxAex@gcBcq@a|Auk@{vAib@qgAyUup@oCaJsr@ssByk@qkBw\\gjAeV}y@}FeTun@c~Bwl@__Cau@w{Cok@{gCof@ayB}C_P}\\sbBeVopAq]akBe\\{lBsv@czEeT__BkE{Yo[}yBoOikAea@ghD{RmgBeFmj@w\\khDmYqeDmNmiBiP}oBmAsRoE}l@yHe}@_D}f@}Ca_@eE_h@gCmZqLqnAgDm[{^{kD_NymAuL}`Aw@uFoUebBmVo~A{Z{kB_\\{hBu[m_Bg^ibB}U}gA_t@ixCgz@a|Cmp@a{Bsm@qqBqAcEe`AkxCeHwTc`A}rCmx@y}Bgg@}uAkGyPsh@qvAgp@udBgu@qlBu_A}}BodAadCk{@coB}x@ahB{JcT{FaM__@cw@ojAkaCwt@wyAod@o|@iz@m_BkKcSkUed@aJcQqYug@ccA_hBmg@q|@aFiI}FuJkGgKkx@etA_|@wxAci@wx@aa@yn@kJsNaKaPse@ut@wwAswByAuBqcBqaCw}AcxBcoBojCo|@cgAwaCstCo~@keAohAynAcgB_lBk_Bm`BkbCk~BkI{H_gAgaAklBicBo|AyqAscBguA{vDawCowA_iA{m@{h@yp@yl@qHwGo~@k{@oeA{fAccAohAy{@qcAu`@kf@a`@ag@}z@{iAa`@_j@w_@aj@kx@mpAkr@cjAiv@cuA_u@owAqP_h@gIuTm\\_w@cFuW_EqSqBsQy@qQa@uT?oj@rAqzAj@{a@pAuWlBkRzC_ObE}L~HcX~K_Qpm@u_AnN}R|`@ok@hh@yq@~_@_g@td@}j@tsAg_B`g@ul@tT{VrEkFbLmMna@kb@xy@uz@vu@{r@tlB_gBxtAipAhaA_~@vPuO|m@{l@|QsPxf@ad@|E{EhUaT|d@mc@nBqBzC}CdPkOnLwLt`@}c@tPaTrRgZrRi[~Qs^dQw`@~Roj@lHcTvRym@l[}hAfMad@dFqQb_@esAlR}q@rdGemTnZegAra@g|ArKga@dKi`@xMil@pG}XzHm\\bYmeAhf@mdB`HmVr]{mAnXq{@~HuUhKc\\vA_GfBsIj@kDxCeRdDkR|AgJxDqURiAvBaOnBeNDW`CiSBQlAqMl@}FvB{V`AcLhDqa@tAmM|AaPxDk_@fGif@pDyT~Iwi@nEqUr@sD`CsMx@kEZcBjD}Pp@iDd@yB|DqQjAsF|@gEj@{BPw@j@cC`@sBJm@\\}B~@_In@iFt@qG~Fqj@fCe]?CfA}W`@}[FmKDqa@GaNEwDAwAAu@?k@AeBC_CWkp@m@ir@yAgmBa@iJaGsg@cHkg@iBgMaByLkCyRq@eFe@kDk@gEoA_Ki@oEYqEx@oItEu[~Lyx@rAuIbC_OjBwHnCwHBEvBaFzBeEfE{HpAcC~DmIjEgLhDoLjDsMzAmGvCeNtCcPjBoKfBqKfBiQdEyc@zDyb@fAqQNmCXkEf@oIPsD`BkT|Cs]`A_K~@uJJs@vAcLfAmGvC}L~@eFv@uEhAqJd@eGHiH@wL?{MV}H`AaIvBiK~B{FbFwFrDmFpAiDnIme@`@qC`pAigIbTgvAbW}nCrPqrB|HaeA`K_qAnJeqAzPqwBzPewBzKkrApBgU`Du[|Fij@fEs]pHsk@tIqk@zIel@fM{_AzLo}@xL{{@jk@q|D~qB{_OhPm|AdFqgBzDmpAtBom@~Baj@`AcV`Ewr@|Dwe@tBgR~A_QdCeSxEg^jIid@nFgVlIs]tC{JjGqRxEwNjS_i@hUqg@lfAi}Bf`@uaAtRom@rHcX`K}_@|L{i@lJ}c@jRgdArKar@pEk]j@iFh@yEbK}|@vHqt@dHkv@~Fi{@bFe|@bFslAr@q[fAaf@b@wRdC}uAtAycAx@iz@n@ebABaHFuqAd@i}BIahBFkj@?cPW{sB@}Nf@ksAf@k}@pAqsB`DimBvD_kC`Gy_CzAkl@l@_g@DqBEgn@dB}m@x@sUvDqaAfGegAjLq}A~@}NlKkfBlJwsAnHgaAfJgkAfBoTtGsw@~Dec@~Mu_B|Hkw@lTuhB|I_u@bGgd@fCsQ|CmSdGg`@hHgd@pKqm@jGo[fGeZtNop@hDeOvCsLpNmi@nJc]lLc^lMy_@vUkl@vLmYxL_XzKuT|Re^fK{PdEuG`H_LdG{InRsWjUeYf\\_^vPaPzQuOjMcKzXcSvZkRfMaHpJqE|R_JhJ}D`JmDzQ}FtHwBdMuBzr@cNhT_Evc@mFpCa@|GcAxVcFj_@}JhPcFrNwDfHoB`D{@rO_Ev^eK~e@cOfR}FphA}b@pDuA|CeAXKxJcDdFmArGcAtGi@vFOjEItBArJGbHElMC~I]zIaAjHkAr]{FbFy@vDo@tQ}CbHk@rBMxIStUc@fRK`NiApFoAvHgCtJuEfNwJjG_FtEaEhGeG~A}A`IcJbHwInHgLpI_ObGkKrEqId@_Aj@mAbAsBrBiFjFsNjI{VdJkXnHuSzEmLhHkO|FwKnHeM|f@}t@zTo\\fGuJfGyKdGyM~DyKpCaKpC{LpFoX|EwThEqQfDiMhKe`@pBeH|BwHlA}DlA_EfAkD|B_IdDaLvDyLvDqNfDuN~BcMXwArAkIF]`BcKzJkj@lAeGtC_LlJmZ|D{M`CwKfByKh@oFh@qFv@yMz@i\\fAua@lBkh@j@sKl@mLfBeXnCy[`@sDbAaJdEq^vGum@bHiq@lDwZvCoR~CyOzCqLzDuMTw@xDqKxGePpEiJbCkEnC}E`GsIl@}@tDeFjd@en@|Xg_@~E}HlD_HlB{G|@uH`@eHZ_KTwK^sHt@gH~BaLfC_J`C{GjCsHnKkX~DeJtFwKdEmH`DaEfDyClDwBxGeEzMuHlFqD`DwC|BwDdBaFpAiHbByMt@{GR_HAoHTiHXcEx@uCxB{EbCuD`HyHnG}FpGkF`WsOrF{DlFmF`EkGvCkH|CeMlDeLhFuL~GiLvHmL~HoNdDoGbD{GrAeDzBqFbFwNdEaPbDmPlCiSbBiRbCk]lCw]zA_QzAiQ`ImgAvAaQtBgPjC}LpDaNnFyLlFmK~FwH|EiFpEoE`JiI|DcE~AaBjGcInFmHzN{RfNuPnIkIzEqEzHgGhIiFpFoCpP}FbIsBhLeBxK_AlMe@~P[`JQrt@i@hQOjKP`K`@hJ`ApM~BxLtDPDxRhHdNfF~CdAjYvJjKvBzQhEvTjCjEh@pPzDhKb@lGSxD{@zCiAbDkB~GoI`CmGxBqKvA_P\\{RQkb@tAcVjAuO^{EzCuZdC_Uv@iF~NuaAbGwb@`@uC`@iEvEmf@rJo}@fEob@xJcdAp@eH~Cs^jD}VfD{QzFoZzOws@dHi_@vH_e@|CwSpFqd@`Es^tDec@jCe[xB_`@lA__@|@}\\t@gi@\\ci@?mJBaGBwKCcLIcGFoEvAaR@ya@d@y`@}@cR|@{QlA{Ul@kKd@mHvAaO|Dc`@~G_f@zDwU~Ei\\l@iDtNkw@bWulAdO}w@vf@inCjWylAl\\itA~Lcf@dS}x@~Kob@zEuSrBmIbEeQjE}PlKml@lLyr@dEiUtHk[~J_[lOsb@xIaVzGgSvCwJz@wCt@qCzKgd@zGc\\pLei@bHcXzD}LpCsJd@aBfH}QlMs]tSud@pKyRfKyQbS{[`B}ClCaExZue@hIqNzHeN`HyNdJsRpGiQbFaOdEaO|Jqc@zA{GnGcd@`@cF`AkOn@eOVcIKcPIsEIeCm@mEs@eCs@cCy@qA}CyC}@e@aA]sBg@sCG_ADoC^}BhAyCfD_CxCiDjKyNbg@sJhZwC`J{GvR{JhWwMx\\oOx^qEbJiE|HgElFoExDoFrB}D^aHe@mFeCsDiDcDkHwB{Ha@kFW{I@eLr@yI~AoJ`A{D~AuH`D_Mf@_B`@eDZeEFoCe@mDaAaD}@cAuAs@wAg@yBJwAh@yEdEeH`PsGdMcNjUeJ`Q}H`QoHpSoD`IiCtDqBpAqDbAuDm@aDaByBgB_CaC_K{PkEkFyDuCqFqC}CiAwCgAaHmBeD_@eCEcDf@}ErC{Cl@_C]mByAqAwBk@oBi@uCEkBHaDp@kEtAiC~AcBfCs@hBG`Bh@pBpB`A|@jBvCvArAhBbB`DzAdD|@fQnEdGnC|BnBtDxCzD|EjBnBzAhB`BlAnCh@fDu@fBmBf@kArBoEtAcJjCuRhEiSpFuRfFaN|FcMlD{FxIqMpNsOdJoHzG_EpJyDlF_AfHFdHn@~Gp@fFp@hCIpCw@~C{AvBcBpBmCtAaC~ByHv@}FJqC?aJc@{E}@kFuBsHqEsHcCiEmC}EsBoD{AuDi@aB{@oCw@qDuBeJw@}IWqONsJj@iN`@cIdAsMlAmLfC_PrDqQxDuOhTs{@Nm@hIm\\zGkYdEyShD_RrD}YlC_\\x@_Qz@oR^wZDkUc@{]w@qSeBwXqB{Tk@sE}CmXcBcLgCyOwAaJ{AmJaAuH{@}H}@yJm@_Ik@_JAOc@}Ja@sMOoJIeK?uKLoN@]d@kQ|@uRtA}QfB_Q|BcQlAgH@IbAeGvCkQjFqVjEqPlB{GtAoEhEiMpEkMvDuK|BkGpBuFrCeIjCoI`CwIFYtAuFjAqFhAwF`AiF`AgG|@gG|@mHnAuLVaD@MVcDj@}Ib@iJ\\wIjBgv@n@oWXsXDiOOsRa@yTq@kVmAa[iBsc@gAsg@GwCQqg@p@i\\`Boa@zBo_@nAiPjE}c@bG}f@dD{UdB}L|Ggc@x@cFbEcVnKsk@nMok@vNgk@nP_l@lLc`@zVqs@zF_Sxr@olBnkAg|CjIcUvi@iwAve@yrApWc`AzJic@tFeZj@_DnB{MlCqRlCaUtBuU`BcWdAqVh@uUZmV?y@Kua@e@wVy@yV_Duf@kEed@kEw^mEy]sBkOqHuj@oF{a@kEka@wCu]wAyUm@iR[m\\?}Tl@gg@dCuiA^}k@Dwe@@gCIe\\YaT{@s_@mAo_@sCan@sBk\\iCg\\uEci@sF{d@_Fo_@mGsb@sHsa@mHg^wIeb@iI}\\sj@mrBgCuJaKk`@yM}j@uE{SeGiYuBuKwFg[mJkn@sEg`@iDa^wDwf@uC_k@gAa^_A_\\AgFMo`@G_Qf@gf@lAsl@jBwd@hBw\\xCy`@xCuZ~Eq\\lFo`@nBwOnHgb@zKmf@`VmjAlE{U|CoRtCuW|AmP|AqTj@wQR}UC{LSsQ]oP_BqZ_AuKgB_PwD{UyEqWwDcPsCoKyEkO{Pc`@uT_h@iJqTkNg_@aBkFwHiVaHaYgI}a@oOo`AsE{YuKse@}HgXsIiUkOsYoHkLoIkK_N_Pgr@gp@gWkYiTuYiVwYkWcVqy@gs@_MoK{TyT_NsSsNoVsHmRaLi]ePae@wBiFiNs[eQc^_N_QwPiR{PuOmNoMkFsF{MoPkBqBcMwReOkWoK_VoLi]gJ}_@wDkTiC}TgCs[_Baa@SyOGmPRyPl@sR~@mPhAyOjBeRlCoSdDuTdE{VxF_ZvGy[~SacAjN_u@~Fu\\rVwyAnMcw@dLwl@hFiSvDiOzIi\\vMqc@~Jq[vMq^rKkXzImSbHaOdRy^dSa_@fN{UvNgUxQmXrYo_@~WkZ|V{WxQmP`PgOrUwR~VmSfDsCzGqFp_@_\\nZmVv]qYtM_MdNqMjMyMjMiMxLoOlGwJlFuJvG_OzFeO~IyVbCgHxFmQhJm]xJue@`J{g@xSowAfJum@`Nyv@lHuX`IcZjKiZhJcVbKeUlVsg@hRkc@rAyDxJgYxEcPlE{QtIia@jDqQzAsIrKis@vBcNx@gF`D{OjG}YvIg^rAaFpKu`@bZ_kAnUobAtKgh@bKug@hh@ujCnNov@rLok@rLih@zIs\\tMoc@lL{\\tBwF~Lm\\dZey@zMae@xEmSfIgc@tFab@bD}`@dBwTlA_U~@cVr@kc@FoZe@e]}@gZyBe^oDq^oDkXcGm\\wE{UcMkc@eKeZgNw\\yLsVkWic@iOkU}RyYeXea@qB}DoFaKyIuPqIgTwEoP{@wC{AaHmAuG_CaPwCkTeBgRk@}H[sE}@cPMwQD}RT{NbBak@r@mSV{FYwZs@}Si@oKgDup@gBwa@g@wSMqXLqObAsY|B_c@dEg`@hFq`@fFu[rHc_@jJsc@lNct@zJod@~Iea@jIwa@|J_m@`Hkh@fGoh@lLskA`Fqe@`Es^fD}WnDwS~DmTrEoTjB}I~CqKnF}RnG_ShIwUhLcYfS}c@pHcP~C}G~DuIxI_RtI}T|IkW^iAtH{VnIc[vGiYd[ovAhVkhAjQix@xG}[zCsQnCiR~BoT`@uEtAiQlAyWn@}WNoRGy[{Awg@{AcYeEmj@eFsd@uMg_AgOi`AwLgu@yJar@}CmTcEeZuLicAqHwn@uFwj@{A}N_AaJeEgd@mBqT}BkXgCa]{AyR{By[kDek@mGmkAgEieAw@oW{D{zAyAos@i@wW}Aig@WoTi@e`@i@qf@i@wc@@qf@Qso@Cuy@AmlANu{@Vei@~@}kAt@wz@r@mf@l@ec@lAme@x@i[`B}a@`Bq^LcCfAcUvAgUTwDlC}_@tE{m@xByXrAcQlDmd@z@eM|Ak]vA}Z|@iZ`@gYVm`@Foe@Ayf@C{g@Eyd@^}`@b@aXp@a[bBk]`B_^vBmYnAqOlBkTvCcYrEq_@hGye@jHqg@vKwt@tGaa@jG}`@hKym@vJkj@lLul@hMqm@`Su~@~R{y@rRiy@zOkk@vRir@`Qqn@pHwUt]kfAjQch@~Ky[fO}`@~P}d@tZ_w@p^u|@|^wz@vP}_@nHgOpg@ggAtU_g@|p@}tArEuJbR_`@xDcIpg@yeA|LiYdBeEvHuQdToh@vLu[pOad@xAqE`HuUhHyVjDcMfEqP~Luf@zDsRbKek@xDs[zBoSxBwVvCia@jCib@`Bkb@v@ud@?{c@Qic@m@kb@_Bcb@wAkYwAqRkD}]gB_S{Goq@iCuWoCqV}CaY{Juu@oIsm@kQ{jAeNs}@iQmhAyH_h@uEgZ_DeTeHah@uKe|@oHex@yDue@eDag@iFy{@kEa_AwDy`AoC}dAwBktAmBy}CyBgjBsAwz@qBgw@cJoiCuJo}B}@qUiDou@}CmdAsAgf@m@ec@[}ZIuWGka@Fgs@ZyiAx@sdAT}\\NmVNkY\\iVLue@HiWRmYXcd@FwSh@iiBc@ucAi@klAi@ih@qB_vBOiRi@{r@EmF}C_|BgAm`@SmImA{h@cCef@aBoQeBmTuAyOiBkMaB_LsAkHmA}EaDkO_EcO}CuLkDaKuH}RmHmOqNaYgFcJcGkI{Zg^}\\c^a^}_@yQsUqNuReJyNmAoB}EwIiKeR{J}R_LoUeKqVuHaQqCqHuAsDsJyWqGkScIaYiBqGwCiKaEwPwBmIc@_NJwG\\eGRsIDsEk@uJgA{Fu@eGsB{OuCqTkFcb@_Iwj@{Dkd@wDor@[om@C_o@h@{e@x@kb@tAq[jCk`@dD_f@zFmp@dH}h@fE}ZnCkO`EcWrEaZjGqe@fJcjAnB_\\f@eNByVw@wXcAiXaAoM}C{\\sEs\\wD}ToIo^iEaQoMga@yBqGiq@qrBol@_gB_s@qvB}b@esAyK_^kY{bA_Oal@aU{}@oD{QwL{l@qIcb@sT{iAsJue@cFaTwFcTuLu`@{Kq[sLwZwNu[kPi\\{Q}Zm~BqyD}[_j@g_@}o@cSa_@}Tkd@sRwb@i\\ou@{L_WiMcXeLyT}QuZ_LkPeVk]sl@uw@ulAk_B_LcOsIkLkr@u_AoYah@eMoZmJuW{[cgAyTc|@_Smt@aKa[wMq]yVkk@uSic@ySg_@yUye@sSmc@eM}[kKmWgHuTuK{^qCkLmJgd@sCoO{EaYsCgU}Dw^}B{^qAyXq@iOi@oMuBwp@u@uj@s@oq@i@o|Aa@mx@UiT]iUaAme@_Bkn@{C}z@kBw`@wBy^yBa]kCg^{Cy_@cDa_@oA{L}Gqm@{Hkm@mEg\\eG}`@qGo`@uHmb@cJue@aLej@_AuEqA_GwDwP{FuUkCcKkNqf@wCkJmRko@cFwOwCgJqIaWkAuDaE{KwJoYwOyd@wOke@yCaJ_F}NeHcTkI_XiCeJ{Rsr@iOol@kMcj@aK}h@gJij@qGqc@_Kc}@oJszAm@sKqBse@q@y^_@kV_@{c@?y{Ak@gsA[my@_Awd@cBkg@}Cmo@oEcq@oIwdAyJobAa]cjD{Im_A}Fal@aCgVoB_Ts@{HkImz@cEg`@mDk_@oT__CkKsfAaBiOcEy^e@yEiAiLaDq[_CeV{Cu[gAoL{KkkAqBiTqC}YoAcOgA_O{AqTqAgU}@{Tm@}Tc@}TUsTMuUFgULwS\\{Rd@{RXwHt@oR`AuRb@kHh@gIl@sHj@sHdBkRt@sHx@mHr@mH~BeR`C}QbC_RnHmi@vLm{@pLq{@hLw_AvFuj@rDi`@nCk]xDai@nCqi@fCen@pBqp@nAcq@Xih@Bm[Gkf@[qf@c@u\\aAcf@aBqp@yAsf@u@qRqA_]qHaaB}Iy`BiE_z@iFodAuB}`@kA_[gBwb@_Bof@kAec@kAyc@}@og@y@yq@u@iv@Ma^Esa@BwJDyKBqHDaQJo^FyP`@q`@Raa@J{Rz@i`ArE{rDdFysEdAuk@r@kXd@gM\\uJrBs`@|A}Rl@eIhEu`@jHij@tJem@fBkI|BuKlHg[zOum@~Oud@pQef@pIsRrN}YpF}KfIoP|Rq^fMmTta@qp@hEaHp@cAhAaBvk@u{@lt@khAj^mm@z\\wl@jOwZ~Oc\\z[cx@~Ryn@bPcn@hKge@zIkf@pIao@lH{o@rR{cB|Kky@~Oc`ApD{QfNcp@zNmn@ba@ifBJc@lPou@~Gw\\vGq^jIge@jHch@pEy`@`Du^lCy_@x@}R`Ao]d@u]@uk@{@aj@wA_^mBk\\sDub@{Eke@uGmg@aUozAwQijA{OegAuFsf@mFki@aFiq@cD}n@{Aoi@]aPa@_S_@ig@Dsi@~@ys@XoNTyMFmCHmCb@wO`Bmf@jAyZbAkWdCun@|DkmAnA}l@ReKd@cTnAgeAZyi@Pkl@GsSS_~@EuNQqOm@il@Uwa@Uu^Cqw@V}pAB}kAYsg@}@{q@w@y[cAi\\{Aac@]kKMyEe@mQ}@q[yAcrAGgHIgGg@co@OeUwBu}Ac@sZmCifAkE{aAiF}y@wIeiAkBaXw@_RO_I~AqLxBsJrAeBx@iCZ{CGaDg@wCcA{B{AwAiBg@kBHcBz@oE{CoE{CoCyG_C{Hw@gEcB{IiDmRoKof@}FoUyMmi@uBiHuGeUmH_UiNkb@cOaa@oMk\\eFeLwFgMyS_c@eOeZg@gMYuIKyEBkG|BsL~Rc^hC_F|BsFdEuHpAmGp@sHByJc@cJaAsIyCuSmAyK_@iFSoF@iFLoE`@{DbAqGxAgFjB}ExCmHtB{JtPyVlK}NvNkR~LqOxG_IvGsHdIeJhJwJjIoIjIgIzQ_PlL{JpLkJtPuMbCgBpL}IbZ_V`WiRnc@w^rKqJpKqKvG}GvGiHdKiLzJyLhNmQfJgM~I{M|FaJzFmJhNiVvHmNrHaOtNuZtJuTbJiUfFeNdFmNnEcNjEiNfEyNdE_O~D}N|DcObLkd@zKud@|Lwh@dMah@|FoTbGkTlG_TnGuSdJgYxJgXlJwWxMo[tFgMvF_M`Oa[zQe_@hHsNlHoN~GqMbHkMlQg[nRi\\vRw[xM}SzMoShNgShN}RzSmYzS}XnTwXpTeXp_@oc@pOyPtOiPhHgHhH}GrGcGtG{FtGuFtGoFvGkFvGgFbTmOjVgP~K}GbLmG~KaGbLwFpLqFpLoFh\\iOh\\sOpRkJrRgKjRgLtL{HxXcS~QiOtHwGrH}G`I_IbIiInQuRjJ}KlJkLdG}HdGiIbGqIdGwIzKoQ`McT|EwIxEaJdP_\\zO{]lJiU~GgR~JcY~CwJ|C}JrH_WvFeTxH_\\fEeRbEgRpC_NnCeNtCuOpCyObC{O~B}OtCqThCuTdDi\\bDm_@lBgYdBe[fAgU|@oUr@_Vd@cVX_XNcXD{YC}Y_@qbAE{`@Dw`@FaMN}Ld@aZ\\sOb@mO`@mMd@mMf@wLp@wMv@qMz@mM`AmMjAoNlAiNfAeLnA_MtA{LzAqM~AmMfBsMjBoMlB}LpByLzBoM~BkM`C_MbCoLfCiLlCkLnCaLxC}LnCmKhD{LjDsLfEmNlEeNfJkXdJgWpPud@rMy^pEaNpEiNpDoLfAgDvF{QfFuRpFwSfHoZfCmL|BuL`EgTxDmT`F{ZfCuQbC{QnDk[hCuWxB{WzB_ZjBiZbBq\\pAs]x@u\\f@g]Ve]@oUKuU]}]e@eYs@wWcA}Vk@{Ms@wMuAmU}A}UmC{[gDw\\wGcj@qEy[aFuZ{Fy[mGyZyG_ZkHyY{HyYqIaZcHuTaJ_XqJoXuUgq@_JqWoDgKkDmKsDyKsD_LkDaLkDgLaDuK{C}KyCeLwCiLmCwKiCuKaC{K_C{KoCgNwBmLwBoLwBaMsBcMkBgMgBgM_BeM}AaMwAsMsAqMoAsMiAsMgAqM}@wM}@uMkBw\\s@qPo@qPaA{]o@w\\Ys\\CkUBmURe]\\gUh@cU`As[b@{Kf@qK~@}PbAgRpBwYnCs[`D}ZtD_\\dB{MhBqMzEa[nDsSvDgSnHy]tFqVtEwR`BoG~C}KjEcOlE}NtEkNtEgNhJqWfK{WtEyKlFsLhJ{RdJcRzH}NzHgNdJwOfJwNfM_RvMoQ~N_RlNePfNaOxL_LhJmJhLgKlM}JxMwJrOyKpOsJpO_J|OkIhPuHtT{IvT_I~R{FzQqEtRgE`R{ClSgCpIy@xQ{ApTiA|Tg@dSI`QB|PNnSb@nj@`Bj[nAde@`Bb^x@xRH|RDtSQzHMzHWnRo@rToA~SgBvMoArM{ArSsCvR}ClUkE~YwGzTaG~LkDzLuDbTmHpSaIDCtl@mW|T}KpToLtNoI`S_MhVoPbVaQrm@ce@f|@au@zUkSlZoWn^i\\pa@s`@`JwI`p@uq@xUmWlBuBdHmHhIqJzQuS|\\}`@d\\u`@~[ua@bm@_x@jRwWdRaXtm@{}@p[of@BErRk[nOyVt[en@vxBc_EtPu[bPc]j\\gs@b[_p@pO}\\~cAm|BrJcSpVyg@tr@uwAr^it@lQg]zS_`@hIoOrIaOtTa`@`Ue_@nTw]tTi]dNyStUu\\fUw[vU{[hVs[`Wk[nSqVpSgVhVyXnWeYrWwX`XyXvWiWnXgWnXsVtXcV~XcV`YeUbk@yc@dl@ic@~{AqhAlLuIbt@_i@l]iWn]yW|c@e]vc@q]`b@w]~a@k^v`@_^vOyNvOcOvOgOtOqO`XmXpx@o{@r[_^l[{^n[c`@j[q`@bUyYp]wd@dVy\\dV}\\nc@_p@x]ei@|Z{f@pUa`@jTw^dTm_@`Si^tZkj@~HeOzP{[vRu_@dK{Rd[{m@jZql@hWgh@jW{g@jOk[heAkuBvqAujCbtDmqHriAy|Bdn@wnArTqb@nOqZhOcMxGmKhFeHhF_H~N_Q`GuGfGqGhGgGpGcGrGwFtGuFxGeFzG}E|GuEbLmHpMwHhZsPbJgFdHcEdHiEbHoEjGaEnGoEbHmFnGmFjGuFnGkGjGsG|FyGxFcHxFoHrFaIlFiI|DuGvD{GrHmNtE}InEsJdEyJ`E{J|DwJ|DeKlDeKhDyKzDoNhEiPnBkInBwI~B}KtBeLtBiMnBoMdB{LzAiMxAiMlAqMhAaNx@mMr@uMh@gN`@iK\\qKPuMFwMA_T[eW_@wMg@yMq@cNw@{McAwMoAaNyAeNiB_OgB{LqBiMqB}KaCaLkCgLwCiLaDcL_EmMoEoMkIgTsJeTyFaL}EwI_FqIsMoTsLoRaLgReGaLmFcKuFsKcHyNuGuM_HsH}DeLcYwx@_]{~@qIgVkLm\\wjAycDgN{`@w`@qgAwf@ssAea@_kAeb@wmAmgAgyCglAsfDez@g`Cye@{sAkc@{qAuNqc@s`@qpAu\\olAaU}z@aTy|@eTgbAeMip@qI{f@oKmo@iIyl@}Eca@cKc~@uFmn@cEkh@sEcv@wCqo@sCgw@uAkp@cA{s@c@y`Ae@_lB_@mhAw@mu@yAqu@uC_y@_Dcr@gGa_AiIo}@sHmr@kKux@wIyl@{UsuAiPe~@cM}u@cMax@cFe`@qEs]sEkb@oFyk@uFkt@kDij@{Bug@{Ci~@}A}s@[ax@Kaq@d@uu@r@ys@tAcq@pEcbB|KodEjC{hAvA_iAXy{@GkcAm@ukAcBw{@}C{cAkGmvA}Eq{@aJ}iA{QgeBiQc|AgPelAwSivAcWicByQmpAgf@s~Cwd@m~C_Fe\\y[}wBAGsmAieIsXijBqXujBofAihHgWogB{`@{iCq[mwBmFa^}[o~B{K_z@uKo`AiL{gAuJueAwE{k@_Egj@_HsgAsFcgAmDe{@oCu|@uCafAkBmdAaAyy@i@_x@]sw@Ukx@QqaB_@c_Bu@ghB_BeyAuBykAuC_dAqDc`AoEy`AqFw~@oHocAqF}n@wFgm@_CwTiIiw@wRq_B{DsZ}PqrAyFic@}Dg[aByMsJgu@qQmuAuHqm@uEqa@{Eee@{Ci_@oCm`@aCea@eBua@mAu^s@m]q@wb@W{]C{k@Jg\\\\wZl@y\\z@}[bAsZ|Am\\jBi]bC{`@~Fiy@|@_VvIoq@xDiXjE}WxJuk@rJgf@xHw^pIw^vLse@~Lqb@fNqc@hMc`@lG{QzPgf@nIeUbGwOfQsb@va@kbAhb@s_Adf@qfAjYkm@|l@_sAjt@}bB~s@ieBdUyk@vv@eqBdJyUx`A{kCte@}vAhd@auA~b@{tAlb@uuAfWs{@hVk{@`Rwp@hQuo@xTuz@xQes@jHgY|VycAhTo}@~XwlAbXsnAnYcsAzh@_gCrE_TrRw|@`CcLjAyFn[ozAlIea@zC{NpFoWn{AkiHjm@{tCvn@qwCpFoWlYstAn`@ioBtRc}@zPuv@~Qk|@bDaOtJsd@zLal@fMmm@zNgr@zl@grCbg@i_C`Rwz@tQyu@hPaq@nFqTrNoh@dVm{@rSeq@rVws@`U_m@xKaX~LsYnNeZ`^kr@xa@}q@fe@ir@|c@ck@te@kk@dWwY|EuF|y@}_AzTcXbVoYlT_YtTmZnP_Vf`@eo@xM_UbCaEtBkDne@i}@vR{a@~Po`@~Suh@tOqa@hXyu@jWwu@l_@olAr_@qmAba@sqA~Uat@pTio@nMe^dOo`@hPo`@lPg`@rSgd@~Qa_@fOmZfMyU|Tw`@xXce@dXib@jW{_@lXca@@C`Yma@bQkWhPcVj`@}m@~Qo\\xOsZ~DwIxAaDjKgUjGuOxHoSzFkRfH}WnIe_@lByJ|EsXzFy]pCuR~@wGj@gEjBwOnBgRdCm]pAyWx@aWfAsf@l@ag@Ac}AKwn@Fsn@`A{q@nBu^zC}g@xFgn@fHqf@hKwl@xDqSpFuTvH}XxEkNvGsRvD{InH_QpLgY|GkNlNcZpFiKnIiQpHmQ`L_ZbHuSbIqVpGcVlGcWbIo^nSs_A~O}t@xMak@xI}\\bFuRxFiRpFwOnFuNfFcMrFcMfJiSlK{S`HcMnUy_@|c@wo@hP}VzJkOrPuVvi@o{@zTk\\r\\sh@hQiYbE{GzGsHzKoStMo[hH{WxOuz@pIsb@zJw_@`Oec@tPw]`QsYpLmPzY}YzOmLrW}P`MgI`LoHjKaI`L}JnKqKjNgPjLcPbNsUbY}i@vO}Y~OyTtWu]vJqJxBuB|KgKvNaObWcOjE_CjJuCb\\oLrZwIxZoFtLqBzY{EhW}DpUqDpZiFh]mHnR{DvSqFxRkGpRqHhRsIXOjOaI|OkJtOiKbU_NhLqJvJcIhTyShSsSlX_[r|@oeAfMyOlUw^rKkNpOuQh`@ic@pPgOpc@m\\lF{C`LoGtSoGnSqEv[{Bn`@uA`HEvIEbLYnKkF`YmXb[aMjh@qQrS}Jz`@a\\jF_K`DgGf]so@dL{Uza@u{@fu@_yAprAouBx]gn@fTya@nPo[pD}GfEqIjEkInEgIrE_IdEaHjE{GvEeHzE}G`GoId\\i`@fRkSnOqPxHkJjGwIbH_KfFiIvDwG`EuIpBiEjCsGjCiHxC{IlBuGRq@bCqJpCiLfDqOpCsO`CwNlBcNrBiR~AoQfCmb@t@}\\Hyo@o@{k@q@}bAL{[n@aY`Cm`@pC{XrE}XpDeQlDoOrC_KbHiSjKiUpJkQfO_U`d@qm@rb@im@hJiOjHkNfJ{UvFaQhMwf@zJu`@nB_IjCwJdF{PrEkNxHaSpDeIfFiKrUga@~KmS|Pm[jGiNdGqQ|F}VnB_Oz@iLj@qMLwOGqNuAok@w@i[s@wXAy`@p@}[fBg[jEmd@~FcZdH_\\bL}]|J_WrL{TbNiUdt@miAz~@{xAvaAw}Atj@}}@lR{Yr`@in@jQ}U|HuIrKgJtFiDvG{DpEqBtEcBzDmA~DeAnCm@fCe@hC_@jHw@jH_@jHIlHJjHb@rZrC@?~PdBr~@dJ@?dd@rEB?hHr@^D|WjCrfC~W~t@|H`RhCfLlBNBvGrAxc@jJrv@pTxVlIl\\xKzUtI|YdKrUhGfKxCvMhBbPfBzNbApTLrQSrQoAzZyElDo@|UeHhWuKfUyMxEaDxEyCvNmKnO}NxOmQfSmWbPeXvNcXtMk[dM{[lKyZlGaTxTgv@jByGrFuRxYidArP{k@nSss@vSqt@nQim@hPck@hZmbAdRul@tI{WhE}LfGeQxOga@lLwXpCaIzGkRdPe^fTsd@vY{h@t]uk@r^ei@hXk^vXy\\~s@ow@`m@gi@xtAueAt{AkeAp{@{o@x\\i\\x\\g^|[ac@v[}e@jOqXlDgHfUmc@jv@khBlb@{lAxNoc@zYmaAjHuXbOyk@|T_gAtAkHrVydBfKew@~Lkw@lBkKnDiTtS}x@hd@yyAtWeu@zWst@xK}YlLoXlEoLrEgLnLaX`H_PnT}d@bU_c@|Sy\\fTiZdY{YfLcJfLkIrNcKfWcMve@iL|KwA~b@qFrMiBlHkAfRcE|M{D~EqBbHsChNqGlKgDxGmE~GuFvKmLjY__@nIqJrQqVtF_JbF{H`JiPzI_PzHgPfLkY~Qsg@zAeF|Rwq@rMan@dD}TxCqRfCsSdB_SxAuTfAqVt@iYn@uq@CmWIe\\\\oOx@mZxAaZrAkRtB}VlEe[fFiYzFyV~GwVrFuPvGqQbGaNhKmUhSm`@bPsXjPyVhTy[zR{Wxy@iiAh\\uh@zMiWzIuSxUmq@z\\uhApScn@jc@yeAjGoNzTwd@|Uuc@pb@qr@hMwPnMkOzOsOlQuNb\\mSdi@oXxKqH`QkMrQoPbJoKtDcFtDcFnGaKfEiH|F{KdKaTrC_GrGqQbCqIdI{]tEeVdByLpAoJhCkVn@sFt@mG|Dw`@fBuQb@qFJmAb@cFzEwh@fCgUjBoPP}A~@aGlAaIzA}I@GN}@xA}I|CeRBSdE_TdJoa@rGyZ~BmK~BiKpJm`@t@sC|E{QbLw`@vO}g@`EwMdXk|@lHiUjVur@nQs`@pTi\\bc@gj@pNwQdFkH|S}\\xOkYdNgYhLaYt`@seAvi@waB~I}ZxIw\\jMkk@zJ_h@`U{rAb\\yxBrFa`@pKeu@PmAxFw[x@oEbKwf@bMyj@~f@csB~TceApDiRjO__AvCwUzDm\\xEef@nFsw@tB}Z~NqkCh@sJh@oKVmGjGqxApAii@\\uW@aXEoVWaTs@wYmAwZwAeVGy@sAqPaCcTwAiL_AqGuEoWMm@{BwL}J}b@uBgIkEuOkBkGgDmKsB}F}@eCwB_G{B_GyBmF}BgF_GoMcCcFeCcFgC{EkCsEyEcIaFsHaFsHiFcHuFiHyBqC}BiCoMgNyM}LgX_UsK_JcKeJuKwKkKkLkGkIcGuIaCcEsAwBo@iAe@y@_DwF_EoHgGqMuFaNsGkQ_GyQqGiW}BiKuBmKiD}SiAkIcAoIcByPsA}P{@cP[}GUcG[}NOoICqIDcOLeNZqN`@qNd@sJl@kJr@iJx@gJbAgJdAgJjAeJpA{IpCoPpEuSfF}R`CeIfC}HzGsR~C}H`DqHfDqHhDiHvIkQ~ImQdOyYjO{YtKoTpKuT~FyMnFsM~FwPxA{ElDuLpA_FnAaFtCaMjCmMlB}J|AaK|AiKrAkKjAqK~@qMRoC`AoNPmD^{GTqG\\qJVkNPsOL_PCyDEgHm@oVYwFkAaVwCw`@gC{Tq@sGaAyGwAaI?AuCgPcB{HkCaKeC{JWeAsC}KeFsPwHmRq@eBgLyU}CgG{P_]cQo\\kCcFqPw[gMyXiNo^kK}[kI_\\mF_U_UafAkJih@_BmImAoGwRmeAuDcRaBoI_CsMyA_ImEcSqEmJuPoRoOiKeM{HsPuJiEqCsF_EsF{EkHaIkIwLkH{NoFcOsEsQkDkTkBuSsEku@{Ow`CcEmh@wEyj@aFad@wGod@_J}f@oJqb@eK{_@sM{a@uL_\\ij@stAwMi^oKcZgLm]wJq^{Jgg@sHsi@kFyf@sRycCoAwNoG_s@eCoReCwOgDsQmE{R_FgRsLy^wLsZuLqTyIcO{GqKmf@{r@sp@w~@mVwc@eSgg@}Pig@oKec@aIec@}CmUaGyl@cBs\\yAe]y@m]]mc@bA}yAvHoeCzBai@bMobCzJ_uAlL}pAnZalClE{\\nYcmB`Z{cBnZ}yAf]{yAhr@}gCvUkv@zY{v@rJaUrQg_@zSq`@~W}a@za@ek@znAusA`UcU`IiHpKsJny@_{@b[i\\dQsQtq@qu@fGwIpQmWhLiTvAmC~Ni_@zSuv@hIub@xE__@jD}^pCal@`Bgj@lAyb@pKetBrJyi@rLqi@`Vqx@hx@wyBve@esAbOah@rg@a}A`AmDvNwg@dPmr@vOaw@dIqe@bIse@dNmaA^gEp@gIEm[BwGxAyXdBuMtAaXrAgm@xAwkAMg|AcBgu@yBsVaDkTuIyf@wNym@gQqo@wOem@yEoVcGia@{Eoc@eB{TsA}So@sUk@{SUsSAaVJuQfA_l@lAwXnBkWnCkWbE_YdBsJ`AqF~E_MpE_TrFcT`GmTpFgRjGyPN_@pI}StQm`@rEiJrFaJfEaHfYia@~FwI|JqLjNgOhIyH|OeN~ScQ`h@_b@tEuD~DeEvc@kZjkAaq@ns@a`@z~@ke@bC{AtA}@fGoBxFiCba@oWjf@yWbMkIfz@kl@~NmPdQgObPkNfl@al@tVqXfX}\\vu@igAncAwcBjLaSrVo`@dg@iu@nc@wi@jNqO`f@ic@lVmV|OaMru@{f@~n@k]nb@yS`W_Kjf@yV|P}Jdq@od@`XySda@m^~d@ae@tL}QtI}Jxc@on@tiAi_BnmFklIvl@i~@`h@a{@~Qi[dIgQnHqQlFgO`Nwa@xAqFfHyXnEmRhEqR~PqbAhXyeBfFob@|Ce[nMi_Ap\\a`CzFma@tRmsArKkv@fDqUfIam@~Wi_BjGo^`Omt@zRew@zKi\\zOid@tLy\\jOw]`Rqh@vHsUf\\s|@j_@_dA|AgE|D{LbSqm@~Kk^hPod@tq@}lBdcAsrC~`@ggA~Rmh@hGoOl}@a{BnC{Gz}@uyB`Tqg@pTgh@bT{d@rWqh@bYcj@b\\ol@h\\cj@|d@kt@|Ui]d_@gh@pJmM|IwLf`@}g@t[c`@ha@_g@hc@{i@~I}KpjBu}BnLyNn_@ye@h_@yi@l_AezAhx@obBxa@ynAnWibAbHg]|Gca@zJ}v@tDqb@pBiWlA{UpAg]tAqp@Jck@a@mk@QkVuBqv@kAwX_BuZeCka@sFs`AkEqz@sCsb@uBidAU{YPud@f@o`@bAe_@zAy^lAmUvCc`@rB{TpBqUbJiq@jGi`@pIyc@`Lmf@zMmf@fMqb@zWkx@f\\i`A|Zo_AtKa`@lLud@rGiZjJ_e@nHce@tGeg@xHy{@fEir@bB_u@bAwk@D_W]kh@}@ol@sAsb@mBkm@sBkm@aCql@cB{r@eAuf@Yyp@Aar@Lah@xAep@jCwu@~Dgr@bFep@fG}q@jIkr@pHii@zJml@~Hwb@fPgu@z@iDtNqk@lL_`@lL_]jQgd@dSqb@xW{e@jVc^nY{^|J}JfGcGzPqPzXqU~ZaUde@c\\bf@w\\dZ_W|UcVzLgOrDaFrFgHbNkRvOeZdS{b@tQ}d@`N}d@~Jyb@pK{h@bUgkAzIed@|O_s@nI_^hJ{\\zAaFlMaa@hP{e@~Reg@`i@apAf[ku@vSaf@hXgn@xQyb@dU{i@dAcCnLkX~T{i@pOk^d@iAxRaf@nWkp@`Wkp@z[s~@va@gnA|[qgAhZyeAvPen@bXoaAz`@_xAfHcWhL{c@hVq}@ha@wzAnRez@tNos@|Hcd@dJak@lHoh@nJsz@bIi`ArAkQpMglB|Emj@lGwi@|DmZ|C_RhOky@vXarAxZowA`b@opBra@ypBjNe_A|@yGnEc\\`E_]hDm[rMypApHml@tJyk@lMqk@hK}a@lSan@hMe\\|LaX~DyIx{@}kBnDeJxBqHzH_XdKoc@hA{ElFgVlE_VjDkUzCwTfD_[lDya@vCwf@pAma@p@y`@Jcc@e@kb@w@_ZiEueAkCmi@mD{l@oAmRgHe{@kHk_AwU_rCyDio@uBuc@w@}V[_^Fse@`@__@fAc`@bAiVfCg`@|C_`@tAyOvCe[dBuQnN}rAjAeLhDc^bIuv@nI_w@~NouA|VufCnO}wAxA}RdGww@fDiq@zB_p@By|@Q_Xq@kYuCip@iFko@qGoh@aFiZsKqg@eMyd@qQge@iJgTyLgV}c@wr@_i@wv@gW_b@{Oa[qGcNeJcU_IeT{Le_@cGaUmAgFy@qDwEkScNot@y@sEKq@i@aDYiB}@{FeAaHoBqM_@gDqCcVaDaZe@gE|AwR`@qDz@wCvAwClBy@xHaG`B]hG{@|Fa@fGDjBT~F~AzFzAzEvB~BbB`EjDtBrEjA`Ev@|GHdH_ApI}ApF{C`GwCxB}B`AaJhD}P{AiSiBee@kFwf@}GgeC{]qu@mJ}u@{Gwn@iDq|@iBi\\DaVMem@jAkq@tC_\\nCeb@bEyc@zGqUbDuo@dMyWdGc]`JuLnDkj@pQgeA~^y|Afk@{\\lL}^tLyTzGuT`GqTdF_d@xIkWrEat@fI{n@`Ekn@tBmq@Diq@eA{h@}Bkv@}Fcs@aG_hBmRk^}Em}Bu\\ahAkRihAuSafAiU_fA}UwrAu\\iqAs_@gmBgl@ecAm]scAe^giCo_Acw@qX_x@mVsl@sOgm@yMox@cLeSgBsQcB}PuA{c@wByCO_Ug@kM]aAC_p@y@y{@s@ibAoCyiA}HqGaAmi@mIwUiEmZuF_e@wLwd@oOcv@gZw@[ibAoe@sqAmv@yeBuoAmfAa{@ycA_`Ac`AacAye@ym@od@io@yc@kp@ePqW{QaZai@}_A{I{PiPuZ_L{Sii@ahAch@ojAcoAwsC{Uoi@{D{Iq_BgrDkkAeeCsq@ysAqr@uqAexAqcCei@ux@gi@ow@g~@ioAo_AmlA}_@ic@wl@}q@wm@uo@y~@c_Aop@{m@}p@il@o}@{t@c~@wr@e}@mn@y}@yk@_z@wf@ih@{XaQkJsh@gVgi@{Tci@kRui@qP}j@aNiG{Act@wNu`A}Mk`AqJwoBkNodBoMww@gIyYaD_Z{Dwa@sGua@kHoMcCcH_BmS{EqSmF}WkHqQqFcYoJeh@oRoS{Iuo@sYcp@o]wwAu~@azBceB{hAw}@{v@qj@ck@e\\{k@iZk}@i`@a`Ak_@}bAqc@}_Agc@aiAwq@}[wTq[yUgm@wg@el@mj@os@{v@we@{k@cRuVyWk_@eSwZ}Rq[aGeKwCeF_Wad@wOeZ{\\or@cFkKwNa\\qb@eeAkI{TkOic@kJmX}Ngd@gR{o@cNki@kG{Uc[wvAcUgmAu[sxB_I_o@}Gss@oPm|BiEil@mC{b@uHemAeH_iAgIgvAeLcjBcM}|AeHmq@wIaq@aHeg@uLuv@{Myv@aQqy@{Ryx@kWw_AqY_aAcWg{@aVax@aLu]{rBw|GwVm}@mUa~@uXyrAiXsfBkJuz@oHwx@_HujAaE}mAiAyt@iAexCgA_fAwBo`AgDmx@uFix@sKcjAiNohAaM{u@kNau@wPkz@wRix@eXocA{YwaAuXyx@{Yuw@}Swg@eV}h@ePe]qNgYuH}Nyc@}w@yZgg@_O_U_NgSi`AirAyQsUiy@ofAyEoG_lAk_Bq`AavAc`Ak}AmV{c@kk@eeA}y@{bBk_AiqByBwEkmAejCqy@a}A_Ro\\ivA_}BgZea@ki@{u@qo@_x@mf@mj@evAexAw|BiyByx@}z@qy@aaAcgAaxAwvAipBy_AynAcQyTcPyRuQoTio@kr@oMoM_C_CaYkYe`Auz@sG}FkHiGeeAq{@wSiPaYyT_XqTqqA}iA}eAmhAinA{~AebAmyAmiF_mI_|BqqDsz@{sAq\\cj@cjAqjBw|@qyAuoA_`Co{@_fBsy@wfB}p@w}A_c@_kA_\\weAqWagAyPo|@oPofAqGke@gs@wpFq]w~BeT{oA_WapAo]w~Aoe@ahBm`@{pAad@mnAo_@c_A}s@mzAmy@ouA_~@_pAo~@sdA{v@{u@gd@i^k\\oVqj@o_@mgAcl@g|B{cAqm@a[ov@qg@{|@wx@oq@mw@wx@smA{b@wz@kRgc@g`@ydAqWe{@a`AwpDiQym@cNuc@yNuc@iMe^qKiYqKiXyQic@k^kv@mo@imAoy@cqAoa@mi@oRmUeRmTyQcSwRkSuXkWmv@qp@wiAaw@enAgp@kqAeh@yn@aRanAqVmoAyN}a@oD{o@_Gyy@{Fu\\eCiRqAsZwByc@wCuO{@_ZwAoZeBq_@}Acx@oDkSaAg`B}EidA_DgtBmDquBcBoDAoqBQivBdAuoBlBemAxBoUl@aqAxDmEPag@xA__BbHuk@tB}vD`PcuBfIavBfF{oAuBwcAgKccAkUci@iSy[qOwa@oUw_@wV{z@cu@}y@cbAwXgb@{Wac@ao@qnA{}@ivBk|@_xBgo@_sAs_@}q@iUu]a_@qf@sTeVmS}Tkh@cg@_w@wp@ez@qp@adAu}@_a@q`@aIaKeU_X}p@u_AaRi[i_@as@u\\yt@og@wtAkd@iuAwa@qpAcd@kkAif@}cAiyAmjCyb@e_AgFgLg\\{x@aIoWyMwd@wUu{@}[uiA{HcXcMs_@qVws@qAyD}i@ikAmeAgeBgtAujBslAqtAoy@gz@c[{YqZcYyWyTwWwSy^}X}ZoUcx@qj@gM{IwQiLyXqQaiAmr@or@ib@eTgMkW_PaoAqu@a\\{R_j@m\\wY}Pib@aXwf@_ZknBohAy|@_l@{~@uy@ud@ge@_QsSm]uc@m_@ak@ok@{bAqg@yiAwVgq@cU_s@cq@gcCgb@k~A}`@msAsYqw@i\\cv@oLuVoLuVm[ak@c^ij@w_@_h@{_@ud@_a@ab@sa@s_@ad@o]sn@{a@{n@w\\wf@mSqj@yQ}`A}V{hAeVcwAo\\cn@kQkk@eSow@s]ax@ob@kb@qXel@sb@wi@yc@an@wl@qv@u{@ms@m_Amt@whAcr@ujAkkBshDqNmWq`@ss@ix@{xAydCkqEgeCmpEq_AoeBq}@a~A}o@wiA_Vy^kRsY}M_SaLmPeA{Ag]mc@oUkX}O{QwKcLse@se@kbAw{@eXuQwWgQs_@{U_VsMm^aQqn@yXeKqDoPaGuKyD}iAi\\{hAyZ{MgEuQyFaa@gMaYaK_[oMqs@y]eNaHaoA}r@arAuv@cr@q_@kr@_^m`Aq`@amAgb@szAwa@_zBag@mtBog@yt@yUwl@uSgu@gZox@o_@o~@wg@o_A{k@cx@yh@eMkIqaBcgAk~HekFkpB_rA}{@yk@u{@sk@ciBumAcK_HmMwIktBovAwfAgw@e{A_kAacAkz@oaAg}@yH{Hm~Ac_BwNyNoaAsgAgaAskAmMsPe`@eg@sOaSqIyKgz@klAqR{Y_]eh@qVw`@kJ}NuCmFyYmi@o[el@yN_X}o@mlAmu@c`Bkv@kiBmr@_nBoQ}f@wLy]uUqv@kCwQ_B_I_Je_@_Iy^uCeMiD_QuH_]oEgQ{I_[sg@{~AgEaOcGuToH_[{Pqw@_EcTaQwaAyH}c@eEyWwHse@eFs[yIco@wHwi@yJaw@iDe[wEqa@yK}aAqB_TqEkg@cFwn@qEwl@cFir@}Bc^}Ccf@cEsz@sC_n@gCcp@iA}YiBun@WmKoAej@u@}[q@qa@w@em@g@eq@c@{v@S_z@J}k@Pgk@Xsm@^od@bGamHb@sp@v@q`Ap@}z@bLmmOt@wq@`@yz@LuQZu_@Zq`@JmMb@_}@?Cp@kl@fBq`CR{\\b@o`@\\iy@Dqq@GcKUuZMmP[uSuAct@wAmx@]kYW{SWcX]u^OaNHch@HaZVuYZyX|@ea@jAi`@dBic@`Bc`@dBab@fBw^`AmS`AmSnBmg@fCi~@^gSP}SR}c@AgTM}U]g`@k@}_@m@cVcAoXgBsb@wBs_@gCy\\mCy]gIcw@{Hwl@mH}e@yGw`@{FoZcGyYaHq[mGyYwMug@_Lma@s[ajA}k@goBik@cnBwAwEs{@{rCgx@ekCag@m}A_J{Xg`AguCqj@y`BmJsXat@gtB{i@u|Aml@{_Bcc@qgAeW_j@kM{W_LgTi\\gk@oVi_@uU_]kTgYoSaWwc@ih@uR{T}j@yp@sg@go@{k@aw@uWua@}Xaf@wUed@yUsj@mNm^sMs_@qOyf@cQkp@sQk{@yHib@wFg]qFo^wNykAmLqlAqHg{@{NwfBgWixCeRmsB}Cia@mH}}@_O{aBwJsjAeG}m@e@aFcB{QeFsn@mNyxAqHaw@yLggAcH{k@{Lox@{M}u@eTqcA_[cpAq[epA}K}f@kJsg@sLgy@mGyi@qEqk@{Doi@{B{l@m@}YUqPUm_@Mky@b@{z@~A}wA~@siA`AmlAI}hBaB_rAiC{bAqDa|@_F{z@{Eqq@uL_sAgS}lB{Vw}Bo]{}CoVk`CiLalAgK{fA{JwkA{I{iAoNywBmCoa@wLeoBy@qKcEso@gBsVcE{o@mG{~@cDqe@gMq}AwCy^{Eyj@qMmtAkl@_rF_Fu`@uHql@sByOgKqx@sHoh@st@qzEgYulBo\\}|BcmAqpJqd@ewDaaBy_Nee@_|DcImr@sGqj@}NcwAiFcj@aE_j@CU}Eqr@{Est@{Cko@uEolASaGgBqk@sBcjAsA{oAD_uBfAyaCbCq_CrDmaCnA_dAfA}j@xAgy@lCkeAdDopAz@y\\xHglChEytA|Eq}AlBuq@tCs~@hDwbAtBue@lCuh@tDwp@nF_s@zEki@dIqv@pHwm@~G_i@ti@o|DbH_k@xFai@bH}w@pFut@`Dgi@dCij@~As`@bCwu@h@sVxBgaA\\yN~Cq`BzHqsDlAkn@xD}fBz@eb@hT{{J`]k~PbD}|A|@ib@r@k^lF_eCVgOz@qb@x@cb@bBu}@dLmkFlBev@bFkeBbFmkAbJgwA|Mk~AfTecBfVwxAnX{uA~_@c|AvJq\\tIyY|_@qlAzo@iiBtq@}mBvh@ufBfR}v@lOcv@zNey@pLoy@tIkv@hIuz@fNcbC`C{fAfAaiAWqsAkB_iAcBog@eCib@cGy`AqF}q@_z@krIqEyd@cDk\\amDsd^gOaaBoJghAcJ_kAeQoaCeI_nA}Esz@eEus@wEm}@kFseA_Ok_EuMetEeGk{BcE}{AeGa{AcOuaC}JmfAyLokAuJiy@s]y{BiTsjAsT_eAcWsbAyVe`AoiAi~DkGqT_qAm|Ecz@ioD}r@mjDck@qcDsh@}eDcQuoAuO{lAuOeqAmM_nA_Uu|BkSkcCkLcdBiKwbBgIwiBqDemBa@_w@`@cw@tBoqAdCa`A|LaqCbPkqC~\\gbHrGw`BpFwxArDcvAxEuuB`DmdBrDs|CvBwkDMgwAe@mfFcGmwJiBgxCg@sr@Yii@Wav@S}~@Bme@Dky@p@grAd@}o@rAcbAt@yc@~CwtA`Bwn@tByn@dCyn@hC_n@fI{gBvCad@xDem@`J{kA`E}d@pEid@hMwhA|F_d@pGac@tNo_AvOm~@zMmu@~BmMtk@kwC|Qa~@|Qq~@~S__Alk@{hCdWcgA~FyVlJs`@rBqId_@s{Adc@aeBhs@enCfTcy@ziAosE`f@}vBnJ}d@~R_cA`Lil@zJ_l@vMst@dT}sAnGuc@~CiSlQmrAdNeeAfMweAbTulBvU}wBxb@aeE`VizB|OouAfr@_hFbCaQjU_aBrVacB~e@}yC~Y_qBlPcqAlLsgArI{iA~Ek~@tBwj@vAkn@~@_|@Iev@OcXi@y]y@m_@kAm^yAu[sCai@mD}f@yCg^qDi_@}AgOqFad@{DaY}G{e@qKwm@oFyYiGa\\gK_k@oMsr@kEiVsHwf@gGya@qQanBsEey@oCkx@yAejAJypAdA}pBJwi@C{c@oAeiAAa@wBus@i@iN_Bi\\mB_[uDai@uCkZqGkl@mK{w@{Isi@mNys@eDiPoC{McHwYqGkWyIe[wEwOqIeXuI_W_Xir@uOw^iVog@aTsa@aUs_@sOoVms@whAaa@{k@uY_e@iTm_@cQw[o_@sv@cR_c@_Wen@sK{YsNmb@iOif@iSos@qGuWeMuh@kOqs@mDqRoHgc@yDcUsLky@cF{a@eFse@yFam@eD_c@}Eys@uC{l@qBol@eBil@iFw|BuBa}@kDo}@eEyw@_G}w@}Hcw@cKmx@_TctAoUorAkUcpA}SeqAyKsu@iIos@mHsw@{Esu@_Egz@kBk{@w@sx@?}x@d@i{@NgU~B}jBbBijBMw}@aAc~@qCo`AgEe~@uI{kAiNaqA_Lez@iPkbAqEoXuKcp@kVszAwGyd@kGof@_Eu_@qDc`@aGw_AuDq`A}B}`A_Acc@i@cZcBox@{A_t@}Cm|@qE}{@wGm{@oImz@cKaw@qMsx@yPy{@o\\suAo^cuA}]cxA}Lgm@oKen@cIsl@qG}n@sEyn@mCon@_Bcw@Qyv@bAiaAvB_w@n@qSr@uSdCam@VoIvE_~@jJyqBbCwu@zBe~@d@s~@We_AoA_`AkCcz@wCuj@cFsv@kHay@iGmk@gFs`@sNw~@wGs_@aJae@kRuy@_Moe@}CsLqJa]gP{e@eI{TiKkYcRuc@i]ov@uByEmOuYmLuRcNcUuZaf@kOqSqJ{L{Wu\\_CmCeBqBcIiJq[y[iQ{P{\\mYub@_[au@cf@gOsIkl@_YyeAqg@cc@uScp@m[mXeNcZgPuYaQgYeQ{`@yXoZeUaS_Q_KeJkJsIkPePwO}OwNgPy_@kh@iKoPiPeYwPc]}R_c@yOea@_Pqe@qOii@kN_k@gLei@yJuh@sHyb@eHec@}Fca@mFu`@gDsWsIov@kFwi@kEqg@_BeUiGmcA_Bi^iAi\\gAmh@m@me@MkUMmf@?wHXqf@l@}b@vBiv@~@_XrEcy@lGgz@dL_iArPsiAjE}YhTyeAb[{lAxXwbAfRaj@dOo^tYsp@bi@ejAdgA_jCvX}v@nVmv@nc@gxAt^iwAt[s}AnPk}@|Fc]hTc_BfRqaBrJqkAzAgSlAgPnDgk@vCah@|Bom@|Bwp@`Aca@zA}z@@e@l@ej@Z}e@JkR@gg@Cme@_@cr@yAsjAQaPoA_h@wAes@mC{s@o@cOcBo\\eE}t@kC{e@{C}m@mDav@aAgg@_@_]E}`@Xwg@~@yb@zA{b@tC}g@vCya@jDk]nDyZ`Gab@vb@isCzL}dAhHabAlDqvA?saBgGsgFD}pBlGcbDlLygCtVktDtBal@bBip@Lyq@a@uq@iBul@gCyo@aG}v@aIkr@aj@ycEw\\{{Cw\\}yDiI}pAuHitAyLylDuV{`L{TcuGyI{hDeD{gBe@mLaH_rAeIynA_RcyB{XyaCkLk|@g_@mzBkOyw@oRm~@arAaqFyz@mrDyYgwA}^atBuWe_BoM{aAoOsrAqB_PeF}h@yD}c@eDad@qCmd@gDwq@iAo^w@oYgAcm@g@g^[m_@Qka@Ee_@Rei@`@cq@vA{p@~@ic@nE_|AtN{dF`AqhAQcf@iA{o@wBcm@kDml@_Ewg@cFag@}H}l@oGy`@gKcj@_Ogo@_Okj@uOse@_Rwg@e|@_xBa~@}yBaIsQwjBwsEwXws@{Km[{Ks]_Q{l@_Ka`@wKqe@kIa`@wIkd@iGc`@aH_d@uH_l@iFmf@eEib@aCwZoB_ZiBiYmB_\\aDwy@WyNkA{m@Uka@E_`@Lgp@l@kj@~Aup@tBmk@~B_d@tD}m@`Eye@xGyq@vG}i@zGog@pOydAf[qlBjc@u_CbUkpAbPagAjJwt@dFki@nBqYxAiTlCwe@lBma@`Byi@p@{ZXcZJsTXcq@C{aAo@{`As@sf@{@}e@sAsg@kBgg@}B}f@oC{f@aCu\\cCs\\eH{y@qLwhA_\\opCOkA_Q_}A{Eaf@mFsk@}B}WiCe[uH{iAoCuf@uBae@}Aab@kDcdA_F{fByBgv@iD{{@eDsr@wA}VkDqg@uD_e@wE}g@cEsa@mPkvAuJex@aJwu@aG{h@sF}l@yByWg@wGmBiWaB}WsB{]eBm]_Be_@oA{]w@s[k@aYUsPGaEi@uj@u@s{AUkd@OaVgAoz@{@sa@yA_c@kAoXmA{U}Coe@eBwT{ByVcDo]qB_QiFsa@_Jgn@qJsm@{T_tA_Ww}AaVg|B{LmlByQibDcF}oAq@eQeH}rBmBy`AgHutDcA_p@wAe|@aD_yB{F}uB_FgkAuI_hAqJsy@kJsn@qMar@yMqk@mQeo@mKy\\{e@yqAcp@s~Ack@gxAePie@qNqd@mL{a@_Muf@kMsl@_Pyz@eDaScKst@uJs|@yEai@oAuQs@cK_ByRoBe`@gBob@mA}`@YqMSaNU_UMch@FcXh@c`@t@oXdAoXbAcTtC{d@pDcb@bFgd@xFib@vIwf@hHe`@xd@aaCzCqRjMky@`K_~@|F_w@bBs\\pA}_@RwI\\cOb@iQPee@Ake@i@ud@uAkm@yBih@qAiWmC}b@cMa|Aoa@gtEaJ}dAeJioAiG_dAgAuS_Cye@sCgt@aCos@S{HcE}dBKmSi@ugAOqYHq}@?uJXstD|@avDJsc@l@e|EkA}eAcDw_B{Ee|AoC}o@oDkq@cGi{@eXwyCwImcAaBgQeRypB{OeqBmG}}@}C_o@{C{s@iCgw@cCmkAs@{g@c@a}AC_s@Huv@?ek@W}i@g@a_@{@{_@mAk\\mA}Wm@}KsF{v@aDm]oDy\\{Fcd@wD_WoCaQyFm[uHca@{Rax@mB{HsK}_@cI{XiU_u@gf@w|Aw|@cqCud@s}A{b@gaB{T{dAa\\kkBaGua@c@oDiIeq@wFsl@_Egg@wBih@mAmd@UmUCsw@z@yj@vB}g@bIefA|KebAjTy}A\\gC`I_y@`Eaq@tBgv@f@st@i@mt@eAmj@{GeaCy@qbAn@qdAzCcx@xIcmBnBsw@Her@yAkn@wDqm@mLwgAkCoRwNou@mM_j@{e@qhBqOqq@{Iyf@gHsg@yDsd@cEul@uA{k@[co@lAqu@|Eo|@dGut@~SarB|Fuo@tEmh@fCs\\bCca@dAgQ~Bch@bByf@nAif@nAa_Ap@iq@D}YMez@u@mm@}@}g@_HkdC}Gi|AoJ{{AuQafC}PoeBgHgn@uCyTsDqVoIwf@}Img@qCiPcNkt@qSoiAuIeh@sIui@yF}a@kEc_@{Dk_@{Ce`@gDeg@c@}Jy@mS_@qJa@mLk@gSWuJw@ma@i@ee@Uy[EgWCgKI{b@Jec@DqY@s\\D}K@ySDanA?}e@Ocm@Mke@e@yg@gA_y@}@cc@oB_p@iBoa@yBgd@yCqh@oEim@mEoj@oV_wBEWcDqVKs@kRimAq[a_BcZcoAwa@uvAyIyXue@qsAef@{hA_k@uiAot@qoAwIqMieA}wAsjCcyCmn@wt@aZu_@uJqMmQcVoTi\\QYwKwP{Umb@g_@ev@aIkQoNq]oLwZoN{`@kN_c@aJmYyJe]eUoz@cNyk@mLkf@aUsgAyGu\\ub@uxBkxAspHarAkuG_YivAa_@snB}]uhBgJml@oEeYeHop@kH{v@sDkq@yBs_AQm_@k@{aAC}{Ei@woDwC}nCi@yRgFyqAiB}b@{Eg_AcDyg@_Gk~@yTg`CaNgiAwLa{@iRyfAaUeeA{Oym@aQwl@kTqm@cQyb@iXmk@eS_]uRqY}\\cc@gY{\\y{@cu@{h@g^cc@e[u`@iZkY}WcUsVmKoMsCsDwm@}|@yV}e@mQq_@uFqMiC}GkFuMwHsTqKk]gJq\\uI{\\oMkl@uPk|@gPseAuJ}p@yI_s@}Ia{@eJaiAgGmbAIoBuCwq@wAac@kAce@kAct@i@ww@Amx@fAqy@~Agi@rB_a@xC_c@~AgQzBkUxHan@tJ_n@xLcn@nTy_A|hAemEjP_q@bKcl@`Isk@tEmg@lDsw@Vgn@{@wp@eEit@}BgV_CgTyXapByEah@kC}d@aB_y@@}a@p@yb@jDev@lGsp@jIuk@pFmZlIw_@hH}YrLqb@te@m}AxZ_cAhQat@lQy{@zF}\\bF{]nHur@dDqa@rCqb@zFkhAbEg}@pDyr@pK_bDxJakDbE{_B`@aWtDolBtBikAzAaz@nA}nA~AuoBfAe{BbAohEy@ghE_BkwDkAevBo@_lBa@a`AmAe`AoCobAyAk[sBoc@wFgq@aH}u@sJiz@i]icCwBkOoQ{jAcGgb@uFkk@kEmh@_Dsc@_Bwa@cAgYi@cZm@gh@Ci^^aq@hCqbAxDg~@~GymAhE_m@fGe{@b@kGzAmVbHa|@lHcmAnNeoBjE_p@nUc~CvMmiBzJg}AxDyb@zBu\\fBm\\Z_SEcNm@}NoAuJyBsIoBiFsCyEuCaDyCgCwD}A{C_AeD[gE@wDj@eD`BsDnCaGrIsI`QoHdMsDlD_E|BkEhAoC?iEM{C_AoC_AiEaC_CFqOcO{FsGoGsHiFaHaIeLqQuWcRaYsJcOuMcTuR_^gRg^y]mu@iHiMkHoOiLaWoNa\\_d@}dAkGwNiGqNcKuU{Xam@wYyk@cv@ayAkDwHcOwYwGcMoFuIsIwKyMuM{`@uNoTcGsGeBsEoA{j@iIy}@qN{IeAkQwBc\\kCuTgAoLIcU?{_AhByu@pAeUEmROmh@q@}]uAwJ}@mFaAuIgBu`@aEi]iD_NEqE]yKaA_NkAqQ_BcQ{A_TwBoNgCsJkDyHaDwEeCmGeEkJwGgGmFiN_N}M_LmLuH{M_H_MiEmKgCkK{AsJu@qOu@cLq@mKgBqCa@kIm@eC[cF}@qHcAgBKsCM_XiAuTaA{Nq@eH_@oM}@_DU}HM}Oi@oZs@eDOqDARqCNqCJwD\\cHh@_KpA{JDqLLiAjI}p@xBqSlNwmAvGmk@ZuCd@sDjC_TbKiy@jEa^vDu]nEya@jCiVrKs{@nD_[~BkSVkBjAcJv@{GPaBdAgJNmAfIgs@VcCzCwWZoCp@}FtB}Qh@oEp@_Gx@eHlD_ZlDmYtJkz@zEea@pCyUfEc^vFod@t@iGtEm`@d@eEzBuR|CyWnIiz@f@gFh@uGp@oITwDPsChD_k@`Egf@VwC^wEZoCjBuPdFad@TwBV_Cl@cG`@gEHiAj@aGHm@h@wDT}ARqAnBuL~DwUb@cChDcSxC{Oj@yCnLcq@lAcGv@{ElGq[j@sC|Fc[`BaJ`BcJvKkh@vA_E`AuBr@kA~BgArAWpAMhBOtAk@xAeAn@cA~@kCj@eCT}B\\uED{DKkCW{Bi@aCq@sBgAuEc@cD@iDh@aGpDuRzS}iAt@}Dl@_D|@wEzDwSbCmMpEmVb@aCdKkj@dDaDf@a@tBcBnAA|B[nBm@pBqA|AgBt@cAr@eA`@eAz@iDd@yDFs@F_B?cCIaC[gDm@}C_AqC}@iBmBgCyB_BaC{@kAOqBAqBVkBr@eBjA{AbBi@v@sDbBwBl@wAb@a]iRwI_F_GeDJi@vUgjAxLsl@pJie@j@uCgAo@ok@c[u@_B_@}@YiASeAU_BMiEhBwD|DmK~BwHzFiXh@cIl@iId@eHh@mHP{DFaDDcBBqECeDKgMcCeeACiOJsQToOV_H`@eFvN}gAtZc_Czb@ocC|Zc_BnOoqAlD}YfDq[fAsKd@wEP}DXgHXiBlAmKtAsLDa@zCqWf@iEv@mGNoAD[Fi@lAqJ`Gsd@xB}QhJ{v@vSifB|OqlAfBoODa@hFwe@~@kIkEyAse@gPym@oMkd@aHgsA}RmiAqOe|@qJsJgBeK_EuFgBuFkCkMiJojAicAgMqKwvAemAav@qo@i]eWs@i@ep@cf@iAy@cFuD}EqDkWkRm`Acq@ig@k_@{{AghA{YmO_LkEoMmCeKk@gKLgK~@qKbFmKvIgG~HsGnOoC`JgB~Ks@zNC~Ib@rQSvKy@~HcCfI}C~EmLjJgCbFwClCkN|MgJ~JiHvJyHnKoInNmD|FsBxDaHrMo\\hr@u]tw@cL~VoKjTgHnN_LnO}JnJuOtLeIvEkMpFmIfC_MpBwZh@{[yE_r@qVqj@}[}sAcz@sTmNwNmJeDuB_h@{Z}CsB_Ao@mPwKePaJkP{JgDmAqC}AyHwE}KsGkEwBmJiDuDaA_Es@sCYkDMaEBcDTsD^cGxAuDtAsH~DsGbFuDzDwDpFcG`KuGjNgSng@uX`q@cF`MeDpBeEjHoCnE_DpFiD|FeEpHqCbFoArCeA|BaAvBy@jBwChHq_@p~@iHhQkGdPqNf_@uEhM_AnEoBpD{B`CeCfBsBh@oCTyBEqBa@sBk@mB_AyDiCqb@qX}k@i_@eMeHwEGy@k@qTwQkZcWaYuVg`Aa}@ym@um@uVwXeVqYwL}OoOqTkb@ot@gHiOaGeMmJkVcFmNqIiXGWaGkT{EgR}Gu[eE_UmEsXeDeXyEcb@aEc^QyA_H_g@_DwS{Hqb@qHu]qFeUkFuSkKu]kJgYaE}K}BcGaNw\\mHwPcEsI_CkFuImP{DiHoGoLgMcSk[id@yQoTsWwXeXuVkQuNyJeHuJyGwRwLaG_DqUcM{H{E}As@iCmAmj@qVypDiyA_R_HuSqIcTiIy_@yOum@wUwMeFSI_YgK{o@sVar@_WwHsCmEcBgN{FaeBmq@ocAab@_tAmj@kZcLOEcFqBg]cNio@sVgWsK_SgIyJaE_bBmq@iYgK{]wNk\\eNadC{aAwc@gQ_DoA}T{IkzAkl@UIeHuCwb@cQeRkH_bA_a@cjAqd@g^{N{YsLmQkHseAsb@e|Aim@mBu@kQ_HuBy@shD}sA}x@}[}GoCGCiq@aXwzBs|@whAyd@_GcCoaCe`Au]uNihAmc@iOeG_M}Fg{Bi|@skCkeAyV}JcIuCoL_F}u@g[{XqK}fAwb@koCqeAmx@y[gXmL}{CepAinAcg@wiB_u@aW_Kiz@s\\i`As_@ihAuc@ydAma@ma@_Pub@yOi_@kKyRqFsh@}Lmt@iL{c@eFgr@yE_b@oAcf@}@kh@V_K^sRp@{TfA_XdBcj@rGmTlDuZ~EiPfDiL~BcXxF_xAv]}iA|WivB|g@i\\`IoiC|n@okBxc@qRbE_oAtZocAfViz@|Rm`Bn^q{At^}x@nScp@`Q_c@hMcLdDucAj]{f@fQijAzd@sxAzm@u|Avp@kfBpu@wd@lSae@bSelChiAceB|t@ii@bVqd@lTm}@~c@{T~Km@ZyqAto@uiA|j@k@ZomAzl@mq@t[_cAbf@gnA|m@mlAdl@m~@bd@uQ|IiXhNwxBjjAgN`Ie^hTc|Ar|@uoCjzAqaC~jA_n@zYihCxlAeiE`sBkEnBgf@nTy[rOubDnvA_kBjw@m~BnaAoRfJsmAnl@kc@`T{DjBaPdIwqA|m@u@\\iSnJycHjeDsWtLcCfAu{BzgAeN`HuKtFwN~GmsA`q@kw\\|sPofAjc@e_AbYqu@fPkjA`OadAfFgv@t@g|@kBmo@gDc~@gFm|FyZ{oRsdAyfAcFimB_Jw{@aEyi@mBcfAg@yfAxEgIp@wJzAgPxBcJfAeSfDuk@zKy\\lI}e@rNcYrJkWjKin@nX{k@hYer@~b@in@jb@aX~SaeBlmAk[hTg_@|RkSpLsg@bTwS`JgUfJ{s@rSm\\jIm^tGy]lGe]tEiaAxIsb@lBc_@LgeKbBoqGhFglCGcjAE}e@Tu{AAcvF`DetA\\yTF}g@`@}vAP{jBbByZ^yjB^oD@mtHxCuqDtAgRDce@BsnAoBcoA{DonAuHelAqJ}yAiKkhAuHa{Gsd@av@yEaj@kDwg@eByf@Baq@dBmh@jCof@lE??yd@`H_VbD{x@vRg_@lJ{cBtg@gxEzuAcn@dQujAn]ipElrAqj@jNeXjFaYxDsUnCuQtA}XxAyo@zAsoAsE{a@_EoYgEko@uM{i@eOea@qOkh@}Uys@w`@_vIwdFmy@qf@kcByaAeeBs`Akd@}R_g@wP_eAcVqb@mGyRyBkSeBeQ_AkQ}@ad@g@cTDaUf@kUdAmTvAwe@hFqk@rJ{p@zPyk@~Rcd@jRo\\hQiZtQcc@zXck@|d@_}@pv@i{@xu@i\\jYkUrRg`@~\\uhB~}AuSnQeBzAmz@`t@}b@l`@}c@d]cf@z[ii@vXaTzKan@lV}TbH_ZhH{PnEwSfE_g@hHm^rDmVnBeyAjDslAzC_[n@aZGkYa@ca@wBcYsBo\\eDsTsDsRcE_PqDu]yJcTkHa]sM}YqM_\\}O_b@eV{c@_[w`@}Zmf@ie@uYa[adCyvCg~B}qCgIeJio@sv@iHuIg]k\\qXqVwZeTwY_Rq[iOcQyHe\\cLm[_I}g@yIcTcCg[}AaU]sSZme@rAsr@zFqwBfRkkCbT_{Fpg@gg@nIyc@nKkc@fOw[rMmkAto@wb@|Sc]vPcwBvnAoUvOgBlAs`A`i@{DlBaf@pPoi@lMk\\tFi\\pD{g@bBsUTi`@[qXsAqi@kFmLkBoH{AeRyDmWgGuVcIeTgI{jCadAucBcp@_e@iRio@_Ug_@eK_Z_Gqd@_Hy]wD{R_ByQgA{Rg@ecBoBc~@eAcNYmJGa\\e@wh@m@s@Aq{A{B}CE_WLqHD_YzAek@tHc\\hIwQxFiJnD{OxH}QxIeQpLsYzSiSrQ}QfSeIxIyHnJsLfPyNpTwH|MoEfIwE~IyLnWaHrPsGhPkJhXeKv]cGrUsHb[uGz[aEnSuCjNab@jqBeMno@wR|}@yBdKa`@pjBuN|q@{WbgAyWx|@yArEaBdFyA|E_T|o@yZbz@i]xx@k\\`r@up@lkAw`AhzAwlBjcCqc@lj@uIxK_`FjkGgNfQc{CvxDuJzLk_@~h@u|@~nAor@tiA_r@tiAiYde@uxAdbCgeAxeBqcAzbBsI|Mk`@no@ye@bs@i^nd@}e@jk@ebAphAkw@p{@iPzQoD|D{H|IwzAfdBm_AtgA}\\zd@gGjImGtJqLtQuc@hu@{LnT_[dm@}Qp`@yRhd@mb@ndAoEnL_gA`sCeZnq@i`@nr@o]|k@qYdd@}[db@w[l`@mc@tc@wf@lc@ge@`\\oe@`Ykh@lX{i@`Usp@xRwXxGmYpFuPpC{Fr@sQzB}SnBiZ|Ag~AlF}w@rCm_AxIe_@fGi`A~SmS`Fw_Bti@}_MjbG{HxDgkBt~@gHlDcc@bT_v@l^kOtHuCvAwNhH}ZtNuqAlo@{i@~U{k@dTwl@xPwO`E}p@`NexAhUgc@fHw^`GkObCklEjt@c|IryAgyAtYgcAbV}`Ble@ubAd]}x@pZy~Ahn@yQhH}m@dWkaArd@oiAjl@{lFluCccAhh@mTlLicA~i@gAl@{NzHgaFhyC_YvPwDbCmv@~e@egBnkAmBnA}wH|}Eoy@fh@yi@`[q{@be@wkA|i@qg@zSkdAl`@kx@fWkcFtzAc`GtgB{Bp@wk@lQcDbAi~@dY_NzEaz@`Zq_@xMgOjFkUfIgBn@qu@~XyZfLyXnLo`@lO}SlIywEljBwnDfwAg`Aja@ep@nZasA`r@mm@n]{m@t_@gs@vd@aVrOasEtbDmy@~j@mkMn|IkjAdx@wnDldCseMdxIiSdMiJ|F{]jR{\\~Oud@hRo^lMuR|FaGlBklAzY{g@fIs_@|DuZtCcZjAqk@~@_b@k@wCKaZ_Aqw@mGa`A}LmnAqRw@M}M_CkB[ufCga@ksEgt@kbEar@as@yIsZkDso@{Fo`BiKeu@iC}`@aAmUe@yMMc|@W}b@Le|AtCgk@|BgoB~L{W|A{cEnZ_BJcF^w{@jGiw@`Ck|@Esy@{Cmy@kHi~@yN_iCqm@c|Gk`BogCym@qbI{mB}f@_K_h@yHyiAcKieAyCc@AgwHiKqn@_Cig@eEyi@sG_a@kGk^cI{IcB_w@uTkg@oRoXyK}bAmd@sTwJ}{@y`@s}Akr@akAwi@cnC_nAed@mR_SeH}[mJ_\\qI_^gHce@eH}\\_Eg^iBmp@o@gg@t@uZbBs_@~Cq^bFyg@|Ik[|Ie]pJ{`AxZwWdJodB`l@ay@pX{i@tQmt@hV{dBhk@kX`Ji@RygAn_@gc@dOqjCv{@g}Bru@mq@dSke@pKwq@nNc_AdOss@`IsLdAms@tE{nA~Do{@Gsp@wAwyAmGuiCwV_pBwSg|JacAueGul@qMmAkjDc]of@qDkx@}Akp@hAso@pEiZhEu[dFeXrGkWpG}aCts@q^xHo_@tGyVzCiXzBca@jCg\\lAqs@s@yhAeCgNe@cx@oCgdB{FiY{@c_AyC_tDyLiaAsCufB_QeQwBgkAeSqu@sP{[sIouAkc@ixA{c@yo@gSq\\yIsv@_P{s@qKug@qEo{@uDuf@_@wiCfAy}InFkb@VeaApB}_AzJgp@nHwp@`K{p@bM_yDt}@qmA~X{k@~OiCr@kp@tS{n@lVajAph@wh@xZqi@j]yFnDaSdNea@jZaYnU}s@jp@wg@~f@mQhSoNvOiE|EaH|HskAv{AogC~jDu_AvqAghAn{A_wBtuC}aBj|Bok@d_AaUz`@gd@vy@a{CxuFka@dy@c`@d}@cQdc@}Prd@m\\fbAq{@jiCyWhq@c\\xv@wc@z{@_O~WySd[yiAzaBaj@pv@aJfMsGbJoOnSgVt[aYb[iU`XuOrNePnNop@rh@}u@~d@wf@hYwg@lXs]fUu\\fV}b@d^sY~X]\\a]v^gHpIaPxRoEhFuJrMmr@xbAwJtNcQ`VmYf`@ee@zl@gPhRkXfYya@z_@kZzX_vAjqAil@vn@cRpVoWj\\ea@|j@ib@pm@eZxg@iSl]iQj[sFdJgoA|yB}fFhcJ}`BxtC}e@f{@g]rs@uKbVwF~Ms]l`AyNha@oTho@iOba@yJlTINsLvVeN~WwJbQ_NnTgIdLgNxQkSvUgNtN{SbRoUxQ}g@t\\oPfLuf@j^{SdTcVj]eIxM_IjMoUha@{KrRgGpKuXpd@mSn\\gJpNkR`VoTrVs]p]q\\hY{n@bg@oAbAoZxW{c@v`@ee@v_@ycAn{@wGzFeMxKmIlHmP|Myb@zb@q^v`@}Yd\\u]tc@a^jg@aWv_@md@vv@{^tq@sd@taA__@d}@c\\f}@iI|VaPnf@eTft@_\\hpAw\\v}AgYf_BkCzOoNtz@qFh\\oGr_@uJdl@g@jD_I~e@w^l{BaMns@e@pCcK|l@uOhu@aOhl@cRfk@aVrl@uYbk@kXz`@wV|ZsQhRwJrJaOrL}PhMeQ~K_TfL}_@zNmnAdb@uvA`f@mg@zLw[jD}]`Bk[Hw]wBaZsEg]aHcTqFgVwJ{OuH}PyJ{OyKe[cVyUeVcRiTyPeV_RiYsUs`@ed@c{@ylAa|Bqk@yhAid@my@oc@m{@yNcYuHmMoQsY{NqSiRcUsV{UoOkM{U{OaWwK{UqKqXoJeQgE}]wHq\\wCwViAwUZmZrBa\\zDqYlGoTrGkPnGmR|JkRhKuWjRiRvP_OrMgXjX_uBbwBul@nk@u]tYsVbSsUhQw`@rWc]bSoYtOy\\|Og~A~p@ai@xRsq@jYuh@bWeObKwJtGmSlOsc@vd@gNtQePhUoLjQ{Vva@gZxq@eIjXgQ~i@eVteA{M`x@eLlw@w[nsBmCnRmIbl@gS~rAiT~wAoRhqAoInh@_Irc@iJpb@qJ`_@mStq@_]z}@kU`f@eYli@eo@x_A}Zff@yOzUqw@bkAio@v_A{iAj`Bmi@zy@}RrWyVzZcSrU}P~QcWjViVhToTnQqZlS_c@lYy`EhgCkqA`y@qRrMk_@`Zyk@hi@aY|Yga@tf@cQ|Te^th@o^pn@kWhf@qZlp@ilAxzCsPra@{rB|gFqKdXy|Ab{Dw~Av_EqdBvjE}tBdlFkd@zhAc^|v@aa@nu@gYdh@q_@xl@mt@tcAmVtZsmA~kAwy@dq@aqAv_Agn@h_@wd@`Sqy@d[}y@vUcqB~^sbHriAeLjBcjJn{AkmBn\\stE~w@smCjb@gVzFsRxF}r@nUso@pV_sA`r@{fB~eAgzAzs@kuA|c@y~At[otG~kAckC`d@a^xHa^|Icd@`M{JfEmLnDaVzIyeA|e@_VtKifA|g@}~Arq@gfA~f@aL|EeKfEwrChpA}|@r_@ogAd]ev@bPal@nJgpD`j@gfE`n@{|ArS{eEtj@qV~C{~Ehu@oL`BevGh~@qBXaiCj^{hCr\\qtBfWayBzYq~AlSeeAbLs`Gpw@}~D`g@{m@hJq^xGucApVucBpj@yfA`f@qn@l\\{`@`Vwb@fYyjAp|@_fAb{@{a@d\\mJhHkiAz|@klC~vBeXjTej@tc@cJdHo~BrjBuiAb~@icBvsAkaA|v@{pB~aBipEvlDoOrLgtAfiAcoGndFydD`kCyLvJynExnD{eGv}E}XpSyIpG{c@xXms@x`@ex@d^ca@tPc|@rVe]nIq{Dh_AceBxa@}AZgNhDwsA`\\yRzEeoMd`DukDpz@ehDzw@woBfg@mwBpd@iLvBwfI~lAa\\|EeU`DoeAtOyx@rLg]rFoi@fIa}AhUugAxOsMnBy_C`]yPxBebGx|@wwAjTwMrB}kGtx@adCh`@I@gdHhhAsmAxPsuAzSy~AdTu|@lIin@jFis@|EapErMeeKfQ}_CzD{fChF}zDxEqJTejC|Em}NdYklI`M}|@pDiDNasAtIqeAnHywB|P{bAtGo|@jHknDlV{iAxHkiC`QmyBjQqVdByqDlVqkAfIuzJzv@yx@fDwZv@gv@`@eZHqA@w^JuwBj@mDB}zAjAaJHaR@mXJeDBaaAh@moAp@gf@Gyx@Kya@v@aJp@_M~@w{@pGwr@dEsm@~Dad@pCqs@tEcuC~Q_Nr@cP|AmW~A{RvAgNdAivBtMsKn@yz@hGyjB~LmuAfJsuKjr@_}Htf@wc@|A}c@v@un@mA_VmAa`@_Ecd@cHod@sJayA{V{NeBu\\gFoa@iGkO{Bqx@oLsSsC_f@wGij@cFcV}@wu@m@oGLg[n@uKTct@jEcQtB}LzAc@FgBXqYvEsf@lJqGxA{NdDsDx@{\\fJid@hOye@lRsuEfpBcfA~d@koAdi@ypAxi@_m@~UsK|DmOvFuM~Di_@dJyP|Dqo@jKus@nIi\\dBm^jB_d@p@qn@w@i[wA}b@gD}WsCi_@{Eau@qOgMuDeXaIq[mJ_eAmd@gqAit@szAwnAyeAudAqv@wu@ywAuzA{k@mn@sp@op@cYmYsVsUi_CoaC}JmJi`AocAaIqIohBsmBwwBagCwdJ}oKaPaRacAckAcx@{~@mdBypBwy@i`A_rBq_Co`BelBulByyBg}B}}Bq`@c^}k@uh@crAomAua@uh@a_@kb@eqAozAw[__@ic@{e@wXcXqi@ee@a_@wWkx@cg@g`@qU{g@g\\ah@}]}p@ik@mq@km@{pAckAiwAiqAaB{Ao|AavAuu@ir@k_@k]yR}Py\\k]}PcOkUaSw]{[YW_pAykAwz@ow@ki@_l@_FiGwy@_bAc\\_d@kl@}x@khCavDsb@im@wCcEoz@slAmyA}tBcmAo`BwgCmrCma@cd@iqBujBilB}bBegDgxCkc@{_@yaCkuBuqDibD__DkpC}c@{`@cv@_q@_n@si@m`A{z@c`A_|@}XiXo]u]oo@}s@_s@cz@o_AypA{uEkkHy|@imAou@{{@_}DufEofCglC_d@_g@kCsCgM_N}`@wa@_XqXax@a|@ug@mi@sWsXsoAusAaiAimAur@gu@i~C_fDqaBuaButA}dAolAsu@_cAsb@q~Ayf@qeAsUepMgjCq_HywA{rFgiAkgB}_@_hG_oA_l@cMol@uLgxBuc@mP_DwkAyV}vBui@ikAgc@yjA}g@uj@qZqv@kf@gMgJ_UwP}_@uY{KsJuTcRmb@a`@sa@kc@oe@ye@oJmK{PcRkTyUym@cq@eIaJsmByvBorCc~CmqA_zA{uAu~A_vAo}AkqAquA}r@cx@oa@wc@wVoZcXw\\k^{j@iUwc@wQo_@uNcZ{T_a@}R_ZeXwY}XkWwb@uWa_@gTop@s^sXmTy\\a`@eWya@yXig@uL}SoL_Rq\\ya@eWaTe\\iSuW{McYeNs_@{Ty^k^gZmc@qOmYsHuQePsd@uTyr@sWou@qNk[gSg^sRqXa`@ua@}f@u]af@_S}g@}Jaf@iB}w@E}a@Ye[oC{V_EiXmG_k@uScl@o[{p@ca@}|@si@sm@a`@yo@ec@aIgFKIktDiaCov@_l@_u@ao@if@cf@yf@mk@cDmEGIaSkX}Sy[mX_f@gS}`@[m@iWam@kQgg@mSgq@iQmq@sPsu@mKsk@wLov@{M{`AcQyzAwRmtBySwaCiKqnAoAcM}O{_BgQ}yAqQuqAYgBcSqmAgXutAmVulA_[yrAyaAqdEcXiiAwq@euC_n@ciC{FgVgUw_AyRys@wNkd@uEaNkTig@kMeX_OqZcHwMmMuS}NiUuEoHyYm_@}mB{fC_@e@_r@g{@{OmSmzBytC_dBwzB}PaUyr@c|@yw@w_AwhA}fAiNgMsWyU{QsOoVwS}n@yk@eeAuy@aAw@oeBoqAkTgRiXkWe_@g`@cb@el@uZmh@os@{nAi_@}p@_V}\\{Xg[sSySyV{Ss]cWu[_Re^qOsUeJgi@}Qud@qScOqI_ZmSsUgReWyUcQ}SiT_X{MwQkN_U{HuN{MaZePs`@cPsb@{Qen@eMgj@wJei@gHaf@{Fof@kHi~@gDmw@{AebAoAor@wBav@_D}h@{G{v@uHcj@wG{c@mFcWcFkVsMof@sNic@mPuc@{Twf@iUma@ci@wz@_Vk]ePsUocAyoAenAibBwiA{{A{cAysAodAwsAyo@my@wQsVuw@mfAaa@{e@uh@ki@eZ}X}KoI_PiLyT_Os^iS}W_O_e@cSoe@{O{MoDay@yOg]yDm[cCwn@sAwWA{aAzEokDjWsVrBeo@jFyLjA}lEt\\cwEf]ig@rDm]rCehA~IujEj\\wlClSsZdCoqAnJqm@rEoy@fGilAxIonApJcdAtGmx@rCil@hAwv@Bqg@kA}g@}BoUaBu\\iFmj@wIs]sHsUcFc_@qJm\\yKqc@ePeKyDqk@qXoDqBqf@kXec@eY}_@gY}ToPeqAmiAg\\m[anB{jB{~BmyBmz@iy@slDigDa_@_^ms@yq@{d@_e@uYi^}Xu_@}`@mr@mNuXo\\_y@_Za}@wSux@_Sw`AiR_jAuQioAq|@ymG}Y{tBmAsIswAgcK_Z_vBaLiz@wNi`AiPsz@{Va`AkIeXoP_g@_]mx@uMwVkL_TuYid@qOwSuYg]y\\{\\{H{G_^{Wgr@we@adBukAeLmIu^mVw]ySyKqGsQaIgf@kQkV{GuZoGyZaEyb@gCmXm@s`@r@uf@nE_UtBw~@fSmg@lLaa@jKcrB~e@qvB|f@atA~[mPrDocAfVem@~Ng`@|Iio@pOcs@nPo`@`J_IjBcFfA_InB}MhDqEdAgH|AiSrE{~Ah`@a{Ar]ws@|O}RjE_z@pLwl@tEcm@jAkaAfAib@`Bw[bEe]|Hq]pKiY`McYxO_OtJs`@|Zih@va@qg@zZk_@xNid@|K_i@|GoYf@cb@{@mb@iE__AmV}l@sSmc@sNev@{Lu_A{GmX_C}XsEsc@oL{f@_Sqh@g]sb@{_@gwAgaBye@kb@gb@s]qZ_Reh@mTkSgHwQuEuP}DkYwEaOgBsKg@ee@}Ao_@Tg^pB}e@vFid@zK_RlFaUlImQnImUdMyRtLq[rVmA~@sHzFkt@ru@{b@lm@yTv_@oUnd@yRdd@cX|t@mLzb@aPhm@}SfgAoTtqAqNb{@u`@~`Ca@xBsDfS}O`y@oTfr@{DzJuOzb@wOl^ySz^uZzd@uUvYm]b^o`@rZo`@pU{[lM_NvF}PpF_[dGkb@nEsY~@id@o@yWuBiUuDqX_FsYaJeVyJsUoLma@aYyQwOqNaMwZu\\gRaXm_AuvAgaAktA_k@kk@iYySwUqOih@qVuUoIsSgGqXsFkXoD{j@iDwf@~@}h@xFaNpBy\\dHor@nVw`Ald@qUtKq[tOwVzLgRtI{lAbj@{h@lQsd@dKs^dFcf@|Cwz@GsZsAoW_CkY}EwWwFi[}IeVoHcWqK}WaKm`Aua@_XwI}j@kRyi@aKam@mG_U_CuQa@u_@sA_t@D}LDyu@IyW_AcLy@o_@}Dif@yJsSgGaPsFox@yZcxBojA}RgIm`@eOy}@iVag@eJsy@wLcBWwzAcUuj@gM{j@_Pib@aPuv@y^_j@o]oc@w[wd@ca@ad@ce@o^ob@gSwUkNaR{r@ybAwa@ap@{xA}|Bom@_}@qn@e{@gh@im@_c@ac@un@ii@yb@k[yh@iYai@eWyf@gP_h@_N}m@yKg\\}D_TgCmu@wEy|AgCocB}ByZ[obAaA_kByAkv@gDyi@uEib@_Gwb@_Luc@wOmg@kVg^iUwUmRkg@ce@ga@ge@kh@sw@c\\un@{]ox@_Rci@o]ioA{Pq}@qOufAeKwbA}Duk@qCkn@iBgp@gA}i@[w\\yAe_Bo@g{Au@w{@aBgr@{Diu@aFap@{Iyv@cMcv@}Oqs@oRgo@qR{h@c]is@yb@us@cU_\\mVs]a|A{lBgt@wfA_Uab@qUch@{JsWwK{[qH_WyIm]kIk^mFaZyH}b@_Gu`@oKez@gHcp@yG{t@yGky@mEys@gEy~@uC}_AqBm`AgAi~@o@u|@KcmA[{z@EgwA?qk@?mnACinB@whACe~BKen@Q_vCBqmAHim@A_h@KukCSg{As@a|@q@qc@sByo@aGkcAmDwd@}Ese@iKux@kGu_@{EaWy@cEoGw[_WubAyTyr@mVso@kOo^yNeZa]wm@gZqd@sToYyBsCiQsSwQuR_VuTwP_NmZqTs\\sSq\\oQ}l@gUoh@uOch@uOok@wOgo@wPywCqy@axAca@mj@gOGAap@qQe`AkWmVyG}k@iPal@ePorA__@iG}B_b@qK_N}Cof@iOuNyDuU_G{j@aOcp@wOs|@oRef@oJap@{IwcAeK}d@uCmi@eCmVu@op@_@}y@~@aIL_r@|Bku@bFit@lHk^jEe_AfMy[tE}z@`Liw@bL_z@jLk|@~LyYhEe}@jMa{A`Toz@hLuo@~I{`@rFoThBkRrByLhAaMn@iRpAgWp@we@x@kd@s@oVg@_Z_AwPaAmJo@cUcCqRmBs^kFuOyBge@_IePkCga@{Gaf@oIaf@{I}L{B}k@yJiw@{N}v@kNib@aIss@eMgTkD{J}Aqa@sGei@kJiMiBsWeFuLqBi[_HkF_A}QaDceA{QgHiAyt@{Ms^oG}bA_Qkr@uLk_A{OiI}Auw@yMwc@{Fk`@{DmOsAwMaBkZ}Aq]oAG?{Ug@kG?iIAiYP_b@|AaXfAsSvA{[lEkm@`J{o@dLou@zOgFbAuL|BaZrFkrA`X{_@jHc\\pGiUrDoa@tEcb@`EeJ|@ki@hFea@zCyw@nDs\\jAwj@~@eRTih@[y`Ak@qX{@iCI}]sAs[aBw~ByPgcCoQgWcB}_AuHaUiBod@gDc_A_HqWqBsY{By[aCamAcJov@{FoNaAie@cD}dAeIus@uFqx@}FcVeByL{@ou@cDoWq@uYu@_t@kAwSE_a@Gsg@n@gORsWf@qUj@eu@|Cko@lDgy@tEay@`EwWnAcJb@eS`Aei@bDmh@bCuw@hFgt@jEq^bBg]jBq\\fBiUf@sXYgRu@yPiA_OiBk`@iGc^kJs[yKg`@cQk\\cRgUmO{p@ch@eFwDoe@i_@sUqQgKuHiMoHk]_NeSaFwZwEca@o@iWtAgVvDyUjGcSrH}NpIqC`BeXhSid@da@k}@bx@gRrNiSnMc[bPcHnCyRxHmeBph@{c@fNyG|BwNlE}f@`OaJ`CasAza@op@vRug@nMuc@nJaQjCqQlCgRpBuD\\mBP_Gf@kPr@eMf@kSTgYSwZ_Aa[wBujA{Mc}@{N}ZuFoLwBmgAcR_j@kJaj@mJa`@sGyrAyTqXsEql@{Jux@gNkR}CsSqDiLqB_XsE_\\gFak@eLkb@aK{`@mMkf@oScKgFgKmFoXwPqr@wg@g]qY}\\kZy\\{Za]}Yym@uf@aVkQcIaGu{@cm@mn@y`@cp@}_@go@s\\of@sV_a@yQ{v@_\\we@{Qav@mWet@oToXqHmd@_Lmm@}Mav@oNmq@cKmd@wGmc@cEsn@qF{D]a[qBsm@iC{Qk@iUs@ym@u@yyABySf@a\\r@md@tAoZ|@cYd@_i@]iZaAyl@mFyQ{CgSgDye@{LyYyJqc@eQa\\_PwV_P{@i@g_@qWa\\sXuYaXs_@_b@}UoZqSqY}f@yv@ii@i|@ck@m_AiPcXc_@qm@wu@gnAyUia@uUyb@wQaa@yS}h@wNic@cOgh@mMak@sIyc@oHeb@wHqj@uImv@yMylAgG_f@}Fa_@ePg|@y]caByMwk@oKmi@oJgi@yKew@uHiq@c@oEa@kFkD}`@cGqv@_IokA{LkfBoIqnAqGuaAmMqjB_Got@gIku@}Hcl@yKyk@qN}q@qQwo@sg@waBkb@stAuZw`AgEwMm_@alAyLo`@{Q_m@_Pqg@se@mzAyIcYsJqZyw@ggCQg@uy@ilCk]seAiUmn@{g@cnAoh@glAol@wsAob@geAsIkT_b@ekA_JwYyRao@}sAm_Fom@szB}Tsu@kVir@uWcp@iWkk@u`@_v@uh@a|@gMcS}_@qm@if@cv@kuAczByMmSa`@wm@g\\uh@}\\yg@_Vc\\c\\g`@wZc]k^o]kZwViHeG}NcKy\\yUia@wWk[aSafBwiAqLqIkK{Ggf@sZoo@sb@qe@yZqk@ca@w]iX}F}Ekf@wc@uW{XyIkJuZc]sLeOs_@kg@kh@{w@i[ik@mQg[iJsQqJyS_DaH{Q{`@{[qx@g`@egAi]wbAuYq{@gZuz@oLyZwQqe@wY{t@wUuj@}j@gsAal@muAsNa]w^{{@mf@sjA_bBc}DykDygIy`Aw|BcU_e@wTk`@}\\oj@a^ch@_PkT}SeXwa@uc@aa@i`@iQ}OkWoSaNeKsUsP_e@sX{YkP}VsLaOiG_KkEySuH{UaIqTwGq_@}H_SgEsVyD{YsCwZyCuf@}C}s@oCmx@_AkWKqNGsf@Cok@I{r@i@gR_@}b@{A{UoAoPoB_ZcDyUwDmU_EmWuFyd@qLw^sLuXiK{WmLge@}Tul@wZsj@{XeaBaz@{NyHep@q]uv@q`@ce@eVk[cPgu@a`@k`@uRe\\wOam@}Twa@aKkBe@s]uFqYqBga@eByMNmZ\\yd@fE}N~ByNpC{MvC}f@pMcj@~QmZzJeYjJwcBpk@_UtHibA~\\mRbFem@dSgLvDuJ`DuZpJeUnG}TpE}Dx@wE~@sTdDgIlAmQvByS~Ai]|A_]^iVU_Tc@qZwA}S_Cym@sI}ToEeQsD{YaJgPiF{N_G}OkGeRqIm[sP{c@uWq]kUmU_Q_a@_\\wWmUyW}VeYkXiWgW}k@{n@im@cr@gBqBeNqPek@_r@o`@ef@uw@m`Awt@w|@w[y^e\\i_@e`@}b@ij@wl@qv@qv@sv@is@oa@u^c|@gv@ey@mq@wz@as@kQ_Oy]{YsHiGkJ{HiHaGoViSsK}Igw@wo@uf@ia@}s@}l@eYsUeKqIsMuKuw@ep@ox@yp@{]wYsx@{q@s_@k[oTuQkv@eo@aq@oj@ey@gq@{t@}m@mz@}p@ee@c]qc@mXcZoP_s@i\\qB_AwN_GyYyLqDyA_\\{Lk[qMmCgAiKeEyJaE_Bo@wqBox@ew@c[ab@yOiIeDc|@s]wv@wZcU{Ic^wNo_@}Ng[gMiVyJkv@gYgz@wW}g@uL}G_Buu@qLuO}Ayb@gEqy@{Dql@k@c}@`Boo@rDqMvAwe@nFsx@jNy`@|IiUvGwp@xTug@vSk~@nd@u]dS}v@|d@cZpQal@~[kj@|Wmh@hS_o@~QyThFkOdCch@rIyf@fE}\\xAqXh@un@SgFUaj@kDA?yi@mGgSyCeTqE{ZkHsg@{Oce@oQ{m@aY{G_FyZcRyj@ga@kh@kc@}TkTwd@sh@uPoTy`@yh@_l@e{@qm@_~@ok@g{@g|@}qAaCoDgL}Pgf@et@iLcQyDqF{CcFwMeQsXo_@_k@wr@eg@}i@{NeNy]k\\}j@}d@on@qc@yk@{]}t@ib@sv@}a@cs@i`@{g@}WcRaKy{@og@_x@gc@kX}N}]oR}r@m`@cI_EiGaDeNyGgr@a`@ox@mc@mg@uXqN}Hov@eb@ss@u`@ui@uZkw@_d@gj@sZaKwFw`@cTkUaMwf@eWuw@ub@wv@cc@y`@uTaWmNy`@aUqRqKwe@aWov@ua@ax@_c@s\\_RoY}Oyw@ad@gu@}`@sy@kb@cp@y]mn@}Zc|@e`@c_Ai\\oPaGeYsIug@uNwk@yLcu@gKiWwCyYiC{[mAgYo@{^g@eY^{Wb@_m@zB_Fh@gVzBub@xEaX|Dsi@bJi\\xHa_@xHyNbEuVtG_ObFwYbJmb@~NsdAd_@}pCbkA}eBvt@mdCndAmXnLygAre@sQlH}kDbzAiMpFsW`LugBrv@osBp|@opB~z@_NdFcjAhf@io@bY}RpIq`DvtAiHlDk^xQmS|L}IlGmS`Oi[pXuy@jv@erAlnA}WrVoh@lf@sa@|_@eh@te@}TbS__@rXu_@pU}g@`U__@pLmRxFcOlEeu@nPaq@rPw{Az^qf@xLuNtDiAVyxAd]sMdDo{An^a}@|TykArZ{b@~J_xAf]sTdFmUjFo`@bIiShCsK`AmFd@aSdAoRL_SDkRm@yRmA_RcBcQuBmg@_Iey@eO__@wG{T}D{m@wI}]kDoRuAqg@iAqYLkXbA{YbCyUzDwXpFoXrIiVpIkR|Ig^tRmh@t^ya@~]_v@ru@aT|Tyq@~s@iXtXeWzT{VxRaVlOw_@`Ta\\bNo`@~Lqc@zIiPlCsZzBu\\lA}WGka@eB{Y_D_YaFsXmGkXuImUeJkQqIgWoOqb@gYw[iYu\\a\\{SqU_N{Os_@ud@m}AelBmt@m}@mB_CycAenA_UyXcFiGgYu[mYyYkIaHuUwRi_@gVcj@cYi_@mNkg@wM{Eu@mb@iGoImAICyU}Aee@_@eSXw^jBw\\pEqZnFc\\bJ}U~HoTdJwVzLwXvPgg@x^gXfVaQnQqXb\\kSpYyFnIYb@ei@f`AcS`c@_j@nsAue@vkAs^d~@aI|RoVzl@wOb^kUxd@wRj\\{RnZiMjPm^fc@gVrUwWxTsu@`k@am@fd@}YxUmWzW}KjMkO~Qs]vg@qX~f@a\\ns@{KrXqQxj@cK|\\sKfe@eLxi@mOny@{Lho@aP~v@_Nhh@wJt[gMp]yMdZgMrU{St\\eOrRsOdPqPxNqPhMi^vRcRhIiOnEs[vGuw@hKc~Cd[ySp@iUUcOmA_QcCcPwDkLeEiOmGmPoJ_QcMGEgPyNqTcWeXsb@{KwUiIwR{HiUwHgXmE}PsDkRgHmc@}Da\\}BmYeFk}@aC}]sCs[wB}PoFo]kGsXkMib@iQ}_@mPuYmAoB[i@wE}F_JgLiPwOcMaKaJoFqMyGcLsEsJmDiUyFkVsGsXyGoP{EoYmKkYgNqPgL}OsL}X_WcTkUcTkVEEqSmUoSoSk[yVi^wT_F_C}\\{OmQoH}@a@kK_F}XaOoTuOkLaKaLyLaLqMuKoPuK}QeKgSy[gq@qYym@m~AahDoW_j@aHaOub@gw@}Sg]_Xu^y_@ab@cK}JkNoMmYoUyd@wXyW_PsnAwo@c\\qPanAuo@sU{M{PaKun@uc@my@{q@kn@or@}LsNoHqIiz@{cAgSiUwe@qe@cMcLcSwOmd@k[q[mQ}n@_YmIiDkQmHiQmHgAe@mLgGmZaMwQcK}d@cX{nAw_AebA_p@m^eQ_[wLi\\oJg_@uH_\\eDyWqCmk@a@sa@Vq`@jCyd@xDoa@hGwkAlWcd@rNe\\pKuz@~Ywz@f[cpBvu@cZ|Jiv@|Ugg@hMujAnTuy@zHar@pCgl@U{Sg@}]kCwb@mFwY}Ek|@aTay@yW}kAea@}vEc_Bs_Aa[}vAoc@a^{Hmc@aIwbAeL{z@iD_z@WseAzCadAnKqv@vN{UtGe^lIwaAhZqaAz[eUpG_o@hMeb@lEql@lAcm@cDgg@mK_nA{^uu@wYomBiw@{zC{mAc]sM_QgFkVqF{]iFea@eCoe@Bi^lBg`@bGk`@nJmc@rPie@vW}R|N}R|Ned@le@{Wz]c]vi@k[lp@{T|k@}Uxr@yd@bvAub@lhAaUhe@g[bj@g^hi@m_@nc@o\\p\\wa@d]ib@hXod@pU_^fMqPtEsMjDeYpFaOtBiWpCg[`Bo[Ja]w@o\\sCsYqDmYoFsVsG_VaIwg@mUeZ}O}VaPsPcMs[{UetAigAkrAybAkWyMmWyMqT}I}TgIuVoHsVqFen@yI??acGqTeKWua@iAc{FcToq@gJkp@cRsk@mUwk@y[mOsKu~@cv@gpBi_BkhA_s@ukAqi@mpAs`@atAuU_AEijAkGqm@g@o_@bAqeAfIqeA`Q_jAjZwb@bRam@nYoaAvm@ydAlz@im@bm@wQtQgZr^qZna@_b@|m@_Rf[mg@x|@{f@r`AgLtTy@|A{LnUsi@~z@{QnY{Zz^{\\v]ap@pf@mn@|^wq@xW}n@hP_oDpy@y~B`j@qFpAsYdHg[dJ{X~KwXdNwRlLgTpO{LnKeT~QmPbSwI`LsNnRaUt\\iY~c@oYpe@}Tl`@g\\ti@}_@jo@wdBptCoc@du@ee@tv@{c@js@g^fj@sV~YyUvXWZaY|YgWrUgNrKwQrMySdNiXjO{CzA_a@bQyPlHcDjAmTpHi^nIw]dG}^fCaITsN`@_Xt@iQY_ZuBqZuE_YmGgYeIwnAkh@af@kSq\\oOuIuD{FiCywAoo@{QkIwrBs~@saAac@aPgHw[{Ncs@y[_]qO}p@i[gb@_SwnCgpAyuAwk@sr@e[amDk|A_dA_d@gw@m^mbAkc@ilCqlAskGmqCuc@ePaV{IsUaIwh@{RglAsYw}@cP_[oE_`@sEa|@yHqz@_Fg|BuGgrE{QsaAeFanC}KmgB{I}XuCcLqAuMaBqTyDkUgEm`@qIug@yMoXkHqwB_k@qpG}bBimGwaBcIoBsDcAkdGo~AotFwxAuYwIaZaKuY_LoYoLmYeNeYyNmXeP{XiQ}W}Q_X_S{]wXsPyO_WkUuVqVsZe\\oUmXmUsYwTiZ}_AapAaIoKwkA{|A}b@em@yj@uu@eg@up@oM_QuKqMe^sc@{e@{h@sRkSsZoXeXgVqMyJw_@gX{b@kZwf@eYk}Em|B{pFijC}iFefCg]yPmYgOsc@}Vw[}Ra_@cVyu@ah@cOeKuvAq`AohFeqDwJ}GcrConByhBcjAceBegAmIoFegB_iAid@oYsdGyxDsbGayD{qBwoAqh@e]ie@}]sb@i_@cd@ob@}fBkoBmkB_rB_U{Uw`AkbAo[q\\u[wZm\\sYe]wWo]qUe^}Sa_@wQc_@sOk_@_Ng`@sKg`@oIm`@uGw`@aEq`@qC_a@GcB?uQBia@h@y`@hBqbApLg`@|Hc`@zJw]pL_AZsd@xQad@pSqgDx}Ak_Bfu@}h@|Vs^hPod@`Rmd@jOcNpDebA|Rc`@zEq`@pCg`@tAe`@Fi`@u@aa@aCk`@}De`@gGu_@uHu_@sKa_@eM}^iOg^cQs]mS__@yUez@}l@}U{OkfAkv@}N{Jcs@yf@iIaGyn@md@}dBulA}M}JkuAkaAasAe~@uRcNa|@so@ol@}a@oQkL_WyQasByyAkd@a_@ajA_hAsNiP{CkDgsAadBi^sg@gWc^gQuVst@ydAcW_^mn@c|@mGyIm`AqsAg\\ee@_}@yoAg`@ij@iQuV_uAinBc\\}c@wn@yz@eKyM_a@yb@eQ_P{YkUaZaSo\\wQ{ZoMuXmJgVqGgMmCuKkBgIsAcIcAq|AkNaxBoQwq@wF{fC{Ss_AyH}e@aFkSyCw[{Ge\\_KiRkHsJ_EeQoIqPcJqWsPaTcPyW{UuUyUgXo[yTeZ{@sA_Ty\\eJiP}JqR_IaPwR_`@oN_Z_aAsoBgb@m{@}iAe_CoVcg@e\\ml@uVo_@y_@ye@eHoHoXmYwa@_]gd@qYsd@qUun@_Ts^wHs]wEoZkCeVs@gS]ss@QywBk@cNIcd@OsLEk{GyBivGwByi@QarA_@sk@OySMwvAi@}HAeqAa@e^Kyb@FkTl@iVzAmQtBeQ`C}RbEuStFoJtCiPrFkStI{PhIaRvKu[xSoOpLwP|NyOhOyOzPgWf[en@xy@gt@fbAyfDhsE{f@~p@y^bd@}`@tb@qa@z_@y}@|q@sNbJ}TjMaS`Kw}Ahs@qz@b_@am@xWwa@vQ{_@rPia@pQ{g@dUgf@jU}c@`Wqc@lZkn@xg@y@t@gRtQaa@~b@s_@`e@{}AvrBqPjTgVj[u_B~tBe|AtpBw`@~g@mwA|jBuwArjBmMtOqb@df@wc@pd@gk@pg@wj@lc@_r@pd@s~@~g@mqAbt@}U`NoLrGmrCf}A_lAfp@mjEjaC{v@lb@kx@`b@sv@h^ebAx`@yZlKcRdGgVtHqcBvf@cQ`Fqv@tT}`@lLgS|FoA\\WFwA\\iBd@}dC`t@{U`Hc|Apc@wWjHo~@zWuSdIqsC~y@qvEfsAe~@~WkDbAcm@dO_]xGgZbFc`@jFieC`T_\\pCcX~BkBNc]rC_iBvOiy@dHs`@`DinCpUuH^mKr@ysA`K{S~AsIn@m[bCoWzB{a@pDocEjb@{ANmrBjUagBxQsg@lE_F`@a^bDo_@zDehEb^}zEz`@y|@nHkuBfQguBhQqp@zFag@`EuSlA{RnByO~Ac\\tByTxA{]tBcuAvIo@FccBlNmqEt`@wiA|J{eArLgaCjd@sFdAkrGnnAqfGbkAwmB|^abDvh@gFz@yM~AwpBjYmx@jLiEn@cnAjQ}oCn`@oy@bH{g@v@oTuA_UyAqd@mIsr@wSqg@sUi`Ca{AszCwmBib@o[u`@k]qVgWaG_HuRaUqLiQ{F{IwJkO_PeY_Rg`@iIuRwIaSaHeRcIuT{Ki]wHyUoIqY_Nkc@qHmTEMkYw_Aub@awAqIaYsG_TiG_Tyn@qsBoDkLsp@eyBam@woB}Msb@eJoWyTwj@qKaUcTua@_Q{XsRyY_Xm]kVgXgWcVwOoN}XgRiX{PeZkO_XyK}|Aaj@}LkEqTwHip@iUmN_FeYwKaS_HcA[{`Aw]mEsAsT}HcVyJq\\}Oi[_QuXsRgQoN_YyVsU{VqAuAwWy[kV}]yTs_@uO{YiHoOwLgX_JwTwMu_@mOef@gMie@_Iq]mHy^uKil@se@}yCsTquAoMox@ge@kuCgEsW{w@ubFuwBy|Maj@kiDy_@y`CiUgwAer@ehEwFe]wR_gAq]c|A{Pou@u[mgAk]wcA_iA}pCgz@__BuKeRigAk`Bgr@k|@cNeOkU{Vei@eg@}l@ef@k{@yl@quA{u@omAwp@scDsfBuX_OeeG}bDss@o_@}OoIieBo~@icB}}@iuEqeCi]kQ_`B}y@gc@aUg}@yd@yNwHel@sZ}e@{VutEo_CwtEq_C_eAqi@qwEwbC{LkGiHuDmk@mZq}E_hC}JeEggAed@_gAe[{v@yMoo@gIy^cCuSmAyEQeZeAmQo@}b@}AoNe@gEOeSo@gcBeGgx@sBuv@oBscAmGew@}H}e@iIwOsDkVmGqS{F{GuBy\\eLie@oRsTcKeTcLmNaHw_Bu|@{VmNmd@}Ved@uWqhAuq@ex@me@mh@wYeEiCuDuBuyBqmAkFuCcaCgrAuI}EkQyJai@aZ{ViNysAet@mg@qVyg@eUwJgE[Mex@a\\ePyFge@uOwe@gOimAw[_b@oJ??y_@{HgAUkbAqPugAwNoiAoJgj@}CgvAeEg}As@m~Aa@i`E_AuHE_lAQw`Cw@{IAs_Cs@gMEixAOqREac@KgfAYsa@IuGAaPEiyA[ilA[{ICsi@Omn@ScBAohDy@}F?gt@Okn@Ogr@[mg@GopDaAcoGaBiCAkACw}ASeVqA_PHyj@VsxBmAuhBcA{SKaZYwz@sDiz@cGiUaBi|@kO{Cg@iv@cM{fAgY{z@}XuNoF__Am]mAe@ko@i]_y@kc@qFwC{m@aa@_FcDiV}O}y@gp@aaAoy@_cAg{@qa@k]qw@up@gKeJmIqHofDaqCuiBa|AugCexBwqFivEqD_DmpFsrEkaCiqB{`@u\\gGsFkOgNsu@eo@ws@mm@ue@ca@cVmSkEqDgJ{HqoB}aB}fBezAqkBc_Ba^oZirDy}CggAc~@ghEynDmEuDaZsV_vF_xEaP_Nq~@yt@kTsNarAg|@k\\mTcg@qZsbBmcAouAmz@u]}Scn@i_@yoEinCuNgJig@oZ}u@ef@kpD_xB_c@oWuGeEwuEkpCenBcmAaa@cW{wBkqAcdBycAezAo_Agy@}m@qZgUmGwEcr@yo@a\\wZqn@_q@knAswA}hEkxFiqAsdBy|AosBkLcOy`@yh@urAkfBwLsOsXq^eCcD}aAkqAia@ih@}PqTyoAo~A_m@ao@yeBccBgfCybCw|AozAg}EmxE_UmTeAeAiPmP}NuNimAamAkr@_s@{p@wn@aSiScB{AcJkI}rE_qE}NoN}GuGwhBqhBeaCy~B}vAmuAoZkZyyBgwBy}Ac}Ag^{^sOiOyoAqnA}M}Mqy@gy@ioDqmDwIoI}ViVse@qh@mi@_n@}^{c@oO}Rwn@ez@ij@ww@_IwLa^ui@gl@iaAs_@cn@cc@qx@g`A}mBeyAa`Dau@w|A}nAonCo{AwdDyTwe@igAk_CqwBgvEcf@}dAkg@}fAqfBowDg`CkeF_{@yjB}CyGw_BglDsbAgwBoR_a@wMsXy\\io@gs@ikAeq@{`A_aAmqA{B{CwlBcjCaJgL}v@_iAq_@um@cEuHatBkvDyvA{eCwaAqhBe@}@_yBe~D_GgKqj@saAyl@ycAcTa]eH_Lsk@az@sZea@iIiKeKeN_OyRaaAcqAofAkvA_cA}qAkb@cj@caDchEwW{\\_jBk`CqgBaaCmlB{aCqjAimAij@ii@kK_KsN}Lqq@al@oXeVokCk|BgsFsyEmHoGmpDs}Cad@s`@mcCiwB}`CqrB{f@}b@imAoeA{LyKaGgFwUoSgrAeiAaLqJeYoVycC}uBgNiM}JeJsb@__@iM{Kgg@ec@wTsRihA}|@kiAyx@m`@kV{_CeyAw~BexAsUyN{lFucDs~AgaAwQcL_u@oe@aJuFkf@sYuRuL}OmJuh@w[a~@ae@acAa`@q{@qViRuDiZ_GqYwEsYkDum@uHom@cGgjBqScZiDo@IoeAuL}\\eEcv@aHkEa@uzGgu@cuAoP{WwCsDYer@gFwiAs@gx@~Aqs@pE{VxCm\\|Dob@rHcdAdUgdBt_@oOpDeVlFmhAnVuaBx^c]`I}cAdU_}Ax]umCfk@sk@tNo\\jIgfBp`@i[`HygAfV__@|HwKlCg_B|]cwBbe@or@pOyAZ{Bf@cVlFmzC|p@{KdCaDr@w`@bIy`@nGyM`BqQxBuJlAun@tDes@bBwq@k@gGEij@}ByAMC?oa@oDwEs@cdAcOye@uK_w@iUyHyCgs@qXyi@{ViR{IeQsIsUqKcz@{a@}XiNwwAsq@{LoFaJgEy}BmgAwb@oSiwAer@wE}B{vAar@udDi~AqiGkxCgaAae@wKkFoB_A}\\gPgGwCqpCwrAqv@u_@ad@qTa|@oa@kmBc_A}PkIkEwBeVoLasAao@mRaJqXqM}{@ya@sY}NkMuG{E_Ca{@_`@e~Ci{AyVyL_SeKuvAwp@ewAsq@kDaBe~@ic@gj@yWm~Eu_Ckx@_`@ekEwtB{FsCcU}KgFcCoZ{NgfEuqBoKgFofByz@{{CqxA{dA}f@ouAcg@e_Beb@}EeAys@sOyy@gLcTeCur@oGut@oEmVc@yR[oOUe^Qa]Xm_@^{ZnAyWtAw`@tBotAhNqgAnMukElj@uFr@m`BlSeeBnTqfAxPsx@rPc_AtVo|@rXi_At_@iBr@qRvIcx@da@_v@hc@m}AzcAeb@tX{QbM}zBt{Akv@lh@qjA`w@qZrSub@rY_dAjr@e}@dl@w]pSo^jQe@TePfIqY~La_@~M_UbHeS|F{p@vOmbA~Qsa@lHmh@fJauDno@wt@hMsqDfn@gMbC_uAfVycAfQiEt@gdE`t@{nBx\\{nBhZuv@nIo^dDibB|Kqw@jCo|A~BgaEzCsuAbAelBrAshDvCoSRy^xBqoAxHoiBfWm_@hJw~Aj`@}`@rKuwCzw@mhDb~@_iBtf@eBd@gRnFgeDf}@qjBvg@g}Avb@{mBjg@{k@~OcVtGqGfBslDh_AogAzYc\\~Gcf@~Juu@jKgqAzIgv@@sd@wA{Jq@sy@{Foi@yHqj@uHoQmD{j@{Kw_AsQyOwCotFidA_yFofAei@{Hu`@gFk^iDqi@cDm_@iAk_@Qya@t@_\\hAa\\lBaXjC}BTu^fFsZhF}e@dKs_@pJw[hJkgBzl@imGzuBgk@lRu`EztAwXjJo|DrqAqe@xOaUvFkq@xPak@vJcf@|Fos@rFq`@xA{b@XmZEao@sBgi@yDiVcCaf@eHkd@}Iab@aKwHiBu[wI_HuBafAc\\gXmIa`DqaAccAc[{o@eSoj@iQyTaHeEuA}{A_e@aW_IiiGqmBMEu~GovBoiBsj@g]eK}aCkv@ieDadAslAc_@yNoEwfAq\\e\\_K}V{HgP_F_hAo]}]sKgEqAeT_HgdAgZm\\iJc_@oKsbAqXia@{Ka\\sIgvCct@oQoEkWeFyjAiU{rAwWyhE}p@yTkDyuEcf@{k@eGytDc`@a^{D}sOwfBkcBoRq~BuUeQiBayc@i_FaPyAooNe~Ai[aEaKcA{OaBqvKsjAsjB_SiN{A}cBuRsXkCeiB}Ri}BeYytGwq@_iBkSei@wFk^yDuWqCyqCaZggAqLsBUkUiC{a@sEuj@mGsyBiVe`@iE_I}@{UyCil@iGkh@qFuyCi\\weC_Yqq@qJyhA_RkjBs`@qcAeXgcAkZgq@uUcq@uVkq@}X}p@_Zq}@mc@iTeLqg@_Xs{B{rAi~AecAs}AwfAklAoz@oVqQcxA_fAcQyKiu@gi@eGiE}NsKkO}Kgm@cc@qVmQafJkxGykAqy@{gAqz@mdAceAo_AilAgo@w~@gj@aaAu`AglBu{@orBcsAi|CsTqh@yrJyzTcJ_Ry_CipFqx@w}Ag~@y{AuiBcxB}jAueAid@k]yd@g\\wzBknAob@uT{|Ayv@qJoFiSyJwIyEk`Aqh@ggAgw@wjAu~@ksAogAmS{Oa]sWeeCanBexEswDggDuhCmV}Ti]k\\{`@sb@a`@ge@y\\wc@m[ee@q\\kh@o\\uk@sq@grAwuCczFcSq`@kyCo_G_MiV{Su_@aTy^gVs`@mUy\\od@mn@mQsToReUic@yd@{x@gz@g`Ba`BwRiSm_AeaA_MkLu[m[cEcEoS}Rsf@wf@iM}LgQcQ_JoJm{@c{@}{@}{@glBilBmKmKqrFwrFwd@md@ke@ub@cHaHeImG{RuOcMiJaZsT}\\mTc^kS}LoGaj@gYir@k^qCwAuo@y\\uRgKsUyMwV}LmTyK_l@}Ygt@e_@mWoNiXwMop@}\\am@k[}f@qWqH{D}g@}Wkq@u\\c{@eh@cNeJeJoG{YiSoZ_VeLqJuJwIsj@{g@c}@u~@m]ea@q\\oc@y\\yc@i[yd@iWo`@oWsb@aWwc@iRw]{OoZsOy[_[eq@s[ev@g]m|@gXav@yv@y_CkC}Huk@cfBmvAsoEggFmyO{Nua@gLq[kJsWy[u`Aoe@ewA}|@{nCeX{x@uHeU{DmL{ZabAAI{K{]iBkGo^_nAm\\}nAwFcTgMef@cVcaAyC}LeGkVsJ}a@w_@ebBe\\kzAig@_{BoFyUqJob@eQau@{Qss@cKg_@_Qsl@mQuk@yQak@{Rcj@yn@s_Bcq@q{A_xAkjCk|AezBgrAy{AeoAcmAomFcnEwaAyv@gP}MkbBktA}gBuyAeUiRqp@ij@kc@m^uN{K}XiU{fAw|@_sAcjAscAez@ugFugEukAeaAqlAkaAad@u_@mz@yr@ic@ua@oYyZyZ_]uYq^ci@mt@e[me@oPyXuVec@ePm[_Xih@mN_[a_@o{@gVcn@ydIowSupC_cHqXcp@mVgi@_^ss@a[sj@c_@}m@c]qg@e[ob@w[w`@{^_b@_`@{`@em@}i@}r@{i@}YoSwZaRqz@ad@__@gPwZwLi~Agh@ynAu`@ehAe^i{Bgs@gSoGugCez@ulAkc@s{CmlAyg@gVihEasAe[{JkeC}x@aIiCmfFm~Ak`Csq@_cCyv@inEevAokAqa@a`@iQgVsMkOiIe[wQqKqHi[sTs[iW{ZuWcy@_w@wt@cy@wk@yw@u\\{g@u_@on@e]_n@a\\kp@_KiTuIuRyS{f@aJiUyGwQoQif@qImVks@wrB_hCejHku@awB}fCcjH{Yw|@ac@c{AyM}h@kRa{@oTcgAmb@}bCiTcqAwGi`@oGm^y`@o_CyaA}~Fqs@}gEop@}wD_m@w`D{SafAwq@}yCkZcoAu_@s{Ain@agCu~@orDy]wuAi_@qzAu~@esDeq@alCeqAciFwLgf@ad@icBmb@}wAme@mwAc{@mzBij@sqAks@gzAkR{]iPcZme@sx@mVeb@q}@}zAegAojBy`@ur@ioAiuBa`Ai~Ak[sh@qY_i@gkAmoBa_BglCqb@gt@soAkqBmmAqkBiaA_sA_o@mw@ct@a|@kaB{pBejBwyBe}@}eAun@_w@_fAwuAox@{qAa~@whB}s@{eBe[y|@w_Ae{CkCuIqJk[kn@spBcMub@}Jc]eHuUmg@a_ByhCwmIihAypDcg@kaBoG}SoDgLyu@}dCw_@ceAo_@g}@sWwi@qVgd@kVqb@_We^oWo]_Xq\\ysCa{Cq]aa@{Vw[y\\oh@iPaZeRe_@eTod@_MyZ}Pud@wJsZyK{]wJs_@gH{YsNaw@uHch@y_@qqCkKst@uJim@qNqw@}UeeAqFoQgFgPoKi\\qPoc@k\\yu@gPk[uOsWyNaUaOoScOeSoP{Qq[a\\k\\}YwS_Sg]iYuoAegAo[wXiJyIwb@uc@iXu]oV}\\}S_^cVei@}j@wtAq|CgiJk`Bu|E{FcR}s@quBaZqu@ec@}_Aci@keAwc@ss@ih@oy@co@uz@mk@{n@g@i@ct@gu@yuAwfAugDatBkeD}fBy`D{gBq~@gh@kt@ab@{_DueBo_@gTuo@q_@ifBybAccBsdAm`BmjAc}@ys@{MoKqc@c_@_g@ib@qjB}eBwoAynAepAytAepAqzA_xAikBoeAyzA_lA_jB}tCirEmxAg{BsxB}gDyNcUsdAicBij@{_Aoc@e|@aNoZ}GyNmGmMuj@_tAyIaSao@{~AuUwl@ux@woBoaBi`E{k@mnAerBooDw_DcfFgyEorHi_Da`FmyAgjCub@{z@gw@oiBg`@udAcz@miC{y@}jCokBmdGy|CckJ_yB_xGqn@ceByWkp@oVuj@{Xwj@id@i|@oIwMgJcOc~Ac`CecDk|DiiB}zB{`@}e@krGs{H_g@}l@yiBkyBa{EkuFqfAunAktA}_B}jB{zBatD{nEut@u}@__DgwD{eAspAknBc`Ccc@{h@ogA_sAef@kk@{PuSq[a`@eP_R}Wo\\cUcYgDeEeMiOo`AiiA{b@og@kyAcmBiw@sqAkYai@aWeg@mQw`@aDeHqY_r@e[iy@kU}r@qS}p@_[wkAgOso@gM{k@}TslA}TwuA{dB{iL}n@okEio@kmEqfAenH}mA{mIsj@mwDek@kyD{PudAu^siBaYkjAyBcJoTkx@ok@ahB{]m}@of@yjA{R}a@at@oqA{Yie@st@}eAuuAomByNaSgLkPibJceMiS_YyWeb@oH{MiKeR}w@}~AwQka@if@ynA}e@qwAaTku@qZqiAuBiJCKmKce@eO}t@qFiWuGi^aK{l@wT_|A_w@usFiEu[mc@weDuB_Pm@oE{QymA{Naz@cJie@cGa[_Qax@qZ_lA}[wgA{`@ajAg[kz@eLuWoImRu`@u|@un@_jAsp@{fA}r@i_A{v@i}@maAigAiPwQ}dAqjA}iA{oAo{AaaB_jEc|E_hAqkAm]_`@aj@cm@_fDwrDoYq]qY_\\ynAarAkrA_yAijBisBqgEyxEqTcVo`BogBagAelAiIyIcI}Ick@yn@ma@mc@mg@of@ga@{]cLsI{ViRsc@gZgd@qWef@qWgc@qQoc@qO_f@yOcg@_M_i@yJgf@yG_g@iFqg@sBmi@sByg@Pie@~@iOt@yS`B}Nn@mThCcQ`BaTtDwl@nKaTtE__@nK_NxEiZfK_SvHyWfLw\\nOa|CzwAmShKqO~HkcCxnAc{DlkBieC~mAwXbOc_@jPyjAhg@sv@hYuy@xSmf@xJmnA|LolAjDesAqBia@oC}|@sKovE}dAeyAe]_`@_Jy_@_Joq@cQex@{QkXsG_q@gPkl@sNeu@eQudAmVy_@cJuu@oQkoEyeAk{HeiB{b@aKeg@eNqHiB_OoDaNuDaOgFqJ_EkKcFgKmGeIiFeJuHcLmKkI_JeKuLyG_JwJaOsIoOyIyPmHmPeJsUeIaV_HwWwGaYiFoXmEiXgFw]kMo~@id@oaDeVmhBcLkw@{Es\\kpAu~IaDkVcTk`B}t@}iFgrBywN}wF_aa@a]mdCwP}mAiYwtBoZwxBeRouAuAyKyFcg@oFgg@mBiTuEum@gFa~@oC}u@uBaeAw@eoAXebBdAceEh@{kFfAonDKsnBXwpC`Cg|HXs~Dh@uzBd@ovAFg\\^ikB??Pol@b@mo@VoTz@k]vBsm@vDmw@pCad@nCe\\rIkz@rIkl@|Wa}AhUwjA~i@gyCb\\weBjTwjAzb@u|B~ByL~_@ktBbRucAzNyiAtFko@rF_~@rC__Az@}j@DwfAq@ad@wAg`@gEav@cEqe@g@wFqIou@uGqd@qD{Sy@}EsNmq@_R}u@kf@{lBwCcNmHg]kK}r@_Iik@gGcp@cGm~@yByu@{Aco@Tir@`BgaAxHeeDtG{oEzBafCpCanDd@i^~Eo~D|JebKvEqbAvDiv@pD}g@h@wHdEme@fPexApEye@lB_]fAk]^o]Io]o@m]yAe]aCy\\gDi\\mEu[eFmYgGuXgHwWeIuVaJsUoI_RuJwQqIeN_JiMmHcJwJoKoIaIqO}LmUgOkQiKyr@w`@iT_MeZ{PcuAmw@_vBylAcxAqx@q`A{h@mpDmsBsUmOk[qQwkBceAuQ{K_Q}LuQ_NwOcOuPuPyn@sp@g]m^yiAonA{T{UkaD_hDwrAywAmYqZa~BwdCov@iy@sW{YuNiRmOmTaNmTaMoTyMcWwLqVsKoWoKqXeLm\\}IaYwIkZuHwZ}Hw]iHa^}Hoa@oNus@iU}lAyMur@qHi`@_p@ygDke@mgCec@{}BuE_Vg{@}nEsOqy@_jAecGw[o{AyRms@g]ucAwYys@q\\aq@o[{h@y]}f@c\\y`@o\\s\\yn@{h@}y@}f@_e@mSuj@{Ow_@eJ_f@mG}j@{Bc_FpDanBP}eBtCwbBbAiyKvGk^_Bk`@qGc[oJa\\wKea@iV_IkF_SoPoYeXiZi^eTk]}fAewBax@s|Ae[mj@gXa_@_N{ReMuMwLeLsFuD{J{Hc]iV}UyIaScHmPmFmj@qKq\\aEiW}AqyG~Guc@r@mwBhAsRJuPQgUa@wMy@wM}@gGg@a\\yEkNkDoL{DoFsB_b@wPoU{Kan@c]wk@{[ef@qX}tCi_Bm\\iT{d@}VuCcBoVmQ{PoOsOkPeOiQePiTmNeTsNiVwLsVmLeXkMkZcJuW{G_UyGaV{GyYoGiZ{Fm[cIse@}rBm|MsPohAg}@ccGeFc]aKsm@eHu^oHq]cHyY{H{ZyHkZmIgXcK{ZyJyYkL_\\mMk[mLuWkMeWcN}UwH{MuEgImAwBaOsW{PeU{NmSuPmTuT_X{TgXkp@wt@kbAqkA}rAm}AkOaQ}rAm}AkmDidEijCw}C}Wo[eCwCe]y`@iQgQqLiLyLkJoOgJiQyJsQgJ_SeI}RsGiT{DgRkDkOeBcLc@iOa@oQKkLTqPl@uh@fHoZ`EiN|AoGt@g@Dw]tEmOrBaGr@}PtBo]~G}^hF_C\\m}@vL_`Evi@yTvCw\\fEuGxAeKpCoVbMwOxLaKfJsJdLwN|R}Qr[oIbS{LvU{G|M{G|LmMrScNfQcPtOeHnFgHxEkIlE}GpCcLzD{MvCeMxA}Kl@qIEyMu@wd@_G}u@eMaeA_Pkt@gLe^mFg[iF}Ci@wHoAyZ{Ea[kGkSiFyPuHcXeOmQwMwM}L}IiJyLwNgG{H}FwHus@uaAmW{]}Xu_@yWq^oWe^kZ{a@oWe^sZcb@kVy\\wg@ur@_VyZgJiMwbBu|BmrCiyD}sCg{DmsCizDg~B{_DypBwnCyP}U_bDwlEkuBytCsm@az@a{CkdEkUg[}gDutEk`@yi@ioA_dBut@meA_Yw]a|AqtBmO}SkfAsyAmf@wp@qz@yhAwf@op@kgEsaFchGsiHe|@adAso@uw@{l@qv@kfEy{FaKqMk{Bc}CscAovA{CkEi}@_mAcF}Gm|AauBcdAsvAygAc{AgYi`@{MuQkIcPct@sdAs|A}|Bka@uk@iX{^yNuSiHuKuDuGuEmJyCuGoBsFkC{HqBqHkBqIyAeIyAuJkAmI}@yJ_AkLi@mLg@_NKkC[cJm@c`@YgQ_Amp@s@qVaA{UsB_`@iB}OcCeQqDmQ_EePmCeJmDuJqGmNoLiN_GqFeGqCsDsA_Hs@iE@qEZ}Ex@iEpAaEfAmD|@mFdAaEZaEAwC?iD_@eF{AqG}BgFoCcs@w~@uFeG{IyIyJwIcJwG}F{CsGgCuF}AuGwA}Fo@eJgA{VIqVq@gOkAiPkCuJgCiLiF}PiJouBmoAku@cb@yHoEqs@wa@iL{EmNmFwQgDoRcDsd@oHc_@aEyi@yCwg@j@}NjB_XhFwUnIsVtOsLtK{NzPkXdc@mMrQwLvNgFhFoJdHwPZoVlIwPtFaMjDmL~Fk@P{C`A]iNiAqc@g@iRkAuP}E{Y_Byr@WiKGwCGaCUmIO}IG{BeAee@_A}`@_A{a@mDo{Ag@gQWaJEwA\\}JkBks@G}BgAg[MuFOgGM}FGmCmGylCm@{^QoHGmCQ{GgA_[OiHEeBwC_nAi@yZuAet@SkRCeCKqKdAkJlBcIZyAfAaFlEgS`AmElLuh@r@_DlA}FpMym@RcAhAcFjAuFViA|TmdAfGcYlBiJf@gCjDwOvG}ZhDyO|GaZ|@}DlDuOlDgORoAV{ApBeIzBmKjCcMd@uBfAcFlDiPfDmOl@oCpAkGhLoi@lFyVtHk^z@cEnG}YdA{E^cBdEiRdBkIx@{DnDoPjGuXdCwKbH}[vCmNfGgXrIo`@nB}I`AkEnD}OzIq`@`Job@bAsEf@wBbAsEhA{EfA_Fd@wB`B_ItN{q@fAiFrIw`@hCoLlAyFx@cG`AcHlBsQpBuTbAsMrDce@jBeSxAwOlBwNxB{MrAkHpCqN`@uBp@{CvBeGBCz@}@fAmA~@o@lAc@bCM|BL`CnCxBpBhC|AhCh@rB@lBMtAS~Bo@lBaAvBiBlBqBdB_C|AkCjAqCnA_EfAyEj@mDZiDRcFFuE?aFIgGYiEi@}FqAiI{AqG}A_Fs@oAsAmBcBiBaCuBwDcHw@yAqAaDeByFCGa@oAa@mBg@sCUwCcKeqDMuFUqIOcGg@kQK_EoDasAcDmoAQsHC_BI{BSkIg@kRaBko@CiASoHGwBGiCEcBEyAKoDCiAS}Ga@iOmG_}BeAg_@{Aoj@IeCGeCEyAOkFGoBI_CAaAm@_TQgGYaMwC{`AG{BOcFSmHSwFOqDAeABgc@yLm_EaCaYQiGwH}jCkEq~AkCcaAoBgp@a@oNG_CIcDCqD@eF^aF|@yEdAcFbD{L`CeDrB_EbBwEpAkF\\{B^}Bh@eGRwGAyG[kI[_CQwAeAaGq@oC{@gC_A_CeAuBkAmBqAcBuAwAyAkAcGsNwCeIsAaFsAuHIy@UoCuIcfDcIq}CwGcfCgAeb@gA{a@EoAqN}oF_GwyBsHauCIuCiAub@e@uSGgCGqBAa@UaKSmII_CCwAwCagA_Bul@yP}tGIgDIyCCu@EsBbCs@XI|AkAbAsAXa@|@_BbAmC~@eEpByH`BqDx@_BhAwAfAs@fAa@hBUhBA~GR~h@zD`GNHcF@iC@oEGeCYsJyAgi@o@oUq@mMgBmQk@eFu@{GW}BWyBiCuTSkBOmA}@kI{Fkg@_AiIKaAGa@gAqJo@oJEmAA]s@mWWqJqBwr@MwEIkCqBmz@AUEqBGyBO}EC{@gCqaAKcDOuFCu@_@mMWiJE_BsDirAeAg_@uA}f@IaEEaBMiFSoJEmBO}HmCusACw@IoEWiJCu@m@_TcCw{@CeAu@{X~NoAl\\_DvHs@~CYvHq@hSiBvSiBpu@{Gdw@cHgD{tAcEcdBxu@{HbZwBVCjMgAZfNpAvk@XdKbCffALfHNbIFpCb@`Rb@fPdB`l@r@nJ~@fGpAjFpAlFx@xFPtB|CfINvGFlCzAbn@h@xTXfLLvF@FD`CBfATbJXnLF~BLbFx@p\\|B|`A\\tNHtCFfCTzJVvJDnBfB`w@x@~\\x@|\\Z`Nl@nXRfJF`CVlJ^hNHtCZnLNvFRpH`Ar`@PrHhCjiAj@vTFxBZxLh@~TvB|y@PrE?Dp@~MJdC`@`Ox@xZX`Mb@`Q?LC|U?nBAjBE|ACrB@|Af@dS@hAAfAIzG@tL@dEDpD~Bll@`GheBHnBFvBhEjoAfAl]DbBLfDTdHVbJ\\xKNzGj@~LZtEf@xE|@bFr@pC^hAf@zAnAdDvHpRfDpIjCnG`AlCdCvFpAxBjA`BhBtBpBbBzAdAxBjAhAl@bf@fUhFfClD`BzCtAjEx@pCv@lA`@|DhAbg@xTj@Vl@VbDrAxDjB|CzA|E`DvAv@nBv@xChA|EfBbElBxHvElHlF`CnBj@d@|H~G~GxG`KzKtC~CbErEdIhJhBxBrB~BlIpInAhAdGrF~JpFtGtERPzDdDpHjGbBvAtC`Cx@v@~E~DpCbCh@h@~@v@zBjBlTvQPR\\^rKrI`Ax@~QrOxL~JtJdIvJhIhGfFbAz@nR|Oz@r@lDvCpCxBv@r@ji@lc@nEjDhA|@tA`AvBlAxDhAv@VzC|@hA\\lF~AxC|@nNdEnA^rCz@dAZvKbDx@VdEt@bEt@fKvC~LjEbAf@|B|@tCrAlC|@lDlApC~@nEzAlA`@hA\\zGxBhFdBvQdGpo@fTjChCnClBz@V`FrAvDb@b@?~G{A`@@ho@xBd@@xAF`BbCbBZlARbBXh@JfAPxAPtBLpJ\\zB@|A?n@AZ?xJEr@AjIChAg@l@Yp@FhBH~_@~AzPr@zETji@pBd_@vAhGR~DRhBJ~@FrAPvA\\pClAfDhBPJfBjFdDvCpCdChDxC~@z@`CtBjFtEz@v@bDvCh@d@bw@~q@xS|Qz@t@`Ax@jAdApBdBbL`KdCxBxArA^XVTxAnA`@\\dYtVrH~Gl[fWzUlShAdAhE~DzEnEd@b@zEfCnFfCbEnD|DbE|BhD`DtFbC~Fr@fBdClG~C|Hf@rAfKdXhKrXdBvEfD|Ih@zAfPbd@~DxKvDpKlHlS~C~In@bBdBpEhG~OlAbD\\|@zNn_@`LrYhCfHbN~]jIhU`@fA|NlXxEdHt@hAt@hAtCnEdHjKfG`KV`@|F~IZd@vNxVt@lA|AlC|GjK`BtB|BtCx@lA~@lA|AnB`EhF`BpB|@fAb@j@hJdMf|@~nAzAxBjAdBzf@vs@rDnFBDhHjKr@fA|AdCzDjGtIvM^l@xAdCfXrd@j@~@|CpEiAtK_ArJ{@rLcBfWqCvd@gApQyC|y@M~Ft@`UlAb_@lEbaAfDh~@n@xNVhGzA~XfHvj@pCdj@rC|e@vFhx@zJfvArApZbBf`@z@x\\Lvw@X`zCOv_FGve@[`gAMrb@k@dh@SdQ{@p^]rMmAnY{Dxq@_BfSaE~e@kF`i@uGjf@aMzt@mGr\\cI~]yYbcAoC|IyVbs@oW~m@yLfWyU|`@aSj]eJ~NoSx^sItRmG|U{FfWwHp]wInc@cKpa@wEnPCHsGhR{GzPeJpPgRxXgWb]{g@bq@km@lw@y`AbzAuHzMse@|s@yn@j_AqgBdnC}a@zn@s]jj@eY|h@ud@f}@u|@bkBsi@tgAuQld@yF|RsFrSeFl[sApNcAlNq@dNc@fNm@ra@IvQ_@vRk@`TsApVsBlSkD~TkG~ZoD|L}F|P}Nf[iJhN_KbMkRdS}W~PmPtLiRxLyKrJiKfJ_IlIoNhRmApA}U`[mWdXyNhM{LlJuQtNk[hWcK~HoHd@kI|@eLvA_Iv@mHZiMf@kFv@gIpAiF|BiEvBiDzBiErDsE`IeEnHuCpF{BxF{ClJmCxJyBhKcBfKiA~Jy@rIw@vJYnKF~Mp@pPbAfKhAtHfArHhBbHhCtHpHrOhJhNrY`_@v^nf@xBxCvLlP~g@|r@nJbNpu@vfA`OjUrVd]~v@bhA`q@|_A|xAnpBlg@rq@~nCfsDf`D|jExC`Enc@tm@z_@ph@nUj[xdBp_CvJxMlcChgDlfBl`CdB~Bre@jl@j`@ld@tp@dw@zyHhbJvtAb`B|f@rn@ry@|dAnh@ts@p|@dmAvcAluAfQ|UdqAzfBp\\dg@jkAd}AnaBp{B~dDdqEdT~Y|~C|hEheAdxAbr@j|@`i@fw@n_DziEnOfTrtBpsCz{Bn|CrkCzpDhxCt`EbShXh_CfaDheB|_ChJbMl`A`rAhcCxeDdf@lp@fT|Y~MtQhp@b}@hPjS~KvLfHzH`HxF`QbNnNnI~PlIbHnD|IbDbV`G`JnBfKjBn`@`GhDr@h`@jGzpAvRp}Bt^|d@hGbN~@xJQ|Ms@|D]jFm@tE_AxGwAhDkA`E{AnIyDxKyFxF_EzHcGrOmOdMaPzQgYbJoOjWah@lIyOlKcQpNySjJwKlJwIfFcDbKqJjIoEzHiDfM_EdGwApXsEhjDme@hj@oHf}@sLr[iDja@gFhUuC~F}@bp@_IlIiAxiAyNjFq@vHg@hEYbLUnN?zZ`At_@lEhRjDnXhIfWdK`_@jStNxJ`NxJhQvQtPtPdYx\\vkDlaEpnDxgEplA|uAzNfQbHjIbb@vf@|f@fl@bbAxkAjp@vt@zTrXdUdYfUhZjOlSjMdQvKzQxNxV|OhZxOh[rLlU`Nn\\nI`VbJdXlIdXzG~TbIvXxHzYnI|[zFjZnGhZtNpz@fxAzoJpuBfkNnJpf@zFjZnGvXxJt_@nItWvJxYlJtWbL`VnIfQlIdPvKvQlLfQxJnMlK`O~OxQxKfJjLzKdTjN~OtK|YtPzf@xXti@d[xaEd~BfSzLtQnIzTnKvPvHvNnFjNlElKjDjQzCvSrDnJbAzJl@|a@|BtR?zfBmB`f@i@hd@Cz_@MfDA|v@{@`s@s@phAi@pe@Qno@HzQnA~QfBjMfCtRnF~NlEvHzCxCjAxClAxMzGxIxEdCpAdOrJpVnS|LtK`\\j_@dWz^bNnTvNrWr_CvuE`Tz[nYr]fWjVjW~SfH|Erb@~Vt[jL`c@dLr_@lF`[fAnyDgC||ByAf_BiAxkBqAjnLgItk@hCja@~Ehd@vKpe@hNbc@pSpz@vf@zp@hj@z\\z^b^nc@|Ytb@vYne@dZfo@v[nv@rZf~@xRbs@d[rzA`kAtcGlOrx@hz@rnElEtUxm@``Dvh@loCnl@b~CfNft@jUlmAlN~s@rPzz@~@~DrHd]rIv\\pIfZtNbe@xGtPdL~YfLzWbLrVlL~T`NbWbN|S`OxRtO|Sn_@lb@`eBjjBtoAzsAnYb[ppAjtAf|CrcD|TvUxiAfmA|]|^hz@h|@tShRvO~MhQ|LtqBnkAl\\vR`W`NrO~IhlDxqBxbApk@xuBhkAxcCvuAhUdNdSbNnNzKhKdJvJpJrIfJhKzLdJvLvGlJfJpNnKvQ~L~UbMpXvLtZ`IjUpGrSxGdVxHn[nGpZtFd[zFh`@|Ela@|Cr\\`Cn\\fBt\\lAj\\|@~d@n@jq@\\pcAJfbApAroBY|WiAd`AeJdlIaGzpEk@z_@kE`bEsJ~vIqFnlCoBnxARpp@bAtr@pCbp@vDbl@dEjf@vHjt@~Fv`@fKbi@xGr\\nKvc@xa@z|AxMhl@nMhq@xEpZtJnt@pG~i@pDbg@v@nNv@bXzBds@x@dy@?xy@qAra@wBxo@_@bGcDtg@gIf|@sClUsFfd@gOr`AiVvsAgJdg@aCpMsKdl@cLpn@w{Ar`Iwh@loC}`@f}BgKnw@aIlp@gH|{@}G`cA}DzeAcBhy@QvJ{@~w@?bOZxo@?NbAn{@hCp_BnDhbCx@tvBM`kIm@phCw@~zCgAtvGGxz@Y|wDc@hrBdAdeC~Bv_AhD`|@pFzy@|IxaA`Grl@pDzX|AhLlI`m@|ZtzBnmBvcNte@djDjQfpAr^jiCte@hhDhMx}@rhA~aIpdA~mHlE`[ttAtvJdfA~wHzcBhzLjQbpAfPjiAzOj|@|CrRfFfZtAhG~GzZhHbUfIxVzIpUbInQhJ~QvItNpFdIlC|DvGvI`KxLjJvJ`LrK~J~H~IjGbKjG~KxF~JhElO`FrGxB~N`EpzA|]fp@nOh`@dJllBtc@dbFblAfh@~LfQnDpLtCvUxF`aEraAntA|[z~Bfk@|NvC`K~Bdv@hQjc@bKr[pHjz@vRvjDtx@h^dGpo@nIxKvA`b@rCd^z@B?zg@lAxFLrn@y@xj@yCtdAkLlWgEfOyCbV{EvfAwZtMkEdj@iUhmAik@zX}NzdA}g@z}@{c@j[mOlFiChnC}qAh{Ce|AvQeJvDgBdCkAjwCouAhOgHfNgGhPkHrRmHnWwJfSuG|^kJlYkH`W}EfS{D~ScChNmB|WqBbm@}C~e@kAjR@|S@li@r@bg@hDzf@rE|e@jGvh@jKbd@lKtf@hPtf@bRzh@lTxc@jW|c@xVbT`OjPdL|b@z\\ta@h^p[~Yna@~b@b`@vd@bW`YbIbJjn@tq@dj@hm@fp@vs@jX|ZhUrVpHhIhsAryA`}A`dBpt@|y@z_@bb@bl@bo@xo@|r@bk@xo@pk@do@fYz\\|X~Zhu@zy@fNnNjwAp}A`g@bh@th@`l@xb@ve@hr@rt@rpE|bFpeAzjAx`C`mC`xBn_CrIvJ~i@rn@lx@rgApXnc@|Sr]|h@hbAdO|[nj@jpAz_@hdAd[~_AlZ~dAvZvkAlPnw@lRpaApNlw@vm@flErM|~@lEv[~Jvs@nj@t~DnUn}AlGva@bIjd@`Jpd@|Mtp@lPxs@bYtfAtRzp@dh@h|Adb@xfAbb@`~@|o@znAzJ~PxJ~P|R|Zxv@|iAnaIhwK`\\jd@dtApjB~r@jdArZlf@rr@fpA~Upg@rf@liAj^p`AnMt_@h\\tfAlCvI`j@vyBzc@n{BzXtfBnd@v~Cxd@p~CpnAtqIjb@ztC@D~a@rsCrCtRzj@dzDdn@hmEnvAzmJ@HxPtiAzPteAtUnkA`Oxr@pLbd@bh@pjBvMhb@bZz{@rZdx@`n@|uAbVnf@|z@j{AzXtb@t^rg@rkAxvAnjAzxAbMpO|e@lk@xJvKnSbUz_@fg@ps@b{@z`AjiA|h@zo@riBh{Bf~Er_Gt`G|iH|p@~v@lnDveEntEjjF|cCt{Cf]l_@xsG|~H`tB~cCz{D`{ElVj\\xg@|r@hn@h_A~ItOhEfHnYph@x]tt@fYdo@xf@tlAhb@~iAx{@xhCpz@hjCjDxKvtCt~I|rB`mGjz@|lCry@`gC~`@fgA~u@dhBpUhe@fRr_@zaAp`BnMdT``D|gFptExnHdoAhrBfoAbqBz{AxhCdd@zz@h`@|{@bxAlkDd~AzxDze@hlAz\\h{@pXxq@nNp[fHhOhQt]rXnh@`Vzc@~\\~k@~cApbBxNdU|wBfiD|sApvBhuCfoElkAfgBrkA|dBzqA|bBboAxyArpAnuAxpAxpAfyChqCfc@l^vMzKboAp`A|lA~z@dfBjgA~iBffApk@p[p_@`TxuErjC``FzrCrhDthBhbDznBfrApeAfpAloAr@r@l_A`kAdk@r|@fYte@~j@tfAhk@xnApmAbhDfGhR|t@~zBbi@paBp^xhA`~Bn}GtQvh@nWnm@vGpOnRn_@dWra@x`@rh@d`@xb@b_@|]laB|wAft@dn@z[vY`\\d\\tOpQtNvRdOfThNbSvNlWrPd[`\\ls@rP`d@bKn\\hFzOpEtPnV|cAnMhr@lL|s@tJ`r@p_@~pC~Mnx@pJfi@fHtZdIl[l@`CfKr\\jK`\\zPrd@xMx\\nS|c@tRj`@`QpZv\\rh@|X~^x\\z_@jsCdzCvWd\\zW`]fVz^bVfa@dVdc@jW`i@bYvp@re@toAfk@jlB~Nne@hGpStg@fbB|Mnc@jx@jjCpUtv@zpA~eEpe@l|ArTvu@jKz^hHnUlFjOj[xaAnm@tpBxHxVff@f~Atr@~rBvt@riBnz@`bBn~@x{AjeAxtAdo@zv@h_AvhAnjBb{BpcB|qBrl@ls@jp@xz@le@~n@v_@li@xhAjbBnmAbrBld@fv@paBzpCriAtkBzs@foA~bAbbBvmA|tBdPlXlMlT|HvMd_Az~Al}@dzA|Ux`@`g@h|@jPl[vhAvyBlh@~lAh}@~aC~b@nsA|a@btAfb@~_BvaBzuGjo@biCb{@riDbc@ndB|X~hA~aAf|Ddo@biCt`@b~Ad]dvAzj@hgClWzmArk@`|Clq@j_E~r@vcEzw@rxEhn@hrDtEjY~[`lBbb@bcCtYbwAtJpc@tJr_@h[lmAfMh`@nG|RRl@f[t~@py@r~Bz{@ldCzDbL~IbW|h@~{AjaAnoCbd@hqA`W~r@~aAlsCpJtXnLh[~Zhx@~HtQbP``@jF|Ld]|o@~\\`o@t_@zm@b]bh@tm@ty@lYx\\bYd[zYdZ~[bZh]`[b`@|Yhg@n]~W~O|eAxh@xlA|c@`qEbvAl_G`mBzBt@jgFr~AhuCh|@`|El~AlsG~cCzfCry@jVvHptGbsB|aBlk@dw@~Zbx@vb@rZjQp[`Utp@xg@zl@ri@h_@b`@dOrP|MrOzYn^f^vf@b_@`j@v\\|i@zZzj@|\\hq@hW|j@~Vdn@hpC|dHhfIjwS|R`g@fa@z`AjPd^xVzf@zPd\\xWje@pPhX|Y`d@lj@xu@`Yz]~Z|\\f^n_@`_@f]nz@fs@be@d`@hkAlaAvmAbcA|}ClhC~dAp{@|cAjz@zuAtjAtsBtdBbGvExj@bd@pXbUzOdM`T~PrmAhcAppBhcBnPlMh`Anv@h|Ep~D~SdQbmAnjAno@dt@n`@ze@lf@vo@pd@~q@pu@joAfs@zrAzFlMlV|i@fOv\\hP|a@d]v{@hRvi@|Rpm@tPth@~Mvh@jMxf@bQto@zPvr@pLbg@nm@bnCj\\dzArX~lAzHx]dEpQdD`OhDnOzC|LvYzhAhJx]t`AfkDvl@xnBzj@|dBv}@xnCdq@~tB~Xn}@~HdWdQdm@fwBptGjjB~vF|`@|hAb^xdAz[v_Ajk@|dBjC|Hpu@r}BfZ`z@xZ`x@fj@vpArNrZxOp\\`Q|[nRf^~Rz]jNnV`d@rr@pZlc@zYba@x^`e@``@pc@|\\`_@jVzVbn@|j@~]xZvInGbWrQ`DrCll@xa@pb@rWfVjMhn@b_@fx@f`@~yAzu@|wApt@tx@fb@~y@pb@lZnOxSjLhp@x]~Az@~jAbl@nv@ha@j\\|Rp\\`Tt^tWnb@t\\vi@zf@rVfVpOdO`sFpsF|N|N`j@|i@bcA~bA`}@h}@teAfeApPbQ|KzKxe@zg@hSdSh]d]jIlH~~@h_A|NzNvbB`bBhq@rq@pp@rr@di@|n@zf@lq@vh@ly@lRv[jQ`\\lR~_@nJbRzkClhF~`@pw@pjCbgFtp@rpAl`@`q@tWna@`^dh@h]pd@x\\fa@|OzQtRvRnv@vs@t{@ts@bjBrxA~vEjsDleClnB|SxPvPlNtaBnqA`dAnw@pkA`{@t`Azi@|FdDjVdMvJbF`eBt{@`~@|d@ptAdw@dg@x]fc@v[be@nb@hc@zb@pXfZv]ta@zm@nz@|c@jp@zc@~w@tJ`Qfb@|z@~jClcGbrJnuTtSnf@zxAzdDpx@|kBl}@vjBho@pgAno@n_Ap|@tfAviArjAty@~p@pxAnfA~_FdnDx}C|zBxaAbs@xp@jg@nv@~i@`LnHf|@po@xW~QjpAd}@|KxH~mAxz@v}AbdAz^hTj|An}@~g@xXvS~KrMpGvn@vZrq@pZfr@~Xpp@lVzp@dUfcA|ZfdAjXzjBt`@`iAjQdr@bJ~eCdXbyCr\\~hBrRtSxBz_CrWfR`Dry@bIju@dIp_A`KdUdCr{BrVbWvC`pBxTfbAlLfxDnc@t{AtOdo@vHlzAjO|MrAbc@xE|oAjN|jRntBzOhBrHj@j[`DhoNx}AdPjB|qRnuBhiPnhBdQjB|zBbWpyRxuBd^~DrsDtc@zcBnSb}Cn[xTnCneCn]j}B~`@rWhFvbBt]jxBdh@zp@xPv}@nU~aAtXr|@jWr_Bre@bZlJvMjE`}@~WpKhDdUpHbM|D~{A`e@hPbF~jBjk@`fCvw@nGrBx|Bfp@v\\|KdfBvi@||G`vBbAZdjGfnBxV|Hx{A~d@xf@tPfIbCltAla@|HbChPbFtWdI|tAzb@bJrClyA`d@rcAf[lJtCl\\nJtWlGpRpEfd@lI`p@lJ~LdAvi@|Dh^tAlPP|YZfc@e@da@{A|s@gFve@qG|k@sJtq@aQzTyFrbF_bBnYwJx`EstAlk@qRrmGavB`gBwl@f[wIt_@aKpe@{JfZiFx^iFj[qC`\\mB|[qAha@c@|^Rh_@x@fi@hDp]bD`a@|E~h@jIjo@vLz}Chl@ri@bKtwAfX|S~D`gCve@dJdBddAvQp~@hQjj@dJfl@rHxw@lGh]rBza@[nc@Nrg@yCzl@gEfu@kKdg@sKf\\gHthAkYtsDobArnAc]`o@aPdpBii@r_@eKvg@eNpoAa]r{C_z@bRaFd{Bun@bHkB|kCqr@xcEagA`tAe[v`@eJ|hBwY`nBkLpSUjkDuDfiBsAxtAeAfnAaA~rB_Bn|A_Cf{@sCd}@yDv`@sEp^{Dz}@wJdkBiYdhBe[|AYrdEus@zlA}S`sAgUfMkCpqDin@zs@aMxuDwo@di@uJv`@iHzcA_Rza@mJxNeDnf@eO|\\gMv[sMnRwIp@YfYoOhc@_WzbCk_BlYkSdPiK`QqLpaA{p@h|@ml@pQyLhlBupAjQwLfbCm~A|s@_c@tw@_`@zQ_JrbA}`@b}@mYf_AyVnv@wOfFeAn`AsNrfEii@vEm@jkEwi@~bAuM|JsAzmAuKzb@yB~o@qDr^e@tSOlC@jd@JbSf@tv@dBjb@~BnW~Bpq@rHdy@vLvr@jN`GjAn|Aza@xsAng@tgA|g@loChpApK`F~qBnaAdaFtaCbFfCf]jPvjEdtBfz@~`@ltCxtAthAhi@nb@rSfFdCf~@vc@hDbBvUfL``Bhw@rjAlj@tN`H~KlFbb@fSrUjLt`Bnw@v{@xb@~EzBlKdFrwAnq@nXtM~Q|IbqAxn@lYhNjEtBbP|H`dA`g@ra@~Qxa@~Rp{Abt@r^fQpt@|]tw@t_@tk@vXt]tPnB~@vlAvk@baBnw@`SpJtsCptAbeDt~ArvAjq@|E~BprAlo@tb@pStWhMflBn~@flBl~@puAlo@|y@r`@|L|Fzl@fXfRnH~YrK|s@hT~a@xIdCh@la@dIbg@nGhLvAx\\|Bvj@`Cfz@h@bs@wAjn@sDf_@gE`LoA~b@yGna@yI`PsDdrDax@fx@mQpxB}f@b}Ag]lMuCz^{HddBq`@hfBg`@v[_Hvl@mMjmCmm@b{Ao\\xfA}U|ZgHnaBq^jgAqVl]{H`OgDtpCkn@rr@mM~_@uEzV{Cls@cFdv@aB`kApApr@tFzDXlW`DfsA~MrgDd_@prBvUhJbAtv@lIbHr@`xAlQhPjBvVtCtf@`Frr@tGl|AlQdYhDtY~E`YvF~TpEpz@~U|`Ab_@f|@nc@po@p`@jTxM`UdNrY`QxJfGfcAnn@|ChBfnAdv@pMbItcAzn@lgDbtBlW`Pt~B|wAnhAzq@jw@~e@~U|NfmAlz@piAv_AnVxSjh@|c@t|@`v@dShQzdClxBrO`NjJfItCfChwAnnAbWxSdGpF~JtIpqB`fBx`CxsBlcCfuBxd@v`@hpD|}CvHvGhrFdxEzoCh`CtXjVll@lj@lNzLnKjKnoB~mBjpBbhCvhBb`CtmBziCzOdTnpDfuEfW|\\fdAjtAhY`_@rPfUpBdCnCfDj~@nmAjWb]~MjQtl@|v@jUr[`a@nl@v^hl@b`@`r@nk@pcADFfnA`|Bjr@doAf^rn@fd@ly@np@xlA|c@lx@|sBlvDjDjG`b@`r@tu@lfA`JjLnRtXbxAfoBdDnEp`AbqAxp@b_Ahr@hjAl`@`u@vJxSxTne@zbAzvBb}A`gDvE`Kn{@rkBz}B|`FtmC`}FnThe@rRbb@jwBzuEbgA``CxT|e@v}AdgDzmAdlCbq@rxArNd[dkAvfCvGrNfy@|`Bv`AfdBpPlXv^|l@fe@ds@zDtFlc@|n@th@|q@vTfZha@df@dk@|o@`i@~j@lUvUzJ`KxkDziD`b@za@xW|Vzf@pe@fj@~h@tZjZn~B`~B|~Bn~BlZhZnoA~lA~Zd[~dBzcBzS`Tl[jZb[r[jXbXrNpNvhEdgEzRlQ~KnKrYpX|dBxcBllAvlAbO`OjOhOZ\\pUbVtErEdOzNtgErcE`~CzzCrdAldArmCdmCzvAnaBnNzQ`Yv^lgBp_CrPtTfqAddBhZp`@bUzZ~JrMfy@hfA`Vl[rLlO~d@jn@tZla@dmDhxE`Zh_@zY`_@f|@xbAfu@dt@ziArfAjYrSrg@x^~z@tl@jBbAz~Az`Alt@vc@t_Ank@ryChiB`t@lc@beEfgCbNpInHpEx]bTl~D`bCnMzHpZxQf`Alk@|sAvy@~nAfv@fRhLjMzH|h@|[pQxKdKlGtpD~xBvKvGzv@he@l_@|TlV|PthAhw@tYxSzX|U`PbNbwBniBl~ApsA`]lYn[bXxDbDjgEloDd|F~}EbsF|uE~xBpjB~DhD|rBteBnu@ho@`P`NpGrF~`DxmC`hH|dGh`E|gD|qCj_Cd_B|rAxfDjqCxUfSlv@|o@niDfuC`{@dp@bUtOrs@vf@hsBjfAt|@n_@bUrHpy@pXtfApYhx@bNdaAdQlUlBty@`Hv}@rEj\\JrcAfAnr@O~tAYbL@~vAHvVL|EFxJBngARzuGnAfoATnk@XxcCl@lJ@hlBl@~F@vrB^jj@N`D@jo@Trh@NdJBtj@R~c@Jhq@Ltb@Hvg@VzlARjp@TzRHpfBh@jcC|@nIEd}Bl@|kARdIDz_EdAr~AZr~Ar@dfBbGdZhBhhApJ~gArNv`AlPna@lINB~a@hJ`lAl[ze@lOre@xOnPxF|v@|Znu@f]rh@jVbpDhpBnGpDzg@tYvnArq@faBx}@z_@~SpDpBfE~Bj`Bl_AhvAh{@`}@rf@jTvLd~Av{@tNhHx]bRpQdIjb@dQ`f@~O|HvBt_@nK`n@lLhm@tHlh@|EbhBnGtRp@tvA|Dbv@dDnUv@~c@xAj^lArS|@tER`[tAdIp@pT~Apn@pHrjAfU|c@lMhdA`a@~K~FjnEb|BfFlC`Y~Nfk@`ZnmFfpCtkAtk@fnE|~B~iA`m@fyDhnBze@dVlObIt{Arx@r]~QpqA`r@laDvcBlcAbi@laDvcBrk@tZ~OhItn@z]pBhA|~@nh@jvEfdCfsA`s@zgB`bAns@`_@`PlIv_@~R~fAjq@hsArdAxw@~x@dt@f|@xnAnhB|JpQ`~@zbBnhAjqCny@rlCrNhn@n]l|AzPz}@|Ft\\to@peEbeB~rKz\\ttBpyAfdJ|y@~hFxDjV|h@zbDnHrc@p{@fpFvKvn@p@hDnFpXzI|_@fNbh@tNxd@dNv_@hJzUfKnU|HvP`Pd[hTl_@nV~]lTlXpIlK~UvVfYjWdSzOtXzQf[~P`\\~Nfp@pUhE`Blf@pQdXjJzAh@dSnHb`Az\\zObGhc@vOzNbFnRvGfn@~Sxg@lSfN|GrHzDrYbQxYhTzMxKtVfVtTjVtYf_@bQjWxPfYvQl]rMdYbUhj@tLv]xJn[jk@`kBtI|Xd_@jnAdWvy@x_@lpA~FdRlEtNjG`S|z@bsCdJzYxG~S~ZjdAfStn@tHnT~HbS~H`StJxT~Q`_@nPlZfHpKfDtFlN|SfV`[zJpMxwApqA`pC|cBnoCdcBdb@zR~q@fTll@|KfIh@bb@zCng@q@bv@kGnyAqS|w@eLf`G{z@vMkBdSeDj`Dah@hpAyV|iGilArfHstAzbCae@zgAoNhCU|bA{IbrE_a@~aBaN`hBaM~h@kCt_BgMzVoBzMgAfNiApo@kF`RaBzb@_E|vAqL|NqAro@_GzxG}j@fjEk^r_@yCzQ}A|OcBtqCkYxhBiSvI_ArcBsQtk@gFv[mCnW_C|sA{Lrg@_EtdAqIx[kCrh@cFrZoCvd@eEvTnEb`AgCdKdC`HbBjRvCvKlD|JvDxLbGvNjJdKtHrLpLlMhPlJrNjJpPzIhSjHxQ~FrRzHtZ`GdZpFd_@vFfb@pJpy@zFf_@xAfVxE|v@dMxuBrL~qBhNdgChBzYzLp{BbClf@tChm@hN~|CxLxwC~IrdClGngBbDh~@zQjjFpDf_AbAfWdHtpBnE`pA`QjyEtApg@xCnw@zMj}ChChe@nG|}@pNfrAvK~{@`UrzAjFhZfUxeA~VjfAnKza@bnBfyH`p@`hCtp@xjCtKpe@tKdf@fHh]|Ff[zFl\\xFl\\hEjXhEfYdFn^hFta@xDb[bEp[~RldBpEv`@fFvc@|Gjl@bEh^jEt]xH|p@vFdi@nYzdCzl@fgFr^``D~CrWxm@lpFvL|lA~JtnAvBn[xC|g@bChl@zAdf@hAtj@f@jg@Tn{@g@fn@e@na@y@l`@{@vY_Bpd@sCzj@gDrh@eDrb@_Fnh@}F|i@mHhk@sIlk@yGra@}Hfb@eKlf@kLdg@kMtf@cKl^{Mhb@eNla@uOrb@mPjb@k`Ad~B_r@rbBev@fhBcIfS_]|y@if@hpAwXn_A}Mhf@uKvd@kNrp@}QrnAcMbjAwEzh@uEtv@gGtpAic@vxLeLpyCw@nUgUdbGsUzhGaIfwBqD``A{LxbDcObyD}@xXcBdd@s@fTqYhwH{HdqBed@nvLyUhhGeHbyBgDbhA}@pXe@`v@Et\\x@z_Af@pXRjKb@rP|Ax^z@rR~Dxr@tCj`@nLf{AlOrnBpDjc@`BdShF|q@zCn^hOxoBdGx_AhEnu@|C`r@|@bWxBni@dBpe@vArg@hApb@~BlwA\\zVXdZj@h`AZl|@Idu@[pq@m@reAsBtrAgDbkAcEdwAkEheAsG`kAiIpyAoK~rA_@`FmAxNoBjVkf@vbGyMxcB{Wz_DyVz{CaG`t@{KbtAgNdaBmO~gB{KruAcBbT{Qr~B{HnaAgChd@e@pI}En_A_AlZm@|Ye@n\\Q`c@^dg@XfSzAt`@TxEvJfrAdGlf@hGr`@xZvtAdSdm@tN|c@tPpb@lf@xeA`ObZ`CzEdDxGr_@~y@hfB~yDP`@~cA`|Bpu@z`BjPl_@na@v}@bJhTtIzSxKb[lI`W~Nhh@bKlb@tHn^rElVrEfXbErYvCrUpDp\\fDv_@|Etu@dCzm@bA`l@Trh@U|f@i@l_@kAp`@wBhg@yCvd@kEbi@aNlqAiI`u@{@hHaFtd@cI`t@_B|Nax@juH{mA~hLcnAnjLiNvqAmBnRgZtsCuPf_BsMpnAitAzoMui@vgFeItv@_Ih|@iL`xAsFngA{Arz@Qjp@?rf@Pjg@t@re@~@vc@`Cxr@jEd~@dHddAbHnv@~Gnn@~Kf{@tMdz@vVzqApEhTtp@txCnD`PjP`y@xMzw@pJbq@jIfp@zFvh@fEvc@nCz]`C|^~Bn`@|@dOlCrq@nBhm@lAxv@l@lx@I|w@cAt|@{BneA}FppAkGb_AmKpjAkEdb@}Fnd@yLty@iMtt@gPny@}YvkAqKjLaCvAcCfAkEf@gD]{CaA_CkAmCsCwBcDgDaG`BdJzCxKfB`JlAzL`@bJHfJUrHyAnZ_@nHeSpr@gb@~tAqChJgnBlsG{fA|rD}Mld@}~@v~Ckl@znB{sAxsEad@f|Asd@n_B}p@jdC}XxgAuZnoAoKte@uJhb@q]n`By\\tcBiK~j@{TpnAeg@x~Cw[bzBqC`Ss^bnCg_@vvCoFbb@iVzlB{MnaA}ClUuEb_@aKnr@{OlaAeJli@mIjg@iJdg@qJrf@yZjxA{Tx~@sMzg@{Mlg@g\\|gAcFrPgHzUuHjTwLr^u@pB}JpYsKjYyG|QaNj^e`@bdAqVxp@uWjq@uKrY}eAlrCuIpTob@`iAub@~hAeoAheDwiAfzCuQre@sj@|vAaKnVos@j~Ao\\np@k\\xm@{JbQ{Yhg@eb@pq@sHbLqe@|q@ae@jn@ue@vl@kb@bf@i]r_@g]d_@aJrJyIvJyA~AazBjaCyLpMg`A`dA{Yj[_HtHwj@bm@ccA`gAcd@tf@w|@f`AwlAtqA_l@to@ai@`o@kx@dfAul@l}@od@lt@{_@hq@cn@djAmm@riA}O`ZwGzL}[lm@a\\zm@g\\dm@yi@raA{CjFikBllD}EbJ_DfGgGxLcd@t|@{[zn@cObYmM`V{}@deBuPd\\wHxOeJjRaRbb@wRzf@oGrPoTbo@aWn{@oXdiAuPvx@{Hhd@qHfe@sEv[uR`|AsLjcAov@~yGwArNeBfPoAtNiC|ZwBxZuEly@kCnp@uC~uA_@dt@En^Rhd@p@~t@~FdjEtFj{DtApoA`Cz|AbB~oAhBr`BDrTDdG?jE?b_Aw@piAmAly@uDljAqFjiA_Gz|@yG~{@eGrl@sG|k@sDlZiDtVqKdt@cXjlBaq@vqEqfA~qHaF``@_E|Y{E~[uRbyAiMfiA}ArNqDzZaOd_BiMh_B_Dle@uKljBkF`mAeEhmAgDhsAoBdiAk@pb@iAt{ABfhC@xkALrwAL`qABj`AJ`}BKr_@yA`~@}GbpAs]t}DqEvf@qI`_A{Dna@cHjv@qJxdAkKdlAyExh@WlCaBxQeOxaByDbb@eLjpAeOx`ByEdi@yQvqBuDza@md@`dFeTtcCwJhuAmFxdA_Cbm@aB~m@_Bh}@gCxmBeCzmBg@fc@gFjdEoGruEwGpmFIzEs@bc@uDtlBwCjfAgNrxDgPvjEEdAwEtkAaIxyBmBrd@uA|_@aEzfAqDzbAsAj^}Ata@cIvtBqGbaBqJxiCmHryBuDpiBq@xi@k@`mACliAJh^l@bv@bAvdAbFltCtInhF`@xVvGf_EbP`}JxHpoEpHhnEn@tc@l@p\\TrMnCb|AbCxcB|JloFjCxjApGpoArGnhAzEpn@fFzl@xEng@xNtpArMfaAtGne@zAzKfSt{AzOdjA`OhhAfDrW~PdpAfUzcBdBlMtt@dsFdEdYlQlqA|Ev^~PnlApDlUbFxZpObz@|Hp`@vErUvFpWfS`{@xTxy@f_@nlAdG~QvUxq@lQ|e@rd@xmAht@hnBzrAtnDxV~p@z\\f|@~Q|b@pLpXxKhTdUlc@bU|`@pUv^tKjPba@ph@pWxZdXl[bX`[`p@~t@nJvKrRvTza@|e@r_@fd@xVf\\|Uj]zL`RzJjPlJlP`MdU`[xm@bY`p@z[zz@t^hgAtmAnuDlf@b{AbZh~@xAtEjOrc@xHfVzO|f@bE|MlF~QvMve@rPxq@`Lxh@jIfe@xLxq@jNzcAhL~fAnJviAhHvmAvNziCrAzW|JfhB`JrsA|H~~@~H`t@rLn{@|Nh}@~SjeA`b@bhBtd@lsBdLpi@fH|[lr@dpDnIzd@tCrO~QpbAd[diBvK|p@z_BzvJtq@xhEht@tjEld@`pCxu@fuFzP~uAx`@~mDrYtmC~PncBdOtxAvEle@lSbqBbLlwApKxzAbBf]dD~n@jKnsCPvG`Ar_@rDhtB`Hh`EpGdlEhBbtAlHxxFbDzgBxAfv@xKdkHh@~]dEfmCrGd{BpBnr@xOr|Ez\\r}GtHt_B`@rInBhb@bBx[pc@bbJbIp}AnG~pAvc@z|InVr_FzC~m@lJpkBr@nNfD|p@d@hJpAlWbAfTrLfeCfDzm@`BvYpLdsBbEzk@bEzi@xEpi@nNxsA`PnmAnPdlAn\\f_CfWnfBtCbS|CfUvx@htFnxA~`KtFj_@vClS~Tt|AjAbIxXdqB|w@`nFp[z|Bfq@bvEbSnuAzWlgBlOleAhFl_@bR~sAvKbr@vAnJfJrn@`TrxAzStxApOjfA`F~]dJ`p@vD|UdVv`BnKly@rN|mAfIvu@hG`p@pGx{@hCt`@tBvZdIl|AjA`b@vCj`AdCd`AhAzqANtvA_@~`A}BfkBoCjmA_Ev}AyDprAYlJkAzb@aLbpEaAf^{Bry@cA`c@kBpj@gBnt@yGbhCsHboC{B`{@mBpt@kDjsAoDprA{Bh|@q@la@cAhl@gA~q@q@f~@Wzi@?hXDt_Al@v_ApA|bAbCvmA`DzgA|DvbAhGpzAtHbzAbBdb@~Gf|AvE~aA~@fSbBl^hHz~A|Bhg@hCdj@`En}@tC~k@?Dz@zPhLnkCrAbVvB`f@hJltBd@dKlL~dChGjuAhEt}@nKt}B`Fj}@jGt|@rDfk@tCt[nClWnDj[fLvbAtDhW|Itm@`QlcAhWzqAbSbz@xId\\xH~YxYfcA|Zz~@v]jcAhb@zmAn^ndAxd@tqAjaCj~G~Ozd@nPnf@dTjn@pIzU|HrT|g@lyAjn@vfBlXjx@pTbn@xf@jvA~Z~|@pX`w@vRbm@pK~[j@xBvE`Q|Jx^lUlcArNtx@vIzj@jHdl@rGpl@`CvXhBpShCv^`Dfl@rCv}@hAln@p@~y@q@bkA{FxfC}A~m@eClbAeDdoAY|KkBbx@u@tXyAvj@eCb}@m@`ZeAf`@o@bVmFpqBk@|V_B`l@_Af]wEjnB{DtzA}FnuBaGlnBw@t\\kMtaFoNvmFeFvhBwAdh@kBtv@gB`n@wI|gD_D`dAgEdoAeFpaA_Cbf@cJxnAyUt~B}XdqBsS|jAgcAtfFaq@leDufA|jFgi@vjCmRx~@_Ktg@so@x_D{]faBmNjm@iO~n@sT~z@iUtw@ySls@eZz}@sFhPuUnp@sXps@qPlb@iR~c@}]vv@_m@hmAom@bmAkH~MeMzUqYth@{dB`_Dqf@b_AqXxh@_p@xqAgh@rgAcr@f_Bi`@lcAuMn_@kP~f@_N|b@uPpk@yGtVgGdUgXzeAeRp`AoLtp@aHx_@wRtrA{OrkA}LhqAcKfnA}FvaAwApXsEdnAaDr|A}@zdAUb}@D~u@J|hAL|s@Jjc@f@hnDDnP^p~BL|d@?f@vAttGn@zeDVtpC|@j~EH~n@@vATflAt@tmD`@`pCb@|mBBrk@LnqBQlvBm@`|AsCzoBkEfvAaHdmBcF|_A_Gx_A}Flw@qCx_@_Ezd@eJjaAcOxwAiTbdBu]pgCkExYg]r|Bei@~nDan@zdEk_@beCcO|bAwKjs@{[lxBkPvhAgIlm@cNhkA_Ifv@sC`^eF|s@{D`o@}FznAiCv|@kApo@k@fn@o@toAZ|m@d@vp@~Cd_BpJheD`Cjv@dQp}FvLv{Dn@fTB~@^hKThKfIzoC|C`_B`CboAr@htAH~LrAxcCtAvtDtAx`CTjZ~C|aDlCr{AxBlpAh@t[vBlaAfBlfAtEv{BTfR`A~d@vAjr@bAln@tAfk@`@dUt@`a@nAry@hAx}@Rv`@Fxf@LbUCnPaAj`AsA~l@mDnpAqFlkAmIjoAgHv{@kIp{@eK~x@eOjeAsCrQsOp{@yPxz@_M~j@wLrf@{Rbv@}Mhe@q^lgAsFvPaAnCeH|R}CrHoMl[iW|l@wa@b}@qg@beAgy@tcBmmApfCyIvQsIxPi`@bx@sYpn@mSbd@qKbXs[|{@oRvi@cQ|j@eIdY}Ttx@{Obo@qLfj@gHh]yDpRg@jCwGl^sB~LgGf^eKrs@kChS{Jfv@mLfiAwIreAaH|fAqGlwAiDfwAeBjpAyDfdF{GhjKuCx_EiBf~Bu@l~@_@l]cAf~@aA~aAs@hu@uC|hBm@b_@o@xYo@b]QfJs@r_@ItDoCnbAqErrAeFrsAkG`wAqHhrAsLhdBcKxpAaLhlAeLteAyNzkAoQnpAqCfSObAyMty@cJlj@cThkAeZnxA_V`fAg\\`sAgXrbA{Sbu@sZxaAwZ`_Acd@bnAuHlRySni@we@vhAqm@~rAkp@poA}Ufb@wX|e@gIvM}x@`tAikAviBer@tjAysAb{Byy@`zAov@fzAmh@fcAgj@beAoZvi@{b@hu@ae@hs@cY~_@ot@z}@ua@`d@}\\h]_X|Uug@|b@wYzT}X`S}ZbSc[vQ{_@vSyk@`Xwj@xTc^pLoLlDsVfGm[dIoX|Fc[jGkLzA}MrAkSlCmZnC{OvAcQ|@yYvAc\\x@ac@E_k@{@cj@mBkk@}Eu^cEiVmD}RgCca@_H}F}@miBi\\unAqTCAotBk`@mcBwZaUyDkGaA{e@cHmxAcPoh@oCs]aBw\\m@w{@Hep@nByt@hEgc@`Faa@~Es{@`Oqy@xRwx@jW_n@dU}y@j_@uo@r[_ZzRc{AreAcS`Pct@to@qfAlhAyGxHoWbYgh@jr@mn@h}@w]jj@qU~_@gi@tcAeb@hz@ep@t|AcN`^e]d`A_b@nqAa_@bqAaXrfAeVlfAcUrhA{RpiAkQzjA}O|iAuNnkAqHzm@kE|^kJx{@qYjlCgm@xxFc^diD{@pIyK~eA{R|iBY~B_D`Zy[bzCoXfiCqIvw@mC`ZqAdMoE|a@}XjiCwPr_BgYjpCqIjv@{RvhB{@jIgAfLiWpbCy`@lwDwOvwAcKb_AoL~jAaMxkAcHlp@yNrtAoZdhCg[~yBgOh{@uBtLwUjlAyU|eAw]huA}Vp|@ob@~uA}@vCeKp\\cZv`A}Ofh@gItU}Lz`@m\\`fAsa@`rAgqAzdEgq@psBsO~b@wi@p{Aim@j}A}^~}@y^n{@iRza@uKhViAdC{KlVau@x}Aei@feAeo@|mAoT`b@wMnVca@jy@oa@|{@w[rv@gT|g@gVzq@uVdu@uDdM_Ozf@cc@v~AyR`w@iUjfAuW`vAsMhw@eChOeMn}@uKx{@}Oh{AuHh{@uGt}@}Dro@gEf}@mD`}@cBbq@kB`q@]b]q@hn@QrlABlp@b@~}@zAb~@zBl`AfE`nAbEpz@tHbpAtDrd@jEnh@xMvzAxO`{Ax]ffDnGzp@~Flk@hLd|ApEnn@~Dps@lDrw@pBpj@fCrdAfCriBTjyAe@`yAiA`_AcIbvDgFteCcBl`AeBlaAkBnlAm@ls@a@bd@s@vcCB~~BlAl~BjBxeBzGfhDlHt~BjHnmBnJnkBfBv]vDdp@xLllBjN|kBfUpjC~O`|A|OjzAdXvyBtO`lAtS~vAvQriApU|wA~[pfBvBpKpF~X|Lvo@h]xaBrZruA~UnaAfEfQzVrdAlt@tzCp]``BpX`~ArLrt@zK`y@xC|VrDlZxChXzJvcAbGrs@nE`m@lDnm@`Dnn@hBbc@NvDr@bTn@pRfAnj@r@ja@PdNDfAf@~b@ClBp@xfAGfv@?lUk@zn@q@bj@mCjoAcCnr@aCto@mDjl@wDrn@iGp{@gElf@oCx\\yAhOs@|GcH~p@wEre@}d@viEwW`_C_KzcA_SlhBeEhb@wIlv@kFrh@{Cp[wKjjAsS~hC}Gz}@qFxz@_E|m@mB~\\_AvQoAv\\yBla@_Dvk@mn@xjL}RnrDuCth@qGniAwCtl@gD`p@cCdk@oBfm@_DrnAaAnn@Sl]En|@R~n@^n_@`DrlAvCv|@zE|z@tBd`@pFfn@zKljA~Ghl@zHbk@|Ijj@fGd^pJdi@lDhPnBlJpGpZdMvi@tWnbAdOjh@fUns@bCzHve@~xA|^zgAfPzh@~R~u@tL|i@xFf[~E`]|Gnm@nCj]dCn_@jAr[D|@v@r_@@x^MdXI|Ug@h_@mCfo@gCje@kB|]uGb`AwKjwAuTduC}Pj{BaAfMiQ~}BmUjzCmAhNiAfNeJ|lA{Zj`EuHbaAqIxfAg@nFqIhkAuKbzAyS|lC}OxgB}I`u@wJrs@{G|g@e]v_CcXxjB}CnS{aBzaLmd@`zC_j@n~CsYv{AoFfYkwAp}HwJjr@{CjVoIt{@aFxr@wBjl@gBbp@oEdlBmD`cBi@tWKbDiBfn@_Av\\eAxc@SvIaBp~@aAnt@cAvs@wEhaByDpnBmBzmBTpd@hAfa@zBbj@rBrZhCvZ|ClZpDdZ~@tGtAtJn@lEtCnQ`A~FbDdQfAzF~FpXnGdXbHtWzIlYzXtu@fd@vlA`a@hfAz[b|@dm@`aBjp@jgBvNp`@`]dbAdKdYhFlMtFhNfYzm@`g@pw@xw@zeAv]zd@h\\`f@|T|]rTta@lIjRjIfRnUzo@t`@lkA`G~P`\\j`AlMf_@bLj\\fRzc@pSxb@fOxXvTt]xOvTzRhUjKfKb_@f]v_@xWfs@n]fiAd^ryAbe@zd@xN|c@pNtd@|NzlAn_@jQ`Hd\\tNd[rQra@`Zn]xYhF|DpWhT~cA`|@ji@~c@rc@dc@t^ne@tYbh@|Rvb@|Lx[zMva@fYbdAhg@lkBrc@~aBfClJrSxt@dSjq@nLj[zMvZpQn_@dTf_@fQjVxVnZtXrYtXrU`XtQrY|O|VhKnXhIn`@hIpRvBvf@pD`~@xDd_AhEpmCxLzb@bCdg@zFte@zMpb@fO`X|Mb[`Rp_@|YrZfYfc@~h@da@|l@tk@r}@ba@|n@`lAfjB|kArjBxbCpvDtn@dbAld@zw@jQv^|P|`@lSnk@`Oze@hJt]xIv^nSxaA~DfSvEzUjD`Q`VrkAvM~o@nGhZxy@pbEbtA~yGxZf{AH`@dKfh@vKrk@jFrZvEd[~C~VrCfW`D|]lC`^bDhn@dAx]`Axo@Av^Sb^a@l_@_Clt@{Chh@_Gtr@cB|NmGpf@eF`]_Hn`@kOns@{DlNcEfOGR{Mrb@kP|e@wRni@yNza@mRhj@aJrZqHpYkGzWuAxGsDlQmF`[oFh_@eEl]_Ih{@wBpc@}Bdr@WnYAho@NtOf@r^jAx]fAtSXxElApRrAnR|BbWrA~NbFna@vN|z@fAhFpRd_AnZpuA|g@x_CzG~ZlIh`@zOht@`BvHdXrnAtu@dkDrIbg@hJfo@tGji@pBpTbA`LrD~j@fB`^pArb@`Ax]h@f[DxSj@`pABlZFtm@b@ppAH|n@h@zn@bAbc@hCrn@|C|i@zCf^pDh^~E~^tE~Z~Gz_@pGn\\tIf^|BpJnI|YlO~g@jXx}@lOhg@xK`^jMpc@lIpZ`Hf[`Qf}@f@pCf^fqBvZzeBfJbe@pIn_@fGjV|Id[~Kb]pMt\\tBpFl_@l~@zq@dbBnm@d|AlZbs@xApDx[xw@vMv\\xSfn@|Odg@tO~k@`Nnh@tOft@~Nny@lH~e@h@jD`I~k@`Hfm@vGzq@bEli@fE|m@`Djr@zAdj@~Abs@Zra@DpFT|s@a@v~@S`_Au@xzAg@`sA]ngAGzOOxf@Wvh@Szo@V~r@^|`@lB`o@pCjj@`Cp^pDr^tB~QfAtJtEz\\tFn]jGp\\fHt[nHlZ~Jj_@lOre@xQxe@bQv`@pL|UbPxXbYfb@zIdLhA|AjvAfmBvk@tu@~`@zh@tGjIhDlE~Yj]~`@dc@bThThb@bc@ti@zj@d[d[rx@ry@b^x_@vB~BzSbW~V|`@pPfXrLvUrPba@jRvh@jNla@bMr^zDdL|\\`bAxJ~XxThp@tPtg@va@|jAxK~ZjPr_@pNdXpRhZfQfSrXlXjX|ThW`Otc@dQhfA`X~MhDn\\|HfRnFhR`GfPjHl[tO|YfR~RdO|QzQnPrUjXdg@|Uvf@x]~t@d[`v@dd@lhAfc@|kAha@`oAv`@zwAxRbt@bQ`u@tJtj@~Mr}@|RxqAvEl[dGr[fIv]fMpb@rPtd@nNjZvQz[pb@hs@~b@vs@dj@h~@jV`b@hPv]`W`p@`T|q@fShu@rg@zjBdg@~gBj[pjAlWpv@rOx_@bNjYbSb_@dStZdZn_@vZfZv_@r\\tv@lm@zlAx_A`m@zo@fOhStNlT~FvJpFbKhPt\\nKlVfQrd@xT|p@vI|Vdy@jeC?@lDlKn@nBvGbRt{@d`C|]|dAv`@~nA`Rdq@lPfj@nRdq@lVn_AnShw@|`@~yAjBfGvBdHz`@rrAdWzo@li@jrAvIfStIhSfKtU|Qpb@hI`QhHtOrHhP`iApcC`D~Gla@x|@fSvd@tY`s@r]tcAn`@phAbVfw@jZfcAfStw@fH~XtKpd@~Lbm@FVtLho@nW|xAjR`qAjXfaC~Evf@xGjw@dHffAzJhqB|G~~B`I~rEdAztA`CbdBxChwAhDhaBtCxfAhDxbAtJxrB|HhmAfG|{@tI|bA|Ipx@tLpeAlPlmAvMfw@|Nx~@lFzXfYxwAta@tgBrOrn@l[pcAfJdZno@rrBzb@jtA~DdMjFrPbJrXzk@nfBbx@`dCdT|p@jNv_@rMfZtLjVdKzQfLjRxz@jlAt|@~lAp{@bkArV|\\dQ~U~UnWtR|QtOnLd\\|SrUxK|E|B|RrGvYnHnRzClTpBr\\p@bb@a@fXg@dPYnQArQJbM\\vO|AdSxDrR|E~RzG`\\fPfUbPpObMvOhPnStWjS|ZxOtZrMvYhMz\\xQjp@dHp\\hHf`@`NrlAdNnkAzMpgA~Kzn@hLzd@hMdb@zOz`@nQh_@fUz_@zBdDzTd\\drA|lBzUh^jUt]fOxZbSve@dN|`@tMvd@lI`_@tHna@vEpYrDb[hDt]rCn^hBl^nAp_@^rc@@fi@gCl`Bk@r\\w@bf@q@h_@Q~^Rn^f@~YbB|_@nC|a@hD`^tD`YrGf`@rOru@hPxw@xGd\\rThfAfMjy@bEb_@nH|aAlD~iAX~f@W~m@cAlh@wAf^}Bp]iCr^mDd]}Kn}@yOpmAuZxhCcEph@sBnf@}@xj@Zl|@fDt{@bGvn@`Et[zH`g@|E|V|Jb`@rFhPzGfSnu@xwBtKd^vMff@|Hr`@bIhh@jD~\\bDb`@lBhd@`Abk@fBl~A?BJzK@r@h@fi@pAdqAf@da@@d@v@tp@p@dq@|@vdAZ~ZNvJvC~mCl@~f@VzUP|O`Bj`BVvYnApsAZvt@Ovw@Hld@BdVJjr@JnqB?zGRruB?~a@ClO?rCRf^JrQv@~_@`AlZzBnb@pAjXpBnX|Cb[pIxw@zDx^fM~jAdO`qA`N~iA~WfeCdGti@zA~MjLheAb`@pgDbKj}@xMriAbKr}@~Jv|@~Iny@|D~[dGta@hJzf@bMjj@pFvQfXp}@jDfLjCxIhLp_@|HfWdXj~@nFzTfHz\\~I`h@lGvf@rFvf@`Dnd@fBva@pAd`@xGvrBlA~e@fC~|@v@`Y@VnCn_AlD|nAfDjmAtBnr@v@pj@~@``ADn`@iA|lBw@z`@oBlbAgBta@cLviC{YboGoO~sAcQ~x@On@ueAd}DoNbp@oGb\\oEj`@oDx`@oB`e@qAh{@@p]pAhd@zDtp@~IhjAjIty@~LpkA~QddBzMjdA~Hzm@|Op}@?@xPvw@tU~y@d\\x~@x[p{@``@x{@|fAvcC`{AxeD`^h{@~Z~~@nD~MzLfl@`CrQjGfk@bExv@bArj@v@|_Cv@t`Aj@ju@R|MzAxc@bDvj@zEpl@~Gxs@`d@~`DjI`n@dApIpIh_AdCvf@dCnu@jAzo@Axg@y@bs@qFz|@aChb@{K||@}ClVcTruAyQ|lA_Gti@mDrb@q@tIyArd@o@nb@G`k@|@za@rBxb@rCl^jCdTvEnb@fHjg@|DlYvFjZpDxRvM|z@nG|e@zE~c@xCl^fDda@tAfP`Gru@hFxm@dEb^nGjb@vF|XhK|d@|Iz[~IzYzLb[tHdP~InPlNbTxP`VxQnT~I`J|JfIrI~EdJ~E`KxEjLxC|LrA`MT~Lg@zLcBfHeB|KwDdLgChLsAdJ]fJBdJh@rvAriAfIdGbi@l`@|o@ze@hdAht@|\\bU`@Th`@lUrMrEra@tNxZlPlRtInZxMl^xOlaA`a@f]|Mjb@vO|UpKrHrDrIzEjP~JvMfJfRzOfXlXzOpQvN`Rj]hj@xQx^tEhJpYls@rKjZ|Qhi@lXx}@hAbEjLpb@hLxh@jFx[pBfOnBbPpCf[vBh]xA~]r@fZJnN?pMe@|d@y@x]eBj_@eH~lAsBz^mBh_@kAn`@Qv\\^zj@~@jb@hBh\\nBvZdClXbCfSbEhXvF`\\dLrg@|Ljc@bS`h@nYbo@hA~BlmAlmCt`@h}@tFbLxQ`_@`HdMvItOli@d}@pAvBjJ|NbGhJ~\\xb@ra@xj@lH|JZb@zPbV`n@x|@nf@lr@fZnd@nNvW`LpTdKrVjJbVfN|a@hJr\\zIr\\tIba@nFfZnJhp@tExd@hDfc@hBlc@fBbp@hA~\\pDjhAxCt~@`D|_AzCz~@`D|~@jCvx@pCpx@hBdl@v@jb@Xh]Kr[[zZe@|TsAf`@_AtQcBjX}C~^iInz@iHlu@uAdPiD|e@oBv[sAp\\s@f`@_@ra@Bz^Vx[rAff@zAt^nBt[rCz]lD~]fEp\\rEl[tH`a@nIf`@~Q|q@dA|DfZzw@zXxv@rLd]t`@fhAjGvQ~Spl@lOl`@vHnRlIdQlPp[rN~UfLzPfc@jf@fXpWzXtWdZrYbXdZ|`@rh@hT|^dJdR~Zxt@hPrb@hFlN~Mf`@bPxg@bKh]hR`r@tFjXF\\lGd[dIrh@~Edb@fDt_@|IfaBzFlxA`Ebr@hA`NfCvZnHtp@~Hpf@tHd`@pFfVnHn\\fLff@tAzFpi@xzBvBzIrRbv@`O`m@tBdJ~GtXtJr^vJx\\~IrXbOr_@lOd]hOxZ|MbV`k@f~@rf@dy@`Sl\\lA~B~KrUnL|XlG`RrKt^dEjPpE~TfD`QrFh\\jDxZtCb\\xBz\\r@lOd@jOV|PHnO?rX_@b\\w@tUGlBMfDe@hIUhEcAfPgBtTsCxWsBbPgBjMcDfRgF|WiIva@sRr|@wRj}@{YtsAgQzx@yG~ZiHf]oIjb@eGh\\gFxZ_DrVyBfSmBnTsAhSgAvUu@tRc@fTOlSEhWHhRd@jTh@bRjAvW|AzVfBzRtBhSlCjTpBrNjDdSvFpYnHrZ|J|]`IfTrJbVbUpe@`M~TpSn^p[zi@b]hm@j^|q@xGzNtSng@fNlb@xFdS|G|V|FvWlLfm@lDvVnDtVnGpf@|Eva@v@tGzJ~z@hVpyBvJh}@vKr~@nJ|x@pKr|@`Sv|AdS~wAtW|`Bl\\ttBx\\~tBpf@dbDxQnpAbGnc@lNxcAfAzHn_@zsChYtrB|XlvBlZhyBtL`z@fQtiAlJnk@hT`uA`RjlAfQzhAzMfy@bJje@bJb`@bRhp@zOhg@hYrt@lYnm@pRp]nP|Wbh@|y@rWra@|Vbc@nWhi@jWro@tQzi@`Yx}@r[peAx_@tnA`o@juBjU`u@tY`aAlk@vgB|d@bwAhb@tqAt`@pmAtO~d@|Nna@vX|p@rU|d@h[jj@r^ng@l_@nc@`r@hr@jw@~x@jXvZhXz_@bUf_@nYbh@pTvf@pWzq@bOxe@xQdo@|Ktg@xI`f@rGz`@pFba@jHrq@vHrz@tEph@jFvh@xPlnAhLnn@dJbc@vc@zrB|Y|tAxJre@hS~oAj@nErLjy@~Ixp@zLd|@xZt{BfVjcBhLxz@vZlxB~NfgA|Z|wBbYnrB`QroAjGni@bF|l@|Cta@pA`WhAvVfB`n@f@h^P|_@?z_@[j]q@r^gAf_@aAtTaAvRkErm@cD|]aJ|{@_TtnBoS~jBePtyAaMliAiGxk@gJvz@_KbeAgD|a@_Ct]mCnh@wB~m@{@|]m@tc@]bb@A`Zd@b~@rAvi@xAhc@xB|i@lDzm@|Cda@hFhi@rGfl@|Kjz@pK|o@nJre@nMdj@nOfl@jM|c@zOle@jYxv@hRjc@fSza@lZ~j@lJjObSlZnVh]nWh[~]|_@f_@v]bo@ji@tQ|N~d@v_@juAnhArKlJnb@t^tKhJtMtMrUlW`R~UtKhO~Vrb@|Q|]vTdf@xNx`@zOvg@tI~XxL|i@lPrz@bKpv@tFdl@lDrb@tDvw@bAf_@v@jv@@lXNnpADdzADjpAx@|nAfAzk@bBpl@zEtaAlCdb@tDfh@dExc@dFdc@~K|z@fMny@tL|r@vFv[tQbcAdJzh@lU|rA`Kjo@lQ~bAzKbo@nl@bjDfQvgAtMl~@fPjkAhOtmAnDhZjTbnBfGvl@xFbn@jFrl@xGny@`NzfB`IrjA~Fxz@xMbnBtAzT~A~UdJjsAbDxb@hEjg@~E`j@`SndBzAzK~Hbj@|DjXvHpc@lFxYxMbr@nIpa@`Krc@lM`g@jGpUnWr{@xRto@|Zh{@t\\zy@pXvn@fN~YxRrb@lUrf@pShb@tZdp@fXnp@bRze@pZv|@dZz_AtRfs@vOxn@hQ~u@vQ`v@bQfu@`UbaAnXljApy@xjD|Qrx@jEtQhV~bAzVreAvLzg@~Jzc@|H~[vXbiAfXfaAv[`aA~Pvb@zRpd@jPx]|c@l}@ls@vvAlx@n_Bra@~x@vh@heAbcAzqBpbAzoBb`CxvE|MrXhVzj@rKdZdLj\\vK`a@dKd`@bJlf@nGr]~Gdf@tJp~@rErv@rCtu@bAvl@Qny@Yl\\gArb@yAt]oAr\\mB|XiC|\\aC~RaE`d@oD~a@}Etl@uEpm@gDjm@_Bna@kAzh@e@n_@?pn@x@fy@v@vc@`Cv|@rAh]`Bvm@vEvwAbDhlArCr_AjGppBh@hRzAbf@bC`x@`Fb|AvBbq@lCdy@lEt`Bh@vh@^j|@]|lAkAhaAkA~h@gBnm@cCzl@_Dpq@{Fv|@aEvi@_Dj_@yCb\\wGfm@kF|d@wInq@uLny@cPd_AgF~ZsR~pAmUvuAyWzbBkKts@s@~EiHll@iDd^{Fjo@yElo@mD`p@_Chn@aCfy@_CxoByBrtBsDzhDsDj~CsFr~EwEduEHvy@\\xo@lAt_ArBhaATfJR~FfCrm@dDbo@nHliAvHtlA~Cfc@rFr}@hFny@nC|m@jAp_@d@p^NfUCh}@eAhk@mAjc@aBd^aCr_@yEdm@aM`wAoKjmA}RdlCa@xFeI|hA{QheCq@xIqJjwAwIlkAuEzo@sMziBiHrnAa@`HsCjr@mBr}@a@hj@Ktc@d@|hAnAnn@bC~n@vC`n@bFvr@jF|l@vJfw@hF|`@bIdf@dKvk@vLbj@lMhh@~Njg@h[v_Ah_@t|@la@py@tUtc@l\\jm@vBxD`Rl\\rPdZfb@rv@nj@tbA~Xrg@rYni@j]pr@vS|c@j[bt@dh@~tAfQhi@hOpg@bTdt@rSvs@t_@`rAl^doA|ZlfAtUfw@jDhMzSdq@nUjq@b]n|@j^|z@l\\dr@dZdj@hD~GdRl[bJxNxGnKtP`WpTr[|Xt^lWl[dW`Zbb@tb@xTnThd@j`@df@n^tr@dg@jv@nj@l|@hn@tZzRtZpRxd@dWz^jQr\\hNra@tOjo@bShj@`Off@|LjaB|a@zy@xSlp@~PhR|GbRhIta@~UpRnL|JbIlRzPxNhN|NhQvPhTda@~q@pbAx}Ajk@t|@vMtR|K|NjThWvOjP~NlN~WfT`d@l[to@bb@~k@|_@|u@te@vlBrnAzu@ff@v}@~k@hlBtmA~e@xZdRxL~QfLnd@pXpj@bYre@xTdr@dZpq@zWzhAhd@vkA~d@z[~Lle@vRze@tRds@jYbj@`Xrj@j[dk@v_@tj@rb@n^f[fXpWxRnRpJhKxRjT|TrXbQrTld@ln@tWna@hUl_@da@|s@ph@fcArL|UpvBrcEpa@zw@dh@lcA|o@roArq@trAljA`zBjIpPr_@|s@~_@tu@tb@dy@tWvl@dNl]lPbf@nM~b@vLpf@lHt[~Gd^`J`k@dHzg@jC~TbJbw@jDlZnIht@nGbh@hQdxAvRj`BvDv\\xFjh@fFxm@fGht@rQt}BnQl_CrXbpDnAzP~]buE|YvxDlFh|@dHlnAfCfi@pBzn@xBnm@@RpBd_AjFx{BjGhfC|F`oCxDveBp@tTfDrzAxElmBnH`aDvGzgCnFhqAbFdx@bIfaAzFbm@pDd]pKhz@hIpk@tHxc@pI|c@vF`Zdb@joBpb@lnBneApzErEtSdb@dmB|u@tjDxSh_An]b`B`c@`oB~G`YnBhJvGtYfa@hjB|bBlwHdgAx~Exs@ddD~q@h}Ctp@dyChZtsArYbqAjHd[vI`_@|Nll@n]xsAlb@f}ApKh`@lVp_Az^`tA|s@tlCPb@bAtDdIhZdOjj@rVh_A`~@hgDzdBfpGvoDjxM`g@vjBr{@b_DjSlz@~Rd}@vLfp@fPhhA~MbhAlJlbAjHtnAbClj@|Alk@x@zd@r@fu@Hb_AI|jAO|nA_@r~AIf}BYt~EJ`nAi@`bBUbj@U|^k@bcAU`jASlyAN`eAf@hfAd@fbBKluCGbUAhd@DhXJd[\\n]`@hTj@jThAhYlAjUpAxR`Cv]`F`j@dHbm@bKxq@fJlf@|CnO|EhRnJj_@dHlVrFrQpF~OrShl@xHjR~HrQtMtWjN~VvN~VrVv^v\\t`@v`@|_@|WlWhg@nc@r|AnsAxfBj}AjN|L~wC`jC`VbSb\\jWx]xV~g@xZbTxL~U~Lf`@xP`bAr`@xy@`\\~_@hOdW|JzMjF~n@tVl|@z\\`uAzh@xu@rY|_Brn@feAx`@`fApb@r}@`c@zZfQdb@pX|t@rj@h_Apu@nCvB|pA~cA`p@lg@f]hUfZnPjd@zRpg@zO~bB`d@~Bl@`j@tNtp@dQdy@tUvk@nTbh@~T|ZbPda@nU~w@xi@t~AnmAvxAfjAhKjI~e@r^`p@xc@fi@f^n\\zSziAjq@bdGd_DjgHztDtE`CjjCxsA`qCxxAvd@vVj]`Sda@`Xpa@hYbQzLtlAny@z}@zn@v[|Tp^rYdLfJhW~Tro@~p@ld@`f@~N|OreAviA~sA`yAnqDvzDjnA|rAzDdEpsD|}DfhG`wGpeCrlCnaAjeAl`A`dA~WjYdQdRttAhyAbMlMbYnYr{@b{@l{@bw@xmA~dA`RzOxrAhiA`H~FjsAxiAzy@zu@hy@fv@d@b@xx@xy@vZv[b_@j^hi@bh@rk@rc@`u@xh@nx@bi@h~@dn@vEpCbmAjx@jsA`z@bbAlh@j{Avp@jdAvc@vrCvlAbzE`rB`HzCzHjDlo@jXx|Avp@poAni@ppBtz@xCpAbL|EteBfu@xqBf{@nF~B~k@zVn|CnrA~Y`M~y@x]ljAhg@juB`}@`{ClqA`x@t\\bW|KdXfLzgBzu@`d@vRnd@|RtD`BpOxG~O`HbXrK~L~EpaAnb@luA`l@lt@l[paAjb@xSvIxr@nZnu@l[|H~CxHzCzFfC`PfH`c@fStQhJ|SlMlCvAzEhC~OxIxa@zW|XlSlYbT`YhVxUfTtVjVxV`Wrb@xf@h_@|e@b[jc@pWv`@rXpd@h[rk@``@vw@jKvTbg@dmAhOz`@tVvs@ne@bwAlo@foBnz@lfC~^tgAtHfUvHhUbNja@rK~\\|InWnPxd@fLpZ~Pb`@~Qv^jPhY~PdXtQ|VhRtUzRhTnS~R~SrQnTdPzTvNjUfMtUvK`VdJhVtHpV`GvVnEzV|C`WhB`Wt@bW@bWq@pZiBdvAcMfKcAfSoBry@qI|SwB`s@kHvdBsPl`AqJlVaC|yA{NfcB}OdcBsPnlBcRrzCiZzzCaZvnAaMvgDi\\xxAuNfyA}NzwA}MliBuQbIy@veEqa@nx@_I~e@mFtgAwKvcBiPx`B}OlPaBfg@aFbiBsQp@GhmAqL|kBwQr`BwO`W_Cx}@iJrdBaQvaCmUpdDu\\xmBgRtyAaNx`BaPpiAgLzw@wHjTuBdx@yH|x@kI``@_E|\\cDzVaCdg@yExl@yDhUq@l^SxR@|e@z@`i@~Bxz@zIpe@tHf_@pHp[nH|[zIvUnInWjJtOjG~UzJlRtIbm@v[lj@`]nh@n_@~uAngAncAhw@tm@zd@dMvJfRhOpqB||Aro@dg@zm@he@hv@xl@pTzPzh@t]xZbQbh@fXf\\`Odd@tQ~|@vX`b@xJzd@jJpCZbRzCf\\|Dp^jDl\\~AhTz@|^j@xh@@j`@i@f\\qAbj@qE~i@aHhe@eIte@oKtgAqZjs@aSrsCcx@hk@aPbk@iN~d@gJxc@sG|i@wFpa@aCzc@sAvb@[`g@p@ji@pBf[tBra@rEda@vFhT|C~t@`Lbj@|H|aApNlrAbSb`AnNvp@zJzg@pHvq@dKdq@|Jxp@vJtr@zJlr@hKjq@zJtq@~JdlA`Q`_A|N~_@hGzd@lKnf@dNxf@tP|d@dRv]lPdm@f\\naAfo@rb@v\\~[zXxV`Vv]f^zy@haA~n@vw@rw@n`Ad_BnnBb_BjoBhkAbxAvr@l{@`a@zd@na@dc@jb@ra@fc@d_@`d@~\\td@zZhe@tX|e@lVlf@bT|f@zQhg@pOn`@dK~uDl}@hQ|DbgEvbAnRxElb@dK~rBbg@re@nKb[hHjXvG|o@zOxh@lMd_AxTn~B`j@`{@lShr@|O~kApYvlA`Y|o@zOjq@|Orw@nRfj@|MfMzCdS|Ep}@tStcAnVdeApVrpB|e@jpBje@|n@lOt_@`JxK~Bli@jJdUtDnTlCne@tDp\\jB|Rd@|\\Zdi@DxA?~jAi@bdBk@tiBm@f`@Wde@MvTGb|A[df@M|pAm@|h@QtbBu@nSClSInw@YbIEbv@Yxz@MrcBy@phAYfeBq@plAi@vkC{@n~Aq@|nDgAnqAm@ptA_@fLEtx@UvyE_BnbDqA`qA_@hw@]xoA_@lMGvy@SlJl@d]Er]Tz[dAxWfAr]hCt`@jEv]dFn^rGz\\vHlVjGdWpHrYxJfTdI`TvIp]~OdX`Np[dQzd@bZ~b@rZzVfSnLpJfb@t_@~`@ha@jNfOtLbNhMjO`RlUxSvXtRtZhc@tq@h]~l@~\\np@xXbk@hS`b@h\\zq@x^zu@vYxm@vIbQpRb\\zQn_@xSvb@nf@xcAnQ|^`Y|k@`^ru@hPt[re@hbA`IbSz^nu@bPh]pF~IjAlBlShb@fu@f|AtBjEnD`Kl@bBxt@vyArf@jcAj\\dq@xi@fiAt]ht@f{@lgBnt@`{AfXxj@l`@|x@d`@fx@|aAjsB|bAtsBjd@f_And@`z@jWta@rRlZ|N`Tbe@fn@vVnZdWfY~XvYxYnXp`@`^l`@~ZbRnMfYnRt[|RtZrPfl@xXve@xT~w@`^x~@jb@zh@`V`dA`e@zwApp@TJr`@nQjn@dZnpDbaBvv@h\\bMlFtdBrw@~}CvvAfdA|d@raAzc@pCpAxChAtBbAjh@pVz}BzdAffCxhAfKfFfJdE|hBdy@n\\fOhw@t^hiArg@daB~u@|^zPpw@`]dj@tVt[vNxzAnq@z}@xb@f~@`b@p_Bvr@x`Bju@~`@lQztAhn@px@z_@hvAtn@|YfMdt@|\\`SzItjAbh@p~@bb@d]|Mna@pN|\\bJzEnAnKpCre@nIrRdCrPzBnLtAjANvSpAlZbAj[R`WYtQmAl[qB`a@gD`I{@n]yFfMgC~JyAnFw@`XeHvXgJhVwIpc@oRrVuLpg@sXlQyJ`[oQhXoOzRaLlr@a`@r_Aoi@b]kSbb@_U`\\}Qde@gXNIzQgKbb@aUFEnIwGzZmQjb@sU`[}Pzu@oc@rq@g_@xC}B|WcN`v@gb@tN{IdUgMrb@aVpOqIlQcK`T{LjPsJvRoK|RaLznAks@xWiNpWkOtd@gW|[}QpQcKv\\mRn`@eUbOoJzYoSbOcL~QeO`ZwVhq@wn@pj@ck@tg@gk@rp@ku@~{@igArQqTdg@_o@dXy\\vn@ow@z^ac@hPeQp_@y_@HIlc@u_@he@u]jOsLhXyQl[mRd[}Pj[wNlK}ExXeM`Z{JfQqEdJgEb@Spg@{MjFgAh@Kd\\yGhSoD|GiA`@IzS{D`_@wEtkD{a@jt@}Jli@oFb\\yClRkAfT}@b^w@dz@L|i@pBx[bBhJx@dBN``@xEx^tFre@vIbh@bM`r@hTlVxJxeAfa@t`@tOta@bPlPrG`]bNl_@vNrc@rQfp@|WriA|c@vmAnf@`n@tVn@VbdA|`@tkAze@btCviAvrAji@nx@zZpsBry@bIdDpn@xa@r[|Npj@nVzR|JdoBhv@zJxD~b@pOxMjMlDfDpD`EdDxDzD|EvEnH~KnPz_AhwAbHvKtEhItD|GpC~FjCfGnCxG`EhLxC~J`DtL|AvGpAtGnChO|EdYvNv}@`Gnc@rAxTd@~R`@ht@o@jVgAdn@UtNIbFcA`r@wApv@aD~eBgBthAwBlrAgBjcAaCluAaAjy@c@pb@QvRg@`j@mA|k@Yf[BrdA~Apy@pAx`@Png@b@|g@DhDf@h]xAti@x@p\\h@jQ`ApTdApUtBz_@xA~\\~Bn^dCp_@xGxx@pFjl@rDf^vLfjAtNlsAd@lEr@bHvJv~@nS~iB|RliBhUruBrVnvBpXlcC`TbjBfXl{BnqA|nKrA|JtD`Y~DdXdL|q@dNvs@rEzVbG`ZdGfZhEfRzMhm@j\\lpA~Ujz@tKn^fXh}@zm@`uB~\\tjAzi@njBdB|FhIxXvv@pgCpw@pmCjqAnmEzJt\\~aAdfD|x@pnCjy@vpClTlt@|Sft@zi@zjBzNpg@dR`p@lDzLlQnn@~Rpq@tFhRjUzu@`^bnAtg@jcB~y@vrC|Qjm@x\\xhAhK`]`f@haB|Kn`@zHra@hFhYn\\jeBtBvKbBzIbCxLfRp_Ah[t`BjNzd@vNpb@dKdVrGnM|EpIvI|LhIpKxGvGvHhFjHfFrInEbLvF`MjDjLfChLlAhPRnMa@lJ_AxLmBrOoD`VaJrLkGxMmLpBgBrMqNdLiLxI}HtKcIdDsB|CoBh[wQ|MuHbE_C`l@mWre@gLjXoDxSiBrd@eA~o@bAna@nC~\\bDbT~BjUpD~i@|KdMbDhR|Ehv@lV`aAbb@dj@xYpQhLzZ`SnYzSp[|Vju@vq@pVxWfU`Wj_@je@b[pa@lV~]nJtNp^tk@n]~l@|g@x_Atf@b`AxM~Ud{At{CfEvIlf@p`A~g@hcA~g@faA~E|Itt@fpArNrUfy@ppAf}@pnAz[ra@`_@td@ldAtiAtf@vg@ll@nj@~k@zg@lu@fm@th@``@nn@lb@zjAbs@rKdGzx@pa@vJrEb[xNhRtIl{Ajl@z{Ahd@t\\dHjtAhYpOpC~fAfQd]rIri@bMfT|DrTdFxK`DtLrDjOrG~N`IpNrJ`N`LpMlM~LxNhL`PtKhQzJlRbJnShIpTlHnUrGhVrF`WjElWtDnXnC~XxBlYpAnYdArYjAvf@z@po@tAzeA~@xh@x@vdA`Afq@dCfq@nCdq@~C`p@~Czg@hDdg@hHl_ApMp{A`Ih}@|PxmBtL||AnPnzBfElo@dAdPdFj{@`Cra@rBl_@fDdu@f@|KfAfU|Btn@~@`WnCfy@fAj^pBx}@jB|{@z@~m@|@~l@d@z\\`Aj{AJzzAF~lAw@lyBkCdrEgBtmCo@bmCQ`gA?pB`@`bBf@pbAnBr_BtB`rAnBl_AbCry@~HdaCrHnjBhLzfC`Hb{AdHh|Ab@tKlJ||BvHx}BhAhb@|A`j@jBh}@bCnmA|CrdDhA`mCOp{BgBp~C{BxgBu@nb@sEzwB}CrpA]bK_E`kAqFzqAkK~wByGlhAcHxjAyKn~AkOjjBgMzvAob@jcEuUnkBkRxsAgUlrAqR|~@wRlv@ePdl@{Rvm@{V`q@kQpb@wTxf@o\\hr@}[xn@c^pr@sLhWsL|TsQva@qPtb@oMdb@gM`c@oQjs@kBfKgFnYoCtQ_DjUuA|Nk@dGwB`Y}AjYaApYe@tYKvYLvYj@rYdApY~AhYzB`YrCvXnDjXhEzW`FjWrGfZvHzY`Sjs@ba@hlAvQff@bf@~kA|P`c@dVrm@jb@|cApV`m@pSnf@ju@`hBlk@buAvm@nzAviAjpCjeA|eCzPba@vZbw@`AbCfX~s@dL`^bGzRvKv`@~Jrb@bLtg@pBjL~Hlc@lFr]n@fE|BbP`F`a@tCtYrEfl@rCxc@vBt_@`Bza@v@lXp@v^Xra@Fnd@Wde@_Ark@kAfb@gCdk@qEfu@gCn]{A`OwKv|@gI~j@qKpm@wMfo@uXthAa]hoAeXxbAcLlc@oOdl@yGdZiIt_@eJlg@cI~d@iHre@eIpm@kF`d@mGzm@gCzWiFvq@sCvc@uBl_@yB`j@MbD}Bft@SrMWdRm@zx@@vz@b@fm@`@za@z@z^~Bnx@fC`l@lCbg@~Enp@tDra@~Dlc@dGnh@fDfY~OzeAtPb_Ap_@llBvy@jaElj@|mCnl@zvC`iA|tFhl@vqCjh@lhCh@nC`E|Sta@trB~l@hvC~DrRz@rEbV`mApT`kAfQncAlOzfA`J|v@`Gzj@vGzs@tDjh@tCb\\dCxZhB~_@zApb@zAdl@`Azk@v@xsAApUGzQyBpRuBxIqA~BqBdCkCp@kC]aCmAcDgE}CwGyCaJ{BgIiCiMyDeXcGeb@s@{FOgFBaFf@oErA_FhBaDvBkBrBy@vCG~Dh@bH~B`|@nkAzv@l_Axh@bq@pGnIvbAjqA|[pa@|{@rgArf@pm@b_@|b@n^|`@|j@lm@ny@~y@neArcAbOhOxqAtqAnnAdtAbj@xq@hTvXJLn]vf@xU|]~\\pj@d]tn@t^~t@b[ns@jJvVdKfYbU~q@~]|oA|Qvu@~F~WvLxi@dJhb@jTxbAtTjbAvIt^tXndAfW~w@d_@xaAvV~h@dZ~i@bf@|u@`[ra@j]r`@fSxRrW~Tfm@rc@h\\dR`h@nVjf@hQdf@tMbe@tJxu@~L~mAjRf[pF~UfFtr@pQlr@pVl}@t`@h~@jd@|yBffA`eArf@riAxf@fjBhv@vf@vSzy@t[jp@`Vbw@hWrFpBdq@hTjr@rSdy@rTf}@bT|r@|Nxy@nPzqA`Tv`@rFl]rErH`A`{@hLtL~A~NdBpNhBbt@lJnsBtVvV~Cz\\nE`a@xEhmAtQpr@|Ktt@~Mld@fIdgA`WfrA`^pu@pTd\\vK~b@lOb`@jN~]|Mj\\|MtZxM`^zN|^tQ|eAhi@pfAfl@h]nRnfA|p@x{AfdAlsAjbA|FtEdi@db@lj@fd@hm@|g@dl@~g@|f@zc@pdAx`Al{@|y@vaAlaA~`ApbAfmCdsCzhF`yF|yAp`BxyAl`BpoAluA~oAvuAlJhKrXdZbi@zk@vh@hj@tsAtsA`r@~o@lp@dm@`\\bYdj@~e@~g@|b@t\\xW~a@t\\di@|`@he@p]nZhT~QnMpGhEfbBhhAxi@v]zy@~f@rs@ja@zp@r^v`Arf@jaAle@rm@vYphB|u@dx@b[|bA`_@ny@hYrvArc@`cCxo@nyAb]blBp_@jx@dMfq@pKdb@xGr}@zKbwAdPjCZvx@`Hp`@tCn}AzJpdC|Ins@rAfnArAzcCe@liDiH`g@oArbBcErIStbBwE|gBoF|jEaLxhEqK~gA}C~z@uBvfAuBzi@{@bw@m@b{@Ona@Src@Zr{@jB|z@nCpt@|DxaAtI|_AzLx_AjPpz@|QjdAj[d]vKzc@|Plc@zQtz@ha@t`@xS|x@rf@vU|Nff@f]tb@f\\hd@|^|j@lg@tObOph@~h@x`@jc@d_@fc@|w@~cA|h@nv@lg@pv@bZdg@hd@tw@bi@pcA|e@r`Az_A~tB|g@tkAbd@tgAp]||@r`@bdAhXfq@f|@z}BxvBdyFxj@dyA`HlR`Unm@pFpNrEbLtJjWxVfp@fEdLdRvf@`Tfk@dHjRhMb]be@rmAj{@pzB|}@lzB|x@vkBv`@|y@f^hr@li@rbAvj@~_Apf@du@fe@~p@vc@hl@zh@|o@~m@xr@ll@dm@nn@pl@z`@r]hY|Uz\\|Wrb@fZth@`^rd@hYpYvPzq@x]ls@x\\pf@nSfs@vWnc@nN|lAp]zvAh]rq@jNxuAnVtdBdYxf@|H`h@dInmBnZlkBtYt{AbVljAnQbnCbb@pbAtOnEn@rdAjOztCzd@nrDnk@p_Fnx@reAxRxq@xN`GnAdf@rLbl@nO|eAf\\LDrf@|Ppv@fZbf@nSrc@~Sjo@h\\~nAxr@po@z`@zd@l[vh@b`@pu@dl@fvAtnAbf@he@|s@vt@tMzNzf@vi@jh@nl@lWl[p~@fjAvu@`bA`m@zy@ft@ldArq@haAfeA|xAblAbdBttAdmB`[fc@rcAzxAbhAb~Av{@dnAjbAfwAzRdXxs@xbAdt@hdAxhAx~Ad}@hpArVb]bt@~cAvrAnkBjaBt~BxkAzbBbeAtyAhnA~fB|~@|pAtpAbiBpPtTf{@xgAlSvVvp@tu@zcAvcAnfAt~@~b@`\\db@|Yfb@|Wx`@hVnkArm@bw@x\\hx@v\\nt@bXjs@tSlPfEfv@vRbi@hK`_@nGjXpD|gAtMh^bDtWtBd]jBt_@xAxe@~Ath@b@xr@FlHEbn@cAb`AuDngBsOrmAiRfmAyUteAoXzcA{ZjmAab@roAsf@naBgr@t_Bis@|y@y^`d@mR`cBcr@pw@iZvt@oX|nAg`@ro@sQfj@kMff@cKnp@eLvvBkWhk@uElu@sDtmA{Ar`@G~m@j@ri@pAhk@zBzj@~Efp@fGfu@vIbv@hMr}@hRpfAxYjgAl\\tp@rV|x@f]nx@|`@xv@lb@rk@l]tn@~a@bj@|_@~m@nf@zj@xe@jj@hh@tr@`r@vu@lz@xaA`mAn^lf@~d@jp@`z@bqA|s@xoAl[~k@v[vn@|k@hnAz`@v}@p\\dx@`^n}@d\\h{@tc@`oAte@rvAVt@d[h`Ahc@~vAzj@plBjv@noCr|@r`D|BrI`l@lxBpFfSd_AjlDpc@raBjeA~{Dnu@ppCxr@jjCp[pkAnYjgAlp@ddCfU`z@lPvm@nY~fAbk@|tB~YhfAz]zrAl\\`oAhg@rkBl`@pzAr[npAvVbiAfVxmA|UrwAl]phC|BfR~Hvr@vLriAhG`n@tCj[pQtcB~QzaBxKr|@rOfhArXpbBb\\haB`Tv~@lN|j@pQ`q@`N|e@pOff@~Zf~@|Wnt@r]b{@re@dfA~e@xcAxWji@vYdl@tm@nnA~_@jx@b_@px@hZds@`[`x@v[t}@dZ`_AtXd`AhOnk@fVnbA~XprAzXn|AzL~w@dLfy@jIfo@xKzcA~O|fBbNpgBhMfhBdP`wBbKbnA~Hzy@~H`v@vGtj@vI~n@|Krt@nNdw@rLpk@jB~I|VzaAfPjk@rZx}@d[vw@r[tq@nPz\\lOpX~[|h@`b@tm@dh@~n@ro@jp@br@pk@df@~[lj@`[pTzKra@|P`\\nLjq@fUjf@|Ohx@bYdZfMhb@|Rrl@h]jY`Sd]nWhZ`Wh[h[~_@db@hUzXbP~Tb^ji@xM|Tf[tj@h^vu@~Xbr@`Zny@|S`s@pVd_ApVrhAjJdg@vHje@zJvr@~KtaAlHz|@rGz~@bPpuCzHvkAjCz[zHvu@tKb{@dPv`ArQrz@jJd_@dN~e@zZb`AvBjR|@tOQbKyAlIsCzIuGhJoZrK}DZcBEqBWaC}@}EmBoDWj@oC|EiSxEaR`FuPrDiMnDyJlA}ClFcNfUyg@~HaNlKqPhQwV~KoLbPwPnGeF|DmDnHuFzGqEhNoItXwLla@}Kp`@aI`QmDrZuH|TsGbH}BhO}HhKoHbIcIzTyUzR_ZrOwZx`@k|@dI{OfUg_@bJ_LvKkKxMyKfVoNrTcJvVsFxIw@pHw@je@E|g@nCxUtA|F\\v]Pf[}A|[kGf^mMzr@}c@jHsE~ZwMpXqF`YqA`BVvNvBdPxFzP~KxCnCvY`X|JfFnOnFnOpA`ZmAbXiLvIiGlMeJpe@_]z^}XrTsKrUkHpd@gKl\\cLxNcHrL_Gxa@sXjYwWdXg[|r@sbArm@ck@|XoWhSgQpLeKdJaI`[a[hG}Gra@_d@tHwHxLsP|JsOtL}RvLkO`J}H~YaPrWyRvIqJzAeBrc@sf@zGqHzM_LxLiFbLcCpjAlAnL~Bnc@|RjZrNbGrCbKzChe@pIzT~DbjAjXbMjAlPYbd@oCb]}@xT|@~TdAb\\cCzx@qEdW|CbObBpH|Abn@hMzm@tMrX~AnVyDpLyGptB}~AvLwEbHmCxWwExLmAlJ}@fFg@f~@{JhOyBr^eI`N_Dl_@oONGlR}HvIsDrSyHtD}AnFsAtEkAnHiBvBi@vLuBvHs@jD]|O{Alk@aBlKfB~H|At\\bLp]|LjJdBbQvCjf@zFph@rDdMGvEChSg@bY_Dlk@qMrn@kWdUoPtWcWdFgCjOiN~A}DnLoIlMaIvCi@fHwD|CoCpHyCp[iMfHsCtU{FzUoDjj@iInNoBfC_@bDk@nGm@fDmBvAw@`Dg@bAd@fAFlAYfA{@v@yAb@mBJ}B@_AOcBl@kE~FiUhLiYhIoSbEiNrEcTzGoa@dJic@bIkMxKiI~HeDrrAg\\tCs@xG{BzDe@nKkGtB]tAjA`BZbBSxAcAdAkBlCyAdK{@dC{AvIcAdMgDfLcDhHsBlz@{UpT}JxVgSdPmOlXu[r`@e`@vJmEdLcBvCMzGUzIx@fGt@|GlCrO|JvJbJxHhMhIlThC`InEpMgAxCUlCFnCd@bC`AlBvAbA~AR~A_@pAmAv@cB^uBHaCO_Cg@qBv@uAxDwHtNwUdF}FbFwFtA{A~McNxSySpIsIfQeRbN_MlGyFbQqOzj@gf@~b@}^dK{H~VyOnKoEpR}FnUuClI]tBKxC?hGTrLr@jQhC~TjEdQpDlDp@pCh@vGfAlL|AzKdAhMf@xQi@~Iy@dDe@hCg@hEbApEV|CV~CbArExBbGrFzB|BfBlDbBrCv`@xeCfCxIrBhFlB~CvCfG~CbEhl@x^lF|EnDnF`E`IdF`KzMfz@nXddBzFn^`g@z~CnkAhpHfmArzHtiChdPbc@lqC~bCplOpE`Yl}ArwJne@boCvb@~_CzXxqAnb@npBjLpf@fDrNxp@|rCdMbj@rSn_AzPju@h]~aBfR~x@lf@rtBlGjXbBjHbAlEbm@dlCt~@rhErKjk@nN|z@zLx{@hOlxAvHl_Aj@dKnA~SlC|p@\\nMtCphAh@vx@Klf@m@nxAmA~d@cErkAiBj[cA|N{Dvj@cBbSyA|PwPhxA{DdZ_Ihi@sMvq@mIrb@{Qny@sQts@}j@lhBuAjEmCnIkl@~iBs_@|kA}IpXubAd|Csd@bwAac@tuAk]xeAw]fgAmLl`@eOdk@sEbQoH|XwIda@{Hz`@qGp[}Kxp@oNjeAcJhv@cDnY{@rKqBnWiDle@UzDmCje@cArUsDlqAkAfcA@`f@@hd@r@jy@hB`z@jDnx@rD`q@|Gf_AnIn{@bRvtA`Vx_BvFr_@fWb_B|D|VxXnfBl[tuBzn@`_E|f@vdD~d@t_DvClUxBhRhCjXjBpWdBf`@vAfe@jA`h@xAr`Ax@v`AbCtdC~EpnCdJhnF|LliDpEr|@rEbz@~V`dEnCle@xHxsAfAdQbIbcAjFfd@nNrx@nH`b@rHt\\`L`f@jRbp@zc@~sAjaAtwCj\\hcAtTbx@nXvdAnRt|@bNfn@lL|o@~Hrf@|OhlAdQhbB~AhO~L|`B|GlxAhExyAlHvfFtDjhCzB~iAbBf}@tHtaBdQ~cDrMbpBnLfyApHn{@xDdd@nZtoCpTrfB~\\daCdApHJx@fK`z@vCzUvA|J|Lh_AtFdc@|F`j@pDb]`MrpAhDx_@rIt`AhQvaCvClg@|Bf`@`G`mArDl`AvG|fCvInsD`HdbExP|mIrIxeDhMboDxGj|A|Lr|BjGf~@dEnl@|Dbf@bDna@pB~VzOhcBxMlnArG|h@hGji@p^nkC~_@xbCvPr`AdQn}@|Gp]lDnQlUlgAzq@~tC~AzGjh@zqBjl@prBjs@t|BfI|Uxu@xzBfIjU~}@vfCd`AxdCjuAhoDhxAvnD`fCxpGrq@ziB~p@xiBrd@zvAxZbbA~YpdAbJn[bHjX~VfbAfQfu@xOjs@nYjvAlNpu@dOzz@~Mn{@hY|oBvOzmAxM|lAnM~rAvK|nAvPfjCxIzgBlJhhCvC|qAzAtqAtApvBIz}B_@zu@IdYe@vu@wBlcBqCnbB{HvjDyChqAiBlp@{GdlBcF|fBsAz_AoKhxDqBdw@SrHo@v\\yDfqBKlEe@~UqAhdA_Ahw@]ju@K|d@EvOMvo@?bc@Bpa@t@r}AfBdeBbCz`B@RFxCh@vTr@zXfFrfBv@dXnCvn@bGvwAzGfrAlIvqA~H|iAlJtkAh]luDfRxdB|OpqAnFtc@tQltA~QjsAjT`{AdThtAnTzsA|TxsAfUhsAzEbYzg@nsCrd@`eCpg@dlCxHbb@lDvQ|g@`lCti@ptCrDbRzjAleGr|A`dIl[xdB|DvSruAlfHjvCjlOtExUbgCbyMb_A`}El{A~}HbE|Sbe@x`C~d@~~Blj@tnCxZhyAdl@`oC~\\z}Ax]j}AzOrq@nk@lbCnc@pfBbp@bkCbJf\\tm@h}B~h@lmBbl@rrBd_A~_Drj@~hBj^viAlbAj}Cba@nnAvh@l}Ah}@~mCffAj}Cvh@d~Anv@f{BtgAtbDbWzu@`s@lwBfThp@nh@`aBhm@`pBtj@fmB|Uxz@rt@zpCzi@h{Bl]h|A|]vbBnb@f{BfYzbBdXheB`Z|vB`Er\\zJby@nMniAnMxoAtLlqAdG~t@~Epo@jHzbAlGhaAfG`iArGfrAfEjcAbEbjAbDllAhDrzA`F|`C^rXhB`hAzAf`AxAx_AzBdeAn@p_@DnBtAzy@nDx~AdB`v@zEb}AxEhmAlD|y@bDno@vEhy@|Fv{@zKxzA`Ib~@dIpx@~MhpApOxoAbTbzAjSvrAlLjp@fLbn@jEdTlHj_@dJhe@`Mbl@`Nnl@vLhh@xMli@xVp`Ar^xoAlTbs@`V`v@pIxVfPzd@`i@dzAhX|s@f^r_Ad^j}@x_@r`Aj`@n`AneAxjCpI~S|`A`_C`_@|_At`A~~Bdy@hpBlZ~t@zrA|cDvNt]|n@j|AdcAleCviA|qCr{@pvBvHtQzz@buBd\\`x@nj@~sAd~@tzBjo@b}A~_Az_Cj|AfuDjNd]v^j}@f`A`_CtaB~_EpB~EjFnMl{@jvBdNb]j[|u@h~@vzBda@vaARb@`b@fcAtJzUzMd[xj@rrAnk@jsAnJpTtm@`uAp\\zt@fVli@voAvlCnJhRnShb@j[hn@hYrj@ja@lv@~d@fz@jn@`hA`q@~iAfp@veAri@hz@pt@phAhJ|Mj]ng@tu@|eAxd@lo@~e@do@j_AnoAnf@ho@jlBz_CfKdMj}@hhAr}A~lBnaAjkAfqCrhDfm@~t@zGjIjMxO`Q|S~BtCzg@pn@rmBr~BvUlYtZd_@vL~NzbAnmAlf@tl@toA`~A`a@rg@rf@vq@bObT`QpW`P`Wf`@lp@hWrf@`Ypk@jMrY|HjQbTbi@nP~c@dKtYdHrSjNjc@|Llb@zMxf@lMxg@zNbo@lIp`@hL|k@rLto@xXf_BhUtvAdh@haDvDzU`vAtxI|s@fqEdq@neEfeAjuGtaAffG~s@xpEd@pCll@ftDbb@zhCjSpoA|AxJdPncA`h@faD`m@~sDnU~tAlVhsAbN`q@tMvl@nLlg@rMxg@tN~f@dPbh@hT|n@jRre@pMd[zNh[pZrm@tE|IlOzWfQbZvTn\\`QlVxMfQt[|`@la@`e@d`@jb@j^~]dS~RrcA~_AlcAf_A|i@nh@zVbV|MpNfr@vu@pa@xg@fN~QdTxZjY|d@nVlc@lOzZ`LlVdRzd@zNnb@jMvb@jMbf@hKff@tHr`@`Lpt@tH`r@fF|m@pD~i@jCfj@fBng@lAhj@v@th@d@|e@KzgABtP}Av~B{Er{CoBjcBy@x{@]zq@@ps@Z|t@t@dv@nCxgAhErz@bDfg@`H|u@`Hbn@bGja@fHfd@vJ|g@`FjU`Knb@hMhe@bO`f@`Ojb@`Ydt@dVrg@lQt_@bPb\\xUje@xSfa@pNpYlU~f@nOd_@rNr^b@fA`IrTtJp[vItZrKdd@rKxh@|DtTfGx`@hFva@pFph@xDxi@bBxX~Aj_@`Al_@x@v^Lt\\W|h@i@dh@}@n^oAtd@}Ate@iIvfCqA|g@s@jb@[vc@B|f@Xb\\v@~`@fBfe@fCpg@fCf_@jEzc@vEf`@`DhUfGn`@tHnb@fGnXvGjY`I`ZfKv]pOzd@dIjTlGjOdKzVlLlXbPb^rRv`@nK`T|Vrf@|\\zp@vBhE`k@riAtUhh@pShg@bOv_@rYxv@|LpZ~B|FtMx^tMx^zc@`oAhOdb@zEhNpXdu@|Qrf@lDdJdOp`@xFbNlN|\\rTbf@~Udf@`HpMdIzNlSj\\fXbb@fYj`@vTbXzFpGtM|NbTzTdRjQjCdCvPzN|Q`ObYfSd[dSrm@`\\fObItj@~Sbc@nN~d@lM|j@pNlm@rMlnBx`@zHzBrWxGrI~BrV~H|WdMhW`Mr]dSb^bVdMtJfOjMfVxTpUhVrVzWf`@pf@pc@vi@n^vd@|JhLlU`XxS|S`NvMbOrMlRpNrSjNlRjLhSbK~YxLr^jMj_@zJrRhE`SlD`h@lGnh@`F|zAdKdi@`BpnAlCry@rBtx@bEfi@jEbb@xEzR`DhPjCjf@fKfXtHx^lLzZvLn^`QrWpNhWdOdK~GfFtDzFbEnZdUbYnVd`@`_@r^|`@d_@he@`]bf@pKnPjKbQh_@~q@lOl]vPz_@dUzc@|}@vpBfx@vhBjR`b@rj@nhA`Pt_@f\\tk@r_@ni@b`@vd@jHhHzEzEhPnOtj@~d@bk@bd@vIdHzw@~l@xrAtjAre@ff@v\\x`@fk@bx@dVva@hRza@rJjVdPba@jJfWbMxb@xKf]lCnKxCpL`Qrv@xLdt@bFh^rEv]tBvQzElj@BZrC|b@zBpf@pAha@z@xl@f@pt@q@hy@o@hXu@tWqBbe@_Fdw@cGlm@oDp^{ApNqD|[uDr[yKvz@qCrRyGd\\cIja@iMho@qC~MiI`d@sDxSyEtY_Gx^kH~b@kI~l@}Ebb@qGzo@aCxVsEdl@u@hLaAtOcAvPcA`Tu@lQEv@{@|Sq@lUi@fSg@hRc@|QiAjf@kB~}@wA~t@iA|b@cBrd@aCpb@kBlW}Dz_@aDjWsEzZcGz]yFdYeIha@mRtz@sR|x@cQfv@_WldAwQzu@aFrSoGpXyF`V{Jxc@wJve@eHl`@uFfY}I`k@wEr[eEjZqAnKsB~OgDl\\aD`_@kCr_@eBfYqBx`@w@zTo@hWg@j`@[xYAf]j@pn@l@n^bAn\\l@dNj@|LvBt_@lBvXzBhWxD~]lEz]hDbXjFj^xGha@fGv]~N~w@xOrw@~SxhA`Jvg@xLts@fE~X~Db[fE|]nDj\\~Cj_@fCj\\rBr`@pAv_@h@|VZzTVxWFhWGjVW`SYtOe@nVgBlf@gChb@cB~U_Fzh@{Db^oEp]uGhc@_K~o@u@rEeGj_@yVbwAkJ`l@kA`IaJbn@aEjZeF~d@aEnb@m@`IkCf]yB~_@kAp[k@nOo@x[UvOInFMje@NdZ\\xXj@zW|Atc@|Bxc@fDtf@xBnVdAtKhFxc@pDnVhDnUvBbMfElUxHx_@~GvYrE`RfGjUvMje@vFdR~FdQjShk@nIvTdQlc@rB~EdCjFhOf^xNl\\|AhDlDxHrShb@nRf`@jDvGdClEtFdKbLrStDtHdXvg@hFxJ|Wte@tXzg@lNxXlSfa@hKpTjKdWbHvQnHnS`Ll\\zAfFxDbNbEtO`E~OxBjK~CvN`FhW`EtVjE~\\`Dl[lCz\\bEhk@fGfhAlGhiAzDnk@`Gdq@tCzVfBtOhHvj@jVr`BfVbaB|p@tnE~Fp`@xBxNzKln@j]l`BnUhy@nVps@dJpU~C`I|Qp`@jRr^bKtQtFlJt^ni@t[na@nmAlkAziAnaAhcAf}@~w@j~@rk@v{@lk@~hAncAldCj^x}@pt@fjBb^tz@tVvg@nZpf@|^le@xk@hi@d\\vTx_@rRhV|I~^fJ~c@bH`WvBz]zCv_@nCl[bD`KvAvMxCp\\~J|TxKvUtOnTbS~OnPp\\zg@lIxP|I`TpMd_@lNfg@fN~o@`Mjy@~OpiAvMltAhGbu@~Dbt@hF|jAdDdyA~@z~AQlx@Mbp@w@nkBgAv}ALpyAPvb@HxFhBpz@`D|y@bD|g@xCz_@`Gnq@`VtgBz[bdBjZfkAzKl^x_@jhAne@rgAj_@pt@b[xi@j_@`n@dO`VfS`[dyBvmDrLdRjz@nsAfH`LxuAzyBfMvT|KhSfXxh@~O~^dQjg@~Nbl@`Jxg@vI|p@`Gvx@rBzm@fC~rA`ChtAtBvoAfC~v@jFby@pQbuApZdvA|Rjs@zQdl@|A~EdJdY|P|g@zLn\\jUjm@tPh`@zTzb@nC~D|OnUvOpR~LdLdShQz\\`W`l@t\\le@rXhk@n^rg@bf@t[ta@fTx^dTjg@tMv]pCtJjFvQ|Kjf@zIff@tL`}@hYrsBdMt}@lSvnApb@|rBxTv~@Lj@v_@jwAzs@vkCnhA|_Ef}@pvCz_@vhAtzAroDzm@pwAxU~g@fj@fvAt_@dpAbVtcAh\\t|AvPvw@fQjs@p`@`yAhXbw@jXrx@tIhWr`@reApQth@dN`a@~L~a@hN`g@~N|h@nGdXrS|{@pGd[zEbUpIf]v]r{BnN`fAnG`j@vHbq@tHz|@vJvrAvIbaB~LlsChGlwAf@hKxA|Y|Pv_BdJbl@jQfbAd`AdfF`d@nqC|XtsBjHti@bGpk@lEnl@vCte@lA~f@x@dg@Jt`@c@jh@}Ahe@qBvg@oCd`@wEhc@yEz\\{Irg@qGh\\wNpk@iuAvjFsnAtzE{L|h@iNbs@cInd@cQ~nAqF`k@oFdp@cGniAiCh~@y@~cAV~bAvA|q@`C|q@rJ~}AhIzx@`BdN`Ghg@~^ddClv@ngFjpBtsMdSdsA~Fze@zBfStCtZlC|[vCzl@nA|c@b@|_@@vUQrT[|UsAfe@_C`c@mCh`@{C~ZuEv_@gF|]kIfg@mJ`h@_K`i@yIzg@eJnm@eDzWiCpUwCd[eCpa@wAt]y@hZ]zTQz`@Gt_@Hpu@`@lsCThxArApjIB`Kv@fnELpjBCr\\AzKoErjBy@|eANhbA@zFCvy@lJdxDAx{@XhnB@~C\\rmAz@fq@pB`v@tBhe@fC`c@xJtnAzNpeAnPpaAdFvU`Onq@tT~y@vbAr~DdVdiAzXlrB\\dCrLxoAdGbgAxCn}@zBn}@l@p_AoBrhBiUprFiG|jA{V`hEyM|kB{NjwBkLvwAkKpqAwNvdBwk@p_Gis@lrGqp@ljFms@|oFqZtfCsIpnAaEbhAwBh`C`D|dBjJx~AtRfeBd]rxBxw@trDtS`hAnLlv@hFn_@hHto@xEfk@jDzj@nDb|@vA`fAFzu@kAzcA}C|~@aHvgAmH|t@uM|gA_ShkAip@~oDwJzm@}LxbAiJjbAoFp_AcDt`Au@xu@?zv@nBbkA|B`t@`Fdy@fKthA|LbgAhmEz_]`KvdArGr`AvDfr@|Cr_A|BpiBbA`{D~@z{@lBr_A`EpbA~Wp_FpGpmBpCzhA^jnBgDlsBqF`vAgKn|A{ObfBmLxgAuSxcBsCjWaJfw@sGpv@{Fdz@oDbz@yAhf@kAn|@Wrr@|@jn@lApb@fCpw@dFf{@bPptBlLfnAxZvoDtGv}@jIhhAfLrvBnIrtBhIlcDhBjfBLxS`@nw@mB~xFyDfuBoHp}BsJhuBsGhnA}Gn`AeIjfAmPdhBkLdhA]bD_XbyBiSdwAsTtvAoV~vAoXhuA{o@jwC}u@p{CetAblFkv@~{CwTfbAwShdAyXjgBaOljAeOz}AwJ`wAuBl`@}Dp}@eCtbAaBvlAIvEFdiBp@vw@HpJpF||CTpMhA|o@t@l`@dRpcK|Kx_GzCl_BnFbrCdD~oCRdo@Ul~AkDvoBgJbrBuBr^cIbfAyi@tzFsOxcBgMrdBsJdaC_C`yBb@pgAlBbiA~HbrB`IreAjKrkAdY`vBda@hxBtj@z}BdtAhvEjU`}@fRp}@fN`~@fMt_AdIz_AvE~w@hBlm@~@p[j@l|@Sdy@sAbhAaFrhAeInbAeKx|@uMt}@ePn{@iWrpA_VbjA_UzgA}Oj_AaOtiAuKrjAgFj{@sD~~@yAzm@i@~u@Phc@h@|k@zAdt@`Dlx@T|F|HbgAxKlgAdQtnAhSxlAjo@zoD`Lvm@bDtQdt@ldEzT~uA`SzvAhVniCpOlsCrEhtBz@huBqCzgEmAftEx@|wEtBpoCvDdrCvHjvDdKppDxNnmDhXnoFj]~mFxb@liFb_AnzID^da@n`Dhd@ldDpD`Wt@~Evt@dtE`e@vjCjf@bfCne@b_Chb@fbC~Fxa@nFfb@xLxdApTvnC`IviBtEdwBj@dcBcBbhB{KdmEoB`bAiA~_AKbkApAjiAzBbcAjExbAhGjdAzIl{AxN`~CtAzuA?f|@{Ab|@eBxn@aDtp@gLt_BoKv_AmM||@iM~s@qC|OkHx_@yUdnAoQhbAyM`_AcIvn@wF`o@cFvn@sAh[mDtr@cC~u@qCd`AkBto@cEj~@uHraAgCfUaIps@qNd|@eOlr@qExS_[xgA{b@~lAo`@xw@eNdWuLbS}]lf@_Zb_@qp@`q@_s@fg@sy@nc@{k@fSki@tLmz@rL}h@pDqjAzByXq@mHi@gw@eEiw@aGqg@iG_]{GoeAuWsv@eWip@sYmk@cX__EywBsoBabA}k@uVcl@uR_PyEcb@iKaa@_KcdAsP_kBeMcsBhAwdAvJodAtOa`AfTmzAn`@{rAj`@w_AxT__AdM}q@dFo{AlAuuA[{uAnAuiArG{w@~Jem@jLuq@lTqu@d\\ax@vc@il@zb@a`A`z@sb@~e@w`@bg@aSrX_RlYsOdXuWrd@ed@p`Aw[pv@wc@vtA}P~m@iO~m@a\\x}AuJlm@}QdjAgAxHyA`KsGpd@{Uf`BmEbY{G~b@{Xd}A{Mpn@uPnu@eYbgAmZhdAic@fnAm_@n_Aae@xbAgb@p}@ie@l~@kgChzEey@v`Bue@bgAqb@jbAsHzQmy@|{ByQ~m@wQ|m@qg@rxBuR~}@yTnjAiKdq@yFn_@wa@tbDm@vEkJ|~@kQ|iBeJv_AqR~uB_IpbAmF~x@mJthBmBzl@[dMsIxkDkPdiIsAlp@sEfeC}BtnA_Az|@Hjy@n@nh@rAnh@tAp_@xFh~@tHz{@hEl^bIrk@pI~h@~XrtAz[~sAba@d_Bjc@vgBry@teD`XnfAvLri@zOby@xMn|@hIlq@xE`i@zCbf@~Cjn@fBxp@t@`bAi@`dA}Bhv@aC`d@o@|LeDtd@eFhh@_Hxj@oCnRiGd`@_Hd`@oPvu@oMpf@kPpi@iMj]wVbm@m[ro@qZxh@}Uh^mi@bq@{xAz}Aw~@~aAwz@t}@{_@jc@yYt_@qk@zaAa_@f{@aSzl@gI~XeD`KcApD_BtFmW|pAyFda@aGjg@cEdc@iD`f@sB`c@wApc@c@nb@Mnb@f@hh@pA`h@vDfw@rHf{@jIxo@zFla@`u@hoExUnbBjOvlA|_@pjDtFxc@zG|c@bLbj@bGfUjFxRdIzWhWzs@v[v}@~Rfs@hKze@z[fjBpKje@rKpb@jN~a@fOh`@hS`a@lcAvbBhTbb@|Tdh@hS`j@rQtr@|VrhAfI`]dJ~\\vTln@nP|^lJxQvWnb@lNzQrNjPpcBz_BbQ|RnTj[rSf^vWbl@hVrq@~|@lsCrMt^~Mv\\lTvc@pUt`@tUb[t]~]tY|UnqAn}@fb@rYpRnQjRxSxYha@bXjf@`Qp`@tOtb@|Rvt@`Pvx@dHpi@vFvp@hC|h@vAti@rAhkCrArs@|Adh@nC|g@lFfh@jGle@~Ovw@~v@x}Cbo@hbC~L|f@fL`f@pKnh@~Jtq@tHnp@~Hv_AbFbz@nG`wAtEh~@fAhU~}@jnRrAn_@|@lb@Xlm@Yn`AcBxq@mChh@}Ezo@oInx@aPzsAoz@l{G{Hhr@uIx}@gGbx@mEtu@cC~h@{DziAaCtsAaNrvMuBdqAmEhyAoCho@wDlu@{LvfBoKxmAoOzuAcFha@wHxj@{I`m@qUvtAuOzx@cUpdAeVdcAuW`bAmXd}@eVzt@cWzs@iPza@eOv_@m\\vv@i\\~r@e^`s@a_@|q@s`@to@wNvTeZhd@gc@jm@av@j_AgJdK}X~Zod@je@gbBncB_R`VwSdXkd@zq@q^ro@ge@deAc]|cAeNhf@sM~h@kO`r@uA~HqE`WuIti@gGfg@mFzc@cFfm@wD|h@eEts@qGrdAm@rJ}Fnv@iDn]wDf]cEx[kEfZcIjf@uMvp@_Svz@m|BzdJqSn{@uR~|@uTplAkL~w@sJtv@_Hdq@oGnr@}Ehu@aErv@wBbo@_Bzn@gCtfBwBhsB}AfqBSj_A`@xb@v@|_@pC|n@bDvf@lFjk@fFjb@lGda@vJth@lK`e@~In]nFjQ`HbT~GfRnJ~Vt|@r|Br]b~@vNr`@xHhV`Ntf@vJ|c@bIte@nH|k@zEpm@tB`^jD|`Ar@`WrIfzCjC|~@dCjeAvAfm@_@`lAyAt_BdBx|@nCv{@zKjjAh@bGpIr_ApEd}@nJdfD`Bjl@dAtl@j@pk@Fjj@Qti@k@pc@aApm@UtIeAvb@_M|lD_Bjg@gAj]qAzf@s@`_@m@~k@Yvs@I|v@Ttr@n@fo@dA~m@b@hU~DjqAtC|p@dD|n@tSv~Ddc@jkInJ|jBpDxaAjCbz@pCtxAr@|q@rBbaFpAhpAzAf}@dDn|AhCt~@~DnaA`Ctk@vI|~AzKv`BtAlS`O`hBxH~x@vKncA`LvaA`PjmAbM|{@xNn_AhaApgGpjAthH`EhWlBvLhbAlkGrEr[lJls@tGxi@dMpjAzF`m@zFjo@rD`g@vD|g@VvD`Efr@rDtv@bCnl@rCfx@bBvm@jAzm@zExuC~Azu@zBhu@nCrw@nDfu@bEpu@~GbfApIddA|H`{@tJ|`AjMdiAvc@nyDhIfy@tGrr@lIpaAxIhlAnGfbAbFl_Av\\vnHjFv`A|Fl~@|Ffx@|I|iAzKrjA`Fbf@dOlrAtOnnA`Jnp@|Gte@v@rF`Mzv@dLbr@tTjmAj|C`fP|a@hzBdPn}@bRxgAzPfiAlgCp_RrNnbA|ThvAtWdyAnNzs@hWxnAbUvbAf^rxA~[flAz_@`rArVbx@lUhr@``@xgAn^n`AzWrp@x\\rw@dWvk@xYdn@`i@`gAltAvcC~\\pj@zc@`r@j_AluAdqBtvCbL|P`HvJtK~ObIlLzpFtaIni@l{@zl@hbAxl@vdAnvAdkCz`AvpBnPp^xj@voAbq@f_B?@zeAzpCht@tsBrWbx@pbAlbDngDlsLry@lqCbL`^tMva@xh@`aB~pAdsDzzB`oG~_@hlA`]`gA`h@|fBjCjJzdAd{Dhq@hsC`n@duClnBzmKjXryAdXnsAh_@hcBnrEniR`e@b{BhXjyA~N~{@vPzhAvQptArL`cAvLbkAzIv~@zG|y@rH|cA\\hGtK`kBrEhiAhDxdApCjlAfB~lA~EbcG`Dl|ChDbkBfE|}A~HzxBdYdaG~C~z@~CvfA`DzaBdAddAj@jdABxs@Mjn@Q`z@Izd@If]{@reEE|dA`@|fAl@x}@nBhgAT~JbBho@jEluArDz`AfDru@dI~tApJhpAjHp{@vId}@lOntAhJbv@tN`fAbLjt@`K~n@vOp~@pb@rxBhKpk@xKdo@jQpkAnRpwAzHjq@t[j|ChJr{@fJlu@pNzaAxL|t@lEjVjFxYlKlg@`Qbu@bB~GrKlb@rK~_@`Pvi@pQpi@bY~w@jM`\\nStf@fRva@`Sha@`Qx\\pT``@hTr^p\\lh@x~Az~B|bB~bCnSv\\rRl_@jQb`@bL|XpKbZbQdk@dLlb@nN~o@xKbm@fKhu@nGhm@fEvj@nBb]~Bzu@x@po@Chm@{@ps@wAdh@wAhXwAhXuFpq@wHdq@sFba@eLdp@qOhr@aN`g@iQnj@sIzUoQhc@}rC|`HsaAbaCqNl]kl@xvAiQpd@}Xfy@iUzz@yQp}@oHvd@kKbw@mG|p@wFl}@gB`g@mAzr@W`{@dBnbAvDndApTnyEnFdxArCjwAl@tt@Bd[B`^Qhz@gB~nAgB|p@qQncFwEdqAiEjrAaH~oD{Af~BYnhARfpB~@vyDvAj{F@nj@k@p_AkAr{@gDtjAqD`z@kHxjAeHd|@qHhw@yHvo@_Z|xBsl@veEoJly@sE|i@sF`cAsBjo@Wb_@Oj\\T`m@lArl@fC~p@pErp@xJ~aAxOtiAbTlxAhGfg@zFzg@dHt`AxD~aA`Axt@?fy@uAvu@iCbu@qLn{BuE~bAuAbbANdbA`ChcAjFfaAxIn`AxL`}@zMtt@pN|o@vOdl@fZ`~@n`@zdA~\\h`AjNve@~Oho@~@xE@DxKrj@nGta@rCzQnHfv@bHf{@pE`|@lJfyB`K`}Bx@tQzFfaA~Dvf@hFje@~Ifq@jJ|j@|Ht`@vOdr@nOzj@vTrr@zX~v@tV`n@dOj]xWlm@ri@diAftAvrCxj@fnA|m@b|AbVds@~Xv`AhPjp@rM|o@zKjq@|Izr@hGhs@pEzs@lDbmAPxcA_A|k@?Je@|XsElbAuHb_AyJhx@cPhaAmEnSCJgCjLqVrdAyo@rlCiArEmJd`@aMxg@cL~d@yAdG_Kza@ocAreEcOzk@oNvf@iJ|YiJfXkL|ZiQnb@cTvc@wJnRcUda@uJhO_Zra@kSxWwx@lcAcb@zj@oVl`@mSd_@kOj[aFfLgO|]aOnb@eNde@}L~d@sKre@cIxc@yJlp@_Ff`@sFzi@oDxd@oBt_@i@`MkAt^m@z\\[dc@?la@`@ze@|@~e@bBld@~Btg@hD|k@tCfa@n@fJ~Dre@~Gzq@|Flg@lHrl@bIhj@vIhi@dMds@vKfi@jN`o@tNpj@jJ|\\jNxd@bP`e@~Pvc@xQ`d@vhC`iGdc@biArSrl@~Vbx@pPhl@nOpl@|Nvn@dI``@jK|h@xKzm@~Nr`AhGfd@`Itq@nHps@pGlu@vDth@xClf@`Evw@tWbnGd@jJlH`pAbE`k@`Evh@|Gpw@fE~c@dGhj@`p@d~F~QfpB~{@bvJnFnk@lFph@hGjj@nGjj@dFxa@xFjc@nMz~@tB~NdJfm@jSznApOh{@~f@nkCzNrz@zMfy@lKlu@rJfw@zIlx@fId~@hH|}@`UpnD`J~lAvJx}@vGjd@bHba@~Hj`@zL`h@pUry@d{@jqC~Svv@rPjq@~Lhn@|Jnj@zMl~@dFva@vI|}@hGf{@bChf@f@dM|Ap`@xAxs@n@dm@rAfeDhAztAn@be@vBngAxAbg@vC|y@bWxlFfChj@dp@b_NzEfbAbHdxAb@zIb]heHrJlbBfF~v@tH|aArNb}AzDr]pP|uAlLp}@nu@vnFjN`lAjIp_AlDdg@pGlkArM|eDhDlr@fE~s@vF`r@dKr|@pIpl@nOj|@je@hcCz[teB|K|t@xH`s@hDhc@~Bx_@pC`q@bAbh@Xr`@E`k@k@he@mAxb@{Bvg@yCvd@scAbdLoIxfAkD|m@aC~y@i@np@Ddy@fA`i@tDzjAxYr_HnBxh@lAf_@xBzz@vAbdAPft@?fo@a@rcEBzk@ZbeA`Bx_B`DjxAvCraAfDny@nIh}AvKv}AlrAnmOhJrrAtGnnAfExoA|AbaAz@nrAGdm@{@vfAgRpiIyBflAUfc@Hje@\\j\\nApo@zCpn@~F`w@zG|o@lJzq@nj@vtDbL||@dEjb@~Dfh@hCjf@~Bhu@v@dn@Fp]Wfe@oA~j@uBji@sDjn@yFtm@uIhs@sHhe@aItc@_dChcLwS~hAeMjy@mJru@cIhx@qEdi@eEdo@}Crk@mLx_DcA~Xi_@liK[|Io`@lkL{Bb`Am@~l@Irj@`@nx@lA|s@rB~o@jE|v@|Edu@lg@lrGzF~|@tDp~@rAti@nAtbAFdq@{CjeJOjf@cBjbFqBfgGoAneAkAnp@sBvu@AJoDtw@gEfr@mEnl@{Fti@}Gpl@eHxg@wM~y@wK|k@mRv|@}Ur`AadB|iGcW~aAoM~k@_Jtd@wHvc@cNj`AwJp|@eExc@sE|l@aEjy@}B|q@qAbr@a@bz@Tn}@jAvk@dAl`@hCjr@fCte@jG`z@tFpl@tp@hnGhB|P`d@xkEbJniAfFnx@zCln@|Bln@lBreAt@tt@Ch}@eAhlAgBvu@cCju@mDfs@mFxy@_Hzx@eInv@{Fdf@yHjj@eH~a@uq@x`E{mCpuOoQfhAsIbs@kGfq@gErt@{Bnu@aAv`AXhk@dAxm@tBfn@`D|h@~F|r@rGxi@tFl_@fFzZnKdj@`Odn@rPrk@lPhf@nNz]tSzc@`KlSnLvSjXra@nVr]rc@hl@leAbuAnYbb@pSj^|Rv_@`U`h@bRrg@xJ~ZnJx[jMrf@xKdh@hNzx@fJfs@pEzd@~Ett@xCbv@|Axv@H`m@o@dn@gBps@}ObiDuNl{Cex@vxPqD`|@y@ha@Mh`@Epm@h@vk@`Btr@vBbi@jCre@bDlb@|E`i@xK|{@bG`a@fHdb@rJje@jJla@hKpa@dOlg@`Pbf@jWfp@`Qn`@nQr^nWhe@`h@t{@pk@veAjZho@`Tbg@vPxc@rQ~l@vTrw@xObo@nK`g@xW`|AfdAftGhyB~fNvLzu@lw@v`F~_AhaGtb@|tCtZldCjJ|~@pIn_Ady@hnLhi@txH~TvoD~F~bArDny@ThF~Alo@x@pt@d@`jBrAd{@nBhv@|Crj@dEbj@lHhs@lJbr@zFr^v^z}Bv@~E~Nv~@`dB`wKrXdkB|BtOdFd`@|Fzc@|KhfAfF`k@lE`k@xDjk@dDbl@|FrqAvBh{@nAzx@r@`y@Nrw@g@jy@w@nv@cHn_DaB|o@{Bxv@{CheAi\\jkMkQ~zGw@zZyGreCiG~dBuGhqAiNztBsHp`AkZzoDeL`yAuFbw@{F~}@aDdo@qDdw@wBnm@gBlk@eBjv@y@de@k@fk@g@jv@[x|@?hg@|CxrMEhaAi@zm@{@dk@wAne@{Cpq@cE~n@mIj`AoK~}@iM~z@oEzWig@voCqKfp@yMr`AuKxfA}Cv_@qB`Z}Bt_@yCpx@mB`s@k@hp@Cnt@^tk@vA`q@pDdlA|S`nF|`@bcKrI`uBvDvv@bItwAxHbhAxHvbAnNh}AriAlfLfG`m@dEra@|cBjwPpcB`sPx@|I`_@lxDhNn`B`Kf{AfHhlAvFvlApDh_AbDhbA`DfpAjClhBp@r{@Tvp@Lfp@K`bAi@xgAeAtbAmKjhGsBhuAm@~`AKx~@V`qAt@fy@LlL`@t_@`Bpx@@X|Bt|@|Ft{A~Dbx@~D~s@rHhgAzGnz@lKlgArKtcAlMleA~PzmApRrlAnTvnA`Rp`A|TvcA`_@`_B~{AdmGnc@jtBzSvhA|RvkAxUh`BxgBpfN|yAvgLpuC~~TrPrkAtKnt@tKvp@jWlwArLfm@zNpq@~Z`qAfVn_A~`@hvA`xCb~J~h@|lBfc@feBvTp}@lb@flBnl@|vCbf@`qCbVhzApX|oBlNpgAxYbfCxQb_Bb\\`oCdTbzAnU|vAjRvdAdXdpAdb@dgBx|Bx`J~pBvbItHv\\la@`iBzN`s@rNjr@zh@zzCnVt{AvTj|A|V|nBX|B|T~nBvMnrA|LrtAbLrvAfM~jBrJjdBvB`c@hA|UlFzoA|DjiA`GdzBxBtoAz@|v@jB~dCHbeAGbhA}Ar~DgYh~YIjPaAv|AMx_Bf@ffAvAbcAjBp_AjD|gApCpv@pGtnAbGd`A~Lb~AxJlbAjKnbAhgA`tJj@`FnJb|@hIb}@lLxqAhMz{A`P~`CxZjhFrNtjBvGhw@`Hfs@`hA~|JrSl`ChN|}BvIflBrb@tnLpFvzAfI`kBdP`uCp@~J|JbzAbGt|@dn@|wH~O|gC|FtfAvDb~@rBdk@jAbd@fA`a@`Avb@fAbx@tAv}AXngAWrfAeBvcCsC~tAmHzwB}Dx{@sNrcCiIdhAu|@d~JmTbnCyLxeB}LriCiUdvGuVztGkItzAiHxcAkOpgBeR|fBiNlhAsTl`BeS`zA_[paCoVjwB_QplBwMpjBeJxdBsHdlB{DniBgCdiB}Ep}JiDxoC{BnhAiA~ZuB|j@yBxg@gFffAaExr@wEnv@mIvrAoWvaEoHpjA}Bp^qKpuBiEf`AcD|y@{Eh}AeBf_AqAp_AcAxhAe@pgA?nqA@rJXvq@jA|mAdEx`CzCtiAnE`mA|FnmAnKzkBfNzwBpp@dqJtFfbA|GzsAzGliBjD`iBbBt}ATv|Ae@x|A?t@}ClzBsFlnBgMpeDkSzhFkIfsC{C~sB}@ndB@vfAx@jmAzApcAlDp{AvXluIbFpjBzA|vAUpbBaAzo@}Afn@sFxxAeJxsAuK|kAaOfmAgVx|AcL~k@}L|k@wLzh@_Uj{@}U~v@cm@hkBgD|Jge@jzA{Rps@}Obp@{Mtm@_Pdy@yNj|@qMz_AyKfaA}Hf{@uGlbAeG`oAkFfwAwL|oDoHz}AsIr}AmIfiAiL|rAoLhjAaKb~@iEn[gJdr@_\\`uBeKpk@aGx[iGv\\qnBplK}p@prD}SdoAsShoAmbAjqHg[xoBoW~zAw[v}A}UtcAoV~bAcW~}@mW||@uVzu@i`@tjAkLxZqPvb@wSbi@iLtO_OxZwX|i@mNtXqDtGkExF{FzGiHnGyFtEwU~NoHvEiCnBqDhD}BxCyCnEaDfHkDfKcCbMqAvJs@dKUtJThKpAxPbC|O|CnLfLn_@bMf_@f^tiAHXfHnUxDpJxEvJdFdJlHvJ`IpHtGzFlIzF~I`FdLtE~HdChIzBvLdDfb@`JlNfDxVvFbFs@nJ|BpKvBjOvBdzA~OfPhCzS`E~ZzHtk@~NxWfGpb@lIv`@|GrWvD`p@xHvy@nHbo@`D~c@jAfo@p@tw@a@|Z{@v_@{Apa@uBHA`]qCfb@iEja@_Flb@kG~_@uG`w@_QxfAoYlj@aRhi@cSfl@qV|kAgl@h~@mi@he@sY|v@ag@zq@ud@v{@yj@j~@il@vDaCzbAim@j}@ug@j_Akh@v}@ag@~{@ug@`mMc{HbXsNh[oOb`@{Pl\\qM|`@sMnTiGnUaGhm@gMhl@oIbp@_Hro@qDv`@aAjc@GdY^|]|@|ZvBbXrBx[|Dhv@`Mh_@xHtc@bJr[pGphAvShfHbtAha@fGvx@fNtaAxNz{@|Mdp@|Kfd@lI|ZnHjE`AxT|Fb\\zJp\\pLx]`Nj\\hOx]vQzRlKtSnMvBrAjQ|Kh\\|T|b@n\\luA`jAnm@tg@j`A~x@j^dZdc@z[vOhLte@j[bh@~[b_@jTl^bSbe@bV|~@pb@vn@tUj]pLf[dJ|VhHb^xHxe@`Jzw@zJbo@nEhh@tAhdA^n^{@bk@cEfFc@lOuAhQ}A|}AcU|bA}TjhA_[lwBqv@t{@ub@xfB}w@nnAod@b~Agd@zrA}Xpe@{HtN_Cfd@wDzFe@lvAaMxvAqBvdARxv@vCnbAxGtt@bJfSdChO~BraBtZhdBde@zt@dWxwFv~Ab`FflArgDbm@|qDfb@hlCjRtxBvGdCH|iClDnoCUrh@GppHuFd|DuQrd@wBvtBmOtvBiT`tCy\\~sF}o@zfCo]~tBm`@nbCyi@pvEqkA`bCak@li@yKj}@_NtgAwLniBuMvuAcCh`Bs@poBjHvx@jGlkChZrxCnb@hyDbl@zrCph@rqDnu@deB|ZzfAtP`~AjPtcAfHfm@xBro@~A`Td@vCBv]Jbq@Y|rBcEzmEc\\~UsB|jCcUnfEi_@~qDoXjmDeYxyCiV~vAqLzxDkRz{CoIfyDwIdnEiMj`G{QfbBqBzsAfBpfAxE`gAjLdpAzT~QdD~_@tJbkCrt@niA~d@baB|y@v@`@xrAn{@~lBjzAjqAvnAhjBxqBdcBnjB`xBb_CbiBvkBziB|iBzsAttAbmAxkAhoBvcBzoBf|A~aBtkAllCtgBxtBpvAdwBbwAxeCv`BvrC|pBnaCxqB|lBhoBbJjKhpBrdCviAhaBp~AthChgBh~Cnd@fx@t^jn@xgArlBfa@tq@jNrT`a@tn@dq@r`AjN|RzSnXbc@li@f_BrhBxsAtpAxzAtlArmArz@fwAd{@djA~j@|iApf@x_Bnj@jgApYv_A`TpEbAbw@lNnwAnSl{Cx`@baCn]bkA`P`Db@jzAnSt_AnRl|Aj^doAda@`f@xQf[rMfe@xR~l@zYt{@zd@zx@fe@hjAds@txBdsAn_CtxAbKlG~dBbbAhcBt{@hhAfh@vdAxd@`tBtz@dgD~uArhAvd@jfAth@~JfFrPrIjy@~f@jv@tg@jeAry@`z@ls@xf@ff@t{@v`Anq@bx@dfAxtAfeA~xA|uAluBtJrO`zA~bCh`C`hEnyI`uOpC`FptF~_K`t@vjA|eAxwAlD|D|dAhoA~gAthAjoAjhAjeAzv@jdAlp@xeArk@~z@h`@du@vYnyA`e@dGhBt~@tTv_AjQ`m@tIfm@jG~MdAdj@zDhi@pBlw@~@p`@b@hoAsBvmAkHhsA}NnoAoT~pAwZjdBsi@prBer@zaCsz@~aAe]n`Beg@||Aka@|`Bq^dxDgm@`lCu]xsBi[fcBwZ`_B_ZlHuA~PcDflCgg@flBuZ~sB{VziCeYteCyW~wAmMbE_@l{BaTbdCaVpkBmNb`B{Drz@G~qAbDnyCzSv}B`SdWvBjlBbPjmCnY~eDz]roCfWzvApIhp@tBbtA|Bv{A}AvhBcHdeBcPx{@yL~O{BpjC_h@hg@sNdeAcZlqDesAf_Cy~@bxFmzBz}FsvBdtCucAniEgzA`EwAfiFeeBfLqDp{Ayc@`[qHf`Bc`@~eB_Yn{AqMrsBaIfxA?p`BfE`iAzHr|BdXhyB|d@j{Bbr@~cBvq@ffElkBjKjEjYdMv`Axc@|n@hYt^|Ot}Atq@xiBtv@tkAjf@|a@tPl`Al_@pqBfv@xjAlc@~oCraAlwBrt@bg@zPxcFn_BpqC~|@nm@dSdv@nXhx@|Zb_B|q@|jB|}@`vA~v@rcEnlCf[zUr~B~aBpeB|mApn@fb@lf@pYnf@rX~bAdg@xtAbj@~eAd]zoAf[|mA~SbiAfNplAfIvyA`ErwFiHle@m@vlBkDndCeC~}BgBvrBm@rtCwA`bCqAvbB?lz@vAzfA`Grx@dH|bAhNl|@xPdsAp\\lfAp]`rChfAfcCfaAdcAb_@frAxc@xoAx\\vs@`O|}Bb^|qDde@PB|xBpYhH`Aj_BfTdjBrRvv@xEtlAlGf`E|KxbBlFncAtEzp@~E|z@dKh_A`OhnAzWdkAp]xlAxd@jfBdy@|gNnzHx[`PzVvKdeAl`@toAp`@n~@rTf~@tQjsA~QliAnI|uAbEvoAe@fZMlI_@d`@}Arq@{D|hA_MxMyA`_@oFj~@}PhUuEzYaGp~Ag^t~Byh@fcg@scLzcEa_Afi@wLpxByc@hpBmYdfAwKjnBgNd{CmRvdA}JhyA_RddCmc@zmBme@d|Byp@`y@kUruD{fAr`Da}@bpAmZd~@yQ`t@_MltA_Rtz@{IrhJiy@l~BgSfOoAtAMnpBqQvdCqTjnCsVfpBwPpNmA|}AgL|fA{E~kA_BziAm@vq@`A|dBrElnAnHn`AtHv~@|JrxAjSnpEv{@~hCjg@xaAbP|cBdPhcAlFz`Bl@|}@{Av~@mEl`BaPx|@yN~yAgZnaFybAlz@uKtiAcKbbAaEf}AyAbfAxAjpAbI~eDbZlE`@n}@dIhTnBlw@hHdtClXrqAlLvc@rC~aBxN|x@hH|hCtTrp@vEvp@~Ct}@pCb}@bAbcCm@xwB_FdSUnrEcKhf@yA|lCsFx_E_PpoCeSzeCkV`QqBb@GrsC}^hvD}g@|kDee@zyBsYtpBg\\raAkSjkAmXhkAa[f}A}d@~yBqx@rD{Az{@m^plBw|@|zAow@tfBgeAhpAoy@zcBeoAzh@i`@`Fe@`HkEtG_ErHgE`Bq@~CqAbGoB~FoAxFs@hH]|EAtEPdGl@~GjAjFxAbGxBdIlEpGtElEbEdGxGhE`GfDlF|EhJ`DvHjDxJbClIvBhK`BtJtDd]jC~WnEdh@xC`LzCf`@|Ix~@nIlt@pGjf@|PhhAnLbp@pOxu@rKfd@jNjl@~HpZnIxZnO~g@`Qni@hY`x@tZxx@pQpd@nbBzdEn[tz@zMx^nNza@nNlc@lNzd@zRdt@jGlW~L`j@|Lzl@~Kno@dJxl@hDrUdDrVvCxUxFxh@~Ebh@|Cb`@bCx\\|Bd^zA~VrBlh@pA|`@dAh_@dAdk@h@ve@JjMXtl@Bri@Wbo@OhZQjWoB~zAuE~aBmJtwB_Fz_AsRxoCmAjNsBlUqFrn@}Fpp@ObByWtyCiLvuAyEbk@aOvfB}A~UsCrb@oCdg@KjB_@|G_B|YqD|u@iB|a@wJlhDmBl{CTnaC|Ad~B~B`uEaAtyC{BtiBeI`tCoT|wEwTf{EcIp`BiEbvAcC~gAiAjfAiCbqDeE~vCgLneDmB~_@ARuLxqBiKtsAiKfjAO`BePx|AkRd{AkUb_BkY|cBuPj|@iP`y@wUteAc`@v}Aw[jmAkv@luC{n@x`CuEzPUx@iOtj@{If\\W~@yI`\\aTjw@iSvx@_Lhe@qPvu@iGb[iFnWqLzn@oG~^eQpfAaMr|@yI~p@iDjXUfBeNzpAgHxv@gG~w@{I`sA}Ev|@oDj|@{C|`A_A`^q@l_@sEn~B{IltEqIfpEmLlqDyR~kDaOdpBqLntAwUnvBkaAb_I_^vmCm@|D_XzgBcVxtAg^rjB_m@tmCiG`VeVv_AmXvbAsd@~{AkWxv@qZz}@k]``Aob@peAsg@|kAqh@bjAovAzrCe|Af|CwvAdsCcp@|qAyo@hqAeeAtnBky@btA_h@ru@yVr^]f@ej@hu@e}@vfAuaBxoBwrGzyHcuCnjD_iAruAcl@vw@gVd^}l@vaAyg@paAua@r}@ke@piAq]x`AyZfbAgW``AyQtu@aQtx@aRdaA{Mpz@gKfs@cHtl@mJv|@qJreA}B~^gFhz@mDly@{Bxt@wBtnAi@zaABh}@rBzyBxA|}@|FjsDh@~v@Adb@O|c@s@rk@q@p[kAhd@eBzf@oH~vAgJjkAmL|eAsMtdAaq@ppEgQj{AqNt~AsNvkBaIfuAiFliAsFtsBcCn`BY|zA`CreD|IpiDtTjqEdZhbGdIlpBvCrzBt@baDaDxjX^~iB~DziChDdjAlFdyB`B~q@jHv{B~CzmC`@f~B?ZkAjhBkFp_CyDneA{Df{@iGhhAeElj@sg@|gGoDd`@{IdkAoMlsBgKvrCiF~xD|@nqDnJxuDzh@b}P`CrvApAbuAo@~aB{EzxA{Dhz@}Fz{@sO``BgOjrAw]prBuuA|kGuLlk@iAlG{Gd_@}P|~@uM~aAwMxnA}GbjAmG|nAuDdiAcBttAE~~@h@t{@rAxu@zBnu@|GnsAhKxwAjHnt@l@fErKd{@bLlv@jS`oA`z@z_FrM~w@jLvu@rIfm@fI`n@nP~sApUltBxsAfaM~vHzyr@~Mn}AfKnzAzKnyBfDrfAdDp{AtAzzAJzqBu@zjAyEt_BmEr}AgJhpBwLvkBkO`kBylAhvNmDvh@gAnPeKrqByNdwEcB`oBv@jnB|ChrBpH~jBly@hfStHvuAxAlPnVzqCf]pqCvSpwA`AxGtWd|ArX~rAd^j{Aph@foBbl@~qB|r@voBp{B~iFbj@d~Azi@nbBpc@pbBd`@~kBx\\`vB|[||C`Q~uC`Hd}CBnhB}HhnHyAl`CzAf_CbKhtDzh@`~LvI`fBjX`mChRbqA`UxqAxXhsAr[`rA~_@frApb@noAvuAjxCd|@h_BrzArtBjeCvyChj@hv@`o@d`A~o@bnArm@vuAjXlp@dc@znAbc@dxApd@|qBtPj|@jQfeApW~pB|O|cBfJnpAp@bJ~HzrAhHtxAxHziCtBldA\\zRXbU`@|_@TzT`@hr@Px|@I`q@c@r`A_A|jAe@zd@y@|d@yAbw@{Apj@aBni@mBdh@yBbj@_Ctg@}Bnd@yCxh@qDxk@}Dbl@sDnf@sDdd@cEhf@soCn_[kGrt@iExf@kDpe@sBlZaIjkAaHvhAwBja@oBt`@oCtm@iGp}AkK|iC{KjpCyDh{@sGhlAcFnz@qGx`A_IhfAeFnp@aFfi@mIr_AuI`aAkK|jA}KxlAuH|s@uFjl@cFnj@oG~u@_Efa@eElj@eCd`@aDrk@kCvk@aC~u@cA~k@e@pk@Sxc@H`g@Rlb@t@`k@dAzm@`Bbl@vClu@fF~aAlFpu@nEtj@~D~b@vEzd@lFxc@vGtf@jFp^|F|^dGh^~G|_@pS`hA|SlhAdIte@fHnb@lGnb@bGzb@nEl]|Df]pDr\\Db@nD|^hD`a@|Cra@`Ct_@rBz]`Ddr@jBfl@bBps@p@`o@`@jj@V~n@TvtAf@jlDj@fnDFpk@Lrl@^ni@p@|h@jAzk@zAfk@|C|v@nDzr@pIbmAdEhe@xEre@fEp_@~E|_@`Fh^tFp_@|Lhw@vMjw@bYx`BpLbr@xK`p@tIhk@lJ~q@lKv~@rEdd@~Etj@lC~^|Bd]xBz`@hBh_@|Bhl@vAtk@zAh_AhD~wD`A`{@bBn|@~Ahl@zBvk@|B`f@vCrf@|D`j@fEng@pCf[dD`\\tQrbBlRtcBtIpy@~ItaAfDha@vCba@bFfv@dEdv@~FxqAhHncB|Dtu@zEhv@lHz_AlI~aAvF|j@nG~k@zoAl_LxEjd@bE|d@jJnkA`D`d@~Cdf@zCrg@|Bde@bDvv@~Brv@zBbbApJxjFxIdiFjB~gApApgAz@ziAZpfADbx@Kxu@m@|oAgBp_BoAz|@{PxeLy@nr@c@dq@c@fwAD~xAL|p@\\vq@j@zq@x@bq@fP~nJlPdnJfAtl@f@hY~@l|@Xd`@R~`@A|_@Gfa@k@tk@q@xa@eA`d@_Bje@sBzf@{Bnd@}Ehv@yFfu@gHru@iIxs@}Ijq@mLzv@cLxo@wFlYoFnXsLni@uL|f@_ApDyLtd@aPlj@_Rvm@iHlUIVqIlXy`@xoAIVuDnLazCxqJkb@vsA{BbIGTa[|gAmKzc@GT{j@x`Ccj@fiCcuAnkHyt@roDeMlm@_ZprAe]~qAmX~~@}d@ztAke@xmAge@pgA}Yvm@qi@vcAqe@nx@eUz]GHkDlFwV|^GJsPvVwtCb`EuHrLyf@|y@}Rz^yWrh@}Ufh@mMpYim@f`B{e@x|AaZvjAeUtdA{RhdAiCzNuLzw@}Grf@_Hxj@qF~g@wFri@uB~TwC|[eHrv@kRhsBeJf_AwAtNgOpsA{PbqAcRfnAwKzo@sNbx@u[b~Ag]dxAqX~cAqf@|bBADgJh[Of@ud@dsAkInUmIxR{HvQov@`hBaF~K{F~L}FjKsFjJyHpLoJlMo_@nf@kLnOcGhJoDbHoDvHwCzHkD`LiC`M_BvJsAdL_AhMa@fKIvK?rHNpHXzGv@vKzA`OpD|XdEzYxEfYdKpi@bJbb@pH|YrIt[bHpVdJbXzGnRlF~MfEjJpEnInEtG|FlHxD~D|FrEdEdCnFdCtGhCfH|AdGn@~FR`GCbHo@dG{@nGqA`UkFtF{@bGi@nDUnGHdEZrEn@bF`AbFzA~d@bRtVxPx^nYt^~ZvWjV`[l[re@fh@`s@h}@bLlPva@ro@hYff@~\\~n@lXvj@tIlQbq@byAxoGvfN`j@tiA`Y~h@fZ~h@vZnf@t\\nf@hSpXtTnXlUvXjWbYdiAtiA~nAdlAjk@zk@pUfWhYv[xXx\\pW~[jTvYrb@vl@h^xi@d]ni@rc@xv@nUvc@dTda@bSja@tc@naArv@hbBp{CxvGhf@h`Ala@bv@fh@r|@dj@lz@n`@~i@~a@fj@rcAbmAp\\t^nc@|c@jhAdcAjn@df@np@de@xm@``@vk@z]~nEbeCxAx@fb@pUv|Ad{@lm@h^tXbQlg@l\\~a@xZpg@zb@hd@v`@pfAhgAphA|tAjg@`s@xj@~{@nt@poA`s@nrAn|@zfB`{@rjBf~@j{Bn|@x{B|w@d{BhOzc@hf@twAno@tsBb`Ar_D`aA|~Che@xwA~g@zxAbp@poB~l@|tA|i@nxAfH|Od~AhmDn~B~rEteBdvCfvAx}BdjBl{C~gAfgBzw@tqAb~@nzAbe@hs@d_@zi@z`@li@r[t_@bo@bq@v_@n^xUlRnXxSjn@jb@`n@t]d\\vNxf@hT`w@xVh`AlUbb@zGdz@`Jbd@dCfi@nAvaAi@lr@qDxk@eEbnBwNlbAqGnSc@tbBaC|i@d@fg@dA~s@tDbx@zGpr@jIpfArQj{@xQfZhIphAx[|i@|Qvi@~R~eAte@pp@jZby@hb@rh@bZlh@f[|f@z[zf@n]nu@vg@fs@jk@p^n[da@r^f{@`{@zc@he@`LrLdWhXzjBfrB@@lo@zr@rs@~u@bq@lq@bQlPbe@zb@bVjT`TpR|VvSbwEh}DxfF|tEtiGjuFffBnyAreBdwAt~@nz@zz@t{@xw@f}@ds@fz@`h@bq@xg@fr@rqA|fBfZ|_@z^vb@j_@f`@|_@t]v`@d\\~YbUpZjSn`@vUr`@nShvAxk@zd@zMbf@dL`dAbO||@vHle@xAxi@Zrq@aAne@kClk@iFfWoDtWqEjV}EbWoGhc@_M|GmB|h@kQdi@eTbZqMjp@qYj[iMj^}Nv`@uM`_@uKz^qJrb@qIj_@kEn^eCzc@cCjd@s@df@Wlh@bAbq@dCno@dFbo@xHdi@rKrm@fOfl@vQ~h@pUrd@dT`e@`Vpe@vWtr@zc@br@hf@pnFhxD||@`o@z}@`p@tz@zo@dy@rq@hh@jd@ph@je@zv@vq@fr@dt@vfBpjBzm@~t@vM~Olw@~`Afz@hiApw@dhAblBvuC~kBbxCxY``@xNfSvFrHdGxH~GpIfHpI`HnIfHfIfRjR`QjQvHpH~JrJdKrJxKxJxKdJbKhIbLxI~KjItFbEn@lDfpA`~@r_@vXfZxTxIfH`HjGhGpGhFxG`FzG`D|EdCtEhEpIzCpGZn@tGpNnHbPjd@zaAvQf`@tChGvCfGxCbGzC|FdD|FdDtFhDpFjD`FvD|EzDjE~DdEhExDhEhDpE|CpEjCxEdCzEtBzEdB`F`B`FtAbFlAdFhAhM~BjMzBtx@jMhMrBpJ~A|AVbF~@bFbA|EzA~EhBxErBrEbCtGfExExDfF`FpElF`EtFxDjGvDhH`CbFxBtF~BtHxB`IlBtIfBvIbBdKx@rGt@rHd@rG~@hNtBd\\lBpZxEha@jAxQbBvUbB`TdB`TlEbi@tEji@pEni@jY`iDnRr|Bdg@xaGnFdo@bF`l@@J~AfQx@lIz@lI|@dI~@nI`AlIdAbIhAfIjAfInAhIpA`IpAbItAdInD`Sze@nhC|Mlt@dF`XxTblAjJ~f@xDbSzDxR`BxH`BvHdBxHdBvHfBtHhBrHdB~G`BnGxAlFvKn`@jFfRfFhQxMxd@xMvd@b\\niAr\\rjAh\\ziAr\\rjAtMpd@dFvQ`FtQ~EfRpEjRfEjRzDvRrDbSbDbSzCnSnCnS`ChSvB|SlB`T~A`TvAjThA`T`AfT|@xTx@rTrB`j@rBfj@jC~t@h@jO|E~nAhFhuArBlj@rB|i@lB`j@hBhj@nBdj@rBdj@tB`j@rBbj@hBte@|Bbn@hFfuAjF|uApB`j@tB`j@x@pT~@pT`@tIb@vIf@tIh@vIl@tIp@tIt@tIv@tIv@`I|@pIdAzIdAhIfAjIjAdIlAbItAlItA`IvA|H|AdI`BzH`B|HdB~HhBtHlBrHrBxHnBnHrBjHxBhHzBdH|BdH`C~GbCzGdCxGnC`HnC~GpCnGnCjGvCpGxCjGvCbGxC|F~HfO~HbOpRn^nUfd@lMzXtFxMnCxGlCzGdCjGfCzGdCzG`C|G|B`HvFlQnF`QzGxUpEjPvEtQxEtRfEfR|DnR|D`SvD|RjJzf@xU~nAlDnRjDnS~C`SxClSxClSxCzSlHxg@~d@|bD~CrTnLfy@L|@fHzg@|G`h@jClSfCnSfCpShGvh@~BrS`ChT~C|YD`@fEta@rBzSpBzS~Eli@rEnh@jEji@bEni@xDdi@lDvi@pDfl@rGhkArIh~AdRtjDbRnjDnHltAxCzi@t[``GtCvi@lC~i@`Cti@xBjj@lBxi@fBrj@zAri@rAfj@fApj@~@~i@l@`b@HfGtExlDtE`lDvExkDhB~uAjBvuAhB~uAjBtuAlBvuAjBvuAhBruAVrTRtTJrTFjT@rTCbUKdTQrTWtT]zTa@jTg@tTm@jTw@zTy@hT_AfTgAnTmAjTqAfTuAxS_BlT_B`SoB`UoBbTuB~S{BxSaCvSgCtSmC|SuC|SyCrS}CdS_D`SoDlSmD`SqDvR{D~RcE`SaEfRmEtRmEdRsEdR}EbR_F`RgF|QgFrQsFvQmF|P_GvQ}F`Q}FlPgGxPqGzP{G|PmGtOkFfMo@xAaHdPaPt^gLbWoMjYgRpa@uQx`@cH~OaHjPsGlP{GfRuFbP{FhQwFtQuFbRaFxQaFbR}EpRuEzRgErRaEjSsDlSsDhTqDzT}C|S}DnY{BbQgCvSeCbT{BzSsBhTmB|SeBdT}AhTsAjTmAlTaAjS_ApTu@rTu@|Tq@hT}K`lDgBbj@u@rTy@rTaAjTiAjTuAnT{AfTcBdTiB~SsBdTgCvUqOjvAw^zeDaObsA{NhrAw^neDaGfi@}BxS{BzSuBdTsB`TiBrSmB~TeBlTaBfT{AbTwAnTsAfToAvTkAhTeAtTcApT{@tT}@vUs@vTo@rTk@rTg@rTa@~T_@tTWjTU~TO|TMvTEtTCnT?zTFxTH`UL~UT`VVhVZtT`@tTbCdwArBvjAN|I`Apj@^zT^pTbKdaGRdMhC~wA~BzuAbA`k@`A`j@\\lTXrTPzTJnTDrT?tTIlTMrTUtT[jTa@zTg@tTq@fTu@xT{@dTcAnTiAfTqAhTuA`T}A`TeBlTkBbToBzSyB~S{BtSgC~SiClSqCzSyCpS_DjScDfSqT~oAwIjg@iO|{@qQheAqIvg@iIrg@{B`NyBzN_DjSwBlNaE`X_DzSqH~g@oHdh@iHfh@sCzSqCnSmCvSmCvSmCzSkCtSgCvSgCtSgCvScCzScCzSaC|SgCzTcCzT}B~S_CnT{BfT{BdTwBdTwBfTkFni@cF|i@_Fpi@sEbi@sEti@mE~i@cEhi@aEfj@yDxi@sD|i@mDdj@kDlj@eDvi@qI`uAoI`uAqI|tAoIttAoIztAgDzi@g@bI}Bz_@iDzi@gD|i@oIrtA_JdyAgN~{BwTnpDkD`i@{Dri@aBfTgBnTgBvSoBpTsBpT}UbyB}CrVmCfTqCvSuCrSyCvS{CvSaDlSaDjSgDnSiDnSmDdSoDdSsD`SwD~R{D`S}D|RcE~ReEzRiEvRkEvRkEhRuEtRsEdR_F~R{E`R_FhRsFrS{FrSkGnTmFxQoFrQsFrQuFlQyFnQ}FjQ}FbQkGrQkGjQmGfQoGbQsG`Q}GfQ}GdQcQtb@kQ`b@uRnc@ajAzhCod@~cAkHfPgHhPkHtPcHvPkHnQgHtQ_HtQ{GvQaHrRiGhQaGdQaGpQyFlQwFrQyFdRqF`RqF|RgFlQgFpRaFjRcF`S{EzRmC~KuD`PqEbSmEdSqEfTuEhUkEvTwDhSwCfPYzAmDdSkDlSgDpSaDjS_D`TyCpSuCzSsC`TmC`TgCbTcApIaApIaCpT{BhTyBpTsBjTqBbUkB|TeBxTcBtUcBlVyAvTwAxVkArTiAnTcArT_AzTy@rTw@xTq@tTm@zTg@|Te@vT_@bU[pVSjPSlXO`UGtTCbU?|TBxTH~TJ`UR|TT`UX~T^hUf@`Uf@fUj@xTt@dUt@vTz@fU~@zTdA`UjA~UrAzU~AvWxAxTxAjT|Dbj@vJvtAlBxWfSprCzJbuA|AfTvVvkDzVllDth@vmHxAfSF|@`Fpr@f@~GzYzaErJfsAfUv`DHlAxCza@~AzU|A|UpAhSnAhStAzVpAzVjAxThA|TrBnb@nkAh~XlApYbAzT`AvTfAhTjAhTnAxTvArUxAlUzAlU`BjUbBhUtAhRzAhRfBnTjBlTnBnTpBlTtBxTxBxTpFri@hNruAvMzrApB`SvJvaAb@pExLlmAndA|hK~MzsAvE`e@~UjaCpFni@|B`TlCnVbC|SfC|SjC~SlCtSnCxSrCxSzCvSxCtS~CrS|CdSdDlShDnSjDnSnDbSnD`SnzAz_ItDbSjDvRbDhS|CfSvCtSnCtSfCvS~B`TxBdTlB~SfB`T~AfTxApTnAdTfAjT`AxTv@hTp@rTf@tT^lTVxTPxTB`N@vE@fUGfTOpTWnTUfPq@dYq@fUs@tScAjTgArToAlTwAnT_BfTiBfToBbTuB`T_CrSgCxSmCxSuCnS}CnSgDlSkD`SuD`S}D~R_EpRkEpRsErRwEbR_F|QiFbRsF|QwFvQ{FhQeGbQyaApnCk`@rfAm`@zfAiGbQiGdQaG`QcGhQ_GlQ}FpQwFlQwFpQuFtQqFxQoFzQmFxQiF|QeF`RcFbRaFfRaFhR{EdRwEfRyEvRwExRoEhRmElRmEzRkE|RgEzReE|R_ExR}D|RyDzRc@~BsC|NwDhSsDlSqDfSmDjSiDjSgDlSgDxSeDzS}ClS{CpSse@hdDo^`fC_Jzm@wSpwAiRrqAiEdZmCbRYlBwLvy@Gd@}F~`@{Gxd@U~AkRzqAeSluAa[bwBue@ldDwHzh@yHnh@mIni@qIbh@{I|g@eJfg@qJng@yJzf@gKvf@sKvf@_Llf@kLdf@sLte@}Lpe@kMje@sM|d@_Nvd@iNld@uNfd@}Nrc@kOtc@aPfd@wOdc@iPbd@yPje@qOvb@k`@pfAa^`bAoOlb@kOlb@oOpb@oOnb@eG~P_GxPaG~P_GfQ}FhQsEtNa@nAuFhQwFpQqFlQoFtQqF`RkFzQcFrQiF`RaFzQ}EzQyE~Q{EdRuE`RuElRuEpRqEpRyApGwBlJkEvReEpRgEvRaErRaE`S_EhSwDpRwDbS_E`TqDhS{DpTyD|TgDdSeDbSaDlS_DdS{ChSyCjSuCjSsClSqCnSmCnSmCxSiCzSeCxScCxScCfTyNxrAwNzrA{F|h@eGxh@oGjh@wGbh@_Ilk@kEpZ{ClS}ChS_DdSaD~RiDjSiDhSmDjSkDrRqDbSwDfSwD|RwDtR_EdSaEvRcExReEzRiErRkEpRmEnRoElRsEjRqLre@wLhe@eM`e@gF`RkF~QiFrQkFnQsF|QsFrQuFlQ{FrQuF`Q_GhQaGjQgGpQucC|kHw_CbcHsaChgHs_C|bHcOpc@_GfQ}FpQ{FvQqFrQkFrQkF`RcF`RcFhRwEfR{ExRoElRkEpRkEbSgGlZuErUuDlSoDfSmDvSgD|R}CnS}CxSuCpSqC~SsC~TeCbTkCrUeCdVsBdToBdTiBbTeBnT_BjTwAhTsAlToAhTiAxTeApT{@pTy@pTs@zTo@vTg@rTc@|T]tTWxTS|TKtTCpFCnMAvTBtTH`ULtTPzTXvT^xTb@|Th@rTn@xTr@zTx@xT`AvTbAtTjAnTnApTzpEfxt@pDnl@fMjuBvK|jBv\\v`Gbv@zcNtR`lD|^pwGtA`WbFt}@pJvdBpIv{AxHfuA~C`j@pApTrAnTtArT~ArTbB`UdB~ThBfTpBrU|BzVrBbTtBbTxBfT~B`T`CbTbCbThCzSlCzSnC|StCxStCvSxCtS~CxS~CjSdDpSfDlSjDjSnDlSpDbStD`SxDfS|D`S~D~RdE~RfE|RrKrf@tKxf@`XlmAhFzUhQdx@fX|mAfE~RbE~RfEfTtDdSzDpT|DtU`DdS|CrSxCvSnCfSlC`TfCzS~BvSxBzStBbTlBdThBfT`B|S|AhTvAjTpAnTjAnTbArT~@pTz@vTr@xTl@vTd@vTb@~TZ`UR|TNzTFvT@~TAnTGvTIxTUfk@i@fvASpj@Oh_@E`KSpj@Udl@KjZ_@l`AiAfxCUxm@i@tvAg@pvA]z}@U~m@?Bi@`uAcEx`LU|j@Szj@KxTOxTU|TYvT]~Tc@zTe@dUk@lTq@zTu@vTu@bT_A~TaApTeAvTkApToAnTsAlTyAxT}AnTaBlTeBlTkBjToBhTsBhTwBhT}B`T_C~ScCdTkC~SmC|SqCzSwCxSyCtS_DtScDrSiDrSkDnSqDjSuDdSwDfS{D~RcEbSeE|RiEzRkEtRyEdSyE`ScFbScF~RsFnSuFhSiF~QkFvQsFxQuFpQyFpQ{FhQaGjQeGfQgG|PiGxPsG|PuGxPmP|a@sPnb@iPxa@qPfb@uPpb@kP|a@wPnb@iP|a@iPva@uPlb@qPhb@wGrPwGzPkGnPqGfQoGnQ_GvPgGtQ{FfQ{FtQ{FzQsFzQiFnQoFlReF|QcFdR}EhR_FvRsEhRwEzRmEtRkEzReE|RcE`S}DzR_ErSsDzRqDpSoDrSgDhSgDzS_DlS{CrSyCxSuCdToC|SiCxSgCbTcCjT_ChTwB`TsB|SqBpTmBjTgBfTcBbT_B|T{AtTuAnTiAtRsAnViAbUcAvT_ArT{@zTw@xTq@zTm@rTg@|Te@`U_@|T[~TUvTQzTKvTIfUEvT?~TB~TF|TNzj@~BvfJ^pvANvj@^j~A@~Q?`sAE~j@Kpv@Qnk@Ubk@[hk@a@pm@g@bn@wAlvAkBnvA{@rj@cArj@gAxj@kAdk@qApj@wAzj@{A`k@}Abj@eBvj@gBfj@mBjj@qBhj@sFvuAgGfuA{GhuA_IpzAcK|eByIduAsDxi@wDri@}Dti@aEzi@gE~i@wKttAuKltAo@xHwfAdaN{q@fuIkX~iDmXdjDuKftAiEri@qEdj@mBjTqBhTuBfTwBxSyB`TgCpTcC|SgCvSkCvSmCjS{CrTqCzR}CtS_DtSeDrSgDfSkDhSmDhSsDjSwDfS{D`S{DxRaEvRiEdSgExRqEvRmEfRuEvRsElRgLte@kL`f@iL|e@uYbmAiLve@oLpf@cLpe@wEvRoEnRcLpf@_L`g@iIt_@iJjc@cKzf@}G|\\{Jvg@qJng@eJ`g@}Ilg@}Ibh@iI~f@sIhi@aIfh@wH`h@qHhh@iHdh@sCdTsCjTuCxTiCvSmChTgC~SgC`TaC|SaC|SaCdT_CdT}B`TyBbTyBfTwBfTqB`T}BzUmBvSkBjT}BfWgBbTiBjTeBlTeBlTcBlT}Dti@wDfj@oDdj@gDhj@_Ddj@wCtj@mChj@iCjj@uFdmAyG|xAeP|lDmGluAqGxuAoGruA_Rb`EGxAqG~uAqG~uAaC~i@_Cpk@yBxj@uBfj@uBjm@kBrj@cBjj@kAh_@{Avj@wAnj@qAtj@oAtj@gAtj@cAtj@_Arj@{@tj@u@vj@q@tj@k@vj@e@vj@c@vj@[|j@Wxj@Srj@M|j@Ixj@Ezj@@zj@Bnj@H~j@Nxj@Pnj@Xdk@Zrj@`@zj@|@r`Al@vj@r@tj@v@fj@|@bk@hNzjI~JnaGjCf}AvFlfDpa@veVx@rj@p@zj@TzTRxTPzTNzTJzTLhUNfj@Hxj@@zj@G`l@Mrj@W`k@]tj@g@vj@o@`l@{@hm@aApj@gAlj@Y|Mu@p[wAxi@aB~j@gBhj@oBrj@yBdj@_Cdj@iCtj@oCli@{Cbk@aD`j@eDji@sDlj@wDvi@_Eni@kEhj@qEni@{E|i@_Fji@w[xhDgEzc@iIz{@iFbj@gF|i@uWlqC_NdwAkPleBcJt`AcEhc@oFlk@eFvi@gFti@gFvi@_Gbn@kEzd@iF`j@eFri@}Evi@oE|i@aFnp@eB~VuBfZuAxTqArTmAfToAxTiAvTiAhVYnGgBt`@}@hTy@tTy@bUq@xTq@tTm@xTm@bUe@jTe@|Ta@bU_@~T[tTWvTWfUQ|TQzTK`UIrTEbUEzT?tTB~TD~TFtTXnj@N~TT~TVvTXvT\\zT`@xT`@xTh@fUf@rTl@lTn@dUr@rTt@rTx@vTz@~T~@~T`ArTdArTfArTjApThA`T~Crj@vMhaCfa@vmHjl@doKjAlTpAnTtAnTzAvT|AtTbBrTfBhTjBhTpBnTrBbTxBhT|BfT`C|SfCbTjCbTlC|SrCzSvCzSzCvS`DrSdDvSfDfShDdSrDlSh@rCjCpNzDhS|DbS~D|RfEzRfEvRpE~RzEhStErRzEnR|EfRpFjSzDpN|DnNjFvQpF|QrFrQvFnQxFfQ~FhQ`GbQfG~PhG|PlGxPpGtPpGjPxGlPxGdP~G`P`H~ObHxOfHrOpHzOnHhOxHvOtH`OxH~N`IdO|HpN~HjNpI`OlIjNlIfNtIdNpIxMxIvMvInMzIjMfH~Jt@dAhUr[bUh[rv@pfAvv@pfAryBj|Ct_@`i@|T~[|I~M~GzKtZzf@jInNbInN`IrN`I|N~H`OrH~NrHbOtHrOrHvOjHtOhHxO`H|O`HbP~GfP~GtPtGlPpGpPnGtPlG|PfG|PfGjQ~FdQzFfQ|FtQpFjQnFnQrFfRbFlQfF~QbFbRzEdRxEfRtElRtEpRbDlNl@jC~XjmA~e@xtB~Kdf@lEpRhEvRdEtR`EvRxDtRvDtRvDfSrDhShDzRhDhSbDjS~ChSzCjSxCzSrCvSnCxSjCxSdCvS`CvS|BtSxBbTvBdTrBpTjB`TfB`TbBfT~AhTxAbTvAjTrAjTjAnThApTdApT~@jT|@xTv@zTr@nTn@pTh@pTd@nT`@dUZrTl@dj@NrTJzTDvT?~A@vQ?xTGtTItTO|TS|TYvT[tTa@|Te@xTk@xTm@xTs@nTw@rT{@rTaA|TeAjTgAfToAvTqApTwAjTyAhTcBtTcBpTiBjTiCpYuA`OuBxSwBdTaC`TeCdTeC|SmCzSoCrSsCtSwCpS}CpScD|SgDxSm@lD{BzMmDdSsEzVoCzNsA|GcBvIqGp[}o@`}CoqAbiGcLri@sJpd@eE|RcE|R_E~RyD`SsDdSoDnSgDjScDrS}CtSoDbWoCrSkC`TeC~S_CfTwBzSsBfTkBfTgBhTcBbU{AlTsAlTqA|TgAlTaArT_AtTw@hUq@nTi@nUe@xT]tTWvTQ`UKzTQxj@iE`lOsBfgHOtj@C~TAxTBxTFdUJ`UPzTR|TXzT^~T`@vTf@dUj@rTn@pTr@zTx@zT~@tT`ApTfAtTjAzTnAnTtAzTvAbTzArT`BnTfBrTjCxZnAxMrBnTxBdTzBbT~B`TdCbTfCzSlCvSrC`TvC|SvChS|CrSfD|SbD~RlDxSjD|RxDrSxDhSxDxRbEbSbEtRdE~RnEzRtEzRnEfRzErR|EjR~EbRhFnRhF~QlFzQrF~QrFrQpOpf@|gPz~g@tkChlIvxFboQ`yAjtElB`GtNrc@xNnc@fOzc@ro@lkBzW~t@tVtq@f^p`AnTfk@va@neApPbb@xP~a@tPta@zPha@bQpa@dQja@~Pr`@jQba@tQ`a@rQv`@vQp`@jRfa@dRt`@fRn`@d|BdxErkAzcC~m@rpA~zBbvEv{BnwElx@tbBje@naAje@paApx@vbBlx@pbBvqB|eEvZ`o@nIdQhe@laAde@laAfRf`@bRj`@fHtOfHvObH~O~GbP~GnPtG`PzD~JzAtDpGxPpG|PjG`QhGdQdGhQ~FjQ|FpQxFrQpDpLbAdDvFjRrFnRhFbRjFxRfFzRdFdSbFhSpEjRpErRjEzRdEvRbE|R|DtRxD~RtD~RrDjSnDnSdD|RfDlS`DrSzClSvCnStCzSpCzSjCvSfCzSbCbT~BbTzBfTtBfTpBbTlBbTfB`TfB|T~AjTzAlTvAfTpApTnAvTjAxTjChj@hLnbCfr@nxNp^fvHr^|vHf@nK|PflDdQvkDfHhvAlFneA|JxoBjQxlDhQzkDtCzj@pCfj@nCbj@hCnj@`Clj@vDh_AbAnXhThlGt@lT@\\hBbj@r@`Ul@jTb@vTZ~TT|TJzTB~TEzTKzTSzT[~TkEbrCwHl`FsMhsIWdTQ~TGzT@bUN|TXbUh@~Tt@vT~@xTjAvTzA~T`BdTnBhT~BhThCfThCpRFb@dD|SjCbP|D`T`EbSlE`SxEvR~E~QnFfRtFtQ`CdHfCvHnGbQnGnPnBzEPb@lLjYtG`P|GxP`AdCnElLbG|P~BbHxBdHvBjHpBpHlBpHjBtHdBvH`BxH|A|HvA|HvAhIpAhInAjIjAhInHph@vJvr@dFl^lHjh@nHrh@jAjInAfInAfIrAfIvAbI|BlMv@`EbB|HjBvHrBrHxBjH~DfLzEpLrCxGtClGzCdG`D`GdDtFjDrFnDhFtD`FvDvE`ErE`EdEdE~DhEtDlElDpE`DpEvCtEpCzEfC|E|B`FpB|EfB`F|AfFtAhFfAfF|@fFt@fFh@hF\\jFRjFJjFAjFIjFUjFa@hFk@hFq@fEw@dFgAfEcA\\IdFyAdF}A`MeE~LoE~LqE`dBmn@zEgBju@qXfqAue@tLeExLyDjOeEnIsBvJqBrHwAhLiBrIcAb\\gD|O}AnXaIpSqAzL{@r[}Bz[gCb\\mCbx@qHr\\kDv[gDx[sDt[wDv[_Ev[gEv[oEt[sEv[{Et[gFf]wFxZkFvZmFr[aGp[iGl[kGj[uGf[yGn[cHl[kHj[sHh[wHd[{Hd[eI~ZkIh[uIl[_J`[_J`[iJd[sJnZoJtc@mNlRuGrZeKrZoKf[_L~YuKd[mLhZgLjZqL~Z}L~Y}LvZmM|YeMfZsMpZ_NfZcNnZmN~YoNnZ_Oj~Eq`CxAs@jtEwzBhu@m^bZuNbZqNdZgNdZcNjZ}MhZqMdZeMfZuLrZsLhZ}Kl[yKjZ{JbIgClJuC~Ag@~WaI|Z{If[iIj[_Ij[oHj[}Gp[oGn]uGhY_Ff\\gFl[qE|ZaEp\\{D`\\gD`\\wCd\\kCx[{BhKk@tO}@l\\}Ab\\iAj\\y@r[o@nZYv@A`\\Od\\?b\\L|^b@tw@hBd\\nA~[zAh\\jB`a@rCf]rCt[zCz[jD`\\|Dn[fEt\\`F@?jXlEt[tFjM~BjMdCbMdC`MjCl[`Hf[pHj[bIb[lI`[|I~ZlJ|[jKn[rKpZxKtZfLvZvLjZ~LhZjMvZxM|YtMfZbNju@r]hu@v]tu@v]dZdNhZ`NdZtMhZnMdZbMpZzL~\\rM|ZbLvZpK`[fKh[vJ`MvD`MrDbMnD`MjDfHlB~Cx@fMdD|KtCb@J~L|ClM|CvLlCp[dHp[xGt[fGrVnEzCh@v[hFdVrDvATr^`F|[zDt[tD`\\dDl\\vCp[fCz[xBf\\hBx[|Af\\lAd\\`Ab]r@l\\d@h\\Rf\\Dh\\GlMGtMKvMQvMWjZk@jZ_Ah\\kAd\\sAb\\{AvNw@|Km@|\\kBd\\sBd\\qBf\\{B~gAmHjy@mFpy@yErZ_Bd\\yAd\\uAf\\gAf\\y@d\\m@j\\]h\\Of\\E`\\Jl\\Xh\\f@pf@fAv^fAvf@|Ajd@fBlPt@rwB|JtVjAp_A~Dxy@|C`\\~@t`@|@nQ`@vINhMPxMPd\\b@lMDlMApM?rME|MI|MMh\\c@h\\q@|\\cAr[gAb\\sAp]eBt\\eBv[kBv_@{BjKq@`j@mDzx@{ErdAqFd{@_JpMy@rMs@pM[tMUtMEdNDjMVzMl@jMz@jMpAhM~AhMpB`M`CjMvC~LdDnLnDdMlEjMdFdKrEt@^`K|EpLlGlLbHdLlH~K|HpKjI`LfJlKrJrKhKzJlKnJzKjJvLjJdMnFzHjBnCvInMvIhNlIvNxHrNvHjOtH`PbH~OxGpPnGrPdG~PxFhQrFvQdFxQ|EjRpEvR~D`RzD`SlDbS`D|RvCnSnCpT`CxStBbThB`T~AzTnAbTdA|Tx@rTl@pT^bURvTFrP?xBErUMtS[bUm@pTu@`U{@nTgAlTsCri@yCpi@W|EcCzb@wCxi@aDfn@eCnf@kCtj@eClj@_ArTy@tTy@|Ty@xTu@xTu@tTm@rTk@tTg@tTi@fUc@fUc@pT_@pTYvTWxTY`UU`UOpTKpTKxTEvTIhUCfUA`U@bUDjTDjTHjTJzTNzTd@vj@V~SVbU\\pT^nT^tTd@tTf@`Uf@hTj@hTp@tTr@vTr@vTv@vTx@hTz@fT~@rT`AhT`AjTlCri@tCvi@|Cti@|Cdi@dDhi@dDfi@lj@zvIvFj|@jb@fvG`k@l{I~IjvAbJjvAtDzi@xDzi@bEvi@hEzi@pEli@tEbi@zE~h@bFbi@hFbi@nFrh@rFph@`Gbi@hGhi@hGlh@nGhh@zGph@bHth@dHfh@nHph@vAxJn@lElDbV|Hdh@n@~Db@rCjFz\\jIfh@pIbh@jDjSfDdS~Irg@|Izf@xJzh@tJxg@rH~_@jMbo@hKrg@tKrg@~CtNdDhOtNno@dL|f@jLzf@nLff@xLlf@vLte@dMdf@lM~e@nMze@tMde@zMje@fNne@hNzd@nNxd@xN|d@xNhd@`Ofd@pOtd@jOvc@vO|c@~Ovc@~Ofc@pPpc@tP`d@zPhc@~P`c@`Qrb@nQxb@pQpb@xQfb@~Q`b@fRbb@fRla@lRja@dRh`@fR|_@nRz_@~Rf`@xRh_@fSt_@fSb_@nS|^nSl^pSd^pSt]nSb]vSd]zS`]~S|\\zh@|z@la@jp@bq@tfAbTd]`Th]dTd]~`D`gFrElHvsApxBtsAfxB`Wta@h{@tuA`Tz]zSd^lSv]tSn^nSp^jSz^bSp^xRv^xRz^rR|^rRj_@lRt_@fRn_@`Rt_@~Qx_@~Qf`@xQn`@tQn`@pQp`@hQp`@bQz`@`Q`a@bQja@zPpa@zPva@tP|a@lPra@jPbb@dPhb@bPlb@pOva@zOxb@pO|b@pO|b@p_@jeAnI|UzRhj@l}AznEf^tdAbOtb@r_@pfAlOlb@pOhb@xOfb@~O`b@bPza@lPta@pPla@pPba@|Pba@bQz`@fDtH~KdWjQj`@hQz_@xQd`@xQx_@`Rr_@lH|NrHhOhRb_@nR|^nRp^vRn^~Rj^dSd^fS|]jSp]|Sb^|Sp]rTz]lTj]rTb]zT`]`Ux\\~Th\\bU|[jU|[pUt[rUh[|k@dw@`xAjnBhjGdmI`i@ps@`IlLzXt^dHfJzTnZtTxZpT`[~SvZ|SzZfT|[xNrTjYzc@~Sz\\pSp\\xSj]pSp]`Sb]tR~\\nRb]tRx]rRb^vRd_@tRf_@vQf^|Q|^nQp^hQz^bQd_@~Pf_@zPl_@nPp_@lPv_@jP``@hPh`@bPj`@~On`@zOt`@z`@nbApJ|UfUjk@hdAdiCdThi@nf@rmAxFpN`cAxfC|bAhfCfPja@zOp`@xP~a@lPz`@rPx`@hFxL|JhUzPf`@lQp`@nQf`@hQh_@dRn`@|Qr_@dRl_@~Qv^dRp^lRp^nR`^pRt]vRt]zRn]~R`]fS`]hSv\\jSl\\|Sx\\`Tn\\fTl\\`Tp[nTx[tTt[nT|Z`Uh[~TzZ~TfZ~SzXxUpZhVvZlVlZjPbSzDvElVpYtVpYzVfY~VdYdWtXfWtXhWrXf_BzdBz~AldBh_BxdBt}DthE`~ApcBl~AzcBbxAj}AfEnEn~A~cB~~AndB~VjX|VpXrVrXnV|XhV~XpVpYfm@ft@`VjZ`VlZtUpZtUrZnU|ZhUb[fUf[dUt[~Tv[bUl\\~Tn\\xTx\\vT|\\jTb]nTh]`Td]bTv]~S~]vSz]pS`^tSr^fSl^hSx^dSb_@zR~^xRp_@pRl_@tR``@lR~_@dRd`@`Rh`@|Qn`@xQv`@pQz`@vKpVrDjIlQja@lQ~a@`Qta@zPza@zPdb@tPjb@nPnb@za@dfAza@zeAd}At~Dbl@zzA`b@bfAnP`b@nOx_@`Rld@`Q|a@~Pra@dQla@hQja@lQha@nQ|`@vQba@tQn`@tQf`@~Qn`@|Q|_@dR``@fRz_@lRt_@lRl_@nRf_@vRh_@xR`_@|Rz^`Sx^zKhSlAxBvClFhSl^lSh^nSf^nSr]tS|]zSv]bj@n}@|Rj[fT~\\fTv\\rTx\\nTl\\nTb\\xTl\\|T`\\xTp[`Uv[hUv[tTtZZb@~j@vv@~wAzoBjiAl}AlMjQpk@lw@dUh[bUn[bUz[xT|[|Tf\\vTr\\tTx\\pT`]hTb]pTz]~Sn]~Sz]zS~]vSj^pSl^lSt^hS|^`S|^|R`_@`Sv_@vRx_@tR|_@xe@jaA`Rd`@|Ql`@xQr`@tQz`@nQ|`@jQda@`Qda@bQra@vPpa@|Phb@pPbb@lPfb@hPpb@`Prb@|Oxb@xO~b@rOdc@lOjc@fOnc@`Orc@|Npc@|Nrc@h_@hiAr_ArsCj_@liAl_@liAnO`d@rOzc@zOrc@xObc@dD`JdKnXxO|a@hPfb@lP`b@nPta@nIpSjFdM|Pna@bQfa@hQ`a@pQfa@pQn`@xQl`@zQ~_@dRb`@dRp_@fRd_@`IrOf\\vn@rf@j~@jf@v}@hg@h_AvnAd~BrnA`~BzR|^rRj_@tRz_@hRv_@hRp`@|Qh`@vQr`@tQba@pQla@bQja@`Qxa@zPbb@rPdb@jPnb@lGjPvGdQ~O~b@vO`c@nOlc@hOlc@bOvc@|N`d@pNvc@hN~c@hNnd@`Nxd@vM|d@rMde@fMde@fMxe@zLpe@rLze@jL|e@fLbf@hLlf@dYrlAts@~zChY~lAnYpmAhLbf@rLze@xLre@bMpe@hMde@vM~d@|Mzd@fNtd@jN~c@tNdd@~Nxc@hOrc@pOpc@vO|b@~Ovb@fPnb@pPfb@zPdb@dQ`b@hQna@pQha@tQp`@zQl`@jRl`@lRz_@pRn_@|Rh_@bS~^hSr^nSd^vS`^dTz]fTl]lTb]jTx\\nTb]hTv\\tTh]bkDtoF`uAjwB~i@h{@bMbSbFdIbT|]xSz]rSd^rSt^fSv^bSb_@|Rh_@vRr_@tR~_@jRb`@fRn`@|Qr`@|Qda@vQja@dQda@fQra@~Pza@rP|a@rPjb@lPtb@bPvb@~O~b@tOfc@pOpc@hOxc@bOvc@h|@`kCf{@lhCb_AfqCf_@thAfO~c@`Opc@v_@viAf_@nhAbOrc@lOnc@hOzb@xO`c@|Otb@jPxb@jPdb@rPdb@tPpa@|Pna@fQna@`EhJjKzUrQ|`@xQr`@bRr`@jRj`@lR|_@rRv_@xRl_@~Rb_@hSb_@hSn^fS~]bTn^xSt]bTt]fTd]jTz\\vT~\\tTf\\~Td\\dU|[jUp[nUh[tU`[xUtZ~UjZdVfZbVnYtVtYnVdYvVxXdWxX`EjE|PxQj@l@|UxVxG|GpNrNnWhWrW|VxWtVzWjVdX`VfXxUrq@hl@xcBbyAlnA`fApg@hc@fXpUjXtUdXnUdXrUdX`V~WdVvWlVrW~VpWfWpWtWdWxWdWdXzVlXnVjX`WrYjVfYhVtYhVdZ|UbZxUrZzU`[tUh[nUx[dUx[dU`\\fk@`y@pk@jy@vk@ry@rl@zz@lUl\\tUr\\vUb\\~Ux[bVv[hVh[pV~ZrVtZzVnZ|V~YpWfZtWvY`XxY~WdYjX|XnXtX~XrXnWtVfWbVlWrUnWlUhWxThWhTrWfTxW`T~WtSdXlSdXbShXvRhXhRlX`RrXzQ|k@d`@nEvCheBpjArXzQpX~QlXhRfXtRdXfSzWzSvWlTjWdUdWtUpV|UfUrUjVnW~U~WpUjXnUdYfDfEvDzEzTzYlCnDtAjBdBbC`ArAzHvKxF`IjLtPhT|[dTz\\rS`]dSp]zR`^hBfDnOrYbRd_@xQr_@hQ~_@nQha@bPf`@jPna@tOpa@rOrb@|Nlb@pNdc@`Nbc@vMvc@fMdd@vLpd@nLbe@bLpe@nKne@bK|e@tJff@dJtf@|Ijg@hIjg@vHlg@jHxg@dBnMtDlYjGdh@zFbh@nFvh@zEph@vExh@tE|h@hE`i@dErh@dE|h@zD|h@dDde@`Dhe@nDbi@hDhi@dDfi@zC|h@xChi@rCvi@x@~O~EhcAfCbj@~Bti@xBvi@rBzi@nB`j@jB`j@bB~i@`Bbj@xAtj@tAxi@nAzi@d@bU`@hTdAhj@`Ajj@v@xi@p@be@^`]@t@b@rd@f@bj@`@dj@\\nj@Vlj@Tdu@Jlh@Bvk@Arj@Cjj@Ijj@IdYGpPUlj@Ybj@_@bj@c@`j@i@`j@m@fj@y@rn@s@ze@y@bj@_Abj@cA`j@eA`j@iAvi@kAdj@qAdj@qAfj@wAtj@wAdj@yAbj@{Abj@}Abj@_E|uAoKllDuK|jDsKrkDqK~kDwKfmDuKdlDuKhlDuKvlDuKhlDqKjkDqKvjDcEjtAaBdj@_Bbj@{A|i@yAvi@wAbj@sAbj@mAxi@kAhj@eA`j@_A`j@y@|i@s@hj@o@`j@e@|j@]dj@Wlj@Opj@Cpj@Brj@Lpj@Xzj@`@tj@h@di@t@nj@|@~i@hA`j@nAti@r@pWf@tQdBfj@nBxi@xBbj@`Cxi@lCxi@tCri@|Cpi@hDri@rDvi@zDri@fEji@pEri@zEvi@`F~h@jFbi@tF|h@tF|h@xF|h@nFvh@lDr^t@bIzEni@tEhi@fEji@~Dni@tDri@jDhi@bD~i@vCji@jCji@fC~i@zBxi@pBri@dBxi@|Axj@tAbj@lA|i@`Afj@v@nj@l@fj@d@rj@Xlj@N~i@Fhj@Ajj@Khj@Wnj@_@jj@g@jj@s@dj@y@xi@_Apj@gAdj@mAfj@oAdj@uAfj@uAdj@wAfj@oDjuAwAzj@sA~i@oAbj@iAlj@gAfj@_Alj@w@lj@q@nj@g@vj@_@dj@Wpj@Otj@Gfj@@nj@Dnj@Rjj@Tpj@^rj@f@rj@l@nj@t@hj@|@nj@bAjj@jAjj@pAvj@xA|i@~Afj@dBhj@hBdj@rB`j@xBlj@~Bbj@dC`j@jCbj@pCpi@tCxi@zCzi@`Dri@fDvi@lDxi@v@vLxB~[tD`i@zDvi@bE|i@dEfi@fEdi@lEfi@rEbi@xEni@zEli@|Edi@dFfi@hFfi@jF|h@nFvh@tFdi@xFbi@vFfh@|Fhh@`Ghh@dGhh@fGrh@rGnh@rGlh@vGlh@vG~g@`Hth@`H`h@hHhh@jHdh@nHdh@pHvg@tHtg@xHvg@|Hxg@bI|g@fIzg@jIrg@nIrg@lIdg@vIfg@zIvg@|Ifg@`J|f@bJlg@`Jhf@xJbh@nJtf@nJnf@rJlf@|Jrf@bKbg@dKrf@fKlf@jKnf@nKlf@vKnf@xKnf@xK|e@|K|e@rFlUrD|OnLpf@vLfg@~Lbg@`Mdg@jM~f@bMlf@tMlg@|Nhj@bLjb@vMhf@|Mff@`Njf@lNtf@nNpf@hNze@pNve@nNje@rNfe@~Mhc@hNvc@nNtc@jNjc@vNvc@xNlc@|Njc@~Njc@`O|b@hOdc@x_@zfAd`@hfAr`@zeAv`@|dAra@heA~a@zdAhb@hdAvb@tcA|b@vbAvc@fcArc@zaA`d@xaA`d@faAzc@haA|c@zaAdQj`@bQl`@hQda@fQja@xP`a@vPfa@nPja@rPxa@hP|a@xGvPnGhP`Pdb@~Ojb@tObb@vOrb@lOlb@jOpb@lOvb@fO|b@hOzb@fO`c@t_@|gAlM`_@tPnf@h_@rfAdOxb@hOtb@rO`c@pOzb@xO~b@~O|b@zOrb@dPlb@hPlb@pPjb@fPra@tPva@zPta@lPj`@nPf`@vQ~a@xQ|a@jQv`@rQv`@vQr`@vQ~_@zQ|_@xQp_@dRt_@hRp_@lRj_@pRf_@rRb_@vR~^zR`_@`Sz^~f@h~@`Vfc@dP~YdoAb}BbnAr}BxRf_@vRn_@rRp_@pRx_@hRz_@hR``@bRj`@`Rr`@xQl`@vQz`@tQda@jQz`@fQba@`Qfa@~Pna@zPra@vPxa@hPja@lPbb@hPdb@dPnb@xOfb@zOrb@xOxb@pO|b@rOjc@hOfc@dOlc@bOtc@~N~c@vNtc@pNzc@rNjd@bNvc@dNrd@|Mfd@vMnd@tMld@pMtd@fMtd@bMxd@`Mxd@xL~d@tL|d@xLve@rLxe@jLne@hLpe@dLte@bLxe@`YvlAxX~lAtX|lApX`mArX`mAnX`mAneBpwHpeB|wHnt@fbD|o@btCvXrmAxXrmA`r@zzClr@r{CnXxlArXdmAbm@|jCNl@xCpM`YxlAjLdf@nLbf@hF`TxKrc@tLje@zLhe@`Mfe@hMde@fS|s@fOlh@|Mdd@dNbd@~Lr`@nNpc@~Nvc@~Ndc@dO~b@tOhc@pOnb@v}@fdC`bAnmC|dCt{Gf\\b}@bd@vmArArDpbCdvGzeCj}GreC||GpOzb@hObc@bOhc@|Njc@tNxc@pNdd@f@`B~L|`@|Mfd@xMld@pMrd@lM|d@bM~d@|Lfe@tLne@nLte@`Lle@|Kte@vKdf@pKdf@hKlf@fK~f@vJhf@rJbg@zIje@nJhh@fJhh@xItg@vIxg@fTxpAjTvpAtIxg@xIxg@~Irg@fJrg@|TpkAf@lCzJ~f@bKzf@jKxf@pKnf@zKpf@bLlf@hLbf@pL~e@xLze@tG~VjEjPbLlb@hMde@vMpe@tMxd@zMxd@~Mxd@bNvd@dNtd@fNtd@jNrd@~{@|sC|{@~sC~bC`aItq@h{B|Mjd@|Mld@tMnd@pMrd@jM~d@dMhe@zLne@rLte@hLle@bL~e@|Knf@nKhf@hKtf@~Jrf@tJtf@lJ|f@bJ~f@lJli@pJjk@fJjk@~Itk@xStxAhHfi@vGfh@tGbi@vGpk@vGnl@lGrl@lG|m@hG~m@hG`n@dG`n@hExb@z@xIvO~|AnGhm@tGfm@xGxl@`Hdm@hH~l@nHtl@vHhm@tHvk@`Ill@bIvk@nIjl@tHhh@zHhh@|Hpg@`Ipg@hIvg@nIrg@pIng@xIlg@|Ilg@bJfg@fJ~f@nJng@nJlf@vJ`g@zJrf@bKzf@bKff@jKlf@pKjf@rKff@zKdf@|K~e@bLxe@jLve@lLxe@pLte@rLve@tLte@dZrkAnLhe@lLne@hLte@fLxe@`Lze@|K~e@vKdf@rKjf@lKdf@bKbf@bKhf@|Jpf@xJpf@rJvf@nJ`g@nJbg@fJ|f@bJ`g@dJng@`Jrg@rThoApT~oAhTbpAjT`pAhTdpAhTbpAfTjpA`TloAJj@tT|qAlG~^r@fEtIpg@vC~UnC~UtJ`}@~L`iAfOntAbFzb@|Fvb@zIbh@Jj@~Hrc@rExQzF`QxDhKxI~UrFbQbFjQlEvQjEzQfFbVvEjVhDrRdDtRfIlf@xIhh@pI`g@pVzxAbT~nAhTdoAnTznAzIvf@|Ixf@~Ipf@bJpf@hJpf@jJpf@rJnf@rJff@zJdf@~Jbf@fK~e@jK~e@lKre@tKte@xKte@|Khe@bLde@jLje@lL`e@pLrd@xL`e@~Lxd@`Mpd@fMnd@jMhd@rMdd@zMhd@vMvc@bN~c@hN~c@fNbc@jNdc@rN`c@xN`c@zNzb@|Nrb@dOnb@vLx\\fRbh@vOhb@vOxa@~Oza@dPta@`Pfa@hPda@lP~`@rPx`@dDzHdL`XxPp`@dQx`@lQl`@pQj`@rQx_@xQ|_@|Qn_@bRj_@lRd_@hRr^hUxb@nQb\\tQz[lRp\\vPlYzSv]xS|\\|Sn\\fTn\\rTd\\pTp[|Tn[bU`[hUtZlUlZ|CzDfPnSRVdI|JjKlM|UdYvUlX|UbXrVlXxVxWja@bb@tXrXfWpVfWhVfWxUvRjQvUbTbXbVdX`VxWtUnp@fl@jp@vl@nW`VlWdVjWpVfWzV~VbW|VpWpVzWjVlXbVzXxUjYrU~YjUtZbUh[vTr[dTb\\zSt\\pSl]hS~]zRj^nRz^hRj_@vQr_@tQ|_@tQt`@nU`h@`cAb~BlQr`@tQr_@nH`OzH|N~HtNfIlNdI~MhIjMzIvM|DvFbDrEbJzLjJtLjJfLpJ|KxJtKzJfKzJvJrK`KfKhJlK~ItKxIzKnIvKzHbLrHhLjH`LvGlLrGfL~FrLzFvLnFvL`FxLtEzLhE~LzD~LpDbMdDbMzCbMlClMbCjMxBhMrBhMnBjMhBrZ`ErZ`Ejz@lLdx@jLjx@|Lr[xEt[dFr[fFt[jFt[nFr[pFt[xFt[xFr[|Fr[`Gr[dGt`AbRhw@|Ofw@jPtw@|Pp[dHp[jHl[jHl[nHj[pHj[vHh[vHh[zHpw@~Rrw@jSxh@`Nbx@pSnw@lSnw@hS~oBtg@tm@zOtA\\p@PvA^`t@bR|pB~g@dMjDfMpDhOvEFBpJbD|LrEnZvMxLjG|GxDjP~J~KvH|KfIpKrIdK|IfKpJlDlDlEpErD~DbElEnJ~KrJvL`JxL~FpIxAtBrItMnIhNh@~@fB~CbD|FtHvNtHpOhHtO~GdPpGbPjGxP~F`QtFlQlFpQnC`KpA|E|AfGvB|I|CtMn@pCrAlGnB~ItDrQhBvI`ExSbAhF~FpZ|E`WlGx[x@dEzD`SJh@xB|KdErRhElRrEhRrDlNJb@\\pAbFxQlFjQxF~PpGhQvGhPdHxOxHfOdIjNxI`N`JvLtJbL`KfKjKlJpK|IvKlI`@ZvWdSfr@ph@hWzRhW|RhUfQ|RfO`HhFx@n@ZTvdFxyDDBbTjPhEbDdBrA`HjFjSrOpNxK~MfKz^hY@@|MrJFDlLjIDBrGlE@@vMdIdLpGtL`G`MpFtLfEpCn@tH~BhMpCzMrBtGr@~RbAtMZj@?dLAtMi@nMmAlMyBdM_D`MaEzSwIxDcBjTaKlu@q^fW_Mt}A_v@jk@wXrkBc~@~p@_\\tv@o_@jhBg|@hkB{}@bt@y]p[gOlZuNvLyFxLsFrLgFrLeFxLcF~LyE~LuE~LkEhL{DlLqD`NwD`NkDfM{ChMsCjMiClM_CrMyB~[yE~KyAxYaDlMgAnM}@rMs@jMm@pMa@rM[bSOzN?tMDnMNvMVrM^pMf@vMp@jMx@rMbAtMjAjMrAtM`BpMfBnMnBhMvBrCd@jV|EdNtC|LvC|LzCjMdDjMpDfMtDfMzDbM~DbMfEpVxIxW`KxWvKnZjMdZvMfZfN|YrN|YzNdZnOb[`PfIhE~aCrpArgBl`AzYtOzYzO|YbPdYzObYxOtYbPrYfPpYrPfL|G`MlHpe@vXn`@pU`nB`jAvZpQnYzPxYzPhYrPhr@na@z@f@dt@rb@pt@|b@xs@nb@lt@zb@pt@zb@fYtP~YtPx^jSvTrLj]pQzVfMhZxNhZpNpZfNpZxMvZpMvZbMvZvLb[nLxZ|Kd[zKb[jKb[|Jnw@tVt\\tKjd@zNvkB|l@v}A~f@j}Bht@jErArj@nQx`@~LRFnMtDzAb@zKvCRF|OdETFj]vIr[zHnS`FbLnCzNnDnt@jQnBd@bx@xRvTnFtWnGb@J`jA|X`a@xJl[pHl[fHx[|GbM`ChM~BhMvBhMpBjMjBjM`BjMvAnMnAlMdAnM|@hMt@lMn@tM`@nMXrMRnMHpM?pMGrMOpMYnMa@nMk@nMo@nM_AlMeAnMmAlMwAlM}AnMgBjMsBjM{BjM_CfMkCfMuCdMyC`MkDnQ{EbMsDbMyDbM_Ef[iKb[kK`FcBh\\_LzNaFbPuFjNsEn[}Jj[gJfMgDhMcDpM{ClMmCnMiCtM_CrMsBxMkBrM_BpMsArMmA~MaAlMs@hMi@rMe@nMWtMKxMGvMBtj@fArMj@rMt@x[jCjMrApM~AjMdBhMpBnM|BjMfCjMlC~L|CjM~CvLlDfMtD|LxDhIbDXJdPrGhHhCxBv@fMpEjLvFtLrFnL~FpLjGlLvG|KpGdLfHdLlHzKrHxK~HzKjIzKrInKvIlK~IlKlJhKrJdKrJbKvJnWpWro@np@jWxWpWjWxKjKzKdK~K~JbLtJbLhJxKxI|LhJvK`IvLnIxLdIz\\lTjShMrWvPpXtPzSrLjRvJp^rPfRfIhNdFj[zKbZpKpZfKrpBvs@db@jNbv@xVvq@~TfXxIxWfJ|a@nOn^tPjAh@~t@b_@lVjNbVxMfm@l]|UxN|UbOxUfO~UnOrr@jf@xr@fg@|wAhfAfa@hZbv@|j@pSbOhW`R`l@ha@f_@~Vn_@jVxRzL|RpLfL|GdLxGhLrGhLlGtYrOrYlObPbI`PvHha@dRjS~IlSvInSlIlSfIpZjLrZxK|ZlK~ZzJpPdFnP`FrPzEpPrE|[nIr\\dIlFlAvJzBnX`GhT`F`mAvSvXhEx[vEz[pEj]tEh]pEri@zFhi@vGxsAfPfmAfPne@dHxf@bIda@fHra@zHl]hHbi@tL|h@jM|i@`Ndp@vQz]hK@?jQhFdhCpt@v[jJp]xJhV`H`ZfIdWfHra@vKdX|Gni@jMl[xGj[pGt[dGr[rFpx@dMr[hEv[~Dhj@dGtj@dFt[dCr[zB|j@|C|j@dClq@fCtgGvObkArC~u@hB|}@~Bz}@bDxUfAlYtAlHn@nUfCtObFlFnB`YlKr`@~L|SzCdNtAjSpBpPhBbR`Ah`@gBnZsB~KYhKRxW`BnZfDpi@~H|f@`I`g@zI~f@hJp[hGnL|B~h@xKrw@lRji@dNri@tN|v@zTdw@|UphKxiDbe@jOzrLr|DdzEl~A`lBhn@bmBxo@tkAbb@pkA|b@pn@`V|u@vZjm@~Wbm@pXzp@z[np@v\\~m@p\\hPfJn\\dRdf@zYff@nZfc@nY|b@|Yl]pVd]~V`TvO|S`P`UhQbUtQ|d@f_@td@|_@boAdfAnp@rk@tp@bk@pj@xe@l}@`u@rq@zi@vk@pc@jh@t_@`WrQbWhQ~b@`Ype@hZ~ZrQ`VlN`VbNvg@lX`S~JfSvJ|aAtc@jBz@jSzIjVpKhV`KjW~JhWpJtStHzSfH|h@`Qdi@~O~g@lN|TzFzTpFt[rHx[fHz[~Gvd@jJfSxDhSjDfnAdSrrArSb\\`Ftu@dLnaCp_@h_AnQj_@xHj_@hIfZbHvc@dLbX|H`XjIrXlIpX|Idt@nVlp@nPlpBjw@pjAjf@|uBz~@~t@vZpa@lQre@tUpb@|W|j@vd@zPjK|PxKlPdLlPnLnPxLfPnM|GrFzFvEvOvMxOnNbLdKxBpBnZ~YbOvOzN`Pt^xa@tNnPfN~PxSxX`NzQzMfRvMdRrMxRnYdc@fYnc@vFvInQvXdYrc@lw@hmAd[re@h[he@jWh_@hKxNjKxNlUb[lU`[xLdP|LxOdMvObMnOpVzYzU`YjP`RlPxQjJdKjJ~JvPrQxPfQnWrW|LxL~LlLb[jYpNxLrTjRlXhUdX`UhXvTvz@lp@hYlTdLpIfL`I|AdAlXzQl[lS~LvHrSjMhPvJlPrJpTdMtTtLna@vSpTtKpTlKlSrJnSnJdSzIhSrI|[xM|[jMlZ`Lx]fMfVhIhVdItUpHnVvHvU~GvUxGtPrEtPjEpXbHnXtGjb@pJnb@bJfH|A``@~Hh_@fHf_@zGj_@pGh_@~Fxb@rGzb@bG`j@bHrTlCrTfCbc@zEdc@lExq@jGzq@~Fxf@rDxf@fDjkAxGjc@rBjc@hB``AhDfcA~B|dAbBty@f@py@NvsAMli@[fi@m@~h@_A|h@gA|h@{A~h@iBbj@{Bjn@uCln@oDdn@}DpgAgIx[oCfy@yHzx@qIjwMo~AzM_Bxp@{H|m@eGpTaCbR}AlMkApMcAlTyAnTsAnc@sBhQm@fQa@nMWnMMx\\Gx[HlMNlMVxTh@xTr@vTdAtTpAvVhBvVxB|h@xFhRfCdRnCp\\pFr\\jGhR|DlRhElb@lK|S|Fv[rJna@xMpVvInWzJtX`LpXxLtVpLrVzLhVlMdV|MlYxPhYrQpl@|`@nKxHvX~SjRfOdQpNrj@bf@z]d\\d_@r^`Q~PbQhQte@hg@je@vg@viAvpAf@h@vjAfrA`e@lh@de@`h@x\\b^~\\t]b]j]dNbNhNtMh]~[fNfMhNxLfShQlSrPlg@ja@xHfGzVrR`TnOjRdNnRpMff@p[vR~LxRxL`]fS`m@z]dR|JlZ~Ozf@lXrAt@pw@``@~s@h^nhBt|@heB~z@`rAdp@njFxiCtnBbaAh_DpzAlzC~xAlwDxkBxaBdy@h{Ajt@`q@~ZxlA~i@pb@nQr[pM|h@vSlZpLzS|Hxh@zQzN|E~RhHxQfGdYnJlUvHjVtH`dAlZta@xKxa@tKza@jK`b@|Jve@|KlR`EnRvDhm@|Lnm@bLh\\zFn\\rF~[hFd\\~Etd@rGvd@hGxd@rFzd@zF~v@rJxu@rJhnBbVnnBxVzZbEzZvD|ZpD~ZlDhZ`DjZtCf[rCn[xBxXjB|XjAx^pAt_@j@pYNrY?`d@o@r_@s@`J]lo@wDxi@qDfe@aEpe@mEnqKgeAhHs@r`B_P~s@yGvz@}H|bAsIl`@yCl`@aCb_@sBh_@sBdb@eBfb@kAn\\o@n\\_@r\\[r\\Un_@Hn_@d@r_@fAt_@vAxV|@zVlAt[nBv[|BlUpBjU|BrUpCvU`DtWvD|WzD|p@lL`p@fMrWjFhWhFt_FleAdgAxUfOdDhk@~Llk@hMdy@rQfy@fRzx@jS~x@zSxc@lMvc@|Mh`@zLd`@pMt\\rLv\\`Mjn@rVxm@vWbo@lZno@f[z}@df@l{@rg@hy@rh@ft@ve@`y@rk@n[bVfCnBTPrVnR`p@dg@tWjSRP|VvRtaBrpAn`BvoALJzaBlpAdwBbbBl[pVNLd]|Wt]lX|_@rYhHzFrmCduBJH`p@rf@tSlOxS~NpSvN|SdN`R~LhRfLlRjL~PpKvg@pXrStKhSlJlUlKjVpKp`@lP~OlGhP`Gvb@lO|b@~Mv_@lLfVbG~]zItN`DtNvCtTrEzTdErWrEzWfExp@xJ|^dFb_@zEh_@xEpc@hFvGdApc@bGxh@`HrpAhPxQ~BbvCd_@~_IzbAdaAdLl]pDl]~Cx]hC|]|B|]~AnNh@pNZh\\h@fWLbDBbOA`OGl_@[n[gAp[kAfOo@dO{@`OaA`OiAx_@wDn_@kEpViDzk@eJfQaDbQiD~PuDdM}CzBk@~b@uKdQ}EbQkF|QuF`RiGbUgIl^{Mh^sNfb@_Qdb@oQnrA{j@vh@_U|h@kTx^sNt^}Mf`@oNf`@}MlPsFnPgFnPgFpPyEbe@qMbR}EbRuEhTeFjTyE~`@mIvi@_KxYeFvYyElVsDnVgDzi@}Gbj@gGxeAwJbf@{Drf@qDvg@cDdSqAlSoAxh@uCxh@oBbv@{C|w@oBhs@qAbYk@bY_@rnAy@jrAIpoAx@hg@p@hg@z@|`@x@`a@fAxl@fB|Ux@|UhAlqAjGpe@rCze@bDxCXfNtAnnAhKnXrCfg@bGnl@zHnl@dJzVpE`WlE~t@dOh|@vSv]nJjj@vOpZlJlZzJvg@lQxg@bR|VfJ~VrJpo@~V~}Adn@lkCvdAbq@rW|YnL~YfLbgCrbAfiCbcAx[dMf\\fM|QpH|QnH`RdHdR~GhQdGrQxF`d@vNrUbHxUtGdUzFrU|FpO|DpLzB~LzBp[jFvYhE~YvDn\\bD`UnBpUjBpQnAzQhA~RlA|RhAl{Mxt@pt@vEl[pBf[jCd^|Dr^fE`ZnDr@Hx[nEn^pFl^jGxXdF|AXv[lGrPrDvPzDbb@~JpZ|HrZpIhZvIfZ~Ili@nQhi@lR|b@rP`c@lQteCrlApCjAt^fSp^xSt\\lSx\\vSbQ|KvQ|Lzc@|[h\\fVd\\zVbZzUbZrVpYtVtQ`PrF|ExPvOnAlAfnAlmAbd@te@b`@hc@fXf[hzB|tC|DdF`U~[|Tl\\lUz]zTd^fRzZ|QvZvSh^hSn^lXng@jWtf@nLhUpLvUjYll@~Vpk@~U~i@hZ|s@~Yft@zKdYvKxYdKfYfK~YtPff@pPxf@|Odf@vOtf@~Olh@`Pph@|Orh@~Ofi@zyB|xHr|@t{CnNlf@pN`f@nNdf@rNff@|Lnb@pLhb@tZzeAxv@bmCrmBjyGzEbPlRfp@lHvVrHxVng@laBlMra@tOff@~G|SpGlRzPdf@zO`d@`Pxc@tNv_@~Ppd@fSjg@nQzb@~Pla@rQfb@rHvPtHnPpR`b@~Rza@tHzOzH|OnR~_@`I|ObIrOfRp^|S|`@~f@t~@zg@b~@`{Bt}Dr|@x}Af|@|~AfeA|pBzMfWrMpW~MpXjUdf@j\\~r@l_@tz@pMrZbMvZpMb[`Ml[jO~_@vNx_@vO~b@r@lBtQbg@vQ`i@tQli@zSlp@xRjn@lP`k@bQpm@~Pln@pSlw@jWtcArSp|@fE~Qnx@hqDzYbrApKze@vKxe@rIz^~GbY|Hd[~H|ZnRxt@pQpo@hJ|[hJ~ZpD~LxD|LhIxWnJjZdKxZ|JnZfKjZtOhc@nPdd@tO|a@dPxa@pI`TrIvS`Tzf@zTng@`JnS`J|Rtd@``AnCpFnOtZjThb@fT|`@nTf`@bVjb@nVpa@fZ~e@xLrR|LdR|Sn[`T`[di@xv@tlAzdBjeF|kHneFnkH`g@xr@~RnXfS~WlRxVzRpVxRjVzR~UzZb^`[b^xp@ls@`XxX`XpXft@jq@nLpKhLfK~YnWn[zWz[pWp[tV|[lVhRhNxj@r`@rk@~_@bWbPlWvO|WzObXbOxVtMdWtM|V~MbWrMfVbMfVzKjVzKdVhKjn@jWpVjJjV~IhPxF|h@|QvRfGvKnD|ZdJlZnIhXfHvUhGjXxGlXpGrpAvXzdD~r@je@zLrSvFrSbG|\\bKz\\vKjTjHfTxHjSfHnSrH|UnJ|UdK|g@fUbTzJfTdKfTnKfSlKxRdKvRlK|g@nYtcCxwA`aAhj@dRbK`o@j\\~]|Ph^rPnQrHnQjH`e@pRd\\vMn[rLxc@lO`QxFbQpFdZ|IfZrIpZbIrYjHx@RtTfFd\\nGnYxFrWfFvd@xIxd@lHxfAdPvt@fIv[bExh@rGdZ|DtyCv^v}@~KrlBtUpt@dJrw@hJ|@J|Cb@RBh_@vEta@fFddAhM`fArMh`@tEb_@`Ez[bDtW`C`TfBpPnAbObAfTpAr`@tBnZjAfX|@f_@x@v\\b@~\\Rt[Fdc@Oh[[zUc@lb@aAf]cAp\\kAdQq@~Ni@\\Adg@gBzi@gBrXs@nSe@p[c@hYYbf@EpYF~WVt[^|[v@xb@vAlc@pBfUrAbW~AfVjB~R~A|`@vD`b@tEjTlCzTzCvP`CpO~B~_@nGbb@pHx\\vGzVdFjZnGtWtFni@pLnOhDtWzFdDt@rWxF|`@rIj[vGph@hKfZtFzb@|HrUbEhXrE`Df@n_@fGrZ|E|g@lHNBhpA~Pn@H`j@~Grh@rIvTpDbMzB`M`C`MhC`MlCvZnHxZhIjTtGxInC`Bh@zL~DlNdFjNlFvUhJrU|J|VjL`OfHzNrHpUdMhUrMj[vRlc@vYl[jUjWdStVvSxVrTbbAnbAj]r_@lZd^vPvTlPjStOhTlOpT`[zd@pMfTpMpT|MzUvM|UnMjV`MpVtM`XvGnNpGnNtO|]lOh^na@nbAzO`a@tOja@~aAzgCh`AfdCfTdj@tGhQvJxVrG`PpDbJlJ~UfMr[nHdRzZ|s@`J|SdJvSzJrU|JlU~Nn\\|Nb\\|Px_@bQh_@pc@j`AzJfSfO|ZfUjd@|f@dbAzOh[li@hcAdUdb@jPtZpRn]~Rp]x\\hl@jSl]dSd]dSz\\zd@`v@vMrSrfAtbBlXna@rX~`@|t@xeA~NxS`OnSle@ro@t_@rg@`StW`ShWf_@`f@xMlPxMdPfh@nn@`h@rm@vqAxyAto@~r@xo@`r@vb@~c@bc@zc@zb@zc@dc@xc@vQdRvQtQvQ|QtQrQrd@rd@|d@hd@lOxNhOnNj`@j^nR|PnRrPzf@|a@le@n_@bRtNlRnNrRnN`S`NvRnMfSlM|SnMxS`MrTzLpTrLnS`KxSrJzSfJnTfJ`]dMl\\bL`\\`KxLdDnMxCz\\~Hd\\`H|u@|Nzc@dIde@bIjXrD~p@zKd_D`h@zjAnRnb@lHpa@|HfnA~TzpAnSpmAnRpmAzS`WrE|VhFzm@dMxvB`f@bd@hLp^dJvS~FF@|\\zIfX|JlNhFnJjDtW|KfNjGdNrGtOjIbMnHtNnIlN~IbXpR~FhEvJ|HfJzHzG~FfUfTrJlJlJxJxQnSxLrNnLfOpTxYnIxLfNrSfKvPjVbc@pLdU~GdN|CzGnHlPtKtVlKxWbGxOfGlPbGbQlFfPlFtPxEfPvEtPrEjQlFvSrGtX`Hf\\vG|[lDbRnDrSzCtRtCvRvEl\\lEr\\~Dx\\tF`g@lVj`CtG`p@~Gxq@bH~p@vC`XzC|W~Dt[nCpS|AjMfBhMfD`UpChQbDzQbGv\\fEnTnEtSfEdRtEtRpEtQzErQbFnQjFfQpF|PxFdQxFpP~Nv`@hGzO`LdXfOr]jJrSzJlSrItQhIlP`DrGlNtXd`@bv@~}Ar|ClHrNboBfyDpVff@xVbf@~xBhiEbTjb@~Snb@jQ~^`Qb_@bQ|_@zPf`@lP``@nPz`@bPv`@zO`a@f`@|cAla@~gAz`AxiClKvXnKrXrG~OtGxO|GxOxGjObHrOdHjOzE|JdF`KdMnVzFpKvFhK~FjK`G`KxN~UhOrUbOtThObT|IvL~IlLfJhLhJ`LtJfLpOfQ|GlHzGfH~G~G~GvG~PnPdO~MfQjOlQtNfQ|MlQnM|PjLdQhLbSxLhS`LjVjMpS`Khn@nYbr@`ZrdBdu@n{Arp@d\\lO`TtKnR`KzKhGxKpGtXbQvXdRdX|RnTnPjXfU|W`VrTvSnT`UvRnTtRzTxTpX|SbY|IvLnIdM|OxUbIrLxH`MrN~VlWbd@|LpUbFtJpEnJxQb`@fLlW`LpWlNh]dKjXtEvL|Kh\\lJhYxFnQtErOzIvZlInZdIjZpHzZ~J|c@~Gt[rGz[dGr[rFf\\jEfYzE~ZvEv\\nEn]tDx\\jDb]fDz]vC~\\lCt]zArSlAxSbB`]`ApS|@rSxAh^h@pSh@tSr@h^h@p^^pc@JvTDjSE|RW`h@Yj]YpS]nSa@fQa@fQiA~\\qAh]{@rS_AlSgC`f@yCfh@ewBv}\\sAbTy|@vkN}b@f~G{Rh|CcDbh@}Cbh@uB`_@oBf_@}Cfn@oCdn@wB`j@mBdj@_Bnh@uArh@}BlaAc@xU_@tU[hTKrMe@vc@a@`d@Wd^KtRKrYEzY@pt@Dj_@Jp^f@j}@Pt^ZxZd@p]b@tVnAts@dA~g@jA~g@n@xTdCxt@rAr^xAr^|FnpA|l@ryLtQhsDlHn}AnClh@~Cni@lFn}@rAzSxAxSlCd^hEdi@xHj}@rIh}@jFph@vFdh@zF|f@pG~g@vGxg@fLvz@zGzc@rPleArFr\\xDlUvFn[|Fn[hGp\\rGf\\dQp{@nPlw@|Njo@xH|[`Iz[~Rbw@tS`w@lInZlKp^xTzt@bUdt@vgAzfD|a@rpAvNbc@dShl@`KzYdKtYjKxYlKpYlKfYrKzXlX|r@tWjo@jYrq@nLfXrLbX~LlXfMlXzL|WbMxWn[lp@bM`WfMxVz[fn@bi@vaAji@paA|qAv`C`jD|iGhj@x_Ath@|{@fTr]fT`]zi@hz@tYhc@tT`\\pj@dx@xoBrnC|FzHzF`IlxAdpBjj@fw@zt@tfAni@ly@jS|[hI|MfSf]`St]xM`VnMhV~Qf^rHfOlHlOtPd^dGtM|F|MdJzSzI~SzKrXvKvXvOhb@lKnYpJ`YxN~b@tFbQpFfQbItXbRfp@|HnYfL|c@xH|ZtHv[dHx[`H|[rHp^fHn^pIrd@fIbf@pPndAbHvd@|G~d@bM~|@fIvl@vHfm@zOtoAtBdR~BvR|Fdf@hQruAl`@jaDh`@x_DvDf\\fEh\\lClSpCfSrChSdHxf@nHvf@lRfmAzKro@~Kro@dOpy@|Ind@bM~n@bF|VfF|VtMjn@bNdn@rKje@zHx\\`Il\\rM|h@fPlo@rE|PdGlUzQbq@jMjd@jQpm@|Odi@hOtf@zN~d@fG`RpDnK|Mda@fK|ZhNha@pKdZpKbZlLh[bMl\\lGlPnGjPrOv`@|Oh`@~h@trAbh@vsAbe@rqArNxa@bRlj@jNpb@fGtQ|F|QxObh@pOdh@hMrc@dM|c@|Slv@|L`e@d[tnAdL|d@dLze@fKxd@rK`f@fP|t@TdAdIz_@dJvd@bJne@zIle@~Iff@zt@~fExg@xwCDRdF|YdHr`@`Ohz@DRpC|O|wAbhIxZpeBzYb`BrPd{@tJ~e@hKhg@tPfw@hKte@rKje@tKde@zKde@dL`e@lL|d@hSlw@hI~ZlIzZ`Tjv@nT|u@xM~c@dUnu@jd@bxAX~@pxQfhi@`]pdAzNnd@rNjd@fJnZdJrZrT~u@dTlv@jItZ`I|Ztc@pfBrPrs@hPrs@nK|e@`Kpe@xJxe@bP|x@rGf]rLzo@nDjRrDlSjDbShFt[fInf@dIfg@jE~WzDtWtHdh@dp@|uElDxVrTt{A|o@nsE`Hfe@ru@|lEbA~CfAhEhEnRtHv[fDpNjDjN|K`b@xI|ZbJhZhJxYlJtYfO`c@bGjPlKlYtKdYzG~PzKnXjPba@pYjq@du@pcBhu@bcBbx@hhB`h@hlA~^`}@~Mv\\p`@|cAzWtt@vJdYpJhYzUbu@fUfv@hJx[|I`\\hKb`@|J``@rRhx@lH`[fHh[bQhy@rGf\\nGj\\jGn\\~Fz\\bN|y@fFd\\bFf\\zLvz@nEx\\|CfUzIrr@fFnb@fB`OzLzdAxIru@bR``Brn@~pFxPfxArNtnAbOjoAzL|~@xEz^fF`_@nH|f@pHtf@tWxaBrFl\\vFf\\`Lzo@pDlRtDhRzLtn@fFnWlFhWrPbx@~Gr[bHn[`HzZbHxZbLtd@zK`d@`Lzc@`IzZbIvZrBxHbPxl@tW`_ArTxt@`J|YfJxYhJbZjJvYpRxk@fVbs@j[l|@rKvYrKjYrK`YtKtXfPja@lP|`@va@lbAbeAnfCbyAhlDlY|q@f^pz@vJpUrb@`dA~a@ddA|Wpq@n[vz@hKpYjNha@nXvz@fIbXjL|`@rEbPlEhPfId[rEnQnErQ|Hf\\fKnd@jMdm@lIlb@`K~j@jDrRdDxR`AfGBLvF`^xHbg@rCrRjCpRpDjY`En]~D`]BTvDn]tIj|@tBvUjCf\\vC`_@lCl^zFh{@|KxfBhJ~~AzJpaBzDnn@bBbVfBbVpCj]nCt]dBpSjBlSfD`^rBbS~BdS`C`ShCbShC`SxEt\\lF`]|CpRbDhRfGj\\rG`\\dEjRfEdRjHtZbIx[hIb[xIzZ~IfZtJpZdK`ZhKhYlGrPpGnPpG`PtGxO~GxO`HrOfHnOjHdOjRb_@vHhNjW~c@jNlUdKzO`KhObK`OpLjPhO`S~ObSdPzRrPrR|PtQbQjQlQnPdKjJnPhOxQ`OtKvItKjIpRrN`JrG~IjG~MfJzM`Jb`@pVf_@vU`]bSf`A`k@p|@rh@t_CpvAj]vSl]bTh`@pV|NvJzN|JnTrOdPrLbRxNhQzNtP`OnPnOlOpOnOlPrOlQvOrRlNbRfN~RxOvUjObW~FbKzFfKpMnV|EtJzE~J|GvNbL~VzV~o@fFxNfFvOnLjb@fPzo@zKzf@lGj[hC|M`CzMnD|SfFb\\hEtZp@xFbClSxD`^fDd^`Dz]dCp]fE~p@|Chh@nCji@rMl|CzMpfDr\\vjIj\\jeIxMpeDzDh`Az@lSdFrnA`B`_@hBj`@~Ed~@zCvh@jAtQrAxQlCv]rCr]jDha@pBvS|BnSrFtg@jFzb@`F~^nC~RtCxRpGn`@bDzR~CzQlGn]`DnPfDhPdIf`@nId`@zHp\\xHb[jIn[rId[tInZpMlb@vJvZjL~\\tMr^lNr_@nGhPvGdPxI|S~IrSrJnTxJbTzHbP~GnNrMjW~LvUfXhf@nSz^vSj^~g@tz@fq@ziA||AreCbq@|iAv[vk@pZvj@pM|V|NnY|[np@|Urh@~Srf@ja@paApIhTlIfTrOnb@hCjH|Rjj@xHbUvHfUdJdYfNhc@dJ~Y`Jf[tLvb@pId[xEpQrEtQ`L`e@`Ur`AxThaArR~|@xH|]nHb^pe@x|BlK|g@pIt`@nClMnB~IjDtOtHj^~D~Q|DdQfSl}@bLbf@rLdg@~K|d@rLle@dYtfA|Lzc@vIn\\h^ppAzJx]~L`a@dXv|@~Y``AtSvo@tYh|@`Shl@jSfk@na@dhAv~@bbC~aA`eCdaAhxBjlAljCzuLbtWpChGteAd~B~eAl|Bxb@h|@xc@|{@tXzh@dq@rkArk@``Afb@hp@pXda@hx@biAls@n~@rq@jy@t^db@x^|`@xp@dr@pY`YbYhXrYbXnVxTti@te@xa@`^rD~CfmAvcAbmA`cAbvA|jAz}@bv@d|@fu@tt@to@vd@va@dTlSxKjKpp@xp@\\\\`UxUhR|SfNpOrOvQfRxTrUlZrS`WxTbZfVp\\vExGfQbWlSpZx@nAlh@jy@ji@`~@dZbj@f[|k@`\\`q@fPl]pKlUrJfTr\\nv@b\\fy@nGfP|Q~f@~Olc@vWnv@rRpm@~Ln`@zS|r@|Ndg@fMtc@lQzn@rErPnF`SllBb_H|Shu@zUrw@jVbw@vXjy@lOrb@lc@niAdUti@t`@p|@lXjj@|R|_@fOnYrm@feAjR~Ytg@hv@fh@rs@pT~XzTnXnk@rp@|c@ne@jf@ze@d_@x\\hb@f^n`@|Zve@t]t\\rUvg@p]tb@`W|PrK`tCpeB`TdNda@xW|U|O`[~Sl|@fo@tpAzbAtp@pj@~a@t^`e@jb@vd@rd@`bAj`A`cAneAxn@dt@pYh]dQvSvW|[|j@tr@vi@hq@~j@hr@tqAzzAv]r_@z]~^r[b\\~VzVjQbQtN`Nti@jg@|m@xi@`o@fi@zb@d]hKpIn^~X`m@jc@jm@bc@noA~x@xcBvdA`SzLhnAnt@rb@hXfa@rWn]dUvc@hZ`g@p]lc@f[xb@`[phAhz@jd@|]|a@l\\f[bWl^dZhd@d`@rn@vi@ve@rb@zu@fr@fv@bt@l[b[``@v^jo@jm@fPbOr~@z{@ji@nd@db@n^dy@zq@nd@x^tq@li@dr@rh@zIdHzyAbfAle@l\\lPhLzbAds@vXtRxp@`e@jp@`e@hnA`|@fkG|kEhf@j]|q@`g@vh@p`@~k@tc@rs@bl@r]|Yd_@`\\f`@b^|LbLrPdP`]z\\h\\b]lh@pj@`QrRnUvWfU`XlPzRzYr^zFfHxNdR|Q~UrVl\\pPnU|_A|vAn_AjxA|v@hrAlP`Zjh@j`Ank@dfAzp@|rAdxCrxFltBh~Dh{@v~AnaA~bBny@ztA`{@dsAr_A`vAv`AjtApcAbtAvOhSnZ|_@hYv^PRh{@ncAdk@rp@hk@~p@pk@xp@jk@|p@dk@vp@tk@bq@bk@pp@~j@np@pk@hq@twAxbBfk@pp@fk@tp@`k@np@vk@jq@fk@vp@bTtVdVxX|T|Wr_BnlBrbA|gAteArgAljA`fAhxA|oA~kAd`A|kAz|@niA|v@xjAjt@bfAbn@jqAlq@dkAfk@zkA`h@`lAbe@rdK|rDzuAbg@rlA`e@phAlg@hhAng@rwAxt@bsAxs@lnJduFhbBn}@jhB|}@bcAdd@n@XljArb@rlArb@zgAn\\frAh]xtAlYbuAvUtvAtTv}Gt_AvaFzr@j|Cnc@jzK||Axj@vHn|Cn`@dgBzOj}AzJz{AbFtTVlkArA~yAoAr}AwEzyAqIbzAmNb_BwS|xAoVpxHozAjbBa[`iBuWdxAmQ`{AcMb`BkH`pAmBhoAl@fqApCzf@pBdh@tCzh@pD|i@xEfmArNtiAbPhRlC|qXxcF``BtWbcBzTbdB~Px_CbMzvAjCzmAh@lpPkSvrAKtpAv@~mA|CnmAjFfpAbLrpA`O~gA~Pj~A~\\|yAn_@hlEdmAze@bMdt@rQlbA|SxpAjS~kAjMn}@fFbMt@plAvBrkAw@vdAeDvgAeG~}CcUpmAwJfpA{FjgAmB~iAhAtbA`CxkAbIteArMniAdRt_ApRdzD`|@z|@xRr{@lP~z@|Nn}@jMnlApNnrAdLhqAxHfhA|FrmIxb@lxBhNz{AhMfiBpSt`AjLvgAfOzlBnYvtB~^dtAfYtqAzZz}Ap`@z|EbqAdfCpq@fcEbiAx|DpeAnPnE|_Clm@hRdFjz@zR~{@~TxQpE`~Av[zFjAlgLv}BfiAlVhhApWfz@fVjFjBri@hRtt@z[ry@tc@~p@fb@|s@jj@he@fa@~a@r`@ld@fh@xa@xg@jb@zm@~m@baA`d@jy@zk@rjA`fDtoHpf@zaA`]bp@j`@`q@xg@rw@vZta@b_@~b@xLnNfq@~s@xf@dc@ln@bb@|TrOfVvOrUlNjV`Ndg@xVlZrM`ZjL`t@b[`v@rSjo@vNbeAxRveC~\\fq@~Kfq@nLh~@fQjc@~Ihw@hSlmApa@xw@b[xm@fXlu@``@zp@~`@`u@tg@l{@bq@jr@~m@|l@rk@|o@bs@x}@phAjd@bp@n_@nk@pg@bz@hr@tmAfgBvhDxGfN~I|P`]zo@ziHzdNh_AhgBfnA`_ClSfa@jm@rjAnj@|dA|o@|hAxl@v}@zt@`aAvq@jv@pv@tv@zr@pl@pk@|a@xdA~m@dm@pY`s@nXbp@xR|v@~Qnx@bMj`ArJvt@fE~r@zA`_AcCjFYhjAiGvm@yF|fDsYjaCwUxcBgO|_@_Dh_@mCfeAcD`iAoCbv@r@jt@|Cdw@|Dp|@lJtcA`PnhAhVnoFzqArxAv\\r}Az\\`}@bPpLxBbQ~CzdBvWxgAlOliAxOblB`WbjCl_@~dAzPx[hGrf@|K`_@bL|u@fXlj@dUl_@pR`b@~T|^hUfa@xXzWpSj[pWrFpE|\\d[rZzZnWdYfTfWdUlYzOpTrAhB~RfYpYxc@~Q`[dRx\\`c@z{@`b@p}@|_@~z@vl@rwA`p@x}Ad[hu@xb@jbA`a@n_AzXbo@~U|g@`Znk@fPxZbJpOl^tk@h]|e@`b@ng@rb@dd@f^n\\pj@bc@jYxRbg@`Z`g@dVta@dPz[~KhZjIlYtGb]jHrx@tMhy@fJ~y@zHx_AdJ`[fD|}AfOlz@xKb~@lOhp@zNvl@pOnl@nRvn@~Urh@`UzTdL~XvNr[rQnZ`RbT~MnUdPbQjMbP`Mla@t\\vTvRvQzPln@~l@z_AzbAd~@vcApd@bh@tp@dr@vWpXpSxRtc@n_@zWdTrX`S`ZtSl[hRnQtJrSbKlXxMpTbJ|XtKtWlIjYhJjc@xK|MhCd[~F`^jF~SdCnTpBrVlBpb@fBt\\nAj\\Z|_Aa@b\\O`gAgBd[EbyAqDt\\cAv[m@f{@i@`]@l\\J|\\^nc@`Av\\dBt[fBv\\|B|b@|Dxj@nG|[xEj\\~F|^`Hb`@nIbf@pLrh@bOz\\zJ@?dpAp`@jp@pR|b@bMva@dL~g@rNnd@rLfg@zLdh@fL`TpDra@`Hpb@`GhXhDtVhC`n@vEh_@zBl_@vAn\\v@d`@p@hg@Dz~@k@ti@o@d`@qAzP}@rLm@B?r\\_Bvk@wC|fAoG|vBkQph@wFtOkBpb@iEdmAiQnsA}SfbAoStq@qO|l@oPxh@{OheAm_@`dAsb@xmA}k@hmAso@bnByeAlt@s`@xf@iWxe@aVzWkMnWoLhVcKzb@}Pjv@wXxz@mXfiA{YhrAkX~}A_WhtBoYhtB}YhzAeVddBw^fY_Hxm@{O~oAe`@re@}Op`Aq_@~cAac@bOeHt~E_~B|q@k]hc@qSte@uUjLcF|CsAn]gO`^iPrB_AzUgKhT{Iv^uNpd@qPl@UdgA{_@~lAa_@hp@cR|Z}Hbq@iQh_AqRdyBae@PExeEk}@tmEs~@diDmt@vuAy[t[wHdq@}PduAk`@jnBym@vjBkp@|q@cXvmFizBxzBk_AhjAwd@rjAqb@vqAmb@teA}ZzjAoZ`~@wSfd@qJtoAgUrrAoSjdHwaAvjDcg@vg@iIvc@qHhyAgXbpAkX~x@cSz`@qKjbA_Zny@iYdXuJlcAaa@hbA}c@`hAyj@hz@ce@~_Awk@~cA}q@lcAmu@`fAo{@zaAi|@lcAgbAvz@c}@b_A}dAzoBu_CdfBcyBjtBohCl{@yaAlfA{gAliAmcAd~@gs@diAuv@x`@oVvd@qW~rAar@b}DuhBtgAeg@|sBsaAx\\iQla@oUb`@cWzb@cYp\\sV|`@c\\t}@cz@n`@ib@j`@{d@j^md@nXq^|_@_j@j]_h@dp@qcAz\\gi@zj@_|@|KgPte@_r@n^{e@~d@oi@p_Bq}AduA_cAjiBoy@f`Boa@`hBkS`lAs@juAfFf|AdVfaBpe@z{Atv@z~A~~@xwCbqBdpAry@j]vTv[jRzt@xa@ht@t^hB|@xmAnk@|s@tWlC`Aje@bPtx@lUpx@xSrp@lNzp@|Lbh@lH~~@xL`OlAhkBnOftLn{@`\\~BbiKpu@luCdWjuBhUlqBxUvlBxXxuGz`Avl^hlFlnWzwDr_BvSrb@|GfcAnKjgCbTbjCvOdq@~BblAdEtjBvFvfNhLfcCxHjuBbMx}BfUrsBt\\xwBrb@liB`g@vtGtoBroBtl@p}Aje@zjBha@x|@`P~eArRhxBbTbg@bCl[|Afb@rBx_CxBbgBcClhC_PxrBiVnbC{c@f~Bcn@XIb_Ciz@~hDy}AjzCc_BraQydJhi@aW|JyE~z@i^p{Aqk@lCcAtmB_g@hu@}Nnu@sLbf@sI~hBeNxl@oBj|AcFztBuGjcBiDdRa@nO[`hCwK|yBaOdsB_V`|OsqC|iBeWb}AcL|bBoD`|AtBlyAlHb_AbGjyAvTpzJzfBvdAvOprApN~uAjKxqAnDl@BlqBc@|{AgJnhB_ShzAuW~vAq^`eBsl@l~@ca@faAkg@f_@{SrVqNbNsJ|FwDxu@ig@rmAa`AzkAwdAtlC}`CxeB}zApYyV`cCo_BxyDqmBjy@{]jqBqs@vlKczDffCohAhrBciAjp@uc@xx@ck@fx@in@br@al@b{@cu@hbDmeDvp@gs@pYgYrU{Uhk@il@pt@gr@tt@ui@p`A}m@`{@qb@`~@{_@|w@uT~EsAzhFonAlmAo\\`iAi_@|vAil@jqAoq@bjA_r@hgFgtDpmA{z@jxAuy@zrAkn@haBen@pxAy_@fx@{Nny@eNvjAwNd`A{If`AgGb`Ieg@b_BuOx_ByTjcBmYfw@kPvf@}Lb^cJnc@uLtOiEbr@_Svb@_Mf_HcvBf_@iLzeAsYbxAw_@~uAmWvoAeRtmAuOncAwIlgAaJpeAqExeAqE~eAyDb}@sBj|@eBhwEoLnyCuLtgAsGd_AgHrFm@p{@mJhuA_SlwAyXz{Ae^z_AcXdcAoZ|aAu\\dkA_d@zdAme@l_Agb@lv@}c@|hBsdAbmEamCpc@kZ`wBwsAdYmQn~]i|TxC{B~KoIx{@_p@plAeeAxfAikArdAm{AnmAuxBl_DkhHxz@_lBzx@y{A`iAi`BlbAwiAxkAkfAfuAu{@voAmm@bzAqk@jtDqoArE}AlpAue@vcByw@tpBciAffB_pAjuFelEznAu}@~dBo_Al{Akq@d|Asg@`y@iVdmAa\\rmBuh@js@yQtkBae@fW}Gr_AsWlhBek@r_Csy@l^}Mt]yLxqAch@laEqdBroMuoF``Bin@v|Ayj@raBgf@h}A{a@|kAuWlfAcTbcAsP~lAaPlhA{Mlx@mHdYiC~hB{JflBgFrmBuBra@e@b`BvBz|BbInfAdGxwAxL|jA|Ld_AjMtx@zLtpAhUznAlWl|Aj_@t{ErpAngBdf@l@NpeA`YfcAdVb_AzRlcAxQz_AjNz{@xKrbA`KxeA~If_ArE|cA`Dzb@fA~Zv@|fAn@nj@Wx[a@~z@eAjcAiDvfAmG`_AeIbw@iIrbAaLrx@qMz~@{Orx@aRli@qLpTyFx`A_Wpo@eRdr@kTdq@wUnu@cYt|Awo@jBq@jWaMndAqg@p}Ak{@t{Ai}@|iDazB`C}AbqAwy@`bAem@ju@ec@|p@c^lo@s\\pm@kYvd@}Sng@eTzcAc^jp@aU|JiDrt@yShw@qSd_AsSzoB{_@x{Dep@rsAsUtwAcYx`AkU~cAaXbcAe[baAc]~nAig@pw@}]bdAgh@j}@of@nfDsqB~`Fe|CpoAiw@rcCouAnbBwz@dk@oX`k@uWbdBut@~wCqnAthHwyCd~CerA|oCurAlsAgr@hqA}t@zpAcv@dhFkbDfhF}`DbS}KpeB}_Ad_@qR~wAau@`IyDvg@qVtc@wRjj@kVjwAqn@bq@_Z`CeAtC}AbfCmrAleBuw@bfGwpCxxAym@tnAgc@xr@wT`jAu\\reCko@dh@uH|lAkPjZsDx_@sFn^cEnf@mFnf@}Dra@wCphA{Fd\\wA~w@_Bpp@aAxaBCvdBNpjE`EjdBdBtfBfB`_@bAjg@vBrh@vBxs@xEzy@hJjy@rLb[jF~x@vPzn@bPzm@lR~r@`Vbt@n[lO`G|YfNrz@ra@r|@nk@xh@n[pPrK|l@f`@rpA~v@hn@hZl`Ah_@da@zMzU|H|q@bUda@vNhP|Fpp@pXh`@lRjPjJ|PpJh}@~l@hp@hg@dUhRdKrIrOnMp}EfzE`A~@z|Az{Azg@vk@~i@xr@~Vp]rWja@tg@x|@f`@bv@do@fvAteBbnE|sAboD`uAjmDxe@xiAbM~X|Xbk@~c@|t@~b@~l@xWx\\`RrR|PhQZZ~HdIZZ|FtE~WdTri@l^l_@`Sp`@dQhd@rP`k@tNbf@bId`BxOvc@`E~_DvX|g@`FlYhCbrB|Rns@pGhkClVpGl@|KzApq@hJrM~BzAXra@pIj_@vMng@jSjo@v\\`_DfjB`sAdu@piDtqB`nBx~@njA~j@dyCxoAps@rZtm@|Yde@p[l^r[nZj]x_@hc@dXt`@tWpb@f]lu@jiAnsClTpi@`BxDhK`V~nAr_DbXnk@`o@jgAdLfPpRlUnUjVj[pYvc@`[d_@vTdc@tSldAx]bXbIfzBvp@j~Bxr@pK|Cdr@bS`rAva@hK`DjThIb\\`OtV|M|c@dZzf@r^ta@j`@bb@|c@dX|Zj~B`mCrm@vp@leBrsBho@`q@t]`\\jUrSpm@~i@hNdN`N|NlVx_@dKzOpJvPxJfRbJhSxGvPpH~S|FdTvCpKhCdOpA`Mz@|Oh@fKAjWg@zRcAxU[hULhKf@xJjB`MjCtLxEzLlFtItHlItGnEvCnAzCdAxEv@dGf@tFIrFy@xH_CbHoDpNaK|X_Ujd@_\\jLyGxPmJdPwItOkHdWcL`W{KrVaMvAw@`VkMlQqJt`@uQje@}Svs@oZzFaCtTiJ|oAkk@vhAkg@fn@yXnoBu{@ncAs_@zXyJbWyHdm@iPfj@wLhm@_Ljc@oGxg@oGr_@wCz]iD|eAgDdoAo@rDHby@|A~jAfGju@zG~pEpp@nJlAbZxD`e@tD|^jAd^\\r^aAzY}Af[eDnf@mH`j@_Mtv@cU~M{Dzq@ySlR{FxWaIlVmHnj@qPvkAa^xr@}Svf@gOdX_Hfa@mJzJqBjYoDrYeCfXkAp^U|_@x@`j@dBzb@f@xc@sAh`@eDnc@sGjg@cMra@}NdUmJzb@mQjSwHvOoEfRaEjZ_E~VgBj^I|VpAlZxCpb@tIdl@rPzbA`]|[fMf[vNpWtOtNhKrIjH|UxUjS|W|Rr\\pLvVxLhZpIbXpNfm@zZfsArJ`\\dNf`@`Qta@jL|UzOtYzPzWhUzZbR~S~bAnaApWn[bPhUvXdf@vJlR|ItRpOha@pIvWzGpUlJx_@zJ~h@jF|XvI~b@nKra@pEdObIbTnK~UbLnTrLlRrKzNhXxYvOnNzSjOnQ|Jr]lNpWlHb\\nEtT~AfYHda@kCnH_A~U}CtWaBfCOjYc@rXVtMt@rXjDhc@~HpOrFhMvEzM~FhQ|IdY~RvOxLpTrSfE~DjWp[fRvXxKrQ|@xAnZhh@v^~n@vsAp}BxgCrlE|FrKpH|LhTn^|HjKvIbKvIpJlJbJvBfBvFvExJfHvWnPdKdF|^pSfRvLdRtMfOvLh^nZlh@jc@ls@~l@rCbCxx@dr@hOzL|d@d^xg@z]d\\lSnMdIpZlP`_@|Q|Ap@~[vNfq@nVxSdH`xAz]bHlApl@lKxl@vIhVfDnz@jL``Cn\\|nDfg@pUlEh`@`JlSjGdZtM``@dVfQnNzQ~PpMbOrSdXdWnc@dUpf@hTrn@zLlg@zMjv@nKxu@hS|zA|H|m@nEn]zPfuAxBjQ`q@rdFzKj~@pI|fAbC`x@z@hm@@l@?tg@iAbw@eEjaAmJxnA{Dn`@kHdt@sR`nBoRbpB_Ixq@yAbO_f@ryEoo@jhFgKju@cEfZcJjj@qJdk@iRrhAqY~cBoc@pzBgXzjAq\\`_BkQlr@qIn\\}YfhAgMnd@iMpd@_\\phAiBjGaJ|ZagAjnDyQjl@mTpr@oo@fsBq^rnAaTjx@qQvy@oJbg@iHzb@wKhx@cGlj@{Exi@eHdhAmAj\\_AnZm@v^aAbv@Ark@@|`@dCv`AvDdiA`FllAfTlgF`AleA~I|zBzBht@zBvr@rB~h@T`UEfPYxM]bIsAbVk@bHUzCsArNaBhR{@tLO`I?bILlKj@~Mz@bMHn@|BvPlCdO|DpN`EvLjCtGlErI~HxLtH~HxHpFvMtF~HjBlGr@vHF|Js@tJaB~HwC~H}D~IgD`HqBfG_AfLAhId@rKtB~IvDvErCnHbK~ExF|Zb^zNbSdFrIpGrKzEhIhInNnV~e@nUzg@lLhXxa@hkAtq@tsB|`@znAhd@lvAzgA`jDhhBzwFp`ApzCpfArfDbItVfZz_Afp@|qB~w@`dCdx@ndCrXd{@nw@faCxy@vaCho@|fB|p@ffBz`@vcAn^~|@`x@~gBvJvS|Ynn@fbA`rBrd@b}@`o@nlAdaAbhBjqCdaF~xBnvDjnBfiDbPvXreAvjBpkAztBf_Ah`BdBzCzRb]`BrC|@|AjdIfrNt[zk@pd@`}@pFrKlJ~Qzl@`oA`@z@hv@r`Bdc@h_AfDnHz]lu@`d@x`A~{@dhBfUle@dk@hhA~FhLzVne@`\\|k@`k@bcAn}@jzArdAjcBj^nk@NV`S|YvgB|qCxxBliDzcFv}Hr}BjmDhmApfBd]xd@~f@br@zp@f|@xz@neAxBfCvfA~nAruAz{Ar{A`_BtvGhxGn_En_EfAfAXXfAfAd~Bf~B`rA~sA|tCjyCvcBnhB|mClzCfvB~gC~ArB`r@f{@~oAxaB~kAnaBp|@vpAbp@~aAd_AvyAxy@pwArr@nnAjiAjxBbeA~tBjh@lgAdr@|zAr_BbrDvf@hlAreBlhE~rAtiDvk@|zABH~kClcHfw@bsBfBjElW~o@hWvo@lDdIdjArkCr]~u@h]pr@|{AnyCrqCdnF~F`LjbBbaDrjAjzB`nBltDb}AvwC`kAxxBzw@lxA|h@f~@zj@p_Ax]pj@x^vj@zc@~o@rfA|yAx`BznB|dA~iAt`@na@rb@nc@|[bZfq@zm@pw@vp@xy@rp@~lAv|@frA~{@h`Ank@pcAxi@loA`p@|mGxvCnjCrkA|~DfgBxqBj{@~cChaAjqAjf@hrAvc@vWrInV`Ips@pUdiB~f@zeEt|@~p@`Llp@fJ~o@tIfr@rHxhC|R~_A|D`bAfC`{@n@~d@F~TU~CBjo@o@rb@_Alh@iB|VgAzy@aF~h@iEdNuAnq@yGby@mKvw@aMjq@kLn{Ag[nu@wQfv@oSzvAeb@lkAaa@rnA}d@x\\gN`b@aQxi@iV~iBiz@xoH_wD~jBcaARKjhAyj@xoCsrAhnBuz@v`Cy{@p|B{u@|hC{r@bhCcf@`wA{TbtAuQpzDoa@vaD{XvuEm`@bzD_ThqDuFxiBz@lf@l@d{BdHnnBbKjiBdO|fBzWt|Bj`@h{@`Q`|@fPzu@nNpjE~w@n~Br_@pjC`a@jlArJdz@nJjaEd\\tcAnFbeH~^tgC`VrxBha@hwCv{@vy@tYls@hSle@|NvpBnl@vm@rPfs@bOliBpWxpBtIzsCwH`aAkL|a@aFbaAkLvaDyf@|dAcRxyAeTbXqFrrC_j@l`Dyw@zeEmtAzoDm{AtvD{oB|jDsyBphCgoB`hQofOxdJ_aIhC{BrwDawCbdB_gAfiCgkAjaBag@z`Bu_@d`AiPlz@mIt~BcMjlB[hiBrGh|AhOlTxBlcAtNx~@lU|hBfd@feIveChmY~bJpx@~Ufn@dNf_A`LpTpAlU^t\\Vx]y@r~BoVjnA{MpvBoWzpCk\\|bBwSlbBiRpdBaC`m@fDpSpBpOpB~N~BdTnEpSjF|h@fPdS`Ilm@bZtgAnu@rh@df@ji@tm@fy@zkAhRlYt`CftDpcD`dFdfA~tAl`Af~@paAnn@dtAxo@p`Cn`AzpBvbAda\\~wQxsFj}CdNxHtfAhm@fxIr_F~pFpyCtaBd_Abt@na@tn@h]~|@nf@dh@zZ~g@vZ|cAdr@lz@`j@tBrAzf@fXzaBdt@hfA`k@|u@~`@riC~xApvCbbBXNnrMjkHv_BtbAx}AntAbd@de@|b@lh@pT|YnUr\\jh@dy@li@x|@tUf^pTb[~QhVrT~Vp`@z`@`\\pXf\\fVdMnI|p@j_@|r@zX~}@fVbk@dK~e@hEbf@fA`q@Jrq@iDlkBmNvn@mBfn@Gvm@l@dl@~Cro@~Gxm@|IxrA`]fmaBtvc@bJdC`h@hNxiJlfCve@dMflKzuCnkVh|G`_@vOfh@jVtu@xd@|i@h`@bh@~c@ze@rf@t_@pd@no@b~@~_A~aBt}@n`Bb`@tr@t`@vm@pa@zj@pf@|m@pw@ft@vb@p_@xMvJpi@j[hh@~WzVdL|v@|Wrl@hNtHnAl`Ch`@zB^ttBbXtq@vIjwE~i@`n@dMrk@vPhx@d[peBj~@bNfHnm@h[jxC~{Aj{ClyAroFvnCtqF|oCzoCnuAl}G|iDt|FhvClhAlj@hvBffAzgJfuEzjNndHv_@lR~nAjn@`uM|uGn[dQj{@ni@ve@x`@hOvN~PxPtTfWvTjYbVr\\xZrg@`f@r`Az^`u@|[fn@pRt\\rYvc@p]pe@p_@zb@bd@|b@vSdPfl@fa@xxAzz@nt@d`@dT|M`TtNpm@ve@jXdXjc@df@xb@hg@`fAfqAbt@j|@tr@hy@vSpU~WpXt^v\\rn@zf@zo@lb@vfBj}@ppIzpChpTlkHndOnaF~nQh~FnoLz{DbBj@n|Et_B^LpwFliBh\\rKtbHp}BvvArd@jmAzXhcA~M`w@xF~qA`EnuJrY~{A`A~`BeLzgFqi@`_AgFrx@\\b`ArGfr@xLrt@~Rzs@~[ht@f\\f_@vQneB`|@pR|J~l@jZ`qBjcArdFjhCjqEh|Bn}BjiA~rBjdAtlA~b@tbArSrcAnIzkAPlqA_K``HseAhiAgQ|x@wHzt@oB~z@lBt_AnJj_A`TraAr^r}@|h@d`Afs@fq@fr@hl@jm@jk@fi@fu@~m@rsKrtIdw`@jm[dbSp{O`eApeAzo@z{@|l@bfAln@`{AtlAfvDvAnEfm@f{AjIlPjG~L`m@bbAfJbNnS~Wl`@lc@|c@db@j{@fo@pj@jZhh@tTrf@xO|h@nMfoArNne@~BpBJd|I~GvcA|Dpv@zJnk@`Ldx@dXjc@xRfh@vYpa@hYnl@jg@bx@l|@lf@dr@nsAfrBbdEfmGjvB`bDnbJldNp^bj@zxIdyMlvA~wBbyMzeSd|DvaGrzDv|F~m@rv@~aA|~@vr@~h@rva@dkYznC`jBdhBleA|wA|e@fnAzR`pAfElpAgFjnAoOriAka@zpBmr@tm@}TpaA_^tm@yQhj@kMlYiE`YsCtYoB~YkAnl@Hfl@bB~k@rGzThDjTxExQdEl`@tLz_@xNda@lRrNjIrC`BpBhAvf@b]tl@lg@`k@hm@`d@rl@~a@dq@rXvh@fY`o@nPjc@jQzi@|Ib[nJn`@xS~bArI~j@rD~YpK~{@xPvbCjj@nfI|SxqBrYx`Bl]zrAlb@`lA|i@~iAbr@xgAxx@~~@~b@fb@lf@p^jeApq@rkAdx@vxAd`AlnEtoCtoErlCjeVntN~x@xd@zg@rYdh@vZ|qAxv@fQ~L~sCnqBtBzAb@VzBrAxAz@puAvp@x]hSfuAxt@|o@n]tyAn|@zoIdbFrw]|vSzaM`oHhgJ`sFzsAvv@po@p[x{@~Z`{@pRlj@`H|z@|El}@Ov~AyFzvAaDrd@LbfApIpb@zGrInBlDx@z_AhTfr@bRrVrGlm@zOhz@|Thb@hLtg@~Qff@nWfs@he@pV|SnUfUdQxR`StV`_AppAdk@`w@v]pc@x]v^~\\b\\d`A`r@vbAti@drAv^fbCz^xbD`e@pko@pvInzAtPp|Vfm@rqH`OnoK`Xjh@pAd~I`TjfK`UvmAhC``@fCp]rD|cArSdu@bZrv@nb@VNddA~|@daAloAd[|i@ha@b~@`]xdAfx@vpDpWrlA`\\ftAvs@xlCjdAp`Edm@xwCt}@bnFjp@noD~w@bjD|bA|bElXrpA`Yl_B|PtnAnOjtA|LjwAlJd~AfIf_CvFbsEfE|jDhDvoAbFvqA~HhtAvLp|Ar_@zsExS|yC|IfbCnDhdCzEtyG|GrbCzRdlC~Jr`AdLr|@rP`}@vTvhA~Sn}@xY|gAp\\`bAn_@~eAt}@|kBtkApkBdnAzdBjlAl}Afm@tr@vt@xu@b|A~sAz~@ns@b}@lm@dpBtsAv_Cn_Bp}ApnAn|AfsApd@ve@`{@~|@rg@bm@dj@~q@zh@ds@`PvTrZrd@lQ~YhP|Y`Rl_@jRdc@zu@l~Bve@lvBfZfdBjHbp@lJzz@zVtdBrb@llBni@hxAbi@rsAjf@n_B~X~uApTj}AfLzpAhHfjBJ|eAgDjvB}@jdBzBpaAfFbdAnRdgBrJ|q@lNbw@bj@ziBhn@j~Adi@leAhm@rmAxv@beBfm@d{Api@l~AjXfs@`Qnk@lj@zyArVdn@f[hr@bc@~{@pZph@nd@~t@p~@rpA|e@xm@zDrEpHxIhsAjbBtq@tz@~sE|xFlsAtaB|V`[pItKdnAf~AvDvEn`@bf@`NrPb{@ldA|MhRtg@rs@`e@`m@~y@j`AfbBrvAx}At{Ang@`i@`l@ru@xNnRdTbYRXrd@jv@j{@``BxcAflBfw@`hA~eAlfA`nA~y@jaB`q@~~Cf}@~l@`Qb_AdVbl@dLpl@|Inh@nDbq@dC`k@?tw@qEdZkCv_@yD`i@{Gzo@{Hjq@gFpg@uBx^c@vm@b@d_AfH~i@zFhnAnWbgAt_@jsAph@r|@t^df@nTzZhNr}@l_@pl@`Td^rKff@`Mps@pNtiArTl[vGta@zIjf@bN`c@fNh^lN~WzKr\\rOv]pQnb@bWf@ZpW`Pl^dWp[rVbn@vh@ds@|s@~\\t_@zq@~w@tc@pf@na@z`@bb@~]na@tYdc@rW`_@|QtU|Jlh@`Rfa@lKp^zHjj@pIfh@zFdr@fHnd@dEnYnAp[~@bd@DpZeA~a@{CnQ_B|]eEjr@aJ`[{CbYkBtR_Az[_@vYUh\\T~i@zC`k@rGxb@fHbd@jKvt@bUbw@fWn^nK`W|F~`@jGtUnC`Op@pb@|Bvj@lBfbEvMdhAnDfe@I`Vo@lWqBbg@_Gtg@mJ~`AcQza@sHb]mEhXmDh]sBl_@y@nTB`[z@jeApIzx@pIvXdCtVh@tZ^vp@mA~[eAtb@kJfq@iLz`@qFzh@iHny@mA`g@xFrd@xIng@dP`k@t\\|t@nk@vt@xz@pm@p{@`r@`fA~w@dmApu@d|@jy@|r@l|@fo@f}@zd@d`An_@nlAd`@js@fPbN|CzdAfNhkAzJffAtN`jAfVzeAlYhaA|Mxk@zCra@Sxw@iEvz@uOb\\cI~LwEhSyIbMgGjL{GjQoKdHwExj@w`@d^iWxTqNzWcOlSmJlRgH|MaEjMkD`TmElMqBfMaBtMiAbMo@tMc@xMIjUJ`Qn@zPvA`UlCnThE`[fItSdHtStIrRzJjL|GhRbMbRtN|JxIxJhJfMzMlMhOlOdSpNjT~MhUzKdTpLlWhTvf@`Udh@nGzMlHtNdKtQdL`R`JzMjN~Q|ObRnPbQjPpOrQrN~QlMzLtHvRpKrSpJxS|HtY|ItSjFdW~EpUnDhRtBpLbAx@HnDZnOZ`IJtIHrTWtMm@tNkA~L}AhMuB|SgEzy@gRjx@qQzaGwsA~`@sJjJmBvLoBhNmB~LaAzMi@jIYdJE|Tl@vTlBdMlBhM~BjMbDbOhFhJbDjIvD|VhNvQfMtK`JnLrLhNzNvI~KrIvLxMfT~IdPlYtl@rDlIbGtM|FhNxF|NdElKlE|KnG`RpGbRvFtQ~F~RzG~UzFhTbGzV|F~WnDzRrC`QvCtRjDvX~JfgAv@nIjEle@nDh\\~BxQzDrWvEdVzDtQ`ExPpEzPhFjP`FtNvFxN|GdPlG~MnHnNpHhNrJzPjE|Hf^~m@fRx\\|LjV~LlW|J|VtWh}@`QdcAlGnfA~@v\\x@jaAlAdq@|Anw@fDdbArIzfAtSdwApY|sAz`@vuApvC|dHp_@~|@~i@hqAhq@tdBvPtj@|V`|@jl@~hCtk@buCt[~bBrIvi@zGtn@zChd@z@b]h@fTKnr@Zxh@gBzi@eDncAaJxkCkI|iCyCfiAeBpmA_EfuFP`nAlBrr@~Dfr@|Ffo@~Izp@hLnn@fM~i@lUfv@nRhh@n[vq@b]nk@`b@bk@fhAzrAve@~o@x`@zo@pYvn@jVln@tQvl@xj@|tB`]fiAz^daA|^lv@Xj@fT`a@pZjg@l`@vi@va@fh@dk@xn@`f@rh@rZta@t\\rh@zUde@lSzh@hPfk@xMjm@jKhv@`Hz_A~Bxo@^dKMbo@YfQqBhc@qBbXa@vFsCbb@sD~^mHtt@mTbzBoHhu@{KtsAmDh`@gEpd@mJxu@qE~x@mFt}@`AbrBHhE`HroB|Cv^lGrf@`DhWtDnT~Hfb@bOtk@xPjj@~Xvr@l[vl@p_@~l@pk@fq@xb@ta@bl@zb@pg@hYtn@~V~w@`[jo@z\\ln@nc@ho@vk@js@bv@~f@hg@l^fZhg@h\\js@db@nk@|^`b@`^|a@~c@hZp`@v\\|j@ff@hhA|Ml`@fXj`AxSrfApgAxyGDRxRl_AhNlf@tHzWn`@fbAzk@tdApTv\\|~@nzAxb@b~@r`@``AzaBz|DjWtk@`W|f@zN|W`OpVhSl[nRjXjYx^dYh\\js@~t@fh@ri@~a@zc@pVl\\xOzStRl[feAvqBjb@l|@hYtq@vTjz@vOzz@jc@xjCxLlm@rNtj@nOfe@bP`_@bUhc@jo@~dAjr@xjA`Zvl@|Ona@`O`d@n\\vkAnQbq@zYfaArQpg@hUph@n]fp@hl@pcAva@hu@~]rw@l^|_Ale@lpAby@hpBtg@xiAnPl\\zM`XfK~Rr}@fwA`j@lr@jn@hp@hj@ve@lz@`g@xu@d]xp@jRdg@dIde@pGl`@~Cb}AnIvs@bJvj@~Ldf@jPr]zNjx@zg@p~BhcB`m@r\\~~B|iApfBpz@p~@|[z~@jXj_AdRzy@vQvn@jUju@x`@bbA`s@tz@bx@`dBjvBha@|t@n[pu@zUxw@fGvXdN`u@jMtaAvBlf@tBdt@]rpAgFl~@sL~fA}NnfAkRrdAmPnjAoJzkAoCfnADtgAxHlpAlMzfAhRnbAdu@|vCrn@vdCzZ|pAjZhjAz[fjAld@buAhe@nmArw@f~Af`AjhB~nAvuBz{A|zBzpBfqChq@`hA|LpS|Sb_@lp@huAjy@xvB`n@zpBfR~u@pLvk@dXvjBlF`k@dE`z@zCl{@t@ju@}A`{A}B~sAw@poAhEjmAdNx_Bt\\fdCv]hoA|^lx@hh@pr@fn@`h@bk@`Xlq@pNbq@dDzdBn@xn@hDvp@tQxq@td@puAhjBtq@vv@dl@te@xfAhv@ln@hm@|b@jp@`l@lsAlk@fgBtLld@hUx{@|SpjAhMroAIxiAs@dpA~Bx_BpEdyAPpvAuJhmDqDvqAIbD}Bth@gD~jAsEp|@}B~c@}@~PcAxTc@bJwBlx@ZtYpAj[xG`a@hIfVtC~GjDlInHzNjChFhd@`}@pFpLjDxKtFdZjG|c@fH~g@vNfdAjCrRpEp[rFx`@~DxYbHrc@zGrf@F^~F|a@fE|ZvG|d@lBrObEz]|CvZ|AnTdAbOrApVpA~Z~ApZzAnWjBdXlDjY~CzTbExSvG|YfHvVbGtQdG`OdKvUhK~UfKrVtD|JrGdQpI`Z|G|Y~EnXpBxOhBxOfBzS`ArOt@|Qh@rYTb[LfQRtVBhRh@lU`@hUhA`WrAtXhBzW|BdVxA`N|ClU~BvPzDrTxDfTfEzRvEvRdFvRbHfUjExM~ClK`EvNpKzU~Sba@lOfZxKbT|HdNlH~N~IzTfHjThGtTxDbP`E~SbD|UvBvQlBlUtAvUf@bXLdMJzUCnQD`VNhVXdVd@hTjAnZzAnUzAnQfCjV~ClVbEhV~DbSnGbZvGdYjFpUxFdWbGhZtDzVxBxRjAjPpA~Wh@lXHhPCxWe@nVcAjWiBxXeCf[gBlU_BhS{AhTwAhW}@~T_@jM]pOW`VC`NCbRLtNVtPv@p[fAvUz@zNdB~WrBdTzBrSpB`PTpB`B`LtDxU`EpTfBpIbCpLvC`MzCzLtC|JbF`QjElMxE~NhFpNrEjLvC|GnFjMnIbR|JxT`ItPfFtL`ClGxClIrChIxCnJvCjKvC`LpBdJ~C|OfCjPxB`QjCfUfAvLl@hLjAhZdAtVZzg@^`f@d@hYt@fYpAvSjAxQpBlWbCzVlCrQlCdQ~DfWzFpWnFnUnGlUlH`VjHbSpJbW`Oz^bItSfAxCnJnXnKn[bDvKlBrGdH`YnEfRh@xBbFhTjIzb@fHld@rIzp@zFtd@~CrXvDz[nE|YrC`PpErSpFhTdEpNfGnQrHlStJxTpJrQtLhRzLnQhNhPhTlUlg@xd@xNhNtMdOzNhRtJhPfK~RjJbT`H|RhDpLhAdE`FtQ|E|Vb@hCfCpO~F~f@x@lIfCvVDj@rFtk@nEhm@x@~KhFvs@nDtm@vBvu@`A|`@hCl_@~ArSvHpi@jH|]vEhUnIl\\|HfYdHjWnF~SdEpQzChObBbMrCxTrAzMlAdPh@`KP|Cd@xQTrRCrOMbNUdNs@lQw@~L{AdQaD~XeFv^eAtIgBlNqBbPgBvS}@~J}@pL_@dMa@|LIpNKbLFhLLxLj@zQj@hNx@`N`C|U`B`MrBbN~C~PtDtRpBlK`CvJzD|PlGzXtClOdChPbCjRhBdRpBxVh@|Mh@pOVtMEnSEfLi@dR]lLo@zMaAbPkAnVsA|R]rGc@pIc@pOUdQAzRPbUxAnc@`Dha@tF~_@pHj_@dJn_@pLzd@pKbf@vDfTrCrT~Cz\\fBl^x@`^j@vd@n@fc@v@td@`Chg@pEzh@hGvj@rIlh@zJff@hHtZhL`a@pJhYxL~ZbK`VhEhJvItQdIpOlOzVxKnObNnQfRpTdT~StS~QhTfPxOpKnVrNv\\hPfThJhD|AjKzE`_@jRhP|KnH|GlKnKpMpOxNdTjKdR|LzZ`I`VnGtWnGh]`DfVdChYtAzYXfRGnU[pTq@vN_A`NqC`[aEbZsDbWy@tFeF|_@aEv^}@bLsAvV]lRArSl@pb@dBxb@hFxk@nElZtJfb@~K`_@jS~g@fU`e@|Uri@bOv`@zBxIfIl[|CvPpCxPnBbQlBzTtA`RjA~PnB~\\J`BjArRjBnTpBhUbC`PfDlPpDrOjFzPvC`Iz@~BfE`K`Rl_@pVb^~]`^hEfC|`@`Vv]jPtZzOpVzMfX|VhU|VzYx^`WzV~\\rXtZdR`UbK|]xKjXbHd\\`El_@pApi@g@da@]nc@KhVQbJGla@hBbl@zFlWtEza@pHpUlG`U`IjaAla@dV`Odp@~b@db@~]fx@xw@xm@lz@hm@t`Ar[vr@nTjh@tTxp@lQrn@lQdbA~G~s@`CjZ~HpkAtE~{@jDj|@lChaAfBzpA?jw@[j`@ElHeA`WE|@yBz]mDl`@cPxkAeIjd@_Rrs@kQls@wIpVsGxRaPnb@gRnc@qRbb@}Yfp@m[ns@{O`b@qRlg@gNpc@wZnoA{Nfs@sLbu@Ib@yIxs@yIp_AaEbz@gFxtBAxtArAvz@vAh\\lApYzEfr@t@tKzQ|vBbL`oArNx}AzKlnAnIt}@pGff@dHtf@pXj{AfAnDdHtUdVx~@`Rtk@fPzc@jP|^vQx^j`@zt@|Rx\\dQ`X`TvZjP`TpN`QtVtXx]`]zVfV|KfJxOlL`NbKf_@lXfWpR`i@tb@vC`DlTlTl\\j_@zTp\\hPrW|KjQdSjc@bShw@xHrg@zGpi@fFph@zCfk@bAjz@cB`t@iN|jBuBtVgMxgA}TpiB}Ql~AwRh_BuBjQuFre@mDlZ_Ijq@aHxl@yKvkAmGvhA}DtsAEniAHjp@`Avl@zCvn@nEtx@tDrc@l@fHdHjq@bK~s@rLjs@~T|eAzId_@vWrbAtP|n@nRvv@rNlp@vLns@jGf`@xFh`@xE~b@dErb@~BhZzEfw@tDf}@hBdcAv@~oAeBjx@mJtmB_JbcAeArLmKd|@aFp^gMvu@oL~j@iQzq@uMdg@cMnf@wMfa@w]ngA}HbXkGdXmJze@qQf~@sTbwA{DzUgDdQqE|ScEbPcJ|ZcLr[yKdWuKrTkLtS_LzPul@~u@sl@vx@oWpe@aRrc@qRhi@mL`b@c[zjAaPd|@mQ|cAuItc@}Ldn@sKpg@{Ljd@gOja@sHrOoOrWgT~Wi^xYg_@hSkUlH}IrCii@fJuPbCkDf@mh@lKwYlKwXxOc^zX_PzQwLfP{LzRaJbTeIfTsAhEiEpOmCfLiDpOcAfIcAfIeDzU{BdUuC|g@}Cbr@cBr^_D~]uEx`@wGjZmGhZcKvg@uE|^sBvTo@hQi@nV?pP\\tWp@fXlAx[LfPPn\\{@~XsBlYoEh[uG|YmGjSaTnp@eJb\\mF|ZmDn\\iBj[]xe@rB`{@f@d^C~]{@te@yCv|@mAbl@Mvc@N|^nA`d@J|CpEhh@`@tE|Fja@~Ipb@lKn`@~Kl[hYhn@f\\rr@n[xv@xShn@xMne@fLne@bIha@~Gfa@rIzp@zHbr@fGjn@vH|n@~I~o@~L|p@lHb]rM|h@lSdr@p[f`AhUvr@xRnr@lQvu@xKtj@vOjcAbLpgAbGvq@rHnw@`Ilo@jIri@dIta@`Nhu@xEpWtDvVfCpX`Bd_@j@xV[tc@kBfc@{Cnd@eCr_@wAd_@]z[ZzYbAfY~AzUjCzVxFn]fHd[dRvh@bc@hjAdM`c@fKjj@|]vyB~Y|gAxa@ryAhJz`@`Ibd@dGhe@bDfWrKdz@pOp{@bPht@bVjmAXvAzKbp@pItv@dFrf@rAlQlAfP|Bf^~@vQ~@~QdAtX|@jh@Mzb@UzQmAlV}BtYcEd]}Fp\\gGfXyFzTcHdZkId_@uGhe@uC`_@aAvYo@hYHjWdAz]jBn]rAv]d@`Mb@zK|@ze@Np\\Y|`@AbBu@x`@qB|d@{FnkAoJfqBgFncA}EfbAkH`yA_IxvAiBhe@aAb\\c@~\\Kf\\Nxc@dAh}@NvZYt]aBta@iJxqAiBl`@g@t[LnZn@lUnB|\\zEb_@fGz\\|DpQlG~T~KlZdHbPfMtTjNrS~[p^tR|RnBpBrStSzMvO|BlChOfUxQ`\\xH~PrH~R|DjK~Kjb@dFdV~D~U|CdVjCh\\jCxe@z@|[b@n\\PhZAb]MnZ]d]k@~XwA|c@{@vQq@xOmB`^QfCgCl`@iE~l@}G~p@_F`h@sBbZ}Gn_AaAzaAElHSpXh@l`@p@hX~AzTdGjs@vA|LdGx`@xInc@|Odt@|Inc@z@fExCxPvCjRfAnJdAxIvBdTvBvWjAvS`A`Vr@fTX~WDzROj_@o@t[y@vTmAxT}AbSqCj[gCvS_DfU_FpYaFhUeJl_@oJtYeN`a@mJ~UePr\\aOnXuRnZ{Yrd@qKdQmMxXwKrW_Kx\\wElVeFhZkDlYwBx^i@nUSlPPb[ZpJVxH`AtPdAjM~A|OnFz]xErU`Il]zLbj@lDpTvCbUbCbWjA`Vj@bU@zWI`ScDtbAm@zSUtNYx`@Lv^r@r^jA`]nC|h@dCjl@jA``@X`\\Dn^w@`_@iAb`@oCjh@mBn_@oBlh@iAxd@eB|s@k@ri@[tj@DfRHdd@^jv@h@f^`Adh@vCneAxAne@^vSt@jZl@jd@Wb`BmGz~AyR`rAkZ~zAsKtf@aZnnA_GnYm@vCuG|[uHv\\uGhUiKnY{LxVmJrQ__@|j@qJjOcH`NmFpKaMpZuFlQoGdVmF`XiFp_@kCh_@{AdYa@j^b@d^bB`]nCl_@vE`d@vDbg@dDhe@pBx`@zAhYp@hYX|Gj@pd@\\p_@D~Yd@|g@`@j[lAn`@xA|^jBnXj@lGRzBbBpQzB~RlHxg@zFz[zCnOxFnVjHbYtIjZvM``@~LpZvIpSdKfSrPpZbN~SpN|RxYx^~W|ZjBrBxP~QxFhG`ItIbAfA~^pb@|LjPdLvO|K`RdMfT`NnZrJ~WfHzThJf]jHh\\jHv^pF|Z~Er\\|El^~D~]|D|`@fBlWhB|VtA|ZbB`]d@zQ`@~OVnPJhQAbR_@|Ym@`Ta@jRmAzX{@rOk@dKw@dQ_@fMOnKAxKJtK`@hMl@nKx@vJfApJdA~H|AjKrBjJvGpTdJrTvHdOfKzOlGvH|HjHnGdFtEhDnGzDtHvDlHpChIhCvFfAhIdB`K`BfH~@xHhA|GjAtGvAzG`B`HzArIzCtIhDrFnCdDjB~D|B`F`DtExDpCbCzCnCrHrHbIjI~GdJpFvIpFjJrDjHzE|JbDtHzDfJdFdNtEdObEpNvBpItAzGrBrJbCnNvAvI|ArLhAxKlAdM|@zJr@dLj@~Ll@|Pb@zPb@rSPnVRhRPxQLnI\\pVPlK^rO|@nQx@pO|@hMvAxO|BxS`DjTzCxPnBdJpBjJbCbKhBxG|BhIpC`J~CvIrD|JfEjKxFnMbHnNfHjMzGvKnFzHpFjHlF|GdG`H`HzHdG~F~GnGtE~D|FxEhGtEvGbFjBxAvMlJ|X|RlJvG`J`HrFjDdm@ff@bO`PvJnKpNvRpLpPnIfMjMnS|K`SvHnNdKnSfFpKnH|PfDlHjLpYfFtN`FlNjEnM|D|LnHvWlE|O|BdIzEfP`Sxs@hF~O~Ld`@tMj]hR~b@hOtZzMtUjUj`@vPfY|MzUnJ|Q|LzXpIhU`HfTjGzTdErQ|DhSlDxVlBnS`AnKnBt[`@x]Dr\\k@fUkCte@oDd[yDjYuDtRqEbUuDrQwFtVyE|ReGpUmGnUyJx\\oHjUeE|K{FzNyEjKgEvIwGdLyFbJoEpGkHjJcKnKwHjJsLbKkJdIaLlJqLxJwJlIeKjJkKlK}LfNcMbO_O`TyHvLsI`OkGjL{J|SiIbRyGxPgI~S}FpOsD|JcHfRqIxTmHdRyGnO{GvNaG~LcHfN_HdMqKfQaHlL_LzQ_H|K{ErH}EjI{MrT{Rz\\gOtWoJtPgJxPsJ~Q{Qx\\eJnQ{G`NgJfS}IlRcJpRmJxRgIlPiJrQiHrMyGhLwEhHcGbJ}JpNyKxM_KdLcIfIwHrHiM`LgNhKwKxHcMtHaLrGaJlEqK~EaQvGmIvCqM|DwNbEiOxDoQ~E}NtDgJjC}JxCyJzCeNpE_J~CiJjD{KlEaR|HyG~CwFjCgGzCaIjEeLpGgItFiObKgMtJwKrJwKdKeQ`R_LdNqJbMiHdKiCdEuF|IoHnM{FnKaGnLsInRoJxUoI~TiFpOeGhQgGfR{JvYcJxV}HfToEnLwW|s@wSnl@}K`^yI`ZgOdj@oGnWeDfNeJ~a@uCbOsGr]{FvYeD|SmCnRmCfSyC|UwBbSu@tGaCpWqCzXwBtXqAhRcA`PuA|WcBf_@uAfd@}@~b@q@tu@A`j@b@xg@HlF\\fTTtMzAba@dAhl@PxKJdGb@lXZ|h@?hh@?th@K|[F~v@bLhxCnHdwANdbBmDzx@{@fKwBdWaDjYkDdX_DnT{E|XwIta@mMdl@aErRqDnTaCjQuAbQq@vRUxSPlSZhVJvZSdTw@lTwA~PyChSuDzQcGlVwEzQgFtVuC~QgCnWkAvYP`Vl@~T|@fPhBnOvAbLrB~JdBjIfFhPbHvPbEbJ`MlT|LnQfP~QfPbPnOzMrPvJpIfGvTnN|VtOdWrPlYxS~ZlWlGrG~Y~XjM~MbVdX~C~D~FpHdYx]~Vp[hVj[x[ra@fTxWtPlTfRdTfJ|L|KlNp_@rZnMjJxW`P`IbEpMlFjSjIjg@`RdPpHvPnK|LdKpHbIvJrLfUr[pS|VxNhOxMdKnJjGf\\~RnWzOdVzRdN`OzQxV~ItM~MhRpMhQbYf[hRbS|WhY|FlGr]la@`r@`y@tQ~PbL`ItLjHdTrK|LnFnGrCfIdEdGrDjKlHbJzInJ~KhHvK~FpMhF`KdEzJxEtLfIxRvIfQbJbOnLvNpLpLzM~KvJxIvGhFpSzQ`KpKpIlMpKfOjUx\\bQbWpSvSjLzIlQ`LnU~MvUhOdPzOzNxRlMtUnJhTfHjRzErL|InS|JbTnKhS~NxWpUlf@|Nja@hKvb@bCrNpBbMdFf`@tB~OpAxJfHr^xJ~\\zEhLbHlNvTvZbMdLzMpJdKnFnGjCbGzBbKdCpOtB`Jj@dMNlZq@~^o@bKl@xMbBfKvBzIzCxMfGvKnGbKfJpGlGfKrMlJrOfJ~PlWxe@|KtPrJzLrM`OjP|N~KdItQrKtVjKvXpHbYbGz[|HfR`FtRrGlIxCjRlI`N|GhO`JnJ~FtRnM~OzMlR~PvRbSzY~]bOdTlR~ZxZhg@jNfSxL|LjJtHpN~IvPxGrN~E~NfBfL`@hKAlLg@nJ{@nMcCnQqD|QqDzO_B`Mc@bLT|Kx@bKbBpJ|BpJzD`NxGtIhG~HfHfJxJ~ItLxHbMzI~PhK|UpGbN|HxPzGzN|MfYfI`OnJzQdQbZ`HnKrIxL`KzL`CnC~AfBzFfFjElDhFxDbChBjCfB~IbDnQpGnMrDdKxCzI`AzKf@tLPbPo@xEe@bGm@jOoDbIaDfJeDxBw@lMqFzUsM|EcCzEeCfOsHvXqK~NsFfQgFfVaGd\\eEv_@mDzXy@hf@Cpb@fBpQlAfVdApMt@hPLxX@`TaAhTsA~j@_Gh[iCtQw@jXw@jQE~KB~QRnRbBtQpBfVpFfK~CjMpEfMvFzJ~FtMhK~MjK~L|MhE|EdDtDjHrKjJpOpGlK|KvUrCbHtHbOpK~T`IpOhKjQrOjTlMzOxIpIlJ`IlJ|G~GtEhHrExJbF~^`RtUzLxNlJzIxGdK|ItHrHtK|LdNxRfOrXjMh[rEhMfJf\\~EtTfDfSd@rClD~WdExa@TfCbE|c@~B`QzC|OrDnN|DnMzGnP`IxMxHpLvEnFrJ~JxIrFvIrFdHfDnKtDpJzBrMvAbNp@zMZfZR`Ml@~JrApGdAhGzArGvCtHhDfLlHlFxE~AvApFtFhGlIdDzEnD|GtF`N`FjNdF`R`IvZvHzXhGnPtE~KnD`HlE|HrCpEdEtG|O|SvTpWxRrS`VbXvP|T|IpNpHfN`InPtHbQdIxRtH~S|HjVvGdUjIl[lEjThFjUtClO`C|MjEdR`BjHxBrJnGpSvFlN`IvQdNpUpKbOjM|N~L~OhIhLrJfPtD|HpBbF`FnNbF~OzGxV`GvSdHrUzHhUdKnRvK`PrLnTfKpK~LjLjWnSdThQlLjL|JvMnKhQtKvRxE|HxEzH|MrS~OzQrLpKhEfDtIjFjMhGlMdFfF|A|KdCnM`BfJr@|Gd@xJLbMc@zMkBfJ_CxKsEzJiFzMwHxN}JvHcHpI_J|IkLpFwI|FcJ`Xki@pKsTrKgWzO{]pJmTrJuSlH}PfJ{P|J}PhKiRnIsKnHsKdIeInOwMlNsKxN_LjMqIpOqJ~R{IzPcGl[oInNmD`QcBfOsAjf@kB`QU|PCbQWvWTxWSpq@aCr`@wCb`@sFj_@cId_@mLxa@yP|YkOxiAeq@bfEitApbBuSv~AZ`]`CbzAjMtJv@noh@duEfg@VfVOhXw@h\\yAl`@eD~j@}Hnh@cKzeBq[dxDkr@pbHibAlu@aDfq@Opd@]~d@eF~x@eTvx@oQ`\\gDf\\aApSB|Sp@di@dFnTrDjU`HhJjCbKpDvMxFfH|DvS~KhShM|FhEbLjIbl@hb@~a@jVjb@nTlWdKzW~Hl]pIv\\|Fdh@`Frh@hB~h@Irh@mB`yA}If{@aBrnA~O`pAj\\bbAfh@nnGx}E`hAfn@f_AbZ``AjP~cAhKrWjDlYzBlUpAlo@x@lo@uApWcBvUgCpo@}Lhw@mRpDcArTcGlZiI|WsHlWeF~V_ElWcChWkApWK|f@bBjg@pGrZvGjZzIzt@zVjWrHvWxF`WhDdXnBlk@^ll@`@fu@g@zDB|g@`@xDBvb@pBjDNxYhDnBTt`@fG`a@`Mz`@dP|^|RtKzHjQvKnH`GtVbSf\\p[d[p^nWl^`Xzc@`Wzf@|FrNbMzZfQjj@p^`iA``@`lAt@xBbQ|b@bG`Oj_@tq@pb@bo@lYxa@lk@`{@xLxQ|NpTpO~UjHtLrQfZlV|g@rQhm@pLff@nzDzyRnHz_@vJpb@zFfSdDlLfP`f@~Nb_@|F|NlExJrVlj@lGnOzKfZvHzVnHf[tFhZhGrb@xG~k@xJl~@~Izl@dIf`@fJb]`Nd`@jJhUxPj]rRz[nQjVrWnYhVpT|VjQ\\TnT|LnQjIfShH`d@bPld@vNfdBzl@jkAjl@ja@hZbb@n^n\\t^nf@zs@fYfg@`Qd_@xPz`@b^b}@flAbzCpa@z_A|`@zx@d_@rq@ph@vv@h^re@nc@bf@n^j]|UhSnp@fh@hgAdy@n}@zr@dZrX`XfYtQjTlY`_@nq@f`Aj_@tj@nb@xm@bfAv|Ad\\dg@tNjWhOjY`NfYpO|^hN~_@bMfa@xJv]|Pnv@lIr`@lQj`AdIhc@xJba@bLv^xGxQdKnUtKlWhAnChOh[fU~[p^r]pg@pa@lJzGzUxNxVtLn`@jO`c@~KtOdCzWxCxStAn[f@dXMh_@iC~{@wI`p@qJde@_F`o@iD|Pn@jR|Av\\xEjRlEzJpCrHvBzNrFvRvI|`@tUnMpJrQ`OtPpP`MtNtMfPlGdJhD~EjGtJjDxF`y@hsA|OhW~QzWhBlDzMxRfQbXfi@bv@zLhR~KvQpMrWjJ~SdKfXhK~[|FfThI|^vGb^`YtaBxJna@jKh^rFfOhJfUnIxQjDvHtJ|RnKnRxLvQ`KfMb`@bg@d~@jkA`k@pw@tTvY|\\bf@jV|`@rRn]~Xnj@vIvRlBpEpFfMbNp^dGhRtGbUjH~YnFpW~DhTnH`g@vCzWjCrYdBnVxAd[lAxb@Zr^GjXWzWsBvu@eAjW_C|b@qCtd@qDvh@cE|l@gCb`@gCfb@sBjf@qAdj@a@lg@HpX\\pU`Af\\rAxWxBnXbClVnDzXzGpa@`E|S|EfRxE`R`I~W~GlR`HnQ`Pv]~JdRxNpVpPdVhM`PvMzOzShU`[vZ~xAjsAbZ|XxWpXjNzNxUvXnYja@xSx[fWne@hKxU~MxZ~Tho@pPtl@zKrf@lSlfA~e@vkChVxoAbZtmAdRdm@`Prb@vSpd@pMrVjExHlHnMx[`f@dUxZfUpXxOnPzS|RzRlPlUbPz^nT|WdNfYnMnt@`Yls@|Vbu@rWvb@`O`d@xQ~_@~PpL`GxN`I`RvL~SxOjYfXvi@ji@ja@td@bb@te@x`@tb@rh@hb@r]fUp`Ani@br@xc@vh@|`@xVrTb[hZdRdSpZh\\rh@lp@xlXpg]x_BtrB~~ArnBtj@ro@xc@fg@r]d_@hr@rr@lp@|m@bYbXrm@rh@n[zWj_@~YpZfUh^hXh}Bd~AxYnTdWlTpRrQhS`U|MfOfU~Zd^tj@hHfNbOtYlLlXzK|XvIxVhEfNdOtf@jMpe@h\\ppAzRtu@tUzy@vSnp@|Tzn@nPta@vSjd@~Of[|Rb]hZje@b_@bg@zb@~e@f^z]zMlL~OdMz]tWvh@~Z~^xQdO|Gdp@nVfx@rUZJjHtBvxDj_A`vAf]hwAh]liAvXjpAr[`eCpm@dhBpi@nhBpo@pn@pZ~XzO``@fVzThOtSjOlh@lb@|VrUfW~UzTdVfTtUzf@pm@X\\fPtT~[he@nJdOha@xq@zVxe@lVjg@~MbZnNt\\bSrg@zKb[nKb[rJfZxUly@~Nfk@vGtYdHj\\jOrv@fIzd@rHfd@zb@rsCbNt~@rQbgApVvtA`UxhAn@`Dfh@d_CrYdlAxTl_Ara@hkB|SdfAtRhfAdWd{AnXnjB|NliAbOrmAdLjfAdKzgAfKjmAhF|u@dGn~@jGrdAdEn|@nGfaBvFvuBtC~|ApAv~CZju@Vxt@|@py@rBv{@fD`v@jBj_@fF|p@xIny@~Ivp@~RdjAvV|hAjXz_AxG~SfR|l@`Qvb@pAxCzAjDhXnm@fZpe@zUz`@rMvRpTf[dJdMvBjCdMrOxPzRbSdT|SrSvUlT~RfQdVtS`jBnxAd\\dXnJjKbm@jp@hVvYnc@`q@nQj[lMdWzJjUbHrT|D`QxFd\\fCvMnB~RpBr[dBbc@bAxUb@tJzA|TtCtUlClPnD~LpF|MdApBpClFtGnJrKjKpKpHvJpE|HtBtJdBnMb@fK]dIuAbGyAnHwCpKmG~KqJ`GkGxGiK`EyI|DiJxCeL~BcLdB{JdBwLdC}StDu^nB{MvBaLnC_LlDsJ~DuJdHsLxH{Jbg@kg@vd@kf@~LmVpUySnr@mq@pjAgiAd`Bw_Br[e[xOaPrt@ct@ts@ar@he@w`@|g@a`@xw@ug@nz@qe@pk@cZzWsLjLiF~VcLje@oR`G}BtSiItVaJrq@sTtp@qRb~@sTt{@gQjHoAfJYdQi@|e@oEnCWfGP~Ez@zD~B~BfCbE|HrLd[rDrG|AdB|BtBpDdBrEpApQdEzD~BfErDrDzH~B~JHlWw@ng@e@vz@mDr_Aa@zPmAph@m@xp@NraAxAjs@tA~]~Bxa@`Glt@lIdu@rJ|q@hKjl@~P`w@fBdIlY`dAtMta@xSbl@pTdj@jW|l@vSra@|Xdh@jUj`@zRxZjYpa@dYb_@tWpZpi@nk@pZfYpnAhdAfn@`g@bo@zi@te@nf@fc@zg@z_@`j@v[|j@dZ`m@hYfr@zVdv@vTlx@lLvg@nM`n@~VbqAtMdo@rMfn@xRjw@bZpeAxVpv@vNl`@fNn]v[tu@z@pBrbAtlBtq@`fA`Zb`@zJlMxSnXtY`[j\\p]loAzpAlTxVtcAxsAv\\~b@~[v\\hOvNjNbL~^bY|\\pSj`@~Qf]~M~VnHvVnGfVfEv\\nExa@lElc@~Ez`@tHlYhHtZzJrV`KlR|IhXnO~UlOve@l^pW`Svb@d\\hVnOpQ`K|b@hS|S~HhW~H~X`Hf[|Fz_@vExd@jCdn@rAtz@\\z_@Lbg@t@zQr@lZlBpSfBpZpDfS|CjYlF|]`Ih`@`Lb[pKv[jMte@xTff@`Y~`@tWlk@~c@n]n[rh@`j@fl@zp@df@dm@~e@ro@fe@fr@fd@jt@b`@lq@j^vq@tQz]p\\`t@`ExIjz@jsBpu@hrBv~@|eCbt@nxBtoAxfDvf@~tAnzCvoIhaCnyGjxCt_J`G`Pxc@|lAh{@jzBfq@`aB|Pv`@dAbClTde@zRp`@li@~`Apg@~{@zv@zsAnPb\\`Rj`@bTzf@`Sli@pLr\\vLn`@n[reArl@|nBrs@vbCzT`p@vWbq@jlA|bCnrAhjCjf@f_A`f@hx@zi@xt@pa@hd@`UvTnTnR~[~Vrd@rZ`CpApc@|Uz`@rQj]tMdi@rQxj@zQntAdb@bmAn\\j_Bb^tl@|KpSrD|X`FflAbQ|_@zDpjAlLd|@`H`t@dExt@`CnWb@jT`@|j@n@t_B?`x@aAxx@kBp{@aDry@wDlwBcO|~BeQ`h@uDr}Ey^hrAwIlz@sCxZk@hn@_@zBFzp@|Av\\lBto@`InIz@pPjDz^~H~b@~LvS`H~n@hXbV|LnYdPjZ|R~YvTte@va@zP`QhNxNhOzPxWr\\x^nh@d\\hj@h[pl@~Xtl@f]nx@zW~p@hY~u@hZfy@zS`n@hVbt@`Yf}@jf@z`BtGrUhe@vdBz[brAf[lsAru@lkDnfAr`FfFjVz{AjdH`n@psChUteAdXhkAvV~dAhRls@fS~s@pNhd@vLx_@rNfa@rQje@vSxg@nS|b@|Udf@l_@xo@`N|TpPfWtSdY`VzZxp@dw@xYzXx_@n\\d_@`[fl@ra@b`@|Tx`@zR~ZjM`ZpKfKnG`KjEt]`JdQdDpI~Ax^~EheA~Jrl@lGb|AtLl\\hBnNPrMc@nIq@xImArOwDzN}D~LoFpLaHfGoExHaG~K}JvGiHpKuMxLeRrGeMlF{LhJeWxJ{ZdKw\\pIcVhJmTrJ_QfKkOrKaMtNqNlOaLbIcFtGeDzGyCpIwCvPsErGoArIeAdN_AxNWvPTjIt@pS|Bh`@fGldBbXtt@rMfW~ClRvA|Pl@hPg@lTcA|UuCjSaEvUoEjL_CtOgBtUo@bSv@fJdApI|A`PbExPbHf`@rR`^zRlFnDnp@|c@~p@rg@jYdWpZp[|Wr[pVf_@rM`TnNhXdMbXhLjWxMd^pIfWhGbSfQps@bPj|@rH~k@~Ght@`D|k@|Ahp@j@tg@Yhc@mAxh@oBng@_Cl_@oHr}@{AjO{Q|iBkHrw@sFpq@yFv|@oDry@cBhn@gA`y@Yfv@Dzb@\\bn@dAzd@bCvv@zCjt@pFlx@fFzn@hHbt@tI|q@xEl^~Fx_@zHbe@xGf_@`Kfj@x[xcBlZ|cBnLnp@rKdp@`QbjAfLd~@`I|r@nGfq@dI~~@rEjn@zEtx@fDju@zAd`@`B|k@bAzk@l@tq@Zz`@D|LV|q@Qfv@Ch_@]~[{@lj@uAxr@gD`dA{ElnAwCnn@_JfkBsFzpA_Cjm@aHdlBqE`_B}DxdBc@hRQjJgClsAmCtgBe@pn@sApkBk@j_AU|wBJrsAd@bwBtAbcBjAdrAdBrkAzCjbBxGbqCnGjmBlEpsAtFf~A`HtyAbEro@j@hH|C|_@hIngAdKxkAfLziAhMl{@bLhy@dF`ZnAhHl@jDjL|o@xJjh@nJtb@fJ`a@vJdc@fNjj@bLda@lL~b@nPnl@nS~p@pVfs@~Ujn@fHtPtF~M~Pha@xOz^nx@jaB`j@rdAvgAvqBjm@`gAzl@~kArn@zoA`n@poAnr@nzAf{@hpB~}@dxB~x@jsBpo@pbBdk@v~Atk@jaBdj@n`B~i@|}Atc@`mA`p@bbBti@bwAzh@dpApl@drAbAxBrg@~iAjm@frAn_@tw@za@ry@xg@nbA|g@xaAxd@fz@~k@xfAd[zh@zGbLv`@vs@zg@fcA`\\du@`\\zz@v[d_AxY|aAdSdu@`YxcAnVvy@vTho@hSng@`Tra@vTr_@|Wn`@rc@pi@lg@`f@jb@|Z|h@r[nd@jTvn@zSdq@tOjq@jOjj@hOvc@fPzXnM|YhPhZrTfe@ta@|QhRrQ~SfLtMvPxWzTt[xRp_@nPx^pItTrKhZxKz^xKtc@dKvc@rKtk@rHbh@fGzo@fGj~@zDbt@dFl|@nG~v@jI~q@vOj{@dSrz@bW|y@lUnu@nSnu@fQlw@tL|w@nI`y@bHlaAxDtv@lH`jAtHnt@xKnv@jJ|f@|Mjk@jQdn@pT`n@|]||@n[vt@rN~^jJzXpB~GzGpUdFnTvJzb@~Kzm@nIxh@xHji@hIto@dIhx@`Gtw@tDxp@fCrk@zA`h@~Alv@|Aht@`@n`@jBdm@nBtg@hF~r@~Ifm@xEfTfDhOdQ~k@|T`f@xWv_@~^tZnOpM`QtKxm@~Xbh@hWf`@lZbU|WnR|[zPxa@|Obl@rHnk@~@zShAjWFrg@wAhd@yCfe@gD~r@?zn@v@v[dEni@pBzIvKxe@pNra@`R~\\zN`T`SdWj`@ne@tc@fk@f^zf@tq@|aAvbB~pCdKnS~IfUbKr\\dHza@dGtk@dAji@_@jdAVjk@xCjk@nGvi@dO~k@nNla@vNdY`W|\\p_@`\\tb@fUl[vKxe@`JfpAnWzq@tO~[tDr]lBvg@[rHYpZmAxb@sAp^Nvb@zBp]~Df^fHlc@zLvUlJ`WfM`JhFhQdKfOtJfF|DlTdR`QrOfXvZ~Q~U~QrYhV|b@xLxV`Pp`@xO`e@dNtg@dFpTrE`UbKnl@nGhg@jFri@`Eta@vE`n@`Dde@xCxq@RxTrAna@fB|o@^f`@[`v@e@~t@}@~o@iAxWyAtj@yExv@_Hx_AgAfMmH`t@{Dh]qDn]qH`e@uHzj@mV`|AkPneAyIrn@oBdPcDv^s@tLyCxk@k@xTk@d\\Wz[Lj]TbZt@pWbBru@xDpfAd@xOf@jp@AzTY|\\m@~XiBtb@sEbx@}@`GwCl[gChQmFt_@gGp]gGtc@}RjhA{Itr@mCnZwA`QsCdi@o@jO{@l]{@jZPdb@Xhc@bAl_@nBdf@zEtm@lCr[`Fx\\nDxXpD|S~Lft@nP|cA~Lbx@tPnpAvLjdAfBjUdEvk@pDln@dA`RjDj`AdA~i@zAdj@|@n`BJ`z@j@nhAt@ly@hAts@xA|j@lDjz@p@xN~Cjf@|Err@xC|YvBzXxJby@bIzh@|EtZlMnu@dNzm@lGfYlLvf@pFlSxIhZfOne@lMz`@xMv`@~Plg@da@vjAlZ||@bXry@fThu@lQjr@hK~c@jKvh@|L~q@tMzw@zKdu@nWveB`Nb{@jJ|e@lHz\\bLfd@xJd]jO|e@`Nl^|S|e@rLvUdPlZdSr]bUr]vTvYlVlYj^h`@vb@zb@t]h^v_@p`@hWrXdZ|\\pShWtQbUxTf\\jSj[~Vta@bVbb@zZbl@lSrb@jQb`@tOp_@bNf^fPfe@`Ovd@`IlWrHdXxJd^rKhc@|Njn@dPbt@lU~cAhNzm@pNrj@vLzb@~InZdHbT`Lb[`T|j@tNd[pUbf@|Wlf@~MfUhFdI|HlLdN`S|Ux[lKdMzStVtThUvYjYjXlUlWrS`c@b[rc@r[p\\dUhUhPt^pW`PdMhTdQdTdQrU|Sd[`ZlXdY`X`[nXn\\xY``@zc@`p@lf@lx@l_@lo@j\\bn@pSj`@d[jn@le@bbAbo@vtAnc@tbA`p@d{Avd@pdAh\\ru@j_@bz@tWnk@|Tfe@r^zu@~U|e@dVte@xVre@ha@nt@l\\xl@`Vt`@ha@bp@f_@vk@jg@`u@f`@di@l[fb@jg@dp@~Xr]|V|YjTtW~c@xf@|f@vh@vj@rk@zm@nl@lf@~c@tg@zc@fVvStYjVhm@hg@rxCp_Cf_B|pAl`@h\\dh@|c@pk@|h@lUzUdYbZtVxXj`@pd@`_@xd@vVh\\pWd^|^hj@la@fp@b[li@jYxh@d[zm@rY|l@vd@pbAx^ry@df@jhAzc@raAnWlh@nTlc@nS`_@hX~c@hKrPlOxUdd@ln@bVbZza@ne@be@pe@zE|Elk@|i@|s@ho@bu@nq@zf@nd@lo@xm@zUxU``@pa@vb@ff@dZx]|Ub[v\\vc@|[le@j]jh@fa@dp@nNdWbXnf@p[bo@vTjd@`[vr@tXhq@zTtk@za@bkAjWrw@dUzt@nSzp@l[xeAvZtdAnTrr@`T~n@pNr`@~]d}@zK~VtY~l@zQ`]|MpVdTx^~d@tu@ta@zn@zq@`gAfKvQlN~WhM`XpL`XpGjQfCfHbDfKjI~W|Jz^xIx_@dHx_@pHff@tFbe@pDv`@vBh[dEfaA|DbhAx@fUjEzaAnCxd@zEfr@jEze@|F|e@pIlo@zCbSxG|`@vHn`@dI|^xL`g@rNxh@pKf\\|IvXvF~PnKhWzK~WjSfe@|R|a@zQb\\nOlXdKrPjMrSt]dg@~Uj\\|Wh]tXp]bQvSdZn\\`SlTtu@lu@pb@n`@`^d[`eBxvAdDnCnl@|c@ns@dh@dy@jj@`u@le@jm@p^bp@x_@ls@f`@hv@v`@~k@nYju@p^|l@dYfc@tS`m@fYru@|]`l@dYld@fUv]dRle@xWl\\xRjZnRz_@tWda@fZz]jX`e@j`@x^t\\fWfVjd@rd@p\\p^fX~Zt]`c@~O|TxS`[pSx\\hUza@lRf`@bRfb@jRje@bQ`g@vKn\\dNpf@xPvr@xIna@fEvTpE~WxGtb@lH`h@jLj~@`OrmApGze@vFj_@fIvf@hHja@nIxa@vJ`a@`Phl@rNbe@dL|\\nRlf@bW|m@dWxj@bWvh@f[tp@rT`e@|h@zhAr[jr@|`@r{@jXdo@|[hv@v`@haAzTbk@tRrh@fVnq@dRji@~j@bgBb\\|fAtVf~@nPpn@rU|_AlSz|@`WhjArWlrAdStgA~P`dAxPpgA~K|w@tJxs@vIjs@dMdlA`Hpv@jDjc@dFju@|Cdk@pCvi@rCf{@hC~}@bBd_AvAriAhAhpAfAntAtA`gAz@`c@jAr^fB`b@`C~a@`Ddd@|Fjm@dGlg@fGhb@vG~`@xFv[zFzYxIz_@rKnd@~t@fuC|FfUxKze@nGfZzDjT`ErUzDjV`EfYtF~b@fG`m@rD|`@|Exl@hEvm@vGv}@`Dn`@nC~VtD~YnFh^bGt\\bFnVtGrXbLp`@vH`WvKxZtKlXzNb\\jS|_@~FlKzIbOrJzO`r@heAtOtW`L~RpKzSzPp_@fKxW`IvTlInVrJr[~Szt@`Vvx@jN`c@dK`[~Lz\\fJhV~Nb]`KnTpNrYfM~UnL|SdRdZzMfSpSjYhOfSrPtRnLtMtNrOvMjMvOvNnW|TfTvPjRhNlXrQfXrOzPfJnY~MnZrMlQrG~PfGvQvFpXzHbi@`NrwAr^l_@bLn]bLx]dNt[vN|[`Q`YnPxUpOxXxSxUrRxP|NfZhYxZr\\rRbUlTlXlUj[vT~[`RrXrQzXfXre@lP`[zUxf@|E`LpG~NvNh^zGnOtQdh@bNfb@vDdMnFxRrGlYrFlYxF|\\vFt`@xC`XvB|UpB|VfBl\\pAhXr@pXZpR@p[@hb@Y|`@kAr{@]bv@L`e@j@pXn@dXbAxXxAlXnBhXhCrXvEz_@xHnh@nHj`@tHh]hFhT|GbVjIpWvL|\\|IrUlPn^fGxLdKrR~LhT~f@~y@l\\rk@xL|UlJdSpN|\\nN|_@dHxTrKv_@fUf{@bBlGhRrs@jMpa@|L`^xJ`WtNb\\nJjSjLzTfTr^hRdYb`@pi@bf@po@`g@bq@bt@ncA~p@p`Atd@xq@dg@`v@nd@|s@lBdCno@`dAbJrNzMtRvIdL|IxKjJvK~KjLnQ~PtMrL`P`NbPjLjMzIlLbHtLrGdPdItPnHbRlHrStGpUxG~MvCrh@nJps@hKfZzEtShEnThF`PfErWfJvXbLr[jP~NnIvSlNvTlPfWvUxU~UjYn]dWt]jYpe@pPl\\pKhVpOj_@nL|]tLja@hJr_@|FvWnGn\\zFt_@jClTbFxf@dHf|@rE|p@~Dfh@dClYpGni@hE|ZfHba@jGn[lJr`@bHvVnOze@nHdSVt@pN`]rPr]bQd[zLvSvQrWrSfXfShU|XtXhV|Stx@bp@dd@|^v_@~\\tT~S|UjVpZj^rQxThRrWlN`TrGpKpKnQvOzXzL|T~Zfo@za@b}@tZdr@`Xzo@f[fv@b}@t~Bp\\l|@j`@hdAlQvd@rTpi@rRdd@zKvUzPv^bQf\\pM`VzRx\\x]|j@x]di@j[pd@fXz`@vUh^`S|\\jH`NpI|PbNrZ`JbUdFlNdOjd@hHxWxChL~GjY~@bFbC~MzEpYfFx\\nDlYnEhc@nB`XnAfTjBb_@xCxr@hDxy@fDzr@`Drn@zBr^xCr`@lCj\\lG|n@vGzj@`Ez[tGjc@hGd_@|Fd\\lHd_@pMdm@bLxe@jKp`@~Jx]pN~c@nNza@fN~_@xMb]pJnU~JfUvNh[fRr_@|[dm@rXbf@fVb`@zR`ZpT~ZnYb`@jOnRnJ|Lf\\p`@`VzXdg@lk@pWrYdX`ZtW|Y~QtTx^`e@hS~XvRbZ`R~ZrVrd@fKhThKzTxLxXfUdm@vKvZxM|`@bXty@vTrr@|H~TjGjPpGxPlJnStI~QfLxS`T|^zKxOzIfMpMvPtN`PpJrKlJtJtKnJ~IdIdM~JlNfKbHrE|RtLzHpEzIpE|TbKtMtFvGfC`StG`YtH|WvFlS`D|NfBbNhAhMt@hQhAp\\|A`Sb@nOt@jSl@nR`ApMjAdDZ~Fj@xHv@vQrCfPvClOhDhG~A~HzBxQrFlVnJ`PrGlVzMvUpN~NxJrPxL~ZhX~RvRlv@fw@rV`VpTlSjRpNlMhJtYzQhQlJx_@bQvRfHvY`JrX~F|PfDfRzCr\\bElv@hItc@|E`\\pDxc@tGxb@jHvZnGdQ`EjZpHrWnHtWbJl]jMpZpLdX`Mva@lSlc@rVpt@lf@xc@~\\`\\dXpYdXjY~Xd\\~]l[p_@dV`[lVb]p[he@`w@roA~Zni@fWhb@~Up_@tTjZxTjXjW|WfQjPxStPzPdMpY|QfMzGdJtEbMxFxYjLjZdJdPnEhGxA|QnDxRdDfYlDve@lE~e@pEhd@dEnh@rGpUvCxUdE`g@|KnZ~HxZlJj_@pM`UnJzNjGlX|Mf_@dSbZ|Qp^fV`RnNvYtUbZbX|ZtZrXdZxQxTzRvVh\\de@nSd[~Wxc@`Sh_@pTbd@zShf@~Sdi@hKnYvKp\\vMhc@`P~g@zS|w@jQrt@xPfs@bMvh@x@tDpLxg@bLlf@~ClMpF|Tr@`CrJz[rQho@pK``@vKj`@xGhUbh@viBlTft@~Xz`AtRfs@~Oto@~Qdx@bF|W|@xE`EnUnQncAzDzWpGjb@lEp^nEt^fEr^`Dv]hIf}@dCt]|Bp_@zB|b@hCli@dBfh@|@pWxAtd@lAnp@xA~x@dAry@z@ty@r@zz@pAdkAbApe@z@v_@dA`^xBtd@lCbd@jDtf@bEtd@zGlm@jGhf@~Gbd@pKrn@lK`j@bIj]dHpZdJv\\dWz{@rPpf@nRph@dg@rmAng@vqAdJjW|ErNvElQbH|VnHl\\zChOxFlZfGva@hF`e@`BxO|@hM|@rKlAzR`Bf]bAdYZbd@Edo@eAbg@{Ax`@qC`d@{BzVoHju@wMthAs@|GaNjrAaHbx@iFrbAoA|WsB`p@{@j[e@d[WjRU``@Z|{AhBt{@v@d[rErcAzBh`@zElq@nNpvAzAzLtG`e@zI~k@rKrn@jKxh@zErSvDdPjHlXbFzPtD|LdGlPrGfRzMf]bJ~RxJhRbL`S~LbTtI~MjMnQfMlO|KbNlNtOpNjN~W`UB@bKjIhXlSto@jd@rj@lb@rXpUnMvNjHnIvKfMbKdNfJjMfSpZ`[~k@vN`[lNtb@xDrQhGnZxBlf@H|OU`XoAp\\gDxv@m@tSWvSHfW@tFtAfa@hCz\\jEl^vGn]lIjZnIdW~Nv]dIpOvGvKbHhKtUpZ~m@pt@bHpIvPjUxLhQfNpUpOhYjStg@vHtTnMdb@~M`j@pUhdAr@|CtTlhA|Orx@hSlgAjF`\\tLbu@`Np_AzMh_AxGji@~Ihv@vJ~}@nHpv@lL`sApIdfAfJrwAdMdtBbBlV~Djf@bLvtA`L`jAlFbh@pHto@dLl|@lL|y@`Lnx@|M|y@l_@jyBjD~RbSznA`Gva@xUteBnSnnBdNbqAlDrW|Fbr@tLn}AtIlyAdMp_CpHl{B~Ald@z@ffAv@l~@pAzgCm@rsCmCdjBaBd{@qBfy@{EfgBwBnq@}Bjq@kCjr@gB`e@wC|r@}Brd@aEpw@_Dxl@uDhr@iCbe@}Exw@{Bb]cIrkAeKfuAoLb{A}Grw@qGxs@mIl~@eD~a@sBlV{BxXgC~ZoCf_@oCr^uBpXwCdc@_Ezl@qDtj@aHjiAuDpr@qKvtBqCvl@{Bff@sGlkBgDjbAkLpaEmCxu@iBba@uH`}AaH`hAsFnu@eG`u@gFns@cHfu@kRvfBcIhq@uJ`t@_Klv@{Mn|@mArGgBjJgK`c@uUfcAoFzT{C`P}BhL{C|PkCdUmCdW{AbX{@jVUzQAzNBtRn@`Z~@jT`BtUbB`RnC|RfApI~ArIzCzN|CbNjFlRpHdUtHtSnI|RbIbP`M~RjMvRxHfJfI|IhK|JrNzLxMnJnPjJlNdHj]fMrPhGfU`Gha@~OzK`GxLpI~HxFrI~HrDrEpG~G`GhIlGhJdJxMfJnTlFdMzGfRpGnUpF~X`DfRfBjP^jDvAnRbAzS~Bpr@l@bQvAzTjCfX|CzTtC~PpHtZ`FrQtE~MvIjTdNfXbRd[fXhb@pHhLls@jmA~Yba@rc@ds@dOxW~H`P`Pf^rd@vfA~mA`|Cfa@|aA`^`}@|mA~zCRf@tzBpsFtcBfgEff@hmAhe@njAhBpExrD`fJhm@`}A|Q|f@jJlWpZdy@lm@neBdYfy@Xv@ni@|}AjVbs@`T`r@tNdg@`Lnc@f\\drAzI~`@`Odt@`XpzAvCbQlFj]fG`d@fGjc@xHbq@lI~y@dNbqAxNfsAjKl{@bNliAlItp@rKt|@~CxXlGbd@bHbd@fFvWnKhf@dJl\\zG~T~HfUrI`U|IpTrIrRvJ|RtKbSxMlUh]~i@zKpQ`Sv[lPv[lKfThJtTbI|SbIfTjHxUzJd\\nKvd@zFpZjEtUpDlVxDzXnEnd@dDrf@tBlc@|@nY~@`c@~Afj@lCnp@nAnXdKhxAdTtoB~Gbd@jJrj@jJbh@lLlj@fNtm@jMtk@pMnl@hg@jzBpSv~@hUpcAjVpgArb@`mBjV~fA|Qdy@`Sf|@da@lhBhLvh@jNbt@dFpYbBvK~CnSvBfPhDnXzDr^pC~YfBfVxBv[~Btc@rBde@bAlYpCxq@lA~XpAbYhBr\\zBb[~C~_@~G|n@xFxc@dCbQbDnSxDpUtF|YjIp`@zHj\\zErRfG~SfM|b@lLf^rIzU|HjSpJdVxIbSpJlSrPh]|Qr\\`LhRpRxZtLbQlMlQlNvQrQzTzOhQxUnVpVxUzd@xb@fWfV`O`Nd]n]fNzO~M|OjM~ObM|PjSbYfMtRjJ|O~LbTlPl[`Pf\\vPd^vwAj}CdIdQ`Txd@hg@dgA`o@ztArf@zeAdy@jfB~a@z}@bRt`@pUrf@hRbb@jKnTrWxi@p`@fz@xM|XrYpm@lR~`@rZlo@bYtl@d[`p@pe@hbAnUvf@hP~\\lQt]j\\vo@fWhe@|w@|vArd@|x@lk@~cAv]pn@hWbe@ba@hs@fc@bw@~`@ps@n{@t|Ap]rn@z^fp@vLzTx\\tl@x_@pq@zWne@|Rj]`g@z}@rTj`@j~@t`BluBvvDjWtd@rMnU~Wre@bXxe@lWvd@xQd\\|Qp\\n^po@bXje@|w@|vAt^pp@nj@dcAfSl]p`@vr@dj@naA~Rz]rN`W~R`]zIvO~F~ItSfY~H`KxKjMlMlNlFpFrFrFzFxFvFnErPrN`MzIlQdMdGlDdUtMv]tOjKlEzU`ItRxF`OxDhJdB`[nFzQzB|RdBr[jCrn@lFdZbE~Z~Fp[hIvZlKnVvJzJ`FhPhI|PzJjO~JxL~IvI|GnNhLvNdNlVrW`\\r_@r[x`@bTtWdNpP`\\h`@pb@vh@fc@ji@jdDp`EdUjYjQlTjQjTtTlXh\\ja@bb@hh@jUbY`VnZvKfNr[ba@t[`b@h[fa@dsA~dBdd@hl@fb@ti@~e@fn@pXh]n[|a@vh@`r@h[ba@d\\jb@|b@xj@`_AllAtb@jj@df@nn@jr@h}@|_@~f@hn@lx@va@di@nc@tj@|Y`a@~R|XpNbTzX~c@nLrShPlZtQz]nW|f@|Sna@~[bo@dV|d@`Qp\\`]pp@x[fn@bZ~k@|AzCdQn\\t]hq@xd@f}@fn@xlA~^ds@|o@zoAnQl]rOb\\jVph@z[xs@`Qbb@~Qjd@dOj`@~Nz`@rMx]fUdq@dPzf@hKf\\~IhZdJ`[hOzi@tFfSzKfb@vG|WhJb`@rNfn@~Qn{@nLzi@hG|VlDrNfIbZ`InX`IlXfItVrMr_@dPjc@vLj[bKdVjI|QhPz]rMfWfOhYxQp[jKfQlLjRzL`R~L`Q`T|YhLtOzMfPpTfWbVfXt\\r\\rU|TlWnThWbTvNrK|O`LfOdKlPdLnO|IhPrJbUpMtV|LzJjE|h@bVjj@nV|_@vQ|EhCnLhGrTbMfSfMzRjN`StOpSvPp[xYnf@de@~m@nk@zf@ne@jfBzaBh[j\\|Yb\\tPjRpQlTbPtSfPhTnOnTfP|UlO|TtOpV~MbU~OzXhMnUfNvWnMzWlM~WbNxYrQnb@lY|s@nNz_@jHpSrEbNvJnZxIrXvJn\\|Nli@|Hb[lMli@vMjj@nQzu@rOpn@fBjH`HhZrGfWhGfVvHbY|InYzItXzI|VfGpOhL~YfLfXtL|VxM~WrNnWpNnVbJrNfLpQxOtTxNrR|PzSdX~ZpR~RhPrOzRnQze@~_@vf@v_@pf@r_@|e@r`@xSlQvQbQ~YrZnQzSpXd]|OtTzOtUbQdY`Wzc@pRj`@bUhf@rc@~hAvj@tyAbYnt@`Xvr@xWhr@p_@zaAfRtf@bK`Y~Pjf@xPhg@nb@npAz]ndApa@pmAbi@f_Bte@fvAfo@tlB~Y|{@t\\rbApb@doAn\\`bAvVlt@hW`v@ht@xwBlW|u@jVht@bh@h|Ajc@rpAdVxs@vQxi@|Rvk@pZn}@b\\`aAd`@~iA`HpSt\\nbAze@fwArP~f@|FpPxItVvFnNtKtUdIhO|KpR`OnTtRjXlKpNjKfPdK`QhHzMbHhOhIxSpJ`YpIl[lGrZtIzk@lBvPfHh{@xCf^|E|l@xFfm@pEtb@`DlUzEzWrFpVpG`VxGhT`FjNfKfWbHtMxJ~QbLpQ`KlN|OfR`OvOrNbN`SbRfPzOjOpNtO|OjObQvNtQtMhQxLzQ~HnMnLtSnJpQxKnU~HrQ~FnOzDfKnGbTpDvMdCrJbCzKbFnVjExW~Ev]nGlg@pD~YlDhYpBtM`B~JfCnNtGt[`FxShH~W~H|W|IdWbJtUxK`WlKjUxPf`@xJ~UzJfX~H|UrMjc@`V`|@nSxt@lXzaA|Tlx@`Pvk@`Q`n@`Rxp@hRxq@tO|j@lTjw@jRnr@|Up{@zWl`AzXvcAhZzgAhUry@pYbeAdMld@bHbW|@dDjl@twBhWx}@jk@nuBda@~uAvFxQzGtRfJdUnLdVjLbShNfSdNnP|MdO`PvN~YfVtP`NhPbNfP`P|MnO|MrQbN`TpSx]dLbTjJnPlH~LhL`RjJhM|KxNjO`QpNtN~LbLtGlFrBbBfHpF~N~JrY`QpJrEfJpD|QdHvRlGjR`FfShDnS|CnSdBpXzAfo@Fv\\E~dAa@tiAQtg@Utu@]t`@Kjl@Od[ItJRdVz@dLz@hPlAl[hEfX|F~P|EbQpFbSrHn[xMpWdKlh@vTp_@hOn\\bNj[tMbSfIzRjIdRzIbMxGfHhEvJpHzWbTbQnRdP~RtRnW`_@xf@n[tb@f]`e@r]ze@|\\jg@|c@js@x[xj@FJjXng@fSz`@rWlk@zZpq@p_@~z@vb@l`A|Wzk@tWrj@hpAbmChVdg@hJpR`Sh`@t\\jn@tWjf@lVnd@tLrS`LdQfJdMzMbQhM~M~OvO|NtNtj@th@`l@fj@ne@pc@xi@|g@dXvVzWvVhXlWlOvPrMdPtM|Q`KvP~ItQfJtShIrT~HpVpIb[|Pxn@tXzcAdu@bpCpOjl@hQ`p@dRxq@~Lxc@lHvVrInXfHfTxJxWfKfXlJ`UrKvUnIrQvM`WjN|W~JrQdZ`i@lTh_@xg@~|@j[tj@lRn\\vRj]hTn_@zSz^hSn]nKtQ~KjPxJ`NnMbPdOvP`YvXlWvVhXzVbS`SrTfUlVrXbW|YlUfZtM`RjKzNpOxU`MvRvMpT`LrShKhT`KlV|I|UrHbU`EfNnHvYtD`PtDvRnErXfDfU~Lt`ArQrwAnRh|AxLh`A~OhpAnQruAlQtvAzEz_@~BlSjCbRtOdoA|K~{@|Grh@jGpc@xErYvE~XtFvYxFdYfFjVpIx]lG~W|T|_A~V`dArT~}@nVrcAxVjdAxTl~@xTj~@tSl{@`Sdy@lLdf@l_@f}A`VlaAT|@xWxgAjL`f@hd@zjBzYfnApPxq@fPpq@|O|o@pP|r@lJvd@pEhY`Ef]tBxXbBn\\~@fYvAbi@hAhh@VdLHnDfA|c@t@~[\\nOh@zWvCxjAvAhn@xB~bArB|w@x@t]`Apb@zDnaB|DpdBfK|jEXdLR`Gx@`WrAl[dBlZnCfZhDn[nDjZtDnVlFvZfJ~c@fH`YzP~n@zR~r@lQ`o@`Nrb@tNbb@zPja@fLvVhKhSzL|SbT~\\vTp\\xYzb@be@hr@`g@du@r_@zj@lU`]vb@do@lUz\\rWt`@jR|Xf[le@tW|a@`QzYvRj]z^hs@hShc@`Sxc@dSxf@jUxl@lP~b@lMv\\lNx^nInSrQvb@xPx_@bLpVxL`WfTtb@vQn_@jNd[xR`c@bTrh@bPv_@nXtp@z[nv@dVrk@xQlc@x\\xx@z]jz@|[tv@bv@fiBzP~b@pTpf@fy@foBdcAjbC~X|q@dPva@dPpc@dIpUbDjJrBhGbHvSvJrZzOfh@~Q|m@rYzaAdQ`l@xQnm@xStr@z_@nsAhW`_A|P`o@pQhq@dPlm@vM|f@fPvm@`Rfr@dQdp@pQhq@bQvo@vT|y@bPlm@dQpo@jSpv@nR|q@tQjn@zVfz@tNxd@bMtc@hQfp@bVf`ArWlcAlK`b@rNnj@~S|y@bRbt@bUt|@jRxt@h@tBjS`x@dWzbAd`@p{A~WhdA|Rbw@hStw@nQxq@jShx@|Uf_AxXbiAtBhIxIz\\fGvVjL`h@tJzb@dL`i@nEdVtHva@|EdYjIdi@tJhr@vCbUhFxd@~CtZnFzl@rCl\\xCfc@tCpe@|B`d@dBr`@jB~k@tAzk@h@d\\x@rq@h@vs@Xdb@r@p`A~@d~@|@fe@nAhc@rAhZp@bKpAhSrCj\\tE`c@~Ed_@xFr\\~Ivc@jJj_@xHpXrK~\\dKxYpOt^|Or\\zKfSzObX`NzSbPpTtP`TtTjWdNbOhNfNbQnQl[fZvFtFpUxT|T`TnVdVvUnVtXtYx_@xe@bQzUdRjXvWjb@lXjg@nVfg@vTdh@|Rbh@rIxVpNxd@~FzShEjOxCnKhMjf@h]vyAdQpu@lb@zcBtVl{@`Nlc@zNda@|\\v{@nVnh@vVnf@jV|b@tV|_@nZjc@hZf`@xk@|p@zXnXhYrWnWfTvWbSl[vTf[xRzp@b^bo@nXfX|J`WtIlj@lOv[rGpj@vK`e@jFbd@`Ejc@rClf@tBtKd@|j@jBpn@pCj]xB`]dDp^hFbi@nJ|_@|JrYjIxc@bPxUfKx\\bPv`@tT`N|HfQtLnX~Rt[pW~QnPbUvTtVbXbTxVdTtXzYpb@bRlZdXld@~Vhe@dW|f@b\\xp@|_@|x@dV~i@``@r}@vTzj@rXds@vSfk@|\\baAd_@liAbUtt@bZ|bAnYheAt_@jyAx[lpAr[hpAnNlj@fO|g@nNze@xLr`@xLd]`Pvb@~Srh@dPd^dR`a@rZxl@bXbh@pa@lw@lVxf@jPd^fNj]dEfL|DtKtEhM`Zn}@nQdl@rIzWhJjXvIjU|HpRvIpRhK~SbQ~ZvLxRrWl_@`LpNtd@`g@|LnK~X~UfYbRdDvBnBdArJlF~Z|P~VzJfTtHrQzFfj@tL`ZdEbd@nEvn@zFrTlCdOdBbZxF|RzEdPbFdQxFhQhH|WvLbRxJlSjMvTtO~NpLfO~M~MnMjN~NrMpObM|OvSrZbRhZrQb]pPb^fPb^pOn]zPv]bRv\\|KvQjLtQjRpVpH|IdMbOxM`NbMpLnHtGtVbStOlKbPnK~KpGnT`LzUdKnSvHhQvFdZdI|[zGzZpGjY`GpQxE|K|ChD~@`YfJ|LzEfS|Hxd@fRxj@dUzc@zQxb@~Plj@dUvClA`i@lTbw@h[~i@~Tly@t\\b_Ab_@~h@fTxJ`EzPdHnYjL|l@nVte@lRbh@`Tfj@|TtOjGlGhChRvHxj@hUTHp^`O~o@zW`YfLrOpHhQjJbQxJlOxInNlK~O`M|NnM`XlWpXd[vh@dn@~f@ll@`]fa@z`@de@vNfN|LpLhOzKtK`HdLdHhOtHzYnM`b@~PzYpNlKtGzIvFfHvFrHtGBBtBhB~HtInJrKvGbJpKfPtL~UvFzL|FlOdWbz@`AtDnIbXpHxS~GzPfHbOdJjP`GhJzGdKnKdMrKdLvKxJxQzNhPzLzVzQzNtLfM|LnCzCDDhI`JvNvPfXp\\xExFhVrYtVvZbq@`y@rVlZ~[b`@je@nk@ra@`g@lTxWt^xc@|^xc@`M`NbOxNdO|MxMrKfOfLxOdKrQjK~NnHdQtHnYtKrQhF|PbEtQjDjRxCpQlB|QdBnQl@tRTnUCjPe@fF_@vQ}Aj[cDtQiB|Q}AvRgA~Q[rQl@dRnAjPzBlD|@dO|DjObFbPdHjQvJhNxItWpP|PxKtW~OhPzJpa@lUfj@bZ|`@zShj@tY`b@jTji@pZxq@ba@hj@n\\py@~e@la@jVt`@|UnY`PxNfHlLtEhVpI~l@hQ~YzIvYrKrP`I`PhKzNhL`NxLbExExGtHdGxIfA|AxHrKpJnQ`ExH|D|I~CpHtEtMxBrHjDpL|EhSfJ`a@hKza@lHrU`ItStIdRlHpNjIxMnKfPbO~PjNfMjN~LxOzJnP~IxP~GrPfFbZ|Gdf@lJlYrH|PtFxO|G~PtI|OlJbb@dXpYdRte@|Yd`@tVta@dXjh@b\\``@vWtr@jd@hi@v\\|o@nc@z~@rm@h\\`T~w@|g@jx@zh@pbAbp@bp@~b@b]tTvc@pYz[zSrd@`Zx_@hV|t@de@lq@bc@bdAzo@tc@pXtAz@r{@hj@ztAj|@hd@|Y~XdP`s@ba@lq@l`@~h@zZtr@bb@vq@v`@zy@lf@xg@rZ~j@p\\rbA~k@nu@rc@r^fT~v@vc@d`@lT|o@d^vb@lVhj@bZbV|MbRxIzQ`H`RnG|Z`Ilm@zLdj@vKj|@`Qbw@dOlm@nLhe@pKpb@rJ`\\~Jr_@bNrXzLxv@p^b[bOr\\~OpVjNf\\zUh[hVdTjPjk@nc@xuBv`Bdq@rk@n_@r_@bQlRhQpS~_@hf@tVl]jc@np@h_@tk@dg@lv@bk@t{@pf@tu@jb@fo@rf@fu@ne@`t@j~@jqAbm@~y@nv@fgAts@lcApr@|aArk@dy@vo@n~@jz@|kAjn@r|@`PzTvRbXlI|K~QtShNdNpS~QpR~Nb`@|Yd^vXhf@b^vkAx}@hbAtu@ro@lf@xj@dc@jq@pg@vf@p_@~p@zg@nj@nb@`[jVtFlE~SlP`z@`q@n}@du@xj@|d@~gAz}@hf@z`@nr@lk@jw@ro@NLfo@vh@tjAh`Are@h`@pi@xb@rq@zj@~kA`bA`|@~r@xw@xp@bgA~|@l|@xs@rw@ro@pg@nb@`QvNtD|Cjt@hm@ne@z_@j]`Zp`@f_@pP`RbPbS~MfRtPvVbJvOjSv_@pJfSliAbmCte@riA|a@rcA|g@foAfw@flBhP`d@bj@toA`s@~eB`_@p}@jy@fqBrq@bbBl\\tx@l^tz@bZrq@nQda@~LfX`BpD~Pd`@fJtTniBnaEn^dw@zR|a@|Z~m@hZjk@~Qf^ln@piAdY`f@x_@vo@|k@dcA~Xhf@ti@p_Add@`w@z\\zk@~d@xw@lA~BdBrCbi@z{@xS`]~KzNhVvYzb@hf@rd@jg@`a@`c@jdAbiArSzTbDnDdVhXbTfWrR|W|MpTvPlZ|KvTzIzS|IlTvI|UnV~w@tWf}@|X~_A|Utx@~Qfm@hNt`@tOr_@fPh\\vFbLtHrM`NxTdLpPpPrT~SbWrYj\\f_@xb@n_@~b@lw@||@jq@xv@nt@|y@v^za@n`@xc@xmAbvAjS|Tno@vt@xcArkAhF|FnMvNhf@zi@daAlgA~q@nw@dq@dv@||@bcArA|A~G`IfVbYzGvH|d@rh@lTpVxn@ns@x_@nc@nx@v~@jW`ZhUlV`UtRnQfOlWpQvRlLhHfEhNjGrXxMxZnMpXpNbZ`RlEfDnOrL`XfUlVtVnPtRvPvThQxWvNtVnQt]`[`n@nXfi@jSn\\pWrf@pXpd@f[rf@z\\zf@dY``@`QdVha@nh@tTlXvQxT``@`d@pYv[|d@ji@vc@~e@vh@bj@tY~Ydc@pb@vi@vg@z_@j^xU~Src@v_@be@f_@z^hVn^zTtHfE`EzBvOtIx\\hPbf@|Tl`@xQtTtKvWvNtQbL|SrOnSrPxP|OhUfVjLbN``@|h@jW~b@fO`ZjOn[zjAjzCvc@zcAjKpThg@~cAhg@d_Adu@roAzWzb@vWnd@zRnb@`Rxd@tR|m@fNjl@zMbu@dI`t@tDta@Ft@rCpu@`Ahz@[dZc@l[iC~l@gDzh@}Gpn@kHhp@kDzf@yBjf@_@xh@f@xk@rAh_@jC~]tMndAxTrbAdMpa@lNn]tXjj@bc@xn@jVlXbW|TzY~SvY~PlWnK`WbJn\\|Hf[zEzUdBnVr@`YCrZqAfn@qJj`@}Jv^yLvoAc`@|g@gOvg@}KpIyA~NiCpFg@te@mEjW{@dTc@~]v@~YlAnb@`Fzb@xGfDrAdx@pV`LnE`[xNlVfN`hAfs@ph@x]zy@vl@|XjRbWdOz_@~QrP`Gf[|J~OvDtCl@hJpBnI|A|K~AhQjBpNnAxT~@`@BfSXbX@nn@_Bb\\u@j]IdO^zOZf_@jCzI|@rQnCrZzFdS`Ffd@fNvZpKpYlLvO|GtZxNld@pVvTrMdBfAzDbC`QbLlGxElU|PtI|GlDhCbc@d`@tJlIlWlWt^z`@dNrPbYp^tFvHvEbHrU|]j_@jl@tQrXzNrRz_@hd@pBvBtNhOhOfKvg@t]z_@zTnRjKrMnGvt@h]n{@`^fsBzq@~c@xQxAn@dWdN~VhO|[tUzNtMxQlQrPvRpL|NvShZfOjUtKpS~c@|`A~h@fiA`X`i@tAlCzPl[`x@jsAbr@xcA|^dg@`PjShNtQtRhSrNdMnCbC`MzKdPzLt\\lTdn@pYxLnEhLjEd]hJtYdF|]pEfZ`CtZpAdq@nE|r@tJlw@zV`YfLhY|O~XtQdYdT~g@|g@jZh^vUl\\nk@reAhNva@|KfX|g@dtAfjAn{Cr}AtcEn\\`{@|l@fvAx[vr@n^pt@da@jw@ro@thAbpAxxB`oAfwBp|ArjCh`BrpCzFhKtZjj@tb@|x@dh@~cArh@deA~DnI|Rv_@vPn\\rPv\\pr@loAn_@|o@p`@vp@bUpa@vV~g@pZlp@vZbr@dMhYpArC`Qp\\pOxW~Vf^pWpYvU~RbNrJlL~GfQtIvSzI|HnC~H`C`VfG|b@~J`c@hKhe@tOnRvIpSdLxOdK`P~LtSzR|Y~Zn[v]fhAlmA``AtdAbf@xi@bSzUp\\za@vPnU`T|[hR|ZvM`V~^ju@rl@`oA~Uph@jUnf@fTpb@~Rf`@tMfTjN~ThZxd@b^~d@p`@te@fD|Dd~BrnCxWf[dXz[|p@dx@lYl_@pu@nkAbv@pnA~lBz|Cb`BblCj|AjeCpeAlgBhz@`xAhlCjsEjv@~jAjEvGdBdClw@|hAjyBx|Clf@|q@lm@`{@fvAzoBhxBp{Cfz@vkAr|@bnAppBdrCh{@|kAfu@veApjFhoH|MhRdjCbrDfE`GfKvNtiE~cGpy@tjAxy@rjAxuAznBvuA|oBd`@`q@|`@dx@v`@ffAfR|l@dmBnrGzRfp@`fAtnDpeA`nDhrBz}Gf@`BpxBvnHn~GlqUfErN~Rxp@hNbe@|AjFj_AbaDxVvz@hs@lvBxL~[leBxuEts@|kBdn@veBlQlk@nOhk@hLdl@nJfl@t[zcCbZtbCjq@dqFpUnmB`@fDdMbdAbBdNnHlm@hWluBvNdpA|Evd@dCzStDb`@lXpjCnHfeAlFjfAtAvk@p@rk@Jrh@c@|i@qEvr@sCrZqDlXiEtWuE~TeIz[iIhWeIxTaInQ}q@vpAEHgaA~`Bs_@ls@_Wbk@_R`d@aQdf@iHnScH`UgRrl@cQnm@}_@v}AiTvhAyKjp@qJzq@qNplAyGxs@wFvt@mEdu@oFxoA_Bvv@aAfn@M`a@Q`mCJtw@d@deARx`A\\~[x@v[zBx_@zDt]fA~H`ErYzFzZ`GtV|Ojf@|LhZjLlV~Yrg@lVfZj\\r]hlAdeA|v@rq@jj@hf@b@^rVhRlOjKfRfLdK~ElJpEhK|DhG~BhThHzYdHdYxE`Z`Dba@~Btr@nDrbApF|_@fBxrA`HzjAlFtcBfIfNt@l[dBh_AfF~JZtb@bCprA`Gxk@bDvh@tCvXvDje@pKfXlJ`UtKpT`MxWhRxEpErNbN|QpSnRjWlMtRbV`b@~Qj`@tShi@lMpb@nPtp@n`@jeBni@j_CzZbtAf[xuAbc@zmBzXbgAtMpf@dWnz@lGvQ~ExMfHrRxZlv@lWrk@pGtMp`@jx@hiApxBzFzKfk@|hAhm@|jAvxA|rC|oD`cHleJvoQxeAfrBfiArzBtsC|sFnNrVfXvd@pn@r`AhxAvwBdhChyD|IxM~q@fdArfA|_Bz|@|sAbd@|p@zXdb@bQpVlFtHvY|]rXp[xQnRnXfXpy@|p@rM~I|[vRre@nWzShKv[rMn_@nNfh@`Opb@fJfQnDtYfGzXhFrdA`Tb|@vR~j@rNt[nJn]bK`u@xXnl@bWzn@v[v^xSdh@r[zb@hYpVzQth@db@dT~RhTdRba@r`@xWpY|SdUri@to@BBvm@tw@dt@~cApp@laAn{BlqDjzBrsD`nAfrBbnA|rBdlDr{FzeFpoIjKzPxiArkBtnCrpEru@`nAh|@vsAtb@tq@|aBz}Bhc@rl@d|@|gAnQbTpx@z|@`v@bx@`g@pe@rqAziAts@xi@nf@d^tb@rYjd@pZvs@fc@jc@pVhg@tWvh@rWvh@xU|xAhn@noA|f@p`B|l@z_Bfn@zuA`l@bqAxl@j}@ne@v|@nf@d{@hi@`x@vh@px@bm@pr@~i@leBhvAj~AtsAnbBzvAfxCldCzfDxrCjFnElhDzrCb]xYvqAjhAldCzqB`q@zg@zr@~e@dj@p]lu@`c@hs@n\\vx@j^rd@vQnUjIrj@|QdXpHx]vJdE`At|@zSxp@bM`v@nLxyBrZr{Bj_@ru@jPdq@dR|`@tLhf@`Rln@~Wfg@jXfj@v[~g@r]ds@jj@rl@bj@`b@rc@rp@hv@nf@tp@rd@~s@bo@xgAfq@voArh@~gA~e@v`A`m@diArw@ztAdT|]x_@nj@~Wz]`\\ra@fs@zv@`y@lt@`t@tj@bs@`e@`aBr`AjhB|dAnpEhiCx~Ap`Ahg@l\\v`@~YjYtT|c@~`@f[r\\lQfRhS`W|e@fo@hXdb@dWzc@~KdSz[pp@|Zxu@pJzWnKrZlWtz@bRbu@~Ohv@fO~z@fKro@`O`bAvN|iAjMn|@bKbs@tTjrAxOjw@pM`j@tLnc@hP~i@pQpi@xVlo@v]xw@jWhi@dW|d@jZvf@|_@hj@jYj^~j@xq@zr@`x@b{AhbBhaAvgA|eAxkAnW|VhYxWt^dY~YbTvO|I`UrM|d@pSnW`K`_@fLjuAt^|~@vVd|@hTtUnGxx@dSbb@|Lzh@~Pjv@dZzPjIlRlJlm@`\\`s@re@li@pb@jk@zf@rnAriAh_DxuCjvArpAd{AfuA~hDn~Cv~@v{@p|@||@bj@ln@|k@rr@|g@~q@bl@tz@`Znd@nYje@plAbmBzg@xw@n\\be@zc@bk@rc@fh@pl@jo@z^b^l]t\\j~@xu@jxB|gBfVnTnXtWz`@`c@z`@de@xRjWnVv\\td@jr@ff@j|@j^|q@bj@bgAf`@hv@db@pv@r]fj@hXpa@|LtPt^`d@zp@~t@nmC~lCpc@~d@j_@pb@tYh^lCdDf_@|g@b[nd@|\\ri@hSf`@rY`k@jThe@lQhd@bRff@zU~p@jc@`wAdu@rhCzj@fhB~_@~fAjZns@zQpa@|d@~_A|[bj@lc@jr@x_@di@jUbY`WxZfUjWl_@ta@rb@lc@vjAdmAfkCroCxtFxzFphAhjA`q@ps@lt@d{@tu@lbA~u@jhAtc@vs@x~@z_Bf}@zzAhj@p~@f`@pl@b[~_@~Yz`@bo@ps@bVjWf]h[ts@rl@pc@n]tp@ja@tq@h^dp@lXbTjJtnA`c@jnAd]nnCzs@tc@xKzv@vShpAf\\`pAv\\lkA|[`t@tUzo@hVhr@rYtVfM`^`Rz]bTjOfJxi@x`@rTvPda@|]td@zc@t_@xa@b]h`@tQ`TxPfUtXr`@hY|d@fl@zcAj`@lu@|]ts@l{@bkBfg@~eAr~@`qB`t@l}AttBbqEbuAfyC|wAf}CpkAlgCfZjo@bJnQxKnUxk@`hA`Rr]xRb]fb@rq@xYrd@nf@nr@zW~]nXp^`UbXni@bp@`_@va@xi@ri@fb@ha@|m@dk@ngAr`ArlAjfAtw@zt@df@nh@f^rb@rc@jj@dBvBtVz]`Xn`@v]rj@j\\`k@|R~]dV~b@|l@phAng@r}@zd@ft@jVl^lFvHxOxSbTzV~Wd[jg@ji@jbAdbAvfA~cAv^b]dd@lc@fm@ho@bN~NzP|Rbj@hq@~\\lc@pXha@v_@`m@fV~c@vTdd@pTfe@lQ|d@rO~a@`Rxk@xOti@tLtc@zPfw@tNtu@`Kps@hK~v@fIf`A|Fry@pDpaAbBf}@v@bz@E`x@e@niA{@jeAiDp`BmDfcBoDxbB_CpwA_B`sBNx`A~@dz@pBdpAhCbu@pJ|bBhNpaB|J~cAfNtiAra@laDjUfbBbW~oBnItt@bJx|@tKntAnFfx@hEfx@xF~aBtBxt@dA`r@rB`nB`Dv|C|AztAtBb~@jCt|@bD`_A|E``AdHb_A`Ih|@pInt@pOldAfIje@rJbg@lOlr@bM`h@xPzl@`Rrn@nXbx@jTpi@fTne@zc@z_Al_@ls@R`@`f@~z@|h@p{@|x@lrAz~@|wAr{@hwAnd@|w@nZxi@h\\do@vq@fxAfXvo@hZrv@xTdn@d\\fbAxi@rjBt_@pxAxf@toB|c@njBvg@roBvo@|_Ctq@v|Bxa@jmAz^xbAd\\rx@dOt\\j]ns@rWfh@xXtf@nb@ps@he@rp@t^ff@pYz\\nbAfdAvcAxz@z\\pUz[bShWhOf\\~Qdn@vYnh@dTrd@fPly@~Ubo@tMrl@tKlz@~Jhf@xEpi@~DpoAjF~e@h@zk@r@ny@QpmBmCxmBgGpnAyEtpAaF~u@kCns@cBpm@w@z_@Opw@d@hs@rAh]tAx`@jCtYzBz]lEh\\rEtFv@ve@zIp`@|Ifq@hRdi@zQf]xMd[`N~^pQte@lWhq@~a@fd@h[p`@|Ydb@h\\laAdy@bgCt}BljAldAhhA`_Atx@fm@ly@zh@ty@rd@vs@v[vChAbg@lRng@hQ|s@~Rbj@rLvh@lKteAtOdbAvLrwAzNvkApLlbBdSljApRhn@dNle@hM`e@hN`q@`W~UfLrW`Nlo@|_@dm@tc@r[tXl]j\\vk@~p@~TpYvR~XxTr]hQ`[zPx[bP`]|Svf@|Svi@lSjm@pTtt@tUv}@bNrl@fWflAfb@j|Bz_@vxBf^hoBh]vcBdQ~w@fQ`s@xQbq@dN~d@hPhg@hO~a@fPxb@bOf^dWfk@hTfc@nV|d@xQt[`Rh[vk@xz@ve@~m@bSrUvd@rg@xd@~c@td@pb@tWvTr`@d\\xy@fo@toAz_A|~@lq@jOrLfx@bn@hc@b`@p^p]x\\l]lYv\\|e@rl@fU`\\xUp]je@ju@lRr]fa@lq@rpAl}Bzl@~`Axn@hcAnp@j_Afo@hy@hr@dx@bl@lm@nm@fk@zb@d_@ja@x[fd@x\\b_@~Wfa@hWzc@pXpg@xY|z@ne@`z@~c@raAvh@n`Alj@xn@n`@xp@~d@nj@jb@zx@br@dx@tv@ta@tc@n^lb@t\\bb@vX`^zc@jn@li@tx@zz@jrAtHnL`gApcBdc@jp@pe@`p@haAboAdr@bw@bk@~k@|p@jn@xw@bp@bs@~h@l|A|cAjzA~_AneB~gA|oAl}@dkAx~@jm@lj@d~@``Axr@|y@vKnN|p@n_A|k@z~@zx@h{Av\\xs@~X|p@f^r~@jUbr@n[pcAzXl`AjRno@he@hiBxj@f|Bl{@zkDriBbjHnu@pwCt]lxAvW`eAd^b_BlQx_AbJ~j@vGre@fGze@nEbc@`K|mA`HbnA`FxzAxH`hCtGr_CnKprD`D|gAjBxz@fBfuA|HhgHjAvqA?nnAQ|RgAnm@kBho@cF~hAoHptAwQjvDiDdaAiAdj@o@v~@Llz@fAvo@t@|b@x@|]~G|rDXrUf@rPj@pW|BzmAjDhlAtGdhAjE|g@bHdm@nHdk@no@rkEhYflBd\\vwBlMd{@~PzeAzNnt@~BjKnNbe@dVnq@|]|v@dT`_@hXr`@pXh]dj@fj@hF~EdYvThY|Rj~@rh@`n@v]bi@n]np@~g@`c@l`@fh@|k@rf@jn@~RpYb`ArzAnm@b`A~\\vh@dXt^~QjVhh@di@|O`NpRjPnb@z[bG~EdrC`uA`MpFnd@zThoC`pAlkClmAle@bUvf@bWji@|Z|h@n]jh@ha@tx@~p@d_Aj{@h^jZ~\\`XpZhTv_@rUtZdPbW`Mjj@vU~|@t[xu@|Wfp@nVj^jOfj@dYxKbHta@rWj^hWnh@ha@dy@~w@|vAx_BdO|QfXb_@xR~\\jStc@xJbXfKlW~Jj_@x@`D~EhUbBbKvBbNlFr`@bEvi@tA~XrAbl@K~j@eB`d@aEji@iFdg@{ShxAsM|hA}Iv`AsCn`@iErhAeAh_@_Ahq@a@`f@d@|j@rC|rAzEdhAdKbuA|Gbo@dH|i@rVvzAvXzqAzB~KnX`cA|\\fhAj^naA~Sdg@pShd@~Rba@jRv^rvAjeCn]bp@~Wtj@tSlg@pLl[pRlk@|Jh[pI|YpNxi@rLli@jHj^fGn]jLrv@|Ips@|Fdl@bEnj@jCdc@vB|f@~Alf@~@vo@d@rb@Dhd@s@zl@}Ajk@qBfo@{Bbl@gD|r@oBvk@iAjn@]lx@l@xm@zAvg@jDzk@pDzf@nIhw@|Inj@xKrm@zNbo@bNxf@tTtp@zTnj@z[dq@r`@hq@`f@tp@`a@he@nd@bd@je@`b@nc@za@lKrJfa@j_@xPnObfAhbAvh@xj@hZv_@zVp_@~Vtb@`Ytj@d\\bx@bWlv@~Nri@nLhi@|Hla@tLfz@nHps@fFtt@bBja@~A`m@Thx@k@nk@yA`j@yGvpAuHbzAs@vZuBdt@[hs@?|_@l@xa@bBj|@|Cli@bDth@nHd{@~Jfx@lJzk@hiBj|Kn@vDly@jbFb]`uBfS`kAjaBl_Kzi@heDrf@lyCxm@~uDnh@zpC~a@lrBf`AfyDjWrdAx|B`aJjnA||Efn@dcCl`@f}AjsAtlF|FjUv{B|{Ile@liBlH|WzEfQlHtW`V`s@zLx[pOf_@hSfb@dWri@xa@dr@~@vAb\\bg@dNjRxV|ZtYt\\lt@~y@zh@jn@ld@xn@hUt\\lQ|Zr\\nn@vSvc@rT`i@bc@xmAdNpe@hNzh@hOnr@hCnL`SdoAv@|GjJft@nG|q@zF|}@`Dpy@xAb{@`@zy@{AjkCO`oA`BncAfBpr@~Er}@dDdd@lEhb@nFbg@vHvh@zN~z@|Q`_Ald@~wBrb@~uBtoAdbGzgAvjFxPfy@fD`Q`m@ltCdZnwA`y@n{Dtg@baCl~Bv~KtcAt}El{@xaE`iHtg]r{DvcRp|AdoHh|AdmHbs@`hDrZdqA|XhkAtt@hkCjZfcAd[baArb@zmAxlAt`Dv^h_AtEzLbVfo@JXtfAxrCve@foAp\\t`A~{@jnCtu@blCnpCz{KrFxRd}AdiGhfBp_HzwBrtI~CnLlq@vlCtvAjuFd`ApvD|Ur`A|dBb|GzcBnyGvaBtyGdx@fkDnb@zlBvx@poDf[vsAbYvcAp]~bAvXvq@zg@pdAhe@hv@lSt[lWf\\xFlHbp@hz@~Tx\\nRtZhTza@nTtf@hKzYrEzLdR~p@`L|c@`QjdAtHpn@lD`j@|Bva@z@|VTxY\\pb@`@~g@Ph~@dBx`AbDxr@pGvx@rL|~@nM|v@RnAxJhd@dPvm@zVv|@d{@zwCxRhq@poAtlEp_DtxKdbDl|KxrApvE~lAbdEpq@f~Bdf@b|Apn@dgBre@zlAfc@peAve@rgAtc@h_AfI~P`cCfgFznDntH~vBfqEzdA|zBxCnG|Qr`@`lC~uFj^ly@jc@~eAn_@h`ApS~i@f\\|`A|Npb@tKl\\`a@rqAt]zlAtv@zxCz|@pmDnbAp}Dj|@pkDxl@j_Cjn@tbCrHf[pNdl@dLde@zWrrA~Np~@pFp`@hIts@|Grs@|Ffy@fFhjA`EpwAPfoA}A`jBiDhhBq@jf@kFn_DmAfoBSxhBvBzpCnBrjAnChfAtJzlCbMh|Bxe@ppG~d@n`G~T|yClYtsDbWjjDfM~qA|MzhAbPdnAlOdaArSldAjQ|z@fSnx@`Pjm@tNjf@~\\zgAte@rrAll@vvAlXbl@rXti@dj@ncAv^tm@z_@`n@vsAxsBzd@|t@v`@lq@dj@~bAbi@pfAzSje@hU`k@|Tnj@|Qzg@lSpl@fb@`tAfVn|@rPrq@lSz~@vXjvArQhhAjRtrAvP|wAlP`}AtIt|@lJf}@fLrcAzPrtAvNtbAfPvcAvZhbB`Tz_AfSr{@xR|t@|Qfq@`Q~l@vE~Ol[hbAxw@|aC|Zn|@jHhTnNhd@|f@taB|ZdjAd]buApUhhAr\\vkBbNt{@vKbu@|Jtv@pHtr@jRfmB`a@brExI~|@fPx{ApKn~@vOnfAdX~`BbVlpAxRv|@rVdeAnXleAzVt|@|W|w@fb@pmAbi@lvAzw@hmBvgAziCrTji@~IjUnGdPvB|FfTxk@`Tbp@fQlj@jNle@`ZthAtWrhAdKff@lM~r@~Hhc@dQ~eAfK~v@jDzYlMjiAjIh`A|NvkBzMjqBrErp@jJraA|F~i@hJrq@dMxu@zNdt@nBfIhNjk@hTzx@|V|w@zRvi@~Zlu@pZro@xaArtBx_C~_FvlCjwFvnCpzF~`EvqIh@hA`yDvdIdt@luArr@joAvq@pkAlXxf@vS`b@fRvd@tOpa@lXxz@jPrq@`Nzo@`Jjl@dMv}@|OlsAlOnnAvO~y@lH|\\xHx\\`Tfu@hRnk@zU~k@rS~d@|b@hw@p`@tn@roCjgEvrEvcH|uE`iHvxEbjHhvDf|FdIzLp`C`sDj}HruLbnBnyCte@vs@`Z|a@fQ`T|P`R`VjUvZnVfIfFB@fQzK|b@hTds@~[fpDj~An@XhuDnaBdvClpAtmAhi@pc@~TzZzPl`@hYj[dYrWjYtd@~m@nUh`@nTtd@`N|[lLr\\nLh_@dNxj@zIxf@lJpo@hFxf@|QxsB~U|hCjGlp@pPn}ArG|d@|Lpq@vJtf@|Jnb@|L~d@tPji@p\\|~@tXrn@lOb\\fUpb@pX~d@rS`ZfVf\\nPhSvRjUhShTpPnPjHvGnp@`k@~p@li@ffAl{@~dApz@hbCjnBvcAtx@b`Alt@vvAd}@l[bStgA|g@`g@jTje@`Rtc@`Oz_@~Lh]zJri@fNdm@`NvuAtXzkAbUxoAjYnl@rOtk@|P`d@rOdo@dVrYpLl]tOlu@f_@d[~PlWvNzo@ba@nw@zi@feG`vEnh@x`@zqAhcA~kA|~@b~@hr@jTjQnQbQpNdOvOnRvN|RlLnQxOnXpMnWpTng@hMf`@jKh\\tJla@pJzd@rHfh@bJv}@zIdbA`Ipu@jJjo@vKzj@tN~l@rOri@rPje@vNp^fMxWbKjSnLjT~U~_@rSrYfZd_@r]~_@he@`g@de@vj@jRzWdOtUzMtTrSd`@rR~a@fNf^dMr\\p`@|mArc@xwAje@fuA~Wps@`Xfq@pSpe@~P`_@jSzb@n\\np@z_@`u@hr@~oAnlAhyBpqAjaCvcArkB|n@bkAxWlj@nOra@`Pre@~Mxh@rHh_@tFz[dEhZzCfX~It{@tSvqBhZlzCvIzq@jHnd@lIra@zPxq@nRjk@tSzg@tNtZfM~Ur@jAvVba@n`@zi@z^z_@lZtWvYbUrYpQpd@pUnUfJjXdKdv@tTtb@bO~b@lP`[jPpT`N|SdPjW|UrJjLfLfNfRdYpQb\\tM`YrNp^dTlp@bU~x@vErOj^ljAxNpd@hOl`@zVfo@nQb`@jPv\\dQn]n\\hj@jV|_@|Vj^lVl[fYz\\x]|_@vYxY`\\nXt]`Yrc@t[vU~MxWdNfNpFfXbKlVtHb\\xHh^lFxZlCdVx@vYVh]a@d[oBf~@uGrt@{E|eB{LvaBiLry@qEpTg@nXm@tUMv]Bt^p@b`@zAh]bCbYrBhRxBfGr@bFr@t[nEtVlEbb@vIdt@pQ`c@vMvb@pP|StKx^lTrVxQhGlFrXrW`NtNrLvOnRbX|Sz\\h`Az`BtaAxbBdrA~zBf|ApkCtOxYhP|Z`Qb^pTvi@|a@phAnyBhkGbcBfwEvh@b{AxRnm@rRfo@bMpf@bDbMhJz`@tMnn@|J`k@z\\tlBl{@phFn~@xpFJj@pl@jmDfn@|qDvb@dfCfi@dcDp@dEhLjq@fHnk@bChXtC`_@~Cxo@b@~o@c@pi@{Adj@kCta@iEfe@sHhl@}@bHs^~eCyZtxBqu@liF{@|F_z@b}F}y@f}F{dBpuLao@zoEqm@jdEmKpm@aKbe@{Jha@qMpa@yQpf@iR~b@mWrg@aTz[eYx`@sY`\\_YnYc^b^o[~[aYv]cRtWuM`TmUpa@cW~j@}Pjc@cQrf@eiAhgDkx@v_CuIlYuFrR{Lld@sLlk@qH~c@yEv_@iD|Z_Dp_@aCra@_A~^kAbn@[dj@e@tiBeBhkEw@vtDZnaBvAr{AhDjkB~Bzt@fDhp@dE|~@tMj}Bt_@nsFt]hfFdI|kA|Dtk@j@pIXfEfCr^`\\hyEvBb[n[vvEdObxBrMhkBjf@zgHdM~oBvJbhBvFvtAjCv_A|AlmA`@xrA{@t|AiCrsAgG~|AaH|iAsKnqA_@lE{JleAaLn`As[nhCc_@huCwVfiB}UpmByIn{@gEbn@mBxe@kBjw@Lnr@rAro@|Dnp@fEfe@nHlm@vF`^zHd`@vNpp@jDfOfUrx@rLhb@|@|C`GzSdRdq@jOrn@bNts@|Gfd@fFnd@rC`[bDjs@bBfs@Hdu@y@jl@_CbdAiB|r@uAfq@sAl_AQhi@d@rgA~AzaAxJpkElNdrG~FdgCrE|sBf@dPrBfq@bCbp@pH~dBtRr{DbNbpCzR|dEbM|dCvNr_DzC~bAfCzaAhB~fAdAzdA|@blB\\rnAf@ljAl@voA`@voAz@deC|@b|Bz@jaCdAjiC`BzpDbAdtDVzs@z@rhCGrL[`lA}@nc@eDnv@uHt`AgEz]_CnPgF|^sZ~uAq^bmAu_@~bAyUpj@sy@hrBoa@|gAue@r_BeY|hAoVzsAa^deCmInz@mKviBmDpmAoBpbBg@hb@oAxnAsBx`AgF~|@uFfs@oG`i@eLbz@eZ~xAoUzx@_Upq@ci@nmAwZpk@kg@rv@mk@ht@{\\~^sp@rn@kd@v[ku@bd@gk@nUav@`VyYvHu_@vGcx@tKagAfLsn@nJam@~J_e@nK_g@jP}_@bOyd@tVeb@fX{MjKkNxKy_@z\\{\\v^i`@bf@_f@zr@{MdVaVvd@{KrUkRtg@gMf]sJxZiT`{@cIr^kb@pmBkkBdbJa_AjjFqMz`AgMfiAyG|t@eFjr@iHvtAaG|_BQx^q@fi@Yt^Sti@Phg@tBnvAbAvj@xEbxA|GxzA|[vvGbi@piJ~a@d|Idi@dwKt}@dxRzE~z@`Ets@jIf}@tP~}@~a@tvAd^tnAfLxc@vKhn@fEv`@pBr[x@d[Pnu@uIdtBqFrdAkDvaAa@lbAzD~cArKpcAbPzu@xq@llCrMhm@dMzz@tE|v@~A`eA}Zp}JY~`AnBneAfTruCzs@ffJbI|o@zHzf@bKfd@lMrg@vwBnfHbN|q@xHfl@jGpv@rCh}@L|mD`@``BjBl}@~Glz@~Mh~@tSnx@rbApkCzTbt@hOho@~EjXfDxXdCtVrAbW`@bOVpK\\zn@Qfu@s@dvAh@~{Ca@hoB\\xqEChq@|JbfL]|iA}C`cAyHb|@aK|{@}wBvrNmQfuAcEh_@oP~eBsHt}@qGl|@}GtcAaG|jAuj@|rIaFps@eHzv@_kBvgRmIzgAsB`cAl@j}@vE~}@rIrx@bP`}@rQpt@jXvt@pwCj|GhWxt@~Tds@xSjt@bP~o@dN|n@tN~|@fKfbAbOt_BhGzlAzCpnA\\bgAc@r}@gAlaAgE~}AgMbbG}EvhBUxx@xAvy@lEtx@nG~u@`hAdaJ~F|v@zDl}@H`y@uAh~@}lAzxZkIvtBcLzsCoAzZmLpdD{KnnCuCldAu@ffAxAn_A`Gx_AdJry@`Lts@dsDz~PjMly@rL`bAjI~kAhB`aAP~v@qAn_AiErz@{~@bjKaF|cAa@fbArB|z@xFnw@|kAb}IhInu@jIx}@fFp`AzAj|@rHppR~ChfAjJt`AvOt`AxV|y@v[vv@d_@ll@|c@|i@ndBr_Bf[j^zZfd@t[nn@fTrj@zWpdAdR|`AjT|_AfXv|@rWjq@~\\xm@v_@vl@neC~jDvb@dm@na@xn@zjIl|N`Zbl@nXft@|Qbn@hNpx@|Hhx@xaB|g]B`@dHty@dK|z@dQn|@n\\rpA|k@pmBxTfu@jQhq@xN`x@tJl{@vb@vhGxBn[nHbhAhIhcAxOvaArFlUdQfi@fZdp@~\\zq@bZnt@hRps@fKfy@tEby@rw@h_QzErg@xMz_ApRjz@tW~r@bTfe@jaCzrEfUr[zN~Rt\\d`@nUdV|SzQnb@lWxg@fWjz@rWx]zFnLjA|c@jClk@?~f@wCjW{CvVuEb{Aw_@hl@wNtg@aJrm@sFdt@gD|p@fApv@tEht@tI~l@vJ~l@tIbn@hF|g@jBvj@Q~g@{Fl^mGjl@uMfeBok@bUqF|k@eL~n@mGrVw@xXq@xn@tBtj@rGvx@bPdm@xMbnArWfn@pKrdAvMlu@lGvi@bChnE`Hrz@bGxw@~Nnm@bT`q@t[hl@la@j_A|z@boBjlBnd@pc@t_A~`A~]h]vr@nz@hq@r{@`g@xo@l]bg@nP`VrKrOn]zi@d\\fc@`c@fg@dc@|^dd@b[pn@bZfUtIpc@rOlm@rSfs@xUpq@fUrj@xQxWbIvmCft@~cAnSr]bHha@fJpPjE|PfFzKpDjK`EnOzGbMjGvOvIjl@nZf\\lT~YzYb`@ph@nUx]vWz`@nIjMhKzOlAhB`M~QnHtJnE~FtO~Qx@`AjGrGdGfGvH~GpKzIpK~H|JzGdGtDbNhHfOfHxPpGl[jKllArXpm@xRfo@vYxeGt{Dzv@ni@`j@h\\zy@nZffAnTxaAtZzn@~[dp@bh@fhCp{Chw@dv@nw@fo@f`Azk@xhAve@lM~ExLtEbNvEbGlBbJ|CxRrFfRpF|QlEd[pHt@Prh@nM`[dI~QxEhQhFzNhElOzEbUjI~NnFfQ`HdN`GlR~IvQdJnNxHdRtKjuClbBjKrFvNjGnMdGbPhGfOrFfMhEpMdElN`E`MbD`OpDpLtCbVpEhVfEzU|CxUbCdJ~@|MfA`@B`RfAhPl@lNd@nORvNBrO?h_@[l|@eBn^[nO?xNDnFLbNh@`P|@vHh@nS~BbOpBxNhCbO`DbNhDfMvDhz@vZjj@z[|yAteAfi@n]zk@tZ~f@zQbq@dPn}@xM``A~DteDKny@xFnq@xJht@`R|s@rUnk@xXdj@d[b^dUp_@zUtn@~[`n@lVzLdDlwBtk@viCfs@js@lX|]vSjNdJ~j@`c@fi@pj@xc@fo@h]rm@pZbr@dX`s@`e@zmAr[nq@zWrb@`Zp_@d`@z_@hp@xc@nm@`Wbb@|Kh[hIt\\~C~_@hBp_B|@j[Nb^p@jk@rFfr@~Otq@pV`l@nZzk@zb@xcBpyArj@lc@~l@ra@ro@v\\tn@`Xxr@rUlhCps@dp@zTnn@lXnnAns@dy@ni@vj@|Yrl@lUdm@dSn~Chf@paAdQrz@|Urw@f]zt@fc@pr@`i@rw@rv@ld@hk@vb@jp@da@pv@p\\vv@f[by@`tAdiE`Xfo@tUpe@dVh_@p[p_@zc@pa@va@|Vvb@zRrj@nL`s@nIps@lCpg@\\~zAbAj`AvE`y@rNxq@tShn@v[zzDfgChpDp_CtnAjv@`pArr@xmAvm@d`Apd@`iAhd@ta@`OzUpI|dDhdAldC`|@rrEvmB~h@|WbGxCjMnGdbAbb@dq@vV~lAf_@tbArYfv@zR`fAjVfkC`e@js@jLfhBfRngEv_@t`ApObx@tSbp@bVlm@~Z~p@hb@bi@dc@li@fh@ve@pm@rb@rn@vp@ntAhh@vvA~d@feBro@z{Bt`AvrCjWnr@xMl\\nzFlpNdp@f~Atw@jaBb~@|fBjFhJt}EjjIxz@bhB~p@~fB`}DztLzUrx@rSrx@nWfqAji@|lCzH`a@`q@|kCv^v~@~n@znAtw@jiAzkAxlAvmApw@xdAhd@jbAjWnBf@jjA`OxbApDfkA_Av_AsJrcF}p@fo@_GvReBtf@{Chb@gCnMj@`}@|DdgA`KpeA|YzaAja@xv@|b@lz@rp@xw@p|@|n@f~@dp@fqApf@|pAvlDloMdlA`eDd{@f|Al`AnpAp}TltTl{@f`Af~@|mAxv@pvAxl@`rAhh@dwAd`@|qA`yA~sF`uA|eFfpBhlHzc@`vA`i@psArTrc@baApfBjO~Vlq@|~@z^ta@dfJbaKto@nu@bW~YrzApeBzw@`bAru@faA`u@pfA|l@rfAdo@xkAvm@fqAp`@bcAthAdeD~Rhr@h]`tAbZ~wA~Zt`BlVj}AzPxzAts@x`I~RtwAj[vuAjh@xzA~k@jkAtp@r_Ahd@ff@dQbRnaAvu@lcAzf@bYpIxk@bQb]fKjmAt^vjArd@`y@t_@~OpJdThNvn@xc@dVdSvGhFbUnSp^t]~TnUlxA`uApl@td@lLbJx[jS`YbPvOrHvi@nVrM`Fp]tLfVjH~PjEnQ~D`d@`KreA`MndAlElgA_@lcBwIhiAuDfdA@tdAbGblAvLvaAhHrd@Ktd@iBrhA{T|{@}b@nx@en@zu@eu@nu@on@xbAwe@fcA_TpdAuBxbAfJba@pMtOnFlPbFj_Abi@tcAdn@z}@p_@l_@zHj\\|D`d@|Avj@o@hPaA|OyAh^wGzl@eP|VyKz_@aUz]gYbo@iv@~kB}|CzJwQtn@mz@nZq]hLkNvYaZj]k[xR{P`[uUv[qSx^yTj^wPj`@_O|`@aM`PwCvKqB~f@eJpdA_JdgAc@`p@`DnXxC`x@dLf}@hVrt@dWnKrDpjDdvAzvC~jAh`At\\zn@lNva@tHrb@fFnh@dEnk@fCh~CvHj_CfFjf@rBp_ExI~_@`@fg@aAhj@iHn`@eIb_@sLrd@}RpdHqyD`dAoi@j_Au_@fuAub@feEcoA~kAu[r]eExb@qAfVbArJLdd@bFd{A`[rTbG~cA|T`~@pPfSxCnJdAhJ`Anb@hEbcAhF|hA`Ep[x@|VU`g@}Afx@{J|s@oPbRiFlsEazAde@mNb`@yGjWqC|l@aCpgBcEtq@_Ddg@yHfZcHnFuAbi@qRb`@kQpeBeu@fCgAhdSc~I|W}M`N}FrOqFpI_C|IeAvcBCrWlDrj@pJ~{@nL~MbBd\\|D~YlD~eArPx@ThCt@|zA~c@pbAh]lP|Hz\\~Sxe@ld@fj@~j@pTtTnVtThUhQn[~O`XxIt[nFfZfB~UOx]cElJgBzKqDhWmJtZqRjYkWnSiXfNwSbQg\\bWyh@~]ov@zPi\\`RyZvP_VrOkQjLsKbM}JnM_InJ{E~OoGhToFvNiBrZwB`RHlm@hH`WtHbS|JnVnP`ZhZjT~[fTjd@rRvl@hfAzfExPvk@fPx`@nT|b@n~@tiArb@dc@`v@`v@jwApwA`T~T~]nVhc@`VzX|Ize@vFtR~@rRQ`[gBnX_Ff_@_Mt^mPtoFanCfzAaj@|nAgU|q@uH|oNkoAdhA}NneA}VncAm_@l`Awc@laGkuD`[aRvRmL~JgGf@Yt`Aga@tiA}ZtmAgOhxFyi@zNyAjbFmd@ruBiR`^cEncA{MbxA{SngAsT`bBab@hcBk^zpAkSz`AeChdArDdfGrn@viAdI`fAJfmAsJxdAyVv{@q^|vE}lBhpA__@|rAmSjvAmKffLeh@fkAeJbfAeKbdA}ObrE{|@fzAqYj\\}FhScDpTaDpUuDtpAgMh`A}HtK}@trHiQrdW{l@ljAwGhfAuSjjFs_B``AkTr_AmN|jA{IxfAsBjhAr@fdDvPnqEvXfiAdKhcAvThsAro@~iSzcMxw@lc@vbLpwFfgAdt@rv@~u@xr@t`Arr@|jAbl@h~@pOrSxe@|h@`l@~d@xv@x_@~YdJ`Z`InWdEvFn@t[lCr[bAz}CJpoCq@huAf@ft@bEh_@tFzo@zNxNhFnDnAze@jQld@pThfJniG`cAdm@p`Ajb@xl@~Rpe@zLht@hOl~JfgB~mBx^hlDpj@nmAdOpwH~~@lnAjRhmAdZlkAf`@~zHnkDpdN~kFbrDnsAxxHdsCfaBln@lZfLtt@zXdmAda@rl@|TvUfKpKdFl~@~f@~v@xi@te@dg@jh@`t@~^vm@|[vt@pa@jvApIx[njAr|Ff[ruAha@hvAzb@bjAzk@xnAf_Ab~A|eAvrAb{@fw@xfApz@zeFndD`mAz{@tc@p^th@zd@beAxhAviApmA`rFh_HzzAvlBv~C`zDduCdsD`|B|sCroB~aCtr@tx@du@bw@f_@h\\jh@vd@df@rb@|s@ji@j}Bh|Arg@n\\xwAdaArhApr@liCdbBveAfs@tDdCptB~eAbw@z_@tk@bWn_B~o@zcBbo@lnApi@hjAxl@hjAhs@|nAxz@jiAn~@t_Ab|@xq@bv@h\\p_@bOhQtR`VhP`U`e@~o@|RtYvIpMpSvZvl@~fAlRn^|^`y@ll@xpAxrBnuE`lBtnExl@dmA|l@~bA~t@t~@`_Alz@`gA|r@pkB~fArC`Bf~@xt@t|@h`Ahr@peAxo@hnAls@rqAvq@~bAdcApjAntCxiCfw@`|@zx@nkApr@dqAzl@dtAfiB|~DxItR~BbFvpB`nEvk@t|Ane@veBl[lfB|SrmBpLhjBnKhlBlKffAfN~{@tUj_Ap]ndAna@v|@tf@hy@zi@tq@z}Kt`MnUlWbYv^ng@dp@|v@buAdi@~zAby@nsC|tKvk_@hZjwAbXrkBfNx|AtvA`lS~PzzB|Gnl@|M~x@z\\fsAfi@`mAzoAv|A~xBnzBfdG|cGfd@``@jc@x]ns@be@n~@de@dxAxe@xeC~k@|aAxWzx@pXbv@h\\zv@l`@~kC``BlcAbk@x_A|a@taAlW`cAbRzlAjLdgArBrECf`AaB|Yo@vrByG~k@~@na@pCxd@lIjk@bRbf@nV~WhTnWjVvc@td@z[xe@f`@taA|Lh\\jKd`@dPxbA`Ev_@bEpl@|@xn@Stb@oBbn@}Hf|@sM~t@cQx`AmHjf@cDdd@OdMUhOAtIDrHN|HRpHVrI`@tGh@|Hp@lHz@zHz@pHdAhHpAfIhAhGtArGfBfHhB`HlBnGxBxG`CtGjCtGbC~FnC`GvCxFpChF|CpFlDfFxCtEfErFzD|EhEvEvDxDlDhDpEvDnElDdE|CjFjD|ExCfFrCjEtBbFtBlFxBlFdBfFzAhFtAvFlAfF~@lEj@rFp@|Gn@rFX|FPdFD|E@jGKlGWvF_@vMmArG{@dEi@`H{@xFy@lFs@nFq@bGu@rFi@nFk@nGk@dF]`G_@pFWrFQlGMvFErF@dGJrFRnFTvFZrF^fFf@vFp@pFt@xEn@tF~@lFz@lFdAvFdA~FhAnGnAbNrCxPhDxf@`Jpc@nF`s@vCzkCjEnu@hL`p@f[bf@v`@hd@tm@rZlr@jOth@jUfqAftBtfMxRjjAvKho@nFvY~E~UrHbYxPtk@nr@lgBfPd]`b@ln@RXnbApnA`N`Ozj@zf@~w@pe@bq@h\\~u@bZrgArVr|@xI|dAvAvsLmOfbAtAtv@tHdt@fP~jAba@p~@~h@xlC~vBpu@je@p|@`a@hy@~Vlg@lKbb@fH`|@xF``DjGljAjLneAhQvs@nTvBn@~n@zVrj@bXvi@fZl|@tn@vp@tm@nSrUxZ|\\|q@|~@r|AvfCd`@xi@fPtR~MvNtR`RvP`O`L|IvJjHrMjIjMlI`ZfOpUnKtNxFvLfE|LrDtLhDvP|DbTdEt_@|Fx]fCff@tBla@MjbAsD`mAkB`eAhBp`A~HdgA|QzjAd\\t^rNzh@xUpn@d]tvA~w@ljAfp@f~Ab}@p`Arc@je@|Lrj@lH~iAlK`zGdm@l[~Erf@~Lx}@n`@h{@pj@hj@`a@plEnyCrx@~h@pgAlx@nZdTlUpLf_BdfAb}@`o@hVhQzg@~d@pZf`@|Y`c@tn@bgAn^fn@vr@pgAlTd\\hSjVfSfThZrXfv@pe@rx@tZtd@pJlW`Dtw@xD|pA~A`eBrBrhArBjOv@jcAbOt_Al]tq@vh@vVtVjZ~YlpA|vAvg@hm@nRzWdSjY`p@lo@taAhx@~_Avp@ra@t\\hUxVzZj_@nUl^hTte@vS~h@vQts@~L|o@|XzsBjDdRxDjQjEtPdFnQlFpP`GdPlGtO|G|NrH|NvHjNpIxMnI|LhJxLtJfLjKtKjKxJvKjJlKdI`IxFlQtLvSbNzRlMpNnJtQjLhO~J|T`Ofd@~Y`n@|`@dwAv~@|iAru@fZnRtRlM`StMxMpIpSnNbFlDfFpDbLrIzKzIbLzJxKrKbKjKjJpKtIpKjJ`MnJfNpIpMzHzMpHhNhH`OdHbOfGdOhGzOlFzOxE~N~EnP~E~QbE~P|DhRrD|QvFb[pKnm@tNxy@nKzm@|Hhd@lIbf@hAfGfK~l@|Gj`@zFv[fF~ZxCzQvCzQrCtSbCbStBpSbB|Q|ApTjAvRx@fRn@vT^~SN`T@hSEbOGzLm@jf@y@ph@s@ng@yJlzGYnR]hVe@`[[vTY`S[tS_@nT]jSi@fSi@hRw@zS_AlRgAjSkA`RwAbScBnSiBdSmBbR_C~R}B|QwB~OmArIcCbQgCpQmCpRqCnRkCbR_C~QeCfRwBnRiBdRcBnQ{AlRsAzR_ApRw@rRk@dR_@fRS`SEnRBhRL|R\\vRd@pRr@fWhAdVbAdRbCnYhBdQfCrT~BlQfCxQlDpSxCnPvD`QfD|OzD|OhFlShFnQpH`VfO|c@lp@xjBlG~QhF|PtExO`E|OdErQnDlP|DdSfDtShC`QnChTrBjQvAhOvApPjAhPbAhOv@nNfBb^l@jMnDrt@`Fjt@nBtUjEja@bElZlEfXpGz\\vG~X|HlZvIbZbLl\\jK|WxLvYdLnV|o@xsAzu@|{A`Pb^~Mf\\`JhX`HdVnBfJzI~a@pElXhDlY|BhUjBfW`AtXb@rWLnXUnUq@lYwAxY}B|YuBlSmD|VwEfYmv@l}DgK`l@eFd^yCfX}BdYoAzWw@tYYlW?hP\\nZt@vRx@pQfAhPlBtTnCrV|CpTpE|V|CfN`GvVpG`WxyCzoKxg@hbBfTzi@`Unj@zl@zeAbcFp}Gt`@lj@`LdQrLpS|JdRnKbVzKpYxGbSfFtQpHd[fEdUdElXrCnUlBxSzAvTjAtYd@~SV~[YrY[pMe@jNkBx\\aCt[_Dd\\sIxu@kuBjsQY~B{J||@oKxfAmIdcAmDji@_Dzn@qB`i@qAba@aAlb@q@d`@[|b@a@l{BjFzjChMf}BbTr_Cn\\bcCbi@rlClf@vlBxx@rmCzJf[rv@~mC~R~s@`b@dyBlNxfAzGni@~Fxo@zMp~ApP~bCfNxkArCvTpC~QhIrf@pGz]`DzPrHl[vEjQdJdZ`JnYzQdm@zmAtuC~Nn`@lMrd@|Kvd@vHzg@`H~j@fEni@fB|l@Z|n@yBnsD|@fr@pBfg@bHtr@~F|c@jJbo@pKla@jL|b@zZ`}@zOhb@~Z`t@nG`NxF|LpEfL~B~GhDnJbFlObF|OhDxLhF|S`DbOrCnOlBfNvBpQdB`OlAjNh@dLh@rMlAtSz@|Rd@lU`@~Qh@`\\`@z]h@v]n@`_@j@xSn@dSbAbRfAzPhAnMfB|Q`ChRjClQhDtRfHp\\dE|PlGbUhQtk@lEpMjDrKhD`K|BdHzBpHzCvJbDrJlDtK|DtM~DtNbEzO|C|LjClLxCdOdBvJfAxFhAvHjAdIfApHjAxKbArJ`A|LbAxLt@lOZtIh@zLp@~OTzKHbMBxJ?pJIdUUbSSpMg@hWqD|aBc@dVa@fYOnSKhVChT?pMDlKB`IJfLb@xPx@zTbA|Vf@zLh@jK`ArPlAtQxAzRxA|QlCrW~B|TxD~YnCnQdDrUrBrMfC|NdF~UzGb\\rD`PhBrHrBtIrDxMdElOhFpPlIjXnFxO|CzIjD~IdFxMhFtMrHlQpEzJbE|I|DnIfE|IrDjHrEjI`EvHnGdLxEtInLzRnU~^dXlb@p\\xg@tSz[jd@bs@t]vi@d_@rk@xUx^xTh]rf@dv@lc@fp@lLrPjKzNhNxRbIvKhXp^|q@n}@b~CtnDb`C~lCzBfCjVfYjMpOzRzWlMjRjJfOvE`IlErHjJ|PjFhKrElJhF~KrFlM~EnLhFzM`H~QpF|O`GvR~DtM|EtQnFfTnDbOxDdRrCjOnGb\\hlD|`S~Jbl@lGn^pDrRtEzVvEvXtDnTpE|WnD|RhFdX|XzvAlIla@dx@lxDzXzqAxTleAbSr_A|Rj`ApJpd@bHd\\`FfVxGd]dEdUpC|OtDfTvBpOxC~SbDlVlDx[dBhQxAjPpA|PvBn[`AjQt@lSh@tQj@zS\\jVLt]LpqAKjJ_@xSc@bNc@~Me@hLw@pOuAdVy@pOuAvPqC|\\kEr`@cBhOgC`RaDpToEvYkChOmEzTqEfTaDvN_Jd_@_Lba@iJ~[_HhT_HvSi^xfAoLl_@uDjMiDzLqCdKyCtMaCnL{BdLsBzL{AnJgBdM{AlLeA|I}@hKy@zLw@hKe@pHw@|Lq@~RoAx^uE`~A_IxnCaInmC_F~dBYjMGxBStQMrNElMC|RDxPT|OX~NZhNj@pMjArSjAxRrA~PnAlN|AfQlC~RbEtWfHdc@hLpi@`Iz\\tWnfAzEpRlRxw@|vAt{F|Ix_@xFdWdEvUjCrQrB`PpBzT`BxVn@jPX|OPpSO~T[lSq@bSgBfe@mDru@iWdvF{@~W{@f\\OdSQdQ@rS@lIj@jTRxK~AtYzAzShB|Q`DxSpF|YbEzQbFvRhF~PvJrWzG|OrHzNjIzNpIzNdJ~MtG|JzLvOrUlYneA`nAbhAbqAxf@tl@tOpRvKzNhKpNhMhShNrWrHrOnHlQ~ElNvFnQpFtR|DtRxCxPtNlkAzAtzAkKtxD}C~cAI~h@dAvt@nm@dcS^~OR|MFzPKnPQ~KWzIY~I_@jIq@vIo@nIy@xJgAfKeIno@gVfgBcW|kB}BlQkAzJuAtMu@vI_ArKq@tIg@~I]pH]`JYzJMzIEpMBnJB`ERzO^xMTdGz@dNdAfPdCxYfF~h@dRhiBf\\p}CjIdv@zMhoA`Fjg@~Mf`B|BpyAyHhqAoRfkAu`@hdA_tFxzKugFv|Jyl@rrAca@dtA{RdnAqItpAw@lzAvCt|Atm@pwQbRtdGlCrv@x@bRl@zKvAnRrA`QlBpQ~BlQfA~HtCpPtBdLhDhOtEzQnExOzE`OpGlQtE|L|CtHbHtOvHjPpY`m@hm@vnAzqAlnC`|@rhBfm@dnA|f@~cApb@t|@rlAvcCtItOxXlf@|u@jlAbaB`yBn{@rhArg@vp@xOlSlTj[zI`OxI|PdEnIfDbIxEtLbC~HdEdOvDtP`BhIlClQbC|Rz@lJhA~RXtHPbIDbHDzHCxHIdGUvIWjFg@|Ko@pLw@pKs@bG_F|^{aAzyF{DvUsCtRyJjy@yJblA{K~kA{NrhAkZzbB_jCjzLeVd}AgNzuA_\\vbFcK|lA_NfcAkc@jxCiIzhA{AnmAxCpvAnHzoD`Cd}Ab@vlAaAz`Cm@bnImB|{@uBx`A_OxgBsQh{AofAlrGcVjwAgXziAiHtZge@daBkbB|nF}Lbe@kEnQwE~SmE`UgCdOwCdSuBnQuCdZwAzRq@hK{@hP]rKWhKUlRI`S?pRPrOf@lQh@`Od@nKz@jMfAnOhBnRfBtOtIpu@pIls@`Hli@lG`h@~DvZzCtYpIdv@nCvShEjYpClPbDrQvChOzGpYvEjQnFrSpFfRzDzLdHbTfM|\\bJlWtGtSpHzVnHzW`Kfb@dGpWpFlXtE~WfDnTnC~SpBdTrMb_BzC~ZpCz[nB|SdC`StDfVrEfVjEpRlJj]tFvSbH`VdFvPhFlPxFfQvIdVhMvZjH|SpJdU~IhU~GfQdGrPjFfQtDrObDfPxEbWxDlWlSn{Av]pwCfCpRdEhZvDhXhCxRpBpQtAdQ~@hQh@pRVdTBfh@Kne@O`]Ej]JbSXhPb@pMt@hR^hIp@`LfAjPdBfRlDn]nDv[vDr\\hCrRhCbSnAfJrAxIjm@vpEpCnZrDd_@lBfTxA|SzA`UrAnVl@bN\\bJh@tMXrOTpSLn[JfUKjNQfIcA~R_BfVmC|[oAlLyBzPmE|YeE|U{D`RmDzOmHhZoUvz@yS|s@sItZex@fpCoLza@eBfGcOhh@oLbc@mFzTiHx[aGbZuDjUwBzNsCxVyBpWw@bMcAbUk@vTSxZFx[d@bYt@tRhA`WxHleAtQnrB`Jlv@t`@v~C|@jJjAtMd@`K\\lJTzQ?pPS~Oa@rOo@bQgAnVoAhQ}@hLu@jJkFze@wcA~iKoRbvBuNnyByM~aDoQrjEeChm@yH~jBmBxv@aA~`@o@|bBzDhoBvHj~AluAp`VxDpnANxu@q@vk@yBjk@yE|o@uG`m@gQvfAgoCb~MeX~xAoOfgAmLhgA_e@fhGiYzqD{KfsAuH`pAm@vm@fCzn@rFdj@lJ~d@tNre@rc@vaAnN`\\pF~MxEnMxEpNnDxMpCdMrC~MpB~NzB~PtAlRt@jOh@`TBvSK`Pq@zQy@dP{@zPuCp_@}Bl\\mNltBkJ~uAcUthDsFxeAyAj_A|Af~@`D|p@bF~e@`Hhe@xP`{@rv@~_Djh@bbCjYx{Az~AtrJ~Mzo@rRro@h_@d|@|Xfe@t[bb@zmDlzDpd@ll@lPzS~t@xlAxyC~|FvhAbxBpe@zaAvFvLzv@pwArgBdlDlRfe@tPph@xK|h@hGda@nEvh@rBvk@`@xyAhAf_BtJ|pA`YjvAfkA~aFdVzoAzDla@jChc@~@t`@Chf@oAlb@cD|c@aLneAsTnqBwChc@y@jUS|Zb@hW\\hO~@tPrC~Z|DzYvDxRdK`e@`yBvzIj^hgBnQplAnEdZpBzMj|@jcGdFp]jEbZnWxqBAzPbBxd@`@|f@B~d@y`@|}IkAfeBnAjpA|Yx_JpAxt@wAvu@kIp}@}QdjAk_Kf~d@u~@hhEkU~~AoE`hApBndAvz@hiKtHb|A?niBoDxhAmLv_ByTvpAkUriAqvJrf]wT~eAYpAuNbaAea@ryDkUxrD_Bzk@U||AjAd_C`DdvAlO`{@ri@hbBf`AnuBpn@baBnRfh@zQx`@~L`MpMnEvMgBzI_FfUy_@do@arApMiSdMaO~g@m[bd@_K`u@cK`e@cEhk@_Bfn@]|x@zCbqAxKh}@hKj}@bKxoA|ItrAvH~bBfN`zBhVn~Bd^zvAdPxdA`HnkApDzkAlAnaBeD~dA}FpiAgK|lAoQp_Bu[ttBal@lfD_bArnAqWfz@mMv~@kI~|@mExt@m@lrAhAtk@fCrf@rExrAzP|bAnTbt@fRd~A|h@vjCrbAnfAn[jnAhXx{Djn@jvAtWpuAt^jdBzm@fhFh`C|y@xYp_AlTx`AnQpm@nG|}@bGlhB`FhlAnEdmAxKtlA~Rd_FngAh`BfWzy@fHbj@\\j`@Zpn@{Bdw@uFbs@_HtgAuVl[{Hdo@iSttA}p@xj@e^hjA}z@fmEcyDt~AseAftAuq@|p@kUvc@_Mr`AoQbgAuM`rAuFblBaAjlBJz{AwCzxDqPzAGbx@~@vw@|Gfu@nP|}@r[|p@j^zo@fg@jc@la@vc@ji@~g@lv@njAxrB`m@t_Ab`@pj@nl@pu@pdAtlA`cBfkBbrAxbBffBtbCh~@fqAlwBznCpm@dq@zt@`o@bt@zk@`mA|u@||@zd@zv@zZhhAn^fs@|PvbAfQv`AlLx|Ep^`p@tHdj@bKdq@|Otp@vUlq@h[dl@~[lcAxo@|dAdw@liHlfFdy@hh@jtBllArmB~jAfMfJ|_Ajr@`y@xo@bgAf~@bkAhiA`h@`j@vj@lo@tR`VbqC`hDxiA~jAd}@px@luA`fA~UxObn@ja@jiArp@neArm@beA~o@~LdJh|@`r@hiAjjAfn@pr@fLbNlTzWhdAflAfq@~r@xq@zm@xs@nk@vy@xj@zn@b\\~T~Lf[dOrjAbe@jWxIlf@zQnxAd\\x~Dbq@zk@nLpa@nIbv@dWfl@vZf|@rn@zw@zs@ve@nk@r`@`j@pb@fu@zT|d@vQh`@zRjn@fUtx@f[nuAp[dtAlg@xwBlUr`AhIfZ|IbZp`@nrAps@rxBf]~eAxl@hyB~p@rjCdh@`pB~Rft@nWt{@vLf_@`\\naAjWtq@vf@xkArk@dpApX|i@np@nnA|Pf[fi@v|@rs@fgAbRlVrm@zx@pT`Xr]pd@`eAhgAbq@lp@no@zk@~R~Pnf@l`@l[dVtVtQ~UbQ`f@|Zzk@z]bYrPtVpMnq@~^hMbGnzAbs@~_@dQf~@z`@`{@|`@hsAdm@rkCjlAzaBnu@vqAdq@dp@jc@b_@`Z~a@xb@ld@~i@zVf]hd@dx@|V|g@r_@x~@zLx_@tXleAxPj|@hNn}@dOdfA~Llz@xI~l@fLrq@zPv`AxQlw@lQpk@hQlj@dT`l@jSfg@`Wnk@xd@`{@x_@`l@rj@fv@`f@|i@vl@rl@bc@v`@fg@d]dHzElk@xYnp@n\\po@vXt{@hZp~@~[lz@vX`fAr^js@zYtqAzi@dt@b^pmAjp@js@|b@zoAbx@`vBrzAdpB~_BpiAjdAxo@zn@x`AdcAdv@t{@vnAf|AxmBfnCp|@buA~^rn@lr@hoAfRp]xb@d{@vr@d{A|v@hhBhh@xrAbTtj@ls@`vBj^hjAv|@~`Dxz@ltDfzAzpHlVleA|CzMdPrr@dv@vlCbu@jzBp`At`CddAnxB`xAvjC``AjvAr}AjuBzuA|`BtZ`Z`wCjlCnjCv}BrpCzuCpvAxhBhgAp~ArbA`dB`x@nzAbkAtlCn}BfbGfhArfCzKrUfh@zfAxpAhuB|{@|gAdmBb}B~xAbsBrs@brAz}@xjBdaB|uDxw@lxAt_Ah{AfiAxuA`bBnpBntA~fBv}@z|Arw@veBdm@vbBp[xgArs@xsBzy@hkBx|@n~Av}@xnAvuAlzArhAt~@|qA`y@bbBtdAbi@rb@ze@rd@t_@jd@vp@zaApPvW|^tj@b]jh@h~@~kAdJbLdQvRdGxGta@`d@vf@be@xg@fc@~w@ln@~y@dk@pxAp`A`\\pV`kAbfAj[b^ft@f~@pr@fgAvkAzlBxvAvnBbZ`^`aAtjAhxAd|Afq@vaAjt@fzAl[ho@lXzd@jf@tv@nlBxfCzp@hrAjl@d{Ale@liBlk@hgB|o@t{A`{@rfB~Pzd@zUzs@rU`fAnXj~ArR~w@p^fgArm@`nAvu@nbAxaA~}@b}@be@tmA~`@bpApN~tAtEb`BxAjuBuDz|BkL~mAaQzgAoWnaAi\\bA]ffAgg@`zAc{@pq@i_@z~@k\\x_AwOjw@qFbhANz|@bHp{@rSttAp`@teBve@djAxXdxAzXtrApQzuBnNnnCvNjf@bGzKdB`^`Hl_AlYdcArf@tl@|c@pj@bi@|s@v|@nq@vx@pw@`r@p}@ji@lu@lYrfBtd@bwCxu@tv@bPbbA~M~jBjJfcAtElo@tHd~@fRzt@nYlt@x`@zx@bn@x`Ar}@lv@pv@~r@lh@pdArq@lnAvw@reCb_BftAdfAd|A|vA`uErbFzz@x{@f_Avy@vu@vg@v~@~i@ddAtg@hcA|]hcAxZj[nGhj@vKnzAhWvUnEdVjEngAvWfZxIbTfHxf@dPdMvEpgAff@xLjGxr@~Zt^jQta@dPfrB`n@lhBpZjcAtIbp@~Dxs@|BzvAfFzRn@|Vv@~p@bC`lCdKld@`Bve@~Ax_@pAdg@hBvcBjHhm@dAzo@zBnmAfExmArFz`@TlkBlH`xAdHdbAbI~fCjZ`bCf`@xzClr@fcDjbAdbIrwCdfEvlB`sC`uAnqCzxAtoBvhApt@`g@d}@d|@vq@|}@h]tb@nSxSfa@d\\`UnP|m@j\\f]lNl^lLb`@dHpa@nFb}ArPjYtEpa@fJtk@xTr^hQlGzCtUfNvi@~_@~QzQ`w@x_At_@ll@|KrOzh@px@vw@jgA~cAt{@tYlSld@fXj[rNp]|LzcA~Sr`AfG`s@\\jgAx@tfAtHhhAbUj_Ad_@hu@fa@|\\bXl\\pY`RjR`^jc@hn@xy@|FrI~a@~l@fYl`@rUxYnXbYhj@zd@zRpMph@n\\|PfKf{EdtChy@bh@ft@nk@dl@`o@jfBlsBjl@rl@lj@`c@rj@z`@xl@zYtgCffAl_Ah`@xh@lT|p@n]ft@xj@dt@~y@vfCl`Dp`CfdDnrApoBnRz\\pqB|gDlRj\\xi@n}@`aGrjKftFxsJ`Ura@pVda@n}@lyA|y@|hA~n@vs@b_@hYjh@nb@t|@jk@pdBj~@xuCxzAld@xUvc@jUnqAdr@hi@vYd]hR~\\hThc@h]b}@~r@|_@pa@nNpPzWp\\tj@~r@dN~PrUfLfGnDnFxEpd@nq@tZve@tNfs@rJtP~I`NbLzP~Ur_@xPhVtk@~u@tl@~s@nr@vq@ft@|o@`_Cj~A|s@pe@zZtQjy@lj@zQ~L~xDtaClkEjoCd^lXlk@vj@l~@fjAfg@z_A|l@vqArj@xeBjn@jbBr]nv@xg@rw@nm@lq@dn@`i@t{@lh@npAde@x`Brg@zbD`bAdc@nNfe@jPta@~Ol`@~Qdb@tTlZpQ~^bVjmBhpAdeD|{BnnDpaCh_Cx}A~fCt}A~~@hc@n}@tZziAtXleOxiC~sIvyArpCjd@dj@|JjvCtf@|yFz`ApSdDpm@zJxbAfQr`@nHb`@dIzQ~DfXfGxX~GpW`HtWpHdo@vR~aAv\\pVdJnj@zTlSnIzRtIfXzLfXnMvqChxAnqCzxAtrCjyAlkArm@jsBffArqBdeAnFpCpj@vYnd@t`@jChCnAnAtDdEpD~EtCjEjCpEvDdHtDjHdDzFhDbGhFtI`J|M`N~R`N`S~GpJjGzGpGrFdF~D|F`DvGzCrZnKpFnBlEx@bFv@zJh@|KiAxFmBlHcElDwC|DuEfDkFzC}GnBsGfByHr@mGReDPcDBiEC_GQqFc@qIYgHOyEQkEKiFEuGLmId@uHp@{Fv@uFnAeGnBgGlBqFjC}FxCwFnCeFrDiGbDsFfFuIjGmKbHqLxR{\\vN_VdIaPbMoYfQ{^xG_PvUgk@xSkg@fKoUtBsDxCmE|C_EhCuC~BaC|D{C`EsCdEcC`FeCbEuAjHaCfJ{CpOuElNuKvEgCdCgBhEcDbK}HpDqC~DmCzEuCzFwCjGkCbG{BnEsAbFoAdH}AhFy@fc@gLpd@eDbOeAjSoAtRBnSj@|e@`DrK]dWvA`S~@vOf@zEN~ENrUZbVN|UNfe@FzUTnUTnW[nOiAvKoA`^aMjU}IbDkAv[yI`_CeJbe@qBhm@uCfdEgSbg@eCdj@kCtTcA~AE|lAcGnTaA|]aBtuAaIrWy@lSHfBIrb@wBvKi@lPw@`AGbhAmF~\\kBrDMvWqCj_AcE~y@{Dt\\sAvS?zRnAzNzAdOxDpWfGjWfJtBt@tY~KvVvJpDvA`HxCpAl@lB|@xKfFr\\lLnHxApQnD|Aj@bEzBpBpAtAtA|@zA|@fCr@|HUtHpAbHhDzEbFhBdFWjEmCjCiFh@wCvFu@nKeBzKh@zp@l@xg@_Ere@wI`x@gUnPiGnN{IjGqEtKkKpAuAdAmAtAgBnTyZr@iAn@iAn@mA`A}BhFcPrLcm@|Fk^tCuQ`A{EjAsGNo@|Jei@`Ha]jAcD|@_BHKn@}@|@{@t@m@bA]tAO`AF~@RdNvEzF`BrStHbI`DzIjDfQnHbEvApDzAtn@ta@bq@j^ldBh}@za@~QxQjHhA^tFjB|R`H`VfHrj@|Mp^tGtEbA|Cn@b]lFb}@vOlk@~Jdd@~JxCdAxQzI|o@nX|CnB`MzHl`Adm@hf@h\\bAp@pJbHdEdDtTvQ~BfC~CzCpi@hl@jG|IvrAjlBzAlBbBjBhTxSjBdBj{@rs@tChCvHzG~ArAxCbCfCtBxApA|ClCpTnQfxAvkAzD`D~HpGh}AjpAvEzDf{AdnAnHjGjCrBvBtB`c@h^n`@da@fPpQpq@jx@lUvWnBzBbFzFpzAdbBl`@za@tXzZhHbIrJrKbLtMfPzQpIpJ`LjPlM|NnBxDhApErApD~AtCbK`MjGlGlBpB`D`FbA~AxH|PpKtPpG|PbSbl@tSvl@pI|TJrEfIhJ|AnC|D~GnWta@|HpLlDrLtDbAvK`QlGzKlBrD~HlPdD|H|BpFn[p{@`BrEnB`GzWxv@jG|QdChHzKh[nAlDp@`C`@dBtAnJvB`Nt@lE`ArG`DbTpAhIrOlbAdBfLPfAjG~a@bBxKlCfQ~@lGpD|UpCjRdFj\\hI|i@jCtPf@fDvIjk@hNl~@\\bCV`CLvB?hCCtBEhBSdBUdBi@lC{@nCiApCeA`BqA`BiAlAeBrAqAr@y@`@_Bj@iYrI[L_@PY^QXQd@Yt@O`BF`Bv@hFbAdN|D|TdF|\\BdCbAnFBVuCt@kJlDaAh@w@`A]x@Kj@GvAgEMsBKqLs@uCSaNo@gEWsD[oFg@oAIkOaAaa@iCkCQyIk@ee@wCoAIaXeBgBKc^}BsEy@MCq@K_BYkBUwDa@sEe@aRMuVO}LHsPrAiB^_VfFkB`@kWrFcD`AgBdAqEfCmAt@mKtGaHjE_OpIgPpI}J~D_@ScA]ci@yU{@_@{q@z]qBxC_Vp]sWb`@aBbCgBbV_NbM_ImZaKga@yHbMeAqCy@uBsAuCoBmCkCuBgDeAiDc@kCR_Dr@oJsTi@mAYkHoAuCyEyKqC|BqGnFq`Ahx@sa@j]kGfFsIhHsqAlgAmGbFuCdCcEnD{|@~t@k@d@gH`G{BjB{FzEam@hg@oK|IqHpI{B@gAl@aAf@}B`AuAf@wAPwAJ_CB_COqA}@uAq@yAe@{AY}AK_B?}AJ{AXyAd@wAp@qA|@cDp@}AZaBR}AJoBFsAE_BIq@OqAc@wAo@eDuCe[mQqH{Dmb@qTsKeFgM}FeToKch@_YeTaLeDcBok@qZyDqBiDiBqg@_XwEeCsUeLaNgHwLkGyFyC{CyAwp@o]eHoDuHwDgM{GmFuDqC}BmE_EoDcEgEaEiBqAgBg@oB[iBC_BVyA`@sGtCiEhBqCxAiA`@qDl@eCb@yb@xG{Fz@yB\\_C^}MtBcg@|HqEr@sFx@}m@hJsHhA}HjAon@jJgC^sAR{ATgC`@oRrCwZzE_En@oFv@sDl@cKn@wNTiLfAuaAvOae@~IoRtCg]lFg^nF}^~FwJmDgP~Cih@fHeL`DgE\\{@LyNrCuR~J}YvFeqBrYoH`A}El@}CXmDJqTeAmBA{BJoJdA{JpB{Ab@}Bx@kKfEu^zNs^zN_h@bUyInDsFxB{n@lXap@pXioBr|@qRvHgR~Ism@rXmHdD}\\dRmQvN_k@bm@eBT_CpAiRhOeB~@qQxS}DfEiRtQ_OjLiDp@mEm@kB}AqCoEuKaj@sFiWeAaE}AwEeDkJ}Occ@wNyWeS_|@sPyn@{\\y{AuHcd@sCoQiGad@iU_pBgYarCeD{^wBw[iJw|BEuDq@om@WmTAqj@t@g|@bAwnB~@_nBy@ggAw@wXgAqRkCw]mCiTaDmUoGe[wHcYeIsWmIaT}KaVkKeRoReZgOqRqg@ek@uy@ey@cYyTkWmQ_a@aUc`@sQsa@iNm^}JwW_Faa@mGqt@cLkb@uGmXcEwToDoNyBcFw@uKaBie@cEm`AcFoO{@gy@oDab@kC}k@sDwJi@mPy@wQ_AwZgBiw@oEkOYgr@x@q\\AuSOuFOqRuAiIq@oQyD{M}CkBu@s^wNqKiHqHyFwF_FeHoHuFqGkG{HoNeQqOcReRwUoq@_z@uq@wy@sXy[_Yq[{YoZcTeT{D{Dud@qb@c\\}XsQsNaKcIyUoQwJeH{PwL{ZuS_ReLkHqE{RkLyXyOqNwHcO{HenAao@_UoLkDeB_sFysCun@e\\_[gPurCkyAyqCwyAgrCexAcXkMkX}Leg@aT{j@wTkVaJobA_]ko@uRqWoHsWcH}X}GiXiGaR_Eg`@_I{`@yHkbAmQgcAwRy{L}rBsoCce@_tIuyA}dOuiCsiAsX{|@mZi_A}`@mfCm}AomByqAw`EomCcaEgpC}pAo|@}^uU_ZwPmc@yUo_@wQgc@yPgd@_P}c@oNccDcbA}_Bui@}oA}d@wz@yg@mm@kh@em@eq@kf@qu@m]ev@en@{aBwj@cfBem@grAkh@qaA{~@wjAin@sm@o\\aVokE{oC{xDuaCslAcy@c[qRis@}c@s~Ba~Aut@cm@ir@or@uk@ks@eh@{w@{N_V}IiRuTye@k[kt@sOyOo]qk@oNgWkIuS{UeVyiB}jB_QaQsa@ua@wdAkz@aVoQkzAs|@iQwImkA}m@qj@_Z_zDyrBcdBa~@m|@gk@gi@wb@a\\{W{o@us@uy@shAa}@uxAwUu`@yUcb@gtFysJgaGyjKqj@}}@sQy[qqBqiD{Ry[irAmoBw`CmdDegC}`Dst@oz@gu@qk@kq@y]wj@yUg~@}]ggCmgAgm@mXgi@}[wf@ac@cl@kl@efBisBql@mo@}t@_l@qy@kh@q~E_xCqRmLyf@kZkTsOch@oc@}XeYwn@{x@ezAssBw^yb@wReSs\\mYc]mWiu@cc@y_A}^yhA}U{gA}HohAu@ar@K}~@{GcdAeTc]qLm[cNsc@}WqXaUcbA}y@uw@ggAcj@cv@sKsPw_@ql@qv@{_AiTuTyi@ub@ix@oc@er@gW_e@_Ke\\aF}vAuOm_@cGy_@sIy^iKo]yL_m@w[wTiOe_@k[cTcUq\\cd@wm@uv@_y@sy@q_Aoo@w]ySsqA{s@cqCezAisCytAyfEekB{bI}wC_cDicAyzCcs@qcCoa@ufCaZ{aA}Hum@sDan@wCw^uA{uBwIy|@iE{cDgIs{@qFor@_Cel@iAc`@uAwe@_BgaAkDqiBcF_q@}BayByH_aAmDap@mDcbAgIkgAmPm_@_Iqh@{MghAy^EA{n@sWi}@ma@uWeLk`@qQs\\{NyMuF}KmEgi@}QuJuCu[eKifAiVsUwEgWwEgVeEw\\gG{n@uKig@}Js[iHk{@cVccAy]acAcg@s~@{i@gu@kg@}~@oy@kz@i{@cuEsbF}|AuwAotAkfA{eCi_BuoAuy@scAup@sr@yh@qu@mt@_aAy}@ey@kn@}u@wa@ku@wYa_AqRwo@wH{cAwEsjBiJwaA}M{u@{OcwCyu@}eBkd@}t@gYs|@wh@aw@sq@wp@}w@et@a}@ek@wi@}l@cd@sdAwi@eaAmYw^cH{IyAyg@yE{nC{NquBmNkrAoQmwAuXajAyXseBse@stAq`@_}@aTk}@cH_iAO{w@rFyaAhPi_Ap\\_r@r_@czAb{@_`Avc@eD|AicAb]ggAhWumA|Pu{BfLcuBrDu_ByA{tAsE}mAaNemAy`@_|@kd@eaAk}@}s@i`Aim@mmA_^{eA_Saw@yW_~AgV_iAeh@uyAe{@yfB{o@o{Awj@weBue@_jBak@o|AeZap@wWma@{kBuhCke@{u@kNsVue@__Ayu@{wAor@kcAc[}]a{@__A_}AqgBqvAqnBokAmlByr@ugAcu@c_Ak[a]yjAkiAkZkTo|AacAyx@uk@kv@al@}g@yc@af@oe@_b@}c@yHiIcQuRyFqGq}@elA{^ui@k[_f@yB_DoOaXmq@ybAuc@}f@gc@eb@uj@{b@qaBgeAarAgy@ehAi|@muAczAq|@imAs|@e~Amy@qjBms@msBs[{gAkm@ccBax@ofB_~@i}AguA_hBabBmpB}hAmuAe_AwzAww@exA}`BquD_~@_kB}s@wrAkyAosBkmBk}Bs{@qgAkpAstB_f@ybAqLeWeiA_hCq}BobGmkAemCgx@yzAi|@y}AinAyeBwwAulBcqCquCuiCe{BowC_oCk[w[etA}{Ak}AauBk_AmuA}wAqjC{cA_xBm`Am`Cut@iyBav@olCyOqq@mDgOeVydAgzAypH{z@utDy{@waDo]giAwt@_xB{S_k@ql@k{Asr@q`B}s@m{A{^cu@kU{b@mHyM_[ek@_n@ieAw|@iuAmnBuoCafCkyC}`A{bAwp@_p@yhAwcAqpB_`B{xBe}AyeCw{AabC}lAegCoeAm{FwtB}aBct@wuAm|@wDaC}oAikAgqAe_BacAyeBsl@qsAeu@qbCge@azBkdA}bHgk@u`CmOmc@w\\o|@qWui@sd@qv@mXu_@}d@sj@ua@y`@qa@_]so@{c@_qAop@}bB}u@wkCelAmtAun@kz@}_@}~@ua@}\\oOqzA{r@ef@_VwScLg]mQwZ_Rui@y\\og@y\\_ScNoU_Pgb@a]q`@g[uToRgo@_k@ew@kw@k]q^e_@kb@mq@sx@sm@_y@uT{Zmq@udA{^cm@oOyYg|@o}A_Xwi@wk@{nAm`@ubAw_@kbA{`@wkA{DqMuWe{@yRes@wh@ipBsp@okCqm@azBk]qfA{r@iwB}\\_gAuM{b@sJy\\wUy~@yf@iwBeYyuAw[ouAeUix@}Sko@cRec@kS_e@sd@iu@y`@kk@gg@il@ex@ws@m|@uo@{m@q[it@aVsd@}I_l@iMs~D_q@mxAs\\gi@iRmU_IuoAch@yYaOuNaIgn@k\\sx@qj@ms@kj@op@yl@er@ot@odAyjAkNkQmLoN}r@ay@klAykAgz@uq@{KaIwfAaq@mgAcn@mhAop@ufAys@srAucAq|@ww@siA}jAorCsiDeR}Tyj@oo@if@yg@slAokAifA}aA}y@op@oaAqo@sM_JgnB{kAosBilAgy@ci@shH{dFqdAcw@mdAep@km@k]sq@wZ{q@{Usr@aQaj@uJuo@kHe}Ek_@c_AyKybAyP_s@{PqgA}]uu@_[w}@wd@qkAsu@ss@qj@mt@{q@ul@mm@owBenCa~@spAcgBwdCaqAuaBacBwlB}eAilAsj@es@aa@ek@wl@g`AqjAsrB}i@gy@ub@_h@qd@mc@wp@_g@mr@__@m~@o\\ut@{Oqz@qH{n@_A{GKc}DrQwzAzCmlBWklB~@{rAtFmgApLiaAfSsc@lLoq@lUmuAfr@_`BbfAunEnyD}gA|y@ek@x\\we@vVy\\zNgO`Iem@pSy[`J{gAbUcs@fHg[jCihAjDybAw@_aAwGy`B{Ts~EagA{lA}RunAoKkkAuFaiBoEs}@uF}m@gHg`AiPo~@sUky@_YqgFi`CseBao@euA}]iwA{Wq{Dsn@cnAuW_fAo[kjCmaAg~Aei@gu@eSmbA}SitA_Reh@_Emp@qDimAc@mt@z@g~@xEs_AtIgz@nLqnAvWegDxaAcsBpj@c`Bh\\ylA|QyhApIgdAxFeaBbEskAa@ekA}DyeAwHkuAyPm~Bc]izB_VqbBcN_sAqHcoAwJ{}@kIy}@uK}qAeMe{@mCyk@Tkl@lBge@|D_v@hLkd@dJaw@jToi@lTaWdLw\\pEmJlBqTrAkUgBiSgHkNeKiL}NyJoM{|@odC{k@u|AwNow@aEac@w@ep@sBe_C`@shBpEgcAbPc_Cl`@a~Dv@aItOy`AbTsgAdvJwh]hV}hAbTiqAxN{}AjE_lAa@wiBkGk}Aoz@qhKmBwcAhCofAjTk~Ah~@agEf~Jq`e@`SgiAdJm~@vBsv@{@_v@{X_`JmCmoAhB{dBb^a~Il@mu@eCcpAyTkgBqG}f@gFc]wAcK{[kwB}`@emCoEoZ_QskAy\\}hBk{BkyI}Lsi@cH_c@eCiXsAaRu@oTUuf@n@e]`Fop@x[ctCzBwVjCy\\bB{j@\\a^u@}d@gDkl@aEm`@gUypAmjAscFiXkuAuKaoAaBw_Bc@stAyBwo@cFqh@yGke@{K_h@gPqh@wR_f@kgAczBoc@yz@kbBmaDs\\mq@idEsdIau@ykAcQiUsd@_n@{nDkwDk[ua@wXke@q]mx@cRgo@_Ngo@o~AuqJsZy~A}g@}`Ccw@o`DmP{y@cHce@sEie@gDup@qAq{@xAm`AzEgcAhTm`DxHiiAlTm_D|Bi]jByY`AgUb@sMToPFeRI_Q_@iJg@{IwCo[iDuT{CkR_EgQyE{PgGcQsFcO}Rad@sd@{dAsMwb@sIac@sFsg@aCao@f@cf@D{DrLwiB`b@coFfe@}dGlL_gArOigAbXmyAboCg}M`QgeA~G}o@vEcp@`Csl@x@yl@[}t@{D{nAesA{aVwI}}A{DynBtAcxB|@_cArH}eBnC_o@bKm`CpUioFxMuxB~PquB|w@u|H`MekA~Eeg@`C{Wt@mL|@yQp@kRf@{Kd@aQJuICaLKmOWwMq@sN_AqMkA{K_c@kdDiIyu@iIecA}Eoj@qEyl@mAyQw@eMs@}M_@_M_@{NSmJK{OAuRDwKNgMb@}Pd@cMv@gNr@yKvAoPpAcLnCmRpDoUhDoQxEwUnDiOlFkTjJy]tGqU~Vi}@n[sfAv_@orArIiZtSct@bKs^pJ}^lRcz@rCwOxCyRtCgTpBiPrBgTxAwQbAyNt@eM`@mKNuH@cRKw_@UyYo@{Vu@{WmBq^uDgm@uCe^uHcy@qm@coE{AiJiCmQmEs\\wCaWmC{UqDq]}CgZ}Bq_@cAuT_AsW_@}VCkPFmTR}i@H{r@?kUq@i`@y@aT_BaR}B_TaC}QeFe]cCiP}BgSkBeP]eDqRa_BwGkk@uCoUaGkb@gGcc@cDwScEsViDwOuEqRuFqQcJcWgVal@}IwSqLs[uHqScKsZ{IsX_G}RqF{RcHeWsFkSkEkRoDwQaDkRgCsQyByTeDk`@qHkz@wK_tAuSc}Am\\ivAqbA_zC_a@kbBeVw~Agk@yuE{H}p@oCcXyA_P_BaUgAwRs@uRa@cPOqWHgURiRj@mRj@mO`A{PnAoRdBaSfBmQtBgPzB}NtDoTjDiP|F}V~CiMbIqXd]wcAndA_tDbf@}`Bdb@cgBpVwvAngAwrGzRy{AxNeiBp@w\\bDu`B~AenILg`Cc@ymAgCg|AcIgrDeCutAzAklAfHahAdc@{xCtMecAvLkmAx\\_bFjMeuAxU}|AtiC_{LvZkdBtM{bAlI_y@zFos@`Hcu@hH{n@dDgVxIqd@x_AyrFjBiOnA_Lp@gIb@wG\\oHj@oL`@kJPwMD{JAyFCsGGoGOwFi@iM{@uNeA{LeAsHsDgWeCoMcDeN{DyNoDcL_EgLcFiL_EcIaGwK_EgHiD_GuEaH}Q}WoOcSu_@gg@wr@i~@wy@wfAga@gi@wYsa@qTq]ke@wv@oGiLgHsMsQ}\\{Uif@s|@miBueByoD_fBqpDwcCwfF{F}MaGiOkFcPwEcPkEaPmEyQyB{KeAsF{@sEiB{K_CmQsB_RaBqQo@}Iu@cMaAeP}@iU_aAkj[oDa}A^cyAxKi{ArWgvAbYe|@bQgd@zUel@`wHkaOvfDqxGv`@{eAlTelAxIqsA}AozA}LeoAuFqj@kNktA_PczAyNkvAoNiqAsNquAeDg]aBoRmAwQg@kI_@iK[yKOeJCkCGoFEyKFsKLwJ`@wM\\sKz@wOv@_Kp@eI`AiJv@sHz@kHnAmKdCcRzl@}nErBsNtCcTdAqJfAeKbAkMx@iM\\aF^mH`@mLH}FHeGLuJBaLAqKWuNUiLo]qmLaOiaFwAmn@Rag@lDakAdJirDqAa{AcJ{cAyXwqAme@oiA}o@a`AcfE_}Ems@_~@ag@yy@_a@_nAsUosAoD{hBrG_wAbDuu@fHk_BvN}zCbAaWj@kQ^eONqIH}JBcJAsIE}KQcK_@uL{@wQk@wIa@_Gu@uHu@cH_AwIiBeNmBmLgAwGkCqMkAqGqByIwIy^aMoh@gO}l@iGkWiUk_A_Muf@aa@kaBgEqQmOom@_Y_mAiNuu@}CqSyCyTeB}OkB}UoAoPiA}SaAsTi@wO]}LYePG}QC}K@qKJeRPoONoL?Y\\kOj@mRt\\ohLxA{d@fAa]~@sUv@uN`AyPt@qK~@cKpAyJpB}OvBoOtAuIpB}K~CwO~D{Q~EaR~EmQtGoTxLe^rG{RdJoXdKk[zIuXrHmWrIoZvGiWvEuSbDuNzD_RxCwOzBwLzAcJrAuIdBkL~AsKpCeSbDqXxB}RpBiSpByU~AaUjAeSrBs`@|@{W~@m[PuNJmJ_@_w@?w_@IoUMuN[{K{@o^m@oMi@sLo@qLoAeRoBiXmAqO{AePeCcT}BwRaCoP{A_LqCcS_D{QqC}O{CyPoDcRsG_\\cF_ViLsi@mK}g@wS}bAeVqiAwQa{@gIg`@{EaUqx@ayDiEsSqEoTiFeWkEsTcGm[sDoR{DqSaEeVg_@}vB}Xw~Am[ygBsq@ozD{Oa~@wd@_kCiQ_cAwEoWuCqOwCkPqCuNmFmXkCmLkEeR}CkLqEiPmF_RsF}PiFwO{FwOeGmOiFmMmIcRkIaQkIgPqGsLiGmKaJsOuFmIwIeM{GyJsFmH_FsGsMwOsv@s|@ca@{d@_PmQyS{Uqr@uw@ge@}h@m\\s_@}[g_@_PiRuPkSuQ_U{OaSkOaScOqRcOiSwNiSwKmO}QyWwc@up@imAalBsa@_o@ySy[oPmW{Vi`@qSw[}K{PaSuZwVi`@mTe]_MqS{DyG}Se_@mNgX_MsWwGeOeKkV_FaMgGsPiGmPiHoT{FcRqGkTiEaPkDwMgDcNkE_RkHe]sHqa@aGs_@yEy\\iEg^kDi]mBaUgByV_BuVkAeR}@uUwAc^o@iSSmMEiPJiQBsXD{SV{ZXqTdAug@pA}b@h@{Tb@c\\h@kZTwTLuRAyTSeTQkJ]_Ks@_Pm@mO{@uPoAmQwB{SwBeSaCcPkEkU}DkSsDiP{EcRqJq\\_Rsl@}Sin@mJsYmGgTyDaNkEmP{DaQiEaS{CmQmB_LiC{QqBwPqA_NsAcRu@wMm@uLk@ePc@wOWeOm@}b@w@ik@m@y_@_@wQg@aRa@yLq@oMs@cMeA_T}AcTuByQkBkP{BiQsCuO}CoNoE{QoEoOyHkVoEaNyEqMgFaNaFcL}EgJ}Mm[kR}c@kMq[wLk[aIqUgGoSuIm[aHw[yE{VeDcTuCiTcBoQiCeXmAePeCin@{@ch@@sz@~BkaCUil@_B_e@yCok@uJyx@mHid@yJie@g`@gmAem@u{Ac`@wu@}Qam@uNge@eIkYmHsYaFkW{Lor@kFy[mFia@cF}b@sGep@iE{i@_Hg~@mEcr@}OogB{Gcj@{Fuc@qGsc@qGw`@aJ_g@gJ{d@qTs_AiPov@oe@{yAwJwZyx@omCie@wmBei@whCq]ubC}Tk`CyLo{BeGyiC^{uB\\gd@r@ya@~@mc@lAw`@nBoh@jDqq@dDyg@~Cea@zDcd@fKodAtHeq@h{BcrRHs@lH}q@~Daf@fAyQj@mNd@wM^mOR{[Oa[i@uUgAqYcBmU_BkPuDsZiDcUsEsVqHy[yGcV_IsU_J}U{JqUyKcToZeg@g]_f@arBqoCwv@mdAc[{b@wVw]iVc_@c_@_r@wQub@_W{p@af@m|AkzCetKiJi^gGcYqDsRcDcTkC}SkBiRyAwRcAmSq@qQ[aRKkTNyS^uSl@{RfAcSfBsVvCmXdH}e@rLwo@dk@wuCfIyc@vFq_@xDm\\lC}ZrA}Wx@qVZ}YIo]u@{[y@iToAuRsBeW{BeSkCmReFgYmIg_@}K}]oKkZ_Nu\\oNa[ex@{`Bgu@m_BkK{U_JqTkIoTeJuXiJs[qHaZsHc]_Gi[sEqZ{Dg[cDk\\iCs[wDqo@wCuk@s@qMyAsZ]gHa@eHk@aIm@sIm@eIo@yHo@_Iw@{Iq@{G{@cIaAcIoA}JgAwHiAqHeAgHyAkIsA}HyA{HyAmHcB}HcBoH_BwGqB}HgBiHmB_HuBgHyBqHuB}G}BmH}B{G{BuGcCiH_CwGcCyGaGkP}F_PuCyHaC}GyBiGaC_HyBeGeCiH{BaHwBwG{BcHwBaHaCsHqB_HuBqHoB_HkBiHoB_IcBcH_BgH_BuH_B{HyAyHwAmHsAyHoAoHoA{HiA}HeAkHeAqI_A}HwAwMmDm`@iCe`@aBe_@{@c[k@q^C{[JaXb@sYbAe]`Bu]nB{ZpCq[te@wrD~LsdAlJudA`Dmj@jBce@pBc|@|AwhApBkpAvJezGjAgv@r@um@Zi]Lm]I_UWoRa@wSu@eScAaSmBeZiBqTcCaUkDiZsEa[oGy_@{Mqw@iNix@mQicAgIoe@aQ}aAgL}p@kOsz@wG_\\yC_NmFiTuEuPuFcQ_GwQwFcOyFuNiDwHsKcU}GaN{HoNwH}LyIyMkIqLuJeMmJ_L_K}KcLoL_LiKoHgGaJkHwHgG{ViQq^mVcaH{pEqeDs{B}~@_}@iWa^u\\eo@ae@sxAcd@}tCsLyr@sQas@eTkm@kXyh@sSa\\cXi]eSoSyc@{]yaAiu@u~@{w@yd@mi@}P{NeQaTs_@gc@kaBolBmHiIej@ik@q{@yj@waA}_@o[uIa_@{DuRw@wlAkB_`BoBcvA{Aqv@oE_V}CaVuEsToFgr@eXat@kd@{X_VaTwUil@sw@aeB}uC{Xad@}t@_eAii@of@eDgDaP{Ma~@}m@kfBijAwh@g^ypBsqA}i@ma@o_DgxBa~@{n@k{@_k@q^sOu_@uPo\\mKe_@iF{p@oGo`@uD{gCsTe|@aHcsAcM_k@iI_b@yJu`A{c@u_Bk}@yiAyo@qo@c_@ouA}u@sc@_Tgd@{PqlA{]{gAqTaaAuFefAoBqlC`Fsd@X{GDwX[cPcAsP{AuQgC_PcCoL{BqLsCiI{BiHoBiLiD_N{EeMaFoMmF}M}GaYsOgMcI_OaK}O{L}KiJkLsKmJmJgKuK_KsLuHeJuKqNqI_Ms_Au|Aac@wr@es@k`AuZa\\uSiU_r@ko@{{@qn@yc@oWcj@mXst@_YgBq@ew@uU}eAwQ_lAeLy~CwGm{@oGeb@_G_g@wKgx@wUy|@aa@mt@se@ylCawBa`Agi@_kAab@{u@kPov@kIsbA}BgtLpPodAiC}z@mJofAqTct@aWor@q\\ij@_^}RiO{c@m^qh@ok@yLiOsJuMcIaLQWcIsLaKiPqLuS_NoWeIqOmEcKiHkPaGaOkGiPwGwQ_F}OuIwY{HwYeDuNaFaUsDwQoGa]kM_u@gO_`A{jB_eL{DiU_FcYgDoQeDcQcEcQ{EmQgB{FeCeHoCmHcCgGgC_GeCuFiD}G{CiF}CmFcDgFeDaFcEsFgIaKaEsEgEiE_FuEmDcDoEuDqFaE_LoH_FwCkKqFuG{CiFsBuE_BuFiBmFyAeFmAoEaAaF}@uF_AqFs@gFc@wFe@oF[}FSoFSwFGoGIoGAgN?eMAwMAuNEuNM_HK_EMgOc@mNs@uMaAcNsAwNeBcNkBsM}BgMyBiHwAwTmE{UyEiM}BcM_CyHeAiM_By`AcD}gBpPwx@tDsi@_Dwe@qOkW{KkUcPuS}QwRmV{MgTmOy[aLo^_Ju_@wDgWyBmTkCgk@p@cv@~F{p@bFeWtZ}eBvDwYhE{d@nDu}@\\}g@uAmo@iB_\\sF{l@cPsdAeMkd@aKg[gb@k_AuZah@oc@we@qSgT{`@{Ui[cRaUgIye@oOy}@qOkr@c@mjBbGkb@pBk`AzAoILycAqBshAeKeeAmRs`A{Xk_Aw`@gcAcj@elC}`Bsv@ia@{u@m\\{y@eYehEecAsxAsf@i{@gb@ou@wf@q_@yYwh@cf@_g@ae@u{Ei{EgwBmyB_nA}zAsj@olAk\\yrAwMex@oGyk@cQwzBcwAwkSuF_s@sHiu@_Jsr@uJcl@eZqxA{nMs_d@{h@{}Aqv@auAws@y}@cQaTkc@ig@ojKatL}i@sp@_g@yt@wc@q{@}]ybAyUs}@cOk{@qLkeAiKklBqLgjBeSgnBqZogBkd@yhBwj@y}AuUwg@qHeO{pAqtCoMgYa|AueD{{@snBsq@{qAmx@}kAcw@s_AiuCuiCecA}eAyr@_cAqs@moAgo@goAyr@igAa{@ocA{}@iw@ECypBmlAmfA}o@g_Aky@uu@g{@mn@q_Acl@ylAklBuoEsrBsuE}s@ecBaYck@qO_ZgSk]wFcKwPmY_c@kr@wRoYid@un@yQgViUgYwZe^yLoNko@wt@c`Awz@ojAq`AinA_y@ejA_t@gkAqm@onAqh@qz@w\\ck@mSo_Bqp@}l@eXio@_ZwCsAirBieAwmAyw@qgCcaBahAss@kxAibAis@yd@oqBqrAcs@ii@ag@ec@wh@wd@_^a[wu@{w@er@kw@umBqcCq~@ohA_bA}nAkqComD{}Cm{DsvAseB{}GyqIcc@od@meA_fAcj@gf@ac@}_@clAa|@meFmcDygAcy@y{@kw@idAssAe`Au|Amj@olAgc@ckAia@{sA{[auA_jAg`GsI_]o`@}sAg\\yu@__@wp@cj@or@gf@{h@mv@cn@uL_Hcp@i\\_oBir@ulBos@uZgLozAyj@uxHysC}qDmsAa~EiiBceGe`Cm{HukDskAab@mnAeZunA_RusGmx@gqBaT}q@yJ}}@oOkc@{HwKwBsxBy_@qkCge@_oBi]efB_[apAkW}j@_O}e@kPul@wVyZsOcy@og@y|@_l@miH}{Ewa@{S_j@uTuXoIqDiA}f@yJga@yFcs@}DuuAo@ooCn@m{CAeOe@yIYeZ{BoVeDa`@_Io_@qMkv@gb@{k@}a@ge@}g@mNmRik@_~@_s@clAmr@cbAex@wv@ciAgv@cbLguFix@sc@wiSqeMauA}n@adAkViiAgMqqEgTmdDgRgiAs@agAdDwfAvHgdAhO}aArTshFz_B}cAzRqlAlH_dWnj@{rH~PuTjBkx@|G_lAzNyEv@{TxCc\\fFkcCtb@oqEf{@scApO{fArNqjAdImeLjh@cwAdKu}AxW_eAl[yxE|mB_}@jXacAzW}kAfLkdA?kiAgJ{fGwl@eeAyE{aAjBuqAnQwaBx`@icBfa@ihArUgxAxWge@bFc{@|IkuBjUg|AxO{eCnSkNlA{wFzk@cnAdPajA|Y{~@j`@E@wNfHmSlLo[jSc`GjtDuaAvd@ibAb^{cAvVqgAtOocPfyAsoA`Va{Afh@opFfpCa_@pPs\\`KgZzFeYlByS@mOo@we@eHyYaI}`@{Tc]{W_`AiaA}|Ae}AoEyD{a@ab@c_AqhAuSkb@qOc_@uPqk@ofAweEuRwn@sSkd@yYia@}VyV{MkJmVcN}QwGeLiDqV}DaSmA{Ue@{UdBkRrBmU~FeT|I{Q`KyPvLyd@~e@qLlRaSt\\_n@tpA{\\rr@cKpQ_I|MeKxNoNvPoO|N}MzJ_RtKkVzJ_Bl@uPlD_Q|C{Ov@eTRuLOeMmAyZeFwSyH_OwGkMiHiCsB}_@c^yX_]qOgUi_@ke@a\\_ZaEyCqYqQiImDmJwD}~@w]ixAo`@aLgCcQiCcWwDe^oCmdAwHg}@eKcd@gHqTmEuDs@uB_@kcB}IgMJyMrAiNxD_LhEkLdGwdTviJkwAf_As^xTe`@nRgOrFsZ|Huc@rGqv@jEwaBjDuh@hBw\\lCcgAdXmrE~yA_RzEgu@xQ}w@~I}i@nBqVF}Wo@uhAoEgcAcGum@_GaJkAyRqCa~@aPu`@mKcb@iJmTiFg|Aq[y`@{Emf@wC{aAnJmlA|[udEboAgvAnc@gaAl^idAlg@{bHl}Dyc@jRk_@pL{_@|Hmi@`Gaf@tA{`@WefAuBgyByFmdDwH_aC_GalAkEis@qGuY}Dql@{Kc_@}J{h@oO{WgK{bFytBk}Aok@uOwFyo@oUu}@mV{v@}LsJyAu`AmGofAb@gfA|Iug@~IuKjBoPvC}aAd`@}~@te@}^jVyUhR}VrSiVdUu_@~_@me@rg@gq@t}@{BbD}qBniD}[v`@mT`Uu]rXs^jSa_@xPe`@|Lk`@nFm`@~D_fAPkb@qFsa@qJg}@e^{cAun@s_Aui@{PuFwPqFmKiDcUoHcdA}IcdAdC}dAfScdArd@ux@po@qs@ns@yw@~n@o{@lb@igA~Ukc@hBad@H{`A_FolAsMkeA{FidAu@{iAfCgbBtIwgAb@idAyCwdA_Mgc@_HmK_CqMcDcRcFuR}FaW_JeNkFa[yMwOwHeRyJod@kXci@}^mKqIqNiLmKeJsYmXaUmUuZyYcUyUic@{b@gYaVkk@{c@go@gb@wkAap@oiAee@cnA}_@}^iLki@sPwXwI}aAwe@y`Aes@{Q}Qod@od@kq@u{@el@{kAsf@izAiZouAoS_vAit@g`I{Pe|AmVs}AgYgaBe[_xA{\\ktAqSir@ggAkbDgb@ggAgn@{rA}m@ylAmn@ieAcv@qfAys@}`Amx@cdAgyAgcBeXa[sr@ix@slIgfJ_u@}y@_r@}_AmOkWkuAmiCaj@qsAsc@cuAmuB}vHwuA}fFotAufFk_@{qAah@gxAym@asAsw@ouAo|@soAs{@qaAo|TavTuaAynA_|@izAcjAsbD{nDsnMue@qrAgo@{qAeq@g`Acx@}|@uz@}r@go@u^qGsDgbA}^{fAs[}gAiM}~@}DoKe@whAnGwUzBcm@|F{@H}bFrp@m_AhJgkAtBq~@iCklAkOqdAeWi@MqdAic@wlA{v@glAmkAgw@whAms@qzA_HuOaXcr@qWw_AyNmw@cIy`@og@{mC_Ica@mOuo@wSgx@wU{y@o}DqvL_p@egBk|@khBw{EafIsFqJg_AokBou@{`Bcr@e~Ai{FooNwMi\\kWkr@o`AorCqo@s{Bae@oeBsh@kwAeq@euA_c@co@af@_n@yi@qh@oi@qc@iq@qb@}m@g[qp@iVox@{SeaAsOqgEy_@chBeRes@iLakC_e@}eAkVav@yRsbAsYylAc_@}p@uV_bA_b@gNoH}GuCog@aWerEenB}bCa|@afD{cAex@uYciAud@u~@kc@}nAym@ajAyo@{CeBinAqu@qlD{|Bi_EijCco@}\\_q@mTw{@gNsdAoCuxAeBah@m@wt@cDgp@aIeg@mKub@oRcb@uWwb@y`@s[y^yUy]{Tee@uWgo@oh@ibBik@efBs[}y@i]cw@ga@ov@ib@kp@ee@am@aw@aw@it@gj@{t@{b@ky@{]_{@gXaaA}Pa_Dwe@ml@kP{k@mUui@yX{y@ai@cnAit@cn@yX}p@{TohCit@}p@{Tyo@uWgo@w\\_m@ea@ej@oc@uw@sr@wj@gf@_m@}b@ml@s[ar@qVws@kPim@kFk^eAi[MayA]ig@}BkZyCa\\oIa_@iJml@uWuo@cb@ka@oa@kX_]kZwe@wZkp@ce@unAcYas@oZwq@e\\cm@{d@mo@qg@wh@qk@gd@yPuLa[mSsr@yX}lC}q@_dCis@sk@uRqYmNaUuMga@wVuYmRwn@q^{i@gX]Qgt@_Vmu@aRsr@{Ka{@{FseDc@}~@sDky@{Ksr@{Ogf@oQ{k@}Ymg@w\\{yAueAok@oYuUkKwToIoc@{M{NqDaKoB}IsAcW{DuN}A{NkAcUiA{MWeMCcJCiQNwKJo_@J_TNaPLuM?mOGsNY_O[cOo@gNi@yIq@oR_B}OwAmOgB}QoCcPoCePyCaNwC_NuCgMkDeN}DgN{DsUuHeXoKaS_IqSkJuSqK_cDkiBqKeFmL{F_QsHkTgJcVyIqQ}GcOyEqP{E_SoF_RqE{UqF}LkC_~@uQqAY{Z_HkReEcSmFwOiE}NmE{GaCoMwEqKuDuHuC{LcF}aAid@q_A{k@cw@_m@ov@mu@ejCs|Cyo@qh@go@y]_dAa[ceAwSyx@kY{k@w\\mu@ai@cfGc|Dkp@oZun@eSikAkYge@mM{KsEmIaEuK{FuFkDuIgFoJ}GiRkOmLaL_JeJcKoLYa@wL}OoKgOwGqJqKsPgFcIgC}DuMcTgIuMkU}^m`@oi@_[c[w\\{Tem@cYwRiKsM{FwMaF_JcDuL}DsPaFaPcE{W}FgJsBqSeEcIaBeMeC}WsFo[oHqlC}r@kY}Ise@oOqrAkc@{[_Lwr@uUae@qPwIoDcn@oYmb@wYsd@c`@ga@we@c\\{b@w\\ai@eLsPgQyUi]ai@gf@qm@ar@s{@es@q{@oJqLerAauAwe@wc@qoB{iBo_Aiz@ql@gb@wp@a\\ao@uUwx@qN_}@aGgnEcHyi@cCku@mGwlAqOif@mJopAiXyj@sLax@yOik@oGin@qBaGSci@j@_n@hG_n@~NkSvFceBrk@{l@zLm^lG}g@zFwj@P}g@kBen@iF_m@sI_m@yJit@sIot@sFyp@aAau@bDan@|Ewn@rMeV`Gc^bJih@hNax@fR_QlByk@zCmh@A{c@}Bsm@mHsz@yV}h@qWga@qXuTwQk`@gb@q_@qg@m\\}j@u|@gfByc@_{@ek@_gAwT_q@qRex@cNs_AsFef@_U_qEcb@amJcEcz@{Hc|@wL{w@yRo{@oXow@eXat@kZqv@cUmz@eQe_AwHqy@kDcd@ee@wkGwJ_|@}M_{@oPor@eT_v@aj@alBe]wpA_Ryz@uKmx@iHsy@odBo~\\a@yHkHky@sMqy@sQar@gWst@kYwm@ukIo}N_c@}p@}a@gn@}{BuoDe\\mo@oYom@}Wso@qVyx@gRm}@oSe_AqWedAwYcs@q_@ip@s_@{c@w_@y_@scBuzAsd@wg@g_@uj@}[wq@wUyw@cQq~@gIg_AmCscAmGepRcC{}@mEs`AkIk`AgHuu@{lAu|IwGqv@kCey@^}`AtEiaApaA_iKvHg|@rEg_An@a{@gAacAsJknAgQ_dAaPqx@}xDg}P_Lks@{H_w@kF}}@y@o_@k@ka@h@q}@fDugAlNmnD|JyiCdAuZjI{wB`J_bCfpA}c[bBi_A`Ayy@}Cq`A_Jsx@}jAu~IwEev@wDqw@O{w@rB{w@zMkxClN{|CzDobApFwqA^{bAiCa_AyF}gAmHmlAsI{nAmM_aBaHuaAoIg_AyN}s@{Qcr@mWas@oZes@qYqp@iwCy{GeY_t@aQ{s@}Oc|@kHmu@_D_}@_Ao|@hBe`AjDws@t`BepPzP_cCfFmt@xj@esI`IajAvFkcAzFg|@|I}}@jMwnApJov@d\\y}BvkByhMhLa{@jHy~@nEmcAhAmkAgJyxH{A_iBK}YUyaE\\}aG|@uzD_Agn@}@qUqAuUsEwg@oJ{r@gNyp@eViu@oaA_mCqTev@aOm{@}Fwy@sBe|@{@ycBxAkjDg@u_AqDcx@}Lqv@_Lyk@q_CwpHuSk{@sImk@wHyk@kq@{|ImJqoAwJcnAyEeeAg@u_ApY}}Jc@ueAyCww@iMy|@_Neq@os@kkCcP_t@wLabAsDmaAUgf@XkZ`Fm_AjIefAxPstB|@_w@c@k~@{Dik@aE{b@aMyz@yMol@gl@_sBsV_w@kPat@gK{p@gJay@k_AexRof@wvJ{e@u|Jij@okJq[stG_KmnCqBer@wBwaAm@oY[_e@Kqh@X{c@ZoWv@mi@x@{f@dAa^pBqi@b@aHlGesAjFkt@fHys@lFwh@vFoe@pKky@x_AshFtcB{eInj@ciCpS{{@lEoStKu^nO{b@fSsh@jJ}RpV}d@xLkTde@kr@dc@}h@d`@s_@`u@gm@r_@_Wtq@a\\x[gMxT{HfHeCd`@gLnp@wLno@}IlmAeNtu@}Kz[iFtZsGnw@{Vjm@kW~t@_d@pf@o_@dXaVdVcTpJuKxZq]tf@sn@lf@kv@f`@at@|[uv@Pc@hDgIdVus@zT{v@z[{vAnP{hAZuDdKgoA~C{j@tD}zAlAmfB~BurAd@{XdCu|@nBcd@vBkZhDwg@pFqp@jG{g@`Le{@hKcq@`Lkr@d@}BbMom@jNcn@lR_s@tUiv@``@ueApYar@p_@{}@rS{h@jc@{iAn^aoAlNoo@tL}i@|Ei[pIkr@vHocAnCgv@jA_e@`@akA?_MqAe|D_B{tDkAeoD_AskCcA}_Cw@i}Bu@scCq@gqA_@cpA]_lAs@qmAu@wlBqAoeAcBahA}Bc~@{C}dAwNg_D_MafCiSaeEgNkoCkRm{DwHueBcCmp@mByq@i@aLmEstBuFchC}NarGoJ_nE}A{_Ac@ix@Bkk@n@qt@zBygAx@y]rDmzAn@kl@Kyu@qAor@wDot@{Cg]aF_d@wGgc@oNou@_P_q@yRmr@}Z}eAiU}{@{N}n@wHia@}Fs_@{Gmk@gEmd@yCil@mBiq@M}r@`Byx@~Bgd@jEao@jIex@~T}dBfXmsBv^mqCn\\cmCdKg~@vKqgAlJwoATwCfHgnAdGa~ApCirAdAueBi@miA_BgnAkCaaAqFgvAgKwiBoMorBaf@_dHaMukBsOyuBe[avEe`@otFoCcd@yo@klJm^aoFsNs`CkE_bA{Bgn@oBss@gEwiBcAa}A[k~A~@y|DnAqfEl@kiBTkj@|A_n@|@q^vCec@rC{]rCeZ~Eu^bHq`@pLuk@~L{d@|FaR~IyYtw@q_CxiAkgDrPse@lJcTnZmq@`Vma@zQ}XnNuQv[i_@vYc\\|\\y^bYk[|Ym^zYmb@pUi_@~Uoe@tRqc@zQwf@dLy`@lLce@lKye@jKwk@tl@mdEto@wqE`cBulLp@yEpz@_aG|y@a|F|v@uqFb[awBz[y|BlNegA|Ci^~Bud@zAsh@d@uj@}@ao@yCws@oB}Y_DuZwH{m@aL{p@ik@ajDu`@y`Cqn@sqDc@cCal@mlDk_AcsFe|@ckFm[gjB_Lsl@yM{o@uIu_@kDqMeMoe@oRsn@gRcn@sj@{}AyaBsvEkyByhGqb@ikA_T}f@qTqe@mO_ZuMeW}|A{kCysAq|BiaAmbBk_Ac`B}Rg[cR_YoMiO{M_PwSgSeLwJkXsSca@sVkTiKch@eScb@aMmp@sQwa@}HqYsEy`@cGi\\_Es[_Cc[sB}`@iBs`@c@cZ[sVPk[l@mVv@}x@`FmaBdLmfBvLoSxAk^hCw}@rGa[hB}YXsZK_UeAuZgC__@kFc\\uHaUoGqS_IsPyGeU{KyQuKgh@_^}]iYe[cXm_@__@aXsYyXo\\{ToYgXa`@yWaa@iW}b@yT{a@cP}\\wPq^mXip@iOeb@aO_d@i]}iAsDuM{Tuw@sSeo@kPqb@gMmY_Rq\\iVc^qWyZkUaTwSkQcUuNy[kQ{e@mRib@mNcw@gUeXyJgUeJk_@}QoZmRi[iUqXqVm`@gb@}^cf@aXec@kMoVcN{X_Tuh@_Rwj@qPgp@aI{_@eH}b@cJos@kY_uCgTwtBeJa|@{CsX}Dw[wGi^}Hu`@gMwf@oPcg@}Mw^oZap@kn@kiAmfA{oBe|C_xFaq@{mAu`@st@}]gs@kReb@sPk]iSee@iWip@gXcs@uf@qxAgb@}sAka@}oAwMi^oOy`@aQu^kRg^oOuW_OqUcR}Woc@mi@cj@kl@gZm\\}Wo[eWu]wT{]mMyU{KyTeLeVqMy[{Pge@oO_j@oN{j@oKki@aKgs@{Hat@aJqcAsIi|@eIai@{Jsf@uKid@aJgZgOsb@sRgd@kMcWmOmXmNuToO{S}MwPaOkP{RwRsUiS_}@uq@_oAw`A_oA_aAs_A_u@soFyaEou@}h@wq@gb@uWkOmZgPiu@e_@yZwNa\\wMcn@aVag@yPai@gPas@gR}lAeXcjAeUaqA}V}~@qSkc@qLeo@gR_m@kSce@mQyg@{TofAgi@c]_RetCepB{bAex@u`C{lBofAu{@}fAi|@mp@kh@wq@kl@kX{VaUmVeQcSmRqViTyYcR{XoXac@wTkc@cQ}\\wVgk@{]y`AgP}h@uLad@{Jeb@uJye@wLmq@}Fyb@mG{f@aI}x@yFwo@kUyeCaSmtBmEgg@kJgq@mLyl@gMeg@uJ_\\yMs_@sO{_@kS}a@iVya@ec@ul@_\\e^oYsWw`@{Y_\\kR_a@}RupA}j@{zCcsA}oDi~AkqDe_Bqs@_\\_a@cS_YgQ}ZwUyZyYuNwN_RmU_[qc@{_@am@ioB_zCm_IqxLu~ByoDwHcMexDo~FwwE}iHewEyiHiqEsaHksCemEe^wj@{`@ms@mUef@sU_m@yR}j@qSgt@oHq[uHw]cOoz@kPcmAyOuuAwKez@sK_n@oMyq@cQoq@_Xa{@mOia@eSie@wS_c@sXsh@uq@qjA}p@glAyr@msA{xDqbImB_E{aEutIunCuzFgrC{`G}yBgvEoaAasBaZqo@sZeu@wSqi@sUgu@qVo|@wLgg@qB}IeNsr@yMox@cKos@yFof@oIy`A_Faq@eN{rBoNsjByIoaAeMwiA}Do[yK_y@oPubA_Jwh@iLml@uKyg@eW_hAuYchAgOyg@mPkh@{T}q@}Vmr@kSai@wTgi@_gAqhCgx@{lBgi@kvAqb@knA{Vkw@eW}{@{YehAgVwcAiSa`AiUimAeW}}AsOegAgL{~@uOwxAyIg_Au`@irEyS{nBoH}r@aKow@{J_r@uNg}@y\\mmBkVkhAk[arA_\\wlAsf@{bBiPse@_c@iqAmx@wbCiZ{`AuFwQmPyi@qQcp@cReu@iT_|@{R_~@q[geBqNkz@{OaiAiQyvA_LkbAsJi_A{Ie{@mP}{AoPawAmRotA}QaiAaXguAsS}}@sPms@wWq_Aq`@ipA}Tqo@}Q{g@}Tgk@qTyh@oUwg@_h@efAii@yaAw`@sq@sd@it@euAmvBq^qk@k_@ao@qj@icAcY{j@sYmm@aj@esAue@urAk]egA_Omg@mOmm@cRqt@yQ{x@iUymA_Na}@uPclAaM{iAgMatAwWehDoYipDkUe{C}c@q_Gie@grG_Nk|ByImnCwDkcAwA}iAsBapCNukBlA_qBhF}zC~@wg@pC_fBpBikBo@mqA?O{CetAcGgmAwFax@eHcu@}Iaw@eFy_@uNs|@uWeqAm\\uuAuHa[cn@uaCsm@ubCyz@ifDubAm|D}{@cmDwx@u{Cc]emAa`@qpAqLe_@cNoa@q\\m_AeTsl@u`@oaA{d@{iA}[mr@okCuwFmWgj@ibA_vBa|BkzEmlDmoH_dCeiFaHqOad@{~@se@_gA_c@kfAce@ykAgn@qeBsh@_aBco@uxB}nAcjE}qAwqE{`Dw{Ki_DywKqpAgnEgnAoiE{Va{@cScw@}H}_@gMot@cLy|@UaBeG_x@mDst@mBa`AOy}@Imi@uAex@a@oXgBkb@uEml@sHkp@yPiaAkLce@gQcp@kEoMoLw[oUmi@wSo`@aSo[yUc^iv@iaAcVg\\ySwZgi@e}@yd@q}@yXwq@y]odA{XccA}YmrAgx@anDgc@{mBww@yjDucBe}GybBsxG_eBi|GiT{{@}`AsyD}wA_xFao@mfCwCoLe{Bk{IeeBs}Gw|AohGoE{PuqCg|Kwu@ymCs{@}nCg]caA}e@ooAyfAusCKWc^u~@{\\w|@wmAgbDw`@yiA{]wfAyWm}@ut@qkCqYclAk\\gwAmr@meDyzAiiHq|AknHk{DibRuiHgi]g{@ecEocAq~Eq~Bo|Kwg@caCoy@g|DwhA_qF{D}QyOcu@ufAkhFuoA_dGoc@uuBod@qyBsQo{@}Ni}@{Gye@}Fci@aFec@qC_b@}Ee}@iC_p@_@}]g@{f@FykAdA{pBPi\\Goy@_B}z@yCqx@}@iOiDqk@cHot@wImu@kAkHeT{qA}Sg_AsMkh@qOcj@{a@kmAmVwj@qRsa@s\\gp@gR_ZiSs[wc@{o@{k@qp@yu@i{@iZq]s\\cb@}MkRoVg_@_`@gp@eZqk@mQqa@wPe`@_Na_@yUqu@cFePiMwe@kf@ekBk|By~Ig}BeaJu|Bc_Ji|B_aJcX}dAm`A}yDub@mrBkg@woCwm@ytD{f@uyCij@sfDqbB{eKiQeeAc]ctBsy@eaFysBmhMaAcGoJis@oGyt@s@cIuD_f@uBwh@{Bc|@a@m_@?ia@F{q@zBgs@hAs_@nHovApGgrAvAqh@LaFXkc@]m}@kA_m@aBi]{Fax@gHut@yLsz@{Hsa@eMkk@}Ool@gVwt@_\\ww@wZwm@sWsc@mXka@cY{^{h@oj@qtAspAyNqMgb@c`@kLoKoY_Xe_@i]we@id@_a@{d@me@{o@c`@cq@c]os@qRye@sTsp@_Nod@{Nip@eLum@eIii@kI}u@uDsf@_Dii@gB_h@Yul@Lgy@tA{n@nBwj@vCar@fCal@lBgn@`Bym@^}k@Cod@Ukd@cAwq@mAke@iCif@{Bwb@yEgl@_Geo@_Jor@sLex@mGs[iH__@eMck@gN}i@aTqs@aTsm@_LuZ}Soh@wXml@_]io@qwA{fCkQg]{R}`@mSqc@ySif@a_@ybAy]{gAwWidA}AaIqXmpAwUo{AsHaj@_Hqm@kKevAqFgfAgCcsADgqA`Asp@lAq_@vEqfArB{[bJydApN_jAlJst@nGwe@pFac@xDil@zAue@Jy`@BwGiAii@aBy_@uC}^eFyc@oGw`@sFmXmTkr@qPqa@}S{c@sUq]ac@{k@mFsFsuA}~Aw_@k`@abAe{@o`@_Xmd@_[}MwHue@sV_^kPmq@wWeu@iXi{@u[ml@gVaU_LsWiNaa@kVuYcSeUuQgG_F}^u[a~@az@yaAuz@ub@g[og@{\\}h@sZgh@wWmg@cVahCclAmwDofB{LiFeeAsf@wRoJgbAqj@k]qVsb@}^sd@wf@aUgXqXi_@mY{c@_p@ybAm_Ae{AcSgYyQaW{SkXeh@wk@wN{Mk^m[cf@q^od@i[_u@qa@gz@ie@wZeS{YkUmi@kh@yF{GcYm^qe@ku@a_@ww@iZgv@uO{j@_DaNaT}bAcXggBs\\qyBkY{lByo@qkEqHij@gGim@kEgk@yGacA}CgmA}B}oAm@mSa@qRe@yVaGueDy@oa@cAgh@cAms@a@_w@l@w|@`A}d@~C}gApRivDbHmuAnFciApBoq@xAkt@FcUWchAiAqmA_HmhHY}M_Fs`CoCmgAkCy}@kOclFK{DmH_eC}Fk`B{G_oAeKsnAsEuc@uGyf@{Fmd@gKkn@}N}w@w@sDg_@ccBqYmiAg[uoAcv@wzCeiBejHqgBggHqe@mjB}Ret@uWw|@q[yaA_Wkv@m]m|@k[{u@ae@waAap@ujAai@y|@yp@s~@iMuQkt@{z@}{@i~@yp@mm@sjAg_AaqA{}@odBcgAazA}_Ao|A}bAur@qh@sv@yo@iq@en@en@go@ao@os@k`AwmAge@uo@ef@us@}zAu`Can@c`Auh@_x@ke@{p@wXc^e\\qa@g_@ub@ka@oc@wy@ww@oy@ss@kh@s`@ku@ah@{l@c_@kaAyj@_aAuh@ux@ic@oy@od@ci@_[_d@gXe`@uVs^cWkb@e[_d@{]ea@a^am@qj@ek@el@us@sy@yn@kx@{p@_`Aom@{`AyuA{aCo}@a~AoJkQsTq]ee@ku@kT{[iWu^}h@}p@qs@kw@kb@i`@ma@s^mc@{^cf@y]}aAst@alA}{@wx@ao@ka@_\\cVySge@}b@{a@ua@gg@ki@iRsTue@wm@ij@ay@gTi^iRm\\kTga@yTod@kX_m@kNm]wPqc@cMy]wPwg@sMmc@gSyt@{Owo@_Rey@g\\uaB}]knB}`@w|Bib@y{BkXcpAgMai@kUq|@yT{u@{Ssn@gT}j@mSmd@yQa`@mO{YsSs^wSc\\eToZeUuYao@st@o\\a[uYiVwl@kd@io@c`@yXeNuWyLgp@}Vyd@qNsg@wMam@yMajAgRsdBcTgoAiMmlAyL{Fk@uDc@m|@gK}eAaPma@oH{m@mNot@aSei@qQon@iVso@sZyu@sa@gy@sh@qx@mm@qjAa`AyiAodAchCg~BycAoz@ia@m\\k`@eYoc@mZ{q@wb@qd@aVs]qQc\\{N}]eNwk@gS}p@_Ro`@cJmf@eI}]sFuEs@e^cEgZkCi`@aCk_@}Acr@uA{w@Yqb@N}i@h@gv@pBcu@|B{oAnFsnArEynBlGenBxCmv@Dyk@m@ie@y@upA_Fwg@wDge@kEsy@kKap@aLwn@mMiw@mUaXaJys@qYwo@a[uZuPuV_OuZmRe\\cUqeA_|@s~@{_AsZy]ib@ij@kc@co@sb@es@cWwd@mWag@u\\ms@kO}\\e[mu@__@qcA}a@wmA{p@uzBmq@_dC{f@{mBsd@skBag@epBg_@}vAuj@gmBw[u`A}Two@i[ux@wYwq@yq@ixAi\\cm@mXyg@oe@uy@k~@uzA}}@wvAmw@wpAch@oz@yc@uw@gb@kv@md@waAcSud@{Tii@{Vov@gRql@sPim@mMsh@yNyp@wKmj@aIqf@iNs`AmIes@}Hmz@oGi}@wFmaAgDi_AqB{{@aC{|@}AkvAeDs~CaAiy@{@os@{@eo@mBwt@kGocBoEw{@gFkv@wKiuA{Iwz@mJgw@iUcjBuMwbAiGyc@_c@iaDsLogAqKcdAwNodBgIk`Bi@uNcBmc@iCipAw@oz@Sk`AhBatB~BqvAnDqcBfDgbBlDubBdAwcAn@ojAUgx@y@c|@yA{z@uDu_AgGq|@uIkaAgJeu@cLwv@gN_t@sPyw@sLyc@sO{i@qR_l@sQeg@eQob@qS}d@eVef@sU}b@g`@cn@gX}`@u[sb@kk@gr@ia@{d@ql@{m@ub@kc@s`@s^{iAgeAkcAaeAwd@}f@yj@ap@sMcPmFaImWy_@{e@uu@ah@w}@_m@khAgm@egAwX}e@e\\ah@eZid@{Y{`@wb@aj@k\\{_@si@cl@}w@mv@{mAufA}gAmaAwk@mh@eg@wf@oe@ge@}]{_@mk@er@gS{V{Ug[kXq]mg@at@mZse@ka@up@iSu^eRm\\yk@kiAuIyPgF}J}DcIiZwo@yjAeeC{xAm_DiuAoyCwyBmzEyn@atA{|@amBwk@}nAey@{fBo_@_v@m^cr@el@scA_Yce@mYw`@uRoXoOsRw]}`@sa@}b@c`@i_@ed@c`@uRgP}l@mb@mUsOyXuOa]_RuWiNur@kZkq@gV{u@qV}kAg\\yoAk\\ypAq]qh@wN{v@wRyiCgq@oiA}[}mAea@wUkJmr@k[}g@iYyi@_\\yZ}SmS}Nuv@uo@yXqVcWoWam@gq@w\\uc@_Zm`@e^si@gV_]sUo`@}~@u~Ao|@m{A}b@}q@ux@kmAsx@ydAks@ez@wm@}p@ykAsmAgtFgzFeiCcnC_lAsmAwa@{c@g^}`@cUgWcW}YgW}\\u^{f@gc@wq@qZmi@gd@i}@kQi`@sZku@s_@qeAek@{hB_v@skCud@eyA}Sil@mRag@gQyb@oUgg@sYqm@kT}_@}Ysf@wPoVyJsNs^ig@ic@ei@s[k^qd@uf@wmCglCuq@wv@c]yb@eLmOqU_]}^gl@k_@mq@{b@sz@ij@mgAi^cs@_i@s~@qc@yq@{TsZkV_[{b@qh@e_@g_@aWmWiWqUyvBofBy_Aix@wYyWae@ic@qj@em@s_@se@kd@cj@e^mg@_f@gu@ckAclBa[ye@iY}d@yp@_aAig@op@gi@cp@in@}r@{x@{x@u_Ak}@wgD{|Cw}AuwAstAioA__DiuCapA{jAek@ef@}h@_d@}r@sd@eq@g_@kReJqVeKa[qM{c@aPk^{LwzAq`@qVmGsy@eSo_AeVysAm^o[oKgXkJwc@iSuUgMcOwJwZuS_^aX_YsWwUiVqeAqjA}aA}gA}{AmcB_s@{w@ej@ap@oXe^o^mg@e\\{i@kXsf@qWah@k\\uw@kVqo@mR_j@{Nqf@aMwc@oMik@{Nys@uVoxAsWkjBqGkm@cb@qkCsPyaA{Oeu@sRmv@cVuw@}Ke]qHuRmY_u@{Rsa@mZil@aW}b@aZyd@we@{n@oRsVmRsSe[m[cf@qb@mXkTqb@{Zyb@{XwbB{cAikEkfCymBugAk~Aq~@ir@yd@qt@sk@sy@ks@sq@{v@_\\o`@qVy\\e^eh@yVk`@mv@msAin@}kAic@k|@im@ymA{o@{nAeq@akA}b@cp@qz@gjAg}@{`Amo@yk@su@am@{c@wYiD{Bqj@e\\we@iW{l@gWgh@yRoc@iNsp@{Qgv@yPu|Bg^en@{IqQgCge@yGcNoByAUkt@mLso@oLucAwUi`@_LsQeF{o@{SgT}Hsa@cP}w@u\\sw@ia@_q@y^al@{^}q@qe@op@mf@ccCgrB{mA}cAy_@i\\egD{qCkB}A}mDuxCg{CehC__BqsAuaB{uAweByvAwr@yi@ow@wl@sx@ki@_x@cg@a~@qg@w_Aag@_nAsj@ixAym@k`Bkm@cbBon@ooAqf@szAyn@wf@uTsh@oW_f@{Wse@mWun@i`@yf@q[cc@gZ_g@y]{q@wi@{|@iv@qKaKaa@u_@{DyD}a@ua@atAc{AqQeS{|@}gA_c@ql@iZma@oc@mm@qeAe_B_|@}sA}t@alA}nCmpEqmAgrBiKkQ{`FehIikDyyF{mAkrBenAmsBgzBerDo{BarD{r@{dAor@_bAc@o@un@sx@oi@qo@iVkXyXgYqb@cb@}e@qb@ok@ud@kWoR{`@uWgh@o\\eY{Oct@k^qm@}War@yVy^sMa_@cKgf@_MibAmTcbAcSuIyAme@kKcTcE{PaDcu@iSqt@{Xm]gPgf@aW{WsP}e@e]aJqGyVwT}YmXaT_UwNeQuV_Z{]ue@a`AivAg`AmxAefA}~Asv@kjAoE{GgjCm|DotAorBio@oaA_[{g@{_DsgGsiAozBwdA{qB{fJmpQ{oDacH{wAurCgc@{z@whCk`Fi`@qx@y]cv@{\\uz@sRai@}Wa{@oNyf@_[umAud@wqB{YuqAc[}sAcIy^oe@ksBm\\exAiOyn@iMma@gSch@{Rob@gVub@_NoSqTqYoRqSkVwU_XaR}RwLgVmLsWiJsYmHgOoCwYiDwYmB_Qy@we@}BmvAmH_e@kCeLe@mxAsHgOk@{`BeIm_@oBiG]oc@_CmDQmEU}fAiF}fBgJwz@cE}TcB}W_CaYyEee@cM}UwI}WeMkTqLyR{MoQeNef@_b@AAmi@ad@aOaMmWqUsTmRiRkS}FyGiFmH{Via@}HoNaJsRoHwPuIqUuOch@{Hs`@_Iid@u_@axCaFoq@_GklAqCoq@_Bcy@u@wo@Qaw@\\sa@pAguArCobAjDaw@tMs|AvLulA`d@y{Cfi@_aCxXsaAfb@oeA~Qqb@~Qo\\tTm_@n]ia@^c@py@u_AxVm\\rQ}ZfM{WfOm_@~IqYpHkZrHi_@bEoX~Fcj@`Eqi@bDwu@xCww@ZwqAe@il@{Amk@uE_eA}IenAkEi`@cY}qCkWu|BkWkvBwX_|BuXgwBAE{CaWwk@czEeXgyB}Xc|BcRwlAiTk_AsUmw@eWqt@ks@_mB_q@mfB{r@ikBqKwZeDmJsBiFoYit@ui@ycB{bC}iIyiAszDgsEetOazBctHehA}tDc@{AwQqn@mF}QuqAgkE{qAcoEgm@_pB_wA}vEyZg|@mTmg@mTie@sf@kx@gbBk_CkhBefCydEi~FiD{E{mGe}IkpIgrLkpBgqCq{@mlAo{@qmAwwBuzCuvAapB{uCybEmEmFe`@oi@kjAeaBySa[qj@}{@af@wy@}dBayCw|BoyDqBgD_CyDu_CixDkz@ouA_lBc|Civ@moA}t@giA}r@s~@mjAktAajBswBoXs[q`@uf@{Z}`@i[{d@o[gi@eVac@wSwa@cUmf@gVih@ql@yoAe^cs@uM_VeSg\\oTi]eP}T}\\gb@eUcYkc@kf@sdAuiAau@}x@wMyN_\\g^aYkZcV{S_RsNsQ{K_UwM{V_Ko\\gJuVmGer@qPaWmGaHwBaMmE{PgH}OkIeYoQ_U{RyLkLaMgO{RgXeTy]oH}OyDmI}Nu[eSgc@ad@ebAcJoQqLyU}OiYw|BcbE{n@anAyD{Hai@_fAyh@ueA}w@u|AylBifDq|AyjCenAguBinA_vB{EkIoJiP}`@mr@c`@}v@a_@qt@q\\mr@al@{vAgPkb@aKwW}|AccEiz@wvB_Tuj@kc@{jAwOca@sLmZqNk[}Xuh@qV{_@qYw^kTkUkTaT{ZsUg_@}WuRuJkQoHqaA}Z{_AcN_k@eCeWoAoZaCoZqDg[gGe^eJsVaJkGmCoHoCaEyBkU}Lg\\_TiNiKaOcMcQ_PcRaS}NaQym@ey@ir@wcAm^wl@ao@oiA_Vie@}g@qgAig@{eAqI_QgNgTeTw[aN{P_SgT_ReRkOsMyZaVyM}HyFgDe[oP}c@sQatBcr@u|@s^qb@gR}W{Mcz@yd@ae@o[ma@a^}a@mf@qL{OsQqXSYy`@an@md@mq@wBmCsTqX{K{NoU_WoV_W{VqV}g@mc@eKyIac@k[kYuQwWyOwb@mUqj@aWoSeI}a@aOa]eKoZyHs`@wHo`@kEyPcA}R{@eS_@a\\Fs[p@{o@|AqSJcM[_Ye@gNw@{OwAeNsBaMsBmH_BqX_HsWgIiPkGsR{I_[ePkRyLuiA_y@oa@{XglAcv@s_@mSiVsL_LsEky@wVqf@_J}f@wFk\\yAu^i@}j@jA_m@`Gi^dGee@dLcl@fPi|@`Xk_@hMwVrHeQzEuN~BoRhDmLjAeYvAoY\\_Ws@qTmBwZmEqZmH_WeIkV{KmSeLsSyLmWgTcWkWcUwXuSa\\uNiWiKuT{Mo]_K}Z{Jg`@gJqc@oFu`@{Da`@iCk^yAs_@i@kf@d@gi@rBwf@lDuf@zGem@xGop@bEqi@bCwn@^c]X{Zi@}y@_Dis@G}AuFot@{I{i@yI{g@mPct@iLs`@{Ly]}Oc_@wOi]mW{c@sVia@yt@qnAiZcj@w[ym@g]at@}j@cpAur@oiB}V_o@kYcm@iT}_@ySi\\sTyYaLmNcGwGg^k^o`@c[g`@mXwX}Nuz@s`@_|@ia@y_@_TyO}IoZoSeQqLmV_Rud@o_@aa@m^w\\y[yGoFk_@k^cm@gl@oUkU{h@oj@wc@if@kg@wj@ia@ae@ei@io@wi@wq@qZka@q[gc@iVa^iTs\\{Uu_@uXee@oLaS_Wee@kR}^w\\mp@kP}[}PqZqQwX_Q}UwTgWwS_TeXuUuOkLyNiJaSmLwS_K}LcFcRkHuYyMcZgPaKsGuKoHcN_KuVkToWgWoNiO_NuO{Xy[cl@{p@sm@or@wp@su@u]ca@cHwHuu@i{@gu@o{@eaA}fA{g@cl@yMkOib@ge@yb@uf@u[__@mr@mw@caA_hAibAmiAg_AsfAgw@y{@oYi\\uZi]il@mq@o_@ib@wUkXac@gf@yPuQqi@yo@s[uc@uR{[uSu`@eR{b@aOg_@kLc^aRqn@iOoh@mOyh@s^unA_Nyd@yJmZaG_PsIwSiRua@qVsd@}NsUsQiW}PsSuUeX{^y`@yo@es@yT{VmWiXyiAgnAwWk[iLqOkLqQ}Xeb@}[kk@{r@_mAcx@otAcg@c|@ia@}s@et@{mAia@mr@u]wn@gXqf@_Ugc@uNeXkUcf@iV}d@{Usf@_Tgd@ya@s~@qh@qkAaZcq@aSwd@oYao@wc@wbAm`@}}@}Z_v@eZss@c]yy@i^k}@}j@atA_c@efAot@ogBkp@m_Bup@_`Bea@yaA}`@q`AgW}n@cUij@yc@ufAiUgi@}Og]mRm_@sO_YoQkYaNeR_NgQmTgWqQ}Q_ScRse@ka@{OqM}RgPw_@i[kj@ad@{e@u`@se@a`@ux@yp@ii@oc@cyAimAqwAgkAqdBewAch@cb@cDkCs_@{Zs`A_w@en@og@cFcEku@um@i|@ks@cy@}p@qn@sg@ip@ki@uv@sn@gaAow@q^yY_g@s_@uo@of@am@{d@yr@wh@um@ie@sk@wd@us@uk@{v@_m@maAku@so@kf@whAiz@yUuRwI{HiKmKwJqLcVy[qv@agAqt@aeA}{@cnAubA}vAs{@cnA}r@abAq|@ynAij@{v@yi@iw@we@is@of@iu@seAw_Bwz@uqAgx@gnAup@ybAim@ev@k\\a_@ka@ea@kAiA}FoF}^_]c^gXmc@i]qh@}`@{e@i_@km@ie@eg@m_@sRoNqOkJk\\ePuv@_^ic@sSkk@}VwT_I}XwHeZwGa\\iH{e@mK{n@_M{n@eMuh@}Jmt@}N}a@eIwOcD{VyG}UyImM_GgQaJk_@oSkY{PwpAks@kh@_ZqYoPgi@{Z}`@qUq`@cUmY}Pk`@}T}`@yUk`@kU_f@gYyu@cc@ka@sU_a@kVgq@_`@in@c_@}r@}b@qRoL_bAsm@sz@sh@yz@yh@oVoOOIaa@aWyg@k\\ip@qa@ma@{Wol@e_@_p@eb@u[sSiXgQse@e[kd@iZe|AwbAqhAgu@onAsx@qpAcz@}rA{{@cYcRk[qRkyBowA}xB{uAwEeCiAq@sAs@oGkDmHoDkMsF}OyFiVuGy]mHi[_GkSmFkOwEwPuHyPkJmNaKgLgKyNkNoHoJqLuPyK_R_JmQgGmN{CkIkFmPmDuLgG}UcFuTkFuUmEmQiEaOyDmLkHqPcK_UsKsQeL}PcTeWqN_N{ToPsJeGuPiI_QqH{YwJc[mJ}b@_NeXyJsXaNmQyJsq@qa@sq@y`@ki@s[qd@mXiLaHgIyEeRwKej@uZka@oTaa@aTiYcOuXyN_YyNyYcO{OsIaZyOcFmCoa@oUyWaP}XiOcQwH}PkGaPuDwQyCgMyAaNu@aRAiP\\gJZwZtBuXhBiTdAwUl@}OXkPJmRMgQo@_SyAoQsB{QmCuQiDiQsE{P_F{QmGiPaH_PuH{X{OcW}PmIsGaP_NuK_KsNuN}EqF_NsOm[{_@mc@uh@o[s`@a\\o`@og@en@mg@mm@aa@mf@eb@yg@oWk[oEmFmRkUeUsXcNcOuG}GqKgJ}PwMeWgRcPaMeG}EqMiLyJkKyIuKoImLuJ}OgHwN{JgUmHmSsHmU}C}K{Xa}@mG}OsHgPmFeK{IaOuLsPyM}OsMsMeO{L}OwKoPcJuX}Leb@mQkYsMsOaJsPuKqOsKkOsNcPgP_T{Vwo@gv@kg@sl@}i@wo@k\\u^eS{PyQsNwO_LaMoIgNaImImEsUqLu[kNeQgHiYiL{XcLgZyLICuYoLq\\}M_FyB_a@aPyYyLmc@mQkYqL{a@sPyj@iUaZoLwk@wUik@wUsl@gVqQiHwX{Kuj@gUc[iMe^{N_K_E_XqK}b@}Pw\\gNc^yN}_@oOif@iT_k@gTkx@cYgUcGs]oIqVwEmVyEoZiHg\\qJkT_IyMgGkNaG{OmI}OyJqV_Q_P}LkOuMoNgNiPaQyQ}SeKwMiOcT{KeQwKqReKmRiJkReJoRgJ{SuOo]mP}]cVad@iL{QsMiR_QuUmNuPuOcQgPaPwRsPsMsKuTqO_UeN}V{MgTwJuQ_H}QkG}RwFiSwEgQgDiT{CcUkCa[sCif@mE_S{BuWqDkUaFgQkE{OsEwT{HcVoJ_ToKiNkHkFoCwXySoRkNcYaVa^a`@oKiMqMoPaKkPyJqNyOwW{O_Z{GoOwFqOaMa[gLc]sPuh@}Rco@{S}m@aFoNeFwNaJ}TcHaPaRoa@mXoi@wTkc@cYgi@a_@}s@sWoj@uR{c@}N{^aNe^yKk\\sIyWmLc`@wOcj@{Kka@aOsl@wSqy@o_@mzA}X_hAu_@ctAqSer@{U_w@eX_z@sOkd@eOec@aM_]sY_w@o[_x@uRye@{Zis@i^iw@oPo]ur@qvA{Vud@eN{UiPuXwZye@mXs^gWgZgNePaSoSwOeOiWgUwWcTo[kUuX}QoYaPod@_U{[kN_X_Kkt@aTss@_Puu@mJ}f@gEmi@yBqn@kBmKe@c{@}DoWoBgVkBq[iD{W}Dij@uJaU}EkX}Ge[mJ{QaGaZgLySoImYsMm]cR_YePcVoOaQyLcTaPgJcHuSeQwTiSuRaRcQ_R{M{N}MaPa\\{a@}SgZqR{Y}R{[cRc\\_Qy\\kVoh@{Tki@uSij@uMi`@gMab@gKs^{L{e@{Ocn@wN{n@_XkiAcQqs@gKca@cEiOkE_PyO_h@yGySmLs\\kKiXaOk^q]qu@mSk^{Tq`@s_@}i@aXy^g`@gd@i]w^i^{]_ViUkNwMuJkJoFgFe^k]cc@}c@m[g_@aT}WmTq[}Rq[sJ_RwJwRaIyQuKyW{H_TgMe`@iHwV{G_XuHo]kCoNcEsVyDaXcEm\\eCcXmBoUyBo\\mAmYgAw^eAyh@s@cd@g@{o@[gr@y@k`Am@{p@mAet@kAed@{Aag@mBme@oCmh@uC_f@{Ccb@gGit@eGim@cDiY_Mu`A_J_m@iHuc@gUaoAqp@}sCiSyx@_Ve~@}Scz@uOom@eXyeAaa@e~AgM}f@mTyz@}Tm|@iW_cAqNoj@c@cB_Pkn@mOyl@gT{y@kOkl@oKgb@yXifAgb@kbB_I{ZkQiq@cU{w@sUsv@sQkm@mPck@mTax@sHgYqN{h@gRqs@oMaf@wLad@}Rwt@kSyu@}L}d@uOgl@iSeu@cMge@iOek@kPan@u[_mAeQsn@iPmk@s]}jAwQ{l@kRqo@uYoaAmRko@yZibAqKw[uPmf@kGyQ{]q}@sU_j@_]ay@}Skg@{[uv@c`@o_Akk@ctA{m@gyAep@i~AaWim@}[uv@{Qmc@gXgo@i\\ow@ca@iaAk]gy@mSae@cO{[_Sia@mXmj@sNsZgXsm@gQmb@}Oy`@uYwu@qQef@wPwb@yO}_@_Rka@wUog@mVqg@oLeUqMsVkLyRc^_i@}U{]yh@}v@aZec@ib@un@o]ch@_V_^}^}i@{]qh@s^qi@iXca@{OyU{PiX{KoSwLqV{EiKqD}HqHgQiGaPaImU{@cCkH}UgM_c@{Kia@yH{WaNeg@oLgc@uFsV}EkUuEyWgDeTaDwVyDc\\aDc\\sA{RmBm\\{@iWcA}_@{JsjEqHg_Dg@uS}@a`@Y{LgCgeAiBkv@qD{_BgA}f@cAy_@[{MwBk|@mAqm@yAmk@aBcm@qCek@aGqm@mEs[gCcPuFeZoK{d@u@eDi`@u_Bei@kyBsY_mAmWseAoOao@sIw]Mk@_XugA}`@uaBoWmfAkYukA_Z}mA}Qyu@mWcfAs`@eaBgWeeAmEyQw`@}aBqBiHkHo[gHc\\kGa[aGy[_Gk]{G}c@uHcl@sKs{@{Jov@wMceAsJsv@}`@w_D{MgeA{OynAiKyy@eJwu@aLi|@{LkaAcEeZmIai@oEyUgIk]mJgZwHqS_IqQgKySyKyReNcU_P}VmVy_@oO}UqNgS{OaToImKaEgFyIeJaSmSal@wj@s\\y[uYiXqQaQ_NuNqKaM_HsJeNcTgVua@eVgb@}U_b@k\\el@{Xef@{Sk_@gZkh@sZai@gPoYmIcOeNgVwKcS}KsTwKmTqJeTmJ_TmHwQcNq^cJqWeHaU_IaXaIkY{Smv@iOej@}Lee@kW{_AgVc}@gSyu@}Oel@aScu@mM}d@kIeW}J}VcG}MkG_MyHkNeMyRqKwNaJkKkNeOoXaXkViUm_@}]yg@_f@ga@u_@e^y\\{b@ea@w\\m[{NqNsP_QwN{PmNoRyLsRqLkSsR_^sYui@}Sq`@oUuc@kRc`@sQq_@wG_OkGmM}JmSw_@mx@{Qm`@}v@gaByTog@sWuk@aT}e@}MwZmH{OuRqc@sRmb@oHaP{LyUMWePeYe]}i@cPuV}OmVqJaNaPcVa\\_c@cX}]i^{e@w\\ud@cPmSgViXuNoNuP}NeLiIyLmHiRqJsRoJa[aM}[mNyTaJmYwLoTcJcZ_Mma@wPma@iP{d@iPuNiEeTkFqPcDeO}Bg[sCs^eA_UYmj@@ag@Fsl@Xk`A^}kAXgqAv@gd@WoTc@wT}@eUwBoLyA{M{B_SmEgPeE_NyEyPoGoRaJeReKgRwLkOkLqJuHeNcMePePaT_XmPkUgNiT}MwUeN}VsOaYyLiTwLiQsKyNsKuKsGaGwQiOaa@q[wPaNsPkO_O}O{FkHaKsNmHwLkJePuI}QoF_MaHyQqK_]cPel@uh@slBwo@e_CsXkbAwd@{bBsW__A_Wu~@yU_{@_Wa~@aU_y@iu@wmCmi@unBiRuq@{V}}@cY{cAgYedAsV_}@}Um{@gRqq@qHeW}GoTwFkPkIkTuJ_UqKiVaKcUqKcVwJiVqIuUgI{W}HuXqGkWaG}YaFsXeEkYyDiZaGag@sGkg@wEaZqF}X{FaXwH{XoIiWqPub@kKaUgKwS}IiP}OqW{MeSyNyR{NqQ{L_N{OaPgQuPuWoVmT_SyTaUcOiQmMuQsMkTuHeNkI}P{GoPqFqOcIeXoFmSmEwSwCyP{B}PoBmQwEoe@iEue@sI}bAgEsg@aDi]mD}X_EyWcKkg@mMmb@aLi[sH_QyEoJmFgJmLaScNkSuM{QgMmQwNcTaMqSmKaTaKeVkJ{VqIyVaZm{@e\\eaAq_@_iAoqBgcGm[k_Ae_@ugAe^meA{\\{bAmVmt@}Xqy@iPuf@qN_b@sS{m@gi@{~Au^}fAiZ{|@}]ieAsb@yoAghDe_KkeAs~C_Tem@uf@yqAy[_{@q`@adAol@{|Aia@{eA_g@kpAiPi_@iLiVyF}KcKeS}CiFmNaVsTu]sL_RoIuK{LuPcGiHcOiQgVmXyNeOoPwOoZyW{a@s\\sb@i\\{j@ic@ea@c\\gPsNqPqOkOkOeH{H_GmGeMsNwLeOkFcGgFkHqHqJoKsOmMmRoGkKqKiQ_NqVoPo[sMmYkF_LmDgIwHiRgL_ZaOeb@gIeXuLib@_M}d@sGeXmXoiAcQ}s@gSiz@oQau@uLsc@eNee@}Muc@yKo[yLk]gPkc@iQuc@_Pm_@uJuTsPe^oKeTkMyVkOyYwLsS{R}\\sKqQgNyS}LmRsu@_eAyJkMoUsXw^ua@iVcWu_@o_@yg@af@eh@if@ah@mf@q\\m[_SeRyN_Ne`@g^cRwP}UwSiXgS}PwLuPsKyc@yUeQiIMG}YuM{}@sa@oVcLkOsH}OeIsO_J}OkJoP}JkOiKeGmD}GgF_W{QcPkMsNuLeN}LaOcNiN{MmNmNmN{NgMmNgUqWuMyPqMoPcLmOyR{XqQmXwMsTsKoQiKaR_Rk]uPa]{JeT}IeSeMyYkLcZgJuVgLc\\_O{b@_HyTsFgSaMyd@aJq^uHq\\mH{\\qKug@wLsh@iJy`@eGmWsKeb@iKe`@}HgY_L_`@mYa`AoMu`@_Mg_@aN}_@uXqu@sMq]yOk`@aUki@uOq_@ePg]mUyg@oKuTcVge@kd@q|@e_@at@qZil@k]yp@e]gp@sg@gbAmj@cfASa@q[{m@me@w}@uVmf@qWcg@sd@i}@sWog@kRy^yQu\\mSs]oOyViPqV}L_QsT_ZuSoXiOmRoR}Vkd@ul@q^md@ol@}v@im@mw@i_@ie@i_A_mAs~@alAml@{v@o`AymAsZg`@ml@sv@s`AcnAcl@av@uAeBoNiQmWg]_TkXkLeOg]oc@u\\_c@kUsYi[s`@uNoQoR{UyWa\\e\\ia@ua@qg@kYo^cWwZ{|CswDky@icAwb@yh@ec@ai@yj@_r@c\\k_@eUmU_VeT{GeF{FiEwOyKuOaKyOqIwOgIiPiHoa@sO{QiFiP_E{ZaG_[aEuZ{C_[eC}YeCcRmBgQyBsQyCwPoD}PcEeQgFsQsG}OkGwOmHwPoIeXcP{OyKuMsJ{N{LyNiMmFqFeN{NeM}NwLkOsLkP{IyMwNoUyKuRwWie@iXef@sUya@og@m}@}^qp@sRq]w^yo@wj@ebAgXif@gaAoeBs]on@{b@mv@yWef@eLaS}b@iv@y~@eaBsUcb@cz@}zAqd@wx@w]wn@}LsTcKwQu|AuoCehAqpBcc@cw@_b@_u@gTo`@sWid@gp@qlAkUa`@}o@{jAuc@ex@ke@sz@wd@wx@g^yo@mf@_~@cUyc@gRm_@oQs_@g[cp@}Ou\\ag@}dA}]}t@mQi_@oXel@iYkm@{GsNyWcj@kg@weA{V_i@cV_h@wVki@w[gr@ea@g|@e\\is@eKmTmJiSi_@_y@c`@yy@kw@ycB{Xgm@gfAq~BwUyf@_Q{]{JuQwLeTy`@eo@mS}YcTwXeTsVcPoQgNoNgUyTkVuTcv@{s@qXoXmQqRaO_QuMmPwL_PmQmWyJuN{Rc[gYih@iQe^mPk^}No_@aKoW{Kq\\aKm[qIuX_Loc@mK}d@{FyX}E_X{EoXiEcXqGef@mG_m@cFak@oBe[iBiZmBqc@mD}x@{Am`@oB_d@uBub@{E}q@kCmY{D}^yHum@{H{f@yL{q@aNoo@eR{y@oRm{@s[cwAy\\i{A}WakAwk@_iC}UueA}e@qwBuVshAc^i~AwIg`@yEeV{Mst@_FsZqFw^qLs_AyJsdAiBqVeDsd@qD}n@{As]mBor@yAqm@gAwYgB__@gCm_@aFug@mCkTmJmn@wGc]_EuP}FoVyKa`@kI}WaIeToJ_WwKqUiNaZ_W_d@_N_T{PiXeMwS_LoQ}I{OeKmSsNsZoJgUkJqVaIwUwGaUqHcXkIy]mGg[yGia@aGib@wFwd@cKoz@wK}|@{Kg~@mNykAqP{{AkK_dAeHiq@mHgn@mLe|@wNc_AuGo_@kOsx@eEkSkQgz@_Kgc@oGaXcIuZwI{\\wJk]wLua@eSym@y~@anCw`@giAod@wqAss@ioByNg`@{n@o}AoPgb@eZou@}iAeuCyt@ijBcf@mlAw^a~@kTgi@kVam@sh@arAerBucF?Ay`@qaAaWon@{Skh@oVwm@iOi_@aa@cbAo`@m`Ag_@s~@gv@ekBwe@sgAy_@mq@{p@cdAat@qiA}^qk@mWmc@sHcOuGaN_KwZ{DoMoDkOkDaQkD_VoAeLaAwKcAeM{@sRYkLsBa}@g@{R_AgR{AaSyBeT_EuTqCeNsBkIyBcH{DoLoHuQcL_UkJ}PkJmKoJiK_HmGaK}HsJuGcJeFeQeHkYiJuUcGgXsGyGoBeRyGmQsImGyDoNaJeHgFcKoI{I{I}M{NwHiJyNsTeHyLgKoSuHmQoFyNkHuTsFcTyFqWeEsVoC{UgAuMwB}Vw@kSWoR[aZTyXd@{Q|@gPhAiPdA{LfBgNtAiKvD_WnH_`@fM{g@pJq]tJub@tHk`@lHad@bIkj@`QurAjJ{w@nGqk@rCmYnHgu@lHmx@~OmxB|IarAjCgf@vC}s@tBcb@tDwcAbAi_@vBix@fDapArCc|@pDieA~A{`@vC{s@bEo`AbCme@pDms@dF}_A~D{r@nJuvApGs`AlEmm@VgDlHe`AlHu|@lEaf@rIsaAvL_wAvFoq@|G_}@dRuiChSagDxDiw@fFy_AjJw}BfCar@fCcs@lBck@pDksAvCcoAhBu~@`BwaAj@au@\\oy@NuqAa@wlAe@ot@gAk_AqB}jAgA}b@c@uj@s@sa@{Aoa@sAa_@c@aMa@cLW_HSwG^mK`@cDfA}DxAcDvBsC`CiBdB_AlBc@zBOhBElAHpATdCx@jBvAtBdC|AbCjAhD`AdDh@xE`@pF`@bKDxLKlVg@~Xo@rK_@jGcAjMmBlPeC`RmCjNuC`LuFbOcDxHaDdGuEvG_CdDmEzEsKvJaJxF{I|DgGrB{G~AsCn@cGd@uHZgHC{FWuHs@kHoAya@gJgQaEsKsBwG}@oM_A}EFmFPyIx@uGtAqF~AcDfAcDxAaD~AeEfC}DfCuD~CyDlDuCrCqDbEwDdE{FrG{LrNeL~L_ExDsFdFaFnDcGrEwDjCkJ`GiNbJ{K~GeKpHoM|ImUbSoLhKgMlM}GnHqUn[kQ|Sck@hr@w\\r`@ee@hg@a^f]oWvUwWlT_XfSeVpPcu@pd@}cArl@ogBneA}i@|\\ys@ve@g{BjcBklBpdBueA`jAgbA~iA_lBhgC}i@~w@or@|iAyn@fiAse@t|@cYdf@uXbi@e[`m@_b@fw@aa@nv@wXzf@{S~Wmk@j|@ou@h|@i_@z_@}D|DqLvLwQdQoKxIyLlJwJtHwq@rf@gr@fb@gj@|[qc@nUiMjHmtAxv@wu@db@wUdLmXzKwb@xMgWxFwCp@aZ~Em]|D}ZpAq]d@uWv@i^FuNKcEEuVIeCAmf@^_]J}g@A_MJi[YuZ_AeXmBuTmBmNoBkKiBcZqEg\\kHi]iK_OmFwM{EyNmG{X_NyTcM{MwI}JoGyNsKoJmHqO{LaOeNgHcHgGeGsFyF{McOgKwLcOoRmKeO_IuLsIyM_IoMgHgMyMiWyKwTk\\_v@yOo]{W{i@m]st@uo@inAus@}oAmg@ojAc_@_bAog@ciBam@_{CaD{Py]_lBkYchAsTmw@iQ}i@wn@c~Aww@g{Amp@oiAgm@idAoo@_vAsV}l@qSan@cb@kxA{p@idCqRem@_V}o@}l@esAk\\iq@iVqf@ua@adAyd@erAw\\onAmTscA}Oe}@oG}j@aO_xAwJczAoDcgBEawAnBmhAdLm{DdB_w@QarA_HqoBiLyzAcBkOkHqo@yQe|AqSsbBc`@wjDab@waDuDu\\sC{XmByTkC{T{BcUmFkj@iIihAoHuvAeGycBmE_kAaAmUoGms@sEoe@mHoi@{Eg_@_Hce@kHid@yH__@_Nyj@wMgf@aIuXkCeJiCgJmCmJkCcJ}CoKyBcIqC}JkCkJiCmJcCcJiCeK_CmJ_CuJ}BwJwBwJuBuJqByJqB_KkBaKkBaKgBkKyAsJaBeK{AeK{AiKsAkKy@iG]mCmAcKeA_KmA{KcAoK_AiK_AwKy@mKy@qKs@mKq@}Km@qKm@wKk@sKi@wKg@wKi@qKg@mKg@iLiA}WsC_n@cDov@aHm{AmAiY{Bke@mAuX{@_Ty@cQyBkd@qBad@{Bih@iBob@i@uM_@qK[_KWqLSuLEkDEuEGsK?{NDcNNiSN{KZgLVaKb@uLf@}Kh@eKt@aLnBwXz@aKhAaLhAcKnAoKtAkKtAwJ~AsKbBcKfBoKpKeo@pKap@bH}c@~K{v@x\\a`ClR{tA|G_d@~Gac@bIkd@xE{VbF_WlLcj@lHq\\dGoXl@eCjIe]zKqg@dX{~@vPsg@rNqc@jQsg@xPqf@pO{`@jXuq@xN_\\ne@seAzUmi@pPc\\rNcYrt@suAtHuNpa@mw@lOyZdNkZzLm]|IiX`HyUjFiS~FmW`EiSjEyUdF__@dAqHrFah@rDki@vB{d@nDu_AnBqh@JgCtEygA`EwhAtEeoAdCkd@p@aM|@aUv@iPxAyTrAiQfBgR`C_SrBwNh@yDfBcL|BqLlGwWxDsOzF_TfFyOlIkUnK_Y`FcMlEiLpJiVdJiWlLq^hN}b@bIiX|K{b@nPyt@tIqd@vGc`@vG{d@jGah@pBuPvBwVfD{a@xBg_@`Bo\\jC}v@b@gZl@m~@B{[o@_m@_A}`@eCum@q@c[aA{T}Cqq@uBka@eAaSaDos@mB_c@yBic@wAkWwCg`@wDm_@aFu^oAcHqAaH_EsLsf@mvBgL{e@kJcb@{H{^aH}]eF{Y}Gid@yEm^wCqXoBsQiBkSwBoX_BwUu@iMy@wPcAgTc@yLk@wQs@wZ[wRMkUOe\\Fab@RsT\\eUh@mVzA}d@pAc_@x@eZfB{]xBih@dCyn@bBeg@^aRd@gXn@s`@JyPNic@S{^_Aep@oA}ZiAwYcA{QiBy\\iFwo@o@uGyCuZqBgUiE{^wKkr@uCaRmNuq@{Jy`@iIo\\{Ky_@{M_e@mTai@}Og`@sQ}`@sPe[_Tw]yIeO_FiIaOuVeKmPiNyT}]}j@uWq`@wLwQaIkL{KeQeFeIqD{F{I_Ns@_BcA}B}@mCt@eE`@mDNeEAeG[mEo@mEcAqF_AcB\\yIrAeLPi@`BuEBIvCqI@ErGoRrQii@t@wB~Nu^fRgi@d[_{@jSyn@|BqGlBmFvBcFfCwCvCeCdCeA|EqAnDBdDf@pDtAxCjBbDjEtBlF`B~HFnEBbB_@hG_AhFoA~C{BtDuEdDkCr@aGXkGe@_EcAmEiB}EcD{]eVmRgLiMiHme@gTsJ{DmSwGu_@cK{OuD{QyC_BWkT{@{T{Bm\\kBmb@gBkc@oA{[wA}YuB}QsBwMkBwP}CsKuBkNkDsScG_RmGyR{HgM}FmJ}EsJaFqOgJaNeJkQqM{MsKaQ{O}PeQiSgUgQmUiLmPqWib@gNaXiPu]eM}ZyH{ScMm^}Qsk@{Vcw@iK}ZqRki@cKwW}G}PkN_[qHcPiPm[yP}ZcUm_@_Te[gNgRqYu^aKaMsJaLmX{ZeXiZeWiYqg@qk@oUiXe\\w`@yK}MkNsQ_Yq_@aTuZqRuYqUk_@sYif@}Zel@_Rc_@kN_[_KaUqJmU}Mc]_Na_@_O_c@iMeb@uJc]cKc`@kLue@{Msm@mC_NsCsNaGi\\_G__@qGkc@qG{d@cFsc@cDu]uEej@oCm_@}Bm_@kD_n@{Cqq@sDez@oCks@sBe_@uAmTsBiYiEcd@iD}XoFq^{E_YeFkW{EmSwGoWgGaTuI_YqCuHuFsOiJ}UiMyYcJsQiI}NgSw]}Us^yXsa@mZuc@eTi[iV}_@_Tc]iTo_@iL}SqMiWaMaW_[kr@cV_l@g]y|@wz@m{Bu`@gdAub@igAoUsj@mPu`@{Xqo@mc@m`Aa^kt@iSy^aKoQiMaTcOeVuQiWqUmZ}Y{]e_@a`@g_@m]e[gX_i@ob@}a@k\\kVwSyLuKwP_QqR{TiOeRmMoQwLuQuPaZuJ{QoNqYoOg_@M]mQch@gKq^qJ}^wJof@wG_a@kDaWoE}_@yDqa@gBeUiEgn@kGo{@eEge@iFic@eHie@gDuSyFwXaIc]}J{^oKq]gNy_@_LuXyNeZeNgXgQcZqYsb@oR}UoQ{RuJ{JaMcLuVoSmWmR_ZyQs\\oPm\\oNu`@aM{LaDkMsCiLeCcWiEue@sGqn@_Ki[gGeTqFoY{IqVuJmVyKqQyJ{TcNmN}JqQ{MkUoSyLoLuLyLyOeRyPwTuQsWki@m{@yDeGwSg\\u^qk@wSa\\wL{P_O}T{k@uz@ga@ok@ql@my@ki@kt@ka@ei@_[kb@}SyZeLwQ}JcQaHwMyIsPwLcXgE}JgLeYuM}_@gTit@}Lqe@k@}BaS_v@cKm^{Nsc@uL_\\{JgUcJaSwKeT_LmScQgZyf@iy@cMeUsAaCcF{ImVwg@{Nu]oKeZmKy[mIc[iL}f@oFwXgHec@yGgg@cG}o@_Ckb@cBub@k@o[Mcc@Ci_@j@so@x@os@\\y~@g@es@eAgZ_Bk^_Cq_@}Dmb@oFge@mIyi@eIy`@uHe\\oNsi@mPif@iYev@wS{e@m^sv@wN_YmJuQ{U}`@m`@ym@yQqW{OsTa]sb@cZg]mTuU_`@a^_\\iXuWmRuZsSy[oRmb@}S_[aNqZmLa^eLua@iL_n@cP_TiFof@aMaVoGiRoFwOcFcc@qOoQgHuXmMqRsJ}L}GoMuH{KmHqUkOeWoRaf@qa@a^m]oXyZuV{Y_SgXeRuXaYod@yRi]gSqa@yRic@yN{]yI_VwI}ViMi`@}K}^cQyk@gMec@_Lg`@yLm_@iNe`@uOo_@}Pe^{Rw^cNaUuXwb@}Zke@gQgY{IkOcLsT_Oo[mKgVaJsUyGmRgJkZoIc[{Kgf@_FaYqI_h@yE}_@}BgTsAgO{Cw`@yFoy@uEwm@sEuj@iDi`@sCyXeFga@mEi[{E}ZaHq`@oImb@gOwp@sYsiAu_@eyAoOcp@kI{_@sI_c@eLer@_G}b@uCsUyEcg@gDmc@eDkb@qBk`@sAci@wAek@u@{j@_AsjA}@_`AkBqfBuB}oA}CckAiCgr@kDqs@}Cah@kCsa@eFoq@oEai@uFaj@oH}q@iHqk@iMoaAwHyh@aMqy@{Oq`AsO{|@{Lgp@qP_z@wNuq@}XqnA{YsmAoU{{@yOgl@aVcy@uSer@c[u`A}\\waAa`@_eAo`@edAaWen@w\\ax@aWkl@}[ms@_w@_cB}x@ieBi`@wx@eYem@}Tih@sLgZgLi[qJiY}Nid@qLkc@iLme@mIo_@_H}^yIsi@qMq~@cKix@yI_t@eLa{@oGkd@_Fg[iGs\\iFmXiGmXyG_ZsNwi@aJyZsJcZgJsWwN{_@sOu^aOc\\{Og[yTga@kLyRgMaSiR}W}L}PiUmYy\\o`@kUgWi]c^aWuVkTsSm_@s\\aa@w\\mXcTo`@uYy_@_Xq`@aWeb@uVsa@kUa_@iScj@eXkt@_^sr@{[}x@y_@mf@uUmc@aTs[uO_b@sS}b@qTgi@aYmZ_Pkf@qXs\\wRaYqPaXsPwb@aX{a@aYs`@_XwQoMqNcKgXcSoZcUaX{Sq]uXe|@ut@cm@sh@aZqXmT{S_V{Uk]o_@_Yw[{j@ir@gX{]c^wg@mZed@iRa[}Rk]uXgj@}JiTsLeXqUml@aSgk@cOag@oHeX}F_U}Juc@gCgLyG_[qGe^kDoS[}B{L{}@kF{a@uCyZuBmWmByYaDig@wBae@gBua@{@cUaDi`AuAy^{Bsc@{Cwe@kDw^eCqU{CcUoHqf@iGaZcP}q@iNce@kPse@qQib@aNoZuJcQgMuTic@cr@s\\{g@ce@et@kUi_@mTy_@aRi]gRc_@uVki@{X_q@oYwv@oSen@iTkr@kUsu@k[qfAq`@{pA_Wqx@q[e`Ag^uaAmPeb@iPu`@qTgg@aWij@{Yql@mUyb@gWod@_^el@}DsG{EoHg\\qg@ob@{l@_Xc^k]_c@kf@wj@}]w_@wTyUc]q\\wf@se@q]o[gc@s`@g`@w]yYqWu]s[uU_Uq[qZsUcWUW{OeQmOuQiReVuSsXwXe`@_Tw\\cZqf@cPgZcOkZeR{_@{S{b@sPs_@i]gv@mZer@u]sv@yV}i@oY_m@kQm^uWkf@qZwj@uVmb@oVu`@ua@qn@si@{u@s[ma@_f@ck@mRoT_]{^i`@o`@wc@gb@ui@ue@iuAoiAsp@yg@{q@ki@or@uj@}m@cg@yh@ac@qQyOgKcI_T_Rmf@sb@wa@a_@cUeT_c@wa@ga@ua@ac@id@if@mi@mVaYob@gg@y\\kb@uYy^ei@ws@c\\ke@w\\cf@_d@mq@od@mt@}Wgd@e\\sk@q_@qr@}]}p@_^as@_OkZsWyi@ed@eaA{J}TqS{d@}vAyaDio@kzAuh@sjA{h@uhAq]at@w^qs@w\\mo@sTca@{R}\\eVo`@g]gi@kQkX{OaUgPySwi@{o@{MkOwTwT_d@ob@cV_Tc\\yWi^eYc[oTa]aVaq@ce@m^sWeLwIiQiNgOoMsM}LeJyI{J{JiIuIaWwX{P{SsRoWqJ{LyPcXuTq^uJyPwKiSkMmWqOq]cNe]oOsa@iJmXqHyU_L{_@iJq]iMog@kPut@aZesAeXmjAsOam@}Rar@uRwm@{Som@wOma@mMoZcQm`@qMkXsOc[gUgb@aX{d@cQ_XgL}PuTc[qXc^gVyYsR{TqTaVkUgVst@ou@ic@sc@gY{ZuTcWiLiOkOaT{M_ScRsZsKcS}HmO}GuNsJySaJmTuGyP_FgNkGoQ{Moc@yGqVcGsWkF_VuEgUyHgc@aJaj@eOqeA}Lyw@ePceAePw~@mKkh@yGyZ{Is^wPko@a[wdAia@}lAcY_y@g]mbA_Ouc@{R}m@gEiN}L{c@_G{TiLyd@_EyQeQky@sMmu@mHge@{E_^iKsx@sA{QcEa`@wC{c@w@yLuEsv@mBu^iAaYkAqj@yAcs@}@wy@q@qdCYkx@s@if@_CouAgDo{@QcEiBo^yBya@eDmb@eCy_@qGik@kCiZsQcqAyLkw@eR{eAkMwv@oCkQgEoZsDeZcD_[gBuVaBqUoAeXcBei@CcKMa_@GqXfAgg@n@oPv@gUnB_b@dCsXnAyQzI_r@dRugAnLgr@vBuOxJcs@lCwVh@kLtG{w@tAa_@l@o^h@ss@We^c@yb@iDqfAeC_u@y@iYWm\\EcXbA{x@|@e[xBoc@vEwk@lAwN~Hio@lPydAlVu{AdKio@`Gab@jKo{@jHct@nAsN|Gy`A~Bag@`AcO|DsbAjA}q@P_v@?}u@Qq`@iAep@{Bqw@_Dqr@yCwe@sMuyAeAqLcCuT{Dm[mAsK_Kim@wFyW{D_RCKsIg[wCyLmPse@uQsb@gK{TwWye@cR{X_RgVcY_\\{RyQgSeQaWyQqRoLeK{EqW{L}UiJ}c@aMu^uHo^gEsc@yBy_@]_c@`Aee@lAwRTcQR}]qBcZqFwg@eJcvA_\\}e@cOm[iLw_@gPw^}ZeUkZ}N{XuGyO_FqNaDgLsDqOwEyWaDmXmBgYg@eUU}WRs`AU{_@_AcZkCeYiCySmIcd@kKe_@cM{[gOiYe`BclCso@y}@aOuRuNgRyd@ak@i`@oe@yRmUiF{H}GiKiP}ZgNu`@aEuPkHsZmEmg@u@g[Fal@xC}q@vC_f@nAud@Eqi@iCkm@sHqn@}O_n@iQ_d@wUy]mUqXqS}P{McIwf@_V}o@_[iS{MeLeKaZiZgWi_@wTac@aQii@yFkWsC}KeIij@kFwq@cBae@wDgqBm@cPyBgaAwCut@{A{_@}Csi@aG_x@aImx@yH}p@}H{i@kIsh@uLio@uJuc@wMif@wGyTcGeRoN_`@wY}u@w^_|@kUim@eQcl@wMkj@aJsf@kK{s@yHwt@mHuiAmE}u@sGicAmIwy@kM_y@{Pwx@kScv@eVmu@aVwx@oT}y@yNuz@yIor@_Hgt@wFo|@qDct@sFm}@}Gkq@qH_i@eKgl@kKce@kLce@cMm]kLu[}Nc^mMqX_Qw\\_Yad@uMqQaYy\\_Zi\\sc@g_@o[uVgYoO}YcOsd@}Qoj@yOso@{Owp@gOkn@mVsb@mPwg@cZ_c@}Z{e@gb@{d@yj@{Vy^qTg^{Skb@sSmf@uTqm@wUmy@wXidAeTiv@{YqaAu[c_Ao[s{@s\\iu@{g@qdAqh@s~@e\\em@yk@aeAid@w{@kh@}`Aqg@gcAsa@sy@k^ou@{m@ssAqi@eiAwk@{rA{@mBoh@spAkj@ctAko@cdB}b@olAwj@q}Aaj@__Bsk@scBel@{~Amm@{aB}z@msBi|@mxBe|@ipBes@_|Akl@_pAup@uoAgm@yjAim@qiAcgAapByh@abAwy@wdBwNq]_Qwa@aFgLuHuReVim@{Vcs@}Ren@aRan@oLka@eK{`@kNgi@yJ}b@cK{c@yIcb@wJ}f@gFuZcEcUcJ{h@_Lyw@{Ko{@uLshAwKkjAeIogAeJoyAiHuyAaGg~AqE_pA}GgrBa@sOyBky@oBw}@eC{rAiBooAeBc{AoA{jBe@yeAYgaBG_c@dAqwDrAmcBdAcnAhEweCrA}u@rEmkBjEu_BnGigBlC}o@`GapAfC{l@fE{aAfCwk@hEo`AbCkq@vBi|@x@e_@r@cc@b@ok@Jof@BqNSyr@AoOGsDo@c]{@ut@iAel@oA}e@_Cem@uC_o@sCgj@wCyc@mIehA}C_^}Fel@kKa_AqQwqAiOeaAcQmdAeQ_aAqRsdA}Pm~@yPs`AsLeq@}Ioj@_G}d@mGug@mHws@aGmq@oFuz@wCeu@kBkn@mAet@Woa@Sqi@Xuh@jA}x@nBat@fDkw@~Fc_AbFko@`Hqt@nPubBxA_OtIg`AvCcf@rBed@nAsh@Rmb@_@{o@eBqp@kDem@yGes@eImm@qNax@oPas@iL{^qDkLiNs_@uMg[}LyWsO_Z{LsSk[ge@{VyZ_\\_]cViVsjA}{@_UyNi`@{VwKgFma@qRkMwF}JgDgRiDaPgAaNW{WxA{PpCaLdCia@~HoQbCqRzA}Nb@oNAoNm@gKm@gNuAkOeC}f@uHs[yE}j@gKiq@wKgv@sMyPcCkJgAwL{@}FU}FCuIVgJNoP|AeLdCwIrBqIlCiQjHilCjoAugAbh@o`@lRsYrOiNjJiMnK{LlM_R`RoI`I}NdL_OxIkObHo^bKaRfBsPpAgYPyd@Gu_@Vi[c@gTcBeR_CuPgDwp@yQ_c@gTe}@wk@mu@yk@yn@qk@qo@gt@mVi[wQeWgTu[kPmW_Yug@mU}d@yP{]uUcj@}Qof@{M}_@mNib@{Moc@}Siu@iQaq@wWcgAkXulAcUydAcm@apC}{AgeHgEsTsgA_cFgv@slDa[osAi[gpAii@kpB{HqWkb@uvAoWcy@cWyv@kSgl@sZmz@eX}s@eWso@_`@o}@wY{m@s[sm@q\\qj@o_@yi@q[ia@iZ{[}EaFwM_NwIoHcZ_Wa[cUaYqRc[iQwWoMik@gVcSiH{e@oMim@oNkIuAou@kI}ZeBg\\uAcgAKc_@^ip@|Bcp@fEol@fEusEx\\ah@pDifCtRyr@xEigAnHsx@tD}y@fBqb@b@{TTgx@F{_@k@u}@qAuk@cB_Tw@gU{@gh@_CsuC_Tm~BcWg{@uLeIiAe~@yN_j@oKehAoUmi@mMwu@sRwjAq]mu@sWkr@oYqj@eZwWoPoR}Mka@_\\y[yZ}\\y^}Xu]qWg_@q]_k@a\\km@m`BybDcLoUq_AsmBeVej@mZq_A{o@yyBml@cqB_[wbAsPwi@mJcXgSii@yTkg@qR}`@aQe\\aw@wrA_g@ey@qg@o}@aU{c@iSeb@kRmb@[q@gf@kfAoh@qrAoJyVy{@ulCaoCwnIglCkqHkyCogIa|@}`CgtBcvFgVgj@qh@{wAgo@gdBam@o{Aeb@s`Asg@idAg^mq@{^qo@{d@eu@qd@mq@}e@{o@mf@an@ol@_q@uk@kl@u^i\\gc@k]gf@k\\ch@wY{c@aT}]mNa[qKi_@uKgb@qJ{TgEsXiEu^yDmQ{AwM{@ud@eBs[i@kYE_iAc@}h@mA{d@yCc]_Eu[aGsWwGaWuHaSsH_k@}Wka@gWey@sn@_f@w^qXqQeYuOuRuI_V{JoZuJeZ}Hia@oHsc@mFoa@cE_YwDiUwD_YcHwNgEsKqDob@ePyYeOi]mTq[qU}[{Yo]c_@s]{b@qaA_rAsg@}i@ex@gy@w^c`@a[i]k^cd@g[cb@}Tc\\}Yae@k^go@qSk`@iWij@eWen@eOg_@wNoa@{Kw[iLm_@_V}z@aO_m@gNio@_Pqw@qVunAeN{o@gMmi@qYodAwNoc@mRqf@kU_h@wNqXcPgYsXcc@mXe`@qa@qe@_j@qh@}n@}h@{n@yg@yi@cc@we@eb@_]i]a^q_@qMuOoH{IcSgW_SaY}[mf@mWic@}X}g@oR}`@qX{m@aSch@mRei@iGqR{D}LeF}P_J_[eHkX{Sc_AuLcp@aJmp@wHmq@mFyq@aCma@wBqj@{@ih@Y}p@B_f@`@yZ|Bq{@pA{RbIknA|AeVnBgs@p@gV?eYDoPKwOUs_@_A_]cB{]cBwYqAoPFwI^eG~@uHjAsF|AgFlBsD~BwCrE{C|DcAlD[lFv@pDbBlDbDnClD~A`F|@fFTrFKpIcArG_C~GyApCoC|CwDrC{SbGwr@dPgQjDoLfCcLtC}d@jMyDt@}^bHsh@dNyIpA{s@nOkGrAg|@vSau@dTuo@bTm_@~MuXnKwf@lSih@vUs^nQki@dYu]jRir@r]sh@j_@ei@b`@}^xYo[tY{WzWqTdTgz@jy@{[x[eOdOyhAjhA}hAhgAg|@xy@y|ArxAmIrGcIzEmKdFiKpDqJhCsIbBiOdBiOz@mKMyIUgL_AmLgB_B_@iJ}B_L_EoIuDyMsGmKsHaLaKcOmPeNkRqRg\\i_@wo@mQeVeOuT{KkOyNmSwPwRaKqKqGcHaS{R_d@u\\k]uW}o@wd@cm@{g@gPoKkNqIuRcQ_\\i[yLeLeE{DmNgPkJmKoJqLwBkC{HsJqSyYsBaDyLgRyPyXsK{R}HiP}\\ut@wAeDuA_Duc@gfA}D_MaCeIkSsq@cD_NeWseA{QagAgKcv@iIqx@{Fwt@oCkg@eC_p@sAmv@eAe{@]ss@wBmsEoCo~AMkFeA_d@gBan@}@_[uFk|A}IibBkJs{AyGwz@oKsrAwK_iAmKcbA{@iHuLicAiOmjAeVwaB}Wk_BqSwhAsV_oAka@}jBkTg}@oZmnAog@u}B}TsiAsTslAkRgjAcOubAqSwtAoHof@gKeo@cKkm@sTggAwNko@eJm_@wUmy@cMy`@_Mc_@yKsZiS_h@i]ex@iWih@uRg_@cCyEo[qi@cJcOs_@ij@iTgYw@eAyf@mn@}i@cl@e[aZ{RiQmk@_e@}l@ob@k]{TqZiQal@{Z{iBqs@{hB_h@acCuj@usAkZwhAoXsvAa]kwAi]qvDw~@m`A_YmXwJmYyKeMyFca@yRag@}Zg^uWsOeMsMeLo[wZoc@gg@cRgV_NuRqZ{e@kPeZ{Qc^eNkZaR{d@cTcm@{Tyr@cUsx@qRwt@c\\qpAkNqg@qNkf@aE{LkS_k@kOy]eQ{]oKmRgMcTaSaYiUwYgRiToPsP_WsUmOmLiX_Tm{Bg~Ac_@iYyY}Ts`@w[oXoUgl@ij@}\\i\\ej@qk@oq@_r@}]o^ya@qa@kq@gx@w~AqrB_{AsoB}tVk}[}o@sx@kW{Y_U}Tef@qb@ca@e\\y`@mWqg@uXiv@}^ac@kSq_@wRi_@iVyd@m`@u_@}`@ma@ae@gb@af@ci@ei@c\\gZwRoNqO{JwO_J_QaJq\\yNw`@cPke@_Por@gVkx@_Zop@kVa[qNkXsNy^}SiU}OcRaPwQ}PePgP{NcQk[ob@o]sh@}NcYeMoWqJyTgKcZcIoVe[alAsOgr@sOyx@sl@yzCa[otAk]mmAgXis@oUsh@w^{o@cSiZy`@yh@q_@ka@_dA{aAqaAo|@gZkZkTsUuPoSaNwQmRmYiKkR{JuRoJkTqIkTqIuVsH_WqCoKmGyW{Gm_@aEyWcBgOaCcUyBeXaB{ZaA_[]sWAmZRq[b@aVz@wXrBgf@vDip@pDai@lEkn@xBs]dCeb@pCqi@z@oWx@kYp@cl@Kac@gAkf@sAs[iBuZiDq_@eDuZaHqd@uEyVyFiXsGeWiGyTsFiQqIkVmJwV}Qma@yBeEmSo_@qTea@yUm`@}Yaa@_V}[qj@_w@_aAkoA}_@qe@wSuYgOeXkPa]sIuQqH}QeGkQsKi_@kIy\\qNgz@cEiVwCeQqIoc@oGuXiKs^cJaYmIkTkJmScMyVaP{WwMmRee@mq@mc@}o@g`@an@ea@yo@cf@ay@{Y}b@oOmR}LyMkR{QuNuLyZySoXiNyNmGoRgGaNgEeTuE_RwCcRoByR_A_YYoa@tAq_@fCog@rIg`A~L}YhB_XP_OEiWkAeR_BaZqEiRoEaQwE{OqF_NuFeOcHsO}IcO}Jk`@oZmZgXyV_[gTg^yU}b@mJqRmH{PiNy^qK{\\mJc_@wQez@iLkg@qQgu@iKs`@_Nya@aNm^uOy_@{Nu[_OeXgNkVsa@an@ieAo{Agd@ap@q_@oj@kq@y`AeTiYcRsUsVuX_\\k[m`@y\\eTaPeuAagAw|@gt@u`@c`@g[s\\kq@w_Akq@ogAug@w_Ama@{`AqmA_|Cy\\{z@gUsi@wLuVaMeUwUy`@yIwLkQmVsNuOyQaSgd@ia@kc@w[ig@iXoe@cRex@{Ysd@yKmg@yOoe@sOoTkIePmH}SqLUM_WmQaUsSkWaY{QsViQmZ_Ri_@gJ{UuKm[cHaWuA_FwJ}f@iHof@iL_dAcF_e@kGwc@_GwYgHqZqI{XoKqZaEoKoI}SqOe_@{IgUiMi_@yHkU{HwV{HyXoJsb@yHca@gDaQiuD{nRyKec@oOcg@mVyj@q^al@mG{JufAi}Aye@sn@y^sh@uF_IqJ_QeLkTcKwSw@iBwMo[mCuHyD{KeL{_@qKeb@wFmVqF_VkG_UaEuOwFmQoFsQ}J}XsFiNcKwUaJsR}^mp@o[id@}[__@uY}Xe]aXiHmEuQcKoOeIsOqHkPeIsFgB{Q_GiRyFoRcEiXeFoDi@iBYmXsC{Ki@iESwRa@eRDsRLuS`AmGVqh@rDoVnBkVx@qk@GqVyAaWyDmWiFsWqHis@uV{s@iRej@oHmj@cBkWNsVfAaWlBeX~Dmm@lNo]pIsTnF{D`A_[xG{]vGcUvCcW`CmUdBmW|Ayl@\\em@c@iWsAsXeCaWyCeGi@sq@aGsiAsQq}@mVueAmk@qkGgxEseAko@osAo_@crAgSg^t@e_@zCe|AtP}e@nCef@Ruf@cBkf@}Ek_@yGo^eIgU_IgViJuf@qVyHaFse@}ZkWwQgV}PeTqNsXmOsRcIkH_DeMmEqTaG_UmEek@qFeUy@yTCwOh@kBF_GPc]tCey@hLcx@tNgd@tD_d@f@is@xBe_AxHgoC`a@{xEjn@qpE`z@oe@fJye@vGkd@dEq^jB}Vp@aTJoh@c@anh@utEwJ{@wzAgMo]gC}}A{BalBtSwaBjl@aaB~k@_kAhs@q{@bc@k]nMkOtE{NjDac@vHkLfAcOvAqVrAsU`@kXVaXQ}PHmPHkk@jBcF^kKt@c]dCy\\`G{U|HoRvGi_@zQySbMgBfBiShSg[fYqVf[qR|[{A|CuHlOmFrKa\\xu@mJjRaEfIeOdW_SnW_JlJcUzPqRxKkTtH_]`IyKjAiKr@qS[iFQuIaAeRkDoNyDiK}DiPcI}c@yYgMaKiE{D_MuJwJuHwKsHmPuJiCUgm@kZeIkEaLeJwM_M_NuOyL}RgIqQaIcTiHkTcFuRuGwUmFaQuEyOwHeQoJyPuIsKiLwMmJeLiOaTmM}SyHmPyFgP_G}QaF_SaEiSmC{LaDcPyE}TeFqVsHmZ_IeWuHuTqHoTeJoTuGyOsIeQkI{OqFmIuCoEaPkTwSkUsQaSqWcZcNyQaDqEqBcDoDkGuEmIiFmLuGsQwI{Y_IyYoF_RwE}NcGcO{DiImByC}BoD{FeIkFwF{H}FcJyFmJiF{HwC{F_BiIcBoKcAeMo@o[]sMScKm@uMaBkK{BuGwBoJ{DsFqCyHsFuJyI{GiHyHyKgGaKqHoQwEyMoDaNuCcPyBwPuCuZiAoL}Dgb@uAaKwAaK}EqY}FuVwIm[uFoOyLqYeQg\\iLmOmJiLuIiIuK_K_LoIyMqIwQsJec@kTuHkEwHeEyI{FaJeGcJeIiI}H{LkNoOwTkK}PgHwNcKoT{HyPcDwGoGyLqJoQ_HoLsJgO}D{EaGiHwNwOuJ_IgOmLyHoEiN}GkNaG{L}DoOiDmO}BeKu@aRiB{SM_WKgW`@oUz@kZhDuZzC}Q`BuHf@kLt@iWZwQJmP@eViA}Q}AkP}@}c@qAqb@M{\\dA}YtCgQjB{AX{MhCcJjBkKxCyCx@qFxAeZzJsTjKcSxIkDlBcFpCoSlK{IfEyAr@oCz@sK~DgIbCoI|B}DZsCTkH\\uJd@_JImF]iJ]wJ_B}IoBgCw@kEuAmGyBgMcGgH}DcH_GgG_F_F_FgFkFmIyJ{J}M_MqR{MsUkHqMoIcPyE}JyE}JiJ}RoIyRsJmTqKeUmKcRaJqMkFsG{F}FmHcHwIeGcLiG{MoFsMkDkLeBiNw@iKMwNj@sNlByPlDuP~C}KvBwMnAeKb@cJIsJg@}Iy@kQeEsP_HsMmIcKcIiKcKoOgTuZmg@mQ_YqOwTyZw_@yTcUwPkOcQmNaQuLqNgJe]yQqPgHeLkE}SyG}V{GsXiGmXuGiVwGwWsK{MiIuNyKoMiLiOuPcTiZqXkg@mJeR_KiO}MqPiHiHmHeGmImFcI_EsHqCuHuCeIcBeMkB{Im@uLOyLV}d@nAmMQmOcAgWcGwJiE}JaF}JcHoHyGoSkUeLuSyGeOcKy\\kGs[mFg`@yE{^uFi\\}Kmd@yMg`@uWmk@eN}YuBqEgL{VqN}[{Lc[iIkUiKe^qLg[cQ}g@sJ{XwHuToIcRgNqX{MyTaL}PwIwLqJeLuI_K_JsJiSiSmM}LeOeOeQaUaHoMqIyR_IiXmEeOiDkNuGgW}G_ToJeVkK{SuMuTsSsV}MiMiPiMuPsJiOmHyOgGoRaFiP}CeYqC_Sq@qXAqTNgOKwRuAqR_EaR{G}P_MiM{KyUo]_KuR{JgSoN{V}FyIcC{CyD}EyI_JmN_LaWoMu`@aRmWsPwOcPaByB_JsLwUu]cLgOkJ}KeLeKmK_HoJ}EiQaHc\\gLoZeLgR{Ika@qWiZ}SuVyUgPcSaHkHuQkRiWkYm]m`@qj@op@gToW{UmXsQaTqWkYiXwW{UySeQwNiWmRsT}NqUiNiOqJeSmMoOkKuR{OcS_SyR}WiNaV{FyKyGkPeEoM{C{N}C{PuB}RkAuRa@{REcVbAgVdCgWjC}OdF_VfEeQzG{WpDsRzCyR~AsPpAaWHeTWg]OqSAgSTmS^eIZqGzAwPnBsOnEkUnDiPbFgRzJ}]fFeRvGwWtGmYjCuNlA{GlF{_@fCoWlBuZrAs`@zAy{A_FkgBcRizCiAs|@o@ob@{@ie@cAig@eAyc@gBgp@aAsc@gAw\\sAwk@i@mi@IiZHq]Z_`@XyNf@wY\\uPh@sOVyHjBs_@|AkWt@uNxAySnB{WdCoYnCgWfDwZhDqVpCqRnCkR|C}SlFg[~Gu^bDoOnIo`@xCiM`H{XbGwTjFwQxL{`@vImXnRkj@tYcx@tDwJzHeTnJsWjKgYzGkSnGiSbEaMdIuTtJyUvJaTrGgMfHsM`JyNbGkJ|DoFrEgG`FkGpHmJpOoPfN{MjM}KnKiIhKqHlJyFdMqHfIsElHqDrI}DhGuClLeFxLyEvJiDfLcErKqDxJyCtKcDfKwC~NaE`R}EnNuDdOgE|LwDzLeEvNsFdK{EfJuExL{GtLyHbLsHbRkOnImHvIoIjJwJ|KiMvIwK|JeN~GsK|FaJfGgKdHwMnIePzHiPrJoSvJsSpJyRtJiSnHyNhIyO`Ri^~IiPfJ{PxJkQxNcWlRs\\dN{TxEaIlEgH`IkMvMwTlG}J|I}OdHgM~G_NxG}MdH{OxFgNnHqQlIcUrHgSfFmNrEsLzGeQtHmRdIuQfJwRdHqMtHuM|IcNhQyUlIaKlLqMdLyKrJyIhKcJ`KqIxLeKlKyI|LaL|HqIjKaMzFqHvE_HtF{ItGqLdFaKxEkKzFyNdDoJzF{PhMkc@pGuUpFcTnF_UzGqY`DgQfEwRfDmQjEa[hD}[hCkd@b@_VHg^o@_XKyD}Am[{D{`@}D}WiDyScFyR{FeTkH{TaImTwMkZqJiRwMyU_PoWcVsa@uMkU}NsYqRmc@wMq]yHoUyFyQgGuSwCoKqAwE{EyQkEmOeAuD_EsNwCgK{FyReE_NiEgM}EmNiFqNkF{MaFqL{G{OsIcRsMyWmI_P}K_RaLcReKeOwGuJ_GyIyF{GwEgGcEqEwLuMgDwCgEcE{HwG{LeKaL}IaGgE{G}EcEyC}F}DuGwEgRkMoLuIoKeIkIqG{DaDaGaFkGaGmGgGgFqFsFgG{HwJqGuI{D_GaGeJkHgMeHuNcGyMyDiJsD{JkD{JaCwHkBqGeBqGcCeJqBaJgBwIyDsSyA_KeAiHoCsTkAcNcAgN}@qOk@kN_@aO[}MWeREaDOgIQ}POcTWmUa@}S]qPo@qQm@}Lo@}K{@{JiAmMgAqJqBcOsAqHgCcOk@{CaAeFuB{IyBcJiCeJsBmGwCaJ{D_LaEoK}DaJ{EqJqH}NyFcJ_CiDmBqCoFcH_FoFqGuGoFeFcEiDoEgD}DqCoEmCeFsCwE}BuJyDsHaCsHwBqEiA}JeBsGoAuGcAkHkAcIoAoKmByEkAeHgByGgC}GyCuHqE{DoCaHyFeG_GwGqGaKwOkJkQmHeQwG_TuBiJ}AyJgAeImAeK}@yJi@kJ[gMM}K@_KNaL`@yLv@{Pj@gKz@cPpA}X\\{Qv@m]Xc]Yw\\k@}\\y@cZ}Am\\aBaYeBeVuBkXeDg\\sDe]iFk`@mFa]_Ge^yGs\\sHs]eIoZuHiUyK{YwMkZiMmTmI_N{MyRcM_Qca@wd@qD}DeFwF{VqXwA}AmX_[mXo]mMiQqOwUsPaZ}JiSgJkSwLuZyMw_@oIuY{HgYsJge@eGw\\aHef@eDaYcCyYoBcY}Ac[iA}`@a@eWc@sf@G}b@Y{Zq@kb@m@uRiAe_@a@}LeCgb@{Csf@eEsg@}Dka@oCs\\qBwa@i@yb@d@iW~@eWfDga@jFu_@jF_W~EiRnHaUrL}XjGgMvHaNpHuLn\\eg@lMgUbKiTlJ{VtAsDnGmUlI__@dHi^bDiNbFuR~GcUrHaS|HwQdYyo@hLuXtYe|@tXklAlFkuAaDaqAqEeo@oIkx@kDsX}Eyb@cImcA}Bcf@u@m_@q@av@Fax@Rcj@h@_j@tAas@lAsd@xBsh@bBy_@fC}g@tA}_@l@i_@@o_@Y{[aA}^wCgo@mCsf@mAa^q@k^Ss^b@c`@RkNf@sRzAyb@~@u_@VkUMiXa@cUyAiWyBiVsC{TgE}VcEkRyNen@oDiReBiJyE{YyAwMqA_Py@qOy@wTU{YXyPn@}U`Cg^zCoWfFwZvCuOzEcRtIuV`DmJzPw\\`Vi`@rTs[tO_XnQ}\\`LgVfKiVvGsQzFkQhIqZhJy^jEeUbFcZpDuWtCaYrBeUdAoNvA}Uz@mV|@q_@@k]AsP]aXs@eTy@}T}AaVqBgWeCsT{@{Hk@kFuDsWsCqQcAyEwQu{@eGoXo@sCgM{o@iDeX{BiS}AsPoBwR{AoWYyU[{YEyEb@me@tEc{@|K_`AbFcq@d@qw@~HqiA~Dmp@nAsWz@eUv@eVt@mXn@yf@LoYCw]Q{Zg@_]w@k[gCif@mEud@wCuScDgSeJaa@cI_Y_G}OuF{NwJmSmPyY{AkCkKoOeBsBkLgNaViViCiCqRmRs\\u^kMgSgLoSkHyOsKaZsF}RgEwQiGm]kEk]uBe\\q@cUQgZl@a[nB}_@|ImqAjBob@b@m^OqZqAy}@Suc@Ja\\`@u\\`Ag[nBke@vHcvAlOa}CxEacAhKqqBjF_lAjBsd@tAka@Fke@Mc\\}@me@}@}ZiBs]iAk]}@c]EmW^aY~@sXbD{]rGoc@nIm_@fHeYrFaUlGyX~Fs]hEu]nBgYzAcXZ_SNcc@gAck@c@gPIuDkCgf@gCq`@e@cGeCmZaF}g@uf@o`Dck@cqCiTacB_Po|@_i@upByYchAe^axB}Joi@c_@ejA_d@mpAyGoYqFu[mCqWuAmTiA}XUaXZq[vAk^|Bs^~Cwd@lB{d@Xgd@m@aXaBa`@iCmYwDqX_FkW}Nav@aImb@iHaf@cI}p@oHwt@yGqt@}KkhA}OmbAiLgl@gUibAcsAydEoNan@y\\yeBcYwaC{MaiAaYc}AiQeu@cg@qwAqn@cvAwWym@kKaZkKy_@oI_b@uEi[g@iDsFcn@iAmVwAk`@v@wp@xAml@lAw[xAq`@~@mf@Cw]a@c_@aBw{@Rud@nAcYjDc[jF}ZlIeZjTeo@bHmVbH{Z|DwZ`Ca[bAeZa@qf@yB}v@y@}]v@uk@fCo[|Fae@nLql@pB_K~Ioc@hG{d@nCeh@rEsz@rEez@vFqf@pGs_@lL{_@`Wkg@jUiYrWcTv`@}OjP{E`SyEjGgAj}@{Ork@wNxb@qTr[iUnc@ie@rRa[`MsVbIyQpRwh@bRgs@~Psx@nNum@hSmhAfQcz@lWsmArK_a@fOqc@`Sse@|Uif@di@ww@`n@uy@rSy\\vPo\\rK_WlKoY`Ku\\bE{OdEgRfFaXhEiWvScrAxOo|@rHa`@nG{YvKmb@v]idAvKo[`Nsg@hPin@hNcj@xL}g@bPo~@tFk^bLw{@bMurAzHqnBhA_y@m@gqAcCmcAsDo}@_Fmw@cCmZiEgc@_Foc@oFs`@kG{`@}Lor@cOoq@aRau@_n@gbCuHe[{EqSaKag@yKyq@mK{s@gHus@cFil@cE}s@kBuo@gB}m@m@ap@`@gjA`Ag[`Aw[z@oXrAgX~Cun@|LcnApQ}|ArOgrAtKa_AtF_d@zQa{A~S{hBnMycAhDiZrNslBt@wk@[mh@iBao@aCa^_Ds\\kIso@oIck@cU_{@{Sqd@qI}MuPyWa[ic@qDoDyRoRcPsQgQaPa^yYcX_Sad@i\\sGyE}IwGkN}Lo^oZuY}YqJ_KmJoK{NkPcPaUsPoUyLkS{JoPiLyR{AiCsWye@kO{YiRsb@kRye@wNsb@mIgXiUo{@eNcm@cLem@uKcq@cKky@mHst@gJoaAoHm|@wJgkAmCqZ}Nu_B}Deh@yBuc@KyD_A{\\_@_w@As@NepAn@s~@|AwgA`EsvAjAci@tCoj@dEuf@~Eib@`Iqd@bQow@tUc|@dSyl@dN_a@xMg\\zKoWfN{[fJ}ShAiCnEcKnF_MrLuV|EaKrOq^nPmc@tRel@zR_q@bPov@dJuf@fHod@xFq^vIm|@vAiUvAwTVaG`Bo^tBwj@|@gr@Kar@Qia@kBkq@aDwo@}Gu|@{Hkr@eCiRkSenAkS_`A_S_o@iL}[_HqRsTqk@_[yp@}n@}bAym@qy@ey@{z@id@{_@co@ec@iV}MedAqa@il@aR{]_Gw[qEoi@{G{d@}Caa@a@cd@~A}a@Tid@Lob@e@m_@qFcd@qLa_@{OoVmOk^sWwYwYmXy_@yj@kt@oQoMuZuTch@_Z{RaNaDmCcKoImAcAkQiRyQqV}HeOgGcMyEkK{DaKiDgKiBuGkAiE_DkN[_BsBgK_C_NmBsMy@}HUwBcBcT}Bg]u@sIuBoVsD_[uG_YiD{Q{DaRiGuT_JsWcEmJ}F{MkYyh@_KyQaKmTaQea@sLa_@gJca@}Gka@wDgb@_AwZk@_UKqNTyO^kS`AeQz@sMtAsSlE{b@nDsUvD_W|Eu^vCk\\hAcR^mORaMLgQWaJ[sTkAuScBcToCsVwH{c@oGmVuFcRiO{_@wKqSiJwNuMoQwPmQoM_LqIeGkK{GyMoGwNyGaMiFqOeH{TeKcOsHuRqLuPoLaOwKqNoMkQsP}O_Q{R{UwRyX}NsVmKgS{IeQuKmWuNe^cJaYsKu_@_HcXkIm`@gGu_@iFw^{Esd@wDuh@mBoe@o@oe@k@ia@o@}c@s@oUwAk^{BkWaEc[}EqYiH}[iHqYeJc_@eI}\\qHkb@eD_YoCaa@e@uOYeSGe[BqMPiI^uLx@{NjAqTv@mNdAqPn@_Mn@mM`@oKPsNNwPFyKIgKGuHc@kLc@oIg@aIs@}IcAmL}AyNcBuMmD_TeDaQiCqMkDoOcDcNsDoPwCcOsD_SgDgTaCeRwAuNcAsNi@wN]{POkNCaPN}M`@kPbAgQfAeNlAiOhBkQzAqMhByM`AkGpA_LlBwOzAqMnAmMlAsNdAaQp@{N^mNLsRAgJAqIImMw@}RiA}Su@eJW}CiBaPiB{NoBuK{CgPeA_FaByHuDwN}FiUiKi`@aLq`@wFo[eEcYeCyRwEge@kAuYmAsd@uHgz@sFgv@qIckAeJycAiAkKkCgWuEwb@eDySsD}RgGyVkGsSmGsR}FuNgHeOaHoMgHkLqGqJaMyO_K{KuSwRem@_k@iSaViQaVqRy[iS}c@yHeUaKs\\oJec@qJ{m@mHon@}Iit@gIqm@iJci@sL{j@GWuHu[aHaWmIiY{FgPiKkYuD_K}Q_f@mVap@aKc\\gIo[uH{\\eJuh@yCiViGgj@_Dsi@aAsd@a@ki@o@yg@Yq\\eB_c@qDya@cBaOqA{Jo@_FwEkXuEmToIqZuD_LqCmI_GoOoLeX_MmX_MkYmNw\\{Lw\\cIyWkLqc@aBuHsBkJeFyU{EuWuC_RwAeK}AiL}@_Io@mF}BcXeBaYiBkb@{@y[WsYMg]Vy^z@c`@xBug@dGmx@rDqf@`Dgg@t@mb@Ag\\_@_ZuAc]}BcWiBiQ{DiXmFe[}GiYaF}SgGyU{G{ZuDgTeEmUoCiT}CwZkCi]kA_[iAc\\c@{]Gwc@C_d@a@ab@mAuTuAkYiE{a@iHm^oGmZkMwa@iMo[{Tcc@_Qc\\wPy\\eJuQsJwVoUgr@kKe`@oGkWcDgPwDmS{DaWoDaXyCoW}B{VwAsSiB}Xu@uWy@c[]e]MsYAqSSaZ}@a`@{AcWoBqUwCiXaEoXwEsVgFmTsEyOoFqPoHiRgKiVcIqQ}IcTqJuUwJmYoIg[uHi^kCiQgCgTaBsP}Bs\\oAiYcAkReA_YyBe[sBg[sBqToEi`@}@oGeEkZkGke@aI_m@CUmFo]eDwWeEm[iCmOoAoHuFw^yBsPkAaJsCmS{B{OqJoq@gHsh@gGac@wF{a@oPgl@}U}m@{GsQeC_GmDeIiCoHcP{d@yCiQwAoUc@{Vd@gRz@c]VqJp@gU|FesBvGkuBxQkeGs@qwAeE}xAkCy_BjA}oA[ijAaL}qAaUakAaa@ucBgm@wgBul@_tAce@_s@_n@km@ygAqv@qk@}c@oq@yt@guAmkBuWqVo[qOsXgJuXuDio@eDydBsAkp@wDcp@_Nqi@{Vam@of@sh@{r@q^_v@m]imAy[{cCeOs~AkDqmAh@eoAvCatA|@e}Aw@yv@uCkz@iDyx@_H_l@qXkjB_Mum@gReu@cm@yrB}y@wuBa]{u@gRu_@cSka@cL{Rir@wgA{oBarCi|A}yBmpAsuBs~@afBqw@i`BaDeIeSyg@uXov@uU}x@q[{kAc\\ggA}Z}pAyz@igDmh@usBkSicAgLodAcIkoASogA~CykAhJujApN}jAxS}cAnPgfA`LqhAzFy_AhAi_@Wcr@sAwh@oFos@yGqn@uHui@mQqx@yUuy@e^}w@ub@qt@_aB}vB_{@qz@icAcs@yx@q^on@}Ucy@{Sq_A_Su_AuVq~@w\\{dDm~AgaA{f@ej@g\\arAm`Asj@wa@}z@sg@o]mNoe@uQwk@eKcu@}Jk|AyHe`@oC_e@cF_e@gHmr@qRyx@y\\ev@og@{j@we@ql@ao@mh@yr@_k@sy@i^{o@q_@ct@uf@}iAoy@_pB{f@_pAq^_`A}^yw@ka@ev@sk@edAw^sq@yQec@cTyj@uPch@{YegAg\\kmAeOud@_Q{a@eYgm@qr@qlA{bAugBoPc_@}O}c@yNkj@mLql@{c@ojCwO{z@cVg|@cYwr@cb@g|@_dA}qBqd@yq@oFqGaY}\\gPmOgBaBgo@wp@kr@_t@aZ}\\gYm^gRqX{RuZ_PwWuNaXgVye@_Wek@up@{~Awo@k|Ay`@s_Aac@y_AuM}UkfA}aBsk@{cA}_@eaAwWc_Ai@iCiQcz@wgAazGAGqSsfAkVkbA_Ni`@_i@whAo]ok@gZs`@oa@sc@ed@u_@cl@u_@ar@ob@qg@e[a^uYuf@kg@ms@av@oo@{l@ao@qc@qo@e]sx@m[_n@eVgg@oYkk@ua@mc@sa@ak@eq@g_@cl@_[yl@kEwKcR_e@oCaJaL__@qNym@aBsIqFaYcI{k@cFwh@KcCkH{}Ao@ep@PyD|EqfA~KswApDax@j@q|@hDcy@vF_q@~H_`A~^_{DdHeu@|HgiArAmq@I}o@oCu}@{Ha`AuKmw@eM{m@_Quk@eSii@uUcg@u\\{i@_\\ma@se@{i@gk@an@aa@kh@m`@aj@sZyf@iRw]y@yAc^mv@s_@uaAy\\ugAik@euBsRkm@eVqn@wYan@ca@sq@qe@mo@miAasA{`@_k@q]}k@c[}p@iR_h@yUku@kMcj@oKcm@oImp@oFkm@qEgr@{Ayq@OymAxEotFfB{kAhD{dAjC{`A~OcoElBqf@lDgrAh@mi@Ge^a@yVyBcp@cDcd@kIgo@eJwj@a[kdB_l@auCwk@cjC}Tcv@sT_q@gn@mdBej@crAg_@}|@qwCceHw`@cuAyY{rA}RouA}G}eAkCik@_Ag\\qAiq@}@yo@aA_s@k@cZw@}TmHecAeQieAsXwaAcEcLmGuNaLyUeHoNqRm]gb@qs@wEaI{HyNwHmNeHuNsGwNmEmKmEcLgFaOeEqMeEaOcEuOsFmVeDkQaDwRcCuQ_CqRsBcSkB_S{IkbAiDc\\cC_SiCeRaM}r@eF_VqEcRuEgQoEwPiGgTeHuUsSuq@eJoZ}CeKuE{Mu@yBOa@eCyGqGeQiA{CuDeK{AiEum@mfBgNkc@mEsQqD}Q{CoRsBgRmAcOu@sMa@ePK{M?wM?iGrDgbCjC{m@hDs`@xBqNrCkQlDkP`FqQpJeYbIyQnGuLzH_MbJiMbJoKfJiJvEmExOsLxM{Izj@w[v`Bc~@|`@yThUeLdG_DrDmB|QsI|`@gQrVeL`YmNfXaN`N{HvR{LlXqQhSwNtQsNjV_TbL{KfVeVlUiWzUiYnYe`@lSqZnMsSvMqUlSk_@jRwb@nJ_VpJoX|GsTpK}_@hJ{b@zFwZ~E}Z~Jgq@xJun@jD}OfEgQjFiQjGqQfKsUxLeUdPeTtIuJbLwKlQwMrL}H`SkLnSwKpZoPl`Aei@`ToNnWuT~VmXlOmSjN{TtHeNnHiOfG{NhG}O~IiXrL{c@`EaQ~EaVfEyUxC_RfEuZhEe]`Fyd@lCa[nCm_@lCqg@fB}d@fBmm@bByk@lAsd@tAoh@rAkd@vAyg@rAyg@~@g[tCieAx@i[xA_b@rBce@nC{d@dDif@nCo\\zDmb@rFyg@bGaf@jGoe@hKuw@rGif@dGwd@bGwd@fHgi@`McaAbF{c@nEsd@zCm^|B}ZrA{SdBmZ`AkRzB}h@pB_g@@QnDay@~Ac[pCwc@nEck@tDi`@bGwj@jGcg@hEc[nGea@tGa`@fJkg@hJ{c@xH}\\rIk^~T_y@lUmu@bMy^`LkZlOq`@tO}_@r[yy@hMw[pI{UjMs_@`Lm]dIkX|Ig]tJe^nNml@jJ{c@tGk\\jK_m@tJeo@xKwy@|G{o@rE{e@lDwf@xC}d@zBwb@pDecAt@}\\zA{oAHsRGmSm@wf@qAah@sBkf@uB{^uEmm@cFaf@gCcSmEq[mE_ZcJof@cJsb@_Lae@ePkk@iI}WsGuQoO{a@mSck@aWcr@wQag@cOka@kJoWyJaXaKsXaKwXsSgk@ee@spAof@osAmOmb@}JiXeKuZ}E}OqFsRqDoOoEsTeDsRcCaQkAmJqB{SuA}RiAqTu@{VSqZF{UXuNn@cUnA{ThBwTJiArCoWvEq\\xFg]lEiV`c@{}BlLmn@nDySfHce@dGqd@vEqb@|CoZnDk`@vMadBtCg]vFqk@zCoX~Ggh@|F{`@nGk`@~Jog@`Lkh@fKoa@hP{l@tIuXbYy{@|Mca@~Lsb@tJgb@|Fk\\rDyWtB_SjD__@hA{TnA}e@Ng]Qg]_Ag\\iBo[yAuSkDm\\iCmRyCeR{CePqF{VwI_]gJuZgQ}i@sJyXsFmOcLcZeHwPoJgUuLcXaLcVuVgh@iYom@y]}t@kHyO{H}PuSmg@uFaOkG{PuGsS}GsTiJk[cJe\\y@yC{Mag@}Mkg@uNyh@}Vy_A{Nah@qSyw@_Vy|@aSst@__@}uAuMkf@oIa[aRor@}HwXqMy`@eKgXyKwWkIaQ{K_TiNgV{KsP_QgVaK}LyOoQkPwPsJiIqWuSqKwHgIkFiOaJiWiMuMiGyNgFiYkKyZkK_ZwKwWwKgQ{HkW}M{SsL}CqBkMkIq[yTsm@uc@eYaTsi@a`@kv@}f@sw@}d@{\\sRaWwOgFaDoSgN_KeHgNeKmYmUeKmImRaQoW{U}LkLc_@k^aScSub@wb@ub@gb@q\\{[qn@an@}lAmlAg[mZyT{ToWuW{[y[oScVeSkWyNkSgMaSeMgTkLsT}LkWmI{R_JqUgHeSqJiYyOmg@sLs`@aMya@eSkq@_Syp@{Ouh@gPcj@{ZidAqRyo@cPgi@eZ}bAwZidAswBskHac@oxAoZ_cAqMma@uIgXoSol@eSai@yNq]sMcZgRea@{Sca@kM{UmMwT}NqVa_@uj@cNyRqKwN{Vk[iNuPiOeQ{Yg[wJwJmZkYaQyOcPeNab@q]yQaOg\\mWo`@{Z}YyUyP}NcPuNuJ{JuOgPcJuKcTqXsOcUqLeSaHuLwH_O{KiToLcXuJuUkJyWgFcPuG{TaJo\\iBaIsD{PsJib@sO}s@iM_l@uRu}@yK{f@eWykAuMmm@eOer@cHqZkKab@aIoYiDsKm@kByFwPgNo^}O}^qPs\\iMqUgSg[kNyR_OgRcPeRqI}I{V{UgKyI_QyMuKuHaLqHgKeG{KmG{KmF_LiFcSiIsLiEgTgHu]sJy\\eIuZ}GgVaFmp@eN}VeGoT}F_MsDsSiHgYaMqX}NkKyG{IcHcKcIeGyFmGuGmF}FoH}IkI}KyHaL_FgIsFyJuGmMiG{MwFkNyFwO_F_PsEkPeFkTmEgT_FsZiC}QeCeRmD_ZmF{d@iFad@{DmZeEoZkHsb@kDsQyGeZyGoWiFgQ_FyOyIwVuFwNqGiO{KcVuLqUwGoLeNmTiNcScOqRwNqPgJuJqJeJqJcJkJwHyJwHgLcIaKwGcKiGiLkG}QsJaLqFqRuJkU{KeYaNoL{FcRiJaCkAkUcL}RuJwPkImFiCijCspAkGmD}EcCqOuIsMuIgNaKsMwLwJcK}NcRsKaPiGwK_JuQyGaPuG_RyDaMwEuQgGoY{C}RyB}PgC}ViBmYkAaUmAq\\q@ia@Ko^H{^^{_@~@_j@l@k[d@kc@Re\\KoZg@ud@y@kZM{CyAa^}Ay[uCsm@eGmkAkBy^sBcY]}EmK{yAeQmwAi@}Dm@iEiF_^}PkkAgG{b@_Jul@eBkMs@cFeOkvAcUexDwKmnD}Ps`GaHmyCeA_jAdAwzCbCwlA`FqjAtRyuCzIg~@lUoiBtO}bAn\\_fB``@_aBbBkHx`@{{Azw@}wCjd@uaBt]mrAp_B}aG~m@q|Bzu@igCz{@saCzaAk{Bp}@oeBlm@cfArkAcqBfe@o{@f`AgxBvw@ofCle@gtB|]ayBdU{|BhM_lCnC{tAdGo|HToZtAycBbDelExCapExAekBdD{kE~GgtFzKgbDtNubCfSubCzdAohKdu@qmHbTy~B`G_aApCsp@lAga@fA}f@f@_q@@yt@Wid@y@qh@mAob@qBij@aEsu@wFgv@eIgz@yJs~@gL_eAuFmk@iF}o@sAqUs@wO_Cmq@m@}^M{_@Jcf@b@{ZlAwe@DcBdBab@pCgb@xCs_@pEyb@zCuUpEg\\`Hia@rHm`@hIe^hIg\\fK}_@|IwYrKc\\nNua@tLs\\~Lu]pJmXpJiYrI{X|HaXnK_d@pEcUnFeZjGee@tCmXlDag@~Ai^r@cVXgt@U{^kAsa@uC{w@sAg]}Cqp@mEogAgB_l@cAg`@]gQs@cg@Uo\\KyV?wUDgn@p@_v@|@{p@fA{d@`B}f@dBu]pJgcBbSmbCjSg~Bn@aPpGwcBUalAqIylBgQa{AiYkwAg`@gtA_~Cg}Jc_BivEytAkdDyzAi_Du}@{gBay@sqBul@yqBkc@orBw_@gkCmQ_uBsIwpBwBacCfCgpBlDa}@nLw}Bxi@qfKlMgmEd@opEmG_aDaPybD{SsfCuYaeCy^o_CofAa~F{]{yBsMolA}HokAyBokAb@inAlFsmAxKyiAlQugAlW}fAx[ubAz`@{}@xd@ax@lh@or@`qBoyB`UgY`UwZvM_TzLqSdWwe@pN{ZxMqZ~IgVhIiU|HcVhIwXtQor@dWqiAdSe_Ajy@wwDdb@anBdIu[nN}q@xd@ccC`b@inCve@o_Ena@_`EnGs~ApA{`BcAst@cAw\\g@cO_LubB_Tq~A{Y}zAok@_lCa[coBcOg~AuI_gBeBmmBpD_sBlI{sAxIm}@zQssA~_@{lBzd@ciBdvB}{Hr@gCzc@klBbXiwA`PmjArLkmAbIqnAhEsmAnAcoAk@koAgCg{AiJueEiFkaBsMidC{Dsm@mF{q@iJqcAmI}w@uw@skG}IaqAkBenAdBelA`ImkAjPskAhUwcAjYw}@pe@}cAtg@cy@pmGqmJltAqjBhzAwdBbzFm~FxzAiaBly@sbAfOkQprCk_Edx@soAnzAyjCngEo}Hrm@qhAppAabCl{@wgBhcA}gChe@sdBfiByaI`Kwc@lJwc@xFwZnFu[nCoRzD{[lB_RbBoRvAqRlAaS|@}Rr@qRf@aS\\eSLqTD_QGkSQaS]_Sg@sRw@_SeA{RsBi\\_Do]uDa]gCoRuCiRiDkSeDuQ}F}XcFcT{EiRaFyPaH{TwLy]uGiQ}]o}@wI_VoJqYaGcSiDwMsHsZqCkMkC{MkIsd@uC{Pe@kDuAaK{AoNcBeOyA}NaBsRoBqZkAuUoAcb@c@}YS}WB{ZVkXl@wYfAqZlB_^xBuZlBmTpDo[`C}R`Fg\\lF{YpDyQrAeGfB_ItEcR~Ie\\xFwQnH_UzH_T|IcTnK{UfMyVrH_N|Re\\xNcT`OkSvOkSbOaSrY{a@hIwMvHsMvHoN~G_NhHqOdI{QrIoTbGgPtIkWpFwQnEqPxEwQjE{RhD_PfIac@lIcd@hHg_@bGgXpHeZhHuVfGcT~g@ooAneAwkC`Lu]|Ky_@rKua@jJsa@|Ksj@~EkY`C}NnAwH~Hsj@hHek@fP_tAtJgy@~Juy@vKey@tNgbA~QokA|RmkAfIyd@~Ime@vVaoAl`@giBpb@ugBlo@}bC|qA{oE`jCqoIbrAijE`o@ghC`SodA`RylAbNmiAxK_lA`IukA`N{vCvRgkDp_@wyDbc@svCdAgHpm@{{Cdj@myBnaAw~Cfx@csB`nAekCziA{qBpqAypBl_@gj@ncEqdGbq@abAru@kfAr_Bc~B|l@caAfj@ghA`h@ayAza@{aBjX_cBxO{dB|E_wAfAam@j@unA`@oh@bCutNiQ{jPaBgwBnAamAnFomAvRqpB~]{mBvg@wgBnp@k}Ap_BgpClnDm`GrbEieHv|AigDd~@}dCvv@gjCvo@umCph@otC`j@efEz\\}vD~[c_HfEev@zEi{@bJ{sAnI_fA|IqbA`TyoBrNshAzLo|@xLiv@j^usBdXurAdr@gyCpfCywJfd@kfBzaCwhJj{CogL||@wjCddB_|DtdCufErtCgqDnzG}~G~OkPhk@gl@p}@maAh}AmgBjNkQxr@y|@ty@qhArgA{~AhwBkkD|~AotC|~AigDdyAa}DjV{y@dV{aAhN}m@~Okz@jKgo@pIwl@nIsr@zF{k@r@cHlCk\\tIyqAzCwr@jCgcApAuaAFsp@yAw~FnFa_DnNwaCt[ovCf[ckBv`@{fB`l@qqBnx@qvBtmBetD~|H_lNfzE}_KxQ}]pRg_@vs@unAdd@gs@~|@uoAnnEc~FbcAwgB|{@spBjsAetElk@gaDnrAeoIhTmlAjv@oqDlKgd@rHi[tHwZff@}iBdJk[`m@}qBpNoe@t_AotCtc@atAtBqGfTop@@CrSso@dPah@~\\}fAb^glApT}u@`Tsv@pTqy@hXqfAjP{r@fMsi@rLai@zRc_ArOgw@~Nov@xd@clCfTgtAfKws@xJms@lQyuA|OsuA`OqvA|PkjBrGiv@dGov@~Gc~@fHqcAB_@fG_`A~Dgp@~C}i@|Cei@zFofAnFwfA~LuiCtJ{wBPiEzHkrBlq@ggPfl@umMn`@w}I~ZszD~YwfCf[osBdf@{bC|mCyjLjaFy_T`jCs{KdqAyrFxKqd@Rw@b\\}uAlz@{zDbLih@ba@q_Cz]c}B`OmhApYkaChVucChUuxCtPktCjRqeFnX_nIbRo|DpXsvDxXesCLiAvXm_Cd\\e~Bbb@agC~f@_hCjj@oeCpy@eeD|xAevFv`@sbBvq@uaDnh@gtCpbAauGf\\ajCrjAspKr_@uiD|}@gfIfq@}bGzVstBhOwjAb]c}BjR{fAns@gsDt~@c~DneA{vDfqCsxHvjDcvHzfDcsFdkF_~G|_Hy`IdfEi{GfvD_xHpoBq|E`dA}gC|gAmjC`eAaxBjtAqcCn|@iuA~zAmwB`QsVp_B_~BvlAomBtp@ikA|d@s_Ah_@i|@zkAa~CfiBclGxYiaAxiA_dDthBanEVo@ljDuaIbc@qxAbZg}AnOyxApFgtAx@oqAeKm}KeHeuHq@qrCpGayC~KclBxNi{AhXepBbd@e~Bll@cyBxf@exAdo@mzAhi@mfAjw@upAprAyeBhlB_lBznAehAtkAmjAzeA_rAh}@qwAbz@m{AldAmfCf{@quC~p@chD|Sw|AjJc|@|Kq{AbGsoAdIseEnEs{BbL}tBjRyuBfSqyA~[egB|a@igBxd@w{A~i@qzAv`BkoDpbE}jIrhBkzDp_A_uBtNw[rJ}SpiA}mCnxAcpDrxAqqDxr@uiBnV{v@b^q|AxUccBdImrAjCarAWkj@}DssAkJ{gAuOaiAcU{gAoXefAqt@uiCwp@ifC}l@kkCkTiiAq[ilBy`@a{Cs[ylDqAsNoS}nDww@}bSuIscDdDgbClRqpB|c@wxBdg@mwArp@{nA~{@whApR_TxbCmiCfeA{rAdo@i_A~k@uaA`k@mfAje@ocAdt@wnBpu@ijC`Tk|@jRk`AjMgq@~UgcBzZgaDDg@lS}|D~`@qwLxL}pCtCuk@zHubAfBsVhHyy@|Gmq@dYu`CbRopAxFc]dZibB|a@urBxKkb@nEyQd]ctAz^mmA|M}a@dK}]zFuPp]i`Ar\\o{@zGyOhm@{vAdo@quA`n@qwAvOo\\|n@wkBfz@ceD~Nwy@pF{]hTwiB`IqpAjHijBnDgkBu@_aAcBcaAiDs|@gFm`AqB_ZyAwQ}LgvAwM{tAu`@}bE{y@_tI_\\{dD{s@idHgE}b@sk@oaGom@atG{YopDqScjDkW{sFwCeu@cDyaAaPiyEiTkyGqLaoDsDkiAyNqgEwJiaDaBg~@C_a@Xs_@vDsdAlGez@hCmSzNmeAxVmhAvYuaAtx@_wB`w@ypBjo@}fBfTwn@~|@yrCli@akBrn@qpClZe`BbI}e@hH{d@v]ogCha@m{D`Q{{AjTypAh]_hAla@a`Art@mkArn@sq@h^oYxz@{k@hZoTfXiUte@ih@|U}\\fRu]rMmZbLuZlKu]nJi_@~U{eArReqA|Gkr@dEgj@`I}mApGugAjBqw@nA_x@Vsl@a@}l@aAc~@cBo~@oD{o@cEgs@{M_eBq`@ilE{Egq@oCmu@}A_jAdGgdBzDol@lFem@l|@soHh@oEb}@wjHr[amCzHyv@hEwo@lDop@Bg@tAyf@n@me@Eee@_@sd@q@{Vq@{WmDsq@u@kJ{Dgg@iE{c@wGog@yJcm@aQyu@ySwv@sm@qfBqNof@aKud@uFsc@cD_c@sAoYm@cYPa`@dBgb@zBwYr\\qrDvK_kAhL{`AbC}MxOa|@jU{z@`Qwf@bVsk@p[wp@BGx`@yl@nX}_@rZw]v\\yZv\\aW`}@om@dVkPjtAiz@tbCc}AxeAom@~PiI~N_Hru@qZfaAwZnXyGpL{CxKuBvs@oMlOqB`mAaPryAmQfk@yNbIeC|YmL|ZeN|RmMjQsMtQaNtOeNn^yc@|a@yk@zZ_p@jVwp@vUgw@lQky@rGah@|Gmn@xGwdAnGkqAzByd@lB}\\hDik@`Fwm@xT{mBrDiWz^sgB~BkKrM_g@bh@c~Ahm@muA`lBmdD~mBccChZi_@rkB}~Bpr@e_AvXsc@bT}_@z]u`AnMcb@~Kie@fM_t@`Fwf@xDyc@hDar@`Aqm@M{r@g@_l@cBwnAgE}jDTyt@nAon@bEyn@rE}g@tJgo@vN_o@lLab@xn@{mB|Ucs@~GkUhKy]tKuf@nHoa@n@qDvEaf@rB{b@PoRFiGUo\\iAyb@oBe^sH}{@mFgl@gEqh@qAu`@`@se@`Fci@vFg[dNyc@|Na[hRoZhVyVvE{ErWaShv@kn@pZ{ZxY_`@rm@ubA`v@srAjO{Sjb@{e@`g@ue@diA{cA`c@u_@zqA_jAf`A}`Apy@{dA|[{h@vi@ebAhb@w_A~gAcmCpxAgnDdm@cuAlV{h@rVif@hwAkzB|We\\vYo\\jm@yn@~RmSx]g[tr@aj@zlBwjAfw@_^nu@qWb|@oUds@{PhpDkn@jp@aMxl@gObw@g[pg@_Vj_BieAhl@k^bZkQfVcLrsAcf@ttBqm@lcAqUpp@{Inh@oCpm@qAl{@{C~r@uE|c@aIrfAs\\zx@eVj^yDvSs@jf@fCvx@bKx]`Cv_@?tU}A`QwCf^}KhXgO|TqPfVqUhRiV|U_e@xP_j@~Kso@fDmW~BaXdAoo@c@wm@yEmgAeBy`@s@_b@Vo]`BuZnCi_@bFk^dMei@pHuTrO}^zTu_@j]oc@rm@er@xFqGbx@eeAzV}\\~Vga@zV}b@vXkk@dHaOna@gcA`Qud@dJ{\\jJ_]dJs\\hLsi@vBiK`Ogu@dKwq@tOqkAzKejA~GmlAdD_s@|@cZhBar@tAgw@BgAv@i|@OytBsBegBkHu|CiLsnEeJmlCaD{`AwGkyBsIorCqe@ibOuHy`Cu@e^k@yXq@}_@c@cgAMe]Haa@Dm^r@{h@h@m[lD}lAbQ{bDn_A_fKrAg]fDol@xFmmAvBeqA|@opBcA{gAkBocAaGyyAwHanAcIa~@oDo[_D{YkXiwBc]_kBkJyg@mD}Qyy@inEqCiPcWwwAwVqaBsSi_BgPkxAcXymCcUslCil@e|Gk}AcwQsCoZ}v@{aJyAuPq`@crEgQs~BmD{n@oFuoAkAmwAb@qsB`Cmy@pFijAvHgcAtJubAbNmaAvRejApIyb@zI{`@|nB{{H`z@gsDdt@etDv]kjBfLqp@|q@gtDla@icCr_@ctBrk@}}Cvy@irDnSsx@fVmy@bfAscDz`@}gAje@sjAlmAcsCxd@wlA|S}k@|Rwi@pNgg@lLqe@`WgkAlScfApV_hBhHqz@bG_w@dMcdCzSc|EzMe`DfFimAhDsaAdBmqAKwoAiAqv@wCuz@{I{nBoZehGm@}Lm`@ylHw^otFmi@crE{y@u~EadB_`Jwa@_}B{]{gCcOspB}HoyBHiuCbFawBvVo}EtBaxAi@c}AgPutCgd@m|Cyf@ykBmO{d@eZkw@kf@klAuMi\\aK}W_Qee@_KqZaScp@_Jw\\yKgc@gQqw@aHg^wKsn@}Kas@gRkpA_QelAeRypAcNe`AyWajBqCmRaIej@gTizAoKot@wQ{oAcOmdAcZ_tBcZirBoNk~@yOq`AgT{kAqj@ssCkd@mzB}b@uyBgPs{@cDqQsMss@q[wkB}Wm`BuKqs@eMw{@yPclAsJes@mSk~AmSscBy[gpCiZ}iC{YihC{M{jAoKm|@yRecB{OayAsOm}AgJsdAoFyr@eFot@kH_mAmCef@kCkr@kDegAqCskAqAu}@u@abAKkQEwm@N}vAj@q{@fBwmAxDc`BtGcwBzGgsBrKy|CrLysDtEs`BbBy|@hAgvARsv@WeaAeCwjBuDgsA}FmsAmIiyAsN{wBcIcjAuOm{ByOe|ByR_pCuH_~@qLojAeQ}vAcJao@mSaoAoUinA{f@c~Bo_@u~AwKsd@_f@krBi[uvAg[k_B{Oa`AmCaPkQ{oAsP_vA{^aoDy[{tCaKox@}Mu`AiVk_BiW}bBuZspBoKwu@oK_z@{Hov@{Dwd@{Eku@iDww@wBmy@s@{v@Omc@Nik@rBwkAxCux@~D}u@jE}l@zH{z@rIey@jIqx@fPcjB`Fiu@xDuy@pCkeAd@}g@Tal@a@ow@kAwt@kDqaA}Eqz@iEwm@wE{h@_M}nAgSktBmHgy@mGez@mE}p@qD_r@gDcy@oBwn@yC_pAsAk{@_Aus@KgNqAk`AgA_bAm@ev@kA_|C?wl@@_d@Hwj@F_qAJgj@Fo{@KweAk@_xAgAayA}Cs~BgEmqBaGqcC{E_nBmGiuC{AmkAkBedCg@k}AAaeBb@mhBnCgqEzCepEz@}vAr@yqALe~@Qyu@sAahAyBkx@_GmoAuEar@cI}|@eMmhAuNobAaSiiAkQ}}@gY_sAg[uvAiXamAyYyqAka@yhB}`@qiBsi@{bCow@cmDed@}rBiP_v@qLum@{Lis@uJcu@iHss@yE{r@}Byi@{Ash@o@om@@{l@|@mp@zCy~@vEwv@lGyq@`KuaAzZopCv`@aoDf\\{tCpZ_mC~PgvAjTs`BjPyjAfTavAf\\wqBta@u~B~YkaBjWaxAh]mnB~]mqBf^mqBrZkcBpN_y@dMiv@lHif@hI{m@lJe{@pF}l@pH_fAjBa]nCsp@lB{p@~@uq@j@cu@Ka{B?u@i@_}BD_x@l@{v@pAcn@xBwn@tDet@bFou@vFan@vGmm@hGie@rH_g@`Hqb@|I}d@xNuq@zG_WnIo[rImZt@kBtg@qoAh}@aiBre@i`AxOke@fD{Jz_AgsC~H_XdIeWnHoU`Nig@`Lid@dIe]jHi^vIwd@zJml@zIen@vH}k@nFyb@pC_UhIgr@`Fuc@dFie@zFeq@xDck@hCqj@vAoj@p@up@Cuq@gBidAiCyl@cDyh@_C{X_L{bAqMw{@gSqbAgSsw@_Qcj@uWis@_Vwj@uIsRo_@iw@q_@{u@uq@cuAee@i`AoSab@_u@q{AyXwk@gMwXmCaGyTsf@o`@_aAa]i~@}Ssn@eSun@uXe~@so@{{Bu]gnAgb@svAoTgr@gDoKcYcy@iMo^s[q|@um@}yAcXcm@mKoUs^yu@sYuk@gVmd@cv@isAit@akAic@mo@il@ey@u`@_h@g`@mf@ul@ar@w_AubAkaAc_Aa`Auy@io@wg@qu@}j@ycAcr@o}A}}@muAgr@upAcj@}}@u]}rBes@ypBup@aeAs]szAcg@{zAcg@ipAmb@}dCgy@{o@kUeZcL}RqI}l@m[k\\gTcTuOmY}Uu]c[y`@{]oc@}^yd@u[o\\qRc_@yQec@{Pyn@}QcYoGc^uGkc@iHqg@eIeZqFoa@{Ied@}Mgc@{Pga@{Sc^gUiYoTks@ao@_^i\\}]y[m]yYoY}Ta]uUoXgPi`@iSg`@{PcYiKoZcJo_@sJ}b@wIaQ_Cgc@_Fc]gDwpAwJqiAkIw[cCc]mCsm@}F{XsCsYwEwSmE{\\{I{L}DaMwEgViK_VeMmNiIa]qUyEaEcVoSwBwB_J_JsG_Hec@ue@mRkUuh@{n@cZi`@mK{N{NqUoMsUcNcXaVsh@eT{h@mZwx@gqAelD_GaPigCi`HKWem@iaBie@_pA_oAmhD_Z_x@gEmLi^aaAcp@agBms@mnBi]g_Ak_@ycAih@cwAuw@}vBck@s|Aq[o|@uPyf@aXo~@aQcv@aJwe@kIwh@kH{l@oI{w@_Gon@_Ic|@iIkw@gBuNeCaSiGcc@sJuh@eIu_@gO{m@qMoc@cMm_@eXwr@ca@e}@mYml@oa@az@w[ep@mw@g`BcqBmbEinBc}Dox@uaBcrAwlCwoBi`E}}BywEmzB_rE[q@yrAmnC}Oa\\idBolDmpAijC}hAg}B_o@}pA}yAezCgzAyzCkdBqmDmi@sfAkDeHq\\}q@um@}nAe[go@_h@eeA{f@}bAuJaSmc@o}@_j@shAekAacCum@ynAqk@akAw`Cm}Eu|@_iBubAmrB}dAewBscAotBklBuyDakAmaCqjAq`CoT_d@cnC_uFg~BayEqm@wnAkHgOqQg_@cG{Lg]qp@ik@smAkKsSaVyf@y`@_y@{`@ky@ohAe}Bqi@sgAypAwkCwhBetDkyAizC{hBitDo{Ag}Cce@a`Aev@}}AsAoCgWgh@u@{Amt@{yAib@}{@yDaImEkJqc@w}@gn@{oAo^iu@mrAwmC_~AqaDe{Ai}Cg`@gx@ub@s~@_rAswCwx@obBao@oqAqt@_}Aw`@iy@kdA}uBgfAkyBenA_gC}a@uz@{]_t@g^is@gb@ay@{k@}hAyaB_bDet@}xA_t@ezAkdBemDgCiFogB{qDg`AkoB{IyQ_Po\\goAajCqC}FaG}KkL{UcNiY_^ct@i^it@md@}_Acz@odBe|@ghBs]ws@q^eu@gu@c|AmYol@sQ}^aSka@gw@u_B_f@gbAmj@uiAys@syAmr@awAqs@syA{a@c{@ajAa`C}a@oz@{u@e~AyBmE_[qn@aj@shAa^qu@i`@ax@yWui@aUge@{N{Yq\\sq@cWkh@{Rya@mVcg@{eAszBg`@cy@u]kt@m@oAoh@ygAkc@k~@oTcd@aWch@gv@m}AYk@_nAucCmBwDgL_UyzC{jGeGoLgKmTeq@wuAeg@_cAmYao@_BoDeScd@_v@yeBoGqNc_@ew@}c@}~@{k@ylAyHyO_Ps\\iLyU_Zqm@qYsl@_w@a_Bg]us@y^gv@ah@weAic@w}@wEsJaJ}Q_Rw^{l@mmAyC{FeKmSo^qu@am@omA{`@ex@aVse@mP{Y}[ei@_Vg^mXa^eP{RcReT_VsViYcXwX_Vk\\iVe[{Se]_Ssi@cXmTcJoRqHwf@oPk]gKwb@}Lkz@iVe|@yVskAs\\cr@uRoo@yQscBcf@uJqCsjAg\\o`AsXisAua@ocB{j@c_Co{@mfBss@ebBas@c_Aea@ieBuu@qRmI{o@iY{aB}q@iYwJwcAi`@e|Aul@gq@cWiu@yXwCgAif@mQmbAg_@sdAo`@}g@gR{]_Nc_Ag^aZmKkVaK{w@kZwbAe_@iiAob@ek@aTiw@gZm{@w[}`A}]of@kQyg@{QokA{`@o{Asg@u}@o[}j@{RmWyJij@}Sui@uSiJoDur@gXqx@e[kn@oUkr@yW{xAej@yn@}UopAcf@im@aUsk@mTm^eO{a@yQum@yY_k@qZcc@yVcm@__@_g@uZgi@k[cc@aVca@iT{r@w\\ys@u[eq@mZydA{g@_vBohAgxBuiAqf@kWm{@md@igAuk@ymBkcA}bA}h@sdA_j@}u@}`@{`@}SaVkMmNqHof@qWkUoLsSyJga@gPq[{JkVwGaSoEi_@{EwVqBaYeAoWQqU`@kc@jCc`@lEoaAvOsaAxQirAzVqhCne@_W~E{~A~Y}aBzZyn@nLaq@bMo_BpZ_d@dIe]jG{YtEeX|CyU`BsXbAwVQKAi\\oAaUoBeWgEuWwFeXoIsU}IyUsL}YoQkWgRkUiRyXeW}h@{f@ywAatAyv@ct@uWcVy`@a]oZcV_\\gU_BiAkXgPuScMsn@a\\mr@}\\cw@w_@ex@i`@{cAcg@ca@_Scv@c_@_k@yXmi@yWck@wXea@}Rwq@}\\s_@}Qq`@cSuTmLa[_Q{^uTi_@}W_`@{Zoc@i`@}VwV}[k]ud@yg@yWkZwa@ge@mk@wn@mVwVsd@ib@{c@}^{b@c[{d@yYck@e[uc@qTqx@e_@qk@kWwt@}\\kq@oZgn@aYyi@qV{e@mTw]oPkq@a]}]qRgP_KwXiPg^oUeXwQkZsTaWyRsa@w\\e^a[a]o[{\\q\\sYoZeXkZy`@_e@wXm]oUmZmY_a@gS{YeMiRiFiIiXac@}MoU}Uya@yZwk@qn@mpAg[or@a\\ev@cPq`@kHiQcp@g{Aae@_kAmA}CqRee@}Qyg@u`@qwAuSsi@{KoXmQk`@eCsFm^_v@wcAouBsRy`@wn@evAoC}GwOa`@}Tqi@ca@qaAmWmn@yi@{qA{Uek@e[au@}m@qzA{Poa@ic@}dAwSof@_l@urAcU_f@yVih@q\\{o@a`@cs@e^gn@ur@eiA}b@yo@ia@mk@ib@}j@mh@op@cu@s{@wa@}c@ad@wd@ue@ke@c|@ow@_}@iv@ez@{r@ei@{d@_Z_WopAcjAwd@mb@eh@qf@wi@ii@sN}Pi^e^yi@ij@qc@gd@qm@om@iNkMwWmVai@se@sh@oe@ql@}g@eZaWy[wXuv@{p@{s@wo@}nA}iAs~Aw|AoQiQq[c\\ih@{i@qSgT_uBa`Cst@iy@w\\y^eYyZyt@qv@}v@sw@ak@yj@yQ}PkXuWwl@mj@gm@}i@un@kj@e@a@qYuV}b@c_@y\\qXqm@qf@ww@}o@qtAukAgSoQqT_S}q@yn@eNuOoeAmbA{m@io@}o@{p@e[o\\sy@a{@oh@ii@aZsXeRiOqUcPsNyHkP}HoPmGyOuFo[aJoY}Gwb@mIcVaFqn@mM}_@{Jm`@iHoNoCaIuBkGwCwFyDgEqEaDaFoEaJiDkLqGib@qBaLiFaOqP}hA{Fe`@o]m_CaB{JaCyVcBwT_C{\\iDem@sEsq@{Ee|@cFc~@cGyeAwGoiAiDsj@_BkR}B}RiD{RoEmRqEcPsEyL{DsJqEoJkFaJwDsGoH}KknAujBsVw^kIcMmQ_X{OqSyLkQ}IwM_HkKiTy[sIuNwFkLiDeJeDwJ_EmOuCwNyBmPuAeP}@oVMuJ?gFJsFj@iNtA}QpBwOvCqQ~DoQpFmStNui@~Io\\tQcq@zNci@nNsh@rWqaAxP}n@|Je_@fIsZvKaa@pIg[`FcTtBiJrBgLlDcV|BmSbBsRtAcQ`A}Rj@gSj@uSb@cSd@sTlAuo@dB_hA~CwaBnAem@v@}i@V}QTo[C}Ps@eX{@cPeAuNyA_OsB}NyC}PwDcQmFgRyEkNwGyPcHgNkHcNgFeIcRo^gHmKcEiJcE_K}DuM{BaJmEuOiD}TwBkTiAkQo@gPOiN@cMV{Kd@eO|@oPdBuPvA{KfBuJpGkZ`GkR|@uCfG_SvXoq@|h@gdAjY}j@~\\_r@fo@gqAx[{o@zJ{Qb^cs@fImOdg@qbAhTca@pXwh@nY_h@hZ{f@l`@mm@dl@az@nOgTvLcPfSoWt[mb@hl@gx@zx@wfAda@qf@zHoJdH_IjJkIzJkH`HmEnLoGxLcFrQqGpq@}Udr@yUlOyI`^aM``@wMb`Aw[f^sN`HkCxQsHn[eOvWgMlKgGlY{QfV{QjWwRfQ{Ohk@}c@nGkG~YiWhx@wt@dj@sf@|d@wa@xc@q`@jWcUjP_NfSqNr\\wQfW}N~LkGnMqFrYaJzQiGbQ_HxTaLhSwL|R{NlHyHfI_LrD_HbEyHtIkQjGyUdEoWtJ{UtJ}QdIgMjKkN`OkOzr@op@b^a]p}@_{@|aBk}AtzC_tCrqBqhBx^c\\nqAuhAbfAu}@j}B{iBxpAyaArsAgbArw@}k@lg@k]~o@md@bfAor@~nBorAbnAuu@~xA__A||Bk|AjuCyqBtiBsmAjy@si@daDkvB~|DmjCfvBivAdd@kZhd@oZjpAm{@t}DojCnzC_qB`dAgr@`cAar@fnByrAbhAex@~cAat@r~@wr@~m@ae@nn@cf@b|@mr@ba@{[hQ{NhRwOfe@u`@p~@}w@hy@{t@hd@cb@~b@wa@h`@g_@nm@im@`r@sr@zv@ey@rE}Ett@{w@nbAifAtg@kk@bv@_|@`uAmbBvi@_s@jjA}_Bvt@aiAly@{sAxr@aoAjq@}pAxj@yjApa@i|@bb@aaAvpAyaD|o@kcB`dAsmCds@sjB`d@ulApJsUpTak@`Qmd@@Evr@uiBjXer@n_@acAj\\sy@ja@udAh`@s~@zc@sbAxb@q_AxYun@z_@_x@ha@ky@pd@s}@|p@mmAp{@u}A|i@g~@DI~l@oaAtl@__A~n@m`A|l@s{@nl@iz@ds@k`AhYi_@rWg\\hc@gj@rm@eu@zi@}o@fj@uo@dDuDpL}Mjb@kf@dZe]b_AkeAdcA{iArPmRfUoWdp@uu@nXc\\b_@wc@lgA}vAve@{n@`~@msAz_@ml@b_@em@xRw\\dZyg@r`AygB~gAy|BlYuo@|Usj@`o@i}A`e@koAxZy|@vLo]bAuCv[ibA|Yu_AtMeb@phA_uDxHkWhZwbAjm@crB|^ioApZicAjSat@|Mad@~{@svCjm@koBpLa_@~\\}eAnh@uzAdw@cwBhw@wnBxX}q@jb@abA~cA}|Bre@gbA~Uif@r_@{u@fY}i@tB_EbMaVnRi^bhBu`Dj}@iyAp_AyxAxiBgqCn_BuaClv@elAz@uAli@k|@jr@yjAt`AkdBx{@ehBvh@}jAfd@qgA~fAcsClf@mqArh@suAz]k_AxJ{V~Lk\\nBiFld@}lAh`@mdAbLeZfVgo@v]acAn]qdApSep@~R{q@vRkt@nMkg@`Mih@rNgn@tO{u@jMer@tVuvApMu{@xNwfArHeo@lJ{z@`G}n@pDka@pCs]fKqzAhHciAfFaaArDyv@hGyqA`HyoA`He_ArHgu@pJay@nNuaA|N}x@dOwu@rTe~@xO_l@bSyp@jUcq@vWer@z\\qw@r^qt@~a@kw@b_@kp@~^wo@bn@wfApmAiwB~eAqkBfn@yfAj}@c`Blh@{_Arm@mkAj`@ex@za@i}@be@ugA`d@ajAdd@kmAl`@miAz`@ekAbbAitCd`@eeA|Pmb@|q@y`Bf`@i{@ph@eiAthA}aCbb@g_AxRgd@dDyHzOs`@rp@{cBr\\g`A~Zs`An[ceAhOgj@dPem@nOsm@f_@__BxWcqArR_cA`]mlBr`@k}BzKen@fMon@|Ik`@~O}o@~Jo^pOsg@vPog@jRsh@v`@e`AzBgFjXqn@|Wqn@tRqd@p\\e|@jRak@`Pig@dQqn@tNuk@jLwi@lRe_AfOu}@xIgo@dIyq@hGco@vGc|@zMkmBxO{~BrJalA~LklAbMccAdOgaA`SwiArKmi@zLwi@pL_f@zAgGdVk~@rEaPhSop@fMo`@jOu`@j_@ubAz_@a|@nRu`@~i@ghAta@kv@fa@iv@fp@}mAf~AcxCf|AcxCllAaaCtkAkeCl{@slBjt@acBnf@wkApd@miAvy@otBfdAudCrn@gwAhs@s|AplAgfC|`AemBbdAcpBzhAutB|yAumCtqAw~B`vAigCxnAqcCfy@agBdp@eaBfEmK|Zkz@b^udAvr@e~B|c@qaBn_@s_B~EaUfJqb@hNyq@fZo|A`j@euCzc@q}Bhe@{yBv[mtApe@}hBnf@uaBjtA}bEhs@auBr^whAfR}l@p\\}hAxS}t@rc@}eBz`@aiBx[yaB~[coB`XyiBp\\qeCnHyl@~Eq_@fKyw@l`@qwC`Ne|@tM_z@`T}mA`Oev@zMmo@``@}cBpKgb@bJq^h]_oAxl@{lBh]ecAjb@ciAnl@qxAx`@m}@p_@mx@jYkl@fe@}}@dY_e@vf@gz@v^{m@f`@cn@n^qk@`CuDnYyd@tYae@fg@ww@hj@_{@~{@iuAx|@kyAvl@}bAzkA{|Bvd@{_A|a@g~@dZ}o@tV}p@nc@ujAzb@wnAhb@aqA~B{H|CcKpOwg@fd@acB~Sex@bPmq@|P{u@nQoz@zI{b@nL_o@fPq}@nNo|@nVacBnRwxAdL}aAbKccAvKalAvJkpAdJquAvNkrCtHwdBpU}lF~JkiB|HcnA|Goz@`Ges@|Ik{@`Gqi@zIwt@hMwcA|@qHzQ}kA`TcpAhNev@fSubArYkqAp\\}rAn^_sAva@gsAnPkh@rO_d@zMe_@`\\u|@ba@weAd\\_z@z}@g~Bzl@y{AlnAk~Cb_@s_Ajh@crAp_@k`A`\\{y@t|@c{Bbq@gdBb_@q_AjS{g@hhAmrC`hBwrEhU_l@xq@ueBxi@auAls@{hBlaAkdCly@wtBrw@iqBnr@}iBl\\q~@jg@}yA~e@c|Ala@evA`Twv@lMgf@vUa~@jl@g`Cdr@_rCpz@uiDll@a`Cld@ojB`\\cuAh]w{Ax[c|ArXgwA|Os}@fUavAvSkwAzEy\\~D_Zh^_nCv^usCn\\keCrf@{gDpf@uqCbd@exBjl@ygCxb@gaBhc@s{Apj@ohBxf@e{Avg@gzA|g@oyAfe@itA~g@g}Ad`@alAb^ckAfY_dAhXubAtPer@bTa~@pV{fAxd@g|BzRmcAvBgLxLyo@v@cE`]ojBjS}gAt]mgBhQc{@xQ_y@zNsn@~Omn@fNmi@nMwd@z^coA`\\_cAtg@gyAph@csA`[sv@f\\}v@|Pu`@hb@aaAj[mu@zZyw@zPmg@|Nwd@jYycAfNij@lO}s@nJ_f@tM{v@jIal@~Es^|J}~@bHey@nEqo@zCsl@pC}w@~BunAXyvAkA}iAwB}|@gCgq@}G{jA_O{lBeOsmBmH{hAqEa{@wBcn@i@uOmBmt@iAmx@]_|A|@oqAfC_rAtDa~@|Ey`AbHwaAlKcmArNqlAfIip@`QwpA|uAo_Kfz@kfGrAwJbHch@~`@}vC|a@ayCf_@}mCrd@efDfTaaBrNokAhKweAjI{bAzEyr@bFw{@|EekAbEmsArB_zANa|Ay@a`BiBkiAuGcuBkJqaCmFuuAkE}sAkCetAy@my@O}lAJyh@l@}m@p@mc@pB}{@zBcu@`Dqx@hCmd@jF_z@zEgs@l@yHfJogAdNk|Ad\\kuDbLsqAvFom@~J{gApKukAjKgkA`Oe}ArFai@|PkvAbJyo@bPcfAlL{o@hN}s@~VqiAlUo_ArNsh@d_@yoAf[a`Axb@qjA|Wsq@|h@skAhWai@lk@ggAxTg_@jXed@jQwX~N_UxLwQhXu_@v[wc@fe@so@d}@mnAhXu`@vYge@b\\ol@nX}h@vZuq@ja@ubAvWwu@bPgg@tM}e@fZikAfNqo@xMcs@pPwfAzJ{v@~JqaAnGww@lAkPbCya@xCkp@rBaq@rAiu@|AmhBjBedDzAwhDjBcbClBu|AxBadArDabAjEc{@dB{\\dD_g@nDse@dGsv@xGkp@jImu@rIcp@`Mk|@nRgiAnKuk@`L{k@bMwk@dl@ogCrm@wiCr`@uiBf\\o_BfBwIbXqaBtU{~AtIqp@bLqbALgAtLijAvWktCd_@ukEj@yGdNevAjEmc@|LekAzIgu@pQqsAtGae@dKiq@hR}iAhW_zApRmfAhLao@|QcgAnMa}@xG{j@|Fkl@fGet@bGq~@~Dc~@jB}s@rAm|@Puv@Mgo@gAeu@oBex@qD}w@wDoq@}Dsh@cGkq@iGsj@sImp@wJuq@aKen@qL}p@}Hmd@iKmn@wG}b@cF}_@kEu^uFkl@iDyb@_BuY{Aw`@oAqb@k@kb@Ikc@Vuo@lAst@l@yT`Cwj@pDok@|Emj@xCuYhFub@hH}e@~Hed@jJ}d@lQgv@tO}m@zL{f@hMah@rM_m@rOsy@dHia@~OqgAlKk~@~B_UxEyi@lEup@zCoh@|Bmn@nBws@vAcbAJi|@Q_o@_Bcz@}Byz@oCyl@iCqb@yCab@kGcx@mFsn@kF{l@eC{XsFwn@}F}w@oE{r@_Dgx@uCgiAeAc`AK}aAZ_h@tAip@`D{z@~Csn@hFgu@jFao@|Io|@tH{l@fJum@fO}z@jOst@lMyi@pQ{p@dOih@zP_i@zTwn@dc@yiArVco@pS_k@dLg]zM{d@vNaj@pNkn@xJ_h@dI{h@vHsl@rFoh@hFuq@jEmt@~Cor@~Bq}@|@ao@F{b@Ua~@y@kq@uBmy@wCqu@kEus@yFez@_Iuw@_Gkj@gI_q@wKcw@_Jao@{Img@iJ_i@cLql@kL{j@eJ{a@kNum@}Myh@uOak@cQ_l@_Sco@uN{c@oTan@yRqg@oTai@_Pg_@{Ne\\_P}\\eOi[uIiQgCaFqTwb@o{@khB_Xil@u\\qt@sBgFyVwt@cQwl@uP}o@mNon@{Kyk@aLcy@cGgg@mFaj@kEqj@iBe[aDur@mBu_ASoZEql@d@sh@nAmp@hCuq@nDeo@vEul@jI_`A~Io|@hLwkAxP}eBxb@_kE~Z}`D~MurAdMamA`LwbApLmaAzJgu@nK_t@|Jop@`Oq|@pNwx@vQq`AtPow@dMwl@`Raw@zTc~@pUg|@tPim@jD_MdWiz@pMka@pSin@hc@coAln@wdB`{@_{Bnq@yeBhw@utBbm@o~Atq@chB`g@}sAvV{q@tZc|@`Vot@|Rqn@t\\_jAxZojArZkqApXohAhCiKr[}aBdUgpAlUeuAj_@emCvOeqAdJw~@xDoa@tDse@nDgn@bCql@`B}aAJig@Ogf@u@kb@mCwv@}FgcAgH_z@cNsfAoJil@kL}l@iLyg@eOej@aR_m@a^cfA{[gbAmS_s@iRst@cNan@wKsk@sJ_l@qJeq@sHwl@eFcj@mFkr@_Fmy@yCat@}Aku@y@qr@DwfA`Akz@pByr@nBsd@nCug@`Ekj@pFum@jH{p@pG_g@|Jip@nM{s@rLwi@tWsiAnk@ezBxk@o}BrRuy@lHe]pK{k@nIgh@nImn@~CiZ|Geu@nD{g@jCan@jBai@bAcn@Jo_AgAa`A_Bul@mCal@uDoj@qFwp@{LciAmFoa@uUwcBaH{g@uKew@iHai@oT_bBkKi_A}F{p@yEoq@aDio@sBwn@mAik@c@_`@G}j@Zqo@hAkt@pB}s@jDyp@`Emn@nGku@`K}}@hS{aBnJew@xIkz@zD{e@rDmi@~Cms@xBaz@b@ar@Kks@w@sm@_Csu@oCiw@qH_xAyGkoAcGcnAeD}v@}Co`AoAur@a@uq@@ku@\\um@lBm{@lCor@rCug@`Doh@dE_h@lFuj@dHeo@dJap@fLmr@fJof@vKsi@xOyp@hSeu@dTir@hWat@jUkk@dRoa@jX_j@pSqa@xi@saAl]{l@|a@ms@~\\qn@hOc[dVam@jOaa@nQmj@hR_q@bNel@bPuw@pLcu@bHil@nGqq@vGk}@|Csv@zAmk@Rsg@Hib@s@ul@aA}f@uCgr@yBwe@gB{UqDsg@iI}v@iHyn@kL_{@uJgo@cYogBee@mlCmXizA{RyeAkXa`BgMox@yMk}@yLu|@oKo{@aI_v@sHyw@gDuh@aDkh@wDqx@MqCeCgv@mAco@o@el@QegA`@il@x@}o@bByu@vC{x@jEs}@tFe|@lG{`AdIsnA~HcjAdMkmBnEax@zC_x@zAmz@Fmr@g@o{@wBa}@kFufAaI}lAiFst@gGccAcCqo@kAuj@m@eh@E}c@f@oo@nAop@rB}i@tCof@xEqp@rFul@nJ_y@|Kc~@|LodAb_@e|C~Hws@tFao@lEgq@xCun@rB}q@x@qq@?ix@q@aj@o@kb@mAe]{Dmw@wHqhAyOutBqEmr@cBc\\iCyy@iAuj@[{j@P_h@l@ol@hBsp@dC_j@|D_m@hD_c@`G{j@jIep@|Lkv@t`@gzB|QgcAzNyw@fBaK~DyTjPq_ArK{o@bL}q@tL_v@fJgn@hLky@dLc}@vJgz@lJc{@vNiwA|KsmAjFmr@bEgj@lCoa@xKmhB`L_dCdGadBvBqw@pAsp@jCscBr@{_Ap@i_ABmfAIsjAs@uiAqA{lAuAggAyAqs@wBijAmCqbAiDafAwCcw@uCoq@e@}KuHk`Bm@_KkPopCyDyo@gLyaB}LibByKexAqNqiBmCm^iIsmAsEyr@qEiz@iFemAwAa`@sAm]kByr@sAys@{AupAi@saASgvAHmuC\\isCNcdC`@g~Dd@apGn@e_H\\a}CPudCBmZHkbCM{cCo@c}@o@_|@yBaaBcDmnAaEewA_GqaBgJmyBeFmoAaEmoAw@ce@o@wc@_@_z@Xkw@nBegAbAe`@`Cgj@jCug@jFwv@rGgu@bKm_ArLa{@dNk|@rUavA~D{W~b@yiCZmB~PwlAzNgeAvMwhAjMmnA|JwfAjG{y@fGy_AbG_dAnD}y@nCmr@hDesAvCw|ApB_wApD_lCP}LzAyq@|Bmr@`D{l@rFcw@dGcn@fIsp@xJqo@fOyw@tOcs@vJe`@nMye@lMic@vXw}@lVgx@nE}NhXu|@n\\ofArl@_nBtg@obBpdA{gDbxAgxEvQem@tXs}@`Nuc@hi@yeBtlBoiGlcAcfDbaBuoF~Suv@lNcm@`L}j@vJqo@fJwv@fEke@nCca@hC_n@zA_l@\\cl@Wyn@yAip@uBqg@QgEkDgj@mE_g@qHim@sJap@gOav@cNqj@aOmh@wPug@wSwk@o\\}y@ad@akAiM_`@}Js[oLsd@kOyq@gLoo@cIwj@oG{m@wEkn@aDkk@iBcp@q@mh@Fgs@vAg|@bC_y@hDadAxBoaAn@cm@Sqs@eAmm@cDau@iEyo@iG}r@wJqy@cV}mBaUglBq[emCsTimBee@iaEcTciBkJix@uGcp@wE{k@oCse@iB{i@eA{k@Jol@lAuk@jD{v@rFkp@jLuiArOcxArHc~@bEmn@lBcq@Vcj@Qkq@_Bcl@_Dgk@wFgr@gJev@aKcp@qJsl@wJwl@{Jqq@iHoi@iFwj@gFu}@qBgv@Acl@j@gm@bCio@xCee@nGiq@`Iqn@dJsk@~Gs]rLig@dK{[pF{PvM{\\lOu^dWqg@`Xed@h[wf@|RqXb}@m|A~L_VdTge@|K{XfMg`@pQko@jH_^lNsu@jJqq@dGgo@bFgn@`GceAhNibCbDek@fJk}AtFkaAnHaqAh^ckGfNydCvN_|B`@qFvCga@tGwz@pF{r@dBwQvEkk@jD}`@jImaAhYgbDnBaWbBgX`@sWF_Yw@kSkBqQmCmQ_FuTuH}TsJmR_OqTqRgQmQsJ{NiF}L_CoJy@mNMwP|@cJvBaDh@aOdEom@xTmX|FaRbAePo@gQoCaT{Gka@kVe}@kr@{[mPeJwHsRoOg]u]qIwI_N{M_NcNm]y[s]e`@{W_\\a]wc@cOyS{Xsb@eRyWaX{b@oVec@e\\}l@qa@o{@uV{m@yQkg@mNkc@qLoa@qLgg@}GmYaZkzAgGoYaX_tAuYuwAiBiJssAc}GsAoHs~Aq`IuFiXkhAutF{Mer@oiC{qMyKwi@}Imb@sMqn@_Hg\\yFoX{e@qtB}W}fAkDkMaSgt@sZ{dAi^yjAix@o`CgYox@}Nya@kZgu@gIwUu[c|@{Sqk@eXsy@qc@wrAaIcWyd@i~AcRcs@{WmdAy\\awAyVmgAcZsqA}ZqoA}XefAyw@}pC{b@{sA_IeVmOwa@yZ{|@qf@}oAqUwk@eQ{a@}h@clA{m@mqA_{@oaBy}@}_BkU{_@cu@mkAa|@ypAy_A_pAsqAs_BOQwsAoyAar@cs@}XkX_ZiYi~@ky@sn@ij@wpBoeBcu@{q@{t@ss@w`AgaA_~@qbAisAivAwf@{c@kf@m`@_h@i_@on@g`@uJmFo^yQsl@iXkb@uP{f@}RiYwK}SeImCeAgJwCosAce@miA}`@ou@_[{a@sQwRiJgVmLs^kS_YgQoW}Pyf@o]eu@ao@kY{X_QqQik@yn@uf@uo@qa@cm@ub@ir@_]so@uSga@oSad@_Ykp@gQoe@_FwMsUot@_XibAqG_VuTe`AoNyu@gQufAaFw^gMugAeCgWcC{VkFcn@qGc`A{ImyAkUikEc^gzGsLioB_F{n@kBsS}Ekh@{@eJiQmbBuOslAiQwhAaU}nA{UojAwT{`AkUo{@_Uww@kUsu@oTsq@}JoXcKwXil@mxAcj@glAwk@miAoY}h@q]al@e|@erA{gAcxAmx@i`Ay}B_hC}iCmtCsRwSkSsTieCwnCy{B{cCacAyhAct@mx@ctAm{Aky@ubA_r@a|@iv@qcAUY{r@aeA}uA{yBwxBwnDw}@wvAys@}eAaRsXoTc[qUs\\cCaDee@eo@ak@oq@s[_`@wlA_rAoZiZuUuUgt@eo@{UaScn@yg@{pAq_AaoAey@mgAon@ufAej@yjA_k@{iA{g@yvC_pAsYwLuo@uWojAyf@ojAuh@qjAij@waAoh@_Q_KsT}Mg}@sj@uo@gc@{dAmx@yy@ir@_gAidAugAikAgrAe`Baq@_~@ye@qr@gSi\\gc@er@mk@gcA_j@geAga@a{@ui@}nAsPsa@wW}q@gf@orAik@ygB{d@saBqh@qwB_Pau@_Oyu@{Ngw@qMkw@uNy_AuGke@oC}RqCgReC_QmBiReLyeAi@oFuDg_@_Eed@eHi}@sNoqBoEyp@{Bu^qCad@oHmnAU_EoNseCwFy`AcL_cBqFqs@aLwuA_I}y@yM_rA}QsuAaNmcAqPkfA_Pa~@s[obB{O{t@yZgsAiSgw@eb@u{A_\\ydA_Vwt@yX{w@ic@}lA}b@qdAcaAgyBqY{k@kpC}|Ek}AcfCa_BogCcKsO{Vk_@oiA}gByxCuvEap@kcAqeCi{DmJcOiMcS}hCk`Ec{GkmK_vAmyB_|@szAul@ieAy]kr@uZis@iYor@wUon@cXyw@}d@ixAyRux@yTg_AsLgj@iF_XsHgc@sKql@iGs`@g_@uaCsOmfA{ZszBqeA}kHwMg~@qv@erFeLwx@o`A{|Gar@yxEeQedAgSilA_\\mxA{Rwu@{Wc|@gc@mmAoa@acAmr@{tAuy@qtAwl@qw@}j@as@aOeQma@ac@wi@}j@_a@y`@o^a^a~@y_A}i@el@_SoUqNyP_Zw`@mYy`@IMe^ui@{^sm@iFkJwDyHgWme@cLsUcD}GgNe]yYor@}W}u@wPgg@yOsj@{Ua_AiKic@yH__@cJyf@}DoTwFa^gEcY_Imm@sEcc@eGwm@mHi`AgEcv@{Bug@aCo{@}Ae{@{@{x@mAcoCk@qhBcBkrDEkLe@inA_BgwCwB_qBmBy{@cCg|@cEkbAuHivAgI}gAyGqu@qDy\\wLieAwOelAiQ_hAyNqz@cTwfAk]y{Awd@ebB_b@gsAyZi~@oQag@qLy\\eKsXeIiSkMy\\_{@guBuiB{zE{}@i|BuOk`@ig@{qAui@{uAc`@_hAoOue@oSeq@yO{l@_Ku_@cT}~@qNes@wLep@qG{a@wIak@yDoWiFoc@aKo|@wFel@kEuf@c@gGkC_^{Bia@{Bia@wA}c@iBuh@wAwo@aBw_A]e_ACav@Lad@r@a|@t@yy@jAeeAfA{eAjCa~BxAqhC^uvAQ}bBiAegAmBoeAgCmv@}D}x@qF}y@qFqs@oHst@mCyYmEo]oHmk@eKkp@iUioAm`@ydBeEcQeMif@aO{e@cW{v@yd@ikAoVsl@aR_b@ir@arAw`@av@cPcWy^ki@yRqYeJcMmMsQeeAsuAu^eg@uOqSwjAu|Acg@ip@mdD_nEoy@ogAgJmLgc@_o@k[kd@wRiZo\\wg@w]ym@ea@up@uWif@mNcXmPg[mYkj@wmAe_CeYyi@}r@opAeTe`@e`@au@yUwe@g`@ws@un@ujAe{@{cB}g@oaAus@ewA{g@ojAoR}d@}_@cfAy]mgAw[glAmYolAoSodA{L{o@_Jck@yNmcAwN_nAmGmg@iIox@}LmsAsn@ctGkR}aBaMe~@ySawAiWyaB}Gk]cRccAaXgsAqWonAwUkhAwXebA{X_dAi]ooAsq@_uByAoEiT}o@_\\a_A_]q`Ama@ujA{]ybAqx@q{Bas@{nBek@sfBmP_h@uWs_A{Tq}@iU_hAgNct@wKgm@gMiu@aGs_@aMux@kUyuAm^yaCqLkv@uKew@aKq{@sJo`AaHyz@wXgyCy]saEcJgz@oGok@yKyw@iQ_eAoPuu@qDwOsM{f@uUyu@}Umq@w|@q_Cg\\kx@wW}l@mW}g@_Wgd@ob@kp@a[oc@wb@sg@c^u^o]{[iNyKuXsSq]uU}_@iWcPkJ}]iSmk@i\\u`@cUs\\uS}^iVy[qTc]sXaVcSwTqRaQoOmXcXaQuPgW_Ycj@yk@ac@qd@_m@{n@ka@gc@smAsnAsLqMkiAanAycA_iAsWcYe]w`@sZe`@mXm^uUs\\iTm]uVmd@mOq[kSkd@eRqe@qY{|@_Xi~@_Mkj@yNwv@uFu^}Geg@oGok@iFij@m@oG_F{w@uFyw@O{BoEqx@yEe|@eImvAgG}fA{M{dCqHydAuH{{@{Dq_@}Gmk@yE}]_Gea@_FeZgJyh@aPkv@oG{WEQ_GkVQq@wP_p@iJo[cOef@{Pcg@s\\i{@_Umg@}MsYa`@iw@_d@cy@ak@mbAy[sm@}Vwh@iVkl@{JcXyM{_@cU_t@qT}w@kY{dAwJg_@wD_O}Oqn@kNil@iLcj@mMqp@_Kkl@sJmp@wKkw@kJkv@eXcwB_E{XcLqv@wJci@wDaSaLii@_Jsb@kOkn@yVy|@e\\ebAcUil@mYus@_`@iy@ma@ex@yeAuqBefAqqBk`@av@c`AygBy[kn@qc@k}@mb@{|@ae@gbAw}@cqBs_@e}@q]_z@kv@gmBcScg@cVcm@ke@}nAk\\ey@{V{r@eYu|@{Ue{@iQat@_N_o@cIwc@_Kym@cMc|@oJax@aJu`AiEyk@wFubA}Co{@}Bu~@e@_VoA}`A{Aq~@cBu{@y@iv@qAm_AyDa|CYiXqBowAiAcr@uFihBsDaq@gBgY{A}UsJ{hAmBiQiFyd@kIol@aNm}@oRqdAkMup@wB{J{UelAwN}r@_WmmAw_@}hBKi@cd@}zB{Osy@yG_^aO{|@qNm`AwIis@eTsmBcPwbBeFmj@_M{kAiXooCkOkrAmSc}AgXwyAwVyhAsYogAmRam@iNcb@gVum@qIqTgc@ecA{JcS{Q_^sNcWm]sl@uZif@ak@_v@sd@{i@o]s`@{SsTcwBc}BicAmfAofCkwC}Xu^{c@gm@}t@ggA{a@}q@c^mk@qL_TaHiM_X{e@m[qk@a`@ov@wl@slAyz@mfBoa@oz@qlAueC}qAukCeu@osAol@{~@o{@wkAym@{v@ir@{t@}mCadCelAkiAk`@q`@ke@gj@s`@gh@{h@yu@mf@ky@i^{o@ol@mpAu]q{@q[ky@}iAczCai@mvAij@}tAcKoWe}@wzBa|@oqBgl@wpAstAawCul@yjAqbAynB_w@g{AyaA{kBkh@saAs\\wk@{^cm@{d@yp@u`@og@u_@wc@ck@mm@ij@{j@wsA}rAi[k[o[k^uh@cm@an@{y@so@m`A}u@kmAoIoM{AeCsYke@wu@umAayA_`Csy@wtA_GiJaoAasBsa@es@}]cr@uQu`@wH{Q_JeUeKcYeKg[yM{b@}HoZaIg\\cIi^kH{_@{Ikh@{C_S_H{j@eBiQkEkc@wCub@}Bsa@kBia@eAe]yAcw@w@}g@g@aj@{@in@u@}d@}@ol@yBao@}Bof@qC_a@sFuj@qF}c@gK}q@kOiz@yMkj@q[unAeHeSyEaN{FgPkT_h@w^a|@kg@w_Aqi@}z@m_@og@{u@}w@gf@}\\}y@or@k^mZwj@}k@}UmZaRyUmZwa@}l@_gA{hAmpBkbAmeBme@_cAqa@}cA{[{aAcGsTqQqp@gX}jA}Hw^wKyg@eIo_@oYczAu\\ukBmSmtAid@}jDqF_b@{QqsA_e@umDyUwgBcOihAqJs|@aHox@eEum@qB}XsDu{@u@uQwAub@eByaAg@seABwTTyk@FuQr@uy@N_On@mqA}@m~A{D_oAmB{i@}F_y@qKckAaUsaBoWstA{Okq@mEcRcVyz@qX{y@sxBu`FepCoeGyu@}aBgD}HifAm`CijBudEeDeHesAy{CgIaR_[as@_FaLs]}w@kUoh@yGmO_|@mpB_o@y|AsZ}s@}z@g{Bg]{aA{W}u@oP_c@cK{YuzCswIqkAsoDmHaUet@k{BifCkzHwJg\\iGqSmkAqpDon@imBmsAwhEeo@c}Bu_AypDqWkw@{Qkj@s\\wy@qt@y{A{t@ckAgkAobBsh@gl@yi@yh@_f@w`@kg@g_@iHoE{k@i^o[{RqtAgl@yvA}g@awAkf@weAee@sr@m_@cj@{^qS}Pob@}]{N}LgP{Pia@ib@wr@w|@}h@mt@oZ{a@qg@ox@{hA_fBaN}RuNaTe^sh@{Wg`@mfAocBaPqUwdC{xDij@mp@cuBc}B{]i]iw@}s@_r@ye@idAwp@saAch@{`As]obBkg@kNqDwwAy_@sp@mV}o@eYu]uRs`Awi@aoA{_A{k@mg@{i@gl@}`@ke@cq@kz@mT{[eReZso@cgAkPyYg`@yw@kv@y_Biy@maBgq@csAg[_q@av@sxA}EgJuc@wq@cRgXoV}]gUs_@{Vaf@cbDwoGsx@kqAgWo^_`AuqAik@cp@eYk\\ar@}s@}pCkvC_dBogBo}B{aCwv@w}@ciAkyAobAm~AwHyLyl@ggAmb@sz@ac@a`Ae\\gw@gUel@yGgR}J_YyRck@qScp@gX{~@c[smAqXsmA{Kkk@kA_FkIga@kPa_AwUg{AiFaW}x@wxDcp@y}Coi@ekCmj@}iCaX}jAoL_f@mToz@y@qCuSet@aJo\\_Ke[yTwp@yTon@sQ}e@gQ}d@IUoUej@eIoScHwQqk@_tAw]ez@y]wz@eUyj@sLaYs_@abAcLuZ{Qcg@gQih@kOme@qM}a@_Nwd@oMwd@yLue@cM{f@qLwg@gKgf@sHq^iNiu@{S_oAoF}`@qGqd@oHyg@oFed@cNilAw_@usDwMopAoG_p@sYoiCwMkcAoEwZmBmMgEwXsKeo@yMut@aWisAaYisAaXypAcScaAeWkmAiIqa@{Jaf@ed@gwBil@esC}K_k@mRadAuJcl@qIyl@kJuy@uI{y@{Ekk@wDum@uBcc@cA{YkCay@uAur@_@sXgB_fA_AqeAw@gp@gAsv@oDozAyEgoAiCif@sCic@aFyk@wEif@kIav@}Lkz@cIwf@sIqe@_Lwg@iLkg@eJw]iWi_AkRil@}Mi_@}Vyn@qUci@sEoJuG_NgU{c@iNuWc`@up@ku@alA_d@}o@wUk\\kxBszCcL{Poa@um@an@o~@S[co@eeAoUg`@}nAm{Bwi@adAuDkHoWog@w\\im@ccAaqBiyAsrCs{AavCyDmHudAepBic@wz@gLuTwrCupFkc@c}@cf@}gAgW}o@aXov@aWcx@sPql@qZkpAoGsYuUwmAuN_}@cHuh@_Jes@{JoeAsLmaB_F{bAiAw]_Bon@YiW_Bo|Ao@{iBYcnBYctASk[cCa_BoDq}A_EqkAuBkj@oHw|AuF_}@mIyhAiFcp@}Cc`@sZgzCuRq~AkDcRiF}`@iCgR_L{r@oX{aB{Lus@mIs_@}p@udCkMw\\yMa\\oUej@aUie@iOmWaN{TqQmYmSuXg\\wa@sTkWyWcX{_@w]sa@yZac@kY_f@iX{i@mUqh@wQem@wQcd@gMeu@iUa^uLs]cNw[{M{L}Ea{@wb@cc@qWs\\cTel@ub@mh@_c@al@{j@gn@eq@sx@mcA_SgYy[og@oUw_@y_@{r@iVqf@_Wuj@c]e_A}e@}qAqYs|@kOci@aDkMqQ}w@kAyFwJwe@yH_b@_H}b@_QaoAgIcu@oGyq@kEgm@gE_t@sCkr@_Buo@s@ii@A}@g@{}@@_{@jAqy@dA_g@fC_s@`GwjAxEot@lFcv@l[kmEhUmfDvWqrDtNasB|M{jBbIijArJouAxFu~@rCwv@xAww@Tow@m@mr@cBct@qI}wA_Iex@cL{z@yIaf@uJ}f@uI__@kMsf@aGuREMsFwQeQ_g@iTmi@yVsi@kVae@}Ru\\kCoEi]wf@gXy\\aV}WuDcEuZyYkh@se@{f@ic@wvB_nBafD{uC{xAglAs\\{Ui]sVad@iYaIcF_fAsk@wt@ib@yl@ca@qs@oq@k]g]cZa_@_\\wf@kr@kqAoa@q`As`@ykAkx@yvCu[ohAw]_bA}\\oy@aT}f@yBuE{M}Xm^et@_Xye@uBuDklA}iBagAerAi`@u_@uQyQmDoDaGcG}sC}dCsS_Ssg@_c@gRcRyQeR}]q_@y^wb@eZu_@gSaXiRmX{Ymd@a[eh@m\\ml@u[yk@ub@av@kWwb@kAoBoTo]{i@wv@o\\ua@_CkCyW}Ykm@ko@sb@kc@ki@}i@yx@az@ixBuzB_tAcmAwy@ip@{i@eb@_~@ap@gd@i\\y]iXsWoUeVkU}TwUsU}X}TkZmWqa@kTs_@uS{a@gR{c@{Uyn@sOmg@cOsi@mJob@{Hw`@sHqc@}Ei]eH_k@uS}nBsQ{dBqMslAkXcbCkJsr@wIiq@cLqu@sDuVaLcu@kT}lAkWkrA_VciAgWiiAqMuk@c^ezAcc@shBsZ{mAyYwnAoKce@oa@mlBoCkUoFia@cHei@}BoQiBaRoB_\\_@wSI_SLqRl@uS`AyQjBuSxB{QnCcRhNc}@lMi|@|E{^bHak@bHsp@nHsw@xaA{bL`OmeBhCw[bDad@fBcZ~AgWlDew@fB{l@x@_c@h@oa@Jmf@?og@_BojDA_]Pm\\`@g]~@g]z@gSfBe\\jCo]hEub@rGcg@vDqVdGg\\zGc[dFuSrAqFvJo]`Okd@|KeYbPg_@hG_MjOgYjI}NnLsRvLkQjXy_@xY}_@po@e{@`QaU|b@qk@xJoMxT}ZfVo]n]ij@zRe]pMyUpMcWbW}i@nSgf@vQwe@dQmg@pT}r@pSms@rf@seB~Neg@tOof@fQ_g@|Qwe@lM_[rNs[`Qi^|Qs]hIcOHOjJeP|HoMrI}Mv\\_g@bMyP`NaQrN_QdUuXza@kb@rAuAzPePpIoHxHyGl^iZ`]cYtFsE~c@k^`c@o^f\\uYpZmYjQiQvQwRr]qa@nVk[hVg]rS}ZtSa]rPcZhOcYnQe^fLsVfP}_@xNk^jVwp@tdAk{CzHkThKmXtLyYbMcYjOc[|Pe\\zNiVbJuNjNiSdN{QnVkZhPsQdNmNdQ_PxQ{OtQmNbQcMvQgLpQoKhVeMpUmKrOoGfOqFl_@gM~f@sNvf@iM~}@wUvx@yTp\\wJ~\\oKvYaKvZaLxa@}Obb@mQrS{ItSyJp\\cPv\\uQz|@cf@t_G{gD~k@s\\`hAmn@n{BspA`iEmcCte@}Xjf@yYhe@gZrf@w\\t\\yVx[eWtXiUnXqU|FmFvg@}f@nX{XrS}TpSuU`QwSrP}StTgYbTqYzRcYjRmYnQuX`QkYz\\wl@bQy[lPm\\~O_]fO}\\tQsb@|Qse@bKiXjJoXhPig@bN{c@~Lsc@zKmb@lKuc@tJec@jFoVvEgVzK_n@`Kon@dJio@bIsm@dd@guD~A}LdL{x@xHkf@~Hsc@xHk`@pI{_@pKsc@jIq[xJs]xK_^`KmZfNo`@bK}WvK}W~LaY`NuYjX}i@fGgLxKqSzWcf@bn@mhA|e@u}@tQk_@vPa_@bQcb@~M}]tBuFxLy]dLy]nIeYbJw[fLed@nN{m@nGq[|FuZ`Nqx@~Jwt@tIot@dIcv@rHsu@fHet@tU}_CtK{hAhJ}cAtFer@nEsk@jD}h@`Dgh@fD{l@tE_cAvDieAhCmaAvBw`AjAqp@bDoaCt@wh@p@w]v@o\\fAc]|Ak^xB{\\bEeg@tDq\\jE{[rDeVxE{VbGkY~Hu\\|F{SrGyTfKwZxHwSjJ_UbLsV~LsVxM{UzSm\\~Y}b@`OaSfMgOlrAwcBxcAsqAln@yv@lf@sj@n]w^pWeW`XeVbXgUhc@e]lc@a[lf@}Zjg@uYvdBs~@ja@gUdZcQj_@iV~^{Wld@}_@zRcRrQeRhVoXvUaZnScYlRuYnUw`@fSk_@vLqVrL{WbLoXzJoW~Neb@nGqSdDqKjLw`@~GmW~Soz@xj@i`CfMsg@nNoh@fQql@jJ}YdKmYpJyWRi@dPea@vIkSjJuSjJaSfKySlWgf@rW{f@|wA_iClh@q~@nk@{_Abi@gt@t[o`@lZa]|b@mc@tb@_`@zhAw}@trAocA`g@g`@toBw|A`oAw`AhHuF`z@yo@tVyQhUkN|`Bw|@hLgHvKaJrIyGpCeCpJaKl`AcgA`w@mq@zd@aa@``@i_@bQmRzOiRpJyLnZuc@~K{QzJaRnQq^lHuOhHeQlLi\\rH{TlGqTnIy[xEoSbEsR~Fk[|Eg[bEsZtDm]|Cm]jBuYjAiYdCku@t@kw@@iQBmq@a@kxCoBwdNiHeld@?gAFieAn@sm@vA{k@zBwm@tC{j@lCi^`Dy_@jG}n@tIyp@rGgb@hOuz@xWuyApIog@|O_v@`GcZjKqd@lF{TfJ_^nIqZxG{Uj@qBp]kmAnTmu@nOoj@xEeQzHo\\tEmUhF_Zx@{EzCgTjDwXhE{_@lCc\\`Cec@jB_g@xAyi@jAig@~@i_@r@qYfBig@d@iI`B{VlC}V`E{YjDeQtE{QhJm[pH_TdIeTjNyZlLyT~MsS`MwRxIkMvOwT|Zmb@v^_h@hOmS`fAyvAdhAmyAnPqRns@cw@~_@sd@tj@{r@boAsbBdf@ur@zPgWhNcUfHsM|MqVlMyUzDgHzVyd@lJoQnKeSng@e_ArN}V|LuTlgAgtBtKgUdU{f@`DaHv]sw@h]q`Ahc@{sAh]{iAlRer@dBkGxm@mzBlWs~@n|@kaDlnA}mEvi@ipBvScu@xNmi@jWybA`Owq@xJyf@dL{p@lN__AfWqfBpr@s_FxVkgBhPgkAhk@aaE`}AmyKpp@kwE~hEwnZ~jBuvMfuB{_OhJ}o@twAi`KfyAyhKnUcaBjv@sqFb[sxBh\\wyBzYu_BzM}j@nO{m@hTer@~Ucq@|tBsfFjEcLpi@cwAlXsw@`m@kkBtl@uwBFSvRy{@p\\}~AzQkaAjQokAhKqv@bLqcAvFeo@xBc]pDmi@d@wJ`Cof@`Cyq@tBsz@h@mv@[ov@m@}v@aBot@wDk_AkH{dAeJi_AsJ_w@mG{d@gM}u@iUsiAeQqt@iPsm@aPui@iX{{@qZeaAmJm\\aMif@}Kaj@_I}e@wFe_@sF_b@uFok@cD_b@W}CiAmTkDwu@uAkq@]of@F_f@p@oh@vBit@bEqu@fF}n@hIow@|_@ouCzYywB`t@qkFzSq|AvF_b@xXawBzMqfAtSaqBhG{s@pIkqApBc`@|C_t@rCy|@dCylBHuvAaBuyAiC_iAgJgpBcJujAkJifAkPuxAmOeeAsRmjAg_@ugB{b@scBw`@mrAak@g`Big@yqA_t@cmBkg@{tAcUsq@aPuh@qVq|@qS}|@iHq^cDmQ{Hgc@iKis@iDkWcCcToE}b@{Ggu@qGehA_F_rAuCwbAy@af@]e[g@{fAEahAU}cAU}fA[yyATyq@JiTBqFn@uf@nAir@|@c]bAg]bB{c@vD_x@z@gUb@gLJeCZiLVkIJiDNqET{HHeDLqDNkF\\sRFyDFgDFgDDuDFmCRu[xAwgAbAu|@J}l@a@mc@EyCA{AIyFQgIOeGyAco@uCym@eD}m@iBw`@sAo_@mCod@yBka@wGmfAkAaScCeb@yH{qA{Ewx@{FaaAiEk{@wCcu@{Biq@uCcqAiAes@qAwpA_@_{@Jmg@X_}@n@e|@`Au|@hAes@lAmp@fAebAvAyiAzAkeAvAgdAdAu~@lAk}@hAcx@fAc_BDgiC[knDK{}AK}iBM_yASmbB@}gAIysAAshA`@ecAPe`AVah@x@omApAq_BhAsnAz@uiA`@en@b@qsBNs`@C_iBOm`Ae@qz@c@ix@IsNu@k_ACuBy@_|@y@}g@_BweA{Cu}AgGolCqCusAiDcrBgB_uAaCcjBaA_pAu@clAiAevBc@smCOmrAM__CEugA[k}BCg~@[}fCMit@O}aCIslAGosA_@e}BI{rASqhBQ{rBM}rAMw|AKisAKqhAOq}AK_sABwmABq`ARwn@vAejClA{oAvAwgAdFuxCpGieCjGktB`EgfBrCcsBb@us@ZseAMshBmA_vAi@}l@aFycC{QukFoG_vBgFawBsEouC{CkuE{@g}Bg@gcCjAcbBpCy|A~E{rAjEa{@`JcpArBwYlMuuAzAkPnK{_AhNybAhTavA~TkmAve@ayBdgC{bL`a@{hBda@sqBluAm|GjZcaBlVy_BrVmgB~i@{uEf\\ycD~k@{`GdhAoyJfOqiA|R{eAjM}j@dO{j@`Vku@x]{}@rOg`@v]s~@zQgo@lMmi@tIkg@vEuZ^cClD}ZnAoMdCoZlB{]fAm]JgDl@go@Sem@yB}v@oFyv@iFai@kI{p@yJet@gPwiAaKau@gH{l@sCi\\gAeMyCef@qCav@{AihA^_t@t@af@nBmo@hN_iDx@a[v@_n@Egr@Qm\\?MeAw`@}Au^{Coi@wDae@sFig@sFse@qMgy@uBkMml@cnDiN_{@yEa\\aDyYiAmLeCuWgB_b@oAsc@Oa[\\a\\r@yZpAaXbDab@hHiq@pNukA~a@ukDtGmp@zCof@dAya@LcQTu[y@{p@mDay@cEke@_Hkl@wJ{l@_Re~@mQa`AgMms@gCmQkBoP}@cQKoLZkMlAgPnBiOlCqMrHmUbNaWvQiXpe@gl@pU_XbEyKhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmBjX_MvsAwh@bbAeb@zbAwd@rcAgc@fb@{Snb@mX`MuJ`]e[|QkUfSuXx`@}n@vXsm@rUoq@nRmt@nMmq@xIws@zEim@vA}[zAg{@O_r@cCsq@cC_i@mh@uyGqBoWkPgwBoUkwCkLqxAkKowAs@kKyH{fA}MkwBkKykBgIq`BkFakAyEejAmEujA{D}iAkD}jAwCyiAcCygAyBueA{AgbAqAq{@qBwmB?Aq@kw@g@ou@k@geBSehBLuqBPqz@`@my@Vcb@PcXHaKv@obA`AkaAxAqaAzAicAtEexBpBa{@`C_{@dFk`BvCuz@`Dgz@dHo`BzIejBxRiqD`S{oDr@}MzYimFxN_gCbMsxBhEyo@rEan@tCw]tC{[nEgd@tFof@~CwV`BmMlHwg@`Isg@pJui@fMup@xK_i@lMyj@~Mej@`L_b@dQgm@tMkb@zLa_@tMk^lPcd@nSug@hTsg@bW_k@hYkm@|Xik@vYyk@vUkd@xSq`@nv@uwAjm@ckAdVoe@n^it@rc@w_AnTkf@vOs^zOe`@hNu]p\\a}@`Mm]nL_]fNwa@tM{a@lMab@xLoa@tYsdAdX}dA~UqcAbJqa@pI{`@zRs`AzQeaAjYg~AlVcyAt`@oeCx_@cfCd`AwmGlN_aAzMubAjN{hA|KucAfD{\\zCm\\zCa^pCa^lCu`@fC_a@vB_`@jBm_@fBab@~Agb@xAoa@lAw`@bCqdAvBkeA~MccIbC{nAlByz@xB_x@nCiy@~Cgy@zAc]|A_\\rCgh@~Cuf@jFat@dGus@|Eih@jFig@hK{{@nLkz@vFk_@~Fe_@dPq~@bLyk@|Lyk@dKud@zJma@jJa_@pLmc@bMsc@vDeMnHkV`N_d@hZq|@~Z}z@|EcMdSch@`Rcf@xTqj@xi@kpApkC{iGjbAaiCz_@alAvJy\\zNgi@hKua@~G_ZrGoZ`Iob@zHac@|C}QpGwc@rFoc@|G}m@tCu[xEmn@ZcFxC_g@jC{h@`G{vA~CsoAdDer@hEun@`Dwd@vD_^xB}QbCcRtJgp@~G}_@xIa`@lDgOhEuO`DsKvEkPnQmk@rYav@`^yt@l\\mk@`SqZjYmc@|m@s`AzIqNl`@gm@jf@kw@bZ{h@f]cz@hRei@pLof@zK{g@~Iol@xEuc@lEgl@xEk_AxBsl@rFczBd@im@c@o}@cEonBcFsgC{A}`BiFcuFkAygAiAkdAuAey@cB_t@wIghCqXajFaEiw@_Dwt@{EihBsA_l@cA}y@u@gm@i@agA?w}Az@w_BnD}lCV{TbCotAzDorAdHysB`GouBv@{lAkAceAmCidAmDyvAOm[N}Tj@yTtAkZxBqXfD{YlDsWhH__@rGwWhFiQjKwY~Wsl@j\\kh@b|AkxBpWc^rZec@`Sq[nNaYjLaXvGkQtGsSbGuTnPc`AdEu_@tD_c@lKwdAjDkYtFo[zKki@|WeeA|U_|@jQws@|Jic@pKae@dR_|@lPo`Atm@y~DnTuaAvS_r@pSyj@bCyFhc@_aAbn@qgAdc@sn@v^ic@bg@ug@|KqJzKqJdS{PbZcTpUqPdn@c]fXqLdYiL`XkJtjAw\\hpAm]va@{Mj\\eMhu@s[bm@_\\fw@wg@lw@_r@x[c[rq@_w@vZsa@tZye@l[}h@vSaa@jBsD`IyO~]ox@r[c{@pHsTpXey@zp@{gB`KsYxBiGlYscA`[yyAfEi[fBuUTqFlNkmDzPunFpCahBtA_mBx@w|AzAszCHcQfBujDbB_yDFuLlG}bJNoXlAabBl@y]r@q]~Bes@~D{q@|KknArM{kAb_@obD~Ik_AtHe`AfFk_ArCa_ApAup@Rqp@c@_q@q@yr@qFqaCgFapBiAek@Kuk@h@mk@|@af@z@}c@rCiq@xG_wApWm_H|Om|FrOmfFbIcpBxLwrBdPasBhSytBvZglCf^spCrn@upE|e@_aDni@}gDXcBzm@ipDxq@u|Dlp@i}DdU}|ApP}oAvd@{kEbO_mBlMukBrAeW|FchAbD}t@pAa]~Byn@|DauAtEanC|@sqAZyvB{@gjAmBqrBcDygBoLwaEyIubD_FcmCgAswAYgxAPoyB`@oaBBolAe@}hAaB_w@{Buq@kFq}@iFqp@qJy{@wKuy@cTqvAuLaz@kXwoByIoy@qGg{@cDqf@uBce@gEapAqBwv@oAc_@wB{r@mFydAyGw~@aJoy@gKww@qOk{@eRs|@cPwo@{Qmp@yl@sqBk`@qvAsVgjAeJek@wI{p@cHmw@sEux@}Bsm@oBicA_DeeBiDgoByCihAoFktAsIqtAoKerAkJk}@oK{|@kKit@cLmt@kO{y@cPey@qc@woBg]qwA{g@e{BcLan@}Jiq@yGao@sEio@oCoc@iBee@}@kg@Sqx@t@ux@tBmo@nDio@zEwj@zG{i@bIsn@`Ksm@~]cjBlZ__BhRaiA`OofApIms@`Het@fGk}@dF_cAxBmw@tAgy@RcnA[gp@_Agh@yCeeAyFqfAeHegAkBuUwLstAsNo_BcPanB{D{l@cCgm@uBi{@c@uf@Okf@^an@~Aar@nCyw@bFgw@pGsu@vIot@hK_s@pKen@rPww@jR}v@rVo{@da@gpAd\\a`AxSul@f\\y|@|h@cwA~Yqz@li@g|At[sdAn\\}iAha@k_B`Pet@hNws@~Kyp@nJkp@pGih@jHcr@xDgc@rFes@zEk|@tBgg@pB}y@~@an@^gn@Igk@?s@q@cl@{@es@sBis@qRk}EwAg\\_Gs_BkF}aBcBeaA}@abAQmoBjAe~AdEanBrFsqAxGetA~IguA~Pu}BvO_hBlSizBnT}xB`SkjB~OgvAzg@wbEdUebBhVydBfOoaAnJ}o@zGib@pm@}sDvw@glEnD{Qrk@qxCzq@o`Dbh@{~BjVieAha@{aBvX_fA`]ytArQmn@~h@ioBn[cgAvo@mxBd\\igA~_@ulAjh@s~AxY}z@xW{w@l^{cAl^cbAv[y{@fp@ieBv]q{@puAedDt[cv@f@kAz\\iw@r[es@fYeq@bYcm@lXyn@pmAwnChRaf@vOoa@nIqU~HiUhImYdPuj@~Pir@|FgWpOiu@vMur@fXg{A`_@{aBbRwy@zPyo@~U}s@zVon@j^}y@x\\er@ra@qu@zUs_@|U{]hj@ev@|n@ow@vn@sp@lc@ud@bq@g}@`_@{q@nWgr@pViz@tQoy@nKep@tJix@pHsz@hMcsB|IsuCzEmgDpCgfBvEgtB~LizCpN_kBhM}eApUs{A|TggAhYefA|Tuq@nRmg@pRob@v\\an@r^si@v\\oe@`^gf@hk@g|@|Tyb@dSge@zSgp@xTo`ArVqxAhMc|@rNoz@vLqi@hJmYjRyf@f[ko@r^ep@zq@mrAhf@krArZ{mAdPiy@~Wi_BdPkqAbLwmArIukAlFmjAzCydAdAabAHgkAaA_`AmD_sAuDqz@cHwfAoMgdB}Rs}B_KcmAyGgaAyGcqAyCobAgAqdAEgEjAgzAtF}oAlGsw@zLkeAxYgiBf]wdBx\\__Bf^qaBxYwbBbG_e@t@qF`QcuAbKelBjB}bBe@g}@AmHa@yUsCsjCmAwnBg@}yAt@wwAzBukArJubChLegB~WgkC|QkzAtUshBlPqlAhf@msDrR{~A|R{nB`NkeBpJ}hCpEexCPabAMioAkDktCsGefDkGyeDoBwcCBalBzAuiE?anAm@sx@kBmw@_C_q@qHsiAkKihAec@oyDwZmhCyU_tB_`@cdDkE}`@wAsMoSgpB_Hau@oEgm@oJszAcB}YoDyfAkAu^mAqg@{@_dA@}[d@se@VyOTaN`A{XlAoY~AyVxAkSrCk\\`CwVvMkcA`Lom@rLmk@`R{u@zUk}@n[{rAjN}m@pOi|@xN{iAbEyh@~Cuh@~@m[`Byk@b@gz@y@acA_Cqx@cIelAgLuxAgMq|AuEer@eCwjAAiCQi`AdB_rAjCcn@nJglAvMikAnQopAhKes@tNeaAvJck@nGmi@dIgu@dF{`AbAux@qAkl@eFc}@{Ki~@cL}p@kNes@yN{k@a]_xAsL_x@yD{b@wEsv@cAir@bBw~@lGcw@xHgk@|Nys@pPej@pVwn@zTah@~Tcf@vVek@fUep@jR{p@xPst@jRg_A~Ry`AvMwo@fQgx@zIo^hPwh@`[e}@vH_S~HkSvCwHhQ_i@zYyjA|Loz@jHyfA`D{x@xAam@pBqi@dFol@|Gih@nOiy@hTo~@fNos@bQqeAvKieAjF_fAjCytA`EygBtBqp@b@mNlEocAbF{w@~Gi{@fI{y@`Jox@~Kk_AtMwcAlHgp@zIiw@lIwdA`Ey{@pCmaAf@eo@Akk@i@sz@oBu~@iFw~@gJ{jAsJceAkGup@iMa{AkEmbA_B_r@Cot@fAqx@`Ewt@zIk`AtMu}@tOsw@`Oen@pT}y@dWu{@z]ilA|WegA`Our@xHwj@pJwaA~Fku@`G}`ApJkmApJ}p@nKim@~Nqs@hUuz@nN{s@fJwk@xBqW|GscBs@o`AyDa_AqJ{lAuIafAiKayA}@qM{DefAaBkgBzDghArMmyAjVotA|\\mnAj\\_{@`OeZ`Ued@bg@saA|FuLpVog@z[ew@r]{dAt\\qtAfUctAtQqlBpH{uA`@sv@uDslA{LahAy[{{Aa`@aqAae@qsAkd@e~AcZerAaRelAgIku@sF_x@oCkeAZsoAvCuz@nFyy@jKceAvIiq@vVsfBz]odCrd@w~DbMexApIwrA|FcxAxBgfAZucBqDi|BkJyvCuKkzCiSayFsMeqDaLc~CkGgkBcHspBcDaaAg@eLcEsbAuGyiAkLm~AkHsv@sMg_Aga@u|CiPwiAqRaxA_LadA{@yHuFso@iDci@yCs_Aw@u|@Xuz@~CcmAlKotApHyn@bNuw@~Sqy@dLy[`MkZfd@mdA`Xc|@pT}gApS_qAzPoy@pMwc@lQsf@lPe]dS}]~^se@~HmHpl@cj@`y@gx@xa@cf@fAqAnY}e@`Xak@`^kfAxI{YdLma@dGsYhIob@tHcl@lFsf@rEop@~Aqc@bAck@Y{g@aBqo@eDqe@QaCoGat@_Iqr@_Fcl@yEkj@kC}c@cBwf@uA_h@g@oj@Jaf@?[h@gf@vAog@zBen@dE}cA|Bmv@t@s_@Ha`@Kq]q@}ZiAuWwAkVoDkc@{Fad@}H}e@oJ{c@{N{j@kd@uwA}Uiw@}HiYcGuXaGwZgEcZeDwYiCwZuAwXuAka@[wd@f@ul@bCmg@|D}h@xHwt@hK{r@zIql@`Gsj@rCu]|Byf@d@aSNuSMu`@Yq[uA__@_Dec@gFae@gEcXiDmTkHg^et@_nCyn@qgCyWqfAye@}fCgK_n@gJoo@_Kg~@uF{p@aFsp@sGgmA_EywAaHgrDgDkuB_FajDcDmwCaBwdDi@mkC}DokCkw@gi_@oCci@}Ga~@aLg~@iYiyAaGsWyKy_@cKm[cP{b@wi@usAcuI{yS__@m`A_\\c`A_m@irB{XmhAyYerAuOiz@aHab@_Igj@uH{l@eHot@cF_t@uDso@cCcq@}Acz@e@qz@GabAhB{aAhEahAzHikA~^}`EjC}ZdAsLzAmQvAyRvAqUv@}Rl@iTZmWFsUUgW[oPc@uM_B_[mByUeCsU{CiTmD{TcEeTgGcW{EmQyHwXeW_y@oHaVoHqWyHoX{EwRyEqSsDkR}CeQ_DoR_DoUoDcZ{Cc[oB{UsCq_@sBu]aBuZ}By_@aDon@eCcb@yBsZqB{UaCkSsDmX}C}R}EcUsHa[oHyVuGsRiK{VwEeKaGmLwFqKyIgOaMmSoOmUiOiSuMePaVqXsNcOeTsTuNwMaQuNaSyN{KoHuRmL}OgIePsHe[kKoPsEeQeEeNeC_M}A{P_B}PeAoPe@}OOwQZkMd@mIh@sL|@cPdBoMjB_NbCeP|CeW~F{d@hLa^dKuLzCoR|Eaw@lOuw@~K{n@dHwo@`Ck}@{@{_@aDk^gEei@kJyg@aMie@wQ}e@kTw_@mWm^wY_]a^y\\{`@uYud@{X_g@iUyi@ySym@cXucAsWsaBcJsbAyYm|DkWqqCoKcjAuG_p@cJ{v@wJuv@k^m}B}_@}jByMml@eNei@}Wi|@sYmy@mWio@wVgi@{BgEiQk\\y_@qs@{uBkbDg\\mn@e_@{s@w_@k_AkXcx@uSkt@_AgDam@_xCcQirA{La}A_Gs{AaBolANqoAhJcdGDyeAWgd@kAia@}Bmk@qDqi@}Fsk@eIqk@cLsn@iLci@qR}p@eUmn@Sk@uf@_iAef@wcA{Uuh@wPsc@gOaf@yN}l@uKmn@sIau@uFo|@iAei@Uge@bAin@xB{l@zJegBdE_}@pBsf@d@_g@Tyg@_@eu@cBkv@qBeh@wCum@_Fgs@}For@qJwaAwQm}AwCoTg@oDiHid@eW{}Aud@i`Cin@_dCkVm{@g\\uaAuRcj@mOib@ueAwsCkaAchCiVgu@sV}z@uTa~@{RseAoO{hAyEqa@_Eyb@iDme@qCse@eEclA}Aiy@[{y@d@umAtEshBzHo{AvK_|AxOidBvLmgA|Jcy@vKsz@zW_qBvSo_Bz[a~Bbj@aaEpsAcdKvd@yiDpKc|@`H_~@fCoi@|Aap@`@ex@c@ew@_Boj@_Dmn@eG_n@iF_g@mL_v@oMio@oNgm@md@uaBcp@{vBil@{yBeW{dAuTajAuIof@aI{f@kKgt@_Hei@gGck@yGup@cEwf@oDie@sCkg@{Bm`@gB{a@{Aia@gAmc@eAad@q@ic@e@yp@Owg@G{q@d@}eEFqbBG{s@Qmr@Qk\\w@gx@aAuv@oCenAcB{h@eB{g@oFenA_Dgj@mDql@iD{f@eFqp@cHuz@eIy~@mIy{@qTavBaUkwB{TwvB{Is_AqG_x@eFwr@_Eup@}Baf@gB}b@qAu`@aAia@s@a`@i@qc@]ei@Can@Lug@d@kh@v@wf@pAkh@`Ay\\pA{]jBka@~Bsb@nEyq@nBsWvBsX~JkdA|Dg^tFod@bEe[dOuaA|EyXzFe\\pMip@jJ{c@rJ{`@pLge@zRit@dIuX~IoYbJuYbJaXbQ}f@bPkc@rVco@lVsm@fKiWvgAilCx~@a`Cj\\mz@l~@kkD~UyjAbPeaA|K{z@zCsVfGck@zBkU|Dqd@rDsk@zHs`BjAim@Zyj@_FedFeBys@kD_v@yDse@aEm`@iCuR{Gmc@iKei@gLwd@oZwaAw^c|@mLeVqvDivHwzAszCevA_tCqKeUuIyRyJuUgIsScJyUcIeUsImViHyTcI}V}GyU}Lkc@aJ}]sEqRsGaYU_AwEsVoB_MmKau@wCqSyQupAsM{lAq@mGoOss@ml@cvBcX}wAud@_gCaI}\\kJm]qJaZyP{c@iM_XqI{Po[_h@g[mb@ia@sj@_a@ej@ePcS{ImI{M}LiMkJ{MmI{LkG{MmFeHgCmLaDoKaC{J_BkLqAmIe@mIY{OC{IPkNf@oGp@cIhAcLrBgK`C{LvDeLhE_JfEaHlD}JbGgP~LuqBl~AeKpHgMpImKhGeKhFgLtE{L~D}LxCcM|BwLvAkM`AkMZwL@sMi@{LeAoSkCcZsFydCqe@{|Buc@{LqCkSgG{RmHyLkFwKwFgLkG}KeHcKeH_P{LeLsJ_M{LcVsXaQoUeIqLwHeM_IgNqH{NyOk\\mOq\\q_@wy@aOe\\qGoOoFmNuIqUeG_RyHyVmHmX}GcYkEoSaMqo@wTujAwIuc@sDmQcEgQaFsQeE{MiFyN{F{N_HmO}G_NmHsMuHwLeIgLmJgMqImJqRgRWUwCeCsE{DwFyDgMuIeKcGcIkEmIwDmJwDgBm@eA]qKoDmM}CeOaD_rAaVkOwC{TiE_TiF_RmFsSiHoUmJgI}DwNoH{X{OaMsGwM}Gok@}ZohCcuAcB}@k|BymA{nAaq@_R}JcHcEoGwDmH_FgG}EyGuFsFkFoIyHsGmHeJ{KaIwK}FuIyEcIsL{T_HaOuFaNcF_NqEwM_EkNoDqMmMck@_O{o@cDkMqDcNyFwQmFmO{FoOwFaNaLqUaHoM_I}M_NaSoMsP}KuMaNgNeKkJ}L{JuNiKcMqH}OyI}SoKosAir@wz@ic@}VgN}KgHgLsIgMaLqHoHwIcKyIoLiIeMeHiMkHwNiG}NiGcP_FmN_KwYgd@msAmMi^kGaOuGiNcHsMiHsL{IwMqIoLwHiJ{HoIiH}GqFaFmI{GuJkHiKiHwW}QqjAox@ae@}ZoKsGkL_GeL}EyL_EqLmDiMqCeM{BuMyAeLw@cFWyMa@}LCyMVoMz@sLnAeM`BuMjCgLlCqLrDsSpGsLtDgp@`SkLzCyLjCoSpDgTfC_O~@oRp@kMHgMMmMWoMs@oOwAqQwBeMwB{LcCuLaDaMwDaN_FwJkEuJeEuI}DwBaAsUgLoPiJg[wPi[qRgQeLgo@ib@kfAmx@__Akw@kbAadAiKgMwOsRgE}FsMsQgPqYaPeZmCiGaLwWaP_d@onAi_EuPok@_Pol@qFqXoE{[{@yHiBcPgC{\\cAsXi@kWByKJg_@rBwn@vEek@fI}j@jL{i@h`A}iDdWg}@dWg}@pOet@tIog@pBsL~p@glEtw@edFlUawAlX{eBjAgItFw_@tDwYdB_QtBi^|@{a@@u_@k@yXkBk[mCmYiE{[{E}XyH_[iJgZoHcRgKeUaMuTsJaOs}@wiAqJsN{MwT{NyZkKeZmIo^wFq^sC{]uAgb@Pgb@tA_^nDk]nDmVnFeW~IkXrLm[tMuVvPeUt_@{a@pPePzcAg_AnZcVjE{Ct_@kVduCqfBhUwNfSuOdQ_P`QcRbOwS`NyVzKcWnLs`@hI_c@`Fyb@vBqb@R}a@iAcg@aDs_@eGec@qIs_@cLk`@on@qpBiPsh@sPgi@aLga@iHu^sEuY}Dg^yCmc@sAoh@Gke@bAga@xAo\\fD{]vCeUdFi[lAsHlIu`@|Pmi@vSyi@`iAkoClm@g{AdJkUbK{]lHyZvDeSnDaVdu@ubGhNu}@|TskAjbAq{ElFe^tDc`@rB}b@\\qc@a@sd@qDim@}c@ylDaUq`Bq|@goGiIeo@iDo_@qBq]uAqf@qIa_Gs@yk@Iuc@Ha]d@a^fAgk@nBokArGw`DnCe`BZuu@{Ao}@qDq|@aGco@iHeo@{iCypQi\\gxBgNs~@{Lqr@aPqq@}Pup@yf@wcBsLgf@iMin@uKet@mGij@cDud@oDco@}Asr@Iik@j@}h@vCagA|LepDpAiq@Xqr@}@si@eCch@oF_j@wA_JqGka@cJk^gKm]cJgTcJgSwG{MsHoMaOcUkHqJsPkS{OmQeXoY}a@cd@w{@k_AeMoMwbBoiB}a@gb@}QqQ}McLqUwOsV}MsSmIuPaFyWwFqTaCiTkAi]Nog@jCs_@bCoXZ_Tg@oVmBo\\qFc]aKkW{K}RyKqVcQeR{P}OgPgPqSkOyUuQm\\uLiY}Ms_@yDmMqCcK_CmJwBkJwBqLk@gDkA_HiBuL_CgQqAiMuAiOeAaPs@wNg@eN_@{SK{PFoVX_Px@aWbA{PpBeWnAyM|Gqi@pEc^vBqRjCoXnAsRrAcWx@k[Tc[Gm\\kB}s@cFev@cJmu@qXepA_o@wnBy|@ogCmjAclD{Zg~@_Yyu@oZ{n@i]ef@_^i\\}^{TeTuJuQ}F{]cGywE}\\{`AqQ{s@{V_n@yYop@w_@io@u]e`@}Te_@mXyTgSyVwWed@sg@}GuIsXib@_g@wbA}Tkk@{Ocf@qfAqvD{x@yoCuk@iwAqi@_`Aa@u@qm@uw@or@wp@qpAonA}a@kg@uZuf@iSmb@sQoc@yOog@kSo}@qIok@iC}TyBeTkA{Mw@gLw@eM{@}RK}Bq@gWa@gTk@ik@KgJYcXyA{uAGeGaDoxCm@}wAAoOPyUt@g[rA}WxC{]vBcSfBiMzByN~A_I`A{EjIg_@`EgPpFyP|E}MhHgQpQc_@zKsRlFgIrJ_MzH_KrTkT|A{AzSqRn[iYjQaR|GyIbJuOnHyN~FoO~E{OvDuOzEqXfAqJbAeMj@_M^eTCgPa@iMs@kPWgCw@aIuAaMwCsOoE{SiT{z@ib@ubBe|Ba}Ik^ewAuMgh@yKo_@cRak@gSug@w[oo@}_@un@??}KsOcZ__@m{DiwEuUkX}UaZaNkQ{O_V_EeGcGuJwKkRyGcNeJeRgLmW_IaSiHySaJeYyIk[{FoTwFoWaGeZaF{YuEy[wCsVyDma@iBoTgG{x@yDqd@}AaRmAaLgDmWqDwW}EqYcCkM}Gs\\cHcZaHsWqJ_[_Le[aLoYwM}YiMaWoQc[}LyRoR_YySaYaa@mh@{Vo\\kQwVeQ_XiPaYwNaYgMeWcIaRqNi_@aM_^ue@ctAmo@gkBi_@kgAk@_BsRok@}FsQeGgTiHwYaAyE_AuDeHi^_EyWwC_UgDkYmBeWgBk[oAyVi@gROuF]aSOmUN_VX{Xp@gXr@_Sx@sP|Be\\rDa^dB{MjA}InF}\\dKsj@lVuiA~Jwh@pG{f@pCeV`CwUpBu]`B_^tBiy@Xo^AoNmAat@IqFIuEU}Ou@}Q{ByXuIaz@aEi`@mBeRU{BkBcVaMafB}@oMsC_e@u@}LKeBwA_RkGez@gEu]qCcRaFkYaH_^yGg[eLcd@_IyW__AwlCsaDgeJs}@whCeKsZwH}T}HmWeHcWiGaVeFkUuE_VcEyVeEyXaDiWuCiXcFsh@{Ggs@_Fgh@uF_l@cEoa@aEo]eFi_@uH_c@cFqVsD}PeIa[gJw[iJyYsVqn@iJwScLmUsRa]gS}ZkLsPoR}UsUyWaYeXaR{Os[eT_VsOiYoNoPqHgSkHyVgI}TyFoQoDeSwCyToCkW{BeU_AgoLaNqiAeBoWaAuOwAmQqCsQkE{LeEeQiIuKcGeO}JyM{KkM{LoMiOmLuP{J}PqJaS}I{SkG}QiIeYuGiZwDiT_I}d@{O}|@gDsPuPqt@wKu\\sKeZ{O{]oQy\\yOyUwOwSsNiPeKaKoNmMsTiQoTcNmQcJkSaJ}v@sYa`Ag\\aV}IiNiGyKqFgXeOoVcPuTwPaTiQyJuJcCaCoReTcNgP{J{LeBuB_n@wy@gXa_@sc@gm@cb@sj@cl@gx@kyAmqBan@az@wh@yt@{^{f@kr@{}@iy@w_A_i@cg@yl@ae@gbA{}@g_AgfAq~@ibAqOsL}OyJuK{GeL{FcNiGePgG_}@{]uVqLoTeMaUoNeKqHsIyGsLuJgH{GeG_GoQwR_JuLyKkP}D}HoCoFaFuKkEaK}DaLgEuMgDgLmDqMkDuMkEkRgEySuCqQyBsNmC{Q{B{OeCwUwB}UoAuS}@eTo@cUUgXDmVl@{^z@kYdF{oAjMw~CzEukAvBgl@dAob@`@a]Co]{@}^wAq[mBsVcEq^mC_TwBqNmDsQqDmPiIm\\eIkWyNsc@kKyZ{Wov@wRyk@cKc\\_GuSkFiTeEeT}E}ZkBsNkC{SeAyJkCaX}Co`@yHabAaDe_@gGwr@yHiy@aIey@qUgvBsOsxAuFof@}Du\\{DyYyH_h@iHob@ySkfAeRi_AsJqg@sF_]gF}^iCwTiEsb@iF_s@qIcpAqG_x@sG_n@_PycAoB_KqJag@}Py{@iMun@yNst@y[o}AqGoZyG_YqFmS{F_QkEaKsFyJuEqHcEgFiAuAaJ}IwFcEwFwDsImE_LkDuG}AkJcAiJo@oJDqJj@{GdA{IpBsG`CeFxB_EtByGjEwGlF}EvEeE~EwGxIcHbL}AnCuChF{D`HkFnJsKlRuNdVgOvUqZhe@aSb\\aUt\\_Y``@SVwQrTwIrJgMnMeIhIoUzReOlLsTpOkMvIi]lSm\\|OqTbKmOnGoTdI_WpI_JtCkWlIyt@pUq[|JynB`n@gl@zQ{x@vUol@jP{q@pPio@xNum@jLml@bK}gApPwN`Bof@vFgs@dHu|@`JulBnRatAdOkt@tHuS`BaTx@sTl@w[Dw_Ai@wPKkRDaNj@_WtAyRzBui@nGgXdCoUnBg`@z@y{@fAmNAsYgAcR{CcOgE_PwGeJcFyPeKiEyC_CaBcPqNmHiHiG_HeKyLsKkMuP}UqKqQkGyJaLaUyAwCgHePea@yfAsFkQiAkEiG{UqHs[uN_l@g~@g`EeJw`@oHi_@wD_XaC}SiAiSq@eYBo[lA}d@bG_mAzBmYtCcZzF}_@b^a_BxDwRjBaL`B{JzA{Lz@mIb@oGLqBd@uJZ_OFaQQuNo@wOaBmUsCoWmC{Q}CmQ}CuNsEkPcEoMoD_KyDmJaOiZ_PqWeRgXaSuUqQmRkL}KmNoK}OaK_RoIu[iKmUeEeZmB_`@LefBnGsPl@c[f@oNWyMkAqMyBkNwDyX}IwSiJqU}NsSsRqOgQ}d@kn@ex@{nAiSe[aJePsFqLwEgLqDgLoDgNsBkKqB_MyAuMwAqNu@mKyf@qtJgBsXuAeOsC{UuC_SmE}Q{FuSuF}OmF{LqHuNmJmOyJuLiMeMsUkU_G{FeO_OsMyNyRsVqR}[eJeOgf@ww@aRoZ{KuP_DiEcFsGkGiGeP{Pcg@sh@}TyTa]k]_D_D_k@sl@{u@gx@{l@kt@gVcYuQiWgPuWeP}XqMkV_LyUcK{VkJsViIoT}HgV{D_McGwR}HkZ_FaTwCoNsBuKaDuPwBkNcDaVmCyYsFqr@gEen@}Bqz@c@o}@z@wr@`Cyo@lEwu@lIyhAxJ_|@hGma@fGuYjD_L|EcLnD_GjGkIdMoL~OuJ`\\iMrfAy_@vZeLfY_OxNyH`IaFhHoFlKiJ`IgIdIoJpEgGRWlHaLtFsJfEwIdD_IhFeOdFmPpEsP~CqOlB_L`CmQjB{Tx@oOt@}UFgPKaUk@uR{@mTqAiTsAmRg@}GgQmqBqBoOiBwKoCgMmDcNyDkLmF_MyGcNgGeKcI_Lit@ey@qJaM_CoDiF}HeIyOqF}LeEsLcDeLkCuLmBqM{BeRw@gIy@kLq@aSc@cWCwWWwvAGe]?uY\\}[`Ag\\~AqW`Cga@lEmq@lAo`@PyZAk\\]qPu@iKaCcTuD}TmDwRwFuTqH{VwHwWcFkQcHsXuIm_@aLmn@yDwUaFw\\aHcj@uC}Wg@aFmAeMuA_NmAmOkAgQs@eMk@_LgAiZYsNQ_SDaKRsNTcMb@sKt@_M~@aMj@iFj@iFtDaY|CgTnGsf@rE}^zD}\\nEcb@bFah@tC{[l@sHx@aKtBsXZoFrB}\\pDmi@zAy\\jAsXrSq`Hb@eUJqPCgVKsv@Mqp@N_p@\\}d@Nek@Gqf@Yeu@{A{n@_Gk_BoCgf@}Foy@iG}p@gHyo@_J{r@mHee@yHcj@sGmb@sHgj@_E_YgCsP{E_Z}DoUoE_W}EgUgEiP}I{Z}GiRgLmZsFaNmHcQeBcE}JaTuLsT{e@yy@eZae@caBclCk`Aq}Agq@mgA}MwTeIaNoPw_@oI{WyIu_@wGa`@_Ema@mE{n@eK_fByCg\\eFqc@iEwYcIoa@cEsPoC{KmImXsCeIqJuX_Yes@qN_b@kEwM}EyR}DsT{C}SiBmQcAmUMsVj@kWxBu^nPmiAxGab@`Fab@tA_Up@}X?{X_AeUoCgYaDaTuCmNuIy^yJ_]iHeY}DgQq@wCeJei@eCmUwBo[m@yQI{UPwZfBs\\bBeTpCeUhB_MxDkVxDuXdBiMtA}JpA_MrAuNnA_PtAi[Cs`@q@_m@iAoq@}E{pAaL{aBuHabAcGaw@iG_j@cFg[uDgQcLo^{Jm[aFwPuAgGqAoFsFc[uBwPkC_XuAsR_AsN{@oZWmWTmR\\uMh@kI`@qFn@aHpB_PtCeR`EuSfGkXjOeq@~DuQhE}RlEgWbDuSfCaV`CkVzCsb@lAiUf@uJ|Ckq@hDqu@bB}b@lCut@j@_PPqFnAoi@zEsrBTmN?wFIkDOgCiAgHQeAc@iDS{AOiA{AyM}BiJcBgEsB}D_EwHoOsXmHsNgKiTeGiNmOa_@cQia@eHiP_FiMgKyWcCyGuFqO_F}OMa@_D_LgD_N}BgKiDqPmDuRyD}UuDuVqIwj@{EgYwFoZmCmMgE_QyE_Q}CoKsDeLkFkOuFoOsFoMaHgPkF_LgFsJkHkMeMmReGqI}HeKqNmQ{`BglBaeBiqB_NkP{KkO}LgRgJ_QiFaMmHeRwEyOkFsTaEsU{C{VoCc_@a@uJKyII_IAmTp@oXlAgRv@wHpAiMjD_VfEuS`F_VzmAgeE|EmTnE{SrEmX|Ec\\`D_XbEca@lCq]pBq]jBaf@p@a]j@ig@j@sw@Ta\\@cVKoPy@{a@uBua@wAeP_BeO}DqZ{DqU_FwVoEoQ_Nwd@mLu_@yLo`@eJi^eJ}c@iGia@aKys@_FuZqGo\\gEyQcFwQiJeWcKgUcIoNiL}QmRyUwd@ug@cKkLaPaRmSiW{MeT}NuYmRsb@mOq_@iPeh@cMag@uL_i@iNqx@mGio@wEym@wDoq@qDwvAsAqp@i@qz@AgpBXyxBEku@l@eq@j@o_Bm@a`Am@yZsAqY}A{TsBgRkFa\\kFqRyEkNoD{JsEwKuIiQwQs\\yGcLmJgP{I{NsQyXkKmPqJ_NaJwKcM}MeGeFgHaFw_@_UoZcPkUaNmRoOoQ{OeR}OsPsLaNgIqOyGkPsEgQmD{JeAkRaAeLKqO^wd@fD{eA~LkUxBcQn@qPBqD?uQq@cTuBgReE{t@qWg[uGmWeCkZoA{j@q@o_@b@y_@nBw_@jFwhAvQyrAp[q^hGw^rFed@fEqPz@iJ`@mG?yZqAsReCuJuBcDs@wS{G_XkMkQuL}QaOaOwO}JuL{EmHeJmNwJyQ{NwYoNkXcJySqJ}ToJkW{Uao@{HwVkIw\\qGo[_FwXeGic@cEs`@iD_d@iBsa@cAk`@e@k\\m@ieBa@{c@aAoe@_A}RyBaYyCgX{DqWyDgUkCkMu]{iA{_@wjA}GePiz@ckBcb@i|@y\\}r@qYil@aZyl@uZkl@qSc_@gMuSaM}ScPyViSeXoGeHiOoOaQyOkR{K_TsKs[mM_RgFqa@kIwPmD{MsDePkHyHeEiIeG_MkKkLcMsJwNgIyNoGeOyG_PoFkQm@}BcGcUaIwb@sHii@gKoaAqGo{@]{GsAyUsAyWgAa[oAwe@[mUQsUBoZGwZHgXFsFVwRZqTh@oWz@uYxAo^|AyYnBaZlFmn@vF}b@lGsa@lGs[vDiPjHyXvNkf@bLu]dAcDxPmd@fTqk@tn@{aBpMic@lDkP~E{WlCiT~Ci^zAcXbCgt@~A{z@Zs\\HkN@_C@gO?gWAwy@MedA@oR@{G@uO\\i[r@w`@r@{^r@_\\~Acj@NqEv@{TbBa_@xAsZzBm[lBkSjCkWfFq]vDmTdHi\\pEuP~GsSzSki@br@}uAdL}UnL{WfI{T`IsW~F}UzE{VlDcW~BaX~@kSXsSJoTSu[{@sZ}@iYiCir@{@{ZUq[JmYf@uZ`AuTnAkSlBwUpAeNdBqMbHwc@~Fa^zAqIdCkNzFa\\fDwS~Gwc@dJ_q@hP{nAnCsV~Ck\\rBqVpAgW\\sMl@aSTuUByQUsTiAaW{Fky@kQovBoNaaB}K}sAwFit@mFkgAeCu{@r@kdArCiaA|E{w@zDa]dIcm@zIci@`Ic`@hHeZvGwVjH}TpDcLpK}Z~^ifA|Lea@zHsX`FoShF{WdDaUtBeUjAoU\\uTAmVa@eUk@aMoBkT{C_TsD}SyEkSiDmLmEkLkFiMqHsOsHiM_IcLsL{McJuI_JmHoJmGeJcF{NuFmS{FgHaBqFaA}x@kMyx@mLcy@gRgc@wOy\\aPkXsM_YmNoXcOIEg{@{i@a^qWkKyHyb@}ZiVmW{NaTuVqb@sPuc@_FgQaIg^gHy`@oFih@sA_a@Ye]H_[^oOd@{JfA}PvAeUbB}PrC}TfDoS~Io_@jHgV`IuVtYyu@hKe[dLi]`Ood@tIg[zGuZjDiUtCc[tDun@pCcp@pBay@v@ehA@uk@{Bk`AwB_g@cGiy@eGcq@oLq|@wPyeAm|BkaN{TcsA_DqVU{BiAyNiBmR{RayA}A{JmAsD_CaEyBwD_BgCgAgC_BiFaJgg@iQuiAqW_dBkJyo@{DqZaIsd@gI_k@oJoeA}Esu@ePexC}D}iHs@g{Ix@e|@vBovAhEktAhGysAlFmjA~Bi`@~Byo@v@yS^}HnAcWhB_WfKiaBt[}hF`SweDjDie@jCk[fJ_jA|e@o~G`Dm}@tAuaAw@ycA_Awm@wAuj@{Fi`A_Hsr@yMyvA{P{bBcFcn@aCo^oB}e@s@{UcAmg@eBku@e@qi@Zch@z@g`@hBim@tDqn@dJ{uA`Coh@pOokCh\\wmFnJ{xAzImwAxCw_@dFka@`Fic@hAeMvAeKzDiY~F}W~Hm\\nLa^lH_OzOaZjyBq`E|lBuoExCqG`]it@rMeZ~GmPlHcTnFsQfHcZnEiWhDoWbCwVnAqUjAi]h@_`@Uc`@eA}[qBcYaEm\\oE_UqFsS{JgZgJcT{HkQ{KySsJwO{KwOkOcQyIuIsJoHqMqI}JiGgKkGoXqNiVkMeEcCa|@}c@gPqJ{ZuSwZyUwd@{_@aQiPyQeRaFcGaRyT}K}N}HmK}IuLgJsMsQ}Ws_@iq@{j@anAuPw`@kQ}j@si@}zAmc@yiAeIgVg_@u}@y@sB_GuNeJ}Sck@mqAsj@orAa^{x@qJ_XkIwUoSss@}Riv@uJe^{Jab@wdAq`EyQws@uXm~@_Q_r@k]}wAy]_rAsT}|@wRa`AmLov@uIgq@_H_k@_CuSE]yN{lAqK{}@K{@wIiv@wRy{AuDwWaBqKa@gCwDwS{DuQeDcMmDeKsFwMuGiO_K{RmMcSsKkN_OoNyNiLoIsFiH_EeJqEiLaFaK_DwLuCgNuCcKqBmMwBwV_E}O}BuRiD}RaEgMwCsGaBmGqBsJmDeKoEwIsEmHuEaGgEyFoE{FqEuHuHeMyO}K{PQYa`@qw@kZoaAk`@cyAcc@chBkf@}xBmHaX}Loa@yRwi@}Pu_@ySyd@k^qm@y`@wg@yNqLkVmN}MqHyTeIgU{Dyc@}Gap@iGwe@{@sz@xEwa@|Fwd@fDmDC_TxCyUdEgEt@sNdCo\\tEiYfEcK~AiUpEwYxCu\\\\iXwBiWeDaWyGkXgMcUmP_QqPgL_N_P_T_a@{p@a\\aq@iO_h@qRuz@qKyv@aF{u@oB}s@dA}x@xDgi@xIwo@nHsa@~Jgb@tRer@dZs|@|X}|@|o@sqB`]acAp[kaAjUk`AvTygAf_@swBlOuoAnM_dBhGgp@xFys@?C|Eao@~[y}DrIi~@hKefAbWklD|A_S|Gay@`JobAhP}hBnNszB~@o{AwA{z@o@wRiC{[wAkLsCkWiD}X}Lcv@}XgfByQmsA_RwnAcOo~@qMoq@G_@qQoaAwGua@qiAs~GsRorAeX{vA{AyFyHkd@oCkPaSmz@o`@{hAai@_{@kr@qaAkw@c{@m^qd@}[m_@cZs^{Xu^sNaTyP_ZyPe\\cEoIqMyWgNma@kKk_@gWmaA{Let@aHio@sDca@{AcWiAia@mAc\\O_~@Rwy@ZklAC{p@nBy}Em@kg@iAqa@gDwj@cByScPwqAi[smAgm@}xAwb@}r@gl@ir@{VySyBcBgh@q^{[cP_C_Aci@uRwFoAa[eHu_@aFsoAoJyg@mDuRiB_XeCeVuCkOuC_`@}JwR{HkQiIoN{JeN{J_QaMgLqJgT_PiMqJqKiJiReNcSiTii@wh@{aBkqA}LcJuTsO}ScOgj@ue@ql@eb@_]eWeUgS{j@qi@wdFu`EqjAo{@aSySkOwRmM_TgJqRwFwM_K}[qJ_c@oHwc@iEae@aB{e@Daf@nBwe@tE}d@zHqc@zKwa@vNm_@hQs\\|SsWl^e^bh@q]~eAun@deBybAzb@mVlDqBzRaLj]sThPqLnO{M~N}M|I{InNiOzLmO`T_\\zSaa@tJsSlIaSrPke@lHgVlJc_@jIw^xEiYvC{V~BiZdBi\\vAee@hAme@lD{wAlEoxBH{FdDqyAlAk`@NsEbB{\\hByXzBaZtBmWjD_a@hDgYbGyc@`Iyi@dVq_B?CF_@@GBQxAoJr]m|Bd{Am{Kvi@_aDzRa~@nUe}@hWk}@pZibAtgBakGlWsnAvIog@vGmc@pIqo@rFcj@pGow@vCw]bBeSdVanClEmf@hPuiBZaD@MdOm_BjM{}A~SidCnGqcAvAuYzAsa@~Akl@z@si@n@wr@\\}^l@}j@d@ej@fDw{CzAudB^ua@`A__Ab@sh@KwYw@me@sA_^oCq\\kBwPeDuUcC{OyDoTgKgg@cMcl@cKge@aTo`Ay_@ocBm`A{gEqGgXkEuPqGqSaK}VyJmS_OoXiYgc@qSiVkXmVmb@{W{i@eYubAuj@_QsJ}X_PeH}DcZiPqe@e]kb@s^{^}a@sd@ci@m\\af@kWwe@_Ziu@}Poj@cJe]kVsfA_O}pAoGmkAcBkd@_Ac]_@ia@FwYZy^\\kz@c@e`B{@{~Ag@_p@oAet@_E{jBk@g`@W{Tc@w|@g@sp@u@w`@cBul@qDys@KcAkDe_@Iw@oBaT}Jst@aKek@m^}aBkj@urBqL_f@mr@csC{Qet@wW_jAs[}fAklAm`E{c@yfAsr@uvA}Ykc@eV{Vec@}]qi@wc@sMeKiHwF{b@{\\m_Auv@uZwVe[_Uuo@cf@yN_MyXgUcTaQeNgMeRaSoW}ZwV{ZwKuOeDmGmb@ot@ok@afA}k@wiAwXyi@ev@yzAw`@kv@mMyVqLmUsYik@mYcn@eLwSmcBwhDwOqW_L}TeS}a@yWco@k^aiA{[akAqa@y{AmYwdBuN{`AqNijAqL_fA{Qm_BgU}nBaKgq@_Kmi@eRmo@ed@}w@uRcVeT{S}R_Q{TcNcaAs[aMiAiXcCa`@BiPlAan@vK_SxCoa@hI{]hIuXzEqv@nRoo@xMoXpFmo@vMsa@xBc_@^cXgBo[cEs^{Ie[kKqa@qR_QkKqAy@aRkIeTmQsM}OiNyTsMmXiFgL}EeMaHaTiC_ImDkKaOue@mBsGuJmg@]eBcDaVsAeJmEi\\oD}`@y@}]R_e@jC{]pBa]t@cMjGkk@~M{u@xI{[hLa`@fLoY|LwVjPqY`PsUlNmPhNuPnOwPhUiUbTiTvQkPpLmK`m@_i@zfAm|@vLoLvHmIrGeInKwP`M{TnP{]tL}ZrKq]`Iu]nH_e@pDyWrBuXpA}[Z{\\a@ma@}Aq]wGqcAeFqi@kG_n@}Jgj@uNsi@w^{z@g]cl@eqAoqBea@yr@ywAszCwm@wtAkLmWkU}g@sR_d@{S_b@}Sq]eb@gl@_WoYyJqLcYkZaRyNeZ{TgYwOuYsMgo@gTeXiHu_@uHqW_FmXwD{[cDqkA{P{aByV{_A}LedAeMcm@sHw_@_GaOeEuKgEuIoE}Q}LcEeDyCgCyDuDiC_DgMgPkSeZkG{LiKoNiUgc@uGeO}IcVoEoNoJi[mOyx@{H_q@mDcp@cAih@gCmjBsH{yHcDccBoCcdAAa@q@cj@{@o_AcCa`AoDgh@qBsVoDeVwCcSuPas@aTcn@eJaSuCkG_Vub@ySsZaVoWu]a\\cs@ko@cXoVus@cq@yU_Twf@id@c\\}YkXaXmFmEyd@gd@cOsPaL{NqVm[go@_{@io@kw@oa@ei@cw@{_A}i@wr@oA_Bak@ut@il@ap@mLcLyQsMmu@sc@wq@aYmkAel@aMsH_WuPuOyLeQ_OiMiLwPcReLiNcMaPmFeHsHcLkQ{YqEwIyKwT{FiMeHePwGoPkPmf@iTgv@ct@}iCqvAmoF{z@gaDqmA{xEcaAisDuScr@kJeXgOk`@aRq_@gRc]_ReXuB{CeJ{LeW}ZkYeViW_QmWyMsm@cRw\\wHoZ}Duh@iDwr@Tsa@xB}AHy_@fCmYt@gGNkUj@eICaKk@sMu@gO{AgT_DkY}HiScIgIyDeMsGqKyGqSsMwP{LYSyUqUaOoRwNuUqgDoiGoF}HyN_Tu\\ob@{U}WyMwKuDqCk^iSaVkLwc@cN{QsD{a@qFcb@eBm[b@eTdAcWfD{PpCcEfAmIbB{_@jMge@~Uk_@dTmAh@sNhHg[~SsWnPkd@`UmSdKmUlIgZnLwV~GqA\\uX~GaU~Eo[vE_J`B_RfDms@`Nco@pSor@~a@{XzS_a@zZ}w@po@mu@ti@kQrJcTxIaWpH{ZxEqRpBoV`Aaa@Oy^yA_bA_Hay@gFsb@}CykBeL}}@wEye@XqY~@iRnC{l@hJeu@pQoYnJwp@`Zmv@ph@_m@~d@qh@x^afAf{@ca@`\\kZ`TgUpMuQvI}f@~N{YtIsVnDsEp@ab@|C}`@Jmu@w@ozZ}`@yRT_~AbHsy@|Fk[zDsUjC}YlEwWvDca@|Eu\\xDy_@hC_`@Z}h@oAsT_A{]iE_\\qFo`@gLo_@aMksDe}A_]yLm]gJiXeFqXuCuTcAkW@gTf@qSfA}g@tEsxAjNo^tA}]s@mTs@cRiCwk@}NqYiMyTiL_VwRwRiQcMqNgMoOsL}QkNkSuMwXuIeRqLe\\gXcv@a^c`AgZix@uUqo@qQsg@cHwRcQwe@uC}H{Tcl@_LgWeYwo@ks@enAe`A_yAil@_aAm~@}~Ac[kf@{_@up@mf@i`Ay_@uz@o\\aw@}d@unAgf@}uAkLs_@oLwc@qFcSsn@ocCaWgz@_Uop@oXit@aXan@eQw_@gLiSmLuSsZch@c[qf@qXu`@wi@mn@yw@ey@}`@k_@o]sXgh@w_@__@}VuTgO{UuQuP{LuSeOgE{CyWgSeK_IkYwU_o@_j@_~@{~@eA}AcUoY}Wk^cOyRkI}LcKeO{Rk[{\\yi@_l@o|@ch@gv@e^qi@qeAq~Ace@ys@gg@mu@}W{`@ayAoyByMoRae@ms@mWm`@oQcXiNeTax@mmAe[eg@gc@sr@wsAa{By\\kk@}f@mz@o^ol@mEgHyGwKek@{~@u~@g}Aua@er@u[}g@{e@yw@asAc|BckAgjBkI_NgMcSyWya@e[qf@wu@ikAEGcsAytB_Yic@eWy`@qN{Tuy@oqAo`@im@wWwa@mRkZ}IkNgVq_@kMyRc[of@wEmH_i@oy@CCcRuYe_@ml@c[mf@qr@egAsy@}pA{HaMyPsYoNiWyKyTaKoSqMmYkPg`@oMo]{Ls^gJwZeNuf@}Kw`@sW}_AwKo]cNe_@cNe[eMeXyMwUkI_N{JkNaUwZ_VyVoL{KcKyHmUaQiTwO_XiNiVwKes@{UcYiGuWaEkZsDmZoAwYm@gXIkWh@}RvA_RrBgNbCaPxDeO`EeQnGwOlGoKlFuMdGoXnOaQlKqXxQqIfFoHxEiMjI}a@~Wcp@da@on@b`@_OvJa^vU_NjIuG~DekBtiAwa@hToRpImFnBmMtEaLxDcXbHwW~FiZxE{Hx@{X~BiZz@uTd@c`@a@{^qBkL_AyM_BqSmCaEw@yNuCkWaH{RoG{PiGgTmIiKaF}ToKsOcJaLyHuSmO{SoQaR}PkUuT_W}YaOgSwNgUcMuTwQg]yI}PiQka@_N}^qJaZ_IuV}ImZeGqTyKy^is@y~BsIsTsNg^mIuPoGyMoYkl@gLgSgPgX}PeWuM_RoSgXsKuMePiRclC{_Ccu@yl@{WgTqh@cc@wOwMggAyz@sLaLil@wc@yTsSkp@}h@{yA_}Ag\\g`@mQ}Su[aa@uIuKaa@wi@a^uk@_MoT_KiQciAetBim@shAgsA_sCym@inAy_@}{@sCqGo\\mw@_Vol@aWop@cVir@saAclCgAwC{k@eeBma@cgAmRef@qd@ycA__@eq@_e@gs@{@qAoe@yi@{b@_d@qa@}^aaAmj@a`@kPm\\sN{n@sXs_@ePsd@kQwf@iQ}a@_PwWyMmq@uXsh@yUw_@gW}UqPgPsOwYuYiOcSgKyMeJoOqPaZgLiUuMsZeKoWyMk`@yPwp@yNiv@a_@onCed@weDmKim@_Loj@eKka@kMya@sEkNcG}OwMiZm^}o@k`@kn@ue@of@_g@y`@qn@_`@eg@}Xo]wRcH}EyOuJsLoJw_@}WoeH_lHqtBezB{KeKy\\kYoNiL}L_NySyPu_@sW}e@}[uIeE}GcDmOqHea@kOkw@_Tct@{K_j@kDgc@s@ob@hCkWxBsTrBu~ArSkpBjWmZdE}k@lFaj@bAwe@u@omAgNoiAwKu_@_EkXkGgk@qVoe@mYm^uZqt@c}@yi@_}@{d@uaAsQee@ySoi@{Ns`@eVaq@qNca@{Lw]eGwP}GoRyJoVoGmPkRsc@gIyQyIkSgTi`@sQi^_i@s~@wk@w{@mj@ik@}SaTuDuCcj@ga@wm@e`@yiAgo@wReMcEmCwbAyk@agBqbAit@_c@ks@}b@i]iVqRaP__@wb@ia@al@{Oe\\_EyIiK}UyLc\\}HcYiJsa@qIad@iResAyG{b@_@mCiPekAyn@y{DsmAmuHmKmx@uEer@{B_s@q@um@Tsg@^eg@X}X|Bir@xBma@tCy_@xBsYrMccBfJkcAlCyZdBwRrAmYjA}Yl@{f@Uia@]mUm@}S}Ay\\mGyw@aI_p@yCwR_FeWut@}cDyPot@aGiWuLqe@mD_OaHqYoYckAcRuy@}Fi[uGg_@wF{b@yEwi@kBgc@k@y]F{]x@aa@hCu`@VeCpDs]pEg_@|Fe_@~Iuh@bKmk@~Mkv@xJ}m@jJwj@nL{x@xFym@tC{h@vB{`APifAz@i}BCiXLka@oBsy@_Ba\\yAmMm@eFcC}UiCuOqO{r@kSa`AwPi~@}Hw`@uDs]mS{xBaD{_@a\\udDcFmZcFiV_Ii[gH_VeLaYgI{S_JyOeL_TmT}ZoJqJkF_Ga_@c\\kTmMyTaJs]kMk^qI_UsCiTmA{Z@of@fEsSzCsTdD}a@`Gs[pEqOxBmSpB{a@|A{^zAmZjA_]p@m^_Ayu@iJcg@cLad@kPyw@ua@{_C_{Ac{GakEqf@sZid@gVw_A_h@qNgFmMuDyTkFiOkCqPwBqSiB_YwA{KQkd@Cu^Nea@HshBBy^Z}o@Bsk@DkKWgQy@{Q_B{NkBoQwDgTmG_SiHkOyGqL}HeW_PsWeTeSuR{KuMmKeNaMoQgIoNyHaOeJsS{Rag@_Oc`@aZcu@aDuI_EqKqScg@iT{e@iXif@yg@gt@oAoAyYsYa[wYiG_G_b@}^}b@i^{l@gi@yi@ef@ox@qs@q\\m[qYaZcVmYuWw]kOuUke@}v@kMsT}Ra]eZif@kPcYgo@ogAqQs[iUw`@}RwZoNeReSgTyWsUwc@kYyVsKqU}IgRqFol@sOyLyDmOgEif@}NuBy@CAkIeD}LuFoUkOeH_GyHoHgI_JcGeHoJ_Lee@uo@us@oaAoqAegBsFyHuDiF_JeMsPqVeTi[qJ}PgHgNwHgPaHwO}HkS}IoWEOgM_a@aJ_ZCK_m@ynBs[{dA{Um|@oVyv@uLw[aXee@{QwVgLyM}R_QcT_PqTmLyRkH}LkDkJ{BeK_B_KgAeEa@wXkByIU{^t@g`@h@eYVwXOeWlA_t@Ts_ASgv@x@_^{AsSgBkPcDiXaHgN_FcKmEkYyN}L}HgLaJsV_T{CcDiLaLsJgKsHkJyHmLcIeNkKeRsGeNaHuPiG}PyGmSsFcSmFwS{D}R{DeTeBqLuFuf@uB{V}@{M?CWwDsBq`@{Dsv@qAcWmEgx@yDex@cG_w@i@cHmJqx@mLin@{Ner@oMed@qCwJo^idAsOe\\_Ucb@{b@uq@oZia@wC}CgEsEmEyE}GkHy[oY_GkF}f@k]ka@{Tef@oU}FqCijA{h@ga@_S{XgNyXgNqPeI}FsCc}BoeAkYiNo_@aS_JgGcKuIsHkI{U_[wJ{PqGqMiGiP}Nmf@cFoVuC{SkBaVyAyYeAq`@cCc~@gB}fA{Bsu@iAgNwAcNiB}MwBuMgCmM}DqPyHwZsMuZgIeRyTs]ySyX{Um]sSo]_LeTgIiR{Mw]_Tsl@_IyUuG}VuGa\\wFy`@{Eu`@eHwY}DiUqDmT{Nex@cLwj@QeAyFoS_L}`@aLiWwMgX}h@uo@{a@um@cd@uo@ub@mk@c^ae@e`@ck@mZ{a@ca@}f@kh@up@mu@efAab@w^ke@s]qeAkl@co@u\\wQmOiJeJaHmIcJmMkJgPmIgR{FcPiFwQeE_QsDmSsBePqByQ{AaVa@sOEeM@cRN}TVoQXiOP{IVkM|@ae@Z}OtAmv@x@g`@`@oVFeD\\gRXyU@gSKyXMeKWcLa@qKm@eNu@wMuAgTwAyPqIo}@eIe{@w^kyDmWyoCgM}sAeBoT{@mQ[{RLiUp@yR`B{YrAmQ|B_R`CyO|AyIf@qCbD}NdDoLrC_KxDeNvBuH`BaG`S_p@hPqk@fByIf@aCl@wCtC_QlCs\\|@s\\]eX{AkWiEum@cFod@qF{]yFwZyFmUyGkTsLmVwJ{NmQeTcOiMKKym@_k@qrAcpAii@mf@kj@_g@e}AetAaByAoHyGoHaH{CuCktAuoAkzAssAmEsDgLoJ{g@_d@gv@ot@cFuFaJ{JeLaR{IoQgJeYoCqO}C}S_BiW_@s_@EeWM_qAWsv@CiLs@gwB?e@Fi~@Uw~@i@{}Bg@ed@?Cc@kLmB}SqAiIwGy]eGqSkCmH}IyVgKwN{LgOqS{MgV{Lmb@_Uc`@kSe@Y{TkMot@cb@wg@}VoG}CyAu@eVyOkv@ui@cX}Puz@mp@}uAugAcuB{|Awc@{_@cTg[kOwUuL}UgvC_{GuRyf@kUkh@aZ{x@uDmMqD}NqCwQsAgXAgN?mR|Ae[jIgkBzB}`@nDkq@pGwyA`Aoa@hBk`@n@{^AuY{@oX{MycAaBqNy@{SMuPt@_VlBiPbDiQ`N_d@rJqa@dIg^hEcZ|Fsf@rFsq@z@yJ`HqhApCmf@dA}[Mw^y@iTeFae@wNkg@gMe]sQo_@}]ur@if@qcAoYak@{d@q}@aFqKwZkp@{EwLyEwLuIi]wI_d@wJeo@_Mqo@cPal@aYmx@eCiHgOkb@cOic@sJq\\cIiZ_FoUkDcRaDmRcEwa@i@oGgCuUsCua@mBye@mJozBeAiYq@qLgAcMoAgL}CmSuB{LwDiQsD_Nw@uBcE_LIUwFiNaJyR_LgSwSm_@cTqc@cJaXuFiVkGsYk]s_BsL{^_OyZm{@yqA{RyZcZic@_d@kl@wXuc@ov@{qA}OiVuLkUko@kpB_Yww@sNgS_WeQgcAul@iO}JsYoRey@_dAmToXse@}l@aZs`@kf@wn@{Va[kQcOaRwOsH}DsSuKay@yb@um@a\\ka@mTevA{r@}]eXqg@w_@sYcWwSy^ub@y{@sIiMkQwY}Oc]il@whA_GsO{DkOqBqNu@wODsUj@oLbBgNbQm{@fNww@jIch@nCoTbAiKx@yL^yNKiQSeOi@yPoAeRkHwbAkFou@uF{w@kFuv@oFchAsAcPyBsRiH{e@}CiOuDqNgEcNgIuTyFkN_FcKiEiHoG{JaFmHgGsImt@{oAe{AgvBm~AubCcN}SoP}VcMsQ_JeMmrAqqBwHoMoWq_@cMeRsQ_Y_IeL_B_C{AyBeYwb@wD{FiMqR}MkTiEsGc[af@aNcUgEeImE{IeEoJ_D}HkOm`@kC}HcDwJmDuL{Rwq@sY_eAiBwGkLc`@uFgQsIwWuWos@cLqYqJuUwEcMcXkq@qI}TuByFs`@gsAgBcGmc@yzAaFqP{Lkb@uCeJsCyJkCeKyBqJkAuGsAqJqJut@uHsk@qSm`B{E_`@kF{`@_RkwAkS{~AaCsR{Fsd@iDsWuCkVwB{Qa@mDq@wFyU{aBwFs`@cCcPoGm`@{RgmA{CcQq@uDeE{V{Kyr@wMuw@gJgk@{Lov@cRahAuBgLiBgHaByEuBoE{EuIgDkEiF}FaG{DsFkD}LqF_x@a_@{SiK}D_CyEgDsE_F{AyBgBkCaFgJ_DwHeCqIgBiIuA{JoAyKyHss@yHkt@iD}ZgFqa@uB_MyBiKmCcKsCiJwT{o@o\\kaAiOyc@gVas@aG}PkEcLuEmKqMyYkg@ghAeSic@}CmJ}BeKyAqKy@yJUgJGeKTeK~@mKrBuM~BiJrCsI~CkHhD_GbEsF`EeEvCgCr@g@rDkCtDgCbWcMvRgLjBgAfEiDrEyE|FmJrEyJnC_H|AeHfBuHlAsIt@yIZ{IIaMa@gMcBw_@}Bgn@uCmt@wEiqAo@mLcAiKiAcIgBgJ{ByImCsH}B{EwDwHkEeIwKiQsTk_@yMoT}JyPoAwBkHcLyFeIoOyRkQqUwX}]uFiHcFuG_EwG}C{F{F_NkPw`@gZ{s@iNa]cGgO_FeN{GoRaImWaHgUo@iB_yBkhHg`@opAmIeXcG{PeGuQuSsj@eIgRwMaXuJiP}KqPsIsK{FcG}IcGiQ}KiDeCqCaCgDoEyCuEoDaHs`@gy@{HuLeDwDkEeEcDuCkFcEgLsGiE_CsHuAiLKgJ|@wNbDgMbFeNxIgD~CkFxGgHnMyIdRsJbToDtH{EvIwFjJeI|KqFhGgN`MeHzFeJvFoJ~EmNlFmJlDgStI}InEcK~G{E`EuLpLoHlJcVj^oJfNiElFwHlIqH|F}FrDwHnE}KfE{HfBeJnAePvA{Kx@qLjAsLhBcOnD}M`EqKxE_NlHaHfFePxLuz@zq@oi@|b@qj@`e@cSzO{VxY}Q|WmKfRcHbQyOtd@kEfNsDjM_EfRyCrPgEn[oDf`@oCn^aH|tAuExhAiFbwAkAla@Lf[vCxi@pJljArEnd@rCz\\bAh\\\\dQA|Oy@n]wBna@yDn`@qGl_@mHt[wGjT{H|TuLjUqH`N_NlT}IjMaKbLmM|MiTbPaOhIyNjHmOlFyOjF{N|BaPxBqPtAuRTeNAiTaBgUkEmOmEeJkDeGiCwGaDqUqLqQ}LuY}YiKsNeIqL}KkRmO}[qOea@}Hc^wDeYoCo[mBiv@cAek@Xao@lFetAvKuvAbDs\\nByPbDcQ`FgTzGgUbHqSpF}L`GqLnFaKbJcMvLeP~b@wf@d^}a@nYq_@dRcYdMiW|JwWbGoR`EoQvDeS|BsOxBwQpB}TtAyTh@yVJo`@g@eW_Ak\\qBiXmCmQgFyVoIuYoLm\\aHsRcFuKoFyJyM}SsUu]aTm[stDcsFqPkVwJ_McMkMsG_GaRsNmJqF{KqFwFaCmT{HsOaEmSgDgRiBgK_@cTJkZZu@?eFJuw@fBkd@dAss@fCS@mQn@kVbAmxIx_@qf@`DqU|CeSjDkTpG{SzHa`@lOmOdHyPfIuKdGeN`J_LzHgPrLoH~FkLvJcOhP_QfSiM~OORuBjCki@~r@y_@jh@wP|U}LfQ{PzUiPpSyZv`@gx@faAcK~LcGpG}E|DwE~DcItFcK~FkI|DgFxBqMpEcLpCgIdB}GbA{L`A{Kl@aL?eJO}Lq@{MsAi_@mEkS}BiHk@uFa@iKOoJBcKVeL|@mOlBkNvCgIpBuHjC_I~CsHvDqIzE{IdFkPtJcL|GgIlEeHnDaI`DcJfD_HtB}KtCsCl@_Ex@_JtAqMpAcQn@kzLnTaWtB{UpDmKhCwGjCiFzBqFrCoGrDkH`F}DnCu_@~Wsf@t\\ga@`Y}d@t[_WhQyQpM}MnKgJrIeLlL}JtM}IzMqG~KsIlQ}DvJgDxJ}E`O{ChKsEzSkDxTeLbaA_Fhe@oBbQoAdLmBbOuC`QcEpSkEtQqFbRqHnTgJjV}LlYcQx`@iNx[uJvVgJtYqG`TmDhMiChLgBvIwH`d@uE`g@mDzn@aAxi@KvwAzAj`DRzh@s@`e@oC|e@sEt[kIx^sIhYaKvWiJpTgJ|PuH|LmJzLeJhL_KbKsKhJeOdKcNrIuTxLaW`NsaA~h@gVjMwi@fZyK|FaYtOsMvGiOnHqMvFyOfGaOdFgPxEeKbDec@|Mgd@hOeY`KsXhK{MvGkO~HsLbHsNbJyMtJiPrMmOrMqQxOsWbV{b@|`@mR|PuIbHaLhHwKlGeOfHuNdFsPvE_c@nL{f@pN_s@vRg~@vVeUzF}MbDiKjBkIz@uJp@iJ`@cM?qMYwLeAcMgB}MqCoMyDmOoFmYqKqh@cSqP_GiL{DqNgDaOwCoNcBkL}@oKIcHF{ENq]xAo_@~Acp@tCa]lBuCLebDbOs_@zFcD`AuWxHyI|DiO~G}[rRun@fc@qOdI}[rKsYrIgMvAc`@tCov@jCkf@fKsi@~NyRfI}ShJ_SrJmd@xNmk@tGoj@lGkSfEaW~KsWhOoRhN_XnXwe@|t@ma@|s@sWxg@uI~S_GvTmQbyAkf@hqKaNf{CgLxfAmLnk@cGxTsZ|x@yTz_@uxBvqDyVp_@ir@lv@si@nb@qKjGqw@jg@ooBtq@{eCb[edAbWus@fQsv@dT{cFfzAyaBte@wR`JylAbdAeZ`a@u_BhqB{fAhw@o_Ad`@qwA`a@spAd\\gsKlyBaUhDmv@hGyPC}P_@s^m@m[}CkM{CmMyDav@sZuRiMyTqR_u@mt@clCuxCy\\i\\cUqPyR_KwLwFuO}FyWqGiSoCoOgAeNW}K?iYhBuUfDst@`OcI|AwJtAePlBsNt@wJh@yIR{T@cXoAiLaASAcVyCsYkGa[sJsd@qSuu@w]oi@aWax@a_@mTmIkNgEsJaCsLyByNqAmLo@A?uOc@aUF{{CrAw[r@e_@xEy[zLqUlL}WzQcYnZii@tr@{a@bf@sc@f[uf@`Tik@zMaxBdQqOrA_Q~BmPnDgNdEqUdJeRfJeQ|JoQ|LyQxOkRfRm|C`eDqZh\\}e@~f@eM~KyM~JqL~H_MpHoYdNaSrIoYfJeZrHqZ`F}[nEmYvDsQ~A{k@ZwHYeHq@iKaB{M_DsUsIegBap@}Z_LyR_GiVsFa`@uFkS}Bej@}DmtAoHix@}C{NeCwR{B_H}@a[wFy^mMcc@yTc\\}R{ZaZkDyBuViVsxBsmBqb@e\\u[gPiPkI{_@oIgS{Emu@gDoYPeKj@}TbDce@jIqh@jJwg@xMiR~EufBlj@iwAp_@i|@fUsUrEkR|BaIx@eVv@qTQcX{Awm@sIuuBo_@wNyCseBc]i^aCaTYwk@~BqNj@sd@fLyAb@wNdEsx@n]{w@fa@}WvJyXnIyz@xOqf@tFgg@|BmnCtP_vAbIsjAjFmKLsNJyP?_SKyRg@gR_AeMaAoPgAk_Hmx@mr@gCwMSuUW{b@fBmZ|Cmh@xFk`@bIy}Bzl@urAf]om@tGqaAfCkq@_F{`@iH}m@wRuUsKmqDsaBwqM}`GqzBql@uxB{SazAiRi{F}d@}m@qG}Eg@g}Du_@ikBeLiiCeBk`F`ZkpCjTgmApHikAlAm~AuDuDIe{AsIe_CsO_nAyEo_Ar@efAvKkt@zK{x@`Toq@zUgr@v[w|InkEmw@|f@ar@dj@ieAziAuh@dr@ym@bcAyc@nz@qq@`aBcn@lvAgh@x|@ol@~y@_`A`bAo}@nr@{eAzi@_`FhgBqYtIgq@`R}o@|NkWjF}AZie@pIc[vE_Fn@gWbDqGl@K@a}C~XgUrBwbBhOuW@uq@bHkq@lGc^bDi^tCuZvAmRVuSQoWuAaP_BkWeEuOqDyOaFqKgFg_@eUgPsMoM}MePaRkOuTqNoU{McXaMcXg^{z@qrHucUytA}dE_xBwtGs}Am~EyAuEcOwi@g@iBe@cBmF{Rab@qnB{Kwq@uB}LqGo`@k_@ylDqhA_yReq@s_H_w@yuFugCypNq~Bi}L{bAueFobAmkF_GwYqFcWym@q}Byf@i`B{iBc}DuaCahFmgBsxDwOu\\qi@ckAa~D{tIqJgTsJgTsl@uoAsbBgoDw~AkiDeo@muAkhAyaCeyAi`D}sBcpEyeFw{KgFwKuJuSswBujEspCmmFwvBcdEg|@kcBaS}_@ilBsqDymBktD_c@sz@u]ut@ka@w`AsW}o@eX{s@Ws@{b@eqAc\\wfAyVa`A{Tg_AqNqo@yYozAeKsk@{a@ymCq]u_Cac@guCyDeWcBeLejBcfMm[qvBuTazAaWadBiJ_o@oQomAm@_Ea_@ogCeGkb@mMo|@iSouAgOs`AeGsa@u@cFqPkjAg@gDcYwoByAaKoDiTqEoUqHmVcHaQiImN{HiIsG}FqI{F{DqBcEaB}JyBcKcAwIUqKd@eHt@wM|BwNnEcNtFuWvMcQnIyPtHeP|FuR|EcVrEaRjByTjBc_@fAu^Ow_BDaoHgPqgKsTcbBqD{zDqHqoG_N_oBuDyaA_Ds`@qB_c@mEui@qGkf@cIoj@uMeQmE_o@{Ro{GozBahFkdBa{@yY_bIswCwoFupBuzA{i@iQwF_WcHiLuDmr@wQi\\oHuo@wL}i@uIq^_Fo^iEqZyCu~@iH{cEq_@kjBkP}{@gIgk@qEcm@qD{xA}GwqAgGemA_GwfEcQsvBmJilBgImoGgYwdAqEsh@mCqx@uHwi@sH{s@sNqp@}Puz@aYw`@{OsZcNeb@uSeh@mYokAyn@g|BqmA_tBghAwvB}jAigFaqCmsTisLkw@}b@uQ_LmYySeQwNgL_KgT}SsYk]yPwUaSqZcSw]cUyd@gTei@{Oof@s^woAcqAsrEkMma@wL}\\}Pgb@sPm\\{OqZiMkSwVe_@mVyZa^ga@wvA}{AmyBq`CuoA{tAcf@qh@eCmCmqEi~EgaFeoFw~AceBwmAgrAcw@yz@kiByoBsr@av@sp@mr@oW}VcRgOmyAcaAcrAez@eaAwl@y|@un@gbAkm@atHo|EwjDwzBszEu{CygDyyBcuFioDq}FetDoaHwsEu`@qVgyAa~@iZkQg}BiwAstC}jBoxWclPkpFgdDgiCicB_xJicGwfFegDyaGmzDcyJujGgfA_r@qh@wa@eg@yf@stEwhF_s@{w@qbA_iAsp@ou@otB_`C??ifCsqCu}EuuFieAeiAc`BmeBy~@kq@aBw@ch@gVoj@gSmy@yMm\\iCy[aAsa@x@eh@zDqv@xNib@jMolFxcB_`ElmAe`Cdt@y`AvX{]hJ__@xHkk@jHul@|Fgn@bD}m@Nc}@kEud@cFke@mGu_@sGwb@cLilAy_@o~HskC}HkC[K{zJ_gDubB_h@{pAkSofB_QwwAkOw|C_\\uuBkSq_@qD{fBcQqhBsTmm@qGwm@aKkn@wOaVmHyl@}T}b@mScE{Cq}EqgC_nAao@s}BeoAs~Fc{C_lAmn@okA_o@wwCy}AeiBwbA_zAeu@g`@_SgHsDkwAwt@kkA{i@gnByu@sgAsa@k|@}\\ev@qYogEa_BkhEeaBi`IgzCum@cUwg@{Rgp@{VgWgJwmBit@ca@yOa_@qN_zDqzAugAoa@ejCaqA_pGaaDygDceBshBm|@sfCsqAaaAgg@}b@{T_sHesDuMqGoQyIm]_NkNsDwh@eNkz@_Iii@wBki@Xwk@fEqYrEaG~@kqGhz@}{AzRs_AxK}ZvByg@tAch@F{k@_Eqi@iGyyA_Tw^kFSCiOmB_}BiYqp@_Pgl@uTab@eP{X{Pcp@}b@yaBsuAgyBoiB{zB_kBeaAuw@ur@gl@yxB}iBcxCidCmpEwwD_{AslAyyAkpAewAikAeuCmdCozCcdCaz@gk@ivDuvBadDeeBgfD_jB_eGifDs_Bg|@{|Au}@ez@md@_z@yc@onAkn@qkAua@c}GqfBy_Dyx@qcDk|@}nD{_AwaDo{@k}Ao`@{yA_b@}_Bwb@spAc_@ccKgiCix@yX_j@mTmcA}m@_mAms@ikFi|CgaFoxC{tIcfFeu@ij@yoHobHojG_}FmrAwpAy~AevA{n@ae@ey@eb@u{FanCqkDk_BytA_q@izAyq@kh@aVg~@gb@myAkv@geAkv@uU}PaaAk|@_MeIuqBakByn@mj@kpAcoAc|BwrBi_CqsBuaBuoAyvFaqE{yDq|CsuAciAo|@ct@qc@s^mSeQegAi_AwqAqfAez@aw@imNgoMmrFabF}h@ad@wz@ml@_cCmoAao@kZcsA_o@w`Aqe@mCsAySeK_jA_k@mkA{l@iL_Gy[iPmo@_\\yw@_`@qX}Pib@gXkXgTyi@{a@}g@cYyYcN_MeFmNmEuVsEk\\sDoDMoFAo@E_E[qBa@eE{@sf@mNyc@kMc]aLykAg`@c@O}jA{`@ohAo`@gyAej@}fCgkAmaDi`BccB}x@{dBaz@qiAyj@emAil@kaEyoBqoFqkCwt@e`@uh@i\\wi@se@y[eZsRqQu}CyzC{OqOujAggAqJ_IcJiGcKsFcJoEibBoz@m~Ei~B_h@c\\c_@_\\we@_h@aBeBaTkYoh@sv@ucAczAyZ{c@yFiI{a@sf@eXs[gn@_h@_YwR_JiHkUyMkRwH}VyJ{_Ao[sEqBuKaGaGeEEg@WiBa@eBk@}Aq@uAy@kA_AaAk@a@WSiAg@kA[mAMg@AmADkARkA`@gAn@c@^]Z}@dA_DBqBB_@?k@CYEYKe@WqIoFwAs@cd@oWio@}XoMeDoGqAwIyAqIy@{BSwBKeBE_DKoAEwDKiEKqj@uAoGOoLYsFSuq@mAwIMu@AaCE}HKcCEgBCyCo@uBqA{DqBkCcHc@UyAkALuHr@ib@X_MTsLrAss@b@cU^wQD}BDkCByA@o@LyGFsCDaCHmEH_En@y^fA_n@?AbBa`ANyIHiE?E@e@@_@JyEPsVAqKUkPe@uKoB_TiDoUoAeGcAgF}Jif@yNmr@gA}ECIWoAy@mDm@yCe\\c`B{BcLgD}PmAcFiByHoAqGe@_CeRu|@g@yBgKgg@uCoNw@_EmC_NoAcGu@iE_G{\\sCmViA}N{@aQe@gReCwyA{FkfEGqEQ}KI}D{BcvAw@oe@oAkv@M{HEiCKuFIyE?WAq@IsEIiFuGu_EGoEcAeo@iDsvBOsJk@o]{E{zCC_B]_TsAmz@w@mg@G{D]yMe@{GSsBSmB}AcOAgBIgBQ}ASsAYwAo@sB]{@a@u@e@w@k@w@o@q@s@m@u@e@w@_@g@S{@Si@Kq@Ew@CoAFCHk@?o@Lg@Pg@Pi@Xg@ZeAz@q@t@k@x@iASoA[gAa@oeAwx@gCoBsCsBicAwu@wEoDoQaMwGoEmEaDgh@i`@w`@uZwa@k[oCyBwE_DmE}Ce`@sZ]Yo]yWsAeAwB_BaKmHmYoSw@g@cH{DkAs@iBiAoCoAyXoMaAe@iIwDwF}B_EkAcE}AuIuCwB}@uw@aVy_@{E_e@}FgC]{B[]Ci@C}N{@c@CkBKaBKsCOoIa@iC@sA@}IVkELwWAi]?}UAkF?w~@hAgRTqG?qEBaAAU?_@?kAAqDAmXDanAz@cB@_C?arAHgB@aCBo`Ah@eaAb@_IHeQVkDhHcA|BUt@Ef@?pA@bFXl_AmCB_KH{A@{g@f@iBBwB@oDB","voiceLocale":"en-US","refresh_ttl":21600},{"weight_typical":267431.508,"duration_typical":281532.391,"weight_name":"auto","weight":300600.148,"duration":281579.445,"distance":7941039,"legs":[{"notifications":[{"details":{"actual_value":"NL,BE","message":"Crossing the border of the countries of NL and BE."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":1333,"geometry_index_start":1324},{"details":{"actual_value":"BE,FR","message":"Crossing the border of the countries of BE and FR."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":3859,"geometry_index_start":3856}],"summary":"A 31, A 7","distance":1238344,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive southwest on Oudezijds Achterburgwal. Then Turn right onto Stoofsteeg.","announcement":"Drive southwest on Oudezijds Achterburgwal. Then Turn right onto Stoofsteeg.","distanceAlongGeometry":158.232},{"ssmlAnnouncement":"Turn right onto Stoofsteeg.","announcement":"Turn right onto Stoofsteeg.","distanceAlongGeometry":46.667}],"intersections":[{"bearings":[214],"entry":[true],"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":0,"location":[4.899015,52.373587]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Stoofsteeg"}],"type":"turn","modifier":"right","text":"Stoofsteeg"},"distanceAlongGeometry":158.232}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive southwest on Oudezijds Achterburgwal.","bearing_after":214,"bearing_before":0,"location":[4.899015,52.373587]},"speedLimitSign":"vienna","name":"Oudezijds Achterburgwal","weight_typical":23.327,"duration_typical":19.042,"duration":19.042,"distance":158.232,"driving_side":"right","weight":23.327,"mode":"driving","geometry":"eds{bBmk_jH`MvNtz@l`A"},{"voiceInstructions":[{"ssmlAnnouncement":"In 200 feet, Turn right onto Oudezijds Voorburgwal.","announcement":"In 200 feet, Turn right onto Oudezijds Voorburgwal.","distanceAlongGeometry":48.071},{"ssmlAnnouncement":"Turn right onto Oudezijds Voorburgwal.","announcement":"Turn right onto Oudezijds Voorburgwal.","distanceAlongGeometry":16.667}],"intersections":[{"bearings":[34,117,213,298],"entry":[false,false,true,true],"in":0,"turn_weight":12,"turn_duration":1.551,"mapbox_streets_v8":{"class":"service"},"is_urban":true,"admin_index":0,"out":3,"geometry_index":2,"location":[4.897716,52.372407]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Oudezijds Voorburgwal"}],"type":"turn","modifier":"right","text":"Oudezijds Voorburgwal"},"distanceAlongGeometry":51.405}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Stoofsteeg.","modifier":"right","bearing_after":298,"bearing_before":214,"location":[4.897716,52.372407]},"speedLimitSign":"vienna","name":"Stoofsteeg","weight_typical":35.409,"duration_typical":19.911,"duration":19.911,"distance":51.405,"driving_side":"right","weight":35.409,"mode":"driving","geometry":"mzp{bBgz|iHwLph@"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, Turn right onto Korte Niezel.","announcement":"In 900 feet, Turn right onto Korte Niezel.","distanceAlongGeometry":278.447},{"ssmlAnnouncement":"Turn right onto Korte Niezel.","announcement":"Turn right onto Korte Niezel.","distanceAlongGeometry":50}],"intersections":[{"entry":[true,false,false,false],"in":1,"bearings":[38,118,217,293],"duration":94.277,"turn_weight":12,"turn_duration":3.248,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":121.234,"geometry_index":3,"location":[4.897051,52.372627]},{"bearings":[35,114,219,284],"entry":[true,false,false,true],"in":2,"turn_weight":2,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":5,"location":[4.898662,52.373871]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Korte Niezel"}],"type":"turn","modifier":"right","text":"Korte Niezel"},"distanceAlongGeometry":288.447}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Oudezijds Voorburgwal.","modifier":"right","bearing_after":38,"bearing_before":298,"location":[4.897051,52.372627]},"speedLimitSign":"vienna","name":"Oudezijds Voorburgwal","weight_typical":183.714,"duration_typical":144.703,"duration":144.703,"distance":288.447,"driving_side":"right","weight":183.714,"mode":"driving","geometry":"ehq{bBup{iH{v@ifA{Tk\\u[k_@_VcY"},{"voiceInstructions":[{"ssmlAnnouncement":"In 500 feet, Turn left onto Geldersekade.","announcement":"In 500 feet, Turn left onto Geldersekade.","distanceAlongGeometry":143.004},{"ssmlAnnouncement":"Turn left onto Geldersekade.","announcement":"Turn left onto Geldersekade.","distanceAlongGeometry":46.667}],"intersections":[{"entry":[false,true,false,true],"in":2,"bearings":[32,120,215,293],"duration":2.716,"turn_weight":7,"turn_duration":1.636,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":8.296,"geometry_index":7,"location":[4.899598,52.374698]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[118,300],"duration":0.24,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":3.388,"geometry_index":8,"location":[4.899719,52.374656]},{"entry":[true,false],"in":1,"bearings":[120,298],"duration":3,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":6.7,"geometry_index":9,"location":[4.899747,52.374647]},{"entry":[true,true,true,false],"in":3,"bearings":[34,115,214,300],"duration":0.386,"turn_weight":11.2,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":11.632,"geometry_index":10,"location":[4.900072,52.374533]},{"entry":[true,false],"in":1,"bearings":[117,295],"duration":0.84,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":4.108,"geometry_index":11,"location":[4.900115,52.374521]},{"entry":[true,false],"in":1,"bearings":[110,297],"duration":0.24,"turn_weight":3.1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":3.388,"geometry_index":12,"location":[4.900213,52.374491]},{"entry":[true,false,false],"in":2,"bearings":[114,213,290],"duration":2.529,"turn_weight":8.1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":11.124,"geometry_index":13,"location":[4.900245,52.374484]},{"entry":[true,true,false,false],"in":3,"bearings":[28,116,206,295],"duration":4.219,"turn_weight":11.2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":16.24,"geometry_index":16,"location":[4.900526,52.374409]},{"entry":[true,true,true,false],"in":3,"bearings":[18,118,196,298],"duration":4.916,"turn_weight":6.2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":12.091,"geometry_index":18,"location":[4.900985,52.374265]},{"entry":[true,false],"in":1,"bearings":[120,298],"duration":14.4,"turn_weight":6,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":23.28,"geometry_index":20,"location":[4.901178,52.374203]},{"entry":[true,false],"in":1,"bearings":[118,300],"duration":2.057,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":3.469,"geometry_index":21,"location":[4.901483,52.374094]},{"bearings":[17,120,196,298],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":23,"location":[4.901532,52.374078]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Geldersekade"}],"type":"turn","modifier":"left","text":"Geldersekade"},"distanceAlongGeometry":153.004}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Korte Niezel.","modifier":"right","bearing_after":120,"bearing_before":35,"location":[4.899598,52.374698]},"speedLimitSign":"vienna","name":"Korte Niezel","weight_typical":108.184,"duration_typical":37.608,"duration":37.608,"distance":153.004,"driving_side":"right","weight":108.184,"mode":"driving","geometry":"siu{bB{o`jHrAqFPw@bFiSVuAz@cEL_ALyAtBwJP_BXoBdGeXhBeIP{@xEaRFYVgAd@mB"},{"voiceInstructions":[{"ssmlAnnouncement":"In 800 feet, Turn right onto Prins Hendrikkade.","announcement":"In 800 feet, Turn right onto Prins Hendrikkade.","distanceAlongGeometry":246.307},{"ssmlAnnouncement":"Turn right onto Prins Hendrikkade.","announcement":"Turn right onto Prins Hendrikkade.","distanceAlongGeometry":50}],"intersections":[{"entry":[true,true,false,false],"in":3,"bearings":[17,124,196,300],"duration":9.806,"turn_weight":10,"turn_duration":6.566,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":13.888,"geometry_index":24,"location":[4.901587,52.374059]},{"entry":[true,false,false],"in":2,"bearings":[16,115,197],"duration":4.101,"turn_weight":3.1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":7.996,"geometry_index":25,"location":[4.901701,52.374288]},{"entry":[true,false,false],"in":2,"bearings":[17,110,196],"duration":22.087,"turn_weight":3.1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":29.596,"geometry_index":26,"location":[4.90184,52.374583]},{"bearings":[67,132,241,315],"entry":[true,false,false,false],"in":2,"turn_weight":6.2,"turn_duration":0.011,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":34,"location":[4.90278,52.376091]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Prins Hendrikkade"}],"type":"turn","modifier":"right","text":"Prins Hendrikkade"},"distanceAlongGeometry":256.307}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Geldersekade.","modifier":"left","bearing_after":17,"bearing_before":120,"location":[4.901587,52.374059]},"speedLimitSign":"vienna","name":"Geldersekade","weight_typical":59.408,"duration_typical":37.445,"duration":37.445,"distance":256.307,"driving_side":"right","weight":59.408,"mode":"driving","geometry":"uat{bBeldjHiMcFmQuGyuA}i@u@m@_@e@_@q@c@oA]sAa@aCSmAoAyH"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Take the exit.","announcement":"In a quarter mile, Take the exit.","distanceAlongGeometry":561.316},{"ssmlAnnouncement":"Take the exit. Then Turn right onto Foeliestraat.","announcement":"Take the exit. Then Turn right onto Foeliestraat.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[142,247,324],"duration":9.056,"turn_weight":14.3,"turn_duration":0.992,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":23.977,"geometry_index":35,"location":[4.902937,52.376131]},{"entry":[false,true,true,false],"in":3,"bearings":[130,180,266,346],"duration":3.546,"turn_weight":2,"turn_duration":0.018,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.234,"geometry_index":42,"location":[4.903304,52.375696]},{"entry":[true,false],"in":1,"bearings":[147,347],"duration":0.648,"turn_weight":2.325,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.103,"geometry_index":47,"location":[4.903372,52.375258]},{"entry":[true,false],"in":1,"bearings":[140,327],"duration":0.9,"turn_weight":1.55,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.63,"geometry_index":49,"location":[4.903445,52.37519]},{"entry":[true,false],"in":1,"bearings":[138,320],"duration":3.806,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.067,"geometry_index":50,"location":[4.903509,52.375144]},{"entry":[true,true,false,false],"in":3,"bearings":[37,134,217,315],"duration":0.754,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.882,"geometry_index":52,"location":[4.903881,52.374907]},{"entry":[false,true,false,false],"in":3,"bearings":[42,132,222,314],"duration":21.621,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":26.92,"geometry_index":53,"location":[4.903986,52.374846]},{"entry":[true,false],"in":1,"bearings":[134,316],"duration":1.469,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.263,"geometry_index":59,"location":[4.907194,52.373075]},{"entry":[false,true,false,false],"in":3,"bearings":[41,132,201,314],"duration":0.388,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.441,"geometry_index":60,"location":[4.907407,52.372949]},{"entry":[false,true,true,false],"in":3,"bearings":[97,134,232,312],"duration":2.626,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.142,"geometry_index":61,"location":[4.907465,52.372917]},{"entry":[true,false],"in":1,"bearings":[134,314],"duration":0.9,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.58,"geometry_index":62,"location":[4.907724,52.372764]},{"entry":[true,false],"in":1,"bearings":[132,314],"duration":1.029,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.734,"geometry_index":63,"location":[4.907823,52.372706]},{"bearings":[137,312],"entry":[true,false],"in":1,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":64,"location":[4.907959,52.372632]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Foeliestraat"}],"type":"turn","modifier":"right","text":"Foeliestraat"},"primary":{"components":[{"type":"text","text":"Prins Hendrikkade"}],"type":"off ramp","modifier":"right","text":"Prins Hendrikkade"},"distanceAlongGeometry":577.982}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Prins Hendrikkade.","modifier":"right","bearing_after":142,"bearing_before":67,"location":[4.902937,52.376131]},"speedLimitSign":"vienna","name":"Prins Hendrikkade","weight_typical":88.992,"duration_typical":52.175,"duration":50.598,"distance":577.982,"driving_side":"right","weight":87.1,"mode":"driving","geometry":"ecx{bBq`gjHhGsIjB{BrAoArB}AhAm@jAWpCYrM@fBItAWtBk@bB{@hAeA|@kAzA_C~HoMxCwGxBqE|@qBlOa]pq@i~AnPm^dJcR`L_TzFiL~@sBpHeOrBeErCoGxEyHlAwC~@aD~@}Dl@eF"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Foeliestraat.","announcement":"Turn right onto Foeliestraat.","distanceAlongGeometry":85.957}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[100,115,296],"duration":21.394,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":27.65,"geometry_index":69,"location":[4.908483,52.372397]},{"entry":[true,false],"in":1,"bearings":[125,299],"duration":9.675,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":11.61,"geometry_index":73,"location":[4.909721,52.372002]},{"entry":[true,true,false],"in":2,"bearings":[114,133,299],"duration":5.909,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.018,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":7.069,"geometry_index":75,"location":[4.91026,52.371797]},{"entry":[false,true,false,false],"in":3,"bearings":[30,148,210,313],"duration":2.31,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":4.249,"geometry_index":77,"location":[4.91045,52.371689]},{"bearings":[30,120,170,204,298,328],"entry":[false,true,true,false,false,false],"in":5,"turn_weight":5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":78,"location":[4.910508,52.371632]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Foeliestraat"}],"type":"turn","modifier":"right","text":"Foeliestraat"},"distanceAlongGeometry":171.589}],"speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit.","modifier":"slight right","bearing_after":115,"bearing_before":116,"location":[4.908483,52.372397]},"speedLimitSign":"vienna","name":"Prins Hendrikkade","weight_typical":56.798,"duration_typical":41.012,"duration":41.012,"distance":171.589,"driving_side":"right","weight":56.798,"mode":"driving","geometry":"yyp{bBe{qjHzBoLzAcJxBoJbMgh@hDsJnFaUbDqHr@iApBsBhAa@dAE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":2955.944},{"ssmlAnnouncement":"In a quarter mile, Keep left to take A10.","announcement":"In a quarter mile, Keep left to take A10.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take A10.","announcement":"Keep left to take A10.","distanceAlongGeometry":83.333}],"intersections":[{"entry":[false,false,true,false,false],"in":4,"bearings":[30,113,215,306,350],"duration":19.481,"turn_weight":6.5,"turn_duration":0.131,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":29.72,"geometry_index":80,"location":[4.910528,52.37156]},{"entry":[false,true],"in":0,"bearings":[43,226],"duration":5.625,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.25,"geometry_index":84,"location":[4.909716,52.370971]},{"entry":[false,true,true],"in":0,"bearings":[46,225,313],"duration":1.939,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.804,"geometry_index":85,"location":[4.909451,52.370815]},{"entry":[false,false,true],"in":1,"bearings":[23,45,224],"duration":4.339,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.684,"geometry_index":86,"location":[4.909367,52.370763]},{"entry":[false,true,false],"in":0,"bearings":[44,224,308],"duration":5.047,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.548,"geometry_index":88,"location":[4.909186,52.370649]},{"entry":[false,true,true],"in":0,"bearings":[44,229,308],"duration":3.106,"turn_weight":5.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.215,"geometry_index":89,"location":[4.908971,52.370511]},{"entry":[false,true,false],"in":0,"bearings":[51,229,249],"duration":1.461,"turn_weight":1.55,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.278,"geometry_index":91,"location":[4.908489,52.370264]},{"entry":[false,false,true,false],"in":0,"bearings":[49,149,221,328],"duration":0.393,"turn_weight":3.1,"turn_duration":0.033,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.532,"geometry_index":93,"location":[4.908267,52.370146]},{"entry":[false,false,false,false,true,true,false],"in":0,"bearings":[41,72,84,152,220,259,331],"duration":1.171,"turn_weight":9.3,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":4,"weight":10.682,"geometry_index":94,"location":[4.908222,52.370114]},{"entry":[false,true,true],"in":0,"bearings":[40,66,238],"duration":4.245,"turn_duration":0.025,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.065,"geometry_index":95,"location":[4.908067,52.370003]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[58,238],"duration":21.352,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":25.622,"geometry_index":96,"location":[4.907646,52.369843]},{"entry":[false,false,true],"in":0,"bearings":[58,231,246],"duration":4.044,"turn_weight":1,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.838,"geometry_index":97,"location":[4.905502,52.369029]},{"entry":[false,false,true],"in":1,"bearings":[15,66,240],"duration":1.03,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.2,"geometry_index":98,"location":[4.90512,52.368925]},{"entry":[false,true],"in":0,"bearings":[60,241],"duration":2.8,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.36,"geometry_index":99,"location":[4.905057,52.368903]},{"entry":[false,true,true],"in":0,"bearings":[61,235,304],"duration":13.948,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.704,"geometry_index":100,"location":[4.904876,52.368841]},{"entry":[false,false,true,false],"in":0,"bearings":[55,130,233,308],"duration":1.459,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.728,"geometry_index":103,"location":[4.904177,52.36854]},{"entry":[false,false,true,false],"in":0,"bearings":[53,132,228,314],"duration":3.146,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.744,"geometry_index":104,"location":[4.904104,52.368507]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[4.903968,52.368431],"geometry_index":105,"admin_index":0,"weight":7.532,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.028,"turn_weight":5,"duration":2.139,"bearings":[48,180,223,308],"out":2,"in":0,"entry":[false,false,true,true]},{"entry":[false,true,false],"in":0,"bearings":[43,213,359],"duration":5.641,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"turn_duration":0.041,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.72,"geometry_index":107,"location":[4.903804,52.368322]},{"entry":[false,false,true,true],"in":0,"bearings":[31,146,186,267],"duration":0.338,"turn_weight":1,"turn_duration":0.122,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.265,"geometry_index":112,"location":[4.903473,52.368002]},{"entry":[false,false,true,false],"in":0,"bearings":[6,79,175,259],"duration":1.661,"turn_duration":0.041,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.984,"geometry_index":114,"location":[4.903469,52.367979]},{"entry":[true,true,false,false],"in":3,"bearings":[53,140,258,355],"duration":6.52,"turn_duration":0.28,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.488,"geometry_index":116,"location":[4.903479,52.367902]},{"entry":[false,true,false,false],"in":3,"bearings":[56,141,238,314],"duration":0.731,"turn_weight":5,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.864,"geometry_index":120,"location":[4.903999,52.367566]},{"entry":[false,true,false,false],"in":3,"bearings":[53,152,235,321],"duration":13.094,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.696,"geometry_index":121,"location":[4.904057,52.367522]},{"entry":[true,true,false],"in":2,"bearings":[161,252,340],"duration":1.501,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.816,"geometry_index":125,"location":[4.904638,52.366609]},{"entry":[true,false],"in":1,"bearings":[152,341],"duration":0.973,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.192,"geometry_index":126,"location":[4.904708,52.366486]},{"entry":[true,false],"in":1,"bearings":[160,332],"duration":14.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":17.28,"geometry_index":127,"location":[4.90478,52.366403]},{"entry":[true,true,true,false],"in":3,"bearings":[75,151,253,340],"duration":1.27,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.478,"geometry_index":128,"location":[4.905407,52.365356]},{"entry":[true,false],"in":1,"bearings":[160,331],"duration":1.405,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.686,"geometry_index":129,"location":[4.905496,52.365256]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"entry":[true,false],"in":1,"bearings":[171,340],"duration":0.99,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.188,"geometry_index":130,"location":[4.905579,52.365118]},{"entry":[true,true,true,false],"in":3,"bearings":[69,158,252,351],"duration":9.757,"turn_duration":0.048,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":11.651,"geometry_index":131,"location":[4.905604,52.365017]},{"entry":[true,true,true,false],"in":3,"bearings":[77,161,253,340],"duration":1.165,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.403,"geometry_index":133,"location":[4.906076,52.364273]},{"entry":[false,true,false,false],"in":3,"bearings":[73,160,249,341],"duration":4.928,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.014,"geometry_index":134,"location":[4.906142,52.364155]},{"entry":[true,true,true,false],"in":3,"bearings":[70,159,253,341],"duration":0.69,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.82,"geometry_index":136,"location":[4.90644,52.363644]},{"entry":[true,false],"in":1,"bearings":[160,339],"duration":1.756,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.151,"geometry_index":137,"location":[4.906482,52.363577]},{"entry":[true,false],"in":1,"bearings":[157,340],"duration":0.655,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.802,"geometry_index":138,"location":[4.906581,52.363409]},{"entry":[true,true,false,false],"in":3,"bearings":[72,160,253,337],"duration":8.351,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.218,"geometry_index":139,"location":[4.906629,52.363339]},{"entry":[true,true,true,false],"in":3,"bearings":[73,163,253,340],"duration":0.458,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.551,"geometry_index":140,"location":[4.907107,52.362538]},{"entry":[true,false],"in":1,"bearings":[162,343],"duration":2.291,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.806,"geometry_index":141,"location":[4.907131,52.362491]},{"entry":[true,false],"in":1,"bearings":[159,342],"duration":0.439,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.538,"geometry_index":142,"location":[4.907228,52.362311]},{"entry":[true,true,false,false],"in":3,"bearings":[72,161,253,339],"duration":9.093,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.13,"geometry_index":143,"location":[4.907257,52.362265]},{"entry":[true,true,false],"in":2,"bearings":[161,252,341],"duration":12.725,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":15.565,"geometry_index":144,"location":[4.907514,52.361817]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,341],"duration":1.29,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.556,"geometry_index":147,"location":[4.907803,52.361312]},{"entry":[false,true,false,false],"in":3,"bearings":[70,161,251,340],"duration":2.772,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.372,"geometry_index":148,"location":[4.907832,52.361262]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,249,341],"duration":1.501,"turn_weight":5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.816,"geometry_index":150,"location":[4.907894,52.361154]},{"entry":[true,true,false,false],"in":3,"bearings":[23,159,251,340],"duration":0.921,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.102,"geometry_index":152,"location":[4.907928,52.361098]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,253,339],"duration":0.907,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.102,"geometry_index":153,"location":[4.907962,52.361044]},{"entry":[false,true,false,false],"in":3,"bearings":[70,159,249,340],"duration":5.721,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.982,"geometry_index":154,"location":[4.90799,52.360997]},{"entry":[true,false],"in":1,"bearings":[160,339],"duration":11.52,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":14.112,"geometry_index":155,"location":[4.908188,52.360674]},{"entry":[true,false],"in":1,"bearings":[159,340],"duration":0.635,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.778,"geometry_index":157,"location":[4.908348,52.360407]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,339],"duration":1.913,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.335,"geometry_index":158,"location":[4.908365,52.36038]},{"entry":[false,true,true,false],"in":3,"bearings":[75,160,249,340],"duration":4.133,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.04,"geometry_index":159,"location":[4.908407,52.360308]},{"entry":[true,true,false,false],"in":3,"bearings":[72,160,246,340],"duration":1.413,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.707,"geometry_index":160,"location":[4.90857,52.360035]},{"entry":[false,true,false,false],"in":3,"bearings":[69,160,258,340],"duration":0.6,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.711,"geometry_index":161,"location":[4.908631,52.359932]},{"entry":[false,true,false,false],"in":3,"bearings":[70,161,249,340],"duration":5.593,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.828,"geometry_index":162,"location":[4.908659,52.359886]},{"entry":[true,false],"in":1,"bearings":[159,341],"duration":10.452,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.803,"geometry_index":163,"location":[4.908893,52.35948]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,339],"duration":0.472,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.569,"geometry_index":165,"location":[4.909355,52.358727]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,237,340],"duration":1.297,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.565,"geometry_index":166,"location":[4.909373,52.358697]},{"entry":[true,true,false,false],"in":3,"bearings":[70,159,251,340],"duration":1.341,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.617,"geometry_index":167,"location":[4.909427,52.358604]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,339],"duration":12.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.435,"geometry_index":168,"location":[4.909483,52.358513]},{"entry":[false,true,false,false],"in":3,"bearings":[70,160,251,340],"duration":0.499,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.588,"geometry_index":169,"location":[4.910019,52.357624]},{"entry":[false,true,false,false],"in":3,"bearings":[69,161,251,340],"duration":0.979,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.176,"geometry_index":170,"location":[4.910041,52.357587]},{"entry":[false,true,true,false],"in":3,"bearings":[66,162,246,341],"duration":0.838,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.018,"geometry_index":171,"location":[4.910082,52.357515]},{"entry":[true,true,false,false],"in":3,"bearings":[66,160,248,342],"duration":0.656,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.778,"geometry_index":173,"location":[4.910112,52.35746]},{"entry":[false,true,false,false],"in":3,"bearings":[80,160,255,340],"duration":0.76,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.908,"geometry_index":175,"location":[4.910145,52.357406]},{"entry":[false,true,false,false],"in":3,"bearings":[76,160,255,340],"duration":5.949,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.264,"geometry_index":176,"location":[4.91018,52.357347]},{"entry":[true,false,false],"in":2,"bearings":[161,249,340],"duration":8.076,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.87,"geometry_index":177,"location":[4.910463,52.356875]},{"entry":[false,true,false,false],"in":3,"bearings":[69,159,248,341],"duration":0.878,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.05,"geometry_index":179,"location":[4.910688,52.356478]},{"entry":[false,true,false,false],"in":3,"bearings":[69,158,248,339],"duration":1.733,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.1,"geometry_index":180,"location":[4.910713,52.356438]},{"entry":[true,true,false,false],"in":3,"bearings":[65,157,246,338],"duration":0.79,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.959,"geometry_index":181,"location":[4.910766,52.356357]},{"entry":[false,true,false,false],"in":3,"bearings":[68,161,251,337],"duration":0.4,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.479,"geometry_index":182,"location":[4.910822,52.356277]},{"entry":[false,true,false,false],"in":3,"bearings":[69,160,251,341],"duration":7.532,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.203,"geometry_index":183,"location":[4.910846,52.356235]},{"entry":[true,true,false],"in":2,"bearings":[160,251,341],"duration":10.156,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.418,"geometry_index":185,"location":[4.911325,52.355424]},{"entry":[true,true,false],"in":2,"bearings":[160,255,340],"duration":8.365,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":10.223,"geometry_index":186,"location":[4.911868,52.354525]},{"entry":[true,true,false],"in":2,"bearings":[158,251,340],"duration":7.386,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.02,"geometry_index":187,"location":[4.912124,52.35409]},{"entry":[false,true,false,false],"in":3,"bearings":[58,159,237,339],"duration":0.825,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.002,"geometry_index":189,"location":[4.912365,52.353716]},{"entry":[false,true,false,false],"in":3,"bearings":[58,157,238,339],"duration":2.31,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.806,"geometry_index":190,"location":[4.912391,52.353674]},{"entry":[true,true,false,false],"in":3,"bearings":[69,160,246,337],"duration":0.827,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.002,"geometry_index":191,"location":[4.912469,52.353559]},{"entry":[false,true,false,false],"in":3,"bearings":[69,160,253,340],"duration":0.346,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.401,"geometry_index":192,"location":[4.91252,52.353472]},{"entry":[false,true,false,false],"in":3,"bearings":[72,160,249,340],"duration":8.365,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.223,"geometry_index":193,"location":[4.91254,52.353439]},{"entry":[true,false,false],"in":2,"bearings":[160,269,340],"duration":5.944,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":7.258,"geometry_index":194,"location":[4.913048,52.352576]},{"entry":[false,true,true,false],"in":3,"bearings":[68,157,239,340],"duration":3.541,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.222,"geometry_index":195,"location":[4.91344,52.351908]},{"entry":[true,true,false],"in":2,"bearings":[136,258,327],"duration":0.575,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.643,"geometry_index":198,"location":[4.913737,52.351566]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[133,316],"duration":8.205,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.846,"geometry_index":199,"location":[4.91381,52.35152]},{"entry":[true,false],"in":1,"bearings":[132,313],"duration":3.709,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.451,"geometry_index":200,"location":[4.914868,52.350922]},{"entry":[false,true,false,false],"in":3,"bearings":[42,133,222,313],"duration":1.656,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.964,"geometry_index":202,"location":[4.915239,52.350714]},{"entry":[true,true,false],"in":2,"bearings":[42,135,313],"duration":1.669,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.494,"geometry_index":203,"location":[4.915401,52.350622]},{"entry":[false,true,false,false],"in":3,"bearings":[41,133,218,315],"duration":0.576,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.665,"geometry_index":204,"location":[4.915521,52.350548]},{"entry":[false,true,false,false],"in":3,"bearings":[45,134,221,313],"duration":11.084,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":13.292,"geometry_index":205,"location":[4.915561,52.350525]},{"entry":[true,false],"in":1,"bearings":[139,314],"duration":1.694,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.033,"geometry_index":206,"location":[4.916402,52.350028]},{"entry":[true,false],"in":1,"bearings":[138,319],"duration":4.5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.4,"geometry_index":207,"location":[4.916481,52.349973]},{"entry":[false,true,false,false],"in":3,"bearings":[51,138,231,318],"duration":3.157,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.78,"geometry_index":209,"location":[4.916576,52.349908]},{"entry":[false,true,false,false],"in":3,"bearings":[55,141,235,318],"duration":8.108,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.72,"geometry_index":210,"location":[4.916647,52.34986]},{"entry":[true,true,false],"in":2,"bearings":[53,139,321],"duration":3.251,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.877,"geometry_index":211,"location":[4.916818,52.349733]},{"bearings":[142,231,320],"entry":[true,true,false],"in":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":213,"location":[4.917155,52.349496]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A10"}],"type":"fork","modifier":"left","text":"A10"},"distanceAlongGeometry":2972.611}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Foeliestraat.","modifier":"right","bearing_after":215,"bearing_before":170,"location":[4.910528,52.37156]},"speedLimitSign":"vienna","name":"Foeliestraat","weight_typical":512.647,"duration_typical":373.363,"duration":392.993,"distance":2972.611,"driving_side":"right","weight":536.38,"mode":"driving","geometry":"oeo{bB_{ujHbBrAjBvBnVz`@xEnIvHpOfBfD|AtCdCrErGlLbH`PhE`LfCzGbB~C~@xA|EtH~HhYzq@~dCnEzVj@|BzBhJnGvRzGxSl@bB`ApCvCnG~A`DxBdDhJbKbBnBdApAb@^fAn@RBXBV@`CUlAy@|@yAhLkUhBoDvAsBfAqAlAiAzCwBnn@uZtFkCdDoCl`Aef@fEqDrGeDhEq@rf@wXzEwBjFcCbFkCxWgMdCsAnIeEjC_B`q@{\\|Ao@fJaEzAy@~ZaOrTkK`GsCz@a@bBy@|DkBXOVOvAs@jBcA|Aw@dSkKfNaHl@]t@a@nCsA`PeIlEyBzAw@jXsMjk@eZtAu@z@c@xDkBtDoBpv@o`@hAk@nCqAtAm@VMTMtAs@tBeAn\\uPrU{KdAe@nAq@`DiB~CoBrAo@|b@qTvMkGdw@}`@dZ_O`TuLhAk@rAs@dF{ClDeB`Ag@|t@w^vh@oWrEeCpFcEdFgGzAqCjd@caAtJ}Sh@gAvDcIrCoFl@oA`^qs@lB}CrAwBl@eA~AmC|FuIbE}GtGcK~To["},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1840.555},{"ssmlAnnouncement":"In a quarter mile, Take the RING A10 ramp.","announcement":"In a quarter mile, Take the RING A10 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the RING A10, S111 ramp toward Utrecht, Rotterdam.","announcement":"Take the RING A10, S111 ramp toward Utrecht, Rotterdam.","distanceAlongGeometry":147.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[134,153,322],"duration":13.325,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":15.951,"geometry_index":214,"location":[4.917611,52.349144]},{"entry":[true,false,false],"in":2,"bearings":[147,170,325],"duration":5.269,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.314,"geometry_index":217,"location":[4.918059,52.348818]},{"entry":[false,true,false,false],"in":3,"bearings":[59,149,238,327],"duration":1.669,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.994,"geometry_index":219,"location":[4.918217,52.348672]},{"entry":[false,true,false,false],"in":3,"bearings":[62,150,238,329],"duration":2.777,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.323,"geometry_index":220,"location":[4.918262,52.348626]},{"entry":[false,true,true,false],"in":3,"bearings":[86,151,241,330],"duration":8.708,"turn_weight":1.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":11.94,"geometry_index":221,"location":[4.918334,52.34855]},{"entry":[true,false,false,true],"in":2,"bearings":[76,215,269,356],"duration":2.179,"turn_weight":1.5,"turn_duration":0.048,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.057,"geometry_index":229,"location":[4.919348,52.348215]},{"entry":[true,false,false],"in":2,"bearings":[78,231,255],"duration":3.669,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.143,"geometry_index":231,"location":[4.919762,52.34828]},{"entry":[true,true,false],"in":2,"bearings":[76,94,258],"duration":1.384,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.636,"geometry_index":232,"location":[4.920623,52.348394]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.273,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.327,"geometry_index":233,"location":[4.920973,52.348448]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.669,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.802,"geometry_index":234,"location":[4.921048,52.348459]},{"entry":[true,false],"in":1,"bearings":[78,256],"duration":8.088,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":9.705,"geometry_index":235,"location":[4.921232,52.348486]},{"entry":[true,false],"in":1,"bearings":[108,280],"duration":1.331,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.598,"geometry_index":241,"location":[4.9236,52.348638]},{"entry":[true,false],"in":1,"bearings":[116,289],"duration":5.811,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":6.974,"geometry_index":243,"location":[4.923982,52.348562]},{"entry":[true,true,false],"in":2,"bearings":[138,153,315],"duration":5.751,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":6.891,"geometry_index":247,"location":[4.925316,52.347965]},{"entry":[true,false,false],"in":2,"bearings":[139,289,318],"duration":1.55,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.851,"geometry_index":248,"location":[4.926627,52.347068]},{"entry":[true,false],"in":1,"bearings":[138,319],"duration":2.499,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.936,"geometry_index":249,"location":[4.926976,52.346827]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":21.514,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":25.279,"geometry_index":250,"location":[4.927556,52.346433]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":0.737,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.866,"geometry_index":251,"location":[4.932495,52.343079]},{"entry":[true,false],"in":1,"bearings":[137,318],"duration":19.485,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":22.408,"geometry_index":252,"location":[4.932661,52.342966]},{"entry":[true,false],"in":1,"bearings":[141,320],"duration":1.575,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.811,"geometry_index":255,"location":[4.936898,52.340062]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[141,321],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":256,"location":[4.937218,52.339818]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Utrecht"},{"type":"text","text":"/"},{"type":"text","text":"Rotterdam"}],"type":"turn","modifier":"slight right","text":"Utrecht / Rotterdam"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"RING A10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"RING A10"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"S111","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"S111"}],"type":"turn","modifier":"slight right","text":"RING A10 / S111"},"distanceAlongGeometry":1857.222},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Utrecht"},{"type":"text","text":"/"},{"type":"text","text":"Rotterdam"}],"type":"turn","modifier":"slight right","text":"Utrecht / Rotterdam"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"RING A10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"RING A10"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"S111","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"S111"}],"type":"turn","modifier":"slight right","text":"RING A10 / S111"},"distanceAlongGeometry":402.336}],"destinations":"A10","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A10.","modifier":"slight left","bearing_after":134,"bearing_before":142,"location":[4.917611,52.349144]},"speedLimitSign":"vienna","name":"Wibautstraat","weight_typical":133.711,"duration_typical":109.885,"duration":109.885,"distance":1857.222,"driving_side":"right","weight":133.711,"mode":"driving","ref":"S112","geometry":"olczbBuuckHlC}FfCqEtJoLpFkGp@o@zAyAvCoCrHmGzDmF`AuB|@_Er@yHBoHCwEEwJq@oIoAkNcFyt@kB{TUuCu@oJuHegA?Cw@iQY}SP}OdAoRh@_HlB{M~E}VfFgQjFwNtNmX`w@}pA`NyTrWgc@rpEusH`FkIp[}j@r`Ci{DhVq_@fN_SrNmS"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Take the A2 exit.","announcement":"In 1 mile, Take the A2 exit.","distanceAlongGeometry":1782.169},{"ssmlAnnouncement":"In a half mile, Take the A2 exit.","announcement":"In a half mile, Take the A2 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the Knooppunt Amstel exit onto A2 toward Eindhoven, Utrecht. Then Keep left to take A2.","announcement":"Take the Knooppunt Amstel exit onto A2 toward Eindhoven, Utrecht. Then Keep left to take A2.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[135,152,321],"duration":6.05,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":7.091,"geometry_index":257,"location":[4.937545,52.339568]},{"entry":[true,false],"in":1,"bearings":[139,321],"duration":3.176,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.732,"geometry_index":259,"location":[4.938015,52.339155]},{"entry":[true,false],"in":1,"bearings":[138,319],"duration":11.9,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":13.685,"geometry_index":260,"location":[4.938305,52.338951]},{"entry":[false,true,false],"in":2,"bearings":[37,209,354],"duration":5.328,"turn_weight":0.75,"turn_duration":0.072,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":6.794,"geometry_index":265,"location":[4.939277,52.338124]},{"entry":[false,true],"in":0,"bearings":[13,186],"duration":4.703,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":5.409,"geometry_index":270,"location":[4.938892,52.337517]},{"entry":[true,false],"in":1,"bearings":[186,359],"duration":3.273,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.764,"geometry_index":273,"location":[4.938849,52.336792]},{"entry":[false,true],"in":0,"bearings":[23,212],"duration":2.509,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":2.885,"geometry_index":277,"location":[4.938641,52.336272]},{"entry":[false,true],"in":0,"bearings":[41,226],"duration":3.436,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":3.952,"geometry_index":280,"location":[4.93824,52.335943]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.937605,52.335537],"geometry_index":283,"admin_index":0,"weight":13.365,"is_urban":true,"turn_weight":9,"duration":3.816,"bearings":[42,56,238],"out":2,"in":0,"turn_duration":0.02,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":1.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.729,"geometry_index":284,"location":[4.936391,52.335077]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,241],"duration":15.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":17.17,"geometry_index":285,"location":[4.935916,52.334906]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.930706,52.333114],"geometry_index":287,"admin_index":0,"weight":13.03,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":11.852,"bearings":[61,241,251],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.926781,52.331768],"geometry_index":288,"admin_index":0,"weight":5.261,"is_urban":true,"turn_weight":0.5,"duration":4.349,"bearings":[38,61,240],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":3.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.445,"geometry_index":289,"location":[4.925413,52.331292]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":3.991,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.291,"geometry_index":290,"location":[4.924376,52.330934]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[61,241],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":291,"location":[4.92307,52.330491]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Eindhoven"},{"type":"text","text":"/"},{"type":"text","text":"Utrecht"}],"type":"off ramp","modifier":"right","text":"Eindhoven / Utrecht"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"off ramp","modifier":"right","text":"A2"},"distanceAlongGeometry":1805.502}],"destinations":"RING A10, S111: Utrecht, Rotterdam","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the RING A10/S111 ramp toward Utrecht/Rotterdam.","modifier":"slight right","bearing_after":152,"bearing_before":141,"location":[4.937545,52.339568]},"speedLimitSign":"vienna","name":"Ringweg-Oost","weight_typical":109.298,"duration_typical":87.834,"duration":89.832,"distance":1805.502,"driving_side":"right","weight":111.492,"mode":"driving","ref":"A10; E 35","geometry":"_vpybBqsjlH~E_CxQkXvKcQhe@ex@nAuBxBkA`BF~BfAnEhEbGvEvF`D~EjBpGpAlI`AhKf@pUS|CHlIfAlErAtIxFjEzDrFzGpEhIxB`EnB|E`QtYv[zjAtIt\\x~@nxDdo@bkCbsAhtFv\\ntAjUx_AtZrpAre@hoB"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to take A2 toward Eindhoven, Utrecht.","announcement":"Keep left to take A2 toward Eindhoven, Utrecht.","distanceAlongGeometry":140}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.921273,52.329873],"geometry_index":292,"admin_index":0,"weight":1.627,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":1.538,"bearings":[61,244,261],"out":2,"in":0,"turn_duration":0.025,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,245],"duration":1.105,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":1.187,"geometry_index":293,"location":[4.92073,52.329822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.391,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":1.46,"geometry_index":294,"location":[4.920368,52.329717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":3.257,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":3.42,"geometry_index":295,"location":[4.919921,52.329589]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[65,246],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":296,"location":[4.918904,52.329296]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Eindhoven"},{"type":"text","text":"/"},{"type":"text","text":"Utrecht"}],"type":"fork","modifier":"left","text":"Eindhoven / Utrecht"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"fork","modifier":"left","text":"A2"},"distanceAlongGeometry":195.61}],"destinations":"A2: Eindhoven, Utrecht, Amsterdam-Rivierenbuurt","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the Knooppunt Amstel exit onto A2 toward Eindhoven/Utrecht.","modifier":"slight right","bearing_after":261,"bearing_before":241,"location":[4.921273,52.329873]},"speedLimitSign":"vienna","name":"","weight_typical":8.607,"duration_typical":8.16,"duration":8.16,"distance":195.61,"driving_side":"right","weight":8.607,"mode":"driving","ref":"A10; E 35","geometry":"ax}xbBqzjkHdB|`@pErU~F|ZhQp~@vCpP"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 20 miles.","announcement":"Continue for 20 miles.","distanceAlongGeometry":32135.781},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A2.","announcement":"In 1 mile, Keep left to stay on A2.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A2.","announcement":"In a half mile, Keep left to stay on A2.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A2 toward Maastricht, 's-Hertogenbosch.","announcement":"Keep left to stay on A2 toward Maastricht, 's-Hertogenbosch.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.918623,52.32922],"geometry_index":297,"admin_index":0,"weight":5.388,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":5.14,"bearings":[66,249,263],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,257],"duration":2.679,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":2.813,"geometry_index":300,"location":[4.916898,52.32887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,277],"duration":2.689,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":2.824,"geometry_index":303,"location":[4.915965,52.328809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,293],"duration":1.605,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":1.685,"geometry_index":305,"location":[4.915069,52.328922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,296],"duration":3.646,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":3.92,"geometry_index":306,"location":[4.91457,52.329053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,281],"duration":2.712,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":2.915,"geometry_index":308,"location":[4.913513,52.329345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,265],"duration":24.3,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":25.515,"geometry_index":312,"location":[4.912675,52.32941]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.912519,52.325658],"geometry_index":338,"admin_index":0,"weight":8.691,"is_urban":false,"turn_weight":0.5,"duration":8.014,"bearings":[148,313,331],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,350],"duration":14.677,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":15.044,"geometry_index":346,"location":[4.913595,52.32398]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.915144,52.320794],"geometry_index":352,"admin_index":0,"weight":41.264,"is_urban":false,"turn_weight":6,"duration":34.426,"bearings":[158,340,345],"out":0,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,327],"duration":5.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.424,"geometry_index":358,"location":[4.921942,52.31361]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,326],"duration":1.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.365,"geometry_index":359,"location":[4.923139,52.31251]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.923438,52.312235],"geometry_index":360,"admin_index":0,"weight":20.872,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.382,"bearings":[147,158,326],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.927755,52.308137],"geometry_index":362,"admin_index":0,"weight":10.58,"is_urban":false,"turn_weight":0.5,"duration":9.607,"bearings":[148,317,328],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":2.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":2.298,"geometry_index":363,"location":[4.92977,52.306195]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":8.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":9.353,"geometry_index":364,"location":[4.930213,52.305762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,328],"duration":8.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.748,"geometry_index":366,"location":[4.932032,52.303998]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.933744,52.302357],"geometry_index":367,"admin_index":0,"weight":90.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":88.238,"bearings":[146,156,327],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.949847,52.283919],"geometry_index":383,"admin_index":0,"weight":22.6,"is_urban":false,"turn_weight":1,"duration":21.607,"bearings":[156,329,335],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.95322,52.279061],"geometry_index":386,"admin_index":0,"weight":4,"is_urban":false,"turn_weight":1,"duration":3.026,"bearings":[154,329,338],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,334],"duration":2.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.535,"geometry_index":387,"location":[4.953739,52.278416]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,335],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.102,"geometry_index":388,"location":[4.954172,52.277857]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":0.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.716,"geometry_index":389,"location":[4.954366,52.277615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":49.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":46.752,"geometry_index":390,"location":[4.954498,52.27745]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.961091,52.266263],"geometry_index":399,"admin_index":1,"weight":19.166,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.197,"bearings":[158,168,341],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[163,334,341],"duration":0.383,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.356,"geometry_index":403,"location":[4.963942,52.261755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.809,"geometry_index":404,"location":[4.963987,52.261666]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":0.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.068,"geometry_index":405,"location":[4.964579,52.260509]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,342],"duration":0.825,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.784,"geometry_index":406,"location":[4.964586,52.260496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":0.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.068,"geometry_index":407,"location":[4.964682,52.260309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,342],"duration":6.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.843,"geometry_index":408,"location":[4.96469,52.260294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,346],"duration":4.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.544,"geometry_index":410,"location":[4.965306,52.25887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,348],"duration":107.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":96.761,"geometry_index":411,"location":[4.965705,52.257719]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,339],"duration":2.325,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.093,"geometry_index":421,"location":[4.977722,52.233066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,336],"duration":8.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.965,"geometry_index":422,"location":[4.978093,52.232556]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.979539,52.230626],"geometry_index":423,"admin_index":1,"weight":28.425,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":31.604,"bearings":[153,168,335],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.985028,52.223782],"geometry_index":428,"admin_index":1,"weight":1.09,"is_urban":false,"turn_weight":0.5,"duration":0.645,"bearings":[163,331,341],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,343],"duration":9.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.72,"geometry_index":429,"location":[4.985101,52.223634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,349],"duration":2.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.094,"geometry_index":432,"location":[4.985947,52.221417]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,351],"duration":65.913,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":59.322,"geometry_index":433,"location":[4.986086,52.220875]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.601,"geometry_index":440,"location":[4.9862,52.204927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":80.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":74.89,"geometry_index":441,"location":[4.986199,52.204766]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":23.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.444,"geometry_index":444,"location":[4.986043,52.185372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":8.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.629,"geometry_index":449,"location":[4.986108,52.179719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.986295,52.177605],"geometry_index":450,"admin_index":1,"weight":22.742,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.344,"bearings":[177,189,357],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,357],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.507,"geometry_index":452,"location":[4.986734,52.172021]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":0.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.67,"geometry_index":453,"location":[4.98674,52.171894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,358],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.292,"geometry_index":454,"location":[4.986749,52.171727]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[179,348,359],"duration":4.732,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.489,"geometry_index":456,"location":[4.986768,52.171143]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":0.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.648,"geometry_index":457,"location":[4.986799,52.170015]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":1.288,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.224,"geometry_index":458,"location":[4.986801,52.16985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":5.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.451,"geometry_index":459,"location":[4.986806,52.169543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":31.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.21,"geometry_index":461,"location":[4.986881,52.168167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":1.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.746,"geometry_index":478,"location":[4.990116,52.160861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,337],"duration":49.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":45.668,"geometry_index":479,"location":[4.9904,52.16046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,335],"duration":8.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.189,"geometry_index":490,"location":[4.998348,52.149416]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.999713,52.147424],"geometry_index":491,"admin_index":1,"weight":21.662,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.425,"bearings":[156,170,337],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.278,"geometry_index":495,"location":[5.00333,52.142208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.557,"geometry_index":496,"location":[5.003368,52.142153]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":6.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.46,"geometry_index":497,"location":[5.003447,52.142041]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.004419,52.140634],"geometry_index":498,"admin_index":1,"weight":9.48,"is_urban":false,"turn_weight":1,"duration":8.934,"bearings":[157,332,337],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":3.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.56,"geometry_index":500,"location":[5.005812,52.138624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":32.878,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.056,"geometry_index":501,"location":[5.006395,52.137782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,328],"duration":18.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.052,"geometry_index":512,"location":[5.011899,52.130494]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,314],"duration":19.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.867,"geometry_index":522,"location":[5.01661,52.127]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.022223,52.123576],"geometry_index":532,"admin_index":1,"weight":2.237,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.155,"bearings":[131,145,315],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,311],"duration":6.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.441,"geometry_index":533,"location":[5.022868,52.123233]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,315],"duration":1.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.817,"geometry_index":534,"location":[5.024605,52.122181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,315],"duration":2.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.725,"geometry_index":535,"location":[5.02508,52.121894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":18.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":20.258,"geometry_index":537,"location":[5.025782,52.12145]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":4.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":5.091,"geometry_index":544,"location":[5.03151,52.118492]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[123,303],"duration":1.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.755,"geometry_index":545,"location":[5.033049,52.117869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":1.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.182,"geometry_index":546,"location":[5.033577,52.117655]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":2.388,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.626,"geometry_index":547,"location":[5.034239,52.117389]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":52.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":57.46,"geometry_index":549,"location":[5.035036,52.117067]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[129,306],"duration":1.522,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.712,"geometry_index":556,"location":[5.052306,52.109952]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,309],"duration":20.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":23.556,"geometry_index":557,"location":[5.05277,52.109723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,316],"duration":35.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":41.358,"geometry_index":564,"location":[5.058845,52.106218]},{"tunnel_name":"Leidsche Rijntunnel","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[153,331],"duration":60.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":71.169,"geometry_index":576,"location":[5.067042,52.099036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,353],"duration":12.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":14.32,"geometry_index":585,"location":[5.075494,52.08542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.308,"geometry_index":588,"location":[5.075708,52.082505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,182],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":2.115,"geometry_index":589,"location":[5.075697,52.082232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,184],"duration":6.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":7.251,"geometry_index":590,"location":[5.075669,52.081794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[8,188],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"geometry_index":594,"location":[5.075444,52.080295]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Maastricht"},{"type":"text","text":"/"},{"type":"text","text":"'s-Hertogenbosch"}],"type":"fork","modifier":"left","text":"Maastricht / 's-Hertogenbosch"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"fork","modifier":"left","text":"A2"},"distanceAlongGeometry":32159.115},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Maastricht"},{"type":"text","text":"/"},{"type":"text","text":"'s-Hertogenbosch"}],"type":"fork","modifier":"left","text":"Maastricht / 's-Hertogenbosch"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A2"}],"type":"fork","modifier":"left","text":"A2"},"distanceAlongGeometry":1609.344}],"destinations":"A2: Eindhoven, Utrecht","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A2 toward Eindhoven/Utrecht.","modifier":"slight left","bearing_after":249,"bearing_before":246,"location":[4.918623,52.32922]},"speedLimitSign":"vienna","name":"","weight_typical":1196.666,"duration_typical":1187.805,"duration":1204.054,"distance":32159.115,"driving_side":"right","weight":1212.769,"mode":"driving","ref":"A2; E 35","geometry":"go|xbB}tekHxIvl@`Fje@~BtV`B~Td@nTMxM{@vXeDf]eGd^gMno@_CpPw@|Lm@nMQjJIpKPjNf@rKjAhMbB|M`DbOtDhMtDnKjDhH|DjGjDbG~IrHpKjH~ErBhItB~JjApKInOuBpIyDtL_JfOcR`PiZhHaPpHaNtOiYpIyKlGmEhQyQnJuHvK{HtLsH`IiDvIaDrHmBdQmDfa@oJd^mK~YwJhWcLrWuKvx@ib@znAct@x^kXh`@mX``@m_@nmCouCl_C_iCvcAyiAdPuQfmBwuBzpCavCjxB}|B`ZuZxhAwjAlc@}d@peB_jBn\\}^|^__@nWwVfx@ys@nu@un@`y@sp@lp@si@tdDknCdxAokAvwAkmAnbCynB~oCk~BzXmUnf@q`@nfBcxAdy@mj@`eAaq@tbDspBzdAcn@hg@m_@|a@aZbNcKhIgGvpBexAzVmPr|Ai~@rjBc_Ar{Akm@btBiu@v@Yh_B}m@ns@q\\ziAio@xpA{u@lgAyk@rs@e]pDyAhgA_d@XMtJ_E\\Ojk@{Rrk@sQ|fA}WrmAu]tcF_vAdrG_jB`bAu]vy@e\\bhGepCf_EiiBx[uNx}FulCnzAsx@z^eVrwBkyAzlAeaAloCwfCbdAcw@jr@id@|sAun@fHqCf[sLpd@iOvgA}Uz`@uGpXwCl~@gIpx@wAjfDhAvnErB|rFbBbfFp@`I@hsSqHl~G`KjgGfFvFDdLJnyAjCtaCAdnB}GbcCuJrt@wCjfHuU|FKlIQ~FGn[]neA}@hICdRI`j@i@|i@kBv|@kDxy@uPxXsF|OyDhO{DpYkIfYaJrRaHbRcIfRiIrXoMlQgJfMgHxOuIhSuLbi@c\\r[kS`XwPrVeSlQsLtc@g[pQyLn{AgcAraAop@hp@wc@`p@ib@bcAgn@j`Ew_C|hAav@n{BitA~[eT~^}TnrD_{BntA}y@lBkA~E}C|vAw{@zkA{s@vo@ea@rs@mc@tZcRxkA}s@xp@ga@pnB}kA`c@eY~_@eXvf@y_@zSoQrRsQzVyUlOsOfa@md@zTqXvTmYhToY`To[hSs[|Rg\\nRi\\nRo^zQi^rRw\\`Rq^xQq^~Qw]tQg^`Rc^nQm^lMkVbe@q}@t[mn@lTig@v`AqkB|Pu\\`Rk\\tGoMpMeWhXai@nd@eaAb[ss@tZgv@d]eaAnTor@|e@e_BjL_`@rOkh@tLy`@lE_OfzFamRrJ{[~q@o`CjUyu@jh@aaB~k@o_B`Uqp@hM_\\pb@idA~`@}~@tVmh@d[oo@rf@w`ApSm_@ld@iy@vXid@rCuEtXwc@dt@kfAvk@mw@h\\cc@zg@im@|c@ag@no@_r@vl@qk@`i@qf@lr@cm@pmBayAviA{u@nwAeeAfkBqnAzxBgyAdjB_}@psA}f@|zAm[j~@}KjwAqKzm@g@|m@L`PTjZv@`i@fD~OjA~RbBrMhBrc@fGnQjCf_A~Sv~@pVb`C~u@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 7 miles.","announcement":"Continue for 7 miles.","distanceAlongGeometry":11114.678},{"ssmlAnnouncement":"In 1 mile, Take the A27 exit.","announcement":"In 1 mile, Take the A27 exit.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the A27 exit.","announcement":"In a half mile, Take the A27 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the Knooppunt Everdingen exit onto A27 toward Breda, Gorinchem.","announcement":"Take the Knooppunt Everdingen exit onto A27 toward Breda, Gorinchem.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.073649,52.075299],"geometry_index":599,"admin_index":1,"weight":43.56,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":39.641,"bearings":[15,185,204],"out":1,"in":0,"turn_duration":0.041,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":3.049,"geometry_index":606,"location":[5.070108,52.065965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":32.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":34.329,"geometry_index":607,"location":[5.069825,52.065289]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.066523,52.05756],"geometry_index":612,"admin_index":1,"weight":10.467,"is_urban":false,"turn_weight":1,"duration":9.267,"bearings":[6,22,195],"out":2,"in":1,"turn_duration":0.03,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":50.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":51.28,"geometry_index":614,"location":[5.065601,52.055351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":9.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.625,"geometry_index":628,"location":[5.064145,52.043309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":1.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.156,"geometry_index":629,"location":[5.064073,52.041037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":21.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.475,"geometry_index":630,"location":[5.064065,52.040756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.063839,52.035341],"geometry_index":631,"admin_index":1,"weight":9.446,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.223,"bearings":[1,181,200],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":39.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":41.013,"geometry_index":634,"location":[5.063752,52.033041]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.064256,52.023328],"geometry_index":646,"admin_index":1,"weight":13.887,"is_urban":true,"turn_weight":1,"duration":12.009,"bearings":[166,327,348],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":4.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":4.605,"geometry_index":649,"location":[5.0656,52.020452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.066108,52.019426],"geometry_index":650,"admin_index":1,"weight":2.767,"is_urban":true,"turn_weight":0.5,"duration":2.128,"bearings":[163,331,343],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":1.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.094,"geometry_index":651,"location":[5.066353,52.018927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,342],"duration":1.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.329,"geometry_index":652,"location":[5.066478,52.01869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":0.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":0.196,"geometry_index":653,"location":[5.066621,52.018398]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":10.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":11.297,"geometry_index":654,"location":[5.066642,52.018357]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,340],"duration":7.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":8.053,"geometry_index":657,"location":[5.06801,52.015906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":15.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.884,"geometry_index":659,"location":[5.069128,52.014184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":11.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.517,"geometry_index":661,"location":[5.07115,52.010665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":1.054,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.081,"geometry_index":662,"location":[5.072615,52.008038]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,341],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.932,"geometry_index":663,"location":[5.072755,52.007791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,342],"duration":7.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.753,"geometry_index":664,"location":[5.072866,52.007576]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.07377,52.005797],"geometry_index":666,"admin_index":1,"weight":16.458,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.063,"bearings":[165,180,343],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[164,317,345],"duration":1.039,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.044,"geometry_index":671,"location":[5.075351,52.001908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.959,"geometry_index":672,"location":[5.075461,52.001667]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":6.946,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.119,"geometry_index":673,"location":[5.075565,52.001442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,342],"duration":9.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.074,"geometry_index":675,"location":[5.076384,51.999805]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":9.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.742,"geometry_index":676,"location":[5.077681,51.997485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,341],"duration":12.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.657,"geometry_index":677,"location":[5.078926,51.995243]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.080629,51.992345],"geometry_index":678,"admin_index":1,"weight":13.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.513,"bearings":[158,172,340],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,337],"duration":2.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.103,"geometry_index":680,"location":[5.082681,51.989258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,336],"duration":14.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.207,"geometry_index":681,"location":[5.083014,51.988788]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[131,306,317],"duration":1.828,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.845,"geometry_index":687,"location":[5.086551,51.985865]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":1.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.513,"geometry_index":688,"location":[5.087104,51.985569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":18.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.009,"geometry_index":689,"location":[5.087557,51.98533]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":3.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.009,"geometry_index":691,"location":[5.093187,51.98233]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[131,310],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":692,"location":[5.094366,51.981722]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Breda"},{"type":"text","text":"/"},{"type":"text","text":"Gorinchem"}],"type":"off ramp","modifier":"right","text":"Breda / Gorinchem"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"off ramp","modifier":"right","text":"A27"},"distanceAlongGeometry":11148.011},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Breda"},{"type":"text","text":"/"},{"type":"text","text":"Gorinchem"}],"type":"off ramp","modifier":"right","text":"Breda / Gorinchem"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"off ramp","modifier":"right","text":"A27"},"distanceAlongGeometry":1609.344}],"destinations":"A2: Maastricht, 's-Hertogenbosch","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A2 toward Maastricht/'s-Hertogenbosch.","modifier":"slight left","bearing_after":185,"bearing_before":195,"location":[5.073649,52.075299]},"speedLimitSign":"vienna","name":"","weight_typical":423.693,"duration_typical":403.908,"duration":406.636,"distance":11148.011,"driving_side":"right","weight":426.519,"mode":"driving","ref":"A2","geometry":"eqlibBanttHzM~@`b@lMn`@|Lxj@vOfqFnvAxiBxi@`jBzj@fi@tPzmC`z@dc@pNzrErwArgAh]nRxK`dAd\\~cAl[to@|RtY|I`[hHb\\dH|YlE~AVvXjDtZpCbm@dCrb@|AzmAdA`bAfBbbAtAzpFfH~lCnCpPNlqIbMbn@v@dr@x@ll@z@rzBxBl~BhCliAtAlb@PzXMv^k@rViAj`@oCpQgB|[_Efi@aJvh@}L`j@qPjXmJhnB_v@b_Aw^d^iNxMyFfQ}GpAi@j|@u^vh@wV`q@a]zxAaz@vPyI|gAkk@~qC_qAdcDqzAlNwGlL}Epo@eYr}@i]tf@yPtf@mOfqA{]xg@cOrg@qP`N{E`MoEh^kM~eAyc@~oCapAbkCylAbtDmiBv_A{h@d_CkuAj\\ySdPuLtUaSfn@wp@f\\}d@`Yee@fg@m|@nQqa@|Mi[rhB}eEzpA}wC~d@uhArg@ijA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":19357.082},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A27.","announcement":"In 2 miles, Keep left to stay on A27.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A27.","announcement":"In a half mile, Keep left to stay on A27.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A27, E 311 toward Breda.","announcement":"Keep left to stay on A27, E 311 toward Breda.","distanceAlongGeometry":266.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[5.095571,51.981072],"geometry_index":693,"admin_index":1,"weight":0.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":0.519,"bearings":[131,173,311],"out":1,"in":2,"turn_duration":0.115,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,353],"duration":2.535,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":2.661,"geometry_index":694,"location":[5.095592,51.980972]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,315],"duration":36.109,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":37.012,"geometry_index":695,"location":[5.096303,51.980528]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,209],"duration":4.764,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":4.764,"geometry_index":713,"location":[5.098025,51.972234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":0.764,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":0.764,"geometry_index":716,"location":[5.097028,51.971232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":7.164,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":6.985,"geometry_index":717,"location":[5.096861,51.971074]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.095318,51.969587],"geometry_index":720,"admin_index":1,"weight":13.154,"is_urban":false,"turn_weight":11.75,"duration":1.455,"bearings":[24,44,216],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.035,"geometry_index":721,"location":[5.094979,51.969298]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.842,"geometry_index":722,"location":[5.094968,51.969289]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":5.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.37,"geometry_index":723,"location":[5.094752,51.969115]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.844,"geometry_index":724,"location":[5.093404,51.968018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,220],"duration":8.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.003,"geometry_index":725,"location":[5.091642,51.966642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,221],"duration":17.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.621,"geometry_index":727,"location":[5.089458,51.965024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,227],"duration":31.14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.804,"geometry_index":731,"location":[5.084658,51.961816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,246],"duration":21.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":20.08,"geometry_index":744,"location":[5.074482,51.957292]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":2.952,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.731,"geometry_index":756,"location":[5.06607,51.955796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,266],"duration":9.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.491,"geometry_index":758,"location":[5.064878,51.95571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.563,"geometry_index":762,"location":[5.061159,51.955625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,270],"duration":9.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.625,"geometry_index":764,"location":[5.0596,51.955646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":3.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.602,"geometry_index":765,"location":[5.055825,51.955662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":35.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":32.834,"geometry_index":767,"location":[5.054276,51.955667]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":3.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.396,"geometry_index":769,"location":[5.039905,51.955719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":2.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.884,"geometry_index":770,"location":[5.038414,51.955713]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,270],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.033,"geometry_index":772,"location":[5.037602,51.955696]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":3.456,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.11,"geometry_index":773,"location":[5.037581,51.955696]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.032,"geometry_index":774,"location":[5.036181,51.955678]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.03616,51.955678],"geometry_index":775,"admin_index":1,"weight":14.511,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.146,"bearings":[90,267],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,262],"duration":0.421,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.379,"geometry_index":783,"location":[5.03006,51.955323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,260],"duration":2.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.645,"geometry_index":784,"location":[5.029897,51.955308]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,257],"duration":0.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.13,"geometry_index":785,"location":[5.028754,51.95518]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":19.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.366,"geometry_index":786,"location":[5.028697,51.955172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,240],"duration":1.224,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.08,"geometry_index":797,"location":[5.021367,51.95357]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":10.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.818,"geometry_index":798,"location":[5.020944,51.953422]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":48.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":42.541,"geometry_index":803,"location":[5.017379,51.951873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.477,"geometry_index":818,"location":[5.006337,51.942036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.032,"geometry_index":819,"location":[5.006219,51.941918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":25.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.718,"geometry_index":820,"location":[5.006208,51.941907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.164,"geometry_index":821,"location":[5.000748,51.936452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.334,"geometry_index":822,"location":[5.000709,51.936414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":0.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.099,"geometry_index":823,"location":[5.000629,51.936336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":3.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.976,"geometry_index":824,"location":[5.000602,51.93631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.231,"geometry_index":825,"location":[4.999916,51.935624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.568,"geometry_index":826,"location":[4.999862,51.93557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.294,"geometry_index":827,"location":[4.999732,51.935442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":15.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.073,"geometry_index":828,"location":[4.999667,51.935377]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":0.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.196,"geometry_index":834,"location":[4.996469,51.932052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":0.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.694,"geometry_index":835,"location":[4.996429,51.932004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.032,"geometry_index":836,"location":[4.99629,51.931833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":45.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":40.745,"geometry_index":837,"location":[4.996281,51.931822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":30.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.355,"geometry_index":844,"location":[4.989842,51.921366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.235,"geometry_index":846,"location":[4.98562,51.914251]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":14.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.757,"geometry_index":847,"location":[4.985586,51.914194]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.034,"geometry_index":853,"location":[4.983686,51.910713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,195],"duration":17.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.179,"geometry_index":854,"location":[4.983681,51.910702]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":14.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.522,"geometry_index":857,"location":[4.982003,51.906509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.88,"geometry_index":858,"location":[4.980614,51.903004]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.979694,51.900699],"geometry_index":859,"admin_index":1,"weight":7.423,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.032,"bearings":[14,194,206],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":1.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.27,"geometry_index":860,"location":[4.978959,51.898828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.343,"geometry_index":861,"location":[4.978828,51.898502]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.538,"geometry_index":862,"location":[4.978793,51.898414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":0.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.067,"geometry_index":863,"location":[4.978739,51.898277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":1.382,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.278,"geometry_index":864,"location":[4.978733,51.898263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":0.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.17,"geometry_index":865,"location":[4.978601,51.897927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":9.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.927,"geometry_index":866,"location":[4.978583,51.897881]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.977648,51.895522],"geometry_index":867,"admin_index":2,"weight":1.625,"is_urban":false,"turn_weight":0.5,"duration":1.257,"bearings":[6,14,194],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":6.063,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.457,"geometry_index":868,"location":[4.977532,51.895232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":5.608,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.048,"geometry_index":869,"location":[4.976975,51.893834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":73.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":65.926,"geometry_index":870,"location":[4.976461,51.892542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":3.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.445,"geometry_index":879,"location":[4.966719,51.876262]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":4.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.751,"geometry_index":880,"location":[4.966192,51.875419]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.965613,51.874493],"geometry_index":881,"admin_index":2,"weight":26.755,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.735,"bearings":[21,201,211],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.9616,51.867736],"geometry_index":888,"admin_index":2,"weight":15.11,"is_urban":false,"turn_weight":1,"duration":15.684,"bearings":[7,20,200],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":21.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":19.98,"geometry_index":889,"location":[4.959597,51.864313]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.1,"geometry_index":892,"location":[4.95684,51.859601]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":11.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.922,"geometry_index":897,"location":[4.955484,51.856947]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[16,196],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":899,"location":[4.954298,51.854382]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Breda"}],"type":"fork","modifier":"left","text":"Breda"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"fork","modifier":"left","text":"A27"},"distanceAlongGeometry":19390.416},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Breda"}],"type":"fork","modifier":"left","text":"Breda"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A27","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A27"}],"type":"fork","modifier":"left","text":"A27"},"distanceAlongGeometry":3218.688}],"destinations":"A27: Breda, Gorinchem","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the Knooppunt Everdingen exit onto A27 toward Breda/Gorinchem.","modifier":"slight right","bearing_after":173,"bearing_before":131,"location":[5.095571,51.981072]},"speedLimitSign":"vienna","name":"","weight_typical":666.665,"duration_typical":709.951,"duration":713.128,"distance":19390.416,"driving_side":"right","weight":668.906,"mode":"driving","ref":"A27; E 311","geometry":"_ptcbBeh_vHfEi@vZmk@jPyVnQiVpm@uq@l\\uWx^uU~YqN`[iKba@qJz`@aFv\\mAb^b@nVdAva@nFfa@tK|ZlLpb@xTf[|TnExD|QvOpWlXbRbSzHlIhVvXxw@f|@xKlH`QdTPTzInLpcAfsA~tAbmBv|@`rAjf@lt@dc@pr@r^fl@blAvqBpv@lwAhf@nbArXpl@zOh^~Xjq@nWvo@dSli@j]tcAf[ndAfQlo@fOtk@|Lzi@zM~n@hGzZDT|Ifg@fLjr@dKfs@fItn@`Hxm@dF`h@fE~d@bF~o@|Fl~@hFdgAx@~UtAj`@tAbh@fAnu@t@vv@h@bvA@`b@@r_@k@x_A_@|jFC|h@Ezu@}@xaNi@j~KJd|A?L`@hq@?h@b@nvA?h@p@|s@b@ta@p@rb@dCfrArAdh@tAtd@nCdu@|Bth@\\dI~FlfANpBrC~a@xHjaAxGzs@bEf`@fG`h@fFp`@dGrb@vFv]vHxa@dIn`@jRh|@fHlYdI~[`T|t@vY`}@xQ|e@~Rze@~KvVxMdYnQn]jR|\\fUl_@fW|^rUl[rSpVlVfXnN|Nj[l[|dDxeDdtDvtDp@p@jj@rj@jFjFTT|sIftIjAlAzC~Cr@t@zi@zi@jBjB~FbG`C`CfaApaAxa@~a@nZhZpj@pg@fSnPlN|K~AnAtItGTPjWtQhZhSpWpPn]`S|f@nWlfJ~tEjrChvA``G~wCrzDzmBpBbAfbA|f@xWxMnb@xR|XzLrWdKlf@bQTHv]|KpoB~k@vuB|m@`zExuA`oCnx@|sB|l@jSdGnDdApGjBZJ~SfGzAb@lrCly@bQfFjvAxa@voAb_@|cA~[hd@vPde@lSxWhMp_@|RrsDpoBte@`W`{IbxEhwFtxCts@|_@zx@dc@lhAvl@nJxEhoBnaArJzE|Av@lCrA`mEnwB|tEd|B~kA`l@tjD`dBxl@dYzDhBvz@h_@xg@rSr`@lOxX`KvWrJpfCn}@huA`g@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 22 miles.","announcement":"Continue for 22 miles.","distanceAlongGeometry":35632.73},{"ssmlAnnouncement":"In 2 miles, Keep right to take A27.","announcement":"In 2 miles, Keep right to take A27.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A27.","announcement":"In a half mile, Keep right to take A27.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A27, A58 toward Roosendaal, Antwerpen.","announcement":"Keep right to take A27, A58 toward Roosendaal, Antwerpen.","distanceAlongGeometry":274.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.953657,51.853001],"geometry_index":900,"admin_index":2,"weight":18.252,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.727,"bearings":[16,196,206],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.88,"geometry_index":902,"location":[4.951789,51.848957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":0.784,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.784,"geometry_index":903,"location":[4.9515,51.848333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.471,"geometry_index":904,"location":[4.951412,51.848143]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.63,"geometry_index":905,"location":[4.950899,51.847029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":4.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.59,"geometry_index":906,"location":[4.950651,51.84649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":9.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.171,"geometry_index":907,"location":[4.950247,51.84561]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":4.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.258,"geometry_index":909,"location":[4.949388,51.843755]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,195],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.135,"geometry_index":910,"location":[4.949028,51.842977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":15.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.958,"geometry_index":911,"location":[4.94894,51.842768]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.061,"geometry_index":913,"location":[4.947613,51.839892]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":0.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.719,"geometry_index":914,"location":[4.947443,51.839521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.608,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.649,"geometry_index":915,"location":[4.947385,51.839395]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.94722,51.839033],"geometry_index":916,"admin_index":2,"weight":6.083,"is_urban":false,"turn_weight":1,"duration":4.967,"bearings":[1,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":13.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.668,"geometry_index":917,"location":[4.946682,51.837868]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.945227,51.83473],"geometry_index":918,"admin_index":2,"weight":1.614,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.583,"bearings":[16,195],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":6.392,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.392,"geometry_index":919,"location":[4.945123,51.834489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":7.387,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.38,"geometry_index":922,"location":[4.944459,51.832978]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":2.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.61,"geometry_index":923,"location":[4.943931,51.831545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,193],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9,"geometry_index":924,"location":[4.943755,51.831039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.855,"geometry_index":925,"location":[4.943124,51.829285]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.575,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.575,"geometry_index":926,"location":[4.943065,51.829121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.35,"geometry_index":927,"location":[4.942955,51.828816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":22.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.245,"geometry_index":928,"location":[4.942861,51.828554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":13.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":12.611,"geometry_index":929,"location":[4.941263,51.824111]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.164,"geometry_index":930,"location":[4.940123,51.821011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":3.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.772,"geometry_index":931,"location":[4.940018,51.820725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,194],"duration":11.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.504,"geometry_index":932,"location":[4.939681,51.819788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":49.886,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":47.391,"geometry_index":933,"location":[4.938604,51.817164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":9.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.005,"geometry_index":936,"location":[4.933215,51.805433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.133,"geometry_index":937,"location":[4.932166,51.803142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,194],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.893,"geometry_index":938,"location":[4.932038,51.802858]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.931944,51.802631],"geometry_index":939,"admin_index":3,"weight":6.388,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.925,"bearings":[14,193],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,187],"duration":2.729,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.506,"geometry_index":941,"location":[4.931404,51.800976]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":12.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":11.26,"geometry_index":942,"location":[4.93127,51.800325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":80.722,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":74.667,"geometry_index":943,"location":[4.930705,51.797401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":4.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.908,"geometry_index":949,"location":[4.927294,51.777983]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":4.702,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.349,"geometry_index":950,"location":[4.927353,51.776951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.927436,51.775799],"geometry_index":951,"admin_index":3,"weight":13.762,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.897,"bearings":[178,184,357],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.286,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.189,"geometry_index":952,"location":[4.927684,51.772168]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.133,"geometry_index":953,"location":[4.927699,51.771858]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.927718,51.771564],"geometry_index":954,"admin_index":3,"weight":0.908,"is_urban":false,"turn_weight":0.5,"duration":0.46,"bearings":[178,345,358],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.291,"geometry_index":955,"location":[4.927725,51.771454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":9.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.937,"geometry_index":956,"location":[4.927747,51.771112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.985,"geometry_index":957,"location":[4.927899,51.768749]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,358],"duration":4.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.315,"geometry_index":958,"location":[4.927916,51.768492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,182],"duration":46.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":41.889,"geometry_index":960,"location":[4.927918,51.767351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.426,"geometry_index":969,"location":[4.925207,51.756123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":4.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.698,"geometry_index":970,"location":[4.925155,51.756015]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":34.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":31.428,"geometry_index":971,"location":[4.924681,51.755039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":7.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.26,"geometry_index":978,"location":[4.920386,51.746748]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.918936,51.745006],"geometry_index":981,"admin_index":3,"weight":7.672,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.301,"bearings":[29,210,222],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.917231,51.743182],"geometry_index":983,"admin_index":3,"weight":2.534,"is_urban":false,"turn_weight":1,"duration":1.666,"bearings":[10,30,211],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":4.765,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.407,"geometry_index":984,"location":[4.91688,51.742825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":18.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":17.14,"geometry_index":985,"location":[4.915858,51.741787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.911573,51.737893],"geometry_index":990,"admin_index":3,"weight":10.839,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.726,"bearings":[38,220,231],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,227],"duration":1.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.552,"geometry_index":995,"location":[4.908286,51.735716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":14.97,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":13.848,"geometry_index":996,"location":[4.907776,51.735424]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.903255,51.732897],"geometry_index":997,"admin_index":3,"weight":11.2,"is_urban":false,"turn_weight":0.5,"duration":11.27,"bearings":[37,48,228],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,225],"duration":9.374,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.906,"geometry_index":999,"location":[4.899865,51.730989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,219],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.231,"geometry_index":1004,"location":[4.897291,51.729243]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":35.856,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":34.063,"geometry_index":1005,"location":[4.896967,51.728992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":4.968,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.72,"geometry_index":1023,"location":[4.890993,51.720925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":5.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.472,"geometry_index":1024,"location":[4.890532,51.719723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":6.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.723,"geometry_index":1025,"location":[4.889996,51.718326]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,189],"duration":5.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.587,"geometry_index":1028,"location":[4.889483,51.71684]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.948,"geometry_index":1030,"location":[4.889156,51.715376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.05,"geometry_index":1031,"location":[4.889115,51.715127]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.889074,51.71485],"geometry_index":1032,"admin_index":3,"weight":6.916,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.115,"bearings":[5,183],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":11.71,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":11.399,"geometry_index":1034,"location":[4.888921,51.713062]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,182],"duration":67.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":67.937,"geometry_index":1035,"location":[4.88874,51.710116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":4.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.128,"geometry_index":1044,"location":[4.885569,51.693143]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":1.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.244,"geometry_index":1045,"location":[4.885262,51.692142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":3.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.526,"geometry_index":1046,"location":[4.885177,51.691875]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.884941,51.69112],"geometry_index":1048,"admin_index":3,"weight":14.649,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.656,"bearings":[11,191,204],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":2.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.224,"geometry_index":1050,"location":[4.883813,51.687493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":12.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":12.004,"geometry_index":1051,"location":[4.883644,51.686936]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.882707,51.683917],"geometry_index":1056,"admin_index":3,"weight":2.926,"is_urban":false,"turn_weight":0.75,"duration":2.239,"bearings":[1,11,191],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.233,"geometry_index":1057,"location":[4.88253,51.683367]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":2.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.919,"geometry_index":1058,"location":[4.882361,51.682815]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":40.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":38.196,"geometry_index":1059,"location":[4.882131,51.682071]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":71.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":69.574,"geometry_index":1065,"location":[4.879636,51.672074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,355],"duration":8.626,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.841,"geometry_index":1073,"location":[4.881925,51.654155]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.882159,51.651986],"geometry_index":1075,"admin_index":3,"weight":20.094,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.623,"bearings":[177,189,357],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.882526,51.647052],"geometry_index":1080,"admin_index":3,"weight":11.719,"is_urban":false,"turn_weight":0.5,"duration":10.964,"bearings":[177,351,358],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":6.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.529,"geometry_index":1081,"location":[4.882723,51.64435]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,357],"duration":0.364,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.382,"geometry_index":1082,"location":[4.882835,51.642813]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":33.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":34.669,"geometry_index":1083,"location":[4.882841,51.642725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":9.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.156,"geometry_index":1095,"location":[4.880137,51.634961]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.877926,51.633008],"geometry_index":1096,"admin_index":3,"weight":15.387,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.019,"bearings":[35,215,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":2.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.73,"geometry_index":1097,"location":[4.874462,51.629942]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":3.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.325,"geometry_index":1098,"location":[4.873849,51.6294]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.873089,51.628732],"geometry_index":1099,"admin_index":3,"weight":8.849,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.64,"bearings":[35,215,229],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.158,"geometry_index":1100,"location":[4.871137,51.626998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":13.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":13.956,"geometry_index":1101,"location":[4.870866,51.62676]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.867705,51.62394],"geometry_index":1103,"admin_index":3,"weight":6.646,"is_urban":false,"turn_weight":1,"duration":5.527,"bearings":[24,34,213],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":3.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.096,"geometry_index":1105,"location":[4.866523,51.622782]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":83.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":83.304,"geometry_index":1107,"location":[4.865686,51.621927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":7.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.476,"geometry_index":1117,"location":[4.846202,51.605174]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.504,"geometry_index":1118,"location":[4.843906,51.603895]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.843751,51.603809],"geometry_index":1119,"admin_index":3,"weight":15.84,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.859,"bearings":[48,227,251],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.648,"geometry_index":1124,"location":[4.839267,51.601008]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.8391,51.600889],"geometry_index":1125,"admin_index":3,"weight":10.3,"is_urban":false,"turn_weight":1,"duration":9.081,"bearings":[25,41,221],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":8.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.961,"geometry_index":1128,"location":[4.836871,51.599151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,216],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.596,"geometry_index":1129,"location":[4.83479,51.597443]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":5.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.631,"geometry_index":1130,"location":[4.834214,51.596952]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.832955,51.595902],"geometry_index":1131,"admin_index":3,"weight":14.628,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.939,"bearings":[37,217,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.112,"geometry_index":1133,"location":[4.829655,51.593099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,211],"duration":18.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":19.013,"geometry_index":1134,"location":[4.829198,51.592669]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.82599,51.588624],"geometry_index":1140,"admin_index":3,"weight":3.713,"is_urban":false,"turn_weight":0.5,"duration":3.081,"bearings":[14,21,199],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":12.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":13.117,"geometry_index":1141,"location":[4.825581,51.587904]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.82431,51.584891],"geometry_index":1145,"admin_index":3,"weight":26.432,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":24.612,"bearings":[12,189,203],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.823602,51.578787],"geometry_index":1151,"admin_index":3,"weight":12.721,"is_urban":true,"turn_weight":0.5,"duration":11.376,"bearings":[0,181,353],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,185],"duration":85.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":90.004,"geometry_index":1154,"location":[4.823436,51.576092]},{"bearings":[165,349],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"geometry_index":1180,"location":[4.819518,51.555974]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Roosendaal"},{"type":"text","text":"/"},{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"right","text":"Roosendaal / Antwerpen"},"distanceAlongGeometry":35666.062},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Roosendaal"},{"type":"text","text":"/"},{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"right","text":"Roosendaal / Antwerpen"},"distanceAlongGeometry":3218.688}],"destinations":"A27: Breda","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A27/E 311 toward Breda.","modifier":"slight left","bearing_after":196,"bearing_before":196,"location":[4.953657,51.853001]},"speedLimitSign":"vienna","name":"","weight_typical":1298.835,"duration_typical":1314.624,"duration":1315.998,"distance":35666.062,"driving_side":"right","weight":1300.137,"mode":"driving","ref":"A27; E 311","geometry":"qkz{aBqbjmHpb@fOdxEncB~e@`QzJnDrdA`_@t`@nN~u@fXB@xrBrt@ro@nU`LnDxjDhnA|FrBdVrIzFrBrUhIxgAr`@bcE|yA`NnEjc@tOfj@lRxMjDpxA~_@r^~IrlBlf@fItB`RzEjOzDttGzbBv`EffAzPpEpy@`T~bDhbAjhCh|@fwChhApzLdiEdnCp`AvP~FdMzDddAxWfa@|Gtg@jGvuDhb@vxAhP|lGps@|oUrhCxw@lD`q@XbYQn_AuB~fAeD|aFoNjR]jQe@zEMjTk@trCoH`Oa@pn@e@vV`@nPXpg@|BhpFng@|zAzN~iApMbk@rJ`i@`Mvj@zPnhBdq@vEfB~{@r\\l`H`kCtgA`b@f@Rbi@dTxc@bTpr@d`@hWdPtQrMj`@lXxw@pq@~`Ab|@~n@ll@hU|Tz_Az~@`dAleAncA`hAfo@xt@|[ba@r[jc@r`@rl@bWta@vWbd@~Utc@p]hr@fQz^||CpyGliArcCxk@fnApRn^zX~f@~MbVfQpXl]tg@tNfSdMlPrd@dk@hl@pn@f@h@do@ll@t_@b[b_@dY~m@x`@fXtOra@xUdk@`Y`_@pOv^fNbX|IzO~E~EzAx@VbZjIbjAx[hvAn`@pk@vO|XpGjUvEzl@|Jrl@nGpNpAhPpAh_A|Dln@rBbwDhJhdFtMriC~Gns@nCbb@tAxu@dGfu@rI|{@dMd~@`Q`sJfsBp}@dRtOhDxb@fJjJnBtu@|O~jDpt@xa@pI`bA|StIhBrSlE~k@zLhl@~Lja@`Jna@pInm@jMrhDns@|wEt`Aby@pM~bAjLnv@nFrw@hA`]f@vk@?htAuAttA}I`pCeWfgLa}@r_Fk`@doAaJrbA_G|bAsEhq@yBfJ[pmA_EhfAqD|_BuEzgDiK`_B_FnDKb|AyD|f@}Avk@Kja@vCjXdDhW~Efi@jOpZ|L~m@d[l`@bXte@`d@la@ng@`yBdiCr~DnwEz`@he@vh@nn@jkB~xBzM|OxdBlsBliAbpA|s@jv@lRnQtVbVv\\d\\buPthPdBbBdtAhtArm@~r@ls@r}@nb@|l@zn@z`Atm@rcAnZ|h@|fCrmF|nAnnCjDtH|CpGld@v_A~y@zaBh_@|p@jh@by@lFlIxObVfi@bv@pp@`|@viB`aCt]~b@r`AtmAxyB`tCjs@dx@zYp[dw@pu@h`@~\\fa@j[hn@fb@tn@j^`a@|S~k@pXjT~Jr_A`]`e@nNf_AzT|`@lGhv@rNhgAxJrk@lCtd@jCrhCMt~@t@xp@lB|u@fDl{@nGrbArIdyA~Rjr@~Knr@jM|sBxb@tz@bQvx@hNlq@xJ~q@nIfj@lFnk@lEbc@hDtc@rCvz@vFda@lCh_@tDnVzClVtDfn@~KbuAv[hXlC`WdBpX]r\\_Dv[{GpPwFjKkE~J}ErJoFlLwHzOmLxFiFjL_L"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6252.817},{"ssmlAnnouncement":"In 2 miles, Keep left to take A16.","announcement":"In 2 miles, Keep left to take A16.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A16.","announcement":"In a half mile, Keep left to take A16.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A16 toward Antwerpen.","announcement":"Keep left to take A16 toward Antwerpen.","distanceAlongGeometry":245.556}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.820671,51.554293],"geometry_index":1188,"admin_index":3,"weight":28.022,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":28.753,"bearings":[145,158,329],"out":1,"in":2,"turn_duration":0.013,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,355],"duration":2.718,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":2.65,"geometry_index":1200,"location":[4.823964,51.550537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":32.147,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":31.344,"geometry_index":1202,"location":[4.823956,51.550204]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.819921,51.546611],"geometry_index":1214,"admin_index":3,"weight":18.418,"is_urban":false,"turn_weight":6,"duration":13.082,"bearings":[50,56,236],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":6.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.229,"geometry_index":1216,"location":[4.816274,51.545077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":45.343,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":43.076,"geometry_index":1217,"location":[4.814453,51.544295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":11.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.545,"geometry_index":1221,"location":[4.802004,51.53879]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.798895,51.537496],"geometry_index":1224,"admin_index":3,"weight":20.306,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.382,"bearings":[57,237,245],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[51,61,240],"duration":12.562,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":2,"weight":11.601,"geometry_index":1229,"location":[4.791862,51.534833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":4.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.189,"geometry_index":1231,"location":[4.787783,51.533411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":24.774,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":22.916,"geometry_index":1232,"location":[4.786304,51.532899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.353,"geometry_index":1234,"location":[4.778132,51.530212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":18.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":16.898,"geometry_index":1235,"location":[4.777293,51.529949]},{"bearings":[68,249],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"geometry_index":1238,"location":[4.771071,51.528109]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"left","text":"Antwerpen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A16","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A16"}],"type":"fork","modifier":"left","text":"A16"},"distanceAlongGeometry":6296.15},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Antwerpen"}],"type":"fork","modifier":"left","text":"Antwerpen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A16","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A16"}],"type":"fork","modifier":"left","text":"A16"},"distanceAlongGeometry":3218.688}],"destinations":"Roosendaal, Antwerpen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A27/A58/E 312 toward Roosendaal/Antwerpen.","modifier":"slight right","bearing_after":158,"bearing_before":149,"location":[4.820671,51.554293]},"speedLimitSign":"vienna","name":"","weight_typical":263.175,"duration_typical":273.346,"duration":273.318,"distance":6296.15,"driving_side":"right","weight":263.149,"mode":"driving","ref":"A27; A58; E 312","geometry":"i~riaB}jfeHlQeKzOyQtNuS`Um^`Su[nQmVvOqQdQ{NzUiOxPwGxV}FtVcB|JSzGb@pLd@tShC~QbFrVdLrRdMxKlKvPdRxO`U|LbVdWrr@zHrTt_@b}@le@vzAlx@dgCzo@xpBnMt`@xoBz`GbdCffHrrAf~DxSto@nh@lbBpQdm@tYhbA~c@nzA`s@~iCx_@nxAzPfs@t]vtAdy@dhD~^l{Axr@rtCbsBbhJlOls@`kAdrFhShhArQjgAbUv}A~K~_AnJj|@`Jb}@rEzh@~C`c@hNpoB|Ev~@rD|{@xCd{@hCbv@p@pd@dAvt@|@dt@TzhAYrqAMl~@q@|aA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 25 miles.","announcement":"Continue for 25 miles.","distanceAlongGeometry":39731.273},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 19.","announcement":"In 2 miles, Keep left to stay on E 19.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 19.","announcement":"In a half mile, Keep left to stay on E 19.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 19 toward Gent, Brussel.","announcement":"Keep left to stay on E 19 toward Gent, Brussel.","distanceAlongGeometry":233.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.752749,51.526351],"geometry_index":1256,"admin_index":3,"weight":0.699,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":0.807,"bearings":[92,265,291],"out":1,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,273],"duration":0.675,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":0.607,"geometry_index":1257,"location":[4.752589,51.526342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,272],"duration":18.576,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":16.718,"geometry_index":1258,"location":[4.752422,51.526347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":6.267,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":5.64,"geometry_index":1262,"location":[4.74498,51.52654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":1.275,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":1.147,"geometry_index":1263,"location":[4.743623,51.526581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,272],"duration":1.656,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":1.49,"geometry_index":1264,"location":[4.743383,51.526589]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":27.28,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":24.552,"geometry_index":1265,"location":[4.743053,51.526596]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,283],"duration":2.221,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":1.999,"geometry_index":1286,"location":[4.742854,51.528106]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,299],"duration":5.55,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":4.995,"geometry_index":1288,"location":[4.743224,51.527982]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,345],"duration":11.85,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":10.665,"geometry_index":1292,"location":[4.743697,51.527395]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.744321,51.526031],"geometry_index":1294,"admin_index":3,"weight":20.66,"is_urban":false,"turn_weight":11.75,"duration":9.923,"bearings":[170,332,348],"out":0,"in":1,"turn_duration":0.023,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,352],"duration":65.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":59.13,"geometry_index":1297,"location":[4.744929,51.523594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,186],"duration":8.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.792,"geometry_index":1309,"location":[4.743935,51.507245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.743577,51.505153],"geometry_index":1310,"admin_index":3,"weight":22.037,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.831,"bearings":[6,186,197],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,194],"duration":7.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.378,"geometry_index":1316,"location":[4.742086,51.499166]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.741297,51.497193],"geometry_index":1317,"admin_index":3,"weight":31.7,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":34.278,"bearings":[14,196,204],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.736848,51.488923],"geometry_index":1322,"admin_index":3,"weight":16.03,"is_urban":false,"turn_weight":1,"duration":15.829,"bearings":[13,19,199],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":0.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.9,"geometry_index":1323,"location":[4.735254,51.48609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":65.048,"turn_weight":2425.741,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2485.911,"geometry_index":1324,"location":[4.735158,51.485919]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[11,16,195],"duration":8.647,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":7.992,"geometry_index":1333,"location":[4.728489,51.472427]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,193],"duration":58.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":54.246,"geometry_index":1334,"location":[4.727604,51.470344]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,194],"duration":7.056,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.703,"geometry_index":1342,"location":[4.722414,51.456072]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.721747,51.454362],"geometry_index":1343,"admin_index":4,"weight":27.426,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.877,"bearings":[14,196],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.782,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.485,"geometry_index":1348,"location":[4.71852,51.447142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":68.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":63.731,"geometry_index":1349,"location":[4.717869,51.445742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":2.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.945,"geometry_index":1354,"location":[4.710176,51.429051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":6.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.034,"geometry_index":1355,"location":[4.709949,51.428543]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.709219,51.426959],"geometry_index":1356,"admin_index":4,"weight":62.182,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":67.231,"bearings":[16,196,214],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.700165,51.411026],"geometry_index":1368,"admin_index":4,"weight":11.023,"is_urban":false,"turn_weight":1,"duration":10.844,"bearings":[13,27,208],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":38.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":35.89,"geometry_index":1373,"location":[4.698054,51.408691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":5.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.281,"geometry_index":1388,"location":[4.688916,51.400997]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.687435,51.399931],"geometry_index":1390,"admin_index":4,"weight":34.243,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":37.039,"bearings":[41,220,238],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.675922,51.391492],"geometry_index":1394,"admin_index":4,"weight":6.479,"is_urban":false,"turn_weight":0.5,"duration":6.473,"bearings":[25,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":142.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":131.875,"geometry_index":1395,"location":[4.674361,51.390356]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":5.884,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.442,"geometry_index":1406,"location":[4.642026,51.364157]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.562,"geometry_index":1407,"location":[4.640726,51.363061]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.640368,51.362759],"geometry_index":1408,"admin_index":4,"weight":31.246,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.912,"bearings":[37,215],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":6.634,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.296,"geometry_index":1409,"location":[4.63368,51.356862]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":7.942,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.539,"geometry_index":1412,"location":[4.632338,51.35567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":68.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":63.162,"geometry_index":1413,"location":[4.630633,51.354164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":2.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.679,"geometry_index":1416,"location":[4.615902,51.341267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,219],"duration":96.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":89.688,"geometry_index":1417,"location":[4.615239,51.340743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":44.79,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":43.67,"geometry_index":1428,"location":[4.581762,51.320749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":2.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.01,"geometry_index":1434,"location":[4.564765,51.312565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":6.78,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.78,"geometry_index":1435,"location":[4.564012,51.312196]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.561419,51.310967],"geometry_index":1436,"admin_index":4,"weight":52.946,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":54.311,"bearings":[53,234],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":14.937,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.557,"geometry_index":1442,"location":[4.546747,51.304453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":2.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.116,"geometry_index":1444,"location":[4.543416,51.303012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":12.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.618,"geometry_index":1445,"location":[4.542937,51.302801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,233],"duration":12.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.52,"geometry_index":1446,"location":[4.540231,51.3016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":201.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":196.414,"geometry_index":1447,"location":[4.537291,51.300221]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":2.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.646,"geometry_index":1496,"location":[4.464783,51.268501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.998,"geometry_index":1499,"location":[4.463904,51.268487]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":5.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.379,"geometry_index":1500,"location":[4.463569,51.268475]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":2.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.897,"geometry_index":1502,"location":[4.461756,51.268376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.46081,51.268319],"geometry_index":1503,"admin_index":4,"weight":20.819,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.827,"bearings":[84,264,270],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.453949,51.267904],"geometry_index":1507,"admin_index":4,"weight":22.768,"is_urban":false,"turn_weight":0.5,"duration":21.731,"bearings":[82,85,264],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,252],"duration":1.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.654,"geometry_index":1512,"location":[4.446505,51.26717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[72,252],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":1513,"location":[4.445975,51.267065]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Gent"},{"type":"text","text":"/"},{"type":"text","text":"Brussel"}],"type":"fork","modifier":"left","text":"Gent / Brussel"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"Ring Antwerpen","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Ring Antwerpen"}],"type":"fork","modifier":"left","text":"Ring Antwerpen"},"distanceAlongGeometry":39774.605},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Gent"},{"type":"text","text":"/"},{"type":"text","text":"Brussel"}],"type":"fork","modifier":"left","text":"Gent / Brussel"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"Ring Antwerpen","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"Ring Antwerpen"}],"type":"fork","modifier":"left","text":"Ring Antwerpen"},"distanceAlongGeometry":3218.688}],"destinations":"A16: Antwerpen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A16 toward Antwerpen.","modifier":"slight left","bearing_after":265,"bearing_before":272,"location":[4.752749,51.526351]},"speedLimitSign":"vienna","name":"","weight_typical":1375.947,"duration_typical":1447.457,"duration":1446.558,"distance":39774.605,"driving_side":"right","weight":3800.855,"mode":"driving","ref":"E 19","geometry":"}k|gaByuaaHP~HIlI_AvjAuFb`H?HkA|bBqAxsAO~MMrS[`Zm@fQ}@fK{AzKuB|IuCpIkDbGiHxGaFfCuLdB{Gu@gGyBaFgE{D}EaEgJ_EsLcBeKo@uL@sJ^{JfA}IhBmKlCuIzFcJpIwHpFoCtIeClhA}[xJaIbk@yKjs@aLxv@cK|v@eIps@kEju@}Czx@mBxjAMfm@t@~e@vA~}AxHr{A|IJ@xhJ|p@dyAhKvaCjUtvArMnpAnSxjB`ZfCh@l{@xQn_@zIhzBhp@vi@`R|b@lP`_@jNb{Afp@~xH|oD`pDrbBtI~Dt`@rQryDfcBlgD|qAffCtbAdz@`[j}@~[r{@tZr{@bZlkAlb@daChv@fa@jKnl@tQp|Bpp@`jAx[hjA|ZjtEngAhtFtuArlAxZziBth@nVnIngBbk@ty@xXly@h[bmE|{AnvAtg@jjCx_AtaJ~`D~fL~bEreAt`@nu@hWv^dM~aBrl@~fKzuD~_Bfo@r~Axr@jo@dZnn@b[p_@vRz}@bh@~i@r\\tVzO~]~U|_Azp@fx@jn@t]|Xd]dZza@l^|^r\\fQvPjJ`Jr\\j\\jTpThc@be@`e@~g@bb@dg@zf@bl@j^be@rb@fj@~Zva@j\\~c@da@fk@xf@pr@lg@|u@h]xg@rSvZ~l@x_AzaC`oDrsCxiEzu@nlA``EdfG~eAp`Bti@ty@~pCndErdBlgC|dBfbC`cBhzB~uA~hB`~Cn}DvcDxbEhwLxoOvfB`~Bf}Dp`FncAfpAzQjUpoJ~`L`]ba@~Q|SlXx[b}ApiBltFttGt`H~cI|mG~|Hv_@lh@hjFdqHtiDhoFvz@xzAhxAtjC`vAxmC`y@hbB|gBfzDjo@dyAnn@`yAv|AlvDz}FfhOpwAf{D~xAfyDxlB|~EvxB``Gn@bBzbBtjE`V`n@xkA`aDzeBz}E`h@dvAnoAtvDzh@|`BblBd{Ft^bhAxk@hfBfl@zgBdL|\\`jAbhDduAvvDvaAbfC||AjuDjdCnjFf`BnhDvbB~kDtiAv_Cjt@tvA~EpJjuA~xBvcAzxAfvA|hBniBnkBhtAjmAt`@t]|~B~sBjzAfzAvo@vl@bo@xl@xgAbhAlrAlxA|bAxpA~m@`~@dr@jgAto@xhAhl@loA~r@fbBlk@z`B|`@d|AtXxkAtWlrAbRxjAzMleAvJjgAfHbjApFxpA~CbrAZxpA[dvA_DfbBaItsB}In{AqKhnBsNlnBgNbrBwFv~@wEj~@_Dv_AiBbjACln@DxUHvVJjGV|SfBz}@|Alq@pBbz@bGtvB\\xLdGh~BtG~fDdEl{ArBrm@tJbaCbNbiCfH|x@pEb`@dIbr@rPxtAzQ|jApO|u@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":10193.396},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on E 19.","announcement":"In 1 mile, Keep right to stay on E 19.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 19.","announcement":"In a half mile, Keep right to stay on E 19.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 19 toward Brussel, Mechelen.","announcement":"Keep right to stay on E 19 toward Brussel, Mechelen.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.44169,51.266053],"geometry_index":1517,"admin_index":4,"weight":60.437,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":57.566,"bearings":[64,243,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,208],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":1.201,"geometry_index":1569,"location":[4.428232,51.257204]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.428052,51.25699],"geometry_index":1570,"admin_index":4,"weight":7.435,"is_urban":true,"turn_weight":1,"duration":6.017,"bearings":[11,28,201],"out":2,"in":1,"turn_duration":0.03,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":32.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":34.515,"geometry_index":1574,"location":[4.427355,51.255783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":2.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":2.44,"geometry_index":1583,"location":[4.425958,51.24898]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,179],"duration":11.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":12.294,"geometry_index":1584,"location":[4.425949,51.248506]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":5.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":5.894,"geometry_index":1586,"location":[4.426027,51.246109]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":3.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":3.797,"geometry_index":1587,"location":[4.426033,51.244962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":15.724,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":17.296,"geometry_index":1588,"location":[4.426041,51.244334]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.426073,51.241668],"geometry_index":1589,"admin_index":4,"weight":3.927,"is_urban":true,"turn_weight":0.5,"duration":3.065,"bearings":[0,179,329],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":9.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":10.654,"geometry_index":1590,"location":[4.426086,51.241172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,356],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.246,"geometry_index":1593,"location":[4.426155,51.239641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,355],"duration":112.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":126.3,"geometry_index":1594,"location":[4.42618,51.239466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,317],"duration":31.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":36.379,"geometry_index":1652,"location":[4.442522,51.228828]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.446488,51.226074],"geometry_index":1656,"admin_index":4,"weight":5.41,"is_urban":true,"turn_weight":0.5,"duration":4.279,"bearings":[142,303,317],"out":0,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":41.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":48.14,"geometry_index":1657,"location":[4.446941,51.225717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,345],"duration":12.642,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":14.538,"geometry_index":1665,"location":[4.450317,51.221796]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.450768,51.220472],"geometry_index":1668,"admin_index":4,"weight":1.242,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.088,"bearings":[173,182,351],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":3.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.726,"geometry_index":1669,"location":[4.45079,51.220362]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,353],"duration":25.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":28.773,"geometry_index":1670,"location":[4.450854,51.220038]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,194],"duration":25.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":29.808,"geometry_index":1674,"location":[4.45058,51.217556]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":38.79,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":44.608,"geometry_index":1679,"location":[4.44913,51.215143]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.446054,51.21178],"geometry_index":1682,"admin_index":4,"weight":60.646,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":52.756,"bearings":[30,209,231],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.442143,51.20757],"geometry_index":1686,"admin_index":4,"weight":44.42,"is_urban":true,"turn_weight":1,"duration":37.763,"bearings":[18,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,206],"duration":27.963,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":32.13,"geometry_index":1690,"location":[4.439055,51.20423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":1.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":1.288,"geometry_index":1694,"location":[4.437062,51.201283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":23.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":27.048,"geometry_index":1695,"location":[4.436996,51.201165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":46.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":52.992,"geometry_index":1698,"location":[4.435617,51.198671]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":14.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":17.204,"geometry_index":1717,"location":[4.431464,51.19426]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.429339,51.193246],"geometry_index":1721,"admin_index":4,"weight":22.109,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":19.233,"bearings":[57,237,246],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":2.757,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":3.171,"geometry_index":1725,"location":[4.426203,51.192152]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,248],"duration":21.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":23.697,"geometry_index":1726,"location":[4.425744,51.192014]},{"bearings":[75,255],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"geometry_index":1730,"location":[4.422028,51.191186]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Brussel"},{"type":"text","text":"/"},{"type":"text","text":"Mechelen"}],"type":"fork","modifier":"right","text":"Brussel / Mechelen"},"primary":{"components":[{"type":"text","text":"Antwerpen-Zuid"}],"type":"fork","modifier":"right","text":"Antwerpen-Zuid"},"distanceAlongGeometry":10228.396},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Brussel"},{"type":"text","text":"/"},{"type":"text","text":"Mechelen"}],"type":"fork","modifier":"right","text":"Brussel / Mechelen"},"primary":{"components":[{"type":"text","text":"Antwerpen-Zuid"}],"type":"fork","modifier":"right","text":"Antwerpen-Zuid"},"distanceAlongGeometry":1609.344}],"destinations":"Ring Antwerpen: Gent, Brussel, Luik, Antwerpen-Centrum, Haven 1-199","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 19 toward Gent/Brussel/Luik/Antwerpen-Centrum.","modifier":"slight left","bearing_after":243,"bearing_before":244,"location":[4.44169,51.266053]},"speedLimitSign":"vienna","name":"","weight_typical":786.187,"duration_typical":693.634,"duration":695.171,"distance":10228.396,"driving_side":"right","weight":787.952,"mode":"driving","ref":"E 19","geometry":"i_`x`BsdbnGdO|q@dGpWjE|Q~DdPfD`N~FpTpFvRlFtQfGpSxFhRhGdRbGrQlGnQvFxO|GhQrGnPdH~P`HpPxH~PfHzOnHvOvHlOzHrOdIbOnIdOtH~MrIhN~IpNlJ~NrHvKpJ`N|I`MdJfM|I|LfKdNrI|JpJlLvJ~KxJxKnEzEjEvEtP|PjOzNhKnJvQfPpLxJ|K~I`PrLtK|HzLfIpPrK~LhHjLfJnHxDpXrNhOnH`WrKjWxKl{@lXbbAnTl{@jLpoAvIbi@p@jTTbUDrm@^r\\Pz`CwC|RCtfAKff@OreD_A~]Yzw@q@zZk@|Ik@|Iq@pIeAbIgAdHwAjJ{BdJiC~HkCbH_DnI_E`KcGxIgGxGmFbHgGrIwIrHuI~GaJdIsLvFcJnHoNfEaJ~CkHlFyMhH{RvDaLnDcLnD}LnEcPvEyPtYsiApEiQjEeP~E{QdDuLrCwJxDuMhEwMlEiNbDwJ~C_JlD}JnDoJvD}JbEkKhDcIrEeKjFoLtFaMnFeLbFwJjKwRtHmNjGoKnEyHjHkMna@uq@zn@oeAbu@cnAft@slAth@i|@~r@knArz@{tAxt@kgAtEgIhUi[|LuPrd@kj@nf@qi@`^wY|ImHzc@y\\|m@g\\d[cKnUuHpZ}Ht_@qGzEk@fS_CpR{@pw@n@vo@|Ff]pH|\\rJ~e@jSln@n^jPhL`PxLpZvVt}B`sB|v@ls@p_Azw@buAbrAtn@nj@v_A|{@tmA~jA~m@nj@to@`i@ja@l^vk@za@b}@vh@ff@dY`e@vTjFbCp`A|c@xh@hUno@|YbQjIjQbJjT~KxQvKxVtO~OvKbMlJ~OnMdLdKhJpIzMxNxOlQdR|UdGpIfHpKbEtGnFdJxDzGxMbXtPf^xL|ZnO|b@jNtd@dRrm@rKn`@hOvo@fSbbArGt[zMjy@bMry@dMz_ApGjq@dDz^"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Take the ramp on the left toward Brussel.","announcement":"In a half mile, Take the ramp on the left toward Brussel.","distanceAlongGeometry":577.246},{"ssmlAnnouncement":"Take the ramp on the left toward Brussel, Mechelen.","announcement":"Take the ramp on the left toward Brussel, Mechelen.","distanceAlongGeometry":190}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.421518,51.191103],"geometry_index":1731,"admin_index":4,"weight":10.188,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":9.07,"bearings":[75,251,264],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,274],"duration":5.681,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":6.392,"geometry_index":1736,"location":[4.419215,51.190993]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"bearings":[105,290],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"geometry_index":1740,"location":[4.417782,51.191127]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Brussel"},{"type":"text","text":"/"},{"type":"text","text":"Mechelen"}],"type":"turn","modifier":"slight left","text":"Brussel / Mechelen"},"distanceAlongGeometry":610.58}],"destinations":"Brussel, Mechelen, Boom, Wilrijk","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 19 toward Brussel/Mechelen.","modifier":"slight right","bearing_after":264,"bearing_before":255,"location":[4.421518,51.191103]},"speedLimitSign":"vienna","name":"","weight_typical":35.372,"duration_typical":31.455,"duration":31.455,"distance":610.58,"driving_side":"right","weight":35.372,"mode":"driving","ref":"E 19","geometry":"}rms`B{wzlGpCx`A`@lPf@rYBzYCdFE`Is@fZuBlc@{AxNqDhWqDhTqBlMeAzG}ElXiFf^eFx`@wD`c@qCvg@eA~e@S`V"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 21 miles.","announcement":"Continue for 21 miles.","distanceAlongGeometry":34529.461},{"ssmlAnnouncement":"In a quarter mile, Keep left to take E411.","announcement":"In a quarter mile, Keep left to take E411.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take E411, E40 toward Namen, Luik.","announcement":"Keep left to take E411, E40 toward Namen, Luik.","distanceAlongGeometry":147.778}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"location":[4.413009,51.19195],"geometry_index":1751,"admin_index":4,"weight":8.206,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.197,"bearings":[92,256,273],"out":1,"in":0,"turn_duration":0.061,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,220],"duration":3.536,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":4.066,"geometry_index":1756,"location":[4.411561,51.191568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,190],"duration":10.015,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":11.517,"geometry_index":1759,"location":[4.411131,51.191157]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,324],"duration":14.352,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":16.505,"geometry_index":1766,"location":[4.411638,51.189876]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.414427,51.187855],"geometry_index":1774,"admin_index":4,"weight":5.202,"is_urban":true,"turn_weight":0.5,"duration":4.098,"bearings":[156,315,332],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,335],"duration":0.622,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":0.716,"geometry_index":1777,"location":[4.414951,51.187101]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.415051,51.186989],"geometry_index":1778,"admin_index":4,"weight":7.342,"is_urban":true,"turn_weight":2.25,"duration":4.445,"bearings":[6,165,331],"out":1,"in":2,"turn_duration":0.018,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[164,342],"duration":21.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":23.773,"geometry_index":1782,"location":[4.415511,51.186076]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[175,355],"duration":36.216,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":39.838,"geometry_index":1787,"location":[4.417729,51.180997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":21.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":23.184,"geometry_index":1801,"location":[4.414081,51.172369]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.413177,51.166751],"geometry_index":1808,"admin_index":4,"weight":38.234,"is_urban":false,"turn_weight":1,"duration":35.488,"bearings":[4,179,351],"out":1,"in":0,"turn_duration":0.026,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[156,166,337],"duration":6.467,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.621,"geometry_index":1818,"location":[4.417494,51.157768]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":1.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.571,"geometry_index":1819,"location":[4.418595,51.156191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":6.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.967,"geometry_index":1820,"location":[4.418859,51.155812]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[156,329,337],"duration":43.54,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":43.533,"geometry_index":1821,"location":[4.420052,51.154091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":23.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.075,"geometry_index":1824,"location":[4.42748,51.143327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":4.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.843,"geometry_index":1836,"location":[4.429448,51.137133]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.675,"geometry_index":1837,"location":[4.429455,51.135795]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":3.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.77,"geometry_index":1838,"location":[4.429471,51.132289]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.429454,51.131245],"geometry_index":1839,"admin_index":4,"weight":0.131,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.155,"bearings":[1,179,214],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":1.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.017,"geometry_index":1840,"location":[4.429455,51.131209]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":15.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.755,"geometry_index":1841,"location":[4.429456,51.130933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,178],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.365,"geometry_index":1845,"location":[4.429542,51.126854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,358],"duration":1.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.43,"geometry_index":1846,"location":[4.429559,51.126478]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.429566,51.126086],"geometry_index":1847,"admin_index":4,"weight":1.942,"is_urban":false,"turn_weight":0.75,"duration":1.229,"bearings":[179,324,359],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":2.725,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.657,"geometry_index":1848,"location":[4.429572,51.125764]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":6.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.232,"geometry_index":1849,"location":[4.429572,51.125035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":6.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.626,"geometry_index":1850,"location":[4.429604,51.123325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.951,"geometry_index":1851,"location":[4.429637,51.121515]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":11.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.187,"geometry_index":1852,"location":[4.429637,51.121256]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":63.439,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.25,"geometry_index":1854,"location":[4.429724,51.118196]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[163,166,343],"duration":26.258,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.927,"geometry_index":1864,"location":[4.43496,51.101649]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.438069,51.095123],"geometry_index":1865,"admin_index":4,"weight":7.84,"is_urban":false,"turn_weight":1,"duration":7.219,"bearings":[163,327,343],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":10.155,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.647,"geometry_index":1866,"location":[4.438961,51.093301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,343],"duration":1.004,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.936,"geometry_index":1868,"location":[4.440195,51.090732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,344],"duration":5.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.162,"geometry_index":1869,"location":[4.440311,51.090485]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":4.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.646,"geometry_index":1870,"location":[4.440962,51.089107]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.441557,51.087871],"geometry_index":1871,"admin_index":4,"weight":12.306,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.972,"bearings":[164,180,343],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,347],"duration":2.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.185,"geometry_index":1873,"location":[4.442944,51.084527]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,349],"duration":15.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.503,"geometry_index":1874,"location":[4.443134,51.083918]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.44362,51.079816],"geometry_index":1878,"admin_index":4,"weight":9.873,"is_urban":false,"turn_weight":0.5,"duration":9.874,"bearings":[0,180,335],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.375,"geometry_index":1880,"location":[4.443596,51.07716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,179],"duration":9.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.373,"geometry_index":1881,"location":[4.443573,51.076489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":17.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.673,"geometry_index":1882,"location":[4.443629,51.073829]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,352],"duration":1.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.014,"geometry_index":1887,"location":[4.444329,51.068597]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":80.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":78.812,"geometry_index":1888,"location":[4.444397,51.068314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.233,"geometry_index":1902,"location":[4.452877,51.047276]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[178,358],"duration":3.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.974,"geometry_index":1903,"location":[4.452898,51.046947]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[178,358],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":1904,"location":[4.452964,51.0459]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":3.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.499,"geometry_index":1905,"location":[4.452979,51.045668]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.452986,51.04473],"geometry_index":1906,"admin_index":4,"weight":3.229,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.238,"bearings":[0,181,206],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,185],"duration":3.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.937,"geometry_index":1907,"location":[4.452963,51.043872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.452803,51.042829],"geometry_index":1909,"admin_index":4,"weight":3,"is_urban":false,"turn_weight":1,"duration":1.971,"bearings":[7,49,186],"out":2,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,189],"duration":1.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2,"geometry_index":1910,"location":[4.45271,51.042309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,191],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.483,"geometry_index":1911,"location":[4.452576,51.041796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,195],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1,"geometry_index":1913,"location":[4.452361,51.041168]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":6.056,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.207,"geometry_index":1914,"location":[4.452256,51.040913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.528,"geometry_index":1917,"location":[4.451513,51.039362]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,201],"duration":3.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.192,"geometry_index":1918,"location":[4.451308,51.038978]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.450824,51.038189],"geometry_index":1919,"admin_index":4,"weight":1.39,"is_urban":false,"turn_weight":0.75,"duration":0.646,"bearings":[21,202,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":1.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":1920,"location":[4.450723,51.03803]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":3.903,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.902,"geometry_index":1921,"location":[4.45055,51.037751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,200],"duration":2.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.119,"geometry_index":1922,"location":[4.449942,51.036777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.532,"geometry_index":1923,"location":[4.449631,51.036249]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":32.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.013,"geometry_index":1924,"location":[4.449122,51.035361]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":4.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.485,"geometry_index":1930,"location":[4.446617,51.026695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,177],"duration":38.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":37.44,"geometry_index":1931,"location":[4.446608,51.025453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,340],"duration":2.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.145,"geometry_index":1937,"location":[4.450131,51.0154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,338],"duration":3.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.445,"geometry_index":1938,"location":[4.450483,51.014849]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,341],"duration":2.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.73,"geometry_index":1939,"location":[4.450984,51.013946]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":7.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.28,"geometry_index":1940,"location":[4.451417,51.013247]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.878,"geometry_index":1941,"location":[4.452607,51.011375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":20.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.76,"geometry_index":1942,"location":[4.452748,51.011152]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":0.462,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.451,"geometry_index":1944,"location":[4.456125,51.00612]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,335],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.438,"geometry_index":1945,"location":[4.45621,51.006003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.875,"geometry_index":1946,"location":[4.456699,51.005408]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,331],"duration":0.933,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.91,"geometry_index":1948,"location":[4.457694,51.004213]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.457891,51.003989],"geometry_index":1949,"admin_index":4,"weight":55.673,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":57.107,"bearings":[151,162,331],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.470855,50.991086],"geometry_index":1963,"admin_index":4,"weight":29.25,"is_urban":false,"turn_weight":0.75,"duration":28.507,"bearings":[134,308,314],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,317],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.908,"geometry_index":1966,"location":[4.47959,50.985723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,319],"duration":19.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.1,"geometry_index":1967,"location":[4.479844,50.985539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":5.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.9,"geometry_index":1974,"location":[4.484685,50.981396]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.485899,50.980004],"geometry_index":1976,"admin_index":4,"weight":4.533,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.552,"bearings":[154,333],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":0.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.538,"geometry_index":1978,"location":[4.486737,50.978904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":26.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.968,"geometry_index":1979,"location":[4.486831,50.978775]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,351],"duration":9.157,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.921,"geometry_index":1987,"location":[4.490074,50.971916]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":88.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":84.389,"geometry_index":1991,"location":[4.490532,50.969196]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":7.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.068,"geometry_index":2004,"location":[4.480141,50.943632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":0.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.627,"geometry_index":2005,"location":[4.478606,50.941626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":7.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.954,"geometry_index":2006,"location":[4.47847,50.941448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.476948,50.93948],"geometry_index":2007,"admin_index":4,"weight":18.887,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.379,"bearings":[26,207,231],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.473382,50.934932],"geometry_index":2010,"admin_index":4,"weight":9.524,"is_urban":false,"turn_weight":1,"duration":8.75,"bearings":[27,207,351],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":55.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":55.714,"geometry_index":2012,"location":[4.471757,50.932885]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.764,"geometry_index":2016,"location":[4.461467,50.919804]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":8.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.856,"geometry_index":2017,"location":[4.461154,50.919407]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":2.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.096,"geometry_index":2019,"location":[4.459606,50.917424]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.459053,50.91673],"geometry_index":2020,"admin_index":4,"weight":4.271,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.092,"bearings":[27,203,249],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.938,"geometry_index":2022,"location":[4.458371,50.915812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":0.405,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.425,"geometry_index":2023,"location":[4.458113,50.915485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":9.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.159,"geometry_index":2024,"location":[4.458057,50.915413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.897,"geometry_index":2029,"location":[4.456636,50.913705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,211],"duration":3.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.827,"geometry_index":2030,"location":[4.456505,50.913557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":18.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":20.075,"geometry_index":2031,"location":[4.455914,50.912927]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.45244,50.909915],"geometry_index":2036,"admin_index":4,"weight":12.821,"is_urban":true,"turn_weight":1,"duration":10.755,"bearings":[25,40,223],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":2.213,"geometry_index":2039,"location":[4.45042,50.908615]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":4.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":5.066,"geometry_index":2041,"location":[4.450015,50.908394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,233],"duration":3.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":3.669,"geometry_index":2042,"location":[4.449078,50.90788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":18.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"weight":20.149,"geometry_index":2043,"location":[4.448367,50.907539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[61,242],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":1,"geometry_index":2047,"location":[4.444196,50.905887]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Namen"},{"type":"text","text":"/"},{"type":"text","text":"Luik"}],"type":"fork","modifier":"left","text":"Namen / Luik"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E411"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E40"}],"type":"fork","modifier":"left","text":"E411 / E40"},"distanceAlongGeometry":34552.793},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Namen"},{"type":"text","text":"/"},{"type":"text","text":"Luik"}],"type":"fork","modifier":"left","text":"Namen / Luik"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E411"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E40"}],"type":"fork","modifier":"left","text":"E411 / E40"},"distanceAlongGeometry":402.336}],"destinations":"Brussel, Mechelen","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the ramp on the left toward Brussel/Mechelen.","modifier":"slight left","bearing_after":256,"bearing_before":272,"location":[4.413009,51.19195]},"speedLimitSign":"vienna","name":"","weight_typical":1202.956,"duration_typical":1193.096,"duration":1192.947,"distance":34552.793,"driving_side":"right","weight":1202.817,"mode":"driving","ref":"E19; E 19","geometry":"{gos`BadjlGvCf]zA~NfCjO`DlM|ElL`GnJxH|HxFlDxQlDbKMzNyDdG_E`IwF~HmJ~CuDhPyY|Sac@xHoPpIeOfIiN~IiMx_@mc@rLuJxSoMzTgMlC_C~EgEpFqArFmC|LiF|ZmMlpBwr@`}Aoo@xi@sSfo@gNzQoAn_@kCxn@n@`VhCvN`Cb@HvUfFnQ`FtZjQxmAtq@f`B|iA~X|Lby@|Zhx@lOp_@pDtaAxI~SvBt_BdPlWhCfU~Bvs@lGhbA~F~t@k@jm@gEjd@}Gza@oJr\\_Mnr@kXbc@mTji@o[lcA{l@v_DqiBpaBycAtVoOpjBqiAbeGovDx`FmxCxwDi~BlXmPtReLnZsPn\\qMpZuK`ZaJd`@sL|]wHfj@eDja@gBjg@cAfo@oArrAMbzE_@f`A`@fAAfPA`@?~}B_DhdBIpXAnVa@nWMbSKpl@?ziB_AbpBaAdO?jaD{Bz[q@lgBmDh~AiKzvAcOr{Bq]jeA_UzqBgg@nnAg`@vkAia@r{EsgBxz@k[zvKiaEzpBwv@thAcc@zuA_h@lNgFbuAug@flAed@|zBgw@`tAm]`e@{JbaA_N|}@sHlqBwDzK?vf@Bf}Bj@|h@l@feDoBvWWp{BgJftA_KvtAeQtEq@tPgCdUiDr}AaYnwA}\\luBgm@ddEg~AtkMkvF~u@wXh{@gUl{@_Ohf@_Ehf@cCbQaA~`@{@vYw@pSi@l`AcCnM]ry@Mrt@l@hl@hEzRtBn_@xD`_@jGrQxDrSrF|NpEzSdGlf@rQrc@rR~VxKhp@f]|HhElPxIz{@~d@~_@lRnv@x^~fAbf@`mBdq@v~Brb@juAvQtv@~EvxAzDrlAPb_BaG`sBaVl_B_[`iAe[niA}_@bjD}bBla@_Ulw@i^tj@aZ~sBkiA|LyGr~DyxBzyBgxAhFiDdd@q]`k@gb@r]}Y~LiKlsCgdChYaVv`@_\\fl@qd@~s@yh@fm@{a@hs@ae@pbAmq@nnAocA~QwSlz@gbAd}@_uApk@oaAzcAepBflBksDfwDeoHth@k|@nJ{Nn]ak@hvAakBn|@cdAf_@w`@`QuPpOaQvKyJtm@cj@hg@w_@zq@ef@zPeL`G{DzU{Ojy@_e@xy@c^jy@g`@f}Auf@rfAuWpk@{LxReD~o@eJdp@{Fbb@qDtc@_CnLc@`Nq@n\\Szx@ObmBrHl{BnVhuBxb@|rExvAdEpAdtNj_FzjB|v@bmB|aAr~DtqCj|B|~AbJnG~yBb~Av{AphAn|ApeA~`BvmAbZzTxcBtnAxaAvs@rtMfoJfPnMzfGrnExWpR`UpOzdBdoAjj@pa@fVvNba@zYlSbOnCnB`i@x`@~GdF`HbFb[fWnQlOfHdGjf@|c@nDdDpr@|o@xi@bn@~w@phAj^hi@fT|]nq@vmAnHpOtJlTbAzBb_@py@hTlk@vQ`f@t]hgAxZnhA~XxjAbl@xgCvGpZ"},{"voiceInstructions":[{"ssmlAnnouncement":"In 2 miles, Keep left to stay on R0.","announcement":"In 2 miles, Keep left to stay on R0.","distanceAlongGeometry":3978.539},{"ssmlAnnouncement":"In a half mile, Keep left to stay on R0.","announcement":"In a half mile, Keep left to stay on R0.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on R0.","announcement":"Keep left to stay on R0.","distanceAlongGeometry":213.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.441566,50.905025],"geometry_index":2049,"admin_index":4,"weight":8.94,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.966,"bearings":[63,242,260],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,251],"duration":25.472,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":28.019,"geometry_index":2052,"location":[4.440061,50.904581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,222],"duration":26.7,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":1,"weight":29.37,"geometry_index":2065,"location":[4.435028,50.903589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,314],"duration":17.54,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":19.295,"geometry_index":2084,"location":[4.435417,50.900791]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.438148,50.899668],"geometry_index":2089,"admin_index":4,"weight":25.812,"is_urban":true,"turn_weight":0.5,"duration":22.52,"bearings":[122,297,302],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,305],"duration":4.5,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":5.062,"geometry_index":2093,"location":[4.441137,50.898454]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.441733,50.898294],"geometry_index":2094,"admin_index":4,"weight":17.35,"is_urban":true,"turn_weight":11.75,"duration":4.993,"bearings":[125,293,306],"out":0,"in":1,"turn_duration":0.015,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[125,305],"duration":17.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.2,"geometry_index":2095,"location":[4.443043,50.897717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.447511,50.895734],"geometry_index":2096,"admin_index":4,"weight":1.929,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.733,"bearings":[125,142,305],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,305],"duration":6.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.328,"geometry_index":2097,"location":[4.447977,50.895525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,308],"duration":8.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":9.257,"geometry_index":2100,"location":[4.449719,50.894717]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,317],"duration":2.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.556,"geometry_index":2106,"location":[4.451715,50.893538]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,319],"duration":5.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.268,"geometry_index":2107,"location":[4.452213,50.893177]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.453309,50.892239],"geometry_index":2109,"admin_index":4,"weight":12.257,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":10.914,"bearings":[146,165,326],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,331],"duration":7.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.739,"geometry_index":2111,"location":[4.454965,50.890454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,331],"duration":0.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.213,"geometry_index":2112,"location":[4.456107,50.889172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,329],"duration":27.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":30.481,"geometry_index":2113,"location":[4.456133,50.889145]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,345],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.21,"geometry_index":2120,"location":[4.460031,50.884651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,352],"duration":5.495,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.182,"geometry_index":2122,"location":[4.460237,50.883954]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.460389,50.882918],"geometry_index":2125,"admin_index":4,"weight":2.946,"is_urban":true,"turn_weight":0.75,"duration":1.972,"bearings":[178,338,358],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":10.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.562,"geometry_index":2126,"location":[4.460405,50.882629]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,347],"duration":4.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.819,"geometry_index":2129,"location":[4.460722,50.881051]},{"bearings":[159,342],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":2131,"location":[4.461043,50.880378]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"R0","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"R0"}],"type":"fork","modifier":"left","text":"R0"},"distanceAlongGeometry":4001.872}],"destinations":"E411, E40: Namen, Luik, Leuven, Zaventem, Brussel","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E411/E40 toward Namen/Luik/Leuven/Zaventem.","modifier":"slight left","bearing_after":242,"bearing_before":243,"location":[4.441566,50.905025]},"speedLimitSign":"vienna","name":"","weight_typical":268.84,"duration_typical":228.846,"duration":228.846,"distance":4001.872,"driving_side":"right","weight":268.84,"mode":"driving","ref":"R0; E 40","geometry":"a{~a`B{|anGvEzRzLpm@bFrZ`AjHtBzOvClYtCb^jDxw@rAz\\dCz^rBtV|D|YxD`SlDnM~CrJxGjNbClE|FtI~GtHjJzHdKtFhIzCdKjBfL`@hKg@lE{@`Eq@lFuAfF{BxEmCzE{DpE_FrE}EbKaO~NmYzGqQrFeP|FaR~Tuv@vVe{@tJ{\\`Umv@|Roq@dU_r@~Hgd@`c@{pA|zBgvG`Lc\\z]scApL{Z`EkKlOq_@rPo]tQe]xJ{PxEkIhAgBpUc^p`@sh@`X{Y|WkYruAclAboAkfAt@s@~a@w`@huAkqAng@cg@hc@y`@|i@_a@`YsLvL}Dv[sHxMgBbT}AtUqD|S_@`Q_@bj@aC~[kEnYkHhRiGvUwJ`i@eXrPsJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":8820.937},{"ssmlAnnouncement":"In 1 mile, Take the exit toward Luxemburg.","announcement":"In 1 mile, Take the exit toward Luxemburg.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the exit toward Luxemburg.","announcement":"In a half mile, Take the exit toward Luxemburg.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the exit toward Luxemburg, Namen. Then Keep left to take E411.","announcement":"Take the exit toward Luxemburg, Namen. Then Keep left to take E411.","distanceAlongGeometry":190}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[157,183,337],"duration":6.381,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.329,"geometry_index":2133,"location":[4.461632,50.879423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":1.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.79,"geometry_index":2135,"location":[4.46237,50.878345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.462548,50.878084],"geometry_index":2136,"admin_index":4,"weight":1.254,"is_urban":true,"turn_weight":0.75,"duration":0.462,"bearings":[152,324,337],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,332],"duration":1.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.247,"geometry_index":2137,"location":[4.462605,50.878015]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":0.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.34,"geometry_index":2138,"location":[4.462821,50.877703]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":25.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":28.96,"geometry_index":2139,"location":[4.462854,50.877653]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":6.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.489,"geometry_index":2141,"location":[4.465811,50.873353]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,182,337],"duration":32.704,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":36.784,"geometry_index":2142,"location":[4.466566,50.872236]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":0.54,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.607,"geometry_index":2147,"location":[4.471581,50.864986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.011,"geometry_index":2148,"location":[4.471666,50.864866]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.472245,50.864039],"geometry_index":2149,"admin_index":4,"weight":11.165,"is_urban":true,"turn_weight":1,"duration":9.043,"bearings":[156,313,336],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,337],"duration":5.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.63,"geometry_index":2152,"location":[4.473668,50.86197]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,341],"duration":0.624,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.702,"geometry_index":2154,"location":[4.474367,50.8608]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,343],"duration":4.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.614,"geometry_index":2155,"location":[4.474437,50.860658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,348],"duration":5.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.536,"geometry_index":2158,"location":[4.474895,50.859439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.446,"geometry_index":2162,"location":[4.475135,50.857983]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,357],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.752,"geometry_index":2163,"location":[4.475184,50.857436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,358],"duration":15.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":17.44,"geometry_index":2164,"location":[4.475193,50.85727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,345],"duration":8.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":9.24,"geometry_index":2173,"location":[4.476183,50.853414]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.477353,50.851476],"geometry_index":2177,"admin_index":4,"weight":1.631,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.502,"bearings":[155,337],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":0.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.565,"geometry_index":2178,"location":[4.477564,50.851189]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":9.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":10.928,"geometry_index":2179,"location":[4.477643,50.851082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,334],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.625,"geometry_index":2181,"location":[4.47898,50.849318]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,335],"duration":12.884,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":14.173,"geometry_index":2182,"location":[4.479174,50.849061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":31.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":34.285,"geometry_index":2183,"location":[4.480847,50.846855]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,340],"duration":71.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":77.196,"geometry_index":2188,"location":[4.482735,50.84415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":75.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":79.778,"geometry_index":2196,"location":[4.483684,50.837394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":15.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.313,"geometry_index":2207,"location":[4.481629,50.830412]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,202],"duration":17.474,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.347,"geometry_index":2208,"location":[4.480734,50.829056]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.479676,50.827399],"geometry_index":2209,"admin_index":4,"weight":9.706,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.492,"bearings":[22,200,215],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"in":0,"bearings":[15,192],"duration":25.618,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":26.259,"geometry_index":2212,"location":[4.479123,50.826375]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[4,184],"duration":14.88,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":14.88,"geometry_index":2217,"location":[4.478761,50.823642]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[21,203],"duration":6.72,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":6.552,"geometry_index":2223,"location":[4.477322,50.820447]},{"entry":[false,true],"in":0,"bearings":[23,202],"duration":28.595,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":27.165,"geometry_index":2225,"location":[4.476373,50.819066]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":4.988,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.739,"geometry_index":2226,"location":[4.473454,50.814428]},{"entry":[false,false,true],"in":1,"bearings":[6,22,202],"duration":3.575,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":2,"weight":4.127,"geometry_index":2227,"location":[4.472944,50.813617]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":12.941,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":11.971,"geometry_index":2228,"location":[4.472531,50.812963]},{"entry":[false,true],"in":0,"bearings":[22,202],"duration":26.111,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":24.153,"geometry_index":2229,"location":[4.471036,50.810594]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[22,202],"duration":5.924,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":5.479,"geometry_index":2233,"location":[4.468013,50.805811]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[22,203],"duration":1.185,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.096,"geometry_index":2234,"location":[4.467313,50.804728]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[23,203],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":2235,"location":[4.46717,50.804515]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Luxemburg"},{"type":"text","text":"/"},{"type":"text","text":"Namen"}],"type":"off ramp","modifier":"right","text":"Luxemburg / Namen"},"distanceAlongGeometry":8860.937},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Luxemburg"},{"type":"text","text":"/"},{"type":"text","text":"Namen"}],"type":"off ramp","modifier":"right","text":"Luxemburg / Namen"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on R0.","modifier":"slight left","bearing_after":157,"bearing_before":157,"location":[4.461632,50.879423]},"speedLimitSign":"vienna","name":"","weight_typical":541.56,"duration_typical":511.026,"duration":511.026,"distance":8860.937,"driving_side":"right","weight":541.56,"mode":"driving","ref":"R0","geometry":"}zl``B_cioGJG~aA{l@hOcJhCqBnRoLbBaA~iAkp@v`EmfCxdAen@xe@uZv\\_TzrDczBblBkjAp~AgaAnFiDtr@ec@p_Aqk@|n@{_@xOoJlc@qVtc@cSzGkCbOgFjPkFti@_MrWyD|OiBfOqAd`@iBda@aBjIQnh@wClY}BdXcCp[oEhRgDhVcFlWuGlX_IxYoJz_@wOtZ_Ox_@sTvZwQ|PeLtE}Cnl@ia@v_Agp@`OcKzhCqgBh_A_p@f[{SrUwNn[{PjXoM|LyErZuJra@gJn[eFn^aD~YyAz}CkHdcBcDjv@yAddAwAza@nA~_@bDzPrBtPtCxZ`JvOjFpO~Fn`@jQvpBfhAvsA|v@pfBbaArWdM~TfLjPbF|QhEvVlCbUrAbz@nCzm@vCzUpAdh@hJd]~MbX~K~k@`Zhb@~S|fAlp@jMzHz`HluDtq@z^zg@xX`sCl|AjGhDz{A~y@d|Axy@ngBx`AtbAvj@hL|GbB`A"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to take E411, E 411.","announcement":"Keep left to take E411, E 411.","distanceAlongGeometry":132.222}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[23,201,227],"duration":1.46,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.035,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":2,"weight":1.318,"geometry_index":2236,"location":[4.467137,50.804465]},{"bearings":[47,203],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":2237,"location":[4.466944,50.80435]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E411"},{"type":"delimiter","text":"/"},{"type":"icon","text":"E 411"}],"type":"fork","modifier":"left","text":"E411 / E 411"},"distanceAlongGeometry":225.706}],"destinations":"Luxemburg, Namen, Brussel","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit toward Luxemburg/Namen/Brussel.","modifier":"slight right","bearing_after":227,"bearing_before":203,"location":[4.467137,50.804465]},"speedLimitSign":"vienna","name":"","weight_typical":15.679,"duration_typical":16.985,"duration":16.985,"distance":225.706,"driving_side":"right","weight":15.679,"mode":"driving","geometry":"anz{_Ba{soGdF`Kvk@n\\tn@z\\jNjH"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 86 miles.","announcement":"Continue for 86 miles.","distanceAlongGeometry":138554.609},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E411.","announcement":"In 2 miles, Keep left to stay on E411.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E411.","announcement":"In a half mile, Keep left to stay on E411.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E411, E 411 toward Luxemburg, Arlon.","announcement":"Keep left to stay on E411, E 411 toward Luxemburg, Arlon.","distanceAlongGeometry":280}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[21,189,206],"duration":7.05,"turn_duration":0.045,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":1,"weight":6.305,"geometry_index":2240,"location":[4.465844,50.802625]},{"entry":[false,true],"in":0,"bearings":[16,201],"duration":17.027,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":1,"weight":15.324,"geometry_index":2243,"location":[4.465619,50.801996]},{"entry":[true,false,false],"in":2,"bearings":[124,270,306],"duration":1.872,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":0,"weight":2.166,"geometry_index":2252,"location":[4.465562,50.800602]},{"entry":[true,false],"in":1,"bearings":[124,304],"duration":14.297,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":0,"weight":12.867,"geometry_index":2253,"location":[4.465773,50.800513]},{"entry":[true,false],"in":1,"bearings":[123,304],"duration":18.103,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":0,"weight":16.745,"geometry_index":2255,"location":[4.467411,50.799818]},{"entry":[true,false],"in":1,"bearings":[117,302],"duration":6.994,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":0,"weight":6.47,"geometry_index":2257,"location":[4.469498,50.798953]},{"entry":[true,false,false],"in":1,"bearings":[124,297,310],"duration":16.588,"turn_weight":11,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":26.333,"geometry_index":2258,"location":[4.470359,50.798676]},{"entry":[true,false],"in":1,"bearings":[132,310],"duration":1.13,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.046,"geometry_index":2263,"location":[4.474975,50.796644]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[134,312],"duration":7.116,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.583,"geometry_index":2264,"location":[4.475264,50.796478]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[138,317],"duration":3.433,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.175,"geometry_index":2266,"location":[4.476949,50.79538]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[138,318],"duration":0.544,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.503,"geometry_index":2267,"location":[4.477733,50.794836]},{"entry":[true,true,false],"in":2,"bearings":[137,160,318],"duration":3.996,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.679,"geometry_index":2268,"location":[4.477857,50.79475]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,313],"duration":0.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.131,"geometry_index":2271,"location":[4.478811,50.794142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,314],"duration":11.259,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.414,"geometry_index":2272,"location":[4.478854,50.794116]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[125,305],"duration":16.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.49,"geometry_index":2277,"location":[4.48247,50.792391]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[133,296,310],"duration":4.796,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.549,"geometry_index":2282,"location":[4.48772,50.789896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,313],"duration":42.696,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":41.629,"geometry_index":2283,"location":[4.489103,50.789085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,341],"duration":41.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":41.796,"geometry_index":2297,"location":[4.497949,50.780134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,344],"duration":1.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.6,"geometry_index":2302,"location":[4.502634,50.770132]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":7.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.617,"geometry_index":2303,"location":[4.50282,50.769752]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":2.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.137,"geometry_index":2306,"location":[4.503757,50.768045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":39.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.06,"geometry_index":2307,"location":[4.504041,50.767593]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,314],"duration":2.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.856,"geometry_index":2319,"location":[4.513016,50.75954]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,312],"duration":8.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.568,"geometry_index":2320,"location":[4.513893,50.759042]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,306],"duration":8.364,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.946,"geometry_index":2323,"location":[4.516692,50.75768]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[119,301],"duration":7.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.544,"geometry_index":2325,"location":[4.519546,50.756555]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.522358,50.755589],"geometry_index":2326,"admin_index":4,"weight":5.755,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.064,"bearings":[118,299],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,298],"duration":4.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.946,"geometry_index":2327,"location":[4.524549,50.754847]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,298],"duration":10.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.83,"geometry_index":2329,"location":[4.526063,50.754346]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[122,275,300],"duration":9.285,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.581,"geometry_index":2332,"location":[4.529885,50.753014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,307],"duration":3.081,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.85,"geometry_index":2335,"location":[4.533033,50.751668]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,310],"duration":39.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.63,"geometry_index":2337,"location":[4.534024,50.75117]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":0.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.032,"geometry_index":2346,"location":[4.544419,50.743327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":20.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.635,"geometry_index":2347,"location":[4.544428,50.743319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":6.161,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.699,"geometry_index":2350,"location":[4.549207,50.739059]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.550676,50.737754],"geometry_index":2351,"admin_index":6,"weight":20.741,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.43,"bearings":[145,325],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":1.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.382,"geometry_index":2356,"location":[4.554243,50.734558]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":16.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.236,"geometry_index":2357,"location":[4.554609,50.734233]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[143,298,324],"duration":8.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.98,"geometry_index":2359,"location":[4.55859,50.730682]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,320],"duration":3.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.506,"geometry_index":2362,"location":[4.561071,50.728715]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,317],"duration":33.274,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":31.61,"geometry_index":2364,"location":[4.562259,50.727902]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,305],"duration":7.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.23,"geometry_index":2371,"location":[4.56928,50.72417]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.571049,50.723451],"geometry_index":2372,"admin_index":6,"weight":15.11,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.925,"bearings":[122,303],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":4.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.595,"geometry_index":2374,"location":[4.576895,50.721131]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":8.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.137,"geometry_index":2375,"location":[4.578631,50.720446]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.581703,50.719235],"geometry_index":2376,"admin_index":6,"weight":15.513,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.532,"bearings":[122,302],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[122,286,302],"duration":4.016,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.996,"geometry_index":2378,"location":[4.587423,50.716988]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":1.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.553,"geometry_index":2379,"location":[4.588888,50.716413]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":0.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.628,"geometry_index":2380,"location":[4.589454,50.716192]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":22.921,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.921,"geometry_index":2381,"location":[4.589682,50.716102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,302],"duration":3.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.453,"geometry_index":2384,"location":[4.598026,50.712801]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,304],"duration":4.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.51,"geometry_index":2385,"location":[4.599228,50.712293]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.600749,50.711597],"geometry_index":2386,"admin_index":6,"weight":8.084,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.896,"bearings":[128,146,306],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.603411,50.710233],"geometry_index":2388,"admin_index":6,"weight":3.243,"is_urban":false,"turn_weight":0.75,"duration":2.439,"bearings":[131,289,310],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":4.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.065,"geometry_index":2389,"location":[4.604213,50.709793]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,311],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.51,"geometry_index":2390,"location":[4.605829,50.708901]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,313],"duration":4.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.467,"geometry_index":2391,"location":[4.606295,50.70863]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.607625,50.707819],"geometry_index":2393,"admin_index":6,"weight":9.115,"is_urban":false,"turn_weight":0.75,"duration":7.976,"bearings":[137,298,314],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,322],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.505,"geometry_index":2396,"location":[4.609861,50.706208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,323],"duration":1.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.19,"geometry_index":2397,"location":[4.610231,50.705898]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.3,"geometry_index":2398,"location":[4.610512,50.705647]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.611914,50.704292],"geometry_index":2401,"admin_index":6,"weight":27.244,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.587,"bearings":[149,168,328],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,335],"duration":3.364,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.448,"geometry_index":2408,"location":[4.617124,50.698016]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.617706,50.697201],"geometry_index":2409,"admin_index":6,"weight":3.37,"is_urban":false,"turn_weight":0.5,"duration":2.807,"bearings":[156,301,336],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":5.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.9,"geometry_index":2410,"location":[4.618201,50.696511]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":2.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.1,"geometry_index":2412,"location":[4.619172,50.695042]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":2.333,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.333,"geometry_index":2413,"location":[4.619507,50.694513]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.619878,50.693926],"geometry_index":2414,"admin_index":6,"weight":4.219,"is_urban":false,"turn_weight":0.75,"duration":3.477,"bearings":[159,308,338],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,339],"duration":3.437,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.437,"geometry_index":2415,"location":[4.620415,50.693032]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.620923,50.692145],"geometry_index":2416,"admin_index":6,"weight":9,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.02,"bearings":[161,189,340],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,341],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.604,"geometry_index":2417,"location":[4.622178,50.689802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,342],"duration":24.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":24.414,"geometry_index":2418,"location":[4.622395,50.689381]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":7.331,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.331,"geometry_index":2421,"location":[4.625537,50.682978]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.626469,50.681058],"geometry_index":2422,"admin_index":6,"weight":25.103,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.123,"bearings":[162,184,343],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.630176,50.674519],"geometry_index":2429,"admin_index":6,"weight":8.943,"is_urban":false,"turn_weight":0.5,"duration":8.45,"bearings":[156,313,337],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,333],"duration":31.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":30.792,"geometry_index":2432,"location":[4.631749,50.672428]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,312],"duration":6.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.382,"geometry_index":2443,"location":[4.640037,50.665599]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.642225,50.664461],"geometry_index":2445,"admin_index":6,"weight":27.452,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.92,"bearings":[126,153,308],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.653294,50.660656],"geometry_index":2454,"admin_index":6,"weight":7.188,"is_urban":false,"turn_weight":0.5,"duration":7.046,"bearings":[111,275,292],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,290],"duration":73.222,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":67.729,"geometry_index":2456,"location":[4.656194,50.659965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":7.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.653,"geometry_index":2463,"location":[4.68692,50.653704]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.690016,50.653073],"geometry_index":2464,"admin_index":6,"weight":13.394,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.901,"bearings":[108,288],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":3.973,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.559,"geometry_index":2465,"location":[4.696271,50.651812]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":0.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.405,"geometry_index":2466,"location":[4.697926,50.651477]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,288],"duration":65.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":58.554,"geometry_index":2467,"location":[4.698112,50.651439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[119,298],"duration":3.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.89,"geometry_index":2481,"location":[4.724637,50.645059]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.725865,50.644625],"geometry_index":2482,"admin_index":6,"weight":7.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.172,"bearings":[120,299],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":1.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.302,"geometry_index":2484,"location":[4.728963,50.643465]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,302],"duration":8.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.239,"geometry_index":2485,"location":[4.729504,50.64325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[125,304],"duration":7.747,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.159,"geometry_index":2487,"location":[4.732441,50.642021]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,307],"duration":78.87,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":70.983,"geometry_index":2489,"location":[4.735396,50.640662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,321],"duration":4.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.104,"geometry_index":2503,"location":[4.760804,50.623485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.762168,50.622428],"geometry_index":2504,"admin_index":6,"weight":11.209,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.461,"bearings":[141,163,321],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.7656,50.619747],"geometry_index":2505,"admin_index":6,"weight":11.649,"is_urban":false,"turn_weight":0.5,"duration":12.396,"bearings":[141,304,321],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,321],"duration":68.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":61.211,"geometry_index":2506,"location":[4.768734,50.617296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,321],"duration":5.683,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.114,"geometry_index":2510,"location":[4.785917,50.603853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,321],"duration":5.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.765,"geometry_index":2511,"location":[4.787353,50.602732]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.788687,50.601685],"geometry_index":2512,"admin_index":6,"weight":12.076,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.425,"bearings":[141,321],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":13.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.16,"geometry_index":2515,"location":[4.791209,50.599666]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,322],"duration":9.704,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.727,"geometry_index":2517,"location":[4.793714,50.597613]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,324],"duration":195.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":175.608,"geometry_index":2518,"location":[4.795409,50.596151]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,321],"duration":8.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.215,"geometry_index":2536,"location":[4.827963,50.566088]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.829478,50.564938],"geometry_index":2537,"admin_index":6,"weight":31.675,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":35.214,"bearings":[139,320],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,317],"duration":16.823,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.556,"geometry_index":2541,"location":[4.836485,50.559971]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,316],"duration":5.868,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.429,"geometry_index":2542,"location":[4.83983,50.55777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,315],"duration":8.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.12,"geometry_index":2543,"location":[4.841013,50.557011]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.842808,50.555884],"geometry_index":2544,"admin_index":6,"weight":18.553,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.633,"bearings":[134,315],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":2.621,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.353,"geometry_index":2545,"location":[4.847067,50.553286]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":9.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.478,"geometry_index":2546,"location":[4.847612,50.552955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":20.466,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.419,"geometry_index":2547,"location":[4.849566,50.551769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,313],"duration":6.361,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.726,"geometry_index":2549,"location":[4.853816,50.549199]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":123.337,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":114.087,"geometry_index":2550,"location":[4.855137,50.5484]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,339],"duration":5.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.294,"geometry_index":2574,"location":[4.877236,50.531173]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.877772,50.530216],"geometry_index":2576,"admin_index":6,"weight":22.273,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.454,"bearings":[163,169,341],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":35.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":33.586,"geometry_index":2581,"location":[4.879532,50.525794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,351],"duration":2.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.28,"geometry_index":2585,"location":[4.881368,50.519009]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,350],"duration":1.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.546,"geometry_index":2586,"location":[4.881482,50.518587]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,351],"duration":1.595,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.515,"geometry_index":2587,"location":[4.881556,50.518296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,350],"duration":5.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.152,"geometry_index":2588,"location":[4.88163,50.518023]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.88189,50.517026],"geometry_index":2589,"admin_index":6,"weight":4.727,"is_urban":false,"turn_weight":1,"duration":3.942,"bearings":[171,346,351],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.882083,50.516276],"geometry_index":2590,"admin_index":6,"weight":8.581,"is_urban":false,"turn_weight":1,"duration":7.999,"bearings":[170,346,351],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":52.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":50.16,"geometry_index":2592,"location":[4.882701,50.513923]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,332],"duration":2.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.765,"geometry_index":2612,"location":[4.889726,50.498857]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.890387,50.498092],"geometry_index":2613,"admin_index":6,"weight":33.038,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":34.784,"bearings":[150,170,331],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.898143,50.490331],"geometry_index":2619,"admin_index":6,"weight":7.469,"is_urban":false,"turn_weight":0.5,"duration":7.354,"bearings":[147,315,327],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,327],"duration":21.362,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.828,"geometry_index":2620,"location":[4.899784,50.488696]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,335],"duration":8.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.112,"geometry_index":2625,"location":[4.904005,50.483727]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":5.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.033,"geometry_index":2626,"location":[4.905394,50.48171]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.906249,50.480461],"geometry_index":2628,"admin_index":6,"weight":28.73,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.475,"bearings":[157,179,337],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.911241,50.473186],"geometry_index":2631,"admin_index":6,"weight":8.202,"is_urban":false,"turn_weight":0.5,"duration":7.907,"bearings":[156,320,336],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,336],"duration":12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.7,"geometry_index":2632,"location":[4.912592,50.471239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":19.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":19.271,"geometry_index":2634,"location":[4.91463,50.468277]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,337],"duration":3.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.376,"geometry_index":2635,"location":[4.917888,50.463477]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,160,338],"duration":3.824,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.613,"geometry_index":2636,"location":[4.918435,50.462635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,336],"duration":3.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.549,"geometry_index":2637,"location":[4.919081,50.461712]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,340],"duration":2.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.08,"geometry_index":2638,"location":[4.919613,50.460784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,338],"duration":29.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.89,"geometry_index":2639,"location":[4.920005,50.460179]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.925685,50.452261],"geometry_index":2647,"admin_index":6,"weight":8.037,"is_urban":false,"turn_weight":1,"duration":7.627,"bearings":[153,311,334],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,333],"duration":25.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":23.342,"geometry_index":2648,"location":[4.927133,50.450472]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,331],"duration":7.981,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.183,"geometry_index":2652,"location":[4.932167,50.444615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":2.208,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.986,"geometry_index":2655,"location":[4.933746,50.44276]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,333],"duration":5.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.258,"geometry_index":2656,"location":[4.934165,50.442241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,335],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.25,"geometry_index":2658,"location":[4.935201,50.440846]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":20.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.24,"geometry_index":2660,"location":[4.935603,50.440226]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,346],"duration":26.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":24.451,"geometry_index":2667,"location":[4.938272,50.435039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":4.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.502,"geometry_index":2672,"location":[4.940565,50.42807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.940973,50.426783],"geometry_index":2673,"admin_index":6,"weight":84.853,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":91.739,"bearings":[169,349],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,315],"duration":15.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.04,"geometry_index":2699,"location":[4.963658,50.40867]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,324],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.64,"geometry_index":2703,"location":[4.967448,50.405668]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,329],"duration":22.53,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.277,"geometry_index":2706,"location":[4.969836,50.403235]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.974708,50.397245],"geometry_index":2711,"admin_index":6,"weight":20.735,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.424,"bearings":[155,168,334],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.978348,50.392345],"geometry_index":2714,"admin_index":6,"weight":12.059,"is_urban":false,"turn_weight":0.75,"duration":12.231,"bearings":[155,321,335],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,335],"duration":9.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.637,"geometry_index":2716,"location":[4.980327,50.389698]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,337],"duration":10.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.678,"geometry_index":2718,"location":[4.981821,50.387677]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,334],"duration":0.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.476,"geometry_index":2721,"location":[4.983522,50.38542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,335],"duration":36.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":33.548,"geometry_index":2722,"location":[4.983611,50.3853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,331],"duration":9.68,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.947,"geometry_index":2729,"location":[4.990015,50.377834]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,330],"duration":165.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":148.614,"geometry_index":2731,"location":[4.991873,50.375763]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":14.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.895,"geometry_index":2759,"location":[5.01418,50.337717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.015702,50.334314],"geometry_index":2760,"admin_index":6,"weight":32.52,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":36.152,"bearings":[164,344],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,347],"duration":10.544,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.482,"geometry_index":2766,"location":[5.019781,50.324934]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":9.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.799,"geometry_index":2770,"location":[5.020532,50.322107]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":10.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.898,"geometry_index":2773,"location":[5.020913,50.319463]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,182],"duration":24.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":22.32,"geometry_index":2776,"location":[5.020975,50.316473]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":8.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.26,"geometry_index":2785,"location":[5.01971,50.30985]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":5.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.89,"geometry_index":2787,"location":[5.018943,50.307729]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.018436,50.306297],"geometry_index":2788,"admin_index":6,"weight":14.22,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.807,"bearings":[13,193],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":10.7,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.345,"geometry_index":2790,"location":[5.016935,50.302147]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":94.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":82.504,"geometry_index":2794,"location":[5.016017,50.299004]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,327],"duration":10.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.234,"geometry_index":2827,"location":[5.030021,50.273035]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.032604,50.270445],"geometry_index":2828,"admin_index":6,"weight":9.627,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.427,"bearings":[147,163,327],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.035011,50.268035],"geometry_index":2829,"admin_index":6,"weight":2.91,"is_urban":false,"turn_weight":0.75,"duration":2.343,"bearings":[148,311,327],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":0.519,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.48,"geometry_index":2830,"location":[5.035554,50.26749]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,328],"duration":0.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.3,"geometry_index":2831,"location":[5.035673,50.26737]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,326],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.604,"geometry_index":2832,"location":[5.035754,50.267293]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.036152,50.266891],"geometry_index":2833,"admin_index":6,"weight":9.476,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.251,"bearings":[148,166,328],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.038512,50.264522],"geometry_index":2836,"admin_index":6,"weight":6.653,"is_urban":false,"turn_weight":0.75,"duration":6.39,"bearings":[147,308,325],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,327],"duration":0.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.424,"geometry_index":2837,"location":[5.039987,50.263047]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,333],"duration":6.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.146,"geometry_index":2838,"location":[5.040078,50.262932]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.041604,50.261392],"geometry_index":2840,"admin_index":6,"weight":19.405,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.999,"bearings":[146,328],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,329],"duration":7.889,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.29,"geometry_index":2846,"location":[5.046461,50.256542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,338],"duration":109.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":98.104,"geometry_index":2850,"location":[5.047937,50.25458]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":11.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.302,"geometry_index":2885,"location":[5.057358,50.225523]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.059706,50.222624],"geometry_index":2887,"admin_index":6,"weight":23.287,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.634,"bearings":[153,333],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,345],"duration":11.358,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.933,"geometry_index":2898,"location":[5.064419,50.215849]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,354],"duration":8.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.775,"geometry_index":2906,"location":[5.065265,50.212755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,358],"duration":22.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":19.751,"geometry_index":2909,"location":[5.065412,50.210292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":89.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":78.015,"geometry_index":2910,"location":[5.065592,50.204044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":8.22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.398,"geometry_index":2922,"location":[5.068332,50.177429]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.068741,50.174982],"geometry_index":2923,"admin_index":6,"weight":23.394,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.012,"bearings":[172,177,354],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.070104,50.167971],"geometry_index":2927,"admin_index":6,"weight":10.547,"is_urban":false,"turn_weight":0.5,"duration":11.17,"bearings":[173,338,353],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":22.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.184,"geometry_index":2929,"location":[5.070677,50.164956]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":11.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.285,"geometry_index":2935,"location":[5.07212,50.158926]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,348],"duration":4.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.481,"geometry_index":2938,"location":[5.0731,50.155879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":25.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.922,"geometry_index":2939,"location":[5.073566,50.154582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":6.595,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.935,"geometry_index":2945,"location":[5.076427,50.148031]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.077286,50.146359],"geometry_index":2946,"admin_index":6,"weight":8.993,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.014,"bearings":[160,177,342],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,340],"duration":1.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.483,"geometry_index":2948,"location":[5.078696,50.143851]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":9.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.63,"geometry_index":2949,"location":[5.078947,50.143438]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.08042,50.141062],"geometry_index":2952,"admin_index":6,"weight":6.913,"is_urban":false,"turn_weight":1,"duration":6.577,"bearings":[157,314,338],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,337],"duration":74.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":67.365,"geometry_index":2954,"location":[5.081633,50.139251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":5.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.319,"geometry_index":2972,"location":[5.099536,50.120072]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.101234,50.118682],"geometry_index":2973,"admin_index":6,"weight":3.48,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.874,"bearings":[142,322],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,322],"duration":44.366,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":39.93,"geometry_index":2974,"location":[5.102235,50.117857]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":6.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.91,"geometry_index":2981,"location":[5.113734,50.108443]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,323],"duration":12.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.16,"geometry_index":2983,"location":[5.115422,50.107044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":1.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.999,"geometry_index":2986,"location":[5.11867,50.104431]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":22.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.07,"geometry_index":2987,"location":[5.118953,50.104198]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,322],"duration":6.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.97,"geometry_index":2990,"location":[5.124749,50.099472]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,318],"duration":7.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.69,"geometry_index":2991,"location":[5.126592,50.098136]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,310],"duration":8.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.171,"geometry_index":2994,"location":[5.128904,50.096786]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.131944,50.095426],"geometry_index":2998,"admin_index":6,"weight":20.136,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.791,"bearings":[120,135,302],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.140377,50.093373],"geometry_index":3006,"admin_index":6,"weight":6.883,"is_urban":false,"turn_weight":0.5,"duration":6.921,"bearings":[102,267,283],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,282],"duration":56.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":50.76,"geometry_index":3007,"location":[5.143219,50.093002]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,322],"duration":4.624,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.161,"geometry_index":3023,"location":[5.163863,50.086708]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,323],"duration":15.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.31,"geometry_index":3024,"location":[5.165052,50.085707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,323],"duration":1.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.467,"geometry_index":3027,"location":[5.169112,50.082305]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,322],"duration":0.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.594,"geometry_index":3028,"location":[5.169526,50.081961]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,323],"duration":61.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":53.97,"geometry_index":3029,"location":[5.16971,50.081802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,315],"duration":6.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.037,"geometry_index":3044,"location":[5.188475,50.067817]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,313],"duration":10.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.345,"geometry_index":3046,"location":[5.190793,50.066384]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,313],"duration":32.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":28.298,"geometry_index":3049,"location":[5.194485,50.064243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,324],"duration":9.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.715,"geometry_index":3060,"location":[5.2052,50.057484]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.207658,50.05496],"geometry_index":3064,"admin_index":6,"weight":51.829,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":59.242,"bearings":[153,330],"out":0,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,185],"duration":7.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.358,"geometry_index":3084,"location":[5.211863,50.039493]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.211619,50.037539],"geometry_index":3085,"admin_index":6,"weight":15.838,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.121,"bearings":[5,184,201],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.211023,50.032678],"geometry_index":3087,"admin_index":6,"weight":7.508,"is_urban":false,"turn_weight":1,"duration":7.458,"bearings":[5,184,349],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,185],"duration":75.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":65.793,"geometry_index":3088,"location":[5.210786,50.030713]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":6.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.96,"geometry_index":3109,"location":[5.215605,50.011366]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.216655,50.009747],"geometry_index":3110,"admin_index":6,"weight":27.195,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":30.225,"bearings":[157,173,337],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.221457,50.003369],"geometry_index":3116,"admin_index":6,"weight":13.986,"is_urban":false,"turn_weight":0.5,"duration":15.004,"bearings":[153,315,333],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":54.585,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":49.127,"geometry_index":3118,"location":[5.223585,50.000704]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":2.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.201,"geometry_index":3125,"location":[5.231326,49.991012]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":72.784,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":65.506,"geometry_index":3126,"location":[5.231661,49.990589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,354],"duration":2.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.928,"geometry_index":3145,"location":[5.238776,49.977292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,355],"duration":102.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":92.556,"geometry_index":3146,"location":[5.238827,49.9769]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":1.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.251,"geometry_index":3173,"location":[5.236469,49.946165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":156.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":141.084,"geometry_index":3174,"location":[5.236382,49.945819]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,312],"duration":0.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.748,"geometry_index":3213,"location":[5.250265,49.91776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,310],"duration":151.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":136.674,"geometry_index":3214,"location":[5.250517,49.917622]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,303],"duration":7.89,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.101,"geometry_index":3266,"location":[5.317126,49.905898]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.320117,49.904524],"geometry_index":3269,"admin_index":6,"weight":10.68,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.889,"bearings":[126,142,308],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,307],"duration":11.556,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.4,"geometry_index":3272,"location":[5.323082,49.903079]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.325964,49.901662],"geometry_index":3273,"admin_index":6,"weight":14.52,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.141,"bearings":[127,146,307],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.329991,49.899692],"geometry_index":3274,"admin_index":6,"weight":11.253,"is_urban":false,"turn_weight":0.75,"duration":11.678,"bearings":[127,287,307],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,307],"duration":0.989,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.89,"geometry_index":3275,"location":[5.33326,49.898083]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,306],"duration":1.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.101,"geometry_index":3276,"location":[5.333547,49.897949]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,308],"duration":49.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":43.29,"geometry_index":3277,"location":[5.333934,49.897751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,295],"duration":6.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.4,"geometry_index":3287,"location":[5.35104,49.890976]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.353335,49.890319],"geometry_index":3288,"admin_index":6,"weight":22.021,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.186,"bearings":[112,294],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,287],"duration":9.675,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.69,"geometry_index":3295,"location":[5.363171,49.888084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":52.149,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":46.935,"geometry_index":3298,"location":[5.367049,49.887439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":6.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.086,"geometry_index":3310,"location":[5.388476,49.885747]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.391271,49.885604],"geometry_index":3311,"admin_index":6,"weight":15.292,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.01,"bearings":[94,99,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":2.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.43,"geometry_index":3313,"location":[5.398296,49.885251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":11.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.53,"geometry_index":3314,"location":[5.399424,49.885194]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.40431,49.884952],"geometry_index":3316,"admin_index":6,"weight":10.22,"is_urban":false,"turn_weight":0.5,"duration":10.819,"bearings":[94,262,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":5.917,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.325,"geometry_index":3318,"location":[5.408521,49.884745]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,274],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.956,"geometry_index":3319,"location":[5.410832,49.884635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":131.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":118.638,"geometry_index":3320,"location":[5.411722,49.884587]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":9.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.575,"geometry_index":3338,"location":[5.471492,49.876246]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.475675,49.875567],"geometry_index":3339,"admin_index":6,"weight":9.865,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.672,"bearings":[104,120,284],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.479963,49.874889],"geometry_index":3341,"admin_index":6,"weight":11.433,"is_urban":false,"turn_weight":0.5,"duration":11.826,"bearings":[104,267,284],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,286],"duration":1.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.759,"geometry_index":3344,"location":[5.484646,49.874085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,287],"duration":2.624,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.428,"geometry_index":3345,"location":[5.485388,49.873935]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,287],"duration":3.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.786,"geometry_index":3346,"location":[5.486424,49.873726]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[111,290],"duration":2.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.401,"geometry_index":3348,"location":[5.487568,49.873469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[112,291],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3349,"location":[5.488541,49.873224]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Luxemburg"},{"type":"text","text":"/"},{"type":"text","text":"Arlon"}],"type":"fork","modifier":"left","text":"Luxemburg / Arlon"},"distanceAlongGeometry":138571.281},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Luxemburg"},{"type":"text","text":"/"},{"type":"text","text":"Arlon"}],"type":"fork","modifier":"left","text":"Luxemburg / Arlon"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E411/E 411.","modifier":"slight left","bearing_after":189,"bearing_before":201,"location":[4.465844,50.802625]},"speedLimitSign":"vienna","name":"","weight_typical":4498.257,"duration_typical":4889.43,"duration":4890.631,"distance":138571.281,"driving_side":"right","weight":4499.339,"mode":"driving","ref":"E411; E 411","geometry":"a{v{_BgjqoGrMvB|RlFvCzAtVdMvM|HrEjChJlBhHQrFmC|CcC~BcGzCcJpDeL~IeYl_@ekAxj@{gBfIqXhPyt@tk@qiBvXm}@fUur@~Mc^hRuc@jIaQl]ip@de@_w@~`@_p@jDwFpJ{O`PuYjHaOr@uArDmHhVmj@dTkk@bb@kmApUkq@hc@apAp]ybAhRih@bi@{tArZas@tq@muAtXmg@dc@st@x`@_n@pf@yq@te@{l@~k@cq@fi@ei@hf@}c@bj@ie@pk@kc@xl@ca@nn@c_@bk@mYx`@oQrj@{ThxBmw@~}FivBjeBsn@xeBqn@vVsJdy@{\\`Y_NlUuLf[wPt]iSzg@e]jl@cc@nr@el@xh@_g@hm@ko@hi@an@xc@uk@nd@qp@vc@uq@j_@}n@~{@ycBb^yu@d`@y~@`\\o|@zUsp@bd@sxAd`@wwAj{@wnDjm@}gC~Pkv@hLgf@nZepAnUwaAf`@}yAde@a_BxUcs@bVqo@hOq`@xMk[~]mz@vg@udAf`@{s@xc@qv@xb@eq@jf@kq@hu@i`AnfBmsBjrBy`CNQvjBixB`oAyxAlmAqvAppAyzA~IgKjcAakAhbAgjAJMts@}y@hS{U|hCqxC~rAg~Ada@kh@xd@wm@|q@}aAdn@scArBsDpj@ecAv_@iu@n_@sy@v^gz@b]k{@jb@{jAdZe}@|k@qmBr~AqnFjp@y|Bxi@okBtjA__EpoA_mEzz@ovC|b@qzAxLkb@rDgMffBeeGht@qfCvp@wzBv^cjAnj@a~Al_@i`Axs@adBnZcq@vv@_dB|Oc\\jKeThe@}|@pa@wr@~d@us@b[ib@jRcVtNqPfV_Yx[}\\r_@u^~e@yc@hyAynAtzAwkAb~@aq@pDmCtq@uf@zr@ae@|q@kc@bj@}]|t@gc@zd@mW``@}Stc@eVzv@q`@lv@w^lqCmmAhYqLjo@_Xf_DymAp~Dq{A~vBgy@xqAwh@jn@yWvzAgp@hk@qXbo@g\\~d@yVhw@gd@t`@yVrq@kd@jm@cd@`h@ea@zh@ud@po@wn@nh@kj@vh@sn@vg@yp@fh@{t@hd@gt@nc@{v@v\\yn@nYwm@xa@m~@hc@ihAnd@{pAjYk~@d[sfAlXmeApVicAzUufAtTagAzSygAh^svB~TswAdTs{A`d@ihDzgAucJbm@qcFl]uuC~x@}~GjaA}eIloAgoKlf@o`ExmA}eK|SmfBjAsJ`Kq{@hYe}B~CoYr]_xCt^q{Cn^uyCvIcr@~S{bB|`@ytCzc@mtCvf@urCtj@qsCnm@{rC`\\}tAbZwkAph@iqB|]inAlLy`@|b@mwAzg@c~Ahl@ycBrf@{rA~n@w`Bt}@wwB`bAcxBjcAmsBpeAwoBVg@zaAydB`sAwyB|iAugBhjAkdBnjAsbB|`B_~BlyCcfE`~Bq`D`aAgtApfDouEdxC{bE~n@i|@xoHodKbzHqqKfkDq{E`eAwxAl`AkrAzrAohBld@em@zC}D|hAgyAju@iaAjzA}hBh{AshBroAsxAtpAkwAzrA{vAxB}BnoAkrAdsAcsAj_Cg}Bx_Cu{Bz`Cw}Bp~Bk}Bn|B{_CvzBicC`wBwcCzwB}hClbBkvBruB{pC`tCo}DzfAu}AhxBseD|f@}v@biAwhB`jAslBphCapEln@}hAleAeoBjaDeiGtSaa@biAcyBzpBuzDvm@}lA|p@qqAbkA}|BnhB{lDdeAksBf~@ggBn_AehBr_@gs@h_@qq@`a@cs@dc@kt@`b@qo@tb@wo@|b@ul@lc@ck@nb@eh@vf@oi@lc@id@nf@ee@|h@sd@ze@_`@ng@a_@vk@y_@vZcRpa@uUff@sVxn@cZ~JkEx}Awk@rt@cUlb@}Kny@}R~`@gInl@_MngAiSdoAgTz`Fez@jYcFdQsC`PsCh}@gOzm@aKxOoCfaCca@`tAiSz_A{Nv_AkPnnAuVhi@_Mng@aM`x@sTxfAu^~_@oNt`@mOne@kSvc@gSdf@mVla@kTfb@gV~`@eVhb@gXvb@iYhj@sa@pc@m]xn@ih@jk@kg@|wAkuA~wAkxAvaBqcBltBswBpm@mn@deBqeBd~@q}@xZwWjnA}bAt`A}s@niAsv@`}ByuAl[qRrp@{`@vmCa`Bn{EkvClzAq~@txBmsApdD}pBpRmL~jHsjErs@ea@tx@kg@~x@g`@xd@oWfl@o`@xsAyx@vgAcq@j@]xJcGjfA{p@pt@se@|xC_sBxnBoyAvfAq{@pbBktAf`B_sAn`BusAvo@gi@`p@{h@bQqMl_@eY`r@me@bc@iYbMiHrWyNpZyPns@y^bt@s\\fq@eYtt@kXft@qUx`@mLvTsGnlBge@plBmb@jfBe_@jzAy[loAoXfdAaUpr@yOtr@kQfu@mThq@iUps@kXvq@q[lq@m`@hr@}f@hk@yf@~o@qq@xl@uu@|h@yx@pe@e{@fd@waA`a@}dAr]yfAl[}fApu@wvCh[ajAvYqaAba@mkAnf@smAja@y}@ba@uy@do@akArj@m}@lm@{{@no@sy@`p@}u@po@eq@nk@{i@~y@ew@li@}e@`xAujA^YjtAacAn{C_xBh}AidAf]kUttDyfCx{@ml@rgBgmAjjBqoA|QyKzj@}_@t{@{l@nc@oZnFqDnnAu~@fbAkw@bkA{_Azz@ws@xoB{bB`e@q`@~_@c\\vgAa`Atw@ar@pz@os@rw@sq@fv@cp@vw@kq@dx@wq@~v@{o@||@_s@xy@in@b}@co@jx@oj@h_Akl@r|@gj@x{@kg@f~@yf@f~@{e@xz@ua@``Aac@~}@y`@lgAkc@r_Aq]haCqy@xaCaz@nbCmz@|eCu{@hcBkl@xdC{z@zoEc}AnzDusAtsEc~Ab`EavAnfCa|@bkAaa@nn@{SnbAc[naAwVzo@cN~b@aIbk@cJtn@sI|g@}FzcAmIlv@mDj{@eCtcAe@xx@n@ff@fA`d@fAnh@hDtd@`Dhg@|Efg@zFhkA~Pf~@rQhe@vK~h@lMpyAn`@nxAt^z_EtdAnaAbWlfA|V~q@zNde@nHxb@`Gn@Jdf@nFff@|Dne@rCzg@dB`d@x@xi@Ffo@q@zm@oBnl@wDfo@eGdm@oHnk@iJdo@oMzk@aNlCo@dn@wQ`l@wRrk@{T|l@uWtj@uXvp@q^jl@u^vi@a_@bi@}`@`i@kc@nh@md@|hA}fAvhAshAvfAyfAbhAahAn`Be`Bt}Bs}Bz`Dm`DruCmuC`a@}`@nFmFxCaDbX{WjeA_eAbt@ar@pWmYd{Ae{AdFuD~d@od@fy@{x@faAucAr}@k}@tcAadAva@cb@re@ae@d_@g]vU}Rb\\qVlf@s[h^cS`UmLp[mNpf@wQn_@uLrb@uKpa@mIpe@qHdr@yGhf@_Cnf@eA|lA[diCW`{ASh|Ak@fk@?ty@Cxq@Wbq@w@`h@cBfg@qDxo@yGxm@mJ`g@yJn_@uJp^qKjf@gPj_@wO|`@sQn]yPxj@w[hfAqt@xzBmbBrv@al@la@yZ~eBorA``Aus@bsBa}AxeAex@tcAaw@`f@q]bh@i_@l^aVj\\}Rf]qQvYmNhZqMzYgLv^sLlQmFfRmFx]aItVcFdV}DbWqDzXyC~ZoCb[}Ah_@iAn|A}BneKgJ~bC_C~rCkCnuFgFfsAsAj`CgCndA}CvkAcFrrAkIjmAyLnp@oEl{MsxAbxAkO|wCqXhlBiWjdAuKfgBeRfzC_\\z{BoWp~@iJzm@gHzy@yJhaBuUjz@sMz{@aOps@wNpx@gPp{@eRhgAyW`pAc\\x_AcWl}@mYf}@sX`_B_j@p_Au]hz@}[ngBut@~yAmq@v`Aud@xXuNpa@uSn|@ie@ls@a`@`i@qZbfAgo@fp@ca@|{@uj@p{@sk@`|@ym@~vBk~AfvBucBxxA_oAlrA_lArz@_x@|}@{|@ffAigAza@uc@fh@ij@hdAqjAz|@mdAjAsAhhAisAplAo|AzuAciBpr@q}@fNmP|nAu`Bd{A_pBr{AcpBz{A}pBf|AopBfyB_uCl}@yjA~Wu\\jx@aeAbd@{n@xcAatApMuPdqBqjCbrBclC`aAqpAnrAerBt`@ut@`]yr@rS_f@~LoZp\\s}@hSin@bTqs@tJc_@vWkgAfTofAjRahAnPqjAtMilA`K}jA~Eep@dVspDnQ{nCdRwuCh\\{aFxImjAfK{gAfNogAzQgeApUmdAbYqbAj[w}@j[_u@n^is@r_@mn@ba@qk@xb@{j@t\\wb@p}@iiAplAe|AtcAopAjaAanAnT{X|HoJpFwFvkAwyAziAc{AbfA}zA~aAmxA`eAg|AzbAgzAjcAmyAvdAc|A~bA}zAbbAq|Ar`@ao@h`@oo@v_@ep@z`AodB|k@qfArk@ihAf{@wdBvz@uhBxLiVhl@grAnx@ojBxv@seBf[kq@d]ms@`h@a~@bZef@fa@sm@xa@cl@|\\kc@de@cj@pi@gl@hn@an@z]yZ~c@o`@rm@qd@|h@y^dg@_Zxg@aYfh@aWfq@uYpo@wUtp@eSvo@mPjp@sMvp@sKxr@aIbp@aF|s@oCrr@{@ve@VzY\\f`@`Afq@|CzgBxKbyBfN~xErYxtArIxyBxMviC`Pnp@jDbr@xCjs@`Bjq@Zhq@q@`r@sBjq@_Eds@eGfn@wHjo@oJrr@gNpo@sOjp@eRlq@oTnm@_Uhp@}Xjm@yYjn@m\\j|Ayz@psAev@ddBs`AnsAkv@rg@i[h{@am@~z@co@joAa_AxgAey@rdAov@|_BolAxp@sf@xzAshA`yAufA~xA{fA`xAafAvzAghAffBuqAlY}Szp@gg@jj@ga@zq@yf@zj@s`@re@o[hm@g`@jl@w]xk@}[ln@a[lm@qXvq@iWjo@_Tvn@qQfr@sPxn@aM|p@wJvp@_InD[|UoBnWeBpm@aD`u@_Bfq@]tq@Fxp@r@nfBtDdcBrFrdBrFh_BjF~dBnF`gB`GnbB|EjgAzDlcBlFhcBlFlc@vAf_AxC`bBnFtfBtFdo@zBv@Bvq@pCzq@lDzr@|Ebp@~Gvp@`InrAdSrTlDvvApUpo@dKfo@jIrp@lHfo@fE`p@dDho@nApp@Pdp@y@bo@kB|o@wDvq@qFtp@_Ipq@uKbq@qNhq@oOlp@gRzo@_Uhp@oVnk@uVtl@kYhk@i[lm@{]~i@u^nj@wa@nf@y_@zn@si@rb@ca@xg@}g@`g@ui@`f@gk@~d@}l@pd@on@|b@yn@be@ot@v`@kr@`_@aq@vUod@l]}r@rGwNvi@knAp\\yy@n]q~@fYyz@lXg{@tXo_AbWm_AzU{_AbUacAtR{_AbRy`ArQidApPehArNobAtMggArLwfAvJahAxIwgArHkhApGugAvEihAxDqkAdCshAnBwhAt@qfAnAaqCfAqtCdAeuCfA{aDfA}sCpAs{Ct@mmAz@_mAfB{mAfCclAfDelAlEaiAbGqiArH_iApJ_mArKwlAxLegAhNygAhPuiArQqhAxRseAzS{dArT{bArVwbAzXqdArY}`ArR{m@`Ugq@bp@_jBtMu\\lO{a@pf@}oAha@odApwAcsDbzBuzFpcBikEjG}PjKeWxbA_jCdw@gxBdu@yzBfs@m~Bzr@oeCzXweAjWqdArVkeA~]i}Afc@cuB`h@mnCj[ejBjS_pA`Jgn@`[yxBtNqiAlQoyAtPm{AjIkz@jKadApP}pBxL__BhIynAjHekArGclA|FolAlEoiAlFauArDclAvEciBvJqgFjKw{FhDmfB|GumDjFwyCtMi{GpBoeA`IypE`Dq~ApG_lDjCeyAzEmoC~Asv@vKuwFjFeqCdC}iAvCyhAvDeiA~EglAhG{gAbI}lA~IikApJmjAzl@k~GxAuPtA_Pte@ipF`PmhBj@sGpqBakUlvEo_i@li@mdGfMmyAb[qpD`Ty}BpOo_BrKkdAjHkm@`Lw_A~Ey_@`Hue@hNy{@vHid@|Oqz@rRe`AdQyt@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 23 miles.","announcement":"Continue for 23 miles.","distanceAlongGeometry":37520.395},{"ssmlAnnouncement":"In 2 miles, Take exit 32.","announcement":"In 2 miles, Take exit 32.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 32.","announcement":"In a half mile, Take exit 32.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 32 toward Longwy, Aubange.","announcement":"Take exit 32 toward Longwy, Aubange.","distanceAlongGeometry":213.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.491995,49.872192],"geometry_index":3353,"admin_index":6,"weight":50.358,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":54.449,"bearings":[119,137,298],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,334],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.449,"geometry_index":3375,"location":[5.507104,49.861926]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,335],"duration":45.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":41.131,"geometry_index":3376,"location":[5.507383,49.861541]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.510531,49.849499],"geometry_index":3391,"admin_index":6,"weight":5.455,"is_urban":false,"turn_weight":1,"duration":4.957,"bearings":[0,180,335],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.455,"geometry_index":3392,"location":[5.510535,49.84802]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":1.47,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.322,"geometry_index":3393,"location":[5.510548,49.846866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":24.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.852,"geometry_index":3394,"location":[5.510554,49.846426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":46.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":41.889,"geometry_index":3399,"location":[5.510878,49.840981]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.514,"geometry_index":3405,"location":[5.512221,49.832895]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":14.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.637,"geometry_index":3406,"location":[5.51225,49.832726]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.027,"geometry_index":3407,"location":[5.51267,49.830285]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.512672,49.830272],"geometry_index":3408,"admin_index":6,"weight":16.316,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.137,"bearings":[173,184,354],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":0.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.525,"geometry_index":3411,"location":[5.513584,49.825281]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.51361,49.825117],"geometry_index":3412,"admin_index":6,"weight":10.369,"is_urban":false,"turn_weight":1,"duration":10.418,"bearings":[173,346,354],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":2.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.072,"geometry_index":3413,"location":[5.51416,49.822253]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":27.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":24.957,"geometry_index":3414,"location":[5.514274,49.821623]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":8.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.502,"geometry_index":3419,"location":[5.515682,49.813996]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.516222,49.811712],"geometry_index":3422,"admin_index":6,"weight":24.314,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.037,"bearings":[169,189,350],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.519163,49.80448],"geometry_index":3432,"admin_index":6,"weight":10.16,"is_urban":false,"turn_weight":0.5,"duration":10.754,"bearings":[161,321,340],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,340],"duration":209.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":182.9,"geometry_index":3435,"location":[5.520728,49.801716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":11.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.994,"geometry_index":3480,"location":[5.566216,49.753047]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.568004,49.750131],"geometry_index":3481,"admin_index":6,"weight":17.197,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.661,"bearings":[158,338],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":3.697,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.229,"geometry_index":3483,"location":[5.571106,49.745074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":11.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.439,"geometry_index":3484,"location":[5.571739,49.744044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,338],"duration":3.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.881,"geometry_index":3486,"location":[5.572932,49.742105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,338],"duration":82.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":72.398,"geometry_index":3487,"location":[5.573259,49.741569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,315],"duration":5.366,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.83,"geometry_index":3513,"location":[5.591837,49.720179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,312],"duration":20.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.32,"geometry_index":3514,"location":[5.593488,49.719203]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":5.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.508,"geometry_index":3520,"location":[5.600181,49.715917]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.602252,49.715053],"geometry_index":3521,"admin_index":6,"weight":15.756,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.053,"bearings":[122,139,303],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.608268,49.712621],"geometry_index":3523,"admin_index":6,"weight":7.723,"is_urban":false,"turn_weight":1,"duration":7.286,"bearings":[122,293,302],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":19.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.176,"geometry_index":3524,"location":[5.610823,49.711595]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,303],"duration":2.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.365,"geometry_index":3528,"location":[5.617666,49.708783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":6.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.727,"geometry_index":3529,"location":[5.618563,49.708425]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.620723,49.707547],"geometry_index":3530,"admin_index":6,"weight":20.143,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.399,"bearings":[122,137,302],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.629608,49.70411],"geometry_index":3535,"admin_index":6,"weight":11.635,"is_urban":false,"turn_weight":0.5,"duration":12.392,"bearings":[117,283,299],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,294],"duration":145.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":131.268,"geometry_index":3538,"location":[5.634038,49.702726]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,269],"duration":151.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":136.205,"geometry_index":3567,"location":[5.690414,49.695804]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,306],"duration":2.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.883,"geometry_index":3598,"location":[5.748382,49.686435]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,307],"duration":8.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.027,"geometry_index":3599,"location":[5.748857,49.686206]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.751222,49.684921],"geometry_index":3602,"admin_index":6,"weight":8.668,"is_urban":false,"turn_weight":0.5,"duration":8.838,"bearings":[133,298,311],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,315],"duration":49.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":46.242,"geometry_index":3605,"location":[5.75381,49.683293]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":6.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.314,"geometry_index":3616,"location":[5.768743,49.6743]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.771145,49.67338],"geometry_index":3619,"admin_index":6,"weight":26.824,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.022,"bearings":[117,122,300],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.782528,49.67086],"geometry_index":3632,"admin_index":6,"weight":6.115,"is_urban":false,"turn_weight":0.5,"duration":5.929,"bearings":[103,269,284],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":49.89,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":47.395,"geometry_index":3633,"location":[5.785195,49.670452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,306],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.447,"geometry_index":3653,"location":[5.806881,49.665719]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,308],"duration":41.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":38.646,"geometry_index":3654,"location":[5.807361,49.665477]},{"bearings":[163,343],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3672,"location":[5.816022,49.656419]}],"bannerInstructions":[{"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"32"},{"type":"text","text":"Longwy"},{"type":"text","text":"/"},{"type":"text","text":"Aubange"}],"type":"off ramp","modifier":"right","text":"Exit 32 Longwy / Aubange"},"distanceAlongGeometry":37560.395},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"32"},{"type":"text","text":"Longwy"},{"type":"text","text":"/"},{"type":"text","text":"Aubange"}],"type":"off ramp","modifier":"right","text":"Exit 32 Longwy / Aubange"},"distanceAlongGeometry":3218.688}],"destinations":"Luxemburg, Arlon","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E411/E 411 toward Luxemburg/Arlon.","modifier":"slight left","bearing_after":119,"bearing_before":118,"location":[5.491995,49.872192]},"speedLimitSign":"vienna","name":"","weight_typical":1155.164,"duration_typical":1277.182,"duration":1277.182,"distance":37560.395,"driving_side":"right","weight":1155.159,"mode":"driving","ref":"E411; E 411","geometry":"_s}b~AupenIrTu{@lRwq@bWwy@~[aaAxQsg@jO_`@nWco@z\\ut@l]es@dPsZf\\wl@x\\{j@t_@ik@p_@gi@~^gf@|`@oe@na@gd@xb@wb@bc@}`@vc@}^pc@e]fg@y\\`WmPnc@yW|s@u^pt@}Zzt@gXrt@gTbp@qOrg@cJrd@eHjf@yFvv@_Gl[sBdv@cCjx@cBpsA}@`u@Il{AGbgAYnZKnc@MnsAqAhnAaC|cBeG`f@_DhtA}I|rA{KrqAgM`@EprA_NzgDu]pIy@pwCgYXCznDi`@hrAeNvs@oGfIs@~qDka@jf@cFlAMhmGap@x}AcPd~AkQ|L_Bhk@mHzv@gLpi@aJhd@{I`b@iI|b@sJhi@sMre@mMbkAy]tjAsa@|m@wUxn@yWdO}Gh{@}_@lx@o`@~u@k^fgBw{@baBix@naBwy@ltA{s@djA{p@~lAww@le@c]~c@o]f`Aex@v{@}x@dz@{y@hxAa}Ab~A_fBx}AsgBz|AqeBnzAccBhzAcdBl~@mgAb~@skAfy@uiAly@goA~t@}kAls@elAhdAudBjbAe`Br{@wsArw@skAvp@s~@xu@ibA`_@qc@pk@eo@jb@oc@ha@g`@|c@oa@|b@o]tb@o\\hf@}]fc@gZjb@yX|f@yZlf@kYx|ByoAbmC_vAr{BekAxjCauAfuDwnBt{DwrBj~BcmAj_Aqf@`_@uRbxA{u@n`@mSjT_LbsBkfAh`Gs|C|kAcn@rjAmn@vfAsn@ji@o\\hhAmv@jhAo{@dc@u^dc@y`@ta@e`@fb@ab@db@oc@j`@yb@t]ya@l@s@r`@ye@n`@ch@r^yf@p^ah@r^kj@~]ak@p]wk@z\\ml@h_@qq@~{@efBhb@w}@hYup@|X}p@fYau@dn@ibBjk@qeB~t@m`CvcBayFfr@}|Bb_Au~C|e@q_Bpm@iqBfbAk`D~Umv@jUaw@zu@_fCpmAobEbw@olCDMza@kzA`l@o}Bv`@cfBp^ucBdTahAdNst@hXk}AhWeaB~Tc~ArWorBb\\wsCvZosCzZksCh[urCf[awCb[_uC`[ssC`[stCzZcuCbLciAjK_jAbJ_kApHsiAlGukAvEukAhDamAzBclAjAwnAb@clABklA[{wCy@_kFy@}iF}@q_G?m|BfAgtAlDwrA~EkoAzIwyAnWwhDtp@cqIvp@ypIfXcjDxWseDvWwiD~WkfDzp@wqI~W{gDbXyhDrWifDrSmdC~NmzAvGam@jH{l@`Icm@rI{i@vJ{l@jK_j@|Kii@`N_l@jOkn@nOcj@lPui@tQkj@`Nq_@hMu\\tWap@vUeh@z_@qx@xSsa@xYqj@bu@qrAfu@erAv}@e_BhwAofCz{AimCdn@kgAxo@ejAvh@cfAjf@}fAr]u|@|a@kiAdTmp@vNud@rQmp@bV_~@|XomAlKii@tKkj@pJsi@hJ_l@fI{i@pIam@dGog@rIaw@jHkt@pGor@lN_eBpIgbAnXueDpL_xAtWoaDnO_iBnOamBzOqkBnOslB~Eyl@`Gkq@hGcp@zHos@lHyk@`@cDvKys@fMot@`Nar@jO_r@|Oin@bUmv@hPyh@r_@}cAbN_]`Pu_@bT_d@bZmk@pW{c@nXgb@~Y_c@r[qa@p[o^tXoYd^y]r`@u\\p]cXz]oU`a@yUh`@}Sbk@yWbs@_Y~q@yVzUoIxSiHjz@oYne@{Ppc@eP"},{"ref":"E 411","mode":"driving","weight":15.523,"distance":318.058,"geometry":"asru}Aw}`bJbHjA~`@aKhG}@d^gFp|AkS","duration":16.822,"driving_side":"right","duration_typical":16.822,"weight_typical":15.523,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 32 toward Longwy/Aubange.","modifier":"slight right","bearing_after":190,"bearing_before":163,"location":[5.817324,49.653569]},"speedLimitUnit":"km/h","destinations":"Longwy, Aubange, Weyler","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Longwy"},{"type":"text","text":"/"},{"type":"text","text":"Aubange"}],"type":"fork","modifier":"right","text":"Longwy / Aubange"},"distanceAlongGeometry":318.058}],"exits":"32","voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep right to take N81.","announcement":"In a quarter mile, Keep right to take N81.","distanceAlongGeometry":288.058},{"ssmlAnnouncement":"Keep right to take N81, E 411 toward Longwy, Aubange.","announcement":"Keep right to take N81, E 411 toward Longwy, Aubange.","distanceAlongGeometry":111.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[160,190,343],"duration":0.887,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.04,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":1,"weight":0.783,"geometry_index":3677,"location":[5.817324,49.653569]},{"entry":[false,true],"in":0,"bearings":[10,167],"duration":4.076,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":1,"weight":3.771,"geometry_index":3678,"location":[5.817286,49.653423]},{"entry":[true,false],"in":1,"bearings":[171,350],"duration":2.965,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":0,"weight":2.742,"geometry_index":3680,"location":[5.81751,49.652746]},{"bearings":[172,351],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3681,"location":[5.817626,49.652247]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1653.065},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto N81.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto N81.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit onto N81, E 411.","announcement":"Enter the roundabout and take the 2nd exit onto N81, E 411.","distanceAlongGeometry":171.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[170,177,352],"duration":3.674,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":1,"weight":3.389,"geometry_index":3682,"location":[5.817952,49.65075]},{"entry":[true,false],"in":1,"bearings":[180,358],"duration":12.214,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":0,"weight":11.299,"geometry_index":3684,"location":[5.817992,49.650241]},{"entry":[false,true,false],"in":2,"bearings":[15,191,358],"duration":4.145,"turn_weight":6.75,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":10.568,"geometry_index":3689,"location":[5.818219,49.648545]},{"entry":[false,true],"in":0,"bearings":[11,192],"duration":13.728,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":12.699,"geometry_index":3690,"location":[5.817984,49.647792]},{"entry":[false,true],"in":0,"bearings":[12,192],"duration":5.616,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.195,"geometry_index":3691,"location":[5.817177,49.645273]},{"entry":[false,true],"in":0,"bearings":[12,191],"duration":1.544,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.408,"geometry_index":3692,"location":[5.816848,49.644241]},{"entry":[false,true],"in":0,"bearings":[11,192],"duration":18.314,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":17.434,"geometry_index":3693,"location":[5.816756,49.643947]},{"entry":[false,true,true],"in":0,"bearings":[12,192,211],"duration":4.128,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.799,"geometry_index":3694,"location":[5.815584,49.64028]},{"entry":[false,true],"in":0,"bearings":[12,192],"duration":8.875,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.189,"geometry_index":3695,"location":[5.815332,49.639496]},{"entry":[false,true],"in":0,"bearings":[12,192],"duration":5.049,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.652,"geometry_index":3696,"location":[5.814818,49.637897]},{"entry":[false,true],"in":0,"bearings":[12,192],"duration":1.82,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.664,"geometry_index":3697,"location":[5.814568,49.637119]},{"entry":[false,true],"in":0,"bearings":[12,192],"duration":0.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":0.555,"geometry_index":3698,"location":[5.814502,49.636913]},{"bearings":[12,192],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":3699,"location":[5.814485,49.63686]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 411"}],"degrees":180,"driving_side":"right","type":"roundabout","modifier":"right","text":"N81 / E 411"},"distanceAlongGeometry":1682.732}],"destinations":"Longwy, Aubange, Messancy","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take N81/E 411 toward Longwy/Aubange.","modifier":"slight right","bearing_after":177,"bearing_before":172,"location":[5.817952,49.65075]},"speedLimitSign":"vienna","name":"","weight_typical":90.844,"duration_typical":90.506,"duration":90.506,"distance":1682.732,"driving_side":"right","weight":90.842,"mode":"driving","ref":"N81; E 411","geometry":"{bmu}A_ebbJxZoA~B?d_@@vM_BzUwFpK_ArVo@`n@tMl|Clq@n_ApSjQvDddFfhA~o@vN|bBb_@ro@rNzKbChB`@xn@bNvCnArCbDTV"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto N81, E 411.","announcement":"Exit the roundabout onto N81, E 411.","distanceAlongGeometry":50.475}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[28,101,242],"duration":3.667,"turn_weight":0.75,"turn_duration":0.067,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":4.08,"geometry_index":3703,"location":[5.814109,49.635934]},{"entry":[false,true,true],"in":0,"bearings":[48,190,256],"duration":2.462,"turn_duration":0.324,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":1.977,"geometry_index":3706,"location":[5.81379,49.635789]},{"bearings":[10,152,296],"entry":[false,true,false],"in":0,"turn_duration":0.324,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":3708,"location":[5.813743,49.63562]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 411"}],"degrees":180,"driving_side":"right","type":"roundabout","modifier":"right","text":"N81 / E 411"},"distanceAlongGeometry":73.808}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit onto N81/E 411.","modifier":"slight right","bearing_after":242,"bearing_before":208,"location":[5.814109,49.635934]},"speedLimitSign":"vienna","name":"","weight_typical":8.743,"duration_typical":9.356,"duration":9.356,"distance":73.808,"driving_side":"right","weight":8.742,"mode":"driving","ref":"N81; E 411","geometry":"{dpt}AytzaJr@~FbBzEhC`DbDvAlDDrC}@`CwBfBkD"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":1180.669},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Rue des Ardennes.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit onto Rue des Ardennes.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit onto Rue des Ardennes, N81.","announcement":"Enter the roundabout and take the 2nd exit onto Rue des Ardennes, N81.","distanceAlongGeometry":178.889}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[106,172,326],"duration":8.677,"turn_duration":0.037,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":7.992,"geometry_index":3711,"location":[5.81392,49.635429]},{"entry":[false,true],"in":0,"bearings":[12,192],"duration":1.08,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":0.998,"geometry_index":3714,"location":[5.813694,49.634373]},{"entry":[false,true],"in":0,"bearings":[12,192],"duration":50.823,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":47.012,"geometry_index":3715,"location":[5.813653,49.634244]},{"bearings":[12,192],"entry":[false,true],"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":3716,"location":[5.810964,49.625801]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 411"}],"degrees":181,"driving_side":"right","type":"roundabout","modifier":"right","text":"N81 / E 411"},"distanceAlongGeometry":1204.002}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto N81/E 411.","modifier":"slight right","bearing_after":172,"bearing_before":146,"location":[5.81392,49.635429]},"speedLimitSign":"vienna","name":"","weight_typical":61.39,"duration_typical":66.403,"duration":66.403,"distance":1204.002,"driving_side":"right","weight":61.389,"mode":"driving","ref":"N81; E 411","geometry":"ieot}A_izaJxFcBdF^~q@fO`GpAtnO`gDrm@zMxCpAlCzCxA`B"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Rue des Ardennes, N81.","announcement":"Exit the roundabout onto Rue des Ardennes, N81.","distanceAlongGeometry":54.804}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[31,97,236],"duration":2.84,"turn_weight":0.75,"turn_duration":0.04,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":3.34,"geometry_index":3720,"location":[5.810558,49.624862]},{"entry":[false,true,true],"in":0,"bearings":[56,199,259],"duration":2.744,"turn_duration":0.301,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":2.26,"geometry_index":3723,"location":[5.810325,49.624762]},{"bearings":[19,160,318],"entry":[false,true,false],"in":0,"turn_duration":0.324,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":3726,"location":[5.810243,49.624605]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue des Ardennes"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N81"}],"degrees":181,"driving_side":"right","type":"roundabout","modifier":"right","text":"Rue des Ardennes / N81"},"distanceAlongGeometry":67.471}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit onto Rue des Ardennes/N81/E 411.","modifier":"slight right","bearing_after":236,"bearing_before":211,"location":[5.810558,49.624862]},"speedLimitSign":"vienna","name":"","weight_typical":8.425,"duration_typical":8.963,"duration":8.963,"distance":67.471,"driving_side":"right","weight":8.426,"mode":"driving","ref":"N81; E 411","geometry":"{pzs}A{vsaJj@pD`A|CxA`C~AvAhBt@nBT|BUvBaAhBkBvAkC"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on N81, E 411 for 1 mile.","announcement":"Continue on N81, E 411 for 1 mile.","distanceAlongGeometry":1787.879},{"ssmlAnnouncement":"In a quarter mile, Enter Rue d'Arlon and take the 2nd exit onto N81.","announcement":"In a quarter mile, Enter Rue d'Arlon and take the 2nd exit onto N81.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Rue d'Arlon and take the 2nd exit onto N81, E 411.","announcement":"Enter Rue d'Arlon and take the 2nd exit onto N81, E 411.","distanceAlongGeometry":178.889}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[106,174,327],"duration":6.945,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":6.383,"geometry_index":3730,"location":[5.810411,49.624385]},{"entry":[false,true],"in":0,"bearings":[12,191],"duration":3.674,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.379,"geometry_index":3734,"location":[5.810257,49.62357]},{"entry":[false,true],"in":0,"bearings":[11,189],"duration":2.297,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":2.105,"geometry_index":3735,"location":[5.810067,49.622959]},{"entry":[false,true],"in":0,"bearings":[9,189],"duration":3.555,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.281,"geometry_index":3736,"location":[5.809975,49.622581]},{"entry":[false,true],"in":0,"bearings":[9,188],"duration":1.694,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.566,"geometry_index":3738,"location":[5.809837,49.62199]},{"entry":[false,true],"in":0,"bearings":[8,187],"duration":7.677,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":7.102,"geometry_index":3739,"location":[5.809776,49.621703]},{"entry":[false,true],"in":0,"bearings":[5,185],"duration":1.756,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.561,"geometry_index":3741,"location":[5.809558,49.620406]},{"entry":[false,true],"in":0,"bearings":[4,184],"duration":15.701,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":14.131,"geometry_index":3743,"location":[5.809514,49.620045]},{"entry":[true,false,false],"in":2,"bearings":[177,339,358],"duration":7.984,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.918,"geometry_index":3748,"location":[5.80946,49.616795]},{"entry":[true,false],"in":1,"bearings":[174,353],"duration":7.65,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.885,"geometry_index":3751,"location":[5.809648,49.615209]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":4.64,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.176,"geometry_index":3753,"location":[5.80992,49.613692]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":2.327,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.088,"geometry_index":3754,"location":[5.810109,49.612657]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":4.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.637,"geometry_index":3756,"location":[5.810204,49.612142]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":7.487,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.732,"geometry_index":3757,"location":[5.810371,49.61124]},{"entry":[true,false],"in":1,"bearings":[176,355],"duration":0.617,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.57,"geometry_index":3759,"location":[5.810678,49.60957]},{"bearings":[180,356],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":3760,"location":[5.81069,49.60946]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 411"}],"degrees":208,"driving_side":"right","type":"roundabout","modifier":"right","text":"E 411"},"distanceAlongGeometry":1817.879}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Rue des Ardennes/N81/E 411. Continue on N81/E 411.","modifier":"slight right","bearing_after":174,"bearing_before":147,"location":[5.810411,49.624385]},"speedLimitSign":"vienna","name":"Rue des Ardennes","weight_typical":86.248,"duration_typical":93.979,"duration":93.979,"distance":1817.879,"driving_side":"right","weight":86.246,"mode":"driving","ref":"N81; E 411","geometry":"asys}AumsaJnC{@tDKpH~@d^zHde@zJrVvDrRrChP~B|PxB|h@bGbf@nD|N~@rEVlNv@bp@vBrq@d@lZCn{@eBhm@uBh^eCnT{B`n@aGvn@}Gt_AyJhEe@zXwCjw@mIdaBoQdEUzEWxEG`FJnGhA`IdBzLtFrJpGlI`DfHjF"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto N81, E 411.","announcement":"Exit the roundabout onto N81, E 411.","distanceAlongGeometry":53.72}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[26,101,241],"duration":3.123,"turn_weight":0.75,"turn_duration":0.077,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":3.568,"geometry_index":3768,"location":[5.810141,49.608218]},{"entry":[false,true,true],"in":0,"bearings":[61,201,267],"duration":3.31,"turn_duration":0.376,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":2.713,"geometry_index":3770,"location":[5.809882,49.608125]},{"bearings":[20,159,307],"entry":[false,true,false],"in":0,"turn_duration":0.405,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":3772,"location":[5.809776,49.607941]}],"rotary_name":"Rue d'Arlon","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"N81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E411","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 411"}],"degrees":208,"driving_side":"right","type":"roundabout","modifier":"right","text":"N81 / E 411"},"distanceAlongGeometry":77.053}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":2,"instruction":"Enter Rue d'Arlon and take the 2nd exit onto N81/E 411.","modifier":"slight right","bearing_after":241,"bearing_before":206,"location":[5.810141,49.608218]},"speedLimitSign":"vienna","name":"","weight_typical":10.351,"duration_typical":11.237,"duration":11.237,"distance":77.053,"driving_side":"right","weight":10.352,"mode":"driving","ref":"E 411","geometry":"s`zr}Ay|raJz@rG|BpFhDzCdEv@`E}@fD_DzBqF"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on E 411 for 29 miles.","announcement":"Continue on E 411 for 29 miles.","distanceAlongGeometry":47314.238},{"ssmlAnnouncement":"In a quarter mile, Keep left to take A 30.","announcement":"In a quarter mile, Keep left to take A 30.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take A 30 toward Metz, Fameck.","announcement":"Keep left to take A 30 toward Metz, Fameck.","distanceAlongGeometry":100}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[97,169,318],"duration":4.055,"turn_duration":0.055,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":1,"weight":3.699,"geometry_index":3775,"location":[5.810008,49.607698]},{"entry":[true,false],"in":1,"bearings":[170,357],"duration":76.604,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":70.859,"geometry_index":3778,"location":[5.810086,49.607255]},{"entry":[true,false],"in":1,"bearings":[177,357],"duration":5.735,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":5.305,"geometry_index":3798,"location":[5.808235,49.590972]},{"entry":[true,false],"in":1,"bearings":[176,357],"duration":25.183,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":23.275,"geometry_index":3799,"location":[5.808334,49.589739]},{"entry":[true,false],"in":1,"bearings":[176,357],"duration":10.541,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":10.23,"geometry_index":3801,"location":[5.808884,49.583845]},{"entry":[true,false],"in":1,"bearings":[148,330],"duration":4.807,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":5.049,"geometry_index":3808,"location":[5.809718,49.58159]},{"entry":[true,false],"in":1,"bearings":[147,328],"duration":30.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":29.07,"geometry_index":3809,"location":[5.810636,49.58064]},{"entry":[true,false],"in":1,"bearings":[134,314],"duration":2.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":2.801,"geometry_index":3817,"location":[5.817946,49.575288]},{"entry":[true,true,false],"in":2,"bearings":[135,151,314],"duration":1.865,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":6,"out":0,"weight":1.766,"geometry_index":3818,"location":[5.818712,49.574808]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[139,273,316],"duration":5.792,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.639,"geometry_index":3820,"location":[5.819185,49.574499]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,326],"duration":20.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.191,"geometry_index":3823,"location":[5.82046,49.573421]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,192],"duration":7.608,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.418,"geometry_index":3833,"location":[5.821204,49.568531]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.820564,49.566738],"geometry_index":3836,"admin_index":6,"weight":13.891,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.27,"bearings":[14,191,206],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.818848,49.563596],"geometry_index":3841,"admin_index":6,"weight":8.859,"is_urban":false,"turn_weight":0.5,"duration":8.582,"bearings":[13,23,205],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":1.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.373,"geometry_index":3843,"location":[5.817417,49.561741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,210],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.52,"geometry_index":3844,"location":[5.817168,49.561446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":1.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.496,"geometry_index":3845,"location":[5.817071,49.561338]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":13.474,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":13.473,"geometry_index":3846,"location":[5.816771,49.561014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":6.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.986,"geometry_index":3848,"location":[5.814049,49.55811]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.812614,49.556612],"geometry_index":3849,"admin_index":6,"weight":11.152,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.171,"bearings":[32,211],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[15,31,212],"duration":1.595,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":1.588,"geometry_index":3850,"location":[5.810571,49.554426]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":2.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.865,"geometry_index":3851,"location":[5.81027,49.55411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":0.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.689,"geometry_index":3852,"location":[5.809733,49.553546]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.801,"geometry_index":3853,"location":[5.809605,49.553409]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":4.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.266,"geometry_index":3854,"location":[5.80927,49.553051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":2.094,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.086,"geometry_index":3855,"location":[5.808467,49.552225]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.808083,49.551841],"geometry_index":3856,"admin_index":6,"weight":2433.422,"is_urban":false,"turn_weight":2425.741,"duration":7.688,"bearings":[33,99,213],"out":2,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"in":0,"bearings":[31,210],"duration":3.311,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":3.311,"geometry_index":3859,"location":[5.806678,49.550382]},{"entry":[false,true],"in":0,"bearings":[30,212],"duration":5.325,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":5.316,"geometry_index":3860,"location":[5.806121,49.549761]},{"entry":[false,true],"in":0,"bearings":[45,227],"duration":0.963,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.963,"geometry_index":3864,"location":[5.805058,49.548857]},{"entry":[false,true],"in":0,"bearings":[47,230],"duration":11.085,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":11.076,"geometry_index":3865,"location":[5.804825,49.548715]},{"entry":[false,true],"in":0,"bearings":[98,280],"duration":1.302,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.301,"geometry_index":3876,"location":[5.799696,49.547722]},{"entry":[false,true,true],"in":0,"bearings":[104,288,296],"duration":15.232,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":15.223,"geometry_index":3878,"location":[5.799053,49.54781]},{"entry":[false,false,true],"in":1,"bearings":[108,116,295],"duration":7.916,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":8.658,"geometry_index":3882,"location":[5.795298,49.548877]},{"entry":[false,true],"in":0,"bearings":[116,295],"duration":3.272,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":3.273,"geometry_index":3884,"location":[5.793489,49.549437]},{"entry":[false,true],"in":0,"bearings":[115,296],"duration":7.909,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":7.908,"geometry_index":3885,"location":[5.792742,49.549668]},{"entry":[false,true],"in":0,"bearings":[116,296],"duration":4.8,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":4.801,"geometry_index":3886,"location":[5.790931,49.550238]},{"entry":[false,true],"in":0,"bearings":[116,296],"duration":1.69,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.648,"geometry_index":3888,"location":[5.789833,49.550584]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[116,296],"duration":1.69,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.648,"geometry_index":3890,"location":[5.789446,49.550706]},{"entry":[false,true],"in":0,"bearings":[116,293],"duration":12.593,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":12.258,"geometry_index":3892,"location":[5.789059,49.550828]},{"entry":[false,true],"in":0,"bearings":[98,275],"duration":2.756,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":2.688,"geometry_index":3897,"location":[5.786051,49.551403]},{"entry":[false,true],"in":0,"bearings":[95,270],"duration":13.429,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":13.094,"geometry_index":3898,"location":[5.785379,49.55144]},{"entry":[false,true],"in":0,"bearings":[82,262],"duration":6.476,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":6.807,"geometry_index":3902,"location":[5.782146,49.551235]},{"entry":[false,true],"in":0,"bearings":[82,261],"duration":3.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":3.51,"geometry_index":3903,"location":[5.780573,49.551084]},{"entry":[false,true],"in":0,"bearings":[81,261],"duration":43.886,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":41.691,"geometry_index":3904,"location":[5.77971,49.551]},{"entry":[false,true],"in":0,"bearings":[37,215],"duration":0.45,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.428,"geometry_index":3918,"location":[5.770787,49.547636]},{"entry":[false,true],"in":0,"bearings":[35,215],"duration":28.85,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":27.408,"geometry_index":3919,"location":[5.77072,49.547573]},{"entry":[false,true],"in":0,"bearings":[53,238],"duration":8.539,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":8.326,"geometry_index":3925,"location":[5.765865,49.543486]},{"entry":[false,true],"in":0,"bearings":[77,258],"duration":6.279,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":6.123,"geometry_index":3930,"location":[5.763292,49.542766]},{"entry":[false,true],"in":0,"bearings":[74,250],"duration":11.512,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":10.936,"geometry_index":3934,"location":[5.761271,49.542477]},{"entry":[false,true],"in":0,"bearings":[38,217],"duration":39.684,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":38.691,"geometry_index":3941,"location":[5.7582,49.541079]},{"entry":[true,false],"in":1,"bearings":[177,357],"duration":0.475,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.955,"geometry_index":3956,"location":[5.757264,49.532931]},{"entry":[true,false],"in":1,"bearings":[181,357],"duration":1.397,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.398,"geometry_index":3957,"location":[5.757272,49.532831]},{"entry":[false,true],"in":0,"bearings":[1,183],"duration":15.967,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":15.967,"geometry_index":3958,"location":[5.757263,49.532539]},{"entry":[false,true],"in":0,"bearings":[22,201],"duration":19.084,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":19.064,"geometry_index":3964,"location":[5.755728,49.529324]},{"entry":[false,true],"in":0,"bearings":[8,186],"duration":7.381,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":7.545,"geometry_index":3969,"location":[5.753969,49.525313]},{"entry":[false,true],"in":0,"bearings":[9,193],"duration":7.24,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":7.422,"geometry_index":3971,"location":[5.753661,49.523672]},{"entry":[false,true],"in":0,"bearings":[20,200],"duration":0.993,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.018,"geometry_index":3974,"location":[5.752937,49.522115]},{"entry":[false,true],"in":0,"bearings":[20,200],"duration":1.298,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.33,"geometry_index":3975,"location":[5.752822,49.521912]},{"entry":[false,true],"in":0,"bearings":[20,200],"duration":9.126,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":9.354,"geometry_index":3976,"location":[5.752673,49.521647]},{"entry":[false,true],"in":0,"bearings":[19,200],"duration":0.978,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.002,"geometry_index":3978,"location":[5.751657,49.519802]},{"entry":[false,true,true],"in":0,"bearings":[20,199,214],"duration":9.941,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":9.922,"geometry_index":3979,"location":[5.751552,49.519618]},{"entry":[false,true],"in":0,"bearings":[19,199],"duration":1.778,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.777,"geometry_index":3980,"location":[5.750521,49.5177]},{"entry":[false,true],"in":0,"bearings":[19,199],"duration":6.506,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":6.506,"geometry_index":3981,"location":[5.750333,49.517351]},{"entry":[false,true],"in":0,"bearings":[19,199],"duration":8.241,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":8.24,"geometry_index":3982,"location":[5.749649,49.516077]},{"entry":[false,false,true],"in":1,"bearings":[6,17,189],"duration":1.787,"turn_weight":0.75,"turn_duration":0.033,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":2,"weight":2.504,"geometry_index":3985,"location":[5.748825,49.514452]},{"entry":[false,true],"in":0,"bearings":[8,185],"duration":1.615,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":1.615,"geometry_index":3987,"location":[5.748746,49.514111]},{"entry":[false,true],"in":0,"bearings":[3,178],"duration":0.812,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":1,"weight":0.785,"geometry_index":3989,"location":[5.748715,49.513797]},{"entry":[true,false],"in":1,"bearings":[176,358],"duration":1.984,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.984,"geometry_index":3990,"location":[5.748725,49.513645]},{"entry":[true,false],"in":1,"bearings":[170,356],"duration":2.585,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":2.584,"geometry_index":3991,"location":[5.748771,49.513256]},{"entry":[true,false],"in":1,"bearings":[163,347],"duration":2.954,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":2.953,"geometry_index":3993,"location":[5.748924,49.512767]},{"entry":[true,false],"in":1,"bearings":[156,339],"duration":1.627,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.627,"geometry_index":3995,"location":[5.749208,49.512227]},{"entry":[true,false],"in":1,"bearings":[153,335],"duration":3.706,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":3.705,"geometry_index":3997,"location":[5.749398,49.511961]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":1.482,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.482,"geometry_index":4000,"location":[5.74988,49.51142]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":7.438,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":7.418,"geometry_index":4001,"location":[5.75009,49.511211]},{"entry":[true,false],"in":1,"bearings":[164,343],"duration":3.994,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":3.994,"geometry_index":4007,"location":[5.7509,49.510114]},{"entry":[true,false],"in":1,"bearings":[163,344],"duration":2.271,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":2.271,"geometry_index":4008,"location":[5.751167,49.509498]},{"entry":[true,false],"in":1,"bearings":[157,339],"duration":1.429,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.428,"geometry_index":4010,"location":[5.751349,49.509152]},{"entry":[true,false],"in":1,"bearings":[156,337],"duration":0.114,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.115,"geometry_index":4011,"location":[5.751483,49.508949]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":0.164,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.164,"geometry_index":4012,"location":[5.751494,49.508933]},{"entry":[true,false],"in":1,"bearings":[154,336],"duration":8.945,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":8.945,"geometry_index":4013,"location":[5.75151,49.50891]},{"entry":[true,false],"in":1,"bearings":[134,315],"duration":34.69,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":34.691,"geometry_index":4018,"location":[5.752841,49.50773]},{"entry":[true,false],"in":1,"bearings":[96,278],"duration":1.543,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.543,"geometry_index":4031,"location":[5.760625,49.505296]},{"entry":[true,false],"in":1,"bearings":[94,276],"duration":2.108,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":2.109,"geometry_index":4032,"location":[5.76104,49.505269]},{"entry":[true,false],"in":1,"bearings":[90,273],"duration":88.272,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":86.064,"geometry_index":4034,"location":[5.761604,49.505246]},{"entry":[true,false],"in":1,"bearings":[129,310],"duration":8.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":7.98,"geometry_index":4058,"location":[5.786135,49.504322]},{"entry":[true,false],"in":1,"bearings":[115,298],"duration":16.385,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":15.564,"geometry_index":4062,"location":[5.788216,49.503406]},{"entry":[true,false],"in":1,"bearings":[113,294],"duration":0.923,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.877,"geometry_index":4066,"location":[5.792749,49.502191]},{"entry":[true,false],"in":1,"bearings":[111,293],"duration":5.85,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":6.037,"geometry_index":4067,"location":[5.793005,49.502119]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":0.36,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.342,"geometry_index":4068,"location":[5.794761,49.501676]},{"entry":[true,false],"in":1,"bearings":[112,291],"duration":46.146,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":42.684,"geometry_index":4069,"location":[5.794863,49.50165]},{"entry":[true,false],"in":1,"bearings":[151,327],"duration":8.689,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":7.812,"geometry_index":4092,"location":[5.809695,49.493822]},{"entry":[true,false],"in":1,"bearings":[157,334],"duration":0.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.348,"geometry_index":4096,"location":[5.811091,49.492095]},{"entry":[true,false],"in":1,"bearings":[156,337],"duration":11.88,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":10.691,"geometry_index":4097,"location":[5.811144,49.492013]},{"entry":[true,false],"in":1,"bearings":[164,343],"duration":87.968,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":79.654,"geometry_index":4102,"location":[5.812542,49.489509]},{"entry":[true,false],"in":1,"bearings":[127,306],"duration":0.271,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.244,"geometry_index":4126,"location":[5.832229,49.474805]},{"entry":[true,false],"in":1,"bearings":[132,307],"duration":3.678,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":3.311,"geometry_index":4127,"location":[5.832306,49.474767]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[134,313],"duration":1.369,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.232,"geometry_index":4130,"location":[5.833279,49.474204]},{"entry":[true,false],"in":1,"bearings":[138,314],"duration":23.689,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":21.312,"geometry_index":4132,"location":[5.833626,49.473985]},{"entry":[true,false,false],"in":2,"bearings":[135,306,317],"duration":3.734,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":4.342,"geometry_index":4145,"location":[5.838272,49.469634]},{"entry":[true,false],"in":1,"bearings":[128,307],"duration":55.061,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":49.555,"geometry_index":4148,"location":[5.839295,49.469057]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":0.379,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":0.342,"geometry_index":4152,"location":[5.855219,49.461114]},{"entry":[true,true,false],"in":2,"bearings":[120,130,301],"duration":18.494,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":16.627,"geometry_index":4153,"location":[5.855336,49.461069]},{"entry":[true,false,false],"in":2,"bearings":[120,284,300],"duration":5.33,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":5.541,"geometry_index":4154,"location":[5.860914,49.458954]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":53.08,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":47.773,"geometry_index":4155,"location":[5.862573,49.45833]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":1.859,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":1.674,"geometry_index":4158,"location":[5.879102,49.452047]},{"entry":[true,false],"in":1,"bearings":[120,301],"duration":34.621,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":31.158,"geometry_index":4159,"location":[5.879665,49.45183]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":3.332,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":2.998,"geometry_index":4162,"location":[5.890471,49.44775]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":20.875,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":18.771,"geometry_index":4165,"location":[5.891558,49.44741]},{"entry":[true,false],"in":1,"bearings":[138,317],"duration":6.863,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":6.67,"geometry_index":4172,"location":[5.897363,49.444554]},{"entry":[true,false],"in":1,"bearings":[133,315],"duration":11.719,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":10.547,"geometry_index":4174,"location":[5.89906,49.443383]},{"entry":[true,false],"in":1,"bearings":[132,312],"duration":17.738,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":15.947,"geometry_index":4176,"location":[5.902185,49.44153]},{"entry":[true,false],"in":1,"bearings":[145,324],"duration":110.268,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":7,"out":0,"weight":99.734,"geometry_index":4181,"location":[5.906468,49.438706]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,357],"duration":26.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":24.207,"geometry_index":4219,"location":[5.918026,49.415049]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[129,137,310],"duration":32.617,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":29.35,"geometry_index":4232,"location":[5.923024,49.409097]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.933015,49.403804],"geometry_index":4235,"admin_index":7,"weight":11.227,"is_urban":false,"turn_weight":0.5,"duration":11.926,"bearings":[128,298,309],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,307],"duration":75.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":68.387,"geometry_index":4237,"location":[5.936741,49.401931]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,308],"duration":3.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.705,"geometry_index":4250,"location":[5.961027,49.390472]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,309],"duration":2.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.875,"geometry_index":4251,"location":[5.961956,49.38999]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[129,134,308],"duration":2.02,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.811,"geometry_index":4252,"location":[5.962594,49.389663]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,309],"duration":13.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.008,"geometry_index":4253,"location":[5.963203,49.389344]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.967278,49.387226],"geometry_index":4256,"admin_index":7,"weight":7.598,"is_urban":false,"turn_weight":1,"duration":7.338,"bearings":[129,303,309],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,308],"duration":98.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":88.688,"geometry_index":4259,"location":[5.969688,49.385965]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[6,186,191],"duration":1.699,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.523,"geometry_index":4303,"location":[5.981875,49.361471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":13.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.475,"geometry_index":4304,"location":[5.981807,49.361047]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.981468,49.357603],"geometry_index":4309,"admin_index":7,"weight":5.223,"is_urban":false,"turn_weight":1,"duration":4.713,"bearings":[0,177,352],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":1.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.297,"geometry_index":4312,"location":[5.981632,49.356453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,353],"duration":3.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.436,"geometry_index":4313,"location":[5.981704,49.356095]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,348],"duration":0.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.557,"geometry_index":4315,"location":[5.981972,49.355171]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,346],"duration":0.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.59,"geometry_index":4316,"location":[5.982027,49.355023]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,346],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.229,"geometry_index":4317,"location":[5.982085,49.354866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,346],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.818,"geometry_index":4318,"location":[5.98211,49.354803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,345],"duration":0.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.359,"geometry_index":4319,"location":[5.982197,49.354585]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,345],"duration":21.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":19.145,"geometry_index":4320,"location":[5.982235,49.354491]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,332],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.178,"geometry_index":4324,"location":[5.985535,49.349711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,330],"duration":49.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":44.863,"geometry_index":4325,"location":[5.985785,49.34943]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,329],"duration":0.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.859,"geometry_index":4334,"location":[5.996535,49.33947]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[150,158,328],"duration":19.9,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":17.406,"geometry_index":4335,"location":[5.996725,49.339268]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.000499,49.335128],"geometry_index":4338,"admin_index":7,"weight":64.094,"is_urban":false,"turn_weight":1,"duration":70.125,"bearings":[144,317,326],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,261],"duration":29.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":27.643,"geometry_index":4358,"location":[6.023051,49.32959]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,299],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.406,"geometry_index":4371,"location":[6.03283,49.327502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,298],"duration":7.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.107,"geometry_index":4372,"location":[6.032955,49.327458]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,286],"duration":14.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":14.131,"geometry_index":4375,"location":[6.035,49.326941]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,248],"duration":6.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.062,"geometry_index":4382,"location":[6.039178,49.327142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,235],"duration":4.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.422,"geometry_index":4386,"location":[6.040758,49.327744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.121,"geometry_index":4387,"location":[6.041835,49.32826]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,233],"duration":5.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.438,"geometry_index":4388,"location":[6.041996,49.32834]},{"tunnel_name":"Tunnel du Bois des Chênes","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[51,232],"duration":17.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":16.643,"geometry_index":4389,"location":[6.042858,49.328774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,235],"duration":3.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.732,"geometry_index":4391,"location":[6.045891,49.330248]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[66,243],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"geometry_index":4393,"location":[6.046718,49.330523]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Metz"},{"type":"text","text":"/"},{"type":"text","text":"Fameck"}],"type":"fork","modifier":"left","text":"Metz / Fameck"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"A 30","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 30"}],"type":"fork","modifier":"left","text":"A 30"},"distanceAlongGeometry":47337.57},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Metz"},{"type":"text","text":"/"},{"type":"text","text":"Fameck"}],"type":"fork","modifier":"left","text":"Metz / Fameck"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"A 30","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 30"}],"type":"fork","modifier":"left","text":"A 30"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto N81/E 411. Continue on E 411.","modifier":"slight right","bearing_after":169,"bearing_before":138,"location":[5.810008,49.607698]},"speedLimitSign":"vienna","name":"","weight_typical":1782.671,"duration_typical":1897.113,"duration":1897.338,"distance":47337.57,"driving_side":"right","weight":4208.619,"mode":"driving","ref":"N81; E 411","geometry":"c`yr}AotraJdHyBjIAbG_@zIwAhG{AjIg@xIFxNpB`NdCv_B|YzhDvm@lxBx`@f_BpYhSdDzQrBzRvApSl@dQRfSUfTm@ljAkFteBeItoCmL`lAeEz~C{NnoEoQ~i@gCtO_AjNaBlLiCrM_FjLqHlW}Tjz@kx@dfAoeAzX_[vY{^dVo]dV{_@pUua@~u@owAvuA}jC~\\{n@|G}LjIsNrVa_@`QkTtXgYfXuRhUwLpV{Iz]kIxe@iFfk@eAp\\h@`c@dC~_@jE|TxDhg@vKbb@|Krc@hMxTpElVdLn{@j^ph@zV`p@f_@vy@ni@dx@|m@lQpNvE`EfSvQdJjIhiDv~Cr|AtxArgCt~BvRxQfb@p`@pG~FjU|Srr@dq@~V~V~Q~Qzc@vb@hb@``@xe@xa@rH|Gj[x]bKhOjEjIzGpMdL|VfI`UvHlV~DpPpDxPfI~j@~Dpc@vB|f@Xvj@{@bd@s@jMkA~ScBdR_DfWeGdb@yMxq@ue@l{BAF}a@xoBmMtm@sb@dpBABqTncAABqF`W?@sFbWcMls@gGnb@kEfd@gCl^}Aj^iA~h@?zk@j@~]~@d[lH~`BlHhaBfD|t@fDht@bD~g@|Fnn@tHrl@pKro@tM~n@~P`o@zPph@xQte@pS|e@tTh`@zQtZjW|ZxMlP|BdCrw@n{@`eCrmC~M`QdQhXpQv]~KdYdL|^jJn`@rHxa@|Etb@zBzWbAnLdDzm@bErh@rChWr@jGjIbf@pMfh@tQ`h@|Qx^vMhSlG~H|GtIhZhXpT`Pzw@vj@`YpMbT~H|TtDlQ|@bTa@xM{@fM_BleCic@tqAcU|RmCvRu@fEOfQPjFDpT`BfTtD|ShGlS|IjlBvbAttAvr@`{@`]l^~Il_@~F`h@bHl_AlIbe@xGn^`JhZjKne@xTtKdFpOhHxiA~h@ng@nTnJpEzvBl_AxTvJrnAvi@~z@f_@lXrJbOrFvOhCpCRjKr@fFHnHShW{AhKcBfQmE`PyFtO}HbIyEnEaDfPyLbLyKlBoB`LcLpHsHdIyGrI}GnMgIbJeFpKyDne@uOtI{C|IoEtKkG^Ul@_@nEmCzJyHbPuOtSoXpPwYzPw[zPk_@xOu`@tNab@lMec@fLid@~Jge@vIef@jH_g@`Gsg@vEgh@hDwh@|Bai@t@}XJcE`@c\\Bom@[{b@gAif@iBsb@_Ce_@{Eul@sEaj@wt@}{HsCqg@s@iZG}Y\\uWxCut@jt@syNhCca@hBaVzCaZ|DwXlFeWpGkWvH}UhI}TbMo[`MgY`Yeq@vG{Q`GaSjM}g@nGsZtXgiBdDcSpc@i`CnC_OtZwlBr@kE|Vo|ApOq{@tIoa@`Qmv@dKwb@rJu^bLw`@rTws@xUwq@nQ{d@`Po`@`Wwl@dUye@nVoe@lWed@dSi\\PYzRgZv\\ag@`_@ce@za@wg@|a@}`@rc@mc@bTcQ``@_\\pYoRdZsSbDiB`n@e_@fSgJrH}Cxg@wSve@gQhcG}rBbTyIxQwIjT}LnNuJzGcFbW}UtYg\\pPoUluHyfM|Vgd@rKsTzKmXvOwd@jK{^pI}^|Jyi@xO{bAtUqxAtFeX~FeZnN_i@|Kc\\nHaSjAyCnHoO`Ry`@rEoIDInLkTFIbOaUfOySnNqP|QyQ~UwSll@mf@r_@yZhQ}OlN{Mbc@yi@l@aAn_@cm@bK}QrKcUhJ{U|bMyzZ~Ogc@fNcb@fKa_@xAiFdcCs{I~e@ufBfnBceHttAaxEvbE{hOpLeb@dhEapOxj@urB~Hs]@CfEcR|Muo@pRe_ArTc~@jLca@bNq`@hTof@xTwa@t`Aq|Ahe@}s@za@ct@vWqg@`zAwyCnoAwfCvTgb@tZ{f@jVu]dVcYtb@we@vUqUz[uYld@u\\jg@}YdUkL`L_Fpk@wSvy@_T~^uFx`@}Dhm@uCb`Aj@~mBjRv|@tGj\\Id]kBzW}Db\\aIp[yKhUuKjWwOp]qX~YuZbp@s|@r_BerC~Xoc@bZia@b[k]zYwU`ZsSlZcPf_@wN`f@{K`d@aFp_@eAlcB_@v[eAr]_DzZwEb]qI~]gMp[{NnZiQd\\iUl[gXrh@kk@p\\ie@zZeh@lRk`@dSyc@xyDm~IpsBw{ElZgs@bt@kgB|~@o_CjjBo~Evd@epAxkAciDzfCauHz]yaAnb@koAff@qsAzo@ocBdMs]bi@ysAjh@kpAfc@ccA|dAyfCb]ay@lS{f@|Rae@bY}p@r`Aw}Brg@_mAfUmi@r[{t@|Ziu@b]yw@lk@slAbPy[fT{`@`LaS|_@ym@|OaVzN_Tj]ee@~Ye_@p@{@bXsZtTyUnZc[b[kZj`@_]x_@uZra@wYpPgLhPaKrc@uWhd@mVba@wQja@iQra@yNfb@oMxg@{Mng@kMpc@aJna@_Hpg@}Gvh@kFjcAaHv`AyCra@e@fYBbm@`@ze@^v~AdCtp@hAlXt@hXbA|~@~G|u@~GnYfCpr@dGt}@lH|]pAr`@^lc@?`Wy@|VaBzVkDjUoCbZwEr]_IfHmBxHsB|Bq@rLmDzDkAhx@i[~lA{o@xlAoy@rtAqeApPsN~mAwhAh^i^th@}i@hvA_aBx~AinBxwBcpCfgAumAtr@yq@ri@}f@rK{JhtDs`Dbw@yr@hTmUlRwTtTu\\`Tw]|X}m@~Xst@rMkd@vMgi@p`@orB~hBayJvUgmA~Os`ApI_i@~Jiw@dDi^pCs^jEcdAl@gn@i@c_AiBcp@eKyuBq@mNiCm}@Yym@~AmaAhDyn@|Guq@jMg~@tL{i@pN}g@rUar@vXqv@zUqt@`DiMvAyFtHqZbLsp@nHsq@nEwt@v@w]R_^gBeq@qDqj@iHwg@iBcJoFgXgKa`@kMa`@oBkFg_@ibA_DaIcZ{t@ap@o|Aaj@a_BqKud@sC_MuNcv@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 17 miles.","announcement":"Continue for 17 miles.","distanceAlongGeometry":27717.635},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 31.","announcement":"In 1 mile, Keep left to take A 31.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 31.","announcement":"In a half mile, Keep left to take A 31.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 31, E 21.","announcement":"Keep left to take A 31, E 21.","distanceAlongGeometry":180}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.0476,49.330774],"geometry_index":4394,"admin_index":7,"weight":9.457,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.709,"bearings":[70,82,246],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,260],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.926,"geometry_index":4398,"location":[6.050179,49.331222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,261],"duration":4.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.949,"geometry_index":4399,"location":[6.050434,49.331248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,265],"duration":1.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.064,"geometry_index":4401,"location":[6.051547,49.331331]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,268],"duration":12.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.111,"geometry_index":4402,"location":[6.051828,49.331338]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.055137,49.330989],"geometry_index":4408,"admin_index":7,"weight":11.324,"is_urban":false,"turn_weight":1,"duration":10.332,"bearings":[113,273,290],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,309],"duration":7.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.359,"geometry_index":4413,"location":[6.057399,49.330059]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,310],"duration":27.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":27.715,"geometry_index":4415,"location":[6.058868,49.32926]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":5.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.621,"geometry_index":4416,"location":[6.064745,49.325971]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,311],"duration":54.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":54.91,"geometry_index":4417,"location":[6.06594,49.325302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,293],"duration":3.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.488,"geometry_index":4439,"location":[6.078031,49.31753]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,281],"duration":18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":18,"geometry_index":4441,"location":[6.079265,49.317324]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,286],"duration":8.162,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.154,"geometry_index":4450,"location":[6.085903,49.317147]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,302],"duration":32.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":32.289,"geometry_index":4455,"location":[6.088611,49.316226]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,294],"duration":1.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.598,"geometry_index":4469,"location":[6.098765,49.312072]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,293],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.883,"geometry_index":4470,"location":[6.099301,49.311924]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[105,117,289],"duration":26.23,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":26.863,"geometry_index":4471,"location":[6.09996,49.31178]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[99,265,277],"duration":9.596,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.066,"geometry_index":4474,"location":[6.109894,49.310904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,294],"duration":16.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":16.934,"geometry_index":4480,"location":[6.113344,49.310269]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[119,122,299],"duration":33.002,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":33.818,"geometry_index":4482,"location":[6.118673,49.3084]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.129415,49.304564],"geometry_index":4483,"admin_index":7,"weight":9.15,"is_urban":false,"turn_weight":0.75,"duration":8.408,"bearings":[119,291,299],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[119,299],"duration":26.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":25.484,"geometry_index":4484,"location":[6.132123,49.303594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[121,301],"duration":1.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.348,"geometry_index":4489,"location":[6.140365,49.300387]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,301],"duration":42.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":39.92,"geometry_index":4490,"location":[6.140811,49.300209]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.711,"geometry_index":4503,"location":[6.157461,49.296517]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":2.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.443,"geometry_index":4504,"location":[6.158111,49.29641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,285],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.904,"geometry_index":4506,"location":[6.159044,49.296253]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,287],"duration":7.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.154,"geometry_index":4508,"location":[6.15975,49.296115]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,298],"duration":2.791,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.652,"geometry_index":4513,"location":[6.162334,49.295378]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[121,130,298],"duration":10.146,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.633,"geometry_index":4514,"location":[6.163259,49.295051]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[123,293,301],"duration":8.67,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.445,"geometry_index":4515,"location":[6.166508,49.293755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,315],"duration":25.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":24.424,"geometry_index":4519,"location":[6.168976,49.29245]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,355],"duration":6.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.914,"geometry_index":4526,"location":[6.171804,49.286896]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.172032,49.285409],"geometry_index":4527,"admin_index":7,"weight":9.92,"is_urban":false,"turn_weight":6,"duration":4.133,"bearings":[174,354,359],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,354],"duration":18.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":17.83,"geometry_index":4528,"location":[6.17217,49.284501]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":4.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.426,"geometry_index":4529,"location":[6.172736,49.280347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":9.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.512,"geometry_index":4530,"location":[6.172864,49.27931]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,355],"duration":16.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":16.494,"geometry_index":4531,"location":[6.173172,49.277058]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":2.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.098,"geometry_index":4534,"location":[6.17407,49.273176]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":25.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":24.379,"geometry_index":4535,"location":[6.174185,49.272688]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,346],"duration":1.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.66,"geometry_index":4539,"location":[6.176208,49.265959]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[166,175,346],"duration":21.854,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":21.301,"geometry_index":4540,"location":[6.176378,49.265503]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[3,185,353],"duration":8.455,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.236,"geometry_index":4546,"location":[6.177194,49.259994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,185],"duration":39.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":39.314,"geometry_index":4547,"location":[6.176926,49.257876]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,350],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.846,"geometry_index":4555,"location":[6.176547,49.248015]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,346],"duration":13.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":13.26,"geometry_index":4556,"location":[6.176718,49.247572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.461,"geometry_index":4560,"location":[6.178517,49.244442]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,168,337],"duration":22.256,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":21.691,"geometry_index":4561,"location":[6.178737,49.2441]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[181,339,358],"duration":9.08,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.846,"geometry_index":4569,"location":[6.180869,49.238777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,193],"duration":17.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.672,"geometry_index":4573,"location":[6.180552,49.236529]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,184],"duration":2.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.021,"geometry_index":4578,"location":[6.179263,49.232355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,183],"duration":45.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":44.508,"geometry_index":4579,"location":[6.179212,49.231842]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.781,"geometry_index":4587,"location":[6.175715,49.221113]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[17,195,201],"duration":28.047,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":28.029,"geometry_index":4588,"location":[6.175516,49.220699]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[178,339,358],"duration":10.148,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.131,"geometry_index":4595,"location":[6.174491,49.214892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":30.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":30.432,"geometry_index":4596,"location":[6.174585,49.212718]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":1.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.926,"geometry_index":4600,"location":[6.174961,49.206189]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[176,191,358],"duration":17.912,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":17.891,"geometry_index":4601,"location":[6.174981,49.205776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":16.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":16.309,"geometry_index":4606,"location":[6.175206,49.201361]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.175278,49.19723],"geometry_index":4608,"admin_index":7,"weight":8.434,"is_urban":false,"turn_weight":1,"duration":7.645,"bearings":[178,338,359],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":47.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":45.164,"geometry_index":4610,"location":[6.175373,49.195293]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[172,176,354],"duration":21.973,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":19.758,"geometry_index":4619,"location":[6.176612,49.183225]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.178028,49.177711],"geometry_index":4624,"admin_index":7,"weight":25.477,"is_urban":false,"turn_weight":1,"duration":27.217,"bearings":[169,336,350],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":56.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":54.076,"geometry_index":4628,"location":[6.179953,49.170976]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":5.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.49,"geometry_index":4631,"location":[6.182575,49.156739]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":5.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.668,"geometry_index":4632,"location":[6.182816,49.15533]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":20.527,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":20.52,"geometry_index":4633,"location":[6.183059,49.153915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":12.471,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.465,"geometry_index":4637,"location":[6.184206,49.148331]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[181,356],"duration":3.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.029,"geometry_index":4641,"location":[6.184751,49.14546]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,185],"duration":4.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.91,"geometry_index":4644,"location":[6.184701,49.144612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[14,194],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"geometry_index":4647,"location":[6.184466,49.143609]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 31"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E21","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 21"}],"type":"fork","modifier":"left","text":"A 31 / E 21"},"distanceAlongGeometry":27734.301},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 31"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E21","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 21"}],"type":"fork","modifier":"left","text":"A 31 / E 21"},"distanceAlongGeometry":1609.344}],"destinations":"A 30: Metz, Fameck, Florange","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 30 toward Metz/Fameck/Florange.","modifier":"slight left","bearing_after":70,"bearing_before":66,"location":[6.0476,49.330774]},"speedLimitSign":"vienna","name":"Autoroute de la Vallée de la Fensch","weight_typical":1040.818,"duration_typical":1048.32,"duration":1048.32,"distance":27734.301,"driving_side":"right","weight":1040.818,"mode":"driving","ref":"A 30; E 411","geometry":"kd|a}A_vbpJqCwReMigAsDac@sBa`@s@}NaBg`@cAic@MqP@a_@n@kg@~@yYvDmm@nDa^~Ea]`AwGtHa_@dH}WpKk[rWgn@jI{Rpf@}fAplEinJxh@uiAvf@gnAxQqm@dg@amB|Jg[dLiZ~Ueg@fXea@lp@sq@l_Amo@j_@sW`_@}YnVqUbKcLvIsKzLgQxKuQvKcUxJyUtHuT|GcVdIe_@zGa_@|Fwf@|Ckd@xBel@L_YC_YcDerCYin@n@_g@bAwYtD}d@pBoQtBqOjCgQvKcf@nPmn@fR{n@rNkk@rL{n@fMk}@pKwm@zKii@fOue@lWml@niAkyBtLsXjJcV`KkZdMw`@lLsd@vI}c@fHo`@~Geh@bEac@fH_jAjf@y|NpD_r@rFmq@xDq^jDwWpEaZvGy]|DmSzmBswHvnFk~Sr{@ghD~W{bAlMee@`Qin@h`@{tArlB{rGbJ{Z~b@y|AvOgn@`Oip@tPcz@pGe^rIah@lFg^tJks@jEk^xDa^rDm]J_AvvAk{OtEsg@pCq[fDw\\`CuTpCmUfHig@tD}UzD_UnRa{@vDeOlSyx@~oAajEpTiq@bSwe@tPo^dUu`@tb@im@p\\w[~^a[d{@cc@dh@aMp\\wF|uBuN|{AgMvw@sGrbGkb@x_A_GvkCgRbEYtaCq]xhBwWn]eFlnBaYVEnaEux@zpBoi@n[sIby@iU`gAuPxo@cGbj@iC|oA_Afh@lBjcCvOvhCfRbqDnWd`AbGhk@fAvf@Itc@mBnx@aJ~w@sNtZuIzf@eQvm@gXpbAmi@lh@qYjTwLlb@gWvq@e_@np@_[|q@gUp}@cP~\\iD~UwAn]k@nr@r@~a@lDx_@zEdTzDdh@bMpfBhf@``@lJbb@lG|n@fF`_@dBfo@lBdi@hCbnBbIpw@jI`aBz\\nqAx`@tgErnBd^~MzXlK|a@nMrc@vK~{@pQ`tAlN`{@fDpw@c@t[i@zfC{D~vEqK~fAaCt{@_Cjz@{AxXg@|YaBd`Ay@~tAkDbn@cAtq@u@xrCy@jmBuArwAsBl_@iAhi@yClfBkLz_CeNx_C_HbmByE~`AsChjA{Gfu@qFbl@eFzwAkRng@yHvgA{RzoA{Ur|@qO`uAcYdgAuRbsB}e@pqCqb@liHmgA|nNajAl~AkO`wAaNlwAeNv~@wKfdCgZ~g@yG~mB{Up}AwR~Y{Dh]iDpZcBz`@PtE\\lKr@pPfAf[dEzOfENDzI~Bra@dQri@z]jWtSra@ne@x[z`@|\\~j@pzAh`DhSb_@rHlMdKrP"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 35 miles.","announcement":"Continue for 35 miles.","distanceAlongGeometry":57016.523},{"ssmlAnnouncement":"In 1 mile, Take the exit toward Lyon.","announcement":"In 1 mile, Take the exit toward Lyon.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the exit toward Lyon.","announcement":"In a half mile, Take the exit toward Lyon.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the exit toward Lyon, Paris.","announcement":"Take the exit toward Lyon, Paris.","distanceAlongGeometry":160}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.177813,49.138168],"geometry_index":4659,"admin_index":7,"weight":22.408,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":20.42,"bearings":[43,211,224],"out":1,"in":0,"turn_duration":0.048,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,210],"duration":31.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":34.818,"geometry_index":4671,"location":[6.175667,49.134277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,243],"duration":16.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":18.352,"geometry_index":4693,"location":[6.167711,49.130655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":0.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":0.395,"geometry_index":4702,"location":[6.163202,49.129007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,220],"duration":0.727,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":0.791,"geometry_index":4703,"location":[6.163129,49.128955]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,217],"duration":2.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":2.865,"geometry_index":4704,"location":[6.16299,49.128845]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":20.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":22.215,"geometry_index":4707,"location":[6.162541,49.128419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":1.361,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":1.498,"geometry_index":4716,"location":[6.159919,49.124672]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,189],"duration":6.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":7.443,"geometry_index":4717,"location":[6.159836,49.124403]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,358],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":1.525,"geometry_index":4721,"location":[6.159701,49.12301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,356],"duration":5.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":6.641,"geometry_index":4722,"location":[6.15973,49.122722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,354],"duration":3.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":4.469,"geometry_index":4723,"location":[6.159945,49.121467]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,355],"duration":3.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":3.908,"geometry_index":4724,"location":[6.160063,49.120612]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":0.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":0.283,"geometry_index":4725,"location":[6.160133,49.119866]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[174,179,357],"duration":4.92,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":5.51,"geometry_index":4726,"location":[6.160137,49.119813]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":2.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":3.086,"geometry_index":4728,"location":[6.160297,49.118767]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":10.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":11.824,"geometry_index":4729,"location":[6.160373,49.118192]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":1.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":2.117,"geometry_index":4732,"location":[6.160685,49.115915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,355],"duration":2.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":2.762,"geometry_index":4733,"location":[6.16074,49.1155]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,356],"duration":0.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":0.736,"geometry_index":4735,"location":[6.160801,49.114965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,357],"duration":1.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":0,"weight":1.611,"geometry_index":4736,"location":[6.160812,49.11482]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,183],"duration":9.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":10.863,"geometry_index":4737,"location":[6.160814,49.114506]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.159941,49.112564],"geometry_index":4743,"admin_index":7,"weight":3.727,"is_urban":true,"turn_weight":0.75,"duration":2.656,"bearings":[23,28,215],"out":2,"in":1,"turn_duration":0.011,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,218],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":1.477,"geometry_index":4744,"location":[6.159463,49.112113]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,224],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":8.447,"geometry_index":4746,"location":[6.1592,49.111891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":7,"out":1,"weight":59.125,"geometry_index":4750,"location":[6.157123,49.110843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":3.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.389,"geometry_index":4762,"location":[6.141271,49.104216]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,246],"duration":2.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.217,"geometry_index":4763,"location":[6.140312,49.103904]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.119,"geometry_index":4764,"location":[6.139674,49.103717]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":25.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.297,"geometry_index":4766,"location":[6.135331,49.102414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,240],"duration":36.861,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":37.762,"geometry_index":4771,"location":[6.127878,49.099724]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,236],"duration":10.584,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.824,"geometry_index":4778,"location":[6.116484,49.096166]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,229],"duration":9.385,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.594,"geometry_index":4781,"location":[6.113546,49.094786]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":3.322,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.406,"geometry_index":4786,"location":[6.111183,49.093365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":10.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.543,"geometry_index":4788,"location":[6.1104,49.092815]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,210],"duration":13.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.152,"geometry_index":4794,"location":[6.108242,49.090962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,194],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.18,"geometry_index":4802,"location":[6.106324,49.0881]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":7.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.125,"geometry_index":4805,"location":[6.106058,49.087395]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,181],"duration":2.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.904,"geometry_index":4810,"location":[6.105722,49.085551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.428,"geometry_index":4813,"location":[6.105727,49.084886]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[169,180,355],"duration":12.215,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.188,"geometry_index":4815,"location":[6.105813,49.083863]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,339],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.691,"geometry_index":4821,"location":[6.106967,49.081052]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,337],"duration":16.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":16.678,"geometry_index":4822,"location":[6.107222,49.080667]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,337],"duration":25.172,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":25.162,"geometry_index":4827,"location":[6.109881,49.076984]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,349],"duration":94.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":89.523,"geometry_index":4834,"location":[6.11201,49.071064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.979,"geometry_index":4864,"location":[6.111952,49.047316]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":26.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":23.834,"geometry_index":4865,"location":[6.111896,49.047047]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[172,182,354],"duration":32.551,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":29.277,"geometry_index":4874,"location":[6.111959,49.040396]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.113861,49.031556],"geometry_index":4878,"admin_index":7,"weight":110.621,"is_urban":false,"turn_weight":0.75,"duration":125.574,"bearings":[172,351,352],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,198],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.787,"geometry_index":4901,"location":[6.106317,49.001468]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":32.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":28.791,"geometry_index":4902,"location":[6.106209,49.001254]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.09,"geometry_index":4914,"location":[6.104667,48.993167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":71.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":62.969,"geometry_index":4915,"location":[6.10469,48.992842]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":0.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.617,"geometry_index":4927,"location":[6.104135,48.97455]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,358],"duration":137.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":120.287,"geometry_index":4928,"location":[6.104146,48.974372]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[1,182,184],"duration":28.844,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.953,"geometry_index":4952,"location":[6.112361,48.939934]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.111501,48.93276],"geometry_index":4959,"admin_index":7,"weight":6.914,"is_urban":false,"turn_weight":0.5,"duration":7.133,"bearings":[7,187,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":7.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.01,"geometry_index":4960,"location":[6.111175,48.931035]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[8,187,191],"duration":23.91,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":21.502,"geometry_index":4963,"location":[6.110772,48.929153]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.109905,48.923279],"geometry_index":4967,"admin_index":7,"weight":102.912,"is_urban":false,"turn_weight":1,"duration":113.244,"bearings":[3,183,356],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,202],"duration":20.293,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":18.244,"geometry_index":4993,"location":[6.101296,48.89298]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,197],"duration":26.516,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":23.844,"geometry_index":4996,"location":[6.098404,48.888131]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.096437,48.881461],"geometry_index":5006,"admin_index":7,"weight":85.305,"is_urban":false,"turn_weight":1,"duration":91.16,"bearings":[4,183,348],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[13,192,196],"duration":24.162,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":22.33,"geometry_index":5027,"location":[6.090128,48.858952]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.089029,48.852861],"geometry_index":5037,"admin_index":7,"weight":2.781,"is_urban":false,"turn_weight":1,"duration":1.943,"bearings":[1,180,353],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":0.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.264,"geometry_index":5038,"location":[6.089031,48.852378]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,178],"duration":92.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":82.828,"geometry_index":5039,"location":[6.089031,48.852305]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,330],"duration":0.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.459,"geometry_index":5065,"location":[6.094921,48.829631]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":5.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.793,"geometry_index":5066,"location":[6.095024,48.829521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":2.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.059,"geometry_index":5069,"location":[6.096082,48.828456]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,324],"duration":15.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":14.176,"geometry_index":5071,"location":[6.096567,48.828014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,320],"duration":9.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.295,"geometry_index":5075,"location":[6.100176,48.825085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,321],"duration":13.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.285,"geometry_index":5076,"location":[6.10219,48.823462]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,323],"duration":9.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.707,"geometry_index":5078,"location":[6.105257,48.820895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,326],"duration":3.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.33,"geometry_index":5081,"location":[6.107257,48.818985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,326],"duration":16.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":14.869,"geometry_index":5082,"location":[6.108015,48.818243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,327],"duration":7.143,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.6,"geometry_index":5088,"location":[6.111438,48.814879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":14.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":13.381,"geometry_index":5090,"location":[6.112882,48.813174]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":0.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.271,"geometry_index":5096,"location":[6.113771,48.80929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":11.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.625,"geometry_index":5097,"location":[6.113761,48.809206]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,184],"duration":13.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.287,"geometry_index":5102,"location":[6.113197,48.806078]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":7.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.352,"geometry_index":5107,"location":[6.113204,48.802646]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":3.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.336,"geometry_index":5113,"location":[6.113603,48.800887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,346],"duration":106.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":96.27,"geometry_index":5116,"location":[6.113901,48.799974]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,345],"duration":33.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":30.562,"geometry_index":5164,"location":[6.142734,48.786702]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.201,"geometry_index":5178,"location":[6.144641,48.778513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,186],"duration":6.934,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.566,"geometry_index":5179,"location":[6.144521,48.777931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,187],"duration":1.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.641,"geometry_index":5181,"location":[6.144146,48.776224]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":15.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.643,"geometry_index":5182,"location":[6.144063,48.775799]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,182],"duration":27.236,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.855,"geometry_index":5186,"location":[6.14341,48.772136]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.352,"geometry_index":5194,"location":[6.144362,48.7654]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,347],"duration":35.803,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":34.908,"geometry_index":5195,"location":[6.144392,48.765312]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[143,146,324],"duration":21.527,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":20.982,"geometry_index":5205,"location":[6.152481,48.757113]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.15639,48.752989],"geometry_index":5212,"admin_index":7,"weight":6.551,"is_urban":false,"turn_weight":0.5,"duration":6.217,"bearings":[165,327,340],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,351],"duration":3.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.348,"geometry_index":5216,"location":[6.156812,48.75167]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":5.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.365,"geometry_index":5218,"location":[6.156829,48.750922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,194],"duration":4.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.035,"geometry_index":5221,"location":[6.156607,48.74974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,203],"duration":5.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.451,"geometry_index":5223,"location":[6.156215,48.748883]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,209],"duration":11.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":11.055,"geometry_index":5226,"location":[6.155457,48.747809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,202],"duration":7.051,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.852,"geometry_index":5230,"location":[6.153684,48.745643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,191],"duration":21.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":21.229,"geometry_index":5234,"location":[6.152946,48.744271]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,336],"duration":16.139,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":15.713,"geometry_index":5242,"location":[6.153981,48.739908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":24.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":24.285,"geometry_index":5246,"location":[6.156355,48.736824]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,334],"duration":7.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.633,"geometry_index":5255,"location":[6.158831,48.731745]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.160248,48.730357],"geometry_index":5260,"admin_index":7,"weight":0.957,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.012,"bearings":[135,322],"out":0,"in":1,"turn_duration":0.03,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,315],"duration":2.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.824,"geometry_index":5261,"location":[6.160477,48.730205]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,310],"duration":12.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.861,"geometry_index":5264,"location":[6.161189,48.72979]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":2.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.299,"geometry_index":5270,"location":[6.164637,48.72846]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,297],"duration":2.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.42,"geometry_index":5271,"location":[6.165336,48.728228]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,304],"duration":46.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":44.969,"geometry_index":5273,"location":[6.166033,48.727945]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":15.17,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.162,"geometry_index":5298,"location":[6.166161,48.719553]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":2.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.822,"geometry_index":5306,"location":[6.163251,48.716975]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,216],"duration":5.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.09,"geometry_index":5308,"location":[6.162733,48.716455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":35.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":35.199,"geometry_index":5312,"location":[6.161677,48.715595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":43.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":43.785,"geometry_index":5366,"location":[6.150434,48.71352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,224],"duration":1.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.756,"geometry_index":5387,"location":[6.141035,48.707414]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[44,225,234],"duration":4.832,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.826,"geometry_index":5388,"location":[6.140669,48.707165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,228],"duration":1.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.139,"geometry_index":5390,"location":[6.139448,48.706375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,231],"duration":16.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.537,"geometry_index":5391,"location":[6.139194,48.706225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":14.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.883,"geometry_index":5396,"location":[6.134065,48.70419]},{"bearings":[62,242],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"geometry_index":5400,"location":[6.129201,48.702554]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Lyon"},{"type":"text","text":"/"},{"type":"text","text":"Paris"}],"type":"off ramp","modifier":"right","text":"Lyon / Paris"},"distanceAlongGeometry":57046.523},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Lyon"},{"type":"text","text":"/"},{"type":"text","text":"Paris"}],"type":"off ramp","modifier":"right","text":"Lyon / Paris"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 31/E 21/E 23.","modifier":"slight left","bearing_after":211,"bearing_before":223,"location":[6.177813,49.138168]},"speedLimitSign":"vienna","name":"","weight_typical":2017.816,"duration_typical":2119.434,"duration":2119.533,"distance":57046.523,"driving_side":"right","weight":2017.906,"mode":"driving","ref":"A 31; E 21; E 23","geometry":"o~cv|Ai`axJrMrLdKzKnObNtKvHvKzGpNpHzNtFf_@dKda@zIr`@dJzUhI`S`KzRfPpHtHxLlO`MdSzH`PfI`TvEtOjEbQ~D|RjDvSzG`g@hE`[xE~YtH|^|F~TjFdPbJ`U`KbUpR~`@nKhVtL|[nGjV~B|IbM~p@bOv~@|Mdq@`Kl_@`KvY~JzTvHvM|FbJfBpCzEtGlBfChNvOzF`FxF~EnM|J~r@lg@pu@zi@jWdQvWvOvRzI~RtHlObExOdDhSbDlT`BfUd@`V]~Py@lmAmLlt@kFrm@kChBGlq@{F|McA|b@wCrl@iErr@}E`l@gE|XmB|\\qBnBG`HUrRCvM^jMnAdRxDzQ`FbXjM`\\xVd[z\\lG~HlDlEfXpd@vLdYzKd[rLzd@hC`KzbA|oEhU``AhVh~@XfApx@dfCnv@|jBn}A~rDx]|bAhd@~{AtDvNdMhf@nR|z@tJzf@n_@~mB|o@l_Dp@`Dn_@n`Bd_@rzA|rAd}E|Plp@t[zkA|b@|nBtUfjA`{@~}E`VllAfVdeAt[llAvRlk@nRdk@~m@~}AfT|d@zOb\\zOzZvOtY`P`YvRr[rMhSvEjHhPjUzPvUt]fb@nUhWtSxSvZxWxWnSlMjIpYjQ|YnOxQjIzQrHtShH`UrGdH~AxK~Cr^~GnM`B~XpCrQjAnW~@zFDlPHfOYfd@u@tYuBdr@oM~ZyHnXqIjX_KpT_J`WgM`W}Nx]kUtg@e]t~@mm@lcAaq@pYcP|z@s_@xZwJhr@mPnk@wMj}@}Rhv@uNvcA{SpxBa]fs@wDjr@Mxd@rAld@nDpfBzWzvAb[fPhDfP~Cna@pGjZhDdZ`ChZzAru@`@lUg@fUy@hUcB`U{BxZwDvZeFrv@uO~fBsa@n_BqVnyAcGnkAtD~XbC`[~Cpt@xJ`oA~Ql^|ExOnB``AtJhg@dDph@bBnWh@hXRdZKbZ_@~mBiNrt@eHfoEqj@xSyCzz@wLpfGww@ztEgm@zaEei@zjBwPn~A{HbgBgAfu@fDxr@~CnbB|Qzz@vNpv@xPrv@hSvv@pV~_An^r_A~b@hd@~Vxz@le@hw@bf@hxAx}@pdBlhAt{BtxA`mAfs@pb@xVrRbKjLvEnf@hSzb@fOt_@pLx`@tJp_@`Ibv@|K`k@bGre@tC|c@pBpuAoCbj@ZpYe@hSm@`vBoJthDuArnB`DhoBvH|v@zC~|@xFpxAbJrpApGvlAzC~nB|AzoAgBxeA{AbJU|}AcHl`BoLfwAkOfmCga@lr@uM~q@oMzvAs]~iA}[xzCg`A~xCu~@pg@wOb}B_o@f~Ai_@b}Ak[jrBk\\zhBqUtMgAt}AyObnB}Ln}@eDbnB}EbnBw@zcAr@|ABtjBzDlmBnJlc@xBtgBvNbMx@pj@vGl^fExjBjSfm@jG|^~Flf@xGhtCl[lcAnHfeBdKbn@`CjUr@zq@~A`JTn~@hA`~A|A~bC~BlyAdD|tAjFniAnHf`@fCleCbVhxBzZ~t@pLjnDrt@rm@bPh`A~VptAlb@bfBxl@toAbg@pyAtn@`eBvy@bDbBpn@|[fu@z_@bWnOpk@r[twDbrB|o@~ZldArd@nc@`PrMtFfc@dNze@jNb^fIll@zMj|@fOlu@xJv{@~Hnd@lCbnAdE~v@lBp_@XpUXlX^vi@fAveAxD|v@|Gbe@xFb_Bh\\zbCbp@|mA~[jq@zQtaCzo@p}Bxm@rUvFh|Afb@lpAd]hl@~OnlAb[xo@|Oll@xMzm@vLf`@jGzv@`KxZbDtZdCvb@bC|b@nBn`@t@pe@`@d]CpC?bU_@j\\m@ba@{Axc@mBdfAqHxbKcz@`hDmYtaDkW`a@qDla@qEdL{A|YgExYuFtU_ElV}Fdl@qPpp@}Ule@eSpWiMzU}LnYgPfX{P~QaMvRoNv]qXnSyPzEmEn`@s^zZ{[dDsDhS_UhFiGtQiTt_@af@lx@afAfiAc}AldB{|BxvBopCrg@em@bRyTfvAayA~KcLjm@kn@rF}FlBqBjn@_p@jdAsfAx^s^rq@eq@ly@ov@bo@wa@jLuHx`Ak]p_@oHhd@aGlq@aBfj@bDfDRxQdAndA~KPBjrAtOfVfBvz@dEjn@jA|g@cApe@sAzZgCnGk@jLgAtMyAtNyA|WsDv_@aIt^wH~QiEjEqAdqA}_@`fAo^hg@cQzYaLrd@mRpUsLhX_Qf`@aZ~a@qa@zRaVlRcY~W}c@`Xuk@tQ}f@zPki@jKca@lJcd@hF{ZbDmT|DkZbBoRhB{QpB}WtCch@rB}t@Ram@cAi~@kGqiAgHyu@iKo_AmLkqA_Fkt@aBum@[ue@h@}q@nDyv@|Gyr@vIqn@tLok@dQcm@dPcc@jWwi@p^cl@tb@ee@dHoGn\\{Wtq@i\\bcAi[b_Bma@bvBig@leAmUpp@_Nph@sGhNsA`Mm@fPi@fNArKEzLNnJf@v[dCjEh@jc@nF`VxBrrArRpYdDraB|Unh@~Enz@zFh\\~Alb@z@lDEtnAkA|rAwBzs@cHpv@iLt{@cOjn@oOnD{@~I{Bzl@gWva@kWf^g[dZg[|e@_i@piBesBtbAkkAhx@o}@zzAobBd{AcgBvFaHlPwR~d@ee@fm@qf@`QkK`e@gTt^gLbSqDbCc@nYmEr]aAbO^jCFt[bBxg@nI|XvHrZvMhYtO~OhKxVjQp_@~Y`u@rl@b^dXrP~KjXdN~WvLjPdG~P~GnTbElVzC~_@nAps@uCbSgDjZmIzc@aRxx@we@dbAes@zgAsw@xe@q]zL_H~TgMt_@wRp^_NzbBad@tn@oQz^iOhP_IpOqIzPiL`VeRnQkQ|NoP~LiNfNeQnHiMvKuShEaJzEwKjIsS~ImUlOof@|Nej@tSu~@tGaYnMuj@lJ_]fEqLhJaXjRec@pQwZ~RsXvZi[v[aWxXiNhYyKpOiDfPiCvZuCh[@pWhBzWdEvX`I~W`LlIlE~KlHhLrI~J|I~HjHbOtPpHrI`E~E`aAruAh^ph@pNjRzMzPdKfMtKpLbIzI~IdJjt@dt@jBjBb\\~[dMxNtJrLfPrTrI|MnHdLzCnGzCzGvCfGvChHpGdPjGdRnF`RvEfS`EvR|C`QpAfIhAhIdAjIz@vI~@tIj@`Iv@vIl@rIb@vIh@jJ^xIRfITbKPhJRvIPhJFfIBxJH~WVx`@Jz_@Xlj@NzIL~IPpJ\\rIVnJb@hI^zId@xJl@lH?@t@pI|@fJn@rI`AhHfAzJpA`IrAbI|AtIjAzHdBzH`B`H~AhInBvHhBfHvB|HxBjG~BjHrBdGjC|GfCdGnCbGnChGpC`GxDrHtBnExCvFt_@tp@xn@pbAvd@jv@vgAfgB`xAd{B`g@tv@pNzUvU|`@rYji@jHzNpZzq@~Wbx@pUjy@|Sjz@b^x}AfGbXzgA~yEhFzSxL~e@jYhiAxXjcAj\\jgAx^xhAre@rpAjInS|Qpa@rP``@vPt_@tOr\\rShb@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 129 miles.","announcement":"Continue for 129 miles.","distanceAlongGeometry":208106.047},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 31.","announcement":"In 2 miles, Keep left to take A 31.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 31.","announcement":"In a half mile, Keep left to take A 31.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 31 toward Lyon, Beaune.","announcement":"Keep left to take A 31 toward Lyon, Beaune.","distanceAlongGeometry":260}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[6.120301,48.69849],"geometry_index":5411,"admin_index":7,"weight":10.027,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":10.568,"bearings":[48,227,238],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,242],"duration":13.99,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":1,"weight":13.291,"geometry_index":5416,"location":[6.117565,48.697044]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,244],"duration":16.281,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":1,"weight":15.061,"geometry_index":5418,"location":[6.113454,48.695612]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.108303,48.694589],"geometry_index":5426,"admin_index":7,"weight":16.096,"is_urban":false,"turn_weight":6,"duration":11.227,"bearings":[81,87,267],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.955,"geometry_index":5428,"location":[6.104281,48.694456]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":3.721,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.342,"geometry_index":5429,"location":[6.103898,48.694442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":62.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":56.191,"geometry_index":5430,"location":[6.102568,48.694399]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":108.322,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":97.482,"geometry_index":5439,"location":[6.078529,48.693569]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":75.279,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":65.863,"geometry_index":5468,"location":[6.036548,48.691117]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,269],"duration":43.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":37.656,"geometry_index":5488,"location":[6.005556,48.688403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":16.596,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.93,"geometry_index":5498,"location":[5.98771,48.689128]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[77,90,270],"duration":9.793,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":2,"weight":8.807,"geometry_index":5503,"location":[5.981323,48.68933]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":41.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":36.965,"geometry_index":5506,"location":[5.97725,48.689275]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,251],"duration":32.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":29.426,"geometry_index":5520,"location":[5.960491,48.687252]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,241,245],"duration":44.963,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":40.449,"geometry_index":5533,"location":[5.948016,48.683725]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[77,82,262],"duration":6.373,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":2,"weight":5.889,"geometry_index":5548,"location":[5.932802,48.67996]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,260],"duration":16.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.896,"geometry_index":5550,"location":[5.930534,48.679756]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":1.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.619,"geometry_index":5562,"location":[5.925196,48.678387]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[54,231,239],"duration":8.785,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.326,"geometry_index":5564,"location":[5.924703,48.678153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,217],"duration":1.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.115,"geometry_index":5570,"location":[5.922535,48.676749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,214],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.801,"geometry_index":5571,"location":[5.922286,48.67653]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":10.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.113,"geometry_index":5572,"location":[5.9219,48.676155]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,203],"duration":1.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.496,"geometry_index":5579,"location":[5.920286,48.673934]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.920065,48.673582],"geometry_index":5580,"admin_index":7,"weight":2.033,"is_urban":false,"turn_weight":1,"duration":1.107,"bearings":[15,23,202],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":5.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.363,"geometry_index":5581,"location":[5.919917,48.673337]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,209],"duration":9.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.18,"geometry_index":5583,"location":[5.919125,48.672107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":0.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.588,"geometry_index":5586,"location":[5.917407,48.67012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":28.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.797,"geometry_index":5587,"location":[5.917296,48.669993]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":2.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.48,"geometry_index":5595,"location":[5.912882,48.664291]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[25,205,222],"duration":32.559,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.924,"geometry_index":5596,"location":[5.912497,48.663754]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.905293,48.657856],"geometry_index":5610,"admin_index":7,"weight":9.271,"is_urban":false,"turn_weight":1,"duration":8.715,"bearings":[45,57,241],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,252],"duration":2.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.975,"geometry_index":5613,"location":[5.902401,48.656932]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,255],"duration":2.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.539,"geometry_index":5614,"location":[5.901671,48.656777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,258],"duration":7.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.699,"geometry_index":5615,"location":[5.900732,48.656607]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,265],"duration":4.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.689,"geometry_index":5618,"location":[5.898184,48.656325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,266],"duration":2.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.186,"geometry_index":5619,"location":[5.896387,48.656226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":3.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.242,"geometry_index":5620,"location":[5.89555,48.656183]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,264],"duration":2.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.729,"geometry_index":5621,"location":[5.894321,48.65612]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,262],"duration":1.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.188,"geometry_index":5622,"location":[5.893312,48.656054]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[82,259,263],"duration":19.627,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":18.135,"geometry_index":5623,"location":[5.892872,48.656012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":11.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.822,"geometry_index":5628,"location":[5.886491,48.654486]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[60,230,242],"duration":23.289,"turn_duration":0.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":21.5,"geometry_index":5631,"location":[5.882837,48.653303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.880053,48.648603],"geometry_index":5643,"admin_index":7,"weight":7.648,"is_urban":false,"turn_weight":0.75,"duration":7.477,"bearings":[0,179,353],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":51.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":46.385,"geometry_index":5644,"location":[5.880125,48.646779]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":0.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.199,"geometry_index":5653,"location":[5.881587,48.634237]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,348],"duration":4.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.918,"geometry_index":5654,"location":[5.881604,48.634182]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":5.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.973,"geometry_index":5656,"location":[5.881888,48.633271]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,348],"duration":0.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.27,"geometry_index":5657,"location":[5.882265,48.632112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,348],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.863,"geometry_index":5658,"location":[5.882279,48.632067]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":12.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.07,"geometry_index":5659,"location":[5.882324,48.631929]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[167,210,348],"duration":9.457,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.506,"geometry_index":5661,"location":[5.882888,48.630124]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,347],"duration":2.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.822,"geometry_index":5662,"location":[5.883014,48.629753]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.883041,48.629672],"geometry_index":5663,"admin_index":7,"weight":20.727,"is_urban":false,"toll_collection":{"name":"Péage de Gye","type":"toll_booth"},"turn_weight":15,"duration":6.363,"bearings":[167,348],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[167,208,347],"duration":1.07,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.957,"geometry_index":5664,"location":[5.883266,48.629007]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[167,186,347],"duration":9.289,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.354,"geometry_index":5665,"location":[5.883318,48.628853]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,347],"duration":7.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.066,"geometry_index":5667,"location":[5.883961,48.626976]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.884483,48.625386],"geometry_index":5668,"admin_index":7,"weight":131.143,"is_urban":false,"turn_weight":1,"duration":148.74,"bearings":[168,342,348],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,187],"duration":6.707,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.863,"geometry_index":5715,"location":[5.887726,48.585566]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":14.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.309,"geometry_index":5717,"location":[5.88738,48.583775]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,187],"duration":0.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.346,"geometry_index":5722,"location":[5.886546,48.580029]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":42.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":37.242,"geometry_index":5723,"location":[5.886528,48.579929]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":40.838,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":35.717,"geometry_index":5745,"location":[5.888362,48.566277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,346],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.791,"geometry_index":5759,"location":[5.892415,48.553325]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,347],"duration":42.764,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":38.48,"geometry_index":5760,"location":[5.892771,48.552343]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[143,151,323],"duration":2.992,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.76,"geometry_index":5775,"location":[5.902251,48.540092]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,323],"duration":0.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.848,"geometry_index":5776,"location":[5.903006,48.539439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,324],"duration":13.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.549,"geometry_index":5777,"location":[5.903223,48.539241]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.906562,48.536332],"geometry_index":5780,"admin_index":7,"weight":34.352,"is_urban":false,"turn_weight":1,"duration":37.064,"bearings":[145,315,322],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,340],"duration":1.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.207,"geometry_index":5789,"location":[5.913717,48.527489]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,341],"duration":36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":31.5,"geometry_index":5790,"location":[5.913892,48.527144]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.688,"geometry_index":5806,"location":[5.915157,48.517374]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,190],"duration":12.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":11.096,"geometry_index":5807,"location":[5.915115,48.517162]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[10,191,197],"duration":36.676,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":32.086,"geometry_index":5808,"location":[5.914187,48.513705]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.910912,48.503605],"geometry_index":5817,"admin_index":7,"weight":4.205,"is_urban":false,"turn_weight":1,"duration":3.689,"bearings":[10,18,193],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,196],"duration":70.51,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":61.689,"geometry_index":5819,"location":[5.910522,48.502605]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215],"duration":0.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.199,"geometry_index":5833,"location":[5.898806,48.484387]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,214],"duration":131.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":115.363,"geometry_index":5834,"location":[5.898753,48.484337]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,187],"duration":2.361,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.061,"geometry_index":5878,"location":[5.867389,48.448738]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":0.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.682,"geometry_index":5879,"location":[5.867248,48.447981]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,188],"duration":61.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":53.771,"geometry_index":5880,"location":[5.867208,48.447768]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[7,185,190],"duration":25.891,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":22.635,"geometry_index":5892,"location":[5.860005,48.431017]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.860493,48.423762],"geometry_index":5898,"admin_index":7,"weight":41.812,"is_urban":false,"turn_weight":1,"duration":46.662,"bearings":[167,339,349],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,331],"duration":49.361,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":43.168,"geometry_index":5907,"location":[5.86692,48.411112]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":23.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":20.707,"geometry_index":5925,"location":[5.880577,48.400629]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":38.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":33.855,"geometry_index":5934,"location":[5.879921,48.393909]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,351],"duration":8.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.533,"geometry_index":5945,"location":[5.881923,48.382974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,185],"duration":0.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.492,"geometry_index":5949,"location":[5.881997,48.380512]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,187],"duration":15.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":13.166,"geometry_index":5950,"location":[5.881975,48.380353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,208],"duration":103.209,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":90.301,"geometry_index":5955,"location":[5.880277,48.376132]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,216],"duration":1.467,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.301,"geometry_index":5991,"location":[5.858204,48.350608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,214],"duration":0.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.873,"geometry_index":5992,"location":[5.857827,48.350263]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,212],"duration":33.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.281,"geometry_index":5993,"location":[5.85759,48.35003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":40.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":36.363,"geometry_index":6006,"location":[5.853262,48.339671]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":1.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.223,"geometry_index":6019,"location":[5.856469,48.326806]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,186],"duration":50.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":45.791,"geometry_index":6020,"location":[5.856439,48.326423]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,355],"duration":6.621,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.1,"geometry_index":6029,"location":[5.854659,48.312183]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,351],"duration":0.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.607,"geometry_index":6030,"location":[5.855077,48.310347]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,352],"duration":10.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.02,"geometry_index":6031,"location":[5.855118,48.310159]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,351],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.701,"geometry_index":6032,"location":[5.855841,48.307146]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":11.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.225,"geometry_index":6033,"location":[5.855899,48.306934]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":0.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.818,"geometry_index":6035,"location":[5.856727,48.303841]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[170,175,348],"duration":17.785,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":16.443,"geometry_index":6036,"location":[5.856803,48.303598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.857556,48.298612],"geometry_index":6039,"admin_index":7,"weight":24.074,"is_urban":false,"turn_weight":1,"duration":24.955,"bearings":[181,353,357],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":67.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":60.613,"geometry_index":6044,"location":[5.85654,48.291626]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,338],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.746,"geometry_index":6059,"location":[5.858418,48.272968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":1.627,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.457,"geometry_index":6060,"location":[5.85855,48.272756]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[156,173,337],"duration":33.949,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":30.549,"geometry_index":6061,"location":[5.858803,48.27235]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.863896,48.26351],"geometry_index":6070,"admin_index":7,"weight":67.703,"is_urban":false,"turn_weight":1,"duration":76.24,"bearings":[167,329,346],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,184],"duration":0.969,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.828,"geometry_index":6092,"location":[5.861016,48.242189]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":0.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.547,"geometry_index":6093,"location":[5.860985,48.241919]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,182],"duration":82.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":74.096,"geometry_index":6094,"location":[5.860965,48.241737]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241,244],"duration":13.527,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.494,"geometry_index":6116,"location":[5.84109,48.221873]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.836065,48.220051],"geometry_index":6118,"admin_index":7,"weight":1.242,"is_urban":false,"turn_weight":1,"duration":0.281,"bearings":[53,62,241],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.211,"geometry_index":6119,"location":[5.83597,48.220016]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":13.158,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.17,"geometry_index":6120,"location":[5.835495,48.219844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":10.201,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.43,"geometry_index":6121,"location":[5.83061,48.218071]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,238],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.936,"geometry_index":6125,"location":[5.826838,48.216673]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":61.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":55.453,"geometry_index":6126,"location":[5.826471,48.216521]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,242],"duration":85.699,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":77.111,"geometry_index":6148,"location":[5.801985,48.205418]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,246],"duration":1.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.285,"geometry_index":6169,"location":[5.766819,48.190967]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,244],"duration":30.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":27.848,"geometry_index":6170,"location":[5.766254,48.1908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":1.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.381,"geometry_index":6177,"location":[5.755029,48.185937]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":67.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":60.895,"geometry_index":6178,"location":[5.754522,48.185653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,238],"duration":77.1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":69.369,"geometry_index":6187,"location":[5.729033,48.175811]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,224],"duration":1.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.439,"geometry_index":6196,"location":[5.70288,48.161624]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,224],"duration":46.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":41.781,"geometry_index":6197,"location":[5.702393,48.161283]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[29,206,210],"duration":22.814,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.51,"geometry_index":6204,"location":[5.690915,48.150486]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.686418,48.144675],"geometry_index":6207,"admin_index":7,"weight":9.043,"is_urban":false,"turn_weight":1,"duration":8.945,"bearings":[24,30,213],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,214],"duration":0.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.508,"geometry_index":6209,"location":[5.68438,48.142531]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":1.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.369,"geometry_index":6210,"location":[5.684241,48.142394]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,216],"duration":124.779,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":112.283,"geometry_index":6211,"location":[5.683859,48.142039]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":0.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.307,"geometry_index":6254,"location":[5.657268,48.111101]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,211],"duration":44.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":39.877,"geometry_index":6255,"location":[5.657199,48.111018]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,213],"duration":0.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.312,"geometry_index":6276,"location":[5.644058,48.099668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,210],"duration":3.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.408,"geometry_index":6277,"location":[5.643976,48.099584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,208],"duration":173.873,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":156.467,"geometry_index":6278,"location":[5.643159,48.098645]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,211],"duration":0.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.223,"geometry_index":6332,"location":[5.585004,48.060755]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":25.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":22.543,"geometry_index":6333,"location":[5.584948,48.060692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,207],"duration":0.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.223,"geometry_index":6341,"location":[5.579469,48.054223]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,209],"duration":3.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.051,"geometry_index":6342,"location":[5.579418,48.054155]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,210],"duration":132.877,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":116.262,"geometry_index":6344,"location":[5.578687,48.053266]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":0.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.189,"geometry_index":6384,"location":[5.538259,48.024365]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":37.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":32.744,"geometry_index":6385,"location":[5.538183,48.024327]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,218],"duration":43.158,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":38.826,"geometry_index":6399,"location":[5.52573,48.017023]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.289,"geometry_index":6417,"location":[5.517122,48.005695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,194],"duration":6.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.266,"geometry_index":6418,"location":[5.517089,48.005612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":22.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.4,"geometry_index":6421,"location":[5.516378,48.003679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,189],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.027,"geometry_index":6425,"location":[5.514099,47.997179]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,193],"duration":3.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.719,"geometry_index":6426,"location":[5.514098,47.997175]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194,241],"duration":6.322,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.684,"geometry_index":6427,"location":[5.513795,47.996311]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.395,"geometry_index":6430,"location":[5.513124,47.994573]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":5.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.334,"geometry_index":6431,"location":[5.513071,47.994452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.512318,47.992813],"geometry_index":6435,"admin_index":7,"weight":42.496,"is_urban":false,"turn_weight":1,"duration":46.115,"bearings":[4,19,200],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.359,"geometry_index":6453,"location":[5.501386,47.979842]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[34,212,259],"duration":19.967,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.455,"geometry_index":6454,"location":[5.500668,47.979122]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.496826,47.974345],"geometry_index":6461,"admin_index":7,"weight":102.74,"is_urban":false,"turn_weight":1,"duration":116.281,"bearings":[14,26,206],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":11.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.545,"geometry_index":6538,"location":[5.454834,47.959526]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,251],"duration":0.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.266,"geometry_index":6552,"location":[5.44995,47.958978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,250],"duration":35.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":32.051,"geometry_index":6553,"location":[5.449831,47.95895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,253],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.281,"geometry_index":6592,"location":[5.435303,47.952936]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,255],"duration":1.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.455,"geometry_index":6593,"location":[5.435177,47.95291]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,257],"duration":22.98,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.676,"geometry_index":6594,"location":[5.434486,47.952788]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,289],"duration":50.896,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":45.799,"geometry_index":6613,"location":[5.424522,47.953026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,277],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.221,"geometry_index":6641,"location":[5.403546,47.958048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,278],"duration":40.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":36.049,"geometry_index":6642,"location":[5.403437,47.958057]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,254],"duration":0.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.111,"geometry_index":6668,"location":[5.385818,47.957563]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,255],"duration":46.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":40.707,"geometry_index":6669,"location":[5.385765,47.957553]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,263],"duration":0.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.137,"geometry_index":6698,"location":[5.366322,47.953914]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,264],"duration":95.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":83.186,"geometry_index":6699,"location":[5.366249,47.953908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,274],"duration":45.967,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":40.215,"geometry_index":6773,"location":[5.325644,47.948594]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[60,236,244],"duration":19.135,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.199,"geometry_index":6802,"location":[5.305944,47.945506]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,225],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.225,"geometry_index":6814,"location":[5.299247,47.94197]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,226],"duration":0.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.789,"geometry_index":6815,"location":[5.299172,47.94192]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.298901,47.941742],"geometry_index":6816,"admin_index":7,"weight":12.604,"is_urban":false,"turn_weight":1,"duration":12.916,"bearings":[32,46,223],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,212],"duration":4.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.127,"geometry_index":6824,"location":[5.295379,47.938818]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,213],"duration":5.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.748,"geometry_index":6827,"location":[5.294308,47.937726]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,213],"duration":8.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.932,"geometry_index":6829,"location":[5.293076,47.936444]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,213],"duration":5.129,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.609,"geometry_index":6832,"location":[5.291014,47.9343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,213],"duration":2.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.402,"geometry_index":6834,"location":[5.289814,47.933054]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[33,212,222],"duration":14.283,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.848,"geometry_index":6835,"location":[5.28919,47.932409]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.285617,47.929051],"geometry_index":6841,"admin_index":7,"weight":3.941,"is_urban":false,"turn_weight":0.5,"duration":3.842,"bearings":[31,41,219],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":0.158,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.143,"geometry_index":6844,"location":[5.284572,47.928234]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,222],"duration":7.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.996,"geometry_index":6845,"location":[5.284522,47.928198]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,230],"duration":0.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.113,"geometry_index":6849,"location":[5.282231,47.926629]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,228],"duration":7.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.703,"geometry_index":6850,"location":[5.282194,47.926608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.225,"geometry_index":6853,"location":[5.279751,47.92521]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,232],"duration":31.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":28.486,"geometry_index":6854,"location":[5.27967,47.925166]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,258],"duration":0.158,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.143,"geometry_index":6876,"location":[5.266018,47.920669]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":20.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.965,"geometry_index":6877,"location":[5.265953,47.92066]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,267],"duration":4.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.242,"geometry_index":6887,"location":[5.258336,47.919894]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,267],"duration":4.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.992,"geometry_index":6889,"location":[5.256511,47.919843]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":28.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.137,"geometry_index":6890,"location":[5.254795,47.919783]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":31.23,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":28.102,"geometry_index":6896,"location":[5.244008,47.91938]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":8.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.828,"geometry_index":6902,"location":[5.232281,47.918975]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[85,262,270],"duration":1.617,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.438,"geometry_index":6907,"location":[5.229013,47.91884]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,260],"duration":20.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":18.256,"geometry_index":6909,"location":[5.228342,47.918772]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,206],"duration":2.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.424,"geometry_index":6931,"location":[5.221626,47.91543]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.422,"geometry_index":6933,"location":[5.22118,47.914716]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,196],"duration":31.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":28.434,"geometry_index":6934,"location":[5.221109,47.914588]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.223035,47.90568],"geometry_index":6965,"admin_index":7,"weight":18.371,"is_urban":false,"turn_weight":1,"duration":19.314,"bearings":[3,176,347],"out":1,"in":2,"turn_duration":0.014,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":3.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.865,"geometry_index":6966,"location":[5.223686,47.899432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,356],"duration":129.967,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":113.715,"geometry_index":6967,"location":[5.223792,47.898399]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":120.426,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":105.355,"geometry_index":6999,"location":[5.226191,47.857211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.572,"geometry_index":7029,"location":[5.224257,47.819343]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,186,199],"duration":24.002,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":21.584,"geometry_index":7030,"location":[5.224213,47.819138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":5.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.307,"geometry_index":7042,"location":[5.223715,47.811372]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.223837,47.809663],"geometry_index":7044,"admin_index":7,"weight":45.074,"is_urban":false,"turn_weight":1,"duration":48.994,"bearings":[175,346,357],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,188],"duration":2.119,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.898,"geometry_index":7058,"location":[5.224195,47.795516]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,187],"duration":3.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.736,"geometry_index":7059,"location":[5.224077,47.794914]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[7,189,206],"duration":1.219,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.09,"geometry_index":7060,"location":[5.223906,47.79404]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":11.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.027,"geometry_index":7061,"location":[5.223823,47.793691]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.117,"geometry_index":7063,"location":[5.222908,47.79053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":6.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.559,"geometry_index":7064,"location":[5.22278,47.790185]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.221967,47.78826],"geometry_index":7067,"admin_index":7,"weight":8.352,"is_urban":false,"turn_weight":0.5,"duration":8.73,"bearings":[3,17,197],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,205],"duration":241.236,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":217.105,"geometry_index":7071,"location":[5.220463,47.785617]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,193],"duration":10.959,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.844,"geometry_index":7143,"location":[5.190145,47.718227]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,189],"duration":33.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.455,"geometry_index":7144,"location":[5.189,47.71476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,185],"duration":31.008,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":27.113,"geometry_index":7148,"location":[5.187026,47.703866]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192,206],"duration":30.561,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.721,"geometry_index":7156,"location":[5.185184,47.693899]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.181026,47.685364],"geometry_index":7166,"admin_index":7,"weight":14.881,"is_urban":false,"turn_weight":1,"duration":15.885,"bearings":[8,22,202],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.242,"geometry_index":7171,"location":[5.178453,47.681026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":7.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.623,"geometry_index":7172,"location":[5.178412,47.680948]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":110.277,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":96.486,"geometry_index":7175,"location":[5.177362,47.678854]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,351],"duration":47.25,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":41.338,"geometry_index":7218,"location":[5.17939,47.643563]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":150,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":131.25,"geometry_index":7241,"location":[5.17924,47.628306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":48.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":43.561,"geometry_index":7293,"location":[5.202273,47.600334]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[166,175,345],"duration":3.646,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.275,"geometry_index":7311,"location":[5.208661,47.590404]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":12.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.109,"geometry_index":7313,"location":[5.208956,47.589609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,352],"duration":16.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.92,"geometry_index":7319,"location":[5.209955,47.586004]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,183],"duration":2.52,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.26,"geometry_index":7327,"location":[5.210342,47.581098]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.210292,47.580357],"geometry_index":7328,"admin_index":8,"weight":10.277,"is_urban":false,"turn_weight":1,"duration":10.314,"bearings":[3,184,353],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.006,"geometry_index":7333,"location":[5.209784,47.577367]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,191],"duration":41.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.453,"geometry_index":7334,"location":[5.209701,47.577046]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":36.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":31.527,"geometry_index":7350,"location":[5.20273,47.565916]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":0.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.557,"geometry_index":7362,"location":[5.197741,47.556062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":24.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.053,"geometry_index":7364,"location":[5.197712,47.555871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":10.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.582,"geometry_index":7370,"location":[5.197659,47.548678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":3.188,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.861,"geometry_index":7372,"location":[5.197974,47.545408]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[176,183,356],"duration":3.307,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.971,"geometry_index":7373,"location":[5.198083,47.544457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":7.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.975,"geometry_index":7374,"location":[5.198192,47.543473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":0.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.326,"geometry_index":7376,"location":[5.19844,47.541199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,356],"duration":0.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.072,"geometry_index":7377,"location":[5.198451,47.541094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":5.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.699,"geometry_index":7378,"location":[5.198452,47.541079]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":7.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.756,"geometry_index":7379,"location":[5.198637,47.539503]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.198821,47.537771],"geometry_index":7381,"admin_index":8,"weight":22.598,"is_urban":false,"turn_weight":0.5,"duration":25.264,"bearings":[177,341,356],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":45.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":41.023,"geometry_index":7388,"location":[5.198982,47.529585]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,192],"duration":1.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.467,"geometry_index":7399,"location":[5.196511,47.514907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":33.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":30.113,"geometry_index":7400,"location":[5.196365,47.514443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":2.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.318,"geometry_index":7405,"location":[5.192644,47.504837]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":16.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.953,"geometry_index":7406,"location":[5.192301,47.504127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.221,"geometry_index":7409,"location":[5.190028,47.499524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":40.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.227,"geometry_index":7410,"location":[5.189998,47.499455]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,356],"duration":63.764,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":55.777,"geometry_index":7418,"location":[5.18852,47.487925]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,208],"duration":1.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.314,"geometry_index":7438,"location":[5.186141,47.469873]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209],"duration":19.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.244,"geometry_index":7439,"location":[5.185845,47.469492]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":102.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":89.348,"geometry_index":7442,"location":[5.181277,47.464586]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":0.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.582,"geometry_index":7458,"location":[5.166873,47.436617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":21.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":19.152,"geometry_index":7459,"location":[5.166888,47.43643]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":18.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":16.523,"geometry_index":7463,"location":[5.167849,47.431701]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[161,173,341],"duration":52.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":47.16,"geometry_index":7468,"location":[5.169476,47.427732]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.175406,47.416684],"geometry_index":7479,"admin_index":8,"weight":64.936,"is_urban":false,"turn_weight":1,"duration":71.059,"bearings":[164,336,344],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,358],"duration":200.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":180.035,"geometry_index":7509,"location":[5.182956,47.401668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":43.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.699,"geometry_index":7579,"location":[5.162609,47.359742]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,187,352],"duration":0.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.051,"geometry_index":7593,"location":[5.162938,47.350114]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,352],"duration":1.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.256,"geometry_index":7594,"location":[5.162942,47.350094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":24.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":22.449,"geometry_index":7595,"location":[5.163039,47.349659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":6.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.018,"geometry_index":7606,"location":[5.164227,47.34268]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.164683,47.340858],"geometry_index":7609,"admin_index":8,"weight":1.844,"is_urban":false,"turn_weight":0.5,"duration":1.473,"bearings":[168,336,349],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,348],"duration":0.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.293,"geometry_index":7610,"location":[5.164806,47.340455]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,349],"duration":1.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.973,"geometry_index":7611,"location":[5.164832,47.340367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":52.373,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":47.129,"geometry_index":7612,"location":[5.164933,47.340037]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[173,186,354],"duration":1.059,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.947,"geometry_index":7626,"location":[5.170248,47.323486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":20.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":18.793,"geometry_index":7627,"location":[5.170306,47.323151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":6.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.76,"geometry_index":7632,"location":[5.171674,47.316443]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.172087,47.314599],"geometry_index":7633,"admin_index":8,"weight":90.113,"is_urban":false,"turn_weight":1,"duration":99.035,"bearings":[171,342,351],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,210],"duration":3.096,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.846,"geometry_index":7657,"location":[5.158567,47.288538]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,209],"duration":1.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.404,"geometry_index":7658,"location":[5.157911,47.287757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,206],"duration":18.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.027,"geometry_index":7659,"location":[5.157584,47.287357]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,208],"duration":8.898,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.445,"geometry_index":7661,"location":[5.154126,47.282621]},{"bearings":[33,214],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":7664,"location":[5.152,47.280122]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lyon"},{"type":"text","text":"/"},{"type":"text","text":"Beaune"}],"type":"fork","modifier":"left","text":"Lyon / Beaune"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"A 31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 31"}],"type":"fork","modifier":"left","text":"A 31"},"distanceAlongGeometry":208136.047}],"destinations":"Lyon, Paris, Dijon, Toul","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit toward Lyon/Paris/Dijon/Toul.","modifier":"slight right","bearing_after":238,"bearing_before":228,"location":[6.120301,48.69849]},"speedLimitSign":"vienna","name":"","weight_typical":5868.736,"duration_typical":6530.098,"duration":6531.791,"distance":208136.047,"driving_side":"right","weight":5870.219,"mode":"driving","ref":"A 31; E 21","geometry":"sfi{{AyuptJrHbVj`@rw@rI|PhTzf@lNl`@zm@`dCri@zzBlTraAxIlf@l@fEtEj\\fDpZfDv_@pAbRnIxcBvD|jDpAlnAZ|VtAbrA`D|vCrBpiBvN~cMtJvoJpCjtCdAx`ArAzhAzAfcAnBz_Av@xY|Adi@vDnbAfFbjAhG|oAdGhmAfDtr@hFfnAtCv{@tB|x@bBrz@tAl|@lChkBxBlbBxBtbB`CpjBbC|kBvBphBdCljBdAdaApAp`AbDv~B`I`dG`CnoB|Mn{FzBfs@tCrs@`G|nApG|iAlIt{ArIr{AnOzmC`Nx`ChNnaCzSrwDjIr~A|GnvAlG|vAlIxvBxFh`BjE~wAlDnvAnCdkArCtwAlCzvAlC|vAxAtkAv@bbALtM\\ngA?zk@Ob~A{@lxAyBpmBeCp}AqJllEcLblEeH|}C_Axe@sDtsBiB~rAgAtjAi@vhAC`p@GddAn@t_BdAtwAn@rg@|C|{ADvBfDjpAnEloA~E|lAvFxlAfH`rAhJfvAjKtuAbL~rAxEjf@hO~yAbWdxBhChR|L``AhM|}@|K~t@xNx|@xO`_ArMvt@~Olz@bRv~@pX`qA~S`~@~Tt_A~Uv`Al~@`lDzh@vpBp[hlAvNxi@|Lff@pElShEzSnH|a@hFx_@dEl_@~C``@~Cpj@fBf_@dFdsAlNbiDzFlxAzChs@dCbc@bE|i@nCrYpDb[vHdh@nFxZ~FtYlJz`@bGlTzFzRrGjSzBpG~C~IrHxRfOp]~JtStMlVlOhV|O|UlJpMtLpNlVbWvMbNpPhNjQzMtSlMpQjKhSlKp[hO~TxLhNfH~NbIz{@jf@dm@df@fNzKv}@hv@|F|EzYvVr^j[pY`Vvm@de@~u@tg@zt@xe@vhA|s@|h@`]p`@`W`EjCvX~Ppr@rd@ll@hb@dTvRjf@xf@jo@jz@hOxUp]`m@nKtSpXfl@xTfl@bKtZ~Jf[`Szt@fS`~@lPx~@tHrl@rIty@rGn}@nCzh@nCzu@dEhoBtAhs@|BxkAbC`~@rAnZhKv_BnM~dA|@dGjLpq@ft@hlDxe@z{BtPhx@lPdm@bKpTfN~]fPrYjQtTxQxRpOjMxIhEpRlJnOnFzRtEr`@pE~}AL~pBoCxm@_@fbAgAhpB_Bn[Sj}BuEz~@yD`bDuXlbCi`@fj@_LlBa@hT_Frb@wIlgAqVxA[rGyAzMkC|`B{]dV{F`Du@ph@aMrHgBvOsDpcBqa@jbBs_@dVuF~~Cas@lmB{^xx@kLtz@cKj^yCh^cCt~@iEb_@cAvd@k@xt@FvqBbH~sB~P`eFt[~Mn@fi@fCnx@zBb[b@l\\Zzq@OzZUj\\w@jq@sBdZ{Azc@_DtfAkJz~@aLbl@oIjJsA|h@iIdc@}GbmAqRleA_Qxb@gGji@}G|w@iIjp@oElq@iD|i@sAfb@QbCAdXQb\\Jb[b@jn@|Ad~@rEzh@jEh`@zDrmAvNh\\nEhc@fGnfAjOnlAzOnRbCfEb@jj@jFjo@zEfWzAfUfAdp@nB~r@p@hu@]~@An[s@j[y@hy@wDz[oBx\\mCfx@aJpFw@tj@eIdUcDpZ}F`q@qNji@{M`p@eRzrAgb@`F}AvxAgf@t`Ccv@vRyEbZsHlEiAxZgHl`Csb@jkBcVlxBmZpo@qKn{@cQrIsA|UoGj|@gUdGaBtZqJ|YyJxp@gVjrB{}@pzAkz@~JyGhq@gd@|i@w^fG}E|q@mi@dj@me@faB}~A~eCywCfDeExg@en@jKqLvL_Od{@ibAzjBk|BfsBq{Bh\\y[v]c\\~gAs}@tgAax@nh@o\\j_@aVplAao@fnAkk@pT}I`d@mNfpAq^naC}a@pr@mFv\\}Aj[wAx\\{@z[SlMD~JRlXHz[x@~\\|AhUrAv\\nCr]nDfLrA`wE~x@xx@fOt_AdQ~cCzd@|x@zPvvArZxaC`m@z}@bXpZ~IxGtCfPbEfl@fQj}Anh@|sBpv@`dAz`@x~@z`@`{A|p@bi@pVjbCnlArgCnwA`zBrwAvnAv_Ate@p^fw@rp@lw@nu@`e@ze@bBhBtGzGzn@zq@ft@j|@bz@hfAfy@nkA`s@nhAno@rfAri@`bAptA|mC|eAr|B|cAdxBpe@|aAlf@b_A|b@zv@`d@zu@zZxe@l^zi@b]hf@|Yp`@nWj\\pm@rt@pe@zh@~|@`_A`t@~p@tv@xo@zh@ta@bhArv@~}@vj@pu@za@zk@tXx{@|]lq@jW`p@bUrr@vRfD~@bpAtZf_@~Grr@lLdp@tInmA`Lns@tFvy@xEx`BnJ~sApJhn@xGhLnAnn@hIxx@hMlz@hQxnBxg@~cAv]rlAzf@vsBrcAltBngAvkBn|@nvBzq@tiBt_@ru@rH~`BrJrlAfAr}AcEfoAqK|x@_L~k@uKza@}Jnb@mLjh@{Ob~CmfApwC{hA~sEidBdk@kXbs@se@zx@yo@fGaGpf@kg@p|@}fAdk@y|@xf@q_Atg@qkAn~A{kE~Wco@`Voe@fZkg@|Yub@`d@eg@n`@y^~YeUn[aSvg@uVl_@gObWoGxMeDvk@kJvh@kDvf@[le@xAjg@dGfaBzZdk@bKtx@xKzMhB~lAvI~sAPxz@yB~i@sD~tAiR|gAqWzf@wO~mA{^p{@kUj_AmNn_@mD~WgAfn@Ybp@zB|Hj@rmA`Nd}@|T~j@dTdh@zUxd@`Xn_@~Xt_@nZtv@pt@nb@`f@ta@vk@lXla@nUxb@bd@f|@hm@`nA~l@fgA`k@l|@vJhMhY~^vg@nl@lVpU~[hZf`@n[jf@b]p`@zTpz@xb@br@`Wri@zNj`AlQzf@dGtaAxL`pAbSriA`^td@lRde@xUx~@rl@vo@`j@nl@fl@rv@t_A`mBhkC|z@~cAxCtCpTpVpMxM~f@~c@te@~^lw@hi@zoAhs@xq@vXtx@nYpw@bRxz@|Nvm@rHzs@nF@?rv@dBfr@WpKEzn@wC`x@_H|fA{Qvz@sSh|@uWplBmp@ldAk[bk@uMhr@uKrzAqN~{AkCna@xA|Vz@bkAvJ~nExs@n|Bb^zkAbNtcBpLzwAfB|]U|aAk@`sBiMvqBcYvJqAh{Del@fLsBrqCed@tm@qMdNwCpz@}NhzBeTv_C}HvvCtDdf@dC|c@hDlkArMhcCt`@|ShD`cCh^veCz[z~@fGpbAhE|dCX~uAqGdtAaMdcAuNdbAmQxqB_i@brAig@f{@i^bg@mVbFmCfLgGjXyNn_Asi@h}BwtAht@ab@li@oY|i@sXlf@sTjf@_S`pAud@b~@mVpb@eKbz@gQbsAyR`ZuCvy@cHj|@{Dpx@sBldALnq@vAl|@pEphAvIfy@|KzbArPt~@pTdw@xR`u@xUxpB|q@rx@xWtu@hT~|@~Qz_AtM~g@pFzO|@jJf@`eBrDr}@sGnbCqUxs@{Dxn@Dfj@lAts@rJxj@|Kzi@pO`e@tSrh@|X~b@zY|j@nd@fu@|w@rn@r{@hf@b}@la@v}@r^nbAla@htAduBhdIp@jC~kC|hK|x@h}C|v@vzCdA|DvIt\\xmBhpHp[~lA|[hnAjMhf@nNbf@nH|UvNdd@tPpe@|Nl`@jYdq@`]bu@`]vp@~Xdg@rc@jt@~hAldBns@rjAdi@tbAz_@xy@xa@pcA|Xvv@t_@bnA`XxaAdQtu@rUxiAdg@`uCtd@dhCrX~uA`^~~Ap[jpAZnA~f@reBxs@rxBxa@xhAz`@`bAfeAd}BvmDx_Hrm@fpAtg@`mAnd@jjA~p@~lBzUdw@l_@`tAl]~rAv`@vfBra@~vBx_@``Ctr@lrEdXt`Br[~dBlIhb@rU`fAtYplAh`@`xArgAxpD|v@`oBjg@toAjs@h|AvPt^le@ncApxAj|CjnAf~C~eAl`Dlr@txCbr@|{ChiAxhGroAnaGfnAprEj[bdA`l@bgBzrBlgFxpCp~FnxA`{C|}Bz`FteC`pFnkCrqF|z@tjBhTl]vm@|aAdpB~|CdxBnqCdhB|pBjkCdzBtcC`_BlNvKlvDzeC`zAbdAtwA`lAp[pZlhBxbBpGtGdUzVx^ha@~g@tm@fb@th@td@|m@ln@||@fm@j~@zm@|_A|rAdsBx^~j@td@|q@|f@`s@`Zl`@r[fa@p[p`@ta@pe@z\\r_@l_@~`@n]j]vc@zb@pd@ta@hj@`e@rg@fa@zc@r\\xb@nZv\\|Tlc@tXhj@|[zd@dW~c@fUlf@|UlaAtb@|aAl`@`bA~^rcAf_@pdCt_AhaAnb@p`@|Q|`@tRfb@xTdpAbv@fb@jY~b@tZh~@|s@dDhCjb@r^|SpRnTpSdj@bj@hh@vj@nh@|l@nq@b{@~@lAf\\hc@hk@~w@dd@hp@ds@~cAfh@zu@|Wj_@za@`l@|d@lm@zh@xp@pXr[x\\t^fXtXr[~ZfDbDty@`r@vnA`_AleF`hCtlF|dDh_CbcCh`Bn_CpoA|lC|n@rbBxVnu@pTrv@fQ|o@fM`j@rN|p@bAtErT~jAvRblAtUj~Atf@ttDvWjnB|Q|oA`TrrAbPp|@zNfv@rP`x@rQvv@|Rxw@lQvp@|Rdr@dXj|@|Rtl@pSnl@lTdl@rY~t@zYlr@z_@fz@~`@jy@zMdWj]fo@bc@du@b_@pl@bg@bu@t^ng@n^hf@r~@liA`kBpzBjt@|z@hu@vz@bu@|x@`u@dw@`z@|z@`{@|y@|a@pa@vc@la@hc@~`@lb@p_@|BnB`m@rh@`q@dk@r_BbqAz~@xs@laApu@zXjTd[lVdZhUfCdBvS~Oxa@t[zn@pg@xh@|b@|d@|a@hh@re@r{@t{@bl@vm@bd@fg@du@z{@fv@t`Apw@leAzk@ty@heA|`Blc@tt@rg@b}@xa@|u@~Wvg@d\\to@dr@vxAhr@f{Axo@fvAhr@b{Ajq@dxAvWjh@zo@lmAnq@njAvl@t_Ajy@lmAbs@v`AbmAr`B~`AlqA`v@~eAzf@rt@le@dt@fh@t{@|u@|uA`Xth@l^pv@l`@zz@nV|k@vYzs@jAvCnp@fbB~m@~~Atf@xnAh^t{@|Zls@tSdc@xGdOz_@jv@vm@diAda@lr@x^vk@z^fj@rSjZl`@jh@xp@~y@z\\h`@~\\~^bo@vo@h^z\\fY`Wb`@j\\~c@b^fd@n\\vn@rb@pt@bd@rb@~Uxk@xY~n@vYlh@nTvp@fVlb@hNz[rJdD`Ans@xRx`@hKna@hKvp@fPn`ArVlkEdfApuAj]F@~t@|QrkA|[`VbH|GzBpFhBvHbCpd@|Nt[vLlYfLheAne@`ZlN~ZvOre@lWXNvZxPjd@fXj]bSzb@fYx`@vYjr@xh@~eAv|@lkAdhAxs@xt@nmBvtBdtAbxAjW`X~G|G~k@zk@jl@~h@ll@pf@~g@z`@he@f]xi@z^rm@fa@~e@h[`cA~p@n^~XhWhTla@v^v[h^vYj]f[nb@vW`a@ze@`z@|NxYjP~]bYtq@lOpa@`Mt^bJzYdQpn@nKnb@rIt_@bEpShGf[tFpZzGvd@vEh\\dGxf@fDdZ`Db^hD`a@~Dxj@vDdl@`IfsA~Evy@fElo@hDde@zBfYnEbf@pF|h@fEl^~ClVdG`c@fGdb@`Gh^vGx^vFxYxGf\\fI~^zKle@bIn[nJt]xMxc@fEjN~GzS|Kz\\z_@rfAz`@zeAtVpq@rLn]fH~SjEnNxKja@vFbUbElQnH`^nFrYlC~OrChRvCjTxC`V~BzTxBtUzCx`@zAhVjAlTrA|\\dAbb@h@x_@dAf`Ad@ro@LfOd@l`@^~Ul@hWz@~UjArYjAzTxA~TlA|O`ChXnAhMbB|O~BjRrCzTv@lFvDzVLx@hDhRbFvWnFlWlEnRvHrZ~DjNxE~ObFxPhKpZzG|QnHnQrGzObVnh@vIjPvVzf@|X`i@rK`TbLrUlQv_@hMvYrJ|UzHrS`I|TrG`SjIhWtHxW|FlTpElQ`FvSdFfTxEtUnFbYrHnb@`D`TvCpT`C`RlD`[r@zFrFdj@nCl[bB`VhB~ZjBv_@jAnYf@vQp@~Xj@b`@Pp^Cxp@Yr^i@r]oBns@gB|b@cEbq@qCp_@}Evh@aEd_@sBlPkHlh@}DjVqIze@gKfi@cJvb@qUpcAwg@r{BmPnu@kO`t@kRn_AkK|k@wKxl@gIrf@{Lrv@kFx]_Gfb@iGrd@cIno@iGji@yFlh@oDp^wDl`@yFpo@eFtn@}Epq@uD~k@wDzn@iCjd@QxEkCvm@uCdx@cCfw@aA|_@w@v`@q@l]o@`j@u@xr@[ll@Izm@Bl_AVdo@^ra@n@vf@x@tb@dA|c@pAzf@rAf^pAx]|B~g@~Cbm@vCne@rChb@pDlf@|Glz@zDhb@RhBvBbTrDj\\nHjn@bE~[~DhZ`Htf@`Jfl@bHdd@rIjg@hLbq@hRreAnLjq@lMnv@bEfWhFp]tJpr@pFvb@xDl\\bFvd@zEbf@~Cj^|Enm@lD|g@zBb`@nCli@xBrg@|Bjl@pB~m@lE`_BJpClAx_@bD~`AxBvk@zCho@nDjn@xD|l@tErk@zBjVrD`a@bCbWdDzZhDvYvBlQhC`S`G~b@~BtPhCpPpEfYpIrg@fHz`@hBhJzCdObKjg@dEzR~EjTdJv_@tGbXjIl\\bPpl@rJp]v_@vsAlNlg@vId[lJt^bEhPrEtRbFzTnDdPhFxVfGp[jDnQfE`WhHhd@lEp[tFtb@`Ffd@hE`c@hFln@pB|XfBtY|Brb@jBba@fAvZtA|h@~@xj@\\h_@HtXB`e@OdTQb\\e@``@_Ajc@kB|l@_Bnc@iD`p@oEpw@iHtkAeFv{@aCbd@cChg@}Bfi@gB~e@uApc@aA|d@iA`w@]|ZQzc@Ena@@dd@Zjn@b@tc@|@fh@nAhj@~Avj@~B~j@hDbs@jB`]lB`ZlCb_@~Chb@lDp`@tCrZfExa@zFvf@xFld@pHxi@bOtaArKhn@pKbj@tJrf@vL|i@nZvpA`YdcAfM|^tIpWhK~[dSrk@pPpc@fZnt@jLfX|Qda@|Rda@rQt]hRh]p[vj@bBtCbJ|Obb@lp@rVt]x`@~h@lUjXnRjUnPfR`PtPtLhLlKvJhZrZn[pZrj@|h@nc@`b@j{@`y@ny@dx@bNrLrx@lv@fSpRhg@~e@nQdPxdAtdAbe@~e@r\\n_@|c@xi@zObUpQnUxSfZtJpNfAbBzXxa@l_@dn@nVtb@fOnXh@hAtf@haAzd@hcAxH`QvA`D~IzSnLxYrWpq@`Nr_@jQ`i@rSro@bYnbAnR`u@Rt@fOhn@pK~d@tJfd@fMjo@dLln@fKvm@~Fb_@rLf{@`Jlr@dEr^nBbRtDv]jB~PP`C`AjL~Dbc@lFfo@vC|c@|Dfo@dD`p@|DnbAxCfbAzB~`Az@hj@x@xp@j@f_AvBfjBrAblA|AttAfCleBbD|oB`ExjDdCd{BnDj{CnDr~CzDrnDhBn|AnBn{Ar@hv@dAbw@r@ps@~@pq@r@j\\^rNxAp\\l@jKbAxQhAbPpCrYxDb[xEdYxDrT~FxWbIh[xEdPlIfVbKbXfFpLjMtWlNlVfOtTnJfMhK~LhKzK~QvPbHtFbHnFfFbD~RfMrWrL~FlC~KpDpLfDxMzCpOnCxLxAvL~@rRt@`JNvJIzHMfHc@vPqAdL}AlOiChNaDvQmFvUmI~WuKrh@{Upg@{TxTyHxOgFbK{C|MyC|KuB~LsBnUyC`TcCrVcC`WkBlM_DneKug@p_AsEpqBaHxfB{A|sAv@px@dCbs@fC|v@vEz`AxIz{@dIvq@pI||ArWpk@jLb}@xRhkA|YrgDl_AncAtW`cAjUho@vKleA`M`cAjGnx@tBfq@?daA{B|`AuGfBMb|@aL|aAoPvz@cS~t@cT~iAka@ngBeu@peIsaDzfDstAx}De~A`xBk{@pcBgr@hiBus@foAad@vo@oP`g@qKtm@qKbt@_I`_A}Ezr@u@jj@n@hl@rBrdA`Knq@dLni@pK`}@tWbu@xUt|@f\\dbCdz@blAzb@`bBvj@zhAd]bsA|\\btCxl@jaBb]leBr[dpBl^`fArOla@lFxKvAnn@|Fv@Fvl@hFl[vBf[lBlb@vB~\\zAtpAnC~PDbmAXjdAiA`Tk@zVo@|qAcEhy@cFpdCwNjiAkHzaAmErv@mDvu@}BvzAcB~z@Htz@nApr@~Ajr@`Dvf@rClf@pDbn@vFrd@jFru@tIxTdDd|AhUjgBza@pT~FtYzHxn@~Rxl@|S~MzEf_Ada@fk@dYth@vYfn@d_@~v@lh@ff@d_@v_@b[f`Ar{@zi@lj@|f@hj@pq@px@v_@xf@pg@lr@`}@xtA|v@vkAnaAn`B~f@n{@fl@|hAja@z|@nd@~dAn\\r}@vZb_AvZ`gAvPbq@rQby@h}A`_HpYtcApX|y@jS|j@d\\rr@zYvj@zd@jp@hUnX`i@di@vSzQvj@t]hYpOz[fOps@jTp_@fHdq@hG`s@z@bl@cC|i@wG~c@wJvf@_Pdr@cZzs@s]hjCq}AnxAwy@bLsG`m@oXdoAoh@v|@eZzw@eU~x@gRxv@_Npw@wK~i@}FrfAeHb_AsDf|@iAxjAd@hvArAnhAxA`aB|DhfCjLplApH|dArHxuAvMhzCh^voLnvB~f@dMlzCzu@rN`EtwEpfApdEro@xqEbe@`mDvWlaBzJr|Gxa@bcAnJfc@lE`c@zFvhAjQjv@rN~`@pHv`@|Iz_@rIzqAn^ht@hUxa@nNd{@tZtp@|W`p@vYlo@tYdn@z[~iA~k@ba@tSn{@vc@|~Afy@~g@lVpf@tTzCpAxcAxb@~^hN`]nMxIdDvi@xPxx@fVr}@hVta@hKbc@bK|\\lHza@rHhj@bJ`n@dJ|i@dH~k@fGhf@tEpg@~DrbAhGhb@lB`d@zAhr@xAf\\`@t]JpZAl[Y`y@eAjs@sBzw@}D|e@{Clg@cErg@cFbe@gFbj@aH~i@aItb@{Gp}@eO`~Ec}@`hAsTxeAmTzb@gIxdBgZ|gAgSxdAoStfAmRbfAsQr]mFj_AyLj^kE`a@{Dj`@kDp_@uCny@aFd]{An[eA|b@gAb]c@laAg@~^DvZX~A@hm@|@rq@`Bpr@tCfk@fDpj@lEpi@fFpr@xHhq@`Ir_AtKraAbLh_@|D~_@lDhq@`Erd@fAzg@@df@_Azb@uBxc@eDrj@cGvg@gItk@mL`\\wIj[gJra@cOv_@_P`f@qTnTgLlViNbg@{ZxRcNdXgSpQyNrRqPb^g\\x^q^rWuYnSwU|QuUh`@{h@|d@gs@lb@at@x[om@xUge@n]qt@~\\qt@l^gw@j_@ex@xy@}_Bp]mn@j]ul@d^wk@~_@ul@j_@gj@~a@wk@t^we@~c@ij@hf@ml@`i@wk@zg@ih@ri@wh@|RsQnMoLr`@}\\ld@}^ve@y^fn@cd@fq@}c@vf@kZzf@kYdg@kXvm@sZpWyLlVwKph@sTtl@qTtTcI`TyGzZcKjYmI`d@_MrKmChk@mNda@sIfXeF|p@iLva@gGzc@sFvp@gH|c@gDfy@mEb[_AfYw@pf@Y~c@Bv]d@hm@bBh_@lBdc@pCzj@jE|fAvOpAR`SdDdARtg@`Kjf@fLpe@lMhV|GxUtHhl@pS`u@nZ~s@h]dg@dWxe@xXxy@ji@dz@|m@pr@xj@v}BhqB^ZxeAx~@x|@bp@`l@n_@xfA`k@~h@~Tjr@zVte@xN~h@hNpi@fKtu@dNpn@~Hnn@zF@?zJx@~f@hDfg@~Blr@zBvm@r@paD_ApkBoHl|CyL|m@{Dlz@yEn|@yE|_BuIdl@yCpEU\\AnaBqJ|r@cEhw@kDf^gAf|@qCb`C}Dr{DYjPRth@Lhi@lAznA~BdoAlEdqAvFlwDhXbbAxIzpA`OzdAjMfeBbVnvBj_@j@Jto@xL~[bHjiCtj@|hCrp@pyC~~@fuB`r@fr@dWjk@lTfbDzqAhyAvj@ba@lNhCz@po@hSfhAnYzmB`^|_BdPdaBrIjaB`AjaBwD`_BsHboGgl@z`BqMjjAqEnd@gAbd@Vr_@\\j_@zA``@|Av_@lCp`AnKv_@nF~^lHfb@hJja@hKvb@dMjb@rNjuA~k@xk@zYvk@z[l]vTxVnQbeArx@prBxjB|wB`wBtlDlkD~yEbeDvmPv`JzvCfrAfm@zSdm@fSj{@xTh}@|Rz~@vOhi@vG~`@rEja@jCfaAtE|`AjBh|@Kp|@kCtJ]hl@kDtk@_F|fCqZrdAcSxJmBnmAw[jhAe]zaAq]nPwGrt@}Z`t@m\\h]qPx^iSp~@yf@pdA}j@`k@{YtuAeq@nq@{Xlz@oZzrCe|@f_Cgt@zaAe_@pa@aQh`@wQrUkLzYsOn`@sTv`@uUvYoQlhCg`B`YuP~S_MpRoK|OmI|LgG`VkLpYcM|LcFjLiEtZgKfMsDxLkDzRsEhNwCpMcCra@aGtQaBxQqAxQy@tVo@lRKlN@pMTvTr@pc@tCx[pDjTfD~Z`GNB`TfFf[|IhZhKnZtLf[hOdO|HrNnI`YpQrXhSjUbRdTlRhSzR|SxTpg@~k@t_@ne@haAhoApb@dj@vQbU|S~VdQfSdP`Qr\\|\\tWjWxSjRzUfSrW`T|X|Shl@pa@rUxNvVhOlf@~W`h@bWp{@|_@tbBxq@lnCzfAtxApk@rb@tOnc@dOpe@hOzf@tNjb@|Kj`@dJja@xIva@`Itb@pHxb@rG|c@`Gzb@xEvc@hEfwCnU~^hDbr@rHhk@lH~j@~In\\tFpnAzUpxAdXbhAfRb`@bFha@xEpc@nEvVzBzU`Bla@bC|]`B~c@|Axd@dApc@Xhy@E`o@q@`i@yAvp@yC|j@sD`w@_HdoAsOf@GdZaEvfA_OpU_DxXcDrYwCrh@mEhg@iDnsA}I|p@{Efh@mF|[wDzAS~XuDjx@mMn]kGdXuFnDs@rSiEndAaWnp@gRx~@sZ~lDupAhcAk]po@mRpm@yO`o@yOlo@wMt`AsOhiA_Ol_Du[|nAcMhd@}D|SsBjlB_RrnCw[|qAgRx|@uLnTyCfrByXnaDgd@|jBeQ|h@oB~h@uAhi@Wfi@Rrh@rCrh@tD~b@|E~b@`Gnc@xHla@zI`o@bQrk@pR|h@zSbs@`\\`w@hb@h`CxgBjdBtiBhkBdxBhjBjcCvkBfuBnnArlAhuAzkAxo@~g@~WlSfgAvs@v~EjbDpD`CveBfqAzn@pm@rr@tr@t`@zb@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 104 miles.","announcement":"Continue for 104 miles.","distanceAlongGeometry":166930.016},{"ssmlAnnouncement":"In 2 miles, Keep left to take Autoroute du Soleil.","announcement":"In 2 miles, Keep left to take Autoroute du Soleil.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take Autoroute du Soleil.","announcement":"In a half mile, Keep left to take Autoroute du Soleil.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take Autoroute du Soleil toward Clermont-Fd, Lyon-Centre.","announcement":"Keep left to take Autoroute du Soleil toward Clermont-Fd, Lyon-Centre.","distanceAlongGeometry":268.889}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[36,210,222],"duration":19.598,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.078,"geometry_index":7666,"location":[5.150599,47.278757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":1.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.594,"geometry_index":7674,"location":[5.145493,47.274793]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,228],"duration":4.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.953,"geometry_index":7675,"location":[5.144912,47.274433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":2.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.021,"geometry_index":7677,"location":[5.143651,47.273688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,232],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.025,"geometry_index":7678,"location":[5.142985,47.273314]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.142641,47.273134],"geometry_index":7679,"admin_index":8,"weight":1.902,"is_urban":false,"turn_weight":1,"duration":0.955,"bearings":[44,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,232],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.902,"geometry_index":7680,"location":[5.142335,47.27297]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,234],"duration":23.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.779,"geometry_index":7681,"location":[5.142034,47.272813]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":47.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.527,"geometry_index":7685,"location":[5.134083,47.268841]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,214],"duration":2.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.967,"geometry_index":7695,"location":[5.121768,47.258748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":67.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":60.576,"geometry_index":7696,"location":[5.121264,47.258245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,249],"duration":1.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.459,"geometry_index":7706,"location":[5.101537,47.245399]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,251],"duration":2.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.219,"geometry_index":7707,"location":[5.100922,47.24524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,253],"duration":5.188,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.66,"geometry_index":7708,"location":[5.09981,47.244974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,259],"duration":24.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.281,"geometry_index":7710,"location":[5.097433,47.244519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":0.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.684,"geometry_index":7712,"location":[5.085798,47.243055]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":53.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":48.541,"geometry_index":7713,"location":[5.085498,47.243027]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[120,300],"duration":62.73,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":56.451,"geometry_index":7726,"location":[5.064872,47.24693]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,257],"duration":1.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.248,"geometry_index":7755,"location":[5.041051,47.243971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":29.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.299,"geometry_index":7756,"location":[5.040508,47.243883]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,238],"duration":23.146,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.812,"geometry_index":7768,"location":[5.028977,47.242145]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.023127,47.237278],"geometry_index":7784,"admin_index":8,"weight":33.887,"is_urban":false,"turn_weight":1,"duration":36.566,"bearings":[14,24,200],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":37.982,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":35.127,"geometry_index":7796,"location":[5.01541,47.228472]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214,239],"duration":24.482,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.639,"geometry_index":7801,"location":[5.005886,47.219947]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.001119,47.21379],"geometry_index":7806,"admin_index":8,"weight":6.879,"is_urban":false,"turn_weight":1,"duration":6.373,"bearings":[4,24,203],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,199],"duration":145.086,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":130.559,"geometry_index":7808,"location":[5.000123,47.212101]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,184],"duration":13.846,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.453,"geometry_index":7826,"location":[5.000841,47.171029]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":42.875,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.58,"geometry_index":7828,"location":[5.000406,47.167071]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,203],"duration":14.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.084,"geometry_index":7837,"location":[4.995154,47.153677]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.324,"geometry_index":7841,"location":[4.99213,47.149432]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209,221],"duration":24.838,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.348,"geometry_index":7842,"location":[4.99205,47.14933]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.986307,47.143234],"geometry_index":7847,"admin_index":8,"weight":20.301,"is_urban":false,"turn_weight":1,"duration":21.467,"bearings":[32,36,216],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":28.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.1,"geometry_index":7849,"location":[4.980834,47.138205]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215,220],"duration":21.295,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.223,"geometry_index":7854,"location":[4.973598,47.131604]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.968928,47.126396],"geometry_index":7860,"admin_index":8,"weight":13.723,"is_urban":false,"turn_weight":1,"duration":13.418,"bearings":[15,29,206],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,202],"duration":23.543,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.758,"geometry_index":7864,"location":[4.966477,47.122819]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,200],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.455,"geometry_index":7870,"location":[4.962705,47.116382]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,206],"duration":159.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":143.24,"geometry_index":7871,"location":[4.962633,47.11625]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208,222],"duration":0.369,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.326,"geometry_index":7941,"location":[4.925687,47.076416]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":15.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.057,"geometry_index":7942,"location":[4.925613,47.076322]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.5,"geometry_index":7948,"location":[4.922057,47.071868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":8.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.775,"geometry_index":7950,"location":[4.921238,47.070889]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.919822,47.069206],"geometry_index":7951,"admin_index":8,"weight":39.088,"is_urban":false,"turn_weight":1,"duration":42.328,"bearings":[15,30,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,217],"duration":17.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.336,"geometry_index":7962,"location":[4.91213,47.061282]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,219],"duration":22.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.195,"geometry_index":7969,"location":[4.908682,47.058257]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.903881,47.054428],"geometry_index":7977,"admin_index":8,"weight":11.045,"is_urban":false,"turn_weight":1,"duration":11.166,"bearings":[32,42,222],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":20.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.094,"geometry_index":7983,"location":[4.901409,47.052572]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":14.531,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.422,"geometry_index":7989,"location":[4.894876,47.047808]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,220],"duration":11.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.656,"geometry_index":7997,"location":[4.890262,47.044311]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217],"duration":0.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.898,"geometry_index":8005,"location":[4.886802,47.041413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":11.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.58,"geometry_index":8006,"location":[4.886553,47.04119]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,214,227],"duration":64.26,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":61.029,"geometry_index":8015,"location":[4.883354,47.038185]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.870904,47.021692],"geometry_index":8050,"admin_index":8,"weight":26.73,"is_urban":false,"turn_weight":1,"duration":26.416,"bearings":[14,25,200],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":40.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":39.434,"geometry_index":8058,"location":[4.867114,47.014572]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.545,"geometry_index":8062,"location":[4.861339,47.003652]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,201],"duration":3.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.666,"geometry_index":8063,"location":[4.861259,47.003501]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[21,199,214],"duration":14.674,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.92,"geometry_index":8064,"location":[4.860693,47.00251]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.858606,46.998589],"geometry_index":8067,"admin_index":8,"weight":97.57,"is_urban":false,"turn_weight":1,"duration":104.406,"bearings":[21,201,359],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.195,"geometry_index":8078,"location":[4.840084,46.971168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":0.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.504,"geometry_index":8079,"location":[4.840055,46.971111]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198,213],"duration":43.053,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.74,"geometry_index":8080,"location":[4.839978,46.970962]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.835378,46.958905],"geometry_index":8089,"admin_index":8,"weight":67.641,"is_urban":false,"turn_weight":1,"duration":74.051,"bearings":[7,15,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":3.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.793,"geometry_index":8103,"location":[4.82449,46.938411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":0.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.43,"geometry_index":8104,"location":[4.824047,46.937577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":13.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.586,"geometry_index":8105,"location":[4.823978,46.937449]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,198],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.119,"geometry_index":8109,"location":[4.822141,46.933651]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":3.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.988,"geometry_index":8110,"location":[4.821976,46.933312]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":9.453,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.738,"geometry_index":8112,"location":[4.821586,46.932411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.66,"geometry_index":8116,"location":[4.820521,46.929754]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":236.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":212.928,"geometry_index":8117,"location":[4.82045,46.929557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":2.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.457,"geometry_index":8192,"location":[4.82054,46.865161]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[165,184,347],"duration":16.809,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":15.111,"geometry_index":8193,"location":[4.820804,46.864393]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.822858,46.859738],"geometry_index":8198,"admin_index":8,"weight":77.83,"is_urban":false,"turn_weight":1,"duration":85.387,"bearings":[160,331,341],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,358],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.996,"geometry_index":8220,"location":[4.831967,46.836218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,359],"duration":5.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.123,"geometry_index":8221,"location":[4.831998,46.834928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":14.869,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.119,"geometry_index":8224,"location":[4.83193,46.833316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":6.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.488,"geometry_index":8230,"location":[4.831382,46.828992]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,189],"duration":60.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":58.615,"geometry_index":8232,"location":[4.831011,46.827018]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.328,"geometry_index":8241,"location":[4.826859,46.810311]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":8.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.73,"geometry_index":8242,"location":[4.826836,46.810219]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188,208],"duration":12.051,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.645,"geometry_index":8244,"location":[4.826298,46.807865]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.825574,46.804508],"geometry_index":8246,"admin_index":8,"weight":10.965,"is_urban":false,"turn_weight":1,"duration":9.498,"bearings":[9,189,351],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":11.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.957,"geometry_index":8248,"location":[4.82501,46.801928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":1.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.781,"geometry_index":8253,"location":[4.824141,46.798857]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":4.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.609,"geometry_index":8254,"location":[4.82398,46.798426]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.57,"geometry_index":8255,"location":[4.823531,46.797321]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":9.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.52,"geometry_index":8256,"location":[4.823474,46.797179]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":3.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.672,"geometry_index":8257,"location":[4.822537,46.794864]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,194],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.461,"geometry_index":8259,"location":[4.822148,46.793979]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":60.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":62.164,"geometry_index":8260,"location":[4.822014,46.793622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.723,"geometry_index":8279,"location":[4.819378,46.778076]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,182],"duration":14.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.984,"geometry_index":8280,"location":[4.819374,46.777885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,354],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.68,"geometry_index":8285,"location":[4.819331,46.773965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,355],"duration":78.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":78.316,"geometry_index":8286,"location":[4.819354,46.773784]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,342],"duration":1.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.496,"geometry_index":8301,"location":[4.830552,46.754583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,343],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.012,"geometry_index":8302,"location":[4.830719,46.7542]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":3.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.496,"geometry_index":8306,"location":[4.831294,46.752656]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":3.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.082,"geometry_index":8308,"location":[4.831576,46.75177]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[169,177,348],"duration":2.094,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.086,"geometry_index":8309,"location":[4.831824,46.750992]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":5.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.281,"geometry_index":8310,"location":[4.831974,46.750449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":4.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.691,"geometry_index":8313,"location":[4.832326,46.749022]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.832597,46.74775],"geometry_index":8315,"admin_index":8,"weight":8.105,"is_urban":false,"turn_weight":0.5,"duration":7.82,"bearings":[171,342,352],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,351],"duration":10.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.109,"geometry_index":8316,"location":[4.833068,46.745676]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":167.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":155.215,"geometry_index":8318,"location":[4.833665,46.742912]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.262,"geometry_index":8332,"location":[4.842754,46.698129]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":1.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.172,"geometry_index":8333,"location":[4.842816,46.697753]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[173,194,354],"duration":35.775,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":32.191,"geometry_index":8334,"location":[4.842866,46.697406]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.844491,46.687739],"geometry_index":8339,"admin_index":8,"weight":11.078,"is_urban":false,"turn_weight":1,"duration":11.207,"bearings":[173,344,354],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":0.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.801,"geometry_index":8341,"location":[4.845005,46.68474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":15.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.328,"geometry_index":8342,"location":[4.845045,46.684496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.816,"geometry_index":8344,"location":[4.845764,46.680192]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,354],"duration":15.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.332,"geometry_index":8345,"location":[4.845804,46.679945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,349],"duration":0.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.891,"geometry_index":8350,"location":[4.847004,46.674845]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":25.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":23.188,"geometry_index":8351,"location":[4.847101,46.674559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":0.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.586,"geometry_index":8358,"location":[4.850302,46.667506]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":27.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":24.68,"geometry_index":8359,"location":[4.850405,46.667329]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":44.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":40.914,"geometry_index":8366,"location":[4.854833,46.66007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.777,"geometry_index":8380,"location":[4.859402,46.647826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,356],"duration":0.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.32,"geometry_index":8381,"location":[4.859495,46.646972]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":105.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":97.555,"geometry_index":8382,"location":[4.859499,46.646874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,322],"duration":40.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":37.469,"geometry_index":8432,"location":[4.864916,46.617598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,314],"duration":3.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.039,"geometry_index":8443,"location":[4.876457,46.609113]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,314],"duration":0.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.578,"geometry_index":8444,"location":[4.877444,46.608462]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[134,159,314],"duration":14.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":13.32,"geometry_index":8445,"location":[4.87763,46.60834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.881974,46.605384],"geometry_index":8450,"admin_index":8,"weight":80.719,"is_urban":false,"turn_weight":1,"duration":86.188,"bearings":[136,298,317],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,358],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.387,"geometry_index":8473,"location":[4.900374,46.584734]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":1.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.547,"geometry_index":8474,"location":[4.900373,46.584618]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[0,183,199],"duration":12.102,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.488,"geometry_index":8475,"location":[4.900369,46.584153]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.899595,46.580672],"geometry_index":8481,"admin_index":8,"weight":16.812,"is_urban":false,"turn_weight":1,"duration":16.654,"bearings":[13,194,353],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":12.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.391,"geometry_index":8483,"location":[4.897875,46.575957]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.211,"geometry_index":8485,"location":[4.89657,46.572359]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":25.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":24.48,"geometry_index":8486,"location":[4.896445,46.572009]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":0.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.867,"geometry_index":8497,"location":[4.895832,46.564693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,349],"duration":22.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":22.043,"geometry_index":8498,"location":[4.895901,46.564443]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,331],"duration":10.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.988,"geometry_index":8508,"location":[4.899162,46.557681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,319],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.344,"geometry_index":8512,"location":[4.901998,46.554999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,318],"duration":76.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":72.289,"geometry_index":8513,"location":[4.902388,46.554704]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":73.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":67.91,"geometry_index":8537,"location":[4.91963,46.536809]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.422,"geometry_index":8563,"location":[4.912666,46.516256]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.684,"geometry_index":8564,"location":[4.912473,46.515827]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198,215],"duration":16.178,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.957,"geometry_index":8565,"location":[4.912379,46.515618]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.910212,46.511093],"geometry_index":8569,"admin_index":8,"weight":6.898,"is_urban":false,"turn_weight":1,"duration":6.385,"bearings":[6,19,202],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":0.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.711,"geometry_index":8570,"location":[4.909181,46.509357]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":229.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":212.414,"geometry_index":8571,"location":[4.909057,46.509149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":8626,"location":[4.871326,46.446992]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":71.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":64.027,"geometry_index":8627,"location":[4.87125,46.446655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.574,"geometry_index":8647,"location":[4.86711,46.423783]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,200],"duration":0.232,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.199,"geometry_index":8648,"location":[4.867045,46.423613]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[20,196,201],"duration":14.162,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.723,"geometry_index":8649,"location":[4.867015,46.423555]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.059,"geometry_index":8652,"location":[4.865313,46.419858]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,202],"duration":4.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.418,"geometry_index":8653,"location":[4.865156,46.419564]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,203],"duration":10.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.777,"geometry_index":8654,"location":[4.86446,46.418348]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.862763,46.415693],"geometry_index":8657,"admin_index":8,"weight":33.023,"is_urban":false,"turn_weight":1,"duration":34.625,"bearings":[15,25,206],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198],"duration":3.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.598,"geometry_index":8667,"location":[4.856884,46.406915]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":61.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":56.961,"geometry_index":8669,"location":[4.856415,46.405876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":65.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":60.23,"geometry_index":8686,"location":[4.851661,46.388695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,216],"duration":0.158,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.148,"geometry_index":8707,"location":[4.839744,46.372193]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,216],"duration":3.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.238,"geometry_index":8708,"location":[4.839705,46.372156]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.83888,46.371378],"geometry_index":8709,"admin_index":8,"weight":9.434,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.207,"bearings":[36,217,225],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.836326,46.369073],"geometry_index":8711,"admin_index":8,"weight":7.309,"is_urban":false,"turn_weight":1,"duration":6.84,"bearings":[27,38,217],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":39.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":37.469,"geometry_index":8714,"location":[4.834652,46.367518]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":2.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.219,"geometry_index":8732,"location":[4.828918,46.357125]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191,199],"duration":18.715,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.762,"geometry_index":8733,"location":[4.828718,46.356471]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":2.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.43,"geometry_index":8739,"location":[4.827126,46.351267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":94.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":92.129,"geometry_index":8740,"location":[4.82682,46.350567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.496,"geometry_index":8794,"location":[4.809965,46.326814]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,240],"duration":6.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.953,"geometry_index":8795,"location":[4.809778,46.326743]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.605,"geometry_index":8800,"location":[4.80732,46.325666]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":44.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":44.473,"geometry_index":8801,"location":[4.80712,46.325565]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,196],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.426,"geometry_index":8830,"location":[4.795898,46.313615]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":86.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":86.582,"geometry_index":8831,"location":[4.795848,46.313497]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,188],"duration":0.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.281,"geometry_index":8847,"location":[4.79003,46.288328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.801,"geometry_index":8848,"location":[4.790013,46.288246]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189,199],"duration":9.299,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.293,"geometry_index":8849,"location":[4.789906,46.287728]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":0.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.766,"geometry_index":8851,"location":[4.789325,46.285044]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.77,"geometry_index":8852,"location":[4.789281,46.284835]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.789173,46.284335],"geometry_index":8853,"admin_index":8,"weight":2.535,"is_urban":false,"turn_weight":1,"duration":1.541,"bearings":[4,8,188],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.547,"geometry_index":8854,"location":[4.78908,46.283904]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189],"duration":7.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.723,"geometry_index":8855,"location":[4.788987,46.283472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,188],"duration":65.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":63.602,"geometry_index":8857,"location":[4.7885,46.281245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.672,"geometry_index":8890,"location":[4.791749,46.262652]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,337],"duration":3.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.895,"geometry_index":8891,"location":[4.791867,46.262461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,336],"duration":2.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.301,"geometry_index":8892,"location":[4.792388,46.26165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":8.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.855,"geometry_index":8893,"location":[4.792793,46.261006]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,336],"duration":9.648,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.16,"geometry_index":8895,"location":[4.794198,46.258777]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":56.326,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":53.504,"geometry_index":8897,"location":[4.795819,46.256168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":3.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.566,"geometry_index":8934,"location":[4.797226,46.239987]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.783,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.738,"geometry_index":8936,"location":[4.796789,46.238928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.98,"geometry_index":8937,"location":[4.7967,46.238712]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":2.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.375,"geometry_index":8938,"location":[4.796581,46.238424]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.172,"geometry_index":8939,"location":[4.796287,46.237712]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197,207],"duration":12.918,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.941,"geometry_index":8940,"location":[4.796266,46.237662]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":5.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.051,"geometry_index":8943,"location":[4.794756,46.23407]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.79412,46.232555],"geometry_index":8944,"admin_index":8,"weight":70.113,"is_urban":false,"turn_weight":1,"duration":74.723,"bearings":[13,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198],"duration":1.393,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.281,"geometry_index":8954,"location":[4.784567,46.211577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":12.885,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.91,"geometry_index":8955,"location":[4.784381,46.211192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":70.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":63.203,"geometry_index":8957,"location":[4.782464,46.20723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":56.094,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":50.48,"geometry_index":8962,"location":[4.772065,46.185619]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":72.564,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":65.289,"geometry_index":8983,"location":[4.770255,46.169133]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":1.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.207,"geometry_index":9001,"location":[4.769764,46.147647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":2.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.297,"geometry_index":9002,"location":[4.769672,46.14728]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[10,191,201],"duration":18.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":17.258,"geometry_index":9003,"location":[4.7695,46.146593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":12.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.785,"geometry_index":9009,"location":[4.767808,46.141374]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.766645,46.137805],"geometry_index":9012,"admin_index":9,"weight":84.719,"is_urban":false,"turn_weight":1,"duration":88.145,"bearings":[3,12,191],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,202],"duration":1.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.363,"geometry_index":9038,"location":[4.760974,46.111998]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,204],"duration":31.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":31,"geometry_index":9039,"location":[4.760752,46.111621]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.129,"geometry_index":9048,"location":[4.753621,46.103598]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215,222],"duration":20.898,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.891,"geometry_index":9049,"location":[4.753356,46.103337]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":149.379,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":141.902,"geometry_index":9055,"location":[4.748527,46.09824]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,204],"duration":24.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":22.465,"geometry_index":9114,"location":[4.731993,46.051526]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.09,"geometry_index":9124,"location":[4.727633,46.04426]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195,200],"duration":1.729,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.594,"geometry_index":9125,"location":[4.7275,46.043944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":19.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":18.184,"geometry_index":9126,"location":[4.72732,46.043469]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,183],"duration":43.125,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":39.875,"geometry_index":9138,"location":[4.72607,46.037908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,182],"duration":0.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.75,"geometry_index":9142,"location":[4.724999,46.025565]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.102,"geometry_index":9143,"location":[4.724987,46.025344]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[2,180,193],"duration":11.32,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":10.453,"geometry_index":9144,"location":[4.724955,46.024719]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.725277,46.021486],"geometry_index":9151,"admin_index":9,"weight":10.34,"is_urban":false,"turn_weight":0.5,"duration":10.66,"bearings":[170,346,352],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":4.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.016,"geometry_index":9157,"location":[4.726285,46.018598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":86.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":86.367,"geometry_index":9158,"location":[4.726798,46.017441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.613,"geometry_index":9188,"location":[4.736653,45.99434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":26.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":28.031,"geometry_index":9189,"location":[4.736675,45.994183]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.871,"geometry_index":9196,"location":[4.736871,45.986658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.664,"geometry_index":9197,"location":[4.736869,45.986423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":5.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":6.102,"geometry_index":9198,"location":[4.736867,45.986246]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":19.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.23,"geometry_index":9199,"location":[4.736849,45.984592]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,196],"duration":0.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.441,"geometry_index":9214,"location":[4.736166,45.979119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":3.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.621,"geometry_index":9215,"location":[4.73612,45.979005]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,201],"duration":2.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.336,"geometry_index":9218,"location":[4.735706,45.978088]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[22,203,221],"duration":6.797,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":6.961,"geometry_index":9220,"location":[4.73538,45.97751]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,211],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.105,"geometry_index":9224,"location":[4.734471,45.976164]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,214],"duration":1.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.762,"geometry_index":9226,"location":[4.734289,45.975954]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,213],"duration":26.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":26.863,"geometry_index":9228,"location":[4.73398,45.975638]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.73194,45.97344],"geometry_index":9230,"admin_index":9,"weight":23.215,"is_urban":false,"toll_collection":{"name":"Péage de Villefranche-Limas","type":"toll_booth"},"turn_weight":15,"duration":8.215,"bearings":[33,214],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215],"duration":3.844,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.836,"geometry_index":9231,"location":[4.731294,45.972778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,212],"duration":5.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.723,"geometry_index":9232,"location":[4.730808,45.972303]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,211],"duration":1.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.34,"geometry_index":9233,"location":[4.729966,45.971358]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,208],"duration":3.949,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.926,"geometry_index":9234,"location":[4.729773,45.971132]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.375,"geometry_index":9236,"location":[4.729182,45.970374]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.728586,45.969683],"geometry_index":9237,"admin_index":9,"weight":16.145,"is_urban":false,"turn_weight":0.5,"duration":16.053,"bearings":[13,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":111.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":108.41,"geometry_index":9238,"location":[4.726532,45.96727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":23.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":22.914,"geometry_index":9265,"location":[4.716059,45.949673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,340],"duration":16.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":16.492,"geometry_index":9274,"location":[4.717396,45.945692]},{"bearings":[141,322],"entry":[true,false],"classes":["toll","motorway"],"in":1,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"geometry_index":9286,"location":[4.720895,45.941609]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Clermont-Fd"},{"type":"text","text":"/"},{"type":"text","text":"Lyon-Centre"}],"type":"fork","modifier":"left","text":"Clermont-Fd / Lyon-Centre"},"distanceAlongGeometry":166973.344},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Clermont-Fd"},{"type":"text","text":"/"},{"type":"text","text":"Lyon-Centre"}],"type":"fork","modifier":"left","text":"Clermont-Fd / Lyon-Centre"},"distanceAlongGeometry":3218.688}],"destinations":"A 31: Lyon, Beaune","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 31 toward Lyon/Beaune.","modifier":"slight left","bearing_after":210,"bearing_before":216,"location":[5.150599,47.278757]},"speedLimitSign":"vienna","name":"Autoroute de Lorraine-Bourgogne","weight_typical":4987.199,"duration_typical":5288.416,"duration":5288.416,"distance":166973.344,"driving_side":"right","weight":4987.189,"mode":"driving","ref":"A 31; E 21","geometry":"iitdyAmwjyHxMnKrj@np@he@~m@tQjVlQrVro@jaAdZte@`e@`y@nUhc@zU`e@tVvg@jVrh@fJnTfIbRxHxQhf@hoA~mAhdDrnAbcDhq@dvArVvh@fPb\\nRv]nd@tw@r|AfaClXl^rl@xu@rl@fu@z~B`jCvaEphEl^n^vxDpeEn}ArgBn|Bt|CbdB|iCt{@v~Apy@hdB`{@pzBfp@rtBzj@jvBpVnjA|Hle@rOndArObmAxJleAtjAx{PxNjyCv@vQvG|}AhBbaBPtkBaAt`A_DlfAcE~|@oFzv@oRhpBaZ|yBe]b_Beg@hmBmmBfkGoGlTaLb`@sMdh@yNfq@aJpi@uLvz@wH|}@kDdq@iB|t@a@rXGjYAx\\h@`]nCzy@jDlo@nGnr@tIrq@tKrq@vL|j@xNxl@pd@dbBne@haBjUvz@fQbs@rOvr@hN~o@vPn~@~NdaAvLncAfCzWnD|`@vDnd@`G~cArCzo@rBrr@pF`cCrB~s@hDxq@hHt_A`Lp}@jLnq@fPvv@`Phk@fKn[vLp\\bLhY`Qh_@dXrh@tTn]nTdZlSzVfXdYfPpOrGzFbL~IrTxOfT`Nt[pPjUtMvf@tTth@hV~\\rPzl@j]|_Ato@zu@~p@dfA|eArhAvjAxi@`n@bi@pn@fd@|h@fEjFz{BbsCx}ChzDpoBnyBx|@z_AviAlgAna@la@|uAnhAjmAt}@|_BteA`wArw@zx@rb@tn@rYn{Avl@xf@nQ|sAtd@`_Blc@tnAnWtvA~Vl}AdTvjBvOfvAdHbgA|Bz_A`@fcHgW~tXc}E|l@yGlaAyIpxC_Qb`E}BpuA`CzhFzWnLhAdd@lE`aBlSzo@tLdz@fPtiAhVzdDv}@F@byCvhAzeEpmBzrArt@tz@zh@`hAdv@to@he@jE~C|gAvz@prA|hAjkAbgAxiAbjAhhA~lAj}BreC|zDlnEtrAt{AllAztAflArtApzClhDrQrQjM`Nf_@d_@x_@t_@lbAv}@b`A~w@npBd{Afw@zg@|wA~|@rf@vXve@pWhzAlt@de@dVpf@fV|lA~k@`oBp`Afj@hXfGnCpPjKhbE~zBdZrQ`ZfR`t@de@|r@df@tu@hi@nXzTlXfUzK~I`LnIlYtSxW|SjWpUvr@no@bXjW~WrWrWnWpWtW~VjWzV~WzVxXbWbX~WlYnWdZtm@nr@|m@~s@zl@nr@fm@hs@jl@js@jl@~s@vk@~r@zUjYjV~XbVvXtUvYnU|XvUdXbm@tr@dVbYrVnXxk@hp@pm@hq@pVdXtVxW`n@vo@xn@no@jn@ln@`WzVdWjVjWdVnW~Ufp@|l@fWlUnWzTpp@|j@rWrTtWlTvo@vh@bX~SbXpSdq@vh@nq@`i@lq@xg@tXrSxXjS~q@jg@~q@|f@pr@dg@h_@hXzDrCjrAl`A`r@vg@lv@~j@zWfSpYfT`d@p]pLbJrn@`g@dhBnwAbp@ti@|i@~e@`j@~e@nc@t`@tc@na@nyAnwAdl@hl@nl@bk@xm@|q@vc@~e@dU~Vv[t^`VjXpUpXfVjYfVrYba@tf@`a@dg@rj@ds@fVr[zOrSb`@jh@dOjSzVn]vf@vq@ri@rv@pBrCnj@nx@vTz[tT`\\hTv[dCtDhPjVfTz[dxCnqEfi@by@`j@dz@tSf[hTd\\|i@~x@xi@fx@~Uh]bV`]xTd[zT|ZtTlZ|TlZrU~ZlUdZdUrYxU`ZlUfYrUhY`WjZ|LpN|RhUzU~WtUvWNP|VtXhVtWvV|W~VpWxYlZhl@bl@de@nc@rh@tf@th@ne@zWnU|WhUxW|TbXzTbXpTfXfTnXdTlXxSjXjSxXhSrXbSzXxR~XrRxXdRxX~QfY`RvY|QzXbQ`ZjQjYvPjYpPzYrPzYdPdYpOlZzObZjO`ZdOnu@v^lu@z]d[|NfXfPl[lNlu@p\\ft@p[nv@p\\fZnMfZjMhv@n\\pnCjjAbjFz|B~eE|eBlhFf{B|MzFlH~C||@jb@`jBru@ps@d[ltArn@nsD~cBrmBzdAd}BdtAxlBzfAhrBzuAt~G~oE``JjfGvkCx_Bv`DhfB~|@lb@baAza@pBx@hHxCzhA~a@fv@|Wz`A~XxpAx]vrAf\\n`EdaA`lA~Yht@pSbdAvZ`Y~Ixg@rQpi@vRps@tXhpAzh@nyA~s@b{BfbAldDlxA|_D~sApqBn|@bxB``A`aBrt@v`Atc@``B~r@bs@tZ~FhC~e@vSneAld@|eAja@|w@fUdThIfX~I`^jLxXbJla@~NhaAfXnf@dMhKlCdv@`Qvt@nMxi@nJjh@hItn@|I`r@~Gnu@lGzj@nEtm@~Ct_AnFhn@|@pa@X~FDvq@_Atm@M|\\_Ar{AoCfh@oCta@_Cbb@oC`q@mFrk@_DdgA}M`r@_JbqAmS~_AmNrz@oMryAmUlsA}TtlAmRfhA}Ohm@}Ibc@oDph@_Fdg@_Czg@}Api@o@fw@Nbe@?v_@?fj@lCbc@nC|\\~Br[nDxcAlMfh@nHddAlPlqBz\\ruClf@psCjc@j_A|KlX|Chs@`Ijp@|Gri@~D|k@~Ddt@~Dhk@lDr\\~@feB~@llBn@`a@_Bbc@o@xc@oAh\\oB~l@}B~{@_HncAmJbaA_Mba@}E|x@oLdf@}Ilp@_Njn@}N`UsF~n@oObk@wOrx@mUxvAag@n{@a\\zg@aSxmB{y@x_B{w@zbA{d@xzCwwA~cDwxAvbA}b@tfA_`@v|@wXna@}Knr@wQzk@_Oh_@cI|MeBvb@sJbl@oKdi@_H~}@sLrl@eGxfAwJfz@gEt|@sC|dA}BroA}@vm@?nj@zBnIJpTXh_AlDr{@lF~aAjHvi@dG~L~Axl@zHplAhLrGz@fpBzYfwCnf@`rBn[vdBbYbgDdg@tkAzQzeB~XplEpr@vDl@f_ApNzqA`QbaDfa@tn@~IznBnXjp@vHbQrBxfAhPB?|n@tM|t@tQ|Y`I`dA`[zGpBtoCpy@h]|L~WjIhUjGh@PteAl\\daC`w@|WpHxZvIze@zJxZhEnW~D`IlAna@nBnc@nBjsAnBhn@|@pe@p@b_@r@`}AtClcBtCfkBbDhf@r@|JFnjBlCje@vArl@?p`@k@|RcBhJm@b^aGlp@iLld@oPpw@o^fdBe`AbpA}r@`fCsuAxkDwoBvyAex@t}BcpA`u@u`@h{@qc@vf@{U|`Agb@v`Bim@|VmI~\\eKtXyHhK{Cn[aHjDu@~p@}Nro@oN|`@kHhOoCfi@}Ir]qEfv@wJfWeDr`Cm\\beBuTreAsN`|BuZriEak@tsF_t@``Hi~@ngGkx@dcFup@v{Gk}@beGav@~vFwm@lvFei@ldFie@|gA{Jx|@cIhe@gEnV{BtTcBvu@{HjuC{WxzBiSfhF_g@~h@oEvnAoLtjBsQfNoAlxAuMprDg]lNoAbrBsUv~@{L~q@kL~x@cOz]_HzPaEtp@_Pl|@eV~aAkZzmAwb@fxAek@hjAih@fRgJ`JmEh{A}t@xuA_t@pdCqrA~`Aah@x[yPfc@oT|H{DlgAcj@nrA_l@nq@kYlw@eZxz@iYzt@eT~p@mQhv@_Qzf@yJjhAmRjp@gI`m@qGpi@kEb_@oBjt@yDbEGd\\sAdWi@|Ya@~bAQ|z@ZpmAzBh}AlFniAdErm@pCl`@jAr]~@|j@Dzi@qAf_@sBb_@sDd[mEbWaFln@oNvr@wOjb@qI|d@oHtYuBpWwAl][j\\ZxZr@zd@tD`\\hEhh@|Gl_@tEj_@jC~\\vAh^NlYm@v`@kCxT_CpYyD|PkClQaEb_@yJd]aMh[}Mn[}NfWwO`^yUt^uXx\\uYlj@mh@`i@uj@xn@mt@ze@oj@bu@y~@fcActAng@ks@vf@yt@p|@usAvu@}mA|w@usAln@mfA|f@i{@d[si@tg@u|@rFsJzk@abAje@{w@d}@azA|[qi@jI}Lt|@uuAhaBkgC|`@}k@v~@spA`xAgkBplCkaDzkA_qA~eA}hA~p@ip@lkAwfAf_A}u@|s@}g@tq@gb@`e@iVnl@kX|X}Kl\\_Ljo@{Pb[aHf_@}Fdb@aEbl@yCb_@g@fF@`\\Fds@nCxPx@z[rDnl@tJnr@lPtThFvwD`bA|lBlg@xn@fP`pDh_AzTxFrh@jMjw@jQ~q@rLpj@vFph@`Dn]dA|`@Dj_@]lk@aDjf@uFni@qHrNiCpn@uMthAeYbr@}R~r@wUbk@gTrm@kWp@Ync@iUjd@uX`_@yXvSuOnk@_f@|q@_x@lr@q_AlQkWps@emAnaBiwCt}A}sC~~@waBvm@{fAdi@}z@tg@sw@`o@{}@b`@qf@zXi\\dXyYbX{W|VaUnXwU|VuQli@i]hi@qY|o@uYds@mUbt@uPhm@iLtt@aJb|@aIdo@}DpYiB`m@wB||@qCfjAgBngAIxn@f@nk@hBx^hCzb@~E~b@nF`j@nKpc@jJzZhIbWpIb\\|Lfp@vW~|A~v@||An}@dq@~_@|t@ra@l]zPrb@zSlt@p\\dt@hZhkAbd@dv@vWxY`K`LzD|}@b\\plAhb@llBdu@z_@xOnkBl_A~KvF|O`Id{@ng@fq@|a@na@fX`]fUb\\nUty@vn@j_Avv@nx@vq@flAhcAt~@`u@j_BfjA|fA|r@fs@fb@tr@v_@`cBzz@rx@z^j~@xb@dnAzk@xfB|y@dwAtt@loAhr@vlArq@v|Aj}@`xBhoAheC|wArgCnzA`kBhfAlcAvl@`bAtk@xp@ba@xV|NfWxMdg@bY`eBnbA~uAvy@`rAju@vsAfv@xU~LlfBl`AnbAlg@x|Avt@l}@xa@ju@j[bbA|`@f{@j\\lgAx_@xbA~[lvA~a@`hAfZ|_AzUrqAzYxmA|UnaAfQ|dA~O`TvCn\\lFtgCrYx_CzSryBrOx|AxIbCNriAvF~iAzG`tAfHvpAfHpoAbI~o@jFxv@vGbhAtLd|@lLpp@bKdbAdRxjAtVxi@|Nli@lOrI`CrBz@~bBvg@v`Az^h`Av`@jQxH~jAnj@hjAdm@xp@l_@xg@lZ`S|LjgAjq@|uB|tAdfBtiAro@v`@|h@~Zna@`T~_@rRbd@dSze@zRtc@zOf[lKri@dP~`@fKxm@~M|g@pJtu@jL`oBhUrnB|Sn|@xJxt@jJj_AjLhaA~NjnAbUxgA~Tl{@rSxz@pT|dAfZti@jQrzArh@~p@rWdr@pY`l@nWhk@dXhm@fZvk@pZhb@jU|a@`Vvx@nf@nk@x^lg@z\\ze@r\\jy@rm@tv@`m@p|@tt@lZtWn~@nz@fh@`g@ho@zo@dq@vr@hAlAro@pr@pkAlsAnbAdjApZ|\\`y@~}@pJtJ~^|_@r\\`[hN~L~PnN`R|N~^xXjYpRbZpQjRxKf_@xRz[`OxZhMpa@tOpo@hTtw@tTdx@nSv{@lR~rAjXzg@nKtfBp\\zn@nKjo@fLvs@nOva@nKxd@dNvj@bR`X~JrYzLjZzMr`@hR`o@b\\ts@p_@xg@fW|g@`Vb`@lQ|\\~NnR~Hln@rVdi@lRng@dPxc@dM`i@`Nbd@vJfb@bIxp@|Khr@dKrb@lGtj@dI`d@fHnd@zHlo@pMtT~E~SpFlP~ExPlFvTdIvYfMlZtOvl@d`@`VbRjTzRzPzPlKfLrO|QjLxNxOnTdRnYzNnVxMhV~NlZhH~OfL~WlLnZdK|Y~Kh]hItX~P~l@|Pdo@xLzc@tLdd@lCtJhLb`@tSvp@`GvPpLl\\tJpVhEnKpKbWbElJzMxXzM`XnXlf@jLvRhO`VpPjVnTbZpRlVbT|Vbj@nl@fc@pb@lZtXl[rXh^~Zz]hYxz@dp@d`@~Xna@fY`_@pVn_@~U??v`@vUzYlPlZlOxYzMzYxLf_@xMjFbBl]fKt\\fIvVzFbYjFfk@dKbo@pJvu@jKvl@~H~_Gxx@lbHf`AzaEvi@xaF`p@hoBfW|v@zJdx@nKriAfObD`@j_@tEz\\pEzhCv\\`LvAf^vE|YxD~YxDtw@lKnqA~P~t@hJxu@bJdo@xGf|@fHbo@zDph@vBzb@|@`[\\~YA~VCfLKvMYpLSfYy@hh@gCbk@_Ep`@wDni@uGp^sF|_@yGx^mHx]}Hth@{Mnb@_Mxd@aOxV_JvTmIjWaK|YoMlXoLpWwLjj@{WnlAum@|JkFtq@q_@fg@iXjm@c\\|{Auy@vuAqu@hkAwm@nq@a\\d^}OrZ}M`UoJzVuJne@sPdYgJzTsGrYaInYaHpb@qIxUcE~RyCxb@oFh\\eD`[{Bl\\qBbZu@r\\i@rPKrQ@tSNbTd@pM^vNf@jRdAxObAnS~A~TrB`TlCrUvC~f@`Ir^bHx^zHlYvGfa@bKv~@vVrf@fOpY`JnLpD~PlFnk@jQbBh@~WzI`aB|g@ldBpi@t}Avf@~|@|XriHb|BhdAn\\reAr]zgAr_@rhAp`@viAva@rnFnrBz{GvhCx_At^`WrJrtCjgA~`Bln@zva@xxOfrAhg@pkAhc@df@|Pxf@pP|_@bMnr@bTpt@`Spo@|Ohj@jLxc@jI`a@jG`r@vIrb@`Efk@fEpq@`Dfc@lA`c@p@h]Rvj@?jj@Ulc@k@vc@y@`_AyB|nD{Kdl@mBvtEaOx}GkTt_A_Cp`AoApeA]feAZxxAtBzj@|Abq@jCn_AtEd~@hGd\\dCl]vCln@`Gxo@dHjh@nGpd@lG|WpD|UvD|i@vI|l@pKtq@vMnw@nPri@dMnl@zN|sAz]zm@tOrzAp]psAlXbVvEtp@bLhc@|Gtb@hGni@pHri@rGlr@rHhq@lGfvArLzqGdj@p~Jxz@t{A|M|j@xFvj@xFlh@rHpSzCfUzDf\\fG~]pHtYhHbZfIlXjIbWpIhn@xUp]~Nl\\jOpVzLjl@n\\~k@b_@lh@p^lg@n`@zWxTjX|Utq@~m@t}Ad|ApdC`eChOpOfmAfmAzaAz`A~z@|w@xq@tm@rWzT~d@d_@lRhO~W~Rp^nWdYjRdt@fd@t_@jT|_@jSpb@nSde@lS|ZfM|[rLjZlKbk@dQ|f@dNbWnGd[|Gz^fHb`@xG~c@vGhg@|Fr|@hIjy@|Fnr@zDls@vCloAbF~t@~Cvu@nDzt@bEjv@|Env@xFvu@jGd_AfJp~@xJrh@jGnd@`GbDb@`uArRxbAzOjeAbRraAlRtaAhSfbAtThlAvYnfAdYlx@vTbx@~UfiA`^tiAv_@ho@bUjo@bVl~@|]r~@f_@dn@xWdjA`h@jjAvi@df@~Udg@`Wfg@bW`f@dWrmBnfAztAzx@zWlOt{@ne@fYvNra@zQfPhHfQlH`b@vOrg@`QvRhGt\\fJr\\fJxi@~LjTdEhUjEbUxDvUjDtY|DpZhDlV`C~\\rCp[tBhq@nDjbCnJfzN`k@t~AnGbd@zAxLV`f@~@zTFzUGjWi@~]cAx\\eBlb@uDtc@yFjb@wGzToElUeFnQiEh^kK~q@{ThgAa_@vsHygCnjC{|@jy@yXlrBcr@l}@{Zl^uMtZ}Lf]gNr\\{Nr^oPvt@k\\zh@gV~_@cQza@uQ`b@kP`_@}Mv[uK~UsHlZ_JdUkGh[eI`b@{Jr[yG~[iGd[iFlUkDzTyCb\\iErYsClZcCxHk@rUiBt[uBfk@wBvc@kAp[_@jk@K`hGfAtMB`JBjfBb@vz@Hnb@R~k@XzQZrPh@hMj@jMr@zMfArLlAlMzAlMjBhMnBvLbCrVhFpZzHbFzAhJnCvOfFf\\bMjS~IvNjHr]pQrXnPvKhHbNlJzHjGfB~AbCzBrNlNpeBt}Axa@x_@jh@jg@t\\j]`z@rs@bM`Kp]fVxOtLdj@fd@xuCj_Cjm@pg@beDnmCfqHfeGjo@|g@dW|Q~_@dWfQlKjRhKxNpHtQrIlXjLbZrK`QxFdWvHta@rJ|YvFpUlDvZzDrZdCxU~AhWz@xT^`ABtPD~RMtZg@r_@uAfU_BlWoCn[iE`i@gK|TuFvSyFlh@_QzYkLpSsIfY_OhP}IhR{KzQuLnR{MtP_MhTaQbT_R`UaTfTuTrUyWzZu^`w@k_Alk@_s@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 20 miles.","announcement":"Continue for 20 miles.","distanceAlongGeometry":31405.77},{"ssmlAnnouncement":"In a quarter mile, Keep left toward Marseille.","announcement":"In a quarter mile, Keep left toward Marseille.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left toward Marseille, Genève.","announcement":"Keep left toward Marseille, Genève.","distanceAlongGeometry":116.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.722757,45.940001],"geometry_index":9288,"admin_index":9,"weight":7.656,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.68,"bearings":[138,144,321],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,320],"duration":3.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.312,"geometry_index":9291,"location":[4.724732,45.93841]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":12.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.52,"geometry_index":9293,"location":[4.725589,45.9377]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,343],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.727,"geometry_index":9304,"location":[4.727928,45.934595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,344],"duration":10.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":10.312,"geometry_index":9305,"location":[4.728008,45.934401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.02,"geometry_index":9314,"location":[4.72839,45.931443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.578,"geometry_index":9316,"location":[4.728315,45.930863]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,191],"duration":1.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.043,"geometry_index":9317,"location":[4.728289,45.930703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.441,"geometry_index":9318,"location":[4.728208,45.93041]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[11,193,201],"duration":9.215,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.977,"geometry_index":9319,"location":[4.728174,45.930286]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.766,"geometry_index":9326,"location":[4.72693,45.927846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,205],"duration":4.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.555,"geometry_index":9327,"location":[4.726793,45.927648]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,201],"duration":71.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":67.508,"geometry_index":9330,"location":[4.726013,45.926478]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.59,"geometry_index":9352,"location":[4.728123,45.907042]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,177,352],"duration":30.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":28.016,"geometry_index":9353,"location":[4.72822,45.906575]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.730635,45.898516],"geometry_index":9363,"admin_index":9,"weight":7.84,"is_urban":false,"turn_weight":1,"duration":7.221,"bearings":[162,341,344],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":20.203,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":19.176,"geometry_index":9366,"location":[4.73151,45.896651]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.734241,45.891071],"geometry_index":9370,"admin_index":9,"weight":20.902,"is_urban":false,"turn_weight":1,"duration":20.971,"bearings":[161,336,341],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":2.258,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.125,"geometry_index":9373,"location":[4.736936,45.885581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":0.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.738,"geometry_index":9374,"location":[4.737223,45.884994]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,342],"duration":5.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.484,"geometry_index":9375,"location":[4.737321,45.884789]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,343],"duration":82.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":78.414,"geometry_index":9377,"location":[4.738006,45.883262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.148,"geometry_index":9397,"location":[4.741317,45.860562]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":69.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":65.977,"geometry_index":9398,"location":[4.74141,45.859928]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,326],"duration":0.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.289,"geometry_index":9428,"location":[4.751103,45.842328]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[145,149,325],"duration":15.002,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.621,"geometry_index":9429,"location":[4.751169,45.842262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":6.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.996,"geometry_index":9433,"location":[4.754343,45.839106]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":9.359,"geometry_index":9435,"location":[4.755634,45.837809]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.757515,45.835661],"geometry_index":9438,"admin_index":9,"weight":9.508,"is_urban":false,"turn_weight":1,"duration":8.518,"bearings":[153,325,331],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,334],"duration":14.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.172,"geometry_index":9443,"location":[4.759082,45.833601]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":6.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.906,"geometry_index":9450,"location":[4.761253,45.830017]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[163,170,342],"duration":5.635,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.77,"geometry_index":9453,"location":[4.762098,45.828216]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,345],"duration":5.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.473,"geometry_index":9455,"location":[4.762594,45.827046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,346],"duration":6.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.914,"geometry_index":9457,"location":[4.763006,45.825927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.691,"geometry_index":9459,"location":[4.76348,45.824505]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":2.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.332,"geometry_index":9460,"location":[4.763727,45.823744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":9.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":10.195,"geometry_index":9461,"location":[4.763863,45.823322]},{"entry":[true,false],"in":1,"bearings":[168,347],"duration":10.266,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":15.523,"geometry_index":9464,"location":[4.764458,45.821483]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":18.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":19.297,"geometry_index":9466,"location":[4.765038,45.819633]},{"entry":[true,false,false],"in":2,"bearings":[167,336,347],"duration":3.461,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":4.289,"geometry_index":9469,"location":[4.766153,45.816241]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":13.289,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":13.613,"geometry_index":9470,"location":[4.766358,45.81562]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":17.098,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":17.941,"geometry_index":9471,"location":[4.76715,45.813227]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":18.535,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":19.453,"geometry_index":9473,"location":[4.768159,45.810109]},{"entry":[true,false],"in":1,"bearings":[166,348],"duration":40.754,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":42.789,"geometry_index":9476,"location":[4.769244,45.806724]},{"entry":[true,false],"in":1,"bearings":[144,325],"duration":16.57,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":17.879,"geometry_index":9488,"location":[4.774299,45.800049]},{"entry":[true,false],"in":1,"bearings":[144,324],"duration":49.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":9,"out":0,"weight":52.027,"geometry_index":9489,"location":[4.776781,45.797633]},{"entry":[true,false],"in":1,"bearings":[161,340],"duration":2.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.418,"geometry_index":9502,"location":[4.783277,45.790025]},{"entry":[true,false],"in":1,"bearings":[162,341],"duration":2.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.805,"geometry_index":9503,"location":[4.783465,45.789639]},{"entry":[true,true,false],"in":2,"bearings":[161,169,342],"duration":36.469,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":40.094,"geometry_index":9505,"location":[4.783669,45.789203]},{"entry":[false,false,true],"in":1,"bearings":[27,39,217],"duration":11.445,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":2,"weight":13.32,"geometry_index":9524,"location":[4.783025,45.783113]},{"entry":[false,true],"in":0,"bearings":[34,211],"duration":20.504,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":22.555,"geometry_index":9527,"location":[4.781352,45.781527]},{"entry":[true,false],"in":1,"bearings":[155,343],"duration":4.539,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.992,"geometry_index":9541,"location":[4.780805,45.778142]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":19.617,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":21.578,"geometry_index":9546,"location":[4.781349,45.777463]},{"entry":[true,false],"in":1,"bearings":[140,321],"duration":6.156,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":6.926,"geometry_index":9551,"location":[4.784291,45.774778]},{"entry":[true,true,false],"in":2,"bearings":[135,153,317],"duration":8.289,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":9.301,"geometry_index":9554,"location":[4.785293,45.773985]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":7.48,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":8.418,"geometry_index":9558,"location":[4.786733,45.773125]},{"entry":[true,false],"in":1,"bearings":[127,306],"duration":2.645,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.973,"geometry_index":9560,"location":[4.788107,45.772419]},{"entry":[true,false,false],"in":2,"bearings":[127,290,307],"duration":0.465,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":1.262,"geometry_index":9561,"location":[4.788588,45.77217]},{"entry":[true,false],"in":1,"bearings":[126,307],"duration":9.258,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":10.414,"geometry_index":9562,"location":[4.788682,45.772121]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":1.656,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":1.863,"geometry_index":9563,"location":[4.790363,45.771259]},{"entry":[true,false],"in":1,"bearings":[125,305],"duration":14.059,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":15.812,"geometry_index":9565,"location":[4.790672,45.771107]},{"entry":[true,false],"in":1,"bearings":[135,314],"duration":33.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":37.758,"geometry_index":9570,"location":[4.793059,45.769665]},{"entry":[true,false],"in":1,"bearings":[131,310],"duration":7.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":8.324,"geometry_index":9575,"location":[4.798557,45.766173]},{"entry":[true,false,false],"in":2,"bearings":[132,298,313],"duration":12.672,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":14.988,"geometry_index":9578,"location":[4.799985,45.765297]},{"entry":[true,false],"in":1,"bearings":[136,315],"duration":2.027,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.773,"geometry_index":9581,"location":[4.802136,45.763855]},{"entry":[true,false],"in":1,"bearings":[136,316],"duration":3.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":3.551,"geometry_index":9582,"location":[4.802424,45.763648]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[133,312],"duration":16.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":18.438,"geometry_index":9585,"location":[4.802881,45.763338]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[118,298],"duration":16.074,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":18.074,"geometry_index":9588,"location":[4.805919,45.76162]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[126,306],"duration":18.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":20.977,"geometry_index":9590,"location":[4.809256,45.760295]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[135,315],"duration":16.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":18.133,"geometry_index":9593,"location":[4.812552,45.75821]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[135,315],"duration":15.965,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":17.953,"geometry_index":9595,"location":[4.815262,45.756289]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[140,319],"duration":15.977,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":17.953,"geometry_index":9598,"location":[4.817925,45.754379]},{"entry":[true,true,false],"in":2,"bearings":[143,169,324],"duration":5.68,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":6.527,"geometry_index":9600,"location":[4.820211,45.752241]},{"entry":[true,false],"in":1,"bearings":[130,317],"duration":1.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.266,"geometry_index":9604,"location":[4.82096,45.751592]},{"entry":[true,false],"in":1,"bearings":[121,307],"duration":5.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":6.402,"geometry_index":9607,"location":[4.821312,45.751397]},{"entry":[true,true,false],"in":2,"bearings":[118,127,299],"duration":9.391,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":10.793,"geometry_index":9609,"location":[4.822422,45.750961]},{"entry":[true,false],"in":1,"bearings":[117,289],"duration":1.641,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":1.887,"geometry_index":9615,"location":[4.824292,45.750392]},{"entry":[true,true,false],"in":2,"bearings":[126,139,297],"duration":3.852,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.414,"geometry_index":9618,"location":[4.824593,45.750285]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[115,301],"duration":13.184,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":15.16,"geometry_index":9625,"location":[4.825267,45.749959]},{"entry":[true,false],"in":1,"bearings":[119,295],"duration":8.852,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":15.176,"geometry_index":9626,"location":[4.828186,45.749027]},{"entry":[true,false],"in":1,"bearings":[132,312],"duration":4.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":5.059,"geometry_index":9632,"location":[4.829368,45.748368]},{"entry":[true,false],"in":1,"bearings":[177,329],"duration":3.82,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.395,"geometry_index":9637,"location":[4.829818,45.747991]},{"entry":[false,true],"in":0,"bearings":[25,215],"duration":2.793,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":3.211,"geometry_index":9647,"location":[4.829691,45.747548]},{"entry":[false,true],"in":0,"bearings":[36,213],"duration":20.172,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":22.695,"geometry_index":9649,"location":[4.82941,45.747273]},{"entry":[false,false,true],"in":1,"bearings":[25,32,211],"duration":54.391,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":2,"weight":60.559,"geometry_index":9656,"location":[4.8273,45.744754]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":2.777,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":3.055,"geometry_index":9657,"location":[4.820554,45.736817]},{"entry":[false,true,true],"in":0,"bearings":[31,210,218],"duration":4.051,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":4.434,"geometry_index":9658,"location":[4.820191,45.736402]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":4.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":4.949,"geometry_index":9660,"location":[4.819703,45.735823]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":6.371,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":7.008,"geometry_index":9661,"location":[4.819271,45.735324]},{"entry":[false,true],"in":0,"bearings":[31,211],"duration":13.633,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":14.996,"geometry_index":9662,"location":[4.818657,45.734616]},{"entry":[false,true],"in":0,"bearings":[31,210],"duration":5.805,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":6.238,"geometry_index":9663,"location":[4.817477,45.733244]},{"entry":[false,true],"in":0,"bearings":[30,211],"duration":5.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":6.398,"geometry_index":9666,"location":[4.816971,45.732633]},{"entry":[false,false,true],"in":1,"bearings":[23,32,210],"duration":0.297,"turn_weight":0.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":2,"weight":1.047,"geometry_index":9668,"location":[4.816431,45.732014]},{"entry":[false,true],"in":0,"bearings":[30,211],"duration":5.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":5.465,"geometry_index":9669,"location":[4.816404,45.731981]},{"entry":[false,true],"in":0,"bearings":[31,210],"duration":4.023,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":4.324,"geometry_index":9670,"location":[4.815932,45.731428]},{"entry":[false,true,true],"in":0,"bearings":[30,204,217],"duration":3.629,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":3.871,"geometry_index":9671,"location":[4.815563,45.730984]},{"entry":[false,true],"in":0,"bearings":[14,183],"duration":6.652,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":1,"weight":7.148,"geometry_index":9677,"location":[4.815344,45.73054]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[158,336],"duration":2.148,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.309,"geometry_index":9688,"location":[4.815672,45.72961]},{"entry":[true,false],"in":1,"bearings":[163,339],"duration":3.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":4.262,"geometry_index":9690,"location":[4.815857,45.729275]},{"entry":[true,false],"in":1,"bearings":[169,348],"duration":54.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":58.641,"geometry_index":9694,"location":[4.816095,45.728616]},{"entry":[true,false],"in":1,"bearings":[160,342],"duration":2.465,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":2.652,"geometry_index":9708,"location":[4.818716,45.718996]},{"entry":[true,false],"in":1,"bearings":[159,340],"duration":15.09,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":16.223,"geometry_index":9709,"location":[4.818939,45.71857]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":9.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":9.836,"geometry_index":9710,"location":[4.820326,45.716002]},{"entry":[true,false],"in":1,"bearings":[152,334],"duration":7.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":7.953,"geometry_index":9717,"location":[4.821232,45.71449]},{"entry":[true,false],"in":1,"bearings":[144,325],"duration":37.266,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":41.473,"geometry_index":9722,"location":[4.822225,45.713352]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":20.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":22.289,"geometry_index":9751,"location":[4.8295,45.708664]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":19.707,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":21.656,"geometry_index":9754,"location":[4.832341,45.705733]},{"entry":[true,false],"in":1,"bearings":[170,347],"duration":9.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":9,"out":0,"weight":10.176,"geometry_index":9768,"location":[4.835067,45.702379]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.835473,45.70058],"geometry_index":9771,"admin_index":9,"weight":11.93,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":10.867,"bearings":[171,177,351],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,338],"duration":11.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":12.996,"geometry_index":9778,"location":[4.836143,45.698532]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,310],"duration":1.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":1.117,"geometry_index":9791,"location":[4.838118,45.696725]},{"bearings":[130,303,314],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"geometry_index":9792,"location":[4.838303,45.696602]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Marseille"},{"type":"text","text":"/"},{"type":"text","text":"Genève"}],"type":"fork","modifier":"left","text":"Marseille / Genève"},"distanceAlongGeometry":31442.436}],"destinations":"Clermont-Fd, Lyon-Centre","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take Autoroute du Soleil toward Clermont-Fd/Lyon-Centre.","modifier":"slight left","bearing_after":138,"bearing_before":141,"location":[4.722757,45.940001]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":1473.873,"duration_typical":1384.508,"duration":1384.385,"distance":31442.436,"driving_side":"right","weight":1473.75,"mode":"driving","geometry":"aq}rvAicg_Hji@su@vLqOhj@gs@rT_ZvUqYhQkSnL{LxLgLxLqKnQuNtRgNjY}PfOeIxP_IfR{HvOeFbK_D~S}EfSyDrXyD|QkBxTuAtTq@pPGpRTlQz@hJb@|WpB~Hr@hQ`DvFbA|RxEfUpG~R|GjS`IpNpGrPzIvc@|VjKpGfh@`[lNlIlOfIvSpJtT|IdUrHrStFzPxDtOrCbOvBj[`D|Mt@nQp@fPJ`TK~Ro@tP_Ah`@cEz`AwKj~BcXxyCc^`zC{^thCo[hsAkPpuDyd@d\\aEbtAoPjy@yKnf@_Izg@{Ilc@qIrc@oJzk@{M`k@{Ndl@aPrgA{\\xcAi^tm@yU`@Qnm@yU~yBe{@`bBoo@doAef@`mC_eA|~A_n@bhBmr@tc@}PxKcEbj@iShs@oUhp@sRn\\uI`_@aJfn@aNtl@_Lns@oLxPcCt[eEfe@qF`r@aG~u@{EzgAwEdoAoFvgDqMjbEkP`wB{IjaB}GvhBsHvlAmGns@cFrf@yDz[kClh@_G`g@oGfw@sLpg@yIlg@eKz`@yIf`@sJ~g@iNpa@{Llo@}Sxf@gQzj@cUz^mOx_@yP~^kQ~_@uRzWsNhWsNjh@qZzBqApY{Q~YsRjr@kf@fh@e`@xQaN|g@ob@|y@gu@hf@id@fp@oo@bCcCtiAoiA~n@oo@hl@yl@f\\q\\f_A_`AxOuNhn@gk@df@{a@vn@me@lG}DrXqTdf@}\\|c@mZpQaLn\\kSza@gVra@mTxX{Nlg@qVdj@kVpNyFpTyIti@{Rho@cUvt@sVjRkFtOkEft@kRjt@aQnb@qJpn@mNjYoGrSuEhf@wK~u@wPz{@uQvu@qPjj@sMxqAqYxtAo[xe@yKptCop@~lC}l@zs@cPtb@cK|PuD||C_q@jKqC~^sJx]gK|b@aOh[sN|R}Kxa@iWbUiQf[{Xn]s\\fnAuoAz}@a_A~uCczC`PwPrRwQ|FaGruCuyCd{@gz@~Q_PxRwO|MiKbRoMpX{Pn]yR|b@}Sdv@i[bWwJjHqCzPeGt|@q]dk@wTnR}FvR{EdQgChSqAbTPbOt@bSpC~InBnIxBlH`CjIjDtMtGxK|G~KnIxKfKzJ|Jb`@he@tn@rr@db@fd@fOtN|AxAhKhIfK|G|MpHfNtFzIlCrL|C~P|B`PbAlNDjO_@`S{B~UgFlRsGjLyGnGeEnHeGnFkFpBmB`NsM~c@gg@jk@kp@pl@}p@xXu\\t@{@~We]zUq]xF_JxOaZhKqTxOk]rJeUn_@u~@pNa]`B{Dzt@ahBrBkFzD}JvEwLlPi_@jRs_@vUib@xVeb@rn@gcAnm@geAr}@qcBlZem@`a@ky@lQ}]rQy]tPoZ~P{[pSe_@pr@khA|K_QnIsMzDeH~AwCz_@wp@h`AorBdHsWn~@ciDhRme@le@mkAheAebBpTk]taBejCjTe]taBajCjJcOhHgJxZu`@xhBelBfT}U`EwElEyFxEiH`CqEjCyFvBsFjBsFzVw|@tI{[pBcIbB{H~EiV|BuMfF_]bAmFlAkEbA_DhAcDfBcErD}HtAcDdAqCv@mCpAyEfy@muD~@mDbA{DjAmDpAyCnGuMrVsd@hHuMjCqD`BcBpB_BfBw@`A[`AOnAIlAAhADpATzAd@fAb@x@`@xElDrEnEpI`JjF|EdRrO~VvQn[rU~VjRbVhRf^f[`oNrdL|XtU`ZpUbH|Fd^~Yfk@je@vtAvhAbK`IhQbNvFlE|GlFv\\hY`At@pa@n\\vZ`VlF|ClDdB~B`ArBp@`Cd@dBVjBTvBJlB@tBI|BOjBUrBc@dBe@nBo@xAq@lVwM|OqH~B_AdFiB~E_BfIoBvOaDpgAmS`|B_b@d^mG`^kGf}@iOvb@eG~rC}_@`TiDdMkCxLsC|LoDxLwDxG}BvHsCrY}Ln_DuuAh[iNxSoJ|H}DjHwDhI{EtH}E`EiC~PyLxJyHlKwIxMyL`M{LzNyO~H_J|FoHtGiIpFwHfGqIpDqFrEcHpHeMtHwMbHqMjHsNvGqNdGcN`GwNtGuPxt@gpBfEuKdCmGrCuGjC{FzFeLnHoM~HaMlIeLdGiH~FmG`K_KvJeJhq@wo@RSfcCe_Cf}A}yAjWuVjE{DrD{C`DgCxEkDdEuChEmC~EsChEyBzEwBdHsClFkBxPaE|SoDlWcD`bAwMrs@qKlKuApIuAfLwCpMgE~JqDpKkF~HoExGaEbHoEdHsFlGsF`GyF|FkGjFoGxFoHjFsHhFmInEuH~MeXtFqJpwD__I"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 118 miles.","announcement":"Continue for 118 miles.","distanceAlongGeometry":189235.719},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 7.","announcement":"In 2 miles, Keep left to take A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 7.","announcement":"In a half mile, Keep left to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 7, E 714 toward Marseille.","announcement":"Keep left to take A 7, E 714 toward Marseille.","distanceAlongGeometry":288.889}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[130,138,310],"duration":0.855,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":0.957,"geometry_index":9793,"location":[4.843423,45.693649]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,310],"duration":11.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":13.332,"geometry_index":9794,"location":[4.843591,45.69355]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.845165,45.691761],"geometry_index":9807,"admin_index":9,"weight":45.914,"is_urban":true,"turn_weight":0.75,"duration":41.066,"bearings":[165,336,343],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[175,193,354],"duration":25.984,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":27.926,"geometry_index":9817,"location":[4.847019,45.683775]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":7.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":7.816,"geometry_index":9819,"location":[4.847791,45.678096]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":10.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":11.215,"geometry_index":9826,"location":[4.847904,45.676467]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.847682,45.67405],"geometry_index":9834,"admin_index":9,"weight":11.699,"is_urban":false,"turn_weight":0.75,"duration":10.691,"bearings":[1,7,189],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":40.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":40.328,"geometry_index":9840,"location":[4.84697,45.671622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":36.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":35.242,"geometry_index":9857,"location":[4.842359,45.662196]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[26,207,213],"duration":24.766,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":24.141,"geometry_index":9877,"location":[4.83819,45.653778]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.833784,45.648573],"geometry_index":9889,"admin_index":9,"weight":21.184,"is_urban":false,"turn_weight":1,"duration":20.707,"bearings":[25,33,213],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":20.793,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.254,"geometry_index":9896,"location":[4.829605,45.644311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":169.875,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":169.855,"geometry_index":9905,"location":[4.82521,45.64014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":11.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.594,"geometry_index":9981,"location":[4.797553,45.603336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,190],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.379,"geometry_index":9993,"location":[4.796056,45.600761]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":3.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.77,"geometry_index":10003,"location":[4.795848,45.599083]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":20.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.91,"geometry_index":10005,"location":[4.795905,45.59823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,350],"duration":1.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.219,"geometry_index":10012,"location":[4.796694,45.593532]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,350],"duration":4.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.121,"geometry_index":10013,"location":[4.796759,45.593263]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[168,176,349],"duration":9.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":9.449,"geometry_index":10015,"location":[4.797049,45.592145]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,347],"duration":9.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":9.68,"geometry_index":10018,"location":[4.797718,45.589997]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":5.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.133,"geometry_index":10020,"location":[4.79855,45.587821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,344],"duration":10.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":10.504,"geometry_index":10021,"location":[4.799128,45.586452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.800193,45.584201],"geometry_index":10024,"admin_index":9,"weight":9.832,"is_urban":false,"turn_weight":1,"duration":8.434,"bearings":[160,334,343],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":0.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.172,"geometry_index":10028,"location":[4.801319,45.582029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,340],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.148,"geometry_index":10029,"location":[4.801342,45.581985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":4.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.594,"geometry_index":10030,"location":[4.801486,45.581722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":12.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.809,"geometry_index":10033,"location":[4.802056,45.580685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":5.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.73,"geometry_index":10038,"location":[4.803816,45.57769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,329],"duration":0.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.676,"geometry_index":10044,"location":[4.80474,45.576406]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,328],"duration":15.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":15.547,"geometry_index":10045,"location":[4.804871,45.576261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":8.34,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":8.527,"geometry_index":10057,"location":[4.808805,45.573545]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,310],"duration":4.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.484,"geometry_index":10063,"location":[4.811368,45.572275]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,314],"duration":15.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":15.961,"geometry_index":10067,"location":[4.812615,45.571478]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,333],"duration":39.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":38.477,"geometry_index":10080,"location":[4.816148,45.568078]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,328],"duration":24.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":23.133,"geometry_index":10100,"location":[4.822725,45.558742]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,324],"duration":35.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":33.75,"geometry_index":10108,"location":[4.827809,45.553381]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,308],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.52,"geometry_index":10126,"location":[4.836845,45.546476]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,291],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.547,"geometry_index":10141,"location":[4.843823,45.543558]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,290],"duration":1.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.742,"geometry_index":10142,"location":[4.844031,45.543506]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[4.844688,45.54336],"geometry_index":10144,"admin_index":9,"weight":45.559,"is_urban":false,"turn_weight":15,"duration":31.367,"bearings":[103,137,287],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,330],"duration":14.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.988,"geometry_index":10178,"location":[4.854851,45.541264]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.488,"geometry_index":10184,"location":[4.856564,45.537572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.223,"geometry_index":10185,"location":[4.856728,45.537203]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":60.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":60.41,"geometry_index":10186,"location":[4.856856,45.536905]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,195],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.215,"geometry_index":10225,"location":[4.859648,45.522043]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191],"duration":76.984,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":76.965,"geometry_index":10227,"location":[4.859454,45.52149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.203,"geometry_index":10281,"location":[4.842703,45.506881]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.602,"geometry_index":10282,"location":[4.842636,45.506852]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.842123,45.506633],"geometry_index":10283,"admin_index":9,"weight":7.199,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.402,"bearings":[59,237,258],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,216],"duration":5.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.406,"geometry_index":10292,"location":[4.840207,45.50542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,197],"duration":10.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":10,"geometry_index":10298,"location":[4.83927,45.504211]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":14.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":14.141,"geometry_index":10307,"location":[4.838935,45.501856]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,187],"duration":5.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.781,"geometry_index":10312,"location":[4.839096,45.498129]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,208],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.934,"geometry_index":10319,"location":[4.838511,45.496687]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,214],"duration":5.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.945,"geometry_index":10321,"location":[4.838146,45.496251]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,225],"duration":23.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":22.363,"geometry_index":10325,"location":[4.83696,45.495242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,184],"duration":38.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":36.109,"geometry_index":10341,"location":[4.832451,45.4903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.168,"geometry_index":10368,"location":[4.833485,45.480989]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,193],"duration":5.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.316,"geometry_index":10369,"location":[4.833467,45.480945]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,191],"duration":22.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":21.176,"geometry_index":10374,"location":[4.833041,45.4797]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":1.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.457,"geometry_index":10377,"location":[4.832463,45.477116]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.83243,45.476935],"geometry_index":10378,"admin_index":9,"weight":16.129,"is_urban":false,"toll_collection":{"name":"Péage de Vienne","type":"toll_booth"},"turn_weight":15,"duration":1.219,"bearings":[7,183],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,178],"duration":12.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.738,"geometry_index":10379,"location":[4.832417,45.476754]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,194,355],"duration":6.316,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.996,"geometry_index":10383,"location":[4.832707,45.474897]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":4.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.805,"geometry_index":10385,"location":[4.83284,45.473496]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.832917,45.472608],"geometry_index":10387,"admin_index":9,"weight":11.223,"is_urban":false,"turn_weight":1,"duration":10.777,"bearings":[177,329,357],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":3.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.289,"geometry_index":10389,"location":[4.833089,45.470194]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,359],"duration":73.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":67.703,"geometry_index":10391,"location":[4.833141,45.469076]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":44.938,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":40.426,"geometry_index":10418,"location":[4.827507,45.445723]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,359],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.766,"geometry_index":10437,"location":[4.823712,45.431433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.914,"geometry_index":10438,"location":[4.823724,45.431199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,356],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.848,"geometry_index":10439,"location":[4.823776,45.43062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,354],"duration":3.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.91,"geometry_index":10440,"location":[4.823815,45.430372]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.539,"geometry_index":10442,"location":[4.823999,45.429512]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.531,"geometry_index":10443,"location":[4.824042,45.429352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.824163,45.428904],"geometry_index":10444,"admin_index":9,"weight":6.629,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.191,"bearings":[166,176,349],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":6.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.648,"geometry_index":10448,"location":[4.825003,45.426993]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.825856,45.425395],"geometry_index":10451,"admin_index":9,"weight":3.512,"is_urban":false,"turn_weight":1,"duration":2.723,"bearings":[160,315,339],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,340],"duration":1.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.391,"geometry_index":10452,"location":[4.826225,45.424695]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":4.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.27,"geometry_index":10453,"location":[4.826453,45.424317]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,341],"duration":8.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":7.809,"geometry_index":10456,"location":[4.827101,45.423138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,352],"duration":54.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":50.219,"geometry_index":10463,"location":[4.827822,45.420876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":0.883,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.809,"geometry_index":10492,"location":[4.819803,45.407367]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,213],"duration":0.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.898,"geometry_index":10493,"location":[4.819611,45.407164]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.819399,45.406939],"geometry_index":10494,"admin_index":9,"weight":20.961,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.668,"bearings":[33,214,234],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.814393,45.401672],"geometry_index":10497,"admin_index":9,"weight":8.336,"is_urban":false,"turn_weight":1,"duration":7.953,"bearings":[13,34,213],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":17.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":16.621,"geometry_index":10499,"location":[4.812632,45.399804]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.695,"geometry_index":10505,"location":[4.808701,45.395556]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,205],"duration":6.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.902,"geometry_index":10507,"location":[4.808168,45.394847]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,200],"duration":5.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.301,"geometry_index":10511,"location":[4.807173,45.39324]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.543,"geometry_index":10514,"location":[4.806497,45.391799]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":6.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":6.352,"geometry_index":10515,"location":[4.806436,45.391652]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":3.902,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.797,"geometry_index":10519,"location":[4.805862,45.38991]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.805643,45.388849],"geometry_index":10522,"admin_index":9,"weight":10.055,"is_urban":false,"turn_weight":0.5,"duration":9.578,"bearings":[7,185,335],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,357],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.277,"geometry_index":10529,"location":[4.805559,45.386227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.816,"geometry_index":10530,"location":[4.805597,45.385875]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":23.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":23.398,"geometry_index":10533,"location":[4.805671,45.3851]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":30.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":31.434,"geometry_index":10546,"location":[4.804779,45.37872]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,341],"duration":4.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5,"geometry_index":10568,"location":[4.807903,45.370929]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,357],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.703,"geometry_index":10573,"location":[4.8082,45.369607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[182,359],"duration":6.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.238,"geometry_index":10574,"location":[4.808203,45.369418]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.344,"geometry_index":10579,"location":[4.807866,45.367769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":8.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.988,"geometry_index":10580,"location":[4.807753,45.36742]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":32.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":33.68,"geometry_index":10582,"location":[4.807025,45.365065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,181],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.633,"geometry_index":10595,"location":[4.805106,45.356156]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,182],"duration":25.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":25.59,"geometry_index":10596,"location":[4.8051,45.355986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":36.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":35.484,"geometry_index":10606,"location":[4.806292,45.348973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.582,"geometry_index":10613,"location":[4.80898,45.339166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":37.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":36.719,"geometry_index":10614,"location":[4.809102,45.338728]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.242,"geometry_index":10629,"location":[4.81177,45.326661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.402,"geometry_index":10630,"location":[4.811778,45.326583]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.594,"geometry_index":10632,"location":[4.811864,45.325788]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.811883,45.32559],"geometry_index":10633,"admin_index":9,"weight":21.156,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.703,"bearings":[177,208,356],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[false,true,false],"classes":["toll","motorway"],"in":0,"bearings":[2,181,336],"duration":8.277,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.062,"geometry_index":10643,"location":[4.812068,45.319588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.41,"geometry_index":10647,"location":[4.811959,45.317297]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183,218],"duration":3.934,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.828,"geometry_index":10648,"location":[4.811951,45.317184]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183,345],"duration":18.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":17.645,"geometry_index":10651,"location":[4.811871,45.316104]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,359],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.137,"geometry_index":10657,"location":[4.811592,45.311144]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,357],"duration":16.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":16.496,"geometry_index":10658,"location":[4.811614,45.310826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,337],"duration":31.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":30.793,"geometry_index":10669,"location":[4.813125,45.306327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,317],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.332,"geometry_index":10685,"location":[4.820659,45.29954]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,320],"duration":12.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.188,"geometry_index":10686,"location":[4.821,45.299255]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,340],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.117,"geometry_index":10696,"location":[4.823325,45.296258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,343],"duration":53.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":52.426,"geometry_index":10698,"location":[4.823449,45.295965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,338],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.191,"geometry_index":10731,"location":[4.822818,45.281637]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.676,"geometry_index":10732,"location":[4.822846,45.28159]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.823107,45.281159],"geometry_index":10733,"admin_index":9,"weight":30.309,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":31.93,"bearings":[152,160,337],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.82962,45.273789],"geometry_index":10741,"admin_index":9,"weight":12.953,"is_urban":false,"turn_weight":1,"duration":12.605,"bearings":[147,304,328],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":59.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":56.262,"geometry_index":10747,"location":[4.832315,45.270788]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":42.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":39.52,"geometry_index":10772,"location":[4.835505,45.254686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,320],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.277,"geometry_index":10793,"location":[4.839298,45.243388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,318],"duration":22.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.754,"geometry_index":10794,"location":[4.839665,45.243105]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,332],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.93,"geometry_index":10806,"location":[4.845597,45.238499]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,336],"duration":105.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":97.363,"geometry_index":10807,"location":[4.84576,45.238247]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,295],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.949,"geometry_index":10859,"location":[4.868934,45.209176]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":74.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":69.289,"geometry_index":10860,"location":[4.869367,45.209038]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,327],"duration":15.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":13.934,"geometry_index":10913,"location":[4.879312,45.187762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,350],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.301,"geometry_index":10922,"location":[4.882052,45.183328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":16.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":15.77,"geometry_index":10923,"location":[4.882138,45.182947]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,329],"duration":1.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.281,"geometry_index":10932,"location":[4.884415,45.178598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,328],"duration":21.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":20.277,"geometry_index":10933,"location":[4.884698,45.178277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.816,"geometry_index":10945,"location":[4.888237,45.172832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,347],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.027,"geometry_index":10947,"location":[4.888517,45.172019]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,350],"duration":40.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":38.559,"geometry_index":10949,"location":[4.888742,45.171135]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":0.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.793,"geometry_index":10961,"location":[4.888589,45.159703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,182],"duration":8.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.664,"geometry_index":10962,"location":[4.888582,45.159467]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.816,"geometry_index":10964,"location":[4.88845,45.157212]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.888384,45.156091],"geometry_index":10965,"admin_index":9,"weight":12.984,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.676,"bearings":[2,182,199],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.888186,45.152244],"geometry_index":10969,"admin_index":9,"weight":12.91,"is_urban":false,"turn_weight":1,"duration":12.883,"bearings":[2,182,336],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":6.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.965,"geometry_index":10975,"location":[4.888091,45.148066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,350],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.18,"geometry_index":10978,"location":[4.888421,45.146309]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":9.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":8.77,"geometry_index":10981,"location":[4.888966,45.144857]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,336],"duration":24.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":22.234,"geometry_index":10984,"location":[4.890093,45.142886]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":220.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":209.75,"geometry_index":10995,"location":[4.893463,45.135487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,340],"duration":0.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.887,"geometry_index":11097,"location":[4.869379,45.069872]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,338],"duration":2.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.105,"geometry_index":11098,"location":[4.869529,45.069608]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.869945,45.068994],"geometry_index":11100,"admin_index":9,"weight":8.25,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.273,"bearings":[150,172,334],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,325],"duration":1.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.074,"geometry_index":11104,"location":[4.871743,45.067044]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,327],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.309,"geometry_index":11105,"location":[4.871984,45.066786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.873267,45.065251],"geometry_index":11107,"admin_index":9,"weight":11.469,"is_urban":false,"turn_weight":1,"duration":10.746,"bearings":[153,310,330],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,338],"duration":142.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":138.523,"geometry_index":11112,"location":[4.87509,45.06242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,355],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.574,"geometry_index":11155,"location":[4.875175,45.021704]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.875,"geometry_index":11156,"location":[4.875194,45.02153]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.875288,45.020679],"geometry_index":11158,"admin_index":9,"weight":25.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.664,"bearings":[175,200,355],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.875867,45.012982],"geometry_index":11167,"admin_index":9,"weight":6.688,"is_urban":false,"turn_weight":1,"duration":5.844,"bearings":[1,182,339],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":37.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":35.879,"geometry_index":11169,"location":[4.87578,45.011294]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,350],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.879,"geometry_index":11180,"location":[4.87619,45.00039]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":2.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.059,"geometry_index":11181,"location":[4.876269,45.000131]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":6.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.191,"geometry_index":11182,"location":[4.87645,44.999532]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":28.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":27.152,"geometry_index":11185,"location":[4.877121,44.997711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,343],"duration":1.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.969,"geometry_index":11195,"location":[4.881358,44.990091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,346],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.359,"geometry_index":11196,"location":[4.88146,44.989811]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":17.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":16.348,"geometry_index":11198,"location":[4.881759,44.988833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,358],"duration":5.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.16,"geometry_index":11205,"location":[4.882145,44.983996]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":3.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.543,"geometry_index":11207,"location":[4.882328,44.982509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.281,"geometry_index":11209,"location":[4.882546,44.981496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":4.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.953,"geometry_index":11210,"location":[4.882565,44.981415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":1.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.996,"geometry_index":11212,"location":[4.882885,44.980372]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.957,"geometry_index":11213,"location":[4.882993,44.980114]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,345],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.492,"geometry_index":11214,"location":[4.883089,44.979868]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":13.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":12.977,"geometry_index":11215,"location":[4.883142,44.979745]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,340],"duration":2.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":2.242,"geometry_index":11221,"location":[4.884687,44.976626]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.884947,44.976103],"geometry_index":11222,"admin_index":9,"weight":5.852,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.02,"bearings":[161,169,341],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":4.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":4.852,"geometry_index":11224,"location":[4.885491,44.974951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,350],"duration":5.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":5.289,"geometry_index":11227,"location":[4.885784,44.973965]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.885921,44.972904],"geometry_index":11231,"admin_index":9,"weight":2.043,"is_urban":false,"turn_weight":0.5,"duration":1.551,"bearings":[179,325,358],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[181,359],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.852,"geometry_index":11232,"location":[4.885927,44.972639]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,183],"duration":7.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.773,"geometry_index":11233,"location":[4.885919,44.972324]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,191],"duration":4.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.957,"geometry_index":11237,"location":[4.885716,44.970992]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":5.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.617,"geometry_index":11239,"location":[4.885474,44.970155]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":26.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":26.281,"geometry_index":11240,"location":[4.885268,44.969471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,357],"duration":27.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":27.258,"geometry_index":11248,"location":[4.884343,44.964949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.137,"geometry_index":11257,"location":[4.886414,44.960439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,343],"duration":34.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":36.379,"geometry_index":11258,"location":[4.886519,44.960196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":0.207,"geometry_index":11267,"location":[4.888539,44.952296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":0.664,"geometry_index":11268,"location":[4.888547,44.952249]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":14.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":16.02,"geometry_index":11269,"location":[4.888573,44.952102]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,335],"duration":85.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":0,"weight":94.359,"geometry_index":11275,"location":[4.890017,44.948816]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":4.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":1,"weight":4.617,"geometry_index":11308,"location":[4.883285,44.930277]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":1,"weight":1.523,"geometry_index":11309,"location":[4.882604,44.929459]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,210],"duration":89.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":9,"out":1,"weight":95.793,"geometry_index":11310,"location":[4.882377,44.929187]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.199,"geometry_index":11337,"location":[4.877013,44.909398]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":13.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":14.074,"geometry_index":11338,"location":[4.877005,44.909353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":3.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.281,"geometry_index":11343,"location":[4.876256,44.905895]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189,194],"duration":11.555,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.535,"geometry_index":11344,"location":[4.876058,44.905073]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":8.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.266,"geometry_index":11346,"location":[4.875413,44.902286]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.874913,44.9003],"geometry_index":11348,"admin_index":9,"weight":22.625,"is_urban":false,"turn_weight":0.75,"duration":21.883,"bearings":[6,10,190],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.141,"geometry_index":11355,"location":[4.872927,44.894804]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12,"geometry_index":11356,"location":[4.872797,44.894519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":33.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":33.348,"geometry_index":11360,"location":[4.871329,44.891267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":3.672,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.664,"geometry_index":11367,"location":[4.867222,44.882234]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.695,"geometry_index":11369,"location":[4.866775,44.881238]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":7.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.297,"geometry_index":11370,"location":[4.866697,44.881062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.965,"geometry_index":11373,"location":[4.86591,44.879119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":30.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":30.992,"geometry_index":11374,"location":[4.865823,44.878863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,356],"duration":1.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.41,"geometry_index":11387,"location":[4.864855,44.870035]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.535,"geometry_index":11388,"location":[4.864913,44.869637]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.864978,44.869197],"geometry_index":11389,"admin_index":9,"weight":24.02,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.027,"bearings":[174,197,354],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.866407,44.862503],"geometry_index":11396,"admin_index":9,"weight":6.703,"is_urban":false,"turn_weight":1,"duration":5.711,"bearings":[173,327,353],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":68.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":66.367,"geometry_index":11399,"location":[4.866658,44.86066]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":2.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.949,"geometry_index":11415,"location":[4.86308,44.838778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":129.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":119.656,"geometry_index":11416,"location":[4.862956,44.838204]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":0.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.477,"geometry_index":11444,"location":[4.848302,44.801527]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":2.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.016,"geometry_index":11445,"location":[4.848191,44.801396]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.84772,44.800839],"geometry_index":11446,"admin_index":9,"weight":17.762,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.207,"bearings":[31,211,227],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.843638,44.796043],"geometry_index":11451,"admin_index":9,"weight":6.672,"is_urban":false,"turn_weight":1,"duration":5.992,"bearings":[15,32,210],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":67.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":64.098,"geometry_index":11453,"location":[4.842348,44.794503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.98,"geometry_index":11481,"location":[4.821355,44.781863]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,251],"duration":12.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12.16,"geometry_index":11482,"location":[4.82096,44.78177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,244],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.012,"geometry_index":11486,"location":[4.816055,44.780428]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,243],"duration":57.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":53.309,"geometry_index":11487,"location":[4.815668,44.780296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,204],"duration":6.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.977,"geometry_index":11508,"location":[4.799807,44.767908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,202],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.176,"geometry_index":11509,"location":[4.798739,44.766178]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":5.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.453,"geometry_index":11510,"location":[4.798545,44.76584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.973,"geometry_index":11512,"location":[4.797639,44.764262]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201],"duration":12.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.809,"geometry_index":11513,"location":[4.797483,44.763985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,202],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.262,"geometry_index":11518,"location":[4.795638,44.760603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.016,"geometry_index":11519,"location":[4.795594,44.760524]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.795275,44.759947],"geometry_index":11521,"admin_index":9,"weight":10.844,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.422,"bearings":[21,201,215],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.79358,44.756843],"geometry_index":11525,"admin_index":9,"weight":5.531,"is_urban":false,"turn_weight":0.5,"duration":5.301,"bearings":[21,201,351],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,201],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.387,"geometry_index":11527,"location":[4.792782,44.755381]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,201],"duration":28.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":26.871,"geometry_index":11530,"location":[4.7924,44.754685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":0.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.887,"geometry_index":11540,"location":[4.78915,44.746639]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":21.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":20.637,"geometry_index":11541,"location":[4.78911,44.746384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,355],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.605,"geometry_index":11550,"location":[4.78925,44.740053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,353],"duration":19.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":18.695,"geometry_index":11551,"location":[4.78933,44.739574]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,187],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.695,"geometry_index":11561,"location":[4.789435,44.73379]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.523,"geometry_index":11563,"location":[4.789272,44.732965]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.789234,44.732805],"geometry_index":11564,"admin_index":9,"weight":26.641,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.82,"bearings":[10,189,201],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.786349,44.724511],"geometry_index":11577,"admin_index":9,"weight":5.969,"is_urban":false,"turn_weight":1,"duration":5.391,"bearings":[0,10,188],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":71.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":66.141,"geometry_index":11580,"location":[4.786037,44.722787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,350],"duration":0.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.746,"geometry_index":11610,"location":[4.787475,44.699754]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":14.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":13.805,"geometry_index":11611,"location":[4.787537,44.699529]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.504,"geometry_index":11618,"location":[4.788869,44.695277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,345],"duration":73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":67.523,"geometry_index":11619,"location":[4.788926,44.695127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":3.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.527,"geometry_index":11649,"location":[4.797559,44.674677]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.797458,44.673547],"geometry_index":11650,"admin_index":9,"weight":7.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.328,"bearings":[4,183,201],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.93,"geometry_index":11653,"location":[4.797258,44.671129]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,183],"duration":15.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":14.676,"geometry_index":11654,"location":[4.797234,44.670852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.796824,44.66619],"geometry_index":11657,"admin_index":9,"weight":7.641,"is_urban":false,"turn_weight":0.5,"duration":7.738,"bearings":[4,183,346],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":45.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":42.387,"geometry_index":11660,"location":[4.796629,44.663923]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.395,"geometry_index":11671,"location":[4.793606,44.650623]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.691,"geometry_index":11672,"location":[4.793565,44.650502]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.793387,44.649981],"geometry_index":11673,"admin_index":9,"weight":18.188,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.684,"bearings":[14,193,227],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.791977,44.644232],"geometry_index":11682,"admin_index":9,"weight":7.492,"is_urban":false,"turn_weight":1,"duration":7.039,"bearings":[6,185,342],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,182],"duration":10.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.285,"geometry_index":11685,"location":[4.791754,44.642151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.465,"geometry_index":11690,"location":[4.791709,44.639085]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,359],"duration":124.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":115.121,"geometry_index":11691,"location":[4.791723,44.638622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":0.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.473,"geometry_index":11731,"location":[4.794819,44.601791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.887,"geometry_index":11732,"location":[4.794863,44.601654]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":0.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.355,"geometry_index":11733,"location":[4.795049,44.601098]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.795084,44.600992],"geometry_index":11734,"admin_index":9,"weight":13.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.52,"bearings":[165,189,347],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.796727,44.59712],"geometry_index":11739,"admin_index":9,"weight":7.473,"is_urban":false,"turn_weight":1,"duration":6.836,"bearings":[159,321,342],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,339],"duration":25.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":24.676,"geometry_index":11741,"location":[4.79784,44.595056]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.945,"geometry_index":11753,"location":[4.802041,44.587179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.801,"geometry_index":11754,"location":[4.802169,44.58691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,342],"duration":7.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":6.754,"geometry_index":11755,"location":[4.802665,44.585797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,342],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":1.344,"geometry_index":11757,"location":[4.803557,44.583799]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,343],"duration":123.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":116.941,"geometry_index":11758,"location":[4.803729,44.583403]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.848,"geometry_index":11801,"location":[4.808881,44.547708]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,196],"duration":4.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.707,"geometry_index":11802,"location":[4.808782,44.547453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":3.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.953,"geometry_index":11803,"location":[4.808237,44.546058]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":33.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":30.73,"geometry_index":11804,"location":[4.807879,44.545188]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.949,"geometry_index":11814,"location":[4.803675,44.535878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":71.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":66.57,"geometry_index":11815,"location":[4.803533,44.535596]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.328,"geometry_index":11840,"location":[4.78685,44.51835]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.184,"geometry_index":11841,"location":[4.786401,44.518068]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.75,"geometry_index":11842,"location":[4.786002,44.517825]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.785406,44.517462],"geometry_index":11843,"admin_index":9,"weight":28.176,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":30.469,"bearings":[49,230,251],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.776287,44.511406],"geometry_index":11857,"admin_index":9,"weight":8.918,"is_urban":false,"turn_weight":1,"duration":8.582,"bearings":[23,42,220],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,214],"duration":85.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":78.996,"geometry_index":11862,"location":[4.774117,44.509395]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.574,"geometry_index":11892,"location":[4.766896,44.485048]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.781,"geometry_index":11893,"location":[4.76689,44.484864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.766872,44.484303],"geometry_index":11894,"admin_index":9,"weight":19.727,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.332,"bearings":[1,182,191],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.766659,44.47803],"geometry_index":11899,"admin_index":9,"weight":7.082,"is_urban":false,"turn_weight":0.5,"duration":7.125,"bearings":[1,182,341],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,185],"duration":20.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":18.699,"geometry_index":11903,"location":[4.766494,44.475727]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":155.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":144.164,"geometry_index":11913,"location":[4.7646,44.469323]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,207],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.285,"geometry_index":11966,"location":[4.735918,44.423695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,206],"duration":37.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":35.738,"geometry_index":11967,"location":[4.73567,44.423342]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.023,"geometry_index":11980,"location":[4.730533,44.412728]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191],"duration":20.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":19.602,"geometry_index":11981,"location":[4.730442,44.412423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,184],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.09,"geometry_index":11991,"location":[4.729191,44.406368]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":3.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.855,"geometry_index":11992,"location":[4.729159,44.406016]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.729083,44.405104],"geometry_index":11994,"admin_index":9,"weight":12.699,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.734,"bearings":[3,183,210],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.728975,44.401063],"geometry_index":12000,"admin_index":9,"weight":6.848,"is_urban":false,"turn_weight":1,"duration":6.344,"bearings":[178,341,359],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,357],"duration":31.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":28.852,"geometry_index":12003,"location":[4.729084,44.399183]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,354],"duration":25.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":23.59,"geometry_index":12010,"location":[4.730381,44.38997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":96.66,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":91.816,"geometry_index":12015,"location":[4.731518,44.382444]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,356],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":0.922,"geometry_index":12041,"location":[4.737542,44.354344]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":4.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":3.953,"geometry_index":12042,"location":[4.737565,44.354062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":92.207,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":89.883,"geometry_index":12044,"location":[4.73765,44.352861]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,353],"duration":74.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":74.27,"geometry_index":12067,"location":[4.739761,44.323019]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.727,"geometry_index":12100,"location":[4.746595,44.299788]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":2.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.141,"geometry_index":12101,"location":[4.746585,44.299566]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.746527,44.298598],"geometry_index":12104,"admin_index":10,"weight":15.207,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.504,"bearings":[4,182,191],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.745621,44.293956],"geometry_index":12114,"admin_index":10,"weight":8.672,"is_urban":true,"turn_weight":0.8,"duration":7.328,"bearings":[6,15,197],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,204],"duration":128.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":128.074,"geometry_index":12118,"location":[4.744584,44.291929]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.84,"geometry_index":12150,"location":[4.717578,44.259641]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":14.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.824,"geometry_index":12151,"location":[4.717208,44.259136]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":1.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.828,"geometry_index":12154,"location":[4.714409,44.255305]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":19.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":18.641,"geometry_index":12155,"location":[4.714049,44.254816]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,206],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.531,"geometry_index":12159,"location":[4.710245,44.249607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.672,"geometry_index":12160,"location":[4.70996,44.249195]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,201],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.672,"geometry_index":12163,"location":[4.709177,44.247905]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,194],"duration":12.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.711,"geometry_index":12166,"location":[4.708561,44.246566]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":38.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":36.75,"geometry_index":12172,"location":[4.707692,44.242993]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,340],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.883,"geometry_index":12191,"location":[4.708406,44.23179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,340],"duration":110.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":105.336,"geometry_index":12192,"location":[4.708538,44.231536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,320],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.262,"geometry_index":12272,"location":[4.727896,44.199299]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,318],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.633,"geometry_index":12273,"location":[4.72798,44.199233]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.728503,44.198826],"geometry_index":12274,"admin_index":10,"weight":9.512,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.035,"bearings":[134,146,317],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,307],"duration":16.82,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.961,"geometry_index":12279,"location":[4.731262,44.197109]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.736334,44.194626],"geometry_index":12284,"admin_index":10,"weight":9.129,"is_urban":false,"turn_weight":1,"duration":8.562,"bearings":[125,296,304],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,308],"duration":111.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":106.02,"geometry_index":12289,"location":[4.739452,44.192976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":9.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.988,"geometry_index":12336,"location":[4.766481,44.162758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":20.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":19.871,"geometry_index":12338,"location":[4.768211,44.160394]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.531,"geometry_index":12347,"location":[4.771423,44.154813]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":16.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.719,"geometry_index":12348,"location":[4.771493,44.15466]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":2.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.461,"geometry_index":12351,"location":[4.773639,44.150216]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":7.02,"geometry_index":12352,"location":[4.773972,44.149517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":17.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":17.488,"geometry_index":12354,"location":[4.77488,44.14759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,334],"duration":24.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":23.762,"geometry_index":12363,"location":[4.777502,44.142903]},{"bearings":[141,322],"entry":[true,false],"classes":["toll","motorway"],"in":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":12376,"location":[4.782053,44.136871]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Marseille"}],"type":"fork","modifier":"left","text":"Marseille"},"distanceAlongGeometry":189259.047}],"destinations":"Marseille, Genève, Grenoble","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Marseille/Genève/Grenoble.","modifier":"slight left","bearing_after":130,"bearing_before":130,"location":[4.843423,45.693649]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":5821.889,"duration_typical":5978.973,"duration":5978.902,"distance":189259.047,"driving_side":"right","weight":5821.832,"mode":"driving","ref":"A 7","geometry":"al|cvA}xrfHdEoIhJcQxCqErE}FvDiEnMsMhFmEtEoDrGyElGyD`EiCtEeCvFcCfPsFxFcB`FwAxKaC`IsAdJqAbjHkfA`g@oH|ZgErh@uFlh@}Dj~D_YpbDgUxN}@vS_AdNi@lSe@nRMvFCjAAtM?xNPzNV~Sj@zT`AzO`AdSzAvWdCtXnDr[bFvPrCzQtDj\\xHl^vJ|PnFxSdHfTzHpPzGfP`HryA|o@xq@xZzq@|Y`TzIpSlIbk@~T`e@dQne@zP|p@lUd[lKpi@|P~QxF~VxHnfArZtp@|Q|b@xLpb@tMvTnHdTtHnWrJjW|Jnh@vTvSpJjSvJpPjIbPnIxRlK`P|IdOvIbMvHhOfJxOzJ`RbM`UtOhTpO|S|OhStOpXhTxXbUbXlTnXbU`b@z]bb@h^lp@dl@t^f\\lf@fd@jr@tp@`k@hj@v_@x_@~l@|m@`T|TtXvYjXbZri@|l@~~@hdA`WrX`W`XbXlXtMpM`NzMnP`P`NpMze@dc@rg@hc@`RtOzQfOhc@h]j^xXra@bZ~LvIrMhJxXhRpYbRxY|QvYpQrY|PjZ~Plr@t_@|mAtn@j\\bPn\\`Phc@bS|c@`S~`@bQ|c@fRpg@lS|i@tSnh@pR|eAn_@xzA|h@zo@`Vro@|VfZ|LhZ`MvYbMvYnMrg@nUzf@xU|f@nV|_@|Rjf@jWh`@dT|^vSt_@xT~^tThRlLdRvLzUzO`UvO~WvRdW~R|]zYr]xZhb@t`@nVfVbWjWtLdMhMlNvO~P`PvQne@jj@jVvZrYh_@xTjZ~X|`@fn@x}@dSnYlQhWpS|XnTxXnOdRfPnRzOhQjPbQrV~UbNtLbHfG~JhI`LbIpQjL|L|G|KtFjL`F`LnEfMnEtSdGtHnBfIbBnKhBbL|A`LjAvE^|E`@dLf@nL\\jEFxE@rKEvUg@p]iAfj@uCvh@kDrh@{D|i@oFfaAuKzd@kG|RyCxOaC~a@uGza@mHtb@mIlg@eKby@eRraAkWjdAsZptAcc@xZmKzwAsj@~VoIta@qP??ff@kSx|@m_@vAm@lO_HzI}DjN_Gpe@uThu@_^~b@}Shb@wSb[}Ol`@kS~LiGrOaJpKqGvMgJhJcH~ImH`HeGfLmKfKkKrPoRzO_SfL_PzIiMbH_LpNgVhOqYvNc[zLkZ~M}^|Xix@bGoPxKoXjLwXjHmPvHuOtMiWjOyXrM}TbC{DrFyIbKmOdJ}MxJ}MpT_YfPmRnOuPlQmQlQeQlRyPvQaOvP_MrTaOtR_MjRmKdWuMtLuFnU}JpPwGt]aNbYeLtO_H`P}HpXuNvY}Prb@mX|SmNhToO`d@c\\pn@ce@by@ao@ldAuy@p`@k\\ld@k`@dd@o`@~x@it@fq@an@bg@ue@|v@{u@n[u[rZg[rd@kf@b[i]hZi]n]qa@x\\ab@dW}[`Vm[hZka@`Zya@tZ}c@nQiXnP_XxZgh@xUgb@rRg^vQg^vPe^bEcJdW}j@rDoIpIqSdQsc@jNi_@|GyRxFiPdPqf@`HoUlLwa@fNmi@vMqi@bGyX~FaYzDkTfB_L|AuJdEk\\jBoT~@kN\\sIj@oL\\{MR{SC{MGmM]_Pi@gO_AoViAkUyC_r@mAgd@AyCMaRLkS^uOf@eNnA{RjAuMzAiNxDgX|E{U`FiSlFiQnI{T|L_WnLwS|N_SpIoJxMuMhH_GdIeGrFsDdGiDxFqCtKeFdMqEfsDylA`VgIrQ_Gn\\cLnZqKx`@mPxY}NhRaL`RgMpRoNzTuQjd@c`@bk@ke@vUuQhRwL|PwJhNwH|QwIhRuHdOiFnSkGfTcF`T{D|UwCpQcB~TkAlUe@rRFlQVrQn@nPjBvQ`CtS`DnRvDrPtE~UfH`W~Iv^zN~n@fVdq@bXpWrJbRnGpPzE~OfD`FbAbPbCnRhBvQpAha@zA~\\|@l]fB~QpBbP`CpPjDvTtGzPxGn[nPbV|PpSlQhOzOjNtPdK`O~L|RrNlX|JrTrKtYzGfSjIzXvJb]dg@xfBzPhn@tP`l@vNnf@`JbX`H|QrKtVjJ~Q`MfTtJbO~KnOpNxPvMbNrUbU`j@fh@bKtJzSdSfUjTdZjYfK~KnJbLbC`DtJjM`K~OxJbQfIhP`HlOfKxWnLh]x@dCtL`_@xGdRhGfPhEpJlFpKbFlJzC`FrBbDnLtPxNzPhHtH`EnD`JjIhMvJpRrKfNrGdM`EpP`FbM~BbL|AfM`AzQh@~KC`PW~Ws@|j@}AzvB{Gva@g@bNNfRnA`Jz@~KfBjMnCbKxClLdE|JxEdMbHjHzEzP|NpIfIbJvJzPfTnVz]fRzZjj@~u@lXv_@tRnXlPtTlQzSpTvTjQbPpQlNzNtI~QlIzOpFrLdDvOzC~RnCrCPzIh@nODjLMdNq@|MkBhMeC|OoDvJqDjNwFxXqNxg@gW`x@oa@pQiJxQuGnNmDtLkBzKqApKw@nMQ~PH`WlAbJbAbJlApOtD|NjE|eA~[vu@zTvAb@`B`@pHfB|OvDh^vI|OxD`s@fMtm@lIv}@lJhJ`AhJXbRW`QoEl|@sGlPgApn@gE~f@aA~p@kCnDMpaCmHhSi@v`@gAbc@_@~_@@`f@HzZZtf@fAjP\\rv@tC|k@|Bzp@zEj^xCd^dDjl@~Gtp@lIti@zHzj@pJdv@tNdARlDl@|aAnSzX`Grs@nO`n@pMds@dOn|A|\\tqDxv@`gDrr@vqB~b@ll@jMrv@fP|i@fL~s@lOtq@vN~p@rNjrAbYjwBrd@`{Ble@jd@rJnd@rJj`@tItU~DtRtCtUjCxb@vClW|@~Yb@|VNp[SrMWdc@gBnNmA~PiBvb@eG~HuA~ZqFrc@iL~XwIf^wMpXuLvLkFxg@qThl@kWvj@aVrVgM|c@eTjQgIjQaHdSwGhPuF~SuFjTeEtTaErQoCdTeCx[_CvYoAtYUpSZvRZj[l@pUlBtUpCb\\fFra@xIlYbIzSzGxQ|GdQnH`RtIpWxMb[xQpSdN`O~KnVdSbWzU`]j[l`@l^zf@|d@tk@ni@ntA|oAvd@vb@|YnXxl@tj@tK~J`MfLh~BrwBl_CfyBlhA~dA`x@rt@tz@lw@z[jZf}@hz@dyAltAdg@`d@|b@d]`GhExNlKn[zSlWnOpYdP|W~MnWnLzc@|Qj[|KxWjIdHxBrWpHve@nL~YhGnQnCxO`CxU|CtYtCl[rBrWhArVj@zWPfRC`RQ~V}@~TkAjH_@vWuAhM]|Oc@b_@[d\\PtWb@jUz@~]nBnS`Bna@lEl`@bF`v@hKxq@fJt`@hFlMdBza@xFnc@tFbWtCrRz@bQJlMKtQeAfUaCrOsCxMcDtUgIzPkHlPaJzQsLnQyNnXqXbp@ar@nRoPvNiKtLsHvUcLdX_KdTqF|MgClNeBhPoAvLa@xJEpORzSlAzNbBjOpCj`@hIxT`FjnAlWxbA`TbVdF~d@vJnd@`Jx`@nHxZdFl]bF|p@pIdw@zI~_AnKltApOrt@fHf\\vBtYrArIJv[b@xDFnWFlUIvg@gBnd@gCfc@gDne@{Fd}@qOrlCse@pf@yI`eDql@`{Baa@d|Boa@lQ_D|`BqYth@oJjZsFnQ}Cz~@oP??tlBe]dcAsQht@kMvr@oKr`@{Fhk@qHvj@eH~~@_Kjd@kEj{@wHfy@iGdn@qDzCOta@{B~Mo@jKe@|f@iBby@{BnnAcCh|@o@v[EdWEhRAfULbRHrU\\tQHfZ\\nk@~@vs@pB`FNvJXx_@jA|Ux@nk@nBraAzCreA`Dr}@hCxf@PxX[zRk@zScAjWoBzT_CnVgDhReD|\\qGh\\gIh`@yLpc@aQr`@iQnGkDjS{KjWoOfK}G|\\sVbW{R~UwS|UkUnVqWtQaTpQaUjVk\\nXqa@by@inArz@ipAlSsZjRaYxPiTzN}PrN}N~OqOdRaPhR{NdNmJlVeOrR}JzSsJdTwInJuCxEaBfWyGzXmGpMkBbZ{C|T}AbPk@lQUjRDtTj@nWtAlTzB~PhCnTvDj[tH~o@pPdq@~Px`@bKni@pN|e@|Lf]vH~TbE~W~DzTrB~UpAzTn@lRArYg@bZoBfb@}Eje@uJj]kJlXcKf]wP|Aw@|YiOz[gUx[eWrb@i^nc@w_@|e@ya@dlBoaB~lB{aBtgAk_Apc@s`@hd@u`@lq@gl@bQiOjWkTvSeQpXiU~f@m`@bb@aZv`@aWzYmPxXqN~c@qS|a@qPdi@iQtc@}Lxj@aMrc@oHr`@gFvl@aFfc@yBza@{@ld@OxY\\v]hA|jAdHfzArMxJt@dg@fEj\\xC||AbNpp@tFdd@|Dz_@vC``@lCn`@vAte@Z|f@cAn[kB|`@aEnc@iHtd@eKt]iKfb@sO|a@wRvp@i_@bU{O|SeP~ZiWbUyTl`@{c@lZk_@tP}UfUm_@~Qa\\n]cq@pRw`@vIuPvWcf@lZqe@d_@gf@f[}\\jXaV|XkTzTkOvNeIr]cQxa@kQjb@mQza@cQteAuc@ljCehAbd@kTrb@aVvc@mYf`@{Yr]aZzYiYrg@ik@rl@uu@zl@cw@pd@qi@xb@ce@`e@kd@ff@ec@jXaUvQwNzNwK`l@ea@fYqQxQeLbh@kXto@yZhl@yV~w@wYt`AaZj|@mV|cAeXnVmH~m@eQ`WcJ`\\yL|UiLtZkQxM{IvLeIjSkPhCuBhWwVpc@og@nV_]rU}^xVue@~Xmo@xMi^`Ma`@|Q{q@tPau@rGaZxHu]xIq^|Jq]zJ}ZlNi`@tQub@fRk_@xNeWz]_i@~NsRtRyT|Ze[t[mXvT_PhSgM~ZmPzY_MjYeKxXyHxWuFpUmDrVqC`[aBfWe@hQD|Yh@p_@rCf]nEna@dItOxEnUpHfj@hR|a@nMnXhGnSvDzZ~Dr\\dCxZj@dXJpP_@fNq@nY_CpZeEpViEdUsFrSgGpa@{O~ZcOze@cZhZ{TxVgTbu@}q@bk@mh@|x@}u@|a@s[`SwMdVkN`VmLnZ_Mvc@aNnWyFd\\gFxVkDht@mKne@qKva@{M|XuL|WeNnS_MfWgQnW_SbXiT`SuPpVqTvc@w^j\\wVhRqN~NwJn\\oSf_@{Sxa@cS~h@gUjYkKf_@{LbQyErVyGdZuGh]_G|WaEtXcDn\\aDxZsBph@uBdUYz^Ohk@h@hi@nA`oB~DxoBdEloBbE|nBfEvMLhnAnCr|@vB`eAbC~`@p@`b@`AhnAdC`{ApCvqAxCzs@|A|f@r@pQBnr@y@nNw@r^oBpe@aFrf@aI|_@mI|WmHz_@eMla@}Obk@aXrk@m[fH{Dbt@ab@tn@_]fa@_R``@{Ova@_Oz`@cMjn@kPtn@gOtaAaUtu@_QhKaCb}@gSdjAwWthAkWf_Bq^hm@cNfp@kOn~@{Sdj@wK~m@kIf]{Cl`@mB|n@}@pr@vAvo@lEzt@~Jfm@jMp`@~Kvg@rQr`@vPtg@rW`e@lYle@l]xVvSpWhVh^v^xd@zi@~~@lkArt@`_Al]bb@dn@|r@lr@jr@vr@nm@`y@vo@t|@dr@jtBb`BzkFbbEtl@fc@dn@x_@zZrOj_@rOh_@~Ldd@nL~c@|Hpd@fFt`@xB~^p@f_@Wpc@{A|i@_Glh@wIfUiFt}@mTjc@aJv_@qFb^aDtb@gB~b@O|_@p@dp@lEpa@vDb_@bEjBRhb@pGze@vJvh@lNn^|K~_@xNn_@rPd_@fRvk@d]v\\jUlb@~[b\\dYz`@l`@~_@lb@jY|]vt@rbA`[vc@~d@rm@tX~[|\\p]nb@d^jVdQ`UzMj[bPfP~GfSzHp^dK`a@`Jbc@zFt_@fCv`@p@h]Ux[oB|ZcDj]_Gb[_Hr[}JjSoIzKsEpCkAnOkHpEwBx^gUt]uWvRcQ~QeQls@kr@bOaNva@{]d|@ip@rVePr`@mWjg@kYdc@yTbj@cWp{@y\\|~@aZzt@wQxh@sKz~@cNh{@wIxx@aFlrBiLxrBoLvdBmJ`hAqGzgCuNvwAsHfj@cBdb@g@zd@A~c@Xp}@jCdm@dDvk@zEv_AxKlmAtS~{Ax\\b}A`]ti@nL`i@xJ|q@~Kpr@lKjp@~Hxy@xIbiArItf@nCtf@vBlb@zAjb@bArdAjAbe@D~g@Qdp@s@fSe@hk@kBvl@gCvl@eDzIe@`RaAba@yB|lA}GvyAyHzq@yDx_@}Bnb@uBpd@kB`t@eA~s@Hpp@f@|e@bApaAhBlsAtBhsAfClhApBxhArB|p@`@xm@a@leA}CfbAkGfo@oG~o@wIx`@eGdO}Cld@iJfw@uQjc@_MdTgHju@cWnj@kTxk@cWdn@wZl{@af@dvA}v@xr@c^p\\sN`\\yLh[{JnPkEdb@_K|XuEfEs@f^{Et^{Cx\\mBvu@mBvhBy@xi@aAxy@sDba@yDxMoAno@cJ`De@tu@qNnImCbOwEjN_EtFiBbBi@pKiD~\\kLlh@cSvcAec@`f@gSt_@gOz|@c]bI{BjLcDlVaFxWcEhDi@fXaChRiAlO[pOKtRNrSt@jRbAtQhBpWpDnOtCxb@lIvi@zKjs@`Npi@nLdc@lKzVjF~`@pEt[xBz]f@`a@eAn`@gDt_@cHh`@{LlXwLde@iWd[gPva@gRd_@cOrVoIdNqEtk@uOxnAkYdb@uJrb@{Jza@cI`e@mH|u@cIjsAuMduAgN|AOdHs@xVgCz^wFtg@wMld@{P`b@iTnc@iW|WwLzWiJvX{Gd\\yEv[sBn\\_@jZdA~YtCv]pGlE~@h]hHn|@dR`o@jJlb@bDxc@rBvp@zCjrArFfm@rCxa@hDv^lGhVfGl[vJ~c@hRfa@`Tn^dVpZlVlZlYbYp[to@zy@tZh^zXrXlq@jj@vx@~n@br@pi@~OdMjl@vd@zc@t]tt@zk@ve@|^dg@p_@rZdTda@fWlMrH`t@`^rc@bQ`e@bOvt@nQhe@rHnq@xG`[fBt_@bAho@Axq@mBdfBaIdcBkGjq@cAvu@Ojd@Xf_@t@xt@zCbu@`Fl\\zCxAN~J`Azq@~Htz@`LrfAfO|TlDjr@jKzeCb^hf@dH`~@jN`|@zNje@zHxe@bJbe@~Jjn@tO|k@jPpgAf\\h~@xZxPbGfSdHlg@zPhrBps@fZbKfHbCju@~WniC~}@h}DluAjlAza@~cAn^vXvJrSjHrh@pQ~IzCdSfHvx@bWnj@xN~NlDd[zHfm@~Lrv@bMru@pJ|q@hG~e@bDpk@~Bh^v@fj@h@dk@Qp`@i@``@}Adn@wCzWsBnZaCdX_Cvb@wEnnAgP~oBaZz~AgTfW_Dxk@_G|_@yD|d@aDhk@yCnU_AxZs@t^oAjdAi@ndAx@xdAvClpAxH`h@rEhnA|MxdCf[jxAzR~`Cl[htCz_@v]vEdiFjr@tjBpXzb@vFnf@fHjt@tKhnArQnh@bIntBv[bqB|ZnpCnb@v`Fjv@ziCda@vkA|RjgAjRxu@nOn`@`Jxy@nSlfCxs@hhDveAzvBlt@fdA~`@n`A~a@zz@ha@xaAvh@~k@|\\bl@p^vy@nj@haAbs@x|@|q@jd@f_@dg@t`@dG|Exa@l\\~}@pt@dz@dq@ts@fk@tqAfeAdi@zc@fk@rc@~r@~j@~X~Tpv@bn@lv@`n@~u@xm@tv@dp@lXdWrVdV|]l_@|Xr[bZt^pUj[xVz]t`@xm@fW|b@nTza@f[ln@pWvj@xRje@pOda@`Whs@pTxq@|Mvd@~T`|@rMdi@pKvh@nYz}Af\\htBv[`xBxDtWzYflBtUhsAjQh}@|Ntq@fGdWxPjp@~Vd}@x`@`nAxUxo@l^v}@`S|c@zX`l@`Wxf@th@r~@~a@~o@|e@br@vf@bo@|a@rf@j\\d^|v@|u@d{@xt@|v@fm@f|@nm@jaArm@zHtEbl@x\\bkBvaAbTbK|o@h[tp@h[hPvHj[pNh^bPxe@~Sl`Azb@ln@vX|CvA`Q~H~P|Hj|@l`@br@|Zvl@bXvb@lRjg@~T~q@zZ`]rOrGrCxCrAbnB|z@fg@`Tlx@n[fi@|Q~d@lNnc@vL~h@vLjy@~N~d@pG|e@dF|NnAzd@rCpUlAnd@tAl^d@tb@Cxg@c@je@mAxaAeErsAyH|\\_Dt_AkGzi@mCzZiA~]w@p]Yb]B`c@l@x[`A|i@fCpYfBdb@hEjOzB~HjAjx@hLln@jMd{@vTvs@rSx`@jMzj@rQnw@|Ut^jKl`@~Jha@bJdUvExNvC~[hFrb@`Fli@zFt\\pC|g@zD`h@zDf{@fG~n@nExp@vErb@tCpc@rCbt@vDj^fBfX~@tc@nAxDJtn@tAfq@p@r}@Cnr@y@xf@y@lj@aBf`@cBfYsAph@iDrt@}F~`AwJ~{@eKjr@qJl_@{Fzr@cLf`BmX~bBaYb`AwO`M{BdXsEh`@eHpj@cKv`@mIhb@{Ixf@kLxu@sSjHqBfd@yN`k@_St_@aOdb@aQf_@iPbh@sVli@mYbv@{b@r~@ok@fpAoz@hoAiz@x_@mVnc@}W~`@qTzm@iYhp@wWfn@wSxm@qPvg@eLxe@wI~j@aIl_@{Dpa@yCj^gBbi@qAhc@]~b@b@pi@~@|Zx@j_@vAreAhEz|@`Drm@zBri@pBhPn@|pCjKfgB`Hdh@dC`Yr@fs@jCj~@dErjAxFrkAxGfrAbKfcA~J~]|D|a@bF~{@zL`sAxTfrAxV~rBlc@ftBdf@pFpAp_@bJdz@xRhi@xKvb@xHfl@jJhf@`Hje@pGn\\tDx^dDxd@xD~c@zC|i@zCbq@dClc@~@vr@x@vb@Jn[Adf@i@|[[|vC}JjnCeNtwCuLpqAaE~wBqFnz@aBl_AuAndAoAzh@a@ff@i@`g@Mpm@]hn@IteAA|k@Rne@Hbl@V`r@Jpp@Pl}@Jv|@Uju@a@vq@u@dl@oA|d@sAnk@uBlt@eDbg@uCpl@}Dvf@wD~a@sD``@uDbe@aFnMwA~h@qHvs@gJro@cKry@cOxj@{Ktf@yKpGwAva@sJrEeAbl@qOnp@cS~p@qThp@aU`o@kU`u@{[|iAug@tz@aa@d_@iQb_@}Phs@e\\hx@w^jl@mWnt@yZx@]ja@uPzg@oSrj@eTbf@wQxO_GpdA_^hc@cOpwAsf@vWwIzgCa}@xkByo@dkB}o@dz@sYzz@kYno@}Slh@kP~n@eRbn@wPz_@yJx`@wJfi@cM|i@yL|q@iNjy@_Olj@iJ`q@aKzm@mIlh@sG~b@_Frj@}Fv{@{Hlt@kF~l@mDl_AwEpaAcDx}@aBje@i@pe@Mjm@\\na@t@fTx@l^nAfX|Ar_@pCdg@xErm@pHrk@~Inj@lKvl@vM~o@`PzlAr[joA|]|NdEdvA`a@ju@jUvs@`TvoA`a@fy@dXj|@dZfuBht@xt@zWft@lXxq@rWv`@fPzQvHrPzGfgAtd@nr@|[n_@zRp_@lStl@l]fk@|\\nl@r^zb@nYdk@fa@xjAb}@pdAt}@zgA~eAbjAdmArv@j}@rv@z`Axa@hj@z`@nj@d_@pj@dW~_@dTr\\hd@zu@jXle@zXdg@jT|`@vKhSrP`[dN|WtUfd@vVpf@xWjh@`a@fw@nm@|jA`]do@j[bl@rXpf@jU|_@fRzZ|Rh[`PlV~]`h@rUd\\``@bh@xPrSh_@tc@nZj\\~TtU`YfYvXtW~`@`^tc@t^lRpN~ZlUjv@fi@pt@rc@nq@j^xX~Mhb@vRh\\dNx_@jOxf@tPvi@~Pxd@nMpi@`Mxo@vMdl@zL`p@`Jdm@fGlh@hEbz@hEtw@pCxiAxBp_AbAnk@`@xv@Upv@|@fzAtCdfE~EnJJ`b@b@v_AtAzyA|A|bAx@rkAxAzzA`Bdk@v@nn@jB|W~@hZdB~\\xBb`@dDvZpD`]fE~i@jIxv@bOtc@|Jnk@fO|l@tQjt@dWfi@vStjAti@dwArv@|HfEjeBhbA`iBncAhqAhq@`n@l[xe@zUtcApd@la@jQxc@~Q`t@dYvp@xVjh@fRfa@bNl]bLrx@|V~_@zK~]zJdc@`Lla@bKtqAnZdwAnZn{AhZf`A|QbaA`SbbAbUh{@tUvc@vNde@xPjbAta@l{@xa@fbAlj@|TrNtXxQtPbLdThOrbAdw@jfAlbAv{@b|@fGfGt~@heAlj@`p@vy@p`AtnAdvAls@zu@riApgAvq@~m@bhAp~@dg@x_@zZzTvaAfp@`UnNjp@z`@hw@nc@zj@nY|k@tXhd@jSl`Av`@jj@~Sjj@|Rpk@|Qpi@pPx_AzW`bAvUj{@hR`RtDpXdFzVnEzZhFhp@hKxr@pJff@xFrc@xExy@tH|h@hEjVtA~T~@|Qv@`e@~Ars@|Brg@|@xg@l@~n@Nha@Gdc@Y~d@w@fd@}@fi@cBj`@_B|l@gDln@{DhmAsIxqCcUvdCkSdyAyLnxA{JdwBwRzxBiQheBsNnc@oDrjBqOtmB}OtaCyR``AyHr_A}Hhv@kHhs@uH`p@oHt}@kMhd@uHr[wFdzAqZhsBwc@htAgZpdAuU`bAqRfEw@|_AgQv{@{NfiAkPvC_@fz@kKfgAmLtmAeKleAeHffAyFrPm@~{@eC`Mc@|q@kAj_AiAfvA]~}BAlpCNx~BQlyAu@fwBgC^AzlByDbeAeD~eAsDlb@_BjmBsInpC{QncA}G~q@_Ft{@wFtn@sEvlB}Lrz@kGzv@{Gdv@qHpi@eHjk@_Jjb@_Ivg@yKzi@_Nfc@_Mpo@}Sh_@_Ntf@{RffAee@zkAsl@|fBe~@xcBe|@dh@mVvY_MzVuJhAc@hk@mQjd@yKjh@aJh]iEd\\_Dp]kBj^q@l]m@p\\Nr\\l@zw@fB|v@dBdc@`Aj~@jB|_ArBv]t@zLRzCFdj@dAlKd@lr@`Bta@fBj]tBba@lDdUtCjX~D|a@`I\\FxZhHf[zIj\\jKx\\lMp^xO|b@dTpUdM~S`N~d@~[dYlTde@da@lx@dw@`zAv{Adz@l{@v_AjaApKvKbTrT~m@zn@flAnmAxoA~pAz{@f{@rn@zl@nn@bk@hn@li@zaBrqArl@~b@ps@dg@tuAj_Ax_@fWbqBjrA`rCrjB|nCjhBvfB|jAxxBvxAdsAx|@tVvP|m@d`@nv@pg@p^bVfy@ti@v{@hk@lwB|vAp]nUnpB|qA`uBvuA|{@rk@``@lVvXxPzY|Pv_@tR~ShJlMxFde@`Q`^rKp^hJdo@tLtc@rG|i@xGtx@vIfEb@lEb@fk@~F~~@rJnrApNra@~Dld@hDfa@lBz]t@dg@Fh]w@nZyArj@eFzc@sGva@aI|a@sK|_@qL`c@mOtFwB|f@ySzNgG~j@wV~HkDnyAko@z^mPr\\cOzo@q[x_@cSh]kRx_@mUn]cUvb@wZz\\yWbZyVjSiQt`@s_@|^e_@lb@}d@ht@cz@fu@c}@tS_Wf\\i`@v\\w`@hVsXxW_Zxh@ki@di@{g@hVsSnWuS`YwShUkO~RaMdRaKnN_IxZkN~CyAt[cMfVeIpZ{I|SeF`VcFzNmCrN}BbJsAlKuAhU}BdT_BnNm@lSq@bTa@tVKjW@lw@hAxa@n@vb@FxRK|R[fXcAxMw@xMeArZqD`KaBbLeBbWqFbOwDvLqD`TuGfQ_HzFaCnKqE`M_GzPuInQcKpOwJtNyJ~McK`OsLhQoOrRiRlZk\\xTwXbCgDlXu_@b]aj@jP_ZfXkh@tUgf@zJwTlJ_UbYwq@zTmk@xiAs{C|Sej@bWgo@bPg`@lPe`@fSkd@dWyi@fQy^|X_k@vTka@fTu`@jZsh@xZeh@rYyd@nZqd@bUs\\~]ag@t^uf@Xa@l]mc@r_@sd@dPeR~OaRtW}Y|X_ZjPqPvMuMdS_SvMkMn`@i^`UeSbVgSfZsVzZcVbYiT~YmTxZsSha@cYzy@kj@xp@ic@fwA_`Alf@y[je@e[vm@ma@dIaF~sAm}@`{AibAft@af@ta@wWlg@{\\jaAqo@|yGwmExh@u]fqBirAzt@kf@z|AwcAds@ge@rQsLbRuLpNsIdRiK`LyFhSwJ~g@wSvtC}fApHkCd\\kMfpAcf@hfDsoAtj@yS|cAw_@nr@_W~pAgf@tc@wPv^_O`O}GpMmGjVgNfNiHhMgH|y@uf@b|@mh@dbAil@rb@wVpb@iWlj@_]|SoNnMqJlMsJzNwLtLkKlLoKlUgUvQaStC_DhYk]tXu]|^_f@~]me@jq@w{@pZi^"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 49 miles.","announcement":"Continue for 49 miles.","distanceAlongGeometry":79506.258},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on A 7.","announcement":"In 2 miles, Keep right to stay on A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on A 7.","announcement":"In a half mile, Keep right to stay on A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on A 7, E 714 toward Marseille.","announcement":"Keep right to stay on A 7, E 714 toward Marseille.","distanceAlongGeometry":256.667}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[137,141,321],"duration":4.824,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":4.922,"geometry_index":12383,"location":[4.785822,44.13371]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,317],"duration":10.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":10.715,"geometry_index":12384,"location":[4.787125,44.132717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":2.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.785,"geometry_index":12386,"location":[4.789875,44.130494]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.790567,44.129929],"geometry_index":12387,"admin_index":10,"weight":12.652,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.07,"bearings":[138,144,319],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.793843,44.127268],"geometry_index":12389,"admin_index":10,"weight":8.188,"is_urban":false,"turn_weight":0.5,"duration":7.34,"bearings":[139,308,319],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,319],"duration":15.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.762,"geometry_index":12392,"location":[4.795833,44.125648]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":61.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":62.793,"geometry_index":12394,"location":[4.799924,44.122341]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.008,"geometry_index":12414,"location":[4.820246,44.112853]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":12.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.355,"geometry_index":12415,"location":[4.820643,44.112801]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,104,280],"duration":25.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":25.109,"geometry_index":12416,"location":[4.825635,44.112161]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.835862,44.110852],"geometry_index":12420,"admin_index":10,"weight":2.953,"is_urban":false,"turn_weight":1,"duration":1.961,"bearings":[100,270,280],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":4.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":4.637,"geometry_index":12421,"location":[4.836651,44.110748]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":2.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.32,"geometry_index":12422,"location":[4.83852,44.110502]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,121,280],"duration":2.246,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.238,"geometry_index":12423,"location":[4.839452,44.110379]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":6.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.074,"geometry_index":12424,"location":[4.840365,44.110266]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.842906,44.109942],"geometry_index":12426,"admin_index":10,"weight":19.098,"is_urban":false,"turn_weight":0.5,"duration":19.586,"bearings":[100,255,280],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":1.004,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.945,"geometry_index":12436,"location":[4.851381,44.108245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,297],"duration":83.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":81.73,"geometry_index":12437,"location":[4.851776,44.108099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,342],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.906,"geometry_index":12459,"location":[4.87714,44.088441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,343],"duration":1.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.91,"geometry_index":12460,"location":[4.87752,44.087536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,345],"duration":87.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":85.699,"geometry_index":12461,"location":[4.877751,44.086937]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.34,"geometry_index":12483,"location":[4.887548,44.059381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":29.316,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":28.566,"geometry_index":12484,"location":[4.887576,44.058926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,358],"duration":24.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":24.277,"geometry_index":12488,"location":[4.888122,44.049429]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,204],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.23,"geometry_index":12501,"location":[4.886118,44.042795]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,203],"duration":23.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":23.84,"geometry_index":12502,"location":[4.885924,44.042487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,356],"duration":2.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.531,"geometry_index":12512,"location":[4.883982,44.036175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,350],"duration":8.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.574,"geometry_index":12514,"location":[4.884132,44.035511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":3.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.949,"geometry_index":12519,"location":[4.885018,44.033321]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.945,"geometry_index":12520,"location":[4.885501,44.032328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,341],"duration":5.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.055,"geometry_index":12521,"location":[4.885617,44.032087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.598,"geometry_index":12523,"location":[4.8863,44.030538]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,341],"duration":0.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.027,"geometry_index":12524,"location":[4.886722,44.029644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":13.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":14.426,"geometry_index":12525,"location":[4.88684,44.029384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.461,"geometry_index":12531,"location":[4.887992,44.025668]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,177,352],"duration":18.898,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":20.309,"geometry_index":12532,"location":[4.888172,44.024757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.889263,44.019107],"geometry_index":12538,"admin_index":10,"weight":39.668,"is_urban":true,"turn_weight":1,"duration":35.977,"bearings":[172,346,352],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.234,"geometry_index":12546,"location":[4.88978,44.008695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":8.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":9.297,"geometry_index":12547,"location":[4.889766,44.008635]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":0.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.887,"geometry_index":12549,"location":[4.889219,44.00618]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":40.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":45.441,"geometry_index":12550,"location":[4.889162,44.005948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,353],"duration":1.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2,"geometry_index":12558,"location":[4.887284,43.994179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,346],"duration":29.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":33.762,"geometry_index":12560,"location":[4.887431,43.99369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":5.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":5.961,"geometry_index":12566,"location":[4.890748,43.985532]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.535,"geometry_index":12567,"location":[4.891318,43.984092]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[164,168,344],"duration":10.359,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":11.891,"geometry_index":12568,"location":[4.891464,43.983722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":16.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":18.684,"geometry_index":12569,"location":[4.8926,43.980816]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[163,338,345],"duration":8.715,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":9.781,"geometry_index":12571,"location":[4.894362,43.976242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.031,"geometry_index":12573,"location":[4.895351,43.973787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":80.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":88.855,"geometry_index":12574,"location":[4.895454,43.973531]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":2.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.254,"geometry_index":12584,"location":[4.909482,43.949423]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,335],"duration":73.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":75.34,"geometry_index":12585,"location":[4.909833,43.948876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":1.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.312,"geometry_index":12595,"location":[4.912946,43.927963]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,182,355],"duration":29.059,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":27.598,"geometry_index":12596,"location":[4.91299,43.927582]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.913974,43.919272],"geometry_index":12597,"admin_index":10,"weight":59.141,"is_urban":false,"turn_weight":1,"duration":61.207,"bearings":[176,346,355],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[167,259,349],"duration":4.23,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":4,"geometry_index":12616,"location":[4.912282,43.901428]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,340],"duration":2.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.145,"geometry_index":12619,"location":[4.912755,43.900239]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[153,170,337],"duration":22.328,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":21.191,"geometry_index":12621,"location":[4.913109,43.899624]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.918881,43.894663],"geometry_index":12630,"admin_index":10,"weight":17.363,"is_urban":false,"turn_weight":0.5,"duration":17.762,"bearings":[142,313,318],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,349],"duration":18.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":18.434,"geometry_index":12640,"location":[4.92192,43.889422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,341],"duration":34.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":34.02,"geometry_index":12646,"location":[4.923855,43.883992]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[102,107,282],"duration":20.262,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":19.738,"geometry_index":12665,"location":[4.935704,43.877531]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.944464,43.875748],"geometry_index":12672,"admin_index":10,"weight":125.898,"is_urban":false,"turn_weight":1.1,"duration":134.926,"bearings":[111,280,289],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,336],"duration":79.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":73.336,"geometry_index":12709,"location":[4.989344,43.847816]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[111,115,290],"duration":18.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":18.746,"geometry_index":12733,"location":[5.013814,43.830375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.021299,43.827636],"geometry_index":12742,"admin_index":10,"weight":34.738,"is_urban":false,"turn_weight":1.3,"duration":32.629,"bearings":[129,296,306],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[149,155,329],"duration":23.914,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":24.504,"geometry_index":12753,"location":[5.030241,43.819351]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.03504,43.813497],"geometry_index":12757,"admin_index":10,"weight":85.84,"is_urban":false,"turn_weight":0.5,"duration":87.535,"bearings":[151,324,331],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.609,"geometry_index":12785,"location":[5.045171,43.789307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":115.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":109.863,"geometry_index":12786,"location":[5.045571,43.788897]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[147,152,325],"duration":22.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":21.012,"geometry_index":12807,"location":[5.076736,43.762297]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.081232,43.756654],"geometry_index":12814,"admin_index":10,"weight":31.5,"is_urban":false,"turn_weight":1,"duration":31.289,"bearings":[156,329,334],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,347],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.441,"geometry_index":12822,"location":[5.085304,43.747863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":0.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.148,"geometry_index":12823,"location":[5.085341,43.747733]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.758,"geometry_index":12824,"location":[5.085354,43.747688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.48,"geometry_index":12825,"location":[5.085424,43.747473]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[167,190,347],"duration":10.137,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":9.875,"geometry_index":12826,"location":[5.085659,43.746753]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.086602,43.743846],"geometry_index":12830,"admin_index":10,"weight":1.852,"is_urban":false,"turn_weight":0.5,"duration":1.391,"bearings":[167,325,348],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":8.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.551,"geometry_index":12831,"location":[5.086727,43.743454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":1.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.191,"geometry_index":12833,"location":[5.087542,43.740967]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":65.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":60.863,"geometry_index":12834,"location":[5.087653,43.740619]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,352],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.715,"geometry_index":12853,"location":[5.090187,43.721212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":40.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":36.02,"geometry_index":12854,"location":[5.090238,43.720983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,335],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.48,"geometry_index":12865,"location":[5.095222,43.709602]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,334],"duration":21.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":20.133,"geometry_index":12866,"location":[5.095316,43.709462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,353],"duration":5.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5.531,"geometry_index":12878,"location":[5.098574,43.702848]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[181,359],"duration":29.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":27.691,"geometry_index":12880,"location":[5.09871,43.701093]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189,201],"duration":56.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":51.105,"geometry_index":12891,"location":[5.096606,43.691511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.82,"geometry_index":12906,"location":[5.095604,43.674695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":52.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":48.516,"geometry_index":12907,"location":[5.095675,43.674088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":1.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.258,"geometry_index":12922,"location":[5.1029,43.658158]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,328],"duration":38.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":38.07,"geometry_index":12923,"location":[5.103177,43.657831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,336],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.219,"geometry_index":12931,"location":[5.110833,43.647881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,335],"duration":11.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.23,"geometry_index":12932,"location":[5.111039,43.647564]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,341],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.449,"geometry_index":12935,"location":[5.112943,43.644237]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,341],"duration":52.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":54.266,"geometry_index":12936,"location":[5.11313,43.643843]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[142,151,321],"duration":8.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.547,"geometry_index":12948,"location":[5.124513,43.630559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.195,"geometry_index":12949,"location":[5.126542,43.628702]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":10.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":10.48,"geometry_index":12950,"location":[5.127102,43.628195]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.82,"geometry_index":12951,"location":[5.129371,43.626126]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.129554,43.625964],"geometry_index":12952,"admin_index":10,"weight":1.699,"is_urban":false,"turn_weight":1,"duration":0.707,"bearings":[141,307,321],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.156,"geometry_index":12953,"location":[5.129722,43.625815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,322],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5.195,"geometry_index":12954,"location":[5.129987,43.625571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":33.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":32.324,"geometry_index":12955,"location":[5.131263,43.624405]},{"entry":[false,true,false,false],"classes":["toll","motorway"],"in":3,"bearings":[86,141,266,321],"duration":24.801,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":22.934,"geometry_index":12957,"location":[5.139482,43.616979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,324],"duration":71.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":64.547,"geometry_index":12961,"location":[5.1455,43.611353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":7.41,"geometry_index":12975,"location":[5.164256,43.596498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.254,"geometry_index":12977,"location":[5.166888,43.595678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":6.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.121,"geometry_index":12978,"location":[5.166971,43.595654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":19.441,"geometry_index":12983,"location":[5.168936,43.59509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":6.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5.508,"geometry_index":12984,"location":[5.171679,43.594251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.73,"geometry_index":12985,"location":[5.172452,43.594015]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.172557,43.593982],"geometry_index":12986,"admin_index":10,"weight":15.215,"is_urban":false,"toll_collection":{"name":"Péage de Lançon","type":"toll_booth"},"turn_weight":15,"duration":0.238,"bearings":[111,293],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.766,"geometry_index":12987,"location":[5.172623,43.593964]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[111,155,291],"duration":10.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":9.359,"geometry_index":12988,"location":[5.173188,43.593803]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,291],"duration":8.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":7.309,"geometry_index":12989,"location":[5.176184,43.592951]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[110,289,292],"duration":14.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":13.43,"geometry_index":12990,"location":[5.178526,43.592274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":1.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.691,"geometry_index":12993,"location":[5.182869,43.591127]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[107,128,289],"duration":17.473,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":15.707,"geometry_index":12994,"location":[5.183415,43.59099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.664,"geometry_index":12998,"location":[5.18989,43.58964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":19.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":17.848,"geometry_index":12999,"location":[5.190164,43.589586]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.197475,43.587978],"geometry_index":13004,"admin_index":10,"weight":116.875,"is_urban":false,"turn_weight":1,"duration":132.438,"bearings":[114,289,291],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,311],"duration":27.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":23.672,"geometry_index":13028,"location":[5.216996,43.570301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,302],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.801,"geometry_index":13030,"location":[5.222445,43.567717]},{"bearings":[123,303],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":13031,"location":[5.222722,43.567587]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Marseille"}],"type":"fork","modifier":"right","text":"Marseille"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"right","text":"A 7"},"distanceAlongGeometry":79549.594}],"destinations":"Marseille, Orange, Avignon, Nice","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 7/E 714/Autoroute du Soleil toward Marseille.","modifier":"slight left","bearing_after":137,"bearing_before":141,"location":[4.785822,44.13371]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":2416.328,"duration_typical":2458.301,"duration":2458.301,"distance":79549.594,"driving_side":"right","weight":2416.328,"mode":"driving","ref":"A 7; E 714","geometry":"{sudsA{hbcH`}@mpAju@ubApsAegBhb@gj@puBgqCvn@oy@hUcZ`UmZzw@ydA|tDu`FvW_]`pBqiCdcD}gEfUmZvTe\\db@gr@r`@}v@t[ss@~Mu\\lMs_@lMw_@lMsb@tSmx@xSwcAzMmz@bMq_AdJccA|HejAnJyzAhJytAn@kKfByW~f@_wHx_@m}FpXgdE`Q{mCjDsk@nEip@jNysBtFgy@`Fax@dEmq@`MkkBlNmsBlOgxBlFcm@~Gil@zIgn@`Hub@tJgg@hEuT|Psq@z@aDbHuWjTsr@rQ}f@xZgt@d[mm@rxHaiNtmAo~BblA{~B~n@woAxYch@fYwc@zZ_c@fYk^b_AoeAnZi[d^m]vuAkoAl`Aqw@p{@_p@daA}n@jo@a]t`@mQdW}Ipw@wVld@mMfoCam@~bAmUld@iJl{@ySvaAwVflAuZfyDybAhtLa`DfgA_[zZeJtKiDtt@eZnr@qZ`yAqq@vx@e[vm@mPxa@cI`a@wFtYeDnYaCj`AcEpk@uAl[w@ttAgDhcCqFzuHcQt_AeB`\\m@xW`Atb@rAtc@xDn_@bEfZfFpg@jJx`@~Kbc@xNbi@fT`XdLnFhClj@zVfRbKfpAbn@ju@~^p_@tLhb@vKz\\jGhg@tFhXpBn`@j@vk@iBfP{@dSeChTeDlNsCnU_Gla@mLp\\}K|a@kO`}@e]`NgFhpAkb@nNiFzv@kYfOkFhj@eSlZ_LrReFhS}Dlp@kJbgAiM|w@gJl{@oKv_AkI|wAuQtdAqL~b@{Eh`@eEf{Hg{@lk@qEr_@}BbXg@j]Znk@xDbrCj]hIrAvBZzYvEp}BlZnMpBh`Dfc@l|I|mAnc@lGdb@`Dn\\|@l`@Kdh@_C~o@{GpIiA~R{EzW{Hxc@wMzd@sNbx@uVtw@cVngHgwB~xAsb@bVcHrtD_fAjSaGnhGaeB|v@aVn`Bwe@~NmEp~Bon@`cEajArf@kOlQ{FvUiK~j@}ZzBmAlhOiqIlsH}hEp_F_rCda@}T`OgHp\\aOp\\gLpY_Ij]iHzXyDj`@{DliNss@h}@wE|qPs`AxVwAjfOo|@nzDeSry@cEj[]n_@j@|^hBxf@`GhmFdz@j{@pMnfDpg@h`@~Fd\\fFld@hE~YvAjU@nXWnYsA~d@mEjNiCrNiCfW}F`XaH~WqKrCiAx`@yRzc@wXve@u_@l]w\\vV_Zx\\ed@|Uw^rm@ybAfa@_q@rm@yy@rLyMxZ}ZvViVnWkStZ{Sdb@_Tx^cPvb@}Lpj@qLz~@_PhuA}Trv@eO|q@mQvv@iUhq@wUlg@iRxb@wRxe@gWn_@kWpZqVlZkYb\\e_@n`@{j@h\\yi@dYwl@`Zuu@jOof@zOso@~EuT|EoWvJko@tH_m@hHis@tM}~AzB_Y|F_t@zJwgA`ScmB`WqtBvNgbAhPceAlMuw@|Kkm@xTggA~Okx@tQux@hg@_uBpa@ozA`c@y{Ax|BiwH|{ButHvdAygDn`@uhA|d@yjA|s@}xAbc@mv@dMiQda@ak@lh@so@ptAqwAr|AcwA|fBkaBrn@yo@lk@{p@~p@_|@~f@{t@~j@m}@hi@e|@hq@qiA`p@scAf_@ki@~\\_d@db@mh@pf@eh@lc@s`@dVwS`e@{\\`l@{^|}@we@paAwd@nmBm|@v}@_e@tx@gg@~j@m`@vt@on@vd@sc@nk@qm@xw@g`Ahw@meAdl@{z@xo@idA|o@{iAhm@gkAld@uaA^w@vc@ucAxe@cnAzx@{_CdZobAb]mpA`\\uwAre@wiChLiq@h\\ijBrTufArLui@nJo_@vUqz@tJq[rKi[rQ_g@l\\ex@lc@k}@jg@i~@j\\ig@z\\ie@j_@ee@z`@yc@tg@ai@rm@wi@zv@eq@n}@et@xlBkzAniAe}@x`Acv@`dCanBn{AqfAbn@}b@ps@ce@lsByiAb_A_c@neAu`@bz@mWr{@{Sb`AaPxl@sG`VyB`aAyDdcAm@npB^tv@o@fq@aBtx@aGjo@gJvn@eNjf@gOta@sOrh@_Vp`@_Td]{Sdq@ef@ll@gg@pp@}l@fr@oo@~V{UrX_XnlAyhAjdCqdCh|@a}@`v@m~@rk@st@re@ao@nd@mo@jw@cjAzVu_@pXgc@loFamIxjAydBllAwdBbKgN~gAm{AdwAejBt`B_pBtgBasBhxAg}A`}A}|A|zC_vCrj@{e@v|@su@`g@u_@xp@sg@lt@ig@bp@kd@zu@oc@fbA{h@puAcp@`vAgk@rq@uUvt@oVzq@uSfs@eR`dBe`@bGiAxAYlLkC~k@uMnfAmVho@gOlp@uNlKqBnWyFlpBed@~h@wLvT}Er}As]pf@uJbQkDzeAoQvaAuMj|@cJbp@uD~cAmE~~@qBpvA{CjcCi@bmBwAb_A_Bnr@cCnr@aDzh@yCjn@mFhq@yGvi@oGhMeBns@{J`~@gPzt@oOzy@aR`uBwm@tgAk_@`iAwc@vpAel@bl@{Xvn@k_@pj@oZvG{Dvb@eW@?lwAqx@vn@g[nw@q^vc@cOPGjc@oNt]mJ|XkFnUqD`_@yD|x@uFvr@Y|URbc@pBt]pBn`@|E~{@hMlcArPrrAnTF@hmC`c@vl@jIfiAzO|TxCz_AnKpm@jGza@pDt^pCxuAzGrcC`I`hCnEfwA`C`xBfE`{@fCnnAUhf@qArl@wAv{@eF|d@mCzdEsY`wAyNpsAqSbv@}Ojm@qOj|@iYLE|{@k]vw@e_@|w@yc@zp@gb@fw@ci@j{BifBjU_Rha@o\\lSiPv_Em~CtaBcpAvdBepAhp@uc@hq@cc@lp@o`@to@c^|]iRxR{KxfBe}@`w@ga@`o@qUrWuJ|g@_Tzg@sXvpAwq@bg@{ZpJ_Flz@cf@dkAuu@|mAw|@tcAq~@ju@yu@vy@w{@ryEosF`sBy}Bt^_b@h`CylCbImJhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 10 miles.","announcement":"Continue for 10 miles.","distanceAlongGeometry":15914.287},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 7.","announcement":"In 2 miles, Keep left to stay on A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 7.","announcement":"In a half mile, Keep left to stay on A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 7, E 714.","announcement":"Keep left to stay on A 7, E 714.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[158,173,340],"duration":19.105,"turn_duration":0.015,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":18.137,"geometry_index":13040,"location":[5.228036,43.56103]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,342],"duration":0.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.152,"geometry_index":13047,"location":[5.230226,43.55609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,346],"duration":10.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":9.777,"geometry_index":13048,"location":[5.230241,43.556045]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.230934,43.553191],"geometry_index":13053,"admin_index":10,"weight":23.566,"is_urban":false,"turn_weight":1,"duration":23.762,"bearings":[178,339,354],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,208],"duration":2.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.082,"geometry_index":13063,"location":[5.228723,43.546533]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,210],"duration":116.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":110.355,"geometry_index":13064,"location":[5.228336,43.546005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,328],"duration":2.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.117,"geometry_index":13106,"location":[5.229971,43.516747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,329],"duration":47.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":45.961,"geometry_index":13107,"location":[5.230422,43.516213]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,347],"duration":2.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.059,"geometry_index":13118,"location":[5.237462,43.503632]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,346],"duration":12.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.551,"geometry_index":13119,"location":[5.23765,43.503076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":2.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.391,"geometry_index":13122,"location":[5.23855,43.499601]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":5,"geometry_index":13124,"location":[5.238681,43.498931]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[173,189,352],"duration":6.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.473,"geometry_index":13125,"location":[5.238955,43.497536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":1.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.266,"geometry_index":13126,"location":[5.239266,43.49579]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,354],"duration":12.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.281,"geometry_index":13127,"location":[5.239318,43.495454]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.239827,43.492198],"geometry_index":13131,"admin_index":10,"weight":44.477,"is_urban":false,"turn_weight":0.5,"duration":43.984,"bearings":[175,338,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.199,"geometry_index":13140,"location":[5.239916,43.48012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":43.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":41.934,"geometry_index":13141,"location":[5.239783,43.479811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,179],"duration":2.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.016,"geometry_index":13150,"location":[5.233737,43.468805]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,359],"duration":43.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":43.789,"geometry_index":13151,"location":[5.233755,43.468247]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,347],"duration":25.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":27.125,"geometry_index":13161,"location":[5.236002,43.456352]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":2.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.32,"geometry_index":13170,"location":[5.239342,43.44988]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[150,175,333],"duration":21.199,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":23.824,"geometry_index":13171,"location":[5.239693,43.449372]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[143,306,323],"duration":7.207,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.281,"geometry_index":13177,"location":[5.243683,43.444833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,323],"duration":1.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.824,"geometry_index":13178,"location":[5.245216,43.443376]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,322],"duration":31.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":36.43,"geometry_index":13179,"location":[5.245552,43.443069]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.252328,43.437308],"geometry_index":13182,"admin_index":10,"weight":36.926,"is_urban":true,"turn_weight":0.5,"duration":30.363,"bearings":[144,306,322],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,324],"duration":1.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.91,"geometry_index":13185,"location":[5.25813,43.43147]},{"bearings":[144,324],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"geometry_index":13186,"location":[5.258436,43.431163]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E714","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 714"}],"type":"fork","modifier":"left","text":"A 7 / E 714"},"distanceAlongGeometry":15950.954}],"destinations":"A 7: Marseille, Rognac, Berre, Marignane","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on A 7/E 714/Autoroute du Soleil toward Marseille.","modifier":"slight right","bearing_after":173,"bearing_before":160,"location":[5.228036,43.56103]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":530.199,"duration_typical":520.637,"duration":520.625,"distance":15950.954,"driving_side":"right","weight":530.18,"mode":"driving","ref":"A 7; E 714","geometry":"kcwarAg_b~HjFBzL}DfW{Hba@wNzgAq`@|fAeb@hsAuc@xA]jg@uLnc@wIzc@}Fxc@cFxZyBrg@q@xb@\\vk@lC|l@~HfYlFdz@fUxa@dObb@zQhb@jThy@fe@~_@dW~UhQrt@tm@pmAxkA~jApmAvv@|z@dn@~p@fs@lr@`iAdbApl@dd@z\\dTfXhOzXjNrSzJhOlGnZhJz\\`JhMzCdPtDbj@vIr^rCrn@tBj`@`@lo@oBd[wCj[_Fdd@cJvg@aOl`@aNbh@}UxL{Gr`@oVz^aXb\\uWri@qf@lw@iu@xiAkgAljAsgAblAugAniAkdAjbAe}@hv@wo@neAc{@j`@e[pjAa{@hsAs~@vkAut@bn@w]tdAgj@r_Aec@hy@s\\~lAyc@llAo_@fkAk[fmAcXva@wJ`bBeZh~AuWxUkC|IcA|]aEdvAcPblBmR~SgBrbA{IjtAgLr`@aDzOsAt{AgKjgH_k@|oBsCnz@jBty@xHt]bEfc@vIjv@zRjKjDhRhGvItCbq@vZxj@p\\psB`|ArmB|~AhmA`t@tyAxi@noB`ZniA|Bza@c@|_AkFvlAaJjfC}Tjh@kE`aBaNlsB_Sf|@gMt^oFf\\sGhvAg[b`B{c@xpAqd@lf@uS\\O~e@cTz]uPl^gRh|@of@pUqNv^}Tr[iUjaBwlAldAc}@hJaJ~k@_k@|]c_@`zAy~AdR_TxuCazDvwBumCnwAw|A|nBsmBp_Fu~Ej[i[dRcRtf@qf@"},{"voiceInstructions":[{"ssmlAnnouncement":"In 2 miles, Keep right to take A 551.","announcement":"In 2 miles, Keep right to take A 551.","distanceAlongGeometry":3560.885},{"ssmlAnnouncement":"In a half mile, Keep right to take A 551.","announcement":"In a half mile, Keep right to take A 551.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 551 toward L'Estaque, Les Ports.","announcement":"Keep right to take A 551 toward L'Estaque, Les Ports.","distanceAlongGeometry":256.667}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[144,160,324],"duration":12.441,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":14.613,"geometry_index":13187,"location":[5.259069,43.430528]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.613,"geometry_index":13189,"location":[5.261801,43.427751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":4.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":5.77,"geometry_index":13190,"location":[5.262101,43.427445]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,325],"duration":22.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":26.422,"geometry_index":13191,"location":[5.263159,43.426337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,317],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.34,"geometry_index":13196,"location":[5.268626,43.421442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,318],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.375,"geometry_index":13197,"location":[5.2687,43.421383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,316],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.34,"geometry_index":13199,"location":[5.268789,43.421315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,316],"duration":28.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":31.773,"geometry_index":13200,"location":[5.268864,43.421258]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.276707,43.416012],"geometry_index":13208,"admin_index":10,"weight":25.641,"is_urban":true,"turn_weight":0.95,"duration":22.977,"bearings":[134,298,313],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[137,317],"duration":8.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.91,"geometry_index":13213,"location":[5.281746,43.412222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,317],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.141,"geometry_index":13214,"location":[5.283627,43.41078]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,317],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.406,"geometry_index":13215,"location":[5.283864,43.410596]},{"bearings":[136,317],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":13216,"location":[5.283948,43.410531]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"L'Estaque"},{"type":"text","text":"/"},{"type":"text","text":"Les Ports"}],"type":"fork","modifier":"right","text":"L'Estaque / Les Ports"},"distanceAlongGeometry":3597.552}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 7/E 714/Autoroute du Soleil.","modifier":"slight left","bearing_after":144,"bearing_before":144,"location":[5.259069,43.430528]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":140.699,"duration_typical":125.809,"duration":125.809,"distance":3597.552,"driving_side":"right","weight":140.699,"mode":"driving","ref":"A 7; E 714","geometry":"_gxyqAyr~_I~[}[poCylCbRwQfdAcaAtCoC||@}}@flAioAjqBsdCtn@i{@tBsCv@gAnAiBpBuC~a@}l@lfAwbBt|@i{Ap]gq@DKf}@_cBrb@}u@b^sm@dKkPzj@i}@lq@kcAzp@{_AnoA_eBbyAqtBnJyM`CgD|q@qcA`\\qi@zYci@h^mu@nS{d@dTei@bR{g@`HcT"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to stay on A 551.","announcement":"In a quarter mile, Keep left to stay on A 551.","distanceAlongGeometry":373.226},{"ssmlAnnouncement":"Keep left to stay on A 551 toward L'Estaque, Les Ports.","announcement":"Keep left to stay on A 551 toward L'Estaque, Les Ports.","distanceAlongGeometry":268.889}],"intersections":[{"mapbox_streets_v8":{"class":"motorway"},"location":[5.289544,43.407202],"geometry_index":13224,"admin_index":10,"weight":17.617,"is_urban":false,"turn_weight":5,"duration":12.625,"bearings":[120,123,301],"out":1,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"bearings":[113,294],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":13229,"location":[5.293139,43.405755]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"L'Estaque"},{"type":"text","text":"/"},{"type":"text","text":"Les Ports"}],"type":"fork","modifier":"left","text":"L'Estaque / Les Ports"},"distanceAlongGeometry":409.892}],"destinations":"L'Estaque, Les Ports, Marseille - Vieux Port, Martigues, Fos sur Mer","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 551 toward L'Estaque/Les Ports.","modifier":"slight right","bearing_after":123,"bearing_before":121,"location":[5.289544,43.407202]},"speedLimitSign":"vienna","name":"","weight_typical":20.535,"duration_typical":15.543,"duration":15.543,"distance":409.892,"driving_side":"right","weight":20.535,"mode":"driving","ref":"A 551","geometry":"cujxqAoczaIjYev@xSqp@|Nsh@`Vw_AfCqLhEiSvEmTbC{K"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 8 miles.","announcement":"Continue for 8 miles.","distanceAlongGeometry":13395.794},{"ssmlAnnouncement":"In a quarter mile, Continue on Tunnel de la Joliette.","announcement":"In a quarter mile, Continue on Tunnel de la Joliette.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Continue on Tunnel de la Joliette for 1.5 miles.","announcement":"Continue on Tunnel de la Joliette for 1.5 miles.","distanceAlongGeometry":155.556}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[116,122,294],"duration":18.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":18,"geometry_index":13232,"location":[5.294013,43.40548]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.297802,43.402555],"geometry_index":13245,"admin_index":10,"weight":1.203,"is_urban":false,"turn_weight":1,"duration":0.211,"bearings":[163,332,340],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":2.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.609,"geometry_index":13246,"location":[5.297821,43.40251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,344],"duration":3.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.797,"geometry_index":13249,"location":[5.298054,43.401943]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":3.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.32,"geometry_index":13252,"location":[5.298227,43.401095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,182],"duration":9.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.926,"geometry_index":13255,"location":[5.298276,43.400311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":3.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.242,"geometry_index":13258,"location":[5.298172,43.398208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,355],"duration":14.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":13.777,"geometry_index":13261,"location":[5.298224,43.397442]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.299078,43.394225],"geometry_index":13266,"admin_index":10,"weight":31.176,"is_urban":false,"turn_weight":6,"duration":26.539,"bearings":[164,336,354],"out":0,"in":2,"turn_duration":0.038,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,322],"duration":0.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.355,"geometry_index":13275,"location":[5.303796,43.389098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,322],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.801,"geometry_index":13276,"location":[5.30387,43.389029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,321],"duration":12.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":11.758,"geometry_index":13277,"location":[5.304052,43.388867]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,302],"duration":9.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.359,"geometry_index":13281,"location":[5.307197,43.386794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,298],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.328,"geometry_index":13285,"location":[5.309892,43.385765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,304],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.086,"geometry_index":13287,"location":[5.310921,43.385303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,307],"duration":9.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":8.836,"geometry_index":13288,"location":[5.31124,43.38513]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,323],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.66,"geometry_index":13293,"location":[5.313459,43.383452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,331],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":2.582,"geometry_index":13295,"location":[5.314682,43.381933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,331],"duration":15.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":14.414,"geometry_index":13296,"location":[5.315132,43.381338]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,334],"duration":6.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.625,"geometry_index":13299,"location":[5.317443,43.378028]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":12.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":12.344,"geometry_index":13301,"location":[5.318383,43.376518]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,344],"duration":3.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.895,"geometry_index":13305,"location":[5.319701,43.373662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":3.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":3.5,"geometry_index":13307,"location":[5.320065,43.372745]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,279,339],"duration":10.785,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":11.031,"geometry_index":13310,"location":[5.320449,43.371954]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[124,312],"duration":10.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":10.84,"geometry_index":13317,"location":[5.32256,43.369881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[121,304],"duration":6.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":7.418,"geometry_index":13318,"location":[5.325427,43.368452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,300],"duration":29.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":32.957,"geometry_index":13320,"location":[5.327384,43.367612]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,285],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.77,"geometry_index":13336,"location":[5.336785,43.365816]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[114,130,290],"duration":0.93,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.059,"geometry_index":13337,"location":[5.337264,43.36569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,294],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.512,"geometry_index":13338,"location":[5.337538,43.365601]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,296],"duration":13.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":15.59,"geometry_index":13340,"location":[5.337917,43.365466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.82,"geometry_index":13351,"location":[5.34102,43.363299]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,330],"duration":3.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.906,"geometry_index":13352,"location":[5.341387,43.36283]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.341876,43.362169],"geometry_index":13353,"admin_index":10,"weight":0.738,"is_urban":true,"turn_weight":0.5,"duration":0.211,"bearings":[154,315,332],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,334],"duration":7.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.508,"geometry_index":13354,"location":[5.341904,43.362127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,332],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.609,"geometry_index":13356,"location":[5.342955,43.360656]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":3.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":4.184,"geometry_index":13357,"location":[5.343028,43.360553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[153,333],"duration":9.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":11.48,"geometry_index":13358,"location":[5.343533,43.359842]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,331],"duration":5.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":6.312,"geometry_index":13362,"location":[5.344933,43.357873]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[145,300,328],"duration":2.207,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.621,"geometry_index":13364,"location":[5.345796,43.356854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,325],"duration":8.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":9.902,"geometry_index":13365,"location":[5.346177,43.356459]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[151,327],"duration":2.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.41,"geometry_index":13367,"location":[5.347623,43.354955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,335],"duration":6.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":7.461,"geometry_index":13369,"location":[5.347893,43.354569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,355],"duration":11.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":13.672,"geometry_index":13373,"location":[5.348361,43.353259]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,219],"duration":12.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":14.875,"geometry_index":13383,"location":[5.347346,43.350835]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,197],"duration":3.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":4.48,"geometry_index":13391,"location":[5.345037,43.348522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,177],"duration":2.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":2.984,"geometry_index":13394,"location":[5.344846,43.347709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,354],"duration":1.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.656,"geometry_index":13397,"location":[5.344909,43.34715]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,347],"duration":2.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.395,"geometry_index":13399,"location":[5.345007,43.34685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":2.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.742,"geometry_index":13401,"location":[5.345208,43.346448]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[150,166,339],"duration":35.195,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":39.559,"geometry_index":13403,"location":[5.345452,43.345989]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,351],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.691,"geometry_index":13427,"location":[5.34849,43.338903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,349],"duration":9.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":10.637,"geometry_index":13428,"location":[5.348527,43.338769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,311],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.797,"geometry_index":13441,"location":[5.349946,43.337014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,309],"duration":2.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":3.074,"geometry_index":13442,"location":[5.350326,43.336794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,303],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.793,"geometry_index":13444,"location":[5.351006,43.336463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,300],"duration":14.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":15.98,"geometry_index":13445,"location":[5.351189,43.336385]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.354009,43.334221],"geometry_index":13462,"admin_index":10,"weight":13.684,"is_urban":true,"turn_weight":0.5,"duration":11.992,"bearings":[168,336,347],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[175,190,358],"duration":5.66,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":6.059,"geometry_index":13473,"location":[5.354161,43.331776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,342],"duration":7.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.039,"geometry_index":13478,"location":[5.354452,43.330731]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,322],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":4.547,"geometry_index":13484,"location":[5.355473,43.329492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,318],"duration":2.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":2.262,"geometry_index":13486,"location":[5.356217,43.328861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,318],"duration":7.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.023,"geometry_index":13487,"location":[5.356579,43.328571]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.357937,43.327575],"geometry_index":13491,"admin_index":10,"weight":4.574,"is_urban":true,"turn_weight":0.5,"duration":3.727,"bearings":[138,311,321],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,317],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":1.852,"geometry_index":13493,"location":[5.358539,43.327099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,310],"duration":43.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":48.602,"geometry_index":13494,"location":[5.358839,43.326914]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,188],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.406,"geometry_index":13519,"location":[5.364211,43.320837]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,194],"duration":20.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":23.488,"geometry_index":13520,"location":[5.364199,43.320777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":0.926,"geometry_index":13536,"location":[5.363933,43.31731]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,330],"duration":22.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":25.516,"geometry_index":13537,"location":[5.364032,43.317184]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.36606,43.313522],"geometry_index":13548,"admin_index":10,"weight":10.508,"is_urban":true,"turn_weight":2.5,"duration":6.973,"bearings":[156,328,336],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.366625,43.31255],"geometry_index":13550,"admin_index":10,"weight":11.031,"is_urban":true,"turn_weight":0.5,"duration":9.191,"bearings":[153,329,340],"out":0,"in":2,"turn_duration":0.033,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[181,355],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"geometry_index":13555,"location":[5.367136,43.311314]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Tunnel de la Joliette"}],"type":"turn","modifier":"straight","text":"Tunnel de la Joliette"},"distanceAlongGeometry":13432.461}],"destinations":"L'Estaque, Les Ports, Marseille Vieux Port","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 551 toward L'Estaque/Les Ports.","modifier":"slight left","bearing_after":116,"bearing_before":114,"location":[5.294013,43.40548]},"speedLimitSign":"vienna","name":"","weight_typical":617.75,"duration_typical":562.75,"duration":562.75,"distance":13432.461,"driving_side":"right","weight":617.75,"mode":"driving","ref":"A 551","geometry":"oigxqAyzbbIfHsXtE_PjG}RbH}QnNoZzOmWvOgUhNmPbSeSlQ{NdPkKpM_GrMgFxAe@`GsBpE}AxS_GpJkBxQkCrUaBbSwA~IOzPDtj@fAjR^jcAfBlREzPq@pIo@na@wFpiB_\\xZyGlRcEvKu@xGiBbYgKnc@oTh[cTjS}Pv{@e|@|s@g}@rx@g_A~[a^hCsCbIkJlg@il@~d@ev@hc@{~@xMe_@xNeg@rLoc@|Pio@|Omj@~Nae@zKgYxI}Rl\\mn@~Z_f@pSgWrRmSfFqF|VsT~eAyu@dd@c[pgAet@zbA{m@laAkk@rlAso@vOcIj^kQjo@cWbm@aRrs@yS|n@{QjH{BlQwFjTeJrHaDvSwK|MeJ|RuOxNoNxSmUnO}TxSm^hxAerDra@qnAzPwi@rPoh@rXm}@xJq^zIk`@j@eDxGs`@hCkTrBkVpAuSvAcj@tAcn@nCixAbBwo@nB{a@nC}ZpCiVzF}\\pDcPzCwLpB}HjHyVfJeX|KgYvLgVjPyWbNcR~MaOxK_KjSwPbAs@hDaCh\\}Uhh@q]rAw@lw@{f@nb@yXlEqClk@q^l\\gSnZ{QvZaRje@i\\h`@mZj]oYtWyVju@av@rf@ib@xHqFhMiHnSeKhVqHbReD|QiAxHWvKAnPr@vUlD~O~DvKfErUtLpPlLxNzM|A|AdPjRh`@zf@bd@fi@rMlNnJrHtJnFxNtGhBp@jMdEjOlC`Sh@rM_@|OiAjBShD{@lLgChK{DxKuElJ_EfPgHnRqNlV}O~ZyRdY{QnT_NrLaHziA}l@~LaGdL{ElKyDzIuCbM{C`J}A~LsAdMcAfMa@fMSzHOfLIrR[~PY|J]lJm@fRcCjGiA`Q}DpGwBbGeCxIqEvG}DnIsGxFcF`HaHvDqE|C}D|DmFbEoGfDaHvLwV`Oi_@rCeIzCmJvR}j@tGcRjGaPnGaOrEeIhE}HlGkIxD{DjHiIvCiDzCmCbBkAfCeBlH}ElGeCrGuCzHgAtDs@`FgAnEw@nF_@`Ik@`JDjH]tM[xL?re@d@l[a@tKq@~JeAjMwBnMkDvJiDbJgEbLwFlKgHlIeH~ImIhR}SfRsTdS{WbQsUhIkMfTu_@fR}WlJ{KnH}JfSuXpJwQ~FyLnPm_@xOyZ`Tu^bIwLpNoSlj@gq@h@o@xXoX|m@sn@lL{L|L}LxGeGrHqFfKyG~J}EdJaDtIkC~IiBvKoA~Ga@zNUhLb@vGv@rIpAvBVjEz@dMvD`LrE~SxJpSfJnNhFbLfC~JtAfI`@~LIzKm@tMkCzHwBxIuDtL_HtMmJzFeErPwLl\\wSbIiEfM}GzL}FxWkL|TsHnn@_S|SuHhRwI`HsDbf@mWrT{IrSiMpMsF~J}C|LiBbOw@pHCxHf@lPxBrb@bIhhAbT"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Take the exit toward Le Pharo.","announcement":"In a quarter mile, Take the exit toward Le Pharo.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the exit toward Le Pharo, Saint-Victor. Then Keep left toward Le Pharo / La Plage.","announcement":"Take the exit toward Le Pharo, Saint-Victor. Then Keep left toward Le Pharo / La Plage.","distanceAlongGeometry":122.222}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[12,191,197],"duration":6.461,"turn_weight":5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":12.242,"geometry_index":13560,"location":[5.366557,43.308982]},{"entry":[false,true],"in":0,"bearings":[11,193],"duration":15.074,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":16.961,"geometry_index":13561,"location":[5.366337,43.308158]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[13,192],"duration":109.473,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":128.156,"geometry_index":13562,"location":[5.365976,43.30698]},{"mapbox_streets_v8":{"class":"trunk"},"location":[5.364255,43.301101],"geometry_index":13565,"admin_index":10,"weight":37.934,"is_urban":true,"turn_weight":0.5,"duration":33.297,"bearings":[1,12,192],"out":2,"in":1,"turn_duration":0.021,"classes":["tunnel"],"entry":[false,false,true]},{"entry":[false,true],"in":0,"bearings":[12,195],"duration":0.918,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":6.031,"geometry_index":13566,"location":[5.363376,43.298092]},{"entry":[false,true,true],"in":0,"bearings":[15,190,197],"duration":8.289,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":9.297,"geometry_index":13567,"location":[5.363336,43.297982]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[18,196],"duration":42.23,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":1,"weight":52.508,"geometry_index":13570,"location":[5.363058,43.297103]},{"bearings":[162,342],"entry":[true,false],"in":1,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":10,"out":0,"geometry_index":13585,"location":[5.365535,43.292158]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Le Pharo"},{"type":"text","text":"/"},{"type":"text","text":"Saint-Victor"}],"type":"off ramp","modifier":"right","text":"Le Pharo / Saint-Victor"},"distanceAlongGeometry":2020.298},{"sub":{"components":[{"type":"text","text":"Le Pharo / La Plage"}],"type":"fork","modifier":"left","text":"Le Pharo / La Plage"},"primary":{"components":[{"type":"text","text":"Le Pharo"},{"type":"text","text":"/"},{"type":"text","text":"Saint-Victor"}],"type":"off ramp","modifier":"right","text":"Le Pharo / Saint-Victor"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Continue on Tunnel de la Joliette.","modifier":"straight","bearing_after":191,"bearing_before":192,"location":[5.366557,43.308982]},"speedLimitSign":"vienna","name":"Tunnel de la Joliette","weight_typical":275.039,"duration_typical":221.883,"duration":221.883,"distance":2020.298,"driving_side":"right","weight":275.039,"mode":"driving","geometry":"kzjrqAyppfInr@vLrhApUjvChk@|xBtb@b}ApZ`{D|u@zEnAxQpCtRjDlOlFdOlElMdCfRdBdJGlOeAjScE|Q}FbKyE~QaMfXyTvlAshAtMmKbIsEtJiFrTmHz]eM"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left toward Le Pharo / La Plage. Then Keep left toward Aubagne.","announcement":"Keep left toward Le Pharo / La Plage. Then Keep left toward Aubagne.","distanceAlongGeometry":87.204}],"intersections":[{"bearings":[158,184,342],"entry":[true,true,false],"in":2,"turn_duration":0.03,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"geometry_index":13586,"location":[5.365762,43.291664]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Aubagne"},{"type":"text","text":"/"},{"type":"text","text":"Le Pharo"}],"type":"fork","modifier":"left","text":"Aubagne / Le Pharo"},"primary":{"components":[{"type":"text","text":"Le Pharo / La Plage"}],"type":"fork","modifier":"left","text":"Le Pharo / La Plage"},"distanceAlongGeometry":103.871}],"destinations":"Le Pharo, Saint-Victor","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit toward Le Pharo/Saint-Victor.","modifier":"slight right","bearing_after":184,"bearing_before":162,"location":[5.365762,43.291664]},"speedLimitSign":"vienna","name":"","weight_typical":17.551,"duration_typical":15.629,"duration":15.629,"distance":103.871,"driving_side":"right","weight":17.551,"mode":"driving","geometry":"_`iqqAc_ofIn@BhA?dCApDr@|B~@tCrBdBpB~BlEtAxEnDdX"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left toward Aubagne, Le Pharo.","announcement":"Keep left toward Aubagne, Le Pharo.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[73,224,279],"duration":0.383,"turn_duration":0.165,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":0.242,"geometry_index":13596,"location":[5.364973,43.291063]},{"entry":[false,true],"in":0,"bearings":[44,253],"duration":7.574,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":8.52,"geometry_index":13597,"location":[5.364945,43.291042]},{"entry":[false,true],"in":0,"bearings":[91,286],"duration":1.242,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":1.398,"geometry_index":13601,"location":[5.364214,43.290952]},{"bearings":[106,111,317],"entry":[false,false,true],"in":0,"turn_weight":0.75,"turn_duration":0.055,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":2,"geometry_index":13602,"location":[5.364093,43.290978]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Aubagne"},{"type":"text","text":"/"},{"type":"text","text":"Le Pharo"}],"type":"fork","modifier":"left","text":"Aubagne / Le Pharo"},"distanceAlongGeometry":114.374}],"destinations":"Le Pharo / La Plage","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Le Pharo / La Plage.","modifier":"slight left","bearing_after":224,"bearing_before":253,"location":[5.364973,43.291063]},"speedLimitSign":"vienna","name":"","weight_typical":14.148,"duration_typical":12.133,"duration":12.133,"distance":114.374,"driving_side":"right","weight":14.148,"mode":"driving","geometry":"mzgqqAymmfIh@v@dD~VZ|GD`EStEs@pF_A~B{AvBuBbB{B|@iBJgBI"},{"voiceInstructions":[{"ssmlAnnouncement":"In 800 feet, Bear right onto Boulevard Charles Livon.","announcement":"In 800 feet, Bear right onto Boulevard Charles Livon.","distanceAlongGeometry":240.222},{"ssmlAnnouncement":"Bear right onto Boulevard Charles Livon.","announcement":"Bear right onto Boulevard Charles Livon.","distanceAlongGeometry":53.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[9,23,170],"duration":0.312,"turn_duration":0.023,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":0.324,"geometry_index":13608,"location":[5.363887,43.291282]},{"entry":[true,false],"in":1,"bearings":[15,189],"duration":3.848,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":4.328,"geometry_index":13609,"location":[5.363894,43.291314]},{"entry":[true,false],"in":1,"bearings":[16,196],"duration":6.207,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":6.984,"geometry_index":13611,"location":[5.363994,43.291579]},{"entry":[false,true],"in":0,"bearings":[182,351],"duration":1.441,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":1.621,"geometry_index":13615,"location":[5.3641,43.292018]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[171,352],"duration":2.934,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":3.301,"geometry_index":13616,"location":[5.364077,43.292129]},{"entry":[false,true],"in":0,"bearings":[172,355],"duration":18.516,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"weight":20.828,"geometry_index":13617,"location":[5.364039,43.292326]},{"entry":[true,false],"in":1,"bearings":[208,359],"duration":0.855,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":0,"weight":0.965,"geometry_index":13632,"location":[5.364639,43.292394]},{"entry":[false,false,true,false],"in":0,"bearings":[28,94,213,270],"duration":1.039,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":2,"weight":2.156,"geometry_index":13633,"location":[5.364608,43.292352]},{"entry":[false,false,true,false],"in":0,"bearings":[33,87,243,267],"duration":2.289,"turn_weight":1,"turn_duration":0.059,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":2,"weight":3.508,"geometry_index":13634,"location":[5.364568,43.292307]},{"bearings":[63,242],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":10,"out":1,"geometry_index":13635,"location":[5.364421,43.292252]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Boulevard Charles Livon"}],"type":"turn","modifier":"slight right","text":"Boulevard Charles Livon"},"distanceAlongGeometry":256.889}],"destinations":"Aubagne, Le Pharo","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Aubagne/Le Pharo.","modifier":"slight left","bearing_after":9,"bearing_before":350,"location":[5.363887,43.291282]},"speedLimitSign":"vienna","name":"","weight_typical":45.172,"duration_typical":38.469,"duration":38.469,"distance":256.889,"driving_side":"right","weight":45.172,"mode":"driving","geometry":"chhqqA}ikfI_AMeD{@kJkCgN}DmBa@oCKgCV}El@iKjAsC`@iDVmB[gB}@iByB}@eCi@mDI_DXoDz@aDdAmC`B}AdCq@nBIrBv@rA|@xAnAlBdHn@zB"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left onto Rue Charras.","announcement":"In a quarter mile, Turn left onto Rue Charras.","distanceAlongGeometry":568.749},{"ssmlAnnouncement":"Turn left onto Rue Charras.","announcement":"Turn left onto Rue Charras.","distanceAlongGeometry":125}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[62,87,269],"duration":5.66,"turn_weight":11.75,"turn_duration":0.042,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":10,"out":2,"weight":18.066,"geometry_index":13636,"location":[5.364359,43.292228]},{"entry":[false,false,true],"in":0,"bearings":[89,241,269],"duration":1.625,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":10,"out":2,"weight":2.324,"geometry_index":13638,"location":[5.363878,43.292221]},{"entry":[true,false,true],"in":1,"bearings":[4,89,272],"duration":6.352,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":7.637,"geometry_index":13639,"location":[5.363765,43.29222]},{"entry":[false,false,true],"in":0,"bearings":[92,218,271],"duration":2.719,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":4.039,"geometry_index":13640,"location":[5.363306,43.292233]},{"entry":[false,true,true],"in":0,"bearings":[91,271,359],"duration":0.82,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":0.898,"geometry_index":13641,"location":[5.363152,43.292235]},{"entry":[false,true,false,true],"in":0,"bearings":[91,111,175,271],"duration":0.879,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":3,"weight":1.965,"geometry_index":13642,"location":[5.363097,43.292236]},{"entry":[false,false,false,true],"in":1,"bearings":[0,91,182,270],"duration":12.191,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":3,"weight":13.387,"geometry_index":13643,"location":[5.363038,43.292237]},{"entry":[false,true,true],"in":0,"bearings":[91,270,353],"duration":12.066,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":13.25,"geometry_index":13645,"location":[5.362156,43.292245]},{"entry":[false,true,true],"in":0,"bearings":[91,266,346],"duration":9.684,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":10.379,"geometry_index":13649,"location":[5.361082,43.292252]},{"entry":[false,true,true],"in":0,"bearings":[82,262,336],"duration":11.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":1,"weight":12.629,"geometry_index":13651,"location":[5.360362,43.292192]},{"entry":[false,false,false,true,false],"in":0,"bearings":[82,172,238,262,351],"duration":3.094,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":3,"weight":4.316,"geometry_index":13654,"location":[5.359602,43.292113]},{"entry":[false,true,true],"in":0,"bearings":[82,148,263],"duration":4.176,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":4.48,"geometry_index":13655,"location":[5.359384,43.29209]},{"entry":[false,false,true],"in":0,"bearings":[83,170,262],"duration":2.293,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":10,"out":2,"weight":2.445,"geometry_index":13658,"location":[5.359114,43.292065]},{"entry":[true,false,true,true,false],"in":1,"bearings":[17,82,170,262,334],"duration":9.859,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":10,"out":3,"weight":12.344,"geometry_index":13659,"location":[5.358963,43.29205]},{"entry":[false,true,true],"in":0,"bearings":[83,262,351],"duration":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":10,"out":1,"weight":2.078,"geometry_index":13662,"location":[5.358327,43.291987]},{"bearings":[82,263,349],"entry":[false,true,true],"in":0,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13663,"location":[5.358193,43.291973]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue Charras"}],"type":"turn","modifier":"left","text":"Rue Charras"},"distanceAlongGeometry":585.416}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Boulevard Charles Livon.","modifier":"slight right","bearing_after":269,"bearing_before":242,"location":[5.364359,43.292228]},"speedLimitSign":"vienna","name":"Boulevard Charles Livon","weight_typical":126.949,"duration_typical":101.094,"duration":101.094,"distance":585.416,"driving_side":"right","weight":126.949,"mode":"driving","geometry":"gcjqqAmglfI@lCJrX@`FYt[CrHAlBAtB@fAQzs@AzL?hIEt^EfJJxIjBda@LvCxBjc@TjEl@rLTtFRpEFrA\\lHZrFD~@zAb]ZjG|D~~@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":839.1},{"ssmlAnnouncement":"In a quarter mile, Turn left onto Rue du Vallon des Auffes.","announcement":"In a quarter mile, Turn left onto Rue du Vallon des Auffes.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left onto Rue du Vallon des Auffes. Then, in 100 feet, Turn right onto Rue d'Endoume.","announcement":"Turn left onto Rue du Vallon des Auffes. Then, in 100 feet, Turn right onto Rue d'Endoume.","distanceAlongGeometry":78.333}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[83,173,263],"duration":17.898,"turn_weight":7.5,"turn_duration":5.395,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":20.629,"geometry_index":13664,"location":[5.357169,43.291878]},{"entry":[true,true,false,false],"in":3,"bearings":[83,173,263,353],"duration":12.809,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":15.441,"geometry_index":13667,"location":[5.357267,43.291292]},{"entry":[false,true,true,false],"in":3,"bearings":[84,172,265,354],"duration":13.938,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":16.617,"geometry_index":13670,"location":[5.357356,43.290723]},{"entry":[true,true,false,false],"in":3,"bearings":[83,174,258,353],"duration":15.008,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":17.75,"geometry_index":13672,"location":[5.357453,43.290211]},{"entry":[true,true,true,false],"in":3,"bearings":[82,174,231,354],"duration":6.906,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.246,"geometry_index":13673,"location":[5.357554,43.289545]},{"entry":[true,true,true,false],"in":3,"bearings":[125,170,303,355],"duration":1.824,"turn_weight":3,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":4.891,"geometry_index":13676,"location":[5.357581,43.289335]},{"entry":[false,true,false,false],"in":3,"bearings":[122,173,303,350],"duration":0.906,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":2.945,"geometry_index":13677,"location":[5.357602,43.289249]},{"entry":[true,false],"in":1,"bearings":[173,353],"duration":12.238,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":13.852,"geometry_index":13678,"location":[5.35761,43.289202]},{"entry":[true,false,false],"in":2,"bearings":[173,265,353],"duration":1.988,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":3.078,"geometry_index":13679,"location":[5.357716,43.288599]},{"entry":[false,true,false,false],"in":3,"bearings":[82,173,260,353],"duration":2.348,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":4.457,"geometry_index":13680,"location":[5.357733,43.288502]},{"entry":[true,true,false,false],"in":3,"bearings":[77,166,258,353],"duration":2.281,"turn_weight":5.5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":7.863,"geometry_index":13681,"location":[5.357753,43.288389]},{"entry":[true,false,false],"in":2,"bearings":[165,267,346],"duration":12.844,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":14.465,"geometry_index":13682,"location":[5.357784,43.288301]},{"entry":[false,true,false],"in":2,"bearings":[72,166,345],"duration":8.105,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.504,"geometry_index":13683,"location":[5.357962,43.287803]},{"entry":[true,true,true,false],"in":3,"bearings":[75,166,239,346],"duration":10.086,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":12.586,"geometry_index":13684,"location":[5.358067,43.287489]},{"entry":[false,true,false],"in":2,"bearings":[63,166,346],"duration":8.285,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.695,"geometry_index":13685,"location":[5.358235,43.286998]},{"entry":[true,true,false],"in":2,"bearings":[166,255,346],"duration":2.281,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":3.387,"geometry_index":13686,"location":[5.358376,43.286594]},{"entry":[false,true,false],"in":2,"bearings":[68,164,346],"duration":25.41,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":27.66,"geometry_index":13687,"location":[5.358411,43.28649]},{"entry":[false,false,true],"in":0,"bearings":[15,56,196],"duration":8.914,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"weight":10.352,"geometry_index":13690,"location":[5.357891,43.285464]},{"entry":[false,true,false],"in":0,"bearings":[13,168,275],"duration":10.352,"turn_weight":1.5,"turn_duration":0.122,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":12.242,"geometry_index":13692,"location":[5.357737,43.285054]},{"bearings":[115,172,294,347],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.01,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13696,"location":[5.357914,43.284592]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue du Vallon des Auffes"}],"type":"turn","modifier":"left","text":"Rue du Vallon des Auffes"},"distanceAlongGeometry":850.767},{"sub":{"components":[{"type":"text","text":"Rue d'Endoume"}],"type":"turn","modifier":"right","text":"Rue d'Endoume"},"primary":{"components":[{"type":"text","text":"Rue du Vallon des Auffes"}],"type":"turn","modifier":"left","text":"Rue du Vallon des Auffes"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rue Charras.","modifier":"left","bearing_after":173,"bearing_before":263,"location":[5.357169,43.291878]},"speedLimitSign":"vienna","name":"Rue Charras","weight_typical":220.055,"duration_typical":175.758,"duration":175.758,"distance":850.767,"driving_side":"right","weight":220.055,"mode":"driving","geometry":"kmiqqAaf~eItCYfZoCtCYzD]dX}BnCUlZmDpCSrh@iEvEa@`AEhCMjDi@|AOtd@sE`Ea@`Fg@nD}@b^cJrRqEt]oIfXyGnEeApRsFxYx`@vPhEvUdHzALhD]dLmEjBu@~E_AvBU"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Rue d'Endoume. Then, in 300 feet, Turn left onto Rue du Docteur Frédéric Granier.","announcement":"Turn right onto Rue d'Endoume. Then, in 300 feet, Turn left onto Rue du Docteur Frédéric Granier.","distanceAlongGeometry":34.963}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[113,291,352],"duration":2.387,"turn_weight":10,"turn_duration":1.407,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":11.031,"geometry_index":13697,"location":[5.357925,43.284532]},{"entry":[false,true,false,false],"in":3,"bearings":[28,122,206,293],"duration":3.941,"turn_weight":2,"turn_duration":0.013,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":6.125,"geometry_index":13698,"location":[5.357963,43.28452]},{"entry":[true,true,false],"in":2,"bearings":[150,237,302],"duration":4.363,"turn_weight":1.5,"turn_duration":0.045,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":6.035,"geometry_index":13700,"location":[5.358086,43.284465]},{"bearings":[63,151,244,330],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13701,"location":[5.358161,43.28437]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Rue du Docteur Frédéric Granier"}],"type":"turn","modifier":"left","text":"Rue du Docteur Frédéric Granier"},"primary":{"components":[{"type":"text","text":"Rue d'Endoume"}],"type":"turn","modifier":"right","text":"Rue d'Endoume"},"distanceAlongGeometry":34.963}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn left onto Rue du Vallon des Auffes.","modifier":"left","bearing_after":113,"bearing_before":172,"location":[5.357925,43.284532]},"speedLimitSign":"vienna","name":"Rue du Vallon des Auffes","weight_typical":27.836,"duration_typical":13.219,"duration":13.219,"distance":34.963,"driving_side":"right","weight":27.836,"mode":"driving","geometry":"gb{pqAiu_fIVkAr@oDx@eA|DuCrByA"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Rue du Docteur Frédéric Granier.","announcement":"Turn left onto Rue du Docteur Frédéric Granier.","distanceAlongGeometry":60}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[61,239,331],"duration":7.309,"turn_weight":7,"turn_duration":1.908,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":12.672,"geometry_index":13702,"location":[5.358206,43.284312]},{"bearings":[58,166,241],"entry":[false,true,true],"in":0,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"geometry_index":13705,"location":[5.357885,43.284171]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue du Docteur Frédéric Granier"}],"type":"turn","modifier":"left","text":"Rue du Docteur Frédéric Granier"},"distanceAlongGeometry":83.862}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Rue d'Endoume.","modifier":"right","bearing_after":239,"bearing_before":151,"location":[5.358206,43.284312]},"speedLimitSign":"vienna","name":"Rue d'Endoume","weight_typical":21.82,"duration_typical":15.266,"duration":15.266,"distance":83.862,"driving_side":"right","weight":21.82,"mode":"driving","geometry":"otzpqA{f`fIxAtEvCpIf@xAvJv[h@`Bv@`C"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, Bear left onto Traverse Beaulieu.","announcement":"In 900 feet, Bear left onto Traverse Beaulieu.","distanceAlongGeometry":271.143},{"ssmlAnnouncement":"Bear left onto Traverse Beaulieu. Then, in 400 feet, Turn right onto Boulevard Bompard.","announcement":"Bear left onto Traverse Beaulieu. Then, in 400 feet, Turn right onto Boulevard Bompard.","distanceAlongGeometry":79.722}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[60,151,255],"duration":16.871,"turn_weight":10,"turn_duration":5.395,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":21.762,"geometry_index":13708,"location":[5.357311,43.283934]},{"entry":[true,true,false],"in":2,"bearings":[69,150,327],"duration":8.41,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.609,"geometry_index":13712,"location":[5.357631,43.283536]},{"entry":[true,true,false],"in":2,"bearings":[149,259,332],"duration":3.879,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":4.953,"geometry_index":13716,"location":[5.357875,43.283202]},{"entry":[false,true,false],"in":2,"bearings":[80,148,329],"duration":6.02,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":7.148,"geometry_index":13717,"location":[5.357969,43.283086]},{"entry":[true,true,false],"in":2,"bearings":[157,262,339],"duration":22.891,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":24.441,"geometry_index":13719,"location":[5.358106,43.282895]},{"entry":[true,true,false],"in":2,"bearings":[160,284,340],"duration":3.406,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":4.559,"geometry_index":13727,"location":[5.358707,43.282035]},{"bearings":[86,163,340],"entry":[true,true,false],"in":2,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":13728,"location":[5.358773,43.281901]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"right","text":"Boulevard Bompard"},"primary":{"components":[{"type":"text","text":"Traverse Beaulieu"}],"type":"turn","modifier":"slight left","text":"Traverse Beaulieu"},"distanceAlongGeometry":282.809}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rue du Docteur Frédéric Granier.","modifier":"left","bearing_after":151,"bearing_before":240,"location":[5.357311,43.283934]},"speedLimitSign":"vienna","name":"Rue du Docteur Frédéric Granier","weight_typical":79.613,"duration_typical":67.336,"duration":67.336,"distance":282.809,"driving_side":"right","weight":79.613,"mode":"driving","geometry":"{|ypqA}n~eIbCsBzBkAtCiBdKuI`CsBtGqDfEyCz@g@fF{D|@eB~HkDlDiBxCkArC{BzDsDbEuDvBuBjIwEvKgEjGcCnJuC`A}@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Boulevard Bompard.","announcement":"Turn right onto Boulevard Bompard.","distanceAlongGeometry":58.333}],"intersections":[{"entry":[true,true,true,false],"in":3,"bearings":[123,215,262,338],"duration":16.48,"turn_weight":6.5,"turn_duration":0.28,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":23.512,"geometry_index":13730,"location":[5.358879,43.281684]},{"bearings":[119,222,300],"entry":[true,true,false],"in":2,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"geometry_index":13733,"location":[5.359619,43.281329]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"right","text":"Boulevard Bompard"},"distanceAlongGeometry":118.036}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left onto Traverse Beaulieu.","modifier":"slight left","bearing_after":123,"bearing_before":158,"location":[5.358879,43.281684]},"speedLimitSign":"vienna","name":"Traverse Beaulieu","weight_typical":34.172,"duration_typical":25.688,"duration":25.688,"distance":118.036,"driving_side":"right","weight":34.172,"mode":"driving","geometry":"gpupqA}pafIdN{^`AuA|CuJ~CgKdBoHNgDMuD"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Turn right onto Rue Berle.","announcement":"In 600 feet, Turn right onto Rue Berle.","distanceAlongGeometry":173.067},{"ssmlAnnouncement":"Turn right onto Rue Berle. Then Your destination will be on the right.","announcement":"Turn right onto Rue Berle. Then Your destination will be on the right.","distanceAlongGeometry":76.806}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[0,142,272],"duration":2.25,"turn_weight":7,"turn_duration":0.194,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":9.16,"geometry_index":13737,"location":[5.360142,43.281197]},{"entry":[true,true,false],"in":2,"bearings":[132,221,322],"duration":4.719,"turn_weight":1,"turn_duration":0.038,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":5.914,"geometry_index":13739,"location":[5.360231,43.281113]},{"entry":[true,true,false],"in":2,"bearings":[146,221,312],"duration":18.863,"turn_weight":1.5,"turn_duration":0.017,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":0,"weight":21.289,"geometry_index":13740,"location":[5.360467,43.280959]},{"entry":[false,true,false],"in":2,"bearings":[65,201,353],"duration":6.164,"turn_weight":1.5,"turn_duration":0.045,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":1,"weight":7.926,"geometry_index":13747,"location":[5.360898,43.280238]},{"entry":[false,true,true],"in":0,"bearings":[21,110,206],"duration":9.91,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"weight":11.395,"geometry_index":13748,"location":[5.360823,43.280093]},{"bearings":[26,145,212],"entry":[false,false,true],"in":0,"turn_weight":1,"turn_duration":0.012,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"geometry_index":13749,"location":[5.360643,43.279828]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue Berle"}],"type":"turn","modifier":"right","text":"Rue Berle"},"distanceAlongGeometry":184.734}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Boulevard Bompard.","modifier":"right","bearing_after":142,"bearing_before":92,"location":[5.360142,43.281197]},"speedLimitSign":"vienna","name":"Boulevard Bompard","weight_typical":59.203,"duration_typical":44.316,"duration":44.316,"distance":184.734,"driving_side":"right","weight":59.203,"mode":"driving","geometry":"yqtpqA{_dfInAw@vAyBrHwMtA{AbIsG`BgAhI_EnEeCzEwAnDG`HtCpOfJzBjB"},{"voiceInstructions":[{"ssmlAnnouncement":"Your destination is on the right.","announcement":"Your destination is on the right.","distanceAlongGeometry":48.611}],"intersections":[{"bearings":[32,203,313],"entry":[false,true,true],"in":0,"turn_weight":7,"turn_duration":3.373,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":10,"out":2,"geometry_index":13750,"location":[5.360589,43.279766]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Your destination will be on the right"}],"type":"arrive","modifier":"right","text":"Your destination will be on the right"},"distanceAlongGeometry":63.192},{"primary":{"components":[{"type":"text","text":"Your destination is on the right"}],"type":"arrive","modifier":"right","text":"Your destination is on the right"},"distanceAlongGeometry":48.611}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Rue Berle.","modifier":"right","bearing_after":313,"bearing_before":212,"location":[5.360589,43.279766]},"speedLimitSign":"vienna","name":"Rue Berle","weight_typical":20.27,"duration_typical":16.012,"duration":16.012,"distance":63.192,"driving_side":"right","weight":20.27,"mode":"driving","geometry":"kxqpqAy{dfIkAtBkPtWEjATp@zAlB"},{"voiceInstructions":[],"intersections":[{"bearings":[70],"entry":[true],"in":0,"admin_index":10,"geometry_index":13755,"location":[5.360017,43.280028]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"Your destination is on the right.","modifier":"right","bearing_after":0,"bearing_before":250,"location":[5.360017,43.280028]},"speedLimitSign":"vienna","name":"Rue Berle","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"whrpqAaxcfI??"}],"weight":47892.359,"duration":44130.906,"duration_typical":44083.852,"weight_typical":42990.957,"annotation":{"maxspeed":[{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,9,9,9,9,9,9,9,1,1,1,1,1,1,1,null,4,4,0,0,0,0,0,0,0,0,0,null,null,1,1,1,1,1,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,17,17,17,null,null,0,0,0,0,0,0,0,1,1,1,1,1,null,null,null,null,14,14,14,14,14,14,14,14,14,12,null,14,null,null,4,14,14,null,null,null,null,null,null,9,null,17,null,27,0,0,0,0,0,0,0,0,8,8,8,0,0,null,null,null,1,1,1,1,1,1,1,0,0,0,0,30,30,null,null,null,null,null,null,null,null,null,null,null,null,14,25,25,25,25,25,6,6,6,3,4,4,4,null,6,17,17,17,27,27,27,43,77,77,77,77,8,8,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,8,8,null,8,8,8,8,8,null,null,null,null,null,null,null,null,3,3,3,3,3,null,null,null,0,0,0,0,0,0,0,0,0,0,33,33,20,20,30,35,27,33,33,null,null,null,null,null,null,null,null,null,null,null,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,0,0,11,11,20,20,20,20,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,6,6,6,14,6,14,14,14,14,14,14,14,14,20,20,20,24,24,24,24,22,22,null,25,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,14,14,14,14,14,17,14,14,14,17,17,17,17,17,17,17,17,20,24,24,24,24,24,24,24,24,24,24,24,null,null,16,16,25,30,30,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,22,14,14,14,14,14,14,14,14,14,14,14,14,24,24,24,24,56,56,50,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,11,11,11,11,11,11,11,11,11,11,11,11,11,22,11,11,11,11,11,11,11,11,11,11,17,25,25,25,25,25,25,25,25,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,25,25,25,6,11,11,11,11,11,11,11,11,11,11,14,14,14,14,14,14,14,null,11,11,11,11,11,14,14,14,14,14,14,14,35,35,35,35,35,35,35,35,35,35,30,30,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,14,14,14,14,22,25,25,17,17,17,17,17,17,17,17,17,20,17,17,17,14,14,14,14,14,22,0,6,6,11,11,6,6,6,6,6,6,6,6,6,6,0,6,17,17,6,6,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,0,null,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,14,14,11,11,11,11,11,null,11,null,11,11,11,11,11,11,11,11,11,22,17,17,17,17,17,17,17,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,24,24,24,24,24,24,33,25,25,25,38,33,33,33,33,33,33,33,33,25,null,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,37,37,37,20,20,20,30,30,38,38,38,38,38,38,38,38,38,38,38,38,38,38,40,40,40,40,40,40,40,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,40,40,45,40,40,40,40,40,40,40,40,40,46,46,20,54,54,54,53,53,51,51,51,51,51,37,25,35,35,35,35,35,35,38,22,38,38,51,51,51,51,51,51,51,51,51,51,72,16,50,61,61,61,61,61,61,61,61,61,61,61,61,61,61,61,72,72,41,41,19,19,19,19,19,19,19,19,19,19,48,48,48,48,48,48,48,35,35,35,35,35,19,19,67,67,67,67,67,67,67,12,19,19,19,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,70,70,56,56,56,56,56,16,19,19,19,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,12,59,59,59,59,59,58,56,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,32,32,32,32,32,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,38,40,41,38,41,41,41,41,41,41,41,41,40,40,40,40,40,40,40,40,40,40,40,41,41,41,41,41,41,38,38,38,38,35,33,38,38,29,38,38,38,38,38,38,40,40,40,40,40,38,38,38,38,38,38,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,75,75,82,82,82,82,82,82,82,82,82,82,82,82,58,58,58,58,58,58,58,58,58,58,40,40,40,40,40,43,43,43,43,43,41,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,null,46,46,70,70,35,32,30,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,24,24,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,24,24,24,24,20,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,11,11,38,38,38,38,35,32,32,32,32,32,32,32,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,33,33,33,33,20,20,6,0,0,0,0,17,17,17,17,17,17,17,17,17,17,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,25,46,53,53,53,53,53,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,46,46,46,85,85,85,85,85,85,85,85,85,85,85,85,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,83,70,70,70,70,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,41,41,41,41,41,41,41,41,41,41,30,30,30,30,30,30,30,30,30,38,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,37,37,37,37,37,37,37,41,41,41,41,41,41,41,41,37,37,37,37,41,41,41,41,37,37,37,37,37,37,37,37,37,41,41,41,41,41,41,41,41,41,41,43,43,43,43,43,43,43,41,41,41,41,41,41,41,41,41,41,41,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,59,62,62,62,62,62,null,0,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,20,20,20,20,20,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,20,20,6,59,59,59,0,12,12,12,6,6,6,6,null,12,null,12,6,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,11,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,null,41,41,41,41,41,41,41,41,41,46,46,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,33,33,33,33,33,33,33,33,33,33,33,30,30,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,58,58,58,58,58,30,30,30,30,0,50,50,45,45,45,45,45,45,45,45,45,45,45,45,45,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,43,43,43,50,50,50,50,40,40,40,40,43,46,46,46,46,16,16,16,16,16,0,8,0,0,0,0,0,8,12,12,12,12,12,12,12,12,null,46,46,46,46,46,46,46,46,46,46,46,46,46,33,null,41,41,43,46,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,54,54,54,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,null,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,20,20,20,43,43,43,43,43,43,43,43,43,43,43,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,51,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,43,43,43,43,43,43,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,53,53,53,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,35,35,46,46,46,46,46,46,46,58,70,70,38,35,35,35,35,50,50,50,50,50,50,50,50,38,38,38,38,38,38,38,38,22,22,22,22,22,16,16,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,50,50,50,50,50,50,50,50,50,50,0,0,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,null,0,null,0,0,17,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,6,6,6,51,6,6,0,30,30,30,30,38,38,38,38,38,46,46,46,46,46,46,46,46,46,46,46,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,51,51,51,51,50,50,50,50,50,41,41,41,22,22,22,null,null,null,null,null,null,null,null,30,30,30,30,30,30,30,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,0,0,0,0,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,24,24,24,24,24,24,20,20,20,20,20,20,20,20,20,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,19,19,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,22,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,null,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,null,24,24,24,24,0,0,0,0,0,0,0,0,0,0,37,37,37,37,37,37,37,37,37,37,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,6,6,6,6,6,6,6,6,6,6,6,6,30,30,30,30,30,30,30,30,30,45,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,22,22,22,22,22,0,0,0,0,0,0,0,12,12,12,19,32,38,45,41,37,29,29,29,29,29,9,9,9,0,0,4,4,4,17,17,17,17,51,51,51,51,51,16,16,16,14,14,14,17,17,17,17,6,6,6,6,43,43,43,43,43,43,43,null,null,null,null,null,null,null,12,12,12,12,12,20,20,20,20,32,32,32,30,30,30,30,30,30,30,30,12,12,null,null,4,4,4,3,3,3,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,27,27,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,35,null,null,null,null,null,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,null,null,null,9,null,null,null,null,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,null,null,null,null,null,null,24,24,24,24,null,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,37,37,37,37,37,37,37,37,0,30,30,30,30,null,27,27,27,27,27,27,0,0,0,0,0,0,0,38,38,38,38,33,33,33,33,33,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,30,30,30,30,30,30,30,20,20,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,43,43,43,40,40,40,40,40,40,40,40,35,37,37,37,37,37,37,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,null,22,22,22,22,22,22,22,22,22,22,22,22,30,30,35,30,30,30,30,30,30,27,27,27,27,30,30,30,30,30,30,32,32,32,32,32,32,32,32,32,27,29,29,29,29,29,33,33,33,33,33,33,33,33,32,32,32,32,32,32,32,32,32,37,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,19,19,19,19,19,19,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,30,30,30,30,30,30,30,30,30,30,30,30,30,30,22,22,22,22,22,22,22,22,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,null,0,19,19,null,0,0,null,20,20,20,0,8,8,8,null,43,43,43,43,43,43,35,38,38,22,22,22,22,22,22,22,22,25,25,25,25,25,25,25,25,22,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,33,30,30,30,30,30,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,41,41,41,41,41,41,41,41,43,43,43,48,48,16,16,16,16,16,16,0,12,12,12,12,12,32,32,32,32,32,32,32,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,37,37,37,37,37,37,37,37,37,38,38,38,38,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,20,20,20,20,20,20,20,11,11,11,11,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,11,11,11,11,11,11,11,11,11,11,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,30,30,30,30,30,30,30,30,30,62,87,87,87,87,87,0,85,85,85,85,85,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,91,0,0,null,67,67,67,67,43,43,43,43,43,43,43,43,null,24,24,24,24,24,24,24,24,24,24,33,33,33,33,33,33,33,35,35,35,35,35,35,35,35,35,27,27,25,25,25,27,27,27,27,35,35,35,35,30,30,30,30,30,30,30,30,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,null,null,null,null,25,25,25,25,25,25,25,24,24,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,0,0,12,12,25,25,25,25,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,62,62,null,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,58,58,58,58,58,58,58,null,null,46,46,46,46,46,null,22,22,22,22,22,22,22,22,22,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,46,45,45,45,46,45,43,45,null,53,53,53,53,53,53,53,53,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,null,null,0,0,0,0,0,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,null,33,33,33,33,33,33,33,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,null,25,25,25,25,25,25,25,25,25,25,25,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,37,37,37,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,37,37,37,37,37,37,40,40,40,40,40,40,40,40,38,38,38,38,38,41,41,41,41,41,41,41,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,null,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,null,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,30,30,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,null,38,37,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,22,30,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,6,6,6,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,43,43,43,43,43,43,43,43,43,43,43,43,43,46,46,46,46,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,17,17,17,17,0,0,0,0,0,0,0,0,19,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,null,6,6,6,6,6,6,6,6,6,6,6,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,null,64,70,70,70,70,70,70,70,83,83,83,83,83,80,80,80,74,74,74,62,62,62,62,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,37,37,37,37,37,37,37,37,37,56,56,56,56,56,56,null,null,null,30,30,30,30,30,30,30,14,1,1,1,1,1,1,0,0,0,0,0,9,9,9,9,9,9,9,9,9,9,9,9,41,41,41,41,41,41,41,51,0,0,0,1,1,0,1,1,1,1,1,null,3,3,1,1,1,1,1,1,19,19,19,19,19,19,19,19,19,19,19,14,14,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,6,30,30,30,30,30,30,30,30,30,30,30,30,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,8,14,14,14,14,14,14,14,14,14,14,14,14,14,14,20,20,20,20,20,20,20,20,20,20,43,43,43,43,43,43,43,43,43,35,35,35,35,35,35,35,35,12,12,12,12,12,12,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,20,20,20,20,20,20,20,20,20,20,20,20,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,45,45,45,45,41,41,41,41,32,32,32,32,32,35,35,35,35,35,35,33,35,35,35,35,35,35,35,35,35,35,35,35,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,17,17,17,17,17,17,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,41,41,41,41,41,41,41,41,41,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,35,35,35,35,35,32,32,32,32,32,32,32,27,27,33,33,33,33,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,30,30,30,30,30,4,4,4,4,38,38,38,38,38,45,45,45,45,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,null,null,40,40,40,40,0,0,0,0,0,0,0,43,43,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,20,20,20,20,20,20,20,20,50,50,50,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,40,40,40,40,40,33,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,46,46,46,46,46,46,46,46,46,46,43,43,43,43,43,45,45,45,43,43,43,43,43,43,27,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,43,43,43,43,43,43,43,43,43,43,null,null,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,56,56,56,56,56,56,56,56,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,20,27,27,27,27,27,27,27,27,27,27,27,27,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,22,22,22,22,22,22,22,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,null,25,25,25,25,25,25,25,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,27,27,27,27,22,22,22,22,22,22,22,22,22,25,25,25,25,25,null,32,35,35,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,37,35,35,35,35,35,35,35,35,35,35,35,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,67,67,67,67,67,67,67,67,67,67,67,67,67,67,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,35,35,35,35,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,22,22,22,22,22,22,22,22,22,22,22,22,35,19,19,19,19,19,19,19,19,19,19,19,19,19,12,29,29,29,29,29,29,29,29,29,29,29,29,29,19,19,19,19,19,19,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,6,0,0,0,null,32,32,32,32,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,48,48,48,48,48,48,48,48,48,48,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,14,14,14,14,14,14,14,14,14,14,0,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,22,null,14,14,14,11,38,38,38,38,38,38,38,56,56,56,56,56,56,37,37,37,37,37,37,37,37,null,11,11,null,11,11,11,11,11,11,11,11,30,30,25,25,25,25,25,25,25,25,25,25,25,25,25,null,38,38,38,38,38,38,22,22,22,22,30,20,20,20,20,20,20,20,20,20,20,20,20,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,19,19,19,19,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,38,38,38,38,38,38,38,25,25,25,25,25,25,25,25,25,25,null,6,0,0,0,0,null,19,19,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,25,25,25,25,25,25,25,25,25,25,25,null,25,20,20,20,20,20,27,27,27,27,27,27,38,38,50,50,50,50,50,50,50,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,11,11,11,11,11,11,11,35,35,35,35,35,35,35,35,35,51,46,46,46,46,46,46,46,46,11,20,20,20,35,41,41,41,41,41,41,41,41,41,41,41,41,56,null,0,0,null,null,27,27,27,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,27,27,27,27,27,27,27,38,38,38,38,38,38,33,null,53,53,53,43,43,43,43,43,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,20,20,20,20,27,27,27,27,27,8,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,16,16,16,16,16,24,24,24,24,24,24,24,24,24,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,20,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,8,8,0,0,null,null,null,null,null,null,0,0,0,null,null,8,8,8,8,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,25,25,25,20,20,20,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,35,35,35,35,35,35,35,35,35,35,35,null,null,null,null,null,32,32,32,32,32,32,41,41,41,40,40,40,40,35,35,35,35,35,35,35,35,35,35,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,38,38,37,37,37,37,37,37,37,37,37,37,77,35,0,0,0,0,20,3,3,3,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,20,20,20,20,9,9,null,null,null,0,12,12,12,12,6,6,6,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"speed":[8.3,8.3,2.8,1.9,1.9,2.2,2.2,8.8,9,8.5,8.9,8.9,9.6,8.3,8.3,8.3,8.4,8.4,3,3,1.7,1.8,1.8,2.1,8.2,8.4,8.3,8.3,8.3,8.3,8.3,8.3,8.3,8.3,8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,14,14,14,14,14,14,14,7.5,9.6,9.6,13.4,13.6,13.6,13.6,13.6,13.6,13.6,13.7,14.5,9.4,10.4,12,11.7,11.7,11.7,11.7,11.7,4.4,4.4,4.4,4.4,4.5,4.5,3,3,3.3,4.8,4.8,4.4,4.4,4.4,4.4,4.4,4.2,4.1,4.1,4.2,13.8,13.8,13.9,13.9,13,14.1,8,8,7.1,4.9,5,4.2,4.2,4.2,4.3,4,7.8,7.8,7.5,7.5,7.5,7.5,7.5,11.9,11.9,5.3,5.3,8.3,8.3,8.3,8.3,8.7,8.4,8.4,8.4,8.4,9.8,10.7,8.6,10.3,11.6,11.5,9.1,9.1,12.1,12.3,12.3,11.9,11.3,12.9,11.4,12.2,9.2,12.5,5.8,4.7,4.7,4.7,4.6,4.6,4.6,4.5,4.5,7.2,6.2,6.7,2.7,2.7,5.1,4.5,7.9,8.7,9.4,8.6,8.6,8.6,7.7,8.6,8.2,8.4,9.1,8.8,7.8,7.8,10.1,10.1,9.4,9.4,5.8,5.8,5.6,5.7,12.4,12.7,12.8,12.8,10.5,6.2,6.1,6.1,6.1,6,12.6,12,12.2,13.3,12.3,12.3,12.3,13.3,11.9,9.2,9.2,9.2,7,6.7,7.2,4.8,2.2,2.2,2.3,2.3,10.8,10.8,10,3.6,3.6,3.6,3.7,3.7,3.6,3.5,10,10,10,10,10,10,10,10,13.6,13.6,16.4,18,19.2,19.2,20.2,20.2,20.2,20.2,20.2,20.2,20.6,20.6,19.5,19.5,19.5,19.5,23.3,23.2,23.6,23.3,22.9,22.2,22.2,22.2,22.1,22,9.4,9.4,9.5,10,10,10,10,10,13.9,13.9,13.9,13.9,13.9,17.2,17.2,17.2,18.4,18.4,18.4,18.4,18.3,18.3,18.3,18.2,18.2,18.2,25.6,24.9,26.6,26.6,25.8,24.7,25.3,25.5,25.6,24.7,24.7,24.1,23.5,24.1,24.1,24.1,24.1,24,24,24,23.2,23.2,23,21.7,21.7,21.2,21.2,21.2,21.2,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.9,26.9,26.9,26.9,26.9,26.9,27.8,27.6,26.6,26.6,26.7,26.6,26.7,26.7,26.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,27.2,27.2,27.2,26.7,27.2,27.2,27.8,27,27,27,27,27,27,27,27,27,26.7,26.7,26.7,26.7,27.7,26.7,21.2,26.5,24.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.9,26.9,26.9,26.9,26.9,27,26.9,26.9,26.9,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.7,26.7,27.2,26.4,27,27,26.6,26.9,26.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,22.7,23.2,25,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,27.2,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.7,26.7,26.7,27.3,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,27,27,27,27.4,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,27.8,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.5,27.2,27.5,26.3,27.5,27.5,27.5,27.6,27.6,27.5,27.5,27.5,27.6,27.6,27.4,27.4,27.8,27.8,27.8,27.8,27.8,27.4,27.8,27.5,27.5,27.8,27.8,27.8,27.5,27.5,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.9,27.7,27.5,27.5,27.6,27.7,27.8,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.6,34.9,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.3,27.3,27.8,27.8,27.9,27.4,27.4,40.1,27.8,40.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.8,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,39.5,27.5,27.5,27.7,31.2,27.1,27.5,26.6,26,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.6,38.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.6,27.5,27.5,27.5,27.5,27.5,27.5,35,27.5,27.5,27.5,27.5,27.5,26.7,27.2,27.2,27,22.2,27.9,28.7,27.3,26.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,26.5,27,27,27,27,27,27,27,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25,25,25.1,28.1,24.2,24.3,22.7,21.6,21.6,21.7,21.7,21.4,21.4,21.3,20.8,26,27.2,27.3,17.6,27.3,27.3,27.3,22.2,22.1,22.2,21.9,22.1,22.1,22.2,26.7,26.7,26.9,27.3,27.2,27.2,27.2,27.2,26.8,27,27.2,27.2,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.3,27.2,26.9,26.7,27.8,27.3,27.2,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.5,27.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,28.3,28,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.5,28,28,28,28.1,28.1,28.1,28.1,28.1,27.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.8,28.1,28.1,28.1,28,28,27.9,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,25,24.9,24.9,28.1,28.1,28.4,27.8,27.8,27.8,27.8,27.8,28,27.3,28.2,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,27.5,27.5,27,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.7,28.1,27.3,28.7,28.1,28.1,27.7,27.7,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.5,27.8,27.8,27.8,27.8,27.8,27.1,27.3,27.3,27.3,27.3,27.4,27.2,27.8,27.8,28.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,13.7,13.7,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,23.3,23.3,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,26.7,26.7,26.7,26.7,26.7,25.8,25.8,25.9,25.8,25.8,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,14.3,17.2,27.8,27.8,27.8,27.8,15,13.1,13.8,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,13.2,13.2,13.4,13.4,13.4,13.4,13.4,13.4,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.3,28.3,28.3,28.3,28.3,21.1,21.3,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.9,28.9,28.9,28.9,28.9,28.1,28.1,28.1,28.1,28.1,28.1,27.9,28.1,28,28,28,28,28,28,28,28,28,28,28,28,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.4,24.5,24.5,24.5,24.5,25.9,25.8,25.8,25.8,25.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,33.4,23.1,23.1,23.1,23.1,23.1,23.1,18.9,18.9,18.8,18.9,21.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,23.1,23.1,23.1,23.4,23.6,23.6,22.8,23.1,23.1,23.1,23.1,24.2,24.2,24.2,24.2,24.2,24,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.1,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.8,23.9,23.9,23.8,20.3,18.9,18.1,18,18,18,17.7,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,13.1,13.1,13.1,13.1,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.9,11.4,11.2,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,10.3,10.3,10.3,10.3,11.4,11.4,11.4,11.4,12.8,12.8,12.8,12.8,12.4,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,13,13,13,13,12.9,13.1,13.1,13.1,13.1,13,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.3,15.3,15.3,15.3,15.3,15.3,15.3,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.4,22.4,22.4,23,24.1,24.1,24.1,24.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,29.7,29.5,30,30,30,30,29.9,29.8,29.3,29.8,29.8,29.6,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,29.5,29.4,29.4,29.1,29.4,29.4,29.7,29.7,30,30,30,30,30,30,30,29.9,30,33.3,33.3,33.3,33.3,33.3,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.4,29.3,29.8,29.6,29.6,29.6,29.8,29.7,29.5,29.5,30.1,29.8,29.8,29.8,29.5,29.5,29.8,30,29.8,29.6,29.7,30,30,30,30,30,30,30.1,30,30,30,30,30,30,30,30.1,29.8,30.1,29.7,30,30,31,29.8,30,30,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,30,30,30,30,30,30,30,30,30,30,30,29.4,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.1,29.1,29.2,29.2,29.2,29.2,29.4,29.2,29.2,29.3,27.7,27.7,22,22.1,22.2,22.2,22.2,22.2,22.2,22.1,22.4,22.2,22.2,22.2,22.2,22.2,18.9,18.9,18.9,18.7,18.7,18.9,18.8,18.9,18.9,18.9,18.9,18.9,18.9,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.1,13.1,13.1,13.1,13.1,11.1,11.1,11.1,11.1,10.1,22.5,22.5,23.4,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.5,23.3,23.3,21.1,21.1,21.1,18.6,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,16.5,17.3,17.3,17.3,18.7,18.7,18.6,18.6,20.5,20.5,20.3,19.8,19.4,20.4,20.3,20.3,20.3,26.9,26.9,26.9,26.9,26.9,27.1,28.2,27.8,27.8,27.8,27.8,27.8,26.5,28,28,28,28.1,28.1,28.1,28.1,28.1,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,23.8,25.5,21.9,21.9,21.5,21.1,10.6,10.6,10.6,10.6,10.6,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.5,11.4,12.7,12.7,12.7,11.9,11.9,11.9,11.9,11.9,25,25,25,25,25,25,24.9,24.9,19.4,19.5,22.1,21.9,22,22,22,22,22,21.7,22.1,13.1,13.3,13.3,13.3,10.3,10.3,10.3,10.3,10.3,10.3,10.3,10.3,10.3,10.3,10.3,10.3,9.6,9.7,9.7,9.7,9.7,9.7,23.9,23.9,23.9,23.9,23.9,24.3,23.9,23.9,23.9,23.8,24,24,24,29.6,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,26.4,26.4,26.4,25.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.9,29,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,32,28.9,28.9,28.9,29,19.4,19.4,19.4,19.4,19.4,29.7,29.4,29.4,33.4,33.4,33.4,33.4,33.4,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.2,30.2,30.3,30.3,30.3,30.2,30.1,30.6,30.6,30.8,30.6,30.3,30.6,30.6,30,30,30,30.2,30.2,30.1,30.1,30.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,30.1,30,30,30.2,30.2,30.7,30.6,30.6,30.7,30.6,30.6,30.6,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.1,31,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,31.1,31.1,31.2,30.9,30.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,30.9,28.4,28.3,28.3,28.3,28.3,28.3,28.3,21.4,21.4,21.4,21.4,21.4,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,21.1,21.1,21.1,21.1,20.3,20.3,20.3,20.3,20.4,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,19.9,20.2,19.3,20.7,21.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,30,30,30,30,30,30,29.4,29.3,29.6,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.9,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,26.9,26.9,26.9,26.7,26.7,26.6,26.6,26.6,26.6,26.6,28.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.2,30.2,30.2,30.3,30.3,30.3,30,30,30,30,30,30,30,30,30,30,30,30.1,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.6,30.8,30.5,31.9,30.5,30.5,30.5,30.5,30.5,31.3,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.9,29.7,29.7,29.7,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.1,30,30,30,30,30,30,30,30,30,30,30,30,29.6,30,30,30,29.9,30.1,30.1,30.1,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,30,30,30,29.7,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,26.1,26.1,26.1,26.1,26.1,26.1,22.3,22.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,21.6,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.1,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,28.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,22.5,22.5,22.5,22.5,22.5,25.3,25.7,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.1,30,30,28,28,28.1,29.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,29.7,29.7,29.4,29.4,29.4,29.3,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,33.3,33.5,33.3,25,25,25,25,25,19.5,19.5,19.5,19.5,19.5,19.5,33.2,19.5,48,30.9,30.9,30.9,31.4,30.9,30.7,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,33.4,19.5,19.5,19.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,29.7,29.7,29.7,29.7,29.7,29.7,29.8,30,30,29.8,29.7,29.7,29.7,29.7,29.7,29.7,33.3,33.3,33.3,33.3,33.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,20.4,24.9,24.9,24.9,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30,30,30,30,30,30,30,30,30,30,30,30,30,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,19.4,18.9,18.9,18.9,18.9,15.5,15.5,15.6,15.6,15.6,15.6,15.6,20.7,20.9,20.9,21.9,22.8,21.7,20.5,17.6,13,10,10,10,10,10,8.1,8.1,8.1,9.1,9.1,8.8,8.8,8.8,13.9,13.9,13.9,13.6,18.9,18.8,18.8,18.8,18.8,7.3,7.3,7.3,7.7,7.7,7.7,9.2,9.2,9.2,9.2,13.4,13.4,13.4,13.4,19,18.7,18.8,18.8,19,18.9,18.9,23.2,23.2,23.1,23.1,23.1,23.1,23.1,22.2,22.2,22.2,22.2,22.2,25,24.9,24.9,25,25,25,19.9,9.1,9.1,9.1,9.1,9.1,9.1,9.1,9.1,7.1,7.1,7.6,7.6,7.5,7.5,7.5,12.5,12.5,12.5,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24,26.1,26.1,25,25,25,25,25,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.1,26.1,26.1,26.1,26.1,26.9,26.9,27.3,26.8,28.1,28.1,28.1,28.1,25.5,26.1,25.8,25.9,25.9,25.5,24.4,24.9,24.9,24.9,24.2,23.9,23.9,23.9,23.9,24,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.5,36.5,19.5,19.5,19.5,19.5,18.3,18.3,18.3,18.4,18.4,18.4,18.4,18.4,18.4,18.4,18.1,18.1,18.1,18.1,18.1,17.7,17.5,17.5,17.5,17.5,17.8,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,18.9,20,20,20,20,20,20,23.9,23.9,23.9,23.9,23.9,23.8,23.8,23.8,23.8,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.5,23.3,23.6,23.6,23.6,23.6,23.6,23.6,24.5,24.5,24.5,24.5,24.5,25,25,25,25,25,24.2,24.2,23.9,23.9,22.3,22.8,23.1,23.1,23.1,23.1,23.1,21.9,21.9,21.7,21.7,21.6,21.9,21.5,21.5,21.5,21.5,20.1,20.1,18.8,18.8,18.8,18.7,18.3,18.3,18.3,18.3,18.3,18.3,17.8,17.9,17.9,17.2,17.1,17.1,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,19.5,19.4,19.4,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,21.7,21.7,21.7,21.7,21.6,21.6,21.6,21.6,21.9,23.4,22,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25,25,25,25,25.6,25,25,25,25,25,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.6,25.6,25.6,25.6,25.6,25,25,25,25,25,25,25,25,25,25,25,25,25,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26,25.3,26.1,26.1,26.1,26.1,25.5,26.1,26.1,26.1,26.2,26.2,26.2,25.6,25.6,25.6,25.6,25.6,25.6,25.6,26.1,26.1,26.1,26.1,25,25,25,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.2,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.1,27.7,27.7,27.7,27.7,27.7,27.4,27.4,27.4,27.9,27.4,27.4,27.4,27.5,28.5,27.6,27,27.5,27.5,27.5,27.5,27.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.6,27,27,27,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,24.1,21.3,21.3,21.3,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,12.8,14.2,16.1,16.1,17.6,17.6,17.5,20,20,20,20,19.7,20.1,20.1,18.7,19.7,19.7,19.7,19.7,19.7,19.7,18.9,18.9,18.9,18.9,18.9,18.9,18.9,20.3,20.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,26.5,26.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.3,27.3,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.5,27.8,27.8,27.8,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.7,26.7,26.7,26.7,26.7,26.7,27.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,27,27.2,27.2,26.7,26.7,27.2,27.2,27.2,27.2,27.2,27.4,27.3,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,24.6,24.7,25.5,25.8,25.8,25.8,25.8,25.5,30.5,30.5,30.5,30.5,30.7,28.3,28.3,28.3,28.3,28.3,28.3,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,28.1,28.1,28.1,28.1,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.1,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.9,23.9,23.9,23.9,23.9,23.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,30.6,30.6,30.6,30.6,25.8,25.8,25.8,25.8,24,24,24,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.4,22.6,22.6,22.6,22.6,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.4,23,23,23,23,23.7,23.8,24.1,23.9,23.4,23.9,23.9,23.4,24.2,24.2,24.2,24.7,24.3,24.3,24.7,24.4,23.6,23.6,23.6,23.6,23.6,23.6,23.1,23.8,23.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.2,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.4,26.4,26.6,26.6,26.6,26.6,26.6,26.6,27.6,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,30.5,30.5,30.5,30.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.9,28.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,26.6,26.6,26.6,26.5,26.5,26.7,26.7,26.7,26.7,25.3,26.6,26.6,26.7,26.7,26.7,27.7,28,28,28,28,28,28,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,31.8,30.5,30.5,30.5,30.5,30.5,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,27.8,27.8,27.6,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.2,24.2,24.2,24.2,24.3,24.3,24.1,24.1,24.1,24.1,24.1,23.6,23.6,23.6,24.2,24.2,24.2,24.2,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.8,23.8,23.8,23.8,23.8,24.3,24.1,24.1,24.1,24.2,24.2,24.2,24.2,24.2,24.2,24.4,24.2,24.2,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,24.5,24.5,24.2,24.2,24.2,24.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22,26,26,22,26.7,26.7,26.7,26.7,26.7,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,26.4,26.4,26.6,26.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.3,28.3,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.2,26.2,25.5,25.5,25.5,25.5,25.5,25.5,26,26.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.9,27,26.4,26.4,26.4,26.4,26.4,26.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,27.2,27.2,27.2,27.1,26.8,27,27,27,26.9,26.8,26.6,26,26.2,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.3,23.8,23.8,23.9,17,16.4,16.7,16.7,4.5,4.6,11.9,16.5,23.1,23.1,23.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,29.7,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,32.1,31.4,31.7,31.6,31.6,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.8,30.2,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,32.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.4,30.8,30.6,31.4,31.4,31.4,31.4,31.4,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,31.6,31.6,32.6,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.1,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.9,33,33,33,33,33,33,33,33,34.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,30.6,32.7,32.7,32.7,32.8,32.8,32.8,32.8,14.4,32.7,31.6,31.6,31.6,32.1,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,25.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.5,32.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.3,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,35.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,31.6,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.6,32.6,32.6,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32.2,32.2,32.2,32.2,32.2,32.2,31.3,31.3,31.3,34.6,31.4,31.4,31.4,31.4,28.5,32.2,32.2,32.2,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.3,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,31.7,31.7,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32.3,32.5,32.2,32.2,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.2,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.7,33.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.3,32.8,32.8,32.3,20.9,32.8,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.4,33.1,33.1,33.1,33.1,33.1,32.3,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,41.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,31.6,31.6,31.5,31.6,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36.1,36.1,36.1,36.1,36.1,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.6,32,32,36.2,36.2,36.2,36.1,36.1,30,30,30,30,30,30,30,30,36.4,30.3,30.3,30.7,30.4,31.1,30.2,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,36.1,36,36,36.1,36.1,30.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,31.9,31.9,31.9,31.9,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.9,36.1,36.1,36.1,36.1,36.1,36.1,25.1,25.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32,32,32,32,32,32,32,32,32,32,32,32,31.5,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.7,32.7,32.7,32.8,32.4,32.4,32.5,32.5,32.5,32.5,31.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,32.2,32.3,32.3,32.3,32.3,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,33.2,32.4,32.4,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.4,32.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.6,31.1,31.1,31.4,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.2,29.1,30.2,29.5,29.4,29.4,29.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.1,29.2,29.2,29.2,29.2,29.2,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.8,29.5,29.5,29.5,29.5,28.9,28.9,28.8,29.5,29.8,29.8,29.8,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,29.8,30.3,30.3,30.3,30.3,30.3,30,30,30.6,30.3,30.3,30.5,36.1,36.1,36.1,36.1,36.1,33,32,32,32,32,32,32,32,32.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32.6,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.4,32.5,32.5,32.5,32.5,32.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,32.8,32.8,32.8,32.8,32.7,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,30.8,30.6,30.6,30.6,30.5,30.5,30.6,30.6,30.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.2,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.2,31.5,31.7,31.7,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.1,32.2,32.2,32.2,32.2,32.2,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,32.3,32.5,32.5,30.8,31.8,31.6,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.4,32.3,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.2,32.3,32.1,30.9,32.3,32.3,32.3,32.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.7,31.2,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,31.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.4,30.7,32,32,32,32,32,32,32,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,31.2,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,30.3,30.3,30.3,30.3,30.3,24.4,24.4,24.4,24.4,25.3,25.3,24.7,24.7,10.8,10.8,10.8,16.9,21.6,21.9,24.4,24.4,26.6,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.6,30.6,30.6,31.2,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,30.2,31,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,30.7,30.7,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.5,32.5,32.5,32.5,30.8,30.8,30.8,30.8,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,28.6,28.6,28.6,28.6,28.6,28.6,29.2,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,24.1,24.1,24.1,24.1,24.1,24.1,24.1,21.2,21.1,21.1,21.1,20.5,20.5,20.6,20.6,20.6,20.5,20.6,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20.2,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.1,19.1,19.1,19.1,19.1,19.2,19.2,19.2,19.2,19.2,19.1,19.1,19.1,17.8,17.8,17.8,17.8,17.7,17.7,17.6,19.9,17.5,17.7,17.7,17.5,17.5,17.5,17.5,17.5,17.2,17.2,17.2,17.2,17.2,20,20,20,18.3,18.3,18.3,15.9,15.7,15.7,15.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,16.4,16.4,16.4,16.4,17.8,17.8,17.8,17.8,17.8,16.9,16.9,16.9,16.9,16.9,16.9,16,16,16,16.6,16.6,16.6,16.6,16.6,16.6,16.6,18.9,13.3,13.3,13.3,13.3,13.3,13.3,12.6,12.6,12.6,12.6,12.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.5,13.5,16.1,16.1,16.1,16.1,16.1,16.1,16.1,18.9,19.5,18.6,18.6,14.4,14.5,13.1,13.5,13.5,13.5,13.6,13.6,15.3,14.1,14.2,14.6,14.6,14.6,14.6,14.6,14.6,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,16.3,18.6,18.6,19.1,19.1,19.1,19.1,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20.5,20.2,20,20,20,20,20,20,20,20.1,20.1,20.1,20.1,20.1,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,19.4,19.4,19.4,22,22,22,22,22,22,22,22,22,22,22,22,22,22,21.9,21.9,21.9,21.6,21.6,21.6,21.6,21.6,21.6,21.6,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,19.6,20.8,20.2,20,20,20,20,20,20,20,20,20,20,20,20,20,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.8,25.8,25.8,25.8,25.8,25.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.2,25.9,25.9,27.2,27.2,27.2,27.2,27.2,27.2,26.4,26.4,26.4,30.6,30.6,30.6,30.6,31.8,28.7,28.3,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,29.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.8,29.3,29.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,28.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,27.7,27.7,27.7,27.7,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.7,27.7,28,28,28,28,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29,25.5,25.5,25.5,25.5,25.5,13.1,13.1,13.1,13.3,16.6,16.4,16.4,16.4,16.4,24.8,24.8,24.7,24.7,25,25,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.5,31.2,30.3,30.8,30.8,31.1,30.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.4,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31,30.9,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.4,31.4,31.4,31.4,30.3,30.3,30.3,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.7,30.7,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.4,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,34.8,36,36,36.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,29.9,30.7,30.7,30.7,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.4,31.4,31.4,31.4,36.2,36.2,36.2,36.2,36.2,36.2,30.6,30.6,30.6,25,25,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36,36,31.4,31.4,31.4,31.4,32,31.5,31.5,32.3,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,31.5,32.2,32.2,32.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.6,30.7,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.2,28.6,28.6,28.6,28.2,27.6,26.9,26.9,26.9,26.9,26.9,26.9,26.8,22.5,22.5,22.6,22.6,22.6,22.4,22.4,22.4,22.4,19.1,18.9,19.2,19.2,19.2,19.2,19.2,19.2,13.9,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,25.5,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27,26.6,25.9,25.9,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,28.4,28.4,28.4,28.4,28.4,28.3,27.3,27.3,27.2,27.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.8,29.5,30.8,30.8,30.8,30.4,32,32,32,32,32,32,32,32,32,32,32,32,32,31.6,32.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33.2,32.5,32.5,32.5,32.5,32.5,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.9,32.5,32.5,32.5,32.5,31.9,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32.5,31.9,32.2,32.2,32.4,32.5,32.5,32.5,32.5,32.5,34.1,32.5,32.5,32.5,32.5,32.5,32.5,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,30.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.6,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,32.5,32.5,32.5,30.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.8,33.4,33.4,33.4,33.4,33.4,33.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,32.5,32.8,32.8,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,32.5,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.8,33.3,32.8,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.2,33,33,33,33,33,33,33,33,33,33,33.3,33,33,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33,33,33,33,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.3,33,33,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.9,32.9,32.9,32.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,32,33.4,33.4,33.4,33.4,32.6,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.8,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,36.2,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,31.6,31.6,31.6,31.8,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.6,31.7,31.7,31.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,32.8,32.8,32.6,33.1,33.1,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.6,31.4,31.4,31.4,31.8,31.7,31.7,31.7,31.7,31.7,31.7,31.8,33.6,33.6,33.6,33.6,33.6,33.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.5,32.8,32.8,32.4,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.1,32.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32.5,32.5,32.5,32.7,32.7,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.6,32,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.9,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,33.6,31.6,32.4,32.8,32.8,32.8,32.8,32.4,32.4,32.4,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.7,32.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.7,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.6,32.9,28.1,28.4,30.6,29.9,31.9,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,28.1,28.1,25.6,25.1,25.1,25.1,25.1,25.1,11.1,11,11.4,23.9,25,25,25,25,25,25,24.8,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,29.9,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.2,31.4,31.4,31.4,31.4,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31,31.4,31.4,31.4,31.5,31.5,31.4,30.3,29.7,29.7,29.7,29.7,29.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.7,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.1,27.2,27.2,27.2,26.4,26.4,26.4,26.5,26.5,30.6,30.6,30.4,30.6,30.6,30.6,30.6,30.6,30.6,30.3,31.8,31.8,30,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,25.5,25.5,25.5,25.5,25.5,26.7,26.4,26.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.8,25.2,25.2,25.2,25.2,25.2,25.2,25.7,25.7,25.7,25.6,25.6,25.6,25.7,25.7,25.7,25.8,25.8,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26,27.6,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.2,27.2,27.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.2,27.2,27.2,27.1,27.1,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.3,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.8,26.3,25.9,25.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25,25.1,25.6,25.5,25.5,24.8,25,25.3,25.3,25.3,25.3,25.3,25.3,24.6,24.8,24.8,24,24,24.4,24.4,24.4,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,23.7,23.7,23.7,24.1,24.1,24.1,23.8,23.8,22.9,22.9,23,23,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.1,23.7,23.7,23.9,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.1,21.1,21.1,21.1,21.1,21.6,21.6,21.6,21.6,21.6,21.6,22.4,22.4,21.2,21.4,21.4,21.4,21.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,18.8,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.6,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,16.9,16.9,15.9,15.9,15.9,15.9,15.9,15.8,15.8,15.8,15.8,15.8,14.5,8.9,6.1,6.1,6.1,10.3,13.8,12.2,12.2,12.2,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,9.4,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,14.9,8,8,8,8,8.2,13.9,13.9,13.9,13.9,13.9,13.9,12.5,8,8,8.1,8.1,8.1,8.1,8.7,7.5,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,6.2,5.8,6,5.5,6.9,6.9,5.7,5.9,4.6,5.6,5.6,5.9,5.9,7.2,7.2,7.2,7.2,6.1,6.1,5.3,5.3,5.3,5.8,5.3,5.3,5.3,5.4,5.3,5.3,5.3,5.5,5.3,5.3,5.3,5.3,5,5,5,4.1,4.1,5,3.4,3.4,3.4,5.4,5.9,5.5,5.5,5.4,4.5,4.5,4.4,5.6,5.6,5.2,5.3,5.3,5.3,5.3,5.3,5.2,5.2,5.2,5.2,5.1,3.4,3.1,3.1,2.8,2.9,5.6,5.6,5.6,6.7,6.7,6.7,4.5,4.5,4.5,4.5,5,5,5,5,3.9,4.1,4.1,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.4,4.4,4.4,4.4,4.4,5,5,5,5,5.8,5.8,5.5,4.7,4.7,4.7,4.7,4.7,4.7,4.7,2.8,3.3,3.4,5,5,5,5,5],"distance":[30.3,127.9,51.4,126.2,50.4,62,49.9,9.4,2.2,25.5,3.2,7.4,2.3,3.2,14.4,3.4,4,31.1,12.5,2.3,24,1,2.8,4.3,26.6,34.2,161.5,3.4,2.2,2.5,3.3,3.4,4.8,2.8,11.6,18.8,7.3,5.4,7.2,4.4,4.3,8.2,26.1,5.8,4.8,6.8,5.9,4.7,4.3,6.8,23.8,12.8,9.8,5.2,43.9,137.3,46.2,28.8,32.6,20.2,5.3,24.5,9.3,12.4,16.2,6.7,6.6,7.4,8.2,16.2,13.1,14.3,51.4,15.8,27.4,13.9,3.8,7.5,4.3,3.9,6.2,7.3,55.7,16.7,25,8.2,7.3,10.3,21.2,24.7,18.1,12.3,7.8,4.7,16.2,33.7,171.6,28.4,5,14.1,26.2,27.7,4.2,6.2,12.5,7.7,8.8,24.1,6.7,4.8,2.3,4.3,1.2,1.4,1.3,7.3,4.8,4.6,34,8.4,6.3,4.8,5.1,9.6,89.8,14.5,10.4,124.1,12.7,16.3,11.4,75.9,13,13.8,13.6,46.8,8,19.9,8.4,94.9,5.5,21.1,5.5,52.8,40.8,15.3,3.5,5.9,11.2,1.5,1.5,5.2,6.4,5.6,38.4,28.9,2.7,3.3,8.5,32.3,12.2,5.5,47.9,84.4,5.1,3.6,10.9,10.9,105.4,4.4,8.5,5,1.4,1.4,5.1,6.9,56,42.7,4.1,4.7,9.7,9.7,5,68.1,27.9,106.6,51.5,40.3,4.4,5,13.9,10.3,3.9,102.1,79,12.6,15,15.7,7.1,98,30.9,3.4,15,11.6,3.7,79.6,8.2,6.2,3.5,7.2,18.3,14.6,20.3,50,11.7,10.4,25.5,16.2,3.3,5.9,9.8,19.4,13.3,5.4,7.4,11.1,10.3,7.3,12.8,11.8,17.3,59.9,24.6,5.2,12.9,80.4,0.1,20.2,22.8,18.5,21.5,10.1,17.3,28.9,23.7,21.6,39.3,133.8,35.9,59,502.2,16.9,69.8,308.7,54.6,34.8,35.6,13.2,43.4,30.1,92.4,6,7.2,5.5,7.5,13.5,16.2,14.9,13,15.5,18.7,22,40.2,8.8,18.7,11.8,20.9,13,16.7,16.2,9.4,9.8,43.4,97.1,37.5,231.7,175,306.2,107.1,81,101.6,140.3,37.4,27.2,33.6,76.5,20.9,53.4,43.6,26.8,24.5,23.5,16.2,28.2,34.2,37,58.5,20.4,15.5,16,12.4,13.7,16.8,13.9,16.1,17.2,19.8,18.5,17,13.9,14,13,22.3,24.6,13,18.8,21.6,22.3,29.7,19.8,27.2,35.7,42.5,24.9,23.6,41.3,23.4,16.6,38.5,23,25.2,26.5,18.8,20,17.5,32.9,62.3,57.2,49.8,45.6,45.9,109.8,153.6,63.1,65.4,68.7,302.1,273.7,147.1,36.7,235.2,307.5,256,56.9,155.2,76.9,216.7,63,66.7,50.7,117.1,110.1,116.7,99.5,333.9,179.4,179.7,264,293.2,52.1,79.3,208.4,113.9,136.2,316.7,134.7,80,68.9,30,20.4,224.7,46.6,180.5,204,172.6,216.8,3.3,179,98.9,143.4,157.5,137.9,99.4,10.3,135,1.5,21.9,1.7,82,82,131,144,418.2,503.8,124.1,109.3,498.1,361.5,54.1,479.5,174.6,62.2,236.4,156.3,296.9,137.5,100.1,160,17.2,52.5,69.2,132,61.1,45.8,113.5,102.6,298.1,370.1,434.5,411.6,18,1176.1,512.1,471,13.8,23.5,161.3,232.7,198.3,235.7,95.6,526.7,14.2,18.6,14.2,50.8,125.6,18.3,34.2,76.7,76.6,110.1,106.5,46.8,30.8,29.8,48.6,48.3,36.3,35.8,36.1,48.3,35.1,27.3,32.2,39.1,81.5,55.6,48.7,47.5,36.1,72.3,36.3,180.8,130.5,96.5,95.6,131.8,372.1,144.8,240.5,56.6,61.9,347.2,165.4,6.6,13.6,170.1,148.7,94.5,101.8,53.6,148.5,96.3,215.8,70.3,64.9,79.4,42.3,40.5,49.3,34.5,73.4,48,48.3,47.8,48.7,47.9,47.8,47.2,48.9,48,47.8,48.4,48.1,47.7,47.7,48.1,47.6,36.2,96.4,72.8,58.4,166.7,45.6,46.7,22.2,37,64.4,98.5,76.3,78,90.2,68.1,126,43.2,54.1,44.3,20.9,814.4,37.8,168.2,72,130.2,132.5,67,40.6,98.8,92.6,61.9,73,100.8,51,92.3,61.4,11,60.9,122.8,100.8,65.5,88.7,79,102.9,94.9,86.5,104.6,220.2,146.1,175.3,211.6,238.5,202.6,156.8,166.7,113.8,158,83.5,83.6,30.4,48.8,75.1,30.4,35.8,26.3,65.8,33.3,116.8,116.4,237.7,26.6,64.4,61.6,80.2,442,195.9,196.6,77.8,262.5,66.7,389.6,133.6,37.4,127.1,126.8,89.4,49.1,51,52.8,48.5,5.4,46.3,49.5,82.3,63.5,140.6,119.5,119.5,431,252.9,31.3,603,84,91.2,80.9,220.3,227,132.6,63.1,46.1,56.6,42.1,59.7,33.2,52,76.2,75.9,79.1,46.9,207.2,119.4,58.1,27.7,34,4.7,114.7,78.8,95.1,172.7,33.7,138.7,276.9,309.2,29.1,25.1,91.1,116.4,73.4,72.9,150.4,74.8,74.9,27.8,26.1,57.9,132.8,273.1,263.8,343,124.2,247.2,57,34.1,46.1,100.3,66.6,62.6,98.3,50.3,40.9,288.1,222.3,105.4,109.8,11.3,69.4,40.5,41.7,99.8,59.1,61.8,51.1,51.8,62,60.9,53,55.5,41.9,62.4,62.6,51.9,67.7,55.8,13.2,38.4,51.9,40.6,21,50.2,121.5,25.1,39.7,1.2,24.4,153.2,195.1,142.8,91.4,85.8,75.1,186.4,138.6,101.9,67.7,45.7,72.1,69,58.9,92.8,91.4,62.3,56.9,53.2,59,34,0.8,48.3,61.1,61.4,55.4,53.8,46.9,43.2,55.2,71.1,80.3,25.4,37,45.4,59.9,61.3,95.7,38.4,35.9,71.1,259,46,60.3,530,455.9,102.3,0.5,55.2,1.5,96,1.5,58.2,38.1,39.2,91.7,45.4,41.7,60,46.3,11.3,79.7,4,39.3,74.9,60.1,38.1,47.4,39.1,41.7,36.5,41.9,41.1,75.6,33.4,36.6,70.1,83.1,54.3,55.6,34.9,39,47,47.6,53.3,55.7,50.9,45,50.1,32.7,59.4,347.7,379.3,3.3,90.9,15.5,1.4,713.6,5,10.3,3.4,89.7,7.1,16.8,8.5,138.8,72.9,57.5,89.4,40.9,31,6,21.3,1.3,48,53.6,47.8,58.6,76.1,681.9,279.5,487.7,355.7,6.8,127.6,47,66.9,48.7,45.8,73,1.3,56.6,206.5,217.7,401.7,264.2,214.3,37.4,10.1,15.7,1.6,38.5,5.3,270.3,33.3,160.2,148.1,126.9,69.2,71.7,46.9,62,344.7,73.8,664.3,473.5,100.5,110.5,140.2,21.8,213,22,5.6,8.4,390.2,405.2,145.8,325.4,86.5,11.1,112.2,76.2,62.5,47.9,45.9,251,159.9,65.9,402.3,72.2,22,129,62.4,101.8,0.2,214.6,90,24.1,318.2,14.7,42.9,14.6,41.9,134.8,363.4,27.8,67.3,80,27,163.6,57.6,200,18.7,34.8,29.9,506.7,353.9,32.6,106.9,301.3,253.8,283,820.8,265,32.9,26.1,126.2,61.8,73,327.8,161,484.3,1293,101.4,89.1,46.6,114.9,128.4,404.5,34.6,32.7,12.3,38.1,263.2,28.7,84.7,42.3,31.2,72.4,432.1,164.7,134.5,79.7,76.5,80.3,195.9,12.6,113.4,538.2,135.1,2.3,78.6,69.6,98.8,47.3,37,65.7,115.6,135.5,99.1,46.5,135.3,145.5,146.2,104.5,63.8,64.9,78.2,57.5,60.2,57.6,78.5,47.9,419.9,197.4,118.4,49.2,63.8,36.9,43.1,70.3,35.8,31.8,82.8,96.3,2.7,99.4,65.9,64.1,91.7,48.6,66.6,83.8,59.9,59,46.4,31,12.8,3.4,49.7,137.5,159.8,81.5,47.2,40.5,82.8,81.8,27.9,30.9,114.8,84.6,328.1,408.8,247.1,93.6,62.7,98,97.4,109.6,114.3,675,113.4,30.3,65,20.6,99.2,312,63.1,121.7,19.3,37.5,81.6,82.2,62.4,62.6,84.3,307.6,393.2,104.7,122,99.2,100.9,53.6,79.7,152,153.1,259.7,758.8,401.7,143.4,120.8,121.2,89.7,20,140.2,127.1,172.8,301.1,171.3,9.8,166,71.2,79.7,61.5,45.5,44,77.4,51.5,89.3,65.7,80.2,75.9,265.7,416.9,73.7,91,235.5,32.5,222.4,160.1,112.4,40.2,49.3,62.1,1179.7,6.6,178.7,101,116.3,81.1,112.2,112.6,67.4,358.2,213.3,14.3,12.9,97.9,151.7,79.8,97.8,17.5,39.4,96.9,111.2,238.4,67.6,145.8,273.9,112.8,57.3,116.9,68,68.6,92.9,91.7,65,85,40.3,119.8,69.9,117,61.2,100,129.4,79.7,67.3,245.1,113.4,88.9,98,108,121.1,162.1,92.6,93.1,212.1,108.1,104.3,90.8,91.5,77.5,79.6,64.6,65.6,106.7,61.1,57.9,42.2,42.2,85.4,156.7,45.3,43,45.6,53,52.2,32.4,23.1,22.8,22.3,26.2,33.6,16.1,27.8,35.5,36.6,36.1,52.5,47.8,42,36.2,36.9,44.5,33.2,43.3,42.3,21.3,15.9,24.2,37.1,34.8,44.5,38.3,26.7,38.1,38.6,35.7,71.6,29.7,90.2,122.5,182.3,153.2,45.3,349.3,404,259,65.4,132.7,60.9,88.4,120.9,179.8,115.1,66.1,109.6,214.2,117.2,189.7,450.4,65.1,301.6,88.9,86.8,112.2,75.6,71,71.6,47.9,41,127.6,71.8,68.2,67.3,61.5,41.7,59.7,59.1,81.9,91.5,70.3,74.3,11.1,11.6,84,320.7,0.3,110.8,94.1,16.7,22.8,30.1,20.3,14.1,15.1,13.8,14.4,13.1,19.3,13.4,24.6,15.9,15.3,14.4,13,16.5,18.5,14.6,15.4,12.9,13.2,12.8,15,14.2,18.7,21.7,14.4,19.6,134.6,23.8,79.9,94.4,100.3,100.3,93.9,97,103.1,135.1,82.4,69.5,169.5,165.5,0.6,646.8,161.3,234.2,157,147,194.3,7.7,109.6,59.1,226.4,79,66.9,59.6,172.9,592.7,334.2,20.1,63.5,350.5,313.8,252.3,109.9,115.7,112.3,112.1,141.7,239.8,62.6,83.6,230.3,137.5,137.7,388.4,447.4,141.7,195.9,43.4,192.5,108.4,108.7,381.4,162.2,258.5,656.8,785.9,131.3,100.7,58.7,183.5,727.1,180.9,179.8,91.3,90.2,62,121,83.3,46.2,60.8,128.3,114.7,61.8,61.7,71.2,65.8,38,23.7,62,45,77.3,81.7,76.9,86.9,70.1,79.6,63.1,66.5,78.3,91.1,94.5,70.5,47.9,109.1,304.3,347.7,130.3,451.4,166.6,100.2,340.3,236.1,233,224.8,194.7,353.7,365.4,980.1,232.7,421.5,151.9,41.8,804.4,65.6,41.1,55.5,205.3,535.3,630,598.4,74.3,540.2,404.9,147.5,222.4,222.1,151.3,279.9,132.3,131.2,263.8,736.6,262.3,262.1,316.9,359,4.4,288.2,66.6,226.4,308.5,121.5,249.8,132.1,341.5,99.1,140,141.9,40.8,231,255.8,191.8,263.1,353.9,256.2,262.1,195.6,136.3,17.9,205.3,158.1,195.2,224.9,175.2,69.1,262.5,191.9,100.7,99.8,153.1,179,151.5,109.2,121.8,119.5,120.6,144.3,134.7,120.2,97,102.9,91.1,82.8,83.4,85.3,92.2,93,91.2,97.2,110.9,131.3,104.9,126.1,127.2,131.2,72.4,71.6,72.7,83.9,52.9,25.4,26.5,9.3,23.4,70.3,56.5,66.2,134.1,15.5,142.6,187.9,103.6,52.4,146.5,156.2,66.7,38.7,59.8,100.6,91.1,68,63.6,31,24,21.9,19.3,27.9,25.8,24.7,27.2,25.6,26,25.3,25.6,23.2,25.9,24.8,25.9,25.4,26.6,25,25.2,25.3,25.5,25.5,26,24.1,25.4,26.2,27.1,22.2,26.6,25,25.5,24.9,27.6,23.2,25.4,25.5,25.4,13.9,13.6,37.3,34.1,25.4,38.6,27.5,26.1,34,25.1,27.3,34.3,27,26.9,18.1,48.8,30.9,45.1,45.7,111.3,121.9,108.7,144,75.1,38,39.4,83.1,52.8,231.4,35.5,127.7,69.9,296.7,55.3,101.3,49.7,19.5,19.6,18.9,18.2,16.7,20.7,20.5,18.5,17.1,19.9,23.3,21.4,17.7,18.7,22.4,20.9,20.2,23.7,18.5,24.2,16.6,13.8,21.1,27.7,17.8,17.7,18.3,22.4,23.2,95.8,23.5,22.3,24.5,17.8,15.5,19.4,19.9,20.6,16,15.1,16.5,16.1,16.8,17.6,14.7,18,20,20.8,19.9,18.2,31.2,24.4,20.4,15.9,23.2,83.5,116,130.7,128.4,100.9,128.1,143.1,125.3,16.5,50.7,31.7,82.7,84.9,62.8,22.2,73.6,89.7,52,41.5,50.4,59,12.3,36.4,34.9,100.7,87.3,54.9,54.9,73.1,91.5,34.3,34.1,55.8,260.1,115.6,131.3,179.3,97.8,133.9,163.8,96.8,98.6,70.6,88.7,120,75.8,72,13.9,123.9,78.5,91.4,34.3,35,40.8,36.4,46.3,33.5,28.2,34.3,27.2,23.3,31.8,36.4,42.7,18.7,21.7,14.6,18.2,14.4,38.5,47,39.7,49.7,50.2,62.3,43.6,61.7,83.2,35.5,70.3,70.1,76.7,58.3,36.8,73.9,19.5,29.8,30,8.1,11.2,30.5,41.2,18.4,28.9,25.8,17.3,10.7,30.9,37.3,39.8,41.5,46.3,43.7,25.7,34.8,18.6,19.8,18.5,19.4,19.3,20.7,15.1,34.1,21.6,29,16.1,19.9,21.9,10.9,43,54.9,26.2,26.1,25,25.3,71.2,27.5,40.5,42,9.1,14.3,13.8,14.4,26.2,52.3,210.1,176.1,79.6,87.6,33.8,58.1,85.2,41.3,28.4,2.1,41.3,33.9,53.4,151.3,192.4,48.9,108.1,103.7,58.3,119.4,37.7,173.2,43.8,39.9,94.4,120.3,96.1,82.9,67.4,63.4,55,96,68.7,81.9,132.2,310.1,191.6,46.1,208.9,509.9,437.2,358.6,49.3,38.1,52.7,55.1,51,49.8,61.1,56.1,77.3,61.3,72,85.9,149,390.3,116.2,4,30.7,1.9,226.3,180.4,45.6,41.9,43.6,35.8,81.2,190.4,201.5,28.8,289.2,51.5,186.1,170.3,157.6,224.6,127.7,209.5,146.4,142,410,111.2,758.2,212.2,137.4,161.4,28.6,160,143.8,229.5,155.3,69.1,119,112.6,203.9,22.9,70.8,224.9,74.7,296.2,44,222.3,152.4,154.1,12,31.9,39.9,171.1,161.1,217.2,367.1,866,102.1,110.3,109.1,70.4,70.1,32.4,60.6,47.7,36.6,116.7,25.8,104.4,95.6,81,35.6,58.3,57.8,33.9,37.7,29.3,38.3,73.3,68.8,45.1,94.1,19.1,33.3,116.5,62.7,105.1,135.5,203.9,231,155.3,99.5,160,138.2,171.5,208.3,174.6,135.7,137.7,324.7,66.1,106.5,83.5,224.4,26.8,367.6,240.6,14.3,74.6,87.8,62.4,28.5,303.6,53.6,68.3,90.9,105.4,91.2,102.5,132.9,161.1,41.1,129.9,146.9,108.9,176.5,280.6,473.3,101.3,27.1,73.4,197.2,134.2,68.7,37.8,35.8,26.3,96.2,80.6,100.8,35.1,15.8,44.9,112.4,110.4,110.4,173.7,130.5,80.9,35.8,88.2,88,62.9,65.5,24.1,26.8,52.6,103.1,196.4,223.2,214.5,390.1,11.5,927.5,202.1,210,379,247.9,22,243.7,184.6,184.4,195.7,54.2,200.6,132.9,933.1,34.7,524.7,49.3,43.5,202.6,86.4,45,67.9,40.7,8.9,84,17.9,18,57.1,37.7,18.9,81.5,11.4,107,92.8,130.9,73.4,51.3,126.2,25.1,31.9,5.7,87.2,62.7,55.1,97.9,96.3,96.9,173.5,34.6,25.4,57.8,33.5,11.2,20.1,30.8,36,64.5,33.9,36.5,27.4,32.1,24.8,18.9,15.8,23.4,10.3,18.5,19.4,23.1,23.4,19.1,22.1,23.6,22,11.6,11,13.5,13.7,13.1,13.9,14.1,14.1,28.2,41.1,26.2,23.6,25.7,73.8,79.7,39.5,73.7,66.9,69.6,45.5,112.1,383.6,40.2,94.7,39.5,17.6,46.9,46.5,47.5,29.1,16.8,5.5,53.3,75.9,53.8,53.4,177,163.7,3.5,73,179.4,85.1,75,85.5,48.9,25.4,52.3,26.6,37.8,40.9,37.3,32.2,76.9,52.2,48.3,35.7,42.6,80.1,34,0.7,130,31.6,8.7,37.9,6,144.7,377.2,135.1,75.8,58.1,348.9,212.1,185.8,14.6,100.6,125.5,93,32.6,70.1,69.2,16.5,29.9,32,77.7,44.3,30.4,29.1,59.2,61,18.5,74.1,47.3,45.1,51.4,34.9,42.3,44.6,46.7,49.5,61.5,52.5,63.3,53.7,35.2,13.2,89.7,128,31.7,272.2,127.1,55.6,44,54.6,48,26,50.9,63,51.4,56.4,48.2,283.2,178.5,98.7,123.2,62.2,59.1,32.1,31.9,51.1,31,30.8,63.2,218.7,163.5,198.9,46.7,41.9,32,34.4,42.6,39.6,105.4,83.6,40.9,74.4,56.4,47.1,85.7,67.2,139.7,27.9,555.6,97.2,78.4,283.9,16,178.3,178.7,200.3,130.2,25.8,6,18.7,86.3,91.4,29.3,26.4,36.5,9.1,45.1,28.5,12.8,20.5,16.6,14.5,9.9,11.6,15.3,17.8,35.4,103.4,141.6,34,68,144,83.9,70.4,44.1,53.7,27.5,77.6,92.7,82,12.9,28,42.8,24.6,4.2,14.6,64.1,62.6,108.2,69.5,111.9,93.7,57.9,122.4,76.5,132.8,64.5,88.3,80.2,90.8,86.1,98,89,81.5,88.1,89.3,90.2,92,84,63.8,81.5,225.2,473.6,190.1,190.8,44.3,109,49.4,42.8,54.1,59.3,80.3,90.5,104.9,87.1,98.9,92.1,82.7,87,86.9,79,157.2,83,93,86.5,69.2,120.7,116.2,225.3,175.1,70.1,50.2,103.8,85.2,118.3,127.9,71.4,68.5,47.7,41.4,86.8,107,84,90.7,85.2,90.2,121.6,226.3,252.2,1.1,235.7,174.9,171,178.4,23.9,149,146.8,0.9,115,44.4,300.5,184.2,76.7,85.5,118,114.3,9,109.2,84.6,87.9,87.5,86.7,106.2,85.2,148.2,319.3,166.9,144.2,255.1,273,201.4,121.5,46.9,18.9,348.2,180,165.3,101.9,132.2,93.7,147.7,74.9,151.1,44.6,32.5,97.6,84.9,90,64,43.3,34.3,50.7,61.4,68.3,80.9,184.3,184.9,125.8,11.1,100.8,101.8,99.6,84.4,104.4,72.9,63.4,70.4,106.5,105,275.5,49.3,90.6,299,356.8,223.6,154.9,88.9,172.6,84,91.9,72.8,108.8,65.7,99.6,92.6,82.7,85.8,101.9,88.7,91.8,91.8,95.4,89.6,90.6,75.6,70.8,94.7,105.1,114,85.6,95.2,91.5,87.8,90.6,90.1,90.2,146.2,107.4,111.2,202.3,423.1,270.8,178.6,341.2,387.6,474.1,229.6,463.2,122.6,13.8,71.7,150,31.2,181.2,185.6,183.5,60.8,118.9,179.7,181.1,181.2,184.9,186.4,110,99.3,148.8,105.2,45,118.7,129.8,139.5,118.2,139.6,176.3,181.6,179.3,178.9,2,165.5,204.1,178.3,176.4,175.4,225.9,355.3,290.8,152.1,384.4,351.4,110,699,722.5,395.4,160.8,149.9,191.1,84.7,11,166.6,122.5,202.1,203.2,175.7,176.5,179.5,8.1,171.6,177.5,269.6,269.3,272.1,268.5,266.8,266.4,261.3,265.9,222.8,268,342,166.9,286.8,95.2,178.2,182.3,340.6,118.9,178.5,417.6,53.3,191.2,293.6,121.3,129,196.8,272.1,181.6,163.1,165.5,82.9,81.1,84.7,88.3,83.2,84.2,82.3,81.9,78.5,85.6,77.5,82.5,86,78.7,80.8,87.9,54,66.7,74.8,90.5,22.6,176.3,98.8,64.7,106.7,61.6,82.6,131.2,144.8,407.9,47.6,32.8,30.9,112.5,84.6,30.3,235.2,153.3,116.9,117,144.1,77,73.9,104.6,132.8,61.4,62.8,72.3,69.4,74.7,65.9,68.1,66,69.1,70.3,86.6,73.6,97.2,91.3,186.2,188.1,209.6,249.9,98.8,216,133,56.9,161,131.5,146.9,245.1,55.3,96.4,277,428.6,178.1,236.9,321.9,38.1,582.1,101.4,112.5,109.9,72.9,89.1,164.7,141.4,2.7,23,139.1,105,304.1,224.1,145,202.1,197.7,198.4,99.2,99.5,36.2,65,100.9,70.9,27.3,47.4,53,100.3,100.4,94.3,99.9,98.2,62.1,40,199.8,199.2,187.7,166,146.2,125.8,93.8,94.4,99.7,93.1,97.9,96.1,97.5,102,91,104.4,102.5,99.4,96.9,100.7,99.9,98.1,96.1,197.7,99,89.4,105.9,113.6,94,90.2,121.7,105.2,107.8,109,107.4,103.6,93,122.9,87.6,180.4,2,170.6,310.7,185.5,59.6,358.5,119.9,206.5,212,36.7,86.7,119.9,72.2,14.7,159,135.9,154.3,122.3,230.7,77.8,67.5,149.1,116.5,121.7,116.1,113.1,116.2,117,114.2,125.1,117.7,123.5,113.5,125.6,120.2,117.7,121.4,121,113.6,122.9,118.6,135.5,120.2,241.5,242.4,243.8,250,186,247.9,387.1,347.5,394,357.9,251.1,141.1,87.8,124.4,121.5,88.8,65.1,79.6,85.8,73.5,123.2,98.9,107.7,122.3,103,70,66,74.2,67.4,72.2,72.2,137.5,114.6,69.8,76.6,165.7,163.5,352.5,121.6,130.1,92.6,68.9,64.4,2.8,70.3,70.2,68.8,72.9,66,76.3,85.9,83.6,81.3,86.5,82.9,80.3,87.4,81.8,8.1,86.7,83.3,83.3,86.5,83.1,95.7,88.5,84.4,84.4,85.6,85.3,155.1,155.8,151.7,154.5,205.9,267.8,341.9,318.3,71.9,15.8,10.3,53,148.5,111.1,53.1,194.9,14.3,80,123,141.5,132.3,145.4,73.7,81.3,66.9,46.4,58.4,77.5,60.3,42.1,53.9,73.6,59.9,65.1,62.7,69.6,91.7,70.1,70.4,138.9,246.1,164,166.2,78.8,104.5,90.5,89.3,73.3,71.9,87.5,84.4,72.6,59.4,58.1,72.8,60.7,64.1,58,84.6,140.9,248,111.5,69.1,206.6,130.6,232.9,142,138,77.8,82,61.9,57,57.9,50.8,51.4,50.2,58.6,33.9,35.3,56.1,43,41.8,43.5,46.4,50.1,50.2,57.6,166.6,695.7,235.1,263.7,439.1,150.1,230.5,123.9,136.9,149.4,140.5,88.5,854.7,159.9,273.9,196.7,124.4,186.9,278.5,224.2,114,84.1,105.7,177,107.1,110,95.3,104.4,110.1,131.8,148.2,118.7,115.2,114.7,178,120.2,110.7,195.9,172,124.8,49.3,65.9,118,100.7,81.3,138.1,96,119.5,119.2,121.2,239.9,241.5,184.2,172.7,124.5,132.6,151.4,74.9,88.5,150.7,135.8,5.1,162.3,174.6,196.5,116.4,33.6,180.9,208.9,209.5,210.5,210.7,277.1,140.9,56,129.8,85.8,156.4,32.9,258.4,260.9,150.1,198.6,85.8,79.8,57.7,40.2,88.8,65,70.9,42.2,93.7,90.1,90.3,91.8,92.1,89.4,57.6,207.1,167.7,175.6,264.4,88.4,86.1,87.1,87.1,88.9,90.2,87.7,79.8,81.9,79.5,79.3,81.1,66.9,140.1,174.4,153.8,148.8,48.3,22.1,16.1,171.6,169.9,164.6,157.2,164.1,159.6,159.8,163.6,160.4,160.4,81.3,81.2,81,165,114.5,115.5,158.2,161.1,36.2,124.8,160,153.8,76.5,80.5,102.7,65.9,81,80.7,67.6,84,91.8,100,63.5,76.3,93.5,83,78,78.6,78.4,94.6,90.3,91.5,89.1,89.5,89.8,93,87.8,94.5,91.9,69.1,47.8,59.3,89.7,187.4,218.2,389.4,153.4,219.4,247.9,88.4,91.2,93.3,89.8,89.6,91,90,93.4,84.9,87.2,93.6,88.6,90.6,93.1,86.6,92.7,88.1,90.9,179.8,163.4,195.2,163.3,79.3,119.7,120.2,160.9,145.8,139.3,194.1,99.7,183.9,180.2,180.2,178.3,183.7,206.8,52.9,100,86.7,101.4,87.1,76.2,90.8,88.2,86.4,90.4,87.8,94.5,89.5,87.7,93.5,86.6,90,89.3,9.9,41,43.8,83.2,96.3,89.5,90.3,88.7,184.5,178.7,181.2,171.7,181.9,185.6,177.4,129.1,179.1,178.8,65,114.6,176.6,184.9,86,3.1,90.5,90.8,92.8,88.1,89.3,150.6,39,158.4,87.6,86.8,89,86.3,87.5,86.1,88.3,87.7,85.8,87.4,90.8,89.2,91.2,91.1,91.6,90.7,90.7,91.8,83.8,86.8,85.4,90,84.7,87.1,79.8,98.3,74.6,86.5,86.5,86.1,85.8,86.3,84.3,91.5,84.2,80.9,59.1,80.6,23.7,118.6,85.6,90.9,83,82.7,87,85.4,84.9,87.4,82.3,82.8,86.1,89.6,82.3,86.9,85.8,86.4,85.6,85.9,84.7,85,88.4,84.8,84.8,82.1,167.6,171.6,172.3,186.9,170.9,179.7,90,89.5,90.7,88.8,89,85.7,86.8,86.6,91.8,92,86.3,87.9,91,90.7,88.4,88.3,86.9,88.4,92.1,89.3,64.1,69.8,150.7,43,49.5,116.6,100.5,259.9,362.6,295,25.4,35.5,200,171.4,171.7,173.4,179.8,93.4,90.8,91.1,121.5,150.1,180.1,133,99.8,57.7,148.4,90,109,110.6,70.6,82.3,134.4,112.9,93.4,89,89.9,90,86.3,99.6,89.1,122.4,267.7,290.9,119,201.2,178,327.4,81.1,241.5,110,199.1,103.8,166.2,64.1,286.3,168.3,86.3,85.1,85.8,89.5,84.9,91.3,89.7,89,339.8,20.9,20.1,285.4,124.7,10.3,846.8,1590.1,309.5,106.9,209.9,150.3,114.6,82.7,55.8,77.9,39.7,47.2,75,46.2,74.7,82.6,69.8,79.6,67.8,79.9,91.8,57.4,47.8,70.4,81.4,80.8,44.1,74,73.2,77.3,75.6,72.7,74.8,74.9,75.9,75.2,75,73.8,79.4,47.3,71,101.1,100.6,100.3,98.5,89.6,73.5,67.8,70.7,99.7,50.8,98.5,102.2,150.6,96.3,164.7,128.4,49,65,150.6,141.3,180,69.9,152.4,150.3,148,1.9,149.9,302.8,18.9,273.4,1.5,315.6,149.4,94.4,18.4,321.3,70.6,4.3,484.8,170,170.8,25.1,79.7,100.7,76.8,67.6,63.6,65.4,77.2,70.8,140.1,140.6,87.6,89.8,30.6,113.9,109.3,104.4,198.4,186.8,188,163.8,145.7,153.5,76.7,74.7,133.5,127.1,125.3,192.3,206.7,207.4,204.6,199.6,199.9,140.4,142.8,134.7,139.2,130.7,128.8,170.1,164,145.5,133.9,114.9,124.7,70.9,96.8,75.7,72.1,76.8,73,72.1,78.5,71.8,69.7,78,76.5,242.6,272.2,238.7,268,349.1,361.5,244.1,123.3,61.5,170.8,64.2,40.9,222.5,492.9,147.4,145.4,139,82.8,145.3,148.1,74.1,75.3,72.6,74.7,75.4,72.4,67.8,3.1,74.8,76.1,72.7,73.4,75.3,75,74.9,74.7,81.8,161,95.8,74,73.8,77.8,142,142.1,177.4,339.3,171.4,216.5,131,155.6,221.2,75.8,75.9,183.7,265.1,191.2,0.6,122.2,166.4,133.1,128.9,92.2,67.5,117.7,121.1,116.3,140.1,179.1,178.1,177.9,177.5,182.3,179.9,178.4,179.4,180,88.5,89.2,89.8,87.6,89.6,89.2,90.4,89.2,91.9,88.9,89.2,176.1,271.9,270.7,295.6,144.5,98.3,97,93.4,106.4,200.4,399.4,399.2,202.2,197,201.7,197.9,400.3,199.6,200.7,197.7,158.1,109.1,55.4,55.4,56.1,52.9,56.8,54.3,53.9,58.4,61.9,57.7,58.2,60,46.2,42.6,71.7,62.4,88.4,54.5,69.3,136.2,136.2,157.4,221.6,233,118.4,122.7,110.7,108.6,89.6,106,68.3,51.7,65.9,83.5,101.6,53.6,54.9,53.2,55.7,52.7,56.3,48.9,67.3,63.8,61.3,120.7,79.8,197.4,105.4,192.4,125.7,130.2,128.7,129.8,54.2,59.9,58.5,63,54.4,6.2,64.9,66.7,64.7,65.6,62.4,75,57.3,98.4,43.9,48.4,56.8,70.5,61,60.9,63.5,64.7,62.6,55,65.9,69,61.6,60.8,66.2,64,83.7,97.5,94.9,42.5,38.6,110.1,71.6,68.1,16.5,62.1,15,56.1,168.3,49.7,7.1,57.3,26.5,41.7,22.5,42.1,85.5,286.4,117.3,33.4,416.9,89.1,181.9,88.4,23.4,6.1,86.9,8.9,10.2,1.5,9.6,9.7,9.7,9.6,9.7,8.6,8.4,8.5,14.3,12.9,92.8,14.6,959.7,84.8,9,9.7,6.2,6.8,6.8,6.9,6.2,6.2,6.3,7.1,7,7.1,7,8.4,10.1,17.2,56.7,69.4,42.6,35.3,31.2,32.3,75.2,70,28.5,11.8,27.6,87.6,90.2,48.8,107.9,82.6,55.9,38.6,84.3,85.7,116,11.4,46.4,101.1,176.2,11,12.3,12.1,12.6,15.4,18.3,26.3,22.9,19.5,18.5,10.5,11.2,11,11.2,11.1,11,11.1,16.9,18.5,14.5,19.7,15.1,18.6,19.2,28.5,27.2,175.1,307.4,219.8,174.1,36.7,33.9,35.5,36.7,32.4,36.1,37.8,134.7,183.3,258.1,137.5,285.3,372,76.7,29.9,27.6,24.4,27.3,26.2,50.4,124.8,150.7,56.3,60.2,54.3,56.1,56.7,141.6,223.6,76.9,22.6,25.8,56.1,40.6,54.8,50.4,42.8,43.8,56.3,69.7,78.8,52.7,64.4,59.2,39.7,73.3,64.3,67.3,39.6,44.4,113.7,79,95,115.6,115.4,37.4,13.9,42.1,23.3,355.1,196.3,284.6,41.3,73.8,17.8,46.7,108.7,50.9,40.4,77.6,73.5,80,20,61.9,28.6,16.5,23.1,36.3,31.4,32.2,22.9,22.8,54.1,43.5,46.7,50.6,43,16.8,24.7,22.8,29.4,43.2,64.4,159.5,0.3,144.4,59.8,145.4,0.2,87.9,0.2,30.9,0.1,31,65.6,43.6,44.5,37.1,36.6,48.7,51.9,35.9,32.8,114.5,114.8,63,62.3,48.3,56.7,55.4,60.5,61.3,64.2,57.6,55.9,58,54.5,46.4,54.1,33.2,8.5,122.8,290.1,33.9,43.7,48.5,38.1,43.8,43.7,43.7,43,29.6,16.1,54.9,49.3,29.3,10.1,48.9,54.3,57.9,49.9,35.3,18.9,20.2,56.7,43.2,113.2,49.4,39.4,39.6,32.9,37.6,26.5,25.6,243.1,149.5,35.9,35.2,11.2,32.5,13.1,38.6,38.4,38.5,38.5,210,163.9,112.5,57.4,58.6,73.8,115.4,68.7,57.6,50.7,73,24.1,31.4,141.8,76.3,21.9,226.1,41.2,150.2,113.1,47.3,30.1,30.2,8.2,22.1,12.9,16.9,43.5,22.2,33.3,31.7,31.9,19.7,13,34.6,27.7,7.3,27.8,20.3,20.8,21.6,28.4,21.5,23.4,71.2,19.9,20.8,24.6,2,2.8,12.7,24,36.1,47.2,43.9,46.1,49.1,49.2,49.2,49.1,49.2,49.2,49.2,49.1,49.2,49.2,49.2,49.1,30.2,7.1,33.7,53.8,41.6,45.6,41.6,37.9,54.3,51.2,378.8,47.7,31.7,31.1,28.6,62.7,593.6,40.3,27.3,32.5,31.6,30.9,32.1,31.7,31.3,41.5,39.3,74.4,26.8,27.3,53.8,35.4,131.1,25,163.2,20.1,136.2,8,116.2,76,44.2,71.8,46.7,42.1,45.5,72.1,71.4,54.9,49.2,68.1,59.8,61.1,61.2,49.4,1.4,47.4,70.4,72.2,78,73.5,77.7,43.1,67.8,52.4,54,9.9,91.7,38.3,18.1,76.5,72.2,482.7,39.6,35.8,41.3,30.8,17.8,50.5,58.4,40.7,764.1,60.7,33.6,37.3,52.9,43,41.5,53.9,84,111.3,32.2,34.5,55.9,40.9,28.7,7,25.5,51.8,17,0.4,34.5,0.6,38.5,37.6,34.3,40.1,47.5,92.9,66.5,38,32.5,81.2,3.5,78.7,30.8,34.1,33.2,1309.1,51.8,48.9,43,9.9,467.2,138.7,394,294,697.6,47.4,709.7,155,39.7,0.2,24.8,62.3,82.1,82.6,46.2,47.3,59.4,56,159.4,91.7,87.5,64.4,241.7,212.8,56.3,67.5,54.8,51.2,77.8,48.2,60,75,78.4,42.5,24.6,82.9,107.5,57.6,60.7,82.6,116,199,110.5,52.3,53.9,44.8,53.2,53,42.4,47.5,62,57.8,112.9,242.3,62.7,62.6,61.2,54.6,53.8,52.8,60.3,71.1,66.5,58.1,178.9,51.2,54.9,50.3,55,57.6,54.1,53.4,58.1,58.5,90.2,68.9,68.8,51.9,55.8,526,329.4,77.9,153.5,187.5,322,115.7,240,433.3,95,112.6,120.4,145.4,43.6,123.7,119.7,102,200.8,86,58.9,56.6,74.3,187.8,115.8,63.2,80.6,80.3,84.9,119.9,45.2,54.5,33,79.9,40.3,37.3,69.9,60.9,3.5,55.1,46.8,58.8,59.3,68.9,66.7,69,34.9,33.8,71.3,71.8,64.5,64.8,64.4,65,74.7,74,66.4,62.3,73,74.8,122.3,117.2,61.7,46.8,82.1,69.3,170.6,88.5,45.4,45.1,114.4,98.4,47.4,92.4,112.2,55.1,59.9,64.9,43,42.7,43,40.2,49,55.7,17,18,7.2,25.1,10.8,107.2,150.1,154.3,173.1,36.2,164.6,66.6,89.4,192.7,214,273.2,157.8,109.4,88.9,26.4,373.5,116.6,46,42.9,51.8,51.7,71.5,77.5,50.6,55.7,146.8,477.7,99.4,82,52.3,68.7,37.5,37.6,81.1,54.9,74.5,57.3,139.6,18.1,72.9,54.4,77.3,56.3,60.9,77.8,55.4,55,71.7,79.1,74.4,18.9,10.3,36.3,62.2,61.1,63.5,35.8,36,58.6,51.5,50.1,14.2,32.2,44.2,46.1,10.6,97,14.7,79,139.4,135.3,49.1,18.2,69.9,24.3,87.6,43.1,38.9,18.7,39,42.3,20.4,37.2,47,31.3,54.9,37.3,37.1,10.8,41,33.3,39.8,70.2,29.6,109.2,562,114.3,116.1,63.6,146.5,39.1,39.4,62.1,60,105.8,127.9,64.3,65.1,49.4,26.4,24.1,32.6,31.5,34.3,33.8,30.5,31.2,41.6,40.4,48.3,44.3,52.9,30.2,30.2,171.1,55,46.5,31.3,45.2,22.4,20.3,22.5,50.8,63.3,65.3,58.6,60.6,76.8,58.7,54.2,53.5,68.4,194.4,38.4,33.7,38.3,46.7,49.8,47,42.2,50.4,43.3,88.6,596.2,60,60.1,38.1,30.3,33.6,39,26,413.2,889,224.3,90.5,51.3,63.6,116.1,375.2,38,126.4,62.5,64,75.5,39.3,51.3,38.7,64.3,38.2,37.5,36.7,2.4,646.9,48.6,34.2,35.8,26.2,27.3,49.7,28.5,27.6,77.9,21.4,76.4,276.5,69.9,57.6,48.3,55.6,83.2,62.4,65.7,115.1,75.1,53.5,212.6,166.3,101.6,464.3,115.8,251.7,10.9,235.5,190.6,55,200.7,1.4,352.9,208.7,52.3,106.7,130,87.4,77,144.2,73.6,236.5,246.4,318.6,116.4,79,70.8,65.5,103.2,103.1,50.9,74.1,88.3,130,80.1,41.2,69.2,97.8,94,94.3,113.2,53.8,41.1,54.4,91.7,62.7,59,38.3,75.2,190,60.4,63.3,85.8,57.2,86.1,75.3,198.3,101.4,178.1,152.1,380.3,58.3,48.3,64.4,66.9,110.8,152.6,107.1,100.8,51.1,242.1,385,128.3,108.2,105.8,46,48.1,116.2,153.3,83.9,90.3,263.3,196.6,157.9,57.9,75.6,184.8,230.3,229.6,196.3,117.7,134.6,97,80.8,159.9,73,131.6,146.5,111.5,156.3,130.6,211.7,264.3,538.2,887.7,171,157.8,158.5,114.6,239.4,73.7,199.5,170,48.6,54.3,49.3,60.3,12,22.2,31.4,50.8,31,0.9,19.9,65.2,84,49.7,76.2,64.8,73.9,248.9,52.1,24,29.9,30.5,26.4,34.2,25.3,25,29.8,29.7,59.2,62.2,61.3,42.4,38.4,40.8,20.4,31.2,34.3,26.6,30.6,22.8,24,25.6,26,49.3,34.6,33.7,41,29.3,24,32.4,33.6,52.7,35.2,41.6,31.2,14.6,63.4,79.7,64.2,43.5,37.9,33.3,24.4,19.2,7.8,15.9,7.9,33.5,16.3,16.1,29.4,103.9,109.3,48.3,48.2,37.4,37.4,30.1,30.5,36.7,38.4,39.6,41.1,32.1,140.6,95.6,83.2,5.9,90.3,26.7,64.3,81.6,92.3,80.6,46.3,53.5,6.2,16.2,35,26.3,25.7,34.9,34.6,47.8,58.7,61.1,19,12.3,62.8,39.1,40.1,50.4,16,271.9,85.7,84.7,3,188,160,269.1,96.3,127.2,21,52.4,78,50.9,141.8,206.4,6.6,127.5,121.3,299.1,66,103.1,145.4,96.6,281.3,99.2,91.7,103.8,62.6,62.2,138.8,58.2,45.4,44.3,43.1,43,48.5,35.2,16.2,40.4,41.5,68.4,49.1,44.1,57.3,50.2,28.4,52,51.7,35.6,35.4,38.5,40.5,16.8,23.5,57.3,26.1,46.6,33.3,43.7,14,31.1,28.9,66.4,47.7,92.8,51.1,47.1,47.3,40.5,46,46.7,60.7,80.6,125.7,135.2,51.4,113.3,51.4,93.6,81.1,113.5,100.2,124.9,219.3,93.3,91.5,67.5,67,186.7,159.9,31.3,31.3,62.3,49.1,48.7,48.7,97.3,40,39.7,39.9,39.6,50,50.1,101,189.6,174,161.5,136.4,46.6,50.3,96.4,144.3,56.6,30.2,116.7,72,74.2,43.6,45.1,48.4,48.4,198.5,96.1,374.4,37.5,107.8,474.1,384.8,350.5,193.3,170.5,185.5,96.8,92.4,178.6,108.3,101.1,101.9,103,121.5,122.5,72.2,115.6,110.2,175.2,200.2,245.6,151.8,69.2,37.7,25.1,74.3,66.6,60.4,61.7,59.2,99.3,79.1,69,65.9,154.3,76.8,47.3,36.3,212.4,302.3,198.9,200.4,99.8,110.8,160,145.7,138.6,199.6,144.1,126.1,19.9,169.4,174.3,158.3,256.5,93.2,92.4,160.6,137.8,287.8,284.2,74.9,231.5,173.8,171,208.3,190.4,26.3,169.8,198.6,111.5,198.1,197.9,122.7,5.2,192,197.2,65,187.3,25.3,78.3,56.4,193.5,83,57.6,71,268,122.4,182.7,84.1,39.9,90.7,19.7,113.1,169.4,235.1,161.2,153.3,133.2,59.4,241,218.5,97.5,318.6,85.4,119.7,158,191.3,151.2,170.7,194.4,9.8,91.2,104.1,47.1,86.1,355.5,93.2,131.3,68,27.5,67,71.5,56.8,82.7,111,98,108.8,67,141.1,99.8,58,40.2,45.3,76.2,126.2,100.2,68.5,174.7,241.8,144.6,92.4,239.7,232,41.4,171.2,149.3,83.1,142,89.1,82.8,85,60.1,100.5,49.9,49.5,63.9,64.1,59.7,68.7,53.8,8.1,39.5,52.3,60.9,65.7,127.3,694.2,302.7,291.1,61.1,61.8,23.7,48.5,48.6,41.1,42.7,83.1,92.3,72.4,46.9,43.9,51.3,49.6,37.7,39.6,62.4,42.1,14.4,70.2,60.1,11.4,44.4,16.3,41.6,74.1,131.9,172.3,233.3,273.2,90.4,42.6,187.9,27.8,99.5,16.5,7.4,102.1,149.4,67.7,107.7,122.8,94.9,26.4,122.5,59.1,67.1,89.9,77.3,9.3,33.6,124.7,1.1,149.8,41.5,106.7,84.4,73,68.8,49.9,15.2,23.9,26.4,28.1,45,59.5,57.6,34.6,11.7,151.4,131.9,74.9,50.2,70.8,43.3,49.8,67.2,74.3,44.6,46.2,62.2,68.8,57.5,59.1,45.7,48.1,35.2,26.7,33.8,23.6,22.9,30,48.9,63.6,54.1,74.4,88.7,66.4,78.8,99.6,63.9,55,45.5,59.8,66.2,62.8,59,57.7,63,52.3,66.4,77.2,77.8,19.1,60.1,96.7,125.8,175.9,217.4,128.2,90,74.7,27.4,25.1,30.8,27.2,22.4,24.8,20.5,51.4,11.5,65.4,41.3,150.7,47.7,177.7,74.4,106.4,52.3,63.2,9.7,141.9,149.6,94.8,100.2,109.7,86.6,10,20.1,86.6,68.1,64.8,58.7,85.1,233.8,150.2,125.7,201.1,204.7,17.5,38.7,81.2,94.6,35.3,72.2,58.6,36.4,7.5,47.8,54.6,28.7,7.8,51.2,73.8,47.6,52.1,50.8,33.6,47.6,66.1,110.2,62.8,34.9,48.6,47.4,32.4,33.7,39,42.1,58.9,93.8,36.3,50.3,69.4,112.6,134.4,145.9,77.9,26.9,42.6,62.6,59,183.1,87.7,59.9,33,32,35.5,46.8,39.4,35.1,30.7,34.6,23.8,33.3,17.2,19.3,30.5,32.8,54.9,58.1,83.4,34.4,57.4,40.7,19.5,35.6,54.8,46.4,46.7,59.6,58.4,49.4,49.2,30.2,31.1,49.8,50.4,43.9,44.9,47.4,47.1,20,25.7,26.8,25,20.9,35.4,21.2,13.5,155.6,74.2,35.8,33.8,27.5,27.6,22.1,23.6,113.8,7.2,62,31.4,26.3,39.8,25.9,22.9,13.2,13.6,12.9,13.8,25.3,27.1,26,26.7,25.6,23,12.9,12.8,12.8,13,13.1,12.1,13,12.7,12.8,13.6,12.8,12.1,14.3,13.3,12.7,13.4,12,13.9,29.4,39.7,38.7,51.1,12.8,12.9,13.6,12.6,13.6,12.3,12.9,14,11.4,0.1,12.8,13.6,12.8,11.6,14.5,12.6,12.8,13.6,12.4,12.9,12,13.2,13.1,12.3,13.5,11.9,13.2,11.6,13,12.3,12.4,12.7,12.5,15.3,10.1,12.5,82.4,116.5,93.5,178.4,215.5,96.9,38.6,56.9,68.7,25.1,77.3,80.6,79.5,79.1,124.5,33,288.3,27.8,52,99.2,92.6,99.9,103.6,118.1,30.3,52.8,50,49.8,45.7,55.5,32.1,89.3,28.3,60.3,48,177.3,164.2,87.2,50.2,7.8,36.5,33.7,39.6,23,120,202.4,93.5,28.2,97.8,178.9,125.4,533.3,434.1,175.8,77.4,87,80.4,76.6,31.6,49.9,80,89.3,96.3,93.2,61.5,94.1,71.9,68.4,70.3,72.4,127.6,117.1,117.4,126.7,128.3,124.3,126.5,77.9,77.3,150.4,307.5,132.5,298,61.8,62.5,95.1,89.4,110.5,110.6,170.5,155,155.8,220.3,113.9,104.1,104.5,142.1,115.2,105.3,103.3,90,104.6,103.6,103.7,90.3,79,17.3,85.3,52.7,111.9,105.2,130.2,111.4,242.4,242.4,187.5,45.8,137.6,98.9,89.1,86.8,57.6,81.4,113.7,104.4,47.8,109.7,4.4,96.1,95.3,92.5,92.5,99,104.6,104.3,101.5,47.8,110.9,148.8,24,80.4,78.3,67.6,77.9,81.1,68.3,76.2,82.3,106.7,83.1,85.6,87.5,232.7,153.2,104.2,57.6,52.4,26.7,27,44.5,40.7,39.7,39.9,52,38.3,99.9,201.9,106.1,62.2,43.1,51.7,32.3,34.5,51.5,35.3,34.5,44.7,29.1,27.2,28.5,12.2,15.7,28.9,46.2,32.4,38,40.1,40.5,26.6,30.5,50.4,31.8,36.1,37.1,40.5,36.2,39,54.4,42.4,29.3,30.9,117.9,94.3,31.1,129.3,16.4,55.4,65.5,54.5,94.6,109,106.3,145.4,82.6,66.2,11.9,50.5,102,91,44.3,84.3,110.9,39.6,76.8,33,70,65.9,39.1,39.5,72.8,82.5,81.2,56.4,71.6,75.1,50,65,132.6,61.8,90.6,74.6,32.7,115.9,86.3,10.2,64.1,224.9,162.4,74.4,62.6,33.3,45.5,43.9,41.5,40.8,34,20.7,37.3,30.7,36.3,60.3,169.2,203.2,83.4,119.8,201.8,50.8,225.2,114,292,237.4,78.5,6.2,38.9,64.7,132,5.1,15.7,27,178.2,42.3,9.2,75.9,17.5,30.6,183.7,181.1,42.3,291.5,200.2,104.2,107.3,56.1,56,113.7,57.3,67.2,95.9,204.6,209.5,411.1,26.8,75.4,102.6,50.1,52.4,90.6,49.7,52.3,89.9,48.5,66,128.3,114.8,81.4,20.5,75.6,65.3,141.1,127.2,64.5,76.3,102.1,88.3,90,76.6,62.7,7.4,44.9,51.8,50.1,84.5,112.8,75,59.7,141.3,52.7,65.4,128.8,139.5,35.1,11.2,77.7,86.6,43.3,39.7,87.7,92.7,96.7,3.6,50.8,50.6,104,51.6,53.4,102.8,13.6,78.7,40,50,91,77.5,90.3,155,13.1,166.4,240,36,49.7,11.8,50.7,234.3,195,218.7,87.7,109.9,19.1,42.1,112.4,15,51.2,50,92.8,218.5,177.5,23.7,99.8,85.2,16.8,103.6,89.3,208.4,300.5,11.8,91.6,27.2,30.9,133.4,242.4,253.9,62.3,64.7,149.5,145.9,81.7,63.8,149.3,150.5,40.6,68.4,149.5,236,92.3,53.1,50.6,53.2,51.4,25.7,21.4,45.3,51.5,53.5,39.9,53.3,54.9,23.8,390.9,104.7,117.2,241.1,105.3,159.6,239.3,115.8,50.8,16.7,31.5,83.5,175,218.4,129.3,120.5,174.3,80,251.2,264.8,242.9,161.3,78.4,116,119.4,81.8,6.8,18.7,104.3,119.4,134.8,137.6,127,120.9,109.7,227.3,194.9,188.5,104.8,103.2,92,92.5,67.5,75.5,71,62.2,55.8,104.3,84.6,133.9,111.4,114.8,85.1,145.8,123.6,105.5,85.5,114.3,94.4,91.2,94.8,9.7,148.1,58.4,93.3,88.6,140.6,94,104.9,174.8,152,84.9,23.9,85.5,104.3,108.1,204.9,128.1,146.1,223.2,226,206.9,221.2,193.9,97.9,175.1,138.3,168.7,143.7,104.3,81.6,63.7,65.2,76.3,295.8,285.4,397.8,84.2,103.5,118.1,17.6,85.1,138.7,107.4,104.2,116,296,72.2,61.3,68.1,63.9,81.4,70.5,54.8,56,77.8,60.9,44.1,27.1,80.8,74.7,70.8,68.5,72.6,178.1,80,103.8,26.8,139.5,151.4,106.6,76.9,154.9,133.1,73.7,145.7,111.1,116.1,58.2,44.6,84.2,87.6,17.8,141.2,113.7,82.3,78.2,73.6,65.5,66.7,117.7,78.3,81.4,60.9,58.4,98.1,124.7,118.4,107,26.9,60.2,90.4,49.6,60.9,68.1,78.7,65.2,114.2,95.4,78.2,118.5,71.7,119.9,146.3,137.9,71,73.1,125.9,100.7,97.1,125.2,256.9,134.4,10.3,47.4,31.3,83.7,78.6,112.3,156.8,95.5,107.4,103.3,108.2,84,94.6,0.1,99.2,91.3,22.3,85.5,102.2,130,109.2,113.1,203.7,128.2,80.5,92.6,164.2,165.7,61.6,42.7,136.3,375.7,226.5,138.1,180.1,158.3,55.1,119.3,207.4,206.7,21.1,339.7,24,264.8,85,27.6,107.7,221.1,229.6,270.4,70,66.1,137.2,239,37.8,238.2,242.4,114.2,120.6,238.5,155.3,152.7,122.8,121.7,210.4,155.6,113.6,76.6,13.8,25.5,49,125.5,246.8,103.7,81.9,82.2,74.8,74.1,151.1,115.8,65,107.5,151.7,48.5,105.2,109.5,102.6,123.7,90,109.7,131.7,104.8,122.7,116.3,102.8,100,211.5,106.8,100.6,112.8,116.8,73.6,30.1,20.3,182,112,235.7,94.3,85.2,77.1,94.8,79.6,78.8,72.1,80.3,71.6,90,117.9,111.2,101.7,96.5,97.9,118.3,439.7,5.9,530.7,214.3,210,8,40.1,412.6,105.6,107.4,53.2,54,32.1,52.2,55.6,48.8,75.9,83.6,79.7,66.5,90.9,178.5,129.6,110,91.1,102.4,80.7,110.5,91,72.5,97.5,192,176.1,112.9,126.7,109.2,3.3,141.2,172.3,107.3,99.9,195.2,463.1,127.3,117.6,111.7,158.1,78.1,116.4,113.5,137.1,155.2,164,267.4,124.4,131.4,45.9,93.5,103.6,121.3,247.6,166.2,119.8,144.9,49.1,106.3,245.7,236.2,229.6,204.3,207.4,342.3,339,288.2,96.4,147.4,344.7,399.5,244.5,350.9,373.6,381.7,166.6,52.4,115.2,275.4,277.3,231.2,289.7,262.5,31.3,364,181.8,182.6,60.5,222.1,18.4,48.7,69.8,91.7,80,87.3,112,111.7,113.7,203.5,77.1,90.4,94.3,62.5,65.2,64.6,77,65.8,70.5,65.3,78.1,78.6,89.4,83,74.6,71.6,59.1,71.7,84.5,73.3,71,75.4,125.7,125.7,125.3,128.1,250.1,125.4,63.9,64.8,67.9,158.8,70.2,72.1,129.1,10.6,73.3,44,45.4,92.5,90.1,91.9,114.9,4.6,67.7,104,88.5,124,98.3,58.8,82,87.3,95.2,56.9,65.1,54.4,60.9,11.1,120.9,161.2,441.7,467.1,277.4,231.1,221.6,146.1,77.5,76.5,66.7,57.2,65.6,8.8,98.3,98.3,120.4,227.5,139.6,102.1,106.3,79.4,71.6,74.8,74.1,76.4,67.7,70.5,85.7,65,65.3,66,79.9,77.7,91.6,92.2,39.1,78.9,91.1,78.8,96.2,74.3,73,143.8,242.3,118.8,120.1,118.5,117.3,127.1,127.9,74.6,77.2,76.3,74.1,8.2,95.8,103.5,198,129.9,135,52.7,57.4,55.3,8.4,42.2,70.7,98,85.9,79.4,86.8,129.9,97.7,81.7,120.7,125.7,131.1,106.2,171.1,91.1,103.5,90.1,65.9,77.9,140.4,142.9,135.5,142.8,139.1,66.1,127.7,127.1,112.2,139.8,121.4,181.4,153.1,129.5,95.5,93.3,103.1,142.5,66.7,86.7,93,67.9,79,7,147.5,141.8,118.4,91.3,79.9,56.7,24.9,88.2,121.4,86.4,77.8,76.7,49.1,77.3,113.2,66.4,65.6,103.6,66.1,54.9,68.6,75.6,75.1,95,105.2,69.1,86,91.2,78.2,92.8,65.7,53.3,9.5,96.5,62,63.1,91,120,373.9,158.4,0.4,98.8,140.8,42.5,16.5,14.1,18,69.6,53.6,49.7,133.4,51.6,53.7,74.7,1.6,53.8,73,59.2,71.1,68.2,104.2,146.3,161.7,113.9,241.7,185.3,52.7,19.2,96.4,95.1,93.6,83.5,77.2,85.2,92.5,77.2,135.1,64.1,50.3,72,63.4,59.9,65.7,60,98.7,42.8,48.2,76.3,50.5,45.4,37.6,65.4,47.8,43.3,26.9,36.8,35.6,47.7,37,49.6,33.8,38.2,41.7,53.3,54.9,102,71.2,58.8,46.5,32.1,48.1,51.8,39.1,29.3,45.4,44.5,40,41,34.8,38.3,42.3,51.3,38.4,42,51.2,21.5,29.6,42.4,103.6,103.8,73.6,43.7,30,21.7,46.9,29.8,24.6,40.7,34.5,21.7,24.5,26.8,28.9,27,27.9,41.2,28.3,25.9,36.1,42,39.2,78,58,19.4,39.9,27.5,29.1,27.7,32,26.4,26.7,20.7,31.1,17.6,21,24.1,27.4,9.4,30.3,2.3,24.9,32.1,32.1,25.9,37.2,21.3,23.6,24.7,39.6,27.5,27.8,25.4,64.4,28.2,63.6,68.2,33.7,35.7,51.1,40.8,34.3,30.3,31.7,28.4,34.4,34.3,29.2,24.9,27.8,28.4,29.6,33.9,45.7,26.7,27.1,23.9,34.8,9.8,53.3,34.9,28,34,39.5,31.9,22.5,31.1,39.6,37.6,59.5,37.7,36.6,63,43.2,60.8,39.7,51.3,39.9,21.8,52.1,29.9,50,54.9,47.1,91.1,165.4,72.1,69.6,84.4,57.9,59.2,50.7,70.8,39,44.4,47.3,60.6,52.6,51.4,38.9,41.1,59.6,58.3,61.6,54.6,58,45.3,8.1,56.4,68.7,67.5,39.4,40.4,36.4,51.4,61.9,54.2,56,76.8,57.5,41.3,47.5,42.7,44.2,47.8,37.6,37,49.4,55.8,46.7,42.9,48,72.7,43.4,4.1,26.1,36.4,59,36.3,34.3,50,57.4,47.3,51.7,64.3,91,64.8,71,30.9,38.7,64.9,44.8,36.6,46.8,48.2,38.5,56.8,49.8,40.1,51.2,49,54.6,56.4,115.1,5.5,39.4,79.3,53.8,58.3,57.3,55.8,54.5,28.8,41.8,29.7,34.5,33.3,23,25.1,45.3,22.3,22.3,33.4,52,43.6,14.8,21.1,52.8,26.2,28.3,43.9,33.7,39.7,62.3,42,116.7,55.5,38.7,43,23.3,26.3,29,22.7,31.3,37.1,24.1,30.7,47.5,36,44.7,46.2,44.5,58,31.6,32.4,43.1,41.1,33.4,50.2,52.4,38.6,30.7,45.4,25.3,34.7,39.5,43.6,55.1,43.9,59.3,68.4,93,73.6,44.9,48.6,50.9,46.9,43.9,45.4,67,33.4,44,41.1,44.4,56.5,43.8,49.4,51.8,52.5,53,62.9,36.3,32.9,39.1,43.1,41.2,34,43,49.4,46.8,53.9,84.5,60.8,56.1,51.7,56.7,109.2,93.6,45.8,35,40.9,64.3,53.7,80.2,38.4,52.9,54.1,49.4,49.9,72.9,7.9,28.3,86,55.7,78.4,50.1,43.8,38.7,37,29.1,26.3,58.7,60.5,92.4,77.3,128,124.5,31.5,122.1,43,85.5,38.8,149.6,82.3,65.5,83.3,40,42.6,49.3,27.9,5.5,62.1,80.7,59.7,42,3.6,106.1,105.8,27.8,7.8,31.6,40.1,74.6,47.3,59.9,68.7,93,73.3,2.3,63.5,50.5,49.1,63.1,61.3,59.9,40.9,75.9,64.5,39.3,23.7,38.1,22.3,4.9,16.4,44.4,59.1,44.9,58.6,59.3,81.2,80.8,79,51.9,59.5,76.7,128.2,92.2,102.4,122.5,135.1,205.4,148.4,187,190.7,209.9,111.8,110.6,66.1,67.1,62.8,60.5,35.1,18.8,35.6,15,22.8,20.8,32.8,35.2,33.5,27.8,32.9,38.3,23.8,33.4,37,20.7,39,39.3,38.8,26.6,27.6,26.8,39.9,18.7,18.5,14.3,39.5,46.8,15.2,24.1,24.9,27,30,24.9,24.6,35,19.7,20.9,17.6,16.5,31.8,23.8,29.7,27.9,34.6,42.4,47,79,76.8,40.6,31.2,22.3,27.3,23.4,25.3,40.5,37.9,42.3,43.1,26.4,697.2,115.3,204.3,184.9,151.3,102.7,92.9,100,118,109.1,91.3,169.9,81,113.1,139.7,310,125.6,124.1,87.4,126.6,121.6,102.5,89.5,118,117.9,5.8,110,121,109.1,99.5,139.7,197.1,613.2,316.1,358.4,227.4,189.3,199.5,149.6,89.4,72.9,84.5,95.4,114.4,92.4,77.3,80.8,124.8,91.3,77.2,114.4,100.2,115.3,244.2,143.9,184,136.4,154.1,271.2,178.9,185.6,205.1,128.1,62,23,85.2,3.1,82,50.8,50.5,63.3,53.5,145.6,32.1,139.1,123.6,37.6,42.5,147.9,104.3,238.6,132.9,119.4,99.3,97.6,163.5,106.8,106.4,91.9,91.7,71,70.6,84.4,67.6,98.1,39.4,168.1,190.5,39.6,49,88.5,85.3,28,121.5,84.8,80.9,92.5,111.4,79.8,67.4,137,92.4,88,113.4,75.3,94.9,150.9,135.5,166.3,101.6,119.7,96.1,107.2,91.5,91.3,99.4,67.8,77.1,383.6,94.9,83.9,63.9,80.8,71,89.6,50.2,90.3,43.3,86.2,50.9,55,97,59.1,89.9,92.8,80.5,77.2,67.4,73.6,96.8,101.1,272.7,174.3,25.5,87.6,151.2,114.7,104.7,105.9,101,101.9,77.2,128,114.4,109.1,135.1,155.5,131,174.8,241.5,138.6,125.1,155.7,279.1,784,73.2,284.6,28.8,395.3,356.7,378.2,311.5,175.9,510.4,122.2,65,64.9,133.2,100.4,61.6,61.5,60,152.3,98.7,64.7,112.2,93.5,93,92.1,90.9,144,65.7,116.4,184.6,78.2,75.1,9.3,129.8,59.9,56.3,20.2,79.1,106.7,115,63.5,66,54.5,63.2,78.3,84.9,77.2,80.8,70.5,72.6,120.8,63.1,66.1,91.4,52.1,54.7,49.1,50.6,103.5,93.4,101.5,69.6,72.4,72.9,68.4,77.6,77.6,64.4,113.1,404.2,132.7,128.8,65,184.3,132.2,126.7,129.8,128.7,55.2,115.9,56.4,61.1,59.7,58.3,104.6,53.8,50.9,64,53.7,118.3,57,49.5,5.3,82.5,90.3,92,79.1,77.9,76.3,92.6,90.5,116.1,119.7,58,59.1,89.9,67.1,72.8,69.8,64.1,65.8,78.4,73.6,81.2,53.3,52.3,64.7,61.8,74.2,41.5,45.6,78.9,39.7,51,38.1,40.9,65.6,68.2,54.3,45.6,43.3,77.8,92.2,89.7,75.8,61.4,84.1,83.7,87.7,89.7,156.6,78.8,77,77.3,80.4,77.6,82.3,73.2,83.9,88.8,92.2,88.1,91,42,30.5,69.8,76.9,78.9,95.3,99.9,78,77.8,77.8,89.6,46.8,44.5,78.4,85.4,40.5,39,51.7,48.7,68.1,23.1,81.1,62.2,45.8,90.3,62.7,66.3,89.3,66.1,104.1,50.1,46.8,70.5,65.9,54.8,82.6,57.7,64.7,78.5,129.7,4.6,36.3,3.9,73.9,72,70.8,42.9,42.3,84.4,101.8,101.1,77.3,75.8,116.4,119.6,105.9,264.2,2.1,147.6,124.9,89.3,138.4,79.4,95.9,71.5,77,77.2,99.1,85.6,85.1,0.1,21.3,71.5,71.9,91.7,83.3,289.6,193.7,280.9,83.9,106.1,109.9,173.1,80.7,11.7,1.7,176,92.8,100.5,55.7,109.3,230.1,335.9,31,74.2,75.4,142.4,143,146.7,329.9,120.3,147.1,125.6,184.3,216.4,2.4,88.3,52.8,252,252.9,285.8,219.4,95.8,83.2,307.4,169.2,63.6,8,89.9,134.3,201,173.9,175.3,175.2,175.4,171.5,487.7,175.2,134.5,66.9,66.1,58.1,57.8,59,58.5,117.8,59,58.1,64.3,63,65.9,65.8,163.1,86.1,86.9,60.2,48,142.8,243.4,259.4,372.6,438.3,1082.6,288.5,86.1,85.8,110.7,113.6,115.5,76.1,61.1,61.5,118.2,117.6,109.2,109.7,20.9,80.9,80.1,244.4,126.3,21.5,144,135.7,124.7,32.9,101.2,101,58,61.7,122.9,134.8,84.9,165.8,95.2,110.9,273.6,237.2,125.3,65.3,63.5,43.4,51.9,65.1,66,52.6,271.4,51.1,41.1,37.9,32.7,26.8,44.1,50.3,26.2,25,51.5,26.3,25.4,36.3,27.9,26.4,62.4,33.5,33.7,33.5,42.3,34.6,27.5,25.9,38.8,65.4,51.8,38.6,50.8,0.9,38.5,52,50.9,51.6,54.1,31.2,30.6,51.5,51.8,46,44.5,43.4,45.6,90.3,74.5,152.7,82,42.8,47.2,40.6,37.5,64,52.8,43.9,47.5,50.7,52.6,90.8,44.6,46.7,76.4,78.7,115,187.8,269.8,168.5,66.6,67.9,71.4,73.5,64.9,61,62.6,63.1,64.6,64.6,66.5,64.4,65.9,272.5,57.4,91.8,79.7,79.5,53.4,144.4,162.3,132.3,59.7,61.6,65.6,42.6,40.9,61.5,55.3,66,67.4,65.1,103.8,85.7,75,88.8,78.5,100.5,144.2,2.2,49,129.3,40.6,46.4,47.7,74.6,72.1,151.1,89.3,74,52,5.2,46.8,103.7,55.2,45.8,10,37.5,127.2,91.2,118.4,325.2,127.1,89.6,85.4,88,88.1,118.7,133.8,287.8,143.4,66.8,37.6,196.2,258.1,149.5,111.4,38.7,207.6,292.9,193.5,74.9,74.8,75.4,75.3,74.3,74.5,64.6,64.9,66.1,62.7,88.4,82.9,78.8,99.3,108.5,262.9,221.8,242.2,249.2,240.7,169.8,179.6,100.1,50.9,143.6,444.7,11.1,208.2,102.2,111.2,74,30.4,98,88.8,43.7,43.5,118,67.3,97.6,59.4,61.5,64.8,65.3,32.8,29.5,28.7,119.6,244.4,243.8,138.4,65.7,46.7,50.9,95.6,229.4,59.1,104.9,104.4,283,423.9,67.8,408.7,210.5,293.8,246.3,158.4,160.9,183.7,167.1,164.2,100.4,49.8,89.1,99,87.7,705.6,188.8,22.9,115.8,118.8,131.5,79.5,86.8,75.8,68.8,141.4,156.3,128,151.4,379.3,30,46.4,56.2,66.9,55.1,76.3,78,61.5,65.4,31.1,31.9,36,36.4,71.7,59.3,64.1,64.1,65.2,58.5,62.2,137.3,137.2,82.6,70.9,69.2,65.2,83.1,84.9,86.4,31,42.2,46.5,84.6,59.7,62.8,160.2,64.4,62.2,79.9,79.2,65.5,74.1,61.6,40.8,43.3,39.5,50.6,67.5,53.4,50.4,46.5,55,36.7,18.1,26.8,43.6,42,55.3,43.7,75.5,79.4,57.5,89.6,129.8,114.9,153.1,160,95.1,94.6,83.5,14.3,285.6,362.4,249.3,135.2,159.4,74.2,178.6,158.8,192.7,171.2,111.7,90.9,173.8,74.3,158,176.7,145,158.9,170.1,193,155.8,128.5,115.6,521.4,1488.5,82.5,119.1,274.4,344,154.2,417.7,24.2,66.7,176.4,88.6,107.5,136,305,0.5,288.7,378.6,162.9,117.8,146.3,98.4,12.9,148.7,173.7,161.7,161.3,161.2,278,418.5,186.7,172.7,172.4,344.8,40.1,31.5,69.4,70.6,142.2,135,230.9,111.8,175.3,77.2,75.2,175,73.6,75.9,149.2,214.8,82.9,15.7,34.7,378.9,53.5,53.5,105.2,104,110.1,52.6,52.7,26.6,26.5,53.3,51,51.3,109.3,53.7,53.6,53,53,51.9,52.2,52.8,52.7,54.9,54.7,104,105.4,102.8,104,102.8,103.2,101.7,51.8,52.2,51.7,51.8,50.9,50.8,103.3,52,52.3,99.7,103,51.9,51.8,102.6,103.4,102.2,51.7,51.6,51.7,51.8,103.9,51,51.1,103.1,51.1,51.1,100.5,51.5,51.2,102.8,103.4,102.6,52.1,52.2,103.2,102.9,104,65.3,11.8,168.4,103.5,112.3,50.6,53.9,75.7,27.7,97.7,216,101.7,89.9,90.1,76.8,77.6,193.7,97.4,97.2,103.8,80.7,49.1,64,51.4,50.7,52.4,52.5,77.5,77.9,100.2,54.1,39.1,77.4,38,56.4,93.8,101.6,8.5,104.3,52.2,52.3,51.6,10.1,41.9,51.6,373.8,103.1,105.1,50.3,51.9,104,103.2,55,55,51.8,51.7,51,51.3,52.7,51.8,51.1,52.2,51.1,51.5,54.2,31.2,44.6,50.8,50.3,1.2,52.8,51.2,52.1,52.1,58.2,97.5,81.2,88.4,87.8,52,52,51.6,52.1,51.8,51.9,52.2,51.8,51.6,52.1,51.8,52,52.1,51.5,51.4,52.2,52.9,51.1,53.1,51.7,51.6,52.4,52.2,50.8,53,52.2,52.1,104.4,104,53.8,49.6,54,103.4,101,105.2,51.6,51.6,104.8,271.6,445.8,375.9,442.3,28.3,17.8,118.4,201.9,99.7,162.8,344.1,214.6,247.4,214.2,230.9,571.9,705.6,276.9,314.3,118.5,125.2,6.7,17.6,138.3,102.9,121.6,150.4,153.4,353.9,141.1,98.2,127.6,48.4,76.1,79.5,98.7,153.5,173.6,235.7,314.1,304.7,217.3,229.8,186.5,125.3,184.1,98.7,15.2,73.9,133.6,133.1,104.9,39.8,46.9,57.7,47.9,64.4,122,72.4,22.6,100.8,97.3,77.5,74.8,86,91.6,97.6,78.5,83.4,115.6,84.3,61.5,14.3,90.4,83.2,53.3,165.1,73.7,62,62.8,89.6,79.7,129.9,91.9,148.4,117.2,107.7,163.7,152.8,140.3,132.1,83.6,64.7,74.5,71.7,72.9,75.8,100.2,67.9,58.4,77.2,64.6,53.5,51.4,123.8,74.4,125.1,207,272.6,268.2,115.8,45.7,94,88.6,76.2,80.4,95,79.2,52.9,182.1,194.9,60.8,64.4,65.6,52.4,82.1,109.2,122.8,119,61.3,104.5,71.1,89.9,86.6,40.4,87.8,81.2,106.2,163.8,113.5,76.8,209.9,185.9,129.4,297.8,313.6,128.3,133.9,114.4,63.4,94.5,82.3,58.9,26.8,65.3,81.8,75.9,113.4,81.9,128.7,105.8,110,124.7,143.6,83.3,77.6,18.7,38.4,114.8,108.3,119.9,76.8,25.2,82.5,139.1,15.5,204.4,275.4,207.9,184,303.4,138.5,186,371.4,10.4,116,149.3,291.7,86,201.7,88.8,32.5,129.7,0.2,87.2,98.8,49.5,127.7,16.4,267.4,56.6,46.3,41,2.4,131,241.7,45.9,51.3,70.7,50.1,44.3,18.2,61.5,65.2,150.3,84.3,68.8,57.2,167.6,179,192.9,70.1,21.2,191.6,68.4,81.3,59.8,35.7,20.2,56.3,89.6,70,107.8,197.1,157.8,262.7,337.2,176,246.4,104.7,116.3,76.1,125.1,183.1,44.5,55.4,47.3,22.7,52,9.8,91.1,88.7,61.5,29.6,76.4,55.1,99.5,43.6,233.7,183.8,127.2,225.3,364.9,440.6,520.6,476.3,411,512.8,471.7,445.4,443.7,411.3,130.8,110.8,68.6,42.1,38.9,98.2,269.6,221.9,418.3,75.2,143,193.2,27.3,160.3,322,27.6,206.9,114.8,92.3,105.2,56.1,32.7,90.9,113,124,147.1,167.9,143.3,36.9,21.3,177.1,167.6,258.9,127.9,55.7,69.7,19.1,139.4,158.6,95.5,105.9,111.3,99.4,91.8,101,72.4,132.9,88.8,82.7,76.2,57.4,95.3,11,52,43.1,48,121.2,106.7,140,168.3,132.9,83.2,59.6,54.6,78.3,76.4,57.6,57.7,50.8,43.8,86.6,94.4,64.3,68.6,47.7,43.9,54.3,52.3,49.6,67.8,52.3,74.4,58.4,57.9,53.5,55.8,47.1,60.4,39.1,47.9,32.3,33.7,59,56.5,53.6,54.4,47.8,62,64.6,62.3,92.5,92,107.4,87.3,124.1,160,96.5,96.7,150.9,137.2,145,121.6,102.5,72.4,104.6,19.7,114.5,97.6,157.1,73.2,25.2,152.7,241.9,81.7,151.2,206.7,321.1,169.7,155.5,107.6,162,132.7,106.8,100.1,73.5,86.8,48.8,54.8,88.9,51.3,58.3,63.1,80.6,57.2,13,51.7,93.1,31.8,51.9,82.3,94.2,39.7,339.1,202,87.7,325.1,40.1,76.2,102.9,92.3,78.2,74.3,54.4,60.4,57.7,79.4,70.8,76.6,28.3,86.6,135.1,94.3,96.7,82.8,88.2,3,70.5,73.6,65.3,42.2,92.6,114.5,121,44.4,133.9,256.1,248.4,166.2,121.2,105.1,100.3,115.1,76.4,58.4,55.6,54.1,50.5,53.3,48.4,84.2,82.1,93.1,96.9,97.1,84.1,96.6,109.5,86.2,47.5,82.1,110.5,134.1,129.1,85.2,79.3,57,64.4,64.8,78.2,66.6,51.2,44.9,54.6,92.8,181,184,98.1,105,58.5,68.4,101.9,100.4,143.4,102.9,49.9,24.4,117.6,144.8,205.9,62.1,208.8,25,32.6,118.1,99.3,68.8,60.1,58.7,119.8,133.5,119.8,161.1,131.4,194.9,143.1,102.6,100.4,192.8,109.8,121.1,151.4,198.5,170.3,156.5,151.8,183.6,237.1,262.9,268,211.4,134.2,131.4,98.1,46.7,46.9,78.4,199.8,170.9,162.3,165.4,44.1,201,130.1,179.6,119.1,102.9,126.6,113.2,135.2,125.9,161.6,134.3,119,150.9,143.1,120.6,126.3,37.9,53.4,245.6,230.9,219.3,167.6,7.4,133.3,134,151.9,146.1,144,87.7,100,131.4,110.2,89.5,122,138.1,78.7,78.3,19.5,6.9,185,123.5,123.4,34.9,145.5,145.7,97.2,80.2,39.6,143,236.6,205.4,96,82.3,66.6,63.6,70.6,73.4,68.6,52.5,78.8,62.4,85.4,74.3,98.8,201.5,200.4,110.5,96.9,115.8,119.8,143.9,132.5,110.6,109.8,129,79.3,171,94,96.9,85.7,84.8,89,86.6,68.6,68.4,113.8,88.3,80.9,78.2,118.7,114.2,128,57.5,134.7,88.4,105,109.7,5,107.4,171.3,151.7,61.3,129.2,25.1,69.9,63,32.3,37.3,39.2,65.2,52.8,53.4,38,62.3,55.1,52.6,64.9,90.4,104.4,104.9,110.8,152.9,74.4,188.2,86.6,87.7,96.1,63.8,69.9,81.4,47,50.4,52.1,64.4,92.8,102,78.6,78.2,63.2,56.9,36.8,89.4,78.8,75.2,67.8,77.2,67.7,64,90.1,92.6,64.3,78.8,67,67.9,88.1,39.6,38.5,32.3,33,40.7,50.8,53,91.1,47.3,45.3,38.7,27.5,37.7,30.7,40,47.2,40.4,39,44.1,26.7,38.8,41.4,39.6,43.9,36.6,65,67.3,51.6,51.9,16.4,47.1,71.4,26.2,43.5,35.7,19,37.2,17.8,41.3,40.7,66.4,34.1,40.6,42.4,50.8,45.3,47.7,95.1,78,58.2,59.6,65.6,63.8,122.5,67.2,69.4,64.1,64.4,0,66.3,52.5,52.8,51.2,50.8,60.2,13.7,56.3,54.4,43.4,47.4,80.2,86.9,98.7,82.4,463.2,525.3,351,408.5,202.3,100.7,103,134.4,9.2,58.3,53.8,248.3,23.5,56.3,48.5,48.6,102.1,148.6,97.2,98.6,86.5,109.7,86,74.2,63.9,50,48.1,42.7,23.6,26.3,24.2,46.8,73.8,78.9,60.2,76.5,57,59.6,57.9,56.2,76.5,65.5,70.2,44.5,40.8,45.9,51.2,48.3,46.9,83.1,149.5,23.1,98.8,78.2,90,180.7,168.5,147.6,96.8,59.3,52.5,41.8,44.9,71.9,48.7,40.4,49,48.5,64.6,41.4,36.1,64.4,52.6,50.2,52.7,48.3,52.8,31.4,33.2,36.8,37.7,26,28,34.7,30,36.7,39.5,37.9,40.7,72.3,57.4,58,48.3,62.8,117.3,73.3,49.3,25,33.3,82.4,5.8,46.5,181.8,188.2,175.6,114.9,553.8,128.7,131.3,135.9,137.5,139.9,449.9,535,121.9,45.2,281,184.1,2088.4,156.4,143.5,73.3,74.1,61.2,95.4,98.5,89,78.9,66.8,61.5,91.9,63.9,79.2,90.3,64.6,64.3,54,77.9,77.3,64.9,65.5,114.2,313.8,80.6,381.2,511.5,115.3,116.8,125.7,125.2,160,78.2,89.5,115.1,113.1,52.2,54.5,85.1,87.7,74.4,67.7,45,41.4,77.6,83.3,92.1,102.9,78,83.3,156,86,167.5,153.9,42,90,65.6,64.4,76.6,76.6,92.4,90.2,156.4,492.4,687.2,166.1,78.8,78.6,74.7,37.1,40.3,53.1,56.5,48.9,49.9,47.1,44.9,88.9,57.9,56.2,45.3,88.6,89.5,83.4,83.1,51.8,53.4,107.3,204.2,289.8,35.5,169.6,144.3,127.9,107.3,51.5,78.5,40.1,50.9,63.8,52.5,105.3,63.9,63.8,68.3,72.5,52.8,54.2,51.1,81.8,73.5,44.3,51.4,57.9,60,66.8,72.4,110.5,104.5,92,93.6,143.5,96.4,97.7,96.3,99,99.3,98.1,115.1,114.2,74.8,67.6,9.2,155.2,122.6,127.5,121.1,121.4,122.7,141.7,131.4,105.7,105.7,137.7,139,90.3,90.8,119.3,120.1,89.5,143.2,144.3,75.3,77.5,77.7,75.7,216,168.8,48.8,118.1,50.6,66,32.8,34.5,65.8,75.7,36.7,54.7,54.5,78.2,38.8,40.6,40,41.1,48.1,49.5,42.1,53.7,51.1,89.8,234.5,905.1,170.7,66.3,24.6,69.6,39,40.7,43.4,55.3,53.3,63.5,66,64,39.7,41,33.8,57.9,94.8,134.7,575.4,260,108.7,215.2,116.4,58.9,52.2,57.1,56.3,60.3,102.4,80,62.9,66.3,66,60,53.6,42.7,50.7,40.8,52,64.2,52.1,52.7,51,40.5,39.4,52.5,47.8,49.1,17.5,40.6,51.3,78.9,65.5,50.9,79.1,472.1,26.1,19.7,184.2,106.4,63.2,80.2,33.6,31.4,25.6,25.7,26.6,24.5,25.9,26.1,25.8,25.1,43,50.6,13.2,20.9,31.1,55,38.7,30.4,59.2,50.5,25.5,30.4,20.4,6.9,8.8,33.7,217.1,74.1,89,64.9,123.8,29.2,61.6,34.4,89.7,312.1,96.7,344.5,634.7,100,49.1,65.9,36,37.7,30.6,35.8,48.2,50.8,33.6,44.7,63.5,48.9,40.7,50,49.5,40.8,43.3,38.9,3.7,31.5,35.6,49.4,58.2,39.8,43.8,51.4,76.4,40.3,38.2,77.1,50.6,38.9,50.8,33.7,37.9,37.7,39.3,35.9,44.1,44.4,47.1,46.4,50.7,63.3,127.8,102,101.4,31.9,100.7,51.1,52.2,41.2,29.5,29.6,29.1,38.3,39.8,52,31.6,34,36.4,31.2,22.4,38.4,36.8,46.2,34,39,38.6,31.3,34.9,32.9,20.2,44.6,18,33.2,14,36.5,41,37.3,38.4,29.7,34.2,71.8,24.5,81.3,30.3,32,39.6,40.9,41.3,38,32.6,30.3,29.1,50.9,26.7,33,30.7,37.5,35.7,31.6,59.8,118.4,229,278.4,279,247.8,151.7,328.5,52.6,153.1,105.2,71.4,74.1,66.2,66.8,82,80.9,83.2,134.6,128.5,87.8,2.1,87.5,231.4,186.4,150.9,267.5,180.5,197.8,69,24.1,80.8,97.3,91.1,54.2,58.7,86.3,82.9,95,32.1,51.7,68.8,91.5,98.3,130.1,143.1,301.1,348.7,214.2,175.6,188.7,138.9,93.9,71,51.7,74.5,72.1,101.6,73.5,73.6,61.8,60.9,75.5,63.9,90.1,74.4,82.9,60.3,62.5,61.4,63.6,48.4,47.4,81.3,7.6,52.7,53.9,103.8,84.2,38.4,85.2,124.7,83.9,106.4,8.9,162,104.6,98.7,63.7,140,35.7,100.6,82.1,97.5,16.8,52.9,79.1,74,36.9,58.3,68.5,67.1,50,77.8,82.2,29.3,40.7,80,90.3,100.1,35.7,30.8,97.8,97.7,64.8,86.9,48.1,37.7,71.8,100.4,110.9,99.9,79.4,151.1,156.9,70.9,273.4,259.3,96.5,65.3,32.8,288,22.8,58.8,56.9,67.1,54,39,68.9,45.5,59.7,65.6,173.1,137.4,330.8,37.6,42,17.3,329.9,130.1,39.9,40.9,30.7,38.5,50.7,59.6,69.1,104.4,45.4,17.6,33.4,116.3,83.2,36.1,36.2,32.8,36.3,37.7,28.8,36.3,20,19.3,17.6,19.6,28.3,25.4,26.6,27.4,25.8,75.8,106.5,77.9,34.9,6.2,25.4,24.5,29.2,28.7,20.2,25,32.4,30.6,27.4,29.2,36.1,41.9,36.3,26.2,17,19.7,16.2,7.7,32.4,82.7,100,102.2,58.9,3.8,58.2,55.7,19.5,45.1,34.6,48.2,34.4,98.1,46.5,9.1,162,11.2,18.1,20.9,50.8,53.2,59.7,61,119.9,120.3,167.5,75.4,94.5,50.6,50.7,46.4,48.2,54.2,129.4,32.1,26.1,15.5,7.9,85.2,184.7,34.7,239.8,58.8,117.1,175.7,53.9,246.6,53.4,246.5,28.5,21.7,64.9,232.2,47.4,13.7,15,16.8,10.9,12.4,11.6,11.2,87.8,40.6,14.1,13.5,31.5,19.6,39.4,10,9,7.3,7.6,9.6,15.9,7.9,6.9,6.3,9.7,249.3,7.7,8.2,8,7.5,23.7,62.9,24.7,10.4,6.7,7.3,6.2,3.9,3.7,4.4,4.4,4.1,4.7,5.3,4.2,3.5,13.9,14.3,23.3,15.7,40,48.6,58.1,49,47.7,65.8,1027.3,54.1,55.8,19,64.9,92.2,178.1,25,37.6,16,18.4,62.2,4.3,71.6,57.2,14.6,10.4,7.6,6.8,7.3,5.8,6.1,6.7,6.1,6.6,7,6.1,6.6,5.8,6.6,5.3,45.6,32.4,7.6,13.4,13.1,18.7,30.5,131.7,227,56.5,56.3,112.7,64.5,266.8,38.1,25.8,25.3,25.7,25.7,16.4,18.3,50.5,305.5,53.9,39.7,19.2,18.2,20.2,19.3,12.1,36.4,24.3,25.9,31.4,30.5,35.1,22.5,18.4,20.1,18.1,19.7,13.7,16.4,24.5,25.2,24.3,25.6,24.9,23.8,24.3,26.9,170.3,19.4,12.8,13.6,12.5,21.6,24.7,25,24.8,18.6,17.7,26.2,25.1,108.2,1.4,284.4,202.4,52.5,13.5,11.7,10.5,13.8,12.5,12.5,13.7,12.2,13.1,17.4,13.9,32.6,37.9,44,120.9,95,22.4,19.1,24.3,27.1,22.5,24.1,19.6,17.4,18.2,18.9,17.8,17.3,17.6,16.8,18.3,17.8,18.3,16.8,41.1,19.9,516.3,17.1,30.2,11.8,15.4,12.9,31.6,15.3,13.8,17.5,16.7,12,13,14.8,32.1,14.5,13,23.4,18.2,20.2,540.1,72.3,50.4,74.7,74.2,342.4,292.6,28.3,37.1,27.1,36.4,34.7,13.8,4.3,26.1,28.2,28.3,37.4,39.1,30.1,36.2,44.4,46.2,51.8,32.1,34.4,53.7,57.9,33.2,38.8,39.8,33.2,32.7,172.6,96.9,96.6,39.9,38.8,83.2,71.5,72.1,93.2,52.6,79,35.2,44.5,131.9,91.6,66.3,65.9,40.5,39.6,46,45.9,78.7,39.6,39.2,33.8,33.2,38.5,33.3,31.8,28,32.2,33.4,38.2,44.5,43.2,42.8,41.8,52.7,53.5,52.2,53.1,73.3,73.7,104.5,67.2,84.2,110.4,95.2,71.3,100.6,46.4,56.6,56.4,95.1,143,53.4,53,54.8,31.9,32.6,37.7,32.4,82.6,85.3,39.8,39.3,74.9,64.4,70.3,28.3,29.7,51.8,53,53.3,52.9,52.4,53.7,100.3,152.6,56.5,56.7,69.3,70.4,64.6,70.1,76.6,80.7,77.8,132.7,171.6,91.7,91.6,51.6,51.7,50.8,50.9,77.6,76.5,76.9,63.7,76.5,64.9,62.5,64.2,63.1,38.3,38.2,45.8,44.5,50.9,49.8,64.4,64.7,75.6,50.9,52.6,30.1,32,37.3,38.3,87.3,54.1,62.2,51.7,62.8,114.9,48.8,44.7,48.8,50,37.9,39.2,37.7,38.3,51,31.8,19.3,24.9,26.5,37,27.2,25,25.4,24.6,26.6,38.3,17.8,18.6,22.7,23.6,23.5,12.1,12.4,23.6,24,11.4,12.1,22.5,40.6,54.5,77.2,74.7,74.5,77,119.1,68.2,36.1,30.3,63.3,63.2,64.9,73.6,106.3,122.5,128.2,158.9,52,167.3,44.7,65.5,0.1,74.4,117.2,5.3,31.3,20.8,29.1,73.8,104.2,69.2,68,54.4,64.7,27,32.7,24.8,29.8,23.1,22.9,19.1,28.2,26.7,39.7,39.1,31.7,26.3,23,40.1,44,45,42.1,47.9,85.1,26.2,39.1,40,27.4,27.1,40.1,43.4,37.8,10.4,19.1,29.8,27.2,28.1,50.3,39.1,36.8,40.1,39.9,41.1,38.9,36.2,43.4,39.1,37.9,46.8,26.2,42.7,33.2,57.8,49.3,31.8,32.8,49.6,52.6,70.9,42,43.2,75.3,97.2,119.6,143.7,70.1,78.6,78.3,122.9,107,86.2,120.9,62.1,60.5,83.1,62.8,61.6,69.3,68.8,56.2,54.3,64.8,64.9,67.5,45.6,44.1,71.5,59.8,52.4,51.3,50.1,17.7,69.7,16.5,31.8,56,48.7,29.4,25.7,58.1,32.4,49.5,59.5,59.2,35.3,35.5,28.7,17.2,15.5,38.2,27.5,19.5,13.4,17,18.6,26.1,18.6,18,21.2,20.5,29.5,28.2,64.2,46.7,6,23.8,25.4,20.9,19.1,25.1,18.8,19.8,33.2,31.1,28.3,26.4,33.1,38.8,35.4,37.8,23.6,32.1,19.4,20.8,15.3,16,15.1,24.3,26.5,335.4,43.1,34.6,55,51.5,64,51.7,38.1,38.3,39.9,45.4,78.3,92.1,46.7,38.4,35.2,29.9,36.3,36.4,30.3,37.9,38.9,38.2,41.3,33.3,39.3,40,35,32.8,33.2,31.5,33.8,37.4,35.4,32.5,42.6,45,59.9,90.3,94.7,46.1,35.7,32.4,31,12.8,31,34.9,33.6,61.2,53.5,54.4,34.1,30.9,32,40.2,33.7,55.3,46.9,43.2,35.9,35.2,29.5,35.3,42.2,34.3,40.2,29.8,37.2,43.1,148,67.1,64.4,56.8,37,28.6,37.2,31.2,36.4,29,31,35.5,32.4,48.8,92.4,26.1,44.9,47.7,58.6,27.2,26.2,9.7,27.5,30.2,30.9,28.3,26.1,37.9,44.8,6.1,46.9,28.6,26.2,18.3,20.5,19.1,12.4,9.1,32.6,35.9,20.6,12.8,23.5,29.5,38.2,29.2,26.4,32.5,25.6,23.7,25.5,33.7,23.1,30.4,44.6,78.3,213.8,62,26.9,34.4,19.9,23.5,26.2,22.4,25.2,22.9,27.7,18.8,37.5,22.8,24.6,41.5,56.9,48.8,103.4,61,47.4,41.2,41.9,47,39.1,38.3,31.3,36.2,31.5,25.1,30.5,36.1,8.2,19.5,29.4,23.8,27.1,26.9,26.1,30.9,22.1,29,49.9,78.8,110.3,36,35.2,28.4,24.8,23.1,22.5,25.9,32,43,20,20,30.4,29.5,131.4,101.3,5.1,5.6,17.5,31,57.4,31,94.4,84.2,112.6,20.4,20.1,34.1,33.2,109.9,31.2,85.1,71.3,89.2,9.8,232.9,36.2,60.2,64.3,58.8,69.6,49.6,70.8,31,99.2,80.2,89.2,56.2,56,81.6,89.4,77,79.5,100.2,4,9.9,121.9,47.2,96,85.7,95.2,170.6,325.9,306.2,209.2,82.9,101.4,78.3,96.6,92.4,91.2,152,219.5,226.1,68.2,68.3,61,41.1,35.5,40.8,64.1,43.5,48.2,42.6,50.9,26,64.6,27.8,32.3,64.5,18.1,50.8,67.3,48.2,58.7,48.6,26.2,77.5,86.3,83.1,45.7,70.9,35.1,34.7,37.5,32.3,38.7,38.8,39.4,33.6,38.1,51.6,47.7,47.6,36.6,35.2,50.6,40.4,40.8,52.7,63.1,48.8,38.8,35.3,34.5,36.5,47.5,55.3,41.3,32.9,48.9,51.6,64.2,71.4,85.4,95.7,182.8,80.8,57.6,98.2,27.1,30,272.4,275.1,157.4,121.8,127.6,61.8,133.4,192.9,85.3,74.3,16.4,32.1,57.1,48.2,52,48.2,46.8,69.8,53.1,46,17.1,45.4,71.1,49.2,33.4,30.4,41.1,47.9,50.8,44,42.1,44.3,34.3,34,42.8,39.3,16.7,44.2,25.5,30.2,57.3,52,44,39.9,55.4,36.7,62,60.2,99.2,91.6,60.7,26.1,62.8,65.8,43.3,35.1,32.2,25.8,33.4,39.9,30.2,27.1,42.4,34,34,37.7,38.4,55.5,108.4,41,32,27.2,43.8,47.3,38.9,27.1,27.8,31,24.5,21,29.6,37.3,28.5,29.7,60.9,39.8,144.6,123.7,42.1,69.3,68.2,61.4,50.3,55,89.9,101,116.8,153.6,96.2,52.3,47.7,18.9,51.2,10.4,43.6,40,72.7,67,64.9,69.3,112.6,256.9,71.7,301.3,225,227.1,33.5,177.5,75.7,49.7,33.5,115.8,0,199,123.7,96.6,93.5,60.7,79.9,78.7,115,67.1,108.2,104.3,84.3,8.7,62,26.8,22,71.3,103.6,141.7,109.3,51.2,43,34.4,39.7,34,40.4,33.2,48.6,79.3,94,12.6,21,58.5,40.9,79.4,118.8,126,111.7,70.9,46,35.4,37.3,43.6,39.3,42.4,35,54.4,53.7,61.8,69,64.1,16.6,39.7,48.1,24.5,61,49.6,48.6,49.5,52,42.4,43.1,55.6,62.7,143.5,147.2,50.2,47.5,41.5,36.1,34.3,36.7,40.3,39.7,30.6,46.4,38.1,39.9,40.1,21.3,12.7,44.6,47.3,26.2,48.7,39.3,30.5,32.9,34.5,38.7,43.7,38.5,32.5,39,52,90,92.2,62.1,78.2,71.5,55.2,39.9,45.2,39.2,41.1,39,34.7,47.4,48.5,63.4,69.9,55.9,47.8,58.3,5.7,52.1,58.6,59.6,74.6,76.8,82,230.3,231.9,152.5,77.6,78.7,106.3,38.2,51,43.4,53.4,82.7,71.2,67.2,52.7,49.9,70.8,66,78.5,67.7,80,66.3,60.6,81.9,64.8,62.1,66.7,47.8,54.8,135.8,163.5,21.2,72,52.7,168.3,88.8,66.7,58.8,59.2,59.8,68.9,71.2,50.9,60.9,66.1,68.8,56.8,66.2,66.9,97.5,44.7,43.1,58.4,48,75.4,63.5,42.7,56.8,49.7,83.1,54.8,29.3,66,68.8,75.5,62.8,53.7,53.4,44,30.8,59.1,66.2,67.1,66.1,134.1,264.8,71.3,69.8,73.3,68.2,64.2,58.2,91.2,106.4,107.8,85.6,79.7,82.5,83.3,53,38.8,32.5,91,52.2,37.4,79.9,93.5,86,106.9,121.9,113.2,126.8,43.5,86.7,45.1,54.6,44.1,54.5,29.7,27.6,42.3,9,52.6,82.6,56.3,56.8,64.5,76.4,47.3,48.5,72.2,74.8,37.2,42.3,44.1,43.8,40.9,50.1,55.8,53.1,41.4,76.2,37.7,44.5,61,60.3,44.2,40.3,54.5,51,49.4,47.6,45.2,40.8,42.5,50.1,43.2,32.6,48,58.3,54.5,62.8,30.9,41.8,80.8,64.8,46.6,37.3,50.2,53,49.6,44.8,31.3,27.3,47.4,49.7,42.7,40.7,38.2,65.1,53.8,77.2,55.8,50.1,115.7,94.2,124.2,71.8,40.3,45.6,44.4,52,68.1,44.8,52.7,43,96.2,70.4,64.6,49.3,48.4,40.5,48.9,50.3,52.2,42,50,76.6,60.2,39.6,32.1,58.5,63.1,67,79.8,49.5,60,33.4,43.5,49.7,54.9,45.1,46.2,52.9,49.7,74.2,39.5,56.8,79,75.4,199.7,201.1,200.4,199.6,26.2,141.4,109.9,124.9,60.6,62.5,141.3,164.1,147.5,94.3,71.1,33.1,91.7,27.7,56.5,69.3,71.7,60.1,46,61.2,64.9,84.7,87.1,18.1,104.3,93,65.5,62.6,65,62.9,87.2,87.3,122,100,22.5,113.6,137.4,134.8,176,84.6,90.1,116.1,78.6,84.7,54.3,59.7,85.4,91.9,87.2,97.1,84.4,61.9,76.3,63.9,78.8,75.5,78.4,49.8,52.7,68.5,86.3,149.1,124.9,69.9,106.4,112.1,109.2,120.2,127.3,242.1,488,93.3,93.6,53.9,61.3,60.2,68.4,67.1,67.5,60.2,57,57.5,65.2,77.1,75.1,40.6,114.9,66.3,59.1,55.8,63.7,64.1,58.7,88,61.9,57.8,6,63.9,70.8,76.8,58.4,62.1,62,62.2,88.3,60,72.9,61.4,73.6,73.7,61,128.1,68.1,89.5,58.5,65.7,74.5,47.5,43.5,54.9,32.8,38.1,58.3,62.2,65.1,58.5,60.1,54,51.5,50.2,55,51.4,53.2,38.6,24.4,8.6,31.7,12.6,63.2,62.9,41.9,40.8,113.6,34.4,73.1,125.4,47.3,67.3,79.2,70.1,82.6,114.2,118.8,98.8,76.2,115.3,108.3,103.4,206.2,207,181.8,130.6,244.6,158.5,77.2,62.7,67.4,65.9,111.6,82.5,80.2,116.4,142.1,169.9,171.9,77.9,76.3,92.2,93.2,88.8,105.7,132.7,70.9,70.8,63.2,63.1,124.1,67.9,73,87.6,36.1,79.1,81.6,81.8,19.4,34.1,60.9,139.3,162.1,90.9,58.7,63.4,67,94.6,94.4,88.2,69.4,118.7,150.4,150.3,130.9,131.5,89,83.4,125.6,120.2,86.6,88.4,61.1,29.4,68.2,102.9,67.2,39.5,101.5,82,85.4,91,118.4,170.5,100.3,56.2,54.6,52.6,32.2,64.5,46.9,11.4,56.3,56.8,53.2,97.6,188.4,76.3,105,61.2,26.6,87.5,9.1,99.4,19.5,30,28.4,14.3,5.8,23.4,56,78,130.7,74.1,61.7,116.6,18.7,24.6,42.7,44.9,9.6,45.3,34.5,29.3,29.5,35,36.8,34.7,33.5,44.3,30,65.1,77.9,95.2,77.7,66.3,43.5,61.1,51.4,55,60.7,60,59.4,61.8,48.5,74.6,54.8,66.4,60.9,44.1,28.3,82.3,146,64.4,65.1,63.5,68.8,98.7,151.4,154.7,5.3,16.5,42.7,57.6,74.8,70.4,68,71.9,47.7,46.5,47.2,52.7,51.4,52.6,48.8,48.5,55.8,11.7,55.3,112.1,86.8,63.5,65.7,88.8,148.9,82.5,62.4,57.5,42.8,52.8,70.3,66.5,63.3,57.3,59.1,58.9,114.1,63.2,56.3,105.2,119.3,105.7,35.2,93.8,76.2,111.1,79.9,82.5,56,68.2,28.4,102.3,69.1,70.8,98.6,69.3,90.6,50.1,58.3,86.1,90.6,184.2,178.8,89.7,97.6,66.5,57.5,96.1,96.8,52.8,5,21.5,91.5,107.6,129.2,39.7,92.8,243.4,71,114,110.6,69.5,70.5,69.6,86.9,83,134.4,118.1,33.4,37.9,75.4,215.9,50.8,17.3,101.9,259.2,356,144.7,129.2,48.2,38.6,77.7,20.6,37.8,107.2,80.1,29.3,51.7,84.2,100.7,98.4,91.3,69.8,79.5,55.8,77.1,78.7,59.8,59,84.3,44.5,49.2,45.2,64.2,143.3,204.1,172.9,43.7,80.4,59.1,67.9,79.2,40.1,49.6,56.5,123.6,123.8,124.5,145.6,73.6,142.5,241,161.2,234.3,269.1,55.5,422.1,194.5,64.6,71.4,96.4,143.2,75,212.4,206.3,263,408.1,251.1,139,131.2,99.9,61.3,107.9,250.2,314.6,223.9,130.6,124.8,115.1,130.2,88.6,89.7,118.2,135.3,127.5,78.1,83.3,17,72.3,131,123.1,109.2,172,88.4,91.4,108,54,115.6,115.2,114.5,117,54.7,51.3,68.7,58.6,62.8,53.9,57.6,84.3,62.7,58.4,78.2,70.6,59.9,52.4,78.8,74.8,54.7,86.5,59.4,57.3,128.9,157.2,161.4,32.9,146.1,114,85.3,70.1,34,70,89.5,116.7,73.9,97.1,58.8,73.2,66.1,109.5,87.9,94.8,93.4,79.9,65.5,121.4,127,115.5,124,132.1,19.5,88.8,210.2,40.7,94.2,95.5,33.2,54.2,59.8,74.1,125.1,90.5,9.5,34.5,34.5,117.2,97.7,87.4,68.3,77.1,97.4,57.5,16.5,9.2,211.9,76.5,108.5,78.9,70.5,67.3,76.8,105.9,68.6,69.9,28.6,67.7,40.3,66.9,56,63.5,72.7,68.5,119.2,151.3,53.7,115.7,76.5,49.8,55.2,54.5,53.6,64.3,51.4,76.6,47.5,63.2,29.6,18,103.6,86.4,110.7,97.5,62.9,81.7,104.7,58.6,61.4,62.7,40.5,28.8,52.5,64,76.3,53.2,73.3,73.5,107.8,85.9,89.1,63.7,65.4,94.9,56.1,45,65.4,10.4,85,89.5,111.6,91.7,71,77.4,59.4,46.9,74.3,96,118.5,109.8,92.6,58.7,93.8,176.2,181.2,117.9,25.5,45.6,60.5,79.1,61.5,64.4,72.9,101.1,17.3,69.3,82.5,61.6,66.7,61.5,79.1,82.7,108.2,126.5,163.2,161.6,65.5,72.3,66.4,89.9,93.3,88.1,86.3,74.5,70.5,79.4,58.2,61.9,56,75.1,64.7,64.1,75.9,49.8,57.8,126,110.4,83.2,76,30.9,260.4,186.1,73.5,46.5,93.2,113.2,135,137,149,122.6,55.7,62.9,110,152.3,151.3,211.7,214.7,13.8,59.7,108.4,77.1,64.8,81.9,71,69.2,53,57,67.8,66.2,76.7,89.4,65,92.2,63.7,50.7,69.9,51.5,271,256.1,272.5,147.3,215.7,106.1,114.8,123.8,74.6,70,71.3,83,84.2,125.9,80.1,68.5,80.4,91,88.2,111.3,109.9,96.9,90.4,80.6,67.6,79.4,95.4,71.7,81.5,71.2,62.8,59.3,68.5,26,75.8,95.1,87.9,106.4,79.7,72.6,15.6,63.6,12.2,83,91.8,93.2,92.2,90.1,103.1,143.1,114.7,61.9,61.6,100.2,109.8,86.5,101.6,3.5,65.2,77.3,82.2,73.6,31.6,130,67.9,165.5,46.2,256.2,203.4,202.5,110.7,111.7,90.4,77,88.9,86.9,60.5,62,77.4,78.4,92.8,106,78.6,90.5,84.6,74.6,64.7,78.3,109,95.6,82.2,115.1,118.8,111.9,68.4,68.7,82.6,61.5,37.9,56.1,45.1,58.4,72.1,83.9,80.7,79.1,83.6,89.9,143.4,148.4,29.5,161.2,100.9,97.7,150.2,108.5,114.7,221.2,100.9,100.2,95.8,63.9,35.9,33.3,137.3,98.8,63.2,63.5,90.1,87.5,90.4,72.3,89.9,156.4,147.2,158.1,166.6,126.8,129.7,82.9,81.8,79.7,60.1,53.2,96.3,66.6,68.7,57.5,34.4,47.5,41.6,62.3,65.6,68.7,93.7,127.2,81.3,76.4,67.9,57.7,49.3,50.6,42.5,76,54.7,78.7,41.2,74,61.6,48.6,57.2,55.6,72.2,76.8,39.8,57.5,112.3,106.1,98.4,49.8,67.7,55.6,62.1,74.4,79.5,69.8,77.9,88.9,82.4,88.5,82.9,74.3,105.6,101.1,133.4,115,79.3,99.4,99,162.6,354.9,20.5,62.4,115.4,161.9,121,136.6,163.7,78.7,84.7,44.5,48.8,53.7,59.3,50,54.1,77.7,101.5,67.1,81.9,85.2,99.9,79.7,145.4,172.2,19.4,201.4,208,160,91.3,75,131.3,65.6,69.9,100.2,93.7,77.6,64,56.7,107.1,61,57.2,66.6,63.2,151.4,160.9,168.4,118.7,120.5,122.8,111.2,68.5,71.7,127.8,116.4,131.9,43.9,51.6,35.6,43.1,140,153.4,133.3,18,144.4,99.4,133.8,180.2,116.5,161.9,108.3,153.3,82.9,56.9,134.4,44,97.9,110.5,85.1,86.5,71.3,124.2,81.8,81.3,82.9,79.1,119.7,122.9,110.3,34.7,46.4,43.3,50.6,89.2,93.4,70.6,65.8,105.5,75.1,41.8,39.3,33.8,67.9,93.8,72.4,72.8,85.5,61.1,64.4,67.8,66.4,75.3,59.6,82.1,84.8,140.1,263,239.7,161.6,160.1,215.5,218.3,183.4,65.3,192.9,198.3,234.1,116.6,115.8,99.2,94,88.2,113.2,67.6,51.9,166.2,212.4,155.8,127.2,122.1,11.3,118,110.1,134,8.6,106.7,129.8,141,126,127.3,31.5,108.8,25,90.8,114.7,155.4,226.2,259.1,227.6,161.1,214.2,1.8,195.9,125.1,126.6,63.3,197,260.3,122.5,91.3,108.5,85.4,196.3,106.7,100.2,99,76.7,80.3,64.3,74.4,78.7,67,90.5,60.6,75.1,135.9,148.8,201.9,195.7,79.2,50.9,45.1,4.3,82.4,68.5,75.1,54.5,52.4,54.6,55.9,54.3,52.6,52.8,101.4,99.7,64.6,112.9,115.8,54.8,24.7,8.7,77,22.2,91.7,61.9,54.3,61.2,39.9,45.9,63.5,1.7,51,52.1,54.7,56.2,60.2,69.4,44.1,42,77.2,54,80.8,124.9,200.7,130.6,143.1,27.6,46.7,103.6,170.1,177.9,132.9,103.1,101.6,100.1,205.2,93.4,106.7,174.9,66.1,229.4,295.7,289.5,208.6,245.3,169.4,47.9,93.7,111.6,63.5,117.2,122,242.1,61.5,228.2,237.6,122.6,66.1,51.1,53.1,63.5,40.1,27.6,71.8,57.6,58.1,87.5,66.3,77.3,103.7,11.2,11.5,79.5,115,150,62.2,67,61.1,55.1,71.6,54,49.1,78.2,66.6,63.3,64.2,61.2,67.6,14.5,75.9,30.2,84,19.1,172.6,61,56.6,94.4,63.8,59.4,65.1,61.2,72.9,61.9,57.1,43.2,73,70.2,79.5,121.3,125,47.9,67.3,68.3,52.8,56.1,92,91.5,49.2,51,53.4,44.9,39.9,37.5,30.4,53.3,9.6,54.2,43.4,51,38.4,42.1,28.8,28.3,20.1,22.4,40.1,37.9,27.7,36.4,37.7,42.2,43.4,100.5,62.1,63.7,35.2,35.6,45,26.5,26.5,49.7,21.9,23.7,44.1,29.6,25.5,39.1,34.5,15,23.7,27.1,34.6,36.4,33.1,31.8,30.9,33.4,38.9,42.8,61.6,50.9,9.9,61.6,76.8,46.4,69.3,64.4,34.9,34.7,79.8,68.9,240.3,66.6,75.1,52.3,52.5,59.8,69.6,52.1,72.7,58.6,57.3,72.1,72.3,67.6,68.6,54.6,75.3,75.8,2,71.5,75.4,39.2,38.9,55.8,57.6,38.3,32.2,44.1,32.1,71.8,47,48.7,57.1,57.8,53.9,55.3,56.1,69.7,118.6,100.1,177.8,79.3,77.2,94.2,20.2,171.2,185.1,107.2,69.4,81.5,133.5,569,84.2,229.6,108.4,188.8,105,37.5,38.3,30.9,37.6,25.3,39.2,77.7,282.1,17.9,55.2,153.1,315.3,82.2,129.7,96.8,154.4,69.1,60.2,30.8,28.1,45.9,29.7,28.1,116.6,121.1,132.9,70.4,70.5,86.4,42.2,29.7,29.7,33.3,29.1,28.8,49,42.1,10.5,60.9,60.3,75.6,73.9,118.7,63.3,151.9,129.8,201.1,83.7,282.1,113.3,52.7,52.7,135,433.9,58.4,268.2,389.3,52.9,53.8,90.7,93.3,84.5,46.4,49,49.2,52.3,82.2,95.4,80.5,86.3,89.3,97.8,119.2,111.5,16.1,32.2,405.3,330.6,256.4,185.5,57.8,64.2,151.8,75.8,74,65.5,140.8,151.4,157.8,60.5,60.1,63.5,48.4,55.5,29.9,72.2,7.3,35.5,76.2,60.9,84.2,77.8,839.6,215,213.6,134.1,71,66.3,67.8,61.6,145.5,60.9,67.9,185.5,137.2,124.8,132.9,94.3,64.5,45.3,105.2,69.2,263.6,124.5,68.2,110.9,122.7,142.1,342.9,805.7,133.6,51.7,23.6,101.7,98.3,173,109,86.2,63.3,61.5,48,47.5,116.7,79.4,50.7,152.8,235.9,554.1,115.3,51.8,44.3,63.7,65.7,58.4,49.4,73.7,62.5,67.5,79.8,47.7,14.5,83.2,37.6,156.8,105.1,60.6,65,54.3,72.5,45.3,59.7,79.8,30.8,36.4,38.5,28.1,41.4,63.7,55.2,65.7,117.1,28.4,151.7,29.2,105,30.5,81.4,51.6,36.1,37,89.2,129.8,102.4,108.9,116.1,160.2,125.3,64.7,59.9,568.5,79.6,58.3,44.8,54.1,79.6,265,18.6,6.8,48.7,228.1,26.2,291.1,630.5,65.9,63,52.6,59.6,73.5,88,19.1,36.7,46.1,68.2,70.4,106.1,105.3,550.1,166.7,42.8,336,37.8,490.6,103.9,180.7,29.6,235.3,362.2,73.6,34.4,43.5,86.1,7.6,1025,607.3,442.2,67.1,31,56.5,55.3,49,55.4,46.7,60,876.1,111.3,1006.2,42.6,928.4,334.9,104.8,50.5,57.9,57.1,71.6,431.2,109.2,302.8,60.2,52.8,67.2,48.2,39.9,45.4,47.3,68.2,28,28.3,44.4,46.1,47.4,8.8,65.3,73.6,80.7,66.3,54.7,71.4,57.7,120.3,88.6,112.2,30.8,61.2,51.8,50.8,56.2,68.2,60.8,66.1,79.5,115.9,156.3,101.2,93.8,103.3,94.3,76.1,68.7,75.8,65.8,57.6,59.5,66.3,82.1,75.8,75,85.1,58.5,69.3,30.5,33.8,65.6,61.5,69.2,125.9,34.1,69.5,95.8,145.8,156.9,90.8,95.1,77.2,63.9,100.5,79.7,81.2,167.7,132.6,135.4,459.3,455.7,249.9,111.8,118.5,149.1,96,34.5,83.1,96.7,190.1,201.6,224.1,105.5,101.8,118.6,99.3,112.2,108.8,131.2,124.1,79.1,71.5,82.3,88.1,77.9,49.2,77.9,90.1,122.6,128.1,212.1,121.9,115.1,89.3,113.6,82,99.3,131.4,135.1,111.4,124.4,129.8,128.1,108.5,2.9,109.9,122.9,195.1,99.3,117.6,125.2,191,68.9,147.4,99.9,60,46.5,86.6,42.2,42.7,61.2,90.3,103.1,108.6,73.6,72.5,75.7,76.7,90.4,99.6,118.6,130.6,228.1,154.9,137,276.7,188.6,95.8,105.7,228.6,123.2,132.9,109.9,111.2,118.1,82.3,41.4,117.9,121.5,202.1,99.2,89.6,103.3,87.3,87.3,73.2,65.4,79.8,65.6,60.1,102.6,96,106.2,110.6,51.9,55.8,167.5,293.2,135.2,127.6,105.2,92.5,91.3,139.4,59.7,65.2,606.6,188.1,190.1,29.2,176.2,209,226.7,238.8,200,206.6,338.9,92.4,130.5,82.9,102.9,108.4,99.9,108.4,131.3,166.7,165.1,94.8,100.4,94.5,96.2,185,14.8,5.1,24.6,82.4,130.8,88.6,90.3,22.7,44.7,207.7,76.8,39.8,173.1,72,33,128.5,120.4,110.2,87.8,123.2,114.1,156.1,235.8,196.1,114.3,91.9,92,74.8,84.9,90.4,76.9,25.8,94.8,114.4,98.3,107.7,218.8,136,140.1,156.8,87,94.7,85.3,17.3,70.9,0.1,174.1,92.5,108.5,68.7,1,67.8,56.6,47.2,40.7,57.6,103.7,92.2,40.8,64.5,54.9,60.3,110.2,124,151.5,0.4,257.7,82.6,134,39.6,116.7,83.6,62.5,56.8,155,236.6,244.3,157.2,215.8,107.1,141.6,70.1,81.4,108.6,67.8,354.1,158.1,153,100.6,85.3,114.4,0.8,115.4,109.3,111.9,99.8,113.9,258.5,46.8,71.9,42.7,400.1,204.5,209.3,99.7,101,98.1,95.5,60.5,39,201.5,109.2,90.4,46.4,77.8,79.9,159.6,80,22.5,117.3,152.9,161.6,147.2,119.9,130.7,501,263.5,72.3,294,23.3,21.5,34.5,165.6,437.1,622.2,338.4,219,96.5,138.3,183,184.7,504.1,138.9,173.3,127.5,134.7,111.5,117.5,110.5,141.5,154.4,103.9,105.9,160.5,70.5,7.2,42.2,17.3,32.2,57.5,21.2,240.1,67.6,9.2,5.7,49,259.5,203.3,149,134.6,89.1,46.6,19,154.1,209.2,161,22.9,359.2,92.4,60.6,51.8,52.6,44.4,56.7,68.4,96.9,107.8,33.8,105.5,94.3,138.2,135.1,95.2,84,11.2,190.8,249.2,249.5,256,143.1,103.9,61.2,64.4,70.9,71.7,42.4,197.7,327.9,26.6,24.3,52,60.8,78,50.2,40.5,77.6,69.6,412.3,13.2,25.8,45.1,64.1,136.8,135.9,157.5,5.1,74.1,66.5,66.4,66.3,49.7,72.4,63.8,79.9,82.9,47.7,109.3,65.4,67.1,68.7,115,66.6,47.3,112.9,171.5,169.2,125.8,106,114.4,157.8,94.3,59.9,49.6,50.2,39.8,31,51.2,55,26.3,31.5,78,56.7,84.9,59.5,86.4,50.6,51.3,67.8,75.5,62.6,79,27.2,67.1,65.4,60.9,91.5,122.5,162.8,163.9,166.4,160.1,144.4,116.9,147.6,69.7,155.4,171.2,153.3,92.8,136.1,124.3,110.7,146.8,144.2,140.6,143.1,63.8,179.9,172.7,41,19.7,55.7,156.8,196,37.6,121.3,153,60.3,30.2,165.9,530.9,201.2,106.1,105.3,55.2,66.1,101.9,23.1,36,20.1,96.2,86.9,240,232.8,155.4,170.7,203.4,132.8,62.2,116,139.2,242.8,74.2,175.7,209,110.7,57.2,53.3,159.7,179.5,153.6,75.1,1.8,74.7,59.5,61.3,120.6,44.9,63.3,58.6,202,147.5,24.7,98.3,69,204.1,43.6,361.5,283.4,198.9,245.4,493.6,62.4,42.2,87.3,63.8,316.1,41.8,150.1,10.2,137.1,172.4,267.2,115.3,8.9,4.3,6.1,8.8,86.1,181.3,162.2,84.8,0.6,170.4,95.3,81.9,31.3,112.2,126.1,122.2,194.9,221.2,28,9.9,126.9,75.6,72.5,89.9,61.1,66.4,62.9,31.7,85.5,74.1,60.9,93.3,19.1,28.6,30.2,18.2,37,25.1,29.8,29.4,45,43.6,41.5,35.4,44.3,38.8,34.5,28,27.6,5.3,15.1,12.3,38.5,21,34,40.5,36,19.6,31.9,77.8,34.6,121.8,34.6,31.9,18.9,62.3,193.5,50.8,35.5,22.8,16.3,49.2,70.7,57.4,43,134.1,124,132.1,65.5,9.7,23.3,92.9,98.4,105,49.3,59.1,53.2,70.2,63.8,56.9,41,32.2,80.8,70.9,48.3,43.8,16.2,51,145,75.6,146.4,135.3,131.5,151.9,32.6,60.8,91.6,85.8,97.5,88.8,17.5,34.3,40.7,18.4,40.5,30.3,41.5,34.6,47.1,40.9,55,281.3,120.1,63.9,62.2,92.8,46,47.4,7.1,46.3,28.7,31,27.1,56.1,61.2,115.9,63.4,45.6,37,31.3,41.2,24.3,19.8,14.4,35,38.3,41.1,38.8,44.6,36.6,33.8,27.6,43,4.3,10.8,60.1,83.6,5.2,113,71.5,12.9,89.1,58.6,54.7,55.3,78.2,69.1,64.1,53.7,120.3,84.1,20,28.2,39.8,43.3,34.7,33.9,17.5,22.7,31.2,41.2,31.2,24.1,44.1,35.8,34.1,6.5,39.5,78.7,85.8,32.9,23.9,23,30.3,6.3,26.8,29.7,35.8,26.1,30.3,6.1,9.7,24.6,23.2,24.4,21.8,33,40.2,47.1,56.1,52.7,42.9,27,146,27,25.2,23.4,20.3,25.9,20.1,25.1,25.5,25.4,25.4,17.6,23.6,34.9,32.1,21.3,20.5,34.7,15.2,33.1,16,15.4,21.1,17.4,21.7,16.7,20,13.3,11.7,14.3,15.5,15,39.3,50.7,15.6,17.2,66.9,29.2,26.7,25.7,17.7,17.1,20.1,12.9,21.4,10.9,10.4,6.4,8.6,19,16,16.5,17.9,10.3,12.9,11.8,13.4,18.1,19.7,16.7,26.2,24.6,68.8,50.7,22.7,21.5,26.1,26.7,22.1,21.4,25.4,25.2,22.1,23.8,43.8,44.3,48.2,43.7,26.1,56.8,47.1,26.4,22.9,49.1,31.8,22.9,52.3,46.9,55.6,25.3,38.4,101.2,3,56.6,103.9,29.9,30.7,19,19.7,24.7,23.1,21,19.9,20,23,16.1,28.3,23.7,15.8,19.2,6.7,11.6,26.4,24.8,40.4,39.4,29.2,24,21.7,18.3,24.9,23,26.8,18.2,20.7,27,30.1,16.1,36.1,58.9,19.8,27.9,26.8,47.5,41,88.5,39.3,37.1,17.7,76.6,41,41.2,27.7,22.3,25.2,28.8,17.1,17.5,31.5,64.8,133.4,93.4,134.4,275.6,222.1,171.4,342.5,12.6,34,35.8,30.8,30,26.3,34.6,19.9,29.4,37.1,35.3,23.3,38.5,53.1,168.2,30.7,20,22.9,40.4,58,2.6,4.2,7.4,10.2,7.4,9.6,7.3,11,10,34.1,3.3,32.5,11.6,7.9,8.8,10.2,6.3,7,7.7,7.4,5.9,5.8,3.6,9.6,21,28.2,6.3,8.1,7.6,12.5,22.1,8.4,9.5,6.2,6.3,7.7,6.5,7.4,6.5,7.3,7.3,7,6.6,7.8,6.2,6.8,5.4,5.9,13.4,5.7,5.8,33.2,9.1,37.3,12.4,4.5,4.8,2.9,68.6,17.9,13.4,41.1,14.6,14,44.7,6.2,47.7,8.3,17.9,10,8.6,3.4,12.4,10,2.6,39.4,11,83.6,8.4,48.9,8.4,10.6,45.1,8.1,49.4,8.1,74.6,12.1,3.7,7.7,9.7,5.3,67.7,10.9,12.6,10.2,57.2,36,56.3,46.4,12,36.2,64.8,32.7,42.2,5.1,9.6,24.9,6.4,12.7,6.8,3.3,7.7,4.3,12.2,7.4,10.1,16.1,4.2,42.8,4.6,6.1,8.7,7.6,9.4,25.7,8.7,17,12.8,3.7,15,5.4,19.1,10.6,9.1,9.7,12.7,13.2,8.2,20.4,24.2,15.8,21.4,4.4,49.4,5.1,17.5,18.2,13.6,6.8,7.5,5,6.9,25.7,6.1,21.2,6.2,19.9,12.8,12.8,9.8,17.2,32.9,8.2,6.4,44.5,3.1,2.4,6.8],"duration":[3.647,15.395,19.911,68.3,25.977,27.973,22.453,2.716,0.24,3,0.386,0.84,0.24,0.389,1.729,0.411,0.506,3.713,4.164,0.752,14.4,0.539,1.518,2.065,9.806,4.101,19.397,0.407,0.264,0.295,0.405,0.397,0.577,0.345,1.451,3.714,1.064,0.784,1.044,0.639,0.625,1.185,1.879,0.414,0.347,0.481,0.424,0.34,0.308,0.9,2.474,1.332,0.754,0.402,3.224,10.086,3.398,2.116,2.395,1.469,0.388,2.626,0.9,1.029,1.383,0.578,0.561,0.631,0.704,3.668,2.955,3.201,11.569,3.532,6.143,4.63,1.278,2.31,0.916,0.808,1.539,1.636,12.554,3.752,5.625,1.939,1.805,2.535,5.047,1.795,1.311,0.902,0.559,0.393,1.171,4.245,21.352,4.044,1.03,2.8,6.32,6.61,1.019,1.459,3.146,1.009,1.129,3.235,0.894,0.635,0.302,0.574,0.216,0.122,0.293,1.368,0.854,0.556,4.096,1.013,0.731,0.599,0.6,1.148,10.747,1.501,0.973,14.4,1.27,1.405,0.99,8.347,1.411,1.165,1.121,3.807,0.69,1.756,0.655,8.351,0.458,2.291,0.439,9.093,8.725,3.247,0.754,1.29,2.438,0.334,0.341,1.161,0.921,0.907,5.721,10.517,1.003,0.635,1.913,4.133,1.413,0.6,5.593,9.853,0.599,0.472,1.297,1.341,12.607,0.499,0.979,0.656,0.183,0.151,0.505,0.76,5.949,7.369,0.707,0.878,1.733,0.79,0.4,5.356,2.177,10.156,8.365,6.665,0.721,0.825,2.31,0.827,0.346,8.365,5.944,1.05,1.221,1.27,0.575,8.205,3.342,0.367,1.656,1.669,0.576,11.084,1.694,2.878,1.622,3.157,8.108,1.372,1.88,5.008,3.303,2.906,7.116,4.398,0.871,1.669,2.777,1.952,1.322,0.544,0.738,1.106,1.033,0.734,1.278,0.91,1.269,3.669,1.384,0.273,0.669,3.975,0.008,0.997,1.129,0.913,1.067,0.49,0.842,1.479,1.213,1.106,2.014,5.751,1.55,2.499,21.514,0.737,3.141,13.888,2.456,1.575,1.62,1.422,4.628,3.176,9.266,0.601,0.729,0.548,0.756,1.041,1.168,1.069,0.935,1.115,1.089,1.278,2.337,0.478,1.019,0.642,1.133,0.712,0.911,0.886,0.52,0.537,2.379,3.816,1.503,8.695,6.568,11.852,4.349,3.204,3.991,5.478,1.538,1.105,1.391,3.257,0.869,2.222,1.809,1.109,1.025,0.981,0.674,1.216,1.473,1.605,2.704,0.942,0.729,0.753,0.585,0.644,0.718,0.596,0.691,0.736,0.845,0.796,0.726,0.597,0.598,0.558,0.951,1.053,0.56,0.805,0.922,0.958,1.27,0.85,1.163,1.527,1.82,1.066,1.012,1.768,1.003,0.71,1.543,0.909,0.992,1.047,0.743,0.786,0.693,1.3,2.466,2.264,1.971,1.806,1.821,4.349,5.725,2.341,2.431,2.55,11.218,10.163,5.292,1.332,8.842,11.54,9.607,2.137,5.817,2.883,8.137,2.407,2.528,1.923,4.437,4.172,4.422,3.773,12.654,6.799,6.809,10.005,11.111,1.977,3.005,7.897,4.318,5.014,11.644,4.949,3.026,2.535,1.102,0.735,8.338,1.728,6.696,7.57,6.402,8.046,0.12,6.642,3.67,5.397,5.905,5.172,3.724,0.383,5.063,0.072,0.825,0.072,3.073,3.077,4.912,5.399,15.682,18.892,4.651,4.101,18.676,13.556,2.028,17.978,6.55,2.325,8.85,5.825,11.019,5.104,3.718,5.938,0.645,1.95,2.573,4.904,2.264,1.7,4.213,3.806,11.063,13.732,16.123,15.276,0.668,44.101,19.203,17.659,0.518,0.882,6.051,8.734,7.44,8.85,3.604,19.74,0.52,0.705,0.529,1.884,4.732,0.682,1.288,2.872,2.866,4.129,3.993,1.752,1.156,1.115,1.824,1.81,1.362,1.343,1.353,1.811,1.315,1.024,1.205,1.468,3.055,2.086,1.838,1.745,1.324,2.654,1.335,6.642,4.79,3.547,3.508,4.843,13.665,5.318,8.853,2.108,2.295,12.887,6.136,0.293,0.586,6.8,5.464,3.47,3.747,1.967,5.455,3.536,7.924,2.582,2.384,2.915,1.554,1.486,1.81,1.265,2.698,1.761,1.775,1.754,1.791,1.757,1.755,1.736,1.797,1.762,1.755,1.779,1.768,1.753,1.753,1.767,1.75,1.332,3.542,2.676,2.155,6.135,1.69,1.72,0.815,1.36,2.37,3.621,2.805,2.868,3.315,2.504,4.629,1.596,1.984,1.622,0.766,29.915,1.387,6.181,2.645,4.781,4.869,2.46,1.522,3.627,3.397,2.273,2.682,3.7,1.872,3.388,2.256,0.404,2.237,4.51,3.703,2.405,3.258,2.904,3.777,3.488,3.178,3.842,8.175,5.422,6.509,7.854,8.854,7.522,5.822,6.188,4.223,5.923,3.13,3.134,1.113,1.8,2.767,1.119,1.318,0.968,2.419,1.223,4.287,4.277,8.732,1.028,2.39,2.285,2.974,16.399,7.27,7.296,2.836,9.646,2.449,14.316,4.906,1.376,4.654,4.612,3.318,1.819,1.893,1.961,1.798,0.202,1.716,1.839,3.053,2.357,5.213,4.434,4.437,15.989,9.39,1.127,21.927,3.029,3.282,2.913,7.93,8.175,4.775,2.273,1.659,2.037,1.518,2.148,1.197,1.871,2.745,2.733,2.866,1.687,7.456,4.284,2.128,1.018,1.236,0.182,4.177,2.869,3.462,6.266,1.225,5.05,10.077,11.236,1.054,0.909,3.322,4.242,2.646,2.624,5.409,2.691,2.694,1.039,0.936,2.111,4.835,9.828,9.504,12.348,4.532,8.981,2.052,1.24,1.673,3.647,2.425,2.274,3.578,1.828,1.476,10.469,8.077,3.818,3.96,0.519,2.535,1.473,1.517,3.632,2.147,2.251,1.856,1.883,2.258,2.213,1.93,2.017,1.525,2.271,2.276,1.888,2.463,2.029,0.481,1.398,1.888,1.477,0.764,1.829,4.423,0.912,1.455,0.036,0.864,5.508,7.02,5.137,3.287,3.089,2.704,6.711,4.992,3.67,2.438,1.644,2.597,2.486,2.119,3.341,3.29,2.244,2.05,1.916,2.123,1.224,0.03,1.738,2.201,2.208,1.996,1.939,1.687,1.554,1.99,2.558,2.891,0.916,1.325,1.627,2.155,2.202,3.439,1.383,1.289,2.563,9.324,1.686,2.208,19.081,16.415,3.672,0.018,2.019,0.036,3.456,0.036,2.252,1.462,1.503,3.515,1.742,1.596,2.301,1.775,0.421,2.939,0.144,1.415,2.699,2.166,1.372,1.708,1.406,1.503,1.314,1.512,1.477,2.724,1.224,1.333,2.551,3.025,1.976,2.023,1.268,1.419,1.708,1.733,1.938,2.023,1.854,1.634,1.822,1.189,2.16,12.645,13.798,0.12,3.306,0.545,0.036,25.964,0.182,0.371,0.11,3.306,0.257,0.631,0.327,5.042,2.65,2.086,3.25,1.484,1.124,0.218,0.771,0.036,1.746,1.945,1.738,2.131,2.764,24.79,10.158,17.727,12.928,0.255,4.638,1.712,2.431,1.769,1.667,2.655,0.036,2.059,7.512,7.92,14.618,9.6,8.032,1.373,0.371,0.582,0.073,1.382,0.184,9.918,1.257,6.063,5.608,4.807,2.625,2.715,1.778,2.35,13.062,2.797,25.175,17.942,3.827,4.168,5.207,0.811,7.903,0.816,0.206,0.313,14.478,15.684,5.648,12.601,3.351,0.429,4.345,2.949,2.423,1.853,1.777,9.72,6.194,2.639,16.088,2.88,0.784,5.338,2.565,4.478,0.011,9.912,4.154,1.108,14.882,0.687,2.01,0.701,1.608,4.967,13.335,1.583,2.469,2.931,0.991,7.387,2.61,9,0.855,1.575,1.35,22.815,13.275,1.225,3.971,11.057,9.327,10.397,30.162,9.735,1.225,0.965,4.656,2.27,2.729,12.173,5.974,17.97,47.98,3.762,3.309,1.727,4.225,4.702,14.897,1.286,1.225,0.46,1.396,9.661,1.065,3.111,1.554,1.145,2.658,15.87,6.048,4.941,2.924,2.81,2.952,7.194,0.473,4.109,19.376,4.865,0.083,2.829,2.505,3.559,1.702,1.33,2.364,4.154,4.798,3.503,1.666,4.765,5.136,5.162,3.687,2.253,2.29,2.769,2.03,2.123,2.032,2.771,1.678,14.97,7.048,4.222,1.752,2.271,1.315,1.532,2.505,1.296,1.143,2.984,3.467,0.095,3.579,2.375,2.308,3.3,1.75,2.398,3.017,2.159,2.124,1.669,1.117,0.461,0.122,1.788,4.968,5.76,2.901,1.679,1.443,2.958,2.923,0.998,1.105,4.105,3.01,11.71,14.566,8.806,3.337,2.232,3.494,3.468,3.908,4.073,24.053,4.028,1.213,2.611,0.829,3.541,11.116,2.224,4.378,0.695,1.348,2.936,2.956,2.239,2.291,2.994,10.969,14.017,3.736,4.35,3.537,3.597,1.909,2.841,5.417,5.457,9.259,27.045,14.321,5.109,4.305,4.321,3.217,0.715,4.996,4.534,6.162,10.964,6.218,0.364,6.037,2.59,2.899,2.235,1.657,1.6,2.815,1.871,3.248,2.39,2.915,2.762,9.673,15.019,2.664,3.244,8.64,1.129,7.917,5.699,4.076,1.451,1.77,2.226,42.472,0.24,6.433,3.637,4.186,2.92,4.038,4.054,2.429,12.896,7.668,0.504,0.484,3.523,5.46,2.872,3.521,0.648,1.451,3.552,4.077,8.743,2.473,5.363,9.878,4.061,2.012,4.207,2.447,2.47,3.343,3.303,2.338,3.081,1.451,4.313,2.517,4.211,2.227,3.602,4.663,2.868,2.424,8.828,4.303,3.362,3.711,4.094,4.585,6.144,3.51,3.527,8.033,4.099,3.95,3.44,3.47,2.935,3.015,2.448,2.483,4.045,2.315,2.194,1.599,1.6,3.235,5.936,1.718,1.629,1.726,2.01,1.976,1.227,0.876,0.859,0.844,0.993,1.269,0.609,1.053,2.108,2.159,2.133,3.099,2.822,2.476,2.138,2.175,2.631,1.958,2.557,2.499,1.557,1.161,1.526,2.344,2.193,2.811,2.418,1.682,2.404,2.439,2.251,4.517,1.875,5.688,5.265,7.816,6.557,1.946,14.973,17.32,11.104,2.805,5.685,2.611,3.322,4.532,6.738,4.314,2.476,4.266,8.297,4.529,7.343,17.432,2.543,11.543,3.403,3.322,4.294,2.897,2.72,2.742,1.833,1.568,4.889,2.746,2.614,2.575,2.358,1.598,2.286,2.261,3.135,3.507,2.692,2.842,0.807,0.675,3.025,11.548,0.012,3.991,6.267,1.275,1.656,2.405,1.632,1.122,1.214,1.104,1.151,1.052,1.541,1.076,1.973,1.275,1.224,1.15,1.04,1.321,1.481,1.17,1.233,1.032,1.063,1.022,1.139,1.082,1.394,1.62,1.072,1.463,10.07,1.78,2.903,3.404,3.617,3.61,3.38,3.492,3.714,4.861,2.966,2.503,6.104,5.956,0.023,23.286,5.804,8.424,5.551,5.189,6.86,0.272,3.872,2.088,7.977,2.797,2.36,2.103,6.103,20.916,15.829,0.947,2.626,14.506,12.987,10.443,4.549,4.787,4.646,4.639,5.865,8.648,2.251,3.011,8.29,4.948,4.956,13.984,16.105,5.099,7.056,1.511,6.659,3.75,3.762,13.195,5.782,9.211,23.41,28.01,4.677,3.591,2.103,6.523,25.93,6.449,6.409,3.255,3.215,2.211,4.312,2.972,1.646,2.169,4.572,4.091,2.251,2.239,2.587,2.386,1.38,0.862,2.256,1.635,2.811,2.97,2.794,3.161,2.549,2.894,2.293,2.419,2.845,3.314,3.433,2.564,1.744,3.965,9.151,10.433,3.909,13.546,6.473,3.878,13.175,9.142,9.017,8.705,7.537,13.694,14.145,37.947,9.006,16.322,5.884,1.644,32.912,2.689,1.678,2.267,7.942,20.724,24.393,23.167,2.896,16.203,12.146,4.426,6.672,6.661,4.541,8.398,3.968,3.935,7.912,22.099,7.869,7.863,9.507,10.772,0.132,8.647,2.01,6.78,13.381,5.27,10.829,5.728,14.807,4.296,7.422,7.515,2.17,12.229,12.126,5.754,7.895,10.617,7.687,7.863,5.868,4.089,0.538,6.158,4.745,5.854,6.748,5.258,2.072,7.876,5.757,3.021,2.993,4.595,5.368,4.545,3.279,3.652,3.586,3.619,4.328,4.043,3.605,2.912,3.086,2.733,2.486,2.5,2.56,2.765,2.792,2.736,2.915,3.329,3.938,3.147,3.782,3.818,3.934,2.171,2.149,2.181,2.518,1.586,1.098,1.144,0.404,0.998,2.983,2.395,2.897,5.825,0.671,6.184,8.146,4.291,2.165,6.058,6.462,2.755,1.614,2.471,4.159,3.763,2.808,2.643,1.284,0.992,0.908,0.795,1.156,1.068,1.022,1.127,1.061,1.077,1.047,1.056,0.963,1.071,1.028,1.072,1.05,1.101,1.035,1.043,1.045,1.058,1.057,1.076,0.994,1.055,1.083,1.121,0.922,1.1,1.035,1.055,1.031,1.143,0.958,1.054,1.054,1.053,0.575,0.564,1.544,1.412,1.051,1.595,1.139,1.08,1.406,1.042,1.127,1.42,1.118,1.117,0.789,2.042,1.295,1.89,1.913,4.659,5.103,4.548,6.026,3.141,1.594,1.649,3.476,2.219,9.69,1.487,5.358,3.452,15.724,3.066,5.627,2.759,1.085,1.108,1.265,1.214,1.11,1.381,1.367,1.231,1.146,1.324,1.555,1.423,1.184,1.245,1.494,1.392,1.349,1.578,1.237,1.613,1.108,0.916,1.412,1.846,1.187,1.174,1.225,1.489,1.548,6.39,1.569,1.485,1.631,1.19,1.032,1.292,1.329,1.371,1.065,1.011,1.098,1.076,1.12,1.173,0.982,1.2,1.332,1.388,1.325,1.216,2.078,1.625,1.361,1.062,1.543,5.567,7.734,8.714,8.562,6.731,9.815,10.955,9.599,1.265,4.279,2.657,6.925,7.111,5.267,1.855,6.168,7.519,4.357,3.479,4.218,4.945,1.088,3.24,3.143,9.073,7.859,4.946,4.941,6.581,8.239,3.091,3.068,5.015,23.388,10.387,12.793,17.432,9.513,13.019,14.399,8.502,8.663,6.2,6.975,9.408,5.938,5.643,1.12,9.913,6.286,7.322,2.743,2.799,3.258,2.911,3.704,2.675,2.256,2.746,2.171,1.867,2.546,2.906,3.415,1.5,1.73,1.167,1.462,1.146,3.079,3.767,3.184,3.986,4.023,4.781,3.346,4.73,6.376,2.757,5.38,5.362,5.866,4.456,2.834,4.163,1.098,1.673,1.684,0.451,0.63,1.712,2.309,1.03,1.387,1.237,0.832,0.511,1.487,1.788,1.914,1.994,2.219,2.099,1.237,2.297,1.194,1.271,1.186,1.248,1.235,1.327,0.973,2.222,1.41,1.893,1.047,1.299,1.43,0.714,2.061,2.632,1.257,1.251,1.2,1.213,3.416,1.322,1.814,1.878,0.405,0.622,0.589,0.6,1.085,2.171,7.562,6.336,2.867,3.153,1.214,2.09,3.065,1.488,1.022,0.073,1.487,1.219,1.922,5.446,6.922,1.758,3.891,3.732,2.099,4.096,1.291,5.945,1.502,1.368,3.239,4.124,3.263,2.79,2.265,2.135,1.852,3.231,2.31,2.757,4.45,10.435,6.467,1.533,6.967,17.007,14.577,11.956,1.645,1.268,1.76,1.834,1.704,1.659,2.035,1.873,2.576,2.045,2.399,2.867,4.967,13,3.867,0.155,1.043,0.063,7.54,6.013,1.517,1.4,1.467,1.23,2.725,6.393,6.796,0.976,9.74,1.733,6.28,5.729,5.3,7.555,4.297,7.047,4.925,4.776,13.792,3.739,26.258,7.219,4.668,5.486,1.004,5.434,4.891,7.745,5.227,2.3,3.962,3.75,6.791,0.764,2.37,7.504,2.5,9.867,1.323,6.668,4.574,4.623,0.361,1.067,1.332,5.701,5.371,7.24,12.234,28.866,3.404,3.676,3.637,2.345,2.339,1.079,2.02,1.589,1.233,3.974,0.883,3.499,3.238,2.734,1.203,1.971,1.951,1.145,1.277,0.976,1.286,2.46,2.311,1.528,3.192,0.646,1.11,3.903,2.12,3.533,4.516,6.796,7.699,5.175,3.316,5.332,4.6,5.713,6.941,5.818,4.52,4.589,10.819,2.2,3.533,2.8,7.467,0.9,12.249,8.018,0.462,2.5,2.925,2.075,0.933,10.13,1.784,2.278,3.031,3.514,3.04,3.416,4.432,5.37,1.369,4.333,4.895,3.63,5.884,9.36,15.773,3.374,0.908,2.446,6.567,4.47,2.291,1.259,1.192,0.876,3.209,2.691,3.381,1.172,0.538,1.497,3.745,3.68,3.682,5.789,4.351,2.696,1.192,2.656,2.645,1.889,1.968,0.722,0.807,1.576,3.093,5.894,6.696,6.436,11.703,0.343,27.826,6.064,6.301,11.368,7.44,0.66,7.32,6.343,6.325,6.711,1.867,6.884,4.556,31.983,1.192,17.983,1.68,1.49,6.944,2.949,1.647,2.446,1.845,0.405,3.784,0.809,0.812,2.569,1.702,0.855,3.645,0.512,4.81,4.172,5.883,3.297,2.733,6.689,1.333,1.704,0.309,4.605,3.335,2.917,5.179,5.093,5.128,9.177,1.834,1.745,3.938,2.282,0.757,1.361,2.095,2.439,4.379,2.299,2.482,1.858,2.175,1.683,1.286,1.073,1.584,0.773,1.392,1.454,1.733,1.753,1.438,1.653,1.773,1.649,0.875,0.821,1.019,1.022,0.984,1.044,1.057,1.061,2.111,3.088,2.004,1.808,1.965,5.654,6.109,3.578,6.636,6.032,6.273,4.5,4.993,17.066,1.733,4.063,1.697,0.755,2.005,1.989,2.034,1.245,0.72,0.236,2.271,3.258,2.313,2.544,8.369,7.769,0.189,3.455,8.496,4.028,3.552,4.048,2.314,1.202,2.48,1.262,1.79,1.938,1.768,1.971,4.456,3.02,2.801,1.909,2.282,4.3,1.825,0.043,6.338,1.557,0.462,1.954,0.296,7.136,18.606,6.657,2.822,2.154,12.958,7.873,6.898,0.54,3.564,4.521,3.348,1.174,2.519,2.485,0.624,1.068,1.146,2.777,1.58,1.083,1.036,2.11,2.174,0.668,2.696,1.72,1.641,1.87,1.27,1.538,1.623,1.698,1.8,2.236,1.909,2.302,1.954,1.502,0.515,4.096,5.838,1.477,12.884,12.05,5.255,4.166,5.168,4.548,2.463,4.828,5.968,4.872,5.346,4.568,26.842,16.924,9.349,11.678,5.891,5.595,3.041,3.026,4.839,2.934,2.922,5.982,20.721,15.537,17.474,3.688,3.293,2.511,2.889,3.57,3.312,8.836,7.012,1.635,2.981,2.256,1.885,3.433,2.69,5.6,1.12,28.595,4.988,3.575,12.941,0.732,8.118,8.138,9.123,5.924,1.185,0.273,1.46,6.475,6.85,2.201,2.615,3.553,0.882,4.394,2.781,1.245,1.998,1.617,1.409,0.969,1.129,1.484,1.872,3.646,10.651,14.589,3.513,6.994,6.036,3.512,2.946,1.844,2.249,1.13,3.242,3.874,3.433,0.544,1.187,1.782,1.026,0.142,0.515,2.264,2.209,3.817,2.453,3.945,3.307,2.04,4.316,2.699,4.796,2.324,3.18,2.887,3.268,3.101,3.53,3.204,2.932,3.172,3.216,3.248,3.313,3.026,2.295,2.934,8.106,17.048,6.841,6.867,1.6,4.125,1.87,1.622,2.137,2.092,2.836,3.194,3.703,3.073,3.49,3.253,2.918,3.073,3.066,2.789,5.548,2.93,3.288,3.056,2.444,4.262,4.102,7.941,6.065,2.422,1.732,3.588,2.947,4.092,4.437,2.475,2.373,1.648,1.433,3.005,3.702,2.908,3.138,2.951,3.123,4.208,7.833,8.732,0.034,8.163,6.058,5.926,6.161,1.241,7.667,7.558,0.045,5.919,1.494,10.213,6.258,2.306,2.564,3.537,3.42,0.271,5.615,4.347,4.516,4.499,4.455,5.461,4.38,7.611,10.465,5.46,4.713,8.346,8.947,6.585,4.015,1.553,0.628,11.509,5.948,5.464,3.369,4.4,3.067,4.829,2.439,4.941,1.473,1.063,3.192,2.837,3.004,2.134,1.434,1.134,1.688,2.043,2.269,2.731,6.204,6.221,4.234,0.374,3.392,3.429,3.364,2.807,3.475,2.425,2.1,2.333,3.476,3.437,9.019,1.604,2.965,9.778,11.671,7.331,5.044,2.884,5.599,2.726,2.98,2.362,3.528,2.159,3.259,3.032,2.707,2.811,3.336,2.903,3.004,3.006,3.122,2.934,2.965,2.476,2.318,3.104,3.442,3.72,2.775,3.086,2.968,2.847,2.938,2.92,2.926,4.738,3.467,3.579,6.502,13.603,8.707,5.741,10.967,12.461,15.242,7.393,14.901,3.972,0.45,2.325,4.865,1.013,5.876,6.019,5.95,1.972,3.855,5.826,5.873,5.876,5.998,6.046,3.567,3.211,4.792,3.38,1.446,3.841,4.202,4.199,3.548,4.189,5.287,5.448,5.377,5.367,0.059,4.967,6.121,5.349,5.291,5.26,6.775,10.659,8.722,4.56,12.461,12.396,3.883,24.672,25.503,13.954,5.683,5.294,8.95,3.962,0.513,7.787,5.725,9.704,9.755,8.437,8.473,8.612,0.39,8.237,8.524,12.94,12.927,13.063,12.885,12.81,12.789,12.543,12.763,10.691,12.869,16.415,8.016,13.611,4.513,8.445,8.644,16.823,5.868,8.778,20.632,2.621,9.419,14.484,5.982,6.361,9.703,13.42,8.957,8.046,8.16,4.089,4.003,4.174,4.357,4.103,4.152,4.059,4.039,3.875,4.222,3.819,4.073,4.241,3.88,3.983,4.337,2.661,3.29,3.692,4.461,1.112,8.143,4.556,2.99,4.919,2.845,3.809,6.05,6.681,18.813,2.4,1.627,1.595,5.424,3.942,0.932,7.067,4.598,3.509,3.51,4.324,2.311,2.216,3.137,3.986,1.84,1.885,2.171,2.081,2.241,1.979,2.043,1.981,2.073,2.109,2.597,2.211,2.91,3.109,6.324,6.389,7.118,8.487,3.357,7.354,4.515,1.932,5.465,4.463,4.987,8.32,1.882,3.28,9.246,14.291,5.938,7.907,10.732,1.268,19.766,3.463,3.824,3.736,2.19,2.673,4.94,4.242,0.082,0.689,4.174,3.149,9.122,7.627,4.926,6.86,6.712,6.738,3.37,3.379,1.232,2.208,3.43,2.412,0.914,1.586,1.769,3.34,3.346,3.142,3.327,3.273,2.07,1.332,6.663,6.644,6.259,5.535,4.866,4.282,3.186,3.206,3.384,3.163,3.327,3.262,3.312,3.465,3.089,3.548,3.482,3.377,3.29,3.42,3.393,3.331,3.263,6.717,3.363,3.034,3.598,3.86,3.192,3.063,4.135,3.821,3.916,3.962,3.901,3.112,2.794,3.693,2.626,5.411,0.059,5.115,9.319,6.897,2.212,13.314,4.5,7.732,7.959,1.379,3.252,4.504,2.707,0.515,6.087,5.199,5.907,4.683,8.833,2.978,2.581,5.439,4.24,4.425,4.222,4.114,4.224,4.256,4.151,4.55,4.281,4.488,4.128,4.568,4.373,4.277,4.414,4.4,4.131,4.47,4.313,4.926,4.372,8.78,8.817,8.864,9.092,6.762,9.013,14.077,12.638,14.327,11.952,8.372,4.701,2.929,4.147,4.05,2.937,2.149,2.627,2.831,2.429,4.075,3.271,3.555,4.041,3.402,2.332,2.202,2.472,2.246,2.408,2.409,4.583,3.822,2.326,2.549,5.517,5.434,11.755,4.051,3.924,2.778,2.066,1.933,0.081,2.11,2.107,2.063,2.187,1.982,2.288,2.579,2.508,2.439,2.594,2.489,2.409,2.622,2.454,0.241,2.602,2.501,2.499,2.596,2.494,2.869,2.655,2.533,2.532,2.568,2.56,4.653,4.675,4.552,4.636,6.178,8.034,10.26,10.426,2.342,0.519,0.324,1.734,4.873,3.638,1.74,6.389,0.458,2.62,4.024,4.653,4.327,4.759,2.411,2.661,2.189,1.517,1.897,2.516,1.959,1.368,1.746,2.388,1.944,2.111,2.033,2.255,2.975,2.276,2.283,4.502,7.983,5.318,5.391,2.556,3.39,2.935,2.896,2.375,2.334,2.838,2.737,2.355,1.926,1.881,2.362,1.97,2.078,1.881,2.745,4.57,8.041,3.619,2.239,6.703,4.228,7.546,4.585,4.439,2.502,2.637,1.989,1.834,1.861,1.633,1.653,1.614,1.886,1.107,1.145,1.818,1.393,1.357,1.408,1.505,1.625,1.626,1.866,5.395,22.573,7.054,7.909,13.172,4.502,6.914,3.717,4.108,4.482,4.214,2.654,25.639,4.795,8.22,6.518,4.111,6.179,9.203,7.408,3.762,2.778,3.491,5.844,3.535,3.631,3.147,3.445,3.632,4.351,4.979,3.99,3.874,3.856,5.985,4.042,3.722,6.595,5.813,4.201,1.648,2.221,3.974,3.394,2.44,4.137,2.88,3.584,3.579,3.636,7.197,7.247,5.527,5.181,3.737,3.976,4.543,2.248,2.658,4.519,4.075,0.154,4.868,5.239,5.91,3.874,1.122,6.028,6.96,6.984,7.015,7.022,9.234,4.7,1.866,4.327,2.86,5.214,1.11,8.609,8.69,5,6.634,2.855,2.656,1.922,1.338,2.963,2.169,2.363,1.442,3.152,3.029,3.039,3.088,3.099,3.007,1.936,6.921,5.59,5.855,8.817,2.945,2.87,2.907,2.902,2.965,3.005,2.925,2.659,2.733,2.65,2.644,2.705,2.228,4.624,5.815,5.126,4.96,1.63,0.66,0.484,5.148,5.098,4.938,4.714,4.924,4.791,4.793,4.909,4.811,4.813,2.438,2.436,2.431,4.951,3.434,3.466,4.754,4.836,1.089,3.746,4.802,4.616,2.295,2.417,3.083,1.978,2.432,2.421,2.03,2.521,2.757,3.004,1.909,2.29,3.126,2.77,2.599,2.619,2.616,3.152,3.011,3.049,2.97,2.984,2.993,3.1,2.929,3.148,3.066,2.301,1.596,1.976,2.99,6.246,7.267,13.008,5.113,7.458,8.419,3.001,3.098,3.17,3.047,3.044,3.092,3.056,3.173,2.883,2.96,3.178,3.008,3.078,3.163,2.94,3.149,2.992,3.086,6.108,5.547,6.623,6.261,3.036,4.582,4.604,6.159,5.583,6.281,8.723,4.485,8.28,8.11,8.11,8.024,8.267,9.309,2.446,4.619,3.999,4.682,4.021,3.514,4.193,4.069,3.989,4.172,4.049,4.365,4.129,4.046,4.315,4,4.152,4.124,0.454,1.895,2.084,2.494,2.89,2.685,2.708,2.662,5.533,5.359,5.436,5.152,5.456,5.567,5.322,3.872,5.372,5.366,1.95,3.436,5.299,5.546,2.579,0.093,2.716,2.725,2.782,2.643,2.681,4.515,1.39,7.218,3.992,3.953,4.058,3.929,3.991,3.923,4.023,3.993,3.91,3.983,4.138,4.066,4.157,4.148,4.173,4.136,4.13,4.186,3.818,3.956,3.889,4.099,3.863,3.97,3.635,4.478,3.397,3.943,3.943,3.924,3.908,3.931,3.84,4.17,3.835,3.69,2.692,3.67,0.831,3.56,2.567,2.727,2.49,2.479,2.609,2.564,2.545,2.623,2.468,2.484,2.584,2.687,2.468,2.607,2.574,2.591,2.569,2.576,2.542,2.548,2.653,2.543,2.544,2.464,5.027,5.148,5.169,5.605,5.126,5.391,2.7,2.686,2.719,2.663,2.671,2.571,2.602,2.598,2.754,2.759,2.591,2.636,2.731,2.72,2.651,2.65,2.606,2.651,2.764,2.678,1.924,2.089,4.514,1.286,2.229,5.188,4.471,11.556,16.141,11.678,0.989,1.224,6.858,5.875,5.887,5.942,6.166,3.2,3.115,3.121,4.165,5.147,6.172,4.49,3.355,1.94,4.991,3.026,3.662,3.721,2.392,2.765,4.518,3.797,3.142,2.994,3.022,3.029,2.902,3.352,2.996,4.117,9.006,9.786,4.006,6.763,6.006,11.004,2.7,8.037,3.663,7.118,3.701,5.917,2.174,8.588,5.048,2.59,2.554,2.572,2.686,2.548,2.737,2.692,2.67,10.192,0.628,0.602,8.562,3.742,0.307,25.402,47.702,9.27,3.605,7.067,5.117,3.897,2.813,1.902,2.624,1.375,1.637,2.596,1.598,2.584,2.856,2.412,2.712,2.302,2.716,3.117,1.95,1.624,2.391,2.766,2.744,1.497,2.513,2.486,2.626,2.568,2.468,2.543,2.543,2.576,2.555,2.548,2.506,2.698,1.566,2.366,3.368,3.355,3.341,3.286,2.984,2.449,2.261,2.356,3.324,1.694,3.28,3.408,5.02,3.209,4.957,3.84,1.47,2.602,6.024,5.656,7.204,2.794,7.838,7.723,7.61,0.1,7.702,15.569,0.57,14.04,0.03,10.234,4.842,3.061,0.584,10.418,2.303,0.142,15.721,5.514,5.541,0.813,2.582,3.262,2.491,2.213,2.061,2.12,2.504,2.294,4.544,4.557,2.84,2.912,0.992,3.751,3.582,3.421,6.492,6.113,6.152,5.363,4.768,5.023,2.511,2.443,4.37,4.159,4.1,6.296,6.765,6.786,6.697,6.531,6.544,4.594,4.675,4.408,4.553,4.277,4.217,5.566,5.367,4.761,4.384,3.761,4.078,2.321,3.168,2.478,2.36,2.515,2.389,2.358,2.571,2.349,2.28,2.553,2.504,7.94,8.909,7.811,8.771,11.422,11.74,7.921,3.697,3.156,8.776,3.291,1.227,6.675,14.785,4.421,4.36,4.171,2.483,4.36,4.442,2.222,2.259,2.179,2.239,2.263,2.17,2.034,0.095,2.241,2.285,2.178,2.203,2.258,2.249,2.248,2.238,2.456,5.366,3.221,2.487,2.48,2.618,4.772,4.778,5.955,11.336,5.716,7.286,4.412,5.238,7.444,2.554,2.557,6.19,7.978,5.741,0.017,3.669,4.994,4.669,4.501,3.221,2.357,4.113,4.233,4.067,4.896,6.258,6.224,6.221,6.202,6.37,6.288,6.234,6.273,6.289,3.095,3.117,3.138,3.063,3.132,3.116,3.161,3.115,3.215,3.106,3.116,6.156,9.504,9.461,10.332,5.051,3.436,3.389,3.266,3.716,7.004,13.963,13.951,7.068,6.885,7.047,6.918,13.991,6.977,7.015,6.91,5.525,3.815,1.933,1.938,1.96,1.849,1.987,1.895,1.885,2.041,2.163,2.018,2.033,2.099,1.612,2.092,2.871,2.502,3.547,1.857,2.353,4.627,4.621,5.344,7.525,7.909,4.02,4.168,3.758,3.687,3.043,3.596,2.32,1.755,2.238,2.833,3.41,1.786,1.829,1.776,1.855,1.757,1.878,1.631,2.245,2.126,2.044,4.026,2.66,5.928,3.161,5.771,3.769,3.906,3.86,3.891,1.627,1.794,1.756,1.89,1.63,0.185,1.949,2,1.94,1.968,1.869,2.252,1.716,2.953,1.523,1.676,1.969,2.437,2.112,2.11,2.199,2.24,2.164,1.904,2.282,2.388,2.134,2.105,2.289,2.217,2.895,3.377,3.285,1.472,1.337,3.812,2.48,2.357,0.887,3.285,0.792,2.965,8.895,3.214,0.46,3.682,1.702,2.679,1.445,2.705,4.144,13.728,5.616,1.544,18.315,4.128,8.875,5.049,1.82,0.6,8.733,0.898,1.019,0.151,1.267,1.202,1.197,1.392,1.07,1.298,0.962,0.968,1.072,0.926,6.679,1.08,50.823,4.502,0.481,0.515,0.325,0.978,0.926,0.937,1.113,0.811,0.821,1.088,0.767,0.764,0.761,0.666,0.758,1.284,4.238,3.674,2.297,1.892,1.662,1.694,3.979,3.698,1.247,0.509,1.196,3.799,3.911,2.119,4.676,3.733,2.517,1.734,3.795,3.855,4.64,0.462,1.865,4.047,7.046,0.441,0.617,1.328,1.377,1.681,2.001,2.872,2.509,2.131,2.028,1.551,1.572,1.83,1.48,1.869,1.459,1.477,1.412,1.48,1.163,0.822,0.635,0.776,0.806,1.192,1.141,7.33,12.866,9.201,7.291,1.535,1.418,1.488,1.535,1.356,1.51,1.586,5.636,7.672,10.808,5.735,10.944,14.239,3.096,1.195,1.107,0.98,1.093,1.052,2.018,4.806,5.767,2.155,2.304,2.078,2.147,2.172,5.419,8.558,2.949,0.875,0.99,2.149,1.548,2.095,1.871,1.589,1.627,2.09,2.586,2.928,1.956,2.392,2.199,1.472,2.721,2.388,2.499,1.54,1.703,4.358,3.028,3.641,4.299,4.283,1.373,0.52,1.497,0.828,12.646,6.986,11.17,1.595,2.864,0.689,1.8,4.266,2.093,1.625,3.111,2.951,3.311,0.846,2.588,1.2,0.691,0.963,1.013,0.868,0.89,0.635,0.632,1.495,1.206,1.29,1.399,1.191,0.467,0.675,0.627,1.52,2.218,3.306,8.189,0.024,7.891,3.272,7.909,0.01,4.79,0.01,1.681,0.004,1.687,3.647,2.409,2.461,2.051,2.025,2.756,2.963,2.052,1.872,6.542,6.476,3.6,3.559,2.756,3.237,3.168,3.454,3.503,3.663,3.291,3.191,3.314,3.115,2.651,3.09,1.896,0.45,6.135,14.505,1.695,2.182,2.427,1.905,1.833,1.831,1.832,1.804,1.239,0.674,2.306,2.07,1.229,0.422,2.043,2.27,2.424,2.087,1.473,0.793,0.843,2.376,1.807,4.739,2.067,1.648,1.659,1.378,1.576,1.108,1.072,10.176,6.257,1.502,1.475,0.474,1.397,0.556,1.633,1.626,1.63,1.631,8.889,6.723,4.599,2.348,2.392,3.021,4.635,2.746,2.298,2.025,2.918,0.993,1.298,5.934,3.192,0.978,9.941,1.778,6.506,4.897,2.045,1.3,1.414,0.373,1.02,0.595,0.812,1.984,1.034,1.551,1.473,1.481,0.981,0.646,1.843,1.473,0.391,1.482,1.129,1.135,1.176,1.55,1.172,1.274,3.994,1.107,1.164,1.429,0.114,0.164,0.691,1.31,1.969,2.575,2.4,2.511,2.68,2.68,2.686,2.679,2.682,2.68,2.683,2.682,2.68,2.683,2.684,2.681,1.543,0.367,1.741,2.582,1.993,2.191,1.998,1.82,2.604,2.457,18.189,2.287,1.523,1.496,1.373,3.009,28.499,1.93,1.312,1.559,1.517,1.486,1.539,1.522,1.504,1.991,1.89,3.432,1.236,1.258,2.481,1.633,6.058,1.157,7.536,0.923,5.85,0.36,3.804,2.487,1.447,2.347,1.528,1.377,1.489,2.361,2.336,1.794,1.611,2.228,1.957,2,2.002,1.616,0.046,1.551,2.303,2.361,2.551,2.407,2.541,1.73,2.708,2.094,2.157,0.387,3.671,1.534,0.723,3.063,2.888,18.702,1.535,1.383,1.6,1.19,0.69,1.955,2.259,1.575,29.58,2.347,1.302,1.444,2.048,1.663,1.605,2.087,3.254,4.306,1.247,1.337,2.164,1.581,1.112,0.271,0.995,2.021,0.661,0.019,1.35,0.032,1.538,1.507,1.372,1.606,1.9,3.717,2.658,1.522,1.298,3.249,0.14,3.15,1.185,1.29,1.259,49.614,1.961,1.853,1.632,0.379,18.494,5.329,15.092,11.263,26.724,1.859,27.167,5.935,1.519,0.007,0.946,2.379,3.231,3.233,1.806,1.85,2.326,2.189,6.24,3.518,3.345,2.466,9.253,8.538,2.253,2.705,2.192,2.05,2.987,1.846,2.298,2.873,3.002,1.625,0.944,3.176,4.114,2.209,2.321,3.166,4.442,7.62,4.229,2.004,2.064,1.717,2.036,2.029,1.623,1.821,2.373,2.214,4.325,9.278,2.402,2.396,2.344,2.093,2.06,2.02,2.308,2.725,2.547,2.223,6.851,1.963,1.898,1.739,1.904,1.994,1.871,1.847,2.009,2.024,3.121,2.383,2.383,1.796,1.93,18.384,11.513,2.719,5.374,6.551,11.254,4.042,8.388,15.143,3.32,3.935,4.208,5.083,1.523,4.322,4.184,3.565,7.017,3.006,2.082,2.02,2.623,6.63,4.089,2.075,2.638,2.626,2.78,3.922,1.48,1.785,1.077,2.615,1.319,1.221,2.288,1.991,0.116,1.801,1.532,1.926,1.941,2.254,2.182,2.259,1.14,1.108,2.331,2.349,2.112,2.121,2.105,2.127,2.445,2.423,2.172,2.04,2.388,2.449,4,3.836,2.019,1.53,2.689,2.266,5.583,2.897,1.484,1.477,3.742,3.22,1.698,3.328,4.044,1.989,2.159,2.339,1.587,1.56,1.567,1.439,1.785,2.034,0.619,0.654,0.254,0.908,0.4,3.902,5.459,5.615,6.298,1.309,6.051,2.446,3.286,7.079,7.864,10.04,5.798,4.017,3.268,0.955,13.865,4.328,1.708,1.681,2.004,2.004,2.765,3.003,1.959,2.153,5.682,18.492,3.85,3.173,2.023,2.662,1.452,1.455,3.137,2.125,2.883,2.219,5.404,0.702,2.821,2.104,2.992,2.179,2.359,3.009,2.145,2.129,2.774,3.063,2.877,0.732,0.428,1.703,2.912,2.865,2.97,1.677,1.685,2.74,2.412,2.346,0.664,1.505,2.063,2.156,0.495,4.535,1.148,5.576,8.659,8.41,2.793,1.035,4,1.225,4.384,2.153,1.946,0.949,1.942,2.109,1.092,1.889,2.382,1.59,2.784,1.896,1.881,0.58,2.171,1.759,2.107,3.716,1.567,5.792,27.715,5.621,5.036,2.759,6.354,1.696,1.712,2.694,2.602,4.593,5.545,2.792,2.825,2.142,1.147,1.046,1.412,1.366,1.487,1.467,1.324,1.354,1.802,1.755,1.819,1.669,1.964,1.121,1.121,6.354,2.04,1.727,1.162,1.678,0.832,0.753,0.828,1.863,2.322,2.396,2.151,2.228,2.819,2.157,1.992,1.963,2.512,7.142,1.413,1.236,1.409,1.713,1.83,1.725,1.559,1.836,1.58,3.191,21.46,2.213,2.208,1.399,1.112,1.231,1.433,0.954,15.173,33.002,8.408,3.396,1.923,2.389,4.353,14.075,1.381,4.138,2.045,2.096,2.473,1.287,1.68,1.265,2.105,1.249,1.229,1.202,0.08,21.173,1.801,1.256,1.316,0.982,1.022,1.823,1.047,1.014,2.862,0.786,2.791,10.147,2.626,2.154,1.808,2.082,3.125,2.34,2.464,4.32,2.82,2.004,7.978,6.225,4.133,18.768,4.539,9.754,0.424,9.113,7.379,2.152,6.572,0.046,11.552,6.834,1.701,3.774,4.588,3.087,2.717,5.089,2.597,8.455,8.781,11.354,4.152,2.815,2.524,2.333,3.679,3.676,1.801,2.638,3.143,4.63,2.848,1.461,2.497,3.524,3.385,3.398,4.077,1.937,1.48,1.957,3.315,2.258,2.125,1.382,2.708,6.845,2.175,2.281,3.091,2.072,3.193,2.795,7.36,3.766,6.61,5.646,14.117,2.161,1.781,2.783,2.868,4.749,6.541,4.594,4.32,2.192,10.148,16.109,5.369,4.527,4.427,1.926,1.771,4.224,5.577,3.055,3.285,9.576,7.151,5.6,2.044,2.668,6.527,8.127,8.108,6.93,4.154,4.749,3.425,2.853,5.658,2.576,4.642,5.166,3.93,5.591,4.655,7.548,9.422,19.184,31.64,6.097,5.631,5.668,3.753,7.834,2.413,6.527,6.584,1.879,2.102,1.904,2.509,0.497,0.925,1.297,2.101,1.278,0.038,0.825,2.7,3.478,2.056,3.158,2.681,3.063,10.304,2.156,0.995,1.237,1.386,1.157,1.503,1.109,1.094,1.31,1.301,2.595,2.728,2.688,1.863,1.684,1.788,0.897,1.369,1.509,1.166,1.343,1.004,1.053,1.123,1.142,2.165,1.519,1.481,1.802,1.286,1.052,1.426,1.474,2.317,1.543,1.827,1.369,0.641,2.785,3.495,2.82,1.908,1.661,1.46,1.072,0.842,0.352,0.727,0.348,1.481,0.718,0.708,1.288,4.562,4.797,2.121,2.116,1.641,1.64,1.323,1.361,1.593,1.666,1.722,1.785,1.355,5.902,3.973,3.475,0.252,3.802,1.118,2.742,3.37,3.812,3.328,1.881,2.199,0.257,0.654,1.432,1.114,1.091,1.475,1.466,2.023,2.487,2.656,0.798,0.514,2.506,1.563,1.6,2.011,0.641,10.876,3.425,3.388,0.119,7.52,6.4,10.759,3.854,5.086,0.839,2.093,3.229,2.109,5.864,8.536,0.27,5.276,5.014,12.369,2.725,4.148,5.815,3.864,11.247,3.968,3.669,4.15,2.533,2.489,5.562,2.354,1.815,1.772,1.725,1.72,1.925,1.397,0.644,1.6,1.641,2.709,1.944,1.747,2.265,1.987,1.124,2.054,2.045,1.409,1.402,1.519,1.556,0.642,0.904,2.195,0.999,1.785,1.275,1.674,0.537,1.189,1.108,2.513,1.807,3.508,1.92,1.766,1.776,1.52,1.725,1.691,2.235,2.963,4.622,4.97,1.888,4.215,1.907,3.475,3.01,4.212,3.719,4.633,7.749,3.293,3.23,2.38,2.364,6.591,5.644,1.106,1.104,2.197,1.735,1.717,1.721,3.434,1.411,1.401,1.409,1.396,1.764,1.769,3.564,6.692,6.144,5.699,4.815,1.643,1.776,3.402,5.094,1.997,1.059,4.159,2.568,2.642,1.556,1.607,1.726,1.723,7.076,3.426,12.274,1.228,3.529,15.519,13.856,12.619,6.956,6.137,6.676,3.485,3.328,6.429,3.895,3.64,3.667,3.709,4.373,4.411,2.596,4.161,3.968,6.306,7.207,8.839,5.466,2.49,1.358,0.9,2.673,2.4,2.172,2.223,2.131,3.577,2.846,2.485,2.373,5.554,2.766,1.704,1.246,7.5,10.669,7.021,7.073,3.523,3.911,5.649,5.144,4.892,7.042,5.086,4.454,0.705,5.981,6.151,5.589,9.054,3.29,3.262,5.667,4.864,10.159,10.033,2.642,8.173,6.135,6.032,7.354,6.721,0.928,5.993,7.01,3.935,6.992,6.987,4.331,0.185,6.913,7.095,2.339,6.741,0.908,2.816,2.032,7.132,3.053,2.122,2.613,9.763,4.45,6.641,3.056,1.313,2.968,0.645,3.703,5.543,7.697,5.276,5.018,4.358,1.945,7.887,7.152,3.191,10.428,2.796,3.917,5.17,6.263,4.949,5.587,6.362,0.322,2.986,3.404,1.542,2.82,12.448,3.255,4.589,2.399,0.963,2.34,2.5,1.982,2.892,3.877,3.422,3.802,2.341,5.049,3.558,2.068,1.433,1.616,2.716,4.498,3.571,2.442,6.224,8.62,5.156,3.294,8.545,8.27,1.472,6.105,5.322,2.963,5.059,3.179,2.941,3,2.118,3.547,1.761,1.749,2.253,2.263,2.106,2.424,1.943,0.285,1.405,1.866,2.169,2.341,4.536,24.74,10.788,10.376,2.175,2.203,0.846,1.73,1.732,1.462,1.524,2.961,3.289,2.581,1.67,1.564,1.83,1.768,1.342,1.411,2.225,1.499,0.51,2.64,2.258,0.427,1.674,0.613,1.561,2.779,4.949,6.461,9.217,10.257,3.393,1.596,7.039,1.042,3.619,0.587,0.264,3.642,5.327,2.415,3.84,4.031,3.111,0.863,4.007,1.932,2.195,2.941,2.527,0.295,1.101,4.084,0.034,4.906,1.362,3.805,3.012,2.603,2.453,1.78,0.542,0.854,0.939,1.002,1.599,2.12,2.053,1.235,0.419,5.397,4.7,2.669,1.792,2.523,1.542,1.775,2.395,2.651,1.588,1.648,2.215,2.455,2.049,2.105,1.629,1.714,1.255,0.954,1.205,0.839,0.817,1.067,1.746,2.268,1.927,2.652,3.164,2.367,2.809,3.549,2.276,1.962,1.619,2.132,2.36,2.24,2.103,2.054,2.248,1.864,2.365,2.753,2.772,0.683,2.142,3.444,4.484,6.268,7.745,4.567,3.207,2.662,0.978,0.894,1.096,0.968,0.801,0.881,0.732,1.833,0.408,2.316,1.508,5.425,1.729,6.667,2.79,3.991,1.963,2.295,0.349,5.113,5.387,3.414,3.608,3.952,3.118,0.359,0.658,2.831,2.231,2.12,1.921,2.784,7.648,4.916,4.114,6.579,8.102,0.689,1.533,3.21,3.74,1.396,2.857,2.428,1.506,0.308,1.975,2.249,1.184,0.323,2.124,3.057,1.975,2.164,2.152,1.422,2.016,2.735,4.559,2.6,1.444,2.13,2.053,1.405,1.463,1.689,1.826,2.551,4.065,1.576,2.179,3.008,4.88,5.65,6.104,3.26,1.125,1.782,2.622,2.464,7.661,3.667,2.507,1.38,1.339,1.484,1.966,1.653,1.47,1.29,1.45,1.011,1.38,0.713,0.803,1.261,1.359,2.27,2.406,3.451,1.419,2.359,1.68,0.802,1.511,2.319,1.967,1.975,2.523,2.477,2.091,2.085,1.277,1.319,2.106,2.136,1.86,1.901,2.006,1.995,0.85,1.087,1.135,1.056,0.887,1.501,0.894,0.575,6.589,3.144,1.518,1.431,1.16,1.17,0.935,0.998,4.814,0.293,2.529,1.295,1.084,1.646,1.065,0.918,0.529,0.543,0.515,0.553,1.012,1.081,1.043,1.066,1.024,0.919,0.515,0.512,0.512,0.523,0.522,0.483,0.52,0.51,0.512,0.543,0.513,0.484,0.572,0.533,0.507,0.533,0.482,0.555,1.175,1.59,1.545,2.042,0.512,0.518,0.545,0.504,0.543,0.491,0.516,0.562,0.455,0.002,0.512,0.546,0.511,0.462,0.581,0.507,0.511,0.544,0.494,0.517,0.479,0.596,0.587,0.557,0.606,0.538,0.591,0.522,0.589,0.551,0.561,0.569,0.562,0.69,0.453,0.563,3.711,5.241,4.212,8.027,9.702,4.358,1.756,2.191,2.641,1.139,2.901,3.021,2.981,2.967,4.667,1.224,10.697,1.031,1.931,3.679,3.435,3.705,3.844,4.379,1.126,1.959,1.853,1.846,1.698,2.056,1.328,3.651,1.159,2.468,1.962,7.263,6.727,3.565,2.054,0.318,1.495,1.38,1.621,0.939,4.909,7.682,3.544,1.061,3.72,6.313,4.428,18.825,15.32,6.205,2.735,3.07,2.838,2.701,1.114,1.743,2.797,3.12,3.366,3.258,2.149,3.288,2.513,2.392,2.458,2.53,4.459,4.093,4.103,4.427,4.484,4.344,4.422,2.723,2.699,5.259,10.745,4.63,10.417,2.161,2.182,3.323,3.125,3.626,3.618,5.582,5.072,5.101,7.209,3.73,3.408,3.42,4.651,3.773,3.445,3.382,2.944,3.424,3.392,3.394,2.956,2.585,0.566,2.791,1.727,3.661,3.444,4.261,3.648,7.935,7.932,6.14,1.498,4.862,3.492,3.144,3.061,2.036,2.666,3.716,3.41,1.565,3.588,0.144,3.146,3.118,3.026,3.027,3.241,3.421,3.412,3.321,1.566,3.628,4.87,0.785,2.633,2.562,2.211,2.551,2.653,2.237,2.493,2.695,3.492,2.718,2.801,2.864,8.66,5.685,3.867,2.139,1.945,0.992,1.002,1.649,1.512,1.474,1.481,1.93,1.424,3.706,7.496,4.022,2.351,1.636,1.959,1.226,1.31,1.952,1.34,1.307,1.697,1.103,1.034,1.08,0.463,0.6,1.105,1.828,1.269,1.489,1.571,1.585,1.043,1.174,1.895,1.228,1.397,1.436,1.57,1.398,1.51,2.104,1.574,1.107,1.172,4.474,3.578,1.18,4.907,0.619,2.192,2.589,2.156,3.741,4.311,4.202,5.748,3.268,2.611,0.461,1.915,3.864,3.448,1.68,3.196,4.204,1.499,2.911,1.25,2.655,2.498,1.481,1.498,2.688,3.036,2.99,2.078,2.672,2.786,1.851,2.413,4.936,2.301,3.412,2.873,1.25,4.555,3.375,0.4,2.505,8.793,6.345,2.908,2.446,1.35,1.781,1.718,1.625,1.599,1.332,0.808,1.463,1.202,1.42,2.365,6.627,7.476,3.063,4.401,7.415,1.865,8.274,4.187,10.727,8.72,2.885,0.221,1.633,2.72,5.525,0.301,0.961,1.618,10.683,9.456,2.025,6.363,1.07,1.332,7.957,7.852,1.416,9.716,6.674,3.472,3.575,1.872,1.866,3.789,1.909,2.242,3.195,6.822,6.982,13.704,0.892,2.514,3.417,1.67,1.748,3.02,1.655,1.745,2.994,1.618,2.198,4.279,3.826,2.71,0.683,2.522,2.177,4.701,4.241,2.151,2.54,3.404,2.942,3.001,2.551,2.093,0.245,1.495,1.729,1.67,2.815,3.76,2.498,1.998,4.708,1.761,2.183,4.298,4.654,1.17,0.396,2.152,2.396,1.199,1.1,2.428,2.565,2.678,0.099,1.406,1.4,2.882,1.428,1.477,2.846,0.377,2.18,1.107,1.384,2.52,2.145,2.499,4.293,0.38,4.607,6.643,0.999,1.374,0.326,1.404,6.487,5.397,6.054,2.429,3.041,0.531,1.165,3.102,0.423,1.417,1.383,2.571,6.049,4.914,0.658,2.763,2.358,0.466,2.869,2.472,5.77,8.32,0.328,2.992,0.916,1.031,4.449,8.086,8.396,2.058,2.136,4.941,4.821,2.699,2.107,4.934,4.974,1.342,2.241,4.89,7.725,3.019,1.738,1.657,1.739,1.683,0.842,0.7,1.483,1.685,1.752,1.305,1.743,1.798,0.785,12.682,3.346,3.735,7.683,3.357,5.088,7.625,3.692,1.618,0.53,1.032,2.658,5.584,6.955,4.12,3.838,5.55,2.549,8.003,8.435,7.736,5.138,2.495,3.697,3.802,2.608,0.227,0.517,2.888,3.305,3.734,3.809,3.517,3.348,3.038,6.297,5.396,5.221,2.9,2.86,2.546,2.562,1.871,2.09,1.965,1.723,1.544,2.89,2.344,3.707,3.086,3.177,2.356,4.039,3.421,2.923,2.367,3.165,2.612,2.526,2.627,0.267,4.102,1.618,2.584,2.451,3.895,2.602,2.906,4.839,4.209,2.361,0.779,2.699,3.295,3.412,6.47,4.047,4.612,7.048,7.137,6.533,6.984,6.123,3.093,5.603,4.407,5.377,4.58,3.325,2.599,2.013,2.041,2.39,9.257,8.934,12.453,2.637,3.239,3.698,0.574,2.664,4.344,3.362,3.262,3.63,9.266,2.262,1.919,2.131,2,2.546,2.208,1.715,1.754,2.435,1.906,1.381,0.847,2.529,2.335,2.215,2.145,2.27,5.572,2.503,3.25,0.839,4.368,4.74,3.339,2.407,4.849,4.168,2.309,4.561,3.478,3.635,1.826,1.398,2.638,2.747,0.564,4.344,3.501,2.532,2.406,2.264,2.026,2.052,3.622,2.41,2.504,1.875,1.795,3.019,3.838,3.644,3.292,0.828,1.854,2.781,1.525,1.875,2.097,2.421,2.004,3.515,2.936,2.407,3.645,2.206,3.689,4.503,4.244,2.183,2.252,3.872,3.098,2.989,3.853,7.906,4.136,0.314,1.466,0.971,2.316,2.178,3.11,4.342,2.645,2.975,2.86,2.996,2.328,2.621,0.002,2.746,2.528,0.62,2.367,2.83,3.602,3.024,3.131,5.642,3.549,2.229,2.565,4.548,4.59,1.704,1.357,4.343,11.971,7.218,4.4,5.737,5.045,1.756,3.799,6.609,6.622,0.658,10.832,0.758,8.369,2.684,0.885,3.438,7.037,7.31,8.626,2.23,2.106,4.374,7.618,1.205,7.586,7.723,3.638,3.841,7.6,4.947,4.863,3.914,3.875,6.705,4.956,3.617,2.443,0.438,0.828,1.627,4.041,7.935,3.332,2.631,2.645,2.404,2.38,4.858,3.723,2.06,3.395,4.79,1.532,3.322,3.459,3.241,3.906,2.843,3.465,4.158,3.312,3.875,3.672,3.247,3.159,6.68,3.372,3.178,3.559,3.691,2.324,0.97,0.627,5.037,3.102,6.528,2.612,2.358,2.135,2.626,2.202,2.183,1.996,2.223,1.983,2.493,3.265,3.08,2.815,2.671,2.711,3.277,12.175,0.163,14.694,6.843,6.684,0.281,1.309,13.158,3.37,3.416,1.694,1.72,1.01,1.448,1.539,1.351,2.101,2.316,2.208,1.841,2.518,4.944,3.59,3.047,2.523,2.833,2.235,3.06,2.52,2.009,2.701,5.317,4.878,3.127,3.508,3.043,0.092,3.909,4.772,2.973,2.767,5.406,12.825,3.525,3.258,3.093,4.378,2.165,3.222,3.144,3.796,4.3,4.542,7.406,3.444,3.639,1.428,2.902,3.217,3.764,7.685,5.159,3.718,4.496,1.533,3.271,7.561,7.265,7.067,6.284,6.383,10.533,10.429,8.868,2.988,4.536,10.605,12.291,7.522,10.795,11.493,11.744,5.126,1.6,3.605,8.625,8.683,7.238,9.072,8.218,0.983,11.412,5.689,5.714,1.922,7.024,0.564,1.521,2.187,2.846,2.482,2.709,3.478,3.464,3.529,6.317,2.393,2.806,2.926,1.939,2.025,2.006,2.388,2.044,2.188,2.024,2.425,2.439,2.776,2.577,2.313,2.225,1.833,2.226,2.622,2.276,2.204,2.339,3.901,3.9,3.891,3.976,7.759,3.893,1.983,2.012,2.108,4.927,2.178,2.237,4.008,0.342,2.032,1.217,1.258,2.561,2.496,2.546,3.182,0.127,1.874,2.882,2.45,3.434,2.722,1.628,2.272,2.417,2.638,1.575,1.803,1.506,1.687,0.348,3.787,4.484,12.229,12.935,7.681,6.4,6.137,4.045,2.146,2.119,1.847,1.583,1.817,0.244,2.722,2.722,3.336,6.299,3.868,2.826,2.945,2.197,1.982,2.072,2.054,2.115,1.875,1.952,2.374,1.798,1.81,1.826,2.212,2.152,2.538,2.552,1.083,2.185,2.523,2.183,2.664,2.055,2.023,3.983,6.707,3.291,3.325,3.282,3.246,3.52,3.543,2.066,2.139,2.113,2.051,0.248,2.901,3.133,5.991,3.934,4.086,1.593,1.738,1.672,0.248,1.265,2.125,2.947,2.576,2.38,2.603,3.897,2.933,2.45,3.621,3.771,3.932,3.185,5.133,2.733,3.104,2.704,1.976,2.336,4.214,4.287,4.064,4.283,4.171,1.983,3.83,3.815,3.364,4.193,3.643,5.44,4.595,3.885,2.865,2.798,3.092,4.274,2.003,2.601,2.787,2.038,2.369,0.217,4.46,4.286,3.583,2.761,2.415,1.715,0.752,2.668,3.672,2.613,2.353,2.319,1.486,2.338,3.444,2.009,1.986,3.133,2.002,1.66,2.076,2.288,2.272,2.876,3.182,2.092,2.602,2.761,2.364,2.809,1.988,1.612,0.313,2.948,1.895,1.931,2.774,3.66,11.403,4.83,0.031,3.02,4.455,1.343,0.524,0.438,0.56,2.159,1.666,1.542,3.701,1.428,1.487,2.069,0.043,1.489,2.023,1.639,1.97,1.887,2.885,4.051,4.477,3.152,6.693,5.129,1.459,0.533,3.84,3.157,3.092,2.754,2.548,2.812,3.054,2.549,4.274,2.024,1.586,2.276,2.001,1.89,2.077,1.893,3.119,1.35,1.522,2.409,1.597,1.432,1.19,2.063,1.511,1.368,0.848,1.162,1.124,1.507,1.167,1.568,1.066,1.206,1.317,1.684,1.732,3.223,2.247,1.858,1.469,1.012,1.518,1.636,1.235,0.926,1.434,1.404,1.263,1.295,1.1,1.208,1.336,1.619,1.215,1.324,1.618,0.677,0.935,1.34,3.271,3.28,2.324,1.381,0.947,0.685,1.482,0.94,0.775,1.286,1.088,0.687,0.773,0.848,0.91,0.854,0.881,1.303,0.893,0.818,1.137,1.329,1.238,2.461,1.833,0.613,1.262,0.869,0.92,0.874,1.013,0.836,0.844,0.653,0.981,0.558,0.662,0.764,0.865,0.295,0.838,0.064,0.69,0.89,0.888,0.718,1.032,0.588,0.654,0.685,1.095,0.764,0.77,0.701,1.784,0.782,1.763,1.889,0.934,0.989,1.414,1.131,0.95,0.838,0.878,0.788,0.952,0.949,0.809,0.69,0.769,0.787,0.821,0.939,1.265,0.739,0.75,0.661,0.965,0.313,1.617,1.073,0.857,1.035,1.207,0.974,0.686,0.951,1.209,1.15,1.814,1.152,1.117,1.921,1.321,1.855,1.211,1.566,1.218,0.665,1.6,0.91,1.527,1.676,1.435,2.78,5.047,2.198,2.126,2.573,1.768,1.806,1.546,2.16,1.191,1.355,1.442,1.849,1.607,1.567,1.187,1.256,1.818,1.779,1.878,1.667,1.77,1.38,0.246,1.704,2.08,2.043,1.194,1.222,1.102,1.557,1.872,1.641,1.692,2.326,1.74,1.251,1.437,1.292,1.339,1.446,1.137,1.121,1.495,1.687,1.413,1.299,1.455,2.199,1.313,0.125,0.802,1.121,1.815,1.116,1.055,1.539,1.768,1.454,1.592,1.979,2.8,1.991,2.185,0.951,1.191,1.998,1.376,1.126,1.439,1.485,1.184,1.749,1.532,1.234,1.577,1.506,1.679,1.736,3.543,0.156,1.181,2.377,1.614,1.748,1.72,1.673,1.636,0.862,1.255,0.891,1.035,0.998,0.689,0.754,1.358,0.668,0.669,1.003,1.559,1.309,0.442,0.635,1.583,0.784,0.851,1.316,1.012,1.19,1.87,1.258,3.501,1.666,1.161,1.288,0.701,0.788,0.87,0.682,0.937,1.113,0.722,0.924,1.425,1.078,1.341,1.385,1.334,1.742,0.947,0.971,1.292,1.234,1,1.508,1.571,1.157,0.919,1.362,0.759,1.043,1.185,1.306,1.654,1.316,1.778,2.054,2.789,2.208,1.346,1.459,1.526,1.406,1.316,1.362,2.017,1.001,1.32,1.235,1.331,1.696,1.314,1.48,1.556,1.574,1.589,1.887,1.091,0.986,1.174,1.292,1.236,1.02,1.29,1.483,1.403,1.615,2.537,1.823,1.683,1.549,1.703,3.274,2.81,1.397,1.048,1.228,1.926,1.609,2.404,1.152,1.587,1.621,1.481,1.496,2.185,0.25,0.877,2.671,1.717,2.411,1.543,1.348,1.192,1.139,0.896,0.804,1.802,1.855,2.873,2.403,3.971,3.867,0.977,3.796,1.333,2.67,1.213,4.647,2.557,2.034,2.588,1.243,1.378,1.573,0.89,0.158,1.973,2.566,1.899,1.336,0.127,3.298,3.289,0.863,0.25,0.878,1.109,2.066,1.31,1.66,1.902,2.577,2.03,0.063,1.757,1.401,1.36,1.747,1.698,1.659,1.133,2.102,1.786,1.089,0.655,1.054,0.618,0.158,0.584,1.585,2.108,1.602,2.089,2.115,2.899,2.88,2.821,1.848,2.118,2.729,4.563,3.286,3.65,4.367,4.816,7.32,5.29,6.669,6.8,7.481,3.983,3.941,2.355,2.389,2.236,2.152,1.253,0.667,1.144,0.472,0.712,0.652,1.026,1.099,1.049,0.87,1.028,1.198,0.746,1.045,1.156,0.648,1.221,1.227,1.215,0.833,0.862,0.838,1.249,0.584,0.58,0.447,1.232,1.46,0.469,0.747,0.774,0.838,0.93,0.77,0.763,1.086,0.611,0.649,0.546,0.513,0.985,0.737,0.922,0.867,1.072,1.315,1.459,2.451,2.383,1.259,0.967,0.694,0.844,0.728,0.785,1.256,1.174,1.314,1.335,0.819,19.314,3.186,5.666,5.121,4.19,2.843,2.575,2.768,3.269,3.021,2.527,4.704,2.242,3.134,3.868,8.586,3.476,3.438,2.42,3.505,3.369,2.839,2.479,3.267,3.265,0.161,3.046,3.352,3.021,2.754,3.87,5.457,16.982,8.752,9.944,6.297,5.242,5.526,4.144,2.473,2.019,2.34,2.641,3.168,2.559,2.14,2.238,3.457,2.529,2.137,3.168,2.774,3.193,6.761,3.985,5.096,3.778,4.266,7.51,4.954,5.141,5.679,3.548,1.716,0.637,2.377,0.088,2.268,1.408,1.397,1.752,1.482,4.03,0.887,3.852,3.421,1.039,1.318,4.579,3.256,7.404,4.125,3.703,3.081,3.029,5.072,3.316,3.3,2.852,2.845,2.203,2.189,2.62,2.12,3.041,1.219,5.222,5.919,1.242,1.358,2.452,2.366,0.781,3.364,2.347,2.238,2.572,3.085,2.21,1.865,3.794,2.558,2.438,3.14,2.086,2.629,4.179,3.753,4.605,2.813,3.315,2.661,2.967,2.535,2.528,2.753,1.878,2.135,10.623,2.627,2.325,1.77,2.237,1.965,2.484,1.388,2.502,1.2,2.386,1.409,1.523,2.688,1.635,2.491,2.569,2.23,2.138,1.866,2.04,2.68,2.799,7.553,4.826,0.707,2.424,4.188,3.176,2.9,2.931,2.798,2.822,2.137,3.546,3.168,3.022,3.74,4.308,3.627,4.841,6.689,3.839,3.464,4.31,7.731,21.711,2.028,7.88,0.797,10.958,9.875,10.472,8.623,4.87,14.152,3.381,1.8,1.797,3.687,2.779,1.706,1.703,1.848,4.647,3.009,1.974,3.422,2.849,2.839,2.806,2.772,4.394,2.023,3.551,5.631,2.387,2.291,0.277,3.995,1.842,1.732,0.568,2.19,2.954,3.184,1.759,1.827,1.509,1.749,2.168,2.351,2.139,2.236,1.951,2.01,3.347,1.745,1.83,2.532,1.443,1.513,1.359,1.403,2.864,2.586,2.812,1.927,2.005,2.017,1.896,2.148,2.147,1.785,3.132,11.193,3.674,3.564,1.802,5.102,3.659,3.51,3.594,3.562,1.53,3.216,1.562,1.692,1.656,1.614,2.895,1.492,1.408,1.774,1.487,3.278,1.579,1.37,0.147,2.285,2.499,2.548,2.19,2.16,2.113,2.564,2.504,3.216,4.789,2.32,2.366,3.597,2.683,2.912,2.794,2.562,2.635,3.133,2.945,3.249,2.134,2.093,2.586,2.472,2.97,1.659,1.825,3.157,1.588,2.041,1.525,1.633,2.625,2.727,2.173,1.824,1.734,3.111,3.688,3.588,3.034,2.453,3.368,3.345,3.51,3.587,6.264,3.152,3.082,3.092,3.216,3.104,3.292,2.926,3.358,3.551,3.688,3.524,3.64,1.679,1.22,2.795,3.078,3.157,3.811,3.997,3.124,3.112,3.113,3.587,1.872,1.779,3.139,3.417,1.621,1.56,2.071,1.946,2.724,0.922,2.45,1.88,1.384,2.731,1.894,2.004,2.704,2.001,3.15,1.518,1.417,2.134,1.995,1.659,2.52,1.781,1.989,2.414,3.988,0.142,1.117,0.122,2.273,2.212,2.179,1.319,1.3,2.596,3.131,3.112,2.376,2.331,3.583,3.678,3.256,8.129,0.064,4.542,3.844,2.747,4.26,2.441,2.951,2.199,2.37,2.376,3.049,2.633,2.619,0.003,0.631,2.147,2.156,2.753,2.5,8.69,5.814,8.431,2.518,3.187,3.306,5.286,2.464,0.363,0.08,5.369,3.706,4.014,1.551,3.026,6.375,9.307,0.858,2.057,2.089,3.948,3.96,4.061,9.134,3.33,4.073,3.479,5.101,5.991,0.068,2.445,1.631,7.624,7.649,8.649,6.638,2.899,2.576,9.455,5.206,1.955,0.246,2.791,4.17,6.24,5.399,5.444,5.44,5.444,5.324,15.155,5.437,4.173,2.074,2.052,1.804,1.793,1.831,1.818,3.654,1.832,1.804,1.994,1.955,2.046,2.041,5.062,2.673,2.699,1.868,1.502,4.362,7.428,7.919,11.366,13.373,33.026,8.801,2.628,2.618,3.377,3.464,3.525,2.321,1.863,1.875,3.608,3.585,3.332,3.349,0.646,3.24,3.203,9.78,5.057,0.865,5.765,5.429,4.99,1.317,4.07,4.038,2.32,2.469,4.918,5.39,3.396,6.633,3.808,4.437,10.941,9.509,5.01,2.612,2.539,1.736,2.076,2.604,2.641,2.104,10.856,2.043,1.641,1.518,1.307,1.07,1.765,2.011,1.051,1,2.059,1.051,1.018,1.451,1.115,1.056,2.497,1.339,1.346,1.343,1.689,1.392,1.1,1.038,1.552,2.615,2.07,1.544,2.033,0.036,1.541,2.081,2.035,2.068,2.161,1.249,1.223,2.061,2.072,1.842,1.777,1.736,1.825,3.614,2.979,6.11,3.28,1.71,1.888,1.623,1.503,2.557,2.116,1.753,1.9,2.027,2.106,3.634,1.783,1.866,3.058,3.149,4.598,7.514,10.792,6.742,2.663,2.715,2.858,2.94,2.597,2.438,2.504,2.523,2.584,2.585,2.66,2.577,2.636,10.902,2.294,3.672,3.19,3.18,2.134,5.775,6.496,5.292,2.385,2.467,2.624,1.721,1.636,2.461,2.209,2.639,2.695,2.605,4.153,3.424,2.999,3.551,3.141,4.017,5.768,0.062,1.357,4.01,1.261,1.439,1.482,2.313,2.236,4.687,2.771,2.296,1.613,0.161,1.48,3.278,1.747,1.472,0.316,1.053,3.528,2.525,3.281,9.007,3.52,2.482,2.365,2.437,2.44,3.288,3.705,7.972,3.972,1.851,1.058,5.433,7.15,4.142,3.083,1.073,6.4,9.032,5.954,2.302,2.304,2.319,2.316,2.288,2.291,1.99,1.996,2.033,1.93,2.719,2.551,2.426,3.054,3.341,8.087,6.826,7.452,7.668,7.406,5.226,5.526,3.095,1.518,4.493,13.914,0.314,5.759,2.825,3.075,2.048,1.043,3.267,2.958,1.454,1.45,3.933,2.242,3.25,1.635,2.025,2.137,2.127,1.08,0.954,0.949,3.846,7.852,7.836,4.445,2.133,1.502,1.635,3.076,7.373,1.901,3.371,3.357,9.101,13.628,2.186,13.138,6.767,9.443,7.916,5.091,5.171,5.906,5.371,5.276,3.229,1.621,2.465,2.755,2.434,19.532,5.226,0.76,3.756,3.852,4.261,2.578,2.816,2.456,2.233,4.583,5.067,4.152,4.908,12.299,0.973,1.509,1.823,2.172,1.787,2.473,2.531,1.992,2.124,1.007,1.034,1.169,1.181,2.323,1.924,2.078,2.079,2.116,1.897,2.015,4.454,4.451,2.676,2.3,2.245,2.115,2.693,2.755,2.801,1.006,1.387,1.508,2.746,1.936,2.036,5.199,2.09,2.017,2.594,2.568,2.126,2.403,1.998,1.345,1.405,1.28,1.641,2.186,1.732,1.637,1.507,1.784,1.189,0.586,0.872,1.412,1.362,1.794,1.415,2.429,2.53,1.832,2.853,4.134,3.661,4.876,5.095,3.031,3.011,2.66,0.454,9.107,11.547,7.943,4.308,5.078,2.351,5.635,5.014,6.081,5.402,3.523,2.849,5.462,2.328,4.946,5.531,4.539,4.973,5.326,6.041,4.877,4.024,3.618,16.321,46.6,2.583,3.727,8.589,10.769,4.829,13.088,0.758,1.854,4.885,2.454,2.976,3.766,8.447,0.012,7.994,10.486,4.508,3.26,4.049,2.722,0.359,4.585,5.347,4.977,4.967,4.962,8.579,12.887,5.751,5.318,5.304,10.614,1.235,0.992,2.175,2.211,4.453,4.229,7.235,3.431,5.344,2.352,2.291,5.358,2.244,2.314,4.548,6.55,2.528,0.492,1.05,11.465,1.616,1.62,3.184,3.146,3.33,1.591,1.595,0.803,0.802,1.614,1.542,1.552,3.308,1.622,1.622,1.603,1.604,1.572,1.58,1.597,1.593,1.66,1.654,3.146,3.19,3.111,3.145,3.11,3.124,3.075,1.567,1.58,1.564,1.568,1.541,1.535,3.126,1.575,1.58,3.017,3.115,1.57,1.568,3.103,3.131,3.09,1.565,1.56,1.565,1.567,3.144,1.544,1.545,3.12,1.546,1.545,3.041,1.558,1.55,3.108,3.128,3.103,1.578,1.579,3.122,3.114,3.146,1.973,0.368,4.66,2.865,3.106,1.402,1.491,2.095,1.103,3.897,8.641,4.074,3.597,3.605,3.072,3.104,7.747,3.899,3.885,4.151,3.231,1.963,2.566,2.051,2.029,2.091,2.099,3.099,3.111,4.012,2.163,1.565,3.101,1.52,2.255,3.757,4.066,0.346,4.17,2.089,2.092,2.062,0.406,1.161,1.429,10.354,2.857,2.911,1.394,1.46,2.881,2.859,1.526,1.525,1.435,1.432,1.414,1.422,1.46,1.435,1.414,1.447,1.416,1.424,1.502,0.971,1.236,1.406,1.392,0.032,1.462,1.417,1.439,1.442,1.611,3.046,2.519,2.744,2.723,1.615,1.615,1.601,1.615,1.609,1.609,1.62,1.61,1.599,1.619,1.607,1.613,1.616,1.6,1.596,1.619,1.642,1.585,1.648,1.604,1.601,1.627,1.621,1.576,1.645,1.621,1.616,3.241,3.226,1.67,1.54,1.716,3.236,3.161,3.292,1.616,1.614,3.281,8.5,13.953,11.763,13.844,0.885,0.559,3.76,6.391,3.145,5.137,10.687,6.659,7.68,6.648,7.167,17.75,21.9,8.595,9.754,3.679,3.885,0.211,0.545,4.298,3.195,3.77,4.668,4.757,10.98,4.378,3.046,3.96,1.481,2.323,2.426,3.011,4.683,5.295,7.191,9.581,9.295,6.629,7.01,5.687,3.823,5.615,3.02,0.465,2.257,4.08,4.065,3.206,1.211,1.449,1.781,1.483,1.981,3.758,2.231,0.713,3.296,3.186,2.537,2.446,2.814,2.998,3.194,2.57,2.729,3.782,2.759,2.015,0.466,2.959,2.721,1.747,5.402,2.411,2.028,2.055,2.933,2.609,4.25,3.008,4.856,3.838,3.523,5.357,4.999,4.594,4.323,2.734,2.117,2.439,2.348,2.385,2.482,3.279,2.222,1.909,2.527,2.113,1.752,1.683,4.052,2.434,4.092,6.776,8.919,8.78,3.788,1.496,3.075,2.9,2.496,2.63,3.109,2.592,1.729,5.961,6.379,1.989,2.107,2.148,1.714,2.686,3.574,4.019,3.894,2.008,3.42,2.325,2.943,2.834,1.321,2.73,2.537,3.293,5.08,3.517,2.381,6.594,5.818,4.051,9.325,9.817,4.019,4.191,3.581,1.986,2.96,2.576,1.843,0.842,2.042,2.561,2.377,3.551,2.563,4.03,3.313,3.444,3.903,4.32,2.568,2.394,0.577,1.189,3.528,3.331,3.686,2.361,0.775,2.542,4.288,0.495,6.512,8.776,6.624,5.864,9.669,4.414,5.926,11.838,0.318,3.725,4.793,9.309,2.741,6.598,2.9,1.065,4.237,0.006,2.853,3.227,1.697,4.389,0.543,9.068,1.924,1.574,1.393,0.084,4.531,8.366,1.589,1.773,2.448,1.735,1.531,0.629,2.132,2.255,5.203,2.917,2.378,1.981,5.801,6.194,6.676,2.424,0.707,6.571,2.347,2.788,2.051,1.225,0.68,1.912,3.041,2.378,3.662,6.693,5.358,8.923,11.449,5.979,8.368,3.556,3.95,2.584,4.247,6.216,1.494,1.879,1.602,0.77,1.76,0.339,3.157,3.08,2.093,0.994,2.569,1.853,3.343,1.467,7.819,6.127,4.241,7.51,12.163,14.687,17.355,15.877,13.698,17.096,15.724,14.847,14.791,13.712,4.357,3.693,2.289,1.4,1.301,3.251,8.9,7.327,13.812,2.484,4.771,6.435,0.893,5.292,10.628,0.908,5.727,3.178,2.555,2.911,1.552,0.99,2.845,3.538,3.879,4.605,5.255,4.486,1.156,0.652,5.545,5.248,8.104,4.001,1.745,2.182,0.598,4.362,4.963,2.991,3.314,3.483,3.111,2.875,3.159,2.268,4.157,2.78,2.589,2.385,1.796,2.929,0.338,1.631,1.35,1.503,3.792,3.342,4.383,5.267,4.161,2.606,1.867,1.709,2.45,2.393,1.804,1.804,1.591,1.372,2.711,2.956,2.014,2.147,1.495,1.374,1.698,1.638,1.552,2.123,1.639,2.329,1.827,1.813,1.676,1.746,1.475,1.889,1.226,1.498,1.014,1.054,1.848,1.767,1.679,1.702,1.497,1.94,2.022,1.952,2.896,2.881,3.361,2.733,3.883,5.01,3.02,3.026,4.722,4.296,4.538,3.805,3.208,2.266,3.287,0.627,3.534,3.003,4.838,2.256,0.774,4.788,7.572,2.558,4.734,6.469,10.049,5.314,4.868,3.368,5.071,4.155,3.342,3.132,2.302,2.717,1.529,1.715,2.783,1.606,1.824,1.976,2.523,1.792,0.406,1.627,2.874,0.979,1.597,2.533,2.899,1.22,10.441,6.213,2.701,10.006,1.242,2.324,3.139,2.817,2.384,2.266,1.659,1.844,1.759,2.422,2.158,2.336,0.869,2.398,3.741,2.61,2.678,2.292,2.443,0.082,1.953,2.039,1.807,1.169,2.561,3.168,3.349,1.377,4.121,7.88,7.645,5.114,3.729,3.233,3.087,3.543,2.349,1.798,1.711,1.666,1.553,1.64,1.489,2.591,2.526,2.865,2.983,2.987,2.587,2.972,3.372,2.65,1.461,2.528,3.399,4.126,3.974,2.621,2.442,1.751,1.984,1.993,2.407,2.049,1.576,1.381,1.681,2.856,5.568,5.662,3.019,3.232,1.799,2.105,3.134,3.092,4.411,3.165,1.539,0.738,3.594,4.413,6.278,1.892,6.385,0.77,0.994,3.604,3.027,2.099,1.833,1.792,3.655,4.072,3.656,4.914,4.008,5.945,4.365,3.13,3.064,5.881,3.351,3.695,4.619,6.057,5.196,4.774,4.63,5.603,7.232,8.021,8.176,6.45,4.094,4.01,2.993,1.425,1.43,2.393,6.094,5.214,4.951,5.048,1.346,6.131,3.968,5.48,3.634,3.14,3.862,3.454,4.123,3.841,4.929,4.099,3.631,4.601,4.368,3.678,3.853,1.18,1.477,6.801,6.392,6.074,4.64,0.205,3.69,3.711,4.207,4.044,3.988,2.429,2.768,3.636,3.052,2.479,3.377,3.825,2.18,2.166,0.637,0.232,6.079,4.041,4.042,1.145,4.777,4.766,3.183,2.622,1.281,4.595,7.606,6.601,3.086,2.643,2.143,2.042,2.27,2.359,2.201,1.688,2.489,1.971,2.697,2.346,3.12,6.363,6.332,3.49,3.059,3.658,3.782,4.547,4.184,3.493,3.467,4.074,2.505,5.4,2.97,3.057,2.706,2.677,2.811,2.734,2.167,2.159,3.591,2.79,2.552,2.47,3.748,3.606,4.04,1.816,4.252,2.792,3.313,3.464,0.158,3.408,5.418,4.788,1.959,4.086,0.794,2.207,1.99,1.018,1.177,1.237,2.059,1.666,1.687,1.198,1.97,1.739,1.66,2.048,2.853,3.297,3.313,3.498,4.825,2.336,5.961,2.734,2.767,3.033,2.013,2.206,2.559,1.447,1.551,1.602,1.982,2.855,3.139,2.418,2.407,1.945,1.749,1.134,2.749,2.426,2.313,2.088,2.375,2.083,1.969,2.773,2.85,1.978,2.425,2.061,2.089,2.711,1.218,1.186,0.992,1.016,1.253,1.562,1.631,2.804,1.456,1.392,1.19,0.846,1.159,0.946,1.229,1.453,1.244,1.199,1.359,0.821,1.193,1.275,1.219,1.35,1.124,2.001,2.072,1.588,1.595,0.496,1.463,2.217,0.811,1.351,1.108,0.59,1.029,0.493,1.145,1.126,1.84,0.942,1.124,1.177,1.406,1.252,1.323,2.632,2.16,1.612,1.652,1.815,1.767,3.393,1.861,1.922,1.773,1.784,0.001,1.835,1.453,1.465,1.416,1.407,1.669,0.428,1.717,1.658,1.324,1.446,2.448,2.651,3.011,2.514,14.133,16.025,10.71,12.462,6.17,3.072,3.143,4.101,0.279,1.801,1.663,7.636,0.764,1.768,1.541,1.547,3.145,4.577,2.99,3.033,2.661,3.374,2.646,2.282,1.967,1.538,1.479,1.315,0.726,0.809,0.744,1.44,2.269,2.429,1.852,2.352,1.753,1.835,1.779,1.73,2.353,2.016,2.159,1.37,1.256,1.412,1.575,1.485,1.443,2.557,4.6,0.707,3.047,2.42,2.751,5.517,5.146,4.502,2.962,1.811,1.603,1.275,1.37,2.195,1.485,1.232,1.496,1.48,1.973,1.261,1.102,1.967,1.605,1.532,1.606,1.476,1.611,0.958,1.012,1.125,1.149,0.792,0.857,1.056,0.917,1.12,1.203,1.157,1.243,2.207,1.753,1.768,1.474,1.916,3.578,2.245,1.507,0.783,1.033,2.566,0.188,1.45,5.636,5.832,5.463,3.515,16.896,3.927,4.007,4.146,4.195,4.267,13.727,16.324,3.718,1.392,7.788,5.096,57.846,4.331,3.975,2.028,2.053,1.859,2.885,2.982,2.692,2.387,2.021,1.862,2.781,1.933,2.396,2.731,1.956,1.944,1.634,2.358,2.338,1.964,1.982,3.455,9.494,2.439,11.551,15.473,3.488,3.534,3.802,3.785,4.841,2.366,2.706,3.484,3.419,1.58,1.649,2.573,2.652,2.252,2.048,1.36,1.307,2.484,2.616,2.885,3.224,2.441,2.612,4.887,2.69,5.239,4.812,1.292,2.722,1.985,1.948,2.318,2.319,2.795,2.729,4.729,14.899,20.789,5.026,2.386,2.375,2.262,1.123,1.219,1.606,1.708,1.48,1.511,1.424,1.359,2.688,1.752,1.7,1.396,2.681,2.705,2.525,2.512,1.568,1.613,3.247,6.176,8.767,1.127,5.224,4.437,3.935,3.301,1.585,2.415,1.116,1.41,1.768,1.452,2.916,1.77,1.768,1.889,2.009,1.461,1.501,1.416,2.263,2.037,1.225,1.423,1.604,1.661,1.849,2.007,3.06,2.892,2.548,2.591,3.975,2.669,2.707,2.665,2.741,2.75,2.715,3.189,3.161,2.073,1.871,0.255,4.297,3.394,3.532,3.352,3.362,3.399,3.921,3.638,2.929,2.925,3.813,3.85,2.5,2.514,3.303,3.326,2.477,3.966,3.995,2.087,2.146,2.15,2.097,5.98,4.676,1.35,3.27,1.402,1.826,0.909,0.956,1.822,2.097,1.18,1.728,1.709,2.449,1.216,1.269,1.255,1.286,1.507,1.551,1.317,1.683,1.6,2.815,7.36,28.344,5.347,2.074,0.811,2.27,1.238,1.275,1.359,1.729,1.666,1.987,2.066,2.075,1.278,1.315,1.088,1.858,3.045,4.34,18.493,8.356,3.496,6.914,3.742,1.892,1.679,1.835,1.81,1.94,3.291,2.569,2.022,2.13,2.123,1.929,1.721,1.371,1.63,1.313,1.671,2.062,1.676,1.693,1.64,1.302,1.267,1.686,1.535,1.579,0.584,1.29,1.634,2.514,2.087,1.621,2.517,15.035,0.828,0.631,5.811,3.422,2.033,2.578,1.082,1.011,0.822,0.826,0.857,0.786,0.835,0.838,0.832,0.804,1.384,1.627,0.43,0.69,1.029,1.814,1.278,1.001,2.433,2.071,1.044,1.248,0.808,0.272,0.355,1.366,20.023,6.838,8.215,3.843,5.723,1.338,2.542,1.408,3.375,16.052,4.971,17.715,32.643,5.141,2.522,3.392,1.85,1.94,1.571,1.84,2.481,2.611,1.728,2.301,3.262,2.516,2.095,2.569,2.544,2.098,2.23,2.001,0.187,1.62,1.832,2.537,2.993,2.049,2.259,2.644,3.935,2.07,1.967,3.969,2.607,2.003,1.617,1.072,1.207,1.199,1.252,1.145,1.403,1.413,1.502,1.478,1.614,2.015,4.092,3.253,3.34,1.046,3.295,1.636,1.674,1.315,0.942,0.943,0.928,1.22,1.27,1.657,1.007,1.086,1.161,0.993,0.727,1.222,1.171,1.472,1.082,1.242,1.232,0.996,1.11,1.048,0.645,1.425,0.594,1.07,0.453,1.171,1.307,1.189,1.223,0.946,1.089,2.29,0.785,2.644,0.988,1.038,1.286,1.328,1.339,1.231,1.059,0.982,0.944,1.652,0.866,1.071,0.997,1.217,1.157,1.025,1.94,3.84,7.428,9.032,9.05,8.037,4.921,10.657,1.719,5.063,3.472,2.358,2.444,2.185,2.204,2.708,2.671,2.747,4.441,4.258,2.895,0.066,2.711,7.118,5.733,4.64,8.697,5.857,6.417,2.257,0.779,2.62,3.153,2.956,1.758,1.905,2.796,2.691,3.081,1.042,1.676,2.23,2.968,3.189,4.219,4.642,9.766,11.308,6.95,5.694,6.121,4.504,3.046,2.262,1.692,2.437,2.36,3.325,2.405,2.408,2.023,1.995,2.469,2.092,2.948,2.436,2.71,1.974,2.045,2.009,2.083,1.583,1.553,2.659,0.249,1.727,1.764,3.394,2.756,1.256,2.788,4.081,2.747,3.481,0.295,5.669,3.654,3.45,2.227,4.902,1.25,3.446,2.813,3.341,0.557,1.734,2.592,2.428,1.207,1.907,2.24,2.197,1.636,2.542,2.689,0.96,1.332,2.617,2.957,4.155,1.479,1.277,4.063,4.055,2.691,3.602,2.273,1.786,3.403,4.76,5.4,4.866,3.857,7.346,7.625,3.461,13.289,12.461,4.637,3.142,1.57,13.823,1.093,2.823,2.734,3.219,2.594,1.871,3.311,2.185,2.866,3.15,8.311,6.596,16.57,1.878,2.101,0.866,16.503,6.503,1.995,2.049,1.535,1.927,2.533,2.983,3.456,5.221,2.25,0.881,1.67,5.829,4.158,1.804,1.809,1.64,1.815,1.88,1.439,1.813,1.003,0.964,0.877,0.982,1.414,1.268,1.328,1.37,1.291,3.787,5.568,4.06,1.819,0.328,1.325,1.277,1.52,1.502,1.05,1.305,1.691,1.591,1.434,1.523,1.881,2.188,1.89,1.371,0.888,1.033,0.847,0.4,1.689,4.313,5.216,5.326,3.073,0.199,3.045,2.913,1.115,2.527,1.943,2.704,1.946,5.534,2.645,0.464,9.258,0.632,1.024,1.196,2.906,3.048,3.42,3.488,6.968,6.991,9.731,4.379,5.494,2.533,2.538,2.328,2.646,2.961,7.065,2.027,1.67,0.987,0.507,4.581,9.939,1.867,12.906,3.167,6.317,9.451,2.896,13.253,2.871,13.265,1.533,1.167,3.503,12.473,2.901,0.835,0.918,1.024,0.614,0.701,0.653,0.632,4.939,2.408,0.833,0.797,1.864,1.156,2.332,0.623,0.564,0.454,0.468,0.575,0.956,0.479,0.414,0.381,0.578,13.184,0.573,0.617,0.598,0.564,1.779,4.72,1.961,0.828,0.532,0.585,0.492,0.281,0.273,0.328,0.318,0.303,0.341,0.391,0.311,0.256,1.019,1.062,1.731,0.976,2.479,3.023,3.603,3.046,2.96,4.086,54.39,2.777,3.025,1.025,4.5,6.371,13.633,1.844,2.782,1.179,1.357,4.592,0.298,5.082,4.023,1.029,0.718,0.519,0.462,0.506,0.395,0.372,0.41,0.375,0.403,0.432,0.372,0.405,0.36,0.399,0.329,2.795,1.743,0.406,0.704,0.681,0.983,1.597,6.587,11.351,2.827,2.815,5.637,3.225,13.341,1.905,1.293,1.264,1.288,1.281,0.822,0.915,2.465,15.09,2.708,1.991,0.961,0.91,1.015,0.967,0.604,1.813,1.212,1.289,1.569,1.516,1.707,1.078,0.885,0.965,0.87,0.946,0.656,0.786,1.177,1.209,1.168,1.23,1.193,1.143,1.166,1.291,8.179,0.927,0.618,0.652,0.601,1.036,1.187,1.198,1.19,0.894,0.85,1.256,1.206,5.581,0.072,14.628,9.238,2.39,0.615,0.533,0.476,0.631,0.568,0.57,0.625,0.556,0.597,0.79,0.633,1.485,1.73,2.007,5.513,4.413,1.036,0.884,1.125,1.252,1.039,1.118,0.903,0.804,0.838,0.873,0.821,0.801,0.811,0.779,0.843,0.821,0.849,0.772,1.901,1.016,24.794,0.855,1.511,0.592,0.769,0.645,1.579,0.764,0.686,0.877,0.833,0.603,0.65,0.736,1.607,0.666,0.594,1.065,0.83,0.92,24.614,3.296,2.295,3.407,3.38,14.014,11.971,1.159,1.519,1.111,1.494,1.424,0.566,0.173,1.036,1.115,1.12,1.482,1.546,1.194,1.43,1.757,1.798,2.002,1.243,1.329,2.079,2.239,1.21,1.41,1.447,1.206,1.19,6.272,3.523,3.512,1.45,1.413,3.025,2.598,2.621,3.389,1.91,2.873,1.28,1.617,4.797,3.331,2.41,2.398,1.473,1.441,1.672,1.669,2.863,1.442,1.423,1.231,1.207,1.401,1.211,1.156,1.016,1.173,1.214,1.413,1.634,1.588,1.575,1.534,1.937,1.97,1.915,1.953,2.696,2.71,3.841,2.424,3.029,3.974,3.426,2.562,3.621,1.67,2.059,2.032,3.424,5.15,1.924,1.91,1.975,1.146,1.174,1.391,1.178,3.004,3.103,1.448,1.427,2.723,2.345,2.557,1.029,1.077,1.887,1.926,1.937,1.926,1.906,1.952,3.646,5.551,2.055,2.061,2.523,2.559,2.35,2.547,2.786,2.935,2.83,4.825,6.243,3.334,3.331,1.875,1.88,1.847,1.853,2.822,2.782,2.797,2.317,2.779,2.362,2.272,2.337,2.294,1.391,1.39,1.667,1.618,1.85,1.81,2.345,2.35,2.75,1.851,1.914,1.095,1.161,1.357,1.394,3.175,1.968,2.262,1.88,2.281,4.18,1.775,1.625,1.776,1.819,1.378,1.425,1.372,1.393,1.852,1.16,0.699,0.906,0.962,1.345,0.989,0.907,0.923,0.895,0.968,1.389,0.647,0.678,0.868,0.907,0.899,0.463,0.476,0.902,0.923,0.435,0.465,0.862,1.568,2.108,2.991,2.891,2.885,2.983,4.61,2.643,1.395,1.16,2.44,2.438,2.405,2.707,3.907,4.503,4.716,5.84,1.967,6.343,1.694,2.166,0.001,2.432,3.835,0.164,1.094,0.733,1.031,2.611,3.611,2.4,2.357,1.884,2.244,0.943,1.14,0.865,1.04,0.808,0.798,0.656,0.987,0.934,1.388,1.365,1.109,0.921,0.802,1.402,1.54,1.57,1.473,1.676,2.912,0.89,1.33,1.358,0.931,0.921,1.364,1.48,1.287,0.353,0.65,1.011,0.926,0.954,1.707,1.329,1.248,1.361,1.355,1.397,1.322,1.226,1.474,1.331,1.285,1.59,0.89,1.452,1.125,1.963,1.676,1.079,1.115,1.683,1.788,2.41,1.426,1.467,2.559,3.3,4.063,4.881,2.381,2.671,2.661,4.175,3.638,2.931,4.108,2.111,2.057,2.822,2.132,2.093,2.356,2.337,1.909,1.844,2.203,2.204,2.293,1.55,1.498,2.426,2.034,1.779,1.744,1.703,0.6,2.368,0.56,1.08,1.902,1.655,0.998,0.873,1.973,1.1,1.682,2.021,2.012,1.199,1.206,0.973,0.578,0.528,1.304,0.994,0.689,0.472,0.601,0.658,0.92,0.655,0.636,0.751,0.72,1.042,0.996,2.266,1.648,0.212,0.84,0.898,0.738,0.673,0.889,0.664,0.698,1.17,1.098,0.999,0.932,1.168,1.373,1.247,1.334,0.835,1.134,0.683,0.735,0.53,0.555,0.521,0.842,0.92,11.62,1.488,1.223,1.887,1.763,2.195,1.773,1.305,1.314,1.366,1.556,2.686,3.155,1.603,1.318,1.205,1.024,1.244,1.25,1.037,1.302,1.333,1.31,1.415,1.141,1.347,1.371,1.198,1.126,1.139,1.078,1.158,1.282,1.216,1.113,1.459,1.543,2.054,3.095,3.247,1.58,1.223,1.105,1.055,0.47,1.081,1.222,1.172,2.139,1.869,1.9,1.193,1.081,1.118,1.406,1.177,1.931,1.638,1.512,1.254,1.229,1.033,1.231,1.475,1.201,1.404,1.042,1.3,1.504,5.173,2.344,2.253,1.982,1.294,1,1.298,1.09,1.275,1.012,1.083,1.242,1.131,1.707,3.228,0.911,1.57,1.67,2.046,0.95,0.917,0.339,0.96,1.055,1.08,0.989,0.912,1.324,1.567,0.211,1.645,1.063,0.952,0.666,0.748,0.696,0.451,0.331,1.189,1.309,0.74,0.461,0.85,1.06,1.378,1.053,1.019,1.256,0.991,0.914,0.986,1.3,0.895,1.175,1.722,2.735,7.464,2.162,0.941,1.202,0.701,0.831,0.927,0.792,0.889,0.809,0.98,0.678,1.357,0.812,0.88,1.479,2.031,1.731,3.647,2.154,1.671,1.454,1.479,1.66,1.38,1.35,1.103,1.28,1.112,0.886,1.074,1.273,0.292,0.686,1.037,0.841,0.957,0.951,0.918,1.092,0.778,1.025,1.761,2.779,3.895,1.269,1.243,1.003,0.873,0.817,0.793,0.912,1.131,1.516,0.705,0.707,1.071,1.04,4.638,3.573,0.176,0.22,0.687,1.217,2.251,1.218,7.226,6.441,8.622,1.531,1.219,2.075,2.021,6.696,1.899,3.439,2.876,3.607,0.397,9.329,1.448,1.672,1.789,1.628,1.927,1.375,1.959,0.858,2.748,2.221,2.471,1.556,1.549,2.26,2.477,2.133,2.201,2.775,0.111,0.273,3.377,1.306,2.658,2.375,2.634,4.727,9.023,8.48,5.795,2.296,2.829,2.167,2.676,2.559,2.525,4.212,6.08,6.264,1.887,1.893,1.688,1.138,0.985,1.13,1.774,1.208,1.333,1.181,1.409,0.828,2.07,0.918,1.05,2.095,0.582,1.652,2.188,1.551,1.886,1.565,0.841,2.492,2.773,2.722,1.504,2.325,1.152,1.136,1.228,1.055,1.262,1.269,1.286,1.099,1.245,1.673,1.549,1.542,1.189,1.142,1.64,1.311,1.324,1.708,2.048,1.582,1.259,1.146,1.119,1.184,1.541,1.795,1.338,1.067,1.585,1.674,2.084,2.315,2.77,3.104,5.931,2.619,1.869,3.185,0.882,0.973,8.763,8.845,5.06,3.893,4.06,1.968,4.249,6.146,2.716,2.367,0.522,1.022,1.814,1.533,1.654,1.535,1.489,2.307,1.753,1.522,0.555,1.487,2.323,1.609,1.093,0.998,1.341,1.563,1.685,1.437,1.377,1.448,1.121,1.11,1.4,1.277,0.545,1.44,0.831,0.988,1.872,1.701,1.439,1.306,1.812,1.201,2.028,1.97,3.248,2.996,1.986,0.851,2.057,2.15,1.419,1.146,1.056,0.841,1.093,1.307,0.987,0.888,1.387,1.11,1.112,1.233,1.257,1.817,3.544,1.343,1.047,0.89,1.43,1.548,1.27,0.886,0.907,1.012,0.801,0.688,0.966,1.221,0.934,0.973,1.991,1.309,4.728,4.041,1.38,2.267,2.233,2.009,1.648,1.799,2.944,3.306,3.824,5.027,3.149,1.712,1.56,0.617,1.662,0.336,1.416,1.297,2.359,2.174,2.106,2.248,3.657,8.335,2.356,9.86,7.366,7.434,1.094,5.812,2.476,1.621,0.928,3.206,0.001,5.509,3.424,2.676,2.588,1.68,2.21,2.181,3.183,1.856,2.996,2.887,2.335,0.25,1.721,0.744,0.609,2.32,3.363,4.598,3.545,1.662,1.398,1.116,1.286,1.106,1.308,1.086,1.573,2.57,3.048,0.422,0.69,1.908,1.334,2.606,3.891,4.124,3.656,2.322,1.506,1.168,1.22,1.428,1.285,1.386,1.145,1.78,1.759,2.022,2.256,2.098,0.542,1.306,1.573,0.802,1.995,1.625,1.587,1.621,1.7,1.39,1.41,1.818,2.053,4.695,4.815,1.643,1.554,1.367,1.181,1.12,1.201,1.318,1.3,1.001,1.518,1.244,1.306,1.311,0.717,0.428,1.472,1.562,0.868,1.608,1.296,1.009,1.085,1.14,1.277,1.446,1.271,1.074,1.287,1.717,2.973,3.045,2.051,2.582,2.362,1.825,1.319,1.492,1.296,1.357,1.288,1.144,1.567,1.602,2.094,2.309,1.848,1.578,1.925,0.199,1.719,1.956,1.968,2.464,2.539,2.706,7.606,7.655,5.037,2.491,2.508,3.383,1.217,1.625,1.383,1.703,2.634,2.268,2.143,1.677,1.591,2.255,2.103,2.504,2.155,2.549,2.113,1.93,2.612,2.063,1.981,2.125,1.522,1.748,4.326,5.212,0.674,2.295,1.678,5.366,2.83,2.124,1.876,1.885,1.905,2.196,2.268,1.623,1.941,2.105,2.194,1.81,2.108,2.134,3.105,1.425,1.373,1.863,1.529,2.403,2.025,1.383,1.826,1.599,2.671,1.763,0.942,2.121,2.21,2.429,2.018,1.725,1.717,1.416,1.004,1.636,1.832,1.859,1.832,3.712,7.332,1.976,1.931,2.032,1.887,1.779,1.61,2.527,2.945,2.987,2.37,2.208,2.283,2.308,1.468,1.075,0.9,2.52,1.446,1.035,2.212,2.589,2.383,2.961,3.374,3.135,3.511,1.205,2.403,1.248,1.512,1.222,1.508,0.823,0.765,1.171,0.249,1.456,2.287,1.559,1.574,1.785,2.116,1.311,1.342,1.999,2.071,1.023,1.171,1.219,1.214,1.134,1.385,1.545,1.472,1.147,2.109,1.043,1.232,1.69,1.668,1.225,1.117,1.508,1.412,1.368,1.318,1.253,1.129,1.176,1.388,1.197,0.903,1.329,1.614,1.509,1.738,0.856,1.158,2.236,1.795,1.29,1.031,1.39,1.468,1.372,1.242,0.867,0.754,1.314,1.376,1.183,1.126,1.057,1.803,1.49,2.137,1.547,1.387,3.203,2.61,3.438,1.991,1.115,1.263,1.23,1.442,1.887,1.239,1.462,1.371,3.067,2.243,2.06,1.571,1.541,1.292,1.558,1.605,1.662,1.352,1.591,2.442,1.919,1.261,1.023,1.864,2.012,2.134,2.545,1.577,1.913,1.064,1.383,1.578,1.751,1.437,1.471,1.685,1.584,2.362,1.259,1.808,2.514,2.402,6.361,6.403,6.382,6.354,0.836,4.539,3.527,4.02,1.94,1.994,4.509,5.233,4.088,2.607,1.969,0.915,2.538,0.766,1.845,2.262,2.342,2.4,1.836,2.444,2.6,3.391,3.49,0.5,2.89,2.573,1.814,1.733,1.802,1.742,2.414,2.419,3.378,2.769,0.623,3.144,3.807,3.732,4.872,2.344,2.495,3.215,2.176,2.346,1.502,1.653,2.365,2.545,2.415,2.69,2.335,1.716,2.112,1.77,2.182,2.091,2.172,1.379,1.458,1.899,2.388,4.128,3.459,1.936,2.947,3.104,3.022,3.329,3.526,6.704,13.514,2.583,2.593,1.492,1.698,1.667,1.893,1.857,1.87,1.667,1.579,1.591,1.806,2.136,2.078,1.127,3.181,1.835,1.637,1.545,1.764,1.776,1.625,2.436,1.716,1.599,0.167,1.767,1.96,2.128,1.618,1.718,1.716,1.723,2.445,1.661,2.019,1.701,2.036,2.043,1.689,3.546,1.885,2.48,1.62,1.82,2.06,1.315,1.205,1.521,0.907,1.056,1.614,1.724,1.803,1.619,1.665,1.495,1.426,1.389,1.524,1.422,1.472,1.069,0.676,0.24,0.887,0.35,1.755,2.023,1.334,1.3,3.615,1.074,2.323,3.986,1.475,2.086,2.455,2.171,2.56,3.545,3.689,3.067,2.363,3.58,3.36,3.208,6.403,6.424,5.643,4.053,7.591,4.921,2.394,1.946,2.094,2.046,3.463,2.561,2.488,3.614,4.411,5.271,5.334,2.418,2.371,2.861,2.892,2.757,3.279,4.119,2.201,2.199,1.962,1.957,3.85,2.108,2.267,2.72,1.12,2.453,2.535,2.537,0.59,1.057,1.892,4.331,5.033,2.822,1.821,1.968,2.081,2.935,2.931,2.741,2.161,3.682,4.668,4.662,4.061,4.081,2.76,2.587,3.897,3.731,2.687,2.74,1.896,0.926,2.168,3.2,2.088,1.228,3.179,2.569,2.675,2.851,3.707,5.341,3.141,1.761,1.71,1.648,1.02,2.102,1.531,0.37,1.844,1.858,1.744,3.195,6.165,2.497,3.432,2.001,0.869,2.862,0.293,3.477,0.683,1.047,1.008,0.52,0.215,0.867,2.079,2.896,4.849,2.75,2.301,5.19,0.829,1.094,1.893,1.989,0.428,2.017,1.538,1.306,1.55,1.852,1.916,1.803,1.747,2.307,1.562,3.395,5.617,4.897,3.996,3.412,2.239,3.144,2.64,2.83,3.124,3.085,3.049,3.178,2.493,3.833,2.811,3.416,3.125,2.267,1.109,3.187,5.652,2.492,2.524,2.455,2.664,3.82,5.862,5.989,0.195,0.621,1.653,2.227,2.893,2.721,2.629,2.779,1.846,1.802,1.828,2.04,1.991,2.035,1.891,1.876,2.161,0.455,2.139,4.343,3.361,2.457,2.545,3.439,5.762,3.197,2.415,2.228,1.657,2.043,2.72,2.576,2.45,2.219,2.29,2.278,4.42,2.446,2.179,4.072,4.621,4.102,1.355,3.631,2.951,4.301,3.093,3.195,2.167,2.638,1.101,3.96,2.676,2.74,3.815,2.683,3.508,1.941,2.256,3.331,3.508,7.132,6.92,3.475,3.775,2.577,2.225,3.718,3.748,2.044,0.195,0.759,3.225,3.793,4.555,1.399,3.281,8.95,2.604,4.195,4.07,2.411,2.441,2.408,3.01,2.872,4.652,4.087,1.141,1.196,2.383,6.814,1.607,0.545,3.215,8.181,11.24,4.567,4.077,1.522,1.223,2.449,0.695,1.226,3.478,2.594,0.965,1.619,2.637,3.15,3.079,2.858,2.183,2.489,1.747,2.411,2.463,1.872,1.847,2.637,1.41,1.535,1.447,2.047,4.565,6.505,5.508,1.391,2.564,1.643,1.878,2.19,1.112,1.373,1.566,3.423,3.429,3.448,4.032,2.039,3.947,6.675,4.463,6.49,7.455,1.535,11.692,5.387,2.051,2.157,2.916,4.332,2.269,6.426,6.241,7.956,12.346,7.596,4.205,3.969,3.02,1.854,3.264,7.571,9.515,6.774,3.951,3.774,3.483,3.938,2.681,2.714,3.576,4.091,3.858,2.361,2.519,0.516,2.18,4.041,3.787,3.363,5.294,2.722,2.758,3.235,1.62,3.465,3.458,3.433,3.511,1.639,1.538,2.06,1.76,1.882,1.616,1.729,2.528,1.88,1.752,2.348,2.115,1.799,1.57,2.364,2.245,1.639,2.597,1.78,1.72,3.866,4.715,4.841,1.031,4.503,3.511,2.628,2.159,1.063,2.119,2.708,3.531,2.236,2.938,1.779,2.217,2,3.312,2.659,2.869,2.825,2.417,1.982,3.675,3.842,3.496,3.75,3.997,0.591,2.686,6.461,1.273,2.93,2.968,1.023,1.67,1.842,2.28,3.85,2.788,0.277,1.065,1.06,3.617,3.008,2.694,2.102,2.345,2.955,1.738,0.497,0.278,6.413,2.314,3.282,2.389,2.131,2.036,2.324,3.205,2.074,2.116,0.934,2.083,1.24,2.057,1.723,1.956,2.237,2.105,3.669,4.653,1.691,3.529,2.336,1.517,1.686,1.661,1.637,1.96,1.567,2.339,1.449,1.932,0.904,0.551,3.153,2.615,3.349,2.95,1.903,2.47,3.169,1.772,1.86,1.897,1.223,0.871,1.588,1.798,2.116,1.476,2.03,2.036,2.986,2.378,2.468,1.765,1.811,2.628,1.552,1.247,1.812,0.287,2.354,2.479,3.089,2.541,1.965,2.145,1.644,1.298,2.058,2.659,3.281,3.039,2.566,1.624,2.6,4.879,5.016,3.265,0.809,1.404,1.86,2.433,1.893,1.981,2.243,3.109,0.547,2.097,2.495,1.866,2.019,1.86,2.394,2.501,3.273,3.829,4.937,4.889,1.983,2.187,2.01,2.72,2.822,2.668,2.611,2.254,2.132,2.402,1.763,1.872,1.695,2.272,1.957,1.941,2.295,1.507,1.748,3.813,3.421,2.563,2.344,1.004,7.944,5.675,2.244,1.438,2.846,3.454,4.12,4.177,4.547,3.737,1.7,1.918,3.357,4.645,4.616,6.458,6.548,0.426,1.832,3.297,2.332,1.962,2.476,2.146,2.093,1.604,1.725,2.049,2.02,2.318,2.702,1.963,2.786,1.924,1.534,2.11,1.629,8.199,7.746,8.243,4.454,6.525,3.208,3.473,3.746,2.256,2.115,2.158,2.509,2.549,3.808,2.421,2.074,2.431,2.751,2.67,3.364,3.327,2.93,2.735,2.436,2.046,2.402,2.886,2.169,2.465,2.153,1.898,1.795,2.072,0.788,2.292,2.875,2.661,3.218,2.412,2.194,0.484,1.938,0.363,2.509,2.751,2.792,2.763,2.703,2.874,3.961,3.177,1.713,1.705,2.776,3.038,2.397,2.814,0.095,1.806,2.141,2.277,2.039,0.992,4,2.073,5.043,1.414,7.751,6.156,6.125,3.349,3.382,2.734,2.331,2.69,2.629,1.829,1.877,2.34,2.374,2.807,3.205,2.381,2.737,2.558,2.257,1.959,2.371,3.296,2.894,2.488,3.482,3.592,3.387,2.069,2.078,2.499,1.86,1.147,1.697,1.365,1.767,2.181,2.539,2.442,2.392,2.53,2.721,4.338,4.491,0.891,4.953,3.109,2.98,4.582,3.312,3.497,6.749,3.079,3.057,2.921,1.952,1.093,1.023,4.189,3.015,1.927,1.938,2.748,2.67,2.759,2.203,2.743,4.771,4.493,4.821,5.083,3.87,3.956,2.529,2.496,2.431,1.834,1.626,2.938,2.03,2.098,1.754,1.049,1.434,1.281,1.891,2.027,2.112,2.883,3.91,2.501,2.35,2.088,1.777,1.516,1.554,1.308,2.336,1.684,2.421,1.267,2.244,1.866,1.474,1.732,1.681,2.187,2.322,1.206,1.738,3.397,3.211,2.976,1.506,2.049,1.684,1.877,2.251,2.405,2.112,2.356,2.691,2.493,2.678,2.509,2.246,3.195,3.06,4.034,3.48,2.398,3.008,2.995,4.92,10.737,0.605,1.875,3.53,4.943,3.695,4.168,4.997,2.19,2.348,1.233,1.353,1.485,1.643,1.382,1.498,2.151,2.809,1.857,2.267,2.358,2.765,2.208,4.024,4.769,0.538,5.578,5.761,4.43,2.528,2.077,3.637,1.818,1.935,2.775,2.593,2.15,1.771,1.571,2.965,1.69,1.585,1.843,1.752,4.192,4.456,4.663,3.287,3.337,3.401,3.08,1.896,1.985,3.541,3.223,3.653,1.214,1.43,0.987,1.193,3.879,4.247,3.69,0.499,4,2.753,3.706,4.988,3.229,4.481,3.001,4.245,2.295,1.576,3.722,1.355,2.939,3.317,2.554,2.595,2.141,3.728,2.453,2.44,2.489,2.372,3.592,3.689,3.311,1.078,1.405,1.311,1.529,2.7,2.828,2.137,1.992,3.192,2.274,1.264,1.18,1.026,2.06,2.87,2.208,2.218,2.608,1.864,1.966,2.065,2.005,2.275,1.802,2.484,2.567,4.24,7.958,7.251,4.89,4.846,6.523,6.608,5.548,1.979,5.891,6.05,7.142,3.556,3.533,3.027,2.867,2.691,3.452,2.062,1.584,5.069,6.479,4.755,3.881,3.722,0.346,3.599,3.358,4.09,0.261,3.255,3.96,4.302,3.844,3.883,0.945,3.295,0.76,2.533,3.176,4.304,6.264,7.174,6.304,4.461,5.932,0.05,5.423,3.464,3.508,1.751,5.457,7.207,3.393,2.528,3.006,2.364,5.436,2.956,2.774,2.743,2.124,2.223,1.78,2.06,2.18,1.855,2.507,1.68,2.08,3.764,4.12,5.591,5.422,2.194,1.409,1.248,0.121,2.281,1.898,2.078,1.512,1.451,1.512,1.549,1.502,1.458,1.462,2.808,2.762,1.787,3.128,3.206,1.518,0.691,0.241,2.135,0.616,2.559,1.714,1.503,1.693,1.106,1.269,1.758,0.048,1.41,1.445,1.671,1.711,1.831,2.115,1.344,1.283,2.353,1.649,2.464,3.81,6.123,3.983,4.364,0.844,1.423,3.161,5.19,5.427,4.054,3.143,3.1,3.055,6.26,2.847,3.256,5.335,2.017,6.998,9.021,8.83,6.365,7.483,5.168,1.461,2.859,3.404,1.938,3.542,3.691,7.318,1.926,6.841,7.125,3.675,1.98,1.57,1.622,1.942,1.226,0.841,2.19,1.758,1.77,2.671,2.021,2.358,3.162,0.342,0.353,2.425,3.508,4.579,1.896,2.045,1.866,1.679,2.184,1.649,1.499,2.388,2.032,1.929,1.962,1.867,2.062,0.443,2.317,0.93,2.327,0.529,4.78,1.689,1.568,2.614,1.768,1.645,1.802,1.696,2.018,1.715,1.581,1.195,2.023,1.943,2.203,3.359,3.462,1.327,1.862,1.891,1.464,1.552,2.549,2.533,1.362,1.413,1.48,1.244,1.105,1.038,0.842,1.475,0.267,1.501,1.202,1.413,1.064,1.165,0.799,0.783,0.557,0.621,1.109,1.05,0.766,1.01,1.043,1.168,1.202,2.785,1.718,1.763,0.977,0.984,1.248,0.733,0.735,1.377,0.605,0.657,1.22,0.821,0.706,1.083,0.955,0.414,0.659,0.749,0.959,1.008,0.917,0.879,0.855,0.927,1.075,1.185,1.706,1.409,0.277,1.719,2.658,1.589,2.38,2.209,1.198,1.21,2.734,2.359,8.237,2.282,2.085,1.446,1.453,1.654,1.925,1.441,2.015,1.622,1.587,1.998,2.001,1.874,1.899,1.513,2.085,2.1,0.056,1.979,2.088,1.086,1.076,1.546,1.597,1.059,0.894,1.222,0.888,1.989,1.302,1.347,1.583,1.6,1.493,1.533,1.554,1.928,3.285,2.773,4.923,2.196,2.14,2.608,0.561,4.739,5.128,2.968,1.922,2.258,3.698,15.758,2.331,6.36,3.366,5.856,3.261,1.163,1.189,0.959,1.168,0.786,1.216,2.413,8.761,0.559,1.743,4.839,9.965,2.59,4.124,3.075,4.921,2.204,1.916,0.982,0.895,1.465,0.945,0.895,3.715,3.856,4.234,2.24,2.247,2.75,1.345,0.948,0.946,1.06,0.926,0.916,1.562,1.341,0.357,1.955,1.936,2.43,2.375,3.813,2.035,4.825,4.102,6.351,2.652,8.619,3.453,1.625,1.604,4.111,13.23,1.782,8.203,11.877,1.615,1.641,2.767,2.846,2.578,1.416,1.495,1.499,1.596,2.507,2.911,2.456,2.633,2.727,2.983,3.636,3.404,0.49,0.984,12.355,10.004,7.752,5.61,1.75,1.96,4.637,2.32,2.245,1.976,4.254,4.202,4.372,1.675,1.666,1.758,1.341,1.538,0.829,2,0.202,1.003,2.111,1.687,2.332,2.154,23.251,5.955,5.915,3.713,1.968,1.836,1.875,1.706,4.03,1.687,1.879,5.14,3.799,3.455,3.68,2.613,1.785,1.254,2.906,1.91,7.299,3.447,1.889,3.071,3.398,3.934,9.495,22.311,3.699,1.431,0.653,2.818,2.721,4.79,3.018,2.387,1.754,1.702,1.329,1.315,3.232,2.2,1.414,4.249,6.531,15.344,3.192,1.65,1.41,2.028,2.095,1.861,1.574,2.348,1.99,2.149,2.542,1.52,0.46,2.65,1.199,4.996,3.351,1.931,2.071,1.73,2.309,1.444,1.902,2.543,0.982,1.17,1.24,0.904,1.329,2.047,1.774,2.11,3.762,0.898,4.836,0.929,3.344,0.957,2.569,1.63,1.141,1.167,2.818,4.097,3.223,3.244,3.453,4.766,3.728,1.925,1.781,17.507,2.45,1.795,1.378,1.666,2.45,8.154,0.575,0.215,1.485,6.964,0.809,8.878,19.235,2.01,1.922,1.605,1.817,2.243,2.685,0.594,1.144,1.43,2.117,2.183,3.295,3.265,17.069,5.184,1.336,10.359,1.16,15.086,3.196,5.52,0.914,6.513,10.03,2.039,0.951,1.204,2.385,0.21,28.383,16.817,12.244,2.098,0.97,1.77,1.732,1.535,1.735,1.462,1.876,27.433,3.486,31.505,1.348,29.058,10.229,3.195,1.543,1.767,1.741,2.187,13.158,3.331,9.241,1.837,1.612,2.05,1.471,1.216,1.386,1.444,2.081,0.853,0.866,1.375,1.409,1.446,0.267,1.991,2.283,2.483,2.039,1.681,2.195,1.774,3.699,2.722,3.45,0.863,1.693,1.434,1.408,1.554,1.889,1.683,1.831,2.201,3.207,4.727,3.062,2.836,3.126,2.851,2.304,1.901,2.099,1.822,1.597,1.646,1.836,2.272,2.099,2.077,2.358,1.62,1.918,0.845,0.936,1.815,1.704,1.916,3.487,0.944,1.943,2.651,4.037,4.344,2.513,2.635,2.137,1.776,2.785,2.206,2.249,4.643,3.673,3.749,12.722,12.62,6.919,3.098,3.282,4.129,2.658,0.956,2.302,2.677,5.266,5.581,6.207,2.921,2.82,3.285,2.75,3.105,3.015,3.632,3.437,2.192,1.98,2.277,2.44,2.159,1.361,2.157,2.495,3.397,3.547,5.872,3.377,3.185,2.475,3.144,2.273,2.75,3.639,3.741,3.083,3.446,3.595,3.547,3.006,0.08,3.043,3.405,5.401,2.751,3.256,3.466,5.292,1.907,4.091,2.765,1.661,1.288,2.399,1.169,1.185,1.694,2.5,2.866,3.008,2.04,2.008,2.098,2.124,2.505,2.758,3.285,3.619,6.32,4.897,4.324,8.735,5.957,2.93,3.224,6.975,3.76,4.053,3.353,3.395,3.602,2.513,1.262,3.597,3.706,6.168,3.027,2.733,3.151,2.666,2.662,2.233,1.995,2.435,2.001,1.834,3.131,2.931,3.241,3.373,1.583,1.695,4.984,8.721,4.024,3.795,3.131,2.751,2.717,4.146,1.779,1.939,18.047,5.596,5.657,0.868,5.242,6.218,6.745,7.106,5.95,6.146,10.083,2.825,3.98,2.525,3.14,3.305,3.044,3.306,3.981,5.041,4.997,2.867,3.037,2.857,2.913,5.596,0.453,0.152,0.777,2.543,3.996,2.699,2.753,0.689,1.39,6.4,2.369,1.219,5.235,2.179,0.999,3.885,3.641,3.334,2.656,3.725,3.45,4.721,7.131,5.933,3.456,2.779,2.781,2.264,2.568,2.732,2.327,0.793,2.843,3.435,2.949,3.231,6.562,4.081,4.205,4.704,2.61,2.842,2.559,0.52,1.964,0.002,4.823,2.563,3.007,1.902,0.029,1.878,1.568,1.307,1.128,1.596,3.166,2.815,1.132,1.786,1.519,1.671,3.052,3.433,4.194,0.013,7.136,2.287,3.711,1.204,3.53,2.53,1.892,1.717,4.691,7.157,7.39,4.758,6.528,3.241,4.284,2.121,2.461,3.286,2.023,9.807,4.38,4.235,2.785,2.363,3.17,0.022,3.195,3.026,3.101,2.763,3.156,7.158,1.295,1.993,1.289,12.006,6.137,6.279,2.993,3.03,2.943,2.867,1.814,1.191,5.994,3.247,2.689,1.379,2.352,2.418,4.828,2.419,0.68,3.547,4.625,4.887,4.454,3.626,3.953,15.152,8.343,2.195,10.48,0.82,0.706,1.156,5.195,13.681,19.471,10.598,6.853,3.019,4.329,5.727,5.779,15.78,4.347,5.423,3.992,4.218,3.49,3.677,3.458,4.428,4.833,3.254,3.313,5.721,2.513,0.281,1.685,0.69,1.283,2.295,0.847,21.602,6.121,0.809,0.238,1.961,10.405,8.121,5.984,5.386,3.567,1.879,0.632,4.949,6.718,5.174,0.738,11.552,2.972,1.951,1.666,1.692,2.291,2.919,3.514,4.986,5.546,1.737,5.426,4.851,7.107,6.952,4.897,4.32,0.574,9.817,12.814,12.835,13.17,7.361,5.342,3.151,3.313,3.645,3.686,2.185,10.176,16.875,0.891,0.803,1.717,2.006,2.576,1.657,1.339,2.56,2.299,13.614,0.449,0.854,1.486,2.115,4.516,4.487,5.197,0.16,2.359,2.118,2.118,2.109,1.586,2.236,1.963,2.458,2.548,1.468,3.361,2.013,2.065,2.113,3.538,2.191,1.468,3.505,5.323,5.25,3.907,3.289,3.548,4.9,2.926,1.857,1.541,1.557,1.235,0.963,1.586,1.71,0.815,0.977,2.423,1.758,2.637,1.845,2.681,1.57,1.593,2.103,2.343,1.944,2.452,0.842,2.084,2.028,1.89,2.84,3.804,5.052,5.086,5.164,4.969,4.482,3.629,4.582,2.23,4.823,5.314,4.759,2.883,4.226,3.857,3.436,4.559,4.476,4.367,4.442,2.059,5.736,5.507,1.308,0.624,1.766,5,6.48,1.266,4.083,5.152,2.028,1.018,5.388,17.223,6.528,3.441,3.416,1.792,2.142,3.306,0.75,1.199,0.645,3.092,2.792,7.711,7.482,4.995,5.487,6.537,4.267,2.066,3.798,4.557,7.946,2.427,5.752,6.84,3.621,1.874,1.744,5.229,5.873,5.027,2.459,0.059,2.443,1.949,2.006,3.946,1.471,2.063,2.09,7.129,5.204,0.872,3.469,2.435,7.207,1.555,13.283,10.413,7.307,9.303,18.697,2.364,1.59,3.297,2.094,10.346,1.375,4.91,0.333,4.485,5.64,8.741,3.773,0.293,0.134,0.194,0.293,2.82,5.933,5.313,2.776,0.019,5.579,3.119,2.682,1.231,4.396,4.936,4.785,7.629,8.289,1.063,0.379,4.809,2.864,2.749,3.405,2.316,2.515,2.384,1.203,3.247,2.808,2.308,3.537,0.724,1.083,1.145,0.69,1.456,0.979,1.166,1.151,1.762,1.707,1.622,1.385,1.736,1.516,1.352,1.093,1.083,0.211,0.598,0.487,1.524,0.837,1.351,1.609,1.403,0.763,1.24,3.044,1.35,4.763,1.347,1.241,0.736,2.411,7.491,1.968,1.375,0.883,0.661,1.882,2.707,2.196,1.649,5.133,4.748,5.057,2.506,0.375,0.844,3.416,3.62,3.861,1.814,2.17,1.948,2.576,2.341,2.094,1.508,1.176,2.966,2.607,1.772,1.61,0.595,1.873,5.326,2.793,5.376,4.966,4.829,5.596,1.2,2.233,3.37,3.154,3.586,3.255,0.639,1.256,1.49,0.671,1.525,1.124,1.543,1.284,1.748,1.517,2.043,10.324,4.503,2.395,2.333,3.481,1.723,1.776,0.268,1.735,1.077,1.16,1.019,2.102,2.295,4.346,2.376,1.709,1.389,1.172,1.539,0.931,0.763,0.553,1.343,1.466,1.573,1.486,1.709,1.402,1.297,1.057,1.645,0.166,0.415,2.398,3.324,0.211,4.433,2.805,0.52,3.559,2.321,2.167,2.187,3.095,2.731,2.53,2.206,4.855,3.395,0.834,1.174,1.631,1.776,1.423,1.388,0.692,0.897,1.234,1.625,1.235,0.953,1.74,1.414,1.348,0.256,1.564,3.108,3.391,1.297,0.947,0.908,1.198,0.246,1.132,1.254,1.509,1.083,1.259,0.252,0.41,1.031,1.015,1.067,0.95,1.437,1.714,1.974,2.348,2.205,1.798,1.129,6.114,1.132,1.052,0.979,0.85,1.086,0.84,1.054,1.064,1.064,1.063,0.737,0.988,1.464,1.343,0.892,0.856,1.453,0.629,1.383,0.669,0.646,0.88,0.727,0.911,0.698,0.835,0.557,0.489,0.598,0.648,0.628,1.633,2.14,0.657,0.719,2.831,1.236,1.128,1.089,0.749,0.723,0.853,0.544,0.905,0.461,0.441,0.269,0.365,0.806,0.676,0.699,0.754,0.462,0.566,0.517,0.589,0.79,0.864,0.734,1.149,1.079,3.019,2.223,1.096,1.021,1.233,1.266,1.043,0.99,1.176,1.164,1.021,1.101,2.025,1.977,2.156,2.059,1.22,2.649,2.197,1.228,1.201,2.524,1.645,1.176,2.69,2.409,2.86,1.303,1.974,5.202,0.153,2.911,5.343,1.539,1.578,0.974,1.015,1.266,1.192,1.079,1.021,1.031,1.179,0.827,1.455,1.221,0.81,0.988,0.359,0.597,1.353,1.274,2.076,2.025,1.499,1.234,1.112,0.941,1.281,1.182,1.375,0.937,1.059,1.388,1.545,0.824,1.858,3.033,1.019,1.436,1.378,2.443,2.111,4.554,2.025,1.91,0.912,4.542,2.43,2.629,1.751,1.407,1.589,1.817,1.075,1.107,1.984,4.088,8.418,6.462,15.074,45.1,36.329,28.044,33.298,0.918,2.82,2.936,2.531,2.079,1.82,2.392,1.38,2.037,2.573,2.443,1.616,2.663,3.68,11.65,2.129,1.384,1.584,2.799,6.141,0.432,0.619,1.12,1.521,1.123,1.439,1.099,1.648,1.509,5.119,0.384,4.046,1.457,0.981,1.09,1.242,0.506,0.506,0.554,0.527,0.425,0.416,0.312,1.202,2.646,3.493,0.776,0.993,0.944,1.441,2.934,1.438,1.638,1.072,1.087,1.325,1.108,1.279,1.12,1.253,1.268,1.196,1.146,1.331,1.076,1.178,0.855,1.041,2.289,1.027,0.871,4.788,1.624,6.352,2.72,0.821,0.88,0.518,11.675,2.511,1.851,5.687,2.019,2.334,7.35,1.179,8.996,1.578,3.093,1.905,1.622,0.649,2.293,1.902,0.495,7.461,2,15.921,6.996,9.302,1.601,2.122,9.066,1.619,11.962,1.975,15.008,3.563,1.081,2.262,1.823,0.906,12.238,1.987,2.347,2.28,12.843,8.105,10.085,8.284,2.28,6.899,12.309,6.201,7.945,0.968,1.942,4.758,1.221,2.431,1.335,2.387,2.534,1.408,4.362,2.527,3.688,2.862,0.76,6.363,0.685,0.91,7.341,1.687,2.095,5.748,1.728,3.401,2.543,0.74,3.878,1.337,4.682,2.262,1.928,2.042,2.7,2.787,1.739,4.328,5.104,3.406,4.851,1.009,11.396,1.14,3.943,3.644,2.709,1.371,1.481,1.053,1.196,4.718,1.305,4.506,1.313,4.236,2.715,2.708,2.081,6.162,9.912,2.41,4.65,8.907,0.62,0.474,1.364]},"incidents":[{"id":"12544772506582745","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-25T07:12:06Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A2: onderhoudswerkzaamheden tussen Knooppunt Holendrecht en 8,Knooppunt Oudenrijn","long_description":"Onderhoudswerkzaamheden op A2 in Zuidelijke richting tussen Knooppunt Holendrecht A9 2,3,Knooppunt Holendrecht en 8,Knooppunt Oudenrijn A12 Knooppunt Oudenrijn.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":18633,"south":52.121215,"west":4.953739,"north":52.278415,"east":5.026168,"congestion":{"value":101},"geometry_index_start":387,"geometry_index_end":538,"affected_road_names":["A2/E 35","A2/E 35/Rijksweg A2 Westzijde"],"affected_road_names_nl":["A2/E 35","A2/E 35/Rijksweg A2 Westzijde"]},{"id":"16636556466145852","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-25T07:05:49Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: onderhoudswerkzaamheden tussen 36 N305 en 26 Lakerveld Lexmond","long_description":"Onderhoudswerkzaamheden op A27 in Zuidelijke richting tussen 36 N305 en 26 Lakerveld Lexmond.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":45476,"south":51.955623,"west":5.055152,"north":52.303203,"east":5.313389,"congestion":{"value":101},"geometry_index_start":720,"geometry_index_end":766,"affected_road_names":["A27/Stichtse Brug","A27","A27/Rijksweg A27","A27/E 311","A27/E 30/E 311","A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/Stichtse Brug","A27","A27/Rijksweg A27","A27/E 311","A27/E 30/E 311","A27/E 311/Rijksweg A27"]},{"id":"8655346658689573","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-23T03:47:14Z","end_time":"2023-11-27T15:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: onderhoudswerkzaamheden in Hoogblokland","long_description":"Onderhoudswerkzaamheden op A27 in Zuidelijke richting in Hoogblokland.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":213,"south":51.871334,"west":4.963707,"north":51.873134,"east":4.964771,"congestion":{"value":101},"geometry_index_start":883,"geometry_index_end":884,"affected_road_names":["A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/E 311/Rijksweg A27"]},{"id":"6866550843314777","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-09-02T03:07:19Z","end_time":"2026-12-31T11:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: rijbaan/rijbanen gesloten in Hoogblokland","long_description":"Rijbaan/rijbanen gesloten vanwege bouwactiviteiten op A27 in Zuidelijke richting in Hoogblokland.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":14,"south":51.871032,"west":4.963527,"north":51.87115,"east":4.963597,"congestion":{"value":101},"geometry_index_start":885,"geometry_index_end":887,"affected_road_names":["A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/E 311/Rijksweg A27"]},{"id":"15712231692642316","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-10-23T22:00:00Z","end_time":"2023-11-06T19:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A27: onderhoudswerkzaamheden tussen 21 en Knooppunt Hooipolder","long_description":"Onderhoudswerkzaamheden op A27 in Zuidelijke richting tussen 21 N283 en Knooppunt Hooipolder A59 Knooppunt Hooipolder.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":4034,"south":51.685691,"west":4.883255,"north":51.7215,"east":4.891217,"congestion":{"value":101},"geometry_index_start":1020,"geometry_index_end":1053,"affected_road_names":["A27/E 311/Rijksweg A27","A27/E 311"],"affected_road_names_nl":["A27/E 311/Rijksweg A27","A27/E 311"]},{"id":"14310720543133963","type":"construction","creation_time":"2023-10-25T09:15:30Z","start_time":"2023-10-23T22:00:00Z","end_time":"2023-11-06T19:00:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"Maintenance Works","long_description":"{\"table_code\":\"wegwerkzaamheden\",\"situation_id\":\"RWS01_SM906557_D2\",\"situation_record_id\":\"RWS01_M906557_MAIN_ROADWORKS_D2\",\"situation_record_type\":\"MaintenanceWorks\",\"event_types\":[[2,\"703\",\"CONSTRUCTION\",\"(Q sets of) maintenance work\"]]}","impact":"minor","sub_type":"MaintenanceWorks","sub_type_description":"treeAndVegetationCuttingWork","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":4002,"south":51.685863,"west":4.883308,"north":51.721389,"east":4.891171,"geometry_index_start":1021,"geometry_index_end":1052,"affected_road_names":["A27/E 311/Rijksweg A27","A27/E 311"],"affected_road_names_nl":["A27/E 311/Rijksweg A27","A27/E 311"]},{"id":"6555199823875070","type":"construction","creation_time":"2023-10-25T09:15:30Z","start_time":"2023-10-05T06:47:38Z","end_time":"2023-11-13T22:59:00Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"Maintenance Works","long_description":"{\"table_code\":\"wegwerkzaamheden\",\"situation_id\":\"RWS01_SM904536_D2\",\"situation_record_id\":\"RWS01_M904536_MAIN_ROADWORKS_D2\",\"situation_record_type\":\"MaintenanceWorks\",\"event_types\":[[2,\"703\",\"CONSTRUCTION\",\"(Q sets of) maintenance work\"]]}","impact":"minor","sub_type":"MaintenanceWorks","sub_type_description":"maintenanceWork","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":20,"south":51.651,"west":4.88222,"north":51.65118,"east":4.882234,"geometry_index_start":1076,"geometry_index_end":1077,"affected_road_names":["A27/E 311/Rijksweg A27"],"affected_road_names_nl":["A27/E 311/Rijksweg A27"]},{"id":"6298355408468999","type":"construction","creation_time":"2023-10-25T09:10:31Z","start_time":"2023-01-10T15:28:38Z","end_time":"2023-12-17T15:28:38Z","iso_3166_1_alpha2":"NL","iso_3166_1_alpha3":"NLD","description":"A16: bouwactiviteiten tussen A16 en 14","long_description":"Rijbaan/rijbanen gesloten vanwege bouwactiviteiten op A16 in Zuidelijke richting tussen A16 en 14.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":202,"south":51.500656,"west":4.742561,"north":51.502445,"east":4.743015,"congestion":{"value":101},"geometry_index_start":1312,"geometry_index_end":1314,"affected_road_names":["A16/E 19"],"affected_road_names_nl":["A16/E 19"]},{"id":"6272535091358243","type":"construction","creation_time":"2023-10-25T09:10:29Z","start_time":"2023-10-02T21:51:54Z","end_time":"2023-10-27T14:00:00Z","iso_3166_1_alpha2":"BE","iso_3166_1_alpha3":"BEL","description":"E411 S/B: construction between 7,8 N25 Louvranges and 10 Chemin Du Pont Valériane","long_description":"Construction on E411 Southbound between 7,8 N25 Louvranges and 10 Chemin Du Pont Valériane.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":9492,"south":50.64907,"west":4.615807,"north":50.699748,"east":4.70977,"congestion":{"value":101},"geometry_index_start":2405,"geometry_index_end":2474,"affected_road_names":["E411/E 411"],"affected_road_names_fr":["E411/E 411"]},{"id":"5530169129230583","type":"construction","creation_time":"2023-10-25T09:10:29Z","start_time":"2023-03-15T06:05:00Z","end_time":"2023-10-27T10:00:00Z","iso_3166_1_alpha2":"BE","iso_3166_1_alpha3":"BEL","description":"E411 S/B: construction between 11 and 13","long_description":"Construction on E411 Southbound between 11 N29 Chaussée De Charleroi and 13 N91 Chaussée De Louvain Champion.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":14188,"south":50.513923,"west":4.769714,"north":50.616527,"east":4.8827,"congestion":{"value":101},"geometry_index_start":2507,"geometry_index_end":2592,"affected_road_names":["E411/E 411"],"affected_road_names_fr":["E411/E 411"]},{"id":"3218598629948869","type":"construction","creation_time":"2023-10-25T09:10:29Z","start_time":"2023-09-29T07:53:28Z","end_time":"2023-10-27T08:00:00Z","iso_3166_1_alpha2":"BE","iso_3166_1_alpha3":"BEL","description":"E411 S/B: construction in Sovet","long_description":"Construction on E411 Southbound in Sovet.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":8922,"south":50.302146,"west":4.989552,"north":50.378356,"east":5.020998,"congestion":{"value":101},"geometry_index_start":2728,"geometry_index_end":2790,"affected_road_names":["E411/E 411"],"affected_road_names_fr":["E411/E 411"]},{"id":"8690579837493042","type":"road_hazard","creation_time":"2023-10-25T09:16:14Z","start_time":"2023-10-25T07:01:26Z","end_time":"2023-10-25T09:39:13Z","iso_3166_1_alpha2":"BE","iso_3166_1_alpha3":"BEL","description":"E411 N/B: animals on road between 27 N85 Chaussée De Bastogne and 26 N40","long_description":"Animals on road on E411 Northbound between 27 N85 Chaussée De Bastogne and 26 N40.","impact":"minor","alertc_codes":[922],"traffic_codes":{"incident_primary_code":922},"lanes_blocked":[],"length":41,"south":49.882438,"west":5.432283,"north":49.882526,"east":5.432838,"congestion":{"value":101},"geometry_index_start":3331,"geometry_index_end":3333,"affected_road_names":["E411/E 411"],"affected_road_names_fr":["E411/E 411"]},{"id":"10629420676450829","type":"disabled_vehicle","creation_time":"2023-10-25T09:15:15Z","start_time":"2023-10-25T08:55:00Z","end_time":"2023-10-25T11:55:00Z","iso_3166_1_alpha2":"FR","iso_3166_1_alpha3":"FRA","description":"A31: véhicule en panne entre 29 D66 et 28 D910","long_description":"Véhicule en panne sur A31 Direction sud entre 29 D66 et 28 D910.","impact":"minor","alertc_codes":[211],"traffic_codes":{"incident_primary_code":211},"lanes_blocked":[],"length":11388,"south":48.936443,"west":6.104036,"north":49.036731,"east":6.115754,"congestion":{"value":101},"geometry_index_start":4876,"geometry_index_end":4954,"affected_road_names":["A 31/E 21/E 23/Autoroute de Lorraine-Bourgogne"],"affected_road_names_fr":["A 31/E 21/E 23/Autoroute de Lorraine-Bourgogne"]},{"id":"10667421631728817","type":"construction","creation_time":"2023-10-25T09:10:29Z","start_time":"2023-10-25T08:13:00Z","end_time":"2023-10-25T11:13:00Z","iso_3166_1_alpha2":"FR","iso_3166_1_alpha3":"FRA","description":"A31: travail de maintenance entre 25 D657 Échangeur De Belleville-Toul et 23 D321","long_description":"Travail de maintenance sur A31 Direction sud entre 25 D657 Échangeur De Belleville-Toul et 23 D321.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":9173,"south":48.752159,"west":6.108982,"north":48.817306,"east":6.156691,"congestion":{"value":101},"geometry_index_start":5085,"geometry_index_end":5214,"affected_road_names":["A 31/E 21/E 23/Autoroute de Lorraine-Bourgogne"],"affected_road_names_fr":["A 31/E 21/E 23/Autoroute de Lorraine-Bourgogne"]}],"admins":[{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"NLD","iso_3166_1":"NL"},{"iso_3166_1_alpha3":"BEL","iso_3166_1":"BE"},{"iso_3166_1_alpha3":"BEL","iso_3166_1":"BE"},{"iso_3166_1_alpha3":"BEL","iso_3166_1":"BE"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"}],"via_waypoints":[]},{"notifications":[{"details":{"actual_value":"FR,DE","message":"Crossing the border of the countries of FR and DE."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":10935,"geometry_index_start":10931}],"summary":"Rue Berle, Rue Giay, Boulevard Bompard, Rue d'Endoume, Rue Joël Recher, Avenue de la Corse, Rampe Saint-Maurice, Tunnel du Vieux-Port, Tunnel de la Major, A 55, A 551, A 46, E 15, A 42, Autoroute des Titans, A 39, A 36, A 5, B 31a, Schwarzwaldstraße, B 31, A 81, B 33, E 54, A 96, Landshuter Allee, Nymphenburger Straße, Königsplatz, Karolinenplatz, Barer Straße, Prinz-Ludwig-Straße","distance":1101134,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive southwest on Rue Berle. Then Turn left onto Rue Giay.","announcement":"Drive southwest on Rue Berle. Then Turn left onto Rue Giay.","distanceAlongGeometry":10.318}],"intersections":[{"bearings":[221],"entry":[true],"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"geometry_index":0,"location":[5.360017,43.280028]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"left","text":"Boulevard Bompard"},"primary":{"components":[{"type":"text","text":"Rue Giay"}],"type":"turn","modifier":"left","text":"Rue Giay"},"distanceAlongGeometry":10.318}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive southwest on Rue Berle.","bearing_after":221,"bearing_before":0,"location":[5.360017,43.280028]},"speedLimitSign":"vienna","name":"Rue Berle","weight_typical":2.27,"duration_typical":2.162,"duration":2.162,"distance":10.318,"driving_side":"right","weight":2.27,"mode":"driving","geometry":"whrpqAaxcfIjCfD"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Boulevard Bompard.","announcement":"Turn left onto Boulevard Bompard.","distanceAlongGeometry":58.333}],"intersections":[{"bearings":[41,150],"entry":[false,true],"in":0,"turn_weight":10,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":1,"location":[5.359933,43.279958]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Boulevard Bompard"}],"type":"turn","modifier":"left","text":"Boulevard Bompard"},"distanceAlongGeometry":64.393}],"speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Turn left onto Rue Giay.","modifier":"left","bearing_after":150,"bearing_before":221,"location":[5.359933,43.279958]},"speedLimitSign":"vienna","name":"Rue Giay","weight_typical":23.44,"duration_typical":12.8,"duration":12.8,"distance":64.393,"driving_side":"right","weight":23.44,"mode":"driving","geometry":"kdrpqAyrcfIz@Fx@c@fUc_@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":717.572},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Rue d'Endoume.","announcement":"In a quarter mile, Bear right onto Rue d'Endoume.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Rue d'Endoume.","announcement":"Bear right onto Rue d'Endoume.","distanceAlongGeometry":62.222}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[23,201,314],"duration":12.367,"turn_weight":10,"turn_duration":6.967,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":15.67,"geometry_index":4,"location":[5.360461,43.279543]},{"entry":[true,false,true],"in":1,"bearings":[32,203,313],"duration":2.413,"turn_weight":1,"turn_duration":0.013,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":3.52,"geometry_index":5,"location":[5.360589,43.279766]},{"entry":[true,false,false],"in":2,"bearings":[26,145,212],"duration":9.933,"turn_weight":1,"turn_duration":0.033,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":11.395,"geometry_index":6,"location":[5.360643,43.279828]},{"entry":[true,true,false],"in":2,"bearings":[21,110,206],"duration":6.146,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":7.426,"geometry_index":7,"location":[5.360823,43.280093]},{"entry":[false,false,true],"in":1,"bearings":[65,201,353],"duration":17.953,"turn_weight":1.5,"turn_duration":0.153,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":20.19,"geometry_index":8,"location":[5.360898,43.280238]},{"entry":[false,true,true],"in":0,"bearings":[146,221,312],"duration":4.728,"turn_weight":1.5,"turn_duration":0.048,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":6.414,"geometry_index":15,"location":[5.360467,43.280959]},{"entry":[false,true,true],"in":0,"bearings":[132,221,322],"duration":2.071,"turn_weight":1,"turn_duration":0.014,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":3.16,"geometry_index":16,"location":[5.360231,43.281113]},{"entry":[false,true,true],"in":0,"bearings":[142,272,360],"duration":11.688,"turn_weight":1.5,"turn_duration":0.088,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":13.68,"geometry_index":18,"location":[5.360142,43.281197]},{"entry":[true,true,false],"in":2,"bearings":[95,153,252],"duration":18.194,"turn_weight":1.5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":20.572,"geometry_index":26,"location":[5.360423,43.281597]},{"entry":[true,false,true],"in":1,"bearings":[80,165,345],"duration":2.347,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":3.457,"geometry_index":34,"location":[5.36113,43.282065]},{"entry":[false,true,true],"in":0,"bearings":[165,253,345],"duration":7.027,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":8.371,"geometry_index":35,"location":[5.361088,43.282177]},{"entry":[true,false,true],"in":1,"bearings":[70,165,344],"duration":6.705,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":8.02,"geometry_index":38,"location":[5.360961,43.282514]},{"entry":[false,false,true],"in":1,"bearings":[75,164,345],"duration":9.908,"turn_weight":1.4,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":11.795,"geometry_index":39,"location":[5.360742,43.283077]},{"entry":[true,false,true],"in":1,"bearings":[53,165,346],"duration":20.626,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":22.649,"geometry_index":40,"location":[5.360603,43.283457]},{"bearings":[122,164,345],"entry":[false,false,true],"in":1,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"geometry_index":43,"location":[5.360182,43.284551]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue d'Endoume"}],"type":"turn","modifier":"slight right","text":"Rue d'Endoume"},"distanceAlongGeometry":729.239}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Boulevard Bompard.","modifier":"left","bearing_after":23,"bearing_before":134,"location":[5.360461,43.279543]},"speedLimitSign":"vienna","name":"Boulevard Bompard","weight_typical":175.347,"duration_typical":149.282,"duration":149.282,"distance":729.239,"driving_side":"right","weight":175.347,"mode":"driving","geometry":"mjqpqAysdfI}L_G{BkBqOgJaHuCoDF{EvAoEdCiI~DaBfAcIrGuAzAsHvMwAxBoAv@u@TyAFkAOoAUoBaAyHqD{AoBPeEJqCj@{UCcGeCyHaCsBgBg@iDZaMdD_FrAcD|@aG`B{F|Aeb@tLwVtGsOxDgl@|PoEpAaHlB{RpFQD{Bn@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left onto Rue Joël Recher.","announcement":"In a quarter mile, Turn left onto Rue Joël Recher.","distanceAlongGeometry":312.719},{"ssmlAnnouncement":"Turn left onto Rue Joël Recher.","announcement":"Turn left onto Rue Joël Recher.","distanceAlongGeometry":53.333}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[33,101,165,238],"duration":2.351,"turn_weight":7,"turn_duration":0.159,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":9.301,"geometry_index":47,"location":[5.359979,43.285085]},{"entry":[true,false,false],"in":1,"bearings":[4,213,287],"duration":5.8,"turn_weight":1.5,"turn_duration":0.165,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":7.417,"geometry_index":48,"location":[5.360071,43.285188]},{"entry":[false,false,true],"in":1,"bearings":[82,173,351],"duration":2.995,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":2,"weight":4.123,"geometry_index":52,"location":[5.360055,43.285503]},{"entry":[true,false,false],"in":1,"bearings":[27,171,286],"duration":12.917,"turn_weight":1.5,"turn_duration":0.082,"mapbox_streets_v8":{"class":"street"},"is_urban":false,"admin_index":0,"out":0,"weight":14.977,"geometry_index":54,"location":[5.360019,43.285671]},{"bearings":[83,248,341],"entry":[true,false,false],"in":1,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":60,"location":[5.360678,43.2862]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rue Joël Recher"}],"type":"turn","modifier":"left","text":"Rue Joël Recher"},"distanceAlongGeometry":324.386}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Rue d'Endoume.","modifier":"slight right","bearing_after":33,"bearing_before":345,"location":[5.359979,43.285085]},"speedLimitSign":"vienna","name":"Rue d'Endoume","weight_typical":66.594,"duration_typical":51.316,"duration":51.316,"distance":324.386,"driving_side":"right","weight":66.594,"mode":"driving","geometry":"yd|pqAuucfImEwDkAc@w@ESA}MjA_Hz@o@JkA[s@]aUoU_BcCeAsDy@cF]}ECoKFqeB?}@Ca@_@cH"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn right onto Avenue de la Corse.","announcement":"In a quarter mile, Turn right onto Avenue de la Corse.","distanceAlongGeometry":318.264},{"ssmlAnnouncement":"Turn right onto Avenue de la Corse. Then Turn left onto Rampe Saint-Maurice.","announcement":"Turn right onto Avenue de la Corse. Then Turn left onto Rampe Saint-Maurice.","distanceAlongGeometry":68.333}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[76,155,262,332],"duration":9.328,"turn_weight":10,"turn_duration":6.928,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":12.58,"geometry_index":66,"location":[5.362824,43.286231]},{"entry":[false,true,true],"in":0,"bearings":[152,297,345],"duration":27.917,"turn_weight":1.5,"turn_duration":0.017,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"weight":31.492,"geometry_index":68,"location":[5.362763,43.286313]},{"entry":[true,false,false,true],"in":1,"bearings":[68,170,248,350],"duration":16.722,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":20.386,"geometry_index":73,"location":[5.362552,43.287135]},{"entry":[false,false,true,true],"in":1,"bearings":[68,170,246,350],"duration":10.627,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":13.417,"geometry_index":76,"location":[5.362412,43.287709]},{"bearings":[170,258,350],"entry":[false,false,true],"in":0,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":78,"location":[5.362289,43.288231]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"turn","modifier":"left","text":"Rampe Saint-Maurice"},"primary":{"components":[{"type":"text","text":"Avenue de la Corse"}],"type":"turn","modifier":"right","text":"Avenue de la Corse"},"distanceAlongGeometry":328.264}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rue Joël Recher.","modifier":"left","bearing_after":332,"bearing_before":82,"location":[5.362824,43.286231]},"speedLimitSign":"vienna","name":"Rue Joël Recher","weight_typical":98.418,"duration_typical":82.781,"duration":82.781,"distance":328.264,"driving_side":"right","weight":98.418,"mode":"driving","geometry":"ml~pqAogifIeCfB]PgDbASF{b@nGmBXeEn@}Cd@wVxDeFv@iEn@iYdEeC^qg@rHmBX{@LwDh@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Rampe Saint-Maurice. Then, in 600 feet, Take the exit.","announcement":"Turn left onto Rampe Saint-Maurice. Then, in 600 feet, Take the exit.","distanceAlongGeometry":125.083}],"intersections":[{"entry":[true,false,true,true],"in":1,"bearings":[77,170,258,351],"duration":16.541,"turn_weight":10.5,"turn_duration":1.814,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":26.7,"geometry_index":83,"location":[5.362078,43.289124]},{"bearings":[78,170,257],"entry":[true,false,false],"in":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":88,"location":[5.36316,43.289306]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"off ramp","modifier":"right","text":"Rampe Saint-Maurice"},"primary":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"turn","modifier":"left","text":"Rampe Saint-Maurice"},"distanceAlongGeometry":164.289}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Avenue de la Corse.","modifier":"right","bearing_after":77,"bearing_before":350,"location":[5.362078,43.289124]},"speedLimitSign":"vienna","name":"Avenue de la Corse","weight_typical":43.938,"duration_typical":32.231,"duration":32.231,"distance":164.289,"driving_side":"right","weight":43.938,"mode":"driving","geometry":"gadqqA{xgfIk@cGMsAoEoe@mAsMSwB{G_w@"},{"voiceInstructions":[{"ssmlAnnouncement":"Take the exit.","announcement":"Take the exit.","distanceAlongGeometry":82.333}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[77,258,347],"duration":7.422,"turn_weight":8.75,"turn_duration":5.622,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":10.73,"geometry_index":89,"location":[5.364056,43.289448]},{"entry":[false,false,false,true],"in":1,"bearings":[77,167,260,346],"duration":6.402,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":7.02,"geometry_index":90,"location":[5.364025,43.289545]},{"entry":[true,false,true],"in":1,"bearings":[80,166,346],"duration":6.95,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":7.811,"geometry_index":91,"location":[5.363911,43.289888]},{"entry":[true,false,true],"in":1,"bearings":[82,166,346],"duration":4.103,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.506,"geometry_index":92,"location":[5.363752,43.290363]},{"entry":[true,false,true],"in":1,"bearings":[83,166,348],"duration":0.285,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.305,"geometry_index":93,"location":[5.363652,43.290653]},{"entry":[false,true],"in":0,"bearings":[168,346],"duration":2.362,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.599,"geometry_index":94,"location":[5.363648,43.290667]},{"bearings":[166,346],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":95,"location":[5.363584,43.290854]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rampe Saint-Maurice"}],"type":"off ramp","modifier":"right","text":"Rampe Saint-Maurice"},"distanceAlongGeometry":171.669}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Rampe Saint-Maurice.","modifier":"left","bearing_after":347,"bearing_before":78,"location":[5.364056,43.289448]},"speedLimitSign":"vienna","name":"Rampe Saint-Maurice","weight_typical":34.584,"duration_typical":28.991,"duration":28.991,"distance":171.669,"driving_side":"right","weight":34.584,"mode":"driving","geometry":"oudqqAotkfIaE|@mTbFu\\|HcQfE[FuJ~BUFaDt@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take Tunnel du Vieux-Port.","announcement":"In a quarter mile, Keep left to take Tunnel du Vieux-Port.","distanceAlongGeometry":306.241},{"ssmlAnnouncement":"Keep left to take Tunnel du Vieux-Port.","announcement":"Keep left to take Tunnel du Vieux-Port.","distanceAlongGeometry":100}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[166,341,351],"duration":4.986,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":2,"weight":5.474,"geometry_index":97,"location":[5.363553,43.290946]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[166,347],"duration":9.333,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":10.5,"geometry_index":99,"location":[5.363435,43.291354]},{"entry":[true,false],"in":1,"bearings":[39,167],"duration":15.086,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":16.971,"geometry_index":100,"location":[5.363235,43.291969]},{"entry":[false,true,false],"in":2,"bearings":[4,194,352],"duration":5.142,"turn_weight":0.75,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":6.501,"geometry_index":116,"location":[5.363934,43.291813]},{"bearings":[10,163,351],"entry":[false,true,false],"in":0,"turn_duration":0.142,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":120,"location":[5.363747,43.291194]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Tunnel du Vieux-Port"}],"type":"fork","modifier":"left","text":"Tunnel du Vieux-Port"},"distanceAlongGeometry":330.241}],"speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit.","modifier":"slight right","bearing_after":351,"bearing_before":346,"location":[5.363553,43.290946]},"speedLimitSign":"vienna","name":"Rampe Saint-Maurice","weight_typical":48.955,"duration_typical":43.141,"duration":43.141,"distance":330.241,"driving_side":"right","weight":48.955,"mode":"driving","geometry":"csgqqAaujfIiBGeUrFme@nKcC_A{@}@s@wAa@eBWoBJeLHwBXsA^kAj@cAn@_AlA_AzA_@nBQfBHv@_@~WfGlEz@tCJpAd@`NiEhAc@bAu@r@}@f@aAXsALiAFqA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":896.143},{"ssmlAnnouncement":"In a quarter mile, Continue on Tunnel de la Major.","announcement":"In a quarter mile, Continue on Tunnel de la Major.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Continue on Tunnel de la Major for 4 miles.","announcement":"Continue on Tunnel de la Major for 4 miles.","distanceAlongGeometry":105.556}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[79,99,303],"duration":23.75,"turn_duration":0.504,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":26.151,"geometry_index":128,"location":[5.364077,43.290812]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[174,342],"duration":7.92,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":9.108,"geometry_index":142,"location":[5.366225,43.291643]},{"bearings":[132,163,340],"entry":[false,false,true],"classes":["tunnel"],"in":0,"turn_weight":14,"turn_duration":0.048,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":147,"location":[5.365636,43.292293]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Tunnel de la Major"}],"type":"turn","modifier":"straight","text":"Tunnel de la Major"},"distanceAlongGeometry":912.81}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take Tunnel du Vieux-Port.","modifier":"slight left","bearing_after":79,"bearing_before":123,"location":[5.364077,43.290812]},"speedLimitSign":"vienna","name":"Tunnel du Vieux-Port","weight_typical":91.82,"duration_typical":69.55,"duration":69.55,"distance":912.81,"driving_side":"right","weight":91.82,"mode":"driving","geometry":"wjgqqAyukfIi@qCEcCu@}OcFaz@uAoSsA{FgBaFsBgDaGyE}D_B}AWeCIiCR_Cj@eJ|CqFpDoHxG}ErGmDzGkMbFeKnFkI~EgNvKqmAtiAqXdUePfL}IxEeR|F_QfDwLrAsMOcJgBqH}B}FwCsSsN"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep left to take A 55.","announcement":"In 1 mile, Keep left to take A 55.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 55.","announcement":"In a half mile, Keep left to take A 55.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 55.","announcement":"Keep left to take A 55.","distanceAlongGeometry":160}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[23,35,209],"duration":9.487,"turn_weight":5,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":15.643,"geometry_index":163,"location":[5.363411,43.297081]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[42,218],"duration":182.8,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":205.65,"geometry_index":171,"location":[5.36411,43.297956]},{"entry":[true,true,false],"classes":["tunnel"],"in":2,"bearings":[10,18,192],"duration":7.496,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":8.598,"geometry_index":180,"location":[5.368311,43.309688]},{"entry":[true,false],"in":1,"bearings":[12,190],"duration":7.43,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":13.544,"geometry_index":181,"location":[5.368425,43.310169]},{"entry":[true,false],"in":1,"bearings":[1,186],"duration":10.916,"turn_weight":5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":17.554,"geometry_index":185,"location":[5.368645,43.311026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,341],"duration":11.109,"turn_weight":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":17.775,"geometry_index":192,"location":[5.368172,43.312664]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,326],"duration":1.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.952,"geometry_index":198,"location":[5.367176,43.314459]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[132,144,318],"duration":17.884,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":20.088,"geometry_index":200,"location":[5.36694,43.314701]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.918,"geometry_index":210,"location":[5.364063,43.317275]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,331],"duration":18.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":21.33,"geometry_index":211,"location":[5.363957,43.317405]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,195],"duration":0.288,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.324,"geometry_index":226,"location":[5.364283,43.320776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,192],"duration":10.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":12.204,"geometry_index":227,"location":[5.364299,43.320833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,331],"duration":13.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":15.498,"geometry_index":236,"location":[5.363921,43.322809]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[143,322,331],"duration":17.095,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":19.209,"geometry_index":239,"location":[5.361846,43.324897]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,312],"duration":1.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.909,"geometry_index":248,"location":[5.358887,43.326936]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,319],"duration":6.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":7.637,"geometry_index":249,"location":[5.358584,43.327136]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[140,312,332],"duration":3.925,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.286,"geometry_index":251,"location":[5.357508,43.328061]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":0.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.419,"geometry_index":253,"location":[5.3567,43.328638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,319],"duration":2.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.348,"geometry_index":254,"location":[5.356618,43.328698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,319],"duration":3.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.505,"geometry_index":257,"location":[5.356208,43.329046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,322],"duration":6.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":6.984,"geometry_index":260,"location":[5.355599,43.329572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,341],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.583,"geometry_index":267,"location":[5.354603,43.330769]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.35446,43.331072],"geometry_index":268,"admin_index":0,"weight":29.833,"is_urban":true,"turn_weight":0.5,"duration":27.297,"bearings":[142,161,347],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[121,302,307],"duration":1.195,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.306,"geometry_index":295,"location":[5.351716,43.336271]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":0.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.674,"geometry_index":296,"location":[5.351387,43.336418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":13.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":14.408,"geometry_index":297,"location":[5.351223,43.336493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":0.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.59,"geometry_index":310,"location":[5.348648,43.338801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,353],"duration":31.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":35.976,"geometry_index":311,"location":[5.348611,43.338927]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.345672,43.345989],"geometry_index":328,"admin_index":0,"weight":4.64,"is_urban":true,"turn_weight":0.5,"duration":3.607,"bearings":[145,153,334],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,343],"duration":1.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.796,"geometry_index":331,"location":[5.345235,43.346733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,349],"duration":3.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.764,"geometry_index":333,"location":[5.345113,43.347043]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,180],"duration":3.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":4.53,"geometry_index":336,"location":[5.345025,43.347755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,197],"duration":12.378,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":14.544,"geometry_index":339,"location":[5.345235,43.348572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,220],"duration":12.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":14.678,"geometry_index":346,"location":[5.347486,43.350755]},{"bearings":[179,353],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":355,"location":[5.348536,43.353268]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 55","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 55"}],"type":"fork","modifier":"left","text":"A 55"},"distanceAlongGeometry":7237.971}],"speedLimitUnit":"km/h","maneuver":{"type":"new name","instruction":"Continue on Tunnel de la Major.","modifier":"straight","bearing_after":23,"bearing_before":29,"location":[5.363411,43.297081]},"speedLimitSign":"vienna","name":"Tunnel de la Major","weight_typical":532.755,"duration_typical":454.428,"duration":454.428,"distance":7237.971,"driving_side":"right","weight":532.755,"mode":"driving","geometry":"qrsqqAeljfIiNaHmIuFoE}C{E}DgE{DyC{CsA{A{@mAkWe]w_@mk@eFsDiGcCwzA{UgwCii@_dBu\\qt@cEaeGelAa]cFs^qH}IwAiE[uCQ}OIiHVcQrBeHlBwE`BsN`FmY|JuUrIw`@dOmXnMqKvFiJxFmEjDeHlG}DhEmErFuC~DkDxFuH`N{`@br@qItLwKxLyN|L_XtSuc@`]cGrEaGrE_N|H}HnDoO~D}LbBiMb@kJKcK{@oH{AaJyBcMwEuOeHoN{G}TqJsSkFqB_@wE}@gK_AkKUoII{I^gNpAgM`CaT`HeSzJcMvIkL~K_fB|hBsNrOUVuUxYoOdS_IdMsMdU_J`P_Tzd@iNf\\oK|QqD~Egs@f{@wC~Fi^ni@wBbDaEfF_FfGuGbIgEvFaKdLqMbPyIrJ}IxIuExEmJhIuIhGcLrGcJvD}Q|GqPpDsS~BoSl@yV?c}@qAaMLmFNkGn@yGp@iEt@qEbA}F~AeErAkGhCmF`CcF|CiHtEuEzD_FrEcFpFuE|F_F`HuEvHsFpKcJrS}JjXoIfWeHpSuCfIeLh\\sKfX{JpS}GxK_GhIgGzH_KlKoIbHiKdHaLbGsMbFwMrDcCd@{FhAwYpCiNl@g\\f@mUXeV^}MZgN~@ySlCcOzCaOfEeTtIkS~Jc~@be@gSdLeTrMwn@da@kn@j`@iLbHmS`KwKbEyFzBqJvBgJjBkOfA{OCeOeAgOeBsQwFqL}F}IwEkI{GgMkLad@ck@s\\ob@sScWyIuHeKuI_ZqRaUiKiZoGcTeCmMe@mN@uELcXhCgLdBeM`DoSxH"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6261.152},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 7.","announcement":"In 2 miles, Keep right to take A 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 7.","announcement":"In a half mile, Keep right to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 7 toward Marignane, Avignon.","announcement":"Keep right to take A 7 toward Marignane, Avignon.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[161,327,342],"duration":2.779,"turn_duration":0.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.277,"geometry_index":359,"location":[5.348178,43.354437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,328],"duration":26.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":30.656,"geometry_index":361,"location":[5.347787,43.354952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,334],"duration":3.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.942,"geometry_index":371,"location":[5.343614,43.359873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,332],"duration":8.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.806,"geometry_index":372,"location":[5.343171,43.360531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":3.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.276,"geometry_index":373,"location":[5.341994,43.362151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,330],"duration":2.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.836,"geometry_index":374,"location":[5.341454,43.362878]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,329],"duration":15.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":17.266,"geometry_index":375,"location":[5.341091,43.363335]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,297],"duration":1.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.411,"geometry_index":384,"location":[5.337937,43.365622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,294],"duration":6.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":7.502,"geometry_index":386,"location":[5.337608,43.365743]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[99,102,276],"duration":1.055,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":1.157,"geometry_index":390,"location":[5.335684,43.366151]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[96,274,283],"duration":10.068,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":11.304,"geometry_index":391,"location":[5.335367,43.366176]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[84,95,276],"duration":9.918,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":10.901,"geometry_index":394,"location":[5.332239,43.366348]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,300],"duration":13.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":14.814,"geometry_index":400,"location":[5.329247,43.367023]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[123,304],"duration":10.526,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.052,"geometry_index":403,"location":[5.325547,43.368748]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,313],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.685,"geometry_index":405,"location":[5.32282,43.370127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,316],"duration":8.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.784,"geometry_index":406,"location":[5.322451,43.370375]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[23,151,334],"duration":2.834,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":2.896,"geometry_index":412,"location":[5.320827,43.371941]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,339],"duration":20.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.191,"geometry_index":415,"location":[5.320441,43.372537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,336],"duration":3.483,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.396,"geometry_index":421,"location":[5.318352,43.376913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,336],"duration":6.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.952,"geometry_index":422,"location":[5.317907,43.377641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,334],"duration":8.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.992,"geometry_index":424,"location":[5.317086,43.378906]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":7.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.348,"geometry_index":426,"location":[5.315895,43.380629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,330],"duration":3.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.547,"geometry_index":427,"location":[5.314708,43.382231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,330],"duration":15.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.768,"geometry_index":429,"location":[5.314103,43.382998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,301],"duration":26.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":24.251,"geometry_index":437,"location":[5.310637,43.385613]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,321],"duration":0.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.349,"geometry_index":445,"location":[5.304042,43.389129]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,321],"duration":21.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.079,"geometry_index":446,"location":[5.303963,43.389199]},{"bearings":[153,337],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":451,"location":[5.299968,43.393134]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Marignane"},{"type":"text","text":"/"},{"type":"text","text":"Avignon"}],"type":"fork","modifier":"right","text":"Marignane / Avignon"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"right","text":"A 7"},"distanceAlongGeometry":6291.152}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 55.","modifier":"slight left","bearing_after":327,"bearing_before":341,"location":[5.348178,43.354437]},"speedLimitSign":"vienna","name":"","weight_typical":258.131,"duration_typical":248.587,"duration":248.587,"distance":6291.152,"driving_side":"right","weight":258.131,"mode":"driving","ref":"A 55","geometry":"iscuqActleIoInHuT|Mmj@vd@g@b@}y@hz@gWtV_YjVga@b[ib@|YaZxR{ZzRe\\xSch@tZgdBphAml@v`@q[tUyC|BsUjQqK|I{LvLmTnVuPxVgNxW{KrWyTjt@oAxEaDvL_Hf[wCbTuCnVaFjn@q@xRyB`eAsBtbAiBvx@sA|^qCxa@mCfXmGh_@uNdl@mEnPwG|Sgj@j{Ayv@|tBemAn|C_G|KoN`VgIpL}KvOoLdNwTxUwYjVuKxHgL~G_OzI_GfCmU`Kur@~T_s@hSm`Ab\\e]lNwr@r^ol@xZo_@zRqm@l^mqAtv@gXvQccBdiAqA|@kl@zb@qK|H}[jZaVlXgZ|_@_I`MwS|]wShc@cSrf@wRbm@m]lpAiWr`AeStk@wb@f_A}Wza@eOtSeo@nu@kC|Ci|@jdAcgA~oAye@zf@ac@r_@sd@xY_c@bToUjIySlFePlD"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take A 551.","announcement":"In a quarter mile, Keep left to take A 551.","distanceAlongGeometry":361.848},{"ssmlAnnouncement":"Keep left to take A 551 toward Marignane, Avignon.","announcement":"Keep left to take A 551 toward Marignane, Avignon.","distanceAlongGeometry":232.222}],"intersections":[{"bearings":[167,341,356],"entry":[false,true,true],"classes":["motorway"],"in":0,"turn_weight":5,"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"geometry_index":455,"location":[5.299258,43.394678]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Marignane"},{"type":"text","text":"/"},{"type":"text","text":"Avignon"}],"type":"fork","modifier":"left","text":"Marignane / Avignon"},"distanceAlongGeometry":398.515}],"destinations":"A 7: Marignane, Avignon, Lyon, Aix-en-Provence","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 7 toward Marignane/Avignon/Lyon.","modifier":"slight right","bearing_after":356,"bearing_before":347,"location":[5.299258,43.394678]},"speedLimitSign":"vienna","name":"","weight_typical":19.742,"duration_typical":15.132,"duration":15.132,"distance":398.515,"driving_side":"right","weight":19.742,"mode":"driving","ref":"A 551","geometry":"kfrwqAsbmbIsKf@_X`DyNpAajAjImr@lD{YfA}NN"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 172 miles.","announcement":"Continue for 172 miles.","distanceAlongGeometry":276604.844},{"ssmlAnnouncement":"In 1 mile, Take the A 46 exit.","announcement":"In 1 mile, Take the A 46 exit.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the A 46 exit.","announcement":"In a half mile, Take the A 46 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the A 46 exit toward Strasbourg, Paris.","announcement":"Take the A 46 exit toward Strasbourg, Paris.","distanceAlongGeometry":180}],"intersections":[{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[3,179,359],"duration":10.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":10.14,"geometry_index":462,"location":[5.298819,43.398242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,184],"duration":2.829,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.758,"geometry_index":465,"location":[5.298887,43.400809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.8,"geometry_index":466,"location":[5.298939,43.401504]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":2.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.7,"geometry_index":469,"location":[5.298926,43.402686]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,344],"duration":5.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.439,"geometry_index":471,"location":[5.298796,43.403324]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,325],"duration":1.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.974,"geometry_index":475,"location":[5.29816,43.404477]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.297796,43.404854],"geometry_index":476,"admin_index":0,"weight":3.495,"is_urban":false,"turn_weight":1,"duration":2.521,"bearings":[134,145,319],"out":2,"in":1,"turn_duration":0.026,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,308],"duration":5.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.154,"geometry_index":480,"location":[5.297277,43.405253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,290],"duration":1.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.437,"geometry_index":484,"location":[5.29586,43.405896]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,286],"duration":15.272,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.653,"geometry_index":485,"location":[5.295428,43.406009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,299],"duration":1.8,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":1.845,"geometry_index":493,"location":[5.290644,43.406969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,301],"duration":17.139,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":1,"weight":17.568,"geometry_index":494,"location":[5.290397,43.407069]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.288087,43.408103],"geometry_index":496,"admin_index":0,"weight":28.031,"is_urban":false,"turn_weight":11,"duration":16.229,"bearings":[122,125,306],"out":2,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":0.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.425,"geometry_index":502,"location":[5.28435,43.410579]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":1.147,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.233,"geometry_index":503,"location":[5.284262,43.410645]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[136,317],"duration":9.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.798,"geometry_index":504,"location":[5.284012,43.410834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,317],"duration":7.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.268,"geometry_index":505,"location":[5.282002,43.412395]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,316],"duration":2.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.06,"geometry_index":507,"location":[5.280418,43.41363]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[136,316,336],"duration":11.144,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":12.236,"geometry_index":508,"location":[5.279836,43.414073]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[132,311,325],"duration":12.848,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":14.112,"geometry_index":511,"location":[5.277397,43.415798]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,312],"duration":17.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":19.33,"geometry_index":513,"location":[5.273756,43.418127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,316],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.376,"geometry_index":519,"location":[5.26907,43.421387]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.376,"geometry_index":520,"location":[5.268984,43.421451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,318],"duration":0.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.339,"geometry_index":522,"location":[5.268901,43.421514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,318],"duration":27.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":31.464,"geometry_index":523,"location":[5.268829,43.421572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,325],"duration":1.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.577,"geometry_index":527,"location":[5.262402,43.427446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,324],"duration":39.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":46.607,"geometry_index":528,"location":[5.262107,43.427747]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.253356,43.436592],"geometry_index":531,"admin_index":0,"weight":31.549,"is_urban":true,"turn_weight":1.4,"duration":25.666,"bearings":[127,143,324],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[138,320,336],"duration":8.536,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":10.021,"geometry_index":535,"location":[5.247642,43.441627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,324],"duration":1.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.843,"geometry_index":536,"location":[5.245686,43.443301]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,318],"duration":1.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.314,"geometry_index":537,"location":[5.245362,43.44362]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,318],"duration":2.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.505,"geometry_index":538,"location":[5.2451,43.443835]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[138,322,346],"duration":20.925,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":24.053,"geometry_index":539,"location":[5.244599,43.444245]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.240564,43.44856],"geometry_index":545,"admin_index":0,"weight":79.28,"is_urban":false,"turn_weight":1,"duration":74.573,"bearings":[139,150,330],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,359],"duration":2.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.015,"geometry_index":568,"location":[5.23398,43.468262]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,179],"duration":43.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":42.796,"geometry_index":569,"location":[5.233961,43.468818]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.167,"geometry_index":578,"location":[5.240008,43.479754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":46.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":46.633,"geometry_index":579,"location":[5.240156,43.480054]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.8,"geometry_index":588,"location":[5.240025,43.492516]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.239952,43.493],"geometry_index":589,"admin_index":0,"weight":24.692,"is_urban":false,"turn_weight":15,"duration":9.715,"bearings":[13,174,352],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,353],"duration":0.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.3,"geometry_index":593,"location":[5.239569,43.495502]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.239555,43.495586],"geometry_index":594,"admin_index":0,"weight":1.383,"is_urban":false,"turn_weight":0.5,"duration":0.89,"bearings":[151,173,353],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":12.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.146,"geometry_index":595,"location":[5.239518,43.495818]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":15.151,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.151,"geometry_index":597,"location":[5.238841,43.49927]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,347],"duration":1.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.538,"geometry_index":601,"location":[5.237744,43.503547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":46.925,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":45.752,"geometry_index":602,"location":[5.237609,43.503958]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,329],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.137,"geometry_index":613,"location":[5.230574,43.516354]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,328],"duration":120.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":114.801,"geometry_index":614,"location":[5.230124,43.516888]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,210],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.083,"geometry_index":644,"location":[5.228584,43.545998]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":6.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.594,"geometry_index":645,"location":[5.228962,43.546529]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[18,39,202],"duration":8.154,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.726,"geometry_index":648,"location":[5.230059,43.548279]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,195],"duration":6.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.321,"geometry_index":652,"location":[5.230985,43.550449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":12.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.306,"geometry_index":655,"location":[5.231444,43.552275]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.231615,43.555883],"geometry_index":662,"admin_index":0,"weight":19.272,"is_urban":false,"turn_weight":1,"duration":19.259,"bearings":[156,176,351],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,336],"duration":14.733,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.628,"geometry_index":671,"location":[5.228835,43.560626]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.226697,43.564272],"geometry_index":676,"admin_index":0,"weight":1.771,"is_urban":false,"turn_weight":1,"duration":0.845,"bearings":[147,160,333],"out":2,"in":0,"turn_duration":0.012,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,333],"duration":6.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.444,"geometry_index":677,"location":[5.226557,43.564473]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,321],"duration":20.548,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.493,"geometry_index":680,"location":[5.225275,43.566101]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[126,309],"duration":3.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.859,"geometry_index":687,"location":[5.217909,43.570033]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,314],"duration":71.308,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":62.394,"geometry_index":688,"location":[5.216767,43.570701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":0.526,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.474,"geometry_index":712,"location":[5.197095,43.588236]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[113,290,304],"duration":17.433,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.669,"geometry_index":713,"location":[5.196882,43.588302]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,284],"duration":0.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.642,"geometry_index":716,"location":[5.19021,43.589715]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,285],"duration":4.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.441,"geometry_index":717,"location":[5.189935,43.589766]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,285],"duration":0.687,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.619,"geometry_index":718,"location":[5.188031,43.590147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,285],"duration":9.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.925,"geometry_index":719,"location":[5.187778,43.590197]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.184179,43.590965],"geometry_index":721,"admin_index":0,"weight":6.79,"is_urban":false,"turn_weight":1,"duration":6.441,"bearings":[101,107,289],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,291],"duration":0.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.314,"geometry_index":723,"location":[5.181908,43.591521]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,292],"duration":4.544,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.089,"geometry_index":724,"location":[5.181787,43.591555]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,297],"duration":0.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.298,"geometry_index":727,"location":[5.180291,43.591985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,297],"duration":11.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.786,"geometry_index":728,"location":[5.180212,43.592014]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[23,122,301],"duration":5.899,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":5.292,"geometry_index":731,"location":[5.177525,43.593177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,295],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.756,"geometry_index":732,"location":[5.177008,43.5934]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.17693,43.593426],"geometry_index":733,"admin_index":0,"weight":16.215,"is_urban":false,"toll_collection":{"name":"Péage de Lançon","type":"toll_booth"},"turn_weight":15,"duration":1.35,"bearings":[115,294],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,295],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.782,"geometry_index":734,"location":[5.176857,43.59345]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[115,296,334],"duration":15.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.986,"geometry_index":735,"location":[5.176489,43.593577]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[99,112,292],"duration":5.541,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":4.968,"geometry_index":738,"location":[5.17351,43.594451]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,283],"duration":115.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":106.845,"geometry_index":739,"location":[5.172454,43.594766]},{"entry":[false,false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[86,142,267,321],"duration":30.733,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":3,"weight":29.946,"geometry_index":761,"location":[5.139727,43.616991]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,321],"duration":3.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.632,"geometry_index":763,"location":[5.132381,43.623633]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[141,323,346],"duration":0.916,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.908,"geometry_index":764,"location":[5.131512,43.624421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,321],"duration":4.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.703,"geometry_index":765,"location":[5.131306,43.624622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,322],"duration":0.97,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.97,"geometry_index":766,"location":[5.130163,43.62563]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,322],"duration":9.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.497,"geometry_index":767,"location":[5.129928,43.62585]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.127576,43.628006],"geometry_index":768,"admin_index":0,"weight":1.956,"is_urban":false,"turn_weight":1,"duration":0.976,"bearings":[139,142,319],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,321],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.316,"geometry_index":769,"location":[5.127333,43.628211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,322],"duration":61.505,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":63.043,"geometry_index":770,"location":[5.126755,43.628732]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,342],"duration":1.365,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.434,"geometry_index":782,"location":[5.1133,43.643878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":12.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.434,"geometry_index":783,"location":[5.113127,43.644253]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,337],"duration":1.169,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.198,"geometry_index":786,"location":[5.11124,43.647581]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,336],"duration":38.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":38.632,"geometry_index":787,"location":[5.111056,43.647895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,327],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.271,"geometry_index":795,"location":[5.103379,43.657918]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,330],"duration":11.837,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.541,"geometry_index":796,"location":[5.103093,43.658234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.100617,43.661227],"geometry_index":799,"admin_index":0,"weight":71.762,"is_urban":false,"turn_weight":0.5,"duration":77.049,"bearings":[131,149,332],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":2.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.836,"geometry_index":811,"location":[5.095907,43.674102]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":19.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.28,"geometry_index":812,"location":[5.095838,43.674709]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":2.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.214,"geometry_index":818,"location":[5.095699,43.68045]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[2,21,182],"duration":41.434,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.274,"geometry_index":819,"location":[5.095731,43.681184]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.097219,43.693417],"geometry_index":828,"admin_index":0,"weight":43.481,"is_urban":false,"turn_weight":1,"duration":45.933,"bearings":[10,180,189],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,358],"duration":5.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.897,"geometry_index":835,"location":[5.09888,43.701333]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,351],"duration":40.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.106,"geometry_index":837,"location":[5.098749,43.702903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,334],"duration":0.544,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.504,"geometry_index":848,"location":[5.095514,43.709469]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,335],"duration":39.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":35.586,"geometry_index":849,"location":[5.095416,43.709612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":0.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.744,"geometry_index":860,"location":[5.090443,43.72095]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":65.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":60.301,"geometry_index":861,"location":[5.090388,43.7212]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,347],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.249,"geometry_index":880,"location":[5.087845,43.740583]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.327,"geometry_index":881,"location":[5.087725,43.740949]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.071,"geometry_index":882,"location":[5.087695,43.741041]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.279,"geometry_index":883,"location":[5.087593,43.741355]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[10,167,347],"duration":3.288,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":3.186,"geometry_index":884,"location":[5.087471,43.741729]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":2.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.566,"geometry_index":885,"location":[5.087169,43.74267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":1.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.404,"geometry_index":886,"location":[5.086926,43.743427]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":4.054,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.952,"geometry_index":887,"location":[5.086794,43.743844]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.08641,43.745011],"geometry_index":888,"admin_index":0,"weight":8.807,"is_urban":false,"turn_weight":0.5,"duration":8.541,"bearings":[145,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,346],"duration":0.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.714,"geometry_index":889,"location":[5.085605,43.747495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,347],"duration":31.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":31.151,"geometry_index":890,"location":[5.085531,43.747705]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[153,333,336],"duration":21.401,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.324,"geometry_index":898,"location":[5.081361,43.75676]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.076887,43.762414],"geometry_index":905,"admin_index":0,"weight":110.104,"is_urban":false,"turn_weight":1,"duration":114.865,"bearings":[144,147,325],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,326],"duration":1.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.379,"geometry_index":926,"location":[5.045657,43.789029]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[146,325],"duration":73.47,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":71.633,"geometry_index":927,"location":[5.045323,43.789388]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[158,335,346],"duration":13.113,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.091,"geometry_index":952,"location":[5.037531,43.810202]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.035078,43.813737],"geometry_index":955,"admin_index":0,"weight":7.596,"is_urban":false,"turn_weight":0.5,"duration":6.944,"bearings":[142,151,330],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,329],"duration":42.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":43.996,"geometry_index":957,"location":[5.033525,43.815679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[132,311],"duration":7.069,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.246,"geometry_index":971,"location":[5.022565,43.82707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[123,303],"duration":25.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":25.32,"geometry_index":975,"location":[5.020432,43.828244]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,290],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.819,"geometry_index":983,"location":[5.013322,43.830652]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[110,291],"duration":3.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.12,"geometry_index":984,"location":[5.013077,43.830718]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.012139,43.830973],"geometry_index":985,"admin_index":0,"weight":19.608,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.647,"bearings":[111,291,301],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.006375,43.833011],"geometry_index":993,"admin_index":0,"weight":4.946,"is_urban":false,"turn_weight":1,"duration":4.162,"bearings":[115,121,302],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[123,305],"duration":221.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":210.541,"geometry_index":995,"location":[5.004801,43.833732]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[110,289],"duration":0.138,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.135,"geometry_index":1060,"location":[4.931509,43.878443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,292],"duration":2.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.295,"geometry_index":1061,"location":[4.931446,43.878459]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,296],"duration":0.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.837,"geometry_index":1063,"location":[4.930474,43.878762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.93013,43.878885],"geometry_index":1064,"admin_index":0,"weight":16.551,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.984,"bearings":[116,298,310],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.92482,43.882727],"geometry_index":1074,"admin_index":0,"weight":7.262,"is_urban":false,"turn_weight":1.1,"duration":6.328,"bearings":[144,151,333],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,340],"duration":18.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.953,"geometry_index":1077,"location":[4.924037,43.884025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":16.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.504,"geometry_index":1083,"location":[4.922083,43.889442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,332],"duration":2.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.66,"geometry_index":1090,"location":[4.920665,43.892943]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[152,329,349],"duration":11.246,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.662,"geometry_index":1091,"location":[4.920257,43.893501]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[134,313],"duration":4.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.512,"geometry_index":1098,"location":[4.917281,43.896039]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.915867,43.897017],"geometry_index":1101,"admin_index":0,"weight":7.996,"is_urban":false,"turn_weight":0.5,"duration":7.911,"bearings":[122,136,316],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,330],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.296,"geometry_index":1109,"location":[4.913855,43.898876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":161.588,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":161.58,"geometry_index":1117,"location":[4.912619,43.900988]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.188,"geometry_index":1154,"location":[4.90998,43.948966]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,335],"duration":80.751,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":88.826,"geometry_index":1155,"location":[4.909652,43.949499]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,344],"duration":0.946,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.064,"geometry_index":1165,"location":[4.895608,43.973593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":4.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":5.071,"geometry_index":1166,"location":[4.895502,43.973857]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":1.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.268,"geometry_index":1167,"location":[4.895015,43.975106]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":20.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":23.573,"geometry_index":1168,"location":[4.894895,43.975413]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[158,164,344],"duration":14.794,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":17.005,"geometry_index":1169,"location":[4.892602,43.981306]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":27.431,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":31.546,"geometry_index":1170,"location":[4.890887,43.985599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,347],"duration":1.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.001,"geometry_index":1175,"location":[4.887669,43.993547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,350],"duration":39.868,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":44.851,"geometry_index":1176,"location":[4.887502,43.994055]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,189],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.846,"geometry_index":1185,"location":[4.889328,44.005966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":8.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.994,"geometry_index":1186,"location":[4.889381,44.006187]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,189],"duration":0.185,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.203,"geometry_index":1188,"location":[4.889927,44.00856]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,188],"duration":34.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":37.293,"geometry_index":1189,"location":[4.889938,44.008615]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.175,"geometry_index":1199,"location":[4.889459,44.018993]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[6,172,349],"duration":27.854,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":29.919,"geometry_index":1200,"location":[4.889342,44.019598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.88771,44.027777],"geometry_index":1208,"admin_index":0,"weight":7.895,"is_urban":true,"turn_weight":1,"duration":6.438,"bearings":[160,171,346],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,344],"duration":0.985,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.059,"geometry_index":1211,"location":[4.886932,44.029593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":8.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.6,"geometry_index":1212,"location":[4.88682,44.029868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,342],"duration":0.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.937,"geometry_index":1214,"location":[4.885737,44.032192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":11.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.777,"geometry_index":1215,"location":[4.885625,44.032437]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,349],"duration":2.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.28,"geometry_index":1221,"location":[4.884283,44.035679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,358],"duration":21.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.294,"geometry_index":1223,"location":[4.884142,44.036331]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":1.159,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.188,"geometry_index":1233,"location":[4.886166,44.042592]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,204],"duration":51.397,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.112,"geometry_index":1234,"location":[4.886357,44.042906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":88.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":86.076,"geometry_index":1249,"location":[4.887738,44.059366]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,345],"duration":1.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.717,"geometry_index":1274,"location":[4.8779,44.087043]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,343],"duration":86.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":84.726,"geometry_index":1275,"location":[4.877697,44.087583]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[120,298],"duration":9.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.076,"geometry_index":1304,"location":[4.851905,44.108192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,284],"duration":3.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.375,"geometry_index":1310,"location":[4.847918,44.109356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,282],"duration":0.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.432,"geometry_index":1312,"location":[4.846397,44.109611]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[102,281,298],"duration":13.29,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.951,"geometry_index":1313,"location":[4.846204,44.109641]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.840937,44.110326],"geometry_index":1317,"admin_index":0,"weight":17.45,"is_urban":false,"turn_weight":0.5,"duration":16.969,"bearings":[82,101,280],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":3.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.18,"geometry_index":1320,"location":[4.833977,44.11122]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280,287],"duration":18.45,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.442,"geometry_index":1321,"location":[4.832667,44.111388]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.824972,44.112381],"geometry_index":1325,"admin_index":0,"weight":11.302,"is_urban":false,"turn_weight":1,"duration":10.31,"bearings":[86,100,280],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":0.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.946,"geometry_index":1326,"location":[4.820643,44.112938]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,281],"duration":74.567,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":76.432,"geometry_index":1327,"location":[4.820273,44.112984]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,319],"duration":0.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.96,"geometry_index":1355,"location":[4.795664,44.12599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,318],"duration":2.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.51,"geometry_index":1356,"location":[4.795403,44.126202]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[138,319,327],"duration":25.327,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":25.952,"geometry_index":1357,"location":[4.794731,44.126746]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[69,139,319],"duration":16.192,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":16.185,"geometry_index":1361,"location":[4.787686,44.13248]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.783279,44.136098],"geometry_index":1366,"admin_index":0,"weight":31.949,"is_urban":false,"turn_weight":1,"duration":31.75,"bearings":[134,140,319],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,335],"duration":9.579,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.34,"geometry_index":1380,"location":[4.77705,44.143988]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":10.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.713,"geometry_index":1385,"location":[4.775663,44.146551]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,341],"duration":3.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.96,"geometry_index":1388,"location":[4.774197,44.149527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":15.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.948,"geometry_index":1390,"location":[4.773809,44.150354]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.56,"geometry_index":1395,"location":[4.771728,44.15466]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":45.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":43.936,"geometry_index":1396,"location":[4.77165,44.154819]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332],"duration":12.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.662,"geometry_index":1410,"location":[4.763904,44.166595]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332],"duration":38.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.279,"geometry_index":1411,"location":[4.761531,44.169844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332],"duration":1.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.422,"geometry_index":1423,"location":[4.754344,44.179636]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[152,332,338],"duration":66.856,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":63.507,"geometry_index":1424,"location":[4.754069,44.180009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[124,304],"duration":58.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":53.664,"geometry_index":1463,"location":[4.734049,44.195878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":0.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.154,"geometry_index":1514,"location":[4.723956,44.211952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,348],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.049,"geometry_index":1515,"location":[4.72394,44.212009]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.723714,44.212708],"geometry_index":1517,"admin_index":0,"weight":16.189,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.522,"bearings":[7,166,344],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.720227,44.217768],"geometry_index":1531,"admin_index":0,"weight":6.375,"is_urban":false,"turn_weight":1,"duration":5.833,"bearings":[101,145,323],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,321],"duration":51.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.789,"geometry_index":1535,"location":[4.718822,44.219084]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,338],"duration":0.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.884,"geometry_index":1557,"location":[4.708644,44.2317]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,340],"duration":60.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":57.873,"geometry_index":1558,"location":[4.708506,44.231951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,205],"duration":1.597,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.557,"geometry_index":1587,"location":[4.71003,44.249028]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,206],"duration":20.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.568,"geometry_index":1588,"location":[4.710317,44.249442]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":2.003,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.903,"geometry_index":1592,"location":[4.714146,44.254681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":15.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.476,"geometry_index":1593,"location":[4.714518,44.255186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,208],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.841,"geometry_index":1596,"location":[4.717374,44.259094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,207],"duration":123.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":123.785,"geometry_index":1597,"location":[4.717741,44.259599]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,210],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.231,"geometry_index":1628,"location":[4.743746,44.290486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,211],"duration":2.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":2.58,"geometry_index":1629,"location":[4.743793,44.290543]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.74427,44.291152],"geometry_index":1630,"admin_index":0,"weight":22.477,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.429,"bearings":[26,46,209],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.746664,44.297824],"geometry_index":1648,"admin_index":0,"weight":6.283,"is_urban":false,"turn_weight":0.7,"duration":5.339,"bearings":[2,177,184],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":75.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":75.489,"geometry_index":1651,"location":[4.746754,44.299549]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":3.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.97,"geometry_index":1686,"location":[4.739908,44.323176]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,354],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.297,"geometry_index":1688,"location":[4.739728,44.324151]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[14,174,355],"duration":14.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":13.704,"geometry_index":1689,"location":[4.739712,44.324252]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.739185,44.328269],"geometry_index":1693,"admin_index":1,"weight":6.454,"is_urban":false,"turn_weight":1,"duration":5.601,"bearings":[144,175,355],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":69.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":68.202,"geometry_index":1695,"location":[4.73894,44.330079]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,358],"duration":4.569,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.448,"geometry_index":1712,"location":[4.737829,44.352745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.977,"geometry_index":1714,"location":[4.737735,44.354061]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,356],"duration":99.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":94.562,"geometry_index":1715,"location":[4.737711,44.354348]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":101.313,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":96.228,"geometry_index":1741,"location":[4.731602,44.383048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":1.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.994,"geometry_index":1773,"location":[4.730627,44.412453]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":38.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":35.625,"geometry_index":1774,"location":[4.730714,44.412755]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.167,"geometry_index":1787,"location":[4.735805,44.423263]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":14.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.781,"geometry_index":1788,"location":[4.736033,44.423596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,215],"duration":16.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.829,"geometry_index":1793,"location":[4.739516,44.427738]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,218],"duration":6.591,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.932,"geometry_index":1797,"location":[4.744026,44.432004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,218],"duration":61.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":55.529,"geometry_index":1799,"location":[4.745876,44.433681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,195],"duration":0.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.174,"geometry_index":1820,"location":[4.755426,44.452279]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,194],"duration":2.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.119,"geometry_index":1821,"location":[4.755447,44.452337]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":0.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.623,"geometry_index":1823,"location":[4.755728,44.453078]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.755813,44.453295],"geometry_index":1824,"admin_index":1,"weight":11.716,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.025,"bearings":[17,51,196],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.757355,44.456762],"geometry_index":1829,"admin_index":1,"weight":6.782,"is_urban":false,"turn_weight":1,"duration":6.432,"bearings":[20,186,199],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,201],"duration":7.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.804,"geometry_index":1832,"location":[4.758365,44.458713]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":49.901,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":44.912,"geometry_index":1835,"location":[4.759666,44.460986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":0.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.666,"geometry_index":1855,"location":[4.766724,44.476244]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,184],"duration":2.077,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.921,"geometry_index":1856,"location":[4.766744,44.476474]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.76679,44.477151],"geometry_index":1857,"admin_index":1,"weight":11.756,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.716,"bearings":[3,31,183],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.766933,44.480796],"geometry_index":1861,"admin_index":1,"weight":8.423,"is_urban":false,"turn_weight":0.5,"duration":8.584,"bearings":[1,166,182],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,181],"duration":104.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":97.058,"geometry_index":1863,"location":[4.766998,44.483273]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":1.366,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.263,"geometry_index":1901,"location":[4.777156,44.511918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,222],"duration":2.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.125,"geometry_index":1902,"location":[4.777529,44.512215]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.778178,44.512697],"geometry_index":1903,"admin_index":1,"weight":29.681,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.094,"bearings":[44,69,224],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.787837,44.518803],"geometry_index":1916,"admin_index":1,"weight":7.604,"is_urban":false,"turn_weight":1,"duration":7.158,"bearings":[48,211,229],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":61.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":57.315,"geometry_index":1919,"location":[4.789994,44.52024]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,201],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.956,"geometry_index":1939,"location":[4.803664,44.535482]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,200],"duration":33.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.986,"geometry_index":1940,"location":[4.803806,44.535763]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":3.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.003,"geometry_index":1951,"location":[4.808048,44.545152]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":5.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.894,"geometry_index":1952,"location":[4.808401,44.54602]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,196],"duration":0.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.878,"geometry_index":1953,"location":[4.808974,44.547454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":29.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.383,"geometry_index":1954,"location":[4.809072,44.547708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":94.627,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":89.876,"geometry_index":1966,"location":[4.811339,44.556262]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,342],"duration":1.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.398,"geometry_index":1997,"location":[4.803906,44.583439]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,342],"duration":11.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.879,"geometry_index":1998,"location":[4.803725,44.583837]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,341],"duration":0.993,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.943,"geometry_index":2000,"location":[4.802302,44.586995]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":2.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.998,"geometry_index":2001,"location":[4.802171,44.587269]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":0.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.484,"geometry_index":2002,"location":[4.801901,44.587832]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,341],"duration":2.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.028,"geometry_index":2003,"location":[4.801834,44.58797]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.801561,44.588535],"geometry_index":2004,"admin_index":1,"weight":4.867,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.13,"bearings":[8,161,340],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,340],"duration":7.228,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.866,"geometry_index":2008,"location":[4.800767,44.590096]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.79959,44.592286],"geometry_index":2011,"admin_index":1,"weight":7.545,"is_urban":false,"turn_weight":1,"duration":6.909,"bearings":[139,159,338],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,338],"duration":155.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":143.85,"geometry_index":2014,"location":[4.798549,44.594141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":1.583,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.424,"geometry_index":2063,"location":[4.791896,44.638607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,359],"duration":3.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.405,"geometry_index":2064,"location":[4.791873,44.639066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,180],"duration":0.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.423,"geometry_index":2066,"location":[4.791859,44.64018]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,181],"duration":1.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.354,"geometry_index":2067,"location":[4.791861,44.640317]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.791866,44.640751],"geometry_index":2068,"admin_index":1,"weight":12.921,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.977,"bearings":[1,32,180],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.792245,44.644822],"geometry_index":2074,"admin_index":1,"weight":8.144,"is_urban":false,"turn_weight":1,"duration":7.73,"bearings":[7,166,186],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,189],"duration":0.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.512,"geometry_index":2078,"location":[4.7927,44.647053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":64.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":59.655,"geometry_index":2079,"location":[4.792741,44.647214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":0.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.797,"geometry_index":2097,"location":[4.796968,44.665762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":2.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.619,"geometry_index":2098,"location":[4.796991,44.666013]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.797066,44.666835],"geometry_index":2099,"admin_index":1,"weight":12.918,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.985,"bearings":[3,24,184],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.797417,44.670868],"geometry_index":2101,"admin_index":1,"weight":1.456,"is_urban":false,"turn_weight":0.5,"duration":1.052,"bearings":[3,160,184],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":9.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.526,"geometry_index":2102,"location":[4.797438,44.671146]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":77.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.083,"geometry_index":2105,"location":[4.797654,44.673806]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,344],"duration":0.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.54,"geometry_index":2136,"location":[4.789105,44.69514]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":15.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.975,"geometry_index":2137,"location":[4.789043,44.695293]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,349],"duration":0.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.718,"geometry_index":2144,"location":[4.787698,44.699601]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":15.563,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.396,"geometry_index":2146,"location":[4.787638,44.699825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":3.137,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.895,"geometry_index":2150,"location":[4.786355,44.704788]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":34.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":31.917,"geometry_index":2152,"location":[4.786116,44.705793]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,184],"duration":0.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.41,"geometry_index":2169,"location":[4.78544,44.71695]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,185],"duration":2.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.947,"geometry_index":2170,"location":[4.785457,44.717091]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.785538,44.71777],"geometry_index":2171,"admin_index":1,"weight":27.132,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.34,"bearings":[5,32,185],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.787,44.726114],"geometry_index":2184,"admin_index":1,"weight":7.375,"is_urban":false,"turn_weight":1,"duration":6.9,"bearings":[14,175,193],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,196],"duration":40.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":37.341,"geometry_index":2187,"location":[4.787755,44.728051]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":1.878,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.784,"geometry_index":2206,"location":[4.789485,44.739661]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":20.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.94,"geometry_index":2207,"location":[4.789414,44.740196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,185],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.812,"geometry_index":2216,"location":[4.789285,44.746369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,186],"duration":37.169,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":35.311,"geometry_index":2217,"location":[4.789324,44.746622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.432,"geometry_index":2232,"location":[4.793834,44.756949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":1.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.082,"geometry_index":2233,"location":[4.794051,44.757359]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":1.323,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.257,"geometry_index":2234,"location":[4.794219,44.757672]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.794415,44.758036],"geometry_index":2235,"admin_index":1,"weight":7.673,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.083,"bearings":[21,51,201],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.795593,44.7602],"geometry_index":2238,"admin_index":1,"weight":8.754,"is_urban":false,"turn_weight":1,"duration":8.17,"bearings":[22,182,200],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":5.71,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.425,"geometry_index":2241,"location":[4.796801,44.762397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.952,"geometry_index":2244,"location":[4.797644,44.763936]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":7.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.717,"geometry_index":2245,"location":[4.797796,44.764205]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":6.548,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.057,"geometry_index":2248,"location":[4.798907,44.766151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":58.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":54.134,"geometry_index":2249,"location":[4.799976,44.767887]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":1.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.011,"geometry_index":2271,"location":[4.815857,44.780225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":12.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.102,"geometry_index":2272,"location":[4.816242,44.780354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":0.993,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.943,"geometry_index":2276,"location":[4.821139,44.781675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":25.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.636,"geometry_index":2277,"location":[4.821529,44.781767]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,237],"duration":0.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.446,"geometry_index":2286,"location":[4.831328,44.784851]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":3.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.975,"geometry_index":2287,"location":[4.831485,44.784928]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.832514,44.785444],"geometry_index":2289,"admin_index":1,"weight":14.13,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.513,"bearings":[52,83,234],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.836853,44.788335],"geometry_index":2296,"admin_index":1,"weight":6.76,"is_urban":false,"turn_weight":1,"duration":5.93,"bearings":[40,193,222],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":179.169,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":170.211,"geometry_index":2300,"location":[4.838347,44.789694]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,190],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.71,"geometry_index":2343,"location":[4.863149,44.838248]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":74.437,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.576,"geometry_index":2344,"location":[4.863265,44.838767]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":0.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.471,"geometry_index":2361,"location":[4.866553,44.862709]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":2.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.049,"geometry_index":2362,"location":[4.866524,44.862864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.277,"geometry_index":2364,"location":[4.866408,44.863528]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.866394,44.863614],"geometry_index":2365,"admin_index":1,"weight":19.33,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.351,"bearings":[11,173,351],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.865199,44.868901],"geometry_index":2369,"admin_index":1,"weight":7.908,"is_urban":false,"turn_weight":1,"duration":6.915,"bearings":[156,173,353],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":29.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":29.189,"geometry_index":2372,"location":[4.864949,44.870807]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":0.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.924,"geometry_index":2384,"location":[4.865993,44.878829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,194],"duration":7.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.359,"geometry_index":2385,"location":[4.866082,44.879086]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.707,"geometry_index":2388,"location":[4.866892,44.881078]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":49.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":49.572,"geometry_index":2389,"location":[4.866969,44.881258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,197],"duration":25.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.423,"geometry_index":2400,"location":[4.87301,44.89456]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":2.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.708,"geometry_index":2409,"location":[4.875443,44.901505]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,190],"duration":0.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.218,"geometry_index":2410,"location":[4.875627,44.90226]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.87564,44.902317],"geometry_index":2411,"admin_index":1,"weight":6.079,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.098,"bearings":[9,14,189],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":13.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.721,"geometry_index":2412,"location":[4.875989,44.903902]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.876825,44.907479],"geometry_index":2415,"admin_index":1,"weight":3.929,"is_urban":false,"turn_weight":0.75,"duration":3.12,"bearings":[8,187,189],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":1.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.79,"geometry_index":2416,"location":[4.876984,44.908251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.498,"geometry_index":2417,"location":[4.87707,44.90869]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,188],"duration":18.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.572,"geometry_index":2418,"location":[4.877142,44.909059]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":46.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":50.438,"geometry_index":2425,"location":[4.877509,44.913165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":17.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":18.712,"geometry_index":2439,"location":[4.878343,44.923698]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,210],"duration":3.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":3.961,"geometry_index":2446,"location":[4.880845,44.927121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":6.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":7.343,"geometry_index":2447,"location":[4.881422,44.927813]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":54.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":61.507,"geometry_index":2449,"location":[4.882488,44.929091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":21.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":23.721,"geometry_index":2467,"location":[4.889727,44.940095]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":69.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":74.551,"geometry_index":2474,"location":[4.890655,44.944826]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,343],"duration":1.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.148,"geometry_index":2499,"location":[4.886698,44.960176]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,342],"duration":9.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.553,"geometry_index":2500,"location":[4.886597,44.960417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,336],"duration":10.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.07,"geometry_index":2504,"location":[4.885558,44.962375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":20.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":20.52,"geometry_index":2509,"location":[4.884547,44.964678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":3.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.701,"geometry_index":2519,"location":[4.885362,44.969218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":5.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.345,"geometry_index":2520,"location":[4.885551,44.969856]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.885807,44.97072],"geometry_index":2521,"admin_index":1,"weight":9,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.007,"bearings":[11,42,192],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,183],"duration":1.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.61,"geometry_index":2526,"location":[4.886082,44.972321]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,360],"duration":4.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.089,"geometry_index":2527,"location":[4.886086,44.97263]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.88603,44.973459],"geometry_index":2530,"admin_index":1,"weight":9.737,"is_urban":false,"turn_weight":0.5,"duration":9.494,"bearings":[139,175,354],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,340],"duration":5.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.025,"geometry_index":2535,"location":[4.88536,44.975644]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,340],"duration":10.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.612,"geometry_index":2538,"location":[4.884768,44.976796]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,342],"duration":0.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.665,"geometry_index":2541,"location":[4.883621,44.979049]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,342],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.375,"geometry_index":2542,"location":[4.88354,44.979227]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,345],"duration":1.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.991,"geometry_index":2545,"location":[4.883256,44.979873]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346],"duration":0.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.784,"geometry_index":2546,"location":[4.883151,44.980142]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,346],"duration":35.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.416,"geometry_index":2547,"location":[4.883077,44.980357]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,345],"duration":1.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.995,"geometry_index":2561,"location":[4.881632,44.989844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,344],"duration":28.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.003,"geometry_index":2562,"location":[4.881528,44.990124]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,343],"duration":6.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.3,"geometry_index":2572,"location":[4.877291,44.997699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,349],"duration":2.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.208,"geometry_index":2575,"location":[4.876617,44.999524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":0.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.886,"geometry_index":2576,"location":[4.876442,45.000147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":55.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":52.935,"geometry_index":2577,"location":[4.87637,45.000407]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,356],"duration":1.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.273,"geometry_index":2594,"location":[4.875979,45.016081]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,355],"duration":2.612,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.547,"geometry_index":2595,"location":[4.875939,45.016448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.875854,45.017178],"geometry_index":2597,"admin_index":1,"weight":26.331,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.724,"bearings":[15,175,355],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.875096,45.024974],"geometry_index":2607,"admin_index":1,"weight":9.051,"is_urban":false,"turn_weight":1,"duration":8.482,"bearings":[155,179,360],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,181],"duration":28.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.178,"geometry_index":2610,"location":[4.875121,45.02736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":6.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.902,"geometry_index":2621,"location":[4.876556,45.035353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":16.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.354,"geometry_index":2623,"location":[4.877104,45.037063]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,186],"duration":81.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":77.843,"geometry_index":2628,"location":[4.878258,45.041667]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,334],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.262,"geometry_index":2650,"location":[4.874083,45.064399]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.873681,45.064971],"geometry_index":2651,"admin_index":1,"weight":7.104,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.125,"bearings":[154,331,358],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.872263,45.066707],"geometry_index":2655,"admin_index":1,"weight":1.637,"is_urban":false,"turn_weight":1,"duration":0.656,"bearings":[117,148,327],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,326],"duration":1.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.103,"geometry_index":2656,"location":[4.872125,45.066859]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[146,325],"duration":9.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.113,"geometry_index":2657,"location":[4.871883,45.06711]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,334],"duration":27.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.049,"geometry_index":2662,"location":[4.869964,45.06924]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":3.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.13,"geometry_index":2679,"location":[4.86951,45.07651]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.870027,45.077316],"geometry_index":2681,"admin_index":1,"weight":14.009,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.376,"bearings":[28,56,206],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.873544,45.080544],"geometry_index":2688,"admin_index":1,"weight":11.997,"is_urban":false,"turn_weight":1,"duration":11.595,"bearings":[41,191,222],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,210],"duration":73.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":68.291,"geometry_index":2694,"location":[4.876656,45.083582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":38.991,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.066,"geometry_index":2730,"location":[4.882981,45.106351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,216],"duration":2.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.907,"geometry_index":2742,"location":[4.893098,45.116756]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":4.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.936,"geometry_index":2744,"location":[4.893552,45.117222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,209],"duration":1.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.147,"geometry_index":2747,"location":[4.894394,45.118223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":19.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.982,"geometry_index":2749,"location":[4.894578,45.118471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":9.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.658,"geometry_index":2756,"location":[4.896456,45.122607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":49.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":45.843,"geometry_index":2760,"location":[4.896684,45.124696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,347],"duration":66.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":61.79,"geometry_index":2773,"location":[4.893605,45.135593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.304,"geometry_index":2795,"location":[4.888239,45.149979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.648,"geometry_index":2796,"location":[4.888242,45.150051]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.888288,45.150914],"geometry_index":2797,"admin_index":1,"weight":13.988,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.744,"bearings":[2,23,182],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.888505,45.154985],"geometry_index":2800,"admin_index":1,"weight":11.999,"is_urban":false,"turn_weight":1,"duration":11.598,"bearings":[2,163,182],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":4.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.375,"geometry_index":2804,"location":[4.888679,45.158189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,182],"duration":0.884,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.84,"geometry_index":2805,"location":[4.888751,45.159462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":61.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":58.14,"geometry_index":2806,"location":[4.888767,45.1597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,333],"duration":8.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.949,"geometry_index":2828,"location":[4.886517,45.176341]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,328],"duration":1.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.343,"geometry_index":2833,"location":[4.884842,45.178336]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,329],"duration":17.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.309,"geometry_index":2834,"location":[4.884561,45.178658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,351],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.33,"geometry_index":2843,"location":[4.882308,45.182957]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,350],"duration":92.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":85.618,"geometry_index":2844,"location":[4.882225,45.183332]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,345],"duration":21.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.224,"geometry_index":2887,"location":[4.877022,45.202892]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,315],"duration":11.381,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.224,"geometry_index":2898,"location":[4.873789,45.207051]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,299],"duration":5.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.958,"geometry_index":2904,"location":[4.870942,45.20862]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":1.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.332,"geometry_index":2907,"location":[4.869413,45.209152]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,295],"duration":39.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":36.112,"geometry_index":2908,"location":[4.868993,45.209285]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":86.288,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":79.809,"geometry_index":2927,"location":[4.861232,45.215712]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,340],"duration":26.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.272,"geometry_index":2955,"location":[4.848848,45.232746]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,335],"duration":1.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.93,"geometry_index":2961,"location":[4.845926,45.238268]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,333],"duration":22.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.18,"geometry_index":2962,"location":[4.84576,45.23852]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[135,317],"duration":1.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.302,"geometry_index":2974,"location":[4.839784,45.243189]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,320],"duration":12.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.609,"geometry_index":2975,"location":[4.839414,45.243471]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,336],"duration":41.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":37.975,"geometry_index":2982,"location":[4.836778,45.246322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,187],"duration":56.166,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":51.936,"geometry_index":3000,"location":[4.836099,45.257296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,328],"duration":0.231,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.22,"geometry_index":3024,"location":[4.831613,45.271812]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,328],"duration":3.401,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.231,"geometry_index":3025,"location":[4.831565,45.271866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.830866,45.272654],"geometry_index":3026,"admin_index":1,"weight":27.835,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.319,"bearings":[148,327,348],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.824864,45.279329],"geometry_index":3031,"admin_index":1,"weight":8.93,"is_urban":false,"turn_weight":1,"duration":8.141,"bearings":[144,148,328],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,335],"duration":56.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":54.697,"geometry_index":3036,"location":[4.823273,45.281212]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,344],"duration":1.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.095,"geometry_index":3071,"location":[4.823617,45.295996]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,340],"duration":12.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.381,"geometry_index":3073,"location":[4.823496,45.296289]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,319],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.397,"geometry_index":3083,"location":[4.821139,45.29933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,318],"duration":23.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":23.314,"geometry_index":3084,"location":[4.820781,45.299621]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,328],"duration":24.646,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.022,"geometry_index":3095,"location":[4.814689,45.304494]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":1.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.148,"geometry_index":3111,"location":[4.811786,45.3108]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,359],"duration":18.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.028,"geometry_index":3112,"location":[4.811761,45.311121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":2.94,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.86,"geometry_index":3118,"location":[4.812046,45.316193]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":8.297,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.083,"geometry_index":3120,"location":[4.812105,45.316979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,181],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.29,"geometry_index":3124,"location":[4.812238,45.31923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,182],"duration":3.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.252,"geometry_index":3125,"location":[4.812241,45.319308]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.812262,45.320219],"geometry_index":3127,"admin_index":1,"weight":13.589,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.958,"bearings":[0,24,181],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[162,178,357],"duration":6.294,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":6.129,"geometry_index":3133,"location":[4.81217,45.324008]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,355],"duration":39.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":38.637,"geometry_index":3136,"location":[4.812007,45.326043]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":1.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.599,"geometry_index":3152,"location":[4.80927,45.338739]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":35.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":34.752,"geometry_index":3153,"location":[4.809142,45.339192]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[75,169,349],"duration":58.475,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":58.468,"geometry_index":3159,"location":[4.806493,45.348888]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,193],"duration":9.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.555,"geometry_index":3181,"location":[4.807179,45.365043]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":1.333,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.366,"geometry_index":3183,"location":[4.807975,45.367589]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":5.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.396,"geometry_index":3184,"location":[4.808083,45.367939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,182],"duration":0.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.671,"geometry_index":3189,"location":[4.808363,45.369313]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":5.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.621,"geometry_index":3190,"location":[4.808365,45.369495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,341],"duration":32.501,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.313,"geometry_index":3195,"location":[4.808075,45.370938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":45.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":45.6,"geometry_index":3217,"location":[4.804997,45.378983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,195],"duration":12.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.078,"geometry_index":3245,"location":[4.806566,45.391512]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,205],"duration":35.034,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.4,"geometry_index":3252,"location":[4.808333,45.394806]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":20.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.26,"geometry_index":3263,"location":[4.815822,45.402952]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":3.12,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.88,"geometry_index":3267,"location":[4.820378,45.40775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,214],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.68,"geometry_index":3269,"location":[4.821059,45.408469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,213],"duration":0.876,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.81,"geometry_index":3270,"location":[4.821452,45.408886]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.821643,45.409088],"geometry_index":3271,"admin_index":1,"weight":14.518,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.701,"bearings":[34,63,214],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.825185,45.412795],"geometry_index":3275,"admin_index":1,"weight":7.775,"is_urban":false,"turn_weight":1,"duration":7.346,"bearings":[32,189,214],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,205],"duration":2.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.433,"geometry_index":3280,"location":[4.826627,45.414633]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,201],"duration":32.106,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.681,"geometry_index":3282,"location":[4.827036,45.415334]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,338],"duration":1.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.285,"geometry_index":3306,"location":[4.826625,45.424294]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,340],"duration":20.606,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.062,"geometry_index":3307,"location":[4.826411,45.424662]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,354],"duration":0.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.854,"geometry_index":3318,"location":[4.82399,45.430362]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,356],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.915,"geometry_index":3319,"location":[4.823954,45.43062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.767,"geometry_index":3320,"location":[4.823894,45.431206]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,360],"duration":44.474,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":40.026,"geometry_index":3321,"location":[4.823878,45.431438]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":69.986,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":64.73,"geometry_index":3340,"location":[4.827642,45.44559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,182],"duration":2.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.236,"geometry_index":3364,"location":[4.833359,45.467895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,359],"duration":2.266,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.131,"geometry_index":3365,"location":[4.833383,45.468656]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,359],"duration":0.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.311,"geometry_index":3366,"location":[4.833361,45.469383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,358],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.272,"geometry_index":3367,"location":[4.833358,45.469474]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,357],"duration":1.587,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.508,"geometry_index":3369,"location":[4.833328,45.47027]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":0.364,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.346,"geometry_index":3370,"location":[4.833304,45.470635]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":6.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.647,"geometry_index":3371,"location":[4.833299,45.470715]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":5.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.382,"geometry_index":3373,"location":[4.833193,45.472271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,185],"duration":4.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.373,"geometry_index":3376,"location":[4.833217,45.473127]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,187],"duration":8.085,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.479,"geometry_index":3377,"location":[4.833337,45.473822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,195],"duration":6.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.568,"geometry_index":3379,"location":[4.833743,45.475016]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.8338,45.475927],"geometry_index":3381,"admin_index":1,"weight":17.729,"is_urban":false,"toll_collection":{"name":"Péage de Vienne","type":"toll_booth"},"turn_weight":15,"duration":2.951,"bearings":[180,355],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,354],"duration":14.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.624,"geometry_index":3382,"location":[4.833741,45.476371]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[21,172,352],"duration":5.878,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":5.578,"geometry_index":3384,"location":[4.833393,45.478538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.833364,45.479766],"geometry_index":3387,"admin_index":1,"weight":2.954,"is_urban":false,"turn_weight":1,"duration":2.065,"bearings":[5,153,183],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,185],"duration":5.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.187,"geometry_index":3388,"location":[4.833419,45.480235]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":1.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.653,"geometry_index":3390,"location":[4.833858,45.481439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":5.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.409,"geometry_index":3391,"location":[4.834017,45.481822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":56.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.743,"geometry_index":3393,"location":[4.834563,45.483161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,222],"duration":3.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.734,"geometry_index":3435,"location":[4.83759,45.495558]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,212],"duration":1.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.728,"geometry_index":3438,"location":[4.838406,45.496324]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,205],"duration":0.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.286,"geometry_index":3440,"location":[4.838701,45.496722]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.074,"geometry_index":3441,"location":[4.838741,45.496791]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.838887,45.497042],"geometry_index":3443,"admin_index":1,"weight":4.632,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.772,"bearings":[19,41,202],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,187],"duration":15.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.09,"geometry_index":3448,"location":[4.839254,45.498157]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":5.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.464,"geometry_index":3453,"location":[4.839079,45.501895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,186],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.27,"geometry_index":3458,"location":[4.839096,45.503252]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,198],"duration":1.548,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.51,"geometry_index":3462,"location":[4.839465,45.504274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,204],"duration":1.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.229,"geometry_index":3464,"location":[4.839684,45.504627]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,209],"duration":3.112,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.035,"geometry_index":3466,"location":[4.839894,45.504907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,218],"duration":2.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.27,"geometry_index":3469,"location":[4.84051,45.505516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,225],"duration":16.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.238,"geometry_index":3472,"location":[4.841067,45.505935]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.845535,45.508554],"geometry_index":3487,"admin_index":1,"weight":10.047,"is_urban":false,"turn_weight":0.5,"duration":9.799,"bearings":[35,190,215],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":59.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":59.292,"geometry_index":3492,"location":[4.847487,45.510575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,190],"duration":64.42,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":64.412,"geometry_index":3531,"location":[4.859617,45.521465]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,343],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.073,"geometry_index":3572,"location":[4.857033,45.53688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,344],"duration":1.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.553,"geometry_index":3573,"location":[4.856918,45.537148]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":15.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.134,"geometry_index":3574,"location":[4.856757,45.537531]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,332],"duration":6.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.563,"geometry_index":3579,"location":[4.855048,45.541229]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[133,311],"duration":26.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.966,"geometry_index":3587,"location":[4.853608,45.542553]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,287],"duration":5.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.369,"geometry_index":3616,"location":[4.844643,45.54349]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.842773,45.544005],"geometry_index":3621,"admin_index":1,"weight":7.511,"is_urban":false,"turn_weight":0.5,"duration":7.388,"bearings":[94,114,296],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,301],"duration":11.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.218,"geometry_index":3625,"location":[4.840451,45.544865]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.429,"geometry_index":3632,"location":[4.837001,45.546552]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,311],"duration":77.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":73.223,"geometry_index":3636,"location":[4.835687,45.547318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,332],"duration":18.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.393,"geometry_index":3664,"location":[4.819576,45.562786]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,337],"duration":17.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.28,"geometry_index":3676,"location":[4.816959,45.567114]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,319],"duration":12.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.528,"geometry_index":3688,"location":[4.813773,45.570779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,306],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.398,"geometry_index":3700,"location":[4.810501,45.572902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[124,303],"duration":0.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.591,"geometry_index":3702,"location":[4.809822,45.573235]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[123,303,315],"duration":18.23,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.679,"geometry_index":3703,"location":[4.80965,45.573313]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,328],"duration":0.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.716,"geometry_index":3716,"location":[4.805062,45.576283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[148,328],"duration":6.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.788,"geometry_index":3717,"location":[4.804932,45.576428]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":9.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.47,"geometry_index":3724,"location":[4.803903,45.57783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":3.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.896,"geometry_index":3728,"location":[4.802706,45.579847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,339],"duration":4.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.674,"geometry_index":3729,"location":[4.802235,45.58068]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":6.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.319,"geometry_index":3731,"location":[4.801623,45.581824]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":5.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.292,"geometry_index":3734,"location":[4.800705,45.583631]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[161,341],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":3737,"location":[4.80018,45.584703]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Paris"}],"type":"off ramp","modifier":"right","text":"Strasbourg / Paris"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 46","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 46"}],"type":"off ramp","modifier":"right","text":"A 46"},"distanceAlongGeometry":276641.5},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Paris"}],"type":"off ramp","modifier":"right","text":"Strasbourg / Paris"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 46","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 46"}],"type":"off ramp","modifier":"right","text":"A 46"},"distanceAlongGeometry":1609.344}],"destinations":"Marignane, Avignon, Lyon, A 7","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 551 toward Marignane/Avignon/Lyon.","modifier":"slight left","bearing_after":359,"bearing_before":359,"location":[5.298819,43.398242]},"speedLimitSign":"vienna","name":"","weight_typical":8655.992,"duration_typical":8837.598,"duration":8837.598,"distance":276641.5,"driving_side":"right","weight":8655.992,"mode":"driving","ref":"A 551","geometry":"ceywqAeglbIcbA`Amr@mA{h@{Bmj@gBkj@m@gRZgJj@sTjBgQvCiXtHcLjEmMpHeRbMqVvUaDnDuExGmGpJwCpEwMxXgHvQ}HnVgEnSaF~Y_@|BqEj_@mE`g@sEjo@yJ~nAyFv^gIpb@oH|YgElNeYzz@me@nsAyHzQwPl^gZ~i@i\\pi@_\\ni@sh@dv@cCnDyJrNq`Br|BwhAn}AmBnCuZjc@iZpc@u_AvzAyNbWkwAxhCex@vxA}CvFw]nm@]l@k{@|zAkiAjdBk_@zj@_CjDuArBg@p@sBnCsn@bz@kpBpdCqnAtpAq}Bh~ByQlQ}iGdeGoaFp}Ekz@d}@oaAfbAqgArpAurBbeC}z@biAsgBfyB}RfSmLjOsXh^st@vw@w`Av_A{FxFeeA|_Auh@z`@q]`W}f@z^ec@zXyb@rWcx@zc@a\\lPg`@`Rcg@|TSHgr@vXudAh^co@pRiWbH{]~IgoA`Xq{@~Ngc@dGyXnCksBbTkrBhQkUnBcgCzSomAxKk~@jEwa@d@oeAmE_nBoZwxA}i@akAkm@}mBe_BewBeaByf@kXsc@{Ss[aMwQgHmLsEaw@_Rs_@sHqc@qGiu@gGa`AgBarBbBgdHnj@ooBzOg]pCoLrAg~@xHyv@vGyVvAgDZoMhAg}@bJoxCd^gHz@od@|FqvBr\\_dBb\\uXlGe{@rR}mAl[_lAr`@qkAtb@y}@|_@sz@r`@meAbj@i_A`i@or@rc@y|AdeAqnAv~@k`@b[epAhfAkvAnmAo{AjtAqnBrgBysBdrBmtBpkBg|@xn@cj@hYaZrMg[rLqZ~Icl@fNq^zFm`@lDmm@lCux@{@s\\eBgW_Cgr@}J{aAuXcl@kUwi@kYck@w]kd@s]{nAqfAup@kp@qeBilBs`CqdCuaAo{@eh@q_@e`@sVgz@}f@m_@yQuPyHoEsAyd@aRyc@_Oou@eSyn@oMsa@cGu^aEgI_AgcAkIod@eAid@cAeVf@iUlAuYhA{[`Eu]hJyZdKy\\|Os`@dTco@`c@ug@v^wg@~YaOfJyRfKuf@vVguAdn@maAdc@uNfMqKvGij@b]cd@j\\iTrSgTrVg_@|i@yRr^iQ|^iOv_@adBlbFwc@`eAwh@jfAsZbf@e[tc@m[n^k[b\\gm@jh@ceAlt@w}BjyAgzBlwAkAt@i{BdxA}zAvgAal@ph@{j@~k@ay@beAgw@rkAub@fx@in@zrAuSzh@_Rfg@cL~^iQrl@{Pfo@wMjm@iG~YcChLaKtl@__@~nCgk@hbFeBdPyV~uBcBxNcR~~A{[|_Cg`@dgCo@vDcApFoEpUcJze@gH`_@y@|C}Ovl@yb@pmA}Rrj@}Lh_@s@zCo@pC}F~UaHdYm\\xhBcOdu@uR~`A}YtaD_RbbB{Mv|@}QrfAe{@rzD}XjfAkg@pdBmi@zyA}e@xfA_h@`cAwi@d}@wt@veAkv@t~@qgAngAadAh}@uoFjeEo{A|lAcoA`jAql@vl@iaAlaAi`BrhBmoCh}CwsGvqHkiCjwCgp@hu@qKzK_~@lfAwLtMweC~qCyKdNq_@bc@suIfwJa{@|}@ku@xu@kcAd}@}cAvx@yqAjz@gx@tc@iHtDij@n\\}nAjp@of@jXcg@~SmVxI}m@pUy_Ahe@g_B`x@sRnJ}d@nVwq@`_@sn@n^iq@pb@eq@~d@qdBppAccBzpA}zDvzCwRzPmb@j[mUnQe`CzjB{t@jg@yp@dc@gw@ta@gu@`^}{@z\\m{@jZOF{l@bP_aAtR_fAhOmvAdNieEfY}d@hC}y@vEim@tBcd@p@yrAl@{x@m@wiAiB{l@_AaxAsCygCsFabCcGs{AqIy_AoHuh@kFmaAoLo}AwSqn@}IegFkz@i|@mN_{@uM_c@gEk_@sCsa@}Age@Okb@h@w}@zEoa@dF{V|DoYtF{[nIub@~Mea@|Nwz@n_@mo@jYa@P{qAdx@sa@hV}GbE_m@n\\iq@x\\gn@pZqoA~k@ahAvc@eiAh`@apBxj@iz@pRev@`Pwz@|O}p@nJsNlBgk@jH_s@hHem@lFkj@hD_p@jDiu@pBqz@fBerBpAs`CNsvAbD_~@fBeeAxEwp@~D__A~Ia~@nMmhArRqObDog@vHyxA`^{UnFwDz@sRjEkVrFyy@zQin@dNaYfG}gA~VgzChq@cLrCuoBxc@yw@bScq@pRuu@nV}q@|UixA~k@stAdn@w`Anl@sr@vc@wo@bb@wv@lh@co@xe@}g@pb@caAbu@ai@xd@svCvoCoaBxcBkzAb~AyiBjuB_}AtpBqxAdlBudAdvAwLrPqkAhcBaiA~bBwpFjnIkW`a@oVn_@k}@rrAwb@rl@cd@tl@_l@lu@cu@b{@}{@j`AacChbCooAtkAmUzSs[zZmo@jl@mq@vm@sk@~e@mm@fc@ia@dWg`@`Sch@fUu_@|Nid@vMgo@lNks@vJqq@tFsq@pBey@b@_mB_AyhA`Aa_AnCiTnBmo@bJy}@nNk|@rTez@`WwjAnd@{aAbd@{qBliAoq@zc@qv@~h@}_Afr@mw@xl@obBlrAcz@zo@mpApcAchBhvAm_Azu@}q@zk@qo@xl@_T`TgWhXs^na@m^fd@g^dg@a]nh@e`@lr@oEbIi\\bq@y\\vw@wFhOeO|`@eMj_@cPnh@iOrj@cKhb@yMrk@gSlbAof@ppCcChN}Nry@_Ibc@wK|k@{Ldk@sMpj@qLjd@gOxi@wZtcAqQpi@gRbj@yXfv@q_@p`Aid@heAue@jbAen@tmAeo@lhA{o@hdA}k@|y@yv@fdAys@f{@yn@zq@yf@pe@gp@ti@ko@fd@it@tc@w~@le@ikBp{@adAbf@q_Afg@}g@d[gj@pa@uR|Ooe@hc@ce@bg@y`@zf@gb@`k@i[pd@ucBtoCui@f}@ok@|}@{g@zt@cj@`t@so@lu@en@xo@odBf_BaxAvqAk}A~`Bud@nj@}]zf@oR|Xab@bt@yt@rzA}g@~oA}_@nhAwcAneDs{BltHi~Bb{Hub@xxAua@~{A}g@~uBkb@roBcTtfAi[niB_QbfAoMl~@oJ~t@_MrdAuK|cAqHnv@}Gfw@yJ`pA_LrsA}H`w@yH`n@{DrW_E|U_@|BoHd_@mHp[uFnTaI~XaK`[uUrm@oZno@a]lk@}^~g@gZn\\c[~YeYjUgWjQeIfFqd@xVk`@zPoh@rSwp@lUqx@~Ugo@|Ouw@`PysA`U_~@`Oon@hNe\\zJqXxKwUdKuUlMcG|D{a@nXqOxLcTnRqWjXoVtZiWv\\aa@vo@oMbTgMzSg_@xn@sMtRyHdLkNzR}NbR}IpKuLxMaLpKeU`TeNpKmO~KwNjJyR~KkNnH_QlHeM|EuOtFwNhE{UfGwQtD}PpCgSrB}SlBwPj@}Uh@kREuRe@qNu@oR{AwPgBoYgEyb@uGokAyQ{bAuOy{@_NsVcDwmFiz@kd@aGe`@_D}^w@g`@Zq}@fEicEzUanNtx@c~@hFutO||@c}@xEalNzv@i^rCg]bFu\\|H{YjIsYbKs^`OkPtIi`@nSa_FzoCgqH~gEmhOpsI]Rip@j^kVrJsRtGag@lOg~DxhAq`Cvo@oOrEamAl]eRnFioJhnCikGdjBieH~uBm}@vWkr@nUakAh]qKpCw^lIiYtEs^`Ege@pB}b@Ac`@gBq\\oCsb@}Eu}I{mAibDyc@yLiBgkBwXag@kGmBU}JoAgrCq`@gn@yD{\\K{[N{]|Bkj@dEcpE|i@opA~MqQrByd@hFuKnBee@tEqm@hG{}@lKwe@jEetBfVglBnTutA|R{^dJef@xOmi@rSeP~Ea_AzZepAxf@iN~E}{@x\\}[jKoc@hOu]`KeUjFkV|DuOnCaWhCuGNse@`Aad@Yo^cCwa@wEc^_H{`@wKwYcJqw@s]k{A{t@sR}J}g@{U{UaLmj@uToe@gPq`@qKsd@sKa\\oFw\\gEec@{B_f@oBex@YmaA`BqwH~Pq|C`HasApD}j@rAcbA|EwUdBm^lEac@pFi`@vIcn@~O{a@vNw_@dOisA|m@st@z[if@zRcTfH_]zKchA`[{sA~^guAx]aiG|aB{`E~eAcpA|\\e|Ax^{[`H_a@nIm_A|SgqCpn@w`@tKys@tUA?qC~@eVfJkc@dRsl@zZqr@jd@qb@fZ}h@|a@o`A|w@kkAneAoh@jh@c^d^_`AnfAwYz^uZpb@gZve@gW~c@g\\bp@_Sd`@ci@vfAma@nx@mp@voAa\\zk@yzH~iN_Wtj@o\\hx@yNp`@oT~r@{Jv]}Qtv@aEbSwJpf@uMvy@mHhk@yF~i@cG`s@{@`K_HnaAoHflAgKt~AaKvxAoVjvDaGx}@iWx{DoIzpAyIhtAgHreAiZ~sEuM~nBya@pmG{AbVcAvMcJvwAgJp{AsHlcAoJ|cAoJdt@gMhy@}N~t@eQdu@cUby@uOff@k[py@_]nv@eO~YgN~Vep@beA{_@fi@w`@jg@u`@|g@}c@|l@eg@lp@_c@fk@sl@`w@}Ud[wj@bv@i\\xa@}K~Nq`D~eEgLhO_a@~h@gq@p|@acDvhE}mBhgCc`@tg@}Wt]gl@zv@}o@f{@uc@jl@ieAfrA{]hd@eV`YmLdMgMlMmN~MqOzN{^lZyWhRyXxQmf@~Y{aAdl@odC~xAg^~SyXtPq^fS}W~Ms\\vNk`@dOug@nRyy@lZo{@l]uaAv`@sj@pSaGtBscCf_Aw[xL}XbK__@rNyp@fW}HzCc`Cx|@am@~UeStI}NhHkR~JeOpIq]hT}_@tUseAbt@iiAbu@gmAhx@cpArz@az@`j@g}@nl@ajEhsCszAzbAgNvIca@tXkt@lf@w|ArcAmoAzy@oI|Fko@fb@if@z[ye@h[edBvhAgDxBiVdPgeApr@wx@pj@s]bWuYtTyZdViYpU_VnSkUhSad@za@e^p]eSnSqQbRyQtRyX|Zia@be@y`@`f@g\\nb@u_@dg@u@`A}\\nf@gUp\\sZbe@{Yne@qZpg@aZhh@cTh`@mSz_@wMnW_MpV{S|b@yInRwInRgJpSqIrRqMvZ_\\xw@}Z|w@mf@lqAyOfb@iV|o@_Xvq@mXjp@oQfa@mYfm@aXdh@cQnZ{Ub`@gOvTmP|TyW`\\qJvK}InJmSdSeSnQ}P|MyKbIsNzJcOjJsPfJcPtIgM`GaLxE_VfJiV|HgLdDgNjDiU`FsKjBqLjBgMbB}LrAmMfAoMt@cWbAsSTeSPsb@Qw`@a@ex@_AgXUgVReUZkQp@_Ox@eTtAeXlC}U`D}N~BiJdBC@qB^_V`FuS`FiZbJsWtIMDi\\vMa^zOyOlI{QhKaTpM_U`OoXbSgXdTyVlTiR`Q{]b]_KlKuStT_Y|ZqVvX}\\da@_\\|_@}TjXsu@r}@mu@z{@s`@pb@q]f^g`@x^_ShQyZfW_]zWyb@tZ_]zTk^pT{\\hR_a@vSuo@f[w[tNm`@dQayAzn@qH`Dwr@xZuNrGe_@lOsFnBgc@|O}`@zLq_@zJia@|Hoc@lGqj@hF}[zAk\\p@of@?}]y@}a@sBeb@aDkb@aEurAqNy}@mJk^uDqO_BcbAkKqj@sGwc@uG_o@qLu]}Iy]qK_f@gQka@uQo^eR{R{K{X}Pag@u[uz@{j@wvBawA}jBumAq^gVozB_yAa}@el@uy@ij@q^}Uev@eg@mk@i_@aXiQ}sAm}@oxBsxAsfBujAeoCohBgrCyjBkqBurA}]uUc]oU}w@gi@ys@mg@um@kc@{_BopAuo@cj@qn@kk@}l@ik@}|@i|@}oAypAelAqmAsh@wi@yE_Fa`@q`@o~@y_Ao|@s}@}wAgzAgx@{v@of@ob@}SaPCAqB}Aae@y\\mU_NyU_Nga@mSo_@mP}[}LoUyHaWuHuQ{EQEgS{EiRwDiSmDkVqDeVwC_PuAmPyAm]qB}e@yBi\\q@i^y@en@gAmPYgUq@{eAuBk~@kBq]gAk|@cBuw@iBo\\k@u\\Mq^h@i^x@q]`Ba]`Ds]hEkh@dJ{d@|Kog@~O{Br@cYpKgY~Lih@hVedBl|@qgB|~@_lAfl@}fAne@{e@pR}^|Mqn@dSoc@hMki@bNsh@|Kua@|Hak@rI_j@|GeG|@cRlCyh@xEiE^{`@hCo{@bGclBtMqn@xDg|@dG{r@bFgbAbHarCdQ_lBzIob@bBseA~DsdAxCa@@slBvDqxBpCsxAv@i_CJupCS}|B@mwA`@}KJar@p@ij@jAeNZabA~C}Pn@cfApFcfA|GmnApKmgAjLk~@dLaiAjPaV`E{e@bIcfA~RkbAlRqcAbV}sAbZotB|c@wyA`Zw[|F}b@~G}}@nMyo@zH{t@rHcu@dHy_AzHk`AfI{`CrRooB`PmiBlOqc@pDodBlNsyB|Qc|CbVct@rGwwAhLqeCnS{qChUulAjI}n@zD}m@~Cs_@`Bqg@zAsd@dAmd@x@}b@Xka@Nio@Wki@m@}e@y@}s@uBed@gBue@aC{XiB_h@uD}z@qHkc@qEie@uFcs@yJyp@aKiZeFq\\gGkVuE{QmDcy@gQ}aAkVo~@eWyg@yOsj@wQol@oSmi@qSg`Au`@{d@ySuk@uXak@qY{w@sc@an@k_@ySgMu_Aao@e]wVwh@{a@ygAy}@mp@eo@siAshA{r@}t@{mAiuAg|@_cAui@_o@c}@sbAcfAogA_gAg`AibAyv@oUcPaP}KgMwIab@sW}aAaj@}y@ca@kdAub@ee@qPed@sNw{@aVcaA}Ty`A{RaaAcRg{AeZuwAyZgqAiZ{a@gKsb@gLsBi@a[mIgQcFqLiDiy@iWs\\uK_a@eNak@kSuq@yVgq@sXmf@iSg_@ePwbAsd@ge@aUac@sToGcDotA}r@ahBecAQKseBsbA}`Bw|@ckAmi@sh@_Tuu@oWem@{Qyk@eO{ZeHw~@}Qkk@oI}\\sE}ZcDqa@yDu\\qBeY{AuDOkMg@ii@{AgIUyp@mAeuAsAqpAeB_`Aq@yxAoAwt@iAyw@cAeeE_Fu|AuCut@}@ip@Lwq@c@g`AaAejAyB}v@_Cyy@{E_i@_Eel@gGoo@cJul@mLcp@sMai@wLmd@mMqh@sPqg@iQi`@qOs[yMyb@wRsVyL{r@m_@st@}c@gw@_j@aYqTqXwSm^}Ym`@a]yX}Wgn@ao@g[}\\u]}a@aSwVg]md@{CcEqQiVc]qg@}PmW_Sq[qRk[_Um`@{Wyd@u[uk@m]wo@ym@wkAg`@ov@_Xmh@a}@geB_]eo@_To`@yX_g@uX}e@ie@{v@cSg[yXqb@y]_h@aa@}j@{a@yj@cw@oaAqv@{|@ajAkmAciAyfAqcAg}@kkAk}@uj@}`@kd@cZsl@}^oj@q\\ul@o]}_@gSe`@cSgr@c\\{bAac@qP{GkUcJeQqH{OkGqq@sWkt@aXqt@_XeuBkt@u|@oZwy@eXwpAaa@or@gTgu@aUsxAyb@{NcEumAa]qlAi[cp@{Oyl@wMok@sKgk@}Ian@wH{f@mE}_@wCqWwAwb@iBoMc@ef@{@cl@Yye@B{d@j@a_AfB{aAfDm_AzEgl@hDqt@rFk|@xHak@tFcc@tEch@tGoo@~Ico@vJuj@dJuy@jOqp@zMsj@xLek@xM}_@jJs\\tIqp@~Qop@lR}h@hPap@fTsy@dYoz@rYijBno@wkB`p@ohCh|@{WhJuwAhg@ukBro@cPdGeb@zOsGdCib@`P{g@jSga@nPIDcUpJk`@jP}k@bWqy@`_@gr@n[s_@lQa_@bQk{@ha@uhAhg@}t@pZio@nVcp@lUmq@lTmo@bRol@`Pqh@|Lun@jNqi@tKmz@pO{o@|Jss@~J}i@~GcNzAec@vEg`@zDib@pDuf@vDgk@xDsh@zCks@|Cok@tBud@tAol@fAor@~@wt@b@i|@Ru}@Gwo@Oor@Wul@Ogd@Sql@E_fAA_n@Jmm@Rch@Ti[Ryr@z@qdAfAe`AxAmz@bBawBlFasAjEiwC|L_nCvMyuCvJu[l@qe@Va^BqGCcZIcq@y@sd@aA_p@eCwj@wCoc@}Cmd@}Du^mDy\\sD_e@_G}f@kHaIqAoa@yG{b@}Hei@wK_z@qR}f@kLetBgf@_sBec@}sAkWwrAoTc{@_Mkb@iFa`@iEwaAoJwqAyJklAmHajA}Fm}@uD}s@mCuNm@kr@uCkgBuGurCgLkPi@gh@oBmm@{BqmAcEis@_Dc`@sAk]cAai@{@_b@]oc@Vii@vAm_@hB}a@~Cs`@zDcj@zHsf@zIyf@|Kan@zPko@dTap@xWqm@hY}d@jWy`@rUm_@zUgoAdz@epAzz@q_Azk@mt@hb@wi@|Xag@bVg_@pPcb@`Qw_@~N_k@dSoc@hNqHzB{v@bTef@|K{a@hJ{`@|H{j@bKo_@`Ha\\pFaDh@}GlAw|@`OubBbYiaBhXmq@tKs_@zFe]`FkT~Cm|@jKs_ApJeu@|F{g@bDiZbBqYhAap@tBuf@z@gs@r@w}@Eyp@m@ko@sAue@uAqAEyXeA}^aByGa@mi@aDad@iCmb@mCaq@uEqn@oE}{@iG{g@yD{g@wDm\\{Cyh@yFmp@uIg_@_HuTgEaa@}Iq`@aKs]_K{w@cV{k@aRw_@sL{s@eTu{@oT}m@iMym@aKed@{Fsb@yDuZwBiIg@k_@aB}[_Asb@k@s]@e]Ze^r@c\\jAqi@pCgdAfHm`@lCqkAzGyaAtE{d@|@kg@l@ya@Ga_@[ob@sAcXqAuc@qCyNmA_f@kF{d@oGcy@}Nai@}Lwb@kLud@gNmi@{Q}w@e[mg@aTqrBu}@kM{FqWeLaq@qZuf@iU{IwDsXqLqRoIwUgKiu@_]as@q[{[aNsUwKcn@{XqbA{c@sc@{Ro^cPa[uNyOoHoq@o[un@aZmV{LokByaAme@yW_B_AaJgF}aAko@{|@an@yu@ol@k{@gu@qu@}t@i\\y]mb@yf@of@wn@ye@wq@ea@mo@_h@s}@gVce@_Yel@gSed@s_@y_A{Twm@}`@umAsVk|@gSax@aGaWuLaj@_Qu|@kUksAo[}sBwDkWoZ_qBk[wqBuXm{A_Mam@}Muk@kUs{@eNge@qTar@cVqq@yCyHmLiZyQ_d@yXam@_[wm@yTya@_W}b@ia@yn@cVa]sVw\\mN_QwJsLaYw[u^_`@uTqTk[mYgv@ip@iu@mm@ov@sm@}v@qn@qXsTss@ok@}i@oc@cj@gc@}qAseAcs@ok@sz@kq@yx@gp@sn@og@wg@ka@qd@s^_}@ar@g`Air@{z@ik@yk@a^ul@u]obAwh@m|@qb@a~@q`@sdAma@owBot@}gDueAyfCat@uy@oSua@iJ{t@iOsfAsT}lAwPajCaa@s`Fgv@gpCwb@sqByZusBg[qh@eIwnAeRot@mKoj@sIm_@gFkjBcWohFur@osDuf@m`Cq[_yAuRcdCm[woAgNgi@qEyoAuHqcAaDyeA}@cdAh@a{@bCsUx@mk@`Due@nDik@jFuHx@yT`CuRdBkDZy_BnUyoB|YinArPoh@rFcYnCqk@fEmo@zCa]hAyb@n@ij@Lmj@c@e^y@gl@cCmd@wC_s@oGqt@iJsw@oMmk@kLg[_IaOqDui@_Oox@yViWyIgJyC{d@qO_l@sSaeA{^amAsb@m}DquAwhCq}@ku@qW}c@}OmqBks@uh@}QwW}IykAsb@sfAi\\qj@uO}p@}Okd@eK}f@oJ_gAcRoa@uGiG_Aen@oJqBYabByTg_@cFam@iJgpCy`@go@}HmZkDaVoCqDc@_k@kF}u@mFkt@}Cg_@s@{c@Us\\FwXFgr@fAmcBnG_fB`Iqq@xBoo@Vg_@{@oZaBmq@_Hce@uHys@kQ_e@yNkc@_QiB}@sq@u\\cPeJm\\}SsYwSqh@m`@ge@y^iIqGgj@ac@}c@{]}i@wb@_fAcz@qw@}m@qr@gk@qXmXcZ{]uo@oy@aYq[i[gZ}ZsVq^aVoa@oTwc@{Q{[mK}VuGq_@gGmb@mD}l@sCkv@_Da[qAqq@aD{b@mB{b@cDwm@gJc}@iRmc@gJcKwB_ScDuYuCa[y@w\\Re\\pBi\\fFoYdH}XzJoYzMka@xUqb@bUec@rOuf@lMo^|Fmc@jEstA`NctA`Ngv@dI}d@hHqa@~Hic@`Ksb@tJanAfYai@jNaNhEiVrI{b@xPoa@zQu[rP}e@zWqWbLu_@lLu_@lHaNhAyOrAYBg_@bAq[a@c^iBy`@oF}TqE{d@iKei@yLke@gJ{f@yJ_u@_OcOiCkWqDwQiBcSiAuSu@iRGuOD{O^gQhAsZdCc]fFyVnFuVzGi^`MeYdLi]rNoNdG{]fOecAbb@wh@hScJ`DuQnGoKfDeH~ByOpEmLrC_NdDms@bNst@~Kgo@~F_z@|D}i@v@ahBbAev@lBo\\dBe_@dDa^lEw_@vG_SxE}NjDoPnEg[tJe]jMs\\zNqs@h^ouAhw@g{@ne@an@pZkk@pVqj@nTar@bW{WpI_c@zLet@tP}e@|IgOnCmb@~Gsn@bI{m@nGoaAjGufAvCsl@^op@_@wiAcBuhAwBqrAiC}rAuBqbAeBcf@{@yo@y@yt@Bms@`Aue@fB}UnAkKj@g`@|Bor@zDqxA~HmlArGka@~Bk]jBim@dDyk@~Bik@dBsSl@}n@t@og@Nqf@CadA}@eb@qAwa@wA_f@yBwg@oC{iA{Iiy@sIqo@{Hgr@eKer@eL_i@yJuVoFgQwDswAo[oDw@a|A{\\ioA{Se_A{Kuk@wE{m@gD_~@iCmd@c@md@H{a@f@ik@`BowAxHggCnNshAvGydBlJesBrLcrBbL{x@vEe|@xIe~@nNij@xKmt@vQk_AxYg|@`]qi@zVoc@`Ush@hZwb@bXwTvOmV`Qid@`^_YvUoHrGuNbNmr@`q@}R~Q}RhQkZdUmMjI_TdM_T~KmLrE_WxJwZnJ{ZdHg\\pFi[bD{[fBc\\^_`@m@ma@qCqb@aGu_@eIi^qK{RgH{OyGe[{OeUmNgVqPoa@q]{[a\\uXg\\ee@_n@o[ad@wUi\\y]oe@kZ__@u_@}a@wa@ia@c]qYca@e[w\\iUcl@k]e_@iRo`@_Qk_@yNc`@qL}g@gNif@sJia@kGUE_c@sEoa@yDsp@iEy`@{@wb@Vgb@vAu_@vDc`@tFid@hJ}}@dTwSnEmg@~Iqj@pF}b@bBi^V{^k@ia@iCgd@yE}b@{Hcd@gL}^}Lw^qOoZmOmn@{_@gk@wa@krDasC_y@{n@auBo`Bg{@{p@sy@_p@os@gn@sq@qq@yl@uq@y]}b@st@c_Ag_AikAyd@ui@}RoSeKoK}O{N{EoEsXeUa]}V{FiEsFeDc^kTag@mWmb@sQcf@}Pub@uLml@eMs^cFyUeD{o@qEas@wAyEFqi@t@}_@jBg^|Ckm@hImk@hLg_AzSuo@bOul@xMg_Bz^yhAbWeiApWa~@tSqPvDwp@jOwaAxTio@pO_n@hPia@fM{b@lO_`@zO{`@bRkn@v\\mt@jb@ut@`a@il@vXi_@|Nmb@xMaWvGc]hH{d@xHaf@lFyl@nD_t@|@uVUa\\c@oCE}t@{AsqAiCgzA_DqoAgCya@aAca@}@ceAuBe|@eBqnAoC{M_@mnByDyoBgE}oBgEymB{D{i@}@yk@c@q]A_WZyh@bBi\\~Bu[tCwWvCgYdE}\\pGi[~Gah@`Ng`@zLgZ|K_i@~Tob@`Te^fSo]pTcN|IySfOe\\|Vub@d^{VjUcSpPqWxSgXnS_WvPuSbMuU~L_ZfMca@lMme@lK}r@nKmVdDg]pFwXfGad@bN_[dM}UjLeVlNyQvLse@b_@_x@tt@_l@pi@_t@`q@wV~SwYlTaf@dZyZvNuY|KaZ`JuUpFsUlEwYdEwXvBcNj@gP`@kX@wY{@a]gCkZuDaSuDwWkGua@aMoj@uRqUsH{OsEsb@wIy\\oEg`@qC_Zg@gSGwUd@{[jBsWnCqV|DyVlFqXpHwZtKuXzL{\\`QmTfNsSbOc[lWw\\l]mSxUgO~RmMxQyNjUyObXqQj_@}Qhc@{Nl`@aKh[gK~^aJd_@}Hj^iGfYoP~s@mSzu@sKj\\aMf\\sX|n@aWte@gUr^mUv[w`@|c@aYxXeVtRSN}MtJuPtKaWhOsUnKm\\tMyUxHoZ|IeRhFmWlH_cAtX}|@jV}`AfZgy@~Ymm@tW{o@`[ee@bWoR`LeZ`Qul@x_@qOjKwQnMiZ~Tci@ld@{a@bb@uc@ph@gc@fk@wk@lx@il@lv@mf@vi@sYfY__@~Z}_@lYsc@rY{a@fU{b@tSmjCbhAcfAtc@eb@zP{b@xQw`@hQw\\xPwNjImWxPsZjUmWvUe[j\\}`@ph@wXzb@wYxi@oJxQuQb_@o\\np@{Q~[cUn^sPbVcY~]cb@zd@cTtS}YpVmS~OqU`P{XpPoWrNo_@xPib@zOk]bKwc@`Ksd@lHc`@zD{ZhB}f@lAse@_@i_@wAe_@eC}`@iDgd@wD_p@_Gw}A_Ni\\qCog@qE}eBeO}jAkH{]_AwYc@ce@D}a@`Aic@|Bcm@fFo`@vE_e@|Hwj@dMsc@|Lei@bQwc@nQmb@pRgZnO_ZtPo`@nVeb@jZyg@z`@yWlTcTrQqWtUwM|KkB~Agp@tj@qd@da@sc@|_@uhAdaAylBnaBo~ChnCcXtUeb@b^{UbReQ`MiOlKg[vQ{\\nOeX`KmOvE_NjDae@jJ{a@bF_XzAsYf@oRByTi@yUiAsTsBuWoDiTgEy]iI{d@oLqj@{Nk`@wJwp@{Puq@aQk]cIaSyDyPcCmTyByWsAuTc@sRGcRNuOj@wV`BwYfDyLvB_Z~F}VrGyEvAoJxCkTxIwT`KwSzKmTpM{OvKeRlN{R|PePrOwMvN{OnQeQjUmRfX{RbZc{@zpAgz@dpAmXfa@oUl[wQjUgQfS}U`WwTlTgOnMgFlEgVxRuZdUgNtIiVtNe\\fQq`@tQwb@fPk_@lLc]lIk[tG{SjD{T|CqUxBmVvBgR~@aSp@kY\\cg@Yq~@cCodAiDcbA_Diq@oBcOc@_`@qAyQo@mt@uBsi@gAyX[{CEwd@_@eRIqWEmRGeX?kZJe~@z@alA|Biz@dCkc@bBo^zAwf@nCmn@hDqx@bG{|@zHgc@fE}}@vJyk@lHsk@vHc`@vFqr@jKiu@pMcbAdQ{kB~\\g@Je`AfQyOpCi[~Feh@zIcsBr^{|Bpa@i{B|`@{cDfl@s`@hHssCbh@i|@|Nye@dGua@xD{d@hCeg@`BuVVaWGak@{@uYqA_\\kByt@kHktAkOg`AuKuw@_Jqp@iIu]kFiZ_Faa@mHyc@cJwd@yJkVoFacAiTazAm[{TwEgTqEyOuC{NeBaQgA{LYkJCeT`@gPlAiOlBwNfCuR|EoYtKyVrLuLtHgP|LsQzOsp@pr@iXzWsPlNaQbLkPvI{P~HaUlH_NhD_OjCwTbC{PbAyMLwPI_RcA_XoCac@uFwr@kJc]qEir@gJkv@qK_`@{Eab@qE}TeBo]kB{Ts@iWk@a\\Mo`@Vq]`AqXnA}]|BkVp@}QPqRAoWUgVq@sWmAuPyAcJm@sYqCoUyCwa@wG{YcGod@gLsQcFsg@mOo[gLuZ{L_`@gQmVcMsY}O_YqPy[gTqT}Oub@}\\wg@wd@{xActA}}@uz@g\\uZay@cv@gy@yu@ihAudAsIaIyuBsoB{uB_pB{`@e_@i[}YoOwNm[yYaYqWsK}JssAioAgj@ah@}h@qf@{|@m{@}W{TmWyS_NaKyTkOu[_RiXmNoQcIcP}GkRiHwS{Gc[yIka@mIi\\kF}UkCyV{ByZyAeRc@gRK_\\LoYdAu[dCcTvBwQlCkTfE}U`GqTvG_P`FaTtHqP|GiQ~Haa@fS_VjLwm@xWsl@~Vmi@zTke@vSy^vMuXnIuUhGu\\dHyThE}a@zFmO|AcOfAsc@vBoM^s[FsVKuYc@oWcA{a@{C}TgC{QaC}UoEma@uIid@mJod@}Jw{Bie@kvBud@gsAcYop@oNgq@}Ngt@mOsj@gLeo@{Mis@}OcrBwb@{gDcs@_pDgv@m}A}\\mr@cOmn@yM_t@qOgWsFqy@wPmBa@}cAyRqk@oJuh@wHyp@sI_m@}Gq^iD}\\uC_r@{Eam@kDmu@yDsPo@cj@cAmVa@qn@o@ml@j@uDDe[d@qTTyUn@_DH}[~@icArCoTh@iFLuWgBmj@oFok@cMc]gJa\\sB{Z@wZtBciBxNi\\|DkQvBqMd@yj@cBi\\mBaf@kKec@aN}V}H}eAk\\wKwCgD}@yMwC}ImAiIaAkL}@sLk@wQ?oMTwLn@}KpAeLfBmOfDcRzGmR|Jax@da@uf@zVc]zOaUzHiSpF_N`CeSpCyPf@qM?kJg@iCOcSoC_O}CwLkD}PgGuOkHyNyIaPaMmRuPmTmTsPcS_PyS}RsX}Xi`@kj@cv@wTk\\aAsA}RyXiQgUkNaOeMuK}KkI}JaGiCoAmFiCgGyCyMmFkLiDeNoC}MuBkJ_AqRiAwPIa\\^{{@xCkiBvFwUt@}OXiK@kQm@mMeAyK}AwLyBmQiF{Q_HyNmHgEgCuEsCyIoG}NmMaLwLaHiI}GyI}FsIiHkLwHeO}F}LeJuUaFmNkHaTwGcSkLs\\aKkWqHqP_IwO_LwRaLuP}LwPiK}LiKkKyZuZwTwSg^c]yCqCug@{e@gVeVaM{MwLuNoJ_MmLmQaMkTkIkPmKuVgHuQgIsV{Nqf@{Osj@wQ{o@ug@khBeJq[aJyZyGiSoK{XgLiWsMgW_M}R_L_PaOwQiPyPuRoPeWoQo\\{PqP{G{T{GaQ{DoQwCkP_Bg_@sB}]oAs[oAuUoAgTiB_RsCwAY_O{C{PgEiRyGkWyJkq@yWao@aWm^aNgWaJaViH}P}EgRyDuTmDiQyBmRcB{Pi@sQa@gSCsUZuUhAsPvAgWvDySnDiUzFuRxFsQhGyOzGyRbJiNlHkPrJqT`NmTpP{c@j_@kEnDke@`a@eU`RwQdNqShNuP|J{YfOw_@nO}t@bWwOdF}V`IwvDhoAkLnE{KrEkIbEwIfFoIzFgHlFuIfHeHhHiKlL}NhS}FjJ}E~I{F|K}F|MmG~PyFxQkE`QeCtLeCjM_DxSgBbP_BpQo@bK}@nSc@xRKnOBjQTlQv@bYnD~t@rBrj@b@zLXtMXtR?~QQfLQ`M}@vUu@xLeAjNaB~OkDnW{DdVaFbXuEdTeFzUeN~k@yMlg@wMfe@_HlTkOde@oFlOgIlUcNz^cQjb@cNz\\}Ulh@wF`M_Pz\\uRp_@mBrDuNpXoVzb@aY~e@eQtXmQhX}Z`d@wYja@}Y`a@gUpZuWl\\k]vb@a]|`@_Yd\\w[~]cd@|e@q[`\\i\\j\\sx@tw@od@~b@gq@hn@_y@jt@qd@|`@ee@`a@k_@l[qcAby@sy@jo@_o@le@mf@~]uQlM_SvMgc@rXyWrOaYfOqOrHuObHeZtLk\\hMmTtI_ThJmKbFqVdMoShLcS`MuShN{OnLsOxLoWrUgPtOwR`SqNlOoPbScO~QmDlEkLdPmKnOmIlM}H|L_N`U}GvLcG`LaLdToMfXwIvRuI|SuIhTcIbT{CvIgRhi@{Orc@iLhYkNlZkOlYcNrU{H|L_IpLaLpOgPlSuOfQ_JhJmJ|IaHbGqJfIkL|IgM~IsJpGaMhH{JtF{IpEsY~Ny[lP_b@rSsb@vSas@l\\qh@~U}\\fN}hAtd@GBwe@pR{ClAkb@hPwY`LeQzG"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 9 miles.","announcement":"Continue for 9 miles.","distanceAlongGeometry":14513.205},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 15.","announcement":"In 1 mile, Keep left to stay on E 15.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 15.","announcement":"In a half mile, Keep left to stay on E 15.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 15 toward Paris.","announcement":"Keep left to stay on E 15 toward Paris.","distanceAlongGeometry":190}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.800038,45.584994],"geometry_index":3738,"admin_index":1,"weight":3.674,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":3.509,"bearings":[161,341,346],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":5.324,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":5.59,"geometry_index":3739,"location":[4.799828,45.585599]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":2.94,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":3.088,"geometry_index":3742,"location":[4.799495,45.586511]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,351],"duration":24.093,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":25.297,"geometry_index":3744,"location":[4.799316,45.587019]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.803064,45.589307],"geometry_index":3775,"admin_index":1,"weight":8.44,"is_urban":false,"turn_weight":6,"duration":2.343,"bearings":[85,258,265],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":5.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.418,"geometry_index":3777,"location":[4.803722,45.589349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,266],"duration":12.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.062,"geometry_index":3780,"location":[4.80537,45.58944]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,281],"duration":5.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.09,"geometry_index":3789,"location":[4.809342,45.589223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":22.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.755,"geometry_index":3792,"location":[4.811153,45.588933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,266],"duration":11.127,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.384,"geometry_index":3804,"location":[4.818211,45.588444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,255],"duration":6.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.09,"geometry_index":3812,"location":[4.821868,45.588908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":22.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.031,"geometry_index":3815,"location":[4.823816,45.589336]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.831111,45.590731],"geometry_index":3823,"admin_index":1,"weight":10.538,"is_urban":false,"turn_weight":1,"duration":9.789,"bearings":[80,253,260],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":42.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.925,"geometry_index":3828,"location":[4.834288,45.591058]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,59,237],"duration":17.284,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.402,"geometry_index":3852,"location":[4.847211,45.594126]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,224],"duration":3.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.28,"geometry_index":3864,"location":[4.851794,45.596852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.852591,45.597481],"geometry_index":3866,"admin_index":1,"weight":0.914,"is_urban":false,"turn_weight":0.5,"duration":0.443,"bearings":[41,217,221],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":7.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.15,"geometry_index":3867,"location":[4.852691,45.597562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":100.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":93.345,"geometry_index":3870,"location":[4.854346,45.598979]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.11,"geometry_index":3931,"location":[4.879403,45.613272]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":51.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":47.286,"geometry_index":3932,"location":[4.879816,45.613354]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,203],"duration":70.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":64.777,"geometry_index":3962,"location":[4.892735,45.620669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,197],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.121,"geometry_index":3986,"location":[4.893637,45.637088]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":40.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":37.551,"geometry_index":3987,"location":[4.893784,45.637366]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,252],"duration":0.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.327,"geometry_index":4008,"location":[4.903848,45.643165]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.903956,45.643181],"geometry_index":4009,"admin_index":1,"weight":20.079,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.161,"bearings":[73,77,258],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":9.558,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.062,"geometry_index":4014,"location":[4.91068,45.644595]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,240],"duration":40.825,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.804,"geometry_index":4019,"location":[4.9137,45.645505]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":7.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.46,"geometry_index":4039,"location":[4.92058,45.653716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":7.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.46,"geometry_index":4042,"location":[4.921143,45.655482]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":5.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.8,"geometry_index":4043,"location":[4.921706,45.657244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":3.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.608,"geometry_index":4045,"location":[4.922113,45.658511]},{"bearings":[13,193],"entry":[true,false],"classes":["motorway"],"in":1,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":4046,"location":[4.922364,45.659285]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Paris"}],"type":"fork","modifier":"left","text":"Paris"},"distanceAlongGeometry":14543.205},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Paris"}],"type":"fork","modifier":"left","text":"Paris"},"distanceAlongGeometry":1609.344}],"destinations":"A 46: Strasbourg, Paris, Grenoble, Lyon-Est","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 46 exit toward Strasbourg/Paris/Grenoble/Lyon-Est.","modifier":"slight right","bearing_after":346,"bearing_before":341,"location":[4.800038,45.584994]},"speedLimitSign":"vienna","name":"","weight_typical":550.328,"duration_typical":565.962,"duration":565.962,"distance":14543.205,"driving_side":"right","weight":550.328,"mode":"driving","ref":"A 46; E 15; E 70","geometry":"ceh}uAka~cHyd@bLmVxFi[bJgDz@wNvD_OlDmJzAoF`@aFE{Ec@iFsAkEeB}EqCmEmDwD{DkDoEuD}EiDgF_DqFaDyFkCqFsCkGiCgGcCyG_C}GuByGkBaHgBiHaBoH}AyIsAcImAeJgAaJ{@{Is@qK]qIk@iVm@mUe@uQ{Aum@s@s\\e@uYWa\\AmSFaRZk^h@aYbAo_@tA_]lBs^tBc[`Is`AnDu_@pA{MdDi]vEci@vDke@`Co^jCai@pAs_@tAui@j@md@Rm_@?o_@i@im@o@w_@_B{h@aAwV_ByZeAkRaB}UwC}]cDs]yDg^oI}p@{Feb@kGsc@wb@_aDwGmh@cI{p@{CcXsCkWyGyq@{Dcd@kGe`AgBkZyAyXgBu_@aFifAaCkh@{Buf@{Cyp@yAe[eC}c@kCie@oC{a@yCi_@cDm_@mC{XwCiXiEi^}Eq_@}Fq`@eG_`@{Gk`@oJig@aJub@aKkc@aLgd@}Lwd@qNqe@yHmVcJeXsJqX_IaTuLyZiRcd@yQga@aJeR}J_SsH}NqH_NoNaWyMuTeN}T{Sk[qNmSwVk\\aDgEaVqZgVaZgi@yo@qSgVeRqUiSmVmSaVeTsVmYwZ{m@_k@}LsJgLyIoMkJ{MeJqN_JcPsJwRyKarAor@iN}HeOcJwMuI_MwIuPiMyRePoPkOwLmLoMaNsQmSqTkXoGsI_HuJoHoKqKmP_PcXuLoTuPc\\oO_]mM}Z_HsQwHwScFkOyEiOoFkQyEyPaF}QiEcQkEeRuDuPwDgRmDeRiDuR}C{RsCqRiEk[_D{ViF}b@qEo_@kUsmB_Jav@aJcu@wMohAcN}iAwKe~@}K}~@cDyXiKs{@wImt@aEs[mEo[kCcQqCuPiEaViEqTiFeVkFeUeLyb@eMac@sNwb@mN{_@_Qua@mR_b@iXeh@kU{_@_QgWcQiV_P_SeJqKaKaLeRuR}WwV_WeT}[_V}\\cTaRkKkR{Jwe@eSc]oL{d@uM}\\{Gk`@uF}WuCkWeBeVs@sa@e@}[b@i\\jAa_@xBasDrT}vDzTiz@fFu`@|AgZNcXc@sZeB{YaDsYyEaSgEeT{F}Y}JkPeHkXyMkXwOwWwQgUqQ_SwQeWuW{UeY}RiXcTq\\sKkReK}RyP}^wOc`@_Pqd@iOsh@qJc`@gIi`@iFsZ_Lyu@aP_qAuCeT_@wE}Iwr@qPmsAsPmrAaOgkAeYk{B_Jep@}J_l@oJoc@eLob@gHqUoKq\\uJeYiLwXmRga@uLeUsYcf@}U_]aOaRwSaUuUcUm^sZgP}KmPkKkPeJ}NyHaRcIe^qMma@aLokB_b@{g@_L}RiEq{@kR{\\oHcmBeb@so@oNq]}Hko@uNmDy@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":20054.332},{"ssmlAnnouncement":"In a quarter mile, Take the ramp on the left toward Paris.","announcement":"In a quarter mile, Take the ramp on the left toward Paris.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the ramp on the left toward Paris.","announcement":"Take the ramp on the left toward Paris.","distanceAlongGeometry":140}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.922393,45.659372],"geometry_index":4047,"admin_index":1,"weight":11.283,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.015,"bearings":[12,30,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.923288,45.662163],"geometry_index":4050,"admin_index":1,"weight":3.93,"is_urban":false,"turn_weight":0.75,"duration":3.035,"bearings":[13,170,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":2.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.826,"geometry_index":4051,"location":[4.923542,45.662955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":36.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":38.083,"geometry_index":4054,"location":[4.92378,45.663655]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[72,75,252],"duration":31.172,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.723,"geometry_index":4080,"location":[4.933121,45.670183]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[70,251,252],"duration":1.209,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":1.277,"geometry_index":4085,"location":[4.943924,45.672615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,250],"duration":0.245,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":0.263,"geometry_index":4086,"location":[4.944339,45.67272]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":2.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":0,"weight":2.705,"geometry_index":4087,"location":[4.94442,45.672738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":59.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":62.315,"geometry_index":4088,"location":[4.945296,45.672937]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,196],"duration":2.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.422,"geometry_index":4116,"location":[4.961633,45.681752]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.961819,45.682333],"geometry_index":4118,"admin_index":1,"weight":10.491,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.015,"bearings":[9,17,192],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.962063,45.684764],"geometry_index":4125,"admin_index":1,"weight":9.112,"is_urban":false,"turn_weight":0.5,"duration":8.21,"bearings":[4,175,182],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,196],"duration":8.313,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.729,"geometry_index":4132,"location":[4.962565,45.68671]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,211],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.87,"geometry_index":4138,"location":[4.963764,45.688536]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":14.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.393,"geometry_index":4140,"location":[4.964102,45.688896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.427,"geometry_index":4148,"location":[4.967384,45.691605]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":12.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.287,"geometry_index":4149,"location":[4.967688,45.691856]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,192],"duration":16.483,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.28,"geometry_index":4158,"location":[4.969728,45.694597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,324],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":1,"out":1,"weight":1.105,"geometry_index":4172,"location":[4.968159,45.698346]},{"entry":[false,true,true],"in":0,"bearings":[144,324,344],"duration":28.007,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":1,"out":1,"weight":30.1,"geometry_index":4173,"location":[4.967948,45.69855]},{"entry":[true,false],"in":1,"bearings":[11,191],"duration":14.96,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":1,"out":0,"weight":16.082,"geometry_index":4187,"location":[4.966641,45.704475]},{"entry":[true,false,false],"in":2,"bearings":[10,177,194],"duration":10.196,"turn_weight":1.6,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":12.28,"geometry_index":4193,"location":[4.967569,45.707775]},{"entry":[true,true,false],"in":2,"bearings":[11,25,190],"duration":15.83,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":16.613,"geometry_index":4195,"location":[4.968131,45.709921]},{"entry":[true,false],"in":1,"bearings":[15,194],"duration":2.275,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":2.39,"geometry_index":4198,"location":[4.96915,45.71304]},{"entry":[true,false],"in":1,"bearings":[14,195],"duration":7.422,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":7.793,"geometry_index":4199,"location":[4.969339,45.713519]},{"entry":[true,false,false],"in":2,"bearings":[17,177,196],"duration":2.972,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":3.863,"geometry_index":4201,"location":[4.969887,45.714968]},{"entry":[true,false],"in":1,"bearings":[17,197],"duration":33.628,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":35.31,"geometry_index":4202,"location":[4.970146,45.715568]},{"entry":[true,false],"in":1,"bearings":[23,205],"duration":4.404,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":4.625,"geometry_index":4211,"location":[4.973988,45.722144]},{"entry":[true,false],"in":1,"bearings":[20,203],"duration":4.983,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":5.209,"geometry_index":4212,"location":[4.974511,45.723005]},{"entry":[true,false],"in":1,"bearings":[19,199],"duration":2.077,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":2.181,"geometry_index":4214,"location":[4.975,45.723957]},{"entry":[true,false],"in":1,"bearings":[15,199],"duration":3.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":3.78,"geometry_index":4215,"location":[4.975186,45.724341]},{"entry":[true,false],"in":1,"bearings":[15,195],"duration":4.722,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":4.958,"geometry_index":4216,"location":[4.975448,45.725008]},{"entry":[true,false],"in":1,"bearings":[17,192],"duration":2.453,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":2.565,"geometry_index":4218,"location":[4.975751,45.725888]},{"entry":[true,false],"in":1,"bearings":[17,197],"duration":6.558,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":6.885,"geometry_index":4219,"location":[4.975968,45.726381]},{"entry":[true,false],"in":1,"bearings":[20,200],"duration":3.643,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":3.825,"geometry_index":4221,"location":[4.976579,45.727685]},{"entry":[true,false],"in":1,"bearings":[22,200],"duration":31.141,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":31.91,"geometry_index":4222,"location":[4.976952,45.728405]},{"entry":[true,false],"in":1,"bearings":[30,209],"duration":35.263,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":36.637,"geometry_index":4230,"location":[4.981068,45.734604]},{"entry":[true,false],"in":1,"bearings":[30,210],"duration":21.104,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":21.631,"geometry_index":4234,"location":[4.986733,45.741155]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":0.414,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"weight":0.424,"geometry_index":4243,"location":[4.988551,45.745494]},{"entry":[false,true],"in":0,"bearings":[182,357],"duration":4.345,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":4.453,"geometry_index":4244,"location":[4.988555,45.745588]},{"entry":[false,true,true],"in":0,"bearings":[175,351,356],"duration":16.978,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":16.953,"geometry_index":4246,"location":[4.988465,45.746532]},{"entry":[false,true],"in":0,"bearings":[156,337],"duration":1.596,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":1.596,"geometry_index":4252,"location":[4.986848,45.749976]},{"entry":[false,true],"in":0,"bearings":[157,338],"duration":11.255,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":11.536,"geometry_index":4253,"location":[4.986652,45.750294]},{"entry":[false,false,true],"in":1,"bearings":[166,173,355],"duration":4.248,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":5.346,"geometry_index":4261,"location":[4.985736,45.752639]},{"entry":[false,true],"in":0,"bearings":[177,359],"duration":4.28,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":4.387,"geometry_index":4263,"location":[4.985626,45.753586]},{"entry":[false,true],"in":0,"bearings":[179,359],"duration":1.432,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":1.468,"geometry_index":4265,"location":[4.985594,45.754545]},{"entry":[false,true],"in":0,"bearings":[179,358],"duration":5.299,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":5.432,"geometry_index":4266,"location":[4.985583,45.754862]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":0.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":0.705,"geometry_index":4267,"location":[4.985511,45.756039]},{"entry":[true,false,true],"in":1,"bearings":[11,178,358],"duration":5.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":5.125,"geometry_index":4268,"location":[4.985502,45.756192]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":9.64,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":10.122,"geometry_index":4269,"location":[4.985448,45.757313]},{"entry":[false,false,true],"in":1,"bearings":[163,178,359],"duration":5.952,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":7.241,"geometry_index":4270,"location":[4.985345,45.759475]},{"entry":[false,true],"in":0,"bearings":[179,358],"duration":25.261,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":26.504,"geometry_index":4271,"location":[4.985312,45.760753]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":3.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":3.78,"geometry_index":4273,"location":[4.985058,45.766233]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":11.951,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":12.541,"geometry_index":4274,"location":[4.985022,45.76701]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":23.209,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":1,"out":1,"weight":24.95,"geometry_index":4277,"location":[4.984907,45.769539]},{"entry":[false,true],"in":0,"bearings":[154,334],"duration":54.528,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":57.746,"geometry_index":4288,"location":[4.984002,45.774375]},{"entry":[false,true],"in":0,"bearings":[98,278],"duration":18.174,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":18.628,"geometry_index":4310,"location":[4.969257,45.777788]},{"entry":[false,true],"in":0,"bearings":[105,291],"duration":10.055,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":10.055,"geometry_index":4316,"location":[4.963952,45.778436]},{"entry":[false,true],"in":0,"bearings":[121,306],"duration":3.104,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":3.104,"geometry_index":4322,"location":[4.961147,45.779388]},{"entry":[false,true],"in":0,"bearings":[127,311],"duration":2.202,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":2.202,"geometry_index":4324,"location":[4.960367,45.779793]},{"entry":[false,true],"in":0,"bearings":[131,314],"duration":16.2,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":15.795,"geometry_index":4325,"location":[4.959862,45.780098]},{"entry":[false,true],"in":0,"bearings":[157,339],"duration":3.354,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":1,"weight":3.271,"geometry_index":4335,"location":[4.956919,45.782966]},{"entry":[true,false,true],"in":1,"bearings":[0,161,342],"duration":13.14,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":2,"weight":12.804,"geometry_index":4338,"location":[4.956556,45.78366]},{"bearings":[5,165,182],"entry":[true,false,false],"in":2,"turn_weight":0.75,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":4347,"location":[4.956021,45.786504]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Paris"}],"type":"turn","modifier":"slight left","text":"Paris"},"distanceAlongGeometry":20084.332}],"destinations":"Paris, Strasbourg, Grenoble, Lyon","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 15 toward Paris.","modifier":"slight left","bearing_after":12,"bearing_before":13,"location":[4.922393,45.659372]},"speedLimitSign":"vienna","name":"","weight_typical":835.283,"duration_typical":800.81,"duration":800.81,"distance":20084.332,"driving_side":"right","weight":835.283,"mode":"driving","ref":"E 15","geometry":"wmyavAq`mkH}`@qIyl@}Mu}Am]op@{NoGuAa\\yHeEkA}UyGqZoKoMwFySkKgT_MmPwKsTcP{PyNqPsOyRyS{MkOsOiSoVi^cRa[eRw^{KeVkPga@eJiXsIaXoIaYkIa^oGyYmHe`@mFu[_Fq\\_Gga@qV_iBci@qwDuW_lBmh@uwDeS}yAqE}Xc@aDmKwu@mPklAuOghAyg@ysDaT_|AmRusAwF}ZaH}Z{HuY{G{S}Mk]gJ_SyMqVqOyUkQuUsP}R}gAuqAsQkTuJmLuZu]yTsT{UaTeUkPaVmOuMiHuQyIkVgK{MmE{LsDwS_FqNsCuMkBmLuAuLgA{M{@uXs@c]e@mf@gAmKc@qTiBwR_CaPsCwPoDoMeDqQsFqRsH{RaJcTcLoRyLaPuK_PsM}OsNqDoDsHoHcM_NcPeS}RqWit@{aAaZq`@{LoPgM}PuN_RcT{W}MaOuNsNsMqL{MsJqJsGof@aVeTqGyPoDwRwAeQq@iRHcQ~@aLxAiNjC_NjDeOjFoR|I{NvIsLrIqQ`OkOtNmN`OwKdLqWdX}b@ja@eI~GiO~JsPzI{N`F}JvC{NtEwN~AcR~@i]~@ud@cDem@oH}gAsSgRmD}~@oPcv@aN_@Iax@wN{H}By`AaPicAaQy^oGaq@sMapBqg@}\\yJwq@{Pyf@kOod@eOk}@_Z_eAi_@{p@gTog@wSs]}S_]qVa~@aq@kz@ch@eDcByt@u_@md@{RaUuI_WsJuh@kOkWsHs]iHy]qLkr@qUc]sN_l@iV}XeNylA{p@w|BspAml@e\\{]{Ryd@}Y_RgNyWiRis@}i@kdDmoCooDgyCgNmKsd@w]yWkPy_@mRk\\}LkYuIy[uGi`@sFg`@_CyWc@{DGwh@hBgPhAqZ|Do`@|HsV|Goa@tOo[xOqbAvi@{RfK{O|HaRhIsS`ImLzDuRrFwTrEmG`AuYvCgk@zD}M^{n@v@aKFyRTqhAnCqHPaeAjBcfClE{nA`Au[b@yxHvMqo@fAkeArBoeAvAePXubBvCwr@nAcb@~AoOlAkIbAaOzBuPvE{GrBcUbJwNhIiG`EyG~DcJ~FaOjOyQdTcM`RsJnQwJ~R}HtS}IbWgI`YkG|YqDbU{Eb`@uDld@_Cl_@sBl`@aCpn@kMrkCyInjBwInhBiKjuBmBnc@kBxb@cPdeDwBd]uB|]mD`\\cFjf@iF`ZeEpTgGrZcGxWgI`[kRdm@mHhQ{Nl]aRp^yHvMuRn[aQhUaRnWaXhYmUxRgR|NiRlMoP|JaHlDcBz@i]dO}HrCiKrDiTdGa`@pH}W~DyObAwTbAaUTsRO{DKw_AeGm]eBcYSgVLmTrAaT|CgOfDiPtEsJ|CkIdDwPtH{RpK}P~KkHdFeIdHmLvKcPrPoG|HcHfJaLbPaM|RsHhNcH~N_GxMcFnLeFrMyIxUgIvU_Plh@yMte@yLbd@kc@lbBiSdw@oNvk@oQrw@_Kbf@iLdo@gF|[oDnWmClToF`f@wA`QoAlO{ApUkAjYu@~To@nc@Gh^Zx]d@jR"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep right to stay on A 42.","announcement":"In 1 mile, Keep right to stay on A 42.","distanceAlongGeometry":1515.01},{"ssmlAnnouncement":"In a half mile, Keep right to stay on A 42.","announcement":"In a half mile, Keep right to stay on A 42.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on A 42, E 611 toward Strasbourg.","announcement":"Keep right to stay on A 42, E 611 toward Strasbourg.","distanceAlongGeometry":210}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[85,262,277],"duration":44.688,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":1,"weight":43.55,"geometry_index":4397,"location":[4.938788,45.796958]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.928617,45.798655],"geometry_index":4425,"admin_index":1,"weight":16.714,"is_urban":false,"turn_weight":9,"duration":7.929,"bearings":[151,166,344],"out":2,"in":0,"turn_duration":0.017,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,340],"duration":7.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.521,"geometry_index":4426,"location":[4.92789,45.800381]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[160,340],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":4427,"location":[4.927027,45.802022]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"right","text":"Strasbourg"},"distanceAlongGeometry":1545.01}],"destinations":"Paris, Villefranche sur Saône, Genève","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the ramp on the left toward Paris.","modifier":"slight left","bearing_after":262,"bearing_before":265,"location":[4.938788,45.796958]},"speedLimitSign":"vienna","name":"","weight_typical":73.44,"duration_typical":66.13,"duration":66.13,"distance":1545.01,"driving_side":"right","weight":73.44,"mode":"driving","ref":"A 42; E 15; E 611","geometry":"{dfjvAgamlHXrGvAn[|Cvb@rCbYpE|\\hFd[|Fb[zRdaAnGn\\zF|^bCnSrBpTz@bTPnWi@nWcCj\\mBjNeDtOqGdTuIlTcLlR}LrOeNdLwRtKqRjGmXdJye@hPiGvF{jBll@qeB|t@{kAff@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 30 miles.","announcement":"Continue for 30 miles.","distanceAlongGeometry":48099.25},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 40.","announcement":"In 2 miles, Keep left to take A 40.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 40.","announcement":"In a half mile, Keep left to take A 40.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 40 toward Strasbourg.","announcement":"Keep left to take A 40 toward Strasbourg.","distanceAlongGeometry":220}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.926399,45.803252],"geometry_index":4428,"admin_index":1,"weight":0.784,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.814,"bearings":[160,334,345],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":1.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.156,"geometry_index":4429,"location":[4.926336,45.803415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":17.913,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.466,"geometry_index":4430,"location":[4.926251,45.803658]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.928102,45.806931],"geometry_index":4446,"admin_index":1,"weight":4.548,"is_urban":false,"turn_weight":1,"duration":3.648,"bearings":[50,221,227],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,234],"duration":5.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.761,"geometry_index":4448,"location":[4.929039,45.807445]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.443,"geometry_index":4451,"location":[4.93064,45.808223]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[58,68,236],"duration":7.743,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.543,"geometry_index":4452,"location":[4.931038,45.808408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":13.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.555,"geometry_index":4455,"location":[4.933272,45.809337]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[66,239,245],"duration":3.301,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.211,"geometry_index":4459,"location":[4.93747,45.810774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":0.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.478,"geometry_index":4460,"location":[4.938481,45.811086]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":106.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":101.504,"geometry_index":4461,"location":[4.938649,45.811135]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":9.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.773,"geometry_index":4485,"location":[4.977082,45.816701]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":2.374,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.256,"geometry_index":4487,"location":[4.98007,45.817107]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":2.298,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.183,"geometry_index":4488,"location":[4.98085,45.817222]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[77,84,258],"duration":11.7,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.097,"geometry_index":4489,"location":[4.981613,45.817334]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.985429,45.818001],"geometry_index":4492,"admin_index":1,"weight":2.277,"is_urban":false,"turn_weight":1,"duration":1.352,"bearings":[73,241,254],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":9.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.698,"geometry_index":4493,"location":[4.985849,45.818091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,247],"duration":0.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.805,"geometry_index":4498,"location":[4.988669,45.81883]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":30,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.5,"geometry_index":4499,"location":[4.988809,45.818874]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":1.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.651,"geometry_index":4505,"location":[4.99385,45.82034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.994114,45.820451],"geometry_index":4506,"admin_index":1,"weight":21.914,"is_urban":false,"toll_collection":{"name":"Beynost","type":"toll_booth"},"turn_weight":15,"duration":7.091,"bearings":[58,239],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[56,76,236],"duration":12.104,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.783,"geometry_index":4508,"location":[4.994822,45.82077]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,239],"duration":3.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.958,"geometry_index":4514,"location":[4.997149,45.822115]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.997832,45.822357],"geometry_index":4515,"admin_index":1,"weight":11.079,"is_urban":false,"turn_weight":1,"duration":10.345,"bearings":[66,229,243],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":50.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":49.68,"geometry_index":4519,"location":[5.000246,45.823014]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,236],"duration":1.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.62,"geometry_index":4534,"location":[5.021928,45.829535]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.022575,45.829831],"geometry_index":4535,"admin_index":1,"weight":39.968,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":41.013,"bearings":[55,68,237],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.03559,45.835772],"geometry_index":4547,"admin_index":1,"weight":9.515,"is_urban":false,"turn_weight":1,"duration":8.741,"bearings":[61,225,240],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":7.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.566,"geometry_index":4551,"location":[5.038568,45.836887]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":0.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.934,"geometry_index":4555,"location":[5.041214,45.837753]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.041542,45.837853],"geometry_index":4556,"admin_index":1,"weight":9.211,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.218,"bearings":[66,83,246],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.044935,45.83881],"geometry_index":4560,"admin_index":1,"weight":7.715,"is_urban":false,"turn_weight":0.5,"duration":7.047,"bearings":[70,221,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":5.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.502,"geometry_index":4563,"location":[5.0476,45.839459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.055,"geometry_index":4565,"location":[5.049661,45.839907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":39.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.524,"geometry_index":4566,"location":[5.050055,45.839989]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.849,"geometry_index":4577,"location":[5.065459,45.843015]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":2.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.221,"geometry_index":4578,"location":[5.065783,45.843084]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.066627,45.843263],"geometry_index":4579,"admin_index":1,"weight":23.129,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.136,"bearings":[73,103,253],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.075416,45.845488],"geometry_index":4587,"admin_index":1,"weight":7.403,"is_urban":false,"turn_weight":1,"duration":6.426,"bearings":[64,189,247],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":37.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.715,"geometry_index":4590,"location":[5.077766,45.846251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":0.382,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.373,"geometry_index":4601,"location":[5.091173,45.851293]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.091308,45.851337],"geometry_index":4602,"admin_index":1,"weight":16.574,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.453,"bearings":[66,70,245],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.098852,45.853443],"geometry_index":4606,"admin_index":1,"weight":11.365,"is_urban":false,"turn_weight":0.5,"duration":11.456,"bearings":[70,232,250],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":114.181,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":105.617,"geometry_index":4607,"location":[5.10319,45.854563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,277],"duration":1.21,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.089,"geometry_index":4641,"location":[5.146605,45.864025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":63.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":56.771,"geometry_index":4642,"location":[5.147097,45.863975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,265],"duration":2.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.95,"geometry_index":4662,"location":[5.172347,45.861669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":18.619,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.74,"geometry_index":4664,"location":[5.173212,45.861741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,252],"duration":6.031,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.409,"geometry_index":4671,"location":[5.180585,45.862971]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":6.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.001,"geometry_index":4674,"location":[5.182898,45.863596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,244],"duration":9.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.509,"geometry_index":4677,"location":[5.185387,45.864407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,239],"duration":176.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":158.788,"geometry_index":4680,"location":[5.18877,45.865758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.162,"geometry_index":4733,"location":[5.233363,45.904851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":5.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.038,"geometry_index":4734,"location":[5.234873,45.905616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":0.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.313,"geometry_index":4737,"location":[5.23672,45.906552]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.236839,45.906613],"geometry_index":4738,"admin_index":1,"weight":27.335,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.57,"bearings":[54,56,234],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.246644,45.91165],"geometry_index":4743,"admin_index":1,"weight":9.095,"is_urban":false,"turn_weight":1,"duration":8.771,"bearings":[52,213,233],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":150.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":135.183,"geometry_index":4747,"location":[5.249832,45.913419]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,212],"duration":1.179,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.061,"geometry_index":4792,"location":[5.299214,45.947434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,211],"duration":21.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.991,"geometry_index":4793,"location":[5.299464,45.947718]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,198],"duration":77.142,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":71.337,"geometry_index":4801,"location":[5.303392,45.953977]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[11,191],"duration":1.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.406,"geometry_index":4814,"location":[5.310185,45.975791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,191],"duration":3.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.928,"geometry_index":4815,"location":[5.31031,45.976227]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.310584,45.977125],"geometry_index":4816,"admin_index":1,"weight":23.693,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.621,"bearings":[11,34,192],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.312449,45.984227],"geometry_index":4824,"admin_index":1,"weight":11.132,"is_urban":false,"turn_weight":1,"duration":10.973,"bearings":[8,175,188],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,185],"duration":7.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.258,"geometry_index":4828,"location":[5.312999,45.9874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":0.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.117,"geometry_index":4831,"location":[5.313212,45.989684]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":153.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":141.841,"geometry_index":4832,"location":[5.313215,45.989724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":3.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.582,"geometry_index":4868,"location":[5.319005,46.033503]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":24.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.655,"geometry_index":4869,"location":[5.319638,46.034566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,199],"duration":5.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.056,"geometry_index":4873,"location":[5.323421,46.041212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.36,"geometry_index":4874,"location":[5.324041,46.042679]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.44,"geometry_index":4875,"location":[5.324084,46.042783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.324254,46.043194],"geometry_index":4876,"admin_index":1,"weight":14.329,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.104,"bearings":[14,31,196],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.32564,46.047449],"geometry_index":4882,"admin_index":1,"weight":7.46,"is_urban":false,"turn_weight":0.5,"duration":7.334,"bearings":[12,175,192],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":35.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.45,"geometry_index":4886,"location":[5.32626,46.049486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,185],"duration":6.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.6,"geometry_index":4897,"location":[5.329042,46.059305]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,355],"duration":6.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.97,"geometry_index":4902,"location":[5.329096,46.06128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,348],"duration":3.696,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.512,"geometry_index":4907,"location":[5.328749,46.063053]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"bearings":[164,347],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":4911,"location":[5.328394,46.064057]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 40"}],"type":"fork","modifier":"left","text":"A 40"},"distanceAlongGeometry":48129.25},{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 40","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 40"}],"type":"fork","modifier":"left","text":"A 40"},"distanceAlongGeometry":3218.688}],"destinations":"Strasbourg, Bourg en Bresse, Genève","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on A 42/E 611 toward Strasbourg.","modifier":"slight right","bearing_after":345,"bearing_before":340,"location":[4.926399,45.803252]},"speedLimitSign":"vienna","name":"","weight_typical":1469.708,"duration_typical":1546.072,"duration":1546.072,"distance":48129.25,"driving_side":"right","weight":1469.708,"mode":"driving","ref":"A 42; E 611","geometry":"gnrjvA}ztkHeI|BeNhD_H`BeG`A}Fh@{J\\_NMmK_AgPyCcMoEqQcJoQkLyNaMaHwG{FoGcImJoH}JiRc]{R_a@gKqWmG{OwSek@mR_f@qJ{W_Ssl@cVyv@}Mee@qMed@k_@k{Ac]w{AwKag@oRe~@aBoIyHw`@wN{v@_VmsA}^i}BiXijBqLe}@eNkhAeIks@}Je_AaKyaAgJ{aA_JgeAcIeeA_N_rBqLouBmN}{CwJm_CiGoeBaMafDkUcyF_NivCeDcv@kMk_CuJw}AoMuoB{IaiAeFwo@_Fun@cH{u@wQ_pByLseAsDgYwA_L{Hsh@}Hgf@gKak@kJie@wAwGyNwq@yQy{@_Iga@qXieBgGsb@eLi^}EoOuMg`@gD_JsHgSi_@ms@eBsC}Si]wHcQgGuRcNui@sHm]yFwZmKom@eJem@{vA_oJuK}s@uc@kyCcRykAaR{hAmUyoAeWeoAqL_k@gMoh@a[_oAy[yhA}[geAe\\_bAWu@}h@{xAoQmg@gW_q@gs@amBow@uuBmUun@cXks@g^oaAeRsh@sWeu@od@yrAeTop@cg@q`B{Omh@s[_hAwLid@uLcd@sLue@sKmc@oIa^_Pas@_Myl@gEoSmS{aAgPo}@qJki@qIig@iG_`@qLst@uQ}nA}C}TaV{iBcDsWiFib@kMeeAyRocB}QcaBwTyoBe`@wjDoLqeAiKm~@kNqmA}Iuu@sTyiBiCgSeJws@eEe[sQ_sAkUy}A}Vy_BmRgkAcIuc@eOux@eU{iAoEqRuOss@oWuiAcRyt@eWcaAmVi}@wfAatDia@wtA{a@qwAe`@euAaa@a}AoPoq@mRwy@gByIwAmGsl@usCsPs}@q_@ovByb@ukC_eAcnGk^gxB_ZceBaZcdBg]olB_^olBgRqaAuUikAm^ueBw^udBah@u}Beu@_cDwV}eAgw@ceDya@cfBi]k{AsRm~@{Pw}@iOa}@kLmx@sKi}@qJ_aAiFuq@uEix@{Dw|@sBsv@}@kh@g@oj@Ooo@D{m@v@_dAbAgr@hBqq@fCkz@vFsxAbBw]vEe_AtEg{@xEsv@rCyb@`AsOfGa`AjR{qC~R}wCjYehEjMcnBzLovBpHa`BnCa{@|Aop@jA}w@f@eo@Jmw@Ygs@oA}mAwAqp@IuDeCko@yC{r@}F}aA_IeeAgG_r@eHar@mIus@gYatBkJ{k@uMiu@_Lkl@{Lgm@kMuj@mUs`AwPqo@c^anAqb@yrAsZsz@{Wqq@_\\}u@y_@my@{a@qy@ca@yt@gO}W_Ri[sTe^eb@cp@gb@ao@iw@miAiyAiuB}l@sz@il@ox@eh@cr@yg@io@gh@gn@el@ip@ar@ct@iw@qu@ur@on@g|@is@y_Akr@qbAqp@c^eUexA_{@{qAst@ucBk_Aan@s]in@o^soA_w@m_Aun@qq@}f@gq@qi@er@al@yu@cs@go@ko@on@sq@aq@kw@kk@ks@{j@kv@gh@wu@{g@qw@il@iaAuT{_@iXeg@if@w_A_l@{mA{p@q{Aoq@waBeQwb@eK_Xyn@k}AaVkl@yNm^sRse@yBmFehBopEcw@_mBs`@u`AgpAazCse@qgAwT{f@_Ucg@iPk^op@{vAce@saAonAofC}oBwyDqjB}mD{b@}x@imE_iIklAgwBar@akAebAy~AscAmzAoi@kt@wd@kk@gByBgm@_s@wh@ak@wk@{j@ep@cm@sbBwwAcaAk}@uXyZ}Vm[}]_g@s\\mi@g]oo@qZwp@_Seg@iRch@_b@iqA}`@qoA}b@mpAi\\o}@g_@g~@s\\kv@_e@{aA{`@kv@w`@os@ed@qt@af@yt@mp@y}@_]sb@_e@{i@ig@aj@{f@}f@q`@q^w`@s]wPsNen@ie@yr@mf@_t@yc@mo@}]go@c[cz@}^mt@eY}\\wLep@qT}m@eRafAuY_iAsX_b@oJuv@}P}o@sM}gAsTmhAmTqrHyxAkrHgyAomDyq@wm@oLgZyFcw@cPabAgRi`@aIqa@yHq[sFus@aNqcAeQieAqPywA_Rqr@aJmeAmK{VuBms@eFoc@eC}r@}Ciu@eCoAEorAiCikA[imATqs@n@wmAvBq_@v@ovCbJ{{CxKksCjJ{oClGk}AjBi|Ax@arAOqvAeBeqA_DooAsEak@qC_j@gDsjAqIa}@gIm}@iJc~@{Kq_AsMmsAcT_qAkVgv@mPot@oQge@qLce@mMwcA_[{n@sS}lAgc@ma@ePuw@w[ew@g]gfBaz@maAqf@gjEszB{aBcw@iv@w[}x@}ZuzAwe@oEuAuXsI}o@mP_f@iLyn@wNkWcGi_AwRoh@gKay@sPsQwDgXsFkXwFsk@uLaSyDukCij@w~A}[cdAaTufA_Uwy@yOuf@wHsb@aFaReBsQgAac@{B_X]eV?eKH_Zb@mUxAyTdBiYjD{W~DkNhCcWrFgOtDmMjD}FnBcB`@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 15 miles.","announcement":"Continue for 15 miles.","distanceAlongGeometry":23928.252},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 39.","announcement":"In 2 miles, Keep left to take A 39.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 39.","announcement":"In a half mile, Keep left to take A 39.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 39, Autoroute Verte toward Strasbourg.","announcement":"Keep left to take A 39, Autoroute Verte toward Strasbourg.","distanceAlongGeometry":288.889}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.328377,46.064107],"geometry_index":4912,"admin_index":1,"weight":2.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.177,"bearings":[167,340,348],"out":1,"in":0,"turn_duration":0.03,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,340],"duration":6.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.378,"geometry_index":4913,"location":[5.328088,46.064655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,333],"duration":1.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.635,"geometry_index":4918,"location":[5.327065,46.06637]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,330],"duration":6.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.632,"geometry_index":4920,"location":[5.326742,46.066803]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,322],"duration":1.593,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.514,"geometry_index":4924,"location":[5.325182,46.068489]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,320],"duration":12.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.67,"geometry_index":4925,"location":[5.324776,46.068844]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.321255,46.071248],"geometry_index":4930,"admin_index":1,"weight":7.549,"is_urban":false,"turn_weight":1,"duration":7.106,"bearings":[124,131,306],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,299],"duration":8.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.659,"geometry_index":4933,"location":[5.319348,46.072122]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,292],"duration":11.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.656,"geometry_index":4937,"location":[5.316942,46.072939]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":0.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.436,"geometry_index":4941,"location":[5.313482,46.073893]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":120.722,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":108.649,"geometry_index":4942,"location":[5.31328,46.07395]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,188],"duration":0.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.741,"geometry_index":4984,"location":[5.290165,46.100003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,187],"duration":34.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":31.175,"geometry_index":4985,"location":[5.290209,46.100246]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,357],"duration":1.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.471,"geometry_index":4995,"location":[5.291966,46.110456]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,358],"duration":0.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.653,"geometry_index":4996,"location":[5.291935,46.110944]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.291922,46.111156],"geometry_index":4997,"admin_index":1,"weight":16.698,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.574,"bearings":[15,178,355],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.289745,46.11632],"geometry_index":5007,"admin_index":1,"weight":7.041,"is_urban":false,"turn_weight":1,"duration":6.736,"bearings":[127,153,330],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[146,326],"duration":53.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":48.545,"geometry_index":5012,"location":[5.288243,46.117997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.875,"geometry_index":5038,"location":[5.284555,46.132796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":7.993,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.394,"geometry_index":5039,"location":[5.284709,46.13305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":1.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.195,"geometry_index":5042,"location":[5.286046,46.135214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":4.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.394,"geometry_index":5043,"location":[5.286253,46.135561]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.427,"geometry_index":5046,"location":[5.287016,46.136872]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,202],"duration":20.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.842,"geometry_index":5047,"location":[5.287258,46.137297]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,198],"duration":0.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.342,"geometry_index":5051,"location":[5.290114,46.142906]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,198],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.584,"geometry_index":5052,"location":[5.290162,46.143007]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.290502,46.143776],"geometry_index":5053,"admin_index":1,"weight":8.73,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.445,"bearings":[17,48,197],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.291625,46.14647],"geometry_index":5058,"admin_index":1,"weight":1.79,"is_urban":false,"turn_weight":1,"duration":0.873,"bearings":[15,172,195],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":0.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.626,"geometry_index":5059,"location":[5.291715,46.146711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":6.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.883,"geometry_index":5060,"location":[5.291788,46.146904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":85.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":79.476,"geometry_index":5063,"location":[5.292464,46.148748]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,189],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.035,"geometry_index":5087,"location":[5.30356,46.173223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,187],"duration":8.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.659,"geometry_index":5088,"location":[5.303615,46.173552]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,356],"duration":74.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":68.752,"geometry_index":5093,"location":[5.303715,46.176237]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":0.886,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.819,"geometry_index":5128,"location":[5.29551,46.199307]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":2.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.946,"geometry_index":5129,"location":[5.295509,46.199598]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.295507,46.20028],"geometry_index":5130,"admin_index":1,"weight":29.555,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.845,"bearings":[61,180,360],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.295193,46.209698],"geometry_index":5138,"admin_index":1,"weight":5.718,"is_urban":false,"turn_weight":1,"duration":5.265,"bearings":[169,176,353],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":24.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.111,"geometry_index":5140,"location":[5.29494,46.211183]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.745,"geometry_index":5147,"location":[5.292842,46.218014]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,342],"duration":6.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.058,"geometry_index":5148,"location":[5.292747,46.218235]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,340],"duration":24.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.666,"geometry_index":5150,"location":[5.291878,46.220074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,331],"duration":4.308,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.859,"geometry_index":5158,"location":[5.28788,46.226401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[151,330],"duration":21.464,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.299,"geometry_index":5159,"location":[5.287023,46.227482]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,323],"duration":0.563,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.507,"geometry_index":5166,"location":[5.282138,46.232613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.281997,46.232741],"geometry_index":5167,"admin_index":1,"weight":9.834,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.934,"bearings":[143,324,329],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.279209,46.235183],"geometry_index":5171,"admin_index":1,"weight":6.408,"is_urban":false,"turn_weight":1,"duration":6.018,"bearings":[113,140,321],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[140,320],"duration":7.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.003,"geometry_index":5174,"location":[5.277419,46.236685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,320],"duration":41.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":38.218,"geometry_index":5177,"location":[5.275105,46.238641]},{"bearings":[139,317],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":5187,"location":[5.262595,46.248876]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"distanceAlongGeometry":23958.252},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"left","text":"Strasbourg"},"distanceAlongGeometry":3218.688}],"destinations":"A 40: Strasbourg, Paris, Bourg en B.","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 40 toward Strasbourg.","modifier":"slight left","bearing_after":340,"bearing_before":347,"location":[5.328377,46.064107]},"speedLimitSign":"vienna","name":"Autoroute des Titans","weight_typical":666.756,"duration_typical":725.785,"duration":725.785,"distance":23958.252,"driving_side":"right","weight":666.756,"mode":"driving","geometry":"u}ozvAq~edIga@`QwLbF{S~IiXpMqQ`Ku[dR{L~HeLdIuUrQqX|Ua]d[aZvZeUjXi^td@oTpZqYtd@sVrd@gn@nnAyMr\\oMx\\iXvz@oJx\\oPtp@cE~Q}Nzr@kWvwAeOjz@sDxSmLhn@qBrKukAhtGejAnmGid@pdCaPry@gR|}@_Nzl@uNtk@kMre@aNjd@a[z|@kNz]uMp[}a@lz@wOfYgPzWoUp]{c@nm@s\\z_@s`@pa@sg@tc@ob@p[wd@bZme@bW{f@vTsd@hP_a@~Lk`@vIu]jGw]pEq`@nDk_@fBsXl@eXFaSQa[s@qg@sCog@{Dsq@uGsyB_WawBsV_[kDcfDo_@eNwAkcDq_@kgCgZmfCmYeg@sFyZwCus@_Fi^aBgUYyVE{BCo]|@gLXoc@`Dyb@hFkk@hK__@tJq_@nL{XlK_XfLa[tOeg@lZkUjOwQnNcUdReUrRuSbRaTlSq^b^aa@~`@eb@hb@o]r\\e]`[mi@bc@se@|[yk@z[mf@~T_o@vTsp@bPkn@jKui@nFwZzAkYn@y^D}Zu@i`@mBq_@mD_[sEgZoFwWgGcSkFeZmJit@mYaq@u[{NsHs_@cSofAkk@c^aRuT}KsHyDq^sQwg@gVqYcNko@eZyzA{o@a~A_o@irBmu@iE_Bao@gTod@oOab@yMkh@gPsLwDyg@{NaNsDaKqCuWqHoc@qLau@cRwr@aQwaBq^ibBa^{dBm`@_`B{`@ah@oNmc@kMqn@qRev@eWw`@wNkmAaf@gq@{YyY}Muc@gTuoAqn@apA_q@g`EmxBo}@gc@qk@sV}l@_U_k@_Qwl@}Nse@wIoe@mGqSmBa_@kCo^uAw_@q@k_@Hcf@`Au_@rBip@lGcWvDke@hIc_@pIgf@dNae@jOqq@fZck@`Ym^jS_u@|c@ukAzv@kc@vYcg@l\\yp@lb@eq@r`@_ZvOiv@r^{l@fUyd@dOue@lMcd@|Jkc@zH{ZhEk`@fE}[hCqn@fDox@jBe`@d@}DFgpA\\yXGee@L{{@B}b@MeQ@si@BguBLcoBDwsA@iZEu^d@q_A~Aem@rBwfBhJae@lEwu@jHgfAdNuu@fLap@nL_mBna@_g@hM_m@jP}v@~UyL|Dis@`Ws}@f]_t@tZ{w@f^yl@rYeo@x\\ao@~]cv@|d@kt@ve@_b@xYqbApt@yo@dg@{_Ahx@aj@~f@w`A`_Aat@zu@iVtWyTdW_GxGqd@bg@u_@xd@uw@p`AuXv]cNpPmf@jn@if@|m@mf@`o@{h@xq@}g@vl@uY`_@wj@lt@a@h@ao@`y@_[da@osAteBcrArcB{yDjbFa{ArqBql@nx@ml@h|@og@dy@k\\tn@eUle@c[hu@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 69 miles.","announcement":"Continue for 69 miles.","distanceAlongGeometry":110978.328},{"ssmlAnnouncement":"In 2 miles, Take the A 36 exit.","announcement":"In 2 miles, Take the A 36 exit.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take the A 36 exit.","announcement":"In a half mile, Take the A 36 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the A 36 exit toward Strasbourg. Then Keep right to take A 36.","announcement":"Take the A 36 exit toward Strasbourg. Then Keep right to take A 36.","distanceAlongGeometry":241.389}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[5.258436,46.251526],"geometry_index":5192,"admin_index":1,"weight":26.199,"is_urban":false,"turn_weight":5,"duration":23.579,"bearings":[127,302,310],"out":1,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.250251,46.255315],"geometry_index":5202,"admin_index":1,"weight":6.871,"is_urban":false,"turn_weight":1,"duration":6.531,"bearings":[125,131,314],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,318],"duration":18.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.532,"geometry_index":5205,"location":[5.248329,46.256679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,336],"duration":43.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":39.268,"geometry_index":5215,"location":[5.244321,46.261243]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,179],"duration":41.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":37.468,"geometry_index":5231,"location":[5.241614,46.273772]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":0.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.305,"geometry_index":5246,"location":[5.243522,46.285829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":82.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":74.41,"geometry_index":5247,"location":[5.243551,46.285922]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,213],"duration":2.532,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.343,"geometry_index":5274,"location":[5.258253,46.307881]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.258876,46.308486],"geometry_index":5275,"admin_index":1,"weight":20.663,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.347,"bearings":[36,51,215],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.264114,46.313905],"geometry_index":5282,"admin_index":1,"weight":3.664,"is_urban":false,"turn_weight":1,"duration":2.906,"bearings":[22,207,209],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,205],"duration":24.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.105,"geometry_index":5284,"location":[5.264677,46.314759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":0.981,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.908,"geometry_index":5295,"location":[5.26928,46.322206]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":165.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":148.965,"geometry_index":5296,"location":[5.269445,46.322451]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[144,325],"duration":0.542,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.487,"geometry_index":5365,"location":[5.274359,46.370346]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,327],"duration":82.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":74.396,"geometry_index":5366,"location":[5.274232,46.370473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,185],"duration":27.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.849,"geometry_index":5405,"location":[5.273979,46.396449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":34.679,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":31.204,"geometry_index":5416,"location":[5.275755,46.405312]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,347],"duration":74.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":66.719,"geometry_index":5432,"location":[5.277124,46.416409]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,202],"duration":1.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.321,"geometry_index":5466,"location":[5.271502,46.439228]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.944,"geometry_index":5467,"location":[5.27178,46.439668]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.27222,46.440301],"geometry_index":5469,"admin_index":1,"weight":6.53,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.264,"bearings":[28,48,206],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.273955,46.442325],"geometry_index":5474,"admin_index":1,"weight":6.826,"is_urban":false,"turn_weight":1,"duration":6.481,"bearings":[35,191,214],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,221],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.475,"geometry_index":5478,"location":[5.275639,46.443855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":2.044,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.84,"geometry_index":5479,"location":[5.27578,46.443971]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.389,"geometry_index":5480,"location":[5.276367,46.444416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":4.21,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.895,"geometry_index":5482,"location":[5.277155,46.444981]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.832,"geometry_index":5484,"location":[5.278479,46.445825]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":2.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.497,"geometry_index":5485,"location":[5.278761,46.445995]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":0.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.746,"geometry_index":5486,"location":[5.279629,46.446495]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":51.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":46.788,"geometry_index":5487,"location":[5.279885,46.446642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,204],"duration":0.745,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.67,"geometry_index":5509,"location":[5.294166,46.458104]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,202],"duration":127.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":114.434,"geometry_index":5510,"location":[5.294284,46.458301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.546,"geometry_index":5563,"location":[5.313275,46.491872]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":2.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.096,"geometry_index":5564,"location":[5.313329,46.492036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.313541,46.492672],"geometry_index":5565,"admin_index":2,"weight":20.214,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.873,"bearings":[11,56,193],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.313735,46.49885],"geometry_index":5580,"admin_index":2,"weight":8.343,"is_urban":false,"turn_weight":1,"duration":7.958,"bearings":[122,172,350],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":153.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":138.185,"geometry_index":5583,"location":[5.313157,46.501134]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[26,34,207],"duration":3.713,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.323,"geometry_index":5636,"location":[5.329147,46.542285]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,204],"duration":12.308,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.077,"geometry_index":5638,"location":[5.329804,46.543262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,196],"duration":9.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.567,"geometry_index":5646,"location":[5.33159,46.546634]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.3326,46.549244],"geometry_index":5649,"admin_index":2,"weight":33.874,"is_urban":false,"turn_weight":1,"duration":36.533,"bearings":[14,190,194],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,208],"duration":17.945,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.144,"geometry_index":5668,"location":[5.339487,46.560053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,201],"duration":98.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":88.354,"geometry_index":5675,"location":[5.342765,46.564669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":97.075,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.367,"geometry_index":5712,"location":[5.359362,46.590204]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[35,44,215],"duration":4.126,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.707,"geometry_index":5744,"location":[5.37126,46.61659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,217],"duration":16.597,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.937,"geometry_index":5748,"location":[5.3723,46.617568]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":9.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.484,"geometry_index":5758,"location":[5.377144,46.621132]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.38021,46.622937],"geometry_index":5761,"admin_index":2,"weight":26.3,"is_urban":false,"turn_weight":1,"duration":28.118,"bearings":[49,222,230],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,213],"duration":91.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":82.099,"geometry_index":5772,"location":[5.387887,46.629001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":48.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":43.938,"geometry_index":5801,"location":[5.409037,46.650639]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[28,34,209],"duration":4.308,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.979,"geometry_index":5819,"location":[5.421188,46.661682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":9.685,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.959,"geometry_index":5822,"location":[5.422006,46.662755]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,204],"duration":7.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.082,"geometry_index":5827,"location":[5.423689,46.665228]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.424907,46.667284],"geometry_index":5831,"admin_index":2,"weight":28.73,"is_urban":false,"turn_weight":0.5,"duration":31.375,"bearings":[22,190,201],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,219],"duration":2.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.895,"geometry_index":5848,"location":[5.431789,46.675527]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":101.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":91.069,"geometry_index":5849,"location":[5.432379,46.675997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":134.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":121.226,"geometry_index":5868,"location":[5.469027,46.697007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.246,"geometry_index":5936,"location":[5.507845,46.730259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":5.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.06,"geometry_index":5937,"location":[5.507992,46.730693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":50.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":45.385,"geometry_index":5938,"location":[5.50859,46.732466]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":0.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.687,"geometry_index":5959,"location":[5.510285,46.74859]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":26.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":23.732,"geometry_index":5960,"location":[5.51023,46.748815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,182],"duration":55.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":49.625,"geometry_index":5972,"location":[5.509328,46.756473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":0.185,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.171,"geometry_index":6001,"location":[5.516052,46.771712]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[31,42,211],"duration":1.948,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.795,"geometry_index":6002,"location":[5.516092,46.771758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":30.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.779,"geometry_index":6004,"location":[5.516516,46.772228]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,213],"duration":7.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.311,"geometry_index":6017,"location":[5.524179,46.779357]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.525622,46.781108],"geometry_index":6021,"admin_index":2,"weight":108.394,"is_urban":false,"turn_weight":1,"duration":119.346,"bearings":[27,199,208],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,208],"duration":46.625,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":41.955,"geometry_index":6056,"location":[5.538802,46.818515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":82.025,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":73.815,"geometry_index":6069,"location":[5.547885,46.830739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":0.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.587,"geometry_index":6089,"location":[5.568988,46.849224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,206],"duration":1.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.032,"geometry_index":6090,"location":[5.569105,46.84939]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[24,35,205],"duration":2.578,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.302,"geometry_index":6091,"location":[5.569307,46.849685]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":15.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.728,"geometry_index":6092,"location":[5.569741,46.850347]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.4,"geometry_index":6100,"location":[5.572593,46.854217]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.573836,46.855701],"geometry_index":6101,"admin_index":2,"weight":7.91,"is_urban":false,"turn_weight":1,"duration":7.477,"bearings":[29,199,210],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":31.379,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.019,"geometry_index":6105,"location":[5.575418,46.857663]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[15,23,195],"duration":28.117,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.288,"geometry_index":6115,"location":[5.579884,46.866432]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.58301,46.874429],"geometry_index":6119,"admin_index":2,"weight":9.731,"is_urban":false,"turn_weight":1,"duration":9.721,"bearings":[15,187,195],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":2.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.151,"geometry_index":6120,"location":[5.584096,46.877183]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":93.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":83.907,"geometry_index":6121,"location":[5.584365,46.877871]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":0.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.659,"geometry_index":6164,"location":[5.576807,46.90232]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":101.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":88.902,"geometry_index":6165,"location":[5.576562,46.902457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":169.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":147.904,"geometry_index":6205,"location":[5.554737,46.92971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[144,323],"duration":37.6,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":32.881,"geometry_index":6258,"location":[5.513017,46.973884]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[163,343,349],"duration":28.031,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.521,"geometry_index":6272,"location":[5.505117,46.98475]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.501114,46.993418],"geometry_index":6277,"admin_index":2,"weight":66.593,"is_urban":false,"turn_weight":1,"duration":74.982,"bearings":[152,163,342],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,308],"duration":23.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":21.234,"geometry_index":6338,"location":[5.476753,47.010075]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,334],"duration":3.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.436,"geometry_index":6366,"location":[5.469781,47.015985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,340],"duration":2.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.581,"geometry_index":6370,"location":[5.469125,47.016997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,344],"duration":2.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.456,"geometry_index":6372,"location":[5.468711,47.017797]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,346],"duration":8.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.715,"geometry_index":6373,"location":[5.468375,47.018593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":3.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.938,"geometry_index":6378,"location":[5.467552,47.021127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":12.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.078,"geometry_index":6379,"location":[5.467244,47.022103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":2.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.032,"geometry_index":6381,"location":[5.466114,47.025748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":8.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.754,"geometry_index":6382,"location":[5.465909,47.026399]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,348],"duration":2.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.504,"geometry_index":6385,"location":[5.465116,47.028933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":4.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.07,"geometry_index":6386,"location":[5.464855,47.029745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,345],"duration":0.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.796,"geometry_index":6390,"location":[5.464437,47.03103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,345],"duration":22.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":20.014,"geometry_index":6391,"location":[5.464334,47.031284]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,321],"duration":6.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.702,"geometry_index":6414,"location":[5.460021,47.037168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[136,313],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.101,"geometry_index":6419,"location":[5.458183,47.038581]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[133,311],"duration":7.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.68,"geometry_index":6420,"location":[5.457122,47.039265]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,308],"duration":8.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.042,"geometry_index":6427,"location":[5.454353,47.040763]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,309],"duration":10.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.596,"geometry_index":6428,"location":[5.451454,47.042289]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,322],"duration":11.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.887,"geometry_index":6444,"location":[5.447897,47.04474]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,327],"duration":10.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.4,"geometry_index":6452,"location":[5.444717,47.047877]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[147,328],"duration":11.584,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.997,"geometry_index":6454,"location":[5.442091,47.050646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,337],"duration":8.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.447,"geometry_index":6466,"location":[5.439403,47.053925]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,345],"duration":10.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.381,"geometry_index":6475,"location":[5.43813,47.056322]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,357],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.74,"geometry_index":6483,"location":[5.437355,47.05941]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":16.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.779,"geometry_index":6484,"location":[5.437316,47.059915]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[10,18,190],"duration":10.088,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.828,"geometry_index":6502,"location":[5.437849,47.064615]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,189],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.436,"geometry_index":6505,"location":[5.438527,47.067473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":14.803,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.434,"geometry_index":6506,"location":[5.438551,47.067594]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.438672,47.071866],"geometry_index":6519,"admin_index":2,"weight":3.855,"is_urban":false,"turn_weight":0.5,"duration":3.461,"bearings":[163,174,354],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.537,"geometry_index":6523,"location":[5.438481,47.07283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,349],"duration":5.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.502,"geometry_index":6524,"location":[5.438444,47.072983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,343],"duration":1.178,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.129,"geometry_index":6529,"location":[5.437916,47.074508]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,343],"duration":9.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.279,"geometry_index":6530,"location":[5.437778,47.074825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,333],"duration":0.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.453,"geometry_index":6542,"location":[5.436248,47.077419]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,332],"duration":4.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.402,"geometry_index":6543,"location":[5.436159,47.07754]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,327],"duration":69.389,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":64.168,"geometry_index":6548,"location":[5.435187,47.078692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[131,311],"duration":62.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":56.377,"geometry_index":6604,"location":[5.412091,47.090565]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,347],"duration":27.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":25.188,"geometry_index":6654,"location":[5.398803,47.105753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,340],"duration":2.699,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.424,"geometry_index":6668,"location":[5.395997,47.113548]},{"bearings":[160,339],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":6670,"location":[5.39561,47.114272]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"off ramp","modifier":"right","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"A 36"},"distanceAlongGeometry":111021.664},{"sub":{"components":[{"type":"icon","text":"A 36"}],"type":"fork","modifier":"right","text":"A 36"},"secondary":{"components":[{"type":"text","text":"Strasbourg"}],"type":"off ramp","modifier":"right","text":"Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"A 36"},"distanceAlongGeometry":3218.688}],"destinations":"Strasbourg, Lille, Paris par A 5, Dijon, Lons-Le-Saunier","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 39/Autoroute Verte toward Strasbourg.","modifier":"slight left","bearing_after":302,"bearing_before":307,"location":[5.258436,46.251526]},"speedLimitSign":"vienna","name":"Autoroute Verte","weight_typical":2966.554,"duration_typical":3277.618,"duration":3277.618,"distance":111021.664,"driving_side":"right","weight":2966.554,"mode":"driving","ref":"A 39","geometry":"k_~ewAgk}_Is`@`lAqVnw@e_@llAmWny@_Vdt@iSzj@aU|j@yPh`@iVtg@oO`Z}`@lr@{Xfc@mXl_@wQ`Wy[~_@gZb\\i\\f\\gVlTwUjRg^|Ws^nV_k@n\\g[hOsQbKaj@~Tcl@rSeZbJk_@hK_t@fPs}@|O}y@fLwc@zE{i@hFyy@rGmx@~Esz@vD}{@jCkx@nAicAb@aeA[aeA_BkeAaC_h@gB}YcBu`AiGef@aEae@sEocA_L_i@mHc`@yF}y@_Nq`AqQya@{Ig\\gHyDy@{EeAuc@wKah@_N}~@qWudA}[k|@uZkv@kY}z@m]{f@cTqb@yRyc@ySaf@gVsr@u^qr@m`@kp@a`@}`@{Vyi@_]oi@g^e~@in@}~@cq@s~@qr@e}@ss@efAo}@wbAa}@wpA_mAqk@ek@ec@ga@yd@}e@y{@{}@{r@ow@}WgY{]_]u`@c_@wpAekAwu@mj@uJ}Euh@g[il@i\\g@YakAwl@glAwl@mYmNm^kQox@ga@g]yQs]uRom@y]yi@u[iNiIwp@e`@qo@{_@__Acj@{u@kf@sg@__@iXsTgEkDiw@sq@q{@iv@q{@ct@iy@_p@cz@wn@ix@qj@i]kUgfA_s@}iAwu@ma@iXcmBooAarBosAi{@wj@iu@}f@}|@qj@ie@{W}[gPoa@wQg`@yNa\\oK_[mI_]mI{[sGk\\kFg_@qEsd@eEkt@cFw{@}Eyo@uD}`@yB}h@qCeh@uC_m@cBye@c@}a@\\w_@jAga@|Bsi@xEgj@jHy]xG{\\jIk\\dJag@jPsb@hQeg@vUmb@tUue@jZ}d@z\\cg@`b@}[rZwh@fj@ui@lp@_^df@e[vd@is@tgAon@paAuV|_@ci@`y@ug@`u@g`@jh@c`@dd@_`@~a@}F|FoSnRyVnTsDbDsb@`\\ib@nYgg@~Ykc@jTqe@`Tce@rPmg@hO}k@bNck@~Jgj@tGkk@`Ea[tAwd@l@s]Bmw@e@kg@}@sc@u@_|@eBky@eDy^cCa]gCcc@aFib@kGek@mL{j@cOwh@}OcsAad@{pAwb@qm@gQ{d@aLkh@_Koe@oGyB[mj@qFqk@eEu`BsKuxAsJmw@uFmw@iGyy@uHg_@gEet@wIoj@iImi@_Jok@aKo`@{Hej@mLggA{Ug`@_Jsf@cLmdB_`@wl@}Koi@qI{h@aFmi@gDii@oAej@HgXn@yZlAo_@fCwm@|Gw[hF{Z~Fyg@tLoc@zM_k@pS}m@nXeq@h^up@|b@sjAvx@igAfw@uBzAwbAdq@gr@ra@}f@~Vei@vUgq@dVyj@lPkd@nK_ZxFkb@xGwf@bGuk@nEa^xAo]z@e]Hkh@e@ch@}Aml@uEwk@}Guh@kIke@_Kkl@}Oo]{K}b@aPuj@mVaZ{NoZkPaSuLoRyLa^sVm^qXw[kXkRmQ{NmNq_@_`@yYi\\eYk]aIqKgFyGyZuc@mRmY{NyUkRg\\k`@ot@sIsPg^gu@eH_OwYyn@a[yp@}Oi]wd@obA{d@mbAk^eu@_]up@qf@w|@sN_VgWw`@c[ce@cZ{a@{c@ck@_d@}h@md@}e@oe@wd@u^y[yb@}]m`@yYeg@g]sc@oXkl@g\\iKkFeg@sUk]oOc\\aMyj@oRqf@cNsl@}Nmf@yJs_@cGom@cIcl@{Fae@uDot@aFqr@sDar@eEir@_E}~@aGye@gE}c@kEs]mEq_@aG{p@gMgi@_Muk@mPc_@yLc_@cNci@mTkj@}Wah@wX{V{Ni\\sSg\\{Tae@o]}b@w]wPgOqJmIeXuWkf@}f@g_A_eAoyBekCoo@mw@gnA}xAmg@ui@qb@ob@m^o[}[iVqYuSs[_Tok@m\\{WuMiYoMme@{QiPmF_UsGgIkBwf@gLeQeDe[sFaCc@m]qEs\\eDc_@yB{ZaA_Ve@}WA_f@h@sd@jBuZtB_J~@uPbBua@dFwy@pMkt@lLs]bGiu@pLgtBb]gsBt\\{gC`b@ocArPsaArOm_AhM{_@lEqj@vE}p@|Duq@jBwc@b@qc@Ksf@e@ek@aCuq@cEws@wGsu@mKkq@aMyw@kQe~@gWog@gQag@cR{f@oTwg@}U}a@sTkg@{XebAol@urB}nAyZeRml@k^qg@u[o`@sWge@m]ei@ed@if@qc@y^g_@a`@sc@}]ac@}Xa_@_z@kiAoy@egAuc@wk@cUuYma@me@{`@yb@_XwWag@wc@}u@yo@iY{TeSqOii@a_@mVoPaWwO_d@iW_@Sog@mXqX}McXqLie@yRif@aRo]wLmImCaSmGsi@}OmcBwd@mNmDkc@sL{YeIyw@uV{i@qSoUgJmUcKaVcLaVqLcOeIaOsI__@qTm_@oV{c@m[up@ke@qh@e_@qZuTakAa{@wlAg{@oj@{a@g\\kV_k@ya@ys@af@o_@aUsi@mYyj@gWyk@mTwxAad@}}Ayd@es@oWeZwMgUiLg^iRqk@w]{j@w_@{a@kYmUyOqs@id@aa@mTqa@wRkf@wRaq@}Tow@wT{w@aTcl@kQwe@_Qaf@kScf@oVed@oWup@md@_n@kg@{a@s`@{j@cl@u}@qaAkd@ef@sc@sc@}TmTy[iYsg@{a@iq@af@ap@eb@i^kSk]oQyTuKwn@aXsq@cVkp@cSsm@}N{q@{M_r@_Kqx@eI}pA}J{h@}Duj@yE_e@kFui@uHaw@yNyj@wM{c@oMgk@aR}\\gLqXqKw]sMioDyrAqoD}sA}u@k[yu@i^uk@e[ik@c]_k@u_@gj@qa@_`@sZg_@u\\u[qYgXmXe]g^{OiQcKgL}@eAkY{\\o]kc@g\\{c@me@sr@aBcCuU{^aRg[sRo\\wQy\\_NmWyBgEsn@ooAk|@{gBeSi`@cf@k_Aqj@w`A}a@uo@ua@_m@ae@en@qf@ml@ed@_g@sS}SqUkUoo@wl@at@im@am@kd@o`Aeq@}x@}j@gy@mk@cx@oj@yq@cg@ew@ip@gl@mk@wf@qi@_}AonBws@{|@ie@oh@sZuZuZuX}i@wc@cOuKog@y^aXmSyc@m\\wm@oe@mn@uh@qo@_m@cm@wo@qu@q~@ot@qcAew@ulA}b@er@q^kk@ai@{z@qa@ap@}a@ao@ka@yl@cc@gm@qg@kq@ah@_p@qi@wo@yk@_p@mTyU}XyY{d@ae@_f@ge@qcAa_Aqp@ij@ie@k_@_^mXmZcUaOoKcWoQ{YcScGaEib@_Xql@a^ga@{Ui^eScGgDwf@eWmc@kTek@iXi\\ePiVmLuVcM_`@sSmb@{Vsp@{a@es@wf@of@g_@eMaKwVaTqWmU_^y\\y\\e]iXsY}Zk]yY_^wXm]k\\{c@c]qe@c^ki@gb@{q@{OcXa`CklEi_A}fBoiA}wB{pGo|LkDwG}z@k`B}n@kxAsu@mjBswBmjGyg@{uAsj@quAch@mkAikAggCeWoj@mnCy`Gg`@wz@ex@caB_u@czAuVc`@{MoT{e@ev@ul@eu@qn@kr@}f@_f@ud@ka@oeGg{Esm@ii@_U}Reb@sc@ce@_j@yb@il@{b@yq@s_@aq@qM}VkL{UcQy_@eNq[sOe`@_Ni_@wRkk@_Rul@_b@gvAwV_y@sU{t@gOoc@_KiYwL_\\oJiVwKwWmLsXcNa[wOm\\sOk[iQ{\\{Re^g`@}o@m`@gm@uc@gn@ed@sk@oTeWcT_VqWiXwVuVmXwVuWkUg]wXk\\{Vc\\_Ug[cSmS_MyT_Mg[kPcN_HiOgHc^mOuVyJgT}HqWaJ}UoHyX}HePoEmf@}LyyA{]cZeHymBkd@m{HkjB}l@sMcm@gLqg@sHaSiCaRmBoWaCoYsBc\\{Aw]eAq`@g@__@CmZX{[|@ib@bBo\\`CeY`CsXtCab@tFeo@pJ}uAzUaMlBkw@bM{i@~H{}@tK}\\|Cu\\lCwz@tEs]nAs\\r@}j@h@mm@AuVYyUa@q`@gAgi@{Bah@mDse@_Egf@eFkYsDcm@gJkm@qK}c@mJcc@mKq^iJu]_Ks`@aMo]oL{]mMy[iMc[wMcZsMa[gOo[{O}e@mWwd@eXgW}OuWyPsb@{Yg`@gYiRyNmQuNsb@a^{AoAiXsUaC{BkSkRmR{QsYaZmXkXof@uj@{^ub@o\\}`@sp@_x@qdAmpA_\\{^a\\a^yf@_g@wb@q`@sBmB}f@ua@af@m^yYsSmKcHgn@i^}a@}Uoh@uV_bAya@odAi[qo@mPev@cNa]yF_^{Dw`AuGkoB}Ocm@_EyzA{Rkr@qL}n@{LowB}i@mqCa{@yjAqZiEiAs_AeTmaAuPcgAiNklG}s@yp@gIarAoQaiAwTyw@qSox@_Wqq@eW}j@aU_}@ib@a_A_h@{z@gi@y|@oo@mq@ui@ihBoyAa{@oq@__Air@ol@q`@yt@}b@a[iOsq@y^i~@mf@oz@ae@ibAwn@}z@sk@cw@el@iQwMmcAg{@ys@wp@qs@_r@egAokAaeAomA{eA}vAou@qfAk|D_hGuh@}v@y|@aoAokCsjD_b@ki@ib@mg@}a@ud@mf@me@_a@c^_`@qZyZqTuU{OkIiFmQsKkh@cZkF{CyRgKuV}My_@oU}XaQgd@oZud@c]ix@_o@w{AulAof@i_@oc@s\\kc@s[gIiGoQ}Ms[iTiv@wc@kg@iXuf@yVqZ}M_i@iTcr@uWmiAi]miDw`Au{H{zBszAac@af@iNms@cSckD{bA_j@yOmsJspC{_@kL_`@_Ku_@eIo_@kGab@iFib@}Cac@{Bo_@]m_@Aah@t@mYfAoYfBiY`CcY`DkYtEgYnFaY|G}XbIyZ`J{[hLiPhGwRrI{MnGkSvJ_b@zTaa@jWgMxI{IvGwQ~MiKdImQbOeQ~O_LpKgO`OcStSue@zh@ed@rm@ec@pp@wa@|r@}j@ziA{^tw@gf@|eAqGhNeWbk@_X~h@mrDvaIihA|dCwkA|bCc[dl@}[vj@qb@~q@ck@ry@}k@|v@cn@rr@sn@jp@yk@hh@}j@je@m_@jY{]dVcg@xZi]hRg]~Pk]hPc^hOc[tL_\\jLiZxJy]tJwV|GkAZqYtGmYbGgZxFe\\lEq\\lDi\\dDe\\bC}b@|C}b@lByb@l@uc@Dqg@]cqEmHotA_C}pHeLaY[_YCoYr@oY|AkYrBiYnCc`@zEq[xFq[dGyYlHyYlI{YzIyYxKi\\`Oc\\hPi\\bPi[lQqUfOoUdPwTnQaTbSqXvU{WfVwWvW{V|YwY~^iYr`@wWn`@eWdb@k[vk@sZhm@av@`|AsWth@_Xxg@wXdg@cYtf@wo@`dAgq@zaAkqI~nLw~F~fIyo@b_Amo@z_Awn@v`Aym@zbAuoG`zJ_k@`z@kk@tx@kXv^gXv]qp@fw@kq@|t@}l@|p@cq@xo@mq@pm@g~@`t@if@d`@mf@~\\sv@xf@ew@|e@cbAnj@sj@bY_k@pVuo@xWgq@hWcXbJ}^nMqkC~~@y}@b\\qrExaB{}Avj@yTpIkdAja@q`Aff@e_Azi@yu@fh@_t@jk@iq@bq@sKlKkKvKqKxKiK~KcVhX{U~X}KbN{KlNuKvNqKxNkK`OiKnOmWl`@eLvQ}KbRoLnQuKhRoUdc@eJdQiJjR_LxUoMnX}JfUiJhU_J`TwI|TmIrT}I|U_IxTeItUcHbWuHbVkHfViHnVcHpV{GtVqH`YmHdYcHdYcHhY_p@llCcFjSaFvRaIbZmFrRoFhRwItY}G|S}GtSgHbSiHxRuGzPuGvPaHlPcHjPmJtSuJhS}J~RaKhRmJ|PsJtP{JhP}J`PcOzTiOhTuOzS{OhSsJlLuJ~K{JxK{JpKeKfKeKbKgKxJkKnJ}KvJ_LnJcLdJgLxI}K~H{KzHaY`RcRvLwM|HqM~GyMhGaX`L}WxKwp@~SwUhGwUxFac@nJmSlEkw@jP_|@fRcrC`m@uoApWug@xK}|Bpf@gOrCeOjDwq@hOcSbE_SlEoRdEuSjF{NlEmK|CiK`DkKpDiKzDqWbKkW~KkNxGkN`HiNnHgN~HkMvH}QpLgLxHsLrIkRtNgRlOwLpKeQ~NgNrM}MdN{MpNwMbOoPtReP`SyO`TuOhT}Q~XuQlYwi@haAsJvRmJzRgJnSaJhS}Nl]KT}^n|@k~AdtDoLnW{EzJeFtJmMfVgFpJkFfJ_HnLcHbL}GxKEFeHxKyIrM}IfM_J|L_JpLkOhRmO~QmOdQqOzPoPjQuPxPuPtP_QnPwjAhgAupAzlAkzAfuAmFxEiZ~Wua@l^kGjFuGfFcPxLyPnM_Q`MeOjK}N~JsO|JwOlJgYvOuLnGsKdFgVtK_X~KyJrDuJdDeKhDiLhD}VdHyNnDcTvEwVvEo[~E_VzC_U|B{a@lCq^lAwJXkNPiTLqMFaVS_N[yU{@yGe@aJe@eJg@aJo@cJu@_JaAuS{BqSeCqSkCqSyCgV{DkyAiUk\\cF{y@}KqFo@mIeAof@yE_SiA}R{@uOk@aPa@_X[mPBs]d@yVt@ePt@wM|@qMhAwFf@iP~AqPvBsP|BqHhA}VzEqQbEqQlEkPvE{OxEyRrG{HjCyHtCqPpGkPdHkPrHsGbDqGhDgPtIsGnDoGnDmRjLcRtLqFpDcKpHuJjHyNhL{NpLoO|M_N`MoK~JmKfKeNxN}MhOiIjJcIrJ_IvJ_IdKqIzKoIdLiIlLeIrLwI~MsIbNoIlNkIpNeIzNaI~N}HhOwHlOqIpQmIzQeIbRcIhRgHrQ_HzQaH~QuGfRuGdRqGhRkGjRcGxRcGrR}F~RyN`g@_bAzlDeVp{@c^poAsO~i@uObi@qMrc@yMpc@iUvs@mJ`YoJzXkVnp@wJrWcKjW}HtReIlRqSre@oI|QoI|QkTdd@iD|GeQh]{Vje@{KvR_LvRaLdRcLfReL|QiLrQmLtQqLdQiOrTqObTyOxS}OnSyKfN}K`N_Yv\\wYf\\mLhMmL|Lm[l[cM`MkMhLmMnLkMhLqM|KuMzKkLrJmLjJaZzTwLbJwLpIyLjI}LfIaMjI_M`Ig[fRe\\`Rg\\lQcVvLgV|KiV~KiVlKwVvJwVjJcWxIeWlIy`@nL}`@|Kea@`Kka@jJ_g@lKeg@~JeoAxVit@lOsYtGsYfHmYvHiYjIcYbJaYnJeSlHi_@vMm[lMe`@pPaKrEkKzE"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep right to take A 36 toward Strasbourg, Besançon.","announcement":"Keep right to take A 36 toward Strasbourg, Besançon.","distanceAlongGeometry":180}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[159,339,350],"duration":9.6,"turn_duration":0.015,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":2,"weight":8.627,"geometry_index":6671,"location":[5.3955,47.11447]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,338],"duration":3.961,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":3.564,"geometry_index":6675,"location":[5.394583,47.116272]},{"bearings":[156,336],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":6678,"location":[5.394129,47.116998]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Besançon"}],"type":"fork","modifier":"right","text":"Strasbourg / Besançon"},"primary":{"components":[{"type":"icon","text":"A 36"}],"type":"fork","modifier":"right","text":"A 36"},"distanceAlongGeometry":309.646}],"destinations":"A 36, A 6: Strasbourg, Besançon, Dole-Authume, Beaune","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 36 exit toward Strasbourg.","modifier":"slight right","bearing_after":350,"bearing_before":339,"location":[5.3955,47.11447]},"speedLimitSign":"vienna","name":"","weight_typical":12.557,"duration_typical":13.965,"duration":13.965,"distance":309.646,"driving_side":"right","weight":12.557,"mode":"driving","geometry":"kmszxAwaihIkG^w[`Nky@z^cPjHmI`EgKrFuUtMsC~A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 76 miles.","announcement":"Continue for 76 miles.","distanceAlongGeometry":122656.297},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 36.","announcement":"In 1 mile, Keep left to stay on A 36.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 36.","announcement":"In a half mile, Keep left to stay on A 36.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 36, La Comtoise toward Strasbourg, Mulhouse.","announcement":"Keep left to stay on A 36, La Comtoise toward Strasbourg, Mulhouse.","distanceAlongGeometry":220}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[156,336,343],"duration":32.672,"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":2,"weight":29.395,"geometry_index":6679,"location":[5.394081,47.117072]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[5.394196,47.12353],"geometry_index":6710,"admin_index":2,"weight":16.744,"is_urban":false,"turn_weight":0.5,"duration":18.061,"bearings":[41,208,216],"out":0,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.398165,47.125383],"geometry_index":6721,"admin_index":2,"weight":71.496,"is_urban":false,"turn_weight":26.75,"duration":49.734,"bearings":[61,230,241],"out":0,"in":1,"turn_duration":0.015,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,263],"duration":27.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.957,"geometry_index":6773,"location":[5.417347,47.12952]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[87,94,267],"duration":3.445,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.094,"geometry_index":6787,"location":[5.428607,47.130028]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":24.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.008,"geometry_index":6788,"location":[5.430002,47.130079]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":9.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.902,"geometry_index":6802,"location":[5.439921,47.130608]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.443888,47.131086],"geometry_index":6808,"admin_index":2,"weight":91.867,"is_urban":false,"turn_weight":1,"duration":100.982,"bearings":[78,248,258],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":16.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.639,"geometry_index":6900,"location":[5.483484,47.135407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":5.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.086,"geometry_index":6920,"location":[5.489996,47.135855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":20.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.254,"geometry_index":6926,"location":[5.492138,47.136245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,257],"duration":1.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.574,"geometry_index":6940,"location":[5.500169,47.137919]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":13.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.17,"geometry_index":6942,"location":[5.500836,47.138018]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[88,94,267],"duration":4.873,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.5,"geometry_index":6958,"location":[5.506096,47.138467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,270],"duration":10.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.17,"geometry_index":6963,"location":[5.50807,47.138486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":12.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.83,"geometry_index":6974,"location":[5.512528,47.138226]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.517331,47.137588],"geometry_index":6981,"admin_index":2,"weight":133.635,"is_urban":false,"turn_weight":1,"duration":147.381,"bearings":[103,276,283],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.955,"geometry_index":7081,"location":[5.574097,47.146783]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[73,83,252],"duration":29.641,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.67,"geometry_index":7083,"location":[5.574939,47.146967]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.586426,47.148578],"geometry_index":7111,"admin_index":2,"weight":59.07,"is_urban":false,"turn_weight":1,"duration":64.529,"bearings":[83,252,263],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,220],"duration":107.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":93.797,"geometry_index":7185,"location":[5.611366,47.159278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":65.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":57.281,"geometry_index":7319,"location":[5.657783,47.171128]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":30.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.66,"geometry_index":7399,"location":[5.684609,47.181434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":16.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.109,"geometry_index":7434,"location":[5.696177,47.184044]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":0.184,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.146,"geometry_index":7451,"location":[5.702364,47.18591]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[74,83,251],"duration":10.74,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.658,"geometry_index":7452,"location":[5.702428,47.185925]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":16.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.703,"geometry_index":7464,"location":[5.706536,47.186339]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":10.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.322,"geometry_index":7480,"location":[5.712854,47.185896]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.716842,47.186196],"geometry_index":7490,"admin_index":2,"weight":7.805,"is_urban":false,"turn_weight":1,"duration":7.58,"bearings":[75,249,256],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":77.795,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":68.064,"geometry_index":7497,"location":[5.720307,47.186889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.236,"geometry_index":7598,"location":[5.755294,47.191571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,246],"duration":58.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.297,"geometry_index":7600,"location":[5.755913,47.191761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,278],"duration":21.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.941,"geometry_index":7667,"location":[5.783436,47.192792]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,258],"duration":83.594,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":75.219,"geometry_index":7695,"location":[5.793424,47.192662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,219],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.242,"geometry_index":7804,"location":[5.828572,47.203268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,217],"duration":65.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":58.932,"geometry_index":7805,"location":[5.828635,47.203324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.957,"geometry_index":7868,"location":[5.847787,47.213691]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[85,93,265],"duration":24.838,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.338,"geometry_index":7871,"location":[5.848626,47.213743]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.857651,47.215478],"geometry_index":7897,"admin_index":2,"weight":82.219,"is_urban":false,"turn_weight":1,"duration":90.262,"bearings":[58,227,239],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,213],"duration":24.102,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.285,"geometry_index":7992,"location":[5.885224,47.22802]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[36,46,218],"duration":3.688,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.393,"geometry_index":8016,"location":[5.891738,47.232406]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,212],"duration":16.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.033,"geometry_index":8019,"location":[5.892529,47.233198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,186],"duration":7.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.629,"geometry_index":8044,"location":[5.894449,47.237214]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":7.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.596,"geometry_index":8051,"location":[5.894424,47.239092]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.894369,47.240963],"geometry_index":8059,"admin_index":2,"weight":65.717,"is_urban":false,"turn_weight":0.5,"duration":70.514,"bearings":[4,175,182],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":32.34,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.906,"geometry_index":8125,"location":[5.910491,47.255341]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,221],"duration":28.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.07,"geometry_index":8148,"location":[5.919934,47.260983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.355,"geometry_index":8171,"location":[5.92525,47.267574]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[37,46,216],"duration":21.166,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.572,"geometry_index":8175,"location":[5.926045,47.268333]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.932035,47.272112],"geometry_index":8195,"admin_index":2,"weight":2.428,"is_urban":false,"turn_weight":1,"duration":1.551,"bearings":[63,227,241],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.793,"geometry_index":8198,"location":[5.932566,47.272294]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,245],"duration":9.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.248,"geometry_index":8199,"location":[5.932871,47.272391]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,250],"duration":31.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.766,"geometry_index":8206,"location":[5.937381,47.273469]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,262],"duration":31.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.043,"geometry_index":8240,"location":[5.950811,47.277636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,286],"duration":3.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.699,"geometry_index":8271,"location":[5.965384,47.2753]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,282],"duration":21.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.654,"geometry_index":8275,"location":[5.967145,47.275017]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":0.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.475,"geometry_index":8302,"location":[5.976815,47.276408]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":5.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.631,"geometry_index":8303,"location":[5.976975,47.276474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.32,"geometry_index":8308,"location":[5.978794,47.277166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,244],"duration":0.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.07,"geometry_index":8310,"location":[5.9789,47.277201]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,243],"duration":3.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.422,"geometry_index":8311,"location":[5.978929,47.277211]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[5.980101,47.277536],"geometry_index":8314,"admin_index":2,"weight":0.139,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.158,"bearings":[69,75,250],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.445,"geometry_index":8315,"location":[5.980146,47.277548]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":13.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.631,"geometry_index":8316,"location":[5.980301,47.277589]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.985303,47.278457],"geometry_index":8323,"admin_index":2,"weight":1.818,"is_urban":false,"turn_weight":0.5,"duration":1.34,"bearings":[76,246,257],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":9.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.553,"geometry_index":8324,"location":[5.985783,47.278537]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.604,"geometry_index":8327,"location":[5.98924,47.279087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":1.004,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.996,"geometry_index":8328,"location":[5.989821,47.279185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,257],"duration":113.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":107.914,"geometry_index":8329,"location":[5.990286,47.279259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.943,"geometry_index":8419,"location":[6.032805,47.300921]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":2.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.326,"geometry_index":8423,"location":[6.034613,47.302278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":7.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.396,"geometry_index":8426,"location":[6.035549,47.302855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":17.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.178,"geometry_index":8435,"location":[6.038504,47.304112]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":21.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.803,"geometry_index":8452,"location":[6.045298,47.305219]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,252],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.518,"geometry_index":8465,"location":[6.055502,47.305849]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,249],"duration":136.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":119.059,"geometry_index":8467,"location":[6.056157,47.30602]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":28.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.199,"geometry_index":8520,"location":[6.104702,47.321646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":4.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.689,"geometry_index":8537,"location":[6.114739,47.324866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.116297,47.325176],"geometry_index":8539,"admin_index":2,"weight":32.096,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":34.705,"bearings":[74,89,254],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.128474,47.328899],"geometry_index":8557,"admin_index":2,"weight":14.445,"is_urban":false,"turn_weight":1,"duration":14.543,"bearings":[66,206,242],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":43.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":40.52,"geometry_index":8568,"location":[6.133862,47.330186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":1.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.09,"geometry_index":8587,"location":[6.14972,47.334604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.086,"geometry_index":8588,"location":[6.150126,47.334749]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.150916,47.335022],"geometry_index":8589,"admin_index":2,"weight":9.795,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.891,"bearings":[65,243],"out":0,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":7.275,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.541,"geometry_index":8595,"location":[6.155727,47.336381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":11.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.729,"geometry_index":8599,"location":[6.158443,47.33693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,261],"duration":13.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.562,"geometry_index":8605,"location":[6.163,47.337551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":122.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":109.977,"geometry_index":8613,"location":[6.168428,47.337812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,273],"duration":6.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.898,"geometry_index":8649,"location":[6.215992,47.337849]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":87.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":79.105,"geometry_index":8652,"location":[6.218552,47.337849]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[81,92,260],"duration":27.865,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.072,"geometry_index":8694,"location":[6.251225,47.344458]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.262168,47.344611],"geometry_index":8708,"admin_index":2,"weight":8.342,"is_urban":false,"turn_weight":1,"duration":8.166,"bearings":[98,272,275],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":24.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.848,"geometry_index":8713,"location":[6.265395,47.344234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":0.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.803,"geometry_index":8731,"location":[6.274363,47.34173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":31.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.773,"geometry_index":8732,"location":[6.274674,47.341607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,261],"duration":25.195,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.654,"geometry_index":8758,"location":[6.28689,47.339757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,235],"duration":30.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.49,"geometry_index":8783,"location":[6.297702,47.343222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":59.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":52.047,"geometry_index":8809,"location":[6.309539,47.348867]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,223],"duration":5.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.016,"geometry_index":8883,"location":[6.325362,47.363942]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":11.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.371,"geometry_index":8886,"location":[6.327144,47.365361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,234],"duration":100.365,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.812,"geometry_index":8899,"location":[6.331131,47.368081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":0.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.449,"geometry_index":8972,"location":[6.376837,47.37426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":1.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.297,"geometry_index":8973,"location":[6.377078,47.374278]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.572,"geometry_index":8974,"location":[6.377764,47.374326]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.378065,47.374347],"geometry_index":8976,"admin_index":2,"weight":3.811,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.24,"bearings":[86,92,264],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":2.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.221,"geometry_index":8978,"location":[6.379744,47.374432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":7.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.99,"geometry_index":8980,"location":[6.380725,47.374461]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.383811,47.374476],"geometry_index":8986,"admin_index":2,"weight":9.979,"is_urban":false,"turn_weight":0.5,"duration":10.539,"bearings":[91,259,270],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,264],"duration":9.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.721,"geometry_index":8994,"location":[6.387962,47.374526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,251],"duration":147.869,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":129.367,"geometry_index":9005,"location":[6.391669,47.375107]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":1.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.188,"geometry_index":9213,"location":[6.442639,47.40308]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.443091,47.403397],"geometry_index":9214,"admin_index":2,"weight":15.316,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.525,"bearings":[42,69,224],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.448262,47.406583],"geometry_index":9228,"admin_index":2,"weight":3.41,"is_urban":false,"turn_weight":1,"duration":2.764,"bearings":[63,220,240],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.904,"geometry_index":9231,"location":[6.449316,47.406932]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":4.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.25,"geometry_index":9232,"location":[6.449727,47.407044]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,255],"duration":1.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.129,"geometry_index":9237,"location":[6.451525,47.407443]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,258],"duration":2.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.99,"geometry_index":9239,"location":[6.452015,47.407515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,262],"duration":1.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.664,"geometry_index":9242,"location":[6.452889,47.407615]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,266],"duration":40.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":35.512,"geometry_index":9245,"location":[6.453632,47.40766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":0.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.092,"geometry_index":9280,"location":[6.469113,47.40572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":5.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.584,"geometry_index":9281,"location":[6.469156,47.405722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,260],"duration":17.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.436,"geometry_index":9284,"location":[6.471121,47.405915]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":19.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.697,"geometry_index":9294,"location":[6.477317,47.407604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":0.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.367,"geometry_index":9327,"location":[6.484751,47.407176]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,299],"duration":45.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":41.172,"geometry_index":9328,"location":[6.484886,47.407126]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":1.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.109,"geometry_index":9384,"location":[6.500846,47.408938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":34.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.996,"geometry_index":9385,"location":[6.501243,47.409142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,266],"duration":6.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.244,"geometry_index":9402,"location":[6.511492,47.412157]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,271],"duration":78.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":68.299,"geometry_index":9405,"location":[6.51431,47.412169]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.648,"geometry_index":9447,"location":[6.544722,47.41031]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":3.803,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.326,"geometry_index":9448,"location":[6.545004,47.410349]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.546463,47.410572],"geometry_index":9450,"admin_index":2,"weight":5.725,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.562,"bearings":[76,97,257],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":13.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.055,"geometry_index":9452,"location":[6.548897,47.410975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":1.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.559,"geometry_index":9460,"location":[6.554053,47.411757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.554714,47.411823],"geometry_index":9463,"admin_index":2,"weight":3.904,"is_urban":false,"turn_weight":1,"duration":3.234,"bearings":[81,253,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":4.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.637,"geometry_index":9465,"location":[6.555958,47.411935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":2.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.834,"geometry_index":9468,"location":[6.557534,47.412023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":51.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":46.705,"geometry_index":9470,"location":[6.558329,47.412066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,240],"duration":0.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.428,"geometry_index":9507,"location":[6.577789,47.41467]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[59,62,238],"duration":19.924,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.924,"geometry_index":9508,"location":[6.577952,47.414738]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[60,220,239],"duration":12.457,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.203,"geometry_index":9512,"location":[6.58482,47.417519]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,248],"duration":75.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":66.062,"geometry_index":9520,"location":[6.589154,47.419072]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":21.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.018,"geometry_index":9557,"location":[6.618487,47.416841]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,258],"duration":9.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.037,"geometry_index":9578,"location":[6.627016,47.417179]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":4.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.945,"geometry_index":9585,"location":[6.630488,47.417868]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,246],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.77,"geometry_index":9589,"location":[6.632132,47.418322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":9.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.42,"geometry_index":9596,"location":[6.634444,47.419138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":2.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.885,"geometry_index":9605,"location":[6.637587,47.420571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":9.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.125,"geometry_index":9607,"location":[6.638258,47.420926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":53.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":46.984,"geometry_index":9610,"location":[6.641063,47.422522]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,265],"duration":18.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.027,"geometry_index":9653,"location":[6.65967,47.428796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,302],"duration":7.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.221,"geometry_index":9673,"location":[6.666146,47.427474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.236,"geometry_index":9675,"location":[6.667882,47.426683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":13.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.953,"geometry_index":9676,"location":[6.667951,47.426651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,304],"duration":4.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.119,"geometry_index":9677,"location":[6.669588,47.425913]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":7.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.301,"geometry_index":9678,"location":[6.670139,47.425644]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.670983,47.425231],"geometry_index":9679,"admin_index":2,"weight":22.236,"is_urban":false,"toll_collection":{"name":"Péage de Saint-Maurice","type":"toll_booth"},"turn_weight":15,"duration":8.27,"bearings":[127,306],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":9.988,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.723,"geometry_index":9681,"location":[6.671905,47.424786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.673913,47.423913],"geometry_index":9682,"admin_index":2,"weight":84.699,"is_urban":false,"turn_weight":1,"duration":95.684,"bearings":[118,291,303],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,233],"duration":94.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":84.656,"geometry_index":9784,"location":[6.692924,47.429909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,271],"duration":15.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.932,"geometry_index":9865,"location":[6.714668,47.43447]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":31.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.002,"geometry_index":9876,"location":[6.718585,47.434924]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":2.436,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.176,"geometry_index":9898,"location":[6.724758,47.438242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,214],"duration":0.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.23,"geometry_index":9899,"location":[6.725103,47.438591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.055,"geometry_index":9900,"location":[6.725139,47.43863]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.725606,47.439133],"geometry_index":9901,"admin_index":2,"weight":29.738,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":33.061,"bearings":[32,51,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.734934,47.444166],"geometry_index":9924,"admin_index":2,"weight":2.684,"is_urban":false,"turn_weight":1,"duration":1.877,"bearings":[76,206,256],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":0.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.096,"geometry_index":9925,"location":[6.735622,47.444278]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":5.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.637,"geometry_index":9926,"location":[6.735665,47.444285]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.922,"geometry_index":9930,"location":[6.737555,47.444595]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":20.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.15,"geometry_index":9931,"location":[6.73793,47.44466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,223],"duration":32.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.568,"geometry_index":9950,"location":[6.744356,47.447357]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,233],"duration":0.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.717,"geometry_index":9979,"location":[6.753166,47.453181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,231],"duration":12.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.895,"geometry_index":9980,"location":[6.753399,47.453309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,209],"duration":4.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.193,"geometry_index":9994,"location":[6.756212,47.455708]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.223,"geometry_index":9996,"location":[6.756999,47.456766]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":3.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.986,"geometry_index":9997,"location":[6.757046,47.456825]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.75764,47.457568],"geometry_index":9998,"admin_index":2,"weight":19.621,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.811,"bearings":[31,56,208],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.763768,47.461584],"geometry_index":10015,"admin_index":2,"weight":45.424,"is_urban":false,"turn_weight":0.5,"duration":48.59,"bearings":[42,207,225],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.611,"geometry_index":10041,"location":[6.776346,47.471078]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":26.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.844,"geometry_index":10042,"location":[6.776749,47.471419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,232],"duration":1.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.875,"geometry_index":10052,"location":[6.783645,47.476503]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":27.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.391,"geometry_index":10053,"location":[6.784255,47.476807]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":10.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.629,"geometry_index":10062,"location":[6.793582,47.480194]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.648,"geometry_index":10065,"location":[6.79739,47.481495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"bearings":[63,243],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":10066,"location":[6.798314,47.481809]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Strasbourg"},{"type":"text","text":"/"},{"type":"text","text":"Mulhouse"}],"type":"fork","modifier":"left","text":"Strasbourg / Mulhouse"},"primary":{"components":[{"type":"icon","text":"A 36"}],"type":"fork","modifier":"left","text":"A 36"},"distanceAlongGeometry":122686.297}],"destinations":"A 36: Strasbourg, Besançon, Dole-Authume","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 36 toward Strasbourg/Besançon/Dole-Authume.","modifier":"slight right","bearing_after":343,"bearing_before":336,"location":[5.394081,47.117072]},"speedLimitSign":"vienna","name":"La Comtoise","weight_typical":3663.43,"duration_typical":4013.672,"duration":4013.672,"distance":122686.297,"driving_side":"right","weight":3663.43,"mode":"driving","ref":"A 36; E 60","geometry":"_pxzxAaifhImEfAwFlC}MpHmbAdi@aFfCkF`CgGzBwGfBiFfAaEd@}DXkGJmE?gDMuCS}Fo@gIoAcKiBwYcFcNaCaSeD_SiDySqDoR}CuUsEkFsAgF{AiK{EeK{G_HyFeGmH{DgFeEkGaD}FaCaFcHyPyJcXuJuY}Kk]kKi^i\\ciAkF_KyEkQsEkQiFkSyD{OqE}QoEeRoEeRmEqRkEuRmEcSiEgScE_SaEeS{Jgg@{Ime@yIwf@iD{ReD}RaD{R_D{R{C}RwC_S_Hoe@_D{TqCsSoCqSkCuSiCkS_CkS}BmSqFah@cFog@aDw[iAoLkBwSiB{SeB_TcB{S_B_T}A{SyA}SwA_TsA_T_Dci@kA_TiAgTcAcTaAaTWoFiBya@eAsU}@wUgB_k@qAqi@oA}k@e@aTc@qTa@oTaAki@yBqtAiBstAo@cj@y@si@i@si@kBotA{AuoAeBevAaCsoBq@{i@w@ej@{@ij@eAeq@s@ua@eAui@iAej@sAej@yAki@gBsi@oAg\\uBmj@SiE}Bug@eDen@kCod@wCqd@oDki@cEsi@wC}^kB}SiBySmBySsBySsBwSuBuS}B}S_C}S_CsSaCqSoGkh@_Gyc@YyBaH{g@iHqg@qHqg@yHkg@{Hig@eIgg@kSeoAue@muCkLms@{K_s@yHeh@uHkh@mCwRoCkSmCoSkCsSeCuS_CwS}BwSyBqSuBsSsBuSmB_ToBeUkBgUaB}S}A}SyAqTsAaTqAcToAkTiAmTgAoTaAkT{@cTw@gTu@oTo@cTk@mTg@oTe@mTa@cTYgTWoTUoTOoTMiTGqTEoTAuTBgTHiTLqTLoTPmTViTZmT`@oTb@gTf@kTh@gTj@gTr@kTt@kTx@gT|@gTz@gT~@cT|Bei@~Bui@vBki@jByi@p@cVh@mU`@qUXoTTeULaUHkT@qT?sTMkTMuTWsTIeGSgN_@aSe@eTgAe]]aLy@iT_AeTgAcToAoTyAkTyA{SaBiTeBcTiBsSoBaT}C}ZoAkL_CwScEc]oIaq@}Gkh@kQupAgHog@cHig@_Hqh@sGsg@kCoSiCsSoEw`@eDe[uB_TyA{O}B{WcBySaB{SaBcTsAuSqAgToAgTgAiTeAkT}@}S{@eTu@gTo@wSk@_Tc@aTc@yS]aTYaTOsKQkUIsUKk`@Agf@BwDTe`@NaTVaTV_T`@_Tb@kTf@kTz@cY~Asc@z@_TjBya@ZeHdBa\\rAuUvBw^lHseApFav@lKypAtHy~@tKkrAdEoh@~Duh@xDuh@rD{h@lDqh@fDck@zC{j@nCwj@zB}i@nB{h@zA{h@jAmi@|@ii@\\}TP{SL_TPkTHgTDeT?yXEmYIqTMmTMoTUiTYgTYqSc@qTg@qTg@eTk@gTo@eTs@qTw@mT_AmT_AmTeA{SgA}SkAeToAcT{Bo]oCs_@}AsSwC{]oBcTmBqSoBqSuB{SqAiMoDa\\aC{SeCySgCiSiCeSoCsSoCiSqCcS}Kiu@oIki@qIqg@uIkg@_Jcg@iJ}f@mJsf@yJkf@}Jif@eKaf@gKmf@oKmf@iK}d@yk@ufC{Kke@{XykAai@y{B}[muAc[ssAeTy_AwKkf@kKse@sK}f@gKgf@aKef@}Jgf@uPez@qJmf@kJof@cJyf@{Imf@qDmSoDoSmDkSeDyRkIog@}Heg@{Hcg@uH_h@uCoSsCuSiCkReFg`@}D}ZcC{RaC{RiCgTeCyTaC{T_CyT{B}TqBsSoBuSqBaTeCaY_CaYwBkWoBoWsDsh@uAwSqA}SqAwSmAwS_AcQqAeWmCui@qAuYm@wN{B_i@uB{h@sBai@wLa`DyCmr@cAiTiA_TmA}SsAmT{AyT_BcTcBgTgBcTgBcTsB{SyBsSkCaVuC}UyCgU_DaUyCyS_DwSgD_SiDaSmD}RqDmRuDiRcEyRgEsRiEcRuEwRsE{QuE{Q}EoQcFiQoFyQoFkQuFeQyFeQyFuPcG{PmGuPqGsPqGiPuGaPaHqP}GmOiHwOkHkOmHcOyHkOyH_OaIwNaIuNaIaNkIcNmI{MyIaNoIcMsIcMcJmMeJ_MgJwLkJoLsOiR_QcSwV{X_b@id@wV}WkX_ZgWiYuJ}KoJaLmJaLmJqLyIeLcJoLcJ_MaJoMwH}Ka@k@uIsMwI_NkIyMmIsNaIiN_IuN}H{NsH}NoHaOqHkOeHmO_HmO_H{OsGuOwGgPoGePgGoPgGwPgGaQyFwPuFcQsFkQkFoQaFaQwD_NkGuUaF{RoE}QoEkRcE_RcEqR{DiRuDsRoDkRkDkScDyR{CoRuCmRsC}RsC{SgCqSaCiS_AgIcCeUuB{Ss@wHy@yIgBmScB_T_BySyA_TuAsSoAgTcAgR_AgRsAkX{@cSy@ySw@mTq@cTq@eTm@iTi@aTc@gTc@gT_Asi@[qT[_TY_TSyT_@e_@c@wi@g@y~@y@kyA[kj@Us^Y__@g@{i@[sT[sTa@kVc@uVg@uVk@}Tm@_Tq@sTy@}T{@aTcAuTiAkToAySuAqTwAcTeB}SkBkTqBiTyB_T_CuSmCcTsC_TyCySgDqSgDyRgDqR{DgS}DqRgEqRmEsRuEsRwEwQaFeRkFwRkF}QmFqQoFiQsFgQeG}QwF{PyFuPaPkd@qGgQkG}PwGeQuGcQsGwPsGsPma@yeAwGyP{X{s@gG_PoGkPwG_QiVyn@cPab@{GgQmGkP}Osa@}Xat@iPkb@mOka@cGoOyGkQgGmPaGkP_GyP{FmPqJwYoFaQqFoQgFmQ}EqQwC}KcFiSeEuQiEaS{DoRoDsRiDcSaDcSwCwSiCgSiC{SuBcSuBoSsBcTiBySiBaTgBaTaBmSeByScBmSgBaTgBoSqBmTqBmSuBcS_CuSiCkSsCcSyCaSeDcSkDqRsEqUiEoSuEyRuEcR}EaRkF_RoFkQ_GqQeGcQkG{PiG}O{GkPyGmOcHqOkHiOyH{OcHsNgHqNcf@w~@qHuNsHcOsHaOiHaOkHmO}GaO_H_PuGuOqGkPcGgPeGaQqFsPqFoQgFqQaFyQuE{QoEaRaEyQ_EgRuDiRgDiRuCkQ_DgTgCuRgCgTwBmR{AePkBwSkBeT{A{S}A}SuAySuAcToAeTmFm}@wA{SyA}SyAwSeBiTkBgSqAaN_CoToCsToAwIcAkHaDqSgDoRwDcS}DyR_EiRgEaRsEoR_YsjAoEoRkEiRgEoRyDyQuDmRgDcRiDuSmEmZ]_CuEk`@uBmUmC{]aC}]iBoa@_Am\\UwJMwJMwKEwKAcLBaLJcYV{S`@cTh@iTn@mT|@uSlBmf@nCim@zBog@|@iTt@mSp@uSj@{Sf@{SZsSFgKJuP?w]Sc^s@c^m@uQs@_RqAwVcBcXqBcWqC{ZqBeS{BoSeCeTaN{gAgGsg@gCyScCkSaCqSuBuSsBySmBiTgB}S}A_TsAcTkAkT_A_Tu@cTo@mT_@{SYuTOkTCmTBoTNkT\\aTb@aTh@cTt@gTz@gT`AiTfAySpAiTnAaTtA}SxAcTrE{l@jIgdAdE}h@|A{S|AySxAaTvA}SrAiTlAgThAeTdAoTz@mTr@kTn@qTh@qTZkTL_NFgVAwTKsTUaUa@kUm@eTu@wT_AiTg@iIiAiTuAqTeBiTkB}SwBoTaCuSkCmSqCuS{CkSgDaSkDoRwDqR_EgReEaRsE{Q}EaR}EyQeF{PeFaRiFcQiOsg@yFiR}FcRuJa[uJ}ZcN{a@}FwP}FsPoFsPsFcQkF}P}FoRoFsQmFuQsF{QeFuQeFoQaFmQgFiR}EuQcFuRwE_RuE_RqEcRkEaRiEgRcEiR_EcR{DqRoFyXmDaRoDeSiD{RgDiS}CwRyCuRyCwSsC{RiC_ScBsMiC_TwBeReCgUyBuSwBcToBaTiB}SeBcTcBaT{AcTwAwSoAcTmAcTeAuSgAuT{@wSy@uSu@wSs@mTm@uTk@eVe@aWa@uT[sTYuTOsTMuTMoTGqTG_T?sTBwTBaTHuTJkTLmTd@_i@l@qi@t@qc@^uTd@uTd@mTd@qTtAmj@~A}i@p@gUp@wSjBki@pBej@vBmi@xB_j@|@kTx@}S|@uT`AsTlL}hCdAkU`C}i@`AuTz@qTz@cTv@yTt@kTp@gTl@yTh@qTf@sT`@cU\\kTRsTLwTJyT?mTCaUK_US_T_@aUg@yTo@mTs@uT}@cTkAeTuAkS{AgSkBkTgCkX}BeSkCsSoCmS{CkScD}RkDqRwDwR_EkRiEkRoEaR}EcReFuQoFsQ_G}Q{F}PiGaQqG{PsGmPyGmP_HcPiGsNWo@cHaPmHcPsQk`@qQc`@qQg`@qQ_a@yGqOwGePwGmPmGsPgGwP}FcQsFkQcFoPaF}QsEoRcEeRwCwNkDcRiD_SaDySmCiSiCuS{BcTqB_T}AsSyA}TmAgTaAuTo@gTg@mT[oTMqTGqT?_UHeTHwTNwTh@kj@~@u_ALyTF{TD}TCqTK}TWwTa@yTk@uT{@qTeAkToAkT_BiTiBaTwBaTeC_TmC_TwCkSgDkSoD{R}D_SiEwRqEeRkFkS{EyPwF}QuF}PiG_QkGmP{GwP_HiPwHqP}GyN{HmOwH{NeIcOeIiNqIoNqIcNsIyM_K{NaKuNyJeNoJ_MaJmL}JmMoB}BwF}GmJoLuJ}KyVkYyVwX_WsXqo@_r@qW}XyViXqVkXoVqXaV{XcVkYeJeLcJgLcJgLoJ_M_JyLcJcMyIcMwIgMoIeMoIyMsIgNcIoMcIgNaNmVsHqNmHqNoHkOoHwO}GoOsGkOuGcPqGkPgGqPaG_QqFsPkF{PiFmQ_FsQwE_RiEwQaE_R_EyRqDsRgDmR{CwRwCmSmCgSaCgSwBmSsBuS}AqRyAwSsA_TkAuScAcTy@cTu@aTq@eTo@mTK{D_@gNi@cT]aOuAop@uAoi@m@}Ss@sTy@_TaA}SkAkTsA_T{AeTaB{SkBwSuB}ScCiTiCkSyCmS{C_SgDcSqDyRyDqRcEgRmEmRoEuQcFaR_FiQsFyQqAgEeDeKyF{PyFyPeGwPeGuPgGsPiGqPkGoPiGaPmGoPmGsPiGiPeGqPcGoPaGyP}FwPwFcQuFmQkFiQcFsQ{EuQqE_RkEkReE}RqD{QmDsReD{R{C{RqCkSiCoSaCmSwBoSsBySmBqSiBsSmBiTqEkh@uEih@_Fsh@qBiSyB{S}B}S}BmScCiSkCwSqCuSwCmS}CuScDiSgDcSmDyRqD_SwDoRcEeS_EeRkEyRqEkRsEeR{EcRaF}QiFsQkFoQ_GaRaGiQcGyPkGuPuGoPcHiPcHuOoH{OwH{N_IyNgIeNmI_NyIgM_JiMcJoLsJgLsJyK{JiKcKuJmNeMwHsGsKoIwKmIiN_KmT_OyYaSqZ}S_LkIwKmIuK_JsKkJqN_NyCuCcCiC}JuKoJaLiJmLgJ_MmJ}M_ImMoIuNaIiNsHqNqHaOoHqOgHkOcc@caAyHuP}HePmHuNaIeOiI{NiIcN{I}M}IkMgJ_M_NoPwQiScRkQsJwIwFeFoOwLiLqIyL{HaMiH}EmC_FgCaFeCcFaC}EyB_FwBeFsBcFoBeFgBcFcBsMcEkMeDoMyC_NgCkF{@oFw@oFq@uFo@sFm@uQyAkJ]cN]qMO}MB_NNqMZy^lAmQn@sNb@mNb@aNVwMJsMCsMUkGSmESqMy@{MmAoM_B_NwBuMgCsM}CmMiDiM{DiUcImP{GyJ_FgKuFwHqEyKcHs`@eWyKoJwK{JcLwKkM_N_KiLuJsLmJaMmJgNwIyMmIeNsImO{JoR{H{OoHgPcHsPaHuQoGyQoGkR_FkO{EsOy^_lAgK{[aHmScI{T}GkQqH{PqHmPeIuPmIgPsI{N}ImNeKmOmK_OsJ}LyJoLoKkLsKcLuKcK}K{JgbAk{@mYwV_PyN}OoOsNuNqN_O{NaP{F_HwFeHmIqKkIuKqLwP_QyWyGqKyGyKwImOsIsOqLgUkLwUkMwXqIqRgs@y_Bsl@wtAsS{e@yLoX}LgXcHiO_I}OwHeOwIwO{IcOsI{MoJgNiJgMuJ{LwJiL_K{KgKeKkKuJoK{IsKqIaLiIwLmIeKuGun@e_@wf@uYoYsPwXwPeKsGeK{GkRuMoRgNoe@y_@wJiIuKsJsK{JgHcH{AyAaKcKgOgPgOoPoR{TuHgJmReViO{R}NeSaOmTwNuT}I_OyIgO}JwQsJmRaMaWaHsO{G_PeGyOuF{NsGaRmFuPmF}QyEkQiBkHcC{J}B}JaEaRwDoRoDuRwFs\\cFc]{WyqBkG{b@_Gg_@sHyg@yGoa@sDeSmGo\\yGc\\}Gg\\mE_R{Ho[mIe\\cIwYcJ}[gFgQiF}PeFcQ}FkRei@ebBgFmPqF{QkI{YwEuQsEaReEaRuDyQqD}R_DmRyCsRoCaS}BgS_C}SoBoS}AqSsAmSeA}SYgH_@mJs@{Te@qS_@kTIwSEySH{SVgT\\wSf@gSt@aT`A{RlAqSdAmOlAyOdBmSjBqR`CgUrBiRbCsSfCcSpCmSpCuSlO_dAdFi]vCqRbCcPpi@ipDnOmgAbHei@xCwWbB}NhD}]xCq^lCs^rBq^lA__@`@aTT{SRi^AcUOcT]yTk@kTk@qT_A_TmA{SyAeUeBwSoBoSyBySgCsSuCySgDqTeDkRoDeR_EuRqE}RuFoQwHoYiGiTeI}XcC_IK[wLka@kMod@mHeXiDwNQs@s@_DSy@uFcY_F_WsDcVWyAqAuHoCcPwE_\\cDiU}BoSqEkf@}KswAmMu~A_D_]kLwtAwMc|AgEed@cEic@sCa\\{NawAiKi{@iDuV{DuVuI{e@}Icf@iMkj@gMgg@sRio@oSym@{IqVsJqV_K_UmKsTkHeNqHeN{Rk\\ajA}eB}JgP_KwPuJmQcJaRaLuVoKyVeJcVuIiWwGsT{GoUgG}UoFcV}XswA{R_eAqIgb@qJoa@sHoXkIyXyIkXqJaX{GuPgHkPwHgPyHgO}HuNkI}NsImNaJeNaHaKgH{J}_@ye@saAggAatA{{Aco@os@}d@qh@mf@oj@cLgM_LuMyKqMoK{MiK{NaKkOaKcPcJoOwUkd@iJwRiIcSsGuPsGsQaGwQcGkRaF_Q_FkR}EgSeEkSmEmTqD_SiJci@kUmrAyDeUoE{UuIy_@aK__@cKy\\sKu\\aNk^wNa]mOm[sPkZkLwRsLaR_OcT}JuNop@{~@qQ}XyCoF{JmQkKqRyJoSgLeWoKaXkJ{WsIaWcGaSuFsScFkSqEcTi@iCaD{O}DgTuEeWmEoXwDkXeDcX}CgWwC}X_CkX}BiXmBuXgBcYoAgYiAkYsAaa@{@}a@O_KgAey@aEicH_@}b@WeTa@iZs@iTaA{W_By\\wBw\\sBkVcCmVgCgVyD_ZuCiQ_EsUeEgUoEaUkFkUcG}UgGuUyGeUuIiWqI_WkTcn@ew@qsBsl@q~A_m@_aBgVgq@}b@mmAmb@ymAce@ewA_c@ixAaTgt@uTcw@qHyXoR}s@aRqt@oM_h@_VsaAyVgjAkVkkAiZw|AiLwm@_Len@_Mos@sLwt@iYckBsZayBqYizBaPerAsO{pA}_@{dDyZchC_Fs`@{Foa@{Fia@mGga@sFk^iGc_@oDwS_Kii@kGqZsGyZwGwZ}GiZiKqd@_Lqd@yNwj@{Iy\\qZ_iA_Mic@_M{c@a[_iAoLmd@iLae@sIc^cIc_@kH{^{Gq^kFk[oFy[{Eu[qEo\\kFoa@gDgWaH}j@iImt@k[}lCwFea@iGy`@uGk`@oCcPqCgPiFgY_GyYoGkYsGiYwMmi@qNwi@cp@{aCwOgk@sOqk@}HsZgHi[aEyOuHk^oFkXcD{OaHka@aKan@qDsViDqVyE_`@wE_a@qEu`@_Ey`@uJyeAcK_jAeKmhAkEec@sEwb@gGyh@_Hyi@aIuh@uIqh@}Hoa@eIua@wIsa@cJ_`@aPip@}Qqq@ckAieEmCeLoWyaAaEaPaHkXaPkp@cOcr@cVsjAeLgm@mK{m@aH}`@_J{m@eEoZkIao@wGel@_H_p@qGmp@uEyi@yDyh@aEyh@{Cci@yEyaA_EobA}Byz@q@k\\o@g]g@i[Wc\\c@gy@Esc@Jkd@Hoc@^ud@jBssAv@mh@fAki@bCwcA|Ka}DnCujAz@cd@n@wd@|@uk@l@el@Zcl@Pil@Ein@Y}n@c@on@q@{n@qB{_AwB{`AiE{_BoEoaBac@qsOcCcjAwBekAaAcu@i@ku@[{{@Lis@jAy`BlHueEvCqjAtC}vAzD{nBhB{kBPes@Jew@]sr@o@sr@{@as@aB}r@iCav@{Cgv@qD}u@eEcv@gDie@yDkf@{Doe@kEef@aDy\\oD{\\mE}\\cE}\\eF{`@kFea@cGya@kGq`@qLas@wLsr@oNuu@aOyu@k_@olBca@apBw^siBmOaw@uMor@}S}kAiIwe@}Hif@iHyf@_Heg@uG}f@gGyg@kGol@wFal@yEqh@kEsj@{Dek@oDkk@yAuWqEm_AiBye@aBof@kAwg@y@sf@c@cZc@q[g@ew@Cm^Gcn@Jof@Vwf@~AsfAhFovBrAu[|Bke@bC}d@fFsx@rDaf@rDue@xDga@jE{_@vEc`@hF{_@vBiOzBoOfGq_@bGk]rGu]zGs\\fHc]|Hq\\dIw\\zKwb@lLec@nLib@|L}b@tFmR``@}qAnHqXfHkY`HuYtGoYzF{ZfF_\\`Fc\\lEu\\~CaYhCoZ~B}YrB{ZdBuXpAsYz@yYp@oYf@u[P_\\Im\\Ma\\WuQ]sQg@}Qi@aRoDgu@}B}YkC_\\uCwZeDaZeCiSkCaSyAqLsEsY}Fs\\mGu\\{Gi]}Gk\\mH_]wH{\\qHa[{HiZuJa^iKk^kKa^cLw]_FwNiKk[wKmZyK_ZeLkZkH}PqHmQmHwPcHaPkUog@kVyf@kVue@}Vqe@mdAalBmP}[uO_\\cG_N}FkNmFgNuFaO}GiSeGuSiGiTqF}S}E}SuEoTiEoTcE}TsG}`@wDwUaMqw@gFg[qFo[cGa[yGmZqEoQ{E_QyG_TmEuMwGqPcHgPuHgP{HeOcHqMmH}L{H_M}H{KsI}KsIcKcJkJ}IuImK{JcLgJoL}IiLqHsMiHcMmGaNgGoMwEuMcEsMcD}MyCsMiCqMgC}MwB{\\eF{MkBwOcCcHqAmHuAeHyAmHeBsGyAaHiBcHwBsIuCoIwCaI_DkIgD{I_EwIgEoIuEqIcFyQyLkQcM_QcNqPaOqIuIgIwIeI_J}HkJyHsJqH_KgHiKmHsKgEmGsDeGmD}FwDwGui@c`Aon@_gAqQk[_X_b@qUg^uU{]qSuYyQ{Vip@y{@_LeOwWu]OQuKsNsJ}MaZcb@oLiRgLuRaLqSmK_T{HiQeHsQaHqQoGaRuIaX}HeXiRsr@uH}XwHgXgIsXgIeXuIaWwJiWcKuVeKyUop@cxAwJ{TkJ_VcJwUqD{JkDeKgHgVaHqVsGgWaGoWyFuYiFiZcFeZqEcZwEeZeEmZaEsZsD{ZeF_c@uEsc@mEmc@_E}c@{Dad@qDqe@aIekAyBac@oBic@eByb@yAqb@{Agh@mAch@w@{h@k@yg@]{`@Oo`@CyWI_[Pqr@`@sc@xA{gAfBa~@zBe_AlGcyBbCa|@zBo{@jAsf@|@ig@h@}f@^og@Nsi@B}i@Cwi@]ij@i@ya@e@cb@s@_b@}@kb@eIqhCmIwyBmBgl@QiFc@aN_B{i@]{KK}DeDucBCgCi@id@O_WIeNIcZOit@?gh@Bck@@{JPoc@Vk{@Baa@Mka@[ma@S}O]eQu@qWaAgXcAaVmAkUsA_SyAuSkB_SuBuSgCiT{BmQoCcSqCwRqDiT{D_TcEkTiE_T}C}MmDoNiDaNsD_NyDoNcEqNsEoNuEkNcGoQkG{P_HyPcHgP}HkQ{HyPwIuQkIoP_HiNeHoNiHkNaHyM_c@s{@mHqOmHsOoQg`@kH}OyGcP{GcQkGwP{H{S}HyT}HiUqHgUwHuV_H_VcHqVcHsVuEcRmEoRmEuRmEuReEmR{DqRuDyRyDoS_F}YaFc[uE_[gEe[eD{W}CmX_DiXmCyXyBeUqByUkB_V}A_ViAsPeA}P}@aQy@cQgBgc@}A}c@m@qT]uTa@oTY{TUiTSkTMcTIqTi@ohCQ_W_@yWu@iYy@cUcBs[sBwY_Dy[qDe[aEaXqDyS}EcW{DqQmGkWeGcTyFcRaGgQqH_SqHkQaI{PeIePiJ{PqJyOgMyQaMgP}G}HyGwHyNoN{NgN}GwFoG{EgHaFaHoEuHcFmHoEyHaE}HsDkHuCkHmCqHmCgHaCsGqB}GkB_HcByGwAmHiAmHcAmHcAgHs@}h@_E}SiAoNqAuLoAmPiC{K{BoKgCsGoBoGuBsGaCcGcC{MgGgFaCiFqCcFyCeFaD{EeDiEcDqHeG{G_GmHsGqGiGeEgEeEyE}DyEsDgFiFgHcFkHoFkIgF}HmE}HwEeImEoIoEsIsXqi@eM}UmFqJgF{I}NuTeOkTyJkLcK}KsKoK}KuJsEmDiEcDyEgDwE_DcM{HcFwCeFoC{JqFwFsCiCsAcV}L{MsGwM}GgF}CcF_DeFkD}EkDgEkDoEmDkEwDmE}DaF_FcFgFyEiF_FwFyCwDwCyDuC_EsCeE{GgKeHmJcDwFwEmI{GmM{Py_@eL}XoN_]eLaXyKsVkKsRoIgOyRg[mj@ox@cWi]sIsLmIaMgIqMcIqMmNaWoKiTuJiTqJ_UwPqd@uE{NmEuNaGwSeIa\\wHi]{@oE_FuXgCiMyBwN{D{XuDa[iDk[qBcW]oEiAwOaA{Q{@_Ro@kR_@aSI_F_@_UU}\\EcNDcNLuMP_MrB_y@vB{e@pCme@zCoa@pDya@zE_d@fFgd@jJms@vJis@|Ms~@dF__@zE{_@|Fgg@|B}RtBsSxAkPrAiPpAiPnA{PxAeYdA{Xz@g_@X}NTmOD_M?kM@{MIiMa@sRCuAoAil@gHkjAIcAuGgw@{K}y@yL{p@wJcd@}G_Zw_@o`BmCsMmCeNeCcNuBsNoDqXoAeLiAkLaAiK{@}Ks@{Ki@qLe@cLa@qLYiLSoLKgICqIAiIBcJH}LJ}Lb@mPl@gP`AyRnAkSdAoMjAoMrAkMxAoMhByMlBuMvBqMbCwLrBuJxBsJ~BwJdCqJbBmGhAgE~DkN|Je]vJa]rJi]fCiJ~BsJzBwJtBcKdDuP|CcQjCkQzBoQ|BmT|@{It@{IbAuMx@_Nl@iNd@eNVuKX}KNyKHaLDcNIcOM}N[oOYyKe@eLg@iLk@_L{@sLaA{LeAyLoAqLeA_JkA}ImA_JwAyIsBwL{B}LiC}LoC_McBwHmBqHgF{QsFqQ}FcQ}CuIaDsIcI_SaTgh@qVal@qL_Ycz@eoBwKyWy`Ac~BeG}N{F_OgFgNQc@sFaPmNyb@kMce@eKye@}Hid@qH}e@{Fee@wE}f@kDie@oBy^_B}b@cB{iA_@kp@_@sr@f@cjAfAo|@zAcw@~CcbAtEqbAjEyu@dJgrAjHybAjNq`BzFso@bK}gA|JkiApRccC~Gu`AfCe`@xBu`@lB{^bBg_@rBke@~Aaf@bAg`@t@y`@`BwgA\\yf@Rog@D_^?u^Mq^Yq^Ya]e@k]m@}^q@u[y@a\\{@u[aAgYeAgYkBua@qBo`@_C{`@}@aPeAiPaCc\\mAsPuEal@gFcm@uGos@oOsbBsHwy@aEmc@mGkq@wCw]qF_n@{Doi@aCs^oAyWk@aMe@_Kq@gNiCoi@uAgb@{Asf@o@mc@c@mUi@{Uk@yYw@gw@G_r@Hal@VmVJqULgb@Tgb@z@i{AZ_m@Hqm@Im\\Uw\\a@q\\s@y\\u@mV_AkVeAiViA_W}AmWiBgXsBmW_CuW{E_d@uFyd@wFq`@iF}[gGs]}G}]mEgTaF_UaFwTiFwT{Mwf@gOkf@cNed@yJc\\{F_SgCeIwc@_yAky@}pCgk@klBma@}rA{Tcv@iLi`@yKu_@_Mgd@oIy\\}GkZaGeZqFc[qEo[aCkQ}BgQoBmRaB}QuBkYgBoYsAgZeAaZe@yQ[_RMkR?aR@wUNuU`@uUn@eUt@oT|@_UtAiVrAcTfDsj@nDwj@tDun@|Dqn@xKeeBnHqmAnHylAza@exGra@kxGzK}dB`HmkAnCoe@|Boe@`B}`@rA}`@~Ach@x@yYb@cTZiTZcTPkTRe]Ds]GkYSo\\e@gf@UyR]uRk@eUu@cUq@}T{@aU{AgZ_BeZiBcZwBmZaCq[uCy[gDa^{CeZsEaa@aF{`@cGgb@mEwY{EcZeF{YsF_ZuEwT}EiTeFwTgFiTkFsTyEmQuFuSwFkR{Jq\\kKq\\eLy\\mLy[eFwNuF}N{FwN{FsNaGsNwE_LmN}[mNu[qN}ZwcAuuBq_@yv@a_@yv@kPo]kP{]iRqa@eMs[gIcSgIySeSwh@{H{SoHySqHoTsH_UkGgRaG}RgG}RyFyRoFyRsFmSoFgScFkSuFaU}FqVoFcVcFmVuD_RqDcSaDsRkD_T{Fy^oFc_@{Ek_@uEy_@_Ek]oDu^wCs^kC__@aCi^sBg_@wAuYmAeZy@wZq@cZUaZByY^iZv@wYhBg_@fCo^pA_N|AiNfBcNrBiN`CaOnCwNvCwN|CuMpEiRtE{QhFkRnFsQvF}QlE}MrQmh@x]abA~@iCbm@ieBxOma@xXws@tMi[bLi\\pu@o|BhDqMlFcS|BgInBmI|EcUjEeUdEqU~DaVrCiTnC_U~BuTvBaUlAcOfAcO~@cPz@oOpA}[~@yZBm@ZiRJyRJcSDuRMgMK{MY{NY{Lc@eN_@_Ne@mMk@sMiAmQoA_RwAyRcBiQaCkUeAoIaAqI{C_TeDsSkCmNsCmMuCmMwCqL_CoI{B_IaC}HcCsH{BwG{BeGeCgGgC{FaDaH{CaGiI_OaEcHwDcGeEgG{DkFaEcFeEwEmLoLsFyEuFqEyFgE{F{DmDyBkDuBaJ_FiJuE_JeEoLgFw^sOaJ{DiJ}DqDeBqDeBkDeBkDkBuE_CiEaCqEkCgEoCwE{CgE{C}FuE{F}EgEgEiEiEqEoFiDkE{BqC}B}C}BiDsBcD_EqGyDuGsDyGkDcH{CwGmCkGmCeHeC{GgCwH{BeH{B}HsBuHqBsIgBgIiBmIcBqIwAeIqAcIqAsImAcIkBmNiB{NeE_^eFsb@eFwb@_AkG}@cGcAoGgAgGeAoGeAcGaAoFcAoFuC}L_DcMcDmLgDwK{C_J_DwIuDyIoDcIyDuH}DsHaEmH_EgH}QeZuRmYyRsXmRcYwLyRqKgRkFgKaHgOmC}GmDoJyFgPcFeQkE{QuD_QaCwM{BqNcBmNqAyNyAqQgAuRw@yS[sQMaLBwKDaLRsLZ}Nl@yOjB_]nAyS|AsTrEuh@~Kc{AxA_VzAkVhAeWfAqVh@eO^cP\\}ORcPPgQF}QGmQUuRc@mTe@}Rw@{ScAgSaCm_@aDg_@kD_]eBcNqBkMgCmPsCqP_D{PgDqP{CuM{CkMaDgM_DkLqJmZ_KgYqEyLsEkLcGmNiGmMyEkJeF{JwNcVmMcSuMuRsLiOeMaOq[k\\yTqTmAgAm^e\\gZiX{XyWgU}T_RwR}TmWkP}T{I}LqM}RiO{W_J_QuKgTeLyWoIoSeJoWiKw[aIkXaG_UuHi\\aJic@sGu_@eFq^iGgg@gDw]_F_j@MuAaAmKaHix@{Eqg@k@yFaCmV}B_S}ByQmC_S}CiR_EkTaEoT_FyTyE_TcFsReFiQwL__@mMu^gHqQuHgQcIeQyH}NoS__@gTi]iA}AwEsGcHcJqQuTmV}WcWoVsWuVcKoJ}JeK{OaQcPcRoO{R{NcT_QeYcPmYkGwMwFuLsFeM}EiLsF_OgF}MuFmO_FoNeKe[yJy[qJuZkKw[iJ_XaEcLgEeK_GqMgH{NkHiNuHgN}HiMaGgJkGaJsGkIoGiI_GuG{FyFuOqOyIeIiJuHmVcRam@ca@aSaNuB}Amm@cd@}JmIcHsGgH_HyEmEuEyE_FmFiE{EmUoZcSsZoLiT{Swb@kSmg@qQed@kj@kqAiKyT{KmRmH}LkOeUiPmS}QgRoU}RqOqK{YcSct@s`@gl@{\\_e@uZia@c]cPgPcQwScOeToRw[}Qi_@_Ok_@eLk\\uY}dA_ZahAsReq@iQke@oPc^iImPwPoYuZsd@gSaWiTeX_`@ud@uh@}n@{d@ok@ea@uh@_`@gi@uYcc@_`@ym@oW_e@kXii@m[ut@_Rce@{Syl@yQyl@yQqo@wOem@q[qoAgUe`Akb@cgB_P}p@g`@w_Bo[srA{ZyoA}WqhAsRwx@kb@qeB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":73848.914},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 5.","announcement":"In 1 mile, Keep left to take A 5.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 5.","announcement":"In a half mile, Keep left to take A 5.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 5 toward Karlsruhe, Stuttgart.","announcement":"Keep left to take A 5 toward Karlsruhe, Stuttgart.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[61,70,243],"duration":6.082,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.059,"geometry_index":10067,"location":[6.799955,47.482375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,240],"duration":5.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.811,"geometry_index":10070,"location":[6.801923,47.48312]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,242],"duration":10.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.289,"geometry_index":10072,"location":[6.803823,47.483824]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,243],"duration":18.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.137,"geometry_index":10074,"location":[6.807264,47.484994]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,215],"duration":2.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.246,"geometry_index":10085,"location":[6.812476,47.488102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,212],"duration":4.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":4.713,"geometry_index":10086,"location":[6.812899,47.488555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,206],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.238,"geometry_index":10088,"location":[6.813629,47.489542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":2.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.244,"geometry_index":10089,"location":[6.813795,47.489808]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.814112,47.490285],"geometry_index":10090,"admin_index":2,"weight":1.758,"is_urban":true,"turn_weight":1,"duration":0.732,"bearings":[19,196,204],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":7.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":7.621,"geometry_index":10091,"location":[6.814194,47.490443]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,192],"duration":2.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.572,"geometry_index":10094,"location":[6.814863,47.4921]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,191],"duration":6.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":6.695,"geometry_index":10095,"location":[6.815026,47.492653]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,190],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.613,"geometry_index":10097,"location":[6.815399,47.494105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,191],"duration":18.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":20.82,"geometry_index":10098,"location":[6.815564,47.494665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,211],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.17,"geometry_index":10109,"location":[6.818084,47.498894]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,39,214],"duration":6.078,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":6.83,"geometry_index":10110,"location":[6.818286,47.4991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,218],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.006,"geometry_index":10112,"location":[6.819616,47.500355]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,219],"duration":16.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":17.918,"geometry_index":10113,"location":[6.820045,47.500713]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.82462,47.503408],"geometry_index":10119,"admin_index":2,"weight":1.703,"is_urban":true,"turn_weight":0.5,"duration":1.113,"bearings":[53,231,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":3.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":3.461,"geometry_index":10120,"location":[6.82495,47.503578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,234],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":1.607,"geometry_index":10122,"location":[6.825909,47.504056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,235],"duration":2.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.562,"geometry_index":10123,"location":[6.826356,47.504265]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,238],"duration":26.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":28.525,"geometry_index":10124,"location":[6.827095,47.504583]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":0.678,"geometry_index":10132,"location":[6.835489,47.507603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":2.553,"geometry_index":10133,"location":[6.835689,47.507674]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.836446,47.507942],"geometry_index":10134,"admin_index":2,"weight":27.518,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.217,"bearings":[65,77,242],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.844649,47.511386],"geometry_index":10143,"admin_index":2,"weight":7.807,"is_urban":false,"turn_weight":0.5,"duration":7.135,"bearings":[50,207,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,227],"duration":4.775,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.896,"geometry_index":10145,"location":[6.846628,47.512592]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":1.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.648,"geometry_index":10146,"location":[6.847783,47.513505]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":26.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.869,"geometry_index":10147,"location":[6.848173,47.513823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.621,"geometry_index":10156,"location":[6.853634,47.520179]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.996,"geometry_index":10157,"location":[6.853735,47.520335]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.854061,47.520835],"geometry_index":10158,"admin_index":2,"weight":0.785,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.805,"bearings":[22,204],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":23.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.357,"geometry_index":10159,"location":[6.854183,47.521035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":8.467,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.023,"geometry_index":10167,"location":[6.857658,47.527179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,198],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.979,"geometry_index":10170,"location":[6.858663,47.52926]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,197],"duration":198.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":188.758,"geometry_index":10172,"location":[6.859131,47.530302]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,340],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.303,"geometry_index":10238,"location":[6.857321,47.580461]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":4.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.018,"geometry_index":10239,"location":[6.857136,47.5808]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,343],"duration":0.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.299,"geometry_index":10241,"location":[6.856585,47.581826]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,344],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.291,"geometry_index":10242,"location":[6.856551,47.581903]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.856308,47.582505],"geometry_index":10244,"admin_index":2,"weight":21.279,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.406,"bearings":[166,347,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":4.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.965,"geometry_index":10256,"location":[6.856933,47.588445]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[10,30,191],"duration":12.973,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.305,"geometry_index":10259,"location":[6.857287,47.58951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,352],"duration":7.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.377,"geometry_index":10267,"location":[6.857442,47.59279]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.856821,47.594723],"geometry_index":10271,"admin_index":2,"weight":13.551,"is_urban":false,"turn_weight":0.75,"duration":13.494,"bearings":[151,165,344],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":26.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":25.504,"geometry_index":10276,"location":[6.855726,47.598162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,360],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.088,"geometry_index":10288,"location":[6.856956,47.605124]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":25.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.436,"geometry_index":10292,"location":[6.856794,47.607006]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":8.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.064,"geometry_index":10303,"location":[6.856487,47.613495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.856958,47.615559],"geometry_index":10306,"admin_index":2,"weight":1.695,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.705,"bearings":[12,32,190],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,192],"duration":5.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.615,"geometry_index":10307,"location":[6.857094,47.615987]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":9.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.279,"geometry_index":10311,"location":[6.857612,47.61734]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.396,"geometry_index":10316,"location":[6.858722,47.619457]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":11.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.049,"geometry_index":10323,"location":[6.860671,47.622154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":3.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.951,"geometry_index":10329,"location":[6.862799,47.624643]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":4.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.777,"geometry_index":10330,"location":[6.863498,47.62547]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":52.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":52.561,"geometry_index":10333,"location":[6.864435,47.626545]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.447,"geometry_index":10360,"location":[6.880562,47.63578]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.117,"geometry_index":10361,"location":[6.880674,47.635876]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.880959,47.63612],"geometry_index":10362,"admin_index":2,"weight":10.605,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.896,"bearings":[36,42,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.882975,47.638213],"geometry_index":10366,"admin_index":2,"weight":6.961,"is_urban":false,"turn_weight":0.5,"duration":6.807,"bearings":[32,201,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,215],"duration":13.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.852,"geometry_index":10369,"location":[6.884345,47.639615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,237],"duration":13.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.23,"geometry_index":10376,"location":[6.887937,47.641889]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,258],"duration":13.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.955,"geometry_index":10383,"location":[6.89268,47.643115]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":1.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.545,"geometry_index":10389,"location":[6.897646,47.643526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,263],"duration":34.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":32.332,"geometry_index":10390,"location":[6.898268,47.64358]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.6,"geometry_index":10403,"location":[6.909922,47.645945]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":1.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.869,"geometry_index":10404,"location":[6.910126,47.646012]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[6.910756,47.646219],"geometry_index":10405,"admin_index":2,"weight":24.785,"is_urban":false,"turn_weight":15,"duration":10.32,"bearings":[63,75,244],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":6.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.209,"geometry_index":10408,"location":[6.914188,47.647402]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.916402,47.648175],"geometry_index":10409,"admin_index":2,"weight":11.756,"is_urban":false,"turn_weight":0.5,"duration":11.867,"bearings":[63,229,243],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.920418,47.649569],"geometry_index":10411,"admin_index":2,"weight":1.562,"is_urban":false,"turn_weight":0.5,"duration":1.137,"bearings":[63,229,243],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":11.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.559,"geometry_index":10412,"location":[6.9208,47.649698]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":25.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.988,"geometry_index":10414,"location":[6.924561,47.651018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":57.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.463,"geometry_index":10419,"location":[6.933349,47.654082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":2.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.201,"geometry_index":10434,"location":[6.951027,47.662575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":0.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.189,"geometry_index":10435,"location":[6.9517,47.663013]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.951756,47.663051],"geometry_index":10436,"admin_index":2,"weight":19.916,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.137,"bearings":[46,56,225],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.957945,47.666841],"geometry_index":10441,"admin_index":2,"weight":12.117,"is_urban":false,"turn_weight":1,"duration":12.359,"bearings":[51,220,231],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,236],"duration":26.295,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.664,"geometry_index":10445,"location":[6.961748,47.668667]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":9.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.166,"geometry_index":10450,"location":[6.970361,47.672007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":8.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.734,"geometry_index":10452,"location":[6.973242,47.673076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":7.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.168,"geometry_index":10454,"location":[6.975886,47.673982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":6.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.711,"geometry_index":10456,"location":[6.978032,47.674654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":19.865,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.873,"geometry_index":10457,"location":[6.979751,47.675178]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.981836,47.675806],"geometry_index":10459,"admin_index":2,"weight":26.16,"is_urban":false,"toll_collection":{"name":"Fontaine Larivière","type":"toll_booth"},"turn_weight":15,"duration":12.4,"bearings":[68,246],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,247],"duration":6.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.799,"geometry_index":10461,"location":[6.982976,47.676126]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,246],"duration":5.307,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.752,"geometry_index":10462,"location":[6.98422,47.676507]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,241],"duration":2.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.986,"geometry_index":10463,"location":[6.985503,47.676984]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":3.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.578,"geometry_index":10464,"location":[6.986064,47.677156]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.311,"geometry_index":10465,"location":[6.987224,47.677504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":18.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.391,"geometry_index":10466,"location":[6.987337,47.677538]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,244],"duration":96.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":86.812,"geometry_index":10470,"location":[6.993562,47.679514]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.158,"geometry_index":10495,"location":[7.020712,47.695188]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.020753,47.695228],"geometry_index":10496,"admin_index":2,"weight":20.031,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.264,"bearings":[35,44,215],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.025815,47.699889],"geometry_index":10504,"admin_index":2,"weight":14.068,"is_urban":false,"turn_weight":1,"duration":14.539,"bearings":[40,203,219],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,224],"duration":234.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":211.141,"geometry_index":10509,"location":[7.029054,47.70231]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,265],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.102,"geometry_index":10576,"location":[7.102522,47.7101]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":32.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":29.16,"geometry_index":10577,"location":[7.102984,47.710132]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.979,"geometry_index":10588,"location":[7.115083,47.71142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":40.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":36.152,"geometry_index":10589,"location":[7.115502,47.711479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":1.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.732,"geometry_index":10598,"location":[7.129942,47.714309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.130618,47.71448],"geometry_index":10599,"admin_index":3,"weight":27.426,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":30.48,"bearings":[69,83,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.140857,47.717502],"geometry_index":10608,"admin_index":3,"weight":12.355,"is_urban":false,"turn_weight":1,"duration":12.295,"bearings":[64,227,244],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,244],"duration":54.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":50.35,"geometry_index":10612,"location":[7.144954,47.718836]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":6.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.428,"geometry_index":10626,"location":[7.162919,47.725025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":7.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.545,"geometry_index":10629,"location":[7.165312,47.725678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":0.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.551,"geometry_index":10632,"location":[7.167849,47.7263]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":2.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.689,"geometry_index":10633,"location":[7.168069,47.726352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.227,"geometry_index":10634,"location":[7.169126,47.726586]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.169214,47.726605],"geometry_index":10635,"admin_index":3,"weight":4.729,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.26,"bearings":[72,89,252],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":26.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":24.002,"geometry_index":10637,"location":[7.171029,47.727]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.180269,47.728965],"geometry_index":10644,"admin_index":3,"weight":7.354,"is_urban":false,"turn_weight":0.5,"duration":7.623,"bearings":[74,248,253],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":3.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.053,"geometry_index":10646,"location":[7.183801,47.729629]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":28.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":25.078,"geometry_index":10647,"location":[7.185431,47.729908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":154.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":143.01,"geometry_index":10656,"location":[7.198716,47.732463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":0.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.514,"geometry_index":10703,"location":[7.270294,47.745766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":2.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.049,"geometry_index":10704,"location":[7.27053,47.745823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.271459,47.74605],"geometry_index":10705,"admin_index":3,"weight":7.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.184,"bearings":[69,82,250],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":4.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.824,"geometry_index":10707,"location":[7.273875,47.746693]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.275467,47.747149],"geometry_index":10708,"admin_index":3,"weight":1.398,"is_urban":false,"turn_weight":0.75,"duration":0.641,"bearings":[66,220,247],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":3.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.123,"geometry_index":10709,"location":[7.275658,47.747205]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.276601,47.74749],"geometry_index":10710,"admin_index":3,"weight":4.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.961,"bearings":[65,94,246],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":12.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.779,"geometry_index":10711,"location":[7.277855,47.747886]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.281762,47.749232],"geometry_index":10716,"admin_index":3,"weight":10.273,"is_urban":false,"turn_weight":0.75,"duration":9.09,"bearings":[61,227,242],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,241],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.039,"geometry_index":10718,"location":[7.28476,47.750359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":13.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.785,"geometry_index":10721,"location":[7.286314,47.750985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.189,"geometry_index":10724,"location":[7.290493,47.752794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":1.936,"geometry_index":10725,"location":[7.290549,47.752819]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,236],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.229,"geometry_index":10726,"location":[7.291114,47.753071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":10.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":11.127,"geometry_index":10727,"location":[7.291176,47.753098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.387,"geometry_index":10730,"location":[7.293756,47.754219]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":3.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.482,"geometry_index":10731,"location":[7.293883,47.754275]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":0.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.914,"geometry_index":10732,"location":[7.295001,47.754751]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.295299,47.754878],"geometry_index":10733,"admin_index":3,"weight":16.355,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":15.223,"bearings":[59,72,238],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":9.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":10.295,"geometry_index":10738,"location":[7.300713,47.756566]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,250],"duration":9.354,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":10.268,"geometry_index":10741,"location":[7.30429,47.757371]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":61.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":68.887,"geometry_index":10746,"location":[7.307709,47.758396]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,255],"duration":3.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.469,"geometry_index":10771,"location":[7.329903,47.764769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,251],"duration":7.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":8.877,"geometry_index":10773,"location":[7.331018,47.765011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":3.623,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":4.141,"geometry_index":10776,"location":[7.333736,47.765823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,240],"duration":5.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":6.742,"geometry_index":10778,"location":[7.334961,47.766292]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.867,"geometry_index":10781,"location":[7.336808,47.767194]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,230],"duration":0.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.314,"geometry_index":10782,"location":[7.337037,47.767324]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.337114,47.767372],"geometry_index":10783,"admin_index":3,"weight":3.273,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":2.854,"bearings":[49,62,227],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.318,"geometry_index":10784,"location":[7.337947,47.767863]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":2.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.115,"geometry_index":10785,"location":[7.338031,47.767913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,225],"duration":3.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":3.434,"geometry_index":10788,"location":[7.338791,47.768407]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,226],"duration":5.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":5.939,"geometry_index":10789,"location":[7.339645,47.768959]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.341158,47.769902],"geometry_index":10790,"admin_index":3,"weight":1.346,"is_urban":true,"turn_weight":0.75,"duration":0.537,"bearings":[48,217,227],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.357,"geometry_index":10791,"location":[7.34131,47.769993]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.341399,47.770046],"geometry_index":10792,"admin_index":3,"weight":5.439,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":4.855,"bearings":[46,53,228],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,230],"duration":7.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":8.139,"geometry_index":10794,"location":[7.342784,47.770904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,238],"duration":35.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":39.26,"geometry_index":10800,"location":[7.345077,47.772012]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.358395,47.774071],"geometry_index":10818,"admin_index":3,"weight":6.709,"is_urban":true,"turn_weight":0.75,"duration":5.426,"bearings":[96,263,275],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,280],"duration":2.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":2.461,"geometry_index":10823,"location":[7.360446,47.773864]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,283],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":0.971,"geometry_index":10824,"location":[7.361273,47.773732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":32.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":35.162,"geometry_index":10825,"location":[7.361599,47.773678]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":1.99,"geometry_index":10839,"location":[7.374154,47.77245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":2.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":3,"out":0,"weight":2.617,"geometry_index":10841,"location":[7.374869,47.772484]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.375809,47.772543],"geometry_index":10843,"admin_index":3,"weight":5.383,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":5.027,"bearings":[83,264],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,260],"duration":18.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.861,"geometry_index":10846,"location":[7.377837,47.772745]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,247],"duration":3.178,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.316,"geometry_index":10857,"location":[7.385177,47.774317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":11.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.195,"geometry_index":10858,"location":[7.386298,47.774671]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":0.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.357,"geometry_index":10862,"location":[7.390375,47.776069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.390495,47.776112],"geometry_index":10863,"admin_index":3,"weight":12.219,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.928,"bearings":[62,92,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":10.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.547,"geometry_index":10865,"location":[7.39464,47.777598]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.398217,47.778884],"geometry_index":10867,"admin_index":3,"weight":5.291,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.182,"bearings":[61,73,242],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,243],"duration":29.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":29.412,"geometry_index":10869,"location":[7.4,47.77953]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.410197,47.783204],"geometry_index":10872,"admin_index":3,"weight":11.633,"is_urban":false,"turn_weight":1,"duration":10.912,"bearings":[62,227,241],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,242],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.818,"geometry_index":10873,"location":[7.413871,47.784534]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":9.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.766,"geometry_index":10874,"location":[7.414157,47.78464]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.764,"geometry_index":10877,"location":[7.417267,47.785766]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":2.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.789,"geometry_index":10878,"location":[7.417534,47.785861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.418528,47.786215],"geometry_index":10879,"admin_index":3,"weight":29.178,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":31.551,"bearings":[64,75,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[78,251,255],"duration":6.494,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6,"geometry_index":10886,"location":[7.429939,47.789253]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,259],"duration":181.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":168.07,"geometry_index":10888,"location":[7.43244,47.789603]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":2.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.324,"geometry_index":10909,"location":[7.501588,47.778908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":0.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.471,"geometry_index":10910,"location":[7.502534,47.778706]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,288],"duration":3.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.551,"geometry_index":10911,"location":[7.502728,47.778663]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.504162,47.778348],"geometry_index":10912,"admin_index":3,"weight":5.506,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.971,"bearings":[108,122,288],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,288],"duration":5.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.539,"geometry_index":10913,"location":[7.506282,47.777884]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.508411,47.777401],"geometry_index":10914,"admin_index":3,"weight":4.104,"is_urban":false,"turn_weight":1,"duration":3.375,"bearings":[108,277,289],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.509629,47.777142],"geometry_index":10915,"admin_index":3,"weight":4.07,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.307,"bearings":[106,288],"out":0,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,284],"duration":10.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.918,"geometry_index":10917,"location":[7.511162,47.776858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,281],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.916,"geometry_index":10921,"location":[7.514943,47.776283]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,280],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.162,"geometry_index":10922,"location":[7.515686,47.776193]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,283],"duration":2.143,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.012,"geometry_index":10923,"location":[7.516128,47.776127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,278],"duration":10.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.363,"geometry_index":10924,"location":[7.516916,47.776048]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":15.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.076,"geometry_index":10927,"location":[7.520943,47.775781]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,273],"duration":4.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.01,"geometry_index":10929,"location":[7.526707,47.775546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,272],"duration":4.736,"turn_weight":1850.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1854.555,"geometry_index":10931,"location":[7.528279,47.775488]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,266],"duration":4.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.521,"geometry_index":10935,"location":[7.529942,47.775512]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,259],"duration":1.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.121,"geometry_index":10940,"location":[7.53165,47.775673]},{"bearings":[75,168,258],"entry":[true,false,false],"classes":["motorway"],"in":2,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":10941,"location":[7.532079,47.775734]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Karlsruhe"},{"type":"text","text":"/"},{"type":"text","text":"Stuttgart"}],"type":"fork","modifier":"left","text":"Karlsruhe / Stuttgart"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 5"}],"type":"fork","modifier":"left","text":"A 5"},"distanceAlongGeometry":73878.914},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Karlsruhe"},{"type":"text","text":"/"},{"type":"text","text":"Stuttgart"}],"type":"fork","modifier":"left","text":"Karlsruhe / Stuttgart"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 5"}],"type":"fork","modifier":"left","text":"A 5"},"distanceAlongGeometry":1609.344}],"destinations":"A 36: Strasbourg, Mulhouse, Belfort, Montbéliard","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 36/La Comtoise toward Strasbourg/Mulhouse/Belfort/Montbéliard.","modifier":"slight left","bearing_after":61,"bearing_before":63,"location":[6.799955,47.482375]},"speedLimitSign":"vienna","name":"La Comtoise","weight_typical":2537.609,"duration_typical":2596.125,"duration":2596.125,"distance":73878.914,"driving_side":"right","weight":4387.783,"mode":"driving","ref":"A 36","geometry":"m_bqyAed`~KcMge@wYkeAuDkMiQim@uXmgAmZypAul@gdC}U{z@eN_b@gOab@_Sad@wMaXkHoNaW_b@kPwU}OuSeP}QeSySi[mYo_@{We\\wSsOkIy\\yR{HcDuk@oSi[iJq]_Iqa@eIym@kJ}j@}J_b@iIeB]mk@yPiSiGsf@}Q}OmG{ZwOkNaIsKmGkXuQaYkSo_@w[{KsKgy@sz@eSoVkUyYeSyZwS_]eSy]}Vge@qb@u_Ayn@k}AsIsSuQgd@eJuUaL}Z{Rem@sLcc@sNgj@gRit@kPgp@{Jya@cYyeAae@ciBym@}aCmCoKwOin@aUocAqVkbA_XeaAoY}_A{Zs~@o\\}`AyO_c@yNq\\c[qq@m^su@}j@adAax@egA{RkW{r@i|@yeA{cAcXkVEE{zAsjAo}@gn@ad@uY}i@g[{MwHwHiEg^kSoKsFmPsIgb@mToy@{a@gn@wZMGsgAeh@}_B{r@qv@e\\az@u\\gWuIwm@mUc]mL_b@yNgt@aVwu@_Vof@uNabAiYo~A_b@gaBm`@{~Aa]a_AwQc}@gP{Z}E}zAsU_mBqVugA}LwvAcN_{@_HosA}IwjAsF{Zq@yt@oBcx@g@cy@Fix@xAgo@fCyy@~Fup@zG_i@nHoUhEg[xFeh@`L}LvCat@bT}x@xY{]vNs^rPim@~Zgh@pY}kAfv@gf@n]ye@x\\gg@t]kf@v[ug@nXkSbJuT|Imc@fNaj@lMyl@~Hmg@nDoa@d@}]M{[aBe^yCw[}Eo[eGqm@qMar@}OiViEuPoBoVwB_^mA}a@?m]pAee@rEih@jKm`@fLyc@lPeTpJsWtLof@vSyCbAgNtEkUnGq[|HeWpDqf@vEgU|@mVFaZ]eQcAc`@_EuV{DyReEod@uL{hAu[m]gJkYeGwHuAeSoDi[qDa\\oBsg@kAkHLs_@b@kd@bCmFp@gJjAgc@jHsUfFuq@xRw_Bbg@g`@fKk^nG{Y|CuYrAmMl@ea@M}_@}Ae[cDi[oEgv@_O{f@{Jks@aN{c@yGsl@mFsm@cCmS?aT@wk@hBeW|AsZxB_a@jDi\\xCeQbBwg@bE{k@vDwe@|A}i@r@eg@?ue@s@eh@sBuc@iDyc@cFip@sI{i@uJwYoGmNeDyRsFgT{Fa[uJ{ZoKyUcJsb@mQuUmLiV{Lk[eQuU{Mk\\eSwZ}RiUoPmXkSsKwIg_@c[oZmVmZcVoOyLc[_WwVoSur@uj@mS_P}XmUyScRsRyQsRiSiZs]{\\{c@eXab@cT}^yT{b@wVwi@aToi@qVct@mPgk@yOim@wTg_AuVycAoN}g@eNgb@oSij@}Og^oZem@aOcXeNeVec@{t@}a@er@aRsYoRgX}MuQaLqN_E_FgNyP_VwWcVmUei@eg@oi@se@qReQkd@qb@u]{^cPoR{Ui[oTu[sSc^cUke@sSsf@gP{e@oMuc@_Ik[sNuo@gJ_h@oHci@uFwi@aGyw@u@eNeBsa@oDg}@eCow@iE}pAyC{z@kB{e@aEe`AwGumAgFqw@eLasAuLaiAyRyzAaDsRiEoXqIcg@kNcw@sJkf@qOuu@qLqi@eCwK}Kkf@mj@e}BqOoo@}Lyf@io@kiCgh@}uB{l@acCaG{Va]wsAms@iuCsYkkAse@inBag@wqBqr@qtCsa@g`B_n@gaCsM}f@y]uqAg[igAi\\ahAw]{fAsb@wnAyg@iuAme@{jAq_@_|@{\\}t@oc@m}@ad@m{@c|@q_Bae@my@kZai@kAoB_cBgyCuXgg@eYwi@kd@_~@sn@quA}Red@qa@geAa^_bAq[g~@q]uhAy[qgAaf@{cBkgAm}D}d@wcBif@mgBoZsjAu[}nA}ZitAw\\}|AgKeg@w_@mjBkUmiA{O{v@yQobAe@wByVwlAy\\eoAwIab@wTogAcAaFkUwgAgZuvAg`@ahBsg@qzB{|@kuD}k@waCck@k~Buj@qxB{Y_dAeZ_bAc^_gA_Yqu@ea@gcAgb@y`A}b@a~@qb@yy@_d@iw@oe@cw@yc@yp@}c@}m@mh@cq@yi@ap@ec@oe@{i@_l@wp@cr@yr@gs@ux@sz@mYwYsa@ua@oAqAmuA}wAuWiXq[a]ak@qn@kZi]qZi^sUyY_]ac@g\\ic@w\\me@ma@wl@ca@ao@wV{`@}a@cu@qZ{i@sEgIem@kkAwp@ewAoRgc@e^_{@}b@agAks@_kBi[cz@kd@omAg_@ucA_k@ebBsRkn@aQkn@iNch@sHc[mKsd@cJub@mNcs@cN_x@aJsm@qNkfA{Hyt@sF}j@yEwm@sDqj@wDmp@qBub@sBaj@iBqt@cAao@c@mn@Uiu@Pao@l@kl@rAky@vAqq@nBiw@rCwq@tCun@xG{sAlGyrAlG_kAvFgfAvJykBvFyfArWmaFvMweCdH{sA~G{xAjGg}AbD_`AzCcbA|Bk|@|DgjBdCgfBbBg`BfAmnBZevBYsfBe@_eB}Aw|AeC_aBgBu~@iB{x@a@kR_A{[gBum@cC}t@{D}dAgEcdAsDax@mDyt@kJefBuJabBsEst@cI{lAcI{fAuBeYeJojAuOqgByQymBuX}hC{]_xCgV{iBoQioAuQ}nAeLqt@uIgi@kSmmAiUgsAqP{}@wPc}@y[q_BgPqw@eSo~@wRw{@{W{iAaIe^sRo{@uXqmA_[ytA{s@e_Dk[gtAk\\atAkr@gmC_u@amCcYycAgXscAcWkcAaKua@}Jac@_Pgs@aPqu@mPmw@yRecAoIoc@mQobA{Jql@gCmOoNs|@cRooAgBwLsMaaAe@oD}McdAwHik@iIan@sSi~AwM}bAyMscAaOoiAgWwqB_UilB{SojBsSgpBmP{dB_Hss@uVqtCkQwlBqS{oB{PqzA_Q_wA_RyuAsMs~@qQojAkDsUwAiJ_Lis@}RukAu[khBuNqv@uNou@gZi_Bq@qDge@}eCem@m`DaF}Vwh@orCgd@ufCgc@ujCm[}tBeYoqB{XkwBaQsyAiQo~AqK}cAeIsy@}OmeB}Mo`BcU_|CeIenAuEkw@_OaoCgL_yBaTqaEkTwdEyPueDiJ}fB{SaaEuIm_BkH}qA_IklA{KczAmLcxAcM}sAqUwzByNapA_M{`AiI{n@aKku@cEmYeJym@qBwMeMay@yXuaBkMis@o[obBoB}JyP}y@wWkmAqBgJ_Oeo@cXeiAqQss@{S}x@ga@yzAec@q~AkMwb@mQem@iEeNwRon@ev@c}Bce@qvAq@oBwNib@u@{BuVcw@ACim@_hBoB}Fw\\{dA}FsQaSmq@_XmgAsUkfAyQs_A_RonA{Jcq@qUgjB{NeaAcLwq@oMir@_L{h@{Mal@qGuWmOek@s^amAo\\o`AgV_q@{Wor@qn@w`B_Sci@gQ{f@eOgd@yPyj@wIgZqJe_@sOkq@gJcd@iKqj@sKyr@eJ}w@eEgi@kF}r@{GajAeGs|AaJsjBgHsjAeHew@kEob@oEg_@sGmd@iPu_A}O_y@oOen@_Mid@iNgf@_c@okAiMg[aEuIcGiM_ByCu]as@cBgD{@gB_JgP_Q_Zoa@kt@}y@q}AuDoHiBqDgd@ux@kO{[eBqDgM}YiLgYkLa[{KyZgKu[eJ{ZmMkd@sHmZ{VujAkNmv@kJ_n@_Jwr@{Gso@sFin@yD_l@{Em~@oCs}@w@uj@Wuf@As^Loj@j@ib@rA_p@??h@mQ~Am`@fBs]jDul@fGur@jBkSvG{r@zJmaA~PigBlIm_AvEkn@vEcx@hFilApBer@bBkz@b@gi@Pop@D}j@Wgh@]i[u@oc@MeGg@_WmAwa@cBme@uCgo@yCag@OmCsE}o@oFkp@gH}s@oEua@cH}k@cNg`AkMmv@ESmMir@sMyq@cUaeAeOup@w]oxAeV}aAgPuo@uAoFav@}wCyd@ciBmq@qjC}\\_sAsTsx@wQyt@yT}{@ajCqcKwcAyzDcrAsdFsE{PsXadAyRyu@}WoeA}DuOcUc}@ot@s`Dgm@mwCqHeb@gMou@}`@alC{MieAoPaaBgLkzAsG}_AkGqjAoFurAiE{dBgAcx@m@kx@BypBt@wlA`CgtAbMa|DpIifBrJuvA~`@mjFnc@uqF~f@ilFji@omFrrBkbQ`dBkmMlyBepPbdBilMdq@}dFxGch@rKcz@tAcKtRsxA~[ocCd]adCdOckAlHqn@hGgo@tMmvA`J_iAfH}aA\\}FrDmm@bCsZ|Cgp@zDs`A~Ca~@xD_zBhGmgEjEy~ChAuq@h@qn@Je\\My]K_Ua@}TgAyZo@sS_AoSy@aQoAwRyByYu@eH"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 22 miles.","announcement":"Continue for 22 miles.","distanceAlongGeometry":35480.297},{"ssmlAnnouncement":"In 2 miles, Take exit 62.","announcement":"In 2 miles, Take exit 62.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 62.","announcement":"In a half mile, Take exit 62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 62 toward Freiburg, Donaueschingen. Then Keep right to take B 31a.","announcement":"Take exit 62 toward Freiburg, Donaueschingen. Then Keep right to take B 31a.","distanceAlongGeometry":230.417}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.532226,47.775761],"geometry_index":10942,"admin_index":4,"weight":9.664,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":10.455,"bearings":[75,82,255],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,246],"duration":2.465,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":2.281,"geometry_index":10948,"location":[7.535591,47.776546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":29.504,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":27.291,"geometry_index":10950,"location":[7.536328,47.776823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,344],"duration":6.301,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"weight":5.828,"geometry_index":10983,"location":[7.536838,47.782726]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.536526,47.784148],"geometry_index":10987,"admin_index":4,"weight":18.641,"is_urban":false,"turn_weight":11.75,"duration":7.465,"bearings":[9,176,189],"out":0,"in":1,"turn_duration":0.015,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,190],"duration":9.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.854,"geometry_index":10989,"location":[7.53699,47.785996]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,193],"duration":11.195,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.07,"geometry_index":10991,"location":[7.537784,47.788415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,196],"duration":6.031,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.42,"geometry_index":10993,"location":[7.538917,47.791156]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.623,"geometry_index":10994,"location":[7.539625,47.792647]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":39.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.73,"geometry_index":10995,"location":[7.539706,47.792817]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":39.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.785,"geometry_index":11003,"location":[7.544819,47.802112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.721,"geometry_index":11009,"location":[7.550958,47.811144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,205],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":11010,"location":[7.551074,47.811308]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":0.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.285,"geometry_index":11011,"location":[7.551212,47.811493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.199,"geometry_index":11012,"location":[7.551258,47.811556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.594,"geometry_index":11013,"location":[7.552448,47.813182]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.553525,47.814678],"geometry_index":11014,"admin_index":4,"weight":4.508,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.643,"bearings":[26,46,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":1.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.824,"geometry_index":11015,"location":[7.554302,47.815737]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.554617,47.816166],"geometry_index":11016,"admin_index":4,"weight":6.502,"is_urban":false,"turn_weight":0.5,"duration":6.176,"bearings":[25,191,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":6.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.459,"geometry_index":11017,"location":[7.555601,47.817553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":1.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.148,"geometry_index":11018,"location":[7.556682,47.819036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":32.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.553,"geometry_index":11019,"location":[7.55688,47.819315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":14.875,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.74,"geometry_index":11025,"location":[7.562403,47.828191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":50.154,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.123,"geometry_index":11027,"location":[7.564022,47.83185]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":2.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.98,"geometry_index":11036,"location":[7.567216,47.845284]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":40.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.816,"geometry_index":11037,"location":[7.567229,47.845877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,358],"duration":14.789,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.934,"geometry_index":11044,"location":[7.56641,47.856884]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,180],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.908,"geometry_index":11047,"location":[7.566294,47.86072]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":9.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.693,"geometry_index":11048,"location":[7.566313,47.860991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":0.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.027,"geometry_index":11051,"location":[7.566579,47.863881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":8.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.668,"geometry_index":11052,"location":[7.566581,47.863894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,188],"duration":0.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.027,"geometry_index":11055,"location":[7.567044,47.866426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,186],"duration":14.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.609,"geometry_index":11056,"location":[7.567046,47.866438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":0.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.027,"geometry_index":11061,"location":[7.568284,47.870552]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.1,"geometry_index":11062,"location":[7.568288,47.870562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,197],"duration":10,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.994,"geometry_index":11064,"location":[7.56941,47.873146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":9.959,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.955,"geometry_index":11067,"location":[7.570691,47.875672]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,204],"duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.031,"geometry_index":11069,"location":[7.572189,47.878103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,206],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.703,"geometry_index":11070,"location":[7.572194,47.87811]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,204],"duration":47.527,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":41.58,"geometry_index":11071,"location":[7.572317,47.878297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,206],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.631,"geometry_index":11081,"location":[7.581021,47.889288]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":68.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.09,"geometry_index":11082,"location":[7.581128,47.889461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":8.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.055,"geometry_index":11095,"location":[7.588693,47.906673]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.589546,47.908949],"geometry_index":11096,"admin_index":4,"weight":6.271,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.977,"bearings":[17,41,194],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.590235,47.910499],"geometry_index":11098,"admin_index":4,"weight":12.395,"is_urban":false,"turn_weight":1,"duration":12.668,"bearings":[18,176,196],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":30.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.812,"geometry_index":11099,"location":[7.591514,47.91318]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,205],"duration":0.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.477,"geometry_index":11105,"location":[7.595391,47.919529]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,203],"duration":6.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.754,"geometry_index":11106,"location":[7.595473,47.919656]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":13.969,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.207,"geometry_index":11107,"location":[7.596518,47.921103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,210],"duration":79.615,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":69.656,"geometry_index":11110,"location":[7.598911,47.924036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,236],"duration":0.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.512,"geometry_index":11129,"location":[7.618456,47.937965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,239],"duration":19.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.594,"geometry_index":11130,"location":[7.618633,47.938037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,240],"duration":1.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.979,"geometry_index":11134,"location":[7.624383,47.940427]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":34.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.057,"geometry_index":11135,"location":[7.624722,47.940554]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,244],"duration":0.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.797,"geometry_index":11140,"location":[7.635455,47.944258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,247],"duration":35.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.484,"geometry_index":11141,"location":[7.635727,47.944337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,252],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.121,"geometry_index":11147,"location":[7.647154,47.947372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":9.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.893,"geometry_index":11148,"location":[7.647584,47.947474]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":15.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.742,"geometry_index":11150,"location":[7.650772,47.948194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":21.738,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.549,"geometry_index":11153,"location":[7.655846,47.949174]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":5.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.969,"geometry_index":11156,"location":[7.662924,47.95032]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,257],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.895,"geometry_index":11157,"location":[7.664731,47.950597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,259],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.086,"geometry_index":11158,"location":[7.665045,47.950636]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.66578,47.95074],"geometry_index":11159,"admin_index":4,"weight":6.178,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.885,"bearings":[77,94,258],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.667927,47.951056],"geometry_index":11162,"admin_index":4,"weight":2.928,"is_urban":false,"turn_weight":1,"duration":2.162,"bearings":[77,238,257],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,257],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.225,"geometry_index":11163,"location":[7.668583,47.951155]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,257],"duration":4.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.607,"geometry_index":11164,"location":[7.669022,47.951223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.246,"geometry_index":11165,"location":[7.670295,47.95144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":15.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.58,"geometry_index":11166,"location":[7.67075,47.951524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,253],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.344,"geometry_index":11169,"location":[7.675832,47.952493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":60.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":55.889,"geometry_index":11170,"location":[7.675955,47.952521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":0.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.316,"geometry_index":11181,"location":[7.695589,47.958825]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":28.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.605,"geometry_index":11182,"location":[7.695687,47.958866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.912,"geometry_index":11187,"location":[7.704276,47.962661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":36.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.082,"geometry_index":11188,"location":[7.704561,47.962795]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":5.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.654,"geometry_index":11194,"location":[7.715296,47.96823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.213,"geometry_index":11195,"location":[7.716977,47.969157]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.783,"geometry_index":11196,"location":[7.717315,47.969347]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.71754,47.969473],"geometry_index":11197,"admin_index":4,"weight":18.627,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.145,"bearings":[50,61,230],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":5.811,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.355,"geometry_index":11201,"location":[7.72296,47.972653]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":3.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.158,"geometry_index":11202,"location":[7.724503,47.973602]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.996,"geometry_index":11204,"location":[7.72542,47.974158]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":12.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.523,"geometry_index":11205,"location":[7.72571,47.974335]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":0.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.596,"geometry_index":11208,"location":[7.729026,47.976497]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.676,"geometry_index":11209,"location":[7.729191,47.97661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":0.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.693,"geometry_index":11210,"location":[7.729378,47.976737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":5.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.072,"geometry_index":11211,"location":[7.729574,47.976871]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,225],"duration":5.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.354,"geometry_index":11212,"location":[7.730937,47.977789]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.732373,47.978765],"geometry_index":11213,"admin_index":4,"weight":6.18,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.885,"bearings":[43,63,225],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.734062,47.979984],"geometry_index":11215,"admin_index":4,"weight":1.756,"is_urban":false,"turn_weight":1,"duration":0.848,"bearings":[43,201,223],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.811,"geometry_index":11216,"location":[7.734312,47.980166]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":2.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.537,"geometry_index":11217,"location":[7.734585,47.980359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,223],"duration":6.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.777,"geometry_index":11218,"location":[7.735444,47.980977]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,222],"duration":0.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.244,"geometry_index":11219,"location":[7.737374,47.982397]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":27.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.049,"geometry_index":11220,"location":[7.737433,47.982442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,220],"duration":5.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.709,"geometry_index":11223,"location":[7.743692,47.987361]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.744846,47.988345],"geometry_index":11224,"admin_index":4,"weight":9.924,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.361,"bearings":[37,218],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":5.523,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.828,"geometry_index":11225,"location":[7.74724,47.990437]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":34.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.926,"geometry_index":11226,"location":[7.748366,47.991453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,213],"duration":0.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.754,"geometry_index":11230,"location":[7.754984,47.997939]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":60.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":52.592,"geometry_index":11231,"location":[7.755142,47.998105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":0.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.678,"geometry_index":11239,"location":[7.765532,48.010018]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":57.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.443,"geometry_index":11240,"location":[7.765672,48.010171]},{"bearings":[48,226],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":11252,"location":[7.77779,48.020083]}],"bannerInstructions":[{"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"62"},{"type":"text","text":"Freiburg"},{"type":"text","text":"/"},{"type":"text","text":"Donaueschingen"}],"type":"off ramp","modifier":"right","text":"Exit 62 Freiburg / Donaueschingen"},"distanceAlongGeometry":35506.965},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"62"},{"type":"text","text":"Freiburg"},{"type":"text","text":"/"},{"type":"text","text":"Donaueschingen"}],"type":"off ramp","modifier":"right","text":"Exit 62 Freiburg / Donaueschingen"},"distanceAlongGeometry":3218.688}],"destinations":"A 5: Karlsruhe, Stuttgart, Freiburg","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 5 toward Karlsruhe/Stuttgart/Freiburg.","modifier":"slight left","bearing_after":75,"bearing_before":75,"location":[7.532226,47.775761]},"speedLimitSign":"vienna","name":"","weight_typical":1186.838,"duration_typical":1294.578,"duration":1294.578,"distance":35506.965,"driving_side":"right","weight":1186.838,"mode":"driving","ref":"A 5; E 35","geometry":"a`_czAckvjMyI{|@gDaX}DgY_E}WwG{^iKig@kEgR}IyY}DqMyGeQmG_N}IwOaFiIiF_HqG{HuEmEyFkF{FmEgH}EgGkDkH}CiGgCgIeCuGcB_I{AuHq@iH_@uHSaHNaIJeKvAuNlC_K~CyN|FoJbFyM|IkQ|NoUfSyWhTsOjKgL~FcRdGoOfCmL|Ayf@bCwx@kLwx@sNyoAyWkeAyWsvBio@ur@oUe|Agk@sIaDiAc@}tA_j@}zAyn@e|BecAogAkg@axBkfAe`A}c@yOwIq~Ac|@}}Ai|@itCkdB}hAyq@ifBkjAmn@u`@gIgFqJsG}B{AsdBkiAo|AibAeaAqo@yYuRuuAo|@u{AqbAmPkKqoBipAo@a@shA_r@qbBi~@}uAgq@qsDgaBuzAgj@_hC}x@_j@_Q{hB{d@moA_ZadB_\\}jBuZ}pB{WydBwNchBwLmoAuDad@YsoAcB_}Al@evAbCkmAhFq`CrM}rBvMgeB`K}kAzCymAvA_sAK}Oe@gaBsEiv@aEaZ}BYCyf@wD{_A{Jqt@iJWCiIeA_p@uKerAyUe|A}^mTwFSGap@yPmoBis@cv@}X_gA_d@w]cPg~BmlAuWeOMIuJuFcv@cg@is@ad@qVuPebAqu@ssCs{B{uAijAaz@oo@gkAsz@k_Aio@qt@ee@yIuEozAc|@sz@ec@kx@m`@chA{f@aeA_d@{zA_j@}iAo_@orAk`@qlAyYwoAyXujC{k@qqB{b@e|@}UgmCit@s~@{[g`@eMqfD}nAaQsG_|@}`@emAmk@{mAqn@ykAmp@{rAiy@}FcDmyAi`Aom@ca@}|@aq@{iAk`Ak_Aox@cw@cu@y{@g~@ih@{j@yWk[}VgZsp@cy@ej@ot@ui@st@el@{|@mn@o`Aar@qjAiv@cuAqu@mxAex@gcBcq@a|Auk@{vAib@qgAyUup@oCaJsr@ssByk@qkBw\\gjAeV}y@}FeTun@c~Bwl@__Cau@w{Cok@{gCof@ayB}C_P}\\sbBeVopAq]akBe\\{lBsv@czEeT__BkE{Yo[}yBoOikAea@ghD{RmgBeFmj@w\\khDmYqeDmNmiBiP}oBmAsRoE}l@yHe}@_D}f@}Ca_@eE_h@gCmZqLqnAgDm[{^{kD_NymAuL}`Aw@uFoUebBmVo~A{Z{kB_\\{hBu[m_Bg^ibB}U}gA_t@ixCgz@a|Cmp@a{Bsm@qqBqAcEe`AkxCeHwTc`A}rCmx@y}Bgg@}uAkGyPsh@qvAgp@udBgu@qlBu_A}}BodAadCk{@coB}x@ahB{JcT{FaM__@cw@ojAkaCwt@wyAod@o|@iz@m_BkKcSkUed@aJcQqYug@ccA_hBmg@q|@aFiI}FuJkGgKkx@etA_|@wxAci@wx@aa@yn@kJsNaKaPse@ut@wwAswByAuBqcBqaCw}AcxBcoBojCo|@cgAwaCstCo~@keAohAynAcgB_lBk_Bm`BkbCk~BkI{H_gAgaAklBicBo|AyqAscBguA{vDawCowA_iA{m@{h@yp@yl@qHwGo~@k{@oeA{fAccAohAy{@qcAu`@kf@a`@ag@}z@{iAa`@_j@w_@aj@kx@mpAkr@cjAiv@cuA_u@owA"},{"ref":"A 5","mode":"driving","weight":11.602,"distance":174.489,"geometry":"e|}qzAkwxyMqP_h@gIuTm\\_w@","duration":12.398,"driving_side":"right","duration_typical":12.398,"weight_typical":11.602,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 62 toward Freiburg/Donaueschingen.","modifier":"slight right","bearing_after":57,"bearing_before":48,"location":[7.779206,48.020947]},"speedLimitUnit":"km/h","destinations":"Freiburg, Donaueschingen, Umkirch","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Freiburg"},{"type":"text","text":"/"},{"type":"text","text":"Donaueschingen"}],"type":"fork","modifier":"right","text":"Freiburg / Donaueschingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31a","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31a"}],"type":"fork","modifier":"right","text":"B 31a"},"distanceAlongGeometry":174.489}],"exits":"62","voiceInstructions":[{"ssmlAnnouncement":"Keep right to take B 31a toward Freiburg, Donaueschingen.","announcement":"Keep right to take B 31a toward Freiburg, Donaueschingen.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[7.779206,48.020947],"geometry_index":11253,"admin_index":4,"weight":6.117,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":6.625,"bearings":[49,57,228],"out":1,"in":2,"turn_duration":0.012,"classes":["motorway"],"entry":[true,true,false]},{"bearings":[52,235],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":11255,"location":[7.780209,48.021392]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6897.875},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Schwarzwaldstraße.","announcement":"In a quarter mile, Bear right onto Schwarzwaldstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Schwarzwaldstraße, B 31.","announcement":"Bear right onto Schwarzwaldstraße, B 31.","distanceAlongGeometry":69.382}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[51,67,232],"duration":36.98,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":4,"out":1,"weight":35.111,"geometry_index":11256,"location":[7.781105,48.021863]},{"entry":[true,false,false],"in":1,"bearings":[137,301,315],"duration":1.666,"turn_weight":6.75,"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.355,"geometry_index":11269,"location":[7.787076,48.02168]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[137,317],"duration":24.994,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.369,"geometry_index":11270,"location":[7.787364,48.021472]},{"entry":[true,true,false],"in":2,"bearings":[143,162,322],"duration":8.961,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.729,"geometry_index":11276,"location":[7.791586,48.018144]},{"entry":[true,false,false],"in":2,"bearings":[143,296,323],"duration":6.545,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.373,"geometry_index":11277,"location":[7.793126,48.016789]},{"entry":[true,false],"in":1,"bearings":[143,324],"duration":0.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.693,"geometry_index":11279,"location":[7.794239,48.015801]},{"entry":[true,false],"in":1,"bearings":[144,323],"duration":1.373,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":11280,"location":[7.794357,48.015695]},{"entry":[true,false],"in":1,"bearings":[146,324],"duration":15.016,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":15.016,"geometry_index":11281,"location":[7.794588,48.015485]},{"entry":[true,true,false],"in":2,"bearings":[148,169,328],"duration":11.244,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.238,"geometry_index":11284,"location":[7.796939,48.013116]},{"entry":[true,false],"in":1,"bearings":[148,328],"duration":8.805,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.025,"geometry_index":11285,"location":[7.798603,48.011361]},{"entry":[true,true,false],"in":2,"bearings":[148,162,328],"duration":9.109,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.33,"geometry_index":11286,"location":[7.799904,48.009988]},{"entry":[true,false,false],"in":2,"bearings":[147,310,328],"duration":4.953,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.055,"geometry_index":11288,"location":[7.801179,48.008643]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[148,327],"duration":1.973,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.021,"geometry_index":11289,"location":[7.801913,48.007892]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[148,328],"duration":4.143,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.246,"geometry_index":11290,"location":[7.802195,48.007589]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[146,328],"duration":0.74,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.758,"geometry_index":11291,"location":[7.802788,48.006952]},{"entry":[true,true,false],"in":2,"bearings":[148,177,326],"duration":6.539,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.695,"geometry_index":11292,"location":[7.802898,48.006841]},{"entry":[true,false],"in":1,"bearings":[146,327],"duration":0.412,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.422,"geometry_index":11294,"location":[7.803818,48.005877]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":0.514,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.527,"geometry_index":11295,"location":[7.803875,48.005821]},{"entry":[true,false,false],"in":2,"bearings":[147,310,326],"duration":22.119,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.652,"geometry_index":11296,"location":[7.803954,48.005743]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[124,304],"duration":1.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.574,"geometry_index":11305,"location":[7.807995,48.002887]},{"entry":[true,true,false],"in":2,"bearings":[122,144,304],"duration":8.785,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.203,"geometry_index":11306,"location":[7.808333,48.002736]},{"entry":[true,false,false],"in":2,"bearings":[120,291,300],"duration":2.832,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.967,"geometry_index":11308,"location":[7.810265,48.001965]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":1.439,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.549,"geometry_index":11309,"location":[7.810858,48.001737]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":6.846,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":7.359,"geometry_index":11310,"location":[7.811155,48.001622]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":4.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":4.441,"geometry_index":11311,"location":[7.812502,48.001108]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":55.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":59.699,"geometry_index":11312,"location":[7.813317,48.000797]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":19.844,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":21.332,"geometry_index":11313,"location":[7.824296,47.996611]},{"entry":[true,false],"in":1,"bearings":[119,299],"duration":8.078,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":8.684,"geometry_index":11315,"location":[7.826943,47.995617]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":24.375,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":26.789,"geometry_index":11317,"location":[7.828024,47.99522]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":14.824,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":16.307,"geometry_index":11321,"location":[7.830762,47.99427]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":3.389,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.727,"geometry_index":11322,"location":[7.832385,47.993641]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":28.271,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":30.391,"geometry_index":11323,"location":[7.83276,47.993496]},{"entry":[true,false],"in":1,"bearings":[117,302],"duration":1.266,"turn_weight":0.5,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.83,"geometry_index":11327,"location":[7.83582,47.992241]},{"entry":[true,false],"in":1,"bearings":[113,297],"duration":2.363,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.539,"geometry_index":11328,"location":[7.835948,47.992197]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,293],"duration":2.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.902,"geometry_index":11330,"location":[7.836204,47.992123]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[112,291],"duration":4.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":4.717,"geometry_index":11331,"location":[7.836511,47.992046]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,292],"duration":3.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.508,"geometry_index":11333,"location":[7.837001,47.991916]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[110,291],"duration":2.588,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.781,"geometry_index":11334,"location":[7.837362,47.991823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[109,290],"duration":2.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.418,"geometry_index":11336,"location":[7.837656,47.991753]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[107,289],"duration":2.812,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.023,"geometry_index":11338,"location":[7.837911,47.991694]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[104,287],"duration":2.137,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.297,"geometry_index":11339,"location":[7.838236,47.991629]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[105,284],"duration":1.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.209,"geometry_index":11341,"location":[7.838478,47.991588]},{"entry":[true,true,false],"in":2,"bearings":[103,117,285],"duration":8.818,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":9.461,"geometry_index":11342,"location":[7.838605,47.991565]},{"entry":[true,false],"in":1,"bearings":[106,283],"duration":1.852,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.99,"geometry_index":11345,"location":[7.83975,47.991387]},{"entry":[true,false,false],"in":2,"bearings":[104,263,286],"duration":3.801,"turn_weight":5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":9.064,"geometry_index":11346,"location":[7.839981,47.991344]},{"entry":[true,false],"in":1,"bearings":[105,284],"duration":7.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":7.74,"geometry_index":11347,"location":[7.840254,47.991297]},{"entry":[true,false],"in":1,"bearings":[107,285],"duration":13.859,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":14.9,"geometry_index":11348,"location":[7.840772,47.991204]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":9.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":10.643,"geometry_index":11350,"location":[7.84175,47.990983]},{"entry":[true,false,false],"in":2,"bearings":[113,197,291],"duration":5.502,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":5.906,"geometry_index":11351,"location":[7.842434,47.990807]},{"entry":[true,false],"in":1,"bearings":[113,293],"duration":1.334,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.426,"geometry_index":11352,"location":[7.842795,47.990703]},{"entry":[true,false],"in":1,"bearings":[113,293],"duration":5.115,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":5.5,"geometry_index":11353,"location":[7.842885,47.990677]},{"entry":[true,false],"in":1,"bearings":[113,293],"duration":0.766,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":0.814,"geometry_index":11355,"location":[7.843221,47.990583]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[114,293],"duration":4.357,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":4.686,"geometry_index":11356,"location":[7.843271,47.990569]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[114,294],"duration":1.326,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.426,"geometry_index":11357,"location":[7.843558,47.990483]},{"entry":[true,false],"in":1,"bearings":[115,294],"duration":0.955,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.018,"geometry_index":11358,"location":[7.843643,47.990458]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":4.756,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":5.092,"geometry_index":11359,"location":[7.843704,47.990439]},{"entry":[true,false],"in":1,"bearings":[115,296],"duration":1.656,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.76,"geometry_index":11360,"location":[7.844001,47.990344]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.309,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":1.408,"geometry_index":11361,"location":[7.844123,47.990306]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844223,47.990275],"geometry_index":11362,"admin_index":4,"weight":0.879,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.008,"duration":2.826,"bearings":[118,295],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844285,47.990253],"geometry_index":11363,"admin_index":4,"weight":2.789,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":1.223,"bearings":[116,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[114,296],"duration":0.75,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":0.807,"geometry_index":11365,"railway_crossing":true,"location":[7.844379,47.990222]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844437,47.990205],"geometry_index":11366,"admin_index":4,"weight":1.008,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":0.75,"duration":0.262,"bearings":[111,294],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[110,291],"duration":0.783,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":4,"out":0,"weight":0.842,"geometry_index":11367,"railway_crossing":true,"location":[7.84446,47.990199]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.844523,47.990184],"geometry_index":11368,"admin_index":4,"weight":3.357,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":1.75,"bearings":[107,290],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":2.887,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.023,"geometry_index":11369,"location":[7.844683,47.990152]},{"entry":[true,false],"in":1,"bearings":[105,287],"duration":14.539,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.746,"geometry_index":11371,"location":[7.844937,47.990101]},{"entry":[true,false],"in":1,"bearings":[93,278],"duration":7.023,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.35,"geometry_index":11375,"location":[7.846518,47.989869]},{"entry":[true,false],"in":1,"bearings":[92,273],"duration":3,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.15,"geometry_index":11376,"location":[7.846981,47.989852]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[90,272],"duration":8.199,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.609,"geometry_index":11377,"location":[7.84718,47.989848]},{"entry":[true,true,false],"in":2,"bearings":[89,132,270],"duration":3.83,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.002,"geometry_index":11378,"location":[7.847733,47.989845]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.847974,47.989849],"geometry_index":11379,"admin_index":4,"weight":1.557,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.021,"duration":3.504,"bearings":[87,269],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.848066,47.989852],"geometry_index":11380,"admin_index":4,"weight":2.066,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1.5,"duration":0.549,"bearings":[88,267],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[87,268],"duration":0.359,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.379,"geometry_index":11381,"railway_crossing":true,"location":[7.84811,47.989853]},{"entry":[true,false],"in":1,"bearings":[90,267],"duration":0.369,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.379,"geometry_index":11382,"location":[7.848137,47.989854]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[88,270],"duration":0.721,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.756,"geometry_index":11383,"railway_crossing":true,"location":[7.848159,47.989854]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.84821,47.989855],"geometry_index":11384,"admin_index":4,"weight":2.287,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":0.758,"bearings":[87,184,268,351],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[89,267],"duration":20.008,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.9,"geometry_index":11385,"location":[7.848274,47.989857]},{"entry":[true,false],"in":1,"bearings":[88,268],"duration":21.016,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.959,"geometry_index":11387,"location":[7.849885,47.989892]},{"entry":[true,false],"in":1,"bearings":[82,268],"duration":2.217,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.301,"geometry_index":11388,"location":[7.851649,47.989937]},{"entry":[true,false],"in":1,"bearings":[73,262],"duration":17.844,"turn_duration":2.036,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.6,"geometry_index":11389,"location":[7.85183,47.989954]},{"entry":[true,false],"in":1,"bearings":[71,251],"duration":5.479,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.752,"geometry_index":11391,"location":[7.853126,47.990229]},{"entry":[true,false],"in":1,"bearings":[72,252],"duration":3.92,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.109,"geometry_index":11393,"location":[7.853575,47.990331]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[72,252],"duration":2.504,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.629,"geometry_index":11394,"location":[7.853892,47.990401]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.854093,47.990445],"geometry_index":11396,"admin_index":4,"weight":1.314,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.007,"duration":3.26,"bearings":[72,252],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.854193,47.990467],"geometry_index":11397,"admin_index":4,"weight":4.699,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":2,"duration":2.578,"bearings":[73,162,252,339],"out":0,"in":2,"entry":[true,true,false,false]},{"bearings":[20,76,201,253],"entry":[true,true,false,false],"in":3,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":11398,"location":[7.854385,47.990507]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"turn","modifier":"slight right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":6924.542},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"turn","modifier":"slight right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":402.336}],"destinations":"B 31a: Freiburg, Donaueschingen, Titisee-Neustadt","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take B 31a toward Freiburg/Donaueschingen.","modifier":"slight right","bearing_after":67,"bearing_before":52,"location":[7.781105,48.021863]},"speedLimitSign":"vienna","name":"","weight_typical":617.807,"duration_typical":578.605,"duration":578.605,"distance":6924.542,"driving_side":"right","weight":617.807,"mode":"driving","ref":"B 31a","geometry":"mu_rzAan|yMcFuW_EqSqBsQy@qQa@uT?oj@rAqzAj@{a@pAuWlBkRzC_ObE}L~HcX~K_Qpm@u_AnN}R|`@ok@hh@yq@~_@_g@td@}j@tsAg_B`g@ul@tT{VrEkFbLmMna@kb@xy@uz@vu@{r@tlB_gBxtAipAhaA_~@vPuO|m@{l@|QsPxf@ad@|E{EhUaT|d@mc@nBqBzC}CdPkOnLwLt`@}c@tPaTrRgZrRi[~Qs^dQw`@~Roj@lHcTvRym@l[}hAfMad@dFqQb_@esAlR}q@rdGemTnZegAra@g|ArKga@dKi`@xMil@pG}XzHm\\bYmeAhf@mdB`HmVr]{mAnXq{@~HuUhKc\\vA_GfBsIj@kDxCeRdDkR|AgJxDqURiAvBaOnBeNDW`CiSBQlAqMl@}FvB{V`AcLhDqa@tAmM|AaPxDk_@fGif@pDyT~Iwi@nEqUr@sD`CsMx@kEZcBjD}Pp@iDd@yB|DqQjAsF|@gEj@{BPw@j@cC`@sBJm@\\}B~@_In@iFt@qG~Fqj@fCe]?CfA}W`@}[FmKDqa@GaNEwDAwAAu@?k@AeBC_CWkp@m@ir@yAgmBa@iJaGsg@cHkg@iBgMaByLkCyRq@eFe@kDk@gEoA_Ki@oEYqE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":685.104},{"ssmlAnnouncement":"In a quarter mile, Keep right to stay on B 31.","announcement":"In a quarter mile, Keep right to stay on B 31.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep right to stay on B 31.","announcement":"Keep right to stay on B 31.","distanceAlongGeometry":56.667}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.854594,47.990541],"geometry_index":11400,"admin_index":4,"weight":3.637,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.045,"turn_weight":1.5,"duration":2.08,"bearings":[104,256,291],"out":0,"in":1,"entry":[true,false,false]},{"entry":[true,false],"in":1,"bearings":[109,284],"duration":5.645,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.916,"geometry_index":11401,"location":[7.854762,47.990512]},{"entry":[true,false],"in":1,"bearings":[110,289],"duration":12.848,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.482,"geometry_index":11402,"location":[7.855221,47.990405]},{"entry":[true,false],"in":1,"bearings":[120,291],"duration":5.773,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.904,"geometry_index":11405,"location":[7.856573,47.990073]},{"entry":[true,false],"in":1,"bearings":[133,311],"duration":2.512,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.566,"geometry_index":11410,"location":[7.8571,47.989823]},{"entry":[true,false],"in":1,"bearings":[133,313],"duration":3.115,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.123,"geometry_index":11411,"location":[7.857258,47.989723]},{"entry":[true,false],"in":1,"bearings":[130,313],"duration":12.131,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.412,"geometry_index":11412,"location":[7.857324,47.989682]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":5.072,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.199,"geometry_index":11416,"location":[7.858153,47.989313]},{"entry":[true,false],"in":1,"bearings":[112,295],"duration":3.623,"lanes":[{"indications":["uturn"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.689,"geometry_index":11418,"location":[7.858531,47.989191]},{"lanes":[{"indications":["uturn"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.858805,47.989116],"geometry_index":11419,"admin_index":4,"weight":2.271,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.008,"duration":4.223,"bearings":[68,112,292],"out":1,"in":2,"entry":[true,true,false]},{"entry":[false,true,true,false],"in":3,"bearings":[63,111,237,292],"duration":2.311,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":4.361,"geometry_index":11420,"location":[7.859005,47.989062]},{"entry":[false,true,false,false],"in":3,"bearings":[1,105,253,291],"duration":9.818,"turn_weight":2,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":12.037,"geometry_index":11421,"location":[7.859206,47.98901]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":10.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.627,"geometry_index":11423,"location":[7.860088,47.988859]},{"entry":[true,false],"in":1,"bearings":[101,280],"duration":1.16,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.182,"geometry_index":11426,"location":[7.861029,47.988721]},{"entry":[true,false],"in":1,"bearings":[100,281],"duration":6.645,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.789,"geometry_index":11427,"location":[7.861131,47.988708]},{"entry":[true,false],"in":1,"bearings":[104,282],"duration":5.48,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.473,"geometry_index":11430,"location":[7.861731,47.98863]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":2.166,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":11431,"location":[7.862221,47.988551]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":2.016,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.016,"geometry_index":11432,"location":[7.862413,47.988518]},{"entry":[true,false],"in":1,"bearings":[109,284],"duration":0.297,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.287,"geometry_index":11433,"location":[7.8626,47.988486]},{"entry":[true,false],"in":1,"bearings":[107,289],"duration":2.324,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.305,"geometry_index":11434,"location":[7.862626,47.98848]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[112,287],"duration":1.584,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.584,"geometry_index":11435,"location":[7.862836,47.988436]},{"bearings":[117,292],"entry":[true,false],"in":1,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":11436,"location":[7.862971,47.9884]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"fork","modifier":"right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":695.104},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Schwarzwaldstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"31","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 31"}],"type":"fork","modifier":"right","text":"Schwarzwaldstraße / B 31"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Schwarzwaldstraße/B 31.","modifier":"slight right","bearing_after":104,"bearing_before":76,"location":[7.854594,47.990541]},"speedLimitSign":"vienna","name":"Schwarzwaldstraße","weight_typical":107.555,"duration_typical":103.74,"duration":103.74,"distance":695.104,"driving_side":"right","weight":107.555,"mode":"driving","ref":"B 31","geometry":"yobpzAc_l~Mx@oItEu[~Lyx@rAuIbC_OjBwHnCwHBEvBaFzBeEfE{HpAcC~DmIjEgLhDoLjDsMzAmGvCeNtCcPjBoKfBqKfBiQdEyc@zDyb@fAqQNmCXkEf@oIPsD`BkT|Cs]`A_K~@uJJs@vAcLfAmGvC}L"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 43 miles.","announcement":"Continue for 43 miles.","distanceAlongGeometry":69769.531},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 2nd exit toward A 81.","announcement":"In a quarter mile, Enter the roundabout and take the 2nd exit toward A 81.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit toward A 81, Ulm.","announcement":"Enter the roundabout and take the 2nd exit toward A 81, Ulm.","distanceAlongGeometry":171.111}],"intersections":[{"entry":[true,true,false,false],"in":3,"bearings":[99,111,158,297],"duration":4.459,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":4.432,"geometry_index":11437,"location":[7.863194,47.988324]},{"entry":[true,false],"in":1,"bearings":[96,288],"duration":11.918,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.918,"geometry_index":11440,"location":[7.863601,47.988227]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[136,292],"duration":9.801,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.801,"geometry_index":11447,"location":[7.864856,47.988097]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[110,292],"duration":39.047,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.07,"geometry_index":11452,"location":[7.865925,47.98762]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[110,290],"duration":25.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.939,"geometry_index":11454,"location":[7.871251,47.986306]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":72.441,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":68.82,"geometry_index":11456,"location":[7.87495,47.985582]},{"entry":[true,false],"in":1,"bearings":[108,290],"duration":10.105,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.6,"geometry_index":11470,"location":[7.889881,47.983123]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[109,288],"duration":83.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":79.055,"geometry_index":11472,"location":[7.891919,47.982673]},{"entry":[true,false],"in":1,"bearings":[96,276],"duration":4.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.189,"geometry_index":11477,"location":[7.9073,47.97951]},{"entry":[true,false],"in":1,"bearings":[97,276],"duration":4.859,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.617,"geometry_index":11478,"location":[7.908603,47.979416]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[98,278],"duration":1.26,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.197,"geometry_index":11480,"location":[7.910036,47.979293]},{"entry":[true,false],"in":1,"bearings":[100,278],"duration":6.441,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.949,"geometry_index":11481,"location":[7.910406,47.97926]},{"entry":[true,false],"in":1,"bearings":[104,286],"duration":1.035,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.939,"geometry_index":11484,"location":[7.912162,47.979009]},{"entry":[true,false],"in":1,"bearings":[107,284],"duration":5.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.824,"geometry_index":11485,"location":[7.91245,47.978961]},{"entry":[true,false],"in":1,"bearings":[116,293],"duration":1.432,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.324,"geometry_index":11488,"location":[7.91387,47.978619]},{"entry":[true,false],"in":1,"bearings":[117,296],"duration":1.893,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.75,"geometry_index":11489,"location":[7.914242,47.978499]},{"entry":[true,false],"in":1,"bearings":[121,297],"duration":2.057,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.902,"geometry_index":11490,"location":[7.914732,47.978332]},{"entry":[true,false],"in":1,"bearings":[123,303],"duration":39.377,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":36.424,"geometry_index":11492,"location":[7.915235,47.978123]},{"entry":[true,false],"in":1,"bearings":[106,288],"duration":0.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.365,"geometry_index":11505,"location":[7.925257,47.973971]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":20.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.68,"geometry_index":11506,"location":[7.925374,47.973949]},{"entry":[true,false],"in":1,"bearings":[95,278],"duration":1.391,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.287,"geometry_index":11513,"location":[7.931403,47.973075]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":1.922,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.779,"geometry_index":11514,"location":[7.93186,47.973049]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":14.768,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.66,"geometry_index":11515,"location":[7.932485,47.973013]},{"entry":[true,false],"in":1,"bearings":[91,272],"duration":0.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.453,"geometry_index":11520,"location":[7.937317,47.972832]},{"entry":[true,false],"in":1,"bearings":[90,271],"duration":10.424,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.902,"geometry_index":11521,"location":[7.937462,47.97283]},{"entry":[true,false],"in":1,"bearings":[90,271],"duration":7.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.039,"geometry_index":11523,"location":[7.940806,47.972807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[90,270],"duration":0.838,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.795,"geometry_index":11525,"location":[7.943181,47.972808]},{"entry":[true,true,false],"in":2,"bearings":[89,103,270],"duration":6.434,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.094,"geometry_index":11526,"location":[7.943455,47.972808]},{"entry":[true,false,false],"in":2,"bearings":[90,251,269],"duration":0.832,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.783,"geometry_index":11527,"location":[7.945325,47.97282]},{"entry":[true,false],"in":1,"bearings":[91,270],"duration":7.59,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.211,"geometry_index":11528,"location":[7.94558,47.972819]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":25.678,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.393,"geometry_index":11530,"location":[7.947928,47.972779]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":4.424,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.203,"geometry_index":11534,"location":[7.955859,47.972436]},{"entry":[true,false],"in":1,"bearings":[91,273],"duration":2.496,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.371,"geometry_index":11536,"location":[7.957225,47.972367]},{"entry":[true,false,true],"in":1,"bearings":[96,270,280],"duration":3.609,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.42,"geometry_index":11538,"location":[7.958038,47.972367]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":7.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.719,"geometry_index":11540,"location":[7.959151,47.972287]},{"entry":[true,false],"in":1,"bearings":[102,280],"duration":4.988,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.738,"geometry_index":11542,"location":[7.961371,47.972063]},{"entry":[true,false],"in":1,"bearings":[101,282],"duration":0.834,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.793,"geometry_index":11543,"location":[7.962884,47.971849]},{"entry":[true,false],"in":1,"bearings":[100,281],"duration":16.635,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":15.803,"geometry_index":11544,"location":[7.963139,47.971817]},{"entry":[true,false],"in":1,"bearings":[103,282],"duration":1.17,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.111,"geometry_index":11548,"location":[7.968429,47.971103]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":5.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.936,"geometry_index":11549,"location":[7.968773,47.971051]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":5.377,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.107,"geometry_index":11551,"location":[7.970258,47.970816]},{"entry":[true,false],"in":1,"bearings":[105,283],"duration":3.189,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.031,"geometry_index":11552,"location":[7.971805,47.970576]},{"entry":[true,false],"in":1,"bearings":[107,285],"duration":5.725,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.439,"geometry_index":11553,"location":[7.972707,47.970417]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":5.941,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.645,"geometry_index":11554,"location":[7.974398,47.970074]},{"entry":[true,false],"in":1,"bearings":[110,289],"duration":13.576,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.559,"geometry_index":11557,"location":[7.976156,47.969701]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":0.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.896,"geometry_index":11564,"location":[7.980039,47.968624]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":23.467,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":21.707,"geometry_index":11565,"location":[7.980298,47.968539]},{"entry":[true,false],"in":1,"bearings":[140,318],"duration":16.578,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.92,"geometry_index":11579,"location":[7.985902,47.965683]},{"entry":[true,false],"in":1,"bearings":[157,335],"duration":1.244,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.119,"geometry_index":11587,"location":[7.988577,47.962871]},{"entry":[true,false],"in":1,"bearings":[159,337],"duration":4.533,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.08,"geometry_index":11588,"location":[7.988722,47.962643]},{"entry":[true,false],"in":1,"bearings":[164,342],"duration":1.555,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.4,"geometry_index":11592,"location":[7.989185,47.961781]},{"entry":[true,false],"in":1,"bearings":[165,344],"duration":0.801,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.721,"geometry_index":11593,"location":[7.989312,47.961479]},{"entry":[true,true,false],"in":2,"bearings":[170,201,345],"duration":1.291,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.154,"geometry_index":11594,"location":[7.989372,47.961324]},{"entry":[true,false],"in":1,"bearings":[169,350],"duration":4.594,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.615,"geometry_index":11595,"location":[7.989431,47.961097]},{"entry":[true,false,false],"in":2,"bearings":[169,329,349],"duration":2.201,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.725,"geometry_index":11596,"location":[7.989673,47.960267]},{"entry":[true,false],"in":1,"bearings":[172,349],"duration":3.664,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.289,"geometry_index":11597,"location":[7.989769,47.959926]},{"entry":[true,false],"in":1,"bearings":[171,352],"duration":0.443,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.398,"geometry_index":11598,"location":[7.989888,47.959338]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":6.59,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.932,"geometry_index":11599,"location":[7.989905,47.959265]},{"entry":[true,false],"in":1,"bearings":[165,346],"duration":1.771,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.596,"geometry_index":11602,"location":[7.990244,47.958223]},{"entry":[true,false],"in":1,"bearings":[166,345],"duration":2.547,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.293,"geometry_index":11603,"location":[7.990358,47.957946]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":0.576,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.512,"geometry_index":11605,"location":[7.990506,47.957548]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":1.936,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.736,"geometry_index":11606,"location":[7.990536,47.957467]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":3.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.24,"geometry_index":11607,"location":[7.990632,47.957201]},{"entry":[true,false],"in":1,"bearings":[165,346],"duration":4.469,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.021,"geometry_index":11608,"location":[7.990827,47.956693]},{"entry":[true,false],"in":1,"bearings":[165,345],"duration":2.234,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.012,"geometry_index":11609,"location":[7.991085,47.956069]},{"entry":[true,false],"in":1,"bearings":[162,345],"duration":9.186,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.268,"geometry_index":11610,"location":[7.991212,47.955761]},{"entry":[true,false],"in":1,"bearings":[163,342],"duration":0.771,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.693,"geometry_index":11612,"location":[7.99183,47.954495]},{"entry":[true,false],"in":1,"bearings":[163,343],"duration":0.172,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.154,"geometry_index":11613,"location":[7.991865,47.954416]},{"entry":[true,false],"in":1,"bearings":[164,343],"duration":4.371,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.934,"geometry_index":11614,"location":[7.991871,47.954403]},{"entry":[true,false],"in":1,"bearings":[175,350],"duration":2.486,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.236,"geometry_index":11617,"location":[7.992026,47.953961]},{"entry":[true,false],"in":1,"bearings":[178,356],"duration":1.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.08,"geometry_index":11619,"location":[7.992055,47.953698]},{"entry":[true,false],"in":1,"bearings":[179,358],"duration":0.869,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.781,"geometry_index":11620,"location":[7.99206,47.953596]},{"entry":[true,false],"in":1,"bearings":[179,359],"duration":2.607,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.346,"geometry_index":11621,"location":[7.992061,47.953537]},{"entry":[true,false],"in":1,"bearings":[179,359],"duration":1.986,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.787,"geometry_index":11622,"location":[7.992065,47.953351]},{"entry":[true,false],"in":1,"bearings":[180,359],"duration":3.229,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.904,"geometry_index":11623,"location":[7.992068,47.953205]},{"entry":[false,true],"in":0,"bearings":[0,176],"duration":16.008,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":14.385,"geometry_index":11624,"location":[7.99207,47.952974]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":1.871,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.686,"geometry_index":11628,"location":[7.992282,47.951984]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":1.26,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.117,"geometry_index":11629,"location":[7.992311,47.95187]},{"entry":[true,false],"in":1,"bearings":[170,350],"duration":6.24,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.799,"geometry_index":11630,"location":[7.992335,47.951778]},{"entry":[true,false],"in":1,"bearings":[174,350],"duration":1.986,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.787,"geometry_index":11631,"location":[7.992414,47.951479]},{"entry":[true,false],"in":1,"bearings":[175,354],"duration":0.744,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.67,"geometry_index":11632,"location":[7.992436,47.951333]},{"entry":[true,false],"in":1,"bearings":[178,355],"duration":31.531,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":28.379,"geometry_index":11633,"location":[7.992443,47.951275]},{"entry":[true,false],"in":1,"bearings":[144,327],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.24,"geometry_index":11644,"location":[7.993257,47.949108]},{"entry":[true,false],"in":1,"bearings":[142,323],"duration":8.82,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.713,"geometry_index":11646,"location":[7.993482,47.948899]},{"entry":[true,false],"in":1,"bearings":[134,315],"duration":4.717,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.127,"geometry_index":11649,"location":[7.994122,47.948432]},{"entry":[true,false],"in":1,"bearings":[132,313],"duration":0.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.336,"geometry_index":11651,"location":[7.994489,47.948196]},{"entry":[true,false],"in":1,"bearings":[128,312],"duration":5.338,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.67,"geometry_index":11652,"location":[7.994521,47.948177]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":56.756,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":49.641,"geometry_index":11656,"location":[7.994985,47.947945]},{"entry":[true,false],"in":1,"bearings":[114,297],"duration":14.156,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.367,"geometry_index":11671,"location":[7.999596,47.945284]},{"entry":[true,false],"in":1,"bearings":[119,299],"duration":6.008,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.25,"geometry_index":11675,"location":[8.000878,47.944867]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":1.742,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.518,"geometry_index":11676,"location":[8.001409,47.94467]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":3.875,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.633,"geometry_index":11677,"location":[8.001556,47.944613]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":3.199,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.801,"geometry_index":11678,"location":[8.001712,47.94455]},{"entry":[true,false],"in":1,"bearings":[120,302],"duration":1.867,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.633,"geometry_index":11681,"location":[8.001989,47.944436]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":2.408,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.1,"geometry_index":11682,"location":[8.002149,47.944373]},{"entry":[true,false],"in":1,"bearings":[122,301],"duration":10.666,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.334,"geometry_index":11683,"location":[8.002358,47.94429]},{"entry":[true,false],"in":1,"bearings":[111,293],"duration":2.287,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.982,"geometry_index":11687,"location":[8.003305,47.943958]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":2.268,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.982,"geometry_index":11689,"location":[8.003515,47.943903]},{"entry":[true,false],"in":1,"bearings":[112,291],"duration":7.467,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.533,"geometry_index":11691,"location":[8.003724,47.94385]},{"entry":[true,true,false,false],"in":2,"bearings":[116,206,292,353],"duration":17.559,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.355,"geometry_index":11692,"location":[8.004418,47.94366]},{"entry":[true,false],"in":1,"bearings":[97,276],"duration":3.682,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.215,"geometry_index":11703,"location":[8.007345,47.943015]},{"entry":[true,false],"in":1,"bearings":[99,277],"duration":6.992,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.111,"geometry_index":11704,"location":[8.008007,47.94296]},{"entry":[true,false],"in":1,"bearings":[106,283],"duration":0.512,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.441,"geometry_index":11708,"location":[8.009288,47.942791]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":1.016,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":11709,"location":[8.009378,47.942774]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":2.809,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.457,"geometry_index":11710,"location":[8.009555,47.94274]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":17.287,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.119,"geometry_index":11711,"location":[8.01006,47.942641]},{"entry":[true,false],"in":1,"bearings":[124,301],"duration":1.52,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.322,"geometry_index":11718,"location":[8.013089,47.94194]},{"entry":[true,false],"in":1,"bearings":[127,304],"duration":3.896,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.402,"geometry_index":11720,"location":[8.013318,47.941836]},{"entry":[true,false],"in":1,"bearings":[136,312],"duration":2.24,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.953,"geometry_index":11723,"location":[8.013876,47.941524]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":0.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.189,"geometry_index":11725,"location":[8.014157,47.941323]},{"entry":[true,true,false],"in":2,"bearings":[69,140,318],"duration":0.943,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.818,"geometry_index":11726,"location":[8.014188,47.9413]},{"entry":[true,false],"in":1,"bearings":[140,320],"duration":22.465,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.656,"geometry_index":11727,"location":[8.014303,47.941209]},{"entry":[true,false],"in":1,"bearings":[125,303],"duration":9.936,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.693,"geometry_index":11741,"location":[8.017546,47.939629]},{"entry":[true,false],"in":1,"bearings":[155,332],"duration":6.633,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.797,"geometry_index":11749,"location":[8.018874,47.938789]},{"entry":[true,false],"in":1,"bearings":[110,311],"duration":16.434,"turn_duration":0.09,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.301,"geometry_index":11755,"location":[8.019498,47.938096]},{"entry":[true,false],"in":1,"bearings":[143,333],"duration":11.117,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.729,"geometry_index":11770,"location":[8.021607,47.936864]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":11.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.469,"geometry_index":11782,"location":[8.023704,47.935622]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":1.164,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.02,"geometry_index":11791,"location":[8.026529,47.934961]},{"entry":[true,false],"in":1,"bearings":[102,283],"duration":4.68,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.076,"geometry_index":11792,"location":[8.026822,47.934915]},{"entry":[true,false],"in":1,"bearings":[103,282],"duration":19.582,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.135,"geometry_index":11793,"location":[8.027981,47.934754]},{"entry":[true,false],"in":1,"bearings":[151,327],"duration":11.346,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.92,"geometry_index":11811,"location":[8.031304,47.932559]},{"entry":[true,false],"in":1,"bearings":[178,358],"duration":14.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.412,"geometry_index":11820,"location":[8.031926,47.930735]},{"entry":[false,true],"in":0,"bearings":[15,193],"duration":0.074,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.047,"geometry_index":11828,"location":[8.03175,47.928381]},{"entry":[false,true,true],"in":0,"bearings":[13,197,238],"duration":1.998,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.74,"geometry_index":11829,"location":[8.031747,47.928372]},{"entry":[false,true],"in":0,"bearings":[17,198],"duration":2.041,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.787,"geometry_index":11830,"location":[8.031598,47.928055]},{"entry":[false,true],"in":0,"bearings":[17,197],"duration":2.633,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.305,"geometry_index":11832,"location":[8.031447,47.927732]},{"entry":[false,true,false],"in":0,"bearings":[17,192,320],"duration":3.566,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.096,"geometry_index":11833,"location":[8.031259,47.92731]},{"entry":[false,true],"in":0,"bearings":[13,188],"duration":2.42,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.117,"geometry_index":11835,"location":[8.031098,47.92681]},{"entry":[false,true],"in":0,"bearings":[8,188],"duration":0.684,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.598,"geometry_index":11836,"location":[8.031028,47.926462]},{"entry":[false,false,true],"in":0,"bearings":[8,176,193],"duration":15.391,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":2,"weight":14.459,"geometry_index":11837,"location":[8.031007,47.92636]},{"entry":[true,false,true],"in":1,"bearings":[100,269,279],"duration":1.666,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.445,"geometry_index":11849,"location":[8.032686,47.925174]},{"entry":[true,false],"in":1,"bearings":[102,280],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.051,"geometry_index":11850,"location":[8.033056,47.925131]},{"entry":[true,false],"in":1,"bearings":[102,282],"duration":0.48,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.42,"geometry_index":11851,"location":[8.033323,47.925093]},{"entry":[true,false],"in":1,"bearings":[105,282],"duration":3.117,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.727,"geometry_index":11852,"location":[8.033433,47.925077]},{"entry":[true,false],"in":1,"bearings":[110,287],"duration":5.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.994,"geometry_index":11855,"location":[8.034345,47.924904]},{"entry":[true,false],"in":1,"bearings":[106,289],"duration":0.615,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.537,"geometry_index":11857,"location":[8.035984,47.924518]},{"entry":[true,false],"in":1,"bearings":[104,286],"duration":11.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.795,"geometry_index":11859,"location":[8.03616,47.924484]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":13.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.562,"geometry_index":11863,"location":[8.039465,47.923901]},{"entry":[true,false],"in":1,"bearings":[110,291],"duration":8.404,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.338,"geometry_index":11871,"location":[8.043212,47.922927]},{"entry":[true,false],"in":1,"bearings":[100,283],"duration":5.027,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.379,"geometry_index":11876,"location":[8.045681,47.922469]},{"entry":[true,false],"in":1,"bearings":[93,276],"duration":4.434,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":11879,"location":[8.0472,47.922338]},{"entry":[true,false],"in":1,"bearings":[90,272],"duration":0.615,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.537,"geometry_index":11881,"location":[8.04855,47.922296]},{"entry":[true,false],"in":1,"bearings":[91,270],"duration":0.447,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.385,"geometry_index":11882,"location":[8.048733,47.922296]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":0.658,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.576,"geometry_index":11883,"location":[8.048862,47.922294]},{"entry":[true,false],"in":1,"bearings":[89,271],"duration":0.703,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.615,"geometry_index":11884,"location":[8.049066,47.922292]},{"entry":[true,false],"in":1,"bearings":[90,269],"duration":0.746,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.652,"geometry_index":11885,"location":[8.049276,47.922294]},{"entry":[false,true,false],"in":2,"bearings":[77,102,270],"duration":2.705,"turn_weight":1.5,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.854,"geometry_index":11887,"location":[8.04951,47.922295]},{"entry":[true,false],"in":1,"bearings":[93,270],"duration":1.654,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.449,"geometry_index":11889,"location":[8.050372,47.92225]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[81,273],"duration":0.951,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.832,"geometry_index":11890,"location":[8.050913,47.922231]},{"entry":[true,false,true],"in":1,"bearings":[99,261,287],"duration":2.143,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.025,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.854,"geometry_index":11891,"location":[8.051219,47.922262]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[100,279],"duration":0.635,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.557,"geometry_index":11893,"location":[8.051887,47.922192]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[101,280],"duration":0.467,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.408,"geometry_index":11894,"location":[8.052085,47.922169]},{"entry":[true,false],"in":1,"bearings":[104,281],"duration":0.846,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.732,"geometry_index":11895,"location":[8.052236,47.92215]},{"entry":[true,false],"in":1,"bearings":[105,284],"duration":3.768,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.297,"geometry_index":11896,"location":[8.052493,47.922106]},{"entry":[true,false],"in":1,"bearings":[111,289],"duration":1.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.062,"geometry_index":11898,"location":[8.053647,47.921867]},{"entry":[true,false],"in":1,"bearings":[110,291],"duration":1.551,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":11899,"location":[8.054011,47.921773]},{"entry":[true,false],"in":1,"bearings":[112,290],"duration":0.299,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.254,"geometry_index":11900,"location":[8.05448,47.921661]},{"entry":[true,false],"in":1,"bearings":[113,292],"duration":29.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":25.49,"geometry_index":11901,"location":[8.054565,47.921638]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":5.213,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.562,"geometry_index":11908,"location":[8.06315,47.919021]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":1.182,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.014,"geometry_index":11910,"location":[8.064645,47.91849]},{"entry":[true,false],"in":1,"bearings":[117,296],"duration":0.58,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.508,"geometry_index":11911,"location":[8.064976,47.91838]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":8.365,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.314,"geometry_index":11912,"location":[8.065143,47.918322]},{"entry":[true,false],"in":1,"bearings":[117,292],"duration":7.955,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.15,"geometry_index":11917,"location":[8.067634,47.917609]},{"entry":[true,false],"in":1,"bearings":[121,303],"duration":1.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.908,"geometry_index":11922,"location":[8.069799,47.916684]},{"entry":[true,false],"in":1,"bearings":[119,301],"duration":0.268,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.24,"geometry_index":11924,"location":[8.070063,47.916578]},{"entry":[true,false],"in":1,"bearings":[117,299],"duration":6.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.76,"geometry_index":11925,"location":[8.070136,47.916551]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":2.408,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":11928,"location":[8.071873,47.915986]},{"entry":[true,false],"in":1,"bearings":[120,301],"duration":0.889,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":11930,"location":[8.072498,47.915746]},{"entry":[true,false],"in":1,"bearings":[126,300],"duration":1.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.094,"geometry_index":11932,"location":[8.072733,47.915654]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":1.928,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.736,"geometry_index":11933,"location":[8.073036,47.915506]},{"entry":[true,true,false],"in":2,"bearings":[129,166,305],"duration":2.525,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.264,"geometry_index":11934,"location":[8.073526,47.915275]},{"entry":[true,false,false],"in":2,"bearings":[133,276,309],"duration":2.818,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.529,"geometry_index":11935,"location":[8.074129,47.914944]},{"entry":[true,false],"in":1,"bearings":[136,314],"duration":2.547,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.291,"geometry_index":11937,"location":[8.074747,47.914547]},{"entry":[true,false],"in":1,"bearings":[138,315],"duration":0.494,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.445,"geometry_index":11939,"location":[8.075288,47.914176]},{"entry":[true,false],"in":1,"bearings":[137,318],"duration":3.139,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.824,"geometry_index":11940,"location":[8.075385,47.914105]},{"entry":[true,false],"in":1,"bearings":[135,317],"duration":5.137,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.623,"geometry_index":11941,"location":[8.076004,47.91366]},{"entry":[false,true,false],"in":2,"bearings":[94,125,310],"duration":3.678,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.285,"geometry_index":11945,"location":[8.077063,47.913013]},{"entry":[true,false,true],"in":1,"bearings":[116,300,334],"duration":3.068,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.736,"geometry_index":11948,"location":[8.07787,47.912663]},{"entry":[true,false],"in":1,"bearings":[112,296],"duration":3.662,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.295,"geometry_index":11949,"location":[8.078455,47.912472]},{"entry":[true,false],"in":1,"bearings":[101,289],"duration":3.725,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.352,"geometry_index":11951,"location":[8.079191,47.91229]},{"entry":[true,false],"in":1,"bearings":[88,277],"duration":4.221,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.799,"geometry_index":11955,"location":[8.079988,47.912204]},{"entry":[true,false],"in":1,"bearings":[17,225],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.08,"geometry_index":11963,"location":[8.080789,47.912403]},{"entry":[false,true],"in":0,"bearings":[197,354],"duration":1.768,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.59,"geometry_index":11966,"location":[8.080843,47.912525]},{"entry":[false,true],"in":0,"bearings":[170,319],"duration":8.818,"turn_duration":0.178,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":7.775,"geometry_index":11970,"location":[8.080791,47.912766]},{"entry":[false,true],"in":0,"bearings":[122,303],"duration":1.047,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":0.943,"geometry_index":11975,"location":[8.079353,47.913431]},{"entry":[false,true],"in":0,"bearings":[123,304],"duration":24.365,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":21.928,"geometry_index":11976,"location":[8.079176,47.913507]},{"entry":[true,false],"in":1,"bearings":[116,288],"duration":1.35,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.215,"geometry_index":11996,"location":[8.078201,47.915414]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":1.426,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.283,"geometry_index":11998,"location":[8.07845,47.915333]},{"entry":[true,false],"in":1,"bearings":[105,298],"duration":2.295,"turn_duration":0.045,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.025,"geometry_index":11999,"location":[8.078674,47.915252]},{"entry":[true,false,false],"in":2,"bearings":[32,184,273],"duration":20.193,"turn_duration":1.593,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.74,"geometry_index":12004,"location":[8.079063,47.915216]},{"entry":[false,false,true],"in":0,"bearings":[133,296,349],"duration":5.066,"turn_duration":0.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":2,"weight":4.486,"geometry_index":12019,"location":[8.077081,47.916755]},{"entry":[true,false],"in":1,"bearings":[45,209],"duration":6.566,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.891,"geometry_index":12025,"location":[8.077195,47.917198]},{"entry":[true,false],"in":1,"bearings":[16,200],"duration":13.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.445,"geometry_index":12030,"location":[8.077784,47.917785]},{"entry":[false,true],"in":0,"bearings":[20,219],"duration":1.172,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":1.031,"geometry_index":12052,"location":[8.078305,47.918252]},{"entry":[false,true],"in":0,"bearings":[39,202],"duration":41.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":36.965,"geometry_index":12054,"location":[8.078187,47.918154]},{"entry":[false,true,true],"in":0,"bearings":[7,182,235],"duration":4.602,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.117,"geometry_index":12086,"location":[8.08024,47.91468]},{"entry":[true,false],"in":1,"bearings":[116,323],"duration":2.363,"turn_duration":0.142,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2,"geometry_index":12093,"location":[8.08048,47.914182]},{"entry":[true,false],"in":1,"bearings":[83,290],"duration":3.441,"turn_duration":0.142,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.971,"geometry_index":12096,"location":[8.080837,47.914084]},{"entry":[true,false],"in":1,"bearings":[45,244],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.08,"geometry_index":12100,"location":[8.081396,47.914192]},{"entry":[true,false],"in":1,"bearings":[46,225],"duration":1.592,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.426,"geometry_index":12101,"location":[8.08155,47.914297]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[49,226],"duration":1.297,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.166,"geometry_index":12103,"location":[8.081762,47.914434]},{"entry":[true,false],"in":1,"bearings":[61,229],"duration":1.672,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.015,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.49,"geometry_index":12105,"location":[8.081941,47.914538]},{"entry":[true,false],"in":1,"bearings":[87,251],"duration":1.225,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.102,"geometry_index":12110,"location":[8.082505,47.914704]},{"entry":[true,false],"in":1,"bearings":[98,271],"duration":18.648,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.783,"geometry_index":12112,"location":[8.082956,47.914708]},{"entry":[true,true,false],"in":2,"bearings":[37,87,271],"duration":2.254,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.064,"geometry_index":12131,"location":[8.089468,47.913265]},{"entry":[true,false],"in":1,"bearings":[80,263],"duration":3.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.141,"geometry_index":12133,"location":[8.090291,47.913311]},{"entry":[true,false],"in":1,"bearings":[74,255],"duration":1.652,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.521,"geometry_index":12136,"location":[8.091159,47.913441]},{"entry":[true,false],"in":1,"bearings":[70,254],"duration":2.816,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.584,"geometry_index":12137,"location":[8.091566,47.91352]},{"entry":[true,false],"in":1,"bearings":[69,250],"duration":0.807,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.746,"geometry_index":12140,"location":[8.092222,47.913682]},{"entry":[true,false,false],"in":2,"bearings":[72,191,249],"duration":0.652,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.596,"geometry_index":12141,"location":[8.092405,47.913728]},{"entry":[false,true,false],"in":2,"bearings":[21,75,252],"duration":2.104,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.938,"geometry_index":12142,"location":[8.09256,47.913761]},{"entry":[true,false,true],"in":1,"bearings":[79,257,296],"duration":0.748,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.686,"geometry_index":12145,"location":[8.093068,47.913845]},{"entry":[true,false],"in":1,"bearings":[82,259],"duration":0.74,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.686,"geometry_index":12147,"location":[8.093252,47.913868]},{"entry":[true,false],"in":1,"bearings":[84,262],"duration":0.953,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.881,"geometry_index":12148,"location":[8.093443,47.913886]},{"entry":[true,false],"in":1,"bearings":[87,264],"duration":1.482,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.371,"geometry_index":12149,"location":[8.093677,47.913903]},{"entry":[true,false],"in":1,"bearings":[91,267],"duration":1.773,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.641,"geometry_index":12151,"location":[8.094056,47.913916]},{"entry":[true,false],"in":1,"bearings":[96,272],"duration":0.053,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.049,"geometry_index":12153,"location":[8.094507,47.913909]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[96,276],"duration":6.574,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.08,"geometry_index":12154,"location":[8.094522,47.913908]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[107,290],"duration":0.053,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.049,"geometry_index":12160,"location":[8.09616,47.913661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,287],"duration":0.521,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.482,"geometry_index":12161,"location":[8.096165,47.91366]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[111,291],"duration":1.252,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.158,"geometry_index":12162,"location":[8.096296,47.913626]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.09659,47.91355],"geometry_index":12163,"admin_index":4,"weight":3.484,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.009,"turn_weight":0.75,"duration":2.965,"bearings":[86,115,291],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,false],"in":1,"bearings":[120,298],"duration":0.645,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.596,"geometry_index":12165,"location":[8.097248,47.91333]},{"entry":[true,false,true],"in":1,"bearings":[122,300,327],"duration":0.477,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.434,"geometry_index":12166,"location":[8.09739,47.913275]},{"entry":[true,true,false],"in":2,"bearings":[123,152,302],"duration":1.078,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.979,"geometry_index":12167,"location":[8.097494,47.913232]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":2.127,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.967,"geometry_index":12168,"location":[8.097723,47.913131]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.098156,47.912934],"geometry_index":12170,"admin_index":4,"weight":1.605,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.007,"turn_weight":1,"duration":0.662,"bearings":[125,270,304],"out":0,"in":2,"entry":[true,false,false]},{"entry":[true,false],"in":1,"bearings":[125,305],"duration":0.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.555,"geometry_index":12171,"location":[8.09829,47.912871]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":2.4,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.221,"geometry_index":12172,"location":[8.098413,47.912814]},{"entry":[true,false],"in":1,"bearings":[115,300],"duration":0.057,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.053,"geometry_index":12175,"location":[8.098916,47.912605]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":1.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.041,"geometry_index":12176,"location":[8.098929,47.912601]},{"entry":[true,false],"in":1,"bearings":[113,296],"duration":1.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.041,"geometry_index":12178,"location":[8.099173,47.91252]},{"entry":[true,false],"in":1,"bearings":[110,293],"duration":3.102,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.869,"geometry_index":12180,"location":[8.099414,47.91245]},{"entry":[true,false],"in":1,"bearings":[101,284],"duration":6.203,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.738,"geometry_index":12186,"location":[8.100136,47.912302]},{"entry":[true,false],"in":1,"bearings":[95,275],"duration":1.605,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.486,"geometry_index":12191,"location":[8.10163,47.912181]},{"entry":[true,false],"in":1,"bearings":[93,275],"duration":1.717,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.588,"geometry_index":12192,"location":[8.102022,47.912157]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[91,273],"duration":1.053,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.973,"geometry_index":12193,"location":[8.102432,47.912144]},{"entry":[true,false],"in":1,"bearings":[88,271],"duration":2.832,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.602,"geometry_index":12194,"location":[8.102693,47.912141]},{"entry":[true,false],"in":1,"bearings":[84,266],"duration":8.719,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.064,"geometry_index":12196,"location":[8.103356,47.912166]},{"entry":[true,false],"in":1,"bearings":[88,265],"duration":5.016,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.631,"geometry_index":12200,"location":[8.105415,47.912319]},{"entry":[true,false],"in":1,"bearings":[98,275],"duration":2.363,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.186,"geometry_index":12203,"location":[8.106609,47.912307]},{"entry":[true,false],"in":1,"bearings":[100,278],"duration":2.193,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.029,"geometry_index":12204,"location":[8.107161,47.912258]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[102,280],"duration":1.182,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.092,"geometry_index":12205,"location":[8.107681,47.912196]},{"entry":[true,true,false],"in":2,"bearings":[63,104,282],"duration":2.555,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.357,"geometry_index":12206,"location":[8.107958,47.912156]},{"entry":[true,false],"in":1,"bearings":[107,284],"duration":2.77,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.562,"geometry_index":12207,"location":[8.108549,47.912054]},{"entry":[true,false],"in":1,"bearings":[109,287],"duration":1.559,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.441,"geometry_index":12208,"location":[8.109188,47.911924]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":3.439,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.182,"geometry_index":12209,"location":[8.109554,47.911841]},{"entry":[true,false],"in":1,"bearings":[111,290],"duration":0.484,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.447,"geometry_index":12211,"location":[8.110357,47.911647]},{"entry":[true,false],"in":1,"bearings":[112,291],"duration":16.926,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.232,"geometry_index":12212,"location":[8.110471,47.911618]},{"entry":[true,false],"in":1,"bearings":[124,301],"duration":13.586,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.219,"geometry_index":12218,"location":[8.114225,47.910341]},{"entry":[true,false],"in":1,"bearings":[126,305],"duration":11.932,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.738,"geometry_index":12221,"location":[8.117138,47.909004]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":1.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":12222,"location":[8.119654,47.90778]},{"entry":[true,false],"in":1,"bearings":[126,305],"duration":20.93,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.818,"geometry_index":12223,"location":[8.120008,47.907614]},{"entry":[true,false],"in":1,"bearings":[110,293],"duration":2.465,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.281,"geometry_index":12228,"location":[8.12482,47.905604]},{"entry":[true,false,true],"in":1,"bearings":[107,289,306],"duration":8.539,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.666,"geometry_index":12231,"location":[8.125451,47.905455]},{"entry":[true,false],"in":1,"bearings":[90,273],"duration":0.123,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.092,"geometry_index":12237,"location":[8.127668,47.905206]},{"entry":[true,false],"in":1,"bearings":[89,270],"duration":11.764,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.588,"geometry_index":12238,"location":[8.127697,47.905206]},{"entry":[true,true,false],"in":2,"bearings":[73,175,253],"duration":2.012,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.805,"geometry_index":12244,"location":[8.130751,47.905544]},{"entry":[true,false,true],"in":1,"bearings":[72,253,275],"duration":1.068,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.945,"geometry_index":12245,"location":[8.131244,47.905647]},{"entry":[true,false],"in":1,"bearings":[72,252],"duration":7.051,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.346,"geometry_index":12246,"location":[8.131506,47.905705]},{"entry":[true,false],"in":1,"bearings":[77,255],"duration":6.385,"lanes":[{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.74,"geometry_index":12249,"location":[8.133313,47.90608]},{"entry":[true,false],"in":1,"bearings":[90,267],"duration":1.338,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.203,"geometry_index":12253,"location":[8.134949,47.906237]},{"entry":[true,false],"in":1,"bearings":[93,270],"duration":7.098,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.387,"geometry_index":12254,"location":[8.1353,47.906237]},{"entry":[false,true,false],"in":2,"bearings":[70,92,275],"duration":5.24,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":5.195,"geometry_index":12256,"location":[8.137139,47.906147]},{"entry":[true,false],"in":1,"bearings":[91,270],"duration":0.285,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.25,"geometry_index":12258,"location":[8.138478,47.906128]},{"entry":[true,false],"in":1,"bearings":[89,271],"duration":3.395,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.037,"geometry_index":12259,"location":[8.138546,47.906127]},{"entry":[true,false],"in":1,"bearings":[85,267],"duration":4.213,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.771,"geometry_index":12261,"location":[8.13935,47.906145]},{"entry":[true,false],"in":1,"bearings":[82,264],"duration":2.975,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.676,"geometry_index":12263,"location":[8.140392,47.906214]},{"entry":[true,false],"in":1,"bearings":[80,262],"duration":3.652,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.287,"geometry_index":12264,"location":[8.141145,47.906288]},{"entry":[true,false],"in":1,"bearings":[77,258],"duration":4.836,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.834,"geometry_index":12266,"location":[8.142083,47.906415]},{"entry":[true,false],"in":1,"bearings":[72,253],"duration":8.367,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.74,"geometry_index":12268,"location":[8.143363,47.906644]},{"entry":[true,false],"in":1,"bearings":[65,246],"duration":11.918,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.025,"geometry_index":12272,"location":[8.145507,47.907196]},{"entry":[true,false],"in":1,"bearings":[62,241],"duration":0.822,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.762,"geometry_index":12275,"location":[8.148396,47.908231]},{"entry":[true,false],"in":1,"bearings":[62,242],"duration":8.537,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.684,"geometry_index":12276,"location":[8.148583,47.908299]},{"entry":[true,false],"in":1,"bearings":[67,245],"duration":0.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.822,"geometry_index":12280,"location":[8.150575,47.908967]},{"entry":[true,false],"in":1,"bearings":[68,247],"duration":18.529,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.676,"geometry_index":12281,"location":[8.150778,47.909026]},{"entry":[true,false],"in":1,"bearings":[89,264],"duration":0.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.43,"geometry_index":12289,"location":[8.155318,47.909759]},{"entry":[true,false],"in":1,"bearings":[89,269],"duration":11.064,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.959,"geometry_index":12290,"location":[8.155434,47.90976]},{"entry":[true,false],"in":1,"bearings":[99,278],"duration":5.877,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.289,"geometry_index":12295,"location":[8.15822,47.909658]},{"entry":[false,true,false],"in":2,"bearings":[92,109,285],"duration":4.307,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.869,"geometry_index":12298,"location":[8.15968,47.909451]},{"entry":[true,true,false],"in":2,"bearings":[107,125,288],"duration":1.166,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":12300,"location":[8.160689,47.90922]},{"entry":[true,false,true],"in":1,"bearings":[112,287,311],"duration":5.123,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.602,"geometry_index":12301,"location":[8.160957,47.909164]},{"entry":[true,false,false],"in":2,"bearings":[115,279,296],"duration":5.111,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.582,"geometry_index":12303,"location":[8.162152,47.908806]},{"entry":[true,false],"in":1,"bearings":[113,295],"duration":2.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.545,"geometry_index":12304,"location":[8.163359,47.908437]},{"entry":[true,false],"in":1,"bearings":[106,291],"duration":2.674,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.475,"geometry_index":12306,"location":[8.164037,47.908255]},{"entry":[true,false],"in":1,"bearings":[101,284],"duration":3.908,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.615,"geometry_index":12308,"location":[8.164711,47.908133]},{"entry":[false,true,false],"in":2,"bearings":[68,89,272],"duration":2,"turn_weight":0.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.58,"geometry_index":12311,"location":[8.165723,47.908054]},{"entry":[true,false],"in":1,"bearings":[85,267],"duration":2.738,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.533,"geometry_index":12313,"location":[8.166243,47.908066]},{"entry":[true,true,false],"in":2,"bearings":[76,107,261],"duration":1.824,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.664,"geometry_index":12315,"location":[8.166964,47.908129]},{"entry":[true,false,true],"in":1,"bearings":[69,254,277],"duration":2.877,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.639,"geometry_index":12317,"location":[8.167439,47.908213]},{"entry":[true,false],"in":1,"bearings":[63,248],"duration":1.076,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.994,"geometry_index":12319,"location":[8.168198,47.908414]},{"entry":[true,false],"in":1,"bearings":[60,243],"duration":7.152,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.438,"geometry_index":12320,"location":[8.168472,47.908506]},{"entry":[true,false,false],"in":2,"bearings":[52,200,232],"duration":1.549,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.139,"geometry_index":12324,"location":[8.17012,47.909322]},{"entry":[true,false],"in":1,"bearings":[55,232],"duration":2.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.441,"geometry_index":12325,"location":[8.170465,47.909503]},{"entry":[true,false],"in":1,"bearings":[58,236],"duration":8.553,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.689,"geometry_index":12327,"location":[8.171099,47.909798]},{"entry":[true,false],"in":1,"bearings":[70,249],"duration":1.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.344,"geometry_index":12331,"location":[8.173496,47.910527]},{"entry":[true,false],"in":1,"bearings":[64,250],"duration":31.127,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":28.014,"geometry_index":12332,"location":[8.173926,47.910633]},{"entry":[true,false],"in":1,"bearings":[34,211],"duration":2.062,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.908,"geometry_index":12346,"location":[8.179886,47.91546]},{"entry":[true,false],"in":1,"bearings":[43,214],"duration":4.609,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.264,"geometry_index":12347,"location":[8.180235,47.91581]},{"entry":[true,false],"in":1,"bearings":[57,234],"duration":1.889,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.746,"geometry_index":12350,"location":[8.181252,47.916454]},{"entry":[true,false],"in":1,"bearings":[56,237],"duration":6.98,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.457,"geometry_index":12351,"location":[8.181737,47.916663]},{"entry":[true,false],"in":1,"bearings":[39,229],"duration":4.873,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.508,"geometry_index":12355,"location":[8.183419,47.917534]},{"entry":[true,false],"in":1,"bearings":[32,212],"duration":51.453,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":47.594,"geometry_index":12358,"location":[8.184283,47.918344]},{"entry":[true,false],"in":1,"bearings":[118,293],"duration":1.26,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.197,"geometry_index":12389,"location":[8.198218,47.918168]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.002,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.953,"geometry_index":12390,"location":[8.198543,47.918051]},{"entry":[true,false],"in":1,"bearings":[119,298],"duration":4.146,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.939,"geometry_index":12391,"location":[8.198804,47.917959]},{"entry":[true,true,false],"in":2,"bearings":[122,137,301],"duration":4.027,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.82,"geometry_index":12393,"location":[8.199858,47.917549]},{"entry":[true,false],"in":1,"bearings":[127,305],"duration":4.402,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.676,"geometry_index":12395,"location":[8.20082,47.917121]},{"entry":[true,false,false],"in":2,"bearings":[132,287,310],"duration":6.916,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.312,"geometry_index":12398,"location":[8.20181,47.916599]},{"entry":[true,false],"in":1,"bearings":[137,315],"duration":1.896,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.803,"geometry_index":12401,"location":[8.203198,47.915725]},{"entry":[true,false],"in":1,"bearings":[138,317],"duration":2.25,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.137,"geometry_index":12402,"location":[8.203554,47.915473]},{"entry":[true,false],"in":1,"bearings":[141,318],"duration":3.051,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.898,"geometry_index":12403,"location":[8.203961,47.915172]},{"entry":[true,false],"in":1,"bearings":[144,321],"duration":8.564,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.129,"geometry_index":12404,"location":[8.204481,47.914746]},{"entry":[true,false,true],"in":1,"bearings":[150,327,351],"duration":4.809,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.561,"geometry_index":12408,"location":[8.205856,47.913389]},{"entry":[true,false],"in":1,"bearings":[150,330],"duration":1.457,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.342,"geometry_index":12410,"location":[8.206499,47.912643]},{"entry":[true,false],"in":1,"bearings":[149,330],"duration":3.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.145,"geometry_index":12412,"location":[8.206694,47.912417]},{"entry":[true,false],"in":1,"bearings":[150,329],"duration":7.455,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.889,"geometry_index":12413,"location":[8.207158,47.911896]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":3.107,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.873,"geometry_index":12416,"location":[8.208182,47.910729]},{"entry":[true,false],"in":1,"bearings":[146,325],"duration":1.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.475,"geometry_index":12418,"location":[8.208652,47.910256]},{"entry":[true,false],"in":1,"bearings":[141,326],"duration":7.809,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.223,"geometry_index":12419,"location":[8.208881,47.910026]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":24.949,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":23.078,"geometry_index":12425,"location":[8.210416,47.909109]},{"entry":[true,false],"in":1,"bearings":[124,299],"duration":2.006,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.855,"geometry_index":12435,"location":[8.21652,47.907305]},{"entry":[true,false],"in":1,"bearings":[126,304],"duration":9.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.695,"geometry_index":12436,"location":[8.216957,47.907107]},{"entry":[true,false],"in":1,"bearings":[124,308],"duration":0.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.369,"geometry_index":12440,"location":[8.218914,47.906048]},{"entry":[true,false],"in":1,"bearings":[124,304],"duration":3.1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.867,"geometry_index":12441,"location":[8.219007,47.906006]},{"entry":[true,false],"in":1,"bearings":[117,301],"duration":1.217,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.125,"geometry_index":12443,"location":[8.219701,47.905708]},{"entry":[true,false],"in":1,"bearings":[115,297],"duration":3.984,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.686,"geometry_index":12444,"location":[8.220003,47.905605]},{"entry":[true,false],"in":1,"bearings":[110,292],"duration":4.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.766,"geometry_index":12447,"location":[8.221019,47.905302]},{"entry":[true,false],"in":1,"bearings":[114,290],"duration":4.242,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.924,"geometry_index":12450,"location":[8.222214,47.905011]},{"entry":[true,false],"in":1,"bearings":[119,297],"duration":15.258,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.113,"geometry_index":12453,"location":[8.223415,47.904624]},{"entry":[true,false],"in":1,"bearings":[114,294],"duration":8.09,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.482,"geometry_index":12459,"location":[8.227674,47.90319]},{"entry":[true,false],"in":1,"bearings":[113,294],"duration":16.783,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":15.105,"geometry_index":12460,"location":[8.229909,47.902529]},{"entry":[true,false],"in":1,"bearings":[125,305],"duration":6.49,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.842,"geometry_index":12467,"location":[8.23383,47.901162]},{"entry":[true,false],"in":1,"bearings":[120,305],"duration":2.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.418,"geometry_index":12469,"location":[8.235232,47.900503]},{"entry":[true,false],"in":1,"bearings":[116,300],"duration":38.16,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":34.344,"geometry_index":12470,"location":[8.235841,47.900265]},{"entry":[true,false],"in":1,"bearings":[43,225],"duration":6.83,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.148,"geometry_index":12491,"location":[8.245562,47.901436]},{"entry":[true,false,true],"in":1,"bearings":[48,222,244],"duration":1.402,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.252,"geometry_index":12494,"location":[8.246896,47.902419]},{"entry":[true,false],"in":1,"bearings":[48,227],"duration":4.701,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.725,"geometry_index":12496,"location":[8.247184,47.902596]},{"entry":[true,false],"in":1,"bearings":[69,242],"duration":3.783,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.404,"geometry_index":12501,"location":[8.248308,47.903122]},{"entry":[true,false],"in":1,"bearings":[79,256],"duration":3.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.568,"geometry_index":12505,"location":[8.24937,47.903352]},{"entry":[true,false],"in":1,"bearings":[94,271],"duration":3.281,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.953,"geometry_index":12510,"location":[8.250528,47.903423]},{"entry":[false,true,false],"in":2,"bearings":[75,97,276],"duration":1.598,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":2.43,"geometry_index":12512,"location":[8.251487,47.903362]},{"entry":[true,true,false],"in":2,"bearings":[87,113,277],"duration":2.75,"turn_duration":0.038,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.441,"geometry_index":12514,"location":[8.25194,47.903324]},{"entry":[true,false,false],"in":2,"bearings":[81,199,263],"duration":0.711,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.623,"geometry_index":12516,"location":[8.252719,47.903363]},{"entry":[true,false,true],"in":1,"bearings":[81,261,294],"duration":6.381,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.734,"geometry_index":12517,"location":[8.252919,47.903384]},{"entry":[true,false],"in":1,"bearings":[97,272],"duration":2.736,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.463,"geometry_index":12522,"location":[8.255276,47.90354]},{"entry":[true,true,false],"in":2,"bearings":[106,130,279],"duration":5.844,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.248,"geometry_index":12524,"location":[8.256278,47.903443]},{"entry":[true,false],"in":1,"bearings":[115,294],"duration":1.729,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.555,"geometry_index":12528,"location":[8.25832,47.902957]},{"entry":[true,false],"in":1,"bearings":[113,295],"duration":2.506,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.236,"geometry_index":12529,"location":[8.258906,47.902775]},{"entry":[true,false],"in":1,"bearings":[115,293],"duration":3.428,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.078,"geometry_index":12530,"location":[8.259756,47.902528]},{"entry":[true,false],"in":1,"bearings":[114,296],"duration":3.744,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.369,"geometry_index":12532,"location":[8.260903,47.902162]},{"entry":[true,false],"in":1,"bearings":[108,291],"duration":8.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.971,"geometry_index":12534,"location":[8.262195,47.901805]},{"entry":[true,false],"in":1,"bearings":[106,285],"duration":14.768,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.283,"geometry_index":12538,"location":[8.265364,47.9012]},{"entry":[true,false],"in":1,"bearings":[130,310],"duration":2.365,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.129,"geometry_index":12552,"location":[8.270093,47.899404]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":7.328,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.572,"geometry_index":12554,"location":[8.270568,47.899135]},{"entry":[true,false],"in":1,"bearings":[116,299],"duration":20.811,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.709,"geometry_index":12559,"location":[8.272178,47.89845]},{"entry":[true,false],"in":1,"bearings":[106,289],"duration":1.822,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.619,"geometry_index":12566,"location":[8.27716,47.896901]},{"entry":[true,false],"in":1,"bearings":[102,285],"duration":5.451,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.906,"geometry_index":12568,"location":[8.277611,47.89682]},{"entry":[true,true,false],"in":2,"bearings":[89,124,272],"duration":1.723,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.529,"geometry_index":12572,"location":[8.279012,47.896706]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.279473,47.89671],"geometry_index":12573,"admin_index":4,"weight":4.346,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.026,"turn_weight":0.75,"duration":4.021,"bearings":[84,168,269],"out":0,"in":2,"entry":[true,false,false]},{"entry":[true,false],"in":1,"bearings":[78,261],"duration":19.627,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":17.664,"geometry_index":12575,"location":[8.280543,47.896802]},{"entry":[true,false],"in":1,"bearings":[71,251],"duration":1.35,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.215,"geometry_index":12581,"location":[8.285598,47.89792]},{"entry":[true,false],"in":1,"bearings":[71,251],"duration":6.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.43,"geometry_index":12582,"location":[8.285941,47.897999]},{"entry":[true,false],"in":1,"bearings":[73,253],"duration":3.043,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.738,"geometry_index":12584,"location":[8.287469,47.898316]},{"entry":[true,false],"in":1,"bearings":[75,253],"duration":3.752,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.377,"geometry_index":12585,"location":[8.288233,47.898469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[75,255],"duration":0.709,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.639,"geometry_index":12587,"location":[8.289188,47.898638]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.289365,47.89867],"geometry_index":12588,"admin_index":4,"weight":4.1,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":2,"duration":2.34,"bearings":[35,76,100,255],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,false,false],"in":2,"bearings":[77,196,256],"duration":1.223,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.094,"geometry_index":12589,"location":[8.289961,47.898769]},{"entry":[true,false,true],"in":1,"bearings":[77,257,289],"duration":1.508,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":12590,"location":[8.290306,47.898824]},{"entry":[true,false],"in":1,"bearings":[78,257],"duration":1.752,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.578,"geometry_index":12591,"location":[8.290712,47.898887]},{"entry":[true,false],"in":1,"bearings":[78,258],"duration":1.053,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.949,"geometry_index":12592,"location":[8.291193,47.898955]},{"entry":[true,false],"in":1,"bearings":[79,258],"duration":12.951,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.656,"geometry_index":12593,"location":[8.29151,47.899001]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":11.02,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.918,"geometry_index":12598,"location":[8.295418,47.899412]},{"entry":[true,false],"in":1,"bearings":[87,264],"duration":1.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12602,"location":[8.298769,47.899619]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":20.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.168,"geometry_index":12603,"location":[8.299113,47.899631]},{"entry":[true,false],"in":1,"bearings":[92,271],"duration":36.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":31.762,"geometry_index":12611,"location":[8.305425,47.899697]},{"entry":[true,false],"in":1,"bearings":[93,276],"duration":5.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.387,"geometry_index":12633,"location":[8.316673,47.898793]},{"entry":[true,false],"in":1,"bearings":[90,271],"duration":4.115,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.6,"geometry_index":12636,"location":[8.318244,47.89876]},{"entry":[true,false],"in":1,"bearings":[90,270],"duration":11.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.35,"geometry_index":12638,"location":[8.319535,47.898763]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":1.17,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.023,"geometry_index":12646,"location":[8.323203,47.898508]},{"entry":[true,false],"in":1,"bearings":[105,283],"duration":48.096,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":43.287,"geometry_index":12647,"location":[8.323545,47.898453]},{"entry":[true,false],"in":1,"bearings":[122,300],"duration":1.889,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.746,"geometry_index":12664,"location":[8.335807,47.894852]},{"entry":[true,false],"in":1,"bearings":[123,302],"duration":8.08,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.475,"geometry_index":12665,"location":[8.336171,47.894699]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":41.84,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.701,"geometry_index":12666,"location":[8.337313,47.894208]},{"entry":[true,false],"in":1,"bearings":[131,309],"duration":2.463,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.279,"geometry_index":12674,"location":[8.342948,47.891415]},{"entry":[true,false],"in":1,"bearings":[130,311],"duration":35.17,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":32.531,"geometry_index":12675,"location":[8.343208,47.891263]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":1.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.365,"geometry_index":12680,"location":[8.347094,47.88904]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":13.945,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.893,"geometry_index":12681,"location":[8.347256,47.888947]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":0.838,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.768,"geometry_index":12683,"location":[8.34881,47.888075]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":2.584,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.391,"geometry_index":12684,"location":[8.348909,47.888024]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":5.723,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.293,"geometry_index":12685,"location":[8.349208,47.887868]},{"entry":[false,true,false],"in":2,"bearings":[94,126,307],"duration":9.021,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":9.324,"geometry_index":12686,"location":[8.349872,47.887529]},{"entry":[true,false,true],"in":1,"bearings":[121,304,325],"duration":3.713,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.414,"geometry_index":12688,"location":[8.350924,47.887044]},{"entry":[true,false],"in":1,"bearings":[120,301],"duration":3.211,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.971,"geometry_index":12690,"location":[8.351392,47.886854]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":1.85,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.711,"geometry_index":12691,"location":[8.351773,47.886705]},{"entry":[true,false],"in":1,"bearings":[118,300],"duration":2.336,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":12692,"location":[8.351999,47.886619]},{"entry":[true,true,false],"in":2,"bearings":[118,131,298],"duration":8.371,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.738,"geometry_index":12693,"location":[8.35228,47.886519]},{"entry":[true,false,false],"in":2,"bearings":[112,258,294],"duration":5.148,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.746,"geometry_index":12695,"location":[8.353229,47.886201]},{"entry":[true,false],"in":1,"bearings":[107,292],"duration":5.49,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.078,"geometry_index":12696,"location":[8.353936,47.886007]},{"entry":[true,false],"in":1,"bearings":[103,286],"duration":36.539,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":33.799,"geometry_index":12698,"location":[8.354722,47.885852]},{"entry":[true,false],"in":1,"bearings":[78,261],"duration":5.58,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.162,"geometry_index":12708,"location":[8.360106,47.885692]},{"entry":[true,false],"in":1,"bearings":[76,255],"duration":7.291,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.738,"geometry_index":12710,"location":[8.360914,47.885822]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":3.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.775,"geometry_index":12712,"location":[8.362042,47.886016]},{"entry":[true,false],"in":1,"bearings":[74,254],"duration":1.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":12714,"location":[8.362814,47.886157]},{"entry":[true,false],"in":1,"bearings":[72,254],"duration":3.449,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.191,"geometry_index":12715,"location":[8.363231,47.886236]},{"entry":[true,false],"in":1,"bearings":[71,252],"duration":11.75,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.869,"geometry_index":12716,"location":[8.364106,47.886426]},{"entry":[true,false],"in":1,"bearings":[70,250],"duration":9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.1,"geometry_index":12719,"location":[8.367068,47.887131]},{"entry":[true,false],"in":1,"bearings":[71,250],"duration":1.186,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12722,"location":[8.369335,47.887688]},{"entry":[true,false],"in":1,"bearings":[72,251],"duration":11.211,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.09,"geometry_index":12723,"location":[8.369674,47.887768]},{"entry":[true,false],"in":1,"bearings":[79,257],"duration":56.553,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":49.482,"geometry_index":12727,"location":[8.372844,47.888363]},{"entry":[true,false],"in":1,"bearings":[83,262],"duration":1.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.105,"geometry_index":12739,"location":[8.389374,47.889469]},{"entry":[true,false],"in":1,"bearings":[82,263],"duration":11.221,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.818,"geometry_index":12740,"location":[8.389735,47.8895]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":1.584,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.426,"geometry_index":12744,"location":[8.392925,47.889729]},{"entry":[true,false],"in":1,"bearings":[89,267],"duration":14.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.219,"geometry_index":12745,"location":[8.393372,47.889743]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":1.729,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.555,"geometry_index":12750,"location":[8.397464,47.889705]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":2.881,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.592,"geometry_index":12751,"location":[8.397943,47.889694]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.39874,47.889678],"geometry_index":12753,"admin_index":4,"weight":1.977,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.007,"turn_weight":0.75,"duration":1.369,"bearings":[49,93,272],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,true,false],"in":2,"bearings":[91,117,273],"duration":2.352,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.1,"geometry_index":12754,"location":[8.399113,47.889663]},{"entry":[true,false,true],"in":1,"bearings":[91,271,294],"duration":3.102,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.783,"geometry_index":12755,"location":[8.399732,47.889656]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":2.23,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.008,"geometry_index":12757,"location":[8.400544,47.889641]},{"entry":[true,false],"in":1,"bearings":[91,272],"duration":1.285,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.156,"geometry_index":12758,"location":[8.401138,47.889628]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":6.439,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.795,"geometry_index":12759,"location":[8.40147,47.889624]},{"entry":[true,false],"in":1,"bearings":[89,271],"duration":8.893,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.486,"geometry_index":12760,"location":[8.403171,47.889603]},{"entry":[true,false],"in":1,"bearings":[87,269],"duration":22.057,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.852,"geometry_index":12762,"location":[8.405508,47.889642]},{"entry":[true,false],"in":1,"bearings":[84,267],"duration":2.709,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.418,"geometry_index":12768,"location":[8.411331,47.889831]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":2.535,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.281,"geometry_index":12770,"location":[8.412033,47.889877]},{"entry":[true,false],"in":1,"bearings":[81,265],"duration":12.85,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.545,"geometry_index":12771,"location":[8.412703,47.889916]},{"entry":[true,false],"in":1,"bearings":[54,237],"duration":23.082,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":20.773,"geometry_index":12783,"location":[8.415869,47.89065]},{"entry":[true,false],"in":1,"bearings":[45,223],"duration":1.271,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.143,"geometry_index":12794,"location":[8.419667,47.893602]},{"entry":[true,false],"in":1,"bearings":[46,226],"duration":11.52,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.367,"geometry_index":12796,"location":[8.419895,47.893752]},{"entry":[true,false],"in":1,"bearings":[55,233],"duration":0.523,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.471,"geometry_index":12802,"location":[8.4217,47.89477]},{"entry":[true,false],"in":1,"bearings":[55,235],"duration":6.611,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.949,"geometry_index":12803,"location":[8.42179,47.894813]},{"entry":[true,false],"in":1,"bearings":[60,240],"duration":0.785,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.707,"geometry_index":12806,"location":[8.42293,47.895298]},{"entry":[true,false],"in":1,"bearings":[61,240],"duration":2.684,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.416,"geometry_index":12807,"location":[8.423067,47.895351]},{"entry":[true,false],"in":1,"bearings":[62,243],"duration":1.482,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.334,"geometry_index":12809,"location":[8.423548,47.895524]},{"entry":[false,true,false],"in":2,"bearings":[63,86,242],"duration":5.092,"turn_weight":2.25,"turn_duration":0.035,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":6.801,"geometry_index":12810,"location":[8.423715,47.895584]},{"entry":[true,false],"in":1,"bearings":[75,275],"duration":2.141,"turn_duration":0.083,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.852,"geometry_index":12815,"location":[8.424502,47.895568]},{"tunnel_name":"Dögginger Tunnel","entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[73,254],"duration":1.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.256,"geometry_index":12817,"location":[8.424815,47.895626]},{"tunnel_name":"Dögginger Tunnel","entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[72,252],"duration":43.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":39.244,"geometry_index":12819,"location":[8.425216,47.895711]},{"entry":[true,false],"in":1,"bearings":[95,280],"duration":2.318,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.086,"geometry_index":12840,"location":[8.437833,47.895002]},{"entry":[true,false],"in":1,"bearings":[84,270],"duration":3.896,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.506,"geometry_index":12842,"location":[8.438457,47.89498]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[76,259],"duration":5.029,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.527,"geometry_index":12845,"location":[8.439506,47.895075]},{"entry":[true,true,false],"in":2,"bearings":[64,94,249],"duration":5.27,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.717,"geometry_index":12848,"location":[8.440809,47.895352]},{"entry":[true,false,false],"in":2,"bearings":[56,217,238],"duration":0.561,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.486,"geometry_index":12851,"location":[8.44215,47.895853]},{"entry":[true,false],"in":1,"bearings":[57,236],"duration":7.426,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.682,"geometry_index":12852,"location":[8.442287,47.895914]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":19.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.738,"geometry_index":12853,"location":[8.444136,47.896719]},{"entry":[true,false],"in":1,"bearings":[58,238],"duration":1.941,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":12856,"location":[8.44906,47.898854]},{"entry":[true,false],"in":1,"bearings":[60,238],"duration":4.23,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.807,"geometry_index":12857,"location":[8.449556,47.899059]},{"entry":[true,false],"in":1,"bearings":[62,240],"duration":6.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.912,"geometry_index":12858,"location":[8.450642,47.899481]},{"entry":[true,false,true],"in":1,"bearings":[67,242,249],"duration":4.037,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.623,"geometry_index":12860,"location":[8.452369,47.90009]},{"entry":[true,false],"in":1,"bearings":[66,246],"duration":60.592,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":53.012,"geometry_index":12862,"location":[8.453405,47.900398]},{"entry":[true,false],"in":1,"bearings":[50,229],"duration":3.506,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.066,"geometry_index":12881,"location":[8.466669,47.907508]},{"entry":[true,false],"in":1,"bearings":[44,228],"duration":47.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":41.24,"geometry_index":12883,"location":[8.46742,47.907948]},{"entry":[true,false],"in":1,"bearings":[57,241],"duration":4.025,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.623,"geometry_index":12897,"location":[8.477062,47.913968]},{"entry":[true,false],"in":1,"bearings":[51,234],"duration":8.432,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.588,"geometry_index":12899,"location":[8.478,47.914397]},{"entry":[true,false],"in":1,"bearings":[49,226],"duration":2.938,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.643,"geometry_index":12902,"location":[8.479807,47.915442]},{"entry":[true,false],"in":1,"bearings":[50,229],"duration":2.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.498,"geometry_index":12903,"location":[8.480428,47.915807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[54,230],"duration":2.037,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.885,"geometry_index":12904,"location":[8.481011,47.916137]},{"entry":[true,true,false],"in":2,"bearings":[53,82,234],"duration":1.869,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.711,"geometry_index":12905,"location":[8.481474,47.916364]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[58,233],"duration":1.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.434,"geometry_index":12906,"location":[8.481865,47.916562]},{"entry":[true,false,false],"in":2,"bearings":[59,201,238],"duration":3.289,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.037,"geometry_index":12907,"location":[8.482212,47.91671]},{"entry":[true,false],"in":1,"bearings":[65,242],"duration":2.594,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.4,"geometry_index":12909,"location":[8.482936,47.916986]},{"entry":[true,false],"in":1,"bearings":[67,245],"duration":1.111,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.029,"geometry_index":12910,"location":[8.483532,47.917169]},{"entry":[false,true,false],"in":2,"bearings":[37,69,247],"duration":3.018,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.783,"geometry_index":12911,"location":[8.483796,47.917243]},{"entry":[true,false,true],"in":1,"bearings":[74,253,284],"duration":2.072,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":12913,"location":[8.484569,47.917427]},{"entry":[true,false],"in":1,"bearings":[80,254],"duration":2.064,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":12914,"location":[8.485077,47.917522]},{"entry":[true,false],"in":1,"bearings":[82,260],"duration":1.641,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.518,"geometry_index":12915,"location":[8.485587,47.917585]},{"entry":[true,false],"in":1,"bearings":[82,262],"duration":1.93,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.785,"geometry_index":12916,"location":[8.486,47.917626]},{"entry":[true,false],"in":1,"bearings":[84,262],"duration":21.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":19.668,"geometry_index":12918,"location":[8.486493,47.917672]},{"entry":[true,false],"in":1,"bearings":[86,267],"duration":1.451,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.342,"geometry_index":12924,"location":[8.491552,47.917833]},{"entry":[true,false],"in":1,"bearings":[85,266],"duration":23.314,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":21.566,"geometry_index":12925,"location":[8.491909,47.917848]},{"entry":[true,false],"in":1,"bearings":[75,257],"duration":0.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.832,"geometry_index":12934,"location":[8.497309,47.918412]},{"entry":[true,false],"in":1,"bearings":[74,255],"duration":8.1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.492,"geometry_index":12935,"location":[8.497531,47.918452]},{"entry":[true,false],"in":1,"bearings":[70,252],"duration":4.553,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.211,"geometry_index":12938,"location":[8.499486,47.918856]},{"entry":[true,false],"in":1,"bearings":[68,249],"duration":5.082,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.701,"geometry_index":12940,"location":[8.500565,47.919124]},{"entry":[true,false],"in":1,"bearings":[66,247],"duration":3.537,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.273,"geometry_index":12942,"location":[8.501751,47.919457]},{"entry":[true,false],"in":1,"bearings":[66,246],"duration":0.559,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.518,"geometry_index":12943,"location":[8.502442,47.919666]},{"entry":[true,false],"in":1,"bearings":[64,246],"duration":0.732,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.678,"geometry_index":12944,"location":[8.502549,47.919698]},{"entry":[true,false],"in":1,"bearings":[64,244],"duration":1.6,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":12945,"location":[8.502677,47.919739]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.502961,47.919831],"geometry_index":12946,"admin_index":4,"weight":3.795,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.019,"turn_weight":1,"duration":3.041,"bearings":[39,63,244],"out":1,"in":2,"entry":[false,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.503518,47.920027],"geometry_index":12948,"admin_index":4,"weight":4.143,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":0.75,"duration":3.686,"bearings":[60,242,320,346],"out":0,"in":1,"entry":[true,false,false,true]},{"entry":[true,false,true],"in":1,"bearings":[58,240,255],"duration":1.172,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12949,"location":[8.504151,47.920273]},{"entry":[true,false],"in":1,"bearings":[59,238],"duration":4.824,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.463,"geometry_index":12950,"location":[8.504333,47.920349]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[58,239],"duration":1.729,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.598,"geometry_index":12951,"location":[8.505107,47.92066]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[58,238],"duration":1.152,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":12952,"location":[8.505375,47.920774]},{"entry":[true,true,false],"in":2,"bearings":[57,92,238],"duration":3.328,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.061,"geometry_index":12953,"location":[8.505555,47.92085]},{"entry":[true,true,false],"in":2,"bearings":[58,158,237],"duration":0.465,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.424,"geometry_index":12954,"location":[8.50594,47.921019]},{"entry":[true,false,false],"in":2,"bearings":[55,155,238],"duration":1.059,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.959,"geometry_index":12955,"location":[8.506031,47.921057]},{"entry":[true,false],"in":1,"bearings":[57,235],"duration":2.072,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.918,"geometry_index":12956,"location":[8.506237,47.921154]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":2.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.725,"geometry_index":12957,"location":[8.506661,47.921342]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":3,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.775,"geometry_index":12958,"location":[8.507266,47.92161]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":0.873,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.807,"geometry_index":12959,"location":[8.50788,47.921878]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":1.254,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.16,"geometry_index":12960,"location":[8.508057,47.921955]},{"entry":[true,false],"in":1,"bearings":[57,237],"duration":1.637,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.514,"geometry_index":12961,"location":[8.508312,47.922067]},{"entry":[true,false],"in":1,"bearings":[58,237],"duration":1.908,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.766,"geometry_index":12962,"location":[8.50865,47.922214]},{"entry":[true,false],"in":1,"bearings":[60,238],"duration":0.771,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.713,"geometry_index":12963,"location":[8.50905,47.92238]},{"entry":[true,false],"in":1,"bearings":[60,240],"duration":27.514,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":25.451,"geometry_index":12964,"location":[8.509229,47.922449]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[80,259],"duration":0.783,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.725,"geometry_index":12972,"location":[8.515882,47.924144]},{"entry":[true,false],"in":1,"bearings":[82,260],"duration":57.912,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":52.121,"geometry_index":12973,"location":[8.516084,47.924167]},{"entry":[true,false],"in":1,"bearings":[75,256],"duration":2.922,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.629,"geometry_index":12988,"location":[8.530735,47.925594]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":1.514,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.361,"geometry_index":12989,"location":[8.531456,47.925721]},{"entry":[true,true,false],"in":2,"bearings":[76,122,255],"duration":1.541,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.381,"geometry_index":12990,"location":[8.531828,47.925786]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.703,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.627,"geometry_index":12991,"location":[8.532164,47.925842]},{"entry":[true,false],"in":1,"bearings":[75,256],"duration":4.258,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.314,"geometry_index":12992,"location":[8.532322,47.925868]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":2.381,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.143,"geometry_index":12993,"location":[8.533273,47.926034]},{"entry":[true,false],"in":1,"bearings":[76,255],"duration":2.322,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.09,"geometry_index":12994,"location":[8.533805,47.926132]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":9.115,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.205,"geometry_index":12995,"location":[8.534323,47.926219]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":5.109,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.6,"geometry_index":12996,"location":[8.536371,47.926563]},{"entry":[true,false],"in":1,"bearings":[74,256],"duration":1.162,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.045,"geometry_index":12997,"location":[8.537517,47.926761]},{"entry":[true,true,false],"in":2,"bearings":[74,100,254],"duration":2.58,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.314,"geometry_index":12998,"location":[8.537778,47.92681]},{"entry":[true,true,false],"in":2,"bearings":[75,166,254],"duration":0.504,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.447,"geometry_index":12999,"location":[8.538287,47.926908]},{"entry":[true,false,false],"in":2,"bearings":[75,162,255],"duration":0.842,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.752,"geometry_index":13000,"location":[8.538396,47.926927]},{"entry":[true,false],"in":1,"bearings":[75,255],"duration":3.34,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.006,"geometry_index":13001,"location":[8.538609,47.926964]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":1.826,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.643,"geometry_index":13003,"location":[8.539437,47.927109]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":0.887,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.799,"geometry_index":13004,"location":[8.539896,47.927187]},{"entry":[true,false],"in":1,"bearings":[76,256],"duration":43.982,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":39.584,"geometry_index":13005,"location":[8.540112,47.927223]},{"entry":[true,false],"in":1,"bearings":[108,289],"duration":8.191,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.373,"geometry_index":13037,"location":[8.551137,47.92691]},{"entry":[true,false],"in":1,"bearings":[105,287],"duration":2.818,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.535,"geometry_index":13039,"location":[8.553142,47.92648]},{"entry":[true,false],"in":1,"bearings":[104,285],"duration":7.145,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.43,"geometry_index":13040,"location":[8.553841,47.926356]},{"entry":[true,false],"in":1,"bearings":[99,282],"duration":9.305,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.375,"geometry_index":13043,"location":[8.555533,47.926101]},{"entry":[true,false],"in":1,"bearings":[94,276],"duration":6.037,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.434,"geometry_index":13046,"location":[8.557762,47.925904]},{"entry":[true,false],"in":1,"bearings":[90,272],"duration":62.641,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":54.811,"geometry_index":13048,"location":[8.559225,47.925851]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":3.895,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.408,"geometry_index":13069,"location":[8.574278,47.926959]},{"entry":[true,false],"in":1,"bearings":[89,267],"duration":2.184,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":13070,"location":[8.575163,47.926986]},{"entry":[true,false],"in":1,"bearings":[90,269],"duration":3.246,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.84,"geometry_index":13071,"location":[8.57566,47.926993]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[91,270],"duration":0.885,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.775,"geometry_index":13073,"location":[8.576402,47.926994]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.576607,47.926991],"geometry_index":13074,"admin_index":4,"weight":1.473,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":0.75,"duration":0.832,"bearings":[91,271],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":1.768,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.539,"geometry_index":13075,"location":[8.57676,47.926989]},{"entry":[true,false,true],"in":1,"bearings":[91,271,315],"duration":2.408,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.1,"geometry_index":13076,"location":[8.577049,47.926986]},{"entry":[true,false],"in":1,"bearings":[91,271],"duration":1.326,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.16,"geometry_index":13077,"location":[8.577553,47.92698]},{"entry":[true,false],"in":1,"bearings":[93,271],"duration":2.525,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.211,"geometry_index":13078,"location":[8.577838,47.926976]},{"entry":[true,false],"in":1,"bearings":[92,273],"duration":2.236,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.957,"geometry_index":13079,"location":[8.578375,47.926959]},{"entry":[true,false],"in":1,"bearings":[92,272],"duration":31.145,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":27.252,"geometry_index":13080,"location":[8.57892,47.926949]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":2.891,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.529,"geometry_index":13084,"location":[8.586566,47.926692]},{"entry":[true,false],"in":1,"bearings":[95,274],"duration":2.619,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.291,"geometry_index":13085,"location":[8.587281,47.926657]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":0.764,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.668,"geometry_index":13087,"location":[8.587915,47.926612]},{"entry":[true,false],"in":1,"bearings":[99,277],"duration":2.307,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.018,"geometry_index":13088,"location":[8.588102,47.926597]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[102,279],"duration":1.35,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.182,"geometry_index":13089,"location":[8.58864,47.926539]},{"entry":[true,false],"in":1,"bearings":[102,282],"duration":0.684,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.582,"geometry_index":13090,"location":[8.588959,47.926492]},{"entry":[true,false],"in":1,"bearings":[106,282],"duration":2.336,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.035,"geometry_index":13091,"location":[8.589122,47.926469]},{"entry":[true,false],"in":1,"bearings":[108,286],"duration":6.258,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.477,"geometry_index":13092,"location":[8.589661,47.926368]},{"entry":[true,false],"in":1,"bearings":[115,291],"duration":0.812,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.711,"geometry_index":13094,"location":[8.591093,47.926031]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":6.852,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.996,"geometry_index":13095,"location":[8.591259,47.925979]},{"entry":[true,false],"in":1,"bearings":[124,298],"duration":8.531,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.455,"geometry_index":13098,"location":[8.592661,47.925495]},{"entry":[true,false],"in":1,"bearings":[131,309],"duration":2.58,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.258,"geometry_index":13101,"location":[8.594205,47.924757]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":2.986,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.607,"geometry_index":13102,"location":[8.594636,47.924507]},{"entry":[true,false],"in":1,"bearings":[133,311],"duration":3.18,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.775,"geometry_index":13104,"location":[8.595123,47.924222]},{"entry":[true,false],"in":1,"bearings":[135,313],"duration":8.604,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.527,"geometry_index":13105,"location":[8.595628,47.923903]},{"entry":[true,false],"in":1,"bearings":[138,316],"duration":69.094,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":60.449,"geometry_index":13109,"location":[8.596943,47.922994]},{"entry":[true,false],"in":1,"bearings":[114,291],"duration":1.475,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.291,"geometry_index":13126,"location":[8.610338,47.917332]},{"entry":[true,false],"in":1,"bearings":[115,294],"duration":50.76,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":44.414,"geometry_index":13127,"location":[8.61064,47.917243]},{"entry":[true,false],"in":1,"bearings":[75,254],"duration":6.191,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.572,"geometry_index":13153,"location":[8.62851,47.916489]},{"entry":[true,false],"in":1,"bearings":[84,261],"duration":3.932,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.539,"geometry_index":13156,"location":[8.63076,47.916803]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":10.301,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.271,"geometry_index":13158,"location":[8.631713,47.916864]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":1.199,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":13162,"location":[8.634205,47.916862]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":1.137,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.051,"geometry_index":13163,"location":[8.634453,47.916849]},{"entry":[true,false],"in":1,"bearings":[95,274],"duration":0.334,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":13164,"location":[8.63469,47.916838]},{"entry":[true,false],"in":1,"bearings":[96,275],"duration":0.322,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":13165,"location":[8.634761,47.916834]},{"entry":[true,false],"in":1,"bearings":[96,276],"duration":1.27,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.668,"geometry_index":13166,"location":[8.634832,47.916829]},{"entry":[true,false],"in":1,"bearings":[97,276],"duration":2.969,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.746,"geometry_index":13167,"location":[8.6351,47.916811]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":2.084,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.928,"geometry_index":13168,"location":[8.635731,47.916762]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":1.832,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.693,"geometry_index":13169,"location":[8.636176,47.916724]},{"entry":[true,false],"in":1,"bearings":[97,277],"duration":59.588,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":55.119,"geometry_index":13170,"location":[8.636566,47.91669]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":1.881,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.74,"geometry_index":13191,"location":[8.6514,47.916527]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":3.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.883,"geometry_index":13192,"location":[8.651869,47.916561]},{"entry":[true,true,false],"in":2,"bearings":[85,177,263],"duration":0.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.398,"geometry_index":13194,"location":[8.652644,47.916622]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":1.182,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.094,"geometry_index":13195,"location":[8.652753,47.916629]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":1.826,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.736,"geometry_index":13196,"location":[8.653048,47.916648]},{"entry":[true,false],"in":1,"bearings":[87,264],"duration":6.092,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.787,"geometry_index":13197,"location":[8.653505,47.916679]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.654983,47.916728],"geometry_index":13199,"admin_index":4,"weight":1.025,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":0.5,"duration":0.561,"bearings":[13,87,267],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,false],"in":1,"bearings":[88,267],"duration":3.156,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3,"geometry_index":13200,"location":[8.655115,47.916733]},{"entry":[true,false,true],"in":1,"bearings":[88,268,287],"duration":1.744,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.648,"geometry_index":13201,"location":[8.655885,47.916753]},{"entry":[true,false],"in":1,"bearings":[87,268],"duration":7.264,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.9,"geometry_index":13202,"location":[8.65624,47.916761]},{"entry":[true,false],"in":1,"bearings":[87,267],"duration":17.422,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.551,"geometry_index":13203,"location":[8.657755,47.916821]},{"entry":[true,false],"in":1,"bearings":[78,260],"duration":5.85,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.557,"geometry_index":13207,"location":[8.661351,47.917129]},{"entry":[true,false],"in":1,"bearings":[79,258],"duration":1.992,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.893,"geometry_index":13208,"location":[8.662538,47.917301]},{"entry":[false,true,false],"in":2,"bearings":[68,82,259],"duration":5.258,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":5.988,"geometry_index":13209,"location":[8.662939,47.917355]},{"bearings":[80,110,264],"entry":[false,true,false],"in":2,"turn_weight":1.5,"turn_duration":0.037,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":13211,"location":[8.663403,47.917391]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"311","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 311"},{"type":"delimiter","text":"/"},{"type":"text","text":"Ulm"},{"type":"text","text":"/"},{"type":"text","text":"Tuttlingen"}],"degrees":207,"driving_side":"right","type":"roundabout","modifier":"straight","text":"A 81 / B 311 / Ulm / Tuttlingen"},"distanceAlongGeometry":69779.531}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on B 31.","modifier":"slight right","bearing_after":111,"bearing_before":117,"location":[7.863194,47.988324]},"speedLimitSign":"vienna","name":"Schwarzwaldstraße","weight_typical":3487.305,"duration_typical":3813.66,"duration":3813.66,"distance":69779.531,"driving_side":"right","weight":3487.305,"mode":"driving","ref":"B 31","geometry":"ge~ozAsx|~M~@eFv@uEhAqJd@eGHiH@wL?{MV}H`AaIvBiK~B{FbFwFrDmFpAiDnIme@`@qC`pAigIbTgvAbW}nCrPqrB|HaeA`K_qAnJeqAzPqwBzPewBzKkrApBgU`Du[|Fij@fEs]pHsk@tIqk@zIel@fM{_AzLo}@xL{{@jk@q|D~qB{_OhPm|AdFqgBzDmpAtBom@~Baj@`AcV`Ewr@|Dwe@tBgR~A_QdCeSxEg^jIid@nFgVlIs]tC{JjGqRxEwNjS_i@hUqg@lfAi}Bf`@uaAtRom@rHcX`K}_@|L{i@lJ}c@jRgdArKar@pEk]j@iFh@yEbK}|@vHqt@dHkv@~Fi{@bFe|@bFslAr@q[fAaf@b@wRdC}uAtAycAx@iz@n@ebABaHFuqAd@i}BIahBFkj@?cPW{sB@}Nf@ksAf@k}@pAqsB`DimBvD_kC`Gy_CzAkl@l@_g@DqBEgn@dB}m@x@sUvDqaAfGegAjLq}A~@}NlKkfBlJwsAnHgaAfJgkAfBoTtGsw@~Dec@~Mu_B|Hkw@lTuhB|I_u@bGgd@fCsQ|CmSdGg`@hHgd@pKqm@jGo[fGeZtNop@hDeOvCsLpNmi@nJc]lLc^lMy_@vUkl@vLmYxL_XzKuT|Re^fK{PdEuG`H_LdG{InRsWjUeYf\\_^vPaPzQuOjMcKzXcSvZkRfMaHpJqE|R_JhJ}D`JmDzQ}FtHwBdMuBzr@cNhT_Evc@mFpCa@|GcAxVcFj_@}JhPcFrNwDfHoB`D{@rO_Ev^eK~e@cOfR}FphA}b@pDuA|CeAXKxJcDdFmArGcAtGi@vFOjEItBArJGbHElMC~I]zIaAjHkAr]{FbFy@vDo@tQ}CbHk@rBMxIStUc@fRK`NiApFoAvHgCtJuEfNwJjG_FtEaEhGeG~A}A`IcJbHwInHgLpI_ObGkKrEqId@_Aj@mAbAsBrBiFjFsNjI{VdJkXnHuSzEmLhHkO|FwKnHeM|f@}t@zTo\\fGuJfGyKdGyM~DyKpCaKpC{LpFoX|EwThEqQfDiMhKe`@pBeH|BwHlA}DlA_EfAkD|B_IdDaLvDyLvDqNfDuN~BcMXwArAkIF]`BcKzJkj@lAeGtC_LlJmZ|D{M`CwKfByKh@oFh@qFv@yMz@i\\fAua@lBkh@j@sKl@mLfBeXnCy[`@sDbAaJdEq^vGum@bHiq@lDwZvCoR~CyOzCqLzDuMTw@xDqKxGePpEiJbCkEnC}E`GsIl@}@tDeFjd@en@|Xg_@~E}HlD_HlB{G|@uH`@eHZ_KTwK^sHt@gH~BaLfC_J`C{GjCsHnKkX~DeJtFwKdEmH`DaEfDyClDwBxGeEzMuHlFqD`DwC|BwDdBaFpAiHbByMt@{GR_HAoHTiHXcEx@uCxB{EbCuD`HyHnG}FpGkF`WsOrF{DlFmF`EkGvCkH|CeMlDeLhFuL~GiLvHmL~HoNdDoGbD{GrAeDzBqFbFwNdEaPbDmPlCiSbBiRbCk]lCw]zA_QzAiQ`ImgAvAaQtBgPjC}LpDaNnFyLlFmK~FwH|EiFpEoE`JiI|DcE~AaBjGcInFmHzN{RfNuPnIkIzEqEzHgGhIiFpFoCpP}FbIsBhLeBxK_AlMe@~P[`JQrt@i@hQOjKP`K`@hJ`ApM~BxLtDPDxRhHdNfF~CdAjYvJjKvBzQhEvTjCjEh@pPzDhKb@lGSxD{@zCiAbDkB~GoI`CmGxBqKvA_P\\{RQkb@tAcVjAuO^{EzCuZdC_Uv@iF~NuaAbGwb@`@uC`@iEvEmf@rJo}@fEob@xJcdAp@eH~Cs^jD}VfD{QzFoZzOws@dHi_@vH_e@|CwSpFqd@`Es^tDec@jCe[xB_`@lA__@|@}\\t@gi@\\ci@?mJBaGBwKCcLIcGFoEvAaR@ya@d@y`@}@cR|@{QlA{Ul@kKd@mHvAaO|Dc`@~G_f@zDwU~Ei\\l@iDtNkw@bWulAdO}w@vf@inCjWylAl\\itA~Lcf@dS}x@~Kob@zEuSrBmIbEeQjE}PlKml@lLyr@dEiUtHk[~J_[lOsb@xIaVzGgSvCwJz@wCt@qCzKgd@zGc\\pLei@bHcXzD}LpCsJd@aBfH}QlMs]tSud@pKyRfKyQbS{[`B}ClCaExZue@hIqNzHeN`HyNdJsRpGiQbFaOdEaO|Jqc@zA{GnGcd@`@cF`AkOn@eOVcIKcPIsEIeCm@mEs@eCs@cCy@qA}CyC}@e@aA]sBg@sCG_ADoC^}BhAyCfD_CxCiDjKyNbg@sJhZwC`J{GvR{JhWwMx\\oOx^qEbJiE|HgElFoExDoFrB}D^aHe@mFeCsDiDcDkHwB{Ha@kFW{I@eLr@yI~AoJ`A{D~AuH`D_Mf@_B`@eDZeEFoCe@mDaAaD}@cAuAs@wAg@yBJwAh@yEdEeH`PsGdMcNjUeJ`Q}H`QoHpSoD`IiCtDqBpAqDbAuDm@aDaByBgB_CaC_K{PkEkFyDuCqFqC}CiAwCgAaHmBeD_@eCEcDf@}ErC{Cl@_C]mByAqAwBk@oBi@uCEkBHaDp@kEtAiC~AcBfCs@hBG`Bh@pBpB`A|@jBvCvArAhBbB`DzAdD|@fQnEdGnC|BnBtDxCzD|EjBnBzAhB`BlAnCh@fDu@fBmBf@kArBoEtAcJjCuRhEiSpFuRfFaN|FcMlD{FxIqMpNsOdJoHzG_EpJyDlF_AfHFdHn@~Gp@fFp@hCIpCw@~C{AvBcBpBmCtAaC~ByHv@}FJqC?aJc@{E}@kFuBsHqEsHcCiEmC}EsBoD{AuDi@aB{@oCw@qDuBeJw@}IWqONsJj@iN`@cIdAsMlAmLfC_PrDqQxDuOhTs{@Nm@hIm\\zGkYdEyShD_RrD}YlC_\\x@_Qz@oR^wZDkUc@{]w@qSeBwXqB{Tk@sE}CmXcBcLgCyOwAaJ{AmJaAuH{@}H}@yJm@_Ik@_JAOc@}Ja@sMOoJIeK?uKLoN@]d@kQ|@uRtA}QfB_Q|BcQlAgH@IbAeGvCkQjFqVjEqPlB{GtAoEhEiMpEkMvDuK|BkGpBuFrCeIjCoI`CwIFYtAuFjAqFhAwF`AiF`AgG|@gG|@mHnAuLVaD@MVcDj@}Ib@iJ\\wIjBgv@n@oWXsXDiOOsRa@yTq@kVmAa[iBsc@gAsg@GwCQqg@p@i\\`Boa@zBo_@nAiPjE}c@bG}f@dD{UdB}L|Ggc@x@cFbEcVnKsk@nMok@vNgk@nP_l@lLc`@zVqs@zF_Sxr@olBnkAg|CjIcUvi@iwAve@yrApWc`AzJic@tFeZj@_DnB{MlCqRlCaUtBuU`BcWdAqVh@uUZmV?y@Kua@e@wVy@yV_Duf@kEed@kEw^mEy]sBkOqHuj@oF{a@kEka@wCu]wAyUm@iR[m\\?}Tl@gg@dCuiA^}k@Dwe@@gCIe\\YaT{@s_@mAo_@sCan@sBk\\iCg\\uEci@sF{d@_Fo_@mGsb@sHsa@mHg^wIeb@iI}\\sj@mrBgCuJaKk`@yM}j@uE{SeGiYuBuKwFg[mJkn@sEg`@iDa^wDwf@uC_k@gAa^_A_\\AgFMo`@G_Qf@gf@lAsl@jBwd@hBw\\xCy`@xCuZ~Eq\\lFo`@nBwOnHgb@zKmf@`VmjAlE{U|CoRtCuW|AmP|AqTj@wQR}UC{LSsQ]oP_BqZ_AuKgB_PwD{UyEqWwDcPsCoKyEkO{Pc`@uT_h@iJqTkNg_@aBkFwHiVaHaYgI}a@oOo`AsE{YuKse@}HgXsIiUkOsYoHkLoIkK_N_Pgr@gp@gWkYiTuYiVwYkWcVqy@gs@_MoK{TyT_NsSsNoVsHmRaLi]ePae@wBiFiNs[eQc^_N_QwPiR{PuOmNoMkFsF{MoPkBqBcMwReOkWoK_VoLi]gJ}_@wDkTiC}TgCs[_Baa@SyOGmPRyPl@sR~@mPhAyOjBeRlCoSdDuTdE{VxF_ZvGy[~SacAjN_u@~Fu\\rVwyAnMcw@dLwl@hFiSvDiOzIi\\vMqc@~Jq[vMq^rKkXzImSbHaOdRy^dSa_@fN{UvNgUxQmXrYo_@~WkZ|V{WxQmP`PgOrUwR~VmSfDsCzGqFp_@_\\nZmVv]qYtM_MdNqMjMyMjMiMxLoOlGwJlFuJvG_OzFeO~IyVbCgHxFmQhJm]xJue@`J{g@xSowAfJum@`Nyv@lHuX`IcZjKiZhJcVbKeUlVsg@hRkc@rAyDxJgYxEcPlE{QtIia@jDqQzAsIrKis@vBcNx@gF`D{OjG}YvIg^rAaFpKu`@bZ_kAnUobAtKgh@bKug@hh@ujCnNov@rLok@rLih@zIs\\tMoc@lL{\\tBwF~Lm\\dZey@zMae@xEmSfIgc@tFab@bD}`@dBwTlA_U~@cVr@kc@FoZe@e]}@gZyBe^oDq^oDkXcGm\\wE{UcMkc@eKeZgNw\\yLsVkWic@iOkU}RyYeXea@qB}DoFaKyIuPqIgTwEoP{@wC{AaHmAuG_CaPwCkTeBgRk@}H[sE}@cPMwQD}RT{NbBak@r@mSV{FYwZs@}Si@oKgDup@gBwa@g@wSMqXLqObAsY|B_c@dEg`@hFq`@fFu[rHc_@jJsc@lNct@zJod@~Iea@jIwa@|J_m@`Hkh@fGoh@lLskA`Fqe@`Es^fD}WnDwS~DmTrEoTjB}I~CqKnF}RnG_ShIwUhLcYfS}c@pHcP~C}G~DuIxI_RtI}T|IkW^iAtH{VnIc[vGiYd[ovAhVkhAjQix@xG}[zCsQnCiR~BoT`@uEtAiQlAyWn@}WNoRGy[{Awg@{AcYeEmj@eFsd@uMg_AgOi`AwLgu@yJar@}CmTcEeZuLicAqHwn@uFwj@{A}N_AaJeEgd@mBqT}BkXgCa]{AyR{By[kDek@mGmkAgEieAw@oW{D{zAyAos@i@wW}Aig@WoTi@e`@i@qf@i@wc@@qf@Qso@Cuy@AmlANu{@Vei@~@}kAt@wz@r@mf@l@ec@lAme@x@i[`B}a@`Bq^LcCfAcUvAgUTwDlC}_@tE{m@xByXrAcQlDmd@z@eM|Ak]vA}Z|@iZ`@gYVm`@Foe@Ayf@C{g@Eyd@^}`@b@aXp@a[bBk]`B_^vBmYnAqOlBkTvCcYrEq_@hGye@jHqg@vKwt@tGaa@jG}`@hKym@vJkj@lLul@hMqm@`Su~@~R{y@rRiy@zOkk@vRir@`Qqn@pHwUt]kfAjQch@~Ky[fO}`@~P}d@tZ_w@p^u|@|^wz@vP}_@nHgOpg@ggAtU_g@|p@}tArEuJbR_`@xDcIpg@yeA|LiYdBeEvHuQdToh@vLu[pOad@xAqE`HuUhHyVjDcMfEqP~Luf@zDsRbKek@xDs[zBoSxBwVvCia@jCib@`Bkb@v@ud@?{c@Qic@m@kb@_Bcb@wAkYwAqRkD}]gB_S{Goq@iCuWoCqV}CaY{Juu@oIsm@kQ{jAeNs}@iQmhAyH_h@uEgZ_DeTeHah@uKe|@oHex@yDue@eDag@iFy{@kEa_AwDy`AoC}dAwBktAmBy}CyBgjBsAwz@qBgw@cJoiCuJo}B}@qUiDou@}CmdAsAgf@m@ec@[}ZIuWGka@Fgs@ZyiAx@sdAT}\\NmVNkY\\iVLue@HiWRmYXcd@FwSh@iiBc@ucAi@klAi@ih@qB_vBOiRi@{r@EmF}C_|BgAm`@SmImA{h@cCef@aBoQeBmTuAyOiBkMaB_LsAkHmA}EaDkO_EcO}CuLkDaKuH}RmHmOqNaYgFcJcGkI{Zg^}\\c^a^}_@yQsUqNuReJyNmAoB}EwIiKeR{J}R_LoUeKqVuHaQqCqHuAsDsJyWqGkScIaYiBqGwCiKaEwPwBmIc@_NJwG\\eGRsIDsEk@uJgA{Fu@eGsB{OuCqTkFcb@_Iwj@{Dkd@wDor@[om@C_o@h@{e@x@kb@tAq[jCk`@dD_f@zFmp@dH}h@fE}ZnCkO`EcWrEaZjGqe@fJcjAnB_\\f@eNByVw@wXcAiXaAoM}C{\\sEs\\wD}ToIo^iEaQoMga@yBqGiq@qrBol@_gB_s@qvB}b@esAyK_^kY{bA_Oal@aU{}@oD{QwL{l@qIcb@sT{iAsJue@cFaTwFcTuLu`@{Kq[sLwZwNu[kPi\\{Q}Zm~BqyD}[_j@g_@}o@cSa_@}Tkd@sRwb@i\\ou@{L_WiMcXeLyT}QuZ_LkPeVk]sl@uw@ulAk_B_LcOsIkLkr@u_AoYah@eMoZmJuW{[cgAyTc|@_Smt@aKa[wMq]yVkk@uSic@ySg_@yUye@sSmc@eM}[kKmWgHuTuK{^qCkLmJgd@sCoO{EaYsCgU}Dw^}B{^qAyXq@iOi@oMuBwp@u@uj@s@oq@i@o|Aa@mx@UiT]iUaAme@_Bkn@{C}z@kBw`@wBy^yBa]kCg^{Cy_@cDa_@oA{L}Gqm@{Hkm@mEg\\eG}`@qGo`@uHmb@cJue@aLej@_AuEqA_GwDwP{FuUkCcKkNqf@wCkJmRko@cFwOwCgJqIaWkAuDaE{KwJoYwOyd@wOke@yCaJ_F}NeHcTkI_XiCeJ{Rsr@iOol@kMcj@aK}h@gJij@qGqc@_Kc}@oJszAm@sKqBse@q@y^_@kV_@{c@?y{Ak@gsA[my@_Awd@cBkg@}Cmo@oEcq@oIwdAyJobAa]cjD{Im_A}Fal@aCgVoB_Ts@{HkImz@cEg`@mDk_@oT__CkKsfAaBiOcEy^e@yEiAiLaDq[_CeV{Cu[gAoL{KkkAqBiTqC}YoAcOgA_O{AqTqAgU}@{Tm@}Tc@}TUsTMuUFgULwS\\{Rd@{RXwHt@oR`AuRb@kHh@gIl@sHj@sHdBkRt@sHx@mHr@mH~BeR`C}QbC_RnHmi@vLm{@pLq{@hLw_AvFuj@rDi`@nCk]xDai@nCqi@fCen@pBqp@nAcq@Xih@Bm[Gkf@[qf@c@u\\aAcf@aBqp@yAsf@u@qRqA_]qHaaB}Iy`BiE_z@iFodAuB}`@kA_[gBwb@_Bof@kAec@kAyc@}@og@y@yq@u@iv@Ma^Esa@BwJDyKBqHDaQJo^FyP`@q`@Raa@J{Rz@i`ArE{rDdFysEdAuk@r@kXd@gM\\uJrBs`@|A}Rl@eIhEu`@jHij@tJem@fBkI|BuKlHg[zOum@~Oud@pQef@pIsRrN}YpF}KfIoP|Rq^fMmTta@qp@hEaHp@cAhAaBvk@u{@lt@khAj^mm@z\\wl@jOwZ~Oc\\z[cx@~Ryn@bPcn@hKge@zIkf@pIao@lH{o@rR{cB|Kky@~Oc`ApD{QfNcp@zNmn@ba@ifBJc@lPou@~Gw\\vGq^jIge@jHch@pEy`@`Du^lCy_@x@}R`Ao]d@u]@uk@{@aj@wA_^mBk\\sDub@{Eke@uGmg@aUozAwQijA{OegAuFsf@mFki@aFiq@cD}n@{Aoi@]aPa@_S_@ig@Dsi@~@ys@XoNTyMFmCHmCb@wO`Bmf@jAyZbAkWdCun@|DkmAnA}l@ReKd@cTnAgeAZyi@Pkl@GsSS_~@EuNQqOm@il@Uwa@Uu^Cqw@V}pAB}kAYsg@}@{q@w@y[cAi\\{Aac@]kKMyEe@mQ}@q[yAcrAGgHIgGg@co@OeUwBu}Ac@sZmCifAkE{aAiF}y@wIeiAkBaXw@_RO_I~AqLxBsJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward A 81, Ulm.","announcement":"Exit the roundabout toward A 81, Ulm.","distanceAlongGeometry":37.114}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[118,294,356],"duration":4.918,"turn_weight":0.5,"turn_duration":0.009,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":4,"out":0,"weight":5.164,"geometry_index":13213,"location":[8.663806,47.917282]},{"entry":[true,true,false],"in":2,"bearings":[32,103,271],"duration":4.266,"turn_duration":1.32,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":4,"out":0,"weight":2.799,"geometry_index":13218,"location":[8.664161,47.917221]},{"bearings":[139,212,347],"entry":[false,false,true],"in":1,"turn_duration":0.625,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":4,"out":2,"geometry_index":13221,"location":[8.664287,47.917354]}],"destinations":"A 81, B 311, B 311: Ulm, Tuttlingen, Immendingen, DANUVIA81","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 81"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"311","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 311"},{"type":"delimiter","text":"/"},{"type":"text","text":"Ulm"},{"type":"text","text":"/"},{"type":"text","text":"Tuttlingen"}],"degrees":207,"driving_side":"right","type":"roundabout","modifier":"right","text":"A 81 / B 311 / Ulm / Tuttlingen"},"distanceAlongGeometry":60.447}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit toward A 81/B 311/Ulm/Tuttlingen.","modifier":"straight","bearing_after":118,"bearing_before":114,"location":[8.663806,47.917282]},"speedLimitSign":"vienna","name":"","weight_typical":9.674,"duration_typical":11.609,"duration":11.609,"distance":60.447,"driving_side":"right","weight":9.674,"mode":"driving","ref":"B 31","geometry":"cmskzA{nxoOrAeBx@iCZ{CGaDg@wCcA{B{AwAiBg@kBHcBz@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn right to take the A 81 ramp.","announcement":"In a quarter mile, Turn right to take the A 81 ramp.","distanceAlongGeometry":575.509},{"ssmlAnnouncement":"Turn right to take the A 81 ramp toward Singen, Lindau.","announcement":"Turn right to take the A 81 ramp toward Singen, Lindau.","distanceAlongGeometry":163.333}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[27,167,303],"duration":3.113,"turn_duration":0.094,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.869,"geometry_index":13223,"location":[8.664252,47.917458]},{"entry":[true,false,true],"in":1,"bearings":[55,207,244],"duration":2.822,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.639,"geometry_index":13225,"location":[8.664408,47.917666]},{"entry":[true,false,true],"in":1,"bearings":[67,237,251],"duration":0.838,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.781,"geometry_index":13227,"location":[8.664707,47.917802]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":8.619,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.932,"geometry_index":13228,"location":[8.664807,47.91783]},{"entry":[true,false],"in":1,"bearings":[62,242],"duration":4.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.822,"geometry_index":13232,"location":[8.666284,47.918292]},{"entry":[true,false],"in":1,"bearings":[59,242],"duration":0.836,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.793,"geometry_index":13233,"location":[8.666963,47.918529]},{"entry":[true,false],"in":1,"bearings":[60,239],"duration":1.83,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.738,"geometry_index":13234,"location":[8.667112,47.918588]},{"entry":[true,false],"in":1,"bearings":[57,240],"duration":4.781,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.422,"geometry_index":13235,"location":[8.667467,47.918727]},{"entry":[true,false],"in":1,"bearings":[55,237],"duration":2.951,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.73,"geometry_index":13237,"location":[8.668385,47.919123]},{"entry":[true,false],"in":1,"bearings":[54,235],"duration":3.777,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.494,"geometry_index":13238,"location":[8.66893,47.919381]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[51,231],"duration":4.662,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.312,"geometry_index":13240,"location":[8.669611,47.919728]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"bearings":[48,229],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":13242,"location":[8.670415,47.920185]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Singen"},{"type":"text","text":"/"},{"type":"text","text":"Lindau"}],"type":"turn","modifier":"right","text":"Singen / Lindau"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"81","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 81"}],"type":"turn","modifier":"right","text":"A 81"},"distanceAlongGeometry":600.509}],"destinations":"A 81, B 311, B 311: Ulm, Tuttlingen, Immendingen, DANUVIA81","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward A 81/B 311/Ulm/Tuttlingen.","modifier":"slight right","bearing_after":27,"bearing_before":347,"location":[8.664252,47.917458]},"speedLimitSign":"vienna","name":"","weight_typical":38.881,"duration_typical":40.791,"duration":40.791,"distance":600.509,"driving_side":"right","weight":38.881,"mode":"driving","ref":"B 31","geometry":"cxskzAwjyoOoE{CoE{CoCyG_C{Hw@gEcB{IiDmRoKof@}FoUyMmi@uBiHuGeUmH_UiNkb@cOaa@oMk\\eFeLwFgMyS_c@eOeZ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":19582.15},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 40.","announcement":"In 2 miles, Keep right to take exit 40.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 40.","announcement":"In a half mile, Keep right to take exit 40.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 40 onto A 98 toward Lindau, Friedrichshafen.","announcement":"Keep right to take exit 40 onto A 98 toward Lindau, Friedrichshafen.","distanceAlongGeometry":317.778}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[8.67085,47.920444],"geometry_index":13243,"admin_index":4,"weight":9.201,"is_urban":false,"mapbox_streets_v8":{"class":"primary_link"},"turn_duration":0.072,"turn_weight":4.5,"duration":5.154,"bearings":[46,83,228],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,false,false],"in":1,"bearings":[113,268,317],"duration":1.791,"turn_weight":0.75,"turn_duration":0.04,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":4,"out":0,"weight":2.369,"geometry_index":13247,"location":[8.671492,47.920481]},{"entry":[true,false,true],"in":1,"bearings":[134,293,328],"duration":4.619,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":4,"out":0,"weight":4.246,"geometry_index":13248,"location":[8.67171,47.920418]},{"entry":[true,false],"in":1,"bearings":[130,314],"duration":2.07,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.914,"geometry_index":13249,"location":[8.672208,47.920098]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[8.672442,47.919966],"geometry_index":13251,"admin_index":4,"weight":10.424,"is_urban":false,"turn_weight":0.75,"duration":10.479,"bearings":[106,127,310],"out":1,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[13,83,253],"duration":2.174,"turn_duration":0.014,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"weight":1.998,"geometry_index":13259,"location":[8.673959,47.919966]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[104,265,315],"duration":4.721,"turn_duration":0.025,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":4.344,"geometry_index":13262,"location":[8.674313,47.919991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,307],"duration":1.252,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.158,"geometry_index":13268,"location":[8.675026,47.919757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.675216,47.919698],"geometry_index":13269,"admin_index":4,"weight":14.355,"is_urban":false,"turn_weight":11.75,"duration":2.848,"bearings":[138,295,317],"out":0,"in":1,"turn_duration":0.03,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,319],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.236,"geometry_index":13271,"location":[8.675852,47.919216]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,320],"duration":3.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.129,"geometry_index":13272,"location":[8.676162,47.918964]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,324],"duration":10.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.789,"geometry_index":13276,"location":[8.67692,47.918296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,330],"duration":1.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.615,"geometry_index":13286,"location":[8.678914,47.916049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,332],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.297,"geometry_index":13287,"location":[8.679223,47.915664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,328],"duration":75.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":67.914,"geometry_index":13289,"location":[8.679916,47.914878]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,332],"duration":6.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.199,"geometry_index":13356,"location":[8.700692,47.901813]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":11.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.389,"geometry_index":13363,"location":[8.70174,47.900169]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[149,330],"duration":8.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.633,"geometry_index":13371,"location":[8.703598,47.897358]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.705607,47.895542],"geometry_index":13382,"admin_index":4,"weight":7.998,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.164,"bearings":[136,151,319],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.708213,47.894019],"geometry_index":13390,"admin_index":4,"weight":5.225,"is_urban":false,"turn_weight":1,"duration":4.715,"bearings":[124,293,305],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,299],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.238,"geometry_index":13395,"location":[8.709733,47.89339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,297],"duration":8.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.266,"geometry_index":13396,"location":[8.710197,47.893233]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,287],"duration":53.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":48.26,"geometry_index":13406,"location":[8.713064,47.892468]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,297],"duration":19.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.588,"geometry_index":13469,"location":[8.732721,47.888626]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,269],"duration":1.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.143,"geometry_index":13488,"location":[8.740129,47.887577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":56.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.221,"geometry_index":13489,"location":[8.740624,47.887592]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,278],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.389,"geometry_index":13556,"location":[8.762347,47.892184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,279],"duration":3.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.117,"geometry_index":13558,"location":[8.762942,47.892118]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,285],"duration":6.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.174,"geometry_index":13561,"location":[8.764275,47.891908]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.766806,47.891271],"geometry_index":13568,"admin_index":4,"weight":2.129,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.385,"bearings":[116,145,295],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,297],"duration":7.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.758,"geometry_index":13571,"location":[8.767635,47.890992]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.770059,47.88989],"geometry_index":13580,"admin_index":4,"weight":8.244,"is_urban":false,"turn_weight":1,"duration":8.057,"bearings":[130,294,309],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[141,320],"duration":4.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.064,"geometry_index":13588,"location":[8.772302,47.888391]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,328],"duration":9.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.172,"geometry_index":13592,"location":[8.773346,47.887423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,339],"duration":4.016,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.506,"geometry_index":13601,"location":[8.774992,47.885217]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,345],"duration":1.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.07,"geometry_index":13604,"location":[8.775452,47.884202]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,347],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.1,"geometry_index":13605,"location":[8.775557,47.8839]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,348],"duration":18.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.322,"geometry_index":13606,"location":[8.775657,47.883585]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":11.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.27,"geometry_index":13619,"location":[8.775774,47.878799]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,354],"duration":5.254,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.842,"geometry_index":13629,"location":[8.775921,47.875788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,348],"duration":9.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.709,"geometry_index":13634,"location":[8.776362,47.874117]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,337],"duration":15.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.801,"geometry_index":13643,"location":[8.777796,47.871224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[148,329],"duration":4.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.199,"geometry_index":13651,"location":[8.78095,47.867378]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,327],"duration":5.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.4,"geometry_index":13653,"location":[8.781957,47.866321]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[144,324],"duration":0.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.24,"geometry_index":13656,"location":[8.783331,47.864994]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,324],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.6,"geometry_index":13657,"location":[8.78339,47.864939]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.783541,47.864792],"geometry_index":13658,"admin_index":4,"weight":17.041,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.957,"bearings":[143,156,325],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.788409,47.860813],"geometry_index":13667,"admin_index":4,"weight":4.104,"is_urban":false,"turn_weight":1,"duration":3.287,"bearings":[137,306,318],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,316],"duration":1.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.348,"geometry_index":13670,"location":[8.789498,47.86004]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,316],"duration":2.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.5,"geometry_index":13671,"location":[8.789879,47.859776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,312],"duration":10.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.293,"geometry_index":13672,"location":[8.790634,47.859317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,313],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.699,"geometry_index":13673,"location":[8.793708,47.857369]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,310],"duration":2.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.508,"geometry_index":13676,"location":[8.795485,47.856342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":8.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.816,"geometry_index":13677,"location":[8.796269,47.855892]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.798755,47.854523],"geometry_index":13679,"admin_index":4,"weight":1.025,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.115,"bearings":[131,151,309],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":7.096,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.564,"geometry_index":13680,"location":[8.799077,47.854337]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.801149,47.853133],"geometry_index":13682,"admin_index":4,"weight":7.961,"is_urban":false,"turn_weight":0.5,"duration":8.074,"bearings":[131,286,311],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,315],"duration":50.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.48,"geometry_index":13687,"location":[8.803535,47.851663]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,332],"duration":0.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.85,"geometry_index":13712,"location":[8.815201,47.840598]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,332],"duration":64.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":58.227,"geometry_index":13713,"location":[8.815372,47.840383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,314],"duration":3.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.082,"geometry_index":13742,"location":[8.829919,47.82703]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.830872,47.826427],"geometry_index":13744,"admin_index":4,"weight":3.146,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.514,"bearings":[133,138,313],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,312],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.006,"geometry_index":13746,"location":[8.831857,47.825825]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[132,312],"duration":9.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.775,"geometry_index":13747,"location":[8.832175,47.82563]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.834968,47.823962],"geometry_index":13751,"admin_index":4,"weight":2.473,"is_urban":false,"turn_weight":1,"duration":1.656,"bearings":[131,289,312],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":6.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.186,"geometry_index":13752,"location":[8.835422,47.8237]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":8.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.299,"geometry_index":13753,"location":[8.837316,47.822575]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":17.752,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.414,"geometry_index":13754,"location":[8.839551,47.821251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":7.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.762,"geometry_index":13755,"location":[8.844454,47.818353]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":6.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.391,"geometry_index":13756,"location":[8.846467,47.817159]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[132,312],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":13758,"location":[8.848312,47.816058]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lindau"},{"type":"text","text":"/"},{"type":"text","text":"Friedrichshafen"}],"type":"fork","modifier":"right","text":"Lindau / Friedrichshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"40"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"98","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 98"}],"type":"fork","modifier":"right","text":"Exit 40 A 98"},"distanceAlongGeometry":19611.816},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lindau"},{"type":"text","text":"/"},{"type":"text","text":"Friedrichshafen"}],"type":"fork","modifier":"right","text":"Lindau / Friedrichshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"40"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"98","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 98"}],"type":"fork","modifier":"right","text":"Exit 40 A 98"},"distanceAlongGeometry":3218.688}],"destinations":"A 81: Singen, Lindau, Konstanz","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right to take the A 81 ramp toward Singen/Lindau/Konstanz.","modifier":"slight right","bearing_after":83,"bearing_before":48,"location":[8.67085,47.920444]},"speedLimitSign":"vienna","name":"","weight_typical":646.723,"duration_typical":687.52,"duration":687.52,"distance":19611.816,"driving_side":"right","weight":646.723,"mode":"driving","ref":"A 81; E 41","geometry":"wrykzAcgfpOg@gMYuIKyEBkG|BsL~Rc^hC_F|BsFdEuHpAmGp@sHByJc@cJaAsIyCuSmAyK_@iFSoF@iFLoE`@{DbAqGxAgFjB}ExCmHtB{JtPyVlK}NvNkR~LqOxG_IvGsHdIeJhJwJjIoIjIgIzQ_PlL{JpLkJtPuMbCgBpL}IbZ_V`WiRnc@w^rKqJpKqKvG}GvGiHdKiLzJyLhNmQfJgM~I{M|FaJzFmJhNiVvHmNrHaOtNuZtJuTbJiUfFeNdFmNnEcNjEiNfEyNdE_O~D}N|DcObLkd@zKud@|Lwh@dMah@|FoTbGkTlG_TnGuSdJgYxJgXlJwWxMo[tFgMvF_M`Oa[zQe_@hHsNlHoN~GqMbHkMlQg[nRi\\vRw[xM}SzMoShNgShN}RzSmYzS}XnTwXpTeXp_@oc@pOyPtOiPhHgHhH}GrGcGtG{FtGuFtGoFvGkFvGgFbTmOjVgP~K}GbLmG~KaGbLwFpLqFpLoFh\\iOh\\sOpRkJrRgKjRgLtL{HxXcS~QiOtHwGrH}G`I_IbIiInQuRjJ}KlJkLdG}HdGiIbGqIdGwIzKoQ`McT|EwIxEaJdP_\\zO{]lJiU~GgR~JcY~CwJ|C}JrH_WvFeTxH_\\fEeRbEgRpC_NnCeNtCuOpCyObC{O~B}OtCqThCuTdDi\\bDm_@lBgYdBe[fAgU|@oUr@_Vd@cVX_XNcXD{YC}Y_@qbAE{`@Dw`@FaMN}Ld@aZ\\sOb@mO`@mMd@mMf@wLp@wMv@qMz@mM`AmMjAoNlAiNfAeLnA_MtA{LzAqM~AmMfBsMjBoMlB}LpByLzBoM~BkM`C_MbCoLfCiLlCkLnCaLxC}LnCmKhD{LjDsLfEmNlEeNfJkXdJgWpPud@rMy^pEaNpEiNpDoLfAgDvF{QfFuRpFwSfHoZfCmL|BuL`EgTxDmT`F{ZfCuQbC{QnDk[hCuWxB{WzB_ZjBiZbBq\\pAs]x@u\\f@g]Ve]@oUKuU]}]e@eYs@wWcA}Vk@{Ms@wMuAmU}A}UmC{[gDw\\wGcj@qEy[aFuZ{Fy[mGyZyG_ZkHyY{HyYqIaZcHuTaJ_XqJoXuUgq@_JqWoDgKkDmKsDyKsD_LkDaLkDgLaDuK{C}KyCeLwCiLmCwKiCuKaC{K_C{KoCgNwBmLwBoLwBaMsBcMkBgMgBgM_BeM}AaMwAsMsAqMoAsMiAsMgAqM}@wM}@uMkBw\\s@qPo@qPaA{]o@w\\Ys\\CkUBmURe]\\gUh@cU`As[b@{Kf@qK~@}PbAgRpBwYnCs[`D}ZtD_\\dB{MhBqMzEa[nDsSvDgSnHy]tFqVtEwR`BoG~C}KjEcOlE}NtEkNtEgNhJqWfK{WtEyKlFsLhJ{RdJcRzH}NzHgNdJwOfJwNfM_RvMoQ~N_RlNePfNaOxL_LhJmJhLgKlM}JxMwJrOyKpOsJpO_J|OkIhPuHtT{IvT_I~R{FzQqEtRgE`R{ClSgCpIy@xQ{ApTiA|Tg@dSI`QB|PNnSb@nj@`Bj[nAde@`Bb^x@xRH|RDtSQzHMzHWnRo@rToA~SgBvMoArM{ArSsCvR}ClUkE~YwGzTaG~LkDzLuDbTmHpSaIDCtl@mW|T}KpToLtNoI`S_MhVoPbVaQrm@ce@f|@au@zUkSlZoWn^i\\pa@s`@`JwI`p@uq@xUmWlBuBdHmHhIqJzQuS|\\}`@d\\u`@~[ua@bm@_x@jRwWdRaXtm@{}@p[of@BErRk[nOyVt[en@vxBc_EtPu[bPc]j\\gs@b[_p@pO}\\~cAm|BrJcSpVyg@tr@uwAr^it@lQg]zS_`@hIoOrIaOtTa`@`Ue_@nTw]tTi]dNyStUu\\fUw[vU{[hVs[`Wk[nSqVpSgVhVyXnWeYrWwX`XyXvWiWnXgWnXsVtXcV~XcV`YeUbk@yc@dl@ic@~{AqhAlLuIbt@_i@l]iWn]yW|c@e]vc@q]`b@w]~a@k^v`@_^vOyNvOcOvOgOtOqO`XmXpx@o{@r[_^l[{^n[c`@j[q`@bUyYp]wd@dVy\\dV}\\nc@_p@x]ei@|Z{f@pUa`@jTw^dTm_@`Si^tZkj@~HeOzP{[vRu_@dK{Rd[{m@jZql@hWgh@jW{g@jOk[heAkuBvqAujCbtDmqHriAy|Bdn@wnArTqb@nOqZ"},{"ref":"B 33","mode":"driving","weight":14.77,"distance":393.325,"geometry":"cfmezAava{OhOcMxGmKhFeHhF_H~N_Q`GuGfGqGhGgGpGcGrGwFtGuFxGeFzG}E|GuEbLmHpMwHhZsP","duration":15.57,"driving_side":"right","duration_typical":15.57,"weight_typical":14.77,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 40 onto A 98 toward Lindau/Friedrichshafen/Stockach.","modifier":"slight right","bearing_after":150,"bearing_before":132,"location":[8.848753,47.815794]},"speedLimitUnit":"km/h","destinations":"A 98, A 98, A 98, B 33, B 33, B 33: Lindau, Friedrichshafen, Stockach, Konstanz, Radolfzell","bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight","slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lindau"},{"type":"text","text":"/"},{"type":"text","text":"Friedrichshafen"}],"type":"fork","modifier":"left","text":"Lindau / Friedrichshafen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"98","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 98"}],"type":"fork","modifier":"left","text":"A 98"},"distanceAlongGeometry":393.325}],"exits":"40","voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take A 98.","announcement":"In a quarter mile, Keep left to take A 98.","distanceAlongGeometry":358.325},{"ssmlAnnouncement":"Keep left to take A 98 toward Lindau, Friedrichshafen.","announcement":"Keep left to take A 98 toward Lindau, Friedrichshafen.","distanceAlongGeometry":274.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.848753,47.815794],"geometry_index":13759,"admin_index":4,"weight":1.277,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":1.369,"bearings":[130,150,312],"out":1,"in":2,"turn_duration":0.023,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,330],"duration":9.969,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":9.471,"geometry_index":13760,"location":[8.848979,47.815533]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[154,333],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":13773,"location":[8.850875,47.813668]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 51 miles.","announcement":"Continue for 51 miles.","distanceAlongGeometry":82212.945},{"ssmlAnnouncement":"In a quarter mile, Take the A 96 ramp.","announcement":"In a quarter mile, Take the A 96 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 96 ramp toward München, Memmingen.","announcement":"Take the A 96 ramp toward München, Memmingen.","distanceAlongGeometry":140}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.851464,47.812788],"geometry_index":13776,"admin_index":4,"weight":10.986,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":11.57,"bearings":[156,166,337],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[133,315],"duration":7.904,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.51,"geometry_index":13794,"location":[8.853763,47.810409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,299],"duration":12.232,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":11.621,"geometry_index":13805,"location":[8.856058,47.809291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,270],"duration":6.336,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":6.02,"geometry_index":13824,"location":[8.860344,47.808603]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,253],"duration":6.123,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":5.818,"geometry_index":13833,"location":[8.86266,47.808878]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,237],"duration":8.312,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.898,"geometry_index":13842,"location":[8.864625,47.809536]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,225],"duration":4.082,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":13850,"location":[8.866818,47.810897]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,229],"duration":0.742,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":0.705,"geometry_index":13855,"location":[8.867911,47.811555]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.868065,47.811699],"geometry_index":13856,"admin_index":4,"weight":18.453,"is_urban":false,"turn_weight":11.75,"duration":7.084,"bearings":[56,216,235],"out":0,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.141,"geometry_index":13859,"location":[8.870222,47.812692]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.486,"geometry_index":13860,"location":[8.870594,47.812861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":8.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.256,"geometry_index":13861,"location":[8.871065,47.813075]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.596,"geometry_index":13862,"location":[8.873702,47.814287]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,236],"duration":3.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.494,"geometry_index":13863,"location":[8.874244,47.814531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":4.426,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.088,"geometry_index":13864,"location":[8.875405,47.815071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":39.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.896,"geometry_index":13865,"location":[8.876759,47.815707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.686,"geometry_index":13872,"location":[8.889137,47.821362]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":52.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":46.996,"geometry_index":13873,"location":[8.889722,47.821613]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":49.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.334,"geometry_index":13893,"location":[8.908195,47.825312]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,262],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.391,"geometry_index":13914,"location":[8.926055,47.828188]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":56.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.91,"geometry_index":13915,"location":[8.927068,47.828266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,258],"duration":8.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.174,"geometry_index":13933,"location":[8.948198,47.828384]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":7.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.068,"geometry_index":13935,"location":[8.951324,47.828979]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.953956,47.829587],"geometry_index":13937,"admin_index":4,"weight":7.736,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.383,"bearings":[70,104,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.956864,47.830274],"geometry_index":13939,"admin_index":4,"weight":7.578,"is_urban":false,"turn_weight":0.75,"duration":7.4,"bearings":[70,237,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":7.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.795,"geometry_index":13940,"location":[8.959418,47.830902]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":47.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.02,"geometry_index":13941,"location":[8.961969,47.831506]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":6.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.613,"geometry_index":13949,"location":[8.979465,47.835689]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.981687,47.836231],"geometry_index":13950,"admin_index":4,"weight":5.307,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.756,"bearings":[71,90,250],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.983614,47.836688],"geometry_index":13951,"admin_index":4,"weight":1.799,"is_urban":false,"turn_weight":0.5,"duration":1.424,"bearings":[70,224,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":5.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.361,"geometry_index":13952,"location":[8.984111,47.836807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,251],"duration":5.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.195,"geometry_index":13953,"location":[8.986151,47.83727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,254],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.121,"geometry_index":13955,"location":[8.988143,47.837679]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":66.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":61.205,"geometry_index":13956,"location":[8.989309,47.837892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,260],"duration":7.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.016,"geometry_index":13978,"location":[9.013731,47.839465]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.906,"geometry_index":13981,"location":[9.016334,47.839862]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":7.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.699,"geometry_index":13982,"location":[9.016682,47.839926]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":1.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.234,"geometry_index":13984,"location":[9.019128,47.840407]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.01957,47.840501],"geometry_index":13985,"admin_index":4,"weight":3.74,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.945,"bearings":[72,93,252],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"in":1,"bearings":[72,252],"duration":3.471,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.299,"geometry_index":13986,"location":[9.020907,47.840788]},{"entry":[true,false,false],"in":2,"bearings":[73,227,253],"duration":0.885,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.584,"geometry_index":13988,"location":[9.02194,47.841008]},{"entry":[true,false],"in":1,"bearings":[72,253],"duration":3.139,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.982,"geometry_index":13989,"location":[9.022177,47.841057]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[72,252],"duration":4.521,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.182,"geometry_index":13990,"location":[9.023045,47.841243]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[73,252],"duration":24.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":22.768,"geometry_index":13991,"location":[9.024428,47.84154]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":1.525,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.41,"geometry_index":14005,"location":[9.032181,47.842261]},{"entry":[true,false],"in":1,"bearings":[96,274],"duration":12.293,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.062,"geometry_index":14006,"location":[9.032658,47.842238]},{"entry":[true,false,true],"in":1,"bearings":[108,277,291],"duration":25.588,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.018,"geometry_index":14013,"location":[9.036362,47.841848]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[124,304],"duration":3.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.717,"geometry_index":14025,"location":[9.042937,47.839728]},{"entry":[true,false],"in":1,"bearings":[125,304],"duration":46.66,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":41.994,"geometry_index":14026,"location":[9.043565,47.839442]},{"entry":[true,false],"in":1,"bearings":[126,306],"duration":7.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.111,"geometry_index":14037,"location":[9.054054,47.83389]},{"entry":[true,false],"in":1,"bearings":[126,306],"duration":1.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.529,"geometry_index":14038,"location":[9.055881,47.832998]},{"entry":[true,false],"in":1,"bearings":[125,306],"duration":10.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.225,"geometry_index":14039,"location":[9.056246,47.832819]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":39.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":35.73,"geometry_index":14040,"location":[9.0585,47.831766]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[119,299],"duration":4.051,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.645,"geometry_index":14048,"location":[9.067556,47.828048]},{"entry":[true,false],"in":1,"bearings":[118,299],"duration":3.32,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.988,"geometry_index":14049,"location":[9.068511,47.827699]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.826,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.643,"geometry_index":14050,"location":[9.069346,47.827398]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":19.035,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.133,"geometry_index":14051,"location":[9.069766,47.827248]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":5.475,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.926,"geometry_index":14055,"location":[9.074385,47.825706]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":8.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.945,"geometry_index":14056,"location":[9.075731,47.825282]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.482,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.334,"geometry_index":14057,"location":[9.077907,47.824612]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":4.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.455,"geometry_index":14058,"location":[9.078243,47.824506]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":6.225,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.584,"geometry_index":14060,"location":[9.079441,47.824127]},{"entry":[true,false],"in":1,"bearings":[114,295],"duration":2.131,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.918,"geometry_index":14062,"location":[9.08103,47.823633]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[115,294],"duration":0.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.873,"geometry_index":14063,"location":[9.081577,47.823466]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.404,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.264,"geometry_index":14064,"location":[9.081831,47.823388]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":34.771,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":31.293,"geometry_index":14065,"location":[9.082223,47.823267]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":1.746,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.57,"geometry_index":14068,"location":[9.091836,47.820281]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":5.65,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.086,"geometry_index":14069,"location":[9.092228,47.82016]},{"entry":[true,false],"in":1,"bearings":[114,295],"duration":6.805,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.105,"geometry_index":14070,"location":[9.093598,47.819737]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[115,294],"duration":4.217,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.795,"geometry_index":14071,"location":[9.095395,47.819201]},{"entry":[true,false],"in":1,"bearings":[116,295],"duration":6.975,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.277,"geometry_index":14072,"location":[9.096389,47.818886]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":0.945,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.85,"geometry_index":14074,"location":[9.098262,47.818296]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":19.439,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.496,"geometry_index":14075,"location":[9.098519,47.818214]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":7.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.844,"geometry_index":14080,"location":[9.103761,47.816589]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":9.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.91,"geometry_index":14081,"location":[9.105814,47.815947]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[117,297],"duration":1.582,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.424,"geometry_index":14084,"location":[9.108448,47.815066]},{"entry":[true,false],"in":1,"bearings":[119,297],"duration":7.754,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.979,"geometry_index":14085,"location":[9.108793,47.814946]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":42.48,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.232,"geometry_index":14087,"location":[9.110424,47.814325]},{"entry":[true,false],"in":1,"bearings":[143,322],"duration":3.195,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.869,"geometry_index":14098,"location":[9.117943,47.809711]},{"entry":[true,false],"in":1,"bearings":[143,323],"duration":0.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.867,"geometry_index":14099,"location":[9.118371,47.809324]},{"entry":[true,false],"in":1,"bearings":[143,323],"duration":97.088,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":87.379,"geometry_index":14100,"location":[9.118494,47.809213]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[131,309],"duration":3.166,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.85,"geometry_index":14127,"location":[9.136092,47.799391]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":6.061,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.453,"geometry_index":14128,"location":[9.136605,47.799087]},{"entry":[true,false],"in":1,"bearings":[137,315],"duration":8.609,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.748,"geometry_index":14132,"location":[9.138559,47.797835]},{"entry":[true,false],"in":1,"bearings":[138,318],"duration":6.99,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.291,"geometry_index":14138,"location":[9.141139,47.795927]},{"entry":[true,false],"in":1,"bearings":[130,310],"duration":1.26,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.135,"geometry_index":14143,"location":[9.143346,47.794447]},{"entry":[true,false],"in":1,"bearings":[127,310],"duration":0.75,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.676,"geometry_index":14145,"location":[9.143783,47.794204]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[125,307],"duration":0.9,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.811,"geometry_index":14146,"location":[9.14405,47.79407]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.144378,47.793913],"geometry_index":14147,"admin_index":4,"weight":5.16,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.026,"turn_weight":1,"duration":4.648,"bearings":[94,121,305],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,true,false],"in":2,"bearings":[113,153,296],"duration":0.674,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.586,"geometry_index":14150,"location":[9.145602,47.793471]},{"entry":[true,false,true],"in":1,"bearings":[112,293,332],"duration":3.174,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.85,"geometry_index":14151,"location":[9.145791,47.793416]},{"entry":[true,false,false],"in":2,"bearings":[109,252,291],"duration":1.107,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.977,"geometry_index":14153,"location":[9.146694,47.793179]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":0.477,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.43,"geometry_index":14154,"location":[9.147009,47.793106]},{"entry":[true,false],"in":1,"bearings":[108,289],"duration":0.348,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.312,"geometry_index":14155,"location":[9.147149,47.793074]},{"entry":[true,false],"in":1,"bearings":[106,288],"duration":10.279,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.252,"geometry_index":14156,"location":[9.147249,47.793052]},{"entry":[true,false],"in":1,"bearings":[90,273],"duration":9.846,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.861,"geometry_index":14163,"location":[9.150369,47.792746]},{"entry":[true,false],"in":1,"bearings":[93,270],"duration":16.135,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.521,"geometry_index":14166,"location":[9.153401,47.792749]},{"entry":[true,false],"in":1,"bearings":[119,297],"duration":8.414,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.783,"geometry_index":14174,"location":[9.158174,47.791898]},{"entry":[true,false],"in":1,"bearings":[130,311],"duration":9.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.906,"geometry_index":14181,"location":[9.160277,47.790889]},{"entry":[true,false],"in":1,"bearings":[119,303],"duration":8.285,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.662,"geometry_index":14188,"location":[9.162636,47.789683]},{"entry":[true,false],"in":1,"bearings":[115,295],"duration":40.598,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.568,"geometry_index":14192,"location":[9.16493,47.788921]},{"entry":[true,false],"in":1,"bearings":[136,316],"duration":0.65,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.635,"geometry_index":14213,"location":[9.174311,47.783496]},{"entry":[false,true,false],"in":2,"bearings":[130,142,316],"duration":5.789,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":6.633,"geometry_index":14214,"location":[9.174453,47.783398]},{"entry":[true,true,false],"in":2,"bearings":[113,127,299],"duration":19.256,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.748,"geometry_index":14218,"location":[9.175789,47.782666]},{"entry":[true,false,false],"in":2,"bearings":[154,315,332],"duration":17.312,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":17.373,"geometry_index":14227,"location":[9.18026,47.780292]},{"entry":[true,false],"in":1,"bearings":[139,313],"duration":5.291,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.16,"geometry_index":14238,"location":[9.183446,47.777469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[147,327],"duration":2.992,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.918,"geometry_index":14241,"location":[9.184471,47.776614]},{"entry":[true,false,true],"in":1,"bearings":[156,326,336],"duration":3.705,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.013,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.6,"geometry_index":14244,"location":[9.184983,47.776094]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[163,344],"duration":2.525,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.461,"geometry_index":14247,"location":[9.18538,47.775424]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[165,343],"duration":5.27,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.139,"geometry_index":14248,"location":[9.185596,47.774958]},{"entry":[true,true,false],"in":2,"bearings":[170,204,350],"duration":3.619,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.51,"geometry_index":14250,"location":[9.185888,47.774071]},{"entry":[true,false,false],"in":2,"bearings":[171,328,350],"duration":2.131,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.059,"geometry_index":14252,"location":[9.186055,47.773422]},{"entry":[true,false],"in":1,"bearings":[171,351],"duration":1.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.918,"geometry_index":14253,"location":[9.18615,47.773033]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":5.039,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.914,"geometry_index":14254,"location":[9.186239,47.772672]},{"entry":[true,false],"in":1,"bearings":[169,348],"duration":8.832,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.832,"geometry_index":14256,"location":[9.186507,47.771746]},{"entry":[true,false],"in":1,"bearings":[158,340],"duration":0.096,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.096,"geometry_index":14261,"location":[9.187179,47.770163]},{"entry":[true,false],"in":1,"bearings":[158,338],"duration":4.703,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.703,"geometry_index":14262,"location":[9.187187,47.77015]},{"entry":[false,true,false],"in":2,"bearings":[146,156,334],"duration":4.449,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":5.441,"geometry_index":14265,"location":[9.187727,47.76935]},{"entry":[true,false,false],"in":2,"bearings":[147,321,330],"duration":5.279,"turn_weight":0.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.875,"geometry_index":14268,"location":[9.188314,47.768595]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[142,324],"duration":4.969,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.844,"geometry_index":14271,"location":[9.189425,47.767522]},{"entry":[true,false],"in":1,"bearings":[142,322],"duration":1.828,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.783,"geometry_index":14272,"location":[9.190553,47.766536]},{"entry":[true,false],"in":1,"bearings":[136,322],"duration":3.143,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.064,"geometry_index":14273,"location":[9.190822,47.766308]},{"entry":[true,false,true],"in":1,"bearings":[141,316,325],"duration":1.723,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.668,"geometry_index":14274,"location":[9.19133,47.765949]},{"entry":[true,false],"in":1,"bearings":[143,321],"duration":6.551,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.387,"geometry_index":14275,"location":[9.191576,47.765747]},{"entry":[true,false],"in":1,"bearings":[148,324],"duration":6.551,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.387,"geometry_index":14277,"location":[9.192456,47.764949]},{"entry":[true,false],"in":1,"bearings":[156,332],"duration":0.826,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":14279,"location":[9.193187,47.764083]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":5.961,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.812,"geometry_index":14280,"location":[9.193265,47.763964]},{"entry":[false,true,false],"in":2,"bearings":[163,175,348],"duration":10.961,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":11.402,"geometry_index":14283,"location":[9.193642,47.763096]},{"entry":[true,false],"in":1,"bearings":[178,359],"duration":1.725,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.639,"geometry_index":14287,"location":[9.193753,47.761783]},{"entry":[true,true,false],"in":2,"bearings":[10,158,358],"duration":24.439,"turn_duration":0.083,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":23.139,"geometry_index":14288,"location":[9.193766,47.761573]},{"entry":[true,false],"in":1,"bearings":[132,330],"duration":1.268,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.172,"geometry_index":14294,"location":[9.195469,47.758972]},{"entry":[true,false],"in":1,"bearings":[132,312],"duration":0.887,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":14295,"location":[9.195661,47.758854]},{"entry":[true,false],"in":1,"bearings":[133,312],"duration":7.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.49,"geometry_index":14296,"location":[9.195793,47.758773]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":14.645,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.545,"geometry_index":14298,"location":[9.196937,47.758078]},{"entry":[true,false],"in":1,"bearings":[136,312],"duration":17.039,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.336,"geometry_index":14300,"location":[9.199348,47.756652]},{"entry":[true,false],"in":1,"bearings":[132,314],"duration":6.1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.471,"geometry_index":14302,"location":[9.202,47.754822]},{"entry":[true,false],"in":1,"bearings":[133,312],"duration":0.85,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.748,"geometry_index":14304,"location":[9.203013,47.754202]},{"entry":[true,false],"in":1,"bearings":[132,313],"duration":4.307,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.877,"geometry_index":14305,"location":[9.203156,47.754113]},{"entry":[true,false],"in":1,"bearings":[136,314],"duration":3.904,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.514,"geometry_index":14309,"location":[9.203815,47.753701]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[139,319],"duration":1.16,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.043,"geometry_index":14313,"location":[9.204392,47.753282]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.20456,47.753153],"geometry_index":14314,"admin_index":4,"weight":8.525,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1,"duration":8.369,"bearings":[99,142,163,319],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,false,false,true],"in":2,"bearings":[142,306,324,339],"duration":8.221,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.381,"geometry_index":14317,"location":[9.2057,47.752114]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.24,"geometry_index":14324,"location":[9.206823,47.751315]},{"entry":[true,false],"in":1,"bearings":[121,302],"duration":0.133,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.119,"geometry_index":14328,"location":[9.207423,47.751043]},{"entry":[true,false],"in":1,"bearings":[118,301],"duration":16.133,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.117,"geometry_index":14329,"location":[9.207448,47.751033]},{"entry":[true,false],"in":1,"bearings":[91,275],"duration":7.488,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.533,"geometry_index":14339,"location":[9.210522,47.750416]},{"entry":[true,false],"in":1,"bearings":[88,267],"duration":21.074,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.434,"geometry_index":14341,"location":[9.212021,47.750435]},{"entry":[true,false],"in":1,"bearings":[124,299],"duration":19.553,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":17.1,"geometry_index":14350,"location":[9.216098,47.749935]},{"entry":[true,false],"in":1,"bearings":[136,319],"duration":3.74,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.273,"geometry_index":14356,"location":[9.218912,47.747983]},{"entry":[true,false],"in":1,"bearings":[126,312],"duration":8.047,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.041,"geometry_index":14358,"location":[9.219419,47.747652]},{"entry":[true,true,false],"in":2,"bearings":[118,208,298],"duration":3.869,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":14361,"location":[9.22071,47.747119]},{"entry":[true,false],"in":1,"bearings":[119,298],"duration":1.047,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.916,"geometry_index":14363,"location":[9.221409,47.746873]},{"entry":[true,false],"in":1,"bearings":[121,299],"duration":1.645,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.432,"geometry_index":14364,"location":[9.221597,47.746803]},{"entry":[true,false],"in":1,"bearings":[123,301],"duration":1.447,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.26,"geometry_index":14365,"location":[9.221883,47.746688]},{"entry":[true,false],"in":1,"bearings":[126,303],"duration":4.254,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.723,"geometry_index":14366,"location":[9.222129,47.746582]},{"entry":[true,false],"in":1,"bearings":[134,311],"duration":14.408,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.6,"geometry_index":14369,"location":[9.22281,47.74622]},{"entry":[true,false],"in":1,"bearings":[108,296],"duration":3.568,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.182,"geometry_index":14375,"location":[9.225065,47.744971]},{"entry":[true,false],"in":1,"bearings":[92,279],"duration":2.584,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.297,"geometry_index":14378,"location":[9.225767,47.744863]},{"entry":[true,false],"in":1,"bearings":[85,269],"duration":8.943,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.049,"geometry_index":14380,"location":[9.226284,47.74486]},{"entry":[true,false],"in":1,"bearings":[95,270],"duration":1.969,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.771,"geometry_index":14384,"location":[9.228402,47.744958]},{"entry":[true,false],"in":1,"bearings":[100,275],"duration":1.912,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.721,"geometry_index":14385,"location":[9.228865,47.744933]},{"entry":[true,false],"in":1,"bearings":[104,280],"duration":2.596,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.328,"geometry_index":14386,"location":[9.229317,47.744881]},{"entry":[true,false],"in":1,"bearings":[114,284],"duration":38.137,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":34.324,"geometry_index":14387,"location":[9.229916,47.744779]},{"entry":[true,false],"in":1,"bearings":[136,316],"duration":8.775,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.117,"geometry_index":14396,"location":[9.236545,47.740702]},{"entry":[true,false],"in":1,"bearings":[137,317],"duration":11.531,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.666,"geometry_index":14398,"location":[9.237982,47.739692]},{"entry":[true,false],"in":1,"bearings":[161,336],"duration":2.645,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.445,"geometry_index":14404,"location":[9.239636,47.738236]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[169,345],"duration":1.393,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.289,"geometry_index":14408,"location":[9.239817,47.737834]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[173,350],"duration":4.725,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.371,"geometry_index":14411,"location":[9.239875,47.737625]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[4,186],"duration":2.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.643,"geometry_index":14416,"location":[9.2399,47.736874]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[6,187],"duration":1.889,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":1.746,"geometry_index":14417,"location":[9.239826,47.736432]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.239775,47.736143],"geometry_index":14419,"admin_index":4,"weight":7.166,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":6.133,"bearings":[7,176,187,208],"out":2,"in":0,"entry":[false,false,true,true]},{"entry":[false,true,true,false],"in":0,"bearings":[7,37,187,334],"duration":3.662,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":2,"weight":4.881,"geometry_index":14420,"location":[9.239596,47.735125]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[7,187],"duration":0.928,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.857,"geometry_index":14422,"location":[9.23949,47.734529]},{"entry":[false,true],"in":0,"bearings":[7,187],"duration":0.072,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.066,"geometry_index":14424,"location":[9.239464,47.734378]},{"entry":[false,true],"in":0,"bearings":[7,187],"duration":2.455,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.27,"geometry_index":14425,"location":[9.239461,47.734362]},{"entry":[false,true],"in":0,"bearings":[7,187],"duration":22.801,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":21.09,"geometry_index":14426,"location":[9.239391,47.733963]},{"entry":[false,true],"in":0,"bearings":[10,191],"duration":1.004,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":0.928,"geometry_index":14430,"location":[9.238708,47.730412]},{"entry":[false,true],"in":0,"bearings":[11,192],"duration":16.711,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":15.457,"geometry_index":14432,"location":[9.238664,47.730264]},{"entry":[false,true],"in":0,"bearings":[17,197],"duration":2.688,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":2.484,"geometry_index":14437,"location":[9.237594,47.727567]},{"entry":[false,false,true],"in":0,"bearings":[17,189,194],"duration":4.51,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":2,"weight":5.15,"geometry_index":14438,"location":[9.237399,47.727136]},{"entry":[false,true],"in":0,"bearings":[9,187],"duration":18.197,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":16.832,"geometry_index":14441,"location":[9.237136,47.726342]},{"entry":[true,false],"in":1,"bearings":[154,334],"duration":23.672,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":21.896,"geometry_index":14452,"location":[9.237894,47.723119]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":0.609,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.562,"geometry_index":14464,"location":[9.242498,47.72023]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":1.408,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.303,"geometry_index":14465,"location":[9.242639,47.720176]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":8.496,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.854,"geometry_index":14466,"location":[9.242954,47.720054]},{"entry":[true,false],"in":1,"bearings":[120,300],"duration":21.912,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":20.262,"geometry_index":14468,"location":[9.244781,47.719343]},{"entry":[true,false],"in":1,"bearings":[123,302],"duration":8.721,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.066,"geometry_index":14474,"location":[9.249737,47.717366]},{"entry":[true,false],"in":1,"bearings":[124,308],"duration":0.76,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.703,"geometry_index":14479,"location":[9.251609,47.716478]},{"entry":[true,false],"in":1,"bearings":[124,304],"duration":1.652,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.529,"geometry_index":14480,"location":[9.25177,47.716405]},{"entry":[true,false,true],"in":1,"bearings":[129,304,318],"duration":5.514,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.09,"geometry_index":14481,"location":[9.25208,47.716263]},{"entry":[true,false],"in":1,"bearings":[134,310],"duration":68.965,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":63.793,"geometry_index":14483,"location":[9.253181,47.715648]},{"entry":[true,false],"in":1,"bearings":[131,314],"duration":0.771,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.713,"geometry_index":14498,"location":[9.263417,47.705857]},{"entry":[true,false],"in":1,"bearings":[132,311],"duration":19.748,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":18.268,"geometry_index":14499,"location":[9.263565,47.70577]},{"entry":[true,false],"in":1,"bearings":[121,303],"duration":4.783,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.424,"geometry_index":14503,"location":[9.267664,47.703708]},{"entry":[true,false],"in":1,"bearings":[118,301],"duration":10.908,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.09,"geometry_index":14504,"location":[9.268727,47.703278]},{"entry":[true,false],"in":1,"bearings":[109,294],"duration":14.643,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.52,"geometry_index":14508,"location":[9.271157,47.702476]},{"entry":[true,false],"in":1,"bearings":[112,290],"duration":0.859,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.816,"geometry_index":14511,"location":[9.274587,47.701678]},{"entry":[true,false],"in":1,"bearings":[111,292],"duration":29.338,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":27.871,"geometry_index":14512,"location":[9.274785,47.701623]},{"entry":[true,false],"in":1,"bearings":[128,309],"duration":1.418,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.348,"geometry_index":14522,"location":[9.280899,47.698969]},{"entry":[true,false],"in":1,"bearings":[130,308],"duration":17.73,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":16.846,"geometry_index":14523,"location":[9.281171,47.698824]},{"entry":[true,false],"in":1,"bearings":[152,332],"duration":4.387,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.168,"geometry_index":14530,"location":[9.284042,47.696608]},{"entry":[true,false],"in":1,"bearings":[167,339],"duration":3.994,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.795,"geometry_index":14532,"location":[9.284462,47.69597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[172,347],"duration":1.254,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.191,"geometry_index":14533,"location":[9.284675,47.69535]},{"entry":[true,true,false],"in":2,"bearings":[172,184,352],"duration":4.896,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.523,"geometry_index":14534,"location":[9.284719,47.695143]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":4.996,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.623,"geometry_index":14536,"location":[9.284893,47.694333]},{"entry":[true,false],"in":1,"bearings":[161,343],"duration":0.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.846,"geometry_index":14540,"location":[9.28518,47.693523]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[159,341],"duration":1.535,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.42,"geometry_index":14541,"location":[9.285254,47.693377]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.285391,47.693132],"geometry_index":14542,"admin_index":4,"weight":9.896,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.009,"turn_weight":1,"duration":9.627,"bearings":[149,164,339],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,false,false],"in":2,"bearings":[140,301,323],"duration":3.217,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.955,"geometry_index":14548,"location":[9.286613,47.691854]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[136,316],"duration":10.141,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.381,"geometry_index":14550,"location":[9.287166,47.691433]},{"entry":[true,false],"in":1,"bearings":[121,305],"duration":0.492,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.457,"geometry_index":14556,"location":[9.289221,47.690294]},{"entry":[true,false],"in":1,"bearings":[120,301],"duration":6.939,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.418,"geometry_index":14557,"location":[9.289336,47.690248]},{"entry":[true,true,false],"in":2,"bearings":[109,120,295],"duration":14.607,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.48,"geometry_index":14559,"location":[9.290901,47.689695]},{"entry":[true,false,false],"in":2,"bearings":[90,208,273],"duration":4.289,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.947,"geometry_index":14567,"location":[9.294171,47.689284]},{"entry":[true,false,true],"in":1,"bearings":[95,269,275],"duration":5.639,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.207,"geometry_index":14569,"location":[9.295029,47.689291]},{"entry":[true,false],"in":1,"bearings":[101,279],"duration":1.57,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.453,"geometry_index":14572,"location":[9.296165,47.689202]},{"entry":[true,false],"in":1,"bearings":[103,281],"duration":10.734,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.93,"geometry_index":14573,"location":[9.296475,47.68916]},{"entry":[true,false,true],"in":1,"bearings":[123,299,322],"duration":3.68,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.395,"geometry_index":14578,"location":[9.298491,47.688612]},{"entry":[true,false],"in":1,"bearings":[129,305],"duration":1.623,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.502,"geometry_index":14580,"location":[9.299071,47.68835]},{"entry":[true,false],"in":1,"bearings":[129,309],"duration":6.816,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.307,"geometry_index":14581,"location":[9.299312,47.68822]},{"entry":[true,false],"in":1,"bearings":[135,312],"duration":54.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":49.371,"geometry_index":14583,"location":[9.300206,47.687698]},{"entry":[true,false],"in":1,"bearings":[123,301],"duration":14.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.424,"geometry_index":14593,"location":[9.306418,47.683822]},{"entry":[true,false],"in":1,"bearings":[129,307],"duration":1.879,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.691,"geometry_index":14595,"location":[9.308305,47.682911]},{"entry":[true,false],"in":1,"bearings":[131,309],"duration":61.65,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":55.484,"geometry_index":14596,"location":[9.308553,47.682777]},{"entry":[true,false],"in":1,"bearings":[148,332],"duration":10.92,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":9.828,"geometry_index":14607,"location":[9.31275,47.67883]},{"entry":[true,false],"in":1,"bearings":[136,320],"duration":6.055,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.449,"geometry_index":14611,"location":[9.313458,47.678172]},{"entry":[true,false],"in":1,"bearings":[132,315],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.238,"geometry_index":14613,"location":[9.3138,47.677936]},{"entry":[true,false],"in":1,"bearings":[131,312],"duration":7.549,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.773,"geometry_index":14614,"location":[9.314006,47.677809]},{"entry":[true,false],"in":1,"bearings":[125,311],"duration":4.418,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.977,"geometry_index":14616,"location":[9.314471,47.67754]},{"entry":[true,false],"in":1,"bearings":[120,305],"duration":2.572,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.25,"geometry_index":14617,"location":[9.314768,47.677402]},{"entry":[true,false],"in":1,"bearings":[116,300],"duration":13.479,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.77,"geometry_index":14618,"location":[9.314937,47.677336]},{"entry":[true,false],"in":1,"bearings":[109,293],"duration":6.062,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.305,"geometry_index":14620,"location":[9.315802,47.677066]},{"entry":[true,false],"in":1,"bearings":[105,288],"duration":4.703,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.094,"geometry_index":14622,"location":[9.316207,47.676974]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":10.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.926,"geometry_index":14624,"location":[9.316703,47.676881]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":1.459,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.262,"geometry_index":14628,"location":[9.317798,47.676689]},{"entry":[true,false],"in":1,"bearings":[104,283],"duration":12.936,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.312,"geometry_index":14630,"location":[9.317951,47.676665]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":3.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.148,"geometry_index":14632,"location":[9.318975,47.676487]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":0.662,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.574,"geometry_index":14633,"location":[9.319255,47.676433]},{"entry":[true,false],"in":1,"bearings":[110,286],"duration":1.723,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.5,"geometry_index":14634,"location":[9.319302,47.676424]},{"entry":[true,false],"in":1,"bearings":[110,290],"duration":4.635,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.051,"geometry_index":14635,"location":[9.319431,47.676392]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":2.557,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.23,"geometry_index":14637,"location":[9.319767,47.676307]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.319977,47.676253],"geometry_index":14640,"admin_index":4,"weight":7.957,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1,"duration":7.957,"bearings":[111,291],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[116,294],"duration":6.9,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.039,"geometry_index":14643,"location":[9.32063,47.676073]},{"entry":[true,false],"in":1,"bearings":[115,296],"duration":17.27,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":15.094,"geometry_index":14644,"location":[9.321182,47.675894]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":0.908,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.789,"geometry_index":14648,"location":[9.322558,47.675443]},{"entry":[true,false],"in":1,"bearings":[119,298],"duration":3.9,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.414,"geometry_index":14649,"location":[9.322632,47.675416]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":6.516,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.695,"geometry_index":14650,"location":[9.322934,47.675305]},{"entry":[true,false],"in":1,"bearings":[121,300],"duration":7.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.648,"geometry_index":14651,"location":[9.323474,47.675095]},{"entry":[true,true,false],"in":2,"bearings":[121,152,301],"duration":2.051,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.789,"geometry_index":14652,"location":[9.324129,47.674827]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":11.48,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":10.047,"geometry_index":14653,"location":[9.324365,47.67473]},{"entry":[true,false],"in":1,"bearings":[124,302],"duration":25.402,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":22.219,"geometry_index":14655,"location":[9.325704,47.674176]},{"entry":[true,false],"in":1,"bearings":[141,321],"duration":3.502,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.152,"geometry_index":14659,"location":[9.32823,47.672583]},{"entry":[true,true,false],"in":2,"bearings":[138,182,321],"duration":13.385,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":12.023,"geometry_index":14660,"location":[9.32853,47.672334]},{"entry":[true,false],"in":1,"bearings":[125,307],"duration":7.221,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.48,"geometry_index":14665,"location":[9.330418,47.671159]},{"entry":[true,false],"in":1,"bearings":[123,305],"duration":15.84,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.258,"geometry_index":14666,"location":[9.331548,47.67062]},{"entry":[true,false],"in":1,"bearings":[116,298],"duration":8.158,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.324,"geometry_index":14669,"location":[9.334051,47.669587]},{"entry":[true,false],"in":1,"bearings":[111,293],"duration":21.518,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":19.367,"geometry_index":14671,"location":[9.335417,47.669167]},{"entry":[true,false],"in":1,"bearings":[109,290],"duration":9.082,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":8.172,"geometry_index":14673,"location":[9.338708,47.668348]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.340104,47.668025],"geometry_index":14675,"admin_index":4,"weight":7.293,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.009,"turn_weight":1,"duration":7.002,"bearings":[112,289],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[116,294],"duration":23.055,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":20.75,"geometry_index":14679,"location":[9.341343,47.667668]},{"entry":[true,false],"in":1,"bearings":[111,293],"duration":33.576,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":30.219,"geometry_index":14683,"location":[9.345333,47.666361]},{"entry":[true,false],"in":1,"bearings":[99,280],"duration":1.174,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.055,"geometry_index":14691,"location":[9.351607,47.665364]},{"entry":[true,false],"in":1,"bearings":[98,279],"duration":16.164,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":14.547,"geometry_index":14692,"location":[9.351807,47.665343]},{"entry":[true,false],"in":1,"bearings":[89,270],"duration":12.391,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":11.152,"geometry_index":14697,"location":[9.354848,47.66514]},{"entry":[true,false],"in":1,"bearings":[78,260],"duration":0.168,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.152,"geometry_index":14702,"location":[9.356804,47.665264]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[77,258],"duration":4.02,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.617,"geometry_index":14703,"location":[9.356833,47.665268]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.357452,47.665375],"geometry_index":14705,"admin_index":4,"weight":5.902,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1,"duration":5.453,"bearings":[73,159,254,346],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[66,248],"duration":0.186,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.168,"geometry_index":14708,"location":[9.358194,47.665558]},{"entry":[true,false],"in":1,"bearings":[67,246],"duration":1.662,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.496,"geometry_index":14709,"location":[9.358217,47.665565]},{"entry":[true,false],"in":1,"bearings":[64,247],"duration":4.693,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.203,"geometry_index":14710,"location":[9.358437,47.665627]},{"entry":[true,false],"in":1,"bearings":[61,244],"duration":4.324,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.871,"geometry_index":14711,"location":[9.359012,47.665818]},{"entry":[true,false],"in":1,"bearings":[58,240],"duration":1.971,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.773,"geometry_index":14714,"location":[9.359577,47.666033]},{"entry":[true,false],"in":1,"bearings":[56,237],"duration":0.408,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.367,"geometry_index":14716,"location":[9.359903,47.666175]},{"entry":[true,false],"in":1,"bearings":[55,236],"duration":33.08,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":30.598,"geometry_index":14717,"location":[9.35997,47.666206]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[45,223],"duration":0.867,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":14743,"location":[9.364071,47.669549]},{"entry":[true,false],"in":1,"bearings":[46,225],"duration":66.857,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":61.844,"geometry_index":14746,"location":[9.364197,47.669634]},{"entry":[true,false],"in":1,"bearings":[121,304],"duration":14.637,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":13.539,"geometry_index":14797,"location":[9.376222,47.668083]},{"entry":[true,false],"in":1,"bearings":[101,282],"duration":1.488,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":14810,"location":[9.378517,47.667454]},{"entry":[true,false],"in":1,"bearings":[99,281],"duration":0.613,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.555,"geometry_index":14811,"location":[9.378765,47.667421]},{"entry":[true,false],"in":1,"bearings":[98,279],"duration":3.074,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.766,"geometry_index":14812,"location":[9.378852,47.667412]},{"entry":[true,false],"in":1,"bearings":[94,277],"duration":1.621,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.457,"geometry_index":14815,"location":[9.379316,47.66737]},{"entry":[true,false],"in":1,"bearings":[93,274],"duration":3.691,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.324,"geometry_index":14816,"location":[9.379562,47.667358]},{"entry":[true,false],"in":1,"bearings":[88,272],"duration":0.742,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.148,"geometry_index":14818,"location":[9.3801,47.667342]},{"entry":[true,false],"in":1,"bearings":[87,268],"duration":5.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":4.535,"geometry_index":14819,"location":[9.380193,47.667344]},{"entry":[true,false],"in":1,"bearings":[81,263],"duration":2.879,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.594,"geometry_index":14822,"location":[9.380841,47.667383]},{"entry":[true,false],"in":1,"bearings":[78,261],"duration":4.219,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.797,"geometry_index":14823,"location":[9.38121,47.667421]},{"entry":[true,false],"in":1,"bearings":[74,258],"duration":2.777,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.5,"geometry_index":14824,"location":[9.38175,47.667497]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.3821,47.667565],"geometry_index":14825,"admin_index":4,"weight":4.188,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":0.75,"duration":3.824,"bearings":[53,73,254],"out":1,"in":2,"entry":[false,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[68,249],"duration":2.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":14828,"location":[9.38254,47.667667]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.382817,47.667742],"geometry_index":14830,"admin_index":4,"weight":2.738,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":1.398,"bearings":[65,152,248,336],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[62,245],"duration":3.324,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.969,"geometry_index":14831,"location":[9.382975,47.667792]},{"entry":[true,false],"in":1,"bearings":[62,242],"duration":1.996,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.789,"geometry_index":14833,"location":[9.383358,47.667929]},{"entry":[true,false],"in":1,"bearings":[59,242],"duration":2.367,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.133,"geometry_index":14835,"location":[9.3836,47.668015]},{"entry":[true,false],"in":1,"bearings":[53,239],"duration":2.746,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.473,"geometry_index":14836,"location":[9.383882,47.66813]},{"entry":[true,false],"in":1,"bearings":[50,233],"duration":3.883,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":3.496,"geometry_index":14837,"location":[9.384193,47.668286]},{"entry":[true,false],"in":1,"bearings":[48,229],"duration":1.062,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.957,"geometry_index":14839,"location":[9.384609,47.668523]},{"entry":[true,false],"in":1,"bearings":[48,228],"duration":7.855,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.07,"geometry_index":14840,"location":[9.384741,47.668602]},{"entry":[true,false],"in":1,"bearings":[48,228],"duration":0.98,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":14842,"location":[9.385693,47.669178]},{"entry":[true,false],"in":1,"bearings":[48,228],"duration":31.992,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":28.793,"geometry_index":14843,"location":[9.385807,47.669248]},{"entry":[true,false],"in":1,"bearings":[67,248],"duration":1.145,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.059,"geometry_index":14851,"location":[9.390261,47.671019]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":8.426,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":7.797,"geometry_index":14852,"location":[9.390428,47.671067]},{"entry":[true,false],"in":1,"bearings":[66,247],"duration":2.145,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.98,"geometry_index":14854,"location":[9.391691,47.671422]},{"entry":[true,false],"in":1,"bearings":[67,246],"duration":1.199,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":14855,"location":[9.391997,47.671513]},{"entry":[true,false],"in":1,"bearings":[68,247],"duration":2.887,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.664,"geometry_index":14856,"location":[9.392165,47.671562]},{"entry":[false,true,false],"in":2,"bearings":[48,65,248],"duration":12.41,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":1,"weight":12.461,"geometry_index":14858,"location":[9.392559,47.671671]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[25,207],"duration":6.566,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":6.074,"geometry_index":14862,"location":[9.393573,47.672426]},{"entry":[true,false],"in":1,"bearings":[26,204],"duration":2.348,"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":2.164,"geometry_index":14864,"location":[9.393918,47.672935]},{"lanes":[{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[29,206],"duration":5.578,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":4,"out":0,"weight":5.16,"geometry_index":14865,"location":[9.393991,47.673036]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[9.394197,47.67328],"geometry_index":14867,"admin_index":4,"weight":2.422,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.011,"turn_weight":1.5,"duration":1.004,"bearings":[36,120,210,296],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[42,135,216,306],"duration":10.336,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.551,"geometry_index":14868,"location":[9.394358,47.67343]},{"entry":[true,false],"in":1,"bearings":[79,260],"duration":57.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":53.105,"geometry_index":14875,"location":[9.396931,47.674218]},{"entry":[true,false],"in":1,"bearings":[77,258],"duration":0.785,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.746,"geometry_index":14894,"location":[9.411705,47.67826]},{"entry":[true,false],"in":1,"bearings":[76,257],"duration":26.684,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":25.348,"geometry_index":14895,"location":[9.411957,47.6783]},{"entry":[true,false],"in":1,"bearings":[53,227],"duration":2.543,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.414,"geometry_index":14909,"location":[9.418486,47.681641]},{"entry":[true,true,false],"in":2,"bearings":[57,63,233],"duration":8.098,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.684,"geometry_index":14910,"location":[9.41913,47.681964]},{"entry":[true,false,false],"in":2,"bearings":[75,241,252],"duration":4.09,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.879,"geometry_index":14914,"location":[9.421292,47.682691]},{"entry":[true,false],"in":1,"bearings":[82,261],"duration":17.035,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.184,"geometry_index":14916,"location":[9.422499,47.68287]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[98,276],"duration":2.086,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.98,"geometry_index":14921,"location":[9.427659,47.682769]},{"entry":[true,false],"in":1,"bearings":[99,278],"duration":22.688,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":22.121,"geometry_index":14922,"location":[9.428332,47.682707]},{"entry":[true,false],"in":1,"bearings":[108,286],"duration":1.555,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.516,"geometry_index":14926,"location":[9.43538,47.681636]},{"entry":[true,false],"in":1,"bearings":[110,288],"duration":29.957,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":29.207,"geometry_index":14927,"location":[9.435858,47.681533]},{"entry":[true,false],"in":1,"bearings":[121,299],"duration":6.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.688,"geometry_index":14932,"location":[9.444334,47.678931]},{"entry":[true,false],"in":1,"bearings":[128,306],"duration":1.375,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":14934,"location":[9.446114,47.678137]},{"entry":[true,false],"in":1,"bearings":[131,308],"duration":2.16,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.105,"geometry_index":14935,"location":[9.446467,47.677951]},{"entry":[true,false],"in":1,"bearings":[133,311],"duration":15.754,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":15.363,"geometry_index":14936,"location":[9.446983,47.677653]},{"entry":[true,false],"in":1,"bearings":[146,324],"duration":2.016,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.965,"geometry_index":14940,"location":[9.450141,47.675083]},{"entry":[true,false],"in":1,"bearings":[148,326],"duration":0.898,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.898,"geometry_index":14941,"location":[9.450495,47.67473]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[148,328],"duration":1.113,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.113,"geometry_index":14942,"location":[9.450644,47.674569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[145,328],"duration":5.441,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.441,"geometry_index":14943,"location":[9.45083,47.674368]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[145,325],"duration":2.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.613,"geometry_index":14944,"location":[9.45179,47.673432]},{"entry":[true,true,false],"in":2,"bearings":[145,158,325],"duration":7.254,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.246,"geometry_index":14945,"location":[9.452259,47.672982]},{"entry":[true,false,false],"in":2,"bearings":[139,311,324],"duration":4,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.973,"geometry_index":14947,"location":[9.45343,47.67188]},{"entry":[true,false],"in":1,"bearings":[133,318],"duration":2.172,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.172,"geometry_index":14949,"location":[9.453993,47.671451]},{"entry":[true,false],"in":1,"bearings":[128,313],"duration":25.324,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":25.324,"geometry_index":14950,"location":[9.454334,47.671238]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[99,276],"duration":55.441,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":56.824,"geometry_index":14959,"location":[9.459393,47.670083]},{"entry":[true,false],"in":1,"bearings":[123,300],"duration":11.887,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.484,"geometry_index":14966,"location":[9.467523,47.667314]},{"entry":[true,false],"in":1,"bearings":[120,302],"duration":10.488,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":11.25,"geometry_index":14968,"location":[9.469115,47.666631]},{"entry":[true,false],"in":1,"bearings":[114,296],"duration":6.195,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":6.66,"geometry_index":14970,"location":[9.47059,47.666104]},{"entry":[true,true,false],"in":2,"bearings":[111,121,294],"duration":9.16,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":9.824,"geometry_index":14971,"location":[9.471487,47.665836]},{"entry":[true,false,false],"in":2,"bearings":[109,276,291],"duration":8.301,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":9.402,"geometry_index":14973,"location":[9.472722,47.665511]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[96,287],"duration":5.129,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":5.516,"geometry_index":14975,"location":[9.473885,47.665252]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[99,270],"duration":2.789,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3,"geometry_index":14978,"location":[9.474644,47.665228]},{"entry":[true,false,true],"in":1,"bearings":[108,279,291],"duration":1.68,"turn_duration":0.013,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.793,"geometry_index":14979,"location":[9.475057,47.665183]},{"tunnel_name":"Riedleparktunnel","entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[99,288],"duration":38.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":41.387,"geometry_index":14980,"location":[9.475292,47.665132]},{"entry":[true,false],"in":1,"bearings":[71,257],"duration":1.984,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.133,"geometry_index":14986,"location":[9.480399,47.66512]},{"entry":[true,false],"in":1,"bearings":[68,251],"duration":17.926,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":19.27,"geometry_index":14987,"location":[9.480741,47.665201]},{"entry":[true,false],"in":1,"bearings":[67,242],"duration":10.809,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":11.609,"geometry_index":14991,"location":[9.483643,47.666184]},{"entry":[true,false],"in":1,"bearings":[79,258],"duration":1.91,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.055,"geometry_index":14995,"location":[9.485502,47.666584]},{"entry":[true,false],"in":1,"bearings":[84,259],"duration":1.984,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.133,"geometry_index":14996,"location":[9.485837,47.666626]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":3.531,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":3.793,"geometry_index":14997,"location":[9.486199,47.66665]},{"entry":[true,false],"in":1,"bearings":[90,267],"duration":9.719,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":10.449,"geometry_index":14999,"location":[9.486863,47.666683]},{"entry":[true,false],"in":1,"bearings":[102,278],"duration":2.16,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":2.32,"geometry_index":15003,"location":[9.488663,47.666603]},{"entry":[true,false],"in":1,"bearings":[105,282],"duration":4.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":4.875,"geometry_index":15004,"location":[9.489053,47.666547]},{"entry":[true,false],"in":1,"bearings":[112,289],"duration":1.078,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":1.16,"geometry_index":15006,"location":[9.489859,47.666377]},{"entry":[true,false],"in":1,"bearings":[112,292],"duration":0.719,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":0.773,"geometry_index":15007,"location":[9.490045,47.666326]},{"entry":[false,true,false],"in":2,"bearings":[108,125,292],"duration":8.703,"turn_weight":1.5,"turn_duration":0.018,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":1,"weight":10.836,"geometry_index":15008,"location":[9.490166,47.666293]},{"entry":[true,false],"in":1,"bearings":[130,307],"duration":7.516,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":4,"out":0,"weight":8.078,"geometry_index":15016,"location":[9.492351,47.665393]},{"entry":[true,true,false],"in":2,"bearings":[139,159,319],"duration":10.512,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.02,"geometry_index":15021,"location":[9.493938,47.664346]},{"entry":[true,false],"in":1,"bearings":[150,329],"duration":12.328,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.938,"geometry_index":15026,"location":[9.494987,47.663345]},{"entry":[true,false,true],"in":1,"bearings":[153,327,345],"duration":6.121,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.418,"geometry_index":15030,"location":[9.496027,47.662149]},{"entry":[true,false],"in":1,"bearings":[156,333],"duration":36.293,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":37.199,"geometry_index":15031,"location":[9.496465,47.661561]},{"entry":[true,false],"in":1,"bearings":[155,338],"duration":1.461,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.5,"geometry_index":15034,"location":[9.498409,47.658477]},{"entry":[false,true,false],"in":2,"bearings":[144,162,335],"duration":9.812,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":11.047,"geometry_index":15036,"location":[9.498486,47.658368]},{"entry":[true,true,false],"in":2,"bearings":[157,170,334],"duration":11.355,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.344,"geometry_index":15039,"location":[9.499003,47.657565]},{"entry":[true,false,false],"in":2,"bearings":[153,315,334],"duration":12.617,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.602,"geometry_index":15041,"location":[9.499566,47.656709]},{"entry":[true,false],"in":1,"bearings":[144,333],"duration":3.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.707,"geometry_index":15042,"location":[9.500292,47.655761]},{"entry":[true,false,true],"in":1,"bearings":[149,324,336],"duration":3.516,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.508,"geometry_index":15043,"location":[9.500571,47.655505]},{"entry":[true,false],"in":1,"bearings":[149,329],"duration":15.137,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":14.758,"geometry_index":15044,"location":[9.500831,47.655214]},{"entry":[true,false],"in":1,"bearings":[141,324],"duration":25.41,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.141,"geometry_index":15047,"location":[9.502207,47.653837]},{"entry":[true,false],"in":1,"bearings":[135,315],"duration":2.309,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.195,"geometry_index":15050,"location":[9.505455,47.651461]},{"entry":[true,false],"in":1,"bearings":[136,315],"duration":16.883,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.039,"geometry_index":15051,"location":[9.505776,47.651247]},{"entry":[true,false],"in":1,"bearings":[148,324],"duration":5.09,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.707,"geometry_index":15055,"location":[9.50813,47.649396]},{"entry":[true,false],"in":1,"bearings":[146,328],"duration":17.473,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.141,"geometry_index":15056,"location":[9.508711,47.648771]},{"entry":[true,false],"in":1,"bearings":[158,337],"duration":4.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.191,"geometry_index":15060,"location":[9.510435,47.646483]},{"entry":[false,true,false],"in":2,"bearings":[153,161,338],"duration":9.082,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":9.395,"geometry_index":15061,"location":[9.510768,47.645915]},{"entry":[true,false],"in":1,"bearings":[156,338],"duration":10.586,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":10.008,"geometry_index":15063,"location":[9.511341,47.6449]},{"entry":[true,false],"in":1,"bearings":[151,333],"duration":18.625,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":16.762,"geometry_index":15065,"location":[9.512132,47.64381]},{"entry":[true,false,true],"in":1,"bearings":[143,317,329],"duration":1.848,"turn_duration":0.011,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.656,"geometry_index":15069,"location":[9.51388,47.642035]},{"entry":[true,false,true],"in":1,"bearings":[139,323,342],"duration":3.938,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.523,"geometry_index":15070,"location":[9.514071,47.641864]},{"entry":[true,false],"in":1,"bearings":[139,319],"duration":7.922,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.129,"geometry_index":15071,"location":[9.514831,47.641275]},{"entry":[true,true,false],"in":2,"bearings":[49,137,319],"duration":26.301,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":23.652,"geometry_index":15072,"location":[9.516372,47.64008]},{"entry":[true,false],"in":1,"bearings":[137,317],"duration":9.637,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.906,"geometry_index":15073,"location":[9.521706,47.636264]},{"entry":[false,true,false],"in":2,"bearings":[124,135,315],"duration":3.656,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.375,"geometry_index":15075,"location":[9.52368,47.634875]},{"entry":[true,false],"in":1,"bearings":[127,310],"duration":2.496,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.309,"geometry_index":15077,"location":[9.524425,47.634408]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[123,304],"duration":2.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.219,"geometry_index":15079,"location":[9.524982,47.634137]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[118,303],"duration":2.16,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.996,"geometry_index":15080,"location":[9.525538,47.633896]},{"entry":[true,true,false],"in":2,"bearings":[116,128,298],"duration":6.438,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.934,"geometry_index":15082,"location":[9.526072,47.633703]},{"entry":[true,false],"in":1,"bearings":[110,292],"duration":5.988,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.523,"geometry_index":15085,"location":[9.527777,47.63321]},{"entry":[true,false],"in":1,"bearings":[107,290],"duration":3.602,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.328,"geometry_index":15086,"location":[9.529422,47.632805]},{"entry":[true,false,true],"in":1,"bearings":[108,285,294],"duration":12.09,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.176,"geometry_index":15088,"location":[9.530441,47.63261]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":2.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.094,"geometry_index":15090,"location":[9.533535,47.631905]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":8.977,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":8.301,"geometry_index":15091,"location":[9.534086,47.631779]},{"entry":[true,false],"in":1,"bearings":[109,289],"duration":1.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.422,"geometry_index":15093,"location":[9.536323,47.631262]},{"entry":[true,false],"in":1,"bearings":[108,289],"duration":3.027,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.801,"geometry_index":15094,"location":[9.536684,47.631178]},{"entry":[true,false],"in":1,"bearings":[111,288],"duration":5.875,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.434,"geometry_index":15095,"location":[9.537421,47.631014]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[112,291],"duration":13.086,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.105,"geometry_index":15096,"location":[9.538962,47.630614]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":3.086,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.855,"geometry_index":15100,"location":[9.541689,47.629699]},{"entry":[true,false],"in":1,"bearings":[124,304],"duration":2.457,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.273,"geometry_index":15101,"location":[9.542286,47.629429]},{"entry":[false,true,false],"in":2,"bearings":[120,128,304],"duration":2.535,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":3.336,"geometry_index":15102,"location":[9.542763,47.62921]},{"entry":[true,false],"in":1,"bearings":[124,308],"duration":3.223,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.98,"geometry_index":15103,"location":[9.543255,47.628948]},{"entry":[true,true,false],"in":2,"bearings":[123,139,304],"duration":1.691,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.543,"geometry_index":15104,"location":[9.54392,47.628643]},{"entry":[true,false],"in":1,"bearings":[125,303],"duration":4.438,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.105,"geometry_index":15105,"location":[9.544282,47.628487]},{"entry":[true,false,false],"in":2,"bearings":[125,284,305],"duration":5,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.605,"geometry_index":15106,"location":[9.545268,47.628019]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[125,305],"duration":0.445,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.41,"geometry_index":15107,"location":[9.546372,47.627501]},{"entry":[true,false],"in":1,"bearings":[122,305],"duration":0.984,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.914,"geometry_index":15108,"location":[9.546472,47.627454]},{"entry":[true,false],"in":1,"bearings":[123,302],"duration":3.254,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.012,"geometry_index":15109,"location":[9.546694,47.627359]},{"entry":[true,false],"in":1,"bearings":[122,303],"duration":2.168,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.008,"geometry_index":15110,"location":[9.547439,47.627037]},{"entry":[true,false,true],"in":1,"bearings":[124,302,308],"duration":21.164,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":19.57,"geometry_index":15111,"location":[9.547941,47.626829]},{"entry":[true,false],"in":1,"bearings":[125,304],"duration":5.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.902,"geometry_index":15114,"location":[9.552662,47.62465]},{"entry":[true,false],"in":1,"bearings":[126,305],"duration":3.051,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.82,"geometry_index":15115,"location":[9.553818,47.624106]},{"entry":[true,false],"in":1,"bearings":[127,306],"duration":10.273,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.238,"geometry_index":15116,"location":[9.554481,47.623786]},{"entry":[true,false],"in":1,"bearings":[127,307],"duration":0.633,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.57,"geometry_index":15118,"location":[9.55673,47.622654]},{"entry":[true,false],"in":1,"bearings":[127,307],"duration":42.664,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":38.398,"geometry_index":15119,"location":[9.556872,47.622582]},{"entry":[true,false],"in":1,"bearings":[140,319],"duration":1.352,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.215,"geometry_index":15130,"location":[9.565522,47.61732]},{"entry":[true,false],"in":1,"bearings":[140,320],"duration":1.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.453,"geometry_index":15131,"location":[9.565753,47.617135]},{"entry":[false,true,false],"in":2,"bearings":[94,140,320],"duration":3.922,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":1,"weight":4.516,"geometry_index":15132,"location":[9.565973,47.61696]},{"entry":[true,false,true],"in":1,"bearings":[142,320,351],"duration":3.129,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.809,"geometry_index":15133,"location":[9.566628,47.616428]},{"entry":[true,false],"in":1,"bearings":[142,322],"duration":3.742,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.371,"geometry_index":15134,"location":[9.567158,47.615969]},{"entry":[true,true,false],"in":2,"bearings":[141,168,322],"duration":4.059,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.633,"geometry_index":15135,"location":[9.567798,47.61542]},{"entry":[true,false,false],"in":2,"bearings":[142,282,321],"duration":12.797,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":12.512,"geometry_index":15136,"location":[9.568484,47.614839]},{"entry":[true,false],"in":1,"bearings":[142,322],"duration":1.488,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.34,"geometry_index":15138,"location":[9.570718,47.612942]},{"entry":[true,false],"in":1,"bearings":[141,322],"duration":37.352,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":33.613,"geometry_index":15139,"location":[9.570971,47.612726]},{"entry":[true,false],"in":1,"bearings":[118,303],"duration":8.281,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.66,"geometry_index":15144,"location":[9.576605,47.609184]},{"entry":[true,false],"in":1,"bearings":[114,298],"duration":14.547,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.457,"geometry_index":15145,"location":[9.577682,47.608792]},{"entry":[true,false],"in":1,"bearings":[102,283],"duration":1.801,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.664,"geometry_index":15149,"location":[9.580176,47.608222]},{"entry":[true,false],"in":1,"bearings":[99,282],"duration":6.977,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.453,"geometry_index":15150,"location":[9.580565,47.608165]},{"entry":[true,false],"in":1,"bearings":[91,275],"duration":5.961,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.516,"geometry_index":15153,"location":[9.582208,47.608042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[9.583625,47.608053],"geometry_index":15155,"admin_index":4,"weight":6.652,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.008,"turn_weight":2,"duration":5.039,"bearings":[77,88,108,268],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,false,false],"in":2,"bearings":[82,252,264],"duration":9.641,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":9.895,"geometry_index":15157,"location":[9.584888,47.608121]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[81,260],"duration":5.965,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.52,"geometry_index":15161,"location":[9.587343,47.608396]},{"entry":[true,false,true,true],"in":1,"bearings":[85,259,267,284],"duration":5.977,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":5.668,"geometry_index":15163,"location":[9.588866,47.608572]},{"entry":[true,false],"in":1,"bearings":[91,268],"duration":8.383,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.965,"geometry_index":15165,"location":[9.590405,47.608642]},{"entry":[true,false],"in":1,"bearings":[99,278],"duration":1.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.32,"geometry_index":15169,"location":[9.592568,47.608533]},{"entry":[true,false],"in":1,"bearings":[102,279],"duration":3.496,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":3.324,"geometry_index":15170,"location":[9.592927,47.608494]},{"entry":[true,false],"in":1,"bearings":[103,284],"duration":21.652,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":20.57,"geometry_index":15172,"location":[9.593807,47.60836]},{"entry":[true,false],"in":1,"bearings":[124,303],"duration":14.555,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":13.828,"geometry_index":15180,"location":[9.598844,47.606749]},{"entry":[true,false],"in":1,"bearings":[115,298],"duration":1.906,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":1.812,"geometry_index":15184,"location":[9.602053,47.605416]},{"entry":[true,false],"in":1,"bearings":[114,295],"duration":21.75,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":20.664,"geometry_index":15185,"location":[9.60249,47.605278]},{"entry":[true,false],"in":1,"bearings":[88,271],"duration":2.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.375,"geometry_index":15193,"location":[9.608109,47.604461]},{"entry":[true,false],"in":1,"bearings":[86,268],"duration":7.699,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":7.316,"geometry_index":15194,"location":[9.608771,47.604476]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":32,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":30.398,"geometry_index":15197,"location":[9.610811,47.604604]},{"entry":[true,false],"in":1,"bearings":[104,282],"duration":11.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":11.055,"geometry_index":15208,"location":[9.619288,47.604494]},{"entry":[true,false],"in":1,"bearings":[113,291],"duration":2.332,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.156,"geometry_index":15212,"location":[9.622329,47.603853]},{"entry":[true,false],"in":1,"bearings":[115,293],"duration":26.977,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":24.953,"geometry_index":15213,"location":[9.622901,47.603693]},{"entry":[true,false],"in":1,"bearings":[146,326],"duration":2.762,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.555,"geometry_index":15224,"location":[9.628561,47.600703]},{"entry":[true,false],"in":1,"bearings":[150,326],"duration":20.465,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.93,"geometry_index":15226,"location":[9.628972,47.600285]},{"entry":[true,false],"in":1,"bearings":[141,321],"duration":0.887,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.82,"geometry_index":15234,"location":[9.631755,47.597072]},{"entry":[true,false],"in":1,"bearings":[139,321],"duration":6.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":6.203,"geometry_index":15235,"location":[9.631903,47.59695]},{"entry":[true,false],"in":1,"bearings":[126,310],"duration":25.297,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":23.402,"geometry_index":15238,"location":[9.633222,47.596117]},{"entry":[true,false],"in":1,"bearings":[121,299],"duration":0.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":0.457,"geometry_index":15247,"location":[9.6393,47.594036]},{"entry":[true,false],"in":1,"bearings":[122,301],"duration":5.129,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":4.742,"geometry_index":15248,"location":[9.639413,47.59399]},{"entry":[true,false],"in":1,"bearings":[126,303],"duration":19.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":18.156,"geometry_index":15250,"location":[9.64058,47.593482]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":2.91,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":4,"out":0,"weight":2.695,"geometry_index":15255,"location":[9.644771,47.5913]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":3.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.23,"geometry_index":15256,"location":[9.645344,47.590999]},{"entry":[true,false],"in":1,"bearings":[128,307],"duration":2.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.172,"geometry_index":15257,"location":[9.64603,47.590644]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":3.41,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.137,"geometry_index":15259,"location":[9.646502,47.590393]},{"entry":[true,false],"in":1,"bearings":[128,307],"duration":2.434,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.25,"geometry_index":15260,"location":[9.647188,47.590041]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":44.039,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":40.734,"geometry_index":15261,"location":[9.64769,47.589776]},{"entry":[true,false],"in":1,"bearings":[120,299],"duration":1.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.504,"geometry_index":15272,"location":[9.657755,47.585517]},{"entry":[true,false],"in":1,"bearings":[118,300],"duration":35.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":32.934,"geometry_index":15273,"location":[9.658141,47.585369]},{"entry":[true,false],"in":1,"bearings":[102,283],"duration":1.168,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.078,"geometry_index":15283,"location":[9.666949,47.582836]},{"entry":[true,false],"in":1,"bearings":[101,282],"duration":15.43,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":14.27,"geometry_index":15284,"location":[9.667243,47.582794]},{"entry":[true,false],"in":1,"bearings":[113,291],"duration":4.273,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.062,"geometry_index":15289,"location":[9.671113,47.582141]},{"entry":[true,false],"in":1,"bearings":[115,293],"duration":29.188,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":27.727,"geometry_index":15290,"location":[9.672047,47.58188]},{"entry":[true,false],"in":1,"bearings":[110,294],"duration":4.406,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.188,"geometry_index":15294,"location":[9.678429,47.579908]},{"entry":[true,false],"in":1,"bearings":[108,290],"duration":6.406,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.086,"geometry_index":15295,"location":[9.679456,47.579662]},{"entry":[true,false],"in":1,"bearings":[105,285],"duration":14.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":14.09,"geometry_index":15299,"location":[9.680998,47.579345]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":6.371,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.051,"geometry_index":15303,"location":[9.684464,47.57854]},{"entry":[true,false],"in":1,"bearings":[126,303],"duration":5.656,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.375,"geometry_index":15305,"location":[9.685776,47.578016]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[130,309],"duration":10.859,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":10.316,"geometry_index":15308,"location":[9.686817,47.577468]},{"entry":[true,false],"in":1,"bearings":[120,307],"duration":5.289,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.16,"geometry_index":15310,"location":[9.688739,47.576407]},{"entry":[true,false],"in":1,"bearings":[117,296],"duration":0.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.48,"geometry_index":15313,"location":[9.689876,47.575993]},{"entry":[true,false],"in":1,"bearings":[115,297],"duration":3.23,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.148,"geometry_index":15314,"location":[9.689986,47.575956]},{"entry":[true,false],"in":1,"bearings":[110,293],"duration":1.535,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.496,"geometry_index":15316,"location":[9.690726,47.575734]},{"entry":[true,false],"in":1,"bearings":[108,290],"duration":18.793,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":18.324,"geometry_index":15317,"location":[9.691084,47.575648]},{"entry":[true,false],"in":1,"bearings":[82,265],"duration":4.621,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.504,"geometry_index":15326,"location":[9.695741,47.575298]},{"entry":[true,false],"in":1,"bearings":[81,262],"duration":5.891,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.742,"geometry_index":15327,"location":[9.696872,47.575399]},{"entry":[true,false],"in":1,"bearings":[79,260],"duration":1.309,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.277,"geometry_index":15329,"location":[9.698285,47.575556]},{"entry":[true,false],"in":1,"bearings":[77,259],"duration":23.891,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":22.695,"geometry_index":15330,"location":[9.698596,47.575596]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[84,262],"duration":1.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.527,"geometry_index":15335,"location":[9.704301,47.57641]},{"entry":[true,false],"in":1,"bearings":[88,264],"duration":10.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":10.312,"geometry_index":15336,"location":[9.704684,47.576438]},{"entry":[true,false],"in":1,"bearings":[101,278],"duration":4.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":4.398,"geometry_index":15341,"location":[9.707213,47.576361]},{"entry":[true,false],"in":1,"bearings":[103,283],"duration":1.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.172,"geometry_index":15343,"location":[9.708273,47.576214]},{"entry":[true,false],"in":1,"bearings":[104,283],"duration":2,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.949,"geometry_index":15344,"location":[9.708542,47.576171]},{"entry":[true,false],"in":1,"bearings":[104,284],"duration":1.312,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.281,"geometry_index":15345,"location":[9.708993,47.576095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.709292,47.576044],"geometry_index":15346,"admin_index":5,"weight":7.535,"is_urban":false,"mapbox_streets_v8":{"class":"trunk"},"turn_duration":0.008,"turn_weight":1,"duration":6.711,"bearings":[75,105,284],"out":1,"in":2,"entry":[false,true,false]},{"entry":[true,false,true],"in":1,"bearings":[104,285,300],"duration":2.234,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.172,"geometry_index":15348,"location":[9.710846,47.575758]},{"entry":[true,true,false],"in":2,"bearings":[105,121,284],"duration":7.59,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":7.391,"geometry_index":15349,"location":[9.711344,47.575673]},{"entry":[true,false,false],"in":2,"bearings":[105,265,286],"duration":5.809,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.656,"geometry_index":15351,"location":[9.713131,47.575343]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[105,285],"duration":14.992,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":14.617,"geometry_index":15352,"location":[9.714515,47.575087]},{"entry":[true,false],"in":1,"bearings":[102,285],"duration":1.289,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.258,"geometry_index":15354,"location":[9.718109,47.57444]},{"entry":[true,false],"in":1,"bearings":[102,282],"duration":17.516,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":17.078,"geometry_index":15355,"location":[9.718428,47.574395]},{"entry":[true,false],"in":1,"bearings":[82,265],"duration":6.207,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.055,"geometry_index":15361,"location":[9.722736,47.57415]},{"entry":[true,false],"in":1,"bearings":[73,257],"duration":35.945,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":34.148,"geometry_index":15363,"location":[9.724299,47.574342]},{"entry":[true,false],"in":1,"bearings":[53,230],"duration":6.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.375,"geometry_index":15375,"location":[9.730949,47.577778]},{"entry":[true,false],"in":1,"bearings":[61,237],"duration":2.039,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.938,"geometry_index":15378,"location":[9.732157,47.578339]},{"entry":[true,false],"in":1,"bearings":[64,241],"duration":0.707,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.672,"geometry_index":15379,"location":[9.73251,47.578469]},{"entry":[true,false],"in":1,"bearings":[64,244],"duration":0.492,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.469,"geometry_index":15380,"location":[9.732626,47.578508]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[64,244],"duration":1.906,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.812,"geometry_index":15381,"location":[9.732715,47.578537]},{"entry":[true,true,false],"in":2,"bearings":[67,84,244],"duration":7.793,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":7.395,"geometry_index":15382,"location":[9.733041,47.578645]},{"entry":[true,false,false],"in":1,"bearings":[69,248,344],"duration":0.707,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.664,"geometry_index":15385,"location":[9.734028,47.578922]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[70,249],"duration":0.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.379,"geometry_index":15386,"location":[9.734109,47.578943]},{"entry":[true,false],"in":1,"bearings":[70,250],"duration":2.199,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.09,"geometry_index":15387,"location":[9.734162,47.578956]},{"entry":[true,false],"in":1,"bearings":[70,250],"duration":1.898,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.805,"geometry_index":15389,"location":[9.734433,47.579022]},{"entry":[true,false,true],"in":1,"bearings":[74,250,270],"duration":0.641,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.598,"geometry_index":15390,"location":[9.734666,47.579078]},{"entry":[true,false],"in":1,"bearings":[74,254],"duration":5.816,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.523,"geometry_index":15391,"location":[9.73475,47.579094]},{"bearings":[74,255],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":15393,"location":[9.735553,47.579248]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"München"},{"type":"text","text":"/"},{"type":"text","text":"Memmingen"}],"type":"turn","modifier":"slight right","text":"München / Memmingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"turn","modifier":"slight right","text":"A 96"},"distanceAlongGeometry":82247.945},{"sub":{"components":[{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"München"},{"type":"text","text":"/"},{"type":"text","text":"Memmingen"}],"type":"turn","modifier":"slight right","text":"München / Memmingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"turn","modifier":"slight right","text":"A 96"},"distanceAlongGeometry":402.336}],"destinations":"A 98: Lindau, Friedrichshafen, Stockach","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 98 toward Lindau/Friedrichshafen/Stockach.","modifier":"slight left","bearing_after":156,"bearing_before":157,"location":[8.851464,47.812788]},"speedLimitSign":"vienna","name":"","weight_typical":4236.717,"duration_typical":4489.848,"duration":4489.848,"distance":82247.945,"driving_side":"right","weight":4236.75,"mode":"driving","ref":"E 54","geometry":"gjgezAo_g{ObJgFdHcEdHiEbHoEjGaEnGoEbHmFnGmFjGuFnGkGjGsG|FyGxFcHxFoHrFaIlFiI|DuGvD{GrHmNtE}InEsJdEyJ`E{J|DwJ|DeKlDeKhDyKzDoNhEiPnBkInBwI~B}KtBeLtBiMnBoMdB{LzAiMxAiMlAqMhAaNx@mMr@uMh@gN`@iK\\qKPuMFwMA_T[eW_@wMg@yMq@cNw@{McAwMoAaNyAeNiB_OgB{LqBiMqB}KaCaLkCgLwCiLaDcL_EmMoEoMkIgTsJeTyFaL}EwI_FqIsMoTsLoRaLgReGaLmFcKuFsKcHyNuGuM_HsH}DeLcYwx@_]{~@qIgVkLm\\wjAycDgN{`@w`@qgAwf@ssAea@_kAeb@wmAmgAgyCglAsfDez@g`Cye@{sAkc@{qAuNqc@s`@qpAu\\olAaU}z@aTy|@eTgbAeMip@qI{f@oKmo@iIyl@}Eca@cKc~@uFmn@cEkh@sEcv@wCqo@sCgw@uAkp@cA{s@c@y`Ae@_lB_@mhAw@mu@yAqu@uC_y@_Dcr@gGa_AiIo}@sHmr@kKux@wIyl@{UsuAiPe~@cM}u@cMax@cFe`@qEs]sEkb@oFyk@uFkt@kDij@{Bug@{Ci~@}A}s@[ax@Kaq@d@uu@r@ys@tAcq@pEcbB|KodEjC{hAvA_iAXy{@GkcAm@ukAcBw{@}C{cAkGmvA}Eq{@aJ}iA{QgeBiQc|AgPelAwSivAcWicByQmpAgf@s~Cwd@m~C_Fe\\y[}wBAGsmAieIsXijBqXujBofAihHgWogB{`@{iCq[mwBmFa^}[o~B{K_z@uKo`AiL{gAuJueAwE{k@_Egj@_HsgAsFcgAmDe{@oCu|@uCafAkBmdAaAyy@i@_x@]sw@Ukx@QqaB_@c_Bu@ghB_BeyAuBykAuC_dAqDc`AoEy`AqFw~@oHocAqF}n@wFgm@_CwTiIiw@wRq_B{DsZ}PqrAyFic@}Dg[aByMsJgu@qQmuAuHqm@uEqa@{Eee@{Ci_@oCm`@aCea@eBua@mAu^s@m]q@wb@W{]C{k@Jg\\\\wZl@y\\z@}[bAsZ|Am\\jBi]bC{`@~Fiy@|@_VvIoq@xDiXjE}WxJuk@rJgf@xHw^pIw^vLse@~Lqb@fNqc@hMc`@lG{QzPgf@nIeUbGwOfQsb@va@kbAhb@s_Adf@qfAjYkm@|l@_sAjt@}bB~s@ieBdUyk@vv@eqBdJyUx`A{kCte@}vAhd@auA~b@{tAlb@uuAfWs{@hVk{@`Rwp@hQuo@xTuz@xQes@jHgY|VycAhTo}@~XwlAbXsnAnYcsAzh@_gCrE_TrRw|@`CcLjAyFn[ozAlIea@zC{NpFoWn{AkiHjm@{tCvn@qwCpFoWlYstAn`@ioBtRc}@zPuv@~Qk|@bDaOtJsd@zLal@fMmm@zNgr@zl@grCbg@i_C`Rwz@tQyu@hPaq@nFqTrNoh@dVm{@rSeq@rVws@`U_m@xKaX~LsYnNeZ`^kr@xa@}q@fe@ir@|c@ck@te@kk@dWwY|EuF|y@}_AzTcXbVoYlT_YtTmZnP_Vf`@eo@xM_UbCaEtBkDne@i}@vR{a@~Po`@~Suh@tOqa@hXyu@jWwu@l_@olAr_@qmAba@sqA~Uat@pTio@nMe^dOo`@hPo`@lPg`@rSgd@~Qa_@fOmZfMyU|Tw`@xXce@dXib@jW{_@lXca@@C`Yma@bQkWhPcVj`@}m@~Qo\\xOsZ~DwIxAaDjKgUjGuOxHoSzFkRfH}WnIe_@lByJ|EsXzFy]pCuR~@wGj@gEjBwOnBgRdCm]pAyWx@aWfAsf@l@ag@Ac}AKwn@Fsn@`A{q@nBu^zC}g@xFgn@fHqf@hKwl@xDqSpFuTvH}XxEkNvGsRvD{InH_QpLgY|GkNlNcZpFiKnIiQpHmQ`L_ZbHuSbIqVpGcVlGcWbIo^nSs_A~O}t@xMak@xI}\\bFuRxFiRpFwOnFuNfFcMrFcMfJiSlK{S`HcMnUy_@|c@wo@hP}VzJkOrPuVvi@o{@zTk\\r\\sh@hQiYbE{GzGsHzKoStMo[hH{WxOuz@pIsb@zJw_@`Oec@tPw]`QsYpLmPzY}YzOmLrW}P`MgI`LoHjKaI`L}JnKqKjNgPjLcPbNsUbY}i@vO}Y~OyTtWu]vJqJxBuB|KgKvNaObWcOjE_CjJuCb\\oLrZwIxZoFtLqBzY{EhW}DpUqDpZiFh]mHnR{DvSqFxRkGpRqHhRsIXOjOaI|OkJtOiKbU_NhLqJvJcIhTyShSsSlX_[r|@oeAfMyOlUw^rKkNpOuQh`@ic@pPgOpc@m\\lF{C`LoGtSoGnSqEv[{Bn`@uA`HEvIEbLYnKkF`YmXb[aMjh@qQrS}Jz`@a\\jF_K`DgGf]so@dL{Uza@u{@fu@_yAprAouBx]gn@fTya@nPo[pD}GfEqIjEkInEgIrE_IdEaHjE{GvEeHzE}G`GoId\\i`@fRkSnOqPxHkJjGwIbH_KfFiIvDwG`EuIpBiEjCsGjCiHxC{IlBuGRq@bCqJpCiLfDqOpCsO`CwNlBcNrBiR~AoQfCmb@t@}\\Hyo@o@{k@q@}bAL{[n@aY`Cm`@pC{XrE}XpDeQlDoOrC_KbHiSjKiUpJkQfO_U`d@qm@rb@im@hJiOjHkNfJ{UvFaQhMwf@zJu`@nB_IjCwJdF{PrEkNxHaSpDeIfFiKrUga@~KmS|Pm[jGiNdGqQ|F}VnB_Oz@iLj@qMLwOGqNuAok@w@i[s@wXAy`@p@}[fBg[jEmd@~FcZdH_\\bL}]|J_WrL{TbNiUdt@miAz~@{xAvaAw}Atj@}}@lR{Yr`@in@jQ}U|HuIrKgJtFiDvG{DpEqBtEcBzDmA~DeAnCm@fCe@hC_@jHw@jH_@jHIlHJjHb@rZrC@?~PdBr~@dJ@?dd@rEB?hHr@^D|WjCrfC~W~t@|H`RhCfLlBNBvGrAxc@jJrv@pTxVlIl\\xKzUtI|YdKrUhGfKxCvMhBbPfBzNbApTLrQSrQoAzZyElDo@|UeHhWuKfUyMxEaDxEyCvNmKnO}NxOmQfSmWbPeXvNcXtMk[dM{[lKyZlGaTxTgv@jByGrFuRxYidArP{k@nSss@vSqt@nQim@hPck@hZmbAdRul@tI{WhE}LfGeQxOga@lLwXpCaIzGkRdPe^fTsd@vY{h@t]uk@r^ei@hXk^vXy\\~s@ow@`m@gi@xtAueAt{AkeAp{@{o@x\\i\\x\\g^|[ac@v[}e@jOqXlDgHfUmc@jv@khBlb@{lAxNoc@zYmaAjHuXbOyk@|T_gAtAkHrVydBfKew@~Lkw@lBkKnDiTtS}x@hd@yyAtWeu@zWst@xK}YlLoXlEoLrEgLnLaX`H_PnT}d@bU_c@|Sy\\fTiZdY{YfLcJfLkIrNcKfWcMve@iL|KwA~b@qFrMiBlHkAfRcE|M{D~EqBbHsChNqGlKgDxGmE~GuFvKmLjY__@nIqJrQqVtF_JbF{H`JiPzI_PzHgPfLkY~Qsg@zAeF|Rwq@rMan@dD}TxCqRfCsSdB_SxAuTfAqVt@iYn@uq@CmWIe\\\\oOx@mZxAaZrAkRtB}VlEe[fFiYzFyV~GwVrFuPvGqQbGaNhKmUhSm`@bPsXjPyVhTy[zR{Wxy@iiAh\\uh@zMiWzIuSxUmq@z\\uhApScn@jc@yeAjGoNzTwd@|Uuc@pb@qr@hMwPnMkOzOsOlQuNb\\mSdi@oXxKqH`QkMrQoPbJoKtDcFtDcFnGaKfEiH|F{KdKaTrC_GrGqQbCqIdI{]tEeVdByLpAoJhCkVn@sFt@mG|Dw`@fBuQb@qFJmAb@cFzEwh@fCgUjBoPP}A~@aGlAaIzA}I@GN}@xA}I|CeRBSdE_TdJoa@rGyZ~BmK~BiKpJm`@t@sC|E{QbLw`@vO}g@`EwMdXk|@lHiUjVur@nQs`@pTi\\bc@gj@pNwQdFkH|S}\\xOkYdNgYhLaYt`@seAvi@waB~I}ZxIw\\jMkk@zJ_h@`U{rAb\\yxBrFa`@pKeu@PmAxFw[x@oEbKwf@bMyj@~f@csB~TceApDiRjO__AvCwUzDm\\xEef@nFsw@tB}Z~NqkCh@sJh@oKVmGjGqxApAii@\\uW@aXEoVWaTs@wYmAwZwAeVGy@sAqPaCcTwAiL_AqGuEoWMm@{BwL}J}b@uBgIkEuOkBkGgDmKsB}F}@eCwB_G{B_GyBmF}BgF_GoMcCcFeCcFgC{EkCsEyEcIaFsHaFsHiFcHuFiHyBqC}BiCoMgNyM}LgX_UsK_JcKeJuKwKkKkLkGkIcGuIaCcEsAwBo@iAe@y@_DwF_EoHgGqMuFaNsGkQ_GyQqGiW}BiKuBmKiD}SiAkIcAoIcByPsA}P{@cP[}GUcG[}NOoICqIDcOLeNZqN`@qNd@sJl@kJr@iJx@gJbAgJdAgJjAeJpA{IpCoPpEuSfF}R`CeIfC}HzGsR~C}H`DqHfDqHhDiHvIkQ~ImQdOyYjO{YtKoTpKuT~FyMnFsM~FwPxA{ElDuLpA_FnAaFtCaMjCmMlB}J|AaK|AiKrAkKjAqK~@qMRoC`AoNPmD^{GTqG\\qJVkNPsOL_PCyDEgHm@oVYwFkAaVwCw`@gC{Tq@sGaAyGwAaI?AuCgPcB{HkCaKeC{JWeAsC}KeFsPwHmRq@eBgLyU}CgG{P_]cQo\\kCcFqPw[gMyXiNo^kK}[kI_\\mF_U_UafAkJih@_BmImAoGwRmeAuDcRaBoI_CsMyA_ImEcSqEmJuPoRoOiKeM{HsPuJiEqCsF_EsF{EkHaIkIwLkH{NoFcOsEsQkDkTkBuSsEku@{Ow`CcEmh@wEyj@aFad@wGod@_J}f@oJqb@eK{_@sM{a@uL_\\ij@stAwMi^oKcZgLm]wJq^{Jgg@sHsi@kFyf@sRycCoAwNoG_s@eCoReCwOgDsQmE{R_FgRsLy^wLsZuLqTyIcO{GqKmf@{r@sp@w~@mVwc@eSgg@}Pig@oKec@aIec@}CmUaGyl@cBs\\yAe]y@m]]mc@bA}yAvHoeCzBai@bMobCzJ_uAlL}pAnZalClE{\\nYcmB`Z{cBnZ}yAf]{yAhr@}gCvUkv@zY{v@rJaUrQg_@zSq`@~W}a@za@ek@znAusA`UcU`IiHpKsJny@_{@b[i\\dQsQtq@qu@fGwIpQmWhLiTvAmC~Ni_@zSuv@hIub@xE__@jD}^pCal@`Bgj@lAyb@pKetBrJyi@rLqi@`Vqx@hx@wyBve@esAbOah@rg@a}A`AmDvNwg@dPmr@vOaw@dIqe@bIse@dNmaA^gEp@gIEm[BwGxAyXdBuMtAaXrAgm@xAwkAMg|AcBgu@yBsVaDkTuIyf@wNym@gQqo@wOem@yEoVcGia@{Eoc@eB{TsA}So@sUk@{SUsSAaVJuQfA_l@lAwXnBkWnCkWbE_YdBsJ`AqF~E_MpE_TrFcT`GmTpFgRjGyPN_@pI}StQm`@rEiJrFaJfEaHfYia@~FwI|JqLjNgOhIyH|OeN~ScQ`h@_b@tEuD~DeEvc@kZjkAaq@ns@a`@z~@ke@bC{AtA}@fGoBxFiCba@oWjf@yWbMkIfz@kl@~NmPdQgObPkNfl@al@tVqXfX}\\vu@igAncAwcBjLaSrVo`@dg@iu@nc@wi@jNqO`f@ic@lVmV|OaMru@{f@~n@k]nb@yS`W_Kjf@yV|P}Jdq@od@`XySda@m^~d@ae@tL}QtI}Jxc@on@tiAi_BnmFklIvl@i~@`h@a{@~Qi[dIgQnHqQlFgO`Nwa@xAqFfHyXnEmRhEqR~PqbAhXyeBfFob@|Ce[nMi_Ap\\a`CzFma@tRmsArKkv@fDqUfIam@~Wi_BjGo^`Omt@zRew@zKi\\zOid@tLy\\jOw]`Rqh@vHsUf\\s|@j_@_dA|AgE|D{LbSqm@~Kk^hPod@tq@}lBdcAsrC~`@ggA~Rmh@hGoOl}@a{BnC{Gz}@uyB`Tqg@pTgh@bT{d@rWqh@bYcj@b\\ol@h\\cj@|d@kt@|Ui]d_@gh@pJmM|IwLf`@}g@t[c`@ha@_g@hc@{i@~I}KpjBu}BnLyNn_@ye@h_@yi@l_AezAhx@obBxa@ynAnWibAbHg]|Gca@zJ}v@tDqb@pBiWlA{UpAg]tAqp@Jck@a@mk@QkVuBqv@kAwX_BuZeCka@sFs`AkEqz@sCsb@uBidAU{YPud@f@o`@bAe_@zAy^lAmUvCc`@rB{TpBqUbJiq@jGi`@pIyc@`Lmf@zMmf@fMqb@zWkx@f\\i`A|Zo_AtKa`@lLud@rGiZjJ_e@nHce@tGeg@xHy{@fEir@bB_u@bAwk@D_W]kh@}@ol@sAsb@mBkm@sBkm@aCql@cB{r@eAuf@Yyp@Aar@Lah@xAep@jCwu@~Dgr@bFep@fG}q@jIkr@pHii@zJml@~Hwb@fPgu@z@iDtNqk@lL_`@lL_]jQgd@dSqb@xW{e@jVc^nY{^|J}JfGcGzPqPzXqU~ZaUde@c\\bf@w\\dZ_W|UcVzLgOrDaFrFgHbNkRvOeZdS{b@tQ}d@`N}d@~Jyb@pK{h@bUgkAzIed@|O_s@nI_^hJ{\\zAaFlMaa@hP{e@~Reg@`i@apAf[ku@vSaf@hXgn@xQyb@dU{i@dAcCnLkX~T{i@pOk^d@iAxRaf@nWkp@`Wkp@z[s~@va@gnA|[qgAhZyeAvPen@bXoaAz`@_xAfHcWhL{c@hVq}@ha@wzAnRez@tNos@|Hcd@dJak@lHoh@nJsz@bIi`ArAkQpMglB|Emj@lGwi@|DmZ|C_RhOky@vXarAxZowA`b@opBra@ypBjNe_A|@yGnEc\\`E_]hDm[rMypApHml@tJyk@lMqk@hK}a@lSan@hMe\\|LaX~DyIx{@}kBnDeJxBqHzH_XdKoc@hA{ElFgVlE_VjDkUzCwTfD_[lDya@vCwf@pAma@p@y`@Jcc@e@kb@w@_ZiEueAkCmi@mD{l@oAmRgHe{@kHk_AwU_rCyDio@uBuc@w@}V[_^Fse@`@__@fAc`@bAiVfCg`@|C_`@tAyOvCe[dBuQnN}rAjAeLhDc^bIuv@nI_w@~NouA|VufCnO}wAxA}RdGww@fDiq@zB_p@By|@Q_Xq@kYuCip@iFko@qGoh@aFiZsKqg@eMyd@qQge@iJgTyLgV}c@wr@_i@wv@gW_b@{Oa[qGcNeJcU_IeT{Le_@cGaUmAgFy@qDwEkScNot@y@sEKq@i@aDYiB}@{FeAaHoBqM_@gDqCcVaDaZe@gE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 99 miles.","announcement":"Continue for 99 miles.","distanceAlongGeometry":159381.891},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 96.","announcement":"In 1 mile, Keep left to stay on A 96.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 96.","announcement":"In a half mile, Keep left to stay on A 96.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 96, E 54 toward München-Zentrum, Salzburg.","announcement":"Keep left to stay on A 96, E 54 toward München-Zentrum, Salzburg.","distanceAlongGeometry":255.556}],"intersections":[{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[9.735653,47.579267],"geometry_index":15394,"admin_index":5,"weight":10.199,"is_urban":false,"mapbox_streets_v8":{"class":"trunk_link"},"turn_duration":0.045,"turn_weight":4.5,"duration":6.047,"bearings":[76,102,254],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,false,false],"in":1,"bearings":[154,297,355],"duration":2.605,"turn_weight":0.75,"turn_duration":0.077,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":5,"out":0,"weight":3.152,"geometry_index":15398,"location":[9.73621,47.579129]},{"entry":[true,false,true],"in":1,"bearings":[171,333,358],"duration":6.32,"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":5,"out":0,"weight":5.984,"geometry_index":15400,"location":[9.736368,47.578917]},{"entry":[false,true],"in":0,"bearings":[11,196],"duration":4.32,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":5,"out":1,"weight":4.105,"geometry_index":15406,"location":[9.736368,47.578294]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[9.736126,47.577897],"geometry_index":15410,"admin_index":5,"weight":12.051,"is_urban":false,"turn_weight":1.125,"duration":11.555,"bearings":[28,208,239],"out":2,"in":0,"turn_duration":0.055,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.735035,47.57824],"geometry_index":15420,"admin_index":5,"weight":7.855,"is_urban":false,"turn_weight":6.75,"duration":1.199,"bearings":[6,162,184],"out":0,"in":1,"turn_duration":0.035,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":6.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.113,"geometry_index":15421,"location":[9.735081,47.578527]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":32.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":31.055,"geometry_index":15424,"location":[9.735395,47.580099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,354],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.711,"geometry_index":15433,"location":[9.736243,47.588131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.699,"geometry_index":15434,"location":[9.736171,47.588595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,349],"duration":6.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.336,"geometry_index":15437,"location":[9.735849,47.590108]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.735314,47.591766],"geometry_index":15440,"admin_index":5,"weight":7.945,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.383,"bearings":[166,345,353],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.734417,47.593803],"geometry_index":15443,"admin_index":5,"weight":6.656,"is_urban":false,"turn_weight":1,"duration":6.137,"bearings":[156,163,342],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,343],"duration":10.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.73,"geometry_index":15444,"location":[9.733709,47.595304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.41,"geometry_index":15450,"location":[9.732716,47.597926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,353],"duration":21.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.012,"geometry_index":15451,"location":[9.73261,47.598316]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":3.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.977,"geometry_index":15458,"location":[9.732512,47.603857]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":88.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":79.773,"geometry_index":15459,"location":[9.732641,47.604691]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":4.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.402,"geometry_index":15478,"location":[9.740191,47.626856]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.740352,47.628108],"geometry_index":15482,"admin_index":4,"weight":2.043,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.293,"bearings":[2,21,184],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":0.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.125,"geometry_index":15484,"location":[9.740387,47.62869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,182],"duration":16.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.629,"geometry_index":15485,"location":[9.740389,47.628723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,188],"duration":27.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.598,"geometry_index":15490,"location":[9.740708,47.632891]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,208],"duration":25.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.531,"geometry_index":15500,"location":[9.744827,47.640539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.836,"geometry_index":15507,"location":[9.750622,47.64591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.426,"geometry_index":15510,"location":[9.75238,47.647059]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":20.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.836,"geometry_index":15511,"location":[9.752823,47.647336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":51.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.453,"geometry_index":15517,"location":[9.758768,47.650621]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":2.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.316,"geometry_index":15526,"location":[9.772935,47.659845]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":58.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.379,"geometry_index":15527,"location":[9.773516,47.660372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":19.188,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.75,"geometry_index":15544,"location":[9.783563,47.67377]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":6.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.883,"geometry_index":15549,"location":[9.784531,47.678654]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.784763,47.680278],"geometry_index":15550,"admin_index":4,"weight":11.316,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.242,"bearings":[7,18,185],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.785456,47.68339],"geometry_index":15556,"admin_index":4,"weight":6.402,"is_urban":false,"turn_weight":1,"duration":5.848,"bearings":[13,182,191],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,195],"duration":49.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.707,"geometry_index":15561,"location":[9.786004,47.684888]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":13.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.504,"geometry_index":15574,"location":[9.793897,47.696786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,205],"duration":14.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.512,"geometry_index":15577,"location":[9.795874,47.700097]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":4.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.309,"geometry_index":15582,"location":[9.798828,47.70332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.812,"geometry_index":15584,"location":[9.799925,47.704246]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,225],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.391,"geometry_index":15588,"location":[9.801539,47.705414]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.801654,47.70549],"geometry_index":15589,"admin_index":4,"weight":6.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.684,"bearings":[46,59,226],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.803506,47.70662],"geometry_index":15592,"admin_index":4,"weight":6.898,"is_urban":false,"turn_weight":1,"duration":6.383,"bearings":[50,221,229],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,233],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.371,"geometry_index":15595,"location":[9.805292,47.707555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,242],"duration":19.855,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.352,"geometry_index":15601,"location":[9.808686,47.70897]},{"tunnel_name":"Herfatz","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[78,256],"duration":16.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.035,"geometry_index":15607,"location":[9.815264,47.71067]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":3.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.676,"geometry_index":15612,"location":[9.821005,47.711424]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":13.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.355,"geometry_index":15613,"location":[9.822401,47.711588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.648,"geometry_index":15617,"location":[9.827226,47.712344]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":22.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.789,"geometry_index":15618,"location":[9.827869,47.712489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.383,"geometry_index":15626,"location":[9.835484,47.715123]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,238],"duration":24.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.711,"geometry_index":15627,"location":[9.835975,47.715332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,246],"duration":4.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.188,"geometry_index":15631,"location":[9.843896,47.718336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,250],"duration":52.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.438,"geometry_index":15632,"location":[9.845554,47.718741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,239],"duration":13.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.473,"geometry_index":15650,"location":[9.865391,47.722044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":6.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.203,"geometry_index":15657,"location":[9.869704,47.72427]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.871611,47.72556],"geometry_index":15660,"admin_index":4,"weight":6.062,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.742,"bearings":[42,61,223],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.873268,47.726845],"geometry_index":15662,"admin_index":4,"weight":2.395,"is_urban":false,"turn_weight":1,"duration":1.57,"bearings":[39,213,221],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.289,"geometry_index":15663,"location":[9.87363,47.727146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":20.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.234,"geometry_index":15664,"location":[9.874774,47.728079]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":16.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.738,"geometry_index":15669,"location":[9.879945,47.731886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":7.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.895,"geometry_index":15673,"location":[9.884603,47.73463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,230],"duration":5.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.891,"geometry_index":15674,"location":[9.88683,47.735884]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,227],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.543,"geometry_index":15675,"location":[9.888335,47.736821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.961,"geometry_index":15676,"location":[9.888807,47.737125]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,224],"duration":2.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.031,"geometry_index":15677,"location":[9.890823,47.738522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":56.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.27,"geometry_index":15678,"location":[9.89137,47.738958]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":6.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.844,"geometry_index":15690,"location":[9.904436,47.750472]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":0.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":15693,"location":[9.905834,47.751776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.905898,47.75184],"geometry_index":15694,"admin_index":4,"weight":6.207,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.719,"bearings":[34,214],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.582,"geometry_index":15696,"location":[9.907275,47.7533]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":7.402,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.828,"geometry_index":15697,"location":[9.907402,47.753438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":83.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":74.965,"geometry_index":15699,"location":[9.908504,47.754711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":2.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.285,"geometry_index":15709,"location":[9.924389,47.767365]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":52.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.184,"geometry_index":15710,"location":[9.925079,47.767838]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[72,250],"duration":1.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.512,"geometry_index":15721,"location":[9.940766,47.776022]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":49.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.574,"geometry_index":15722,"location":[9.94138,47.776159]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,229],"duration":22.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.398,"geometry_index":15732,"location":[9.958166,47.781806]},{"tunnel_name":"Grünbrücke Buchwald","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[28,209],"duration":2.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.906,"geometry_index":15737,"location":[9.963339,47.786255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":39.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.922,"geometry_index":15738,"location":[9.963715,47.786725]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,228],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.746,"geometry_index":15747,"location":[9.971198,47.795514]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,231],"duration":33.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.488,"geometry_index":15748,"location":[9.971778,47.795824]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,227],"duration":53.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.707,"geometry_index":15760,"location":[9.98267,47.800787]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":6.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.121,"geometry_index":15776,"location":[9.990691,47.813248]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.990925,47.814973],"geometry_index":15779,"admin_index":4,"weight":7.902,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.551,"bearings":[5,15,185],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.991186,47.817143],"geometry_index":15784,"admin_index":4,"weight":6.172,"is_urban":false,"turn_weight":1,"duration":5.613,"bearings":[3,179,184],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":7.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.789,"geometry_index":15786,"location":[9.991321,47.818578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":40.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.883,"geometry_index":15788,"location":[9.991465,47.82046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":6.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.945,"geometry_index":15795,"location":[9.991602,47.830974]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.991518,47.832585],"geometry_index":15797,"admin_index":4,"weight":7.68,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.09,"bearings":[11,178,357],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.991371,47.834642],"geometry_index":15800,"admin_index":4,"weight":6.027,"is_urban":false,"turn_weight":0.5,"duration":5.996,"bearings":[170,177,356],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,357],"duration":65.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":60.457,"geometry_index":15801,"location":[9.991225,47.836178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,224],"duration":29.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.266,"geometry_index":15816,"location":[9.995637,47.852041]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,220],"duration":22.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.668,"geometry_index":15823,"location":[10.004038,47.856962]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":5.859,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.254,"geometry_index":15831,"location":[10.008724,47.86195]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,221],"duration":1.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.496,"geometry_index":15833,"location":[10.010159,47.863104]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,225],"duration":10.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.215,"geometry_index":15834,"location":[10.010612,47.863409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":4.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.867,"geometry_index":15837,"location":[10.013678,47.865049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":80.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":72.328,"geometry_index":15838,"location":[10.015059,47.865647]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":6.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.555,"geometry_index":15864,"location":[10.037309,47.880051]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.038393,47.881493],"geometry_index":15867,"admin_index":4,"weight":9.465,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.535,"bearings":[26,37,205],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,205],"duration":1.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.277,"geometry_index":15870,"location":[10.040078,47.883915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,204],"duration":12.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.883,"geometry_index":15871,"location":[10.040306,47.884254]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.04224,47.887078],"geometry_index":15875,"admin_index":4,"weight":7.23,"is_urban":false,"turn_weight":1,"duration":6.945,"bearings":[24,199,205],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":19.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.258,"geometry_index":15878,"location":[10.04336,47.888707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,214],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.246,"geometry_index":15882,"location":[10.046807,47.893103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,218],"duration":135.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":122.031,"geometry_index":15883,"location":[10.047137,47.893391]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":3.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.711,"geometry_index":15924,"location":[10.078475,47.921321]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":49.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.125,"geometry_index":15925,"location":[10.079317,47.921858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,222],"duration":1.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.992,"geometry_index":15934,"location":[10.093084,47.930798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,222],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.16,"geometry_index":15935,"location":[10.093363,47.931007]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,221],"duration":6.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.98,"geometry_index":15936,"location":[10.093409,47.931042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.09491,47.932361],"geometry_index":15940,"admin_index":4,"weight":7.281,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.891,"bearings":[34,215],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.0965,47.934057],"geometry_index":15942,"admin_index":4,"weight":6.375,"is_urban":false,"turn_weight":1,"duration":5.84,"bearings":[26,203,211],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,205],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.156,"geometry_index":15945,"location":[10.097457,47.935378]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,197],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.066,"geometry_index":15949,"location":[10.098482,47.937205]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,197],"duration":11.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.508,"geometry_index":15950,"location":[10.098611,47.937485]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":15954,"location":[10.099718,47.940307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.996,"geometry_index":15955,"location":[10.099843,47.940606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":3.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.234,"geometry_index":15956,"location":[10.100071,47.941151]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,199],"duration":3.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.234,"geometry_index":15958,"location":[10.100496,47.942016]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.93,"geometry_index":15959,"location":[10.100989,47.942857]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":74.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":67.012,"geometry_index":15960,"location":[10.101134,47.9431]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":0.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.879,"geometry_index":15976,"location":[10.11051,47.961302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":29.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":26.363,"geometry_index":15977,"location":[10.110676,47.961529]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":7.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.148,"geometry_index":15979,"location":[10.115609,47.968216]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.116937,47.97003],"geometry_index":15980,"admin_index":5,"weight":7.371,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.441,"bearings":[26,44,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.118368,47.971976],"geometry_index":15982,"admin_index":5,"weight":7.516,"is_urban":false,"turn_weight":1,"duration":7.465,"bearings":[26,186,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":0.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.742,"geometry_index":15983,"location":[10.119627,47.973674]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.895,"geometry_index":15984,"location":[10.119771,47.973868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,206],"duration":30.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":27.039,"geometry_index":15985,"location":[10.119943,47.974099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":7.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.578,"geometry_index":15991,"location":[10.125563,47.98091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":12.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.969,"geometry_index":15992,"location":[10.127101,47.982437]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.781,"geometry_index":15996,"location":[10.130024,47.985044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":1.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.391,"geometry_index":15997,"location":[10.130667,47.985575]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":8.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.758,"geometry_index":15998,"location":[10.130988,47.985841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":2.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.742,"geometry_index":16001,"location":[10.132861,47.987271]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,223],"duration":3.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.23,"geometry_index":16002,"location":[10.13352,47.987751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,223],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.539,"geometry_index":16004,"location":[10.134315,47.98831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":7.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.746,"geometry_index":16005,"location":[10.134434,47.988385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":9.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.574,"geometry_index":16007,"location":[10.135836,47.98927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,227],"duration":29.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.625,"geometry_index":16009,"location":[10.137475,47.990306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":3.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.703,"geometry_index":16012,"location":[10.142507,47.992886]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":7.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.445,"geometry_index":16013,"location":[10.143146,47.993182]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.144528,47.993765],"geometry_index":16015,"admin_index":5,"weight":1.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.43,"bearings":[58,71,239],"out":1,"in":2,"turn_duration":0.014,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,251],"duration":0.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":16016,"location":[10.144828,47.993835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,246],"duration":6.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.137,"geometry_index":16017,"location":[10.144988,47.993883]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,244],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.355,"geometry_index":16020,"location":[10.146239,47.994294]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.146527,47.994379],"geometry_index":16021,"admin_index":5,"weight":12.238,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.262,"bearings":[64,75,246],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.149281,47.995462],"geometry_index":16025,"admin_index":5,"weight":8.379,"is_urban":false,"turn_weight":1,"duration":7.387,"bearings":[60,225,238],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,245],"duration":5.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.211,"geometry_index":16029,"location":[10.151238,47.99613]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.152644,47.996515],"geometry_index":16031,"admin_index":5,"weight":6.559,"is_urban":false,"turn_weight":1,"duration":5.43,"bearings":[68,239,248],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.582,"geometry_index":16034,"location":[10.15425,47.996927]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":7.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.895,"geometry_index":16035,"location":[10.154708,47.997042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.157059,47.99756],"geometry_index":16038,"admin_index":5,"weight":6.914,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.594,"bearings":[74,92,253],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[76,238,254],"duration":1.238,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.293,"geometry_index":16041,"location":[10.159134,47.997958]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":10.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.242,"geometry_index":16042,"location":[10.15947,47.998015]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,258],"duration":12.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.254,"geometry_index":16046,"location":[10.162433,47.998453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.555,"geometry_index":16051,"location":[10.166049,47.998835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":31.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":31.949,"geometry_index":16052,"location":[10.16648,47.998872]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":28.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.16,"geometry_index":16065,"location":[10.175302,47.999061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":32.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":33.586,"geometry_index":16069,"location":[10.182937,47.99886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,272],"duration":5.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.012,"geometry_index":16070,"location":[10.19136,47.99865]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.883,"geometry_index":16072,"location":[10.193129,47.998606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":1.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.801,"geometry_index":16073,"location":[10.193428,47.998599]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":5.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.688,"geometry_index":16074,"location":[10.193951,47.998585]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,273],"duration":5.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.844,"geometry_index":16079,"location":[10.196439,47.998522]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.19899,47.99846],"geometry_index":16081,"admin_index":5,"weight":6.492,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.5,"bearings":[93,113,272],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,269],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.141,"geometry_index":16085,"location":[10.201462,47.998428]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,268],"duration":11.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.52,"geometry_index":16086,"location":[10.201905,47.998439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,267],"duration":6.605,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.594,"geometry_index":16095,"location":[10.20619,47.998609]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,275],"duration":13.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.137,"geometry_index":16100,"location":[10.208668,47.998542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,276],"duration":53.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":50.934,"geometry_index":16109,"location":[10.213695,47.998111]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":6.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.336,"geometry_index":16137,"location":[10.23255,48.002923]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.234793,48.003839],"geometry_index":16138,"admin_index":5,"weight":12.047,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.406,"bearings":[58,72,239],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.239122,48.0057],"geometry_index":16141,"admin_index":5,"weight":6.516,"is_urban":false,"turn_weight":1,"duration":6.145,"bearings":[56,222,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":36.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":32.898,"geometry_index":16143,"location":[10.241097,48.00658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.383,"geometry_index":16156,"location":[10.25178,48.012711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":31.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.367,"geometry_index":16157,"location":[10.25213,48.013026]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,249],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.27,"geometry_index":16171,"location":[10.261536,48.018251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,250],"duration":26.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.23,"geometry_index":16172,"location":[10.26204,48.018372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.281,"geometry_index":16179,"location":[10.271999,48.02002]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.274588,48.020427],"geometry_index":16181,"admin_index":5,"weight":4.848,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.25,"bearings":[77,101,256],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.276549,48.020746],"geometry_index":16183,"admin_index":5,"weight":2.016,"is_urban":false,"turn_weight":1,"duration":1.105,"bearings":[76,235,255],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,256],"duration":5.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.359,"geometry_index":16185,"location":[10.276964,48.020815]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":38.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":34.312,"geometry_index":16187,"location":[10.279163,48.021177]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,266],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.203,"geometry_index":16204,"location":[10.293172,48.024438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,268],"duration":78.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":70.809,"geometry_index":16205,"location":[10.293691,48.024449]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,259],"duration":4.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.398,"geometry_index":16227,"location":[10.323329,48.02764]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,260],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.488,"geometry_index":16228,"location":[10.325124,48.02786]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,258],"duration":2.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.891,"geometry_index":16229,"location":[10.325325,48.027889]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.326103,48.027987],"geometry_index":16230,"admin_index":5,"weight":5.473,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.938,"bearings":[78,101,259],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.328285,48.028272],"geometry_index":16233,"admin_index":5,"weight":6.238,"is_urban":false,"turn_weight":1,"duration":5.668,"bearings":[79,246,259],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,257],"duration":17.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.102,"geometry_index":16235,"location":[10.330415,48.028582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,254],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.371,"geometry_index":16239,"location":[10.33688,48.029727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.859,"geometry_index":16240,"location":[10.337419,48.029839]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.688,"geometry_index":16241,"location":[10.338148,48.029994]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":41.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.312,"geometry_index":16242,"location":[10.338417,48.030052]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":8.508,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.863,"geometry_index":16248,"location":[10.353198,48.033402]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":25.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.832,"geometry_index":16249,"location":[10.356145,48.034003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":10.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.887,"geometry_index":16250,"location":[10.363838,48.035572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,253],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.727,"geometry_index":16251,"location":[10.366862,48.036183]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":5.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.281,"geometry_index":16252,"location":[10.367685,48.036345]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":10.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.199,"geometry_index":16254,"location":[10.369792,48.036738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,261],"duration":4.703,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.105,"geometry_index":16260,"location":[10.373638,48.037253]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":10.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.57,"geometry_index":16262,"location":[10.375007,48.03737]},{"tunnel_name":"Kohlbergtunnel","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[90,267],"duration":27.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.125,"geometry_index":16265,"location":[10.378216,48.037522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":92.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":80.672,"geometry_index":16269,"location":[10.386341,48.037327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,278],"duration":8.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.586,"geometry_index":16297,"location":[10.414033,48.03411]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.4166,48.033947],"geometry_index":16301,"admin_index":5,"weight":13.445,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.961,"bearings":[94,106,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.42105,48.033709],"geometry_index":16303,"admin_index":5,"weight":8.238,"is_urban":false,"turn_weight":1,"duration":8.062,"bearings":[94,267,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":52.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":48.715,"geometry_index":16305,"location":[10.423471,48.033577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,274],"duration":6.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.332,"geometry_index":16308,"location":[10.439334,48.032725]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.441402,48.032612],"geometry_index":16310,"admin_index":5,"weight":7.922,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.82,"bearings":[94,106,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.444048,48.032467],"geometry_index":16312,"admin_index":5,"weight":3.48,"is_urban":false,"turn_weight":1,"duration":2.773,"bearings":[94,269,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.621,"geometry_index":16314,"location":[10.444877,48.032425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":2.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.672,"geometry_index":16315,"location":[10.445439,48.032396]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,274],"duration":18.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.77,"geometry_index":16316,"location":[10.446442,48.032346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,276],"duration":3.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.277,"geometry_index":16319,"location":[10.452746,48.031966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,278],"duration":117.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":105.316,"geometry_index":16320,"location":[10.453969,48.031852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.566,"geometry_index":16348,"location":[10.49107,48.026295]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":46.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":42.949,"geometry_index":16349,"location":[10.491675,48.0264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":7.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.328,"geometry_index":16351,"location":[10.508107,48.029267]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.510848,48.029711],"geometry_index":16353,"admin_index":5,"weight":8.758,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.238,"bearings":[78,92,257],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.514152,48.03018],"geometry_index":16355,"admin_index":5,"weight":6.828,"is_urban":false,"turn_weight":1,"duration":6.309,"bearings":[79,246,258],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.77,"geometry_index":16357,"location":[10.51637,48.030454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,261],"duration":261.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":241.566,"geometry_index":16360,"location":[10.519342,48.030779]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,268],"duration":6.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.961,"geometry_index":16411,"location":[10.61816,48.041065]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.620679,48.041085],"geometry_index":16414,"admin_index":5,"weight":5.801,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.277,"bearings":[90,103,270],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.622945,48.041057],"geometry_index":16416,"admin_index":5,"weight":5.551,"is_urban":false,"turn_weight":1,"duration":4.926,"bearings":[92,260,272],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,273],"duration":42.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":39.695,"geometry_index":16418,"location":[10.624802,48.040996]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,292],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.613,"geometry_index":16436,"location":[10.64052,48.038683]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,293],"duration":9.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.051,"geometry_index":16437,"location":[10.640751,48.038619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,294],"duration":2.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.609,"geometry_index":16439,"location":[10.644198,48.037601]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,294],"duration":12.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.418,"geometry_index":16440,"location":[10.645215,48.037298]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.016,"geometry_index":16443,"location":[10.649599,48.035864]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":47.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":42.875,"geometry_index":16444,"location":[10.64998,48.035736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,292],"duration":6.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.664,"geometry_index":16457,"location":[10.66634,48.030262]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.668611,48.029707],"geometry_index":16460,"admin_index":5,"weight":13.379,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.883,"bearings":[108,120,290],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.673956,48.028603],"geometry_index":16464,"admin_index":5,"weight":5.719,"is_urban":false,"turn_weight":1,"duration":5.25,"bearings":[106,279,286],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,286],"duration":27.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.039,"geometry_index":16465,"location":[10.675891,48.028239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,288],"duration":0.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.715,"geometry_index":16469,"location":[10.686145,48.026206]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,289],"duration":41.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.715,"geometry_index":16470,"location":[10.686434,48.02614]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,270],"duration":6.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.754,"geometry_index":16482,"location":[10.701911,48.023442]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.704287,48.023583],"geometry_index":16487,"admin_index":5,"weight":5.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.316,"bearings":[81,94,262],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.706616,48.02391],"geometry_index":16491,"admin_index":5,"weight":6.113,"is_urban":false,"turn_weight":1,"duration":5.402,"bearings":[75,234,256],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,251],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.012,"geometry_index":16495,"location":[10.708508,48.024315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":2.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.438,"geometry_index":16496,"location":[10.709256,48.024516]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":2.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.93,"geometry_index":16498,"location":[10.71015,48.024769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":2.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.184,"geometry_index":16499,"location":[10.710854,48.024965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,247],"duration":28.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":27.344,"geometry_index":16500,"location":[10.71168,48.025197]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,270],"duration":5.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.715,"geometry_index":16511,"location":[10.722481,48.02606]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.724773,48.026182],"geometry_index":16515,"admin_index":5,"weight":5.246,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.402,"bearings":[81,92,263],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.891,"geometry_index":16519,"location":[10.726801,48.026451]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":8.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.852,"geometry_index":16520,"location":[10.727527,48.026588]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.730241,48.027291],"geometry_index":16524,"admin_index":5,"weight":6.234,"is_urban":false,"turn_weight":0.75,"duration":5.645,"bearings":[65,229,246],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.293,"geometry_index":16529,"location":[10.732016,48.027927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":5.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.547,"geometry_index":16530,"location":[10.732419,48.028096]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,232],"duration":7.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.352,"geometry_index":16533,"location":[10.734132,48.028934]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":11.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.25,"geometry_index":16537,"location":[10.736232,48.030263]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,226],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.562,"geometry_index":16541,"location":[10.739257,48.032415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,227],"duration":8.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.531,"geometry_index":16542,"location":[10.739717,48.032705]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":6.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.867,"geometry_index":16546,"location":[10.742368,48.034117]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.744404,48.034953],"geometry_index":16549,"admin_index":5,"weight":6.156,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.664,"bearings":[63,73,240],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.74662,48.035666],"geometry_index":16553,"admin_index":5,"weight":5.879,"is_urban":false,"turn_weight":1,"duration":5.285,"bearings":[69,239,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,251],"duration":72.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":65.633,"geometry_index":16556,"location":[10.748488,48.036129]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.859,"geometry_index":16584,"location":[10.775184,48.039881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,272],"duration":32.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.383,"geometry_index":16585,"location":[10.77554,48.039873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.07,"geometry_index":16595,"location":[10.787625,48.040873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":22.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.434,"geometry_index":16596,"location":[10.788033,48.040978]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.008,"geometry_index":16606,"location":[10.796293,48.042329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,266],"duration":60.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":53.152,"geometry_index":16607,"location":[10.796727,48.04235]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[96,278],"duration":0.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.418,"geometry_index":16632,"location":[10.819015,48.045866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,276],"duration":23.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.043,"geometry_index":16633,"location":[10.819183,48.045854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,264],"duration":4.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.969,"geometry_index":16641,"location":[10.827946,48.045539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,259],"duration":9.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.23,"geometry_index":16643,"location":[10.829535,48.045729]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.832733,48.046378],"geometry_index":16647,"admin_index":5,"weight":7.957,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.863,"bearings":[68,83,250],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,241],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.664,"geometry_index":16651,"location":[10.835419,48.047229]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,242],"duration":1.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.312,"geometry_index":16652,"location":[10.835637,48.047308]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,240],"duration":3.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.785,"geometry_index":16653,"location":[10.836118,48.047493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":6.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.73,"geometry_index":16655,"location":[10.83709,48.047932]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.328,"geometry_index":16658,"location":[10.838987,48.04892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,231],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.414,"geometry_index":16659,"location":[10.839096,48.048979]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,227],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.402,"geometry_index":16660,"location":[10.839523,48.049242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":4.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.328,"geometry_index":16661,"location":[10.839838,48.049457]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,223],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.398,"geometry_index":16663,"location":[10.840817,48.050142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.945,"geometry_index":16664,"location":[10.841146,48.050404]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.841368,48.050589],"geometry_index":16665,"admin_index":5,"weight":3.055,"is_urban":false,"turn_weight":0.75,"duration":2.445,"bearings":[39,206,219],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.246,"geometry_index":16667,"location":[10.841914,48.051051]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":6.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.625,"geometry_index":16668,"location":[10.841971,48.051102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,211],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.578,"geometry_index":16672,"location":[10.843322,48.052492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,208],"duration":3.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.832,"geometry_index":16673,"location":[10.84377,48.053063]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,206],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.125,"geometry_index":16674,"location":[10.844396,48.053928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,204],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.023,"geometry_index":16675,"location":[10.844566,48.054188]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.09,"geometry_index":16676,"location":[10.844982,48.054914]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.845962,48.056625],"geometry_index":16678,"admin_index":5,"weight":16.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.266,"bearings":[21,32,201],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.848751,48.060594],"geometry_index":16687,"admin_index":5,"weight":1.832,"is_urban":false,"turn_weight":1,"duration":0.852,"bearings":[32,189,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":6.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.492,"geometry_index":16688,"location":[10.848921,48.060776]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,220],"duration":25.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.34,"geometry_index":16692,"location":[10.850405,48.062099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,252],"duration":6.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.988,"geometry_index":16707,"location":[10.85868,48.06526]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.861256,48.065698],"geometry_index":16711,"admin_index":5,"weight":9.758,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.016,"bearings":[80,94,259],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.864957,48.065982],"geometry_index":16717,"admin_index":5,"weight":8.699,"is_urban":false,"turn_weight":1,"duration":7.906,"bearings":[89,260,268],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,276],"duration":13.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.82,"geometry_index":16722,"location":[10.867837,48.065893]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,289],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.172,"geometry_index":16727,"location":[10.872493,48.065127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[114,290],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.949,"geometry_index":16728,"location":[10.872924,48.065025]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,298],"duration":10.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.855,"geometry_index":16730,"location":[10.875303,48.064234]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,309],"duration":48.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":45.969,"geometry_index":16734,"location":[10.878374,48.062827]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":5.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.527,"geometry_index":16753,"location":[10.897809,48.05701]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.900411,48.05692],"geometry_index":16758,"admin_index":5,"weight":8.137,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.582,"bearings":[90,114,272],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[87,258,267],"duration":6.957,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.602,"geometry_index":16762,"location":[10.903698,48.056982]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,263],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.863,"geometry_index":16766,"location":[10.906308,48.057146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":2.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.121,"geometry_index":16768,"location":[10.907038,48.05722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.328,"geometry_index":16769,"location":[10.907901,48.057319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,261],"duration":168.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":151.715,"geometry_index":16771,"location":[10.909274,48.057467]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,266],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.5,"geometry_index":16811,"location":[10.973117,48.05891]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,262],"duration":72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":63,"geometry_index":16812,"location":[10.973332,48.058929]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,253],"duration":6.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.719,"geometry_index":16828,"location":[10.999113,48.065433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.001567,48.065797],"geometry_index":16832,"admin_index":5,"weight":16.043,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.832,"bearings":[81,99,260],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[95,260,275],"duration":5.383,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.828,"geometry_index":16843,"location":[11.008404,48.065957]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,276],"duration":49.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":44.707,"geometry_index":16845,"location":[11.010473,48.065821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.918,"geometry_index":16862,"location":[11.028099,48.069501]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,231],"duration":39.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":36.82,"geometry_index":16863,"location":[11.028397,48.069662]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[86,245,263],"duration":5.426,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.012,"geometry_index":16882,"location":[11.042336,48.074191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,270],"duration":44.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":41.383,"geometry_index":16886,"location":[11.044417,48.074255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,281],"duration":3.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.688,"geometry_index":16904,"location":[11.060864,48.071163]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,278],"duration":4.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.859,"geometry_index":16907,"location":[11.062376,48.070992]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,273],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.723,"geometry_index":16910,"location":[11.063941,48.070905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":49.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":45.539,"geometry_index":16911,"location":[11.064287,48.070899]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":15.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.625,"geometry_index":16937,"location":[11.085942,48.073346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":5.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.301,"geometry_index":16946,"location":[11.092873,48.074281]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.095334,48.074774],"geometry_index":16949,"admin_index":5,"weight":2.812,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.051,"bearings":[76,87,254],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,257],"duration":0.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.363,"geometry_index":16951,"location":[11.096466,48.074957]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":10.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.758,"geometry_index":16952,"location":[11.096606,48.074977]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.23,"geometry_index":16961,"location":[11.100541,48.075339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,266],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.715,"geometry_index":16962,"location":[11.100638,48.075343]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.101337,48.075364],"geometry_index":16963,"admin_index":5,"weight":7.184,"is_urban":false,"turn_weight":1,"duration":6.695,"bearings":[88,260,267],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,268],"duration":12.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.672,"geometry_index":16966,"location":[11.103786,48.07541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,256],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.734,"geometry_index":16975,"location":[11.108475,48.075872]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":9.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.926,"geometry_index":16976,"location":[11.108763,48.075929]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[69,249],"duration":15.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.215,"geometry_index":16980,"location":[11.112179,48.076757]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,259],"duration":11.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.555,"geometry_index":16983,"location":[11.11745,48.077732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":5.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.645,"geometry_index":16986,"location":[11.121649,48.078172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,263],"duration":12.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.469,"geometry_index":16987,"location":[11.123504,48.078319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.457,"geometry_index":16990,"location":[11.128248,48.078556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":55.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":50.395,"geometry_index":16991,"location":[11.129227,48.0786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":7.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.859,"geometry_index":17011,"location":[11.148646,48.084083]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,259],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.484,"geometry_index":17015,"location":[11.151462,48.084613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.151656,48.084639],"geometry_index":17016,"admin_index":5,"weight":5.812,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.48,"bearings":[77,97,259],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.154089,48.084857],"geometry_index":17022,"admin_index":5,"weight":7.48,"is_urban":false,"turn_weight":1,"duration":7.207,"bearings":[87,253,266],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,277],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.785,"geometry_index":17028,"location":[11.156847,48.084788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,279],"duration":15.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.902,"geometry_index":17029,"location":[11.157185,48.084754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,294],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.824,"geometry_index":17036,"location":[11.162762,48.083425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,290],"duration":10.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.957,"geometry_index":17037,"location":[11.163075,48.083347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,276],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.625,"geometry_index":17043,"location":[11.167086,48.082696]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":10.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.723,"geometry_index":17044,"location":[11.167344,48.082681]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":5.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.227,"geometry_index":17051,"location":[11.171257,48.082821]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.173321,48.083118],"geometry_index":17053,"admin_index":5,"weight":10.707,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.918,"bearings":[76,93,257],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.177852,48.083847],"geometry_index":17055,"admin_index":5,"weight":6.863,"is_urban":false,"turn_weight":1,"duration":6.535,"bearings":[78,246,257],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,260],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.414,"geometry_index":17057,"location":[11.180241,48.084159]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.398,"geometry_index":17061,"location":[11.182885,48.084398]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":5.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.828,"geometry_index":17062,"location":[11.183043,48.084408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,268],"duration":34.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":31.309,"geometry_index":17064,"location":[11.185001,48.084512]},{"tunnel_name":"Tunnel Etterschlag","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[87,271],"duration":18.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.836,"geometry_index":17072,"location":[11.197737,48.084463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,259],"duration":6.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.219,"geometry_index":17078,"location":[11.204465,48.084983]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,256],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.336,"geometry_index":17079,"location":[11.206941,48.085386]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":41.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.309,"geometry_index":17081,"location":[11.208328,48.085607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,261],"duration":7.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.891,"geometry_index":17099,"location":[11.224111,48.086815]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.226947,48.087324],"geometry_index":17104,"admin_index":5,"weight":5.773,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.438,"bearings":[69,86,250],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.22915,48.087994],"geometry_index":17108,"admin_index":5,"weight":1.418,"is_urban":false,"turn_weight":1,"duration":0.469,"bearings":[62,232,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,242],"duration":5.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.004,"geometry_index":17109,"location":[11.229308,48.088049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":24.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.23,"geometry_index":17112,"location":[11.231113,48.08877]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,245],"duration":6.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.871,"geometry_index":17117,"location":[11.239155,48.091913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,251],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.223,"geometry_index":17119,"location":[11.241444,48.092507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":9.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.406,"geometry_index":17120,"location":[11.241532,48.092525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,264],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.848,"geometry_index":17125,"location":[11.244969,48.093009]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,267],"duration":50.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.926,"geometry_index":17126,"location":[11.245328,48.09302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,255],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.762,"geometry_index":17149,"location":[11.267755,48.092112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,251],"duration":23.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.738,"geometry_index":17150,"location":[11.268067,48.092182]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,274],"duration":4.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.551,"geometry_index":17161,"location":[11.277106,48.094083]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,283],"duration":4.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.613,"geometry_index":17163,"location":[11.278949,48.093841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,285],"duration":7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.824,"geometry_index":17164,"location":[11.28079,48.093505]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.283544,48.093102],"geometry_index":17169,"admin_index":5,"weight":3.438,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.547,"bearings":[98,114,280],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,277],"duration":4.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.359,"geometry_index":17171,"location":[11.284839,48.092988]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.286493,48.092908],"geometry_index":17173,"admin_index":5,"weight":3.098,"is_urban":false,"turn_weight":1,"duration":2.105,"bearings":[93,259,273],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,273],"duration":3.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.566,"geometry_index":17174,"location":[11.287298,48.092883]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,269],"duration":29.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.254,"geometry_index":17176,"location":[11.288676,48.092887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.953,"geometry_index":17184,"location":[11.299744,48.09415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,250],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.531,"geometry_index":17186,"location":[11.30047,48.094315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.738,"geometry_index":17188,"location":[11.301753,48.094658]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.367,"geometry_index":17189,"location":[11.30203,48.094731]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.302884,48.094973],"geometry_index":17190,"admin_index":5,"weight":13.848,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.211,"bearings":[68,80,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,261],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.16,"geometry_index":17199,"location":[11.308374,48.096144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.289,"geometry_index":17201,"location":[11.308886,48.096189]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,264],"duration":5.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.281,"geometry_index":17203,"location":[11.309425,48.096228]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.25,"geometry_index":17208,"location":[11.311623,48.096303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,271],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.148,"geometry_index":17212,"location":[11.313397,48.096301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,270],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.492,"geometry_index":17213,"location":[11.313871,48.0963]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,271],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.82,"geometry_index":17214,"location":[11.314078,48.096297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,270],"duration":4.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.477,"geometry_index":17215,"location":[11.314411,48.096296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,270],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.758,"geometry_index":17217,"location":[11.316299,48.096293]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":10.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.555,"geometry_index":17218,"location":[11.317037,48.096301]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.321146,48.096503],"geometry_index":17224,"admin_index":5,"weight":6.789,"is_urban":false,"turn_weight":0.5,"duration":6.809,"bearings":[81,255,262],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,258],"duration":4.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.594,"geometry_index":17228,"location":[11.323844,48.096848]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.918,"geometry_index":17229,"location":[11.325764,48.097224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":0.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.055,"geometry_index":17231,"location":[11.326153,48.097309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":7.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.719,"geometry_index":17232,"location":[11.326179,48.097315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,246],"duration":7.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.84,"geometry_index":17234,"location":[11.328969,48.098082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.062,"geometry_index":17236,"location":[11.331654,48.099072]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":15.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.992,"geometry_index":17237,"location":[11.332067,48.099245]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,225],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.719,"geometry_index":17241,"location":[11.337086,48.102051]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,222],"duration":20.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.711,"geometry_index":17242,"location":[11.337319,48.102223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":0.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":17246,"location":[11.342591,48.106774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":3.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.43,"geometry_index":17247,"location":[11.342824,48.106961]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,223],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.051,"geometry_index":17251,"location":[11.34396,48.107813]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.34541,48.108695],"geometry_index":17253,"admin_index":5,"weight":11.426,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.359,"bearings":[51,58,229],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,241],"duration":3.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.422,"geometry_index":17261,"location":[11.349613,48.110535]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.35096,48.110992],"geometry_index":17263,"admin_index":5,"weight":4.066,"is_urban":false,"turn_weight":1,"duration":3.234,"bearings":[66,237,243],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.258,"geometry_index":17264,"location":[11.352122,48.111345]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":31.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.586,"geometry_index":17265,"location":[11.352597,48.111486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":15.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.289,"geometry_index":17268,"location":[11.363888,48.114816]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.113,"geometry_index":17272,"location":[11.369489,48.11642]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,250],"duration":10.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.531,"geometry_index":17273,"location":[11.369908,48.116524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,269],"duration":12.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.77,"geometry_index":17278,"location":[11.373953,48.116981]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.378558,48.117005],"geometry_index":17280,"admin_index":5,"weight":7.52,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.734,"bearings":[89,99,270],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,269],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.969,"geometry_index":17281,"location":[11.381386,48.117026]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[84,259,267],"duration":0.934,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.863,"geometry_index":17282,"location":[11.383689,48.117102]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,264],"duration":5.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.059,"geometry_index":17283,"location":[11.384006,48.117123]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,262],"duration":4.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.523,"geometry_index":17285,"location":[11.385906,48.117292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,259],"duration":22.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.91,"geometry_index":17287,"location":[11.387587,48.117484]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,245],"duration":7.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.91,"geometry_index":17293,"location":[11.39509,48.119084]},{"bearings":[53,235],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":17296,"location":[11.397316,48.119985]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"München-Zentrum"},{"type":"text","text":"/"},{"type":"text","text":"Salzburg"}],"type":"fork","modifier":"left","text":"München-Zentrum / Salzburg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"fork","modifier":"left","text":"A 96"},"distanceAlongGeometry":159415.219},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"München-Zentrum"},{"type":"text","text":"/"},{"type":"text","text":"Salzburg"}],"type":"fork","modifier":"left","text":"München-Zentrum / Salzburg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"96","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 96"}],"type":"fork","modifier":"left","text":"A 96"},"distanceAlongGeometry":1609.344}],"destinations":"A 96: München, Memmingen","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 96 ramp toward München/Memmingen.","modifier":"slight right","bearing_after":102,"bearing_before":74,"location":[9.735653,47.579267]},"speedLimitSign":"vienna","name":"","weight_typical":5322.809,"duration_typical":5735.012,"duration":5735.012,"distance":159415.219,"driving_side":"right","weight":5322.809,"mode":"driving","ref":"A 96; E 54","geometry":"eg_wyAi}eqQ|AwR`@qDz@wCvAwClBy@xHaG`B]hG{@|Fa@fGDjBT~F~AzFzAzEvB~BbB`EjDtBrEjA`Ev@|GHdH_ApI}ApF{C`GwCxB}B`AaJhD}P{AiSiBee@kFwf@}GgeC{]qu@mJ}u@{Gwn@iDq|@iBi\\DaVMem@jAkq@tC_\\nCeb@bEyc@zGqUbDuo@dMyWdGc]`JuLnDkj@pQgeA~^y|Afk@{\\lL}^tLyTzGuT`GqTdF_d@xIkWrEat@fI{n@`Ekn@tBmq@Diq@eA{h@}Bkv@}Fcs@aG_hBmRk^}Em}Bu\\ahAkRihAuSafAiU_fA}UwrAu\\iqAs_@gmBgl@ecAm]scAe^giCo_Acw@qX_x@mVsl@sOgm@yMox@cLeSgBsQcB}PuA{c@wByCO_Ug@kM]aAC_p@y@y{@s@ibAoCyiA}HqGaAmi@mIwUiEmZuF_e@wLwd@oOcv@gZw@[ibAoe@sqAmv@yeBuoAmfAa{@ycA_`Ac`AacAye@ym@od@io@yc@kp@ePqW{QaZai@}_A{I{PiPuZ_L{Sii@ahAch@ojAcoAwsC{Uoi@{D{Iq_BgrDkkAeeCsq@ysAqr@uqAexAqcCei@ux@gi@ow@g~@ioAo_AmlA}_@ic@wl@}q@wm@uo@y~@c_Aop@{m@}p@il@o}@{t@c~@wr@e}@mn@y}@yk@_z@wf@ih@{XaQkJsh@gVgi@{Tci@kRui@qP}j@aNiG{Act@wNu`A}Mk`AqJwoBkNodBoMww@gIyYaD_Z{Dwa@sGua@kHoMcCcH_BmS{EqSmF}WkHqQqFcYoJeh@oRoS{Iuo@sYcp@o]wwAu~@azBceB{hAw}@{v@qj@ck@e\\{k@iZk}@i`@a`Ak_@}bAqc@}_Agc@aiAwq@}[wTq[yUgm@wg@el@mj@os@{v@we@{k@cRuVyWk_@eSwZ}Rq[aGeKwCeF_Wad@wOeZ{\\or@cFkKwNa\\qb@eeAkI{TkOic@kJmX}Ngd@gR{o@cNki@kG{Uc[wvAcUgmAu[sxB_I_o@}Gss@oPm|BiEil@mC{b@uHemAeH_iAgIgvAeLcjBcM}|AeHmq@wIaq@aHeg@uLuv@{Myv@aQqy@{Ryx@kWw_AqY_aAcWg{@aVax@aLu]{rBw|GwVm}@mUa~@uXyrAiXsfBkJuz@oHwx@_HujAaE}mAiAyt@iAexCgA_fAwBo`AgDmx@uFix@sKcjAiNohAaM{u@kNau@wPkz@wRix@eXocA{YwaAuXyx@{Yuw@}Swg@eV}h@ePe]qNgYuH}Nyc@}w@yZgg@_O_U_NgSi`AirAyQsUiy@ofAyEoG_lAk_Bq`AavAc`Ak}AmV{c@kk@eeA}y@{bBk_AiqByBwEkmAejCqy@a}A_Ro\\ivA_}BgZea@ki@{u@qo@_x@mf@mj@evAexAw|BiyByx@}z@qy@aaAcgAaxAwvAipBy_AynAcQyTcPyRuQoTio@kr@oMoM_C_CaYkYe`Auz@sG}FkHiGeeAq{@wSiPaYyT_XqTqqA}iA}eAmhAinA{~AebAmyAmiF_mI_|BqqDsz@{sAq\\cj@cjAqjBw|@qyAuoA_`Co{@_fBsy@wfB}p@w}A_c@_kA_\\weAqWagAyPo|@oPofAqGke@gs@wpFq]w~BeT{oA_WapAo]w~Aoe@ahBm`@{pAad@mnAo_@c_A}s@mzAmy@ouA_~@_pAo~@sdA{v@{u@gd@i^k\\oVqj@o_@mgAcl@g|B{cAqm@a[ov@qg@{|@wx@oq@mw@wx@smA{b@wz@kRgc@g`@ydAqWe{@a`AwpDiQym@cNuc@yNuc@iMe^qKiYqKiXyQic@k^kv@mo@imAoy@cqAoa@mi@oRmUeRmTyQcSwRkSuXkWmv@qp@wiAaw@enAgp@kqAeh@yn@aRanAqVmoAyN}a@oD{o@_Gyy@{Fu\\eCiRqAsZwByc@wCuO{@_ZwAoZeBq_@}Acx@oDkSaAg`B}EidA_DgtBmDquBcBoDAoqBQivBdAuoBlBemAxBoUl@aqAxDmEPag@xA__BbHuk@tB}vD`PcuBfIavBfF{oAuBwcAgKccAkUci@iSy[qOwa@oUw_@wV{z@cu@}y@cbAwXgb@{Wac@ao@qnA{}@ivBk|@_xBgo@_sAs_@}q@iUu]a_@qf@sTeVmS}Tkh@cg@_w@wp@ez@qp@adAu}@_a@q`@aIaKeU_X}p@u_AaRi[i_@as@u\\yt@og@wtAkd@iuAwa@qpAcd@kkAif@}cAiyAmjCyb@e_AgFgLg\\{x@aIoWyMwd@wUu{@}[uiA{HcXcMs_@qVws@qAyD}i@ikAmeAgeBgtAujBslAqtAoy@gz@c[{YqZcYyWyTwWwSy^}X}ZoUcx@qj@gM{IwQiLyXqQaiAmr@or@ib@eTgMkW_PaoAqu@a\\{R_j@m\\wY}Pib@aXwf@_ZknBohAy|@_l@{~@uy@ud@ge@_QsSm]uc@m_@ak@ok@{bAqg@yiAwVgq@cU_s@cq@gcCgb@k~A}`@msAsYqw@i\\cv@oLuVoLuVm[ak@c^ij@w_@_h@{_@ud@_a@ab@sa@s_@ad@o]sn@{a@{n@w\\wf@mSqj@yQ}`A}V{hAeVcwAo\\cn@kQkk@eSow@s]ax@ob@kb@qXel@sb@wi@yc@an@wl@qv@u{@ms@m_Amt@whAcr@ujAkkBshDqNmWq`@ss@ix@{xAydCkqEgeCmpEq_AoeBq}@a~A}o@wiA_Vy^kRsY}M_SaLmPeA{Ag]mc@oUkX}O{QwKcLse@se@kbAw{@eXuQwWgQs_@{U_VsMm^aQqn@yXeKqDoPaGuKyD}iAi\\{hAyZ{MgEuQyFaa@gMaYaK_[oMqs@y]eNaHaoA}r@arAuv@cr@q_@kr@_^m`Aq`@amAgb@szAwa@_zBag@mtBog@yt@yUwl@uSgu@gZox@o_@o~@wg@o_A{k@cx@yh@eMkIqaBcgAk~HekFkpB_rA}{@yk@u{@sk@ciBumAcK_HmMwIktBovAwfAgw@e{A_kAacAkz@oaAg}@yH{Hm~Ac_BwNyNoaAsgAgaAskAmMsPe`@eg@sOaSqIyKgz@klAqR{Y_]eh@qVw`@kJ}NuCmFyYmi@o[el@yN_X}o@mlAmu@c`Bkv@kiBmr@_nBoQ}f@wLy]uUqv@kCwQ_B_I_Je_@_Iy^uCeMiD_QuH_]oEgQ{I_[sg@{~AgEaOcGuToH_[{Pqw@_EcTaQwaAyH}c@eEyWwHse@eFs[yIco@wHwi@yJaw@iDe[wEqa@yK}aAqB_TqEkg@cFwn@qEwl@cFir@}Bc^}Ccf@cEsz@sC_n@gCcp@iA}YiBun@WmKoAej@u@}[q@qa@w@em@g@eq@c@{v@S_z@J}k@Pgk@Xsm@^od@bGamHb@sp@v@q`Ap@}z@bLmmOt@wq@`@yz@LuQZu_@Zq`@JmMb@_}@?Cp@kl@fBq`CR{\\b@o`@\\iy@Dqq@GcKUuZMmP[uSuAct@wAmx@]kYW{SWcX]u^OaNHch@HaZVuYZyX|@ea@jAi`@dBic@`Bc`@dBab@fBw^`AmS`AmSnBmg@fCi~@^gSP}SR}c@AgTM}U]g`@k@}_@m@cVcAoXgBsb@wBs_@gCy\\mCy]gIcw@{Hwl@mH}e@yGw`@{FoZcGyYaHq[mGyYwMug@_Lma@s[ajA}k@goBik@cnBwAwEs{@{rCgx@ekCag@m}A_J{Xg`AguCqj@y`BmJsXat@gtB{i@u|Aml@{_Bcc@qgAeW_j@kM{W_LgTi\\gk@oVi_@uU_]kTgYoSaWwc@ih@uR{T}j@yp@sg@go@{k@aw@uWua@}Xaf@wUed@yUsj@mNm^sMs_@qOyf@cQkp@sQk{@yHib@wFg]qFo^wNykAmLqlAqHg{@{NwfBgWixCeRmsB}Cia@mH}}@_O{aBwJsjAeG}m@e@aFcB{QeFsn@mNyxAqHaw@yLggAcH{k@{Lox@{M}u@eTqcA_[cpAq[epA}K}f@kJsg@sLgy@mGyi@qEqk@{Doi@{B{l@m@}YUqPUm_@Mky@b@{z@~A}wA~@siA`AmlAI}hBaB_rAiC{bAqDa|@_F{z@{Eqq@uL_sAgS}lB{Vw}Bo]{}CoVk`CiLalAgK{fA{JwkA{I{iAoNywBmCoa@wLeoBy@qKcEso@gBsVcE{o@mG{~@cDqe@gMq}AwCy^{Eyj@qMmtAkl@_rF_Fu`@uHql@sByOgKqx@sHoh@st@qzEgYulBo\\}|BcmAqpJqd@ewDaaBy_Nee@_|DcImr@sGqj@}NcwAiFcj@aE_j@CU}Eqr@{Est@{Cko@uEolASaGgBqk@sBcjAsA{oAD_uBfAyaCbCq_CrDmaCnA_dAfA}j@xAgy@lCkeAdDopAz@y\\xHglChEytA|Eq}AlBuq@tCs~@hDwbAtBue@lCuh@tDwp@nF_s@zEki@dIqv@pHwm@~G_i@ti@o|DbH_k@xFai@bH}w@pFut@`Dgi@dCij@~As`@bCwu@h@sVxBgaA\\yN~Cq`BzHqsDlAkn@xD}fBz@eb@hT{{J`]k~PbD}|A|@ib@r@k^lF_eCVgOz@qb@x@cb@bBu}@dLmkFlBev@bFkeBbFmkAbJgwA|Mk~AfTecBfVwxAnX{uA~_@c|AvJq\\tIyY|_@qlAzo@iiBtq@}mBvh@ufBfR}v@lOcv@zNey@pLoy@tIkv@hIuz@fNcbC`C{fAfAaiAWqsAkB_iAcBog@eCib@cGy`AqF}q@_z@krIqEyd@cDk\\amDsd^gOaaBoJghAcJ_kAeQoaCeI_nA}Esz@eEus@wEm}@kFseA_Ok_EuMetEeGk{BcE}{AeGa{AcOuaC}JmfAyLokAuJiy@s]y{BiTsjAsT_eAcWsbAyVe`AoiAi~DkGqT_qAm|Ecz@ioD}r@mjDck@qcDsh@}eDcQuoAuO{lAuOeqAmM_nA_Uu|BkSkcCkLcdBiKwbBgIwiBqDemBa@_w@`@cw@tBoqAdCa`A|LaqCbPkqC~\\gbHrGw`BpFwxArDcvAxEuuB`DmdBrDs|CvBwkDMgwAe@mfFcGmwJiBgxCg@sr@Yii@Wav@S}~@Bme@Dky@p@grAd@}o@rAcbAt@yc@~CwtA`Bwn@tByn@dCyn@hC_n@fI{gBvCad@xDem@`J{kA`E}d@pEid@hMwhA|F_d@pGac@tNo_AvOm~@zMmu@~BmMtk@kwC|Qa~@|Qq~@~S__Alk@{hCdWcgA~FyVlJs`@rBqId_@s{Adc@aeBhs@enCfTcy@ziAosE`f@}vBnJ}d@~R_cA`Lil@zJ_l@vMst@dT}sAnGuc@~CiSlQmrAdNeeAfMweAbTulBvU}wBxb@aeE`VizB|OouAfr@_hFbCaQjU_aBrVacB~e@}yC~Y_qBlPcqAlLsgArI{iA~Ek~@tBwj@vAkn@~@_|@Iev@OcXi@y]y@m_@kAm^yAu[sCai@mD}f@yCg^qDi_@}AgOqFad@{DaY}G{e@qKwm@oFyYiGa\\gK_k@oMsr@kEiVsHwf@gGya@qQanBsEey@oCkx@yAejAJypAdA}pBJwi@C{c@oAeiAAa@wBus@i@iN_Bi\\mB_[uDai@uCkZqGkl@mK{w@{Isi@mNys@eDiPoC{McHwYqGkWyIe[wEwOqIeXuI_W_Xir@uOw^iVog@aTsa@aUs_@sOoVms@whAaa@{k@uY_e@iTm_@cQw[o_@sv@cR_c@_Wen@sK{YsNmb@iOif@iSos@qGuWeMuh@kOqs@mDqRoHgc@yDcUsLky@cF{a@eFse@yFam@eD_c@}Eys@uC{l@qBol@eBil@iFw|BuBa}@kDo}@eEyw@_G}w@}Hcw@cKmx@_TctAoUorAkUcpA}SeqAyKsu@iIos@mHsw@{Esu@_Egz@kBk{@w@sx@?}x@d@i{@NgU~B}jBbBijBMw}@aAc~@qCo`AgEe~@uI{kAiNaqA_Lez@iPkbAqEoXuKcp@kVszAwGyd@kGof@_Eu_@qDc`@aGw_AuDq`A}B}`A_Acc@i@cZcBox@{A_t@}Cm|@qE}{@wGm{@oImz@cKaw@qMsx@yPy{@o\\suAo^cuA}]cxA}Lgm@oKen@cIsl@qG}n@sEyn@mCon@_Bcw@Qyv@bAiaAvB_w@n@qSr@uSdCam@VoIvE_~@jJyqBbCwu@zBe~@d@s~@We_AoA_`AkCcz@wCuj@cFsv@kHay@iGmk@gFs`@sNw~@wGs_@aJae@kRuy@_Moe@}CsLqJa]gP{e@eI{TiKkYcRuc@i]ov@uByEmOuYmLuRcNcUuZaf@kOqSqJ{L{Wu\\_CmCeBqBcIiJq[y[iQ{P{\\mYub@_[au@cf@gOsIkl@_YyeAqg@cc@uScp@m[mXeNcZgPuYaQgYeQ{`@yXoZeUaS_Q_KeJkJsIkPePwO}OwNgPy_@kh@iKoPiPeYwPc]}R_c@yOea@_Pqe@qOii@kN_k@gLei@yJuh@sHyb@eHec@}Fca@mFu`@gDsWsIov@kFwi@kEqg@_BeUiGmcA_Bi^iAi\\gAmh@m@me@MkUMmf@?wHXqf@l@}b@vBiv@~@_XrEcy@lGgz@dL_iArPsiAjE}YhTyeAb[{lAxXwbAfRaj@dOo^tYsp@bi@ejAdgA_jCvX}v@nVmv@nc@gxAt^iwAt[s}AnPk}@|Fc]hTc_BfRqaBrJqkAzAgSlAgPnDgk@vCah@|Bom@|Bwp@`Aca@zA}z@@e@l@ej@Z}e@JkR@gg@Cme@_@cr@yAsjAQaPoA_h@wAes@mC{s@o@cOcBo\\eE}t@kC{e@{C}m@mDav@aAgg@_@_]E}`@Xwg@~@yb@zA{b@tC}g@vCya@jDk]nDyZ`Gab@vb@isCzL}dAhHabAlDqvA?saBgGsgFD}pBlGcbDlLygCtVktDtBal@bBip@Lyq@a@uq@iBul@gCyo@aG}v@aIkr@aj@ycEw\\{{Cw\\}yDiI}pAuHitAyLylDuV{`L{TcuGyI{hDeD{gBe@mLaH_rAeIynA_RcyB{XyaCkLk|@g_@mzBkOyw@oRm~@arAaqFyz@mrDyYgwA}^atBuWe_BoM{aAoOsrAqB_PeF}h@yD}c@eDad@qCmd@gDwq@iAo^w@oYgAcm@g@g^[m_@Qka@Ee_@Rei@`@cq@vA{p@~@ic@nE_|AtN{dF`AqhAQcf@iA{o@wBcm@kDml@_Ewg@cFag@}H}l@oGy`@gKcj@_Ogo@_Okj@uOse@_Rwg@e|@_xBa~@}yBaIsQwjBwsEwXws@{Km[{Ks]_Q{l@_Ka`@wKqe@kIa`@wIkd@iGc`@aH_d@uH_l@iFmf@eEib@aCwZoB_ZiBiYmB_\\aDwy@WyNkA{m@Uka@E_`@Lgp@l@kj@~Aup@tBmk@~B_d@tD}m@`Eye@xGyq@vG}i@zGog@pOydAf[qlBjc@u_CbUkpAbPagAjJwt@dFki@nBqYxAiTlCwe@lBma@`Byi@p@{ZXcZJsTXcq@C{aAo@{`As@sf@{@}e@sAsg@kBgg@}B}f@oC{f@aCu\\cCs\\eH{y@qLwhA_\\opCOkA_Q_}A{Eaf@mFsk@}B}WiCe[uH{iAoCuf@uBae@}Aab@kDcdA_F{fByBgv@iD{{@eDsr@wA}VkDqg@uD_e@wE}g@cEsa@mPkvAuJex@aJwu@aG{h@sF}l@yByWg@wGmBiWaB}WsB{]eBm]_Be_@oA{]w@s[k@aYUsPGaEi@uj@u@s{AUkd@OaVgAoz@{@sa@yA_c@kAoXmA{U}Coe@eBwT{ByVcDo]qB_QiFsa@_Jgn@qJsm@{T_tA_Ww}AaVg|B{LmlByQibDcF}oAq@eQeH}rBmBy`AgHutDcA_p@wAe|@aD_yB{F}uB_FgkAuI_hAqJsy@kJsn@qMar@yMqk@mQeo@mKy\\{e@yqAcp@s~Ack@gxAePie@qNqd@mL{a@_Muf@kMsl@_Pyz@eDaScKst@uJs|@yEai@oAuQs@cK_ByRoBe`@gBob@mA}`@YqMSaNU_UMch@FcXh@c`@t@oXdAoXbAcTtC{d@pDcb@bFgd@xFib@vIwf@hHe`@xd@aaCzCqRjMky@`K_~@|F_w@bBs\\pA}_@RwI\\cOb@iQPee@Ake@i@ud@uAkm@yBih@qAiWmC}b@cMa|Aoa@gtEaJ}dAeJioAiG_dAgAuS_Cye@sCgt@aCos@S{HcE}dBKmSi@ugAOqYHq}@?uJXstD|@avDJsc@l@e|EkA}eAcDw_B{Ee|AoC}o@oDkq@cGi{@eXwyCwImcAaBgQeRypB{OeqBmG}}@}C_o@{C{s@iCgw@cCmkAs@{g@c@a}AC_s@Huv@?ek@W}i@g@a_@{@{_@mAk\\mA}Wm@}KsF{v@aDm]oDy\\{Fcd@wD_WoCaQyFm[uHca@{Rax@mB{HsK}_@cI{XiU_u@gf@w|Aw|@cqCud@s}A{b@gaB{T{dAa\\kkBaGua@c@oDiIeq@wFsl@_Egg@wBih@mAmd@UmUCsw@z@yj@vB}g@bIefA|KebAjTy}A\\gC`I_y@`Eaq@tBgv@f@st@i@mt@eAmj@{GeaCy@qbAn@qdAzCcx@xIcmBnBsw@Her@yAkn@wDqm@mLwgAkCoRwNou@mM_j@{e@qhBqOqq@{Iyf@gHsg@yDsd@cEul@uA{k@[co@lAqu@|Eo|@dGut@~SarB|Fuo@tEmh@fCs\\bCca@dAgQ~Bch@bByf@nAif@nAa_Ap@iq@D}YMez@u@mm@}@}g@_HkdC}Gi|AoJ{{AuQafC}PoeBgHgn@uCyTsDqVoIwf@}Img@qCiPcNkt@qSoiAuIeh@sIui@yF}a@kEc_@{Dk_@{Ce`@gDeg@c@}Jy@mS_@qJa@mLk@gSWuJw@ma@i@ee@Uy[EgWCgKI{b@Jec@DqY@s\\D}K@ySDanA?}e@Ocm@Mke@e@yg@gA_y@}@cc@oB_p@iBoa@yBgd@yCqh@oEim@mEoj@oV_wBEWcDqVKs@kRimAq[a_BcZcoAwa@uvAyIyXue@qsAef@{hA_k@uiAot@qoAwIqMieA}wAsjCcyCmn@wt@aZu_@uJqMmQcVoTi\\QYwKwP{Umb@g_@ev@aIkQoNq]oLwZoN{`@kN_c@aJmYyJe]eUoz@cNyk@mLkf@aUsgAyGu\\ub@uxBkxAspHarAkuG_YivAa_@snB}]uhBgJml@oEeYeHop@kH{v@sDkq@yBs_AQm_@k@{aAC}{Ei@woDwC}nCi@yRgFyqAiB}b@{Eg_AcDyg@_Gk~@yTg`CaNgiAwLa{@iRyfAaUeeA{Oym@aQwl@kTqm@cQyb@iXmk@eS_]uRqY}\\cc@gY{\\y{@cu@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 5 miles.","announcement":"Continue for 5 miles.","distanceAlongGeometry":8773.816},{"ssmlAnnouncement":"In a quarter mile, Keep left toward Arena.","announcement":"In a quarter mile, Keep left toward Arena.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left toward Arena, Nürnberg.","announcement":"Keep left toward Arena, Nürnberg.","distanceAlongGeometry":100}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.401427,48.12319],"geometry_index":17303,"admin_index":5,"weight":11.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.328,"bearings":[26,35,211],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,215],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.426,"geometry_index":17308,"location":[11.403592,48.125753]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,218],"duration":8.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.582,"geometry_index":17310,"location":[11.403914,48.126026]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,232],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.227,"geometry_index":17314,"location":[11.406282,48.127573]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,233],"duration":13.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.441,"geometry_index":17316,"location":[11.40666,48.12776]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.411281,48.129259],"geometry_index":17323,"admin_index":5,"weight":8.473,"is_urban":false,"turn_weight":1.2,"duration":7.293,"bearings":[71,242,250],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,255],"duration":10.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.078,"geometry_index":17326,"location":[11.413873,48.129794]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":8.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.82,"geometry_index":17331,"location":[11.417582,48.130229]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,270],"duration":4.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.031,"geometry_index":17335,"location":[11.420869,48.130327]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[99,265,276],"duration":3.07,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.137,"geometry_index":17337,"location":[11.422482,48.130243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,281],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.305,"geometry_index":17339,"location":[11.423602,48.130108]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":8.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.258,"geometry_index":17341,"location":[11.424252,48.129998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[116,294],"duration":3.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.062,"geometry_index":17344,"location":[11.426511,48.129433]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[118,296],"duration":11.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.078,"geometry_index":17345,"location":[11.427548,48.129089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,298],"duration":41.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":42.031,"geometry_index":17346,"location":[11.430847,48.127906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,278],"duration":8.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.312,"geometry_index":17363,"location":[11.443769,48.127852]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.446241,48.127263],"geometry_index":17367,"admin_index":5,"weight":35.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":34.82,"bearings":[117,125,296],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,278],"duration":2.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.543,"geometry_index":17380,"location":[11.456754,48.124471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,279],"duration":20.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.156,"geometry_index":17381,"location":[11.457583,48.124382]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.464494,48.123894],"geometry_index":17384,"admin_index":5,"weight":2.23,"is_urban":false,"turn_weight":1,"duration":1.219,"bearings":[94,270,275],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":5.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.621,"geometry_index":17385,"location":[11.464879,48.123877]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":3.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.906,"geometry_index":17386,"location":[11.466631,48.123786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":12.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.871,"geometry_index":17387,"location":[11.467852,48.123727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":6.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.352,"geometry_index":17390,"location":[11.471879,48.123593]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.473866,48.123557],"geometry_index":17391,"admin_index":5,"weight":37.355,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":35.582,"bearings":[91,106,272],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[89,263,268],"duration":6.332,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.797,"geometry_index":17395,"location":[11.485167,48.123638]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":13.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":14.121,"geometry_index":17396,"location":[11.486911,48.123662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":20.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":22.047,"geometry_index":17400,"location":[11.490529,48.123835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.148,"geometry_index":17405,"location":[11.495862,48.124833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":5.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.719,"geometry_index":17406,"location":[11.496124,48.124893]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.497338,48.125189],"geometry_index":17407,"admin_index":5,"weight":27.426,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":24.398,"bearings":[71,84,250],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,270],"duration":3.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.359,"geometry_index":17416,"location":[11.502432,48.125752]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,272],"duration":9.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":11.402,"geometry_index":17417,"location":[11.503233,48.125736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,278],"duration":9.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":10.969,"geometry_index":17419,"location":[11.505326,48.125574]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,282],"duration":5.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.027,"geometry_index":17421,"location":[11.507323,48.125329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,282],"duration":1.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.035,"geometry_index":17423,"location":[11.50842,48.125179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,280],"duration":4.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.375,"geometry_index":17424,"location":[11.508795,48.125133]},{"bearings":[100,277,283],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17425,"location":[11.509772,48.124987]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Arena"},{"type":"text","text":"/"},{"type":"text","text":"Nürnberg"}],"type":"fork","modifier":"left","text":"Arena / Nürnberg"},"distanceAlongGeometry":8807.149},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Arena"},{"type":"text","text":"/"},{"type":"text","text":"Nürnberg"}],"type":"fork","modifier":"left","text":"Arena / Nürnberg"},"distanceAlongGeometry":402.336}],"destinations":"A 96: München-Zentrum, Salzburg, Garmisch-Partenkirchen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 96/E 54 toward München-Zentrum/Salzburg/Garmisch-Partenkirchen.","modifier":"slight left","bearing_after":26,"bearing_before":31,"location":[11.401427,48.12319]},"speedLimitSign":"vienna","name":"","weight_typical":420.438,"duration_typical":396.836,"duration":396.836,"distance":8807.149,"driving_side":"right","weight":420.438,"mode":"driving","ref":"A 96; E 54","geometry":"krexzAel{vT{h@g^cc@e[u`@iZkY}WcUsVmKoMsCsDwm@}|@yV}e@mQq_@uFqMiC}GkFuMwHsTqKk]gJq\\uI{\\oMkl@uPk|@gPseAuJ}p@yI_s@}Ia{@eJaiAgGmbAIoBuCwq@wAac@kAce@kAct@i@ww@Amx@fAqy@~Agi@rB_a@xC_c@~AgQzBkUxHan@tJ_n@xLcn@nTy_A|hAemEjP_q@bKcl@`Isk@tEmg@lDsw@Vgn@{@wp@eEit@}BgV_CgTyXapByEah@kC}d@aB_y@@}a@p@yb@jDev@lGsp@jIuk@pFmZlIw_@hH}YrLqb@te@m}AxZ_cAhQat@lQy{@zF}\\bF{]nHur@dDqa@rCqb@zFkhAbEg}@pDyr@pK_bDxJakDbE{_B`@aWtDolBtBikAzAaz@nA}nA~AuoBfAe{BbAohEy@ghE_BkwDkAevBo@_lBa@a`AmAe`AoCobAyAk[sBoc@wFgq@aH}u@sJiz@i]icCwBkOoQ{jAcGgb@uFkk@kEmh@_Dsc@_Bwa@cAgYi@cZm@gh@Ci^^aq@hCqbAxDg~@~GymAhE_m@fGe{@b@kGzAmVbHa|@lHcmAnNeoB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":3882.465},{"ssmlAnnouncement":"In a quarter mile, Bear right toward Nymphenburger Straße.","announcement":"In a quarter mile, Bear right toward Nymphenburger Straße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right toward Nymphenburger Straße, Zentrum.","announcement":"Bear right toward Nymphenburger Straße, Zentrum.","distanceAlongGeometry":88.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.512817,48.124588],"geometry_index":17427,"admin_index":5,"weight":85.559,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":74.418,"bearings":[101,108,282],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"in":1,"bearings":[104,281],"duration":6.336,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":7.285,"geometry_index":17431,"location":[11.519358,48.1237]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[101,284],"duration":4.801,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":5.52,"geometry_index":17432,"location":[11.519931,48.123607]},{"entry":[true,false],"in":1,"bearings":[99,281],"duration":48.215,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":55.445,"geometry_index":17433,"location":[11.520406,48.123545]},{"entry":[true,false],"in":1,"bearings":[21,187],"duration":2.699,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":0,"weight":3.039,"geometry_index":17459,"location":[11.521541,48.125496]},{"entry":[false,true],"in":0,"bearings":[201,358],"duration":0.898,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":5,"out":1,"weight":1.012,"geometry_index":17461,"location":[11.521638,48.125669]},{"entry":[true,false,false],"in":1,"bearings":[33,178,208],"duration":11.535,"turn_weight":11.75,"turn_duration":0.072,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":24.645,"geometry_index":17462,"location":[11.521634,48.125733]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[42,222],"duration":11.828,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":13.309,"geometry_index":17468,"location":[11.522935,48.126835]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[47,226],"duration":9.918,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":10.91,"geometry_index":17472,"location":[11.524444,48.127877]},{"entry":[true,true,false],"in":2,"bearings":[46,59,230],"duration":16.75,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":18.402,"geometry_index":17474,"location":[11.525815,48.128678]},{"entry":[true,false,false],"in":1,"bearings":[51,232,322],"duration":1.715,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.863,"geometry_index":17479,"location":[11.528277,48.13003]},{"entry":[true,false],"in":1,"bearings":[51,231],"duration":14.188,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":15.605,"geometry_index":17480,"location":[11.528529,48.130164]},{"entry":[true,false],"in":1,"bearings":[47,228],"duration":10.234,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":11.258,"geometry_index":17484,"location":[11.530595,48.131333]},{"entry":[true,false],"in":1,"bearings":[50,227],"duration":1.059,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.164,"geometry_index":17485,"location":[11.532036,48.132215]},{"entry":[true,false,false],"in":2,"bearings":[48,208,230],"duration":3.242,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":4.047,"geometry_index":17486,"location":[11.532192,48.132301]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[47,228],"duration":1.727,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.898,"geometry_index":17487,"location":[11.53262,48.132559]},{"entry":[true,false,false],"in":1,"bearings":[42,227,315],"duration":3.25,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":3.547,"geometry_index":17488,"location":[11.532846,48.132699]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[33,219],"duration":2.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":2.641,"geometry_index":17490,"location":[11.533221,48.132989]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[17,213],"duration":7.891,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":8.68,"geometry_index":17491,"location":[11.533456,48.133226]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.533837,48.134112],"geometry_index":17493,"admin_index":5,"weight":1.348,"is_urban":true,"mapbox_streets_v8":{"class":"trunk"},"duration":1.234,"bearings":[14,94,194],"out":0,"in":2,"turn_duration":0.007,"classes":["tunnel"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[12,194],"duration":17.156,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":18.875,"geometry_index":17494,"location":[11.533888,48.13425]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[8,188],"duration":11.336,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":12.469,"geometry_index":17498,"location":[11.534377,48.136237]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"trunk"},"location":[11.534548,48.13756],"geometry_index":17502,"admin_index":5,"weight":4.68,"is_urban":true,"duration":4.273,"bearings":[0,8,181],"out":0,"in":2,"turn_duration":0.021,"classes":["tunnel"],"entry":[true,true,false],"tunnel_name":"Trappentreutunnel"},{"entry":[false,true],"in":0,"bearings":[180,358],"duration":8.887,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":1,"weight":9.773,"geometry_index":17503,"location":[11.534548,48.137914]},{"entry":[false,true],"in":0,"bearings":[178,358],"duration":10.066,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":1,"weight":11.07,"geometry_index":17504,"location":[11.534495,48.138952]},{"entry":[true,false],"in":1,"bearings":[1,180],"duration":7.934,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":8.727,"geometry_index":17506,"location":[11.534457,48.140184]},{"entry":[true,false],"in":1,"bearings":[3,181],"duration":6.613,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":7.273,"geometry_index":17508,"location":[11.53449,48.141158]},{"entry":[true,false],"in":1,"bearings":[11,189],"duration":1.395,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.57,"geometry_index":17511,"location":[11.534597,48.14196]},{"entry":[true,false,false],"in":2,"bearings":[7,176,191],"duration":9.434,"turn_weight":0.75,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":11.336,"geometry_index":17512,"location":[11.534649,48.142131]},{"entry":[true,true,false],"in":2,"bearings":[0,18,187],"duration":4.703,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.03,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":5.258,"geometry_index":17514,"location":[11.534831,48.143155]},{"entry":[true,false],"in":1,"bearings":[6,186],"duration":23.055,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":25.938,"geometry_index":17517,"location":[11.534882,48.143705]},{"entry":[true,false],"in":1,"bearings":[30,213],"duration":15.855,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":17.836,"geometry_index":17529,"location":[11.535974,48.146261]},{"bearings":[5,184],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17537,"location":[11.53675,48.148025]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Nymphenburger Straße"},{"type":"text","text":"/"},{"type":"text","text":"Zentrum"}],"type":"turn","modifier":"slight right","text":"Nymphenburger Straße / Zentrum"},"distanceAlongGeometry":3902.465}],"destinations":"Arena, Nürnberg, München, Stadtmitte","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Arena/Nürnberg/München/Stadtmitte.","modifier":"slight left","bearing_after":101,"bearing_before":102,"location":[11.512817,48.124588]},"speedLimitSign":"vienna","name":"","weight_typical":413.922,"duration_typical":356.77,"duration":356.77,"distance":3902.465,"driving_side":"right","weight":413.922,"mode":"driving","ref":"A 96","geometry":"wihxzAa~t}TjE_p@nUc~CvMmiBzJg}AxDyb@zBu\\fBm\\Z_SEcNm@}NoAuJyBsIoBiFsCyEuCaDyCgCwD}A{C_AeD[gE@wDj@eD`BsDnCaGrIsI`QoHdMsDlD_E|BkEhAoC?iEM{C_AoC_AiEaC_CFqOcO{FsGoGsHiFaHaIeLqQuWcRaYsJcOuMcTuR_^gRg^y]mu@iHiMkHoOiLaWoNa\\_d@}dAkGwNiGqNcKuU{Xam@wYyk@cv@ayAkDwHcOwYwGcMoFuIsIwKyMuM{`@uNoTcGsGeBsEoA{j@iIy}@qN{IeAkQwBc\\kCuTgAoLIcU?{_AhByu@pAeUEmROmh@q@}]uAwJ}@mFaAuIgBu`@aEi]iD_NEqE]yKaA_NkAqQ_BcQ{A_TwBoNgCsJkDyHaDwEeCmGeEkJwGgGmFiN_N}M_LmLuH{M_H_MiEmKgCkK{AsJu@qOu@cLq@"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn right onto Nymphenburger Straße.","announcement":"In a quarter mile, Turn right onto Nymphenburger Straße.","distanceAlongGeometry":359.009},{"ssmlAnnouncement":"Turn right onto Nymphenburger Straße.","announcement":"Turn right onto Nymphenburger Straße.","distanceAlongGeometry":83.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[0,10,185],"duration":13.059,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":1,"weight":8.809,"geometry_index":17538,"location":[11.536775,48.148235]},{"entry":[true,false,false],"in":2,"bearings":[4,180,189],"duration":2.68,"turn_weight":0.5,"turn_duration":0.026,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.484,"geometry_index":17544,"location":[11.536946,48.149007]},{"entry":[true,true,false],"in":2,"bearings":[4,96,184],"duration":8.535,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.094,"geometry_index":17546,"location":[11.536959,48.149133]},{"entry":[true,true,false],"in":2,"bearings":[4,94,184],"duration":6.391,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.68,"geometry_index":17547,"location":[11.536996,48.149533]},{"entry":[true,true,false],"in":2,"bearings":[4,94,184],"duration":11.625,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":13.57,"geometry_index":17548,"location":[11.537029,48.14988]},{"entry":[true,true,false],"in":2,"bearings":[5,108,185],"duration":2.5,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.305,"geometry_index":17551,"location":[11.537101,48.150513]},{"entry":[true,false],"in":1,"bearings":[2,185],"duration":29.355,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":33.523,"geometry_index":17552,"location":[11.537112,48.150593]},{"bearings":[0,110,183,291],"entry":[true,false,false,false],"in":2,"turn_weight":1,"lanes":[{"indications":["left","straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17556,"location":[11.537174,48.151546]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["left","straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Nymphenburger Straße"}],"type":"turn","modifier":"right","text":"Nymphenburger Straße"},"distanceAlongGeometry":380.009}],"destinations":"Nymphenburger Straße, Zentrum","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right toward Nymphenburger Straße/Zentrum.","modifier":"slight right","bearing_after":4,"bearing_before":5,"location":[11.536775,48.148235]},"speedLimitSign":"vienna","name":"Landshuter Allee","weight_typical":84.582,"duration_typical":76.938,"duration":76.938,"distance":380.009,"driving_side":"right","weight":84.582,"mode":"driving","geometry":"uovyzAmwc_UmKgBqCa@kIm@eC[cF}@qHcAgBKsCM_XiAuTaA{Nq@eH_@oM}@_DU}HM}Oi@oZs@eDOqDA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2056.375},{"ssmlAnnouncement":"In a quarter mile, Turn right onto Königsplatz.","announcement":"In a quarter mile, Turn right onto Königsplatz.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right onto Königsplatz.","announcement":"Turn right onto Königsplatz.","distanceAlongGeometry":96.19}],"intersections":[{"lanes":[{"indications":["left","straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[11.537175,48.151635],"geometry_index":17557,"admin_index":5,"weight":8.648,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":3.248,"turn_weight":7,"duration":4.715,"bearings":[0,100,180,289],"out":1,"in":2,"entry":[true,true,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[98,180,280,358],"duration":8.418,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.449,"geometry_index":17559,"location":[11.537321,48.151617]},{"entry":[true,false,true],"in":1,"bearings":[107,275,297],"duration":6.898,"turn_weight":0.75,"turn_duration":0.015,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.492,"geometry_index":17564,"location":[11.538158,48.151531]},{"entry":[true,true,false],"in":2,"bearings":[106,196,287],"duration":3.121,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.992,"geometry_index":17566,"location":[11.538994,48.151358]},{"entry":[true,true,false,false],"in":3,"bearings":[18,106,197,286],"duration":12.172,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":14.688,"geometry_index":17567,"location":[11.539323,48.151297]},{"entry":[true,true,false],"in":2,"bearings":[106,197,286],"duration":8.258,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.781,"geometry_index":17568,"location":[11.540583,48.15105]},{"entry":[true,true,false],"in":2,"bearings":[106,199,286],"duration":0.836,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.434,"geometry_index":17569,"location":[11.541294,48.15091]},{"entry":[true,true,false,false],"in":3,"bearings":[18,107,191,286],"duration":4.758,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.348,"geometry_index":17570,"location":[11.541369,48.150896]},{"entry":[true,true,false],"in":2,"bearings":[107,196,287],"duration":9.07,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.695,"geometry_index":17572,"location":[11.541795,48.150807]},{"entry":[true,true,false],"in":2,"bearings":[18,107,287],"duration":4.848,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":5.945,"geometry_index":17573,"location":[11.542728,48.150613]},{"entry":[true,true,false],"in":2,"bearings":[106,196,287],"duration":5.492,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.656,"geometry_index":17574,"location":[11.543225,48.150511]},{"entry":[true,true,false],"in":2,"bearings":[14,106,286],"duration":10.375,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":12.164,"geometry_index":17575,"location":[11.543716,48.150419]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[11.544646,48.150245],"geometry_index":17577,"admin_index":5,"weight":15.113,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":14.281,"bearings":[17,107,204,286],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[15,106,287],"duration":5.746,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":7.086,"geometry_index":17578,"location":[11.545616,48.150043]},{"entry":[true,true,false],"in":2,"bearings":[106,194,286],"duration":3.605,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.641,"geometry_index":17579,"location":[11.546064,48.149955]},{"entry":[true,true,false],"in":2,"bearings":[15,108,286],"duration":2.406,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.262,"geometry_index":17580,"location":[11.54639,48.149891]},{"entry":[true,true,false],"in":2,"bearings":[106,199,288],"duration":1.672,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.398,"geometry_index":17582,"location":[11.546622,48.149841]},{"entry":[false,true,false,false],"in":3,"bearings":[17,106,196,286],"duration":2.707,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":4.105,"geometry_index":17583,"location":[11.546764,48.149813]},{"entry":[true,true,false],"in":2,"bearings":[13,107,286],"duration":0.406,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.961,"geometry_index":17585,"location":[11.546993,48.149769]},{"entry":[true,true,false],"in":2,"bearings":[15,106,287],"duration":11.473,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":13.672,"geometry_index":17586,"location":[11.547032,48.149761]},{"entry":[false,true,true,true,false],"in":4,"bearings":[20,106,182,232,286],"duration":6.207,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":8.129,"geometry_index":17588,"location":[11.547934,48.149585]},{"entry":[true,false,false],"in":2,"bearings":[106,224,286],"duration":1.207,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.879,"geometry_index":17589,"location":[11.54833,48.149507]},{"entry":[true,true,false],"in":2,"bearings":[106,200,286],"duration":2.008,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.801,"geometry_index":17590,"location":[11.548402,48.149493]},{"entry":[true,true,false],"in":2,"bearings":[18,106,286],"duration":3.191,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":4.164,"geometry_index":17591,"location":[11.548529,48.149468]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.548832,48.149409],"geometry_index":17592,"admin_index":5,"weight":2.273,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":3.113,"bearings":[17,107,196,286],"out":1,"in":3,"entry":[false,true,false,false]},{"entry":[true,false,false],"in":2,"bearings":[106,201,287],"duration":1.305,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.98,"geometry_index":17593,"location":[11.548936,48.149388]},{"entry":[true,true,false],"in":2,"bearings":[14,107,286],"duration":5.793,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":7.152,"geometry_index":17594,"location":[11.549064,48.149363]},{"entry":[true,true,false],"in":2,"bearings":[18,107,287],"duration":4.25,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":5.379,"geometry_index":17596,"location":[11.549643,48.149247]},{"entry":[false,true,false,false],"in":3,"bearings":[17,106,197,287],"duration":8.898,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":11.211,"geometry_index":17597,"location":[11.550066,48.14916]},{"entry":[true,true,false],"in":2,"bearings":[107,199,286],"duration":5.047,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.297,"geometry_index":17598,"location":[11.551016,48.148973]},{"entry":[true,true,false],"in":2,"bearings":[107,191,287],"duration":3.742,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.793,"geometry_index":17599,"location":[11.551563,48.148863]},{"entry":[true,true,false],"in":2,"bearings":[107,193,287],"duration":6.391,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.84,"geometry_index":17600,"location":[11.551928,48.14879]},{"entry":[true,true,false],"in":2,"bearings":[18,107,287],"duration":8.469,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":10.23,"geometry_index":17601,"location":[11.552426,48.14869]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.553026,48.148566],"geometry_index":17602,"admin_index":5,"weight":2.926,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1.5,"duration":3.25,"bearings":[15,107,199,287],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[15,107,287],"duration":5.098,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.352,"geometry_index":17603,"location":[11.553159,48.148539]},{"entry":[true,true,false],"in":2,"bearings":[106,196,287],"duration":1.012,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.641,"geometry_index":17604,"location":[11.553694,48.148432]},{"entry":[false,true,false],"in":2,"bearings":[17,106,286],"duration":2.984,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.926,"geometry_index":17605,"location":[11.553793,48.148413]},{"entry":[true,true,false],"in":2,"bearings":[107,197,286],"duration":3.855,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.828,"geometry_index":17606,"location":[11.554108,48.148351]},{"entry":[true,true,false],"in":2,"bearings":[105,193,287],"duration":14.777,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":17.105,"geometry_index":17607,"location":[11.554505,48.148272]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.55557,48.148084],"geometry_index":17609,"admin_index":5,"weight":3.227,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":1,"duration":2,"bearings":[34,103,215,285],"out":1,"in":3,"entry":[false,true,false,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.555709,48.148063],"geometry_index":17610,"admin_index":5,"weight":3.605,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.879,"bearings":[27,103,208,283],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,100,201,283],"duration":1.895,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.105,"geometry_index":17611,"location":[11.555877,48.148038]},{"entry":[true,false],"in":1,"bearings":[100,280],"duration":7.633,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.086,"geometry_index":17613,"location":[11.556043,48.148018]},{"entry":[true,false],"in":1,"bearings":[103,280],"duration":6.91,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.277,"geometry_index":17614,"location":[11.556747,48.147933]},{"entry":[true,false,false],"in":2,"bearings":[103,191,283],"duration":0.871,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.473,"geometry_index":17615,"location":[11.557375,48.147836]},{"entry":[true,true,false],"in":2,"bearings":[103,189,283],"duration":1.16,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.797,"geometry_index":17616,"location":[11.557451,48.147824]},{"entry":[true,true,false],"in":2,"bearings":[13,106,283],"duration":1.359,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.02,"geometry_index":17617,"location":[11.557559,48.147808]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":4.949,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.07,"geometry_index":17618,"location":[11.557631,48.147794]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.557914,48.14774],"geometry_index":17619,"admin_index":5,"weight":14.422,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":0.5,"duration":12.383,"bearings":[106,197,286],"out":0,"in":2,"entry":[true,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.558631,48.147602],"geometry_index":17622,"admin_index":5,"weight":3.531,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":2.258,"bearings":[6,105,187,286],"out":1,"in":3,"entry":[false,true,false,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.558761,48.147579],"geometry_index":17623,"admin_index":5,"weight":8.93,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":7,"duration":1.723,"bearings":[7,104,193,285],"out":1,"in":3,"entry":[false,true,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[104,284],"duration":1.715,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.43,"geometry_index":17625,"location":[11.558898,48.147557]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.559027,48.147535],"geometry_index":17626,"admin_index":5,"weight":8.918,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.009,"turn_weight":7,"duration":1.715,"bearings":[109,182,284,356],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[111,173,289,351],"duration":4.555,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.117,"geometry_index":17628,"location":[11.559142,48.147509]},{"entry":[true,false,false],"in":2,"bearings":[112,258,291],"duration":5.504,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.68,"geometry_index":17631,"location":[11.559449,48.147432]},{"entry":[true,true,false],"in":2,"bearings":[23,112,292],"duration":0.957,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.566,"geometry_index":17632,"location":[11.559813,48.147336]},{"entry":[true,false,false],"in":1,"bearings":[112,292,336],"duration":4.934,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.043,"geometry_index":17633,"location":[11.559879,48.147318]},{"entry":[true,false],"in":1,"bearings":[113,292],"duration":4.168,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.191,"geometry_index":17634,"location":[11.560201,48.147233]},{"entry":[true,true,false],"in":2,"bearings":[113,204,293],"duration":0.945,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.555,"geometry_index":17635,"location":[11.560471,48.147156]},{"entry":[true,true,false],"in":2,"bearings":[112,206,293],"duration":13.559,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":15.746,"geometry_index":17636,"location":[11.560548,48.147134]},{"entry":[false,true,false,false],"in":3,"bearings":[23,114,200,292],"duration":2.336,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.621,"geometry_index":17637,"location":[11.56135,48.146918]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"secondary"},"location":[11.56148,48.146879],"geometry_index":17638,"admin_index":5,"weight":2.656,"is_urban":true,"traffic_signal":true,"turn_duration":2.022,"turn_weight":1,"duration":3.496,"bearings":[23,111,201,294],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[8,114,200,291],"duration":6.062,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":7.812,"geometry_index":17639,"location":[11.56159,48.146851]},{"entry":[true,false],"in":1,"bearings":[114,294],"duration":0.98,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.605,"geometry_index":17640,"location":[11.562047,48.146716]},{"entry":[true,true,false],"in":2,"bearings":[113,204,294],"duration":5.91,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.129,"geometry_index":17641,"location":[11.562121,48.146694]},{"entry":[true,true,false],"in":2,"bearings":[113,201,293],"duration":2.297,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.078,"geometry_index":17642,"location":[11.562571,48.146567]},{"entry":[false,true,false,false],"in":3,"bearings":[77,112,151,293],"duration":2.297,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.578,"geometry_index":17643,"location":[11.562748,48.146518]},{"entry":[true,true,false,false],"in":3,"bearings":[23,115,196,292],"duration":9.266,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":11.414,"geometry_index":17644,"location":[11.562926,48.146469]},{"bearings":[92,129,295],"entry":[false,true,false],"in":2,"turn_weight":6.5,"turn_duration":0.018,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":17645,"location":[11.563588,48.146265]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Königsplatz"}],"type":"turn","modifier":"right","text":"Königsplatz"},"distanceAlongGeometry":2073.041}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Nymphenburger Straße.","modifier":"right","bearing_after":100,"bearing_before":0,"location":[11.537175,48.151635]},"speedLimitSign":"vienna","name":"Nymphenburger Straße","weight_typical":432.91,"duration_typical":331.398,"duration":331.398,"distance":2073.041,"driving_side":"right","weight":432.91,"mode":"driving","geometry":"ed}yzAmpd_URqCNqCJwD\\cHh@_KpA{JDqLLiAjI}p@xBqSlNwmAvGmk@ZuCd@sDjC_TbKiy@jEa^vDu]nEya@jCiVrKs{@nD_[~BkSVkBjAcJv@{GPaBdAgJNmAfIgs@VcCzCwWZoCp@}FtB}Qh@oEp@_Gx@eHlD_ZlDmYtJkz@zEea@pCyUfEc^vFod@t@iGtEm`@d@eEzBuR|CyWnIiz@f@gFh@uGp@oITwDPsChD_k@`Egf@VwC^wEZoCjBuPdFad@TwBV_Cl@cG`@gEHiAj@aGHm@h@wDT}ARqAnBuL~DwUb@cChDcSxC{Oj@yCnLcq@lAcGv@{ElGq[j@sC|Fc[`BaJ`BcJvKkh@vA_E`AuBr@kA"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Enter Karolinenplatz and take the 7th exit onto Barer Straße.","announcement":"In a quarter mile, Enter Karolinenplatz and take the 7th exit onto Barer Straße.","distanceAlongGeometry":407.162},{"ssmlAnnouncement":"Enter Karolinenplatz and take the 7th exit onto Barer Straße.","announcement":"Enter Karolinenplatz and take the 7th exit onto Barer Straße.","distanceAlongGeometry":111.111}],"intersections":[{"mapbox_streets_v8":{"class":"secondary"},"location":[11.563781,48.146162],"geometry_index":17648,"admin_index":5,"weight":6.48,"is_urban":true,"traffic_signal":true,"turn_duration":2.1,"turn_weight":1,"duration":6.973,"bearings":[23,168,206,309],"out":1,"in":3,"entry":[false,true,false,false]},{"entry":[true,true,true,false],"in":3,"bearings":[20,157,194,349],"duration":2.242,"turn_weight":1,"turn_duration":0.041,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.477,"geometry_index":17652,"location":[11.563844,48.145962]},{"entry":[false,true,false,false],"in":3,"bearings":[18,119,191,337],"duration":11.48,"turn_weight":1,"turn_duration":0.28,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":13.602,"geometry_index":17654,"location":[11.563901,48.145874]},{"entry":[true,true,false],"in":2,"bearings":[31,73,250],"duration":5.59,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.777,"geometry_index":17664,"location":[11.564591,48.145831]},{"entry":[true,false,true],"in":1,"bearings":[113,273,315],"duration":25.863,"turn_weight":0.75,"turn_duration":0.026,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":29.168,"geometry_index":17668,"location":[11.564994,48.145863]},{"entry":[false,true,false,false],"in":3,"bearings":[25,113,204,293],"duration":1.699,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.863,"geometry_index":17670,"location":[11.566508,48.14544]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.566603,48.145413],"geometry_index":17671,"admin_index":5,"weight":8.188,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":7,"duration":3.086,"bearings":[24,113,204,293],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,113,201,293],"duration":1.625,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.781,"geometry_index":17672,"location":[11.566683,48.14539]},{"entry":[true,false,false,false],"in":2,"bearings":[113,251,293,335],"duration":4.867,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.348,"geometry_index":17673,"location":[11.566791,48.145359]},{"entry":[false,true,false],"in":2,"bearings":[23,113,293],"duration":3.426,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":4.262,"geometry_index":17674,"location":[11.567123,48.145265]},{"entry":[false,true,false],"in":2,"bearings":[23,113,293],"duration":5.406,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":6.441,"geometry_index":17675,"location":[11.567354,48.145199]},{"entry":[true,false,false],"in":2,"bearings":[113,206,293],"duration":0.906,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.488,"geometry_index":17676,"location":[11.567729,48.145094]},{"entry":[true,true,false],"in":2,"bearings":[21,113,293],"duration":10.086,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":11.59,"geometry_index":17677,"location":[11.567794,48.145076]},{"entry":[false,false,true,false,false],"in":4,"bearings":[28,77,148,200,293],"duration":3.035,"turn_weight":2,"turn_duration":0.072,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":2,"weight":5.262,"geometry_index":17678,"location":[11.568488,48.144881]},{"bearings":[110,151,293,328],"entry":[false,true,false,false],"in":3,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":17680,"location":[11.568586,48.144778]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Barer Straße"}],"degrees":270,"driving_side":"right","type":"roundabout","modifier":"right","text":"Barer Straße"},"distanceAlongGeometry":423.829}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Königsplatz.","modifier":"right","bearing_after":168,"bearing_before":129,"location":[11.563781,48.146162]},"speedLimitSign":"vienna","name":"Königsplatz","weight_typical":111.59,"duration_typical":87.988,"duration":87.988,"distance":423.829,"driving_side":"right","weight":111.59,"mode":"driving","geometry":"cnryzAiox`U~BgArAWpAMhBOtAk@xAeAn@cA~@kCj@eCT}B\\uED{DKkCW{Bi@aCq@sBgAuEc@cD@iDh@aGpDuRzS}iAt@}Dl@_D|@wEzDwSbCmMpEmVb@aCdKkj@dDaDf@a@tBcB"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Barer Straße. Then Turn right onto Prinz-Ludwig-Straße.","announcement":"Exit the roundabout onto Barer Straße. Then Turn right onto Prinz-Ludwig-Straße.","distanceAlongGeometry":109.722}],"intersections":[{"entry":[false,true,false],"in":2,"bearings":[8,179,331],"duration":0.891,"turn_weight":5.75,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":6.684,"geometry_index":17681,"location":[11.568636,48.144719]},{"entry":[true,true,false],"in":2,"bearings":[163,258,359],"duration":5.777,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.061,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":6.289,"geometry_index":17682,"location":[11.568637,48.144679]},{"entry":[true,true,false],"in":2,"bearings":[140,237,335],"duration":0.348,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.061,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":0.316,"geometry_index":17686,"location":[11.568767,48.144456]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[11.568801,48.144429],"geometry_index":17687,"admin_index":5,"weight":1.457,"is_urban":true,"mapbox_streets_v8":{"class":"roundabout"},"traffic_signal":true,"turn_duration":2.033,"duration":3.359,"bearings":[133,169,320],"out":0,"in":2,"entry":[true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,112,208,313],"duration":2.734,"turn_duration":0.083,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":2.918,"geometry_index":17689,"location":[11.568871,48.144386]},{"entry":[false,true,false,false],"in":3,"bearings":[23,99,203,292],"duration":1.18,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":1.25,"geometry_index":17691,"location":[11.569049,48.144337]},{"entry":[true,false,false],"in":2,"bearings":[87,241,279],"duration":2.043,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":2.199,"geometry_index":17693,"location":[11.569123,48.144329]},{"entry":[true,true,false],"in":2,"bearings":[66,122,267],"duration":3.348,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.09,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":3.582,"geometry_index":17695,"location":[11.569254,48.144334]},{"entry":[true,false,false],"in":2,"bearings":[49,184,246],"duration":0.848,"turn_duration":0.066,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":0.859,"geometry_index":17698,"location":[11.56949,48.144403]},{"entry":[true,true,false],"in":2,"bearings":[40,68,229],"duration":1.145,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.038,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":1.219,"geometry_index":17699,"location":[11.569543,48.144434]},{"entry":[true,false,false,false],"in":2,"bearings":[22,113,220,293],"duration":2.145,"turn_duration":0.066,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":2.285,"geometry_index":17700,"location":[11.569611,48.144489]},{"entry":[true,false,false,false],"in":2,"bearings":[8,111,202,293],"duration":0.602,"turn_duration":0.048,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":0.609,"geometry_index":17702,"location":[11.569689,48.144615]},{"entry":[false,false,true],"in":1,"bearings":[151,188,350],"duration":6.133,"turn_duration":0.071,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":2,"weight":6.668,"geometry_index":17703,"location":[11.569697,48.144653]},{"bearings":[44,155,318],"entry":[true,false,true],"in":1,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.066,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":2,"geometry_index":17708,"location":[11.569572,48.144918]}],"rotary_name":"Karolinenplatz","bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Prinz-Ludwig-Straße"}],"type":"turn","modifier":"right","text":"Prinz-Ludwig-Straße"},"primary":{"components":[{"type":"text","text":"Barer Straße"}],"degrees":270,"driving_side":"right","type":"roundabout","modifier":"right","text":"Barer Straße"},"distanceAlongGeometry":159.153}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":7,"instruction":"Enter Karolinenplatz and take the 7th exit onto Barer Straße.","modifier":"slight right","bearing_after":179,"bearing_before":151,"location":[11.568636,48.144719]},"speedLimitSign":"vienna","name":"Barer Straße","weight_typical":36.574,"duration_typical":30.832,"duration":30.832,"distance":159.153,"driving_side":"right","weight":36.574,"mode":"driving","geometry":"}soyzAw~aaUnAA|B[nBm@pBqA|AgBt@cAr@eA`@eAz@iDd@yDFs@F_B?cCIaC[gDm@}C_AqC}@iBmBgCyB_BaC{@kAOqBAqBVkBr@eBjA{AbBi@v@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Prinz-Ludwig-Straße. Then You will arrive at your destination.","announcement":"Turn right onto Prinz-Ludwig-Straße. Then You will arrive at your destination.","distanceAlongGeometry":109.722}],"intersections":[{"mapbox_streets_v8":{"class":"street"},"location":[11.569544,48.144939],"geometry_index":17709,"admin_index":5,"weight":9.148,"is_urban":true,"traffic_signal":true,"turn_duration":2.032,"turn_weight":6.425,"duration":4.508,"bearings":[138,308,340],"out":2,"in":0,"entry":[false,true,true]},{"entry":[false,false,false,true],"in":1,"bearings":[32,160,213,345],"duration":2.711,"turn_weight":2,"turn_duration":0.01,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":3,"weight":4.969,"geometry_index":17710,"location":[11.569494,48.145029]},{"entry":[true,false,false,true,false],"in":2,"bearings":[23,118,165,244,290],"duration":10.527,"turn_weight":2,"turn_duration":0.088,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":13.484,"geometry_index":17712,"location":[11.569453,48.145133]},{"entry":[true,false,false,false,false],"in":3,"bearings":[23,115,139,203,262],"duration":3.785,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":6.156,"geometry_index":17713,"location":[11.569762,48.145614]},{"bearings":[23,203,291],"entry":[true,false,true],"in":1,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":17714,"location":[11.569874,48.145786]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Prinz-Ludwig-Straße"}],"type":"turn","modifier":"right","text":"Prinz-Ludwig-Straße"},"distanceAlongGeometry":117.315}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Barer Straße.","modifier":"slight right","bearing_after":340,"bearing_before":318,"location":[11.569544,48.144939]},"speedLimitSign":"vienna","name":"Barer Straße","weight_typical":37.637,"duration_typical":24.156,"duration":24.156,"distance":117.315,"driving_side":"right","weight":37.637,"mode":"driving","geometry":"uapyzAowcaUsDbBwBl@wAb@a]iRwI_F_GeD"},{"voiceInstructions":[{"ssmlAnnouncement":"You have arrived at your destination.","announcement":"You have arrived at your destination.","distanceAlongGeometry":69.444}],"intersections":[{"bearings":[23,114,203],"entry":[true,true,false],"in":2,"turn_weight":7,"turn_duration":2.208,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":17715,"location":[11.569957,48.145914]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"You will arrive at your destination"}],"type":"arrive","modifier":"straight","text":"You will arrive at your destination"},"distanceAlongGeometry":99.898},{"primary":{"components":[{"type":"text","text":"You have arrived at your destination"}],"type":"arrive","modifier":"straight","text":"You have arrived at your destination"},"distanceAlongGeometry":69.444}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Prinz-Ludwig-Straße.","modifier":"right","bearing_after":114,"bearing_before":23,"location":[11.569957,48.145914]},"speedLimitSign":"vienna","name":"Prinz-Ludwig-Straße","weight_typical":27.82,"duration_typical":21.137,"duration":21.137,"distance":99.898,"driving_side":"right","weight":27.82,"mode":"driving","geometry":"s~qyzAiqdaUJi@vUgjA"},{"voiceInstructions":[],"intersections":[{"bearings":[294],"entry":[true],"in":0,"admin_index":5,"geometry_index":17717,"location":[11.571182,48.145544]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"You have arrived at your destination.","bearing_after":0,"bearing_before":114,"location":[11.571182,48.145544]},"speedLimitSign":"vienna","name":"Prinz-Ludwig-Straße","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"ogqyzA{}faU??"}],"weight":41924.008,"duration":41743.523,"duration_typical":41743.523,"weight_typical":40073.801,"annotation":{"maxspeed":[{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,37,37,37,37,37,37,37,37,20,20,20,20,20,20,20,20,20,null,null,null,null,null,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,22,22,22,22,22,22,22,22,22,22,22,null,null,null,20,20,20,29,29,29,null,null,null,null,null,null,null,null,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,0,0,0,null,null,null,null,null,null,null,null,null,null,null,50,50,50,50,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,32,32,32,32,32,32,32,32,38,43,43,43,35,35,35,25,25,25,25,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,14,14,14,14,11,null,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,25,33,33,33,33,33,33,33,33,33,null,30,30,30,30,30,30,30,30,30,30,29,29,29,29,null,null,33,33,33,33,33,33,null,25,25,25,25,25,25,25,25,25,25,25,22,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,29,29,29,35,35,35,35,35,35,35,35,35,35,35,35,35,35,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,85,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,87,83,83,83,83,83,69,69,69,83,83,80,80,80,80,83,83,83,83,59,59,3,85,85,85,85,85,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,53,53,53,48,48,null,6,null,17,43,43,43,43,43,43,43,43,43,43,43,43,0,43,43,43,null,45,45,45,45,45,45,45,45,null,43,43,43,45,45,45,45,45,45,43,43,43,43,43,43,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,17,17,17,25,25,25,25,25,25,25,null,35,35,56,0,0,0,0,0,0,null,27,27,27,27,27,27,27,27,27,null,29,29,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,14,14,14,14,17,17,17,17,14,14,14,14,17,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,29,29,29,29,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,25,25,17,17,17,17,17,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,6,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,30,30,30,30,30,30,30,30,30,30,30,30,30,null,6,6,6,6,6,6,6,6,6,6,6,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,35,35,35,35,35,35,35,35,35,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,12,12,12,12,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,12,35,35,35,35,35,35,35,35,35,35,35,6,22,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,19,19,null,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,19,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,29,29,29,27,27,27,27,27,27,null,27,27,27,14,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,32,32,32,32,17,43,43,43,43,43,43,43,43,43,43,43,43,35,35,35,35,35,35,35,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,14,6,6,6,null,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,12,6,6,6,6,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,35,35,35,35,35,35,35,35,35,35,27,27,27,27,27,27,27,27,27,17,0,0,0,0,0,0,20,22,22,22,37,37,37,37,37,37,37,37,37,37,37,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,37,37,37,37,37,37,37,37,37,37,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,11,11,11,11,11,11,14,14,17,17,17,17,17,17,17,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,41,41,41,25,25,25,25,25,25,25,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,0,0,0,0,0,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,27,27,27,27,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,11,11,11,11,11,11,11,11,11,11,11,null,null,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,48,48,48,48,48,48,48,48,48,48,48,48,48,null,35,35,35,35,35,35,35,null,null,null,null,null,27,27,27,27,24,24,24,24,24,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,27,27,27,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,66,66,66,66,66,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,37,37,37,37,37,37,37,37,37,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,32,32,32,12,12,null,null,null,0,32,32,37,37,37,37,37,37,37,37,37,37,37,25,25,null,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,20,20,29,null,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,12,12,12,12,12,null,12,12,12,12,12,12,12,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,null,8,8,0,0,0,null,12,12,12,12,12,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,null,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,6,6,6,6,null,null,null,43,43,43,43,43,43,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,20,20,20,20,20,20,20,20,20,20,null,null,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,null,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,6,6,6,6,6,6,6,6,22,22,22,22,22,22,22,22,22,22,22,22,22,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,56,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,46,46,46,46,46,46,46,46,46,46,46,46,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,14,14,14,14,14,14,14,14,14,14,null,null,null,null,46,46,46,46,46,46,46,46,46,46,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,null,0,0,0,0,0,null,6,6,null,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,12,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,32,32,32,32,32,32,32,32,32,32,33,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,null,null,50,50,50,50,50,50,50,50,50,50,50,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,null,null,0,0,0,0,0,0,null,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,11,11,11,6,22,22,22,27,27,27,27,27,27,27,27,30,30,30,30,30,30,30,30,30,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,46,46,46,46,46,46,46,46,46,46,46,46,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,null,null,null,null,null,50,50,50,50,50,50,50,50,50,50,50,50,20,20,20,20,20,20,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,null,null,0,0,null,null,null,0,0,0,0,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,37,37,37,37,37,37,37,37,37,37,37,null,38,38,38,38,38,38,38,38,38,38,6,6,6,6,6,6,6,6,6,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,6,6,0,null,null,32,32,32,32,32,32,22,22,22,22,22,22,22,22,30,30,30,30,35,35,35,35,35,38,38,38,38,38,38,38,38,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,12,12,12,20,20,20,20,20,20,20,12,null,17,17,17,17,17,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,11,11,11,11,11,11,11,11,11,11,11,20,20,20,12,12,12,12,12,12,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,null,6,6,6,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,12,12,19,19,19,19,19,16,16,0,0,0,0,0,0,0,0,0,null,19,19,19,19,19,19,19,12,12,12,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,35,35,35,35,null,19,19,19,19,19,null,6,6,6,6,6,6,null,6,6,38,38,38,38,38,38,38,0,null,33,33,33,0,24,0,null,35,35,35,6,40,40,40,40,40,40,40,40,40,40,40,19,40,40,40,40,40,27,41,41,41,41,41,41,41,null,null,0,0,0,0,11,11,11,0,40,40,40,null,null,null,38,38,25,25,null,20,20,20,37,37,37,37,37,40,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,20,25,25,25,25,25,25,25,20,20,24,24,null,null,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,14,14,null,null,0,0,0,3,3,3,3,9,9,9,9,9,9,9,9,9,9,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,6,6,6,6,6,6,6,6,6,null,null,null,0,0,6,6,6,6,6,6,9,9,null,null,9,9,9,9,9,9,9,null,null,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,1,1,1,1,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,53,53,53,53,53,53,53,53,53,53,53,50,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,37,27,0,0,0,0,0,0,0,0,0,null,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,41,41,41,41,3,3,3,3,3,3,3,3,3,3,3,3,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,12,12,12,12,0,0,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,12,12,12,12,12,12,12,12,12,12,12,12,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,50,50,50,50,50,50,32,32,32,32,32,32,32,22,0,0,0,0,0,0,0,0,0,0,0,9,9,null,22,22,17,17,0,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,0,0,null,20,20,8,8,8,8,8,8,8,8,null,null,null,null,null,null,8,8,8,8,8,8,8,null,null,null,8,8,8,8,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,0,0,0,null,null,null,null,null,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,8,8,8,8,8,null,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,8,8,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,14,14,14,14,14,14,null,22,22,22,22,22,22,22,22,null,17,17,17,17,17,17,25,null,27,null,8,8,8,8,8,8,8,8,8,8,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,null,null,null,null,null,null,null,null,null,11,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,27,27,27,27,null,30,30,30,30,30,30,30,30,null,0,8,8,8,null,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,54,54,54,54,54,54,54,54,54,54,54,54,54,null,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,8,8,8,22,22,22,22,22,22,22,22,22,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,null,null,null,null,null,null,null,38,38,38,null,null,38,38,38,38,38,38,null,0,0,0,0,0,0,0,0,0,null,33,33,33,33,33,33,33,30,30,null,null,32,32,null,0,0,0,0,0,null,17,17,17,17,17,17,17,17,25,25,25,25,25,25,25,25,25,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,null,27,27,27,27,27,27,38,null,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,0,null,0,0,0,22,22,22,22,22,22,22,22,22,null,null,null,null,null,null,19,19,19,19,19,19,19,19,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,null,null,null,null,22,22,22,22,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,null,null,19,19,19,19,19,19,19,19,11,11,0,0,1,1,1,1,1,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,3,3,3,3,null,null,null,null,1,1,1,1,1,1,1,1,0,0,0,14,14,14,14,14,14,14,50,50,45,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,14,14,14,14,14,14,14,14,14,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,24,24,24,24,24,24,24,24,24,24,33,33,33,33,33,33,33,33,33,33,33,33,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,20,20,20,20,20,20,20,20,20,20,38,38,38,38,35,35,35,35,35,35,35,35,32,32,32,32,32,32,32,30,30,30,30,30,30,30,30,30,null,17,17,null,null,27,29,29,29,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,null,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,20,20,20,20,20,20,20,20,20,30,29,null,27,27,27,27,27,25,null,null,null,null,null,null,null,8,8,8,8,null,14,null,null,17,17,17,17,17,17,17,17,17,17,17,17,null,43,43,43,43,43,43,43,43,43,43,43,43,43,38,54,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,50,37,37,37,37,37,37,37,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,null,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,20,20,20,20,25,25,25,25,25,25,25,25,25,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,8,null,0,0,null,null,29,29,29,29,29,29,29,29,29,29,29,29,29,27,27,null,37,37,37,37,null,40,27,27,27,27,27,27,27,27,27,4,4,4,4,4,32,32,32,32,32,32,33,33,37,37,37,37,35,35,null,null,null,35,35,35,35,32,32,32,32,32,24,24,24,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,40,40,40,40,40,40,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,14,14,14,9,9,9,9,9,null,null,null,null,27,27,27,27,null,null,0,0,0,0,null,null,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,null,20,20,20,20,20,20,20,20,20,20,25,24,24,24,24,24,24,24,null,14,14,14,14,14,14,8,8,8,8,8,8,8,8,null,0,0,null,null,null,null,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,null,null,null,48,48,59,59,59,59,59,59,59,59,59,59,59,59,null,64,64,64,64,64,64,64,64,64,64,64,19,19,19,19,null,null,12,null,null,null,null,9,9,9,9,14,14,14,14,14,14,14,14,25,25,25,25,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,4,null,8,8,8,8,8,8,8,8,29,29,29,29,29,29,4,4,4,4,4,6,6,6,6,1,1,1,1,1,1,1,1,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,1,1,1,35,4,4,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,6,6,6,6,6,6,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,null,null,null,11,11,11,11,11,11,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,null,12,12,12,12,null,8,8,8,8,8,8,8,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,4,4,4,4,4,4,4,4,null,8,8,8,8,8,8,35,35,35,35,35,35,35,35,35,35,35,null,null,40,40,40,40,40,40,40,40,40,null,null,null,null,null,null,38,38,38,38,38,38,38,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,0,0,0,0,0,6,6,null,40,40,40,54,54,54,null,48,48,48,48,48,43,43,43,43,null,54,54,46,46,46,46,46,46,58,51,51,51,51,51,37,37,37,37,37,37,37,17,17,17,29,29,29,30,30,null,22,22,null,24,30,33,33,33,33,null,null,37,37,null,null,33,33,33,33,33,22,22,22,27,20,25,25,25,33,33,33,33,33,33,33,33,33,33,33,null,46,38,38,38,29,29,29,null,59,59,59,59,59,14,1,1,1,1,35,null,null,null,null,null,24,24,17,17,17,17,17,17,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,29,29,29,29,29,29,29,29,29,29,29,30,30,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,35,30,null,null,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,32,32,32,32,32,38,38,38,38,38,38,37,37,37,37,35,35,35,35,35,35,32,32,32,29,29,27,27,27,27,35,35,35,35,35,35,35,35,35,35,35,35,35,32,32,32,32,32,32,32,32,null,33,33,33,33,33,33,33,33,33,33,27,27,null,38,38,48,48,48,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,83,83,83,35,35,35,25,25,25,25,25,null,9,9,null,8,8,8,8,null,null,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,null,0,0,0,0,0,0,null,null,null,38,38,38,38,38,38,38,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,41,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,37,37,37,37,37,37,37,37,37,37,37,37,37,32,32,32,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,37,37,25,37,37,37,37,null,null,null,null,null,null,null,null,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,38,35,35,35,35,35,35,35,35,35,35,35,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,37,37,37,37,37,37,37,37,37,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,38,38,38,38,null,37,37,37,33,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,33,33,33,33,33,33,38,38,null,43,43,43,43,43,43,43,43,43,43,43,30,30,30,30,30,30,30,30,null,40,40,27,27,24,24,24,14,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,0,0,0,0,20,20,20,29,29,29,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,33,33,33,33,0,12,12,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,null,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,43,43,43,43,43,43,43,43,43,43,null,41,41,41,41,41,41,41,41,41,41,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,45,45,45,45,45,45,45,45,41,41,41,41,41,41,69,69,69,69,69,null,0,0,0,0,0,0,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,null,12,12,12,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,27,27,27,27,27,27,27,27,null,33,33,33,33,25,25,25,33,33,33,33,33,33,33,35,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,35,35,35,35,35,35,null,38,38,38,38,38,38,38,38,38,33,33,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,40,40,40,40,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,32,32,32,32,32,32,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,null,27,41,41,41,41,41,41,41,41,41,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,null,null,null,46,46,46,46,null,48,48,48,48,null,46,46,46,46,null,51,51,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,null,null,22,22,22,22,22,22,22,12,12,12,12,12,12,12,12,12,12,12,12,25,25,20,20,20,20,20,20,20,33,25,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,16,16,16,16,16,16,16,16,16,16,16,16,16,6,0,0,0,17,30,30,30,30,30,30,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,14,14,14,14,14,14,14,14,14,14,14,14,66,66,66,66,66,66,66,66,66,66,66,66,14,14,14,14,14,38,38,38,38,38,38,38,38,38,38,38,null,38,62,62,62,62,62,62,62,62,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,9,null,null,12,12,6,6,0,0,0,8,8,null,null,null,null,null,null,null,null,null,null,0,0,null,null,17,17,17,17,11,6,null,0,null,6,6,6,6,6,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,11,11,11,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"speed":[4.8,5,5,5,5,3.4,3.3,2.8,5,5,5,5,5,5,5,5.5,5.8,5.8,5,5,5,5,5,5,5,5,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.5,5.5,5.5,5.5,9.7,4.4,6.1,6.1,6.1,3.6,3.6,3.6,3.6,6.2,6.3,6.3,6.3,6.3,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,4.3,4.3,3.3,3.3,3.3,3.3,3.3,3.9,3.9,3.9,5.6,5.6,5.5,5.5,5.5,5.5,5.5,6.1,6.1,6.1,6.1,6.1,4.7,6.2,6.2,7.8,8.1,5.7,9.1,7.2,7.2,9.4,9.4,7.5,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,5.9,13.8,13.8,13.8,13.8,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,9.7,11.2,11.2,11.2,11.2,11.2,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,12,12,12,12,12,12,12,12,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.3,13.1,13.1,13.1,13.1,17.2,17.2,17.2,17.2,17.2,17.2,17.2,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.6,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.5,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.4,19.4,23.5,23.5,24.7,23.9,23.9,23.9,24,24,24,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.2,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,26.3,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25,25,25,23,23,24.4,24.4,24.4,23.6,23.6,23.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,22.7,22.7,22.7,22.7,24,24,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.3,24.4,25.3,24.3,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.3,24.3,24.4,24.4,24.4,24.4,25.1,25.3,25.3,25.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.5,25.5,25.3,25.6,25.6,25.6,25.6,25.6,25.6,26,26,26,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.7,25.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,27.4,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,27.5,27.5,27.5,27.4,27.4,27.4,27.4,26.6,26.6,25.5,25.5,25.5,25.5,26,24.5,24.5,24.5,24.5,26.3,26.3,26.3,26.3,26.5,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,12.7,12.8,12.8,25.3,25.3,25.3,25.3,25.3,25.3,25.9,25.4,26.1,24.4,24.4,24.5,24.8,24.8,24.8,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.4,29.7,29.7,29.5,30.6,30.6,30.6,30.6,30.7,30.6,30.6,30.6,28.3,28.3,28.3,28.3,28.7,28.1,28.6,28.6,27.8,27.8,27.8,27.8,27.8,27.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30,30,30,30,30,30,30,30,30,30.1,28.9,28.9,28.9,28.9,31.4,29.4,32,32,32,32,32,32,30.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30,30,30,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.5,32.2,32.2,32.2,32.1,32.3,30.8,30.5,30.5,30,30,29.9,28.6,28.6,28.6,21.5,21.1,21.1,21.1,8.3,8.2,4.8,16.6,16.7,16.7,16.7,16.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.8,30.8,30.9,30.7,30.9,31.9,32.2,31.5,32.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,33,33,33,32.5,33,33,33,33,33,33,33,33,32.3,32.8,32.8,32.8,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,33.2,33.3,33.3,33.3,33.3,33.3,33.3,33.2,33,33,33,33,33,33,33,33,33,19.4,19.4,19.4,19.4,19.4,19.4,19.4,33.1,33.1,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,32.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,34.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.7,31.3,32.7,32.6,32.9,32.9,33.1,32.9,33.3,32.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.6,33.6,33.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30.5,30.5,25,25,25,25,25,25,25,25,25,25.2,25,25,25,25,25,25,25,25,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,38.7,36.1,36.1,35.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,24.9,24.9,24.9,33.9,33.9,33.9,33.9,33.9,33.9,25,25,25,25,25,25,25,25.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32,31.5,32.5,33.6,33.6,33.6,33.6,33.6,33.6,33.4,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.5,32.7,32.7,33.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,32.4,33.3,33.3,32.2,33.6,33.6,33.6,33.6,33.6,33.6,33.8,33.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,32.2,32.2,32.2,32.2,33.3,33.3,33.3,33.4,33.9,33.9,33.9,33.9,34.1,32.5,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,34.4,33.9,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,39,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.2,32,32,32,32,31.7,32.2,32.2,32.2,32.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,34.2,32.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.9,37.1,32,32,32,32,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,31.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,34.4,36.3,36.3,36.2,31.1,31.1,31.1,31.1,31.1,36,36,36,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.3,31.9,31.9,31.9,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,32.2,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.7,32.2,32.2,32.4,31.5,31.9,31.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.8,32.8,33.3,33,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.4,32.2,32.2,30,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.7,36.1,36.1,36.1,36.1,36.3,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,32.7,32.8,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.6,32.5,32.5,32.5,32.5,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,32.6,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37,36.3,36.3,34.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.9,31.4,31.4,31.4,29.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,29.4,29.4,29.4,29.4,29.4,28,28.2,28.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,19.6,18.4,20,20,20,20,20,21.4,22.6,22.6,22.6,26.3,26.3,26.3,26.3,26.3,26.5,26.5,26.5,26.3,26.3,26.3,29.7,30.1,30.1,30.1,29.8,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,30.4,31.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,30.7,30.9,30.9,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.7,30.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30.5,30.5,30.5,25.1,25.1,25,25,25,25,25,25,25,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,30.9,29.8,30,30,30,30,30,30,30,30,30,30.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.2,30.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.9,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30.6,30.6,30.6,30.6,30.6,30.6,29.9,29.9,30.3,30.3,30.3,30.3,29.3,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.9,29.4,29.4,29.4,29.4,29.4,31,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.6,30.8,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,32.1,32.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.2,31.6,31.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36.1,31,25.7,25.7,25.6,24.5,24.8,24.8,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.8,16.9,16.9,23.4,23.4,23.4,25.5,25.4,25.4,25.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.1,27.1,27.5,27.5,28.2,27.4,27.4,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,26.9,26.9,26.9,26.9,27.7,27.7,28,28,26.7,26.7,26.7,27.4,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29,28.6,28.6,28.6,28.6,28.6,28.6,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.6,27.7,27,27,27,27,27,27,27,27,27,27,27,27,27,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,26.9,30.6,30.6,30.6,30.6,30.6,25,25,25,25.2,19.8,19.7,19.7,19.7,19.8,19.8,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,22.2,22.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.1,27.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,27.9,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,27.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.9,25.9,25.9,25.9,25.9,25.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,26.9,24.9,24.9,25.1,24.8,28.9,28.9,28.9,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,28.3,28.3,28.3,28.9,27,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,27,26.9,26.9,27,27,27,27,27,27,27,27,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23.9,23.9,22.5,22.5,22.5,24.3,22.5,22.5,23.5,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.7,22.7,21.7,21.4,21.3,21.3,23.5,23.3,23.3,23.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,25.3,24.2,24.2,23.9,23.9,23.9,23.9,23.9,23.9,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.9,24.9,24.9,24.9,24.7,24.7,24.8,25,25,23.9,24.2,24.2,24,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24.1,24.1,24.1,24.1,24.1,24.1,24.3,24.3,23.6,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.5,24.5,24.5,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,25.3,25.2,25.1,23.4,23.5,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,25.4,25.4,25.6,25.6,25.6,25.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,25.6,25.6,26.1,26.3,26.1,26.1,26.1,25.4,25.5,25.5,25.5,25.5,25.5,14.1,14.2,14.2,14.2,14.2,14.2,14.2,14.1,9.2,9.2,19.5,19.5,19.5,19.5,19.5,19.5,19.6,19.5,19.5,19.5,19.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30,30,30,30,30,30,30,30,29.7,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.2,31.2,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.3,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.2,32.5,32.5,32.5,33.8,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,35.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,33.1,32.5,32.5,32.5,32.5,32,31.8,31.4,32.2,32.2,32.2,32.2,32.2,32.2,31.6,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,28.8,30.3,30.8,30.8,30.8,30.8,30.8,31.5,31.5,32,32,32,32,31.7,30.3,30.3,30.3,30.3,30.3,24.9,24.9,24.9,25,25,25,25,25,25,25,25,35.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.4,32.8,32.8,32.8,32.4,33.1,33.1,33.1,33,32.5,32.5,32.5,32.5,32.1,32.1,33.1,33.1,33.1,33.1,33.1,32.5,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.6,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31,32,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.3,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.2,36.2,36.1,36.1,36.1,36.1,36.1,33,33,33,33,31.9,32.8,32.9,32.9,32.9,32.9,31.9,32.1,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,32.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.3,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.5,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,33.4,33.4,33.4,33.4,33,33,33,33,33,33,33,33,33,33,32.8,32.8,32.8,32.8,32.7,33.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.3,32.3,32.9,32.9,32.9,32.8,32.8,32.8,32.8,32.8,33.1,32.8,32.8,32.8,32.6,32.6,32.6,32.3,32.4,32.4,32.4,32.4,33.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,32.3,32.3,32.3,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32,32,32,30.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.5,31.5,31.5,31.5,31.3,30.9,30.9,30.9,30.9,30.9,31.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.7,30.7,30.7,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.3,29.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.1,29.1,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.8,28,28,28,28,28,27.8,27.8,34.9,28,28,28,26.7,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.1,28.1,28.1,28.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.9,35.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.7,36.2,36.2,36.2,36.2,36.2,36.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.7,36.1,35.8,35.8,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.1,32.1,32.1,32.3,29.4,29.4,29.4,29.4,29.4,29.3,29.3,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,32,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,30.6,30.6,30.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.3,29.6,29.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,29.1,29.1,29.3,29.3,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.4,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,22.2,22.2,23.4,10.8,10.9,10.9,10.3,10.3,18,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.3,19.9,19.5,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.5,31.6,28.4,28.4,28.4,28.4,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,30.3,28.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.7,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,28.9,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,28,28,28,28.1,28.1,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.9,28,28,27.9,27.9,26.4,27,27,27,26.8,27,27,26.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.5,28.3,28.3,28.8,28.1,28.1,28.1,28.1,28.1,28.1,28.5,28.5,28.5,28,28.3,27,27,27,27,27,27,27,27,26.9,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.1,28.1,28,28.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.3,28.7,28.7,28.4,28.8,28.8,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.9,29.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.8,28.7,27.7,27.7,27.7,27.7,27,27,27,27,27,27,27,27,27,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.6,30.2,25.5,25.5,25.5,25.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.9,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26.7,28.1,28.1,28.1,28.6,28.6,28.6,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.5,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,27.2,27.2,25.9,25.9,22.3,22.3,22.3,8.6,8.6,7.5,7.5,15.9,20.8,20.9,23.9,27,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,28.5,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,27.9,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36.1,27.2,27.2,26.8,24.6,25.4,26.3,26.4,26.4,26.4,26.4,26.4,28.3,28.3,28.2,28.2,28.2,28.3,28.3,28.3,28.6,28.2,26.2,22.2,22.2,22.2,31.6,30.6,31,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.1,29.1,28.9,28.9,28.9,29.3,29.3,29.1,29.1,29.1,29.7,28.7,29.1,30.3,29.2,29.2,29.2,29.1,29.2,28.8,27.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.6,28.6,28.6,28.4,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29,29,29,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.3,29.5,29.5,29.5,29.5,29.9,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,28.6,29.2,28.6,28.6,28.6,28.1,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,30,29.4,28,28.1,28.5,27.8,27.8,27.8,27.8,27.8,27.8,28,27.7,28.1,27.8,27.8,27.8,27.2,27.2,27.2,27.2,26.3,26.3,26.3,26.3,26.4,26.4,26.4,26.4,26.4,27,27.5,25.6,25.6,25.6,25.6,25.6,25.6,25.7,25.7,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,28,28,28,28,28.3,28.3,28.9,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28.6,27.4,28,28.1,28.4,28.5,27.8,27.8,29.2,33.3,33.3,33.3,33.3,33.3,33.3,28.6,28.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,28.9,28.9,28.9,29.9,33.4,33.4,33.4,49.7,33.3,33.3,33.3,45.9,33.4,33.4,33.4,33.4,33.4,39.3,33.3,33.3,29.7,29.7,29.7,29.4,29.4,26,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,25.8,25.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,29.1,27.2,26.7,26.7,26.7,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,25.8,25.8,25.8,25.8,26.6,26.1,26.1,26.1,26.1,26.1,25.7,26.1,26.1,26.1,26.1,26.1,26.1,28.1,26.1,26.1,24.7,24.7,24.7,25,25,25,25,24,24.2,23.9,23.9,23.9,23.4,24.7,24.4,25.4,26.1,26.1,26.1,26.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.2,26.7,26.7,26.7,26.7,26.7,26.4,27.2,27.2,27.2,27.2,27.2,27.2,27.3,25.8,26.5,26.7,26.7,26.7,26.7,27,27,27,27.2,26.9,26.9,26.9,26.6,26.5,27.1,25.6,25.6,27,27,32.8,32.9,33.3,33.3,24.5,25.8,25.8,25.8,25.9,25.9,25.5,25.6,25.6,25.6,25.6,25.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.8,25,25,25,25,25,25,25,25,25,25,25,25,24.9,13.6,13.6,14.7,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,19.2,19.4,19.4,19.4,19.4,19.4,19.4,21.2,21.1,21.1,20.7,21.1,21.1,21.1,21.1,20.6,20.6,19.5,19.5,20.3,20.1,20.2,20,19.5,19.5,18.3,20.4,20,20,20,20,20,20,20,20,20,20.2,19.1,19.1,18,17.8,16.9,16.9,16.9,11.4,11.4,11.4,11.4,9.4,9.4,9.4,9.4,9.4,9.5,9.5,9.5,9.5,9.5,8.7,8.8,8.8,9,9,9,8.8,9,9,8.9,8.9,9,8.7,8.7,8.7,10,10,10,9.6,5.6,5.5,5.6,5.6,5.5,5.3,5.5,5.3,5.3,5.3,5.4,5.2,5.3,5.2,6.1,6.3,6.4,6.5,6.5,6.3,7.7,6.4,7.2,6.9,6.9,8.3,8.3,8.3,8.3,4.9,4.9,5,4.7,4.6,6.1,5.6,4.5,5.3,6.4,6.7,6.7,6.9,6.2,6.4,6.4,6.4,6.4,6.4,6.3,6.3,6.3,5.8,6.7,6.7,6.4,6.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,6.5,6.1,6.1,6.1,6.1,6.1,6.2,6.2,6.1,7.3,7,6.9,6.9,6.9,6.9,6.9,6.7,6.9,6.9,6.9,6.9,6.8,7.1,7.1,7.1,6.8,7.4,7.3,7.3,7.3,8,8,8,8,8,8,8,10,10,10,10,10,10.8,10.8,11.4,11.4,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,14.4,14.4,14.4,14.4,14.4,22.1,22.2,22.2,22.1,20.8,20.8,20.8,21.8,21.6,21.6,21.6,21.5,21.6,21.5,21.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,24.6,24.3,24.4,24.4,24.4,24.4,24.4,22.7,23.9,23.9,23.9,23.9,24.4,21.7,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,24.3,24.3,23.2,23.2,23.7,23.7,23.1,23.2,24.2,24.2,24.2,24.2,22.5,21.9,21.9,22,21.8,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,22.2,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.2,22.5,22.5,22.5,22.5,22.5,22.3,20,20.6,17.6,18.1,18.6,18,18,18,18.1,17.9,17.9,16.3,15.8,16.2,16.1,15.9,16.1,16.1,11.9,8.8,11.6,11.6,11.6,11.8,11.8,9.5,7.6,7.9,8.2,8,7,7,7,7,6.9,8.4,8,8.2,8.7,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8,8,8,8,8,8,8,8.6,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,7.5,7.5,7.5,7.5,7.5,7.3,7.3,7.6,7.6,7.6,7.4,7.5,7.5,7.5,7.5,7.5,7.4,7.4,7.3,7.3,7.5,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.5,13.9,13.9,13.9,13.9,13.8,13.6,14,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.7,13.7,14,14,14,13.8,13.8,16.1,14.2,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.8,13.8,13.8,13.8,13.8,13.8,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,19.3,19,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,19.5,18.6,18.5,18.5,18.6,16.1,16.1,16.2,16.8,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,17,17,17.5,22.7,22.7,22.7,22.7,22.7,22.2,22.2,22.8,22.8,22.8,22.8,22.7,22.7,22.7,22.7,22.7,22.7,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.2,21.9,23.1,22.3,23.4,23.4,24.1,24.1,24.4,24.3,23.8,23.8,23.6,24.6,23.6,23.9,23.9,24,24.3,23.5,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,23.8,24.2,24.2,24.2,24.2,24.2,24.2,24.1,24.1,24.1,24.1,24.1,22.7,22.7,23.2,22.5,22.5,22.5,22.4,22.4,22.8,22.8,23,23.2,23.1,22.7,22.7,22.7,22.7,21.7,21.6,20.8,20.8,20.8,20.8,19.6,19.6,19.6,16,16,16,16.2,16.2,16.2,16.2,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,11.8,11.8,11.8,15.5,15.5,15.5,15.5,15.2,15.2,15.2,15.2,15.2,15,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.3,15.3,13.3,13.5,13.5,13.5,13.5,13.5,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,13.3,10.8,10.8,10.8,10.8,10.8,10.8,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.3,12.3,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.1,13.1,13.1,13.4,13.4,13.4,13.4,13.7,13.9,13.9,13.7,13.7,28,28,28,28,28,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.6,19.6,19.6,19.6,19.2,18.7,18.7,18.7,18.1,18.8,18.6,18.6,18.6,18.9,18.9,19.4,18.4,19.1,19.1,19,19,21.3,19.1,19.1,19.1,19.1,19.1,19.1,7.4,20.1,18.8,18.6,18.6,19,19.5,19.3,18.4,18.4,18.7,18.6,18.4,18.4,18.4,18.8,18.1,18.1,17.4,17.4,18.2,18.2,18.2,18.2,18.2,18.2,18.1,18.1,18.1,18.1,18.1,18.3,17.8,18.5,17.6,17.6,17.7,17.7,17.7,17.7,17.8,17.8,17.8,17.6,18,17.9,17.9,18,18.5,18.5,18.5,18.8,18.6,18.6,18.6,18.6,18.6,18.6,19.4,19.4,19.4,19.4,19.6,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.8,19.8,19.8,19.8,19.8,19.8,21.3,19.7,19.7,19.7,19.7,19.7,19.7,19.2,19.6,20,20,20,19.4,19.4,19.4,19.4,19.6,19.4,19.4,19.2,19.2,18.3,17.8,17.8,18.6,18.6,19.1,19.6,19.6,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,19.3,19.5,19.5,19.5,19.5,18.1,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.2,18.8,18.8,18.8,18.8,18.8,19,19,19,18.5,18.5,18.3,19.1,19.1,19.4,19.3,19.3,19.5,19.5,19.5,19.5,19.5,19.6,19.6,19.8,19.8,20.4,20.4,21.3,21.3,21.2,21.4,21.4,21.4,21.4,21.2,21.2,21.2,23,23,23,23,22.9,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.7,22.7,22.8,22.7,22.7,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.8,22,21.9,21.9,21.4,21.4,21.4,21.4,21.4,20.6,20.6,20.6,20.4,20.1,20.1,21.4,21.4,21.4,21.4,20,20,20.1,20.1,19.9,20.2,20.2,20.2,20.4,20.4,19.3,19.8,19.8,19.8,19.8,19.8,19.8,20,20,20,20,20,20,20,20,20,20,19.6,20,20,20,20,20.9,19.8,19.8,20.8,20.8,20.8,20.8,23.3,23.3,23.3,23.4,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,22.5,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.6,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,21.7,21.7,21.7,20.9,20.9,21.9,21.9,21.9,21.9,21.9,22,22,22,22,22,22,22,22,22,21.9,21.9,21.4,21.4,21.5,21.5,21.9,27.8,27.8,27.8,27.8,27.8,27.6,27.6,27.8,27.8,27.8,27.8,27.9,27.8,27.7,27.7,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,19.6,19.6,19.5,19.5,19.5,19.5,19.5,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.4,19.4,19.4,19.4,19.4,19.4,20.2,20.2,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.1,19.8,19.8,19.6,19.6,19.6,19.3,19.7,21.8,20.9,20.9,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.7,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.4,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,17,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,10.5,10.8,10.8,10.8,10.8,10.8,10.8,10.9,10.9,11.2,10.9,10.9,10.6,10.6,11.1,11.1,10.3,10.5,10.2,9.5,9.5,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.9,11.9,19.9,19.9,20.2,19.9,20,20,20,20,20,20,22.6,21.9,21.9,21.9,21.9,22,22,22,22,22,22,22,22,22,22,22,22,21.5,21.4,21.4,21.4,21.4,21.1,20.8,20.8,20.8,20.8,20.8,20.7,20.7,20.7,20.5,19.8,19.6,19.6,19.9,19.3,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.6,19.6,19.8,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.8,18.8,15.3,15.3,15.3,15.3,15.3,15.3,15.8,15.3,15.3,15.3,15,15.2,15.2,9.5,11.7,11.7,11.7,11.7,11.7,11.8,11.8,22.5,22.5,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,20.1,20.1,20.3,20.3,20.3,20.3,20.3,20.3,21.9,21.9,21.9,22.8,22.2,22.2,22.2,22.2,22.5,22.1,22.2,22.2,21,21,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.2,21.2,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21,21.1,21,19.8,19.8,18.9,18.9,18.9,19.2,20.3,20.3,19.1,18.7,19,19.2,19.2,17.8,17.8,17.8,17.8,17.8,17.8,18.4,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,19,18.8,18.8,18.8,18.9,18.9,18.9,18.9,16,15.6,14.5,14.7,15.5,15.5,14.9,13.9,14,13.7,13.8,10.4,17.5,18.1,18.3,18.4,18.2,18,18.1,18.4,18.4,20,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19,18.9,16.8,17.5,17.3,17.3,17.2,17.3,17.3,17.4,15.4,16.9,19.7,19.1,19.1,19.3,18.7,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.1,18.1,18.1,18.1,18,18,18,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,17,17,17.1,17.1,17.3,13.8,12.3,15.7,16,15.9,18.2,18.3,18.3,18.3,18.3,18.5,18.2,18.2,18.4,17.6,18.1,18.7,17.9,18.1,18.1,16.8,17.2,17.2,17.2,16.6,16.6,16.6,16.5,16.2,16.2,16.3,16.4,16.4,16.4,16.4,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,16.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,18.2,18.2,18.1,18.1,18.1,18.1,15.5,15.6,16.9,16.9,15.9,16,16.1,16,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.7,18.7,18.7,19,18.7,18.8,18.1,18.1,17.8,18.2,15.3,15.6,15.5,15.5,15.5,15.5,15.5,15.3,6.6,6.6,5.6,5.6,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.2,6.7,6.7,8.6,8.6,9.7,9.7,9.8,14.1,14.1,14.1,14.1,14.2,15.4,16.8,17,17,16.9,16.9,16.9,16.9,16.9,17.1,9.5,9.5,9.5,9.5,10.1,11.2,11,11,11.6,11.6,11.6,11.6,11.6,11.6,11.6,11.6,12.3,12.3,12.3,12.9,12.9,12.9,12.9,12.9,12.9,12.5,25.4,25.4,27.2,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.9,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.2,29.2,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.3,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29,29.3,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,31.6,31.6,31.6,31.6,29.9,31.5,32,32,32,32,32,32,32,32,32,36.2,36.2,36.2,28.8,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.9,28.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.8,28.6,28.6,28.6,28.6,27.4,27.5,27.5,27.5,27.5,27.4,27.4,27.6,25,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.4,25.4,25.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.6,27.7,27.7,27.7,28,27.2,27.5,29,27.9,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.2,27.2,27.5,27.5,27.5,27.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,26.6,28.1,27.8,27.7,27.7,26.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27,27,27,28.3,27,27,26.7,26.6,23.3,23.3,21.1,21.7,24,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.4,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,18.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,19.9,20,20,20,20,20,20,20,20,20,20.1,21.3,19.5,20.3,20.3,20.3,20.3,20.3,20.3,18.7,20,20,21.1,21.1,21.1,21.5,23,22.8,22.8,22.8,18.5,19.9,21.7,19.5,22.2,22.2,22.5,22.2,22.2,22.2,22.2,22.2,22.3,22.2,22.2,22.2,18.4,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,18.1,16.8,16,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,16.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.7,33.7,33.2,33.5,22.5,22.5,22.5,23.6,22.9,22.9,22.9,23.2,22.6,23,23,23,23,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.4,22.5,22.5,22.5,22.5,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.2,23.2,23.2,21.8,21.8,21.8,21.5,19.2,19.2,20.4,20.4,20.8,20.7,20.8,20.8,20.8,20.8,20.8,20.8,20.8,16.4,20.8,20.8,20.8,21.4,21.4,21.4,27.7,27.7,27.7,27.9,17.7,17.6,17,16.9,16.9,16.9,16.9,17.5,16.9,16.9,16.9,13.4,13.4,13.4,13.4,13.6,13.1,13.1,13.1,13.1,13.1,13.1,15.4,15.4,16.4,16.4,16.4,16.4,16.7,16.7,16.9,16.9,17.6,15.6,15.6,15.6,15.6,16.3,16.3,16.3,16.3,16.5,17.2,17.2,17.2,15,15,15,15,15,15,15,15.1,15.1,15.1,15.1,16.4,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15.5,15.5,15.5,15.5,15.5,15.5,14.1,14.1,14.1,14.1,14.1,15.3,15.3,15.4,15.2,15.2,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.2,15.2,17.8,17.8,17.8,17.8,17.7,18,17.9,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.7,17.7,17.8,17.8,17.8,17.8,17.8,17.8,17.7,17.7,17.7,17.7,17,17,17,17.7,17.7,17.7,17.7,17.7,17.3,17.2,17.2,18.6,18.3,18.3,18.2,18.2,24.8,18.2,17.5,17.5,17.5,17.5,16.7,16.7,18.6,18.6,18.6,18.6,18.6,18.7,20.2,20.2,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.9,19.3,18.6,18.6,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.1,17,19.5,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.1,19.4,19.4,19.4,19.4,19.4,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.3,18.6,18.6,18.6,18.6,18.6,18.6,18.6,17.7,17.7,17.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.8,19,17.8,17.8,17.8,17.8,17.8,17.8,19.6,19.6,19.7,19.7,19.7,19.7,19.7,19.7,20.4,19.1,19.1,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,15.1,15.1,15.2,15.2,15.2,15.1,15.3,15.3,15.3,15.3,15.3,14.3,14.3,14.3,13,13,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,11.7,12.7,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.9,8.3,8.3,8.3,8.3,6.1,6.1,5.8,6.1,6.1,6.1,5.7,5.3,5.3,5.3,5.3,8.2,8.2,8.3,8.3,8.3,8.3,8.2,8.2,6.1,6.1,6.1,5.6,6,5.8,5.8,6.6,6.6,6.6,6.7,6.7,6.7,6.7,6.7,6.7,6.7,6.7,7,6.6,7.2,7.6,10.1,10.3,10.3,10.3,10.3,10.3,10.3,10.2,14.5,14.5,14.5,14.5,14.5,14.4,13.9,13.9,13.9,13.8,13.8,12.2,12.2,12.2,12.2,14.5,14.5,14.5,14.5,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,14.4,12.9,14.2,14.2,14.2,14.2,14.2,11.9,11.9,11.9,11.9,11.9,13.2,11.9,11.9,10.9,10.9,10.9,10.2,10.8,10.3,11.3,11.3,11.3,14.8,14.8,14.9,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,14.7,15.4,15.4,15.4,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,15.6,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.7,10.8,11.4,11.4,11.4,11.4,10.9,10.9,9.7,9.7,9.7,9.7,9.7,9.8,9.8,9.2,9.2,9.2,9.3,9.3,9.5,9.8,9.8,10.3,10.3,10.4,10.6,10.5,10.5,12.5,12.2,12.2,11.8,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,11.9,12.2,12.2,11.7,11.4,11.1,11.1,9.4,9.4,9.4,9.4,9.5,9.5,5.3,5.6,5.6,20.8,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,24.7,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.7,22.5,22.5,22.5,22.5,22.7,22.7,22.8,22.8,22.8,22.8,22.8,24.4,23.9,23.9,23.9,23.9,24.2,23.3,23.3,23.3,23.3,23.3,23.4,23.4,24.4,23.6,23.6,23.6,23.6,23.6,23.5,23.5,23.7,23.3,23.4,20.8,20.8,16,16,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,12.5,12.5,12.5,12.5,12.5,12.5,12.5,11.9,11.9,12,12,11.9,10.9,10.9,11.1,11.1,11.2,11.2,11.2,11.2,11.1,10,10,10,10,10,10,13.7,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.4,13.7,14.1,14.1,13.9,13.9,13.9,13.9,13.8,14,14,14,13.6,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,13,13,13,13,13,12.5,12.5,12.5,12.5,12,10.3,10.3,10.3,9.2,9.2,10,10,10,9.2,9.2,9.4,9.5,10.8,12.2,12.2,12.2,14.2,14.2,14.2,14.7,16.1,16.1,16.1,16.1,16.1,16.4,16.4,16.4,16.4,15,13.3,13.3,12.8,12.8,12.8,12.8,12.8,12.8,13,22.2,22.2,22.2,22.2,22.2,20.9,20.9,20.7,20.7,20.7,21,21,21.7,21.7,21.7,22,22.1,22.1,20.3,20.3,19.3,19.8,19.8,18.7,19.2,21.1,17.5,17.5,17.5,17.5,17.5,17.6,18.6,18.7,19.3,20.4,20.3,20.5,20,20.4,20.4,20.3,20.3,20.3,20,20.1,20.5,20.5,21.1,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,19.9,15.8,19.7,20.7,20.8,20.5,21.1,21.1,20.6,15.6,15.6,15.6,15.6,15.6,11.1,13.6,13.6,13.6,13.6,16.6,17.8,17.8,17.8,17.8,17.8,18.9,18.9,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.7,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,19.5,19.5,19,20,20,20,20,20,20,20,20,19.9,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,19.9,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.2,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.8,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.1,20.3,20.3,20.3,20.3,20.3,20.3,20.3,18.7,18.6,19.2,19.2,19.1,19.7,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.5,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.3,19.4,19.4,19.4,19.4,19.4,17.8,18.1,18.1,18.1,18.1,18.6,18.9,18.9,18.9,18.9,18.6,18.6,18.6,18.6,18,18,17.5,17.5,17.5,17.2,17.2,18.4,18.4,18.4,18.8,18.8,18.8,18.6,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.5,18.3,18.3,18.2,18.3,18.3,18.3,18.3,18.3,18,17.5,17.5,17.5,17.5,17.5,17.6,17.6,17.3,17.5,17.6,18,18,17.3,18.4,18.4,18.6,18.6,18.6,19,18.6,18.6,18.6,18.6,18.6,18.6,19.2,19.2,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,16.4,16.4,16.4,14.8,13.8,15.1,14.3,10.3,10.3,10.3,9.3,10.6,9.8,9.8,9.8,10.4,10.8,10.8,9.5,7.6,7.6,7.6,7.6,10.5,10.5,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,10,10,10,10,10,10,10,10,10,10,27.6,27.4,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.8,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.7,28.7,28.7,28.7,28.7,28.7,28.7,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.1,28.6,28.6,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.4,28.3,28.3,28.3,28.3,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.1,28.1,28.1,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27,27,27,27,27,26.7,27.8,27.8,27.8,27.8,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,27.8,27.8,27.8,27.8,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.1,28.1,27.8,28.3,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.4,28.3,28.6,28,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.1,28.7,28.7,28.7,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.4,28.4,28.4,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.9,28.6,28.6,28.6,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,28.3,28.3,28.3,29.2,28.6,28.6,28.6,28.6,28.8,28.8,28.8,28.9,28.9,28.9,28.9,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.5,28.6,28.6,28.6,28.6,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.6,28.6,28.6,28.6,28.8,29.2,29,29,28.8,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.7,28.3,28.3,28.3,28.7,28.7,28.3,28.4,28.1,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,25.3,25.3,25.2,25.2,25.2,25.1,25.3,25.3,21.4,20.2,20.2,18.6,18.6,16.1,16.1,16.1,15.2,16.3,16.3,16.7,17.1,16.9,16.9,16.9,17.3,19.5,19.5,19.5,19.5,22.2,22.2,22.2,22.2,22.3,22.3,23.6,23.6,23.6,23.6,23.9,23.9,23.9,24.4,24.4,24.4,21,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.4,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,20,20,20,20,19.2,22.5,22.5,25.9,22.2,33.4,33.4,33.4,33.4,33.4,33.4,33.4,28.4,28.4,28.4,28.4,29,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.7,29,29,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.8,28,28,28,28.7,28.7,28.6,28.6,28.6,28.6,28.4,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,27,23.6,21.4,33.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,21.9,21.9,21.9,21.9,21.9,22,22,22,22,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.2,22.2,22.5,22.5,22.5,22.5,22.5,22.6,22.6,22.5,22.5,22.5,22.5,23.3,25.2,25.3,25.3,25.3,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,27.5,27.2,27.2,27.2,27.2,27.3,27.3,26.7,26.7,26.7,26.7,26.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,26.9,26.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.7,28.7,28.6,28.6,28.6,28.6,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,28,28,28,28.5,28.6,28.6,28.6,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,27.5,27.5,27.5,27.5,28.3,28.2,28.2,28,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.6,28.6,29,26.9,26.9,26.9,26.9,26.7,26.7,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,28.1,28.1,28.1,28.1,28,28,28,27.5,27.5,27.5,27.5,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,27.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.4,28,28,28,28,28,28,28,28,28,28,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.3,27.3,27.2,27.2,27.2,27.2,25,25,25,25,25.7,29.1,29,29,28.9,28.9,28.9,30,29,22.7,23.2,23.2,25.9,26.5,27,27,27.5,27.2,27.2,27.2,27.2,27.1,27.2,27.4,27.9,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.7,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.7,27.7,27.7,27.7,27.7,27.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.4,27.7,27.7,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,28,28,28.4,28.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,28,28,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.5,28.5,27.3,28,28,28,28,28,28,28,28,28,28.9,28.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,27.3,27.3,27.3,27.3,25.8,25.8,25.8,27,27,27,26.9,27.8,27.8,27.8,27.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,29.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.9,28.6,28.6,28.6,28.6,28.6,28.6,28.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,29.1,27.8,27.8,27.8,27.8,27.8,27.8,26.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,27,27,27.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,27.4,28,28,28,28,28,28.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.6,30,30,30,30,30,30,30,30,30,30,30,29.9,29.9,30,30,30,30,30,30,27.5,27.5,27.6,27.6,28.6,28.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.2,29.2,29.1,29.1,30,29.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.2,32.2,30.5,30.5,30.2,30.2,30.2,30.2,30.2,30.3,30.3,30.3,30.3,30,30.5,29.5,29.8,29.8,29.6,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30.7,30.7,34.9,30.9,30.9,30.9,30.9,31.6,31.4,31.4,31.4,31.4,32.2,30.8,30.8,30.8,30.8,31.8,33.4,33.4,33.4,33.4,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.4,30.4,29.4,29.2,29.5,29.5,29.5,28.9,28.9,28.9,28.9,29.1,28.3,28.3,28.3,28.3,28.3,28.4,28.4,27.2,27.3,26,26.8,26.8,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,26.5,28,28,28,28,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,24.5,24.5,27.6,27.6,22.1,22.1,22.3,22.3,22.3,22.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.1,24.1,24.1,24.1,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,25.2,25,25,25,23.9,23.8,23.9,23.9,23.9,23.9,23.8,23.6,23.6,23.6,23.6,20.5,20.5,20.5,20.5,20.5,20.6,20.6,20.6,20.6,20.6,20.1,18.9,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.8,15.7,15.8,15.8,15.8,15.8,15.9,15.9,16,15.9,10.3,10.3,6.7,6.7,6.7,6.7,6.9,7.5,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.6,7.6,7.9,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.6,13.7,13.7,14.2,14.2,14.2,14.2,14.2,14.1,14.2,14.2,14.2,14.2,14.2,14.2,13.3,13.3,13.2,13.2,13.2,13,13,12.9,13.1,13.1,13.1,13.1,13,13,13,13,9.3,13,13.6,13.6,13.7,13.7,13.6,13.6,13.6,13.9,12.2,12.2,13.1,13.1,13.1,13,13,13,13,13,13,13,13,13,13,13,13,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.6,6.7,6.7,6.7,6.7,6.7,6.7,5.3,5.3,5.2,6.1,6.1,6.1,6.1,3.6,3.6,3.6,3.6,3.6,3.6,7.5,7.5,7.5,7.5,7.5,7.5,7.5,9.4,9.4,8.2,8,6.7,7,7,7,8,8,6.9,6.9,6.9,6.1,6.1,7,7.5,7.5,6.7,6.6,6.6,7.6,6.1,6.1,4.9,4.6,4.9,7.4,7.3,7.7,7.8,7.8,7.7,8.3,8.4,7.6,6.1,5.5,8.3,8.2,7.7,8.2,8,5.5,5.5,5.3,6.8,6.7,6.7,7,6.9,6.7,7.1,4.1,4.4,4.5,4.5,4.5,4.4,6.1,6.1,5.8,5.3,5.3,5.4,5.4,5.4,5.3,5.6,5.2,5.2,6.6,4.7,4.5,5.9,6.1,6.1,6.2,6.2,6.2,5.9,4.8,4.8,4.8,4.7,4.7,4.7,4.7,4.9,4.9,5,5,5,5,5,5,5,5,5,5,5.6,5.6,5.6,5.6,4.7,4.7,4.5,6,5.4,5.5,5.5,5.6,5.8,5.5,4.6,4.6,4.5,5.3,4.7,4.7,4.7,4.7,13.8,5.4,5.4,5.4,5.4,4.9,4.9,4.9,4.9,5.9,5.9,5.9,6.7,7.2,7.3,7.3,7.7,5.2,5.2,5.2,5.2,5.2,14.6,4.3,4.4,4.4,5.6,5.5,5.9,5.3,5.3],"distance":[10.3,3.4,3.5,57.5,26.9,8.2,32.9,17.2,9.8,12.8,12.8,19.9,6.2,21.2,6.1,25.7,6.9,5,3.2,5,4.3,4.5,6.8,18.9,6.8,8.1,6,29.7,10.6,14.7,8.7,6,9.5,25.9,13,9.4,14.9,14.6,65.1,43.8,30.5,83.9,12.1,16.7,36.7,1.1,7.1,13.7,4.5,3.1,1.1,26.8,16.2,2.7,4.4,3.2,48.9,7.6,8.2,9.8,9.2,16.2,132.9,2.6,1.4,11.9,8.6,1.8,9.8,1.1,64.9,6.2,11.2,8.9,43,13,11.4,47.5,7.6,73.3,6.2,3.4,10.4,10.8,3.5,51.2,19.5,5,74.3,11.1,39.2,54.5,33.2,1.6,21.5,1.3,9.2,5.9,40.8,70.3,7.8,4.2,4.6,4.5,4.8,17.1,4.9,3.7,3.5,3.7,3.7,5.1,5.3,6.3,5.8,3.3,45.8,11.8,8.3,4.8,28.1,4.3,4.4,3.9,3.4,3.7,3.1,3.4,6.3,5.4,22.2,77.6,27,11.2,10.8,9.4,16.9,11.3,5.3,7.4,7.8,7.3,20.9,15.3,20.4,16.7,15,27.3,23.7,20.6,31.8,170.2,53.8,35.1,21.4,35.7,32.8,24.7,26.1,20.2,17.8,15.4,42,29.7,21.1,13.2,14.5,13.5,10.6,6,4.6,58.4,82,14.7,15.8,166.1,276.6,184,95.7,477.4,54.3,57.7,19.8,11.3,8.4,30.2,16.6,32.6,17,12.6,29.3,49.6,42.7,63.6,49.1,24.5,22.6,13.4,19.7,13.3,15.2,11.4,13.9,26.1,89.6,25.8,28.9,33.5,52,76.1,16.8,16.7,29.7,19.1,30.4,25.1,25.5,20.3,21.7,17.4,20.3,26.6,32,29.9,41.9,37.9,6.5,12.3,22,22,18.7,19.5,27.3,25.9,39.3,39.2,28.7,29.2,229.1,35.2,1.6,53.3,39.3,25.6,38.8,29.5,61.7,46.7,33.2,13.4,121.5,13.3,78.4,9.4,14.3,16.5,20.3,14.9,27.5,34.1,24.5,24,14.8,24.4,21.8,25.9,21.2,35.7,32.1,37.1,36.5,42.4,110.8,25,13.3,15,15.8,11.5,12,14.7,11.5,15.9,14.3,14.2,18.7,14.1,15.2,16,15.7,17.2,17.3,21.2,33.3,39.1,36.6,31.3,15.6,44.7,39.7,34,23,19.5,19.5,26.8,22.1,25,25.5,27.6,27.3,7.5,14.3,48.1,27.3,52.1,40,41.3,26.6,27.3,37.5,29.4,29.8,40.2,39.5,122.8,39.9,42.2,95.9,94.8,26.5,39.6,24,14.8,21.2,20.5,29.3,30.1,28.9,29.3,34.6,26.3,21.3,21.8,30.7,87.4,69.9,48.3,23,25.7,54.4,42.4,49.8,38.1,25.7,27.5,11.9,45.1,24,26.1,38.7,22.3,43.2,91.6,2.6,130.1,53,55.3,71.1,71.9,54.6,55.9,58.6,81.5,204,91.9,58.8,10,46.8,26.4,30.5,48.8,44.1,42.1,39.3,79.2,9.9,20,39.9,28.6,31.6,62.6,25.8,91,87.9,75,41.6,45.8,33.6,44.5,64.8,25.4,31.3,142.3,182.2,246.9,22,40.7,25.3,31.7,31,48.7,56.5,25.9,26.3,31.8,15.3,42.9,96.4,96.2,122.5,57.4,100.9,88.6,63.4,92.4,163.5,51.1,202.6,5.2,93.2,25.8,62.6,52.6,64.6,25.5,54.5,59.8,62.5,69.3,118.6,95.3,68.1,104.8,63.3,39.4,111.1,10,141.4,165.8,86.3,76.9,75.4,69.7,42.3,38.3,31.4,22.6,45,28.3,134.4,91.9,47.9,28.4,119.6,91.7,74.7,77.5,77.3,34.3,20.1,38.8,33.1,46.8,24.7,28.6,38.7,51.3,11.5,16.5,21.2,12,42.5,29.3,35.2,28.8,37.1,5.4,43.5,53.1,63.7,105.6,43.4,49.5,38.7,22.9,90.4,129,30.1,51.5,73.8,75.9,75.5,102.9,10.2,29.2,237.9,179.5,8.4,68.2,67.9,165.4,42,237.9,154.4,13.4,81.3,2.5,160.4,186.4,80.9,9.9,6.7,3,8.7,114.3,265.7,176.8,279.2,41.1,584,495.6,132.8,147,166.9,269.3,143.5,244.4,44.1,32,61,120.4,144,17.3,150.6,86.2,62.7,82.2,72.6,71.3,112.4,56.4,64.2,76.9,1.1,97.2,130.6,89.3,44.9,56.8,146.6,109.8,65.4,46.4,209.1,206.8,40.1,244,140.8,113.1,62,125.8,200.9,169.2,148.1,233.5,248.8,78.2,70.6,54.1,35.5,25.4,102.8,59.4,66.1,97.3,116,205,525.3,201.5,54.2,24.3,113.4,100,42.6,9.4,26,111.8,276.4,16.6,67.6,216.4,183.8,47,110.1,145.4,143.8,144,119.7,114.7,137.3,126.8,103.2,190.1,163.9,69.6,171.5,185.7,198.3,240.3,255.7,251.8,125.4,84,51.8,53.3,51.1,82.7,57.1,60,82.9,102.8,52.9,43.5,92.6,123.6,85.4,83.5,88,77.4,169.7,109,230.9,288.2,142.1,84.6,66.5,117.4,62.7,34,12,71.7,68.8,100.5,87.2,62.5,57,18.4,122.3,66.9,66.5,41.3,39.9,47.6,52.1,56.5,52,57.4,65.9,97.5,83.3,80.5,32.1,38.6,77.1,165.2,127.2,33.5,25.1,86.3,76.3,46.3,48.6,79.8,54,52.6,51.2,344.4,111.6,118.4,70.5,69,64.9,63,98.2,142.6,254.1,247.5,4.7,249.5,188.8,96.5,97.4,137.4,140.7,97.5,137.1,65.4,62,47.4,67.3,69.9,65.4,37.8,18.7,62.7,194.4,303.6,22.9,159.3,21.1,128.5,174.1,185.4,7.8,10.5,31.3,53.9,44.6,7.1,66.3,119.7,66.6,48.5,6.9,6.5,32.9,37.4,146.2,75.6,92.1,215.2,132.3,83.9,98.4,264.7,103,149.4,139.5,115.7,114.2,110.6,132.3,128.3,159.6,146.9,499.2,193,172.5,100.3,145.9,220.4,328.5,632,315.1,112.3,27.8,145.2,31,305.8,30.1,74.3,779.6,134.2,119.9,145.8,143.6,166.2,112.4,18.1,86,156,77.6,76.4,44,88.5,125.6,186.5,38,74,99.4,94.1,100.6,101.9,209.3,207.2,390.3,42,72.9,46.6,268.8,109.2,100.2,109.7,104.6,115.1,113.3,1,84.6,120.3,128.2,156.9,354.8,67.8,105.4,82.6,66.2,149.3,103,133.3,81.7,158.7,243.9,233.7,165.5,116.1,74.9,119.6,170.4,85.9,420.5,111,108.6,64.6,58,61.8,68.1,63,112.1,62.2,43.2,48.2,53.2,66.4,64.3,114.3,92.7,2.1,164.9,68.6,17.8,90.3,97.5,91.3,154.7,138.5,138.9,209.2,108.6,100.7,108.6,90.2,28.2,79.7,93.4,82.8,77.6,87.5,96.9,106.1,205.2,230.9,156.2,112.3,125.3,89,114.8,113.9,133.2,30.2,73.2,164.9,41.9,10.5,35.9,42.8,107.5,86.5,47.7,133.5,284,24.1,206.2,104.5,92.7,102,95.4,169.3,164.2,130.9,103.4,97.9,112.7,99.2,86,136.9,89.3,328,218.2,203.6,243.6,222.3,212.6,167.2,33.4,187.7,184.3,609.4,61.7,59.1,154.6,86.6,88.5,106.4,123.6,137.3,289.5,174,48.2,62.3,104.1,108.1,94,94.9,68.6,64.6,78.6,61.8,69.1,88.2,94.5,90.6,90.2,103.7,195.9,131.5,114.3,38.2,87.5,113.6,112.8,109.9,143.2,128.3,225.9,101.7,112.7,133.1,116.5,207.1,122.7,169.7,218.3,134.7,107.5,104.6,46.2,54,71.7,73.7,75.9,75.6,88.7,17.4,82.9,90.2,25.1,52.3,48.6,61.5,63.1,50.2,63.2,93.8,199.8,21.1,80.4,49.8,62,61.9,61.8,53.7,62.2,101.1,63.9,65.2,84.6,102.2,112.2,110.6,131.5,127.5,124.6,110.1,133.5,121.8,107.3,86.5,103.5,98.5,106,123.9,208,132.8,126.1,81.4,88.9,41.3,82.9,85.3,79,84.6,69.8,258.2,110.4,113.2,100.4,102.7,111.3,104.8,219,191,210,87.3,75.2,48.1,92.5,151.8,127,111.1,246.4,455.1,465,131.7,134.4,169.3,157.7,99.5,145.7,96.8,85.4,72.3,92.8,91.4,73.2,74,106.2,111,74.2,62.9,33.3,31.3,5.4,44.6,40.4,30.8,37.8,42,72.2,79.2,78.3,77.5,61.5,61,54.7,49.3,20.3,73.6,63.7,78.5,93.2,106.7,88.7,103.3,153.7,114,86.9,54.2,48.4,43.4,44.5,16.3,70.2,34.5,45.2,54.5,54.9,57.7,87.2,37.4,36.9,84.1,36.3,24.3,37.4,37.6,25.3,30.9,28.3,47.9,31.4,33.7,31.7,39,30,34.3,26.7,31.4,29.2,42.1,34.1,32.5,36.4,37.5,31.7,40.9,34.5,35.1,27.8,34.9,31.9,47.9,64.8,138.3,122.8,110,42.6,432,67.4,59.4,57,59.2,111.7,350.9,884.9,112.8,953.9,111,881.1,56.1,54.6,54.4,49.7,49.9,60,33.8,64.9,440.2,603.3,1026.3,1.8,96.6,44.2,36.7,74.4,353.5,239.1,30.6,144.4,35.5,681.3,497.2,545.9,115.7,95.9,141,23.1,58.1,47.6,56.9,68.3,64,59.1,53,64.1,632.7,294.7,25,195.6,72.1,6.2,21.5,265.8,84.5,53.2,51.4,55.2,77.7,376.5,146.4,33.4,68,23.1,68.5,83.6,113.1,69.5,210.9,196.5,154.8,58.5,73,80.1,31.9,119.6,153.3,28.7,115.1,53.9,68.3,56.8,40.6,42.3,30.3,43.2,15.5,68.8,66.1,56.3,62.5,56.6,62.5,49.8,108.1,178.4,38.1,78.6,44,82.2,72.1,61.9,68.9,52.7,53.6,64.6,69.6,101.9,118.4,557.2,280.8,149.9,78.4,119.9,40.7,56.6,64.9,60.9,86.7,65.4,61.9,161.7,102.4,74.5,39.4,56,135.1,156.6,158.6,490.5,357.1,149.4,170.9,52.8,62,117.9,267.5,62.2,98.5,0.1,8.5,43.7,69.3,88.7,103.6,72.3,87,137.6,163.2,90.9,68.3,147.5,62.7,67.1,69.4,64.1,81.6,55.4,118.6,95.7,135.7,77.3,843.1,70.4,90.1,51.4,76.7,44.7,78.8,27.9,54.7,79.6,59.1,56.7,68.2,15.7,86.6,100.2,124.3,116.8,238.2,81.6,245.3,106.4,110.8,91.8,276.7,145.6,351.5,30,19.2,115.2,120.1,89.2,90.5,71,78.8,74.6,76.5,84.1,58.4,90.3,88.8,45,41,125.4,79.6,79.3,79.6,88.2,95.5,85.5,108.4,54.4,105.1,68.6,30.8,384.2,31.4,81,119.2,389.7,263.5,78.6,59.3,107.7,116.3,87.4,164.3,72.8,53.1,30,31.4,33.5,35.8,66.8,50.6,51.9,78.2,132.4,264.1,61.8,51.3,61.9,48.3,56.5,63,76.6,110.5,114.5,126.4,82,15.1,250.1,54.2,48.7,60.4,94,18.7,243.2,87.2,38.4,30.8,37.8,31.8,60.9,65.4,142.9,149.4,157.4,163.4,118.7,125.2,408.3,184.8,30.4,69.1,107.6,188.6,161.8,21.3,97.2,79.1,78,203.4,10.5,47,141.4,116.9,62.7,55,57.7,55,48.7,47.5,79.7,67.8,44.5,41.1,41.9,58.2,78.2,78.2,69,77.7,3.9,73.4,54.8,69.2,68.6,71.4,71.5,56.8,55.5,40.9,39.1,59,31.5,31.4,33,31.4,43.9,89.1,88.1,126.5,54.1,75,78.6,77.7,54.7,75.6,69,47.7,58.7,40.1,41.8,57.7,26.3,24.4,44.6,43,37.2,26.2,31.7,32.2,34.5,33.5,27.3,24.9,43.4,43.4,24.5,28,40.8,22.9,24.5,25.7,25.1,25.8,26,43,36.8,35.9,63.5,60.1,101.9,45,41.4,39.5,32.8,28.6,37.9,45.2,41.4,28.8,20.6,0.2,6.5,41.9,38,50.7,45.9,0.8,55.5,59.4,32.8,37.1,41.8,44.3,52.1,52.5,50.5,41.4,67.1,26.6,46.1,58.5,53.3,68.9,66.6,50.7,126,124.2,75.2,67.4,71.8,42.7,58.4,62.1,72.9,60.3,62.3,58.7,66.1,93.9,55,63.9,171.6,18.2,98.8,30.1,61,14.3,68.1,63,59.9,62.4,65.9,78.2,51.6,52.4,70.4,55.1,62.4,63,63.5,150.4,112.8,56.3,29.8,120.6,78.4,66.3,87.3,56.4,57.2,73.2,65.7,61.2,39.1,51.4,80.2,120.2,241,216.9,63.6,248.1,124.7,118.2,63.4,110.8,89.3,50.4,170.9,244.8,208.3,289.9,296.1,230,62.2,60.9,114.8,107.3,95.2,201.4,102.7,101.9,99.4,135.3,177.9,170.1,92,15.1,72.8,140.1,135.5,196.6,124.3,83.7,43.2,0.2,7.4,77.7,44.3,44.9,66.3,62.1,54.5,42,44.6,34.4,1,37.1,35.2,36.8,42.3,41.7,30.5,31.2,54.4,69.6,52.2,55.8,84.1,31.1,39.7,126.3,113,54.5,109.4,101,52.6,52.9,56.2,55.8,54.6,53.9,55.2,75,69.5,75.2,7.3,49.2,50.1,79.3,196.5,203.3,148.8,137.2,73.6,60,88.5,67.5,77.9,76,63,79.7,77.4,14.8,34.5,75,11.3,60.6,108.2,195.3,85,109.6,92.9,120.3,263,194.6,63.4,126,124.2,1.8,195.4,216.6,159.7,228.5,259.5,224.3,157.5,23.1,91,77.2,27,119.7,32,127,127.2,142.4,130.1,114.2,133.7,41.8,70.4,129.3,122.5,125.6,155.2,214.5,165.2,52.2,65.1,113.6,87.8,96.8,97.1,116.1,117.2,232.6,201.6,190.7,65.5,181.9,219.7,281.4,95.3,158.9,241.1,263.2,139,85.7,83.8,58.3,72.3,67.1,66.7,64,61.2,86.1,75.5,69.4,94.4,66.3,69.1,46.3,73.4,107.5,65.3,68.9,94.1,90,49.5,53.7,42.5,34.3,106.1,122.9,117.2,75.8,81.2,85.2,80,123.8,72.5,86,85.5,111.5,93.4,41.3,130.4,61.7,86.5,152.4,107.3,162.5,115.1,178.3,139.2,97.5,140.2,156.7,152.7,139.4,45.6,34.5,28.9,69.8,131.2,113.6,131.6,71.6,69.2,112.1,121,119.9,120.2,167.9,161.9,150.5,64.1,65.6,6.7,51.7,33.7,25.1,108.4,55.2,63.5,82.7,95.2,95.2,74.9,61.4,129.8,73.7,69.9,16.5,165.9,206.2,1.2,202,191.3,145.9,78.8,102.2,85.7,82.5,51,116,80.2,54,50.2,62,53,46.8,10.2,25.6,75.5,18.2,88.8,153.6,145.3,115.8,160,95.8,101.2,353.1,167,95.6,87.9,90.4,116.2,134,99.8,105.1,75.2,81.1,87.6,83.1,89.5,76.9,69.2,77.3,75.9,63,54.3,68.5,45.6,101.2,106.4,114.1,53.9,52.6,65.7,70.7,55.8,104,63.1,70.4,46.7,71.9,11.7,44.3,74.4,44.6,50.8,50.1,57.8,65.4,76.3,82.3,128.3,92.1,68.9,170.5,81.3,56.6,68.5,67.4,98.4,50.8,64.4,75.7,82.4,83.4,130.8,126.4,166.7,160.4,145.5,157.4,88.9,75,90.8,86.1,90.1,64.1,64.4,98.5,129.2,33.3,42.3,34.6,31.8,95.4,100.2,100.6,221.1,115.3,109.4,151.9,95.6,100.6,166,29.3,145.3,142.7,90.1,83.7,80.9,80,84.7,71.5,59,43.9,63.8,25.9,69.8,80.4,69.1,67.5,114.2,119.3,115.1,80.9,95.9,110,79.1,64.9,74,87.5,87,79.1,106.6,90.3,79.6,81,60.4,54.5,91.5,91.5,77.9,91.4,109.6,111.2,200.8,203.5,256.9,46.6,166,203.2,32.2,66.3,16.2,66.5,77.3,64.9,0.6,42.1,63.4,85.6,112,98.2,62.6,61.6,116,140.8,102.3,91,92,93.9,89.6,83.9,76.1,87.1,77.5,108,88.3,95,77.3,27.2,65,59.7,63.3,71.1,79.1,74.4,93.5,79.4,67.2,81.1,91.8,95.7,109.2,111.7,86.8,91.7,81.4,66.4,81.1,126.5,83.7,82.7,73.3,50.4,92.3,124,116.1,106,214,150,271.8,255.4,269,51.2,68.6,55.4,15.2,48.3,89.3,67.1,87.4,78.2,65.3,67.1,56.9,53.6,68.4,72.1,18.2,62.5,65.1,76.9,107.9,73.2,214.5,211.7,154.4,151.6,108.5,63.7,59.5,119.7,148.2,138.3,134.1,111.4,94.5,28,91.7,186.2,263.6,31,73.6,82.8,140.2,93.4,59.1,54.1,75,62.4,65,75.4,57.9,62.6,60.3,77.9,71.9,72.7,86.9,90.2,92.9,89.4,74.2,66.7,64.7,161.4,163.2,128.3,105.2,82.9,77.1,61.6,66.6,61.8,82.4,67.8,17.8,103,71.7,63.8,61.6,79.6,59,52.7,9.2,16.2,111.8,180.6,178,91.3,59,54.5,38.6,110.5,116,97.1,73.1,48.8,47.4,87.5,70.7,93.1,111.8,88.7,86.2,69,4.6,46,57.1,15.7,75.9,66.2,63.4,89.5,85.2,109,73.2,73.1,52.8,75.2,89.1,58.5,39.4,62.3,61.7,56.6,105.4,83.5,60.8,98,111.4,85.6,84.7,67,63.9,49.5,18.5,57.8,51.6,63.4,54.6,53.8,55.6,51.9,76,123.9,59.9,136.8,119.3,67.5,71.9,62,57.2,63.3,44.8,65.6,28.4,70.1,68.3,105.4,77,65.9,69.8,79.3,107.5,76.8,220.6,27.4,46.9,95.7,76.1,20.7,48.8,37.2,43.4,103.9,99.6,54.8,43.4,90.1,129,70,60.1,53.8,32.2,96.9,91.6,45.3,210.9,75.3,5.9,21.8,134,125.2,113.3,127.6,118.7,65.1,80.8,92.7,94.3,86.4,107.7,63.5,73.6,59.2,100.5,70.8,116.4,88.3,80.6,33.6,59.7,84.3,113.9,156.3,32.5,152.2,153.6,125.5,63.4,62.4,86.4,55.4,75.1,76,15.1,42,57.6,74.2,77.3,58.7,62.4,85.9,56.1,56.4,35.7,27.1,59,70.1,47.3,60.6,116.5,113.1,115.1,116.4,53.1,109.3,89.3,89.5,172.6,108.5,123.8,120.3,99.1,84.6,77.9,127.9,133.1,120.5,88.9,90.2,131.3,118.2,120.1,131.4,225.1,313.8,251,107.7,63.4,98.2,130.5,140.6,251.4,407.9,262.6,207.1,210.9,75.1,144.1,96.6,78.6,58.5,193.7,421,325.4,233.3,162.2,239.8,145.2,75.7,144.4,122.3,126.1,123.2,107.1,40.3,79.5,69.2,79.5,17.4,39.2,35.3,9.6,174.8,203.8,143,74.5,46.9,79.7,86.5,53.7,63.8,77.1,77.4,55.6,80.8,66.9,93.2,96.5,102.5,80.9,51.9,29.5,78.6,106.8,45.4,20.9,70.6,84.3,131.1,146.1,356.4,257.7,101.7,69.2,214.3,78,46.2,144,132.8,80.4,91.5,68.3,72.6,130.5,62.4,15,85.3,6.4,178.6,58.1,83.3,262.2,86.9,49.3,41.5,10,78.9,98.3,95.3,57.4,65.7,52.8,45.9,91.3,179.2,183.9,90.2,86.4,57.5,49.1,90.5,69,96.9,70.6,68.6,6.4,97.6,33.7,58.7,54.1,85.2,79.1,21.3,89.4,76.5,88.8,146.8,116.8,107.5,55.7,62,113.9,58.7,61,58,63.3,67.2,69.6,53.8,44,58.9,63.5,82.1,98.8,50.1,90.3,64,64.2,84.5,113.3,66.4,22.1,36.2,47.9,50.1,53,52.1,53,48.6,48.6,50.8,67.6,69.2,67.8,73,57,65.4,153.7,152.8,99.2,68.6,62.8,66.5,65.1,144.7,77.4,27.9,43.7,67.7,65.9,55.7,76.1,46.8,60.6,59.4,27,30.2,1.4,57.5,50.9,55.6,61,39.9,69.2,77.1,69.9,72.5,98.3,29.2,44,33.7,35.9,36.9,34.4,29.7,30.1,32.7,49.5,54.4,43.4,43.7,58.5,49.5,57.5,29.5,58.6,129.3,78.6,20.9,34.9,23.2,17.2,31,24.7,27.5,95.3,96.9,86.5,105.4,76.5,187.1,98.4,52.7,57.7,55.9,59.4,36.6,29.2,32.3,52.4,56.7,56.4,101.6,169.6,117.8,90.7,84.5,82.1,95.9,46.3,66.4,97.4,70.7,29.5,64.1,85.8,84.1,119,127.8,81.2,88.2,133.2,131.4,148.9,149.6,120.4,69.7,87,95.8,93.4,69.1,40.9,22.2,59.4,92,160,138.4,61.4,54.3,82.7,80,79,36.8,85.4,72.2,70.4,123.1,62.7,62,69.6,72.8,134.1,104.7,87.4,92.6,92.6,76.3,43.2,33.3,161.9,10,170,145.5,115.4,80.1,83.7,112.4,66.7,66.6,62.2,79,158.1,243.5,131.6,181.9,207.6,205.7,103.5,109.8,114.2,78.8,98.1,119.5,115.5,81.5,70.7,81.7,71.1,44.1,47.5,77.1,54.5,20.1,33.8,111.1,42.9,42.3,56.2,28.8,41.4,40.9,25.3,45.3,51.5,50.9,53,50.8,51.6,51.9,58.8,61.6,64.2,59.6,58,37.2,32.1,54.5,44,46.9,72.5,63.1,58.7,90.1,68.9,54.8,73.2,63.2,73,75.4,63.2,70.4,59.9,89,62.3,63.8,61,61.4,75.4,71.6,62,1.2,64.7,61.9,88.7,60.3,63.7,62.8,58.7,59.8,67.9,115.3,37.8,73.4,78.1,64.2,55.7,56.8,61.4,66.9,65.2,68.2,59.5,60.3,53.1,94.1,90.1,369.8,119.5,243.4,124.3,121.2,110.8,110.3,103.5,71.1,125,149.3,86.1,43.9,26.8,36.2,14.7,53.5,61.4,16.1,15.1,61.6,77.7,67.3,73.2,65.9,82.8,57.1,41.1,87.5,92.8,12.1,75.8,58.9,56,83.6,80.9,117.4,89,83.5,176,135,135.7,115.2,32.2,90.9,122,88.6,86.5,63.6,67.2,62.5,64.9,92.3,105,104.8,87,60.9,65.8,44.2,55,68.5,70.2,81.9,94.5,42.2,51.7,8.1,96.1,147.3,162.6,143.6,62.1,60.8,125,109,141.8,26.6,198.6,201.1,201.3,197.5,76.4,79.8,54.5,42.7,74.6,52.4,51.5,44.5,47.4,54.4,51.6,75.6,61.7,51.2,79.7,68.6,61.1,60.7,30.2,42.3,60.1,74.6,51,42.1,50.9,51.8,48.2,40.9,44.1,51.3,63.4,70.3,93.8,42.2,54.7,47.1,68.7,52.9,44.2,45.6,37.7,79.7,121.9,96.3,113.4,49.9,54.7,77.5,53.3,50.3,50.1,41.5,41.1,48.3,46.1,27,30.7,45.2,47.7,53.9,49.2,36.5,45.3,64.2,81.4,41.9,31.2,64.9,53.7,59.5,48.1,36.1,40.5,51.6,44.3,42.6,43.4,47.1,51.9,49,57.8,42.7,42,58.7,65.3,46.3,38.4,34.9,39.7,43.5,52.4,56.7,50.6,41.5,45.7,44.9,43.2,36.1,73.5,77.9,43.1,44.5,75.5,64.7,56.1,53.9,75.9,56.6,48.1,1.3,30.3,35.3,47.5,43.3,55.6,42.4,50.9,35.4,45.1,125.3,114.1,122.4,109.1,88.3,93.9,74.5,38.4,53.4,91.2,33.4,38,55.9,88.5,76.2,83.6,85.1,107.5,106.5,88.4,57.7,67,67.4,73.3,68.1,68.9,264.8,134.7,66.6,68.1,64.4,57.5,30.9,48.9,56.7,52,62.3,79.8,64.3,71.7,31.3,52.2,81.4,49.5,55.8,42.7,60.7,78.5,45.7,56.4,42.2,45.5,51.1,47.8,62,66.4,56.2,67.2,68,59.5,49.8,71.2,68.8,57.7,57.5,60.9,66.7,87.8,169.8,52.6,72.6,184.4,135.8,55,47.7,67.9,62.3,64.9,82.6,60.3,68.8,79.9,67.6,78.5,69.4,67.7,52.8,52.9,66.6,71.4,84.2,51.7,44.3,52.2,30.9,7.1,103.4,79.4,77.2,155.3,231.3,336.1,53,73.8,47.3,36.9,32.9,55.6,57.1,47.3,30.5,27.5,69.3,62.8,44.6,47.5,34.7,38.9,40.7,38.8,44.5,38.8,56.4,69.5,80.1,61.3,91.4,93,55.6,36.5,32.1,38.5,44.3,38.7,34.9,34.1,29.8,42.4,48.1,25.1,49.1,44,12.6,21.4,40.4,41.6,40.3,42.3,34,39.3,41.9,37.1,32.8,38,42.8,46.9,49.1,148.3,146.5,62.4,53.7,43.6,41.2,50.8,47.1,34.2,15.2,48.3,56.6,30.3,45.9,56.8,64.2,67.2,60.1,55.2,51.7,37.8,39.5,40.4,42,34.4,35.8,47,71.5,113.3,124,119.7,89.7,28.8,58.8,33.6,95.3,76,45.9,8.7,67.3,34.2,43.7,34.6,44.9,48.7,112.6,137.4,105.7,64.9,56.3,71,84.7,103.1,110.9,65,113.1,80.6,80.5,59.8,93.1,98.4,121.7,197.5,2.3,118.4,30.5,51.4,74.6,210.6,228.3,225.5,299,61,269.7,111,69.9,62.2,67.7,71.7,42.2,42.8,78.6,47.6,51.8,96.6,153.4,117.3,101.9,89.2,55.5,49.4,61.8,67,68.9,42.7,124.1,166,39.9,38.7,30.6,28.5,32.3,24.7,20.3,37.8,30.8,29.4,28.6,36.1,49.8,45.7,27.2,35.3,39.4,109.4,54.8,36.8,36.2,33.7,34.2,41,27.6,29,39.1,31.9,26.4,31.6,34,44.9,64.9,93.3,54.2,92.5,99.9,59.4,63,39.3,54.4,39.1,43.3,51.8,59.6,54.5,45.7,55.3,41.7,33.7,34.9,43.6,41.5,43.9,31.7,19.9,47.8,40.5,62.9,48.9,68.8,34.4,75.2,53.4,52.3,63,45.4,51.9,51.2,57.8,43.9,73.8,86.6,192.2,134.7,62.5,124.3,124.4,157,22.7,254.2,254.5,72.6,60.6,35.4,60.7,55.7,27,181.1,92.6,89.6,133.6,52.2,50.7,30.7,43.9,56.3,49.1,35.3,32.4,36.5,38.6,51.8,62.6,53.1,41.2,42.7,49.6,34.2,34.3,51.7,47.3,51.3,37.9,33.9,38.9,42,40,31.5,39.4,33.2,35,65.7,44.3,88.8,86.6,80.4,73.1,59.6,47.6,41.7,54.1,39.7,63,29.5,28.9,65.4,25.8,51,42.1,47.5,43.7,62.5,39.4,34,41.7,62.7,68,68.4,227.3,217.8,153.6,90.2,91.7,97.1,79.4,87.8,95.6,209.9,307.7,322.7,172.4,93.8,86.5,96.6,44.2,106.7,6.2,125.3,80.6,75.3,89.7,82.7,56.6,53.6,91.3,82.3,97.2,31.5,76.8,41.8,84.7,81,10.1,50.2,38.5,40.6,8.9,51.6,121.9,38.3,13,44.2,77.9,81.2,55.5,51.9,49.7,49.6,190.1,52.7,33.1,25.9,78.2,52.4,71.2,67.2,44.4,131.6,23.4,9.7,27,19.7,18.6,23.9,24.4,33.4,25.8,24.6,23.2,23.9,30,35.8,37.7,110.2,76.7,57.7,41.2,37.4,27.1,36.5,31.7,26,20.3,7.7,36.3,29.1,25.4,33.6,31.9,31.3,35.1,41,46.6,40.3,39.9,47.8,62.1,103.5,53.3,5,47.9,42.9,33.9,29.8,26.5,23.5,8.3,14.3,15.8,28,24.7,27.7,27,20.4,34.9,31.7,51.7,108.6,189.7,40.6,30.2,21.9,32.8,25.9,23.1,24.9,34.1,35.5,30.5,12.3,13.3,22,33.6,28.9,20.6,20.9,19.4,23.5,26.7,22.4,34.6,23,31.2,29.5,44,37.3,27.7,27.5,33.8,32.1,33.3,28,26.8,60.4,46.6,67.2,10.2,87.3,50.5,31.2,31.3,26.9,33.2,36.6,28.5,37,28.5,34.7,56.9,62.2,69.5,150.2,40.8,40,29.8,39.2,38.4,40,35.2,31.4,37,38,41.3,48.9,57.1,33.1,40.5,33,33.5,31.2,57.6,55.2,51.1,40.5,38.1,34.3,5,29.2,32.7,36.2,45.8,94.9,90.7,59.1,45.3,42.7,33.1,35.1,39.2,33,34.8,31.9,33.2,36,40.4,40.5,31.6,43.7,37.7,41,36.4,34.7,32,37.9,29.7,34.2,42.7,44,77.1,13.3,80.5,46.1,38.4,41.3,34.9,52,61.8,100.7,31.1,44.5,342.3,25.1,24.4,20,21.2,21.1,18.9,22.3,20,27.6,38.1,20,18.5,21.4,23.4,27,27.3,25.2,18.6,19.4,27.5,22.1,23.8,15.3,25.8,24.8,20.6,23,23,32.7,68.1,54.8,17.4,18.4,24.6,23.7,16.6,17.5,28.6,17.5,19.6,21.9,32,30.8,33.7,29,31.3,62.3,56.9,54.5,31.2,55.8,24.5,33.4,48.1,54.6,46,65.9,22.3,48,53.7,9.3,42.4,61.3,67.2,45.6,45.5,68,64.1,64,52.5,57.3,70.1,68.3,58.9,64.1,82.1,62.4,63.8,124.6,80.5,107.2,122.9,79.2,80.2,67.7,142,120.6,98,80.2,37.8,40.1,72,48.9,50.6,31.8,31.9,51.3,55.3,40.4,40,23.9,45.5,40.1,39.9,41.5,34.5,34.2,52,37.1,43.2,34.5,40,37.2,12.6,32,30.2,25.9,24.8,38.4,23.4,21.8,35.2,40.7,31.2,32.3,32.7,31.9,16,62.9,54.6,40.5,43.8,44.1,39,24.7,24.5,31.1,40,37.4,24.1,24.5,19.1,24.2,27.5,28.8,23.3,27.6,23.3,21,51.4,55.8,67.4,68.5,99.8,79.3,56.6,139.9,0.5,73.1,9.2,66.6,50.4,34.2,69.3,42.9,52.3,9.6,29,29.3,20.7,13.4,12.6,12.3,13.4,12.1,13.6,13.3,12.6,12.5,13.3,13.1,13,13.2,12.3,13.3,12.8,13.2,13.2,12.8,12.8,13,13,14.5,13.5,14.6,14.3,14,15.9,13.3,29.1,28.1,23.4,58.4,37.1,33.3,36.2,25.5,23.8,39.1,32.6,40.7,37.7,39.9,35.6,83.8,41.9,19.1,38.9,53.8,48.9,40,53,40.9,53.4,46.7,40.5,40.5,57.8,40.9,52.4,29.9,35.1,24.4,29.1,39.5,39.2,40.4,64.9,46.1,48,211.7,54,64.7,32.5,31.5,65.2,47.5,82.6,34.6,32.6,41.1,89.8,52,50,62.7,35.5,46.6,48.4,44.2,41.2,41.4,33.2,32.7,40.6,42.4,44.2,43.6,44.5,54.3,48.6,50.2,51.9,53.2,55.5,34,37.2,38,31.7,42.4,57.6,54.3,31,32.7,26.3,25.2,40.8,37.8,38.4,51.4,37.6,55.9,12,53.5,53.4,96.8,46.7,44.2,46.5,46.4,47.9,58.4,99.9,28.7,27.2,29.4,30,30.9,33.8,38.6,161.3,29.9,32,29.5,28.3,36.2,41.3,37.2,29.7,31.9,41.8,49.8,20.1,21.6,23,31.2,43.6,36.2,48.1,47.5,43.3,28.2,31.1,24.1,23.6,26.5,25.3,26.8,25.2,26.5,24.2,26.1,25.8,26.3,26.3,25.7,37.1,31,46.7,42.1,143.5,71.3,70.3,95.3,97.1,82,82.9,33.4,78.7,69.2,37.3,37.3,23.9,23.5,30.8,29.2,31.7,30.6,50.4,51.5,52.6,49.3,53.8,55.7,68.3,57.1,44.1,43.4,39.2,25.3,27,42.1,53.3,50.3,58.9,59.5,37.3,37.5,73.5,56.2,69.9,54.5,60.2,44.8,43.6,41.3,61.7,51.6,52.3,57.3,321.8,328.8,106,60.1,48.5,44.8,49.4,48.3,48.1,36.6,39,50.2,33,48.8,49.8,49.9,45.9,42.6,52.9,52.2,47.5,52.6,33,33,50.8,51,55.7,59.4,46.1,45.3,36.8,72.1,106.5,27.7,8.6,67.3,109.7,108.5,99.2,161.7,64.3,60,49.8,50.1,32.6,43,38.7,39.8,55,36.8,68,55.4,37.1,46.1,48.9,65.7,34.7,34.7,33.9,30.9,36.2,58.4,63.5,198.1,74.6,36.4,110.5,54.5,201,88.7,55.8,88.4,9.9,61.9,83.7,172.8,90.4,15.5,53.2,11.4,42.3,51.5,27.6,40.1,41.7,34.8,44.1,37.4,37.5,43.8,33.4,38.9,57.2,48.8,52.3,36.8,52.7,37.3,36.5,37.4,42.9,36.6,44.6,38.1,38.8,45,138.4,241.7,142.6,241.4,118.8,34.3,6.6,71.6,101.2,95.9,236.5,121.7,110.9,37.4,38.3,37.6,30.4,46.3,31.9,39.5,40.9,43.2,40,165.8,42.5,26.7,62.4,47.2,48.5,45,45.9,28.6,35.9,44.4,27.6,25.7,38,28.3,26.5,24.2,24.5,26.6,45.8,53.7,70.3,22.2,38.6,35.5,30.9,32.4,26.6,34.4,36.9,37.9,41.1,38.7,34.3,35.3,35.9,12,20.8,31.4,39.5,46.8,126.3,63.7,33,33.8,36.6,48.7,33.3,34,31,30.2,23.3,75.9,39.2,32.5,35.3,32.5,34.4,32.4,23.5,27.8,27.6,30.2,37.3,31.3,27.6,38.7,35,34,28.1,53.8,76.9,21.4,32.6,34.2,29.6,22.1,29.5,28.3,34.1,54.1,67.4,83.1,132.4,35,115.9,99.9,1.9,103.5,18.3,119.1,123.7,57.6,91,207.6,55.4,93,73.8,69.8,116,131,92.7,76.6,60.5,60.9,128.4,117.5,10,104.1,71.1,41.5,45.1,77,45.1,55.7,57.4,95.8,57,85.3,49.9,151.8,245.9,88.7,60.3,75.2,38.8,50.3,107.3,345,368.2,31.3,77.1,49.2,63.3,55.1,48.8,52.5,60,59.5,44.2,10.5,74.4,30.9,49.6,61,43.5,64.8,54.9,131.6,38.5,32.5,36.3,38.8,25,36.4,39.6,15.2,47.9,79.2,26.6,85.3,21.5,35.3,131.1,17.1,124.8,240.8,142.3,51.1,559.3,86.5,125.4,125.7,30.6,177.6,92.3,62.6,29.6,18.6,29.1,32.6,16.4,41.8,30.8,16.6,17.4,22.1,35.2,42.6,34.5,30.9,32.5,31.2,35.8,37.1,36.7,29.2,42.9,47.6,41,42,59.5,176.6,134.9,132.4,148.7,45.8,44.9,208.6,38.1,39,37.4,50.5,36.1,28.9,37.4,34,39.4,66.9,28.3,47.2,51.9,25.3,49.8,42.5,45.6,55.3,47,39.6,38.7,34.6,17.5,6,57.6,18.6,23,39.3,60.1,45,30.1,38.8,39.3,35,10.5,115.7,54.4,46.5,41.5,38.3,38,29.7,31.9,21.6,19.6,33.8,38.7,35.8,18.9,21.4,28.7,37.6,19.5,21.4,31.6,35.2,25.6,25.7,23.2,21,22.3,34.2,33.7,59.7,54.8,52.2,139.5,78.6,62,77.7,53.1,64.3,38.2,32,27.8,50.3,22.9,20.9,28.5,33,27.5,45.4,38.9,38.3,24.2,10.8,35.7,45.2,33.5,39,37.3,37.7,89.5,39.6,42.1,26.5,27.6,26.4,30.4,30.6,37.2,20,22.7,30.4,32.7,33.7,32.2,31.7,38.5,36.4,47.4,72.3,17.7,200.3,194.5,145.4,18.8,27.8,16.5,14.8,14.2,21.2,26.7,22.3,31.3,26.4,35.9,36.9,33.1,19.5,17.5,23,22.5,50.8,55.1,37.5,25.7,66.2,59.5,37.1,67,80.6,54.3,53,128.3,127.1,54.7,85.8,14.1,45.4,74.8,112.6,166.8,140.6,80.9,95,67.5,82.5,85.7,85.4,89.4,89,145.2,149.1,196.7,160.8,128.1,208.9,313.1,189.7,69.1,161.4,119.4,142.3,93.9,61.9,60.5,70,144.2,91,34.1,16.9,54.6,51.8,58.9,51.7,11.9,69,82.6,46.1,134.9,46.6,45.4,23.9,48.9,16.6,30.4,86.9,8,53,28.4,28.6,59.4,41.5,37.1,61.9,60.6,482.9,69.5,202.4,101.2,97.8,108,108.4,59.8,57.4,111.1,105,101.3,98.1,2.5,134.2,60.1,75.6,165.2,178.4,71.4,79,99.5,61.9,80.3,123.6,72.1,140.6,59.6,103.9,52.4,52.1,53.8,50.5,42.9,71.3,62.1,27.8,90.6,83.4,56.5,53.4,43.5,70.8,104.7,28.6,138.8,31.9,45.7,90.8,129.6,126.3,145.3,221.1,90.8,81.7,101.3,70.6,138,26.3,68.4,36.6,109.4,124.2,127.5,100.7,49,77.2,100.9,26.9,71.7,102.5,74.9,92.7,87.8,258.5,122.7,126.2,122.2,131.5,70,80.7,14.6,11.5,201.6,83.8,159.2,185.8,358.7,160.5,135.5,134.4,146.1,146.6,89.4,102.9,139.2,138.2,173.3,225.2,97.6,229.2,142.1,126.7,86.1,84.1,82.2,75.2,80.4,84.5,64.2,72,77.3,69.3,51.5,54,60.1,58.2,85.6,63.7,63,74,112,38.6,80.5,75.6,70.1,45.2,20.9,82,185.5,193,253.9,140.2,150.2,121.6,75,61.6,70.7,59.8,70.1,64.8,98,61.7,7,60.5,64.9,84.2,88.9,64.9,65.5,67.9,152.5,59.3,72.2,60.9,62.4,60,90.7,68,112.6,121.8,88.8,76.8,85.5,93.1,95.5,90.3,42.4,48.7,54.6,87.4,86.6,136.3,217.7,110.3,107.7,97,94.2,93.9,101.1,112.3,121,109.3,126.9,131.9,135.1,61.9,175.4,161.9,196.3,92,92.9,159.5,129.1,102.7,103.9,107,117,104.8,105.4,113.2,102.3,104,100.1,101,115.2,56.2,67.2,106.5,126.4,145.1,151.9,54.8,37.9,144.7,69.6,48.1,59.3,11.4,320.2,169,101.1,240.6,113.2,62.8,63.3,49.6,140.1,106.9,219.7,306.6,289.3,96.1,549.7,203,130.9,168.6,166.6,100.6,86.9,7.4,104.6,92.2,96.5,104.6,208.7,140.9,57.2,55.4,74.1,74.4,80.7,78.8,61.2,61.5,119.5,116.7,119.4,93.4,97.2,86.5,107,91.3,88.6,93.7,96.4,117.5,69.3,86,89.4,86.6,71.4,71.1,37,96.6,104.4,104.8,94.4,92.7,112.5,100.6,55.9,91.6,86.9,130.9,135.5,64,101.6,89,132.7,133.4,559,558.8,317.1,84.9,49.5,102.2,121.8,60.6,62.8,51.7,95.7,124.1,127.2,159.9,92.8,126.4,42.8,93.8,65.2,92.7,96.9,4.5,148.8,135.9,139.5,93.6,140.4,58,270.2,279.9,264.6,258.3,168.1,166.2,148,156,146.5,143.6,78.7,76.9,135.3,111.3,112,113.6,116.4,152.7,148.8,100.8,98,70.1,70.3,127.2,89,145.9,64.9,107,106.9,197.9,128,393,189.3,104.7,108.8,170.2,12,47.6,89.8,71.4,87.4,44.5,117.2,75.4,105.7,33.9,46,46.2,81.2,36.5,256.2,174.3,125.8,130.6,106.6,71.8,64,34.2,33.3,64.4,44.5,41.3,21.7,48.1,40.2,39,47.3,45,27.9,44,29.7,26.6,14.8,5.7,65,26,39.6,48.5,36.3,56.3,27.6,26.7,46.5,53.6,63.9,59.2,50.4,72.7,51.2,66.4,62.7,129.4,45.1,45,86.5,42.1,68.9,25.9,70.1,117.9,78.9,27.6,63.1,16.9,368.8,360.1,177.9,78.5,85,62.7,61.9,54.1,53.4,91.4,46.9,44,96.2,44.1,43.4,55.1,87.3,66.5,73.6,85.4,72.4,75.1,74.7,75.9,70.4,62.9,60.9,55.7,55.3,60.2,57.8,45.7,44.8,35.8,50,72.5,72.5,90.8,220.4,215.8,50.3,300.4,27.3,295.5,245.2,243.4,72.2,49.9,94.3,55.8,39.7,42.4,6.9,54.4,23.6,65.3,64.4,80.5,58.8,60.4,48.5,47.5,54,79.2,44.7,38.5,46,46.3,43.8,45.2,68.1,73.8,76.3,65.5,64,87.8,77.5,87.4,75.3,89.6,90.9,85.7,76.6,49.6,47,56.7,49.8,59.5,58.3,50.6,49.4,45.2,37,50.5,100.4,95.9,30.7,63.2,138.6,60.2,41.8,18.6,60.7,78.1,50.8,92.5,174.3,179.4,216.1,11.8,89.5,69.9,65,76.8,25.2,75.3,27.7,22.2,45.6,67.1,99.1,94.9,180.1,181,186.1,177.7,75.6,67.3,88.1,102.7,63.2,147.7,95.4,51.2,70.4,155.3,157,375.3,120,84.6,86.2,81.4,83.8,70.1,69.4,36.8,57.4,56.2,58.4,57.6,69.8,58.3,88.5,43.5,69.6,58.6,72.4,70.8,96.1,84.9,61.4,106.4,153,72.7,80.1,98.9,98.6,52.3,106,86.2,70.2,71.2,67.7,65.9,50.3,59.9,51.8,85,102.5,59.1,10.6,144.7,46,68,108.5,64,32.4,75.9,210.6,199.7,151,48.6,56.5,115,82.4,185.3,68.3,98.2,128.2,98.8,89,200.5,73.3,84.7,103.6,25.7,97.8,117.6,100.3,108.4,88,93.3,93.8,108.7,106.4,70.6,137.2,100.1,135.4,91.1,141.3,116.2,51.4,49,17.9,83.2,74.6,129.3,59.4,34.5,91.4,90.8,91.8,97.4,92.2,61.8,102,2.5,111.5,65.3,196.6,193.1,435,216.4,107.7,110.7,101.7,78.6,61.7,83.6,112.2,81.2,111.3,84.2,77.3,65,66.9,51.8,65.1,44.4,87.6,64.2,60.4,44.6,65.5,60.3,63.5,49.1,47,63.6,63.3,86.4,54.1,36.4,81.4,84.3,50.3,59.6,96.8,113.4,106.3,66,76.9,105.3,102.6,106.5,108.6,102.3,121.6,124.8,124.9,125.4,73.2,48.1,117.4,70.2,68.3,123.1,75.7,59.8,106.5,119,63.5,53.3,10.6,12.5,67.2,75.4,117.9,129.1,114.5,103.8,113.2,75.6,67.9,70.4,75.2,99.9,100.6,96.9,67.2,84.7,85,126.7,129.5,129.9,128.3,148.2,142.9,174.3,96.2,77.1,82.6,133.1,115.6,54.9,66.3,71.8,173.2,111.2,22.5,82,88.4,2.4,146.7,148.7,50.7,60.4,110.8,58.6,59.7,91.1,84,30.1,97.5,95.5,125.7,109.1,82.4,52.3,13,118,127.6,126.1,120.1,120.5,115.3,60.6,142.1,149.5,68.8,219.7,229.8,120.1,108.5,122.7,74.7,55.8,65.6,62.3,54,51.5,55,52.5,53.1,58,67.4,95.5,108.5,87.3,60.6,74.9,73.6,82,69.2,62.2,58.4,61.2,76.4,77.9,55.9,54.7,54.1,74.5,67.3,76.9,69,76.7,76.9,83.4,61.7,91.5,97.3,73.3,68.3,129.1,117.7,58.5,103.5,98.3,78.1,74.6,72.8,17.2,43.7,50,11.8,72.8,70.8,79,69.9,73.4,71.3,74.8,82.1,80,77.8,79.4,50.1,67.2,54.6,100.5,72,65.2,108.7,104.2,56.9,53.8,64.9,63.7,80.5,80.6,77.2,156.6,152.3,85.9,69.4,75.1,69.3,6.9,78,79.7,174.7,160.4,100.9,101.1,105.4,57.9,95.7,78.5,76.8,80.6,60.9,78.7,131.7,60.7,72.4,185.2,83,76.8,75.1,75.9,75.4,76.9,45,49.7,58.1,84,52,50.6,74.6,67.5,82.3,89.3,97.3,98.9,152.2,146.2,7.4,135.5,100.7,77,80.2,93.9,80.9,68.3,49.1,63.9,71.5,80,55.4,54.4,53.8,73.7,73.3,81.4,80.4,75.3,70,83.4,56.6,67.3,83,52,53.4,39.5,38.6,62.5,64.2,59.9,41.3,34,70.8,59.8,59.7,23.6,16.9,66.9,47.4,39.8,49.8,88.6,28.7,86.8,25.6,75.6,78.9,47.9,106.7,106.8,86.9,81,103.5,39.6,59.9,68.5,64.6,85.1,83.6,82,82.8,66.6,74.2,68.1,80.6,72.3,88.5,23.7,76.8,57.7,54.7,81.6,72.9,83.6,71.7,58.9,83.8,80.9,68.2,95.7,92.1,91.2,91.7,114.3,69.6,66.2,55.2,58.8,90.5,77.2,82.4,59.7,60.2,79.5,83.1,79.6,46.8,58,58.6,77.4,74.3,37.4,24.3,54.1,85.5,143.1,277.8,110.7,179.1,89,76.9,66,58.9,53.7,57.1,87.1,47.9,50.1,72.3,32.1,40.6,18.7,72.7,33,51,7.4,54.8,53.2,57.4,49.7,41,44.4,69.5,67.1,49.5,19.8,31.7,62.4,106.2,96.5,55.4,98.2,212,210.3,247.5,123.9,120.4,116.1,59.1,78.1,89.2,90.4,65.4,65.2,70.6,78.8,90.6,94.6,98.5,91.3,103.7,116.4,75.5,75.1,75.8,77.8,67.6,78.6,132,228.2,54.8,89.6,80.4,66.8,77.7,87.9,83.1,69.1,74,70.7,60.6,139.1,136.7,85.3,51.2,77.3,74.6,53.9,84.4,114.6,54,41.3,85,46.9,47.5,72.4,1.9,78.6,49,47.8,72.4,73.8,56.9,19.4,37.2,78.7,184.7,28.3,66.9,49.5,105.3,80.4,42.4,42.6,44.1,44.3,31.3,31.5,62.8,64.5,74.4,100.2,83.8,55.9,154.1,156.9,88.5,59.4,89.3,105.5,63.9,82.5,83.5,84,166.2,175.3,97.7,51.7,42.8,60.5,87.8,87.9,70,44.9,104.2,66.1,66.2,74.1,93.2,104.1,104.5,83.5,72.4,73.9,75.4,72.7,99.7,97.2,74.5,95.7,138.2,82.1,79.1,47.1,60.6,84,101.6,97.4,61.1,58.7,41.8,90.4,94.5,91.3,85.3,92.5,92,103.3,146.6,75,78.2,68.3,77,101.7,80.1,68,82.2,55.7,48.1,57.6,330.4,331.2,103.8,104.9,86.7,87.1,88,87.9,67.8,67.9,60.6,54.7,66,37.5,27,4.3,59.5,70.3,68.9,93.1,7.5,56.1,48.5,50.2,49.4,40.1,10.3,129.9,168.6,54.3,105.2,111.7,86.2,83.5,89.1,89.7,82.4,44.7,48.7,102.9,110.2,93.9,131.8,116.4,117.1,114.8,103,116.8,97.2,87.9,215.9,120.6,85.1,59.7,58.5,88.7,32.6,82,51.1,74.8,95.7,98.7,103.2,101.5,124.4,126.9,138,89.5,78.1,104.8,85.9,85.6,83,85.7,94.9,94.5,96.5,99.8,47.2,56.7,81.9,83.8,145,103,78.9,63.3,55.9,32.4,48.6,53.8,16.3,69.9,89.6,67.1,61,15.8,76.7,70,84.6,56.2,44.7,45.6,63.9,69.6,98.1,104.9,80.6,29.3,49.5,51.6,66.2,64.6,55.6,62.1,61,59,69.1,71.4,75.8,88.4,43,340.3,171,198.7,730.9,14.3,159.9,138.6,163.4,391,128.7,131.2,118.7,214.9,68.4,405.5,94,157.3,147.1,58.5,37.3,96.6,104.9,105.5,85.6,79.2,539.4,97.8,46.1,77,85.9,84.4,89.1,84.3,39.1,36.7,51.5,44.1,50.2,47.7,64.6,65.2,123.5,82.5,77.1,53.2,38.6,43,35.1,37.8,39.4,43.6,46.7,45.6,48.9,52,84.1,82.1,87.2,85.8,48.3,47,53.5,51.3,53.8,51.7,62.4,59.9,58.4,56,40.2,42.5,54.6,29.1,31.2,58.9,44.6,39.8,45.7,42.5,47.6,31.6,72.3,166,49.6,202.6,578.7,83.7,83.7,73.2,36.2,34.2,43.9,47.4,52,54.8,59.8,57,48.9,51.5,63,52.8,46.9,46,63.1,87,157.3,25.4,101.9,77.4,113,53.7,53.1,106.8,54.6,52.8,78.3,82.7,42.2,40.6,59.9,75.4,73.4,69.2,70.5,47.4,83.3,84,67.3,66.1,57.9,56.6,62.3,56.7,57.8,54.2,53.2,51.5,53.8,54.8,75.5,73.9,47.9,49,71.4,67.4,39.4,38,73.9,6,52.8,8.7,43.3,41.6,57.7,54.9,88.3,71.5,66.9,112.5,158.8,64.6,64.2,86,75.7,7.7,82.8,79.4,54,24.8,92.4,68.3,79.3,126.7,128.5,89.1,100,54.4,55.6,117.6,201.2,82.5,165.3,93,87.1,220.9,270.9,139.2,11.5,118,120.3,129.8,484.1,89.6,149.7,134.5,104.3,106.5,94.7,82.8,118.5,124.6,118.4,125,103.8,217.6,123.4,130,90.8,105.4,53.8,98.1,122.6,115.7,133.2,119.9,114.1,37.2,142.3,111.9,112.4,158.8,157.2,165.6,130.5,466.9,100.8,147.1,326.1,80.9,79.9,77.3,84.5,71.4,67.7,56.1,45.3,20.5,36.3,80.7,14.5,38.3,45.9,64.6,51.1,74.4,76.5,117.6,190.4,80.6,74.4,73.5,20.9,37.6,57.3,108.2,78.2,76.4,52.4,79.1,95.9,137.7,313.9,583.9,169,72,96.6,317.5,79.3,686.6,60.8,60.6,59.5,58.8,63,63.2,64.4,57.9,57.8,73.2,47.1,47.4,47.1,47,47.6,47.7,47.7,47.8,51.3,53.9,32.5,37.5,28.4,39,67.8,67.5,28.6,22.1,38.1,25.2,38.2,38.5,27.7,34.9,43.8,85.8,87.2,88.2,88.5,120.1,89.4,111,24.1,68.9,67.8,506.3,208.9,210.8,74.4,74.1,88.7,106.1,105.1,104.8,103.9,94.4,91.1,66.1,61.8,79.1,58.8,58.2,58.1,58.8,52.8,54.2,50.7,56.7,43.7,4.3,48.5,48.1,49.5,52.6,53,52.6,52.3,64.2,64.2,63.8,65.3,72.3,374.4,152.4,545.1,46.5,46.3,47.2,47.4,47.1,47.2,59.6,51.8,51.8,49.1,49.4,49.7,50.2,55.8,56,56.2,55.2,44.7,45.2,44.8,44.8,53.3,52.6,53.3,53.7,61.5,62.2,60,60.8,74.2,74.8,149.7,67.1,66.6,67,67.1,120.8,120.9,799.4,605.4,116.7,116.9,116.7,117.3,669.5,106.3,105.6,59.4,58.5,111.7,111.1,101.9,107.1,106.2,129.8,80.8,79.2,110.2,110.7,130.7,84,83.4,91.8,94.3,46.7,59.5,262.2,117.4,395.4,177.2,40.9,130.4,126.2,125.6,109.7,108.7,108.4,27.1,26.9,27.3,27,51.4,51.5,29.5,29.6,29.6,29.5,29.5,29.7,59.5,32.7,32.7,33,32.5,59.5,29.8,30.9,36.2,40.3,34.4,33.7,32.3,32.8,32.2,33.9,32,33,33.5,32.9,32.8,33.1,32.9,32.8,35.9,36,35.7,35.9,192.7,27.8,27.1,37.5,27.2,27,37.7,30,29.7,29.5,29.2,26.7,26.5,26.6,26.7,32.3,32.3,32.3,31.8,29.8,29.8,29.9,29.7,39.1,38.9,39.1,38.8,26.4,26.1,26.3,26.1,26.3,26.2,26.1,26.1,27.1,27.1,27,27,26.1,25.8,51.9,37.9,29,28.1,28.2,47.4,47.1,92.2,41.7,41.7,65.7,37.2,102.6,111.2,267.9,146.8,74.1,229.4,29.5,29.5,92.6,36.6,36.5,35.5,37.9,29.4,22.9,22.8,23,23.1,46.1,46.2,29.4,29.6,29.6,29.7,28.2,37.6,26.4,27.5,39.4,39.7,28.8,37.8,32.4,32.4,32.5,32.8,39.3,39.1,39.4,39.4,46.2,46.2,110.8,31.7,31.6,31.9,31.6,46.6,1,93.9,277.9,38.2,18.9,19.1,38.2,19.1,18.9,22.9,22.8,22.3,0.4,22.6,26.2,26,25.9,25.6,37.4,37.3,36.7,36.6,38.3,38.2,38.1,38.5,160.9,173.5,193.5,15.7,57.3,72.6,17.4,17.8,34.8,36.3,36.3,32.5,31.9,33,32.9,51,26.4,24.1,44.2,47.3,22.1,21.7,22.7,24.5,44.1,29,38.5,43.1,51.4,41.4,39.5,62.3,56.3,21,27.4,37.9,26,41.1,26.7,40.7,15.8,19.7,20,19.8,19.9,19.8,37.1,37,37,37.1,42,163.2,53.1,106,13.6,18.8,70.8,35.7,35.6,29.8,30.4,44.5,31.1,54.6,42.4,30.7,26.4,26.1,13.9,31,31.6,31.8,17.2,43.5,33.9,33.9,32,31.2,36.8,18.4,18.4,32.9,32.9,33.1,16.6,16.5,33.4,16.7,16.6,38.2,37.9,15.1,24.5,23.7,32.5,32.7,34.5,31.7,26.6,26.7,33.1,33.2,23,22.8,22.9,23.1,24.5,24.6,24.5,24.6,26.4,26.3,26.5,26.4,26.5,26.4,26.5,26.5,29.3,29.5,29.4,29.6,28,27.9,28.1,28.1,27.9,28,27.8,28,27.9,28.1,56.1,242.3,84.3,112.3,60,59.1,51.4,51.6,75.3,37.6,37.5,73.1,36.4,36.6,29.8,29.7,59.5,29.6,29.6,59,14.4,49,63,33.2,33.3,32.9,33,32.9,32.7,33,32.7,39.1,39.1,39.2,39.1,29.3,29.4,58.7,59.4,29.6,29.3,61.3,30.4,30.2,30.5,30.3,30.3,30.5,27.6,27.7,55,27.9,27.7,27.6,27.8,28,27.8,55.4,56.9,56.7,44.4,44.3,44.4,44.2,44.7,44.4,45,44.9,62.4,62.4,62.7,62.7,72.8,73.1,145.7,97,48.6,48.7,48.6,48.5,48.4,48.5,37.7,60.3,53.6,62.8,23,23.5,15,54.4,110.9,32.5,20,23.7,44.2,9,11.8,14.8,29,130.5,13.6,14.1,15.4,16.1,13.3,10.9,10.6,14.9,11.5,9.3,8.4,14.3,18.5,21.9,48.5,27.3,36.3,36.2,37.7,35.3,41.2,13.5,13.3,23.5,24.2,18.6,18.6,13.6,15,13.2,11.2,27,37,38.5,43.4,43.9,103.9,19.6,25.4,25.2,27.9,22.9,25.8,25.9,26,26.4,26.4,26.9,27,26.6,26.7,53.2,50.5,51.8,25.9,25.9,25.7,25.7,25.6,25.7,49.3,28,26.3,26.2,26.2,25.9,25.7,25.7,51.6,50.7,35.9,16.9,25.9,25.9,26.1,25.9,26,25.8,25.9,25.9,25.9,51.8,25.8,26.1,25.9,25.8,9.1,42.6,27.7,27.8,53.6,51.8,54.7,25.6,26.2,26.1,51.5,103.9,103.9,52.3,51.8,51.7,103.8,97.9,105.8,136.6,52.1,52.4,52.6,60.9,42.2,51.8,52.5,52.6,51.6,51.9,35.8,53,7.7,49.8,57.9,46.1,46.3,52.3,52.8,39.6,26.1,25.9,25.9,26.1,25.9,26,26.3,26.3,26,26,52.3,46.8,4.9,52.1,51.9,52,51.9,51.9,52.1,103.7,194.9,67.8,67.1,52.9,53,25.2,25.9,26.1,26.2,26.1,26.2,26.1,25.8,25.8,25.9,26.2,27.6,27.6,25.9,25.9,26.6,26,26,26.3,26.3,26.3,26.2,25.8,25.9,26.3,25.7,26.1,26.1,26.1,25.6,25.8,26.1,26.1,26.1,25.8,26.1,26.1,26.3,25.7,25.8,26.2,26,26,25.9,26,26.1,25.8,26,25.9,25.9,26,26.1,25.9,26,26,25.8,51.6,52.2,51.8,52.2,28.2,27.3,27.4,26.1,26.9,26.7,25.9,26.1,26.2,26,26.2,26.3,9.9,18.5,24.4,25.8,36.8,15.9,26,25.9,25.9,26.4,26.4,25.8,26.4,26.2,25.7,26.3,34.9,16.8,26.2,38.1,63.4,52.6,104.3,51.8,51.4,52.9,51.5,26.1,26.1,42.5,35.4,26.3,21,31,25.8,25.9,26.1,25.5,26.2,26.1,26.1,26.2,25.6,25.9,25.9,25.3,25.6,25.6,25.3,25.5,25.6,15.3,27.1,27.5,40.4,47.6,6.9,40.3,25.5,25.5,25.5,25.5,26,26,31.8,44.7,25.7,42.6,11.2,35.7,27.9,39,87.2,68.1,101.5,79.3,103.5,51.5,51.6,51.5,51.8,51.2,54.3,53.9,53.6,52.5,51.1,51,51.6,51.3,26.7,25.3,25.4,26,25.7,25.7,31.3,32,26.1,26,26.1,25.8,25.8,25,26.2,26.2,25.8,25.8,25.8,26.3,26.2,26.2,26.2,25.6,25.7,26,26,37.6,40.3,25.5,38.4,26.3,25.7,25.7,26.1,17.9,36.6,26.3,26.3,25.7,25.7,26.2,25.9,25.7,69.7,54.7,52.6,52.5,52.4,52.4,52.2,52.1,52.2,52,52.6,52.7,50.9,182.7,51.9,103.8,168.8,116.7,114.1,87.1,52.8,51.8,53.3,52.3,52.1,52.1,78.3,52.1,51.9,52.2,51.5,26.7,26.7,26.5,25.7,52.4,51.8,51.7,52.6,26.2,26.4,24.7,42.2,35.5,25.2,25.1,26.9,27.4,27.5,27.4,27.4,25.8,25.8,26.3,32.5,32.3,30.3,30.3,51.4,25.6,25.8,25.5,25.5,22.3,29.6,52.3,32.7,19.2,51.4,51.1,51.4,196.6,62.9,26.1,25.8,25.7,26.4,26.9,26.2,26.3,26.2,26.3,26.1,25.8,29,29.1,28.2,28.2,26.6,26.7,26,26.1,26,25.5,25.5,26.4,26.2,25.8,26.7,25.7,25.8,25.6,25.5,26.5,25.9,26,26,25.6,26,26.2,26.2,25.9,25.9,26.7,25.5,26.2,25.9,25.8,26.4,26.1,26.2,26.1,25.6,26,25.9,26.5,25.3,25.5,26.5,26.1,26.1,26,37.8,40.2,52.7,77,52,55.7,53.7,26.1,25.9,25.7,26.2,25,25.7,26.1,26.4,23.4,2.5,26,26.4,25.8,26.5,25.8,26,26.1,25.9,25.7,26.2,25.8,25.5,26,25.4,26,25.8,25.8,26,26.4,25.6,25.8,26.1,26,25.2,20.9,31.2,27.2,25.7,26.1,25.5,26.1,25.6,25.8,25.5,26.4,25.7,25.2,24.9,25.5,26.6,26.1,25.6,12.9,27.9,26.1,12.1,13.5,25.4,26.1,25.7,26,25.4,26.1,23.6,23.6,31.1,24.6,25.4,26.1,25.8,25.8,25.9,25.6,25.8,25.8,51.8,26.1,25.5,25.5,26.4,39,51.8,77.3,109.5,52.6,38.3,38.8,51.9,26.3,26.2,28.4,28.7,28.8,26.7,25.5,26.4,26.7,25.8,26.5,26.2,25.6,26.5,26.1,26,26.5,26.6,26.3,26.1,26.8,26.7,26.6,26.6,25.8,25.4,26.7,25.9,26.2,26.4,26.6,25.7,26.4,27.3,26.4,26.1,25.9,25.9,27.2,25.6,25.6,54.5,26.9,26.3,27,26.8,26.5,26.2,105.5,26.6,78.9,25.3,25.9,26.8,71.2,52.3,27.2,25.8,51.7,79.1,52.8,50.9,24.6,27.3,25.7,25.4,25.9,25.3,38.4,25.6,26.2,25.8,25.6,17.8,27.7,25.2,26.7,25.9,25.7,26.1,26,26.5,25.7,26.4,25.2,25.7,26.4,25.9,26.1,26.2,25.3,25.8,25.4,26.2,25.4,26.8,25.5,25.2,26.1,25.8,25.7,25.8,26.1,25.5,29.8,27.2,26.8,26,26.2,26.5,25.9,26.6,26.4,26.3,25.3,26.3,25.3,25.8,25.9,26.9,24.9,25.1,103.9,25.5,26,26,25.5,26,25.1,26.1,25.5,25.9,25.4,26.3,25.3,26.1,25.9,26,25.8,25.8,25.2,25.6,25.5,25.2,23.8,27.2,25,26.8,24.5,21.4,25.8,26.4,25.8,25.8,25.7,26,26,76.8,25.7,25.8,25.7,26.4,25.2,18.8,27,27.4,13.7,12,26.5,25.3,26.5,26.2,25.7,25.6,26.4,102.6,26.3,26,26.1,25,25.6,25,26.7,35.2,5.1,42.1,28,38.2,38.1,42.2,35.8,14.3,14.2,15.5,15.4,15.9,15.8,31.6,25.3,25.7,25.9,26.1,25.2,48.2,56.6,49.5,26,25,25.2,25.3,25.4,25,14.9,21.4,37.2,37.7,37.8,22.8,23.1,29.1,31,29.8,34.8,25.2,25.8,26.7,92.2,51.3,26.3,25.7,26,25.8,26,26.6,26,25.9,26,26.2,25.7,25.7,26.1,25.4,26.2,25.9,26,26,25.9,25.6,25.5,25.7,25.9,25.9,26.1,25.5,26.2,25.9,25.8,26,56.8,85.8,52,25.8,25.7,26,25.8,26.2,26.1,26,26.3,26.2,26,26.3,26.2,25.9,18.2,28.1,26.3,26.2,26.7,27.2,25.8,26.5,26,12.7,26.1,26.6,26.4,26,26.9,26.1,25.9,26.3,26.2,26,25.5,25.8,25.6,25.6,25.7,26.2,25.9,25.1,26.4,25.5,57.1,27.2,27.1,39.9,39.7,50.1,25.7,25.6,25.2,25.8,25.3,27.5,26.2,26.3,26.5,26,25.8,25.6,26.7,25.8,27,26,25.9,25.9,25.7,25.9,25.8,25.5,25.9,33.9,25.1,26.3,25.8,26.3,25.5,25.3,26.6,25.4,25.4,18.6,26.5,24.2,27.9,26,26.4,26.2,26,26.2,26.1,26.1,25.6,25.9,26,25.3,26.6,25.3,25.3,25.2,26.2,26.3,28.2,29.2,26.3,26.2,26.3,26.2,26.3,26,26.1,25.4,26.2,26.3,25.5,26.3,25.8,26,50.9,51.6,44.3,26.3,26.4,26,26.2,52.8,52.2,27.1,25.2,51.7,52.6,51.8,52.5,26.1,25.6,26.4,26.5,168.6,27.4,52.5,26.5,26.3,25.8,26.5,26.1,25.9,26.5,26.2,26.2,26.9,25.9,26.2,26.4,26.4,25.9,26.7,26.6,25.5,26.8,26.4,26.1,26.4,25.8,26,25.1,25.1,26.5,31.7,25.4,26.1,26.1,26.1,25.8,25.5,26,25.8,26,25.8,26.3,26,26.2,26.9,25.9,26.4,26.5,26.1,26.3,26.2,24,2.2,26.3,26.7,52.3,51.9,52.1,52.8,25.5,26,26.2,26.1,26,26.1,26.1,24.7,26.1,26.4,25.6,20.9,25,26,26.8,25.8,26.2,26.5,26.2,25.5,27,26.1,26.5,25.8,26.1,26,26.1,26.1,26.7,25.6,26.3,26.4,52.5,78.4,26.4,26.5,26.5,26.1,26.6,26.3,26.5,26.3,26.4,26.1,26.3,26.3,26.2,26.3,26.5,26.6,26.1,26.4,25.9,26.4,26.5,26,27.9,24.8,26.7,25.7,26.3,25.9,26.6,26.4,27.5,24.9,26.5,25.9,26.7,25.9,26.6,26.2,26.1,28.7,28.7,27.9,26.6,25.5,27.6,7.8,17.5,26.2,26,53.1,52.6,52.8,106.3,53.8,52.3,52,52.1,51.6,52.1,25.6,25.5,25.4,26.6,25.8,26.1,25.8,25.8,25.3,25.9,26.5,25.1,25.8,39.1,25.4,25.3,26,26.4,25.6,25,25.9,26,25.8,26.1,25.2,25.3,25.8,25.8,25.9,25.4,25.4,26.2,25.7,25.3,25.5,26.1,25.7,25.6,25.6,25.8,24.3,25.6,25.8,25.4,25.8,25.8,25.7,25.7,26.1,7.2,18.5,25.7,19.5,60,51.7,25.4,26.4,25.6,25.6,26.2,25.8,26.1,25.9,25.8,26.2,26.8,25.8,26.2,25.7,26.1,25.9,25.8,25.7,26.2,25.4,26.3,25.5,26.5,8.8,17.4,25.7,25.7,25.9,25.9,25.9,25.9,25.9,25.4,26,26.1,25.6,25.8,25.6,25.9,25.7,25.9,26.2,25.8,25.8,25.7,25.8,26.1,26.5,24.9,25.6,25.8,25.5,26,25.9,25.8,25.7,26,25.6,25.6,26.5,51.4,51.4,51.9,25.4,26.1,26.3,25.7,25.6,26.3,26.3,26.2,26.5,26.2,26.1,25.8,26.2,25.7,26.7,25.6,26.5,26.2,26,26.2,26.2,26,25.9,27.1,26.4,26,26.1,26.2,26.5,25.9,26.5,25.9,26.2,25.9,25.9,25.9,26.1,25.7,26.2,25.9,25.8,25.8,32.4,20.3,25.8,26,30.9,42.8,53.6,55.2,26.4,25.9,26.3,26.3,33.2,10.2,9,26.3,25.8,25.9,26.3,27.2,24.9,26.7,25.7,25.5,25.8,26.3,25.7,102.7,27.6,27.3,25.3,26.6,26.6,25.9,26.5,26.1,26.2,34.1,41.5,40.6,24.5,16.3,33.8,26.9,27.3,27.5,13.5,13.5,13.5,13.6,13.2,13.3,13.5,13.4,13.4,13.2,27.1,26.4,26.4,27.2,13.4,13.5,13.5,13.8,13.7,33.5,20.2,27,26,26.6,26.7,25.9,56.8,32.9,27.8,27.6,26.8,26.3,26,26.1,14.9,11.5,26,26.7,26.1,27.1,26.6,26.8,26.5,26.4,41.6,32.9,22.7,23.7,19.1,25.3,66.7,26.7,26.9,28,31.3,26.8,26.5,26.6,27.5,26.2,26.1,27.4,31.7,27,26.8,26.8,27.8,27.3,27.9,23.4,23.5,109,41.2,29.5,32,27.3,27.6,27.1,28,27.9,27,27,29.4,29.4,26.7,26.6,27.6,27.5,26.9,27.2,140.2,55.2,35.8,36.2,33.6,33.8,35,17.8,17.7,24,24,32.3,43.9,21.9,22,27.6,27.6,36.2,36.4,40.3,30.2,149.5,131.7,59.7,39.4,39.4,25.5,27.2,26.1,27.9,27.5,26.1,27.5,26.5,26.8,26.4,26.4,26.3,26.2,25.9,25.8,26.4,27.6,24.1,93.4,77.8,51.8,50.6,24.1,24.2,38.8,39.3,79.3,24.3,26.6,26.7,19.8,6.2,26,35.7,35.8,43.6,22,44.6,37.7,37.4,38.6,38.4,27.4,27.5,31.1,31.3,38.4,25.8,25.9,25,23.6,27.7,25.1,26.5,25.3,12.7,16.2,16,25.4,25.7,25.8,38.3,38.6,145.6,45.9,41.5,52.2,44.6,26.3,38.7,38.6,38.7,25.7,38.7,39.8,37,40.2,25.6,25.3,25.4,27.3,141.5,24.7,26.5,37.3,25.6,25.9,25.5,24.9,26.1,25.1,25.2,25.6,25.4,26.3,25.5,25.4,25.2,25.6,11.2,14,26.6,24.9,25.9,25.1,25.1,25.3,25.7,25.1,24.6,25.6,24.3,25.2,20.3,20.7,25.4,24.4,27.8,24.2,26,25.5,26,26.3,88.3,38.8,25.1,22,227.3,92.3,53.5,31.1,20.1,38.6,39.1,39,38.7,38.9,25.5,25.3,37.8,26.8,25.5,26.4,26,26.1,25.7,25.5,27.3,25.7,25.6,26,26.1,26.5,27.7,25.1,25.2,26.1,26.8,26.2,36.4,29.7,36.2,14.2,1.2,48.3,52,34.8,21.2,2.2,6.7,2.5,34.4,31.6,29.6,3.7,12.6,22.2,37,28.5,25.7,49,109.6,118.4,37.3,106.4,115.5,46.3,45.2,36.1,110.1,76.1,30.1,30.5,50.7,51.1,58.3,54.9,68,67.3,34.5,35.2,34.1,34.3,24.8,25,50.1,182.6,29.8,30.3,30.5,30.4,36.8,36.4,34.3,35,30.5,31.4,31.4,30.9,116.7,91.6,46.6,46.5,35.3,36.2,36.2,36.6,26.6,26.7,27.1,26.3,25.9,26.7,26.6,26.9,21.8,21.8,75.1,147.3,188.6,106.6,84.2,87.7,29,29.2,28.8,28.6,29.2,29.2,29.8,28.1,60.6,31.3,30.4,26.4,27.2,26.8,27.5,25.2,26.5,27.4,26.9,28.4,26.1,54.7,108.4,28.7,30,43.9,44.3,42,42.3,46.4,45.9,45.1,45.6,33.7,33.5,38.2,28.5,117.2,45.5,12.5,30.7,32.3,32.5,37.6,37.6,36.2,34.7,28.2,28.4,27.7,28.1,5.7,22.3,27.7,31.6,32.8,32.4,31.7,30.6,32.4,31.5,31.3,31.7,32,32.1,32.1,41.4,42.3,14.5,70.4,353.2,43.5,25.6,33,25.9,30.3,36.4,36.5,29,29.3,29,34.2,23.7,29.3,29.1,29,30.1,31.2,31.1,31.1,35,34.5,68.5,172.7,141.2,143.9,73.5,114.3,114.2,126.3,125.5,74.4,78,35.6,72.7,73.1,55.8,90.3,100.3,101.2,123.2,61.2,61.5,68.1,69.3,138.7,155.4,156.3,104.9,103.2,208.7,172.8,42.5,43.9,43.8,44,40.2,41.5,26.9,55.4,36.5,36.9,37,36.6,50.4,50.9,59.9,40.8,102,50.4,51,102.4,51.2,51.7,42.1,42.8,41.9,41.3,36.7,37.2,36.8,37.5,43.6,30.8,55.4,67.1,178.7,43.5,43.4,43.2,22.1,22.4,34.2,35.4,35.3,35.3,57.5,58.6,180.6,61.2,61.4,37.8,37.9,23,41.6,33.5,22.3,44.5,60.7,30.2,30,41.7,42.7,42.3,42.2,88,93.1,91.3,45.1,44.7,52.6,54.1,53.4,53.7,45.3,45.6,46,44.5,66.8,69.7,275.2,17.7,91.7,23.3,34.6,66.9,68.1,100.1,60.6,60.7,44.1,59.9,34.9,60.9,56.7,61.3,61.6,53,51.6,51.6,51.6,81.5,82.2,72.5,35.6,36.6,34.2,35.2,70.4,44.2,45.1,44,45.6,102.3,50.1,51.3,83.3,230.6,91.7,44.9,45.7,54,54.6,54.5,54.7,57.1,57.9,57.4,57.8,78.6,79.8,117.4,119.5,646,91,92.2,65.4,65.7,73.5,63.1,118.2,240.4,91.6,106.4,135.5,131.5,63,67.8,62.4,62.3,63,62.9,66.9,67.3,67,67.4,47.2,48.7,47.6,48.6,37.1,37.4,37.9,37.8,42.8,43.3,44.4,43.2,67.3,67,71.5,72.1,144.2,149.4,140.6,73.7,67.4,100.1,50.2,50.7,50.8,51.1,50.6,51.4,56.9,56.1,51.6,53.9,54.3,54.5,30.2,78.6,47.2,48,49.4,47.9,32.8,34.5,67.9,37.9,56.9,47.7,48,86.6,144.8,34.9,46.9,46.3,70.8,48.2,47.7,42.6,41.3,41.7,41.8,20.8,21.1,41.9,39.4,40.1,39.1,39.9,39.9,40.2,48.9,49.8,48.9,50,27.1,116.2,35.2,35.8,36,35.6,36.4,37.3,37.4,37.6,32.7,34,33.3,34.3,31.5,32.5,32.5,32.1,34.7,35,35.6,35,22.6,22.6,22.9,23.2,66.2,33.2,35.9,34.5,34,25.6,25.4,17.1,34.3,38.4,38.9,39.8,38.9,39.9,40,38,37.3,42.9,43.8,43.4,43.9,22.7,40.7,40.2,39.7,40.6,27.3,28,27.3,26.2,63.1,63.5,62.6,63.1,180.6,46.8,45.9,23.2,23.3,22.7,23.7,29.2,28.9,29.7,28.6,28.2,28.5,28.3,28.6,43.8,29.3,72.7,36.4,37,36.8,36.6,25.2,25,29.8,21.1,26.3,26.4,27,26.3,24,23.8,24.3,23.6,24.5,23.9,24.1,23.4,26.4,27,27.5,26.3,28.4,27.1,28.7,27,27.2,26.8,27.2,26.6,26.4,27,53.9,26.8,30.3,16.5,17.1,16.8,17.2,15.7,16.7,16.8,19.8,19.5,18.9,19.6,20.7,20.5,20.4,20.7,37.4,36.9,36.9,36.8,22.8,22.4,22.5,22.4,22.4,22.3,22.2,22.7,15.1,14.1,13.6,14.7,109.3,121.3,47.6,61.3,55.2,54.9,48.8,44.2,114.4,30.3,57.6,1.1,29.4,27.4,64.2,33.5,33.5,34,33.7,28.2,27.8,27.6,27.5,35.7,35.2,71.2,35.7,35,35.9,35.5,34.7,36,35.9,35,139,33.7,34.4,33.8,17.4,17.6,32.5,32.7,33,32.9,35.1,35.4,35.1,34.8,34.9,34.9,35,35.1,45.3,45.7,45.5,45.8,45.9,47.6,93.6,44,44.2,43.6,43.2,50,49.8,50.6,49.3,40.9,40.4,29.9,33.8,62.2,44.2,88.1,76.3,77.7,148.1,74,73.3,48,48.7,48.2,48.9,51.5,51.7,51.6,52.3,42,42.5,42.3,42.8,166.9,149.2,54.9,8.9,18.3,52,15.6,7.2,121.8,5.1,45.1,29,18.3,32.7,64.3,49.8,53.2,14.3,44.1,72.8,41.1,41.4,41.6,20.5,22,29.8,30.6,28.1,27.3,24.6,25.5,24.8,25.8,26.8,23.3,25.6,25.1,27.6,27.4,28,27.7,20.1,21,20.5,20.7,21.3,21.8,22.1,22,26.6,26.2,26.8,26.4,28.4,27.8,29.5,28.1,24.4,24.9,24.9,24,97.3,26.1,26.2,51.9,26.3,26,27,26.1,30.7,31.7,32.2,31.8,33.4,32,32.8,32.8,25.9,26.2,26.4,26.3,25.9,25.8,26,26.8,34.8,36.2,35.8,35.8,31.3,32,31.8,32.1,27.6,28.2,28.4,28.2,21.7,22,22,22.1,44.1,44.9,26.1,26.2,26,26.4,25.7,25.8,25.5,26,165.9,28.9,30,31.9,26.9,34.9,32.9,35.9,35.4,32.1,27,31.6,24.7,33,29.4,26.9,26.3,29.5,28,28,27.6,29.5,28.9,34,32.6,19.9,19.6,33.8,33.7,18.5,17.3,18.5,17.9,19.3,18.6,18.9,19,17.6,17.5,17.9,17.2,15.9,16.5,16.4,16.1,17,17,17,16.6,75,37.4,27.8,24.6,31.5,23.4,22.8,16,15.7,16.2,15.3,28.3,13.8,14.1,14,14.1,13.8,12.8,19.7,18.5,19.8,18.2,13.4,13.7,13.4,13.3,17.2,17,18.3,17.6,16.6,17.2,17,17.3,68.7,37.4,19.3,18.4,38.6,38.6,26.6,26.6,27.1,27,13.5,12.8,13.7,13.4,27.9,13.9,13.9,23,14.9,8.3,44.5,28.5,28.4,14.2,14,14.4,13.9,12.9,13.3,13.3,13.5,15.2,15.4,15,15.6,11,11,11,11.1,21.7,21.4,13,17.4,23.6,50.7,39.1,45.5,38.3,36.5,32.3,27.1,49.1,103.8,56.4,25.1,25.2,25.3,25.2,39.9,34,33.1,33.6,55.2,22.5,22.1,28.9,39.4,40.5,8.5,33.4,18.8,20.2,32.9,35.3,35.5,29.8,8,20.6,23,23.2,23.5,24.2,8.5,26.6,36.1,18.2,18.2,17.8,16.9,70.2,47.3,47.1,42.4,43.2,46.2,46.7,66.4,66.5,81.1,40.7,41.5,50.5,25,25.7,21.6,21.4,21.3,22,32,31.4,39.1,19.2,19.9,16.9,17.3,17.9,17.3,23.7,3.3,54.8,92.3,2.6,69.6,74.6,65,49.4,36.2,131.2,19.4,19.9,19.7,19.9,32.4,16.5,16.6,15.3,16,15.7,16.6,15.9,16.5,16.1,16.3,12.4,12.7,12.4,13.5,16.8,16.8,21.1,20.9,24.2,25,17.9,18,17.9,18.2,18.8,18.7,18.8,18.1,15.5,15.6,15.9,15.8,11.6,8.6,21.3,42.2,41.8,42,15.6,15.8,15.7,16,23.3,23.5,23.5,23.3,26.8,13.6,13.4,18.1,18.4,18.6,18.5,15.3,15.7,15.5,15.7,18.2,19.5,19.2,20,15.5,16,16.2,15.9,16.7,17.2,17.1,16.9,13.8,13.9,13.9,14,17.7,18.2,18.5,18.7,13,13,26.2,26.2,26,15.6,15.6,30.2,62.2,68.7,39.6,171.4,37.5,192.9,24.2,23.8,22.5,1.6,24.7,51.2,52.6,51.6,48.3,49.9,48.1,49.6,47.2,38.9,43.6,90.4,59.6,62.2,90.6,74.2,67.9,81.4,82.3,67,102.3,83.4,120.8,60.2,90.6,92.1,163,80.8,40.7,41.2,38.9,39.3,46.7,47.4,40.2,40.9,87.8,48.1,48.8,37.4,38.1,38.1,38.1,36.2,36.7,38.6,34.7,35.2,34.7,31.9,31.8,42.3,40.9,41.4,20.9,21.2,35.8,21.7,55.6,57.1,65.1,123.7,72.8,45.3,62.5,38,58.3,52.2,38.8,30.3,17.1,14.6,18.6,51.8,42.8,48,44,27.1,27.7,32.4,67.9,61.4,54.4,28.2,27.2,42.5,42.5,111.4,55.4,56.2,35.4,35.9,35.7,36,28.5,28.4,28.3,29.2,30,31,30.1,30.6,46.3,47.5,42.8,37.2,39.8,40.5,28.1,29.3,29.1,29.3,54.7,55.6,52.3,40.9,27.9,14.4,126.7,204.3,153.6,118.3,77,46.7,45.5,51.4,40.5,36.6,35.8,36.4,36.3,23.3,23.1,24.2,23.5,32.5,32.4,33.2,32.8,22.8,23,23.3,23,27.4,27.4,27.4,26.8,26.1,26.8,28.5,25.9,53.4,53.6,58.3,58.3,125.3,96.2,95.2,344.6,344.6,125,93.5,47.1,47,41.2,41.2,49.8,32.5,25.6,25.7,25.5,25.8,36.4,36.9,31.8,35.6,47.3,23.9,23.8,26.9,26.8,26.6,26.8,33.2,33.2,33.2,33.8,35.1,35.8,38.5,33.9,42.8,42.7,44.9,34.2,34.9,34.8,35.3,28.8,28.5,29.1,28.8,29.2,25.3,28.4,27.2,41.4,41.9,42.9,42.2,22.9,23.6,23.6,23.4,23.7,19.8,44.4,44.2,43.6,188.3,88.8,88.2,48,48.4,54.1,42.7,30.4,31,61.8,30.7,30.3,31,31.5,27.6,28,28.2,27.6,27.4,28.1,27.8,27.6,30,31.7,30.9,30.9,25.1,26.2,25.3,27,40.8,41,40.9,41.3,38.1,39.4,39.1,39.3,38.4,39.4,32.5,33.1,33.6,32.8,32.6,32.3,33,32.3,39.4,38.7,18.6,19.2,19.1,19.5,20.7,20.6,20.8,19.8,26,25.7,26.7,26.1,26.7,21.3,60,97.7,6.3,148.1,51.2,78.4,43,42.4,179.7,20,27.6,14.2,14.1,29.3,29.1,29.3,29.8,27,27.7,27.1,27.4,19.9,19.8,21,20.1,35.2,33.7,1.8,23.3,23.9,24.2,23.8,17.1,18,19.2,16.7,18.5,18.1,17.5,17.8,22.6,23.4,24.3,22.8,27.9,13.3,13.2,26.8,26.5,20.1,19.3,19.3,18.4,14.5,13.9,14,13.7,12.6,12.1,12.4,12.1,14.2,13,26.7,15.4,14.1,14.9,13.7,13.8,13.7,28.9,15.9,15.8,15.8,15.8,10.7,10.5,21.5,21.7,20.9,25.6,60,20.9,21.4,10.6,10.7,10.3,10.4,12.8,12.3,12.8,12.4,13.4,12.6,16.2,16.4,13.4,13.6,14.8,12.1,8.9,9.2,9.5,8.9,14.9,14.7,14.6,14.6,13.6,12.8,13.6,13.1,13.9,13.1,13.8,13.3,14.3,13.7,13.9,13.9,13.2,13,13.6,12.9,19.6,20,38.9,44.8,45,10.7,10.4,10.9,10.7,11,10.5,9.7,9.8,18.8,19.2,18.6,18,15.8,15.7,16.5,15.7,15.6,15.7,15.7,15.4,47,47.4,46.9,46.8,34.2,32.2,19.8,25.3,13.4,16.9,25,25.3,25.4,24,19.2,19.9,19.5,19.6,22.9,24,25.3,22.5,15.7,15.4,15.7,16.5,19.3,20.4,36.6,25.5,26.6,51.6,113.3,28.2,28.6,29.5,28.6,19.7,20.7,20.4,20.7,22,22.8,22.3,23.7,25.9,24.1,25.4,24.7,39.7,39.9,37.4,19.1,18.4,22.3,22.8,23.3,23.1,19.7,19.4,19.4,18.4,38.9,38.2,20.3,20,23.6,22.8,18.3,19.2,39.5,35.4,35.3,31.2,31.9,61.9,46.8,5.1,66.1,57.3,55,47.6,41.4,48.9,40.7,25.6,35.4,41.7,29.2,34.2,38,31,35.6,41,35.4,30.1,39.3,48,42.3,40.1,50.7,38.2,53.3,3.3,15.4,70.9,50.4,9.7,29.2,25.1,23.7,25.3,24.9,27.9,28,29.1,28.1,26.8,25.5,45.7,46,27.8,27.9,28.4,26,53,52.6,5.5,15.9,21,42.2,51.4,51.4,52.4,25.6,25.9,37.1,38.2,37.9,38,45,44.1,23.2,21.5,21.8,20.3,23.5,22.2,24.1,22.4,40.3,40.6,39.2,41,36.2,19.2,18.4,22.6,25.3,24.8,25.2,24.7,19.8,20,19.8,19.6,17.6,16.9,35.8,22.9,23.2,47.7,91.8,40.1,7.4,94,24.7,19.3,19.7,14.4,14.5,15.4,13.9,51.9,48.9,35.2,56.9,60.7,55.7,125.7,34.2,32.8,23.7,39.6,39.5,40.9,46.7,33.1,53.7,102.9,88.3,75.4,71.1,36.9,40.8,38.4,49.1,51.5,48.3,42.4,96.7,100.3,69.8,56.5,48.8,27.9,44.9,66.9,46.3,48.6,74.2,94.1,86.1,78.9,77.8,64.4,81.4,63.3,68,82.2,57,66.5,64.5,67.4,63.1,109.5,87.9,140.3,67.3,130.7,112.7,109.2,99.1,77.8,138.6,52.5,97.2,20,64.6,98.5,109.9,179.9,82.8,50.1,51.2,57,40,25.1,60.1,41.3,39.1,38.2,43.8,59.6,65.2,57.7,32.1,58.2,18.7,83.3,52.2,55.8,62.7,84.5,79.6,63.6,5.7,82,37.6,74.1,31.9,53.6,29.9,24.7,50.5,52.5,67.4,27.5,126.1,45.8,51.3,49.1,51.6,51.7,62.7,100.4,141.9,31.2,55.9,33.8,40.8,65.9,49.8,59,72.8,66.8,46.9,97.1,144.6,178.2,17,64.3,91.3,91.3,91.2,91.3,91.2,95.2,52.6,45.4,78.8,86.3,114.1,133.7,46,118.2,150.9,52.9,0.4,187.2,125,73.4,83.7,29,18.9,60.8,24.1,33.6,67.9,112.3,90.5,0.9,138.5,183.6,105,111.1,45,87.6,56,65.2,98.8,101.3,72.9,123.6,175.2,179.5,174.6,116.3,112.6,50.3,166,198,130.5,157.4,107.4,151.1,135.2,49.7,95.9,101.8,103.5,102.1,86.1,105.2,89.2,75.6,40.8,51.2,75,25.5,97.9,108.1,58.1,60.2,89.1,80.1,152.3,78.9,77.9,80.6,78.2,78.7,38.6,40.8,67.5,78.6,82.5,72.3,61.5,55.1,51.5,55.9,51.9,51.7,84.7,93.2,42.2,31.8,42.1,55.3,62.2,54.3,68.5,75.1,61.6,68.9,40.2,46.8,74.7,8.9,28.3,41.2,52.2,43.6,71,39.7,41.7,48.2,32.5,59.5,42.7,36.1,68.8,136,55.9,48,17.6,36.6,50.9,51.9,72.4,16.7,58.1,66.8,13.4,20.2,65.5,41.3,93.3,179,61,56.8,48.2,47.7,25.7,60.9,58.8,50.6,51,100.3,72.4,95.1,66.5,81.7,83.2,36.4,37.5,79.8,43.3,49.4,60.9,52.5,32.6,73,80.2,69.1,76.5,71.6,68.9,73.5,65.7,66.1,88.7,77.7,48.7,28.2,36.5,39,51.9,51.9,42.7,67.2,43.5,44.8,55,44.2,57.7,54.9,44.9,51.5,26,66.6,56.5,56.2,33.7,57.8,49,105.9,41.7,53.5,43.6,41.6,42.7,60.9,69.2,61.6,53.7,58,66.5,63.3,76.3,61.6,63.1,86.3,92.8,56.3,50.2,63.6,48.1,74,41.5,38.8,91.3,87.5,46.6,46.1,34.8,29.8,13.6,34.6,50.6,49.2,89.3,88.8,41.1,79.1,66.7,38.4,53.1,51.5,52.4,60.6,60.1,55.8,51.1,38.4,64.7,53.1,53.3,53.1,69.7,18.5,41.9,75.4,68.2,98.9,72.4,47,79,95.7,69.1,103.6,92.1,115.7,25.2,32.6,51.7,72.7,51.6,72,56.5,17,52.5,170.1,65.2,53.9,187,160.5,178.3,32,114.9,203.2,103.1,150.3,155,201.6,132,177.3,54.5,113.4,100.3,102,102.1,114.9,126.5,113.9,93.3,83.8,99.2,98,159,97.5,70.2,6,256.8,66.5,69.3,100.7,134.1,57,104.4,97.5,91.4,103.8,101,139.6,262.3,138.4,143.5,103.1,108.6,113.8,124.5,52.9,141.4,97.8,73.4,87.7,4.9,102.5,109.8,46.2,95.2,9.3,95.9,115.8,139.2,164.9,244.9,176.1,171.7,165.3,95.6,93.8,102.6,80.1,102,100.9,99,94.8,94.4,96.1,88.6,86.6,95.2,96.3,79.3,93.5,107.7,111.6,125.1,57,74.4,5.4,187.3,53.4,62.3,97,60.8,61.8,51.6,68.7,67.9,70.2,82.3,83.8,58.6,89.9,71.1,17,123.1,137.9,55.6,90.9,107.5,159.6,86.9,115.3,100.4,142.4,66.6,65.3,56.3,37.8,50.3,47.1,68.3,73.4,59.2,90,66.8,54.4,57.3,53.2,60.1,43.2,52,64.5,57.7,56.9,65.1,57.6,54.5,70.1,60.8,67.7,61.4,57.8,102.9,101.6,92.3,86.5,132.1,87.1,274.9,163.6,103.1,108.9,113.9,78.4,80.9,73.9,129,124,116.7,133.6,142.8,124.2,122.3,112.5,117.7,76.5,69.6,23.3,34.8,56.3,65,84.5,83.6,69.1,65.2,125.3,120.6,65.3,95.1,88,32,92.7,128.8,136.9,171.6,191.4,134.6,101.7,101.4,68.4,54.1,100.7,108.5,81.6,80.9,126.6,74.4,84.2,80.8,100.1,41.4,80.5,104.7,114.3,213.8,114,114.5,193.5,195.5,94.7,93.7,92.5,46.8,48.1,69.6,72.1,74.4,89,47.5,87.3,58.6,21.1,78.8,102.3,17.5,83.3,6.9,87,55.8,59.3,120,85.5,86.4,93.7,144.1,136.7,134.1,140.5,126,65,184.1,135.5,140.1,114.2,110.2,109.4,80.5,96.3,28.8,14.4,66.8,98.5,136.2,72.1,71.1,125.1,7.2,175.5,210.1,31.3,191.7,175.6,179.3,150.1,144.9,151.3,113.3,118.9,85.6,72.5,126.3,119.8,192.2,96.5,68.6,174.9,148,236,239.9,202.2,126.1,235.4,117,100.8,94.3,111.6,109.4,104.8,153.5,101.1,82.8,60.2,68.5,33.5,59.5,18.8,74,126.8,67.7,129.5,15.6,77.4,103.7,14.9,64.4,99.4,71.2,78.7,125.8,131.3,49.9,64.3,21.4,66.9,180.2,124.9,5,50.8,5.5,79.4,0.2,150.3,11.4,99,26.5,70.1,97.5,94.5,84.3,101.1,63.6,134.6,84.1,65.1,66.7,55.2,60.1,33.3,60.5,109.1,94.4,72.8,75.9,144.5,61.7,57.8,53.1,61.3,37.8,43.7,67.2,48.8,56.6,65.9,71.1,51.7,63.6,91.2,113.1,130.3,92,69.3,44,40.3,47.4,83.3,75.7,63.7,51.2,54.3,111.8,42.3,16.8,22.4,7.9,82.9,8.4,5.1,28.5,45.5,88.6,154.4,15.2,8.9,95.8,45.2,8.8,41,39.4,41.2,40.4,40.7,38.8,51.6,37.1,100.1,71.8,59.8,64.9,60.4,58.2,54.8,77,75.4,52.3,47.6,37.8,52.1,42.3,58.9,0,22.2,40.3,37.2,55.5,63.6,25.1,64,82.3,128.9,79.4,57.9,69.5,93.4,61.6,71.3,50.6,59.3,52.6,49.4,33.9,43.8,9.8,28.9,41.8,46.3,58.4,48.7,5.4,59.7,60.6,65.5,43.1,56.2,82.6,71.2,0.8,66.6,66.1,92.7,66.1,120.3,90.2,65.8,10.2,207.7,143.8,189.6,113.8,79,72.6,82.6,526.9,256,312.1,24.5,94.4,74.5,95.3,22.6,84.2,215.6,200.1,45.5,69.9,179.3,88.3,121.4,111.8,79.3,91.6,101,122.5,68.4,68.7,136.2,93.1,102.3,227.6,125.1,106.9,288.2,297.6,292.8,295.2,723.3,581.9,706.2,580.7,289.4,51.7,74.2,15.3,112.9,166.8,168.1,95.5,59.4,59.6,107.9,90.7,81.8,9.7,56.4,33.9,59.6,79.3,76,147.6,240.3,191.7,60.8,57,34.9,36.9,26.3,26.4,33.5,24.8,24.8,21.9,24,32.8,11.4,76.6,31.4,33.1,31.7,41.3,53,25.6,37.6,20.4,26.8,23.4,28,17.6,16.9,19.3,14.2,16.5,16,18.4,16.1,17.7,15.6,19,15.9,18.1,17.4,16.6,17.3,16.1,18,21.9,28.5,22.2,29.7,22.2,29.4,37.9,46.8,51.1,33.1,25.4,35.5,29.8,24.2,71.1,104.1,104.5,147,128.8,220.8,95.9,174.2,19.9,4.3,161.5,173.5,237.4,137.9,231.9,124.2,32.6,185.2,184.4,292.3,145,204.9,93.6,20.2,23.1,7.8,201.7,184.9,131.5,53.2,171,183.8,34.4,222.8,3,144.6,192.9,166.1,342.4,171.3,253.6,79.6,193.9,146.9,183.3,195.1,205.1,182.3,187.9,143.5,66,143.6,167.5,155.3,139.9,231.4,207.3,182.7,137.1,140.4,149.7,30.2,175.1,98.8,48.4,1.5,71.2,116.5,96.3,1.4,18.5,88.6,150.6,170.4,39.2,1.2,89.9,209.8,103,135.6,58.5,244.8,48,0.9,22.8,109.2,103.2,47,136.2,303.7,179,120.1,153.4,128.3,105.8,20.8,178.6,114.6,109.8,138.6,132.4,171.5,139,154,141.8,147.1,254.5,208.5,112.4,261.2,118.5,61.6,313.3,33.8,115.9,149,151.6,149,164.8,15.4,178.9,92.3,125.5,154.5,133.6,119.1,132,90.3,55.7,53.6,112.4,99.9,99.4,109.2,115.1,128.1,142.4,144.3,157.1,142.5,131.7,107,71.9,15.4,166.8,152.2,104.2,81.6,28.9,173.9,173.1,210.3,181.6,161.7,22.1,130.3,105.6,140,141,279.5,120.6,34,155.2,95.7,210.9,129.5,53.4,208.9,204.2,129.9,138.2,23.8,56.1,76.2,48.4,39.3,50.1,33.6,98,35.1,213.9,97.8,82.3,9.7,124.9,121.4,139,136.5,125.8,130.9,96.1,205.8,215.1,172.2,159.9,8.6,216.6,30.7,211.2,182.6,126,26,128.1,149.6,162.5,190.3,201.2,171.6,162.4,32.8,21.9,87.9,205.6,144.5,99.2,156.1,32.6,59.6,29.3,67.7,174.4,102.8,17.6,19.8,20.9,144.1,152.5,101.8,83.3,27.5,29.6,94,213.7,6.6,237.3,222.1,259.9,139.3,293.3,140.8,161.9,226.4,207.2,279,21.9,150.6,228.6,193.5,206.6,374.3,180.7,97.2,104.2,20,134,152,149.6,135.7,76.2,75.8,139.1,78,77.7,140.9,128,142.3,142.7,58,31.6,84.9,32,26.7,23.1,22.4,25.9,51.8,109.2,41.6,29.8,23.8,21,19.8,34.9,31.5,113.2,36.5,80.4,95.2,75.7,85.1,189.5,89.8,47.9,14.7,29.1,74.5,126.6,115.5,231.3,181,139.9,37.4,99.9,39.7,83.5,14.9,47,80.3,7.5,10.5,36.3,29.1,74.4,40.3,47.7,48.6,50.6,51.7,62.9,30.3,65.9,101.6,51,25.6,115.5,69.8,941.3,99,127.1,46.6,45.3,60.1,34.4,39.3,96,139.7,32.3,108.7,85.3,32.3,41.1,10.7,13.9,6.9,24.4,24.9,14.4,28.8,3,20.3,19.1,1,25.2,0.7,17.9,9.8,29.3,16,42.3,17.9,21,39.9,49.1,27.9,54.6,29.2,7.3,18.9,8.3,4,23.4,7,5,24.5,10,8.2,5.3,2.3,5.5,4.7,1.8,5,12.4,9.2,10.6,53.8,36.8,0.2,30,34.5,14.8,41.2,18,6.9,3.2,2.1,1.6,3.8,4.8,58.8,61.3,131.5,13.6,50.5,50.8,18,17.3,24.9,9,6.8,7.8,15,8.1,7.9,13,36.2,73.3,13.5,20.5,13,14.2,0.2,10.8,10.1,16.2,6.7,16.4,19.5,18.7,19.8,11.3,20,22.1,16,16.1,22.6,45.2,44,22.5,5.3,7.8,12.7,6.8,26,37.6,14.7,14.4,2.1,16.4,10.8,18.6,9.3,8.6,14.4,9.9,11.2,16.4,17.7,11.9,12.5,16.2,11.8,15.7,13.3,7.8,49.5,5.8,417.2,110.6,176.9,141.3,85.3,100.1,100.1,147.2,146.8,102,27.3,35.4,53.5,38.2,55.8,56.5,57.2,81.4,78.5,76.6,239.5,644.8,115.6,125.3,97.7,55.8,51.9,27.8,62.6,47.4,23.9,22.1,25.2,39.2,48.2,30.7,41,16.4,27.7,22.4,61.8,62.6,197.2,99.1,65.6,34.6,44.7,56.9,48.5,89.5,64.9,38,9.1,8.5,76.9,66.2,68,73.3,74.1,93.4,34.2,46.7,23.7,103.9,82.2,70.8,80.2,10.8,98.6,150.6,125.3,51.7,20.4,139.4,19,100.6,74.5,139,131.9,167.2,154.3,54.4,47.7,4.3,56.3,56.3,27.2,80,87.3,115.3,19.3,125.2,103.1,80.8,93.1,26.3,69.3,44.4,118.4,69.5,131.7,67.3,46.7,23.5,25.9,42.2,47.4,59.9,37.1,35.6,65.3,21.5,18.3,57.7,41.4,44.2,46.8,67.6,39.9,38.7,34.5,51.5,30.5,15.1,22.4,19.5,45.5,50.6,63.9,37.6,39,29.4,52,54.6,27.6,22,37.8,21.4,20.7,35,17.8,25.6,94.2,38.6,66.1,8.2,16.1,43.3,59.4,31.9,28.7,17,9.3,30.5,58.4,72,35.6,137.9,10.4,9.1,1.6,21.9,13.1,15.6,15.5,13.8,11.4,6.6,20.7,16.2,25.7,19.7,19.5,16.9,55.4,12.8,10.4,33.8,16.4,6.5,19.2,40.5,34.3,26.9,13.8,18.1,22.3,30.6,17.1,13.9,17.7,6.4,22.3,20.7,23.2,26.8,20.7,17.2,3.2,3.8,5.8,10.8,22.8,34,36.2,29.9,20.2,25.6,20.8,23.9,96,52.5,20.2,21.2,22.9,18.7,16.5,18.5,33.2,28.8,24.8,19.5,45.2,12.7,13.6,8.3,8.4,7.5,13.9,18.1,19.4,21.2,20.9,18.3,3.6,13.2,1.2,15.5,55.9,10.7,17.6,38.6,20.6,16.9,16.3,9.3,9.3,17.9,35.2,41.5,49.8,15.2,16.3,30.6,35.3,7,13.7,39.2,57.9,62.2,34.5,24.7,22,18.3,20.4,2.5,18.2,25.8,17.8,10.6,11.5,19.2,3.5,13.2,87.2,60.1,17.2,14.5,12.2,12.1,11.1,14.4,15.3,11.6,11.4,17.2,15.1,12.9,13.8,37.6,17.1,20.5,15.7,11.6,11,10.6,17.4,28.9,14.8,10.7,9.8,10.1,12.1,18.5,11,10.8,11.3,11.2,7.5,6.4,10.7,10,19.9,17.9,17.6,47.2,15.3,15.9,14.7,14.1,19,18.5,20.9,22.6,23.6,25.7,13.7,14,7.7,11.4,22.7,23.1,22.8,25.5,23.7,36.9,37.6,22.1,22.4,88.3,22.1,21.6,18.4,20.5,21.2,19.9,18.4,15.1,14,23.3,12.8,6.5,19.2,17.5,36.9,34.4,22.4,14.5,20.2,20.3,14.5,32.7,18.6,24,22.9,25.8,32.1,19.7,95.5,32.6,22.1,21.5,20.3,26.4,25.5,1,37,28.4,9.3,49,22.5,34.5,39.1,11.4,32.1,21.9,15.1,10.6,9.1,10,20.3,12.4,16.5,20.8,23.8,42.3,28,20.3,8.4,34.2,27.3,9.3,84.5,45.1,5.9,7.7,48.6,77.4,43.8,85.2,11.3,38.8,30.1,24.4,35.7,69.8,41.9,48.5,26.3,46.8,39.3,44.4,34.5,40,38.4,35.9,50.5,50.3,13.7,9.6,15.2,15.7,9.7,7.8,23.3,41.5,40.4,23.1,22.8,27.6,15,11.5,19.8,40.9,49.2,29.1,37.2,6.8,72.9,102.2,73.8,185.1,102.6,114.5,53,77.9,48.3,27.6,14,24.3,24.2,58.6,66.3,28.9,38,39.6,51.7,33.6,28.8,16.4,6.6,6.2,50.1,38.2,55.8,34.1,19.7,16.1,4.2,28,44.7,58.1,32.6,31.3,49.7,8,10.8,67.7,26.1,25.3,24.8,30.8,26.6,23,22.1,48.6,11.7,46.9,8.7,19.9,19.5,12.2,20.4,7.9,5.1,8.1,5.7,5.8,4.4,10.5,3.7,3.9,6.6,8.3,3.5,8.1,7.6,10.6,9.1,17.6,55.5,38.7,15.7,28.3,36,44.2,48,17.7,16.3,14.3,13.5,14,10.7,16.2,14.1,11.9,14.4,13.6,9,13,15.8,13.2,14.7,8,12.7,19,4.2,6.5,7.5,5.4,6.8,7.1,4.3,5.2,5.1,6.8,5.1,14.2,26.2,22.8,38,29.3,27.9,29.8,15.5,10.3,7,10.3,10.2,9.8,7.8,8.6,30.2,14.4,11.7,14.6,9.2,8.9,16.6,9.3,7.5,9.2,13.6,8.8,7.2,7,6.4,4.9,6,4.1,6,8.1,7.1,6.5,7.8,5.9,5.7,7.6,4.4,8.2,5.8,7,9.7,9.5,33.4,15.5,8.2,11.7,13.3,7.3,6.5,6.2,8.1,9.6,7.1,3.6,10.1,14.1,24.8,26.7,27.1,22.1,22,13.5,26,34.1,22.9,17.3,21.8,13.4,16.5,16.5,16.1,13.1,7.6,8.4,9.6,7.6,8.3,6.8,13.7,10,5.5,13.2,8.4,9.5,13.2,16.4,10.5,11.5,9.2,8.5,4.3,6.4,7.3,14.9,13.4,19.8,13.9,18.5,12.2,17.9,16.6,21.7,24.3,22.5,81.7,1.9,39.7,35.2,27.2,24.6,33.6,35.5,21.8,23.5,33.2,26.7,36.9,24.7,31.3,26.9,8.3,31.6,16.6,21.4,14.1,14.6,12.1,12.4,14.5,12.2,13.4,0.6,14.4,17.5,13.8,14.5,15.2,18.5,1.1,22.1,23.7,23.1,22.3,22.7,11.9,0.4,10.5,23.5,31,23.9,12.2,9.1,20.5,20.7,18.3,12.2,11.2,14.7,14.7,14.8,1,10.4,10,10.1,9.5,10.5,10.4,11.8,16.9,6.2,0.5,6.3,13.3,13.6,13,66.2,29.4,30.6,19.5,23.4,26.2,28,33.8,44.1,48.7,5.7,48.4,35.1,41.5,39.4,21.2,45.5,49.8,28.9,17.6,46.1,9.1,29.7,57.7,59.1,59.8,62.1,46.2,75.8,27.7,160,232,32.2,130.1,121.6,89.2,48.2,35.3,6.4,18.8,24.7,27.5,27.9,29.3,28.4,27.2,28,2.2,41.4,28.4,28.6,48.3,45.8,39.6,38.5,20.6,54.9,43.7,42.6,37.6,27.7,23.2,35.1,26.2,48.2,89.4,53.7,46.3,5.1,34.8,25.2,39.1,39,56.8,35.7,35.8,51.6,47.3,40.7,45.1,44.8,40.9,46.2,40.2,158.2,15.9,45.2,58.7,27.7,34.6,16.5,36.5,60.1,41.4,38.3,48.5,53.2,37.3,34.8,8.7,40,21.5,46.9,54.6,45.5,36,41.3,34.1,37.4,42.2,20.9,45.4,52.3,99,29.7,24.8,30.7,21.4,26.3,22.5,27.4,16.6,22.3,20.9,33.4,15.5,21.1,29.2,31.7,22.9,17.1,23,50.7,62.4,32.7,47.2,10.4,32.8,35.1,45.5,83.5,34.2,51.4,34.9,32.7,43.1,23.3,23.8,33.6,108.6,53.4,49.6,52.4,51.4,121.5,29.1,46.9,36.3,39.5,28.9,43,54.8,11,43.7,49.3,34.2,39.2,37.5,32.5,16,33.7,7.4,34.5,40.9,35.4,43.4,44.2,27.5,27.2,35,41,20.1,20.9,21.3,23.5,21.1,20.5,23.7,25.7,27.5,30.6,35.1,37.7,89.5,70,38.2,116.2,71.8,59.5,27.5,22,40,50.9,40.3,45.9,37.7,31.2,25.1,51.1,52.5,38.5,38.6,45.3,61.2,55.3,51.9,39.5,36,46.7,49.2,10.9,18.2,67.5,56.5,63.2,31.1,32.1,31.2,30.7,31.6,20.5,19.3,24.6,23.9,34.5,13.3,26,41.6,50.7,52.7,111.9,59.3,71.8,35,37,39.3,34.2,34.2,64,55.4,8.4,37.7,23.8,25.3,45.2,24.1,13.7,66.4,19.2,9.3,22,35.5,41.9,9.7,46,102.8,90,54.2,53.2,182.3,71.8,58.4,55,40.3,50.8,43,11.3,43.1,84.7,52.6,27.3,46.9,44.1,41.5,26.6,26.7,27.8,43.5,32.9,36.1,32.7,37.9,38.9,31.8,38.1,29.8,50.2,39,44.8,37.4,61.4,39.4,47.8,60.7,9.5,19.7,28.5,31.6,24.1,6.6,12,11.2,21.6,26.9,23.7,12.1,8.1,20.7,22.4,23.8,19,52.9,24.6,9.5,33.1,25.2,15.1,60.1,41.9,24.8,30.6,19.8,32,43.5,41.2,42.2,36.6,42,48.2,69.1,49.6,45.2,45.5,58.9,51.9,51.7,94.6,47.7,39.3,31.2,26.7,27.7,28.3,14.3,17.5,27.3,28.3,32.7,39.2,57,26.6,13.9,16.7,29.7,32.4,35,3.3,33.3,38.5,35.1,115.9,96.9,75.9,38,23.8,24.5,26.6,8.2,22.4,29.9,29.9,23.3,34.5,48.9,31.6,53,46.7,81.1,83.2,69.3,64.5,27,34.3,85.1,59.5,54,19.7,13.7,45.9,26.4,31.1,36.7,24.2,35.1,53.6,92.5,84.7,29.5,110.2,62.9,29.6,48.4,25.7,39.7,47.3,44,47.2,58.1,70.1,92.4,72.5,50.4,92,71.4,47.1,43.3,46.1,34,42.1,38.1,4.9,26.8,27,7,40.1,57.2,31.6,22.1,45.8,17.2,36.7,33.7,32.8,31.4,39.9,46,47.6,48.8,45.1,40.6,30,33.6,36.7,37.4,32.3,20.3,26.2,32.3,40.7,48.6,51.3,68.1,43.5,43.2,60,55.9,59.5,61.2,84,78.9,77.9,60.9,70.7,65.2,32.1,101.3,59,41.5,49.8,55.5,83.1,92.6,91.3,50.5,25.7,112.5,62.6,135.8,18.3,52.1,15.9,111.3,40,9.3,28.3,62.3,42.1,53.2,9.3,31.6,32.9,19.4,23.7,53.6,25.7,57,35.7,25.5,29.1,41.9,42.9,42.6,45.1,44,43.4,42.4,42.2,31.9,23.9,38.2,24.6,62.3,30.5,29.2,32.4,68.7,58.7,96.4,79.5,93.6,52,34.6,26.9,51.7,76.5,70.3,47.4,48.7,73.8,77.4,79.2,83.9,102.2,189.8,128.3,71.5,67.5,166.6,152.5,27.2,65.7,83.4,47.1,43.3,33.4,29.5,41.1,62.4,89.4,83.2,35.8,28,31.5,27.9,46.2,29,31.6,44.4,24.8,127,82,92.5,49.4,142.2,23.1,62,8.9,149.6,40.1,12.5,50.2,47.4,22.8,26.2,20.6,18.2,16.4,12.2,9.3,21.6,22,18.5,17.3,29.4,25.9,41.7,18.5,19,62.2,65,67.8,43.1,36.3,27.5,6,17.8,31.8,31.8,35.5,35.5,27.6,14.1,8.2,36.1,28.8,35.9,11.8,17,23.8,14.1,18.1,10.4,10,12.7,7.9,14.2,10.2,10.2,21.2,27.1,43.9,55.2,45.9,62.3,55.6,57.3,46.5,42.3,34.5,40.6,47.5,60.6,52.7,35.2,21.1,30.8,34.4,48.4,91.9,35.2,18.3,28.4,31,30.4,17.7,36.8,37.3,28.1,42,24.3,48.4,12.3,164.5,148.3,170.2,119.2,43.5,93.7,60.8,84.8,24.6,60,45.9,97.4,50.6,28.2,28.7,47.1,41.1,41,44.3,46.7,47.4,318,72.8,81.9,52.5,59.3,55.1,83.5,37.8,39.4,35,47.3,31.1,54.9,105.8,179.9,30.1,24.8,119.7,68.1,41.4,35.8,100.3,82.7,73.1,39.8,44.9,67.9,56.9,53.4,61.7,56.9,42.8,36.6,30.6,44.3,17.9,48.9,21.4,33.4,27.8,39.4,38.6,31.2,19.7,17.4,59.8,52.2,60.4,111.6,68.6,25.5,26.7,46,56.8,72.1,40.7,38.5,36.6,38.1,40.1,39.3,17.2,57.8,58.1,36.7,43.1,42.8,45.7,50.2,56.6,8.7,10.6,23.5,30.5,16.5,54.6,16,67.3,23.7,15.8,34.4,8,18.8,37.9,54.1,54.7,15.7,22.7,30.1,35.1,15.4,71.1,61.6,57.4,54.5,55.5,46.2,77.2,111.2,15.3,46.5,38.1,28,44,110.8,100.6,69.7,45.2,48.6,58.4,61,85.3,83.3,211.1,79.3,55.6,28.7,25.8,12.2,73.3,41.1,39.9,157.5,88.2,20.3,39.5,8.4,16.4,35.2,28.6,35.3,16.6,94,26.2,33.2,19.8,19.5,26.2,26.9,26.4,26.3,26.2,25.9,27.1,26.5,24.8,23.8,23.8,11.7,23.5,23.8,11.3,12.5,11.8,11.7,23.8,11.9,11.7,11.6,24,23.8,23.8,53.4,76.2,76.2,80.8,53.9,41.1,37.1,51.2,51.5,56.8,59.5,60,49.3,33.9,47,47.3,35.5,46.8,59.4,47.6,23.5,36.1,118.3,118.3,71.3,84,41,33.7,43.1,47.4,43.4,44.2,48.4,60.8,66,37.1,41.3,14.1,15.3,11.4,21.5,37.6,21.3,40.1,40.7,23.7,78,215,254.3,53.5,30.4,17.2,14,40.7,24.3,12.5,41.7,54.3,59,13.6,16.7,37.7,63.3,54.2,57.3,30,42.6,20.5,27.7,51.8,36,85.5,15.6,3.8,5.5,107.7,129.4,78.7,76.2,44.2,46.1,85.4,67.2,64,50.7,50.8,60.4,60.7,125.4,73.4,83.4,24.6,64.7,63.2,137.5,1.5,72.1,39,40.8,49.2,51.9,42,38.9,40,24,36.6,36.7,53.3,51.5,37.4,35.5,43.8,47.4,50.7,116.1,95.9,91.3,49.2,52.3,61.4,57.9,51,20.4,24,48.2,50.8,63.2,18.5,17.8,5.3,5.3,20.1,47.4,33.5,29.3,57.4,94.2,55,14.6,25.3,84,51.1,54.2,24.6,75.2,18.7,19.8,54.2,41.5,37.8,67.5,97.9,91.8,48.5,60.9,34.5,35.2,43.3,14.9,8.2,22.1,34.3,99.3,11.1,9.8,57.5,26.5,113.2,33.1,85.5,80.6,71.6,90.6,30.5,22.9,11.9,17.1,15.4,6.1,6,6.1,6,6.1,6,6.1,6.1,6,6,12.9,13,13.2,13.8,8.1,14.1,25.1,52.1,30.4,57.1,12.9,30.7,31.1,50.3,49.8,43.5,20.3,21.9,56.8,43.4,17.2,12.8,8.1,10,17.8,51.4,11.4,11.5,15.9,11.1,11.8,14.1,13.5,13.2,26.1,15.9,8.9,9,8.8,7.8,7.2,10.9,10,10.2,14.2,15.6,42.5,29.2,36.3,31.8,19.8,19.3,22.5,24.6,22.3,22.2,39.3,27.8,27.7,36,8.3,27.5,55.6,48.6,75.3,26.4,26.9,18.9,19.1,26.9,26.9,35,26.3,26.4,19.4,19.6,38.9,25.3,25.8,43.3,33.2,33.2,22.2,22.5,21.4,21.5,22,22,21.8,22,50.4,50.5,55.7,55.1,29.3,29.3,29.3,28.9,37.2,36.7,35.9,43.1,21.8,21.7,44.1,51,25,25,23.6,23.7,47.1,49.3,49.1,36.4,36,36.5,36.2,48.7,48.4,49.1,48.8,72.6,36.3,36.2,20,19.7,18.2,18.1,18,17.8,17.9,17.9,42.4,46.5,25.4,25.5,25.1,25.1,25.8,25.8,55.7,55.9,37.4,37.8,38,27.1,51.9,39,20.2,20.2,21.5,21.9,40.4,25.5,25.9,18.8,19.1,19.2,19.4,31.9,35.5,17.8,18,46.2,47.6,33.5,28,37.8,16.7,16.7,33.4,28.8,38.8,25.5,25.4,19.7,19.8,21.7,21.6,21.5,21.4,27.1,27,36.2,39.8,32,34.1,26.9,27.1,27.6,27.7,29.9,30,32.1,32.2,80.7,40.4,40.3,16.8,16.7,32.4,19.9,19.8,17.3,17.4,16.5,17.9,17.6,17.6,17.6,19,18.8,16.3,17.3,17.2,18.2,18,18.4,18.3,17.8,17.6,18.7,18.6,18.2,17.7,17.6,17.8,17.6,18.7,16.9,19.1,18.9,21.5,21.4,36.4,35.1,54.8,46.1,21.5,21.7,18.9,7.4,26.5,26.8,28.2,36.8,17.7,17.8,27.6,27.6,35.6,23.5,23.8,35.2,30.5,30.5,33,33.1,35.8,36.8,35.6,36.2,36.1,26.9,27.1,37,31.3,29.7,28.9,17.9,17.9,27.2,27.9,35.4,36.7,53.8,36.4,35.4,37.1,36.5,35.8,36.2,36.5,37.4,30.6,35.7,36.8,72.4,35.2,17.6,17.7,18.3,18.5,18.3,18.5,17.6,17.7,18,18,17.1,17,17,17,19.9,17.4,17.4,18.1,18,18.1,18,17.7,17.6,18.2,18,18,17.9,17.9,17.9,17.9,36.1,21.1,21.2,37,35.7,35.4,26.7,26.8,36.1,26.6,26.5,34.4,15.5,15.2,21.7,23.3,32.6,35.1,34.5,36.1,18.7,18.3,35.7,26.5,26.3,40.5,31.3,26.4,11.5,17.9,22.3,22.2,21.9,21.8,35.6,36.8,19.4,21,31.2,30.3,25.9,25.3,28.2,27.5,34.1,34.3,36.4,34.3,33.3,29.1,24.3,27.9,29.4,29.9,33.3,32.6,32.3,32.6,33,40.7,40.6,36.8,34.5,35.9,34.4,36.8,18.9,33.7,38.5,39.1,36,32.1,32,36.5,77.6,50.6,68.1,55.5,35.3,35.5,36.9,17.6,17.6,34.7,38.7,37.6,26.4,26.3,37.2,35.6,40.7,49.2,40.1,25.8,25.6,39.3,38.5,0.4,86.5,42,41.6,30.7,39.4,46.5,46.5,94.7,126.8,47.5,57,66.1,73.5,23.5,106.3,50.1,7.5,19.9,23,41.7,67,65.8,66.2,106.7,45.4,45.5,112.1,69.4,0.3,48.7,40.9,76.1,315.8,46.6,47.1,81.5,77.1,46.3,193.9,31.7,64.4,140.4,85,48.9,54.2,26.9,27,55.2,55,53.1,53,36.7,53.8,52.5,53.2,53.8,54.6,46.2,45.9,51.8,53.7,53.5,54.3,52.8,53.9,53.5,53.4,54,53.4,90.1,91.4,187.6,27.1,107.1,61.5,61.9,75.1,74.9,72.5,72.8,70.6,35.3,35.5,35.6,35.7,54.1,125.4,63.1,63.4,64.3,64.6,50.8,70.7,54.5,54.7,87.5,74.6,68.9,56.4,53.7,54.1,51.8,71.6,26.3,46.9,52.6,32.2,75.3,73.1,65.6,65.4,44.7,189,222.8,488.3,200.7,127.2,57.3,44.2,33.6,21.6,17.1,16.9,35.7,17.7,17.9,17.8,18.1,18,18,17.9,17.8,17.8,26,28.4,53,21.7,17.9,18,18,16.6,17,18.6,17.5,17.6,18.1,18.1,17.7,17.7,17.9,18.2,18.1,14.8,14.8,25.2,17.6,18.1,18,17.8,17.6,18,17.5,18,21.3,23.6,13.9,14.2,17.1,17.1,18.3,18.4,17.6,17.9,17.8,17.9,18.5,17.6,17.8,18.4,14.8,15.2,17.6,17.6,25.1,29,17.7,17.9,18.3,18.1,18,18.6,18.8,20,17.6,18.3,16.7,17.2,17.7,18,18.1,20.3,20.9,31.4,32.7,21,17.8,17.8,36.6,33.6,32.8,21.3,19.7,20.4,24.9,23.4,19.7,19,83.3,93.2,33.6,42.5,238.9,48.8,105.6,123.5,109.4,113.1,225.2,243.1,187.1,122.8,118.4,51.9,114.5,106.7,81.7,82.9,88.9,64.1,51.3,62,57.8,42.7,78.5,58.3,50.7,67,58.7,67.7,59.3,63.3,78.7,130.4,87.8,65.2,65.4,69.9,61.8,78,76.9,63.9,72.4,58.1,111.3,81.6,70.3,72.7,41.7,38.5,43.9,55.2,65.3,52.6,49.2,76.2,63.5,68.2,59.9,65.4,63.3,60.1,119.1,237.3,88.7,88.6,72.7,81.8,91.7,72.9,82.8,105.6,73.5,91.7,126.8,116.1,97.2,110.8,127.4,103,203.2,202.2,37.1,153.4,0.3,414.5,136.2,136.6,377.6,132.2,176.6,152.8,39.4,160.9,74.2,81.5,90.3,87,55,52.8,88.3,87.3,72.6,74.1,85.4,83.2,70.5,68.1,67.8,68.6,117.8,114.9,125.9,107.9,92.1,82.9,78.5,79.5,77.4,83.7,58.8,57,27,69.8,120.6,34.7,104.9,45.5,35.4,18.6,68,108.5,58.3,43,47.3,39.6,40.7,41.5,41.9,38.1,36.5,42.9,36.9,53.6,35,33.2,35.8,34.7,33.2,35.6,36.8,41.1,71.2,27.7,63.3,32,31.9,57.4,51.3,41.8,42.3,52.3,49.3,51.5,47.1,27.1,56.7,32.4,24.7,53.6,101.6,99.6,110.4,72.7,129.5,152.7,154.6,66.5,168.8,33.8,205.2,125.8,122.5,121,121.4,84.4,83.2,68.5,66.8,81.2,70.9,35.5,92.7,83.8,103.9,105.2,111.1,178.9,27.8,81.7,17.3,10.2,120.6,45,20.8,32.3,393,197.4,201.3,32.2,112.7,147,82.2,73.8,80.8,21.3,49.6,59.2,61.1,67.5,194.2,169.2,79.2,73.5,67.3,29.1,56.9,83.2,70.4,75.9,67.6,37.7,40.4,42.7,82.6,87,91.7,84.3,87,53.7,15.4,130.6,49.2,51.9,49.3,50.7,41.6,82.6,37.3,10.3,9.2,101.3,54.5,51.4,62.3,50.9,79.6,78.6,109.2,110.5,116.1,75.5,69.4,45.4,49.4,50.5,50.5,57.8,51.1,43.8,37.3,56.1,64.8,61.6,58.6,61,0.2,62.1,43.5,41.4,81.8,48.9,44.6,16.7,7.9,34.5,24.9,30.2,27.1,34,42.9,15.4,33,39.5,24.9,11,7.9,20.9,23.9,37.2,30,29,47.6,48,112.6,57.2,56.9,61,38.5,49.7,58.2,50.2,58.9,26.7,29.3,35.5,22.1,28.1,16.6,27.4,39.6,24.4,42.5,20,28.8,27.8,39.8,29.7,33.4,31.6,32.6,41.8,85.5,71.3,58.9,40.7,26.8,26.9,24.2,23,21.3,21.7,31.5,33.4,23.4,56.1,87.9,42.1,28.8,42.3,105.1,52.5,72.5,45.4,15.2,19.6,33.5,43,34.1,77.5,46.6,44.5,51.9,48.5,45.2,32,57.7,34.1,48.8,27.9,25.9,25.1,27.3,26.9,34.3,31.4,38.2,69.3,43.9,40,57.3,25.1,8.1,27.3,34,47.1,12.4,21,54.3,50.9,50.3,24.8,48.5,43.9,40.7,49.9,55.2,35.4,38.1,36.6,36.7,36.7,1.6,31.5,33.1,33.2,43.3,27.5,24.1,45.4,43.8,56.4,138.5,32.4,55.1,29.1,37,73.6,36.8,74,14.5,25.4,38.2,37.4,51.4,59.8,16.1,19.1,23.4,24,55.5,52.9,76.9,39.5,69.6,19.5,13.3,79.4,36.1,95.6,144.7,205.6,78.9,56.3,46.2,14.6,16.8,16.8,16.9,16.8,15.5,15.5,16.3,16.3,19.1,65.5,42.1,36.1,22.2,19.7,21.7,17.9,14.6,16.8,9.8,13,13.6,15.6,12,2.2,15.7,17.9,21.9,21.5,20.2,19.1,24,22.8,43.1,36,58.5,53.8,81.4,34.6,31.3,40.7,32,33.3,23.9,22,16.6,29.2,34.7,30.1,39.1,86.4,84.3,28.1,24.8,34,25.6,54,45.6,13.5,16.1,24.9,21.9,29.7,15.7,19.6,57.5,33.7,46.7,23.7,26.6,31.9,20.2,16.3,17.6,20.1,18.6,53.5,34.1,30.9,40.5,34.8,34.3,46.3,35.5,38.3,43.9,35.7,35.7,38,130.1,156.6,164.3,108.4,47.3,82.4,42.7,21.9,26.2,15.1,17.1,12.4,12.5,10.9,11,8.2,7.7,7.8,16.8,16.7,16.7,16.9,16.7,49.5,0.1,32.3,114.1,0.2,66.7,0.2,16.7,1.8,44.7,243.4,96.9,34.4,23.9,0.9,15.9,67,102.4,44.2,54.6,42.7,50.2,41.5,22.6,26.5,30.8,28.4,38.4,33.2,33.3,50.3,9.8,42.4,45.9,43.4,13.5,13.5,31.7,35.1,37.2,46.5,42.9,41.1,42.9,42.9,40,29.4,76.7,12.2,27.2,95.8,62.3,72.8,74.1,64.5,61.2,94.4,64.5,35.4,20.1,26.3,50.8,39,14.6,28.1,48.3,58.8,69.2,76.6,75.7,58.7,58.1,116.2,96.4,174.7,185.4,122.8,63.6,65,67.3,69.3,42.3,14.7,59,160.2,112.7,52,92.9,35.1,60.9,94.7,12.2,129.1,70.8,72,16.1,27.3,78.7,127.5,78.4,78.1,39.6,38.8,19.8,19.8,38.5,26,59.4,58.5,51.6,50.1,56.6,27.2,26.6,31.4,46.4,70.9,23.2,64.8,26.3,17.1,35.1,27.5,13.2,17.1,29.2,23,17.5,18.5,27.8,60.7,23.3,43.5,19,17.4,28.6,28.1,27.2,39.4,59.4,10,70.4,62.2,27.9,24.9,25.9,24.6,26.5,28.5,31.7,60.9,29.3,35,19.8,33.1,32.8,23.7,29.4,35.7,34.1,31.8,32.7,25.2,27.2,23.1,34.7,54,43.3,42.1,51.3,46.3,137.5,72.3,39.4,31.5,72.9,103.1,67.3,106.8,23.9,59.7,60,88.5,33.3,32.4,36.1,37.8,57.4,81.1,25.6,36.4,39.3,24.9,13.2,13.3,20.9,15.8,20.9,33.3,12.6,27.1,14.6,41.3,30.2,17.5,14.6,29,9.6,10.5,41.8,23.2,9.3,3,8.8,51.5,27.7,21.9,3.6,10.3,12.9,14,0.4,2.4,14.1,24.6,0.8,27.5,45.9,36.7,16.6,16.4,45,6.3,25.8,46.8,57.4,20.8,86.2,31.6,74.6,52.1,52.1,82.6,35.7,17.1,51.7,43.6,41.5,39.2,103.8,140.8,38.8,40.6,59.1,53.5,108,155,42,68.7,3.1,37.2,8.4,52.3,58.3,156.5,92.8,25.2,82.1,28.5,36.9,48.5,69.2,34.2,171,14.1,15.2,10.2,108.5,50.9,29.7,30.1,28.1,25.3,32.3,33.5,28.3,2.2,21.6,26.3,16.7,10.9,31.7,1.9,17.9,48,14,23,11.7,17.6,11.5,6.1,11.7,11.8,11.2,11.2,22.5,11.3,11.3,11.2,11.1,17.2,17.1,17,17,17.7,8.7,8.8,31.6,31.2,52.2,26.1,25.4,27.3,27.2,19.5,19.3,10.3,6.5,3.8,3.1,12.8,15.7,22.8,22.7,26.8,26.7,32.9,16.4,16.3,26.8,13.1,13.2,22,22,20.9,10.8,9.8,19.2,12.6,12.7,19.3,18.3,18.7,18.8,14.1,13.8,13.9,13.9,14,14,14.1,13.8,22.5,27.5,27.1,14.2,14.2,28.3,14.9,14.6,14.8,14.6,29.2,29.6,43.2,43.4,34.3,34.3,22.8,22,25.7,9.6,19.1,9.5,9.6,18.8,19,15.6,15.4,15.6,15.6,15.6,17.9,5.5,18.9,6.6,10.8,10.4,13.9,18.5,20,20.4,7,11.1,28.3,9.4,28,41.3,27.3,10.8,11.1,13.1,0,22.4,13,16.5,16.1,2.9,17.6,24.7,29.1,4.7,36.1,13.3,48,47.9,11.6,46.5,40.1,46.6,41.1,39.4,29.5,93.8,53.5,13.6,11.1,91.5,25.1,13.7,19,12.9,26.8,18,39.2,32.9,27.9,34.4,12.5,15.4,15.9,20.6,24.7,25.4,23.5,25.2,27.4,25.5,66.3,158.5,50.9,53.9,46.2,47.6,51.7,47.3,45,49.3,42.5,128.4,45.8,39.5,43.4,43.3,52.7,53.9,49.5,163.1,19.4,64.1,24.6,21.4,24.2,26.5,26.2,45.2,41.2,35.6,27.3,21.8,93.8,116.9,60.7,60.2,57.9,48.8,46.9,28.3,56.8,36,36.5,36.7,43.7,109.1,162.2,50.9,159.7,105.3,101.1,176.1,37.6,140.2,130.3,119.5,121.6,187.9,77.8,82.3,33.6,51,54.8,61.1,81.7,174.8,47.4,21.1,26.4,126.6,61.2,39.3,111.5,19.6,44.2,34.8,7.3,48.1,76.4,46.6,40.3,39.4,54.7,52.2,43.1,142.4,55.3,56.5,80.4,179.1,122.4,57,134,7.5,56.3,68.9,73.6,49.7,49.7,84.1,7.8,12.6,34.1,10.5,31.3,18.5,30.5,55.7,92.2,111.8,65.3,29.2,27.2,51.4,62.7,66.7,63,30.6,43.7,45.4,26.9,25.5,27.3,25.2,24.7,27.7,22.4,54.1,31.2,29.9,30.3,33.1,15,9.8,20.9,27.8,28.8,29.4,26.7,26.1,1.5,31.4,52.1,18,19,15.5,62.3,19.2,26.8,33.6,21.8,35.3,43.2,84.4,13.7,13,73.2,148.7,101.6,122.7,8.2,5.3,15.3,14.8,67.5,76.2,28.1,118.7,35.4,37.8,35.6,97.1,52.1,57.6,130.5,171.8,33.8,58.2,96.8,82.8,33.9,82.1,50.3,34.6,108.4,92.9,68,45.2,75.8,35,100,51.2,71.6,81.7,33.3,23.8,86.9,176.2,583.6,111.4,102.7,48,28.4,28,23.6,49.5,10.4,35.1,26,26.1,87.2,131.4,44.5,34.9,81.4,163.6,43.7,107.2,70.2,28.7,58.2,123.9,40.6,70.2,76.2,42,53.9,43.3,47.1,60.3,32.3,90.5,100.9,9.1,19.7,66.4,44.3,54.5,159.9,214.9,105.7,61.2,24.8,185.8,13.4,185,61.5,62.6,59,66.5,69.6,75.3,73.5,93.2,54.7,75.7,27,25.5,77,64.7,77.7,82.7,25,244.6,30.7,74.3,77.1,158.7,157.1,114.2,91.8,39.8,44,70.4,43.9,29.9,27.8,36.6,59.7,53,53.4,28.1,67,31.2,33.7,41.9,80,72.4,43.6,83.5,32.3,45.2,40.3,38.9,38.5,27.3,40.7,27,27.8,63.6,42.7,48.1,52.7,54.3,49.7,81.9,94.1,92.1,45.7,51.2,36.2,49.9,48.8,50.7,75.1,62.6,65.1,53.9,28.8,49.7,54.8,43,56.1,56,55.2,62.6,47.8,59.8,61.3,49.4,59.2,66.2,62.5,60.4,62.9,64.4,53.6,58.6,46.4,72.1,7.2,60.3,46.3,43.3,55.4,55.9,64.2,56,60.8,25.6,17.7,38.1,53.5,56.5,76.5,78.3,56.3,49.4,31.5,13.2,17.5,35.6,44.2,56.1,56.5,52.9,48,55,99.7,48.7,69.4,41.7,41.1,9.9,48.3,56,60,122.9,82.4,59.7,72.5,54.5,65,6.3,38.8,64.7,47.9,3.5,58.7,73.6,73.2,92.1,113.6,101.2,98,64.9,91.6,122.8,33.3,50.2,85.9,126,79.2,69,48,56.5,52.6,74.5,80.5,22.6,133.8,53.6,53.5,34.7,24.4,75.9,109.9,117.3,150,150,81.8,11.1,36.9,37.6,35.5,101.7,57.2,57.7,59.4,47.3,67.3,43.3,39.1,16.8,169.9,16.6,13.4,34.8,48.9,9.2,31,29.9,28.5,27.6,34.9,42.9,48.5,41.7,40.7,43.4,42.5,32.6,85.7,51.6,56,23.7,74.2,79.1,181.3,58.9,44.6,28.9,37.3,46.4,38.5,40,28.3,40.7,40.6,20.7,34.9,23.2,104.6,16.4,38.5,69.3,69.9,107.8,168.5,110.8,24.5,69.7,61.2,59.3,74.2,30.1,31.8,59.9,59.5,52.2,35.1,53.7,52,56.6,32.5,37.3,90.5,100.4,60.3,45.1,23.8,33.2,31.1,45.9,30.2,9.7,7.4,27.3,69.7,8.6,2,6.5,4.2,10.1,11.6,18.5,6.6,28.9,33.8,7.8,24.3,6.9,6.6,7.6,6.5,19.9,5.6,15,14.2,14.7,6,14.7,14.5,13,8.1,12.6,10.3,8.4,11.2,11,13.2,10.5,13,9.6,7.5,20.7,32.1,36.4,68.6,71.6,242,98.1,98.5,85.3,109.7,52.2,41.1,82.3,89.9,51.9,63.1,66.5,40.6,88.4,45.3,55.2,25.3,80.4,130.9,175.3,55.7,59.2,40.3,39.8,39.3,67.2,44.1,95.4,85.5,84.5,89.9,89.6,74.8,99,93.4,188.5,56.5,228,132.2,132.9,129.4,129.4,153.3,151.8,203.7,126.9,127.8,258.1,104.6,105.4,83.6,84.3,103.6,36.2,33.4,32.1,65.8,8.6,39.2,25.7,3.6,87.3,108.4,120,133.8,15.4,76.6,41.2,49.8,69.6,70.1,103.6,3.2,128.5,161.5,207.2,146.2,145.3,141.8,89.1,88.5,88.3,42.5,46.8,108.1,28.9,45.3,34.1,115.6,116.5,228.5,65.3,16.7,275.4,210.8,135.9,135.2,224.8,102.2,101.3,148.2,147.7,73.1,101.9,101.7,137.2,104.6,104.2,128.7,128.5,124.5,124.1,115.4,79.9,34.9,79.2,79.7,78.6,78.8,80.4,15.2,96.5,118.3,117.3,201.6,181.7,101.8,48.1,48.6,62.8,62.8,26.3,16.6,37.3,37.7,45.9,34.2,48.6,77,38.7,92.4,94.9,175.5,251.1,151.6,112.4,86,86.4,118,122.2,128.7,123.6,145.2,57.8,57.8,95.7,95.9,115,87.5,44.4,58.8,49,49.3,20.5,12,61.7,44.2,81.5,19.5,44.7,105.3,32.1,52.4,36.6,52.9,67.9,57.5,31.2,116.5,101.7,154.4,60.3,65,153.5,55.5,43.7,95.3,90.2,106.1,130.5,115.4,62.6,63,50.8,71,72,77.2,77.8,88.9,92.2,84,79.8,43.5,399.8,85.9,85.5,110.4,132.1,74.3,71.3,92.1,95.2,64.6,183.6,85.2,78.7,69.5,70,92.8,92.2,70.4,70.3,77.8,77.2,93.5,93.3,83,83.1,61.4,65,47.4,42,25.7,94.6,69.1,38.9,36.1,153.2,43.1,134.7,15.8,179.3,156.6,161.9,60.8,115.4,159.2,178.6,10.6,217.4,153.6,48.9,216.7,63.5,100.1,110.2,87.4,188.5,267.6,125.5,130.9,167,207,149.9,41.5,38.6,42.1,105.8,31.1,8.6,56.2,136.3,18.1,19.4,144.5,42.4,53.3,51.4,172.3,154,182,161.4,578.1,308.7,147,73.7,185.7,154.4,211,163.7,162.3,144.1,111.3,99.2,96.7,80.2,91.1,48.4,303.9,162.4,103.9,106,126.8,143.2,114.7,115.8,96.1,144.4,146.8,148.3,140.5,119.2,76.2,59.4,86.8,139.9,237.8,89.5,110.1,130.1,112.5,139.4,95.9,55.4,102.4,84.2,242.2,64.9,51.5,52.1,45.2,38.6,37.7,54.8,86.7,127.4,143.2,79.7,43.9,42.7,41.3,42.8,54.2,115.2,149.1,152.8,154.8,88.2,143.6,144.5,62.6,87.5,105.2,53.1,34.6,49.4,65.8,29.8,48.2,49.1,58.1,102,36.4,173.4,123.6,208.9,211.2,9.8,204,212.5,200.7,139.4,40.1,146.3,11.5,71.4,171.4,79.7,328.2,210.8,212.2,144.1,123.4,124.2,78.9,55,67.5,64.8,124.8,132.1,62.3,61.8,127.9,181.4,181.2,132.2,84.1,54.1,74.2,47.4,44.9,87.9,116.1,120.9,144.1,72.6,23,49.5,117.9,47.9,84.8,83.2,125.3,122.8,115.4,112.7,108.1,231.6,99.8,20.4,86.6,34.3,52.2,83.1,103.1,34.8,46.3,75.7,8.4,119,175.1,199,171.9,126,59.5,58.2,51.3,50.6,64.5,56.6,114.3,28.5,37,51,145.5,101,41.4,47.9,156.8,57,84.2,52.3,69.6,77.8,217,122.5,133.6,81.2,40.4,69.7,78.2,113.3,114.9,73.5,73.5,181.4,130.1,117.5,82.6,84,37.1,37.1,73.1,75.8,76.1,73.9,73.6,73,75.3,94.5,92.4,74.9,80.8,120.8,134.5,160.9,86.7,82.7,107,110.1,70.1,91,87.9,100,122.7,121,129.6,128.3,279.7,40.3,86.7,148.1,346.2,345.9,167.9,159,124.7,55.9,46.9,35.7,31.3,5.1,69.3,50.2,37.7,27.5,82.9,140.2,50.1,49.1,64.2,44.6,60,90.1,22.7,32.6,23.7,137.9,135.7,27.6,34.5,63,48.6,52.8,100.6,29.1,155.5,162.2,99,98.7,123.2,145.3,168.4,224.2,214.7,99.6,85.1,102,109.5,123.1,126.7,113.3,28.2,195.5,634.7,224.9,121,120.5,211,24.1,28.8,233.6,144.3,187.6,140.4,139.7,21.1,205,33.8,146.7,149.3,33.2,76.1,38,24.3,140.1,47.3,72.6,58.1,27.8,12.2,69.6,74,41,126.9,151.1,160.6,160.9,57.9,44.2,77.6,23.6,13.1,43.1,41.9,18.8,23.5,39.7,24.6,38.6,135.3,22.1,29.6,37.4,74.6,27.4,85.8,47.3,31.6,49.2,36.4,60.5,53.9,70,34.9,42.9,83,25.8,49.6,58.3,55.7,62.5,37.7,47.5,71.9,56.6,59,32.4,57.2,14.8,51.7,34.6,41.3,55.1,59.9,66.6,70.4,53.5,52.8,55.5,44.8,360.3,59.2,78.2,71.4,627.9,60.6,71.3,22.3,38.9,40,17.3,73.9,0.2,54.1,154.5,35.7,39.9,69.6,60.2,14.5,33,20.8,24.7,63.5,68.6,31.5,24.9,30,37.8,18,49,32.3,31.8,30.8,40.9,39.9,43.7,39.8,42.2,38.3,24.6,24.6,48.6,75.9,24.2,25,44,25.3,27.4,39.6,39.4,27.6,30.7,42.8,39.5,36.3,37.6,69.3,57.3,49.4,43.1,35.7,35.1,37.6,35.4,55.1,47.1,103,155.9,154.2,9.4,206.7,195.7,133.3,36.5,213.4,140.1,36.7,168.6,135.3,141,107.8,66.9,39.2,34.3,74.2,56.9,53.9,49.3,46.4,81.9,43.7,98.2,92.4,104.2,60.3,65.6,60.1,65.9,46.5,46.8,55.8,67.1,79.3,45.5,38.6,39.9,95.7,95.4,73.8,126.8,187.7,142.9,41.8,76.8,121.2,92.5,57.8,8.7,23.1,58.2,110.5,68.9,89.5,55.9,72.8,70.6,90,108.7,109.3,52.9,52.4,73.6,53.1,54.4,51.7,55.1,32.2,20.9,38.7,69.5,71.4,106,89,92.3,126.2,99.1,81.2,73.4,72.4,61.5,102.9,135.9,156.8,196.9,159.7,94.8,88.4,93.8,91.3,146.5,41.9,135.8,15.3,59,28.7,59.2,77.6,46.8,115.5,38.8,53.6,105,300.6,42,56.9,21.1,71.9,52.3,278.4,138.8,158.9,461.7,229.3,598.7,235.2,63.8,54.1,108.7,53,52.4,0.8,62.7,65,58.2,93.1,9.7,53.4,89.7,96.4,140.5,155.9,153.3,155.6,82.3,52.5,69.5,84.2,97.5,35.7,169.1,102.8,113.3,60.7,76.2,81.3,46.5,50.3,60.1,63.4,51.9,68.6,58.2,52.6,238.1,54.9,52,69.7,65.4,51.1,52.1,40.4,65.6,28.3,79.1,19,116.5,215.8,56.6,124.2,42,455.2,687.4,112.3,42.2,37.5,160.1,19.4,42.5,42,74.8,282.6,66,122.6,92,106.9,116.7,125.2,114.6,113,125.6,41,37.1,109.4,153.7,160,144.2,74.9,71.9,74.9,73.8,68.6,73.4,158.6,85.9,88.3,100.8,88.3,48.6,42.7,79.7,62.2,417.7,46.5,36.2,1228.1,120.3,89.6,92.7,158.8,95.8,72.1,63.7,75.4,85.1,230.9,255.3,148.8,111.3,110.6,158.3,87.7,94.3,72.5,158.4,97.7,91.9,91.3,88.4,263.7,29.7,301.5,234.9,224.1,211.2,212.1,101.4,97.4,102.3,97.5,154.7,161.8,122.7,120.8,128.5,131.6,66.7,66.8,98.5,77.8,175.7,177,350.9,117.4,107.7,104.3,141.8,121.2,187.9,205.9,105.1,275.6,448.5,182.6,61.5,50.4,65.6,76.2,45.7,69.5,99.2,58.3,80.1,44,102.5,57.1,57.3,57.4,56.5,126.2,45,55.9,93.7,46.4,46,91.4,46.3,45.6,81.7,81.2,70.1,18.6,198.1,82.4,82.8,85,182.2,96.1,31.8,44.9,14.1,124.4,137.6,194.3,78.9,286.1,158.9,49.6,88.5,58.7,57.6,69.1,108,46.2,25.8,104.7,87.9,88,135.9,149.7,244.4,152.5,107.4,292.1,22.8,123.3,126.4,197.2,144.1,102.6,89.8,91.2,76.5,52.5,56.7,72.7,65.8,29.9,36.8,38.8,37.7,34.5,50.8,48.5,38.2,39.8,20,46.2,32.7,49,60,34.7,37.6,56.8,66.7,30,50.3,44,136.4,70.3,68.8,89.7,97.5,135.8,50.9,43.9,88.5,1.3,63.1,18.4,35.3,33.9,51.1,33.7,56.2,71.2,54.4,68.6,22.6,19.5,35.7,32.8,38.7,23.3,35.5,34.3,75.6,48.1,63.7,55.7,55.3,40.7,128.3,80.8,65.6,54.2,47.1,87.9,54.8,70.6,39.1,50.6,55.1,72.2,33.2,55.7,69,25.3,46.3,28.3,73.7,43.4,47.8,56.6,43.8,64.1,55.3,54.5,54.3,150.3,74.2,75.1,68.5,69.3,69.2,71.7,108.1,107.2,104.5,104.7,69,65.1,69.5,66.2,71.4,72.1,68.7,69,71.9,26.5,128.7,127.9,74.8,75.2,78.5,76,93.5,101.5,74.2,85.9,32.6,62.7,116.8,47.6,49.4,40.3,40.7,78.4,78.8,78.8,43.2,32.4,68.7,63.3,73.7,73.5,73.6,73.2,70.2,73.3,79.1,115.8,116.9,119.5,60.4,60.5,57.2,59.1,58.2,57.1,67,66.5,79,67,24.7,24.8,55.3,12.6,76,138.2,65.6,75.5,75.8,76.5,77.5,70.8,52.7,67.5,71.1,55,42,80.9,41.8,49.4,78,52.2,18.4,41.3,55.6,31.7,38.3,55.4,85.4,10.4,43.2,33.5,37.7,67.8,38,26.4,56.7,8.9,7.1,22.5,61.3,39,61.8,71.8,107,31.5,86.6,135,68.9,93.9,48.7,52.5,52.2,51.5,67.7,55.7,41.7,25.1,23.9,37.1,36,34.8,76.4,30.3,43.8,47.8,55.7,50.5,55,58.4,59.1,55.4,53.9,46,46.1,43,42.2,30.8,68.7,52.5,49.6,27,82.8,37.6,35.2,49.4,45.9,26.6,47,11.6,47.1,42.8,66.2,30,70.2,72.1,91.1,94.2,34,92.5,105.4,92.8,61.7,47.3,75.8,116.8,209.5,80.9,78.1,124.6,119.3,123.7,80.5,38.6,120.5,122.3,93.4,24.7,21,53.5,49.7,55.8,59.6,40.8,71.5,1.4,51.5,46.4,23.1,47.9,45.8,60.8,90.2,20.4,49,62.3,63.4,19.4,35.6,65.1,46.9,56.6,66.3,48,35.8,40.4,48.5,42.8,43,49.5,42.3,37.4,34.5,44.1,187.7,86.9,81.5,104.7,117.4,277.4,135.6,194.8,164.6,220,54.1,58.9,60.5,60.4,54.7,58.6,68.1,63.8,246.5,194.2,228.7,99.3,103,208.4,499.2,333.4,203.1,125.2,16.2,100.1,96.7,149.3,162.4,76.8,157.8,73.6,83.2,323.9,238.7,115.3,150.5,122.7,83.7,103.8,21.2,51.5,45.2,45,45.3,61.2,37.7,31.7,55,37.3,38.6,41,38.3,50.2,59.7,59.6,43.3,111.3,275.1,87.6,46.6,58.3,55.3,54.9,49.7,49.4,57.4,43,55.8,64.1,59,54.7,59.2,180.6,184.4,28.5,317.8,77.7,40.9,43.1,63.3,44.7,51.3,43.4,48.4,42.2,46.9,56.2,48.7,43.5,33.8,32.7,31.9,35,70.5,18.9,55.9,41,39.2,58.7,51.6,59.4,53.3,44.6,56.8,47.4,62.5,53.4,50.7,88.2,139.8,166.3,104.5,91.1,67.1,52,32.2,25.9,46.8,41.4,51.2,33.3,32.3,25.8,59.7,79.6,78.4,47.3,46.4,48.6,48.3,48,48.2,36,36,72,91,180.7,3,116.4,48,54.8,30.5,34.4,90.8,47.9,45.7,42.1,82.8,124.3,66.1,73,62.2,28.9,49.2,46.3,50.2,42.6,108.6,71.1,68.1,51.9,56.3,30.3,10.6,29.6,30.2,37.3,36.7,38.6,37,34.2,31.2,21,7.2,52,110.3,44.5,27.5,70.9,41.3,43.2,30.6,27.6,46.6,26.5,29.2,37.4,22.4,43.2,59.5,59.2,108.4,120.6,154.6,132.5,197.3,97.1,21.8,139,78.5,216.8,58.5,73,145.4,142.2,91.6,89,72.7,60.2,66,59.3,66.1,41.8,120.4,143.5,132.2,54.9,52.6,47.9,53.4,60,77.3,25.6,67.4,76.2,51.5,22.7,14.7,24.2,40,42.6,40.6,17.4,18,26.2,48.9,29.9,39.5,30.5,30.6,25.4,45.8,43,46.1,44.2,51,42.9,168.8,24.8,74,78,68.1,35.7,39.5,12.8,19.3,21.8,45.5,45.7,44.9,55.4,49.6,29.3,43.4,113.6,261.1,85.5,97.6,83.4,25,46.7,63.9,62.9,11.8,121.8,24.3,86.5,31.6,74.5,13.9,216.1,217.8,43.6,263.2,84.5,115.5,111.5,58.8,60.8,73.2,189.5,83.6,22.4,139.7,139.1,76.4,57.8,63.5,67.4,91.2,48.7,112,61.8,66.3,52.6,51.1,38.2,39.2,35.2,30,15.6,67.9,37.3,36.8,46.4,30.3,22.9,36.6,44.1,76.6,13.2,45.2,35.7,75.5,131.7,205.7,131.1,133.2,91.8,138.9,43.7,6.9,62.4,56,49.1,49.6,44.7,26.8,67.3,52.3,49.1,86.6,83.2,119,5.4,71.2,60.6,66,63.9,63.6,51.8,155.7,80.4,82.8,68.5,132.5,67.6,60.9,56.6,56.3,89.8,24.5,70.6,57.3,143.4,67,51.2,51,46,55.4,53.6,57.3,65,74.2,65.5,141.9,59.7,50.7,36,41.3,22,49.5,47.7,47,76.3,59.9,32.1,70.4,55.3,48.8,159.5,112.1,112.4,164.1,126.1,58.5,27.3,29.8,50.8,51.9,22.2,68.9,95.9,52.6,54.2,43.8,39.9,39.9,40.4,48.7,14.4,24.5,13.9,16,24.3,13.9,41.1,45.5,34.3,28.8,14.6,42.7,43.1,31.6,35.2,15.4,24.7,94.1,46.3,54.9,45.6,48.6,69.2,43.1,58.6,41.5,44.8,50.2,56.3,53,148.7,1,29.4,2.1,99.3,125.1,106.9,121.3,36.2,121.9,112.2,118.5,135.2,25.8,163.9,309,105.9,61.9,27.1,42.8,51.8,1.4,31,58.6,87.3,28.2,45.7,40.8,48.8,50.9,37.1,41.6,81,59.7,52.6,94.9,38.7,158,396.8,362.6,113.7,144.5,137.2,57.6,33.2,61.1,68.5,60.8,77.1,38.6,79.6,262.7,210.2,171.3,23.7,99.3,43.2,77.3,49.4,76.7,158.5,92.3,75.5,92.1,92.2,63.3,63.2,67.2,53.4,69.4,50.7,47.2,68.5,58.7,126,83.3,72.5,68.3,55.5,48.4,28.1,10.6,111.1,62.8,50.8,22.1,13.1,21.8,31.1,42.4,40.5,40.3,59.8,79.5,89.4,62.9,64.7,74,90.3,81.5,4.2,60.9,43.2,45.5,63.3,67.5,68.3,69.7,50.5,40.9,43.7,22.3,27.5,58.6,59.7,61.1,86.1,278.2,67.1,57.8,56,49.5,68,56.2,59.3,64.3,28.5,26.3,142,50.3,45.8,69.2,41.5,42.7,66.3,60.8,56.3,35.3,43.1,36.1,48.7,131.8,94.8,71,79.4,38.3,38.8,63.7,42.2,43,88.4,74.8,62.4,195.1,205.6,115.7,28.7,130.6,90.9,70.5,95.1,134.1,147.7,239.6,239.3,219.3,141.7,129.7,77.3,77.7,80.6,34.1,43.9,61.3,67.3,73.5,166.3,20.6,96,44.4,54.5,50.5,44.5,41.6,31.5,32.3,49.1,37.2,59.6,80.7,75.9,95,55.9,73,10.2,28.3,74.4,94.4,136.2,59.4,193.4,129.2,114,43.9,35.9,35.5,23.8,18,19.1,14.6,14.4,10.7,11.5,10.3,10,10.8,9,9.3,11.1,10.4,9.9,11.4,19.1,28.6,23.9,11.9,11.7,11.7,8,11.3,9,8.3,12.3,7.1,35.2,17.3,19,16.9,23.8,44.2,46.1,28.2,36.3,50.8,50.6,84.9,23.7,25.8,37.1,44.3,106,24,23.7,34.5,71.6,71.5,145.2,15.1,42.8,22.9,18.5,24.2,31.6,63.2,39.5,15.8,12.2,79.1,113.4,19.5,33.1,52.1,38.7,24.1,39.4,115.6,97.7,39.5,34.6,73.8,55.2,21.1,13.5,19.4,60.4,54.4,26.7,11.7,23,26.8,33.3,32.5,37.6,28.1,21.7,18.4,13.1,16.7,22.8,17.1,32.6,30.8,26.5,28.6,26,22.8,22.3,20.8,29.5,23.5,22.5,8.2,18.5,7.6,12.9,17.2,5.8,8.3,44.6,38.7,28.3,16.4,25.9,9,17.7,30.2,49,9.3,9.9,5.5,5.5,6.9,11,14.4,14.8,16.2,2.8,62.2,25.3,97.6,55,5.8,7,26.1,72.6,38.6,37.9,43,28.8,75.4,34.7,25.3,4.2,13.9,11,3.7,14,3,64.7,5.1,30.7,5.5,9.9,23.4,8.1,9.9,11.4,33.5,32.9,73.5,42.5,28.3,38.6,46.6,10.4,41.4,7.7,24.4,30.8,72.9,8.9,10.6,12.8,6.9,5.6,53.1,47.9,5.8,8.2,5.6,21.8,45.9,4.6,5,10,7.6,2.8,9.9,1.8,7.2,3.7,3.3,17.4,29.1,5.3,25.7,21.8,6.2,64.3,10.5,8.8,37.1,6,36.3,14.3,14.3,54.1,8.7,5.7,4,7.6,4.8,4.6,5.9,5.1,5.6,3.7,6.3,5.5,4.9,8.1,7,5.2,4.8,5.4,5.1,8.9,6.4,6.4,9.8,25.4,96.5,7.7,6.5,8.7,26.8,18.7,30.2,5.2,55.9,11.1,2.5,7.6,4.4,7.1,6.5,7,6.5,3.9,3.9,3.2,7.2,7.2,2,3.6,4.9,4.8,6.5,6.4,6.5,5.2,7.9,7.7,7.6,4.2,6.4,6.4,6.3,6.4,6.3,3.1,10.7,6.9,5.1,58.2,20.9,15.5,1.7,98.2],"duration":[2.162,0.667,0.704,11.429,12.367,2.413,9.933,6.146,2.118,2.558,2.564,4,1.24,4.255,1.217,4.728,1.211,0.86,0.719,1.011,0.862,0.915,1.366,3.808,1.378,1.628,1.004,4.865,1.723,2.411,1.411,0.983,1.558,4.24,2.347,1.715,2.689,2.623,6.705,9.908,4.988,13.674,1.963,4.669,10.225,0.287,1.996,2.351,0.875,0.496,0.177,4.251,2.568,0.427,0.767,0.491,7.653,1.182,1.293,1.53,1.449,2.534,20.789,0.393,0.218,1.87,8.907,0.421,2.936,0.347,19.421,1.861,3.352,2.307,11.066,3.349,2.063,8.565,1.372,13.214,1.12,0.611,1.871,3.584,0.571,8.386,3.184,0.816,15.69,7.422,6.403,6.95,4.103,0.285,2.362,0.176,1.29,0.64,4.346,9.333,1.331,0.714,0.785,0.777,0.808,2.923,0.836,0.632,0.608,0.63,0.636,0.864,0.902,1.072,0.991,0.577,3.342,0.848,0.605,0.348,4.512,0.681,0.681,0.597,0.542,0.576,0.483,0.522,1.158,0.551,2.28,7.986,2.778,1.155,1.115,0.965,1.735,1.159,0.548,0.769,0.795,0.756,1.877,1.37,1.831,1.494,1.349,1.769,1.503,1.301,2.01,10.755,3.404,2.219,1.352,2.256,2.072,1.563,1.647,1.28,1.124,0.975,2.651,2.508,1.763,1.106,1.209,1.127,0.89,0.5,0.384,7.795,10.933,1.965,2.099,22.149,36.897,24.533,12.767,63.662,7.496,4.41,1.514,0.864,0.641,1.753,0.965,1.895,0.985,0.736,1.702,2.88,2.197,3.276,2.524,1.262,1.16,0.69,1.011,0.687,0.754,0.547,0.668,1.249,4.296,1.24,1.386,1.604,2.492,3.648,0.816,0.804,1.425,0.917,1.461,1.209,1.227,0.974,1.044,0.833,0.976,1.28,1.539,1.437,2.011,1.824,0.288,0.589,1.054,1.058,0.897,0.931,1.313,1.243,1.886,1.876,1.38,1.4,10.996,1.83,0.083,2.743,2.025,1.318,1.997,1.521,3.176,2.403,1.697,0.691,6.252,0.596,3.328,0.381,0.599,0.687,0.849,0.624,1.142,1.42,1.014,0.996,0.615,1.011,0.907,1.075,0.878,1.473,1.324,1.519,1.497,1.736,4.532,1.026,0.543,0.616,0.648,0.469,0.492,0.6,0.472,0.652,0.584,0.582,0.766,0.579,0.62,0.656,0.644,0.701,0.711,0.868,1.362,1.603,1.497,1.195,0.613,1.709,1.52,1.302,0.88,0.748,0.746,1.025,0.847,0.955,0.978,1.058,1.044,0.287,0.536,1.839,1.047,1.997,1.532,1.583,1.02,1.045,1.437,1.127,1.139,1.54,1.513,4.705,1.529,1.618,3.674,3.633,1.065,1.582,0.96,0.642,0.919,0.84,1.201,1.231,1.229,1.24,1.47,1.063,0.865,0.881,1.244,3.536,2.834,1.953,0.942,1.055,2.227,1.737,2.043,1.557,1.055,1.126,0.489,1.983,1.053,1.148,1.7,0.981,1.799,3.704,0.108,5.265,2.144,2.239,2.876,2.911,2.21,2.263,2.37,3.355,8.345,3.64,2.414,0.408,1.913,1.083,1.245,1.996,1.802,1.72,1.606,3.241,0.406,0.821,1.636,1.173,1.293,2.566,1.055,3.62,3.479,2.969,1.62,1.775,1.303,1.723,2.512,0.984,1.211,5.511,7.058,9.665,0.861,1.604,0.991,1.238,1.215,1.905,2.207,1.014,1.022,1.224,0.588,1.678,3.769,3.765,4.791,2.243,3.944,3.483,2.483,3.621,6.41,2.003,7.943,0.203,3.632,1.01,2.448,2.06,2.528,0.997,2.133,2.34,2.449,2.712,4.64,3.732,2.666,4.1,2.479,1.54,4.349,0.367,5.475,6.421,3.341,2.977,2.922,2.703,1.639,1.485,1.218,0.867,1.708,1.076,5.098,3.486,1.819,1.077,4.355,3.333,2.718,2.829,2.817,1.25,0.733,1.457,1.243,1.833,0.971,1.118,1.518,1.974,0.495,0.673,0.865,0.489,1.613,1.113,1.336,1.092,1.402,0.205,1.648,2.012,2.414,4.004,1.644,1.876,1.468,1.8,7.063,10.076,1.198,2.04,2.923,3.005,2.987,4.076,0.396,1.147,9.115,7.345,0.346,2.782,2.762,6.684,1.699,7.797,5.051,0.437,2.664,0.081,5.249,6.102,2.649,0.327,0.226,0.101,0.295,3.738,8.699,5.786,9.137,1.342,19.106,16.213,4.347,5.196,5.893,9.511,5.066,8.536,1.568,1.118,2.132,4.344,5.181,0.622,5.42,3.102,2.256,2.711,2.377,2.333,3.677,1.848,2.099,2.517,0.038,3.18,4.273,2.925,1.469,1.859,4.796,3.594,2.141,1.517,6.842,6.77,1.313,7.984,4.608,3.704,2.067,4.156,6.633,5.588,4.892,7.709,8.218,2.58,2.331,1.787,1.167,0.847,3.428,1.981,2.202,3.244,3.866,6.833,17.512,6.719,1.8,0.862,3.921,3.46,1.472,0.3,0.89,3.498,8.648,0.521,2.114,6.768,5.749,1.538,3.448,4.549,4.504,4.506,3.747,3.592,4.297,3.969,3.231,5.951,5.131,2.25,5.561,6.024,6.43,7.794,8.296,8.167,4.066,2.724,1.679,1.729,1.658,2.684,1.853,1.945,2.689,3.334,1.717,1.411,3.003,4.01,2.77,2.705,2.856,2.511,5.502,3.538,7.487,9.347,4.611,2.742,2.193,3.808,2.032,1.101,0.41,2.305,2.209,3.23,2.806,2.013,1.834,0.593,3.932,2.149,2.138,1.329,1.282,1.531,1.759,1.885,1.732,1.913,2.194,3.25,2.774,2.683,1.069,1.29,2.57,5.513,4.244,1.116,0.845,2.88,2.541,1.546,1.346,2.21,1.494,1.455,1.42,9.533,3.09,3.268,1.953,1.911,1.799,1.744,2.719,3.951,7.037,6.853,0.131,6.911,5.227,2.673,2.696,3.806,3.898,2.699,3.799,1.811,1.717,1.314,1.864,1.936,1.81,1.048,0.526,1.97,6.034,9.429,0.714,4.934,0.687,4.21,5.706,6.179,0.262,0.35,1.097,1.888,1.559,0.332,3.145,5.682,3.157,5.899,0.84,1.35,1.98,2.252,8.765,4.53,5.541,6.624,4.07,2.583,3.026,8.145,3.17,4.599,4.292,3.561,3.514,3.403,4.07,3.95,4.909,4.521,15.362,5.939,5.306,3.087,4.49,6.783,10.106,20.512,10.22,3.632,0.916,4.703,0.97,9.497,0.976,2.316,23.786,4.097,3.658,4.449,4.381,5.07,3.43,0.553,2.624,4.759,2.367,2.332,1.365,2.68,3.802,5.649,1.169,2.241,3.007,2.845,3.045,3.084,6.33,6.27,11.809,1.303,2.224,1.419,8.195,5.622,5.155,5.642,5.379,5.923,5.824,0.051,4.353,6.185,6.593,8.073,18.249,2.04,3.161,2.48,1.986,4.481,3.094,3.998,2.46,4.823,7.38,7.071,5.009,3.513,2.265,3.619,5.157,2.599,21.646,5.711,5.584,3.325,2.983,3.179,3.505,1.905,3.389,3.196,2.222,2.48,2.735,3.416,3.304,5.88,4.766,0.106,8.483,3.527,0.544,2.688,2.901,2.718,4.606,4.121,4.135,6.224,3.232,2.998,3.233,2.684,0.826,2.392,2.801,2.484,2.327,2.626,2.905,3.185,6.155,6.926,4.686,3.368,3.759,2.668,3.446,3.416,3.996,0.907,2.196,4.946,1.281,0.336,1.098,1.312,3.288,2.632,1.44,4.054,8.541,0.732,6.186,3.133,2.782,3.059,2.862,5.078,4.924,3.927,3.057,2.887,3.324,2.926,2.539,4.035,2.634,9.7,6.438,6.009,7.191,6.56,6.272,4.936,0.985,5.54,5.437,17.985,1.82,1.746,4.563,2.555,2.61,3.14,3.647,4.051,8.545,5.135,1.452,1.87,3.125,3.243,2.82,2.849,2.057,1.938,2.359,1.852,2.074,2.646,2.836,2.718,2.709,3.11,5.879,3.946,3.428,1.147,2.624,3.41,3.384,3.296,4.299,3.85,6.738,3.023,3.352,3.713,3.231,5.735,3.395,4.699,6.044,3.729,2.976,2.897,1.278,1.497,1.985,2.039,2.102,2.092,2.455,0.571,2.718,2.957,0.823,2.093,1.948,2.459,2.527,2.011,2.526,3.757,7.999,0.84,3.2,1.994,2.48,2.475,2.468,2.149,2.484,4.043,2.554,1.816,2.346,2.832,3.106,3.064,3.64,3.532,3.448,3.051,3.694,3.373,2.973,2.395,2.865,2.729,2.935,3.429,5.76,3.68,3.491,2.254,2.462,1.143,2.296,2.361,2.189,2.341,1.933,7.151,3.055,3.135,2.781,2.843,3.082,2.903,6.064,5.287,5.815,2.418,2.083,1.333,2.561,4.202,3.517,3.077,6.822,12.603,12.875,3.646,3.723,4.688,4.368,2.753,4.036,2.68,2.366,2.002,2.57,2.529,2.029,2.048,2.94,3.076,2.052,1.742,0.922,0.867,0.138,1.237,1.117,0.858,1.057,1.161,1.998,2.192,2.165,2.144,1.703,1.686,1.516,1.362,0.826,2.948,2.554,2.317,2.749,3.148,2.616,3.048,4.535,4.566,3.476,2.168,1.937,1.738,1.779,0.655,2.8,1.062,1.366,1.648,1.659,1.745,2.634,1.132,1.115,2.539,1.096,0.75,1.122,1.125,0.758,0.927,0.849,1.435,0.944,1.011,0.949,1.171,0.9,1.028,0.804,0.94,0.876,1.271,1.026,0.974,1.091,1.127,0.95,1.227,1.035,1.053,0.834,1.048,0.957,1.436,1.943,4.152,3.683,3.301,1.278,12.961,2.021,1.784,1.708,1.777,3.352,10.527,26.548,3.385,28.618,3.33,26.435,1.683,1.64,1.632,1.491,1.497,1.799,1.015,2.035,12.19,16.706,28.419,0.05,2.675,1.225,1.016,2.06,9.79,6.62,0.946,4.508,1.127,20.961,14.794,16.25,3.442,2.856,4.195,0.688,1.74,1.417,1.691,2.031,1.904,1.759,1.575,1.906,18.82,8.765,0.769,5.973,2.203,0.185,0.64,7.91,2.514,1.584,1.531,1.644,2.311,11.206,4.358,0.994,2.023,0.719,2.074,2.53,3.422,2.103,6.379,5.946,4.682,1.798,2.213,2.426,0.985,3.588,4.602,0.892,3.423,1.604,2.032,1.69,1.209,1.259,0.895,1.277,0.465,2.067,1.982,1.692,1.876,1.7,1.876,1.493,3.245,5.355,1.159,2.175,1.219,2.276,1.995,1.714,1.909,1.458,1.484,1.79,1.927,2.82,3.278,15.426,7.776,4.15,2.169,3.32,1.128,1.567,1.799,1.687,2.401,1.809,1.714,4.479,2.836,2.063,1.092,1.549,3.742,4.338,4.392,13.585,9.889,4.14,4.733,1.46,1.718,3.264,7.408,1.717,2.726,0.003,0.236,1.211,1.918,2.457,2.867,2.002,2.41,3.808,4.519,2.517,1.891,4.085,1.736,1.858,1.921,1.774,2.26,1.534,3.282,2.652,3.758,2.14,23.343,1.948,2.497,1.421,2.125,1.237,2.184,0.773,1.517,2.204,1.638,1.573,1.889,0.443,2.694,3.112,3.859,3.625,7.164,2.447,7.358,3.18,3.277,2.71,8.166,4.297,10.31,0.923,0.568,3.399,3.542,2.631,2.67,2.096,2.324,2.203,2.257,2.482,1.721,2.666,2.621,1.327,1.209,3.699,2.351,2.338,2.349,2.602,2.818,2.523,3.197,1.607,3.1,2.024,0.909,11.333,0.915,2.39,3.554,11.596,7.838,2.34,1.8,3.258,3.519,2.643,4.972,2.287,1.662,0.94,0.983,1.05,1.121,2.09,1.585,1.625,2.451,4.145,8.272,1.935,1.604,1.935,1.513,1.766,1.968,2.397,3.454,3.582,3.951,2.564,0.472,7.756,1.68,1.511,1.873,2.915,0.59,7.544,2.704,1.193,0.955,1.172,0.988,1.888,2.03,4.435,4.633,4.885,5.068,3.683,3.884,12.662,5.736,0.945,2.144,3.339,5.854,5.022,0.66,3.017,2.456,2.422,6.312,0.327,1.458,3.922,3.238,1.735,1.523,1.598,1.523,1.346,1.317,2.205,1.88,1.232,1.138,1.16,1.611,2.164,2.165,1.912,2.151,0.109,2.032,1.516,1.917,1.9,1.976,1.979,1.573,1.539,1.131,1.082,1.635,0.872,0.87,0.915,0.868,1.216,2.466,2.44,3.504,1.497,2.078,2.177,2.15,1.516,2.092,1.91,1.321,1.626,1.111,1.158,1.598,0.727,0.676,1.235,1.191,1.03,0.726,0.878,0.891,0.956,0.925,0.758,0.688,1.202,1.202,0.679,0.776,1.128,0.634,0.679,0.711,0.694,0.716,0.718,1.192,1.018,0.996,1.757,1.665,2.821,1.246,1.147,1.095,0.908,0.792,1.049,1.252,1.145,0.799,0.569,0.007,0.166,1.163,1.052,1.424,1.273,0.021,1.537,1.644,0.908,1.028,1.16,1.225,1.445,1.453,1.398,1.147,1.858,0.861,1.452,1.841,1.679,2.176,2.104,1.603,3.977,3.924,2.373,2.131,2.268,1.346,1.845,1.963,2.303,1.904,1.967,1.852,2.088,2.966,1.737,2.019,5.422,0.575,3.12,0.931,1.911,0.448,2.132,1.972,1.877,1.954,2.063,2.447,1.618,1.639,2.202,1.727,1.953,1.972,1.987,4.708,3.532,1.764,0.931,3.775,2.453,2.078,2.731,1.766,1.79,2.294,2.057,1.916,1.222,1.597,2.509,3.759,7.543,6.786,2.003,7.7,3.869,3.669,1.938,3.411,2.746,1.55,5.26,7.53,6.409,8.921,9.111,7.076,1.915,1.872,3.533,3.301,2.93,6.198,3.159,3.135,3.059,4.16,5.475,5.234,2.831,0.463,2.24,4.31,4.171,6.047,3.827,2.574,1.328,0.007,0.215,2.4,1.249,1.244,1.837,1.717,1.51,1.163,1.235,0.953,0.028,1.029,0.974,1.02,1.17,1.156,0.844,0.866,1.507,1.926,1.468,1.544,2.327,0.861,1.099,3.498,3.128,1.51,3.029,2.798,1.456,1.464,1.557,1.546,1.511,1.494,1.527,2.079,1.923,2.084,0.201,1.363,1.386,2.198,5.442,5.629,4.12,3.799,2.038,1.661,2.452,1.87,2.157,2.103,1.746,2.205,2.144,0.41,0.961,2.086,0.305,1.903,3.388,6.111,2.661,3.035,2.565,3.332,7.282,5.39,1.754,3.49,3.44,0.051,5.411,5.998,4.421,6.329,7.186,6.211,4.362,0.638,2.519,2.138,0.849,3.72,1.002,3.909,3.913,4.381,4.004,3.511,4.115,1.286,2.167,3.975,3.77,3.865,4.774,6.599,5.084,1.606,2.001,3.495,2.703,2.976,2.988,3.572,3.605,7.158,6.201,5.868,2.015,5.617,6.762,8.66,2.931,4.892,7.419,8.098,4.277,2.638,2.58,1.792,2.226,2.064,2.053,1.97,1.884,2.648,2.323,2.135,2.905,2.042,2.126,1.424,2.258,3.306,2.01,2.121,2.894,2.771,1.523,1.652,1.308,1.046,3.293,3.813,3.637,2.351,2.522,2.642,2.482,3.844,2.249,2.67,2.652,3.46,2.898,1.262,3.61,1.707,2.396,4.216,2.969,4.501,3.186,4.936,3.854,2.704,3.887,4.339,4.23,3.858,1.263,0.957,0.798,1.935,3.633,3.146,3.645,1.982,1.915,3.104,3.352,3.321,3.327,4.65,4.483,4.169,1.773,1.818,0.194,1.425,0.93,0.692,3.491,1.774,2.043,2.657,3.061,2.65,2.077,1.705,3.59,2.038,1.932,0.457,4.597,5.712,0.031,5.595,5.298,4.042,2.183,2.833,2.374,2.283,1.413,3.215,2.22,1.495,1.39,1.717,1.47,1.296,0.281,0.72,2.077,0.579,2.78,4.807,4.55,3.615,4.969,2.972,3.141,10.957,5.181,2.968,2.725,2.805,3.607,4.158,3.096,3.262,2.333,2.519,2.716,2.58,2.776,2.387,2.146,2.4,2.355,1.953,1.686,2.127,1.415,3.139,3.302,3.541,1.672,1.632,2.036,2.195,1.732,3.226,1.957,2.185,1.451,2.23,0.362,1.366,2.296,1.401,1.592,1.569,1.809,2.045,2.391,2.576,4.015,2.882,2.158,5.338,2.543,1.773,2.107,2.052,2.999,1.547,1.966,2.308,2.515,2.544,3.992,3.855,5.085,4.895,4.438,4.802,2.714,2.287,2.771,2.627,2.749,1.954,1.965,3.005,3.944,1.033,1.29,1.055,0.972,2.908,3.058,3.067,6.745,3.516,3.337,4.633,2.916,3.162,5.152,0.924,4.467,4.39,2.77,2.575,2.487,2.461,2.606,2.199,1.814,1.35,1.963,0.795,2.152,2.453,2.109,2.059,3.484,3.64,3.512,2.468,2.926,3.357,2.413,1.98,2.26,2.67,2.655,2.413,3.252,2.754,2.43,2.469,1.843,1.662,2.792,2.793,2.376,2.79,3.343,3.394,6.127,6.208,7.841,1.471,5.15,6.302,0.993,2.103,0.51,2.134,2.149,1.8,0.016,1.166,1.755,2.372,3.1,3.061,1.941,1.907,3.6,4.371,3.173,2.826,2.856,2.913,2.781,2.603,2.362,2.705,2.405,3.35,2.742,2.947,2.4,0.844,2.018,1.852,1.964,2.205,2.457,2.309,2.902,2.464,2.086,2.517,2.848,2.972,3.389,3.465,2.695,2.847,2.526,2.059,2.519,3.925,2.598,2.567,2.273,1.565,2.865,3.846,3.605,3.288,6.643,4.654,8.437,7.926,8.349,1.583,2.095,1.688,0.458,1.464,2.753,2.062,2.688,2.403,2.008,2.063,1.757,1.649,2.106,2.219,0.554,1.922,2.004,2.365,3.323,2.25,6.603,6.513,4.752,4.666,3.34,1.96,1.829,3.686,4.559,4.257,4.126,3.43,2.907,0.861,2.831,5.801,8.184,1.052,2.287,2.575,4.355,2.898,1.834,1.681,2.326,1.935,2.018,2.341,1.798,1.941,1.873,2.415,2.232,2.259,2.695,2.801,2.882,2.774,2.305,2.07,2.006,5.009,5.067,3.981,3.263,2.573,2.394,1.912,2.067,1.916,2.558,2.105,0.584,3.168,2.204,1.96,1.895,2.448,1.814,1.618,0.28,0.496,3.099,5.004,4.932,2.528,1.633,1.503,1.069,3.061,3.213,2.687,2.024,1.351,1.312,2.423,1.958,2.577,3.095,2.457,2.387,1.909,0.128,1.275,1.579,0.443,2.104,2.082,1.984,2.804,2.665,3.414,2.291,2.291,1.653,2.352,2.789,1.833,1.234,1.948,1.908,1.744,3.248,2.57,1.872,3.014,3.431,2.633,2.609,2.062,1.966,1.525,0.567,1.779,1.588,1.954,1.679,1.655,1.711,1.599,2.34,3.814,1.878,4.172,3.637,2.058,2.193,1.89,1.741,1.93,1.368,2,0.854,2.157,2.103,3.247,2.369,2.028,2.15,2.44,3.309,2.364,6.79,0.846,1.441,2.947,2.343,0.637,1.508,1.139,1.323,3.256,3.112,1.715,1.358,2.801,4.012,2.172,1.868,1.671,1.002,3.01,2.845,1.407,6.548,2.318,0.182,0.669,4.124,3.854,3.487,3.925,3.654,2.005,2.484,2.853,2.903,2.658,3.315,1.956,2.263,1.824,3.091,2.179,3.582,2.716,2.482,1.064,1.835,2.594,3.502,4.808,0.993,4.644,4.686,3.828,1.932,1.905,2.635,1.69,2.291,2.32,0.458,1.287,1.763,2.303,2.379,1.806,1.919,2.645,1.724,1.736,1.121,0.834,1.815,2.16,1.455,1.864,3.584,3.481,3.541,3.58,1.634,3.363,2.748,2.752,5.31,3.34,3.81,3.702,3.048,2.603,2.398,3.935,4.095,3.706,2.737,2.774,4.04,3.64,3.694,4.044,6.923,9.657,7.723,3.313,1.951,3.02,4.014,4.326,7.735,12.55,8.08,6.374,6.488,2.312,4.434,2.971,2.419,1.8,5.363,11.659,9.011,6.462,4.492,6.641,4.019,2.097,4.001,3.387,3.494,3.41,2.966,1.118,2.199,1.918,2.201,0.471,1.078,0.971,0.277,5.688,6.608,4.637,2.417,1.526,2.585,2.803,1.739,2.069,2.501,2.509,1.803,2.619,2.171,3.023,3.128,3.323,2.624,1.682,0.924,2.508,3.403,1.448,0.707,2.251,2.686,4.178,4.657,11.356,8.214,3.241,2.204,6.828,2.486,1.472,4.59,4.234,2.563,2.916,2.178,2.314,4.16,1.99,0.479,2.708,0.218,6.098,1.976,2.831,8.913,3.12,1.747,1.461,0.396,3.119,3.885,3.765,2.272,2.596,2.086,1.815,3.614,7.093,7.278,3.569,3.419,2.275,1.945,3.584,2.731,3.834,2.792,2.717,0.253,3.865,1.331,2.324,2.144,3.373,3.13,0.844,3.521,3.02,3.507,5.809,4.624,4.252,2.204,2.455,4.505,2.325,2.415,2.295,2.505,2.658,2.756,2.128,1.742,2.332,2.512,3.246,3.911,1.982,3.573,2.534,2.542,3.343,4.484,2.629,0.875,1.432,1.895,1.979,2.096,2.064,2.097,1.922,1.921,2.009,2.676,2.738,2.681,2.887,2.254,2.587,6.079,6.044,3.926,2.713,2.486,2.628,2.577,5.722,3.061,1.12,1.745,2.709,2.636,2.229,3.045,1.871,2.426,2.378,1.08,1.208,0.056,2.302,2.037,2.225,2.44,1.599,2.771,3.087,2.794,3.701,5.345,1.471,2.202,1.685,1.801,1.848,1.61,1.315,1.331,1.444,1.899,2.066,1.65,1.657,2.222,1.87,2.171,1.113,2.227,4.906,2.985,0.7,1.161,0.771,0.568,1.043,0.826,0.908,3.148,3.2,2.857,3.479,2.527,6.18,3.249,1.74,1.905,1.847,1.96,1.21,0.964,1.047,1.642,1.776,1.767,3.181,5.311,3.687,2.841,2.644,2.573,3.003,1.461,2.098,3.073,2.324,0.932,2.043,2.733,2.682,3.789,4.073,2.59,2.81,4.244,4.185,4.746,4.766,3.836,2.222,2.771,3.054,2.977,2.199,1.306,0.708,1.904,2.939,5.098,4.408,1.957,1.729,2.636,2.548,2.518,1.172,2.721,2.309,2.248,3.925,1.999,1.975,2.218,2.319,4.271,3.336,2.784,2.949,2.952,2.43,1.377,1.06,5.152,0.32,5.415,4.634,3.679,2.55,2.668,3.579,2.125,2.124,1.979,2.517,5.037,7.755,4.192,5.795,6.615,6.553,3.295,3.498,3.638,2.51,3.124,3.807,3.678,2.597,2.252,2.603,2.262,1.425,1.513,2.454,1.733,0.656,1.103,3.601,1.387,1.371,1.82,0.934,1.344,1.324,0.822,1.468,1.67,1.653,1.717,1.649,1.673,1.683,1.907,1.998,2.08,1.933,1.88,1.208,1.039,1.776,1.435,1.49,2.289,1.992,1.854,2.846,2.176,1.73,2.044,1.749,2.018,2.088,1.749,1.947,1.66,2.464,1.724,1.767,1.689,1.701,2.088,1.981,1.718,0.034,1.791,1.714,2.458,1.669,1.764,1.741,1.625,1.656,1.882,3.191,1.048,2.031,2.165,1.776,1.545,1.573,1.699,1.853,1.806,1.888,1.648,1.669,1.472,2.605,2.495,10.239,3.31,6.738,3.441,3.356,3.067,3.054,2.866,1.968,3.46,4.134,2.384,1.215,0.878,1.184,0.483,1.755,2.016,0.641,0.599,2.466,3.11,2.695,2.932,2.636,3.317,2.283,1.649,3.505,3.719,0.486,3.033,2.352,2.24,3.344,3.235,4.696,3.562,3.339,7.041,5.396,5.427,4.611,1.284,3.638,4.879,3.541,3.459,2.547,2.686,2.499,2.597,3.691,4.201,4.19,3.477,2.437,2.632,1.77,2.196,2.743,2.807,3.275,3.777,1.688,2.071,0.32,3.84,4.801,5.281,4.662,2.032,1.973,4.054,3.538,4.605,0.884,6.442,6.522,6.529,6.406,2.478,2.589,1.766,1.387,2.419,1.701,1.668,1.443,1.537,1.764,1.676,2.45,2.002,1.66,2.586,2.223,1.981,1.969,0.98,1.371,1.946,2.419,1.651,1.413,1.7,1.728,1.608,1.364,1.47,1.711,2.115,2.342,3.129,1.4,2.188,1.881,2.748,2.118,1.767,1.825,1.508,3.19,4.875,3.853,4.536,1.994,2.189,3.1,2.134,2.009,2.007,1.66,1.644,1.931,1.844,1.08,1.23,1.808,1.908,2.152,1.971,1.458,1.813,2.57,3.253,1.679,1.247,2.595,2.149,2.38,1.925,1.443,1.622,2.064,1.769,1.705,1.737,1.883,2.077,1.958,2.313,1.708,1.678,2.349,2.613,1.852,1.532,1.396,1.609,1.737,2.092,2.264,2.021,1.658,1.831,1.8,1.729,1.44,2.937,3.114,1.726,1.777,3.019,2.589,2.242,2.153,3.035,2.263,1.926,0.05,1.215,1.411,1.899,1.729,2.222,1.698,2.034,1.424,1.805,5.014,4.567,4.894,4.366,3.533,3.757,2.978,1.536,2.139,3.648,1.334,1.521,2.238,3.541,3.047,3.344,3.406,4.298,4.262,3.536,2.31,2.678,2.696,2.932,2.724,2.759,10.589,5.391,2.662,2.724,2.574,2.3,1.006,1.587,1.837,1.688,2.02,2.589,2.084,2.328,1.013,1.695,2.638,1.607,1.81,1.407,2.003,2.594,1.509,1.861,1.393,1.504,1.687,1.58,2.05,2.193,1.857,2.22,2.248,1.964,1.646,2.352,2.273,1.905,1.902,2.009,2.205,2.903,5.61,1.735,2.399,6.112,4.484,1.818,1.574,2.243,2.057,2.143,2.73,1.991,2.273,2.64,2.231,2.593,2.294,2.237,1.743,1.749,2.198,2.36,2.781,1.708,1.463,1.724,1.02,0.231,3.401,2.666,2.572,5.174,7.707,11.199,1.775,2.461,1.576,1.23,1.099,1.851,1.902,1.578,1.016,0.918,2.309,2.091,1.489,1.581,1.157,1.296,1.357,1.292,1.483,1.292,1.879,2.318,2.669,2.041,3.046,3.102,1.852,1.215,1.071,1.282,1.477,1.288,1.165,1.135,0.992,1.415,1.603,0.835,1.637,1.466,0.417,0.706,1.323,1.362,1.321,1.386,1.115,1.286,1.373,1.213,1.076,1.243,1.434,1.549,1.621,4.899,4.842,2.062,1.772,1.441,1.362,1.677,1.557,1.129,0.51,1.595,1.871,1.001,1.518,1.877,2.121,2.222,1.985,1.825,1.708,1.249,1.304,1.337,1.388,1.136,1.178,1.537,2.338,3.708,4.056,3.917,2.935,0.97,1.971,1.116,3.15,2.511,1.52,0.297,2.212,1.124,1.466,1.144,1.482,1.611,3.719,4.537,2.938,1.798,1.558,1.967,2.348,2.854,3.072,1.802,3.132,2.235,2.228,1.656,2.58,2.727,3.371,5.471,0.064,3.278,0.844,1.64,2.42,6.829,7.405,7.312,9.699,1.979,8.676,3.569,2.247,2,2.175,2.304,1.357,1.378,2.524,1.531,1.666,3.104,4.932,3.771,3.276,2.868,1.782,1.589,1.987,2.155,2.213,1.372,3.987,5.334,1.333,1.317,1.037,0.971,1.098,0.841,0.654,1.273,1.041,0.99,0.963,1.218,1.675,1.538,0.916,1.188,1.323,3.681,1.843,1.24,1.215,1.135,1.151,1.38,0.926,0.976,1.315,1.075,0.888,1.064,1.142,1.51,2.185,3.137,1.779,2.999,3.239,1.926,2.043,1.274,1.767,1.265,1.405,1.679,1.935,1.767,1.48,1.794,1.352,1.094,1.13,1.415,1.344,1.426,1.028,0.645,1.549,1.314,2.038,1.587,2.232,1.114,2.437,1.73,1.694,2.043,1.468,1.683,1.66,1.882,1.423,2.393,2.809,6.236,4.369,2.029,4.031,4.033,5.092,0.737,8.245,8.257,2.353,1.967,1.153,1.967,1.816,0.876,5.727,2.924,2.83,4.22,1.655,1.589,0.961,1.376,1.765,1.529,1.101,1.036,1.14,1.208,1.624,1.96,1.66,1.291,1.337,1.555,1.071,1.074,1.617,1.48,1.608,1.187,1.06,1.217,1.317,1.25,0.987,1.234,1.04,1.094,2.058,1.39,2.757,2.688,2.494,2.268,1.849,1.477,1.295,1.679,1.23,1.955,0.916,0.924,2.07,0.828,1.412,1.165,1.317,1.211,1.728,1.092,0.942,1.154,1.738,1.883,1.895,6.295,6.031,4.253,2.5,2.539,2.687,2.2,2.432,2.654,5.812,8.523,8.937,4.772,2.598,2.395,2.676,1.225,2.953,0.173,3.469,2.234,2.084,2.484,2.29,1.568,1.486,2.527,2.28,2.693,0.871,2.128,1.157,2.354,2.265,0.327,1.952,1.493,1.587,0.364,2.082,4.916,2.274,0.773,2.619,4.604,4.804,3.281,3.078,2.941,2.951,11.226,3.115,1.422,1.112,3.344,2.065,2.811,2.648,1.74,4.832,0.862,0.355,0.993,0.724,0.681,0.879,0.894,1.227,0.949,0.902,0.854,0.875,1.102,1.316,1.384,4.049,2.818,2.117,1.513,1.373,0.999,1.337,1.167,0.953,0.746,0.283,1.333,1.071,0.933,1.233,1.173,1.147,1.289,1.508,1.713,1.477,1.465,1.756,2.283,3.8,1.959,0.181,1.761,1.58,1.251,1.1,0.962,0.856,0.294,0.522,0.58,1.062,0.92,1.027,1.004,0.759,1.299,1.174,1.923,4.034,7.047,1.503,1.118,0.812,1.214,0.958,0.861,0.929,1.269,1.32,1.103,0.445,0.473,0.786,1.258,1.082,0.772,0.761,0.707,0.859,0.969,0.815,1.26,0.837,1.133,1.075,1.6,1.355,1.01,0.999,1.23,1.167,1.21,1.018,0.976,2.184,1.68,2.421,0.371,3.143,1.818,1.122,1.128,0.969,1.195,1.317,1.025,1.33,1.028,1.248,2.048,2.238,2.503,5.404,1.47,1.437,1.073,1.412,1.383,1.437,1.268,1.13,1.33,1.368,1.487,1.759,2.054,1.194,1.458,1.188,1.205,1.122,2.074,1.986,1.838,1.459,1.37,1.236,0.18,1.037,1.157,1.274,1.618,3.349,3.201,2.084,1.6,1.506,1.168,1.237,1.384,1.163,1.229,1.125,1.171,1.273,1.422,1.429,1.114,1.545,1.33,1.444,1.284,1.226,1.127,1.338,1.048,1.206,1.509,1.553,2.721,0.468,2.84,1.627,1.355,1.458,1.23,1.834,2.183,3.552,1.073,1.553,11.963,0.88,0.852,0.699,0.74,0.763,0.683,0.804,0.724,0.996,1.374,0.723,0.667,0.77,0.843,0.973,0.983,0.909,0.671,0.7,0.989,0.797,0.856,0.553,0.929,0.893,0.742,0.826,0.83,1.179,2.452,1.974,0.628,0.662,0.886,0.854,0.596,0.633,1.03,0.63,0.705,0.789,1.154,1.109,1.217,1.045,1.127,2.252,2.05,1.962,1.123,2.009,0.88,1.202,1.727,1.966,1.654,2.37,0.802,1.725,1.927,0.334,1.526,2.206,2.421,1.641,1.64,2.446,2.308,2.307,1.889,2.063,2.524,2.458,2.121,2.31,2.954,2.249,2.296,4.487,2.898,3.86,4.425,2.85,2.887,2.437,5.113,4.342,3.529,2.887,1.362,1.443,2.593,1.757,1.823,1.146,1.146,1.848,1.99,1.456,1.439,0.859,1.641,1.445,1.437,1.495,1.241,1.234,1.872,1.337,1.555,1.242,1.441,1.341,0.452,1.152,1.087,0.93,0.892,1.379,0.841,0.783,1.266,1.464,1.121,1.162,1.184,1.156,0.576,2.341,2.028,1.501,1.625,1.632,1.447,0.917,0.911,1.154,1.481,1.388,0.895,0.909,0.698,0.892,1.01,1.062,0.857,1.016,0.854,0.774,1.908,2.067,2.501,2.542,3.711,2.598,1.853,4.565,0.017,2.389,0.368,2.661,2.012,1.36,3.508,2.178,2.657,0.49,1.462,1.479,1.146,0.744,0.697,0.683,0.744,0.667,0.754,0.738,0.698,0.695,0.738,0.725,0.719,0.735,0.678,0.737,0.711,0.732,0.733,0.709,0.709,0.719,0.722,0.801,0.746,0.809,0.796,0.774,0.882,0.735,1.616,1.287,1.056,2.341,1.484,1.335,1.449,1.019,0.95,1.565,1.302,1.627,1.507,1.595,1.426,3.356,1.679,0.765,1.562,2.153,1.956,1.596,2.119,1.636,2.136,1.868,1.617,1.619,2.31,1.635,2.03,1.143,1.343,0.937,1.115,1.512,1.503,1.544,2.488,1.763,1.839,8.113,2.067,2.48,1.245,1.206,2.5,1.818,3.165,1.36,1.273,1.609,3.51,2.036,1.954,2.453,1.389,1.825,1.893,1.73,1.611,1.622,1.299,1.278,1.589,1.66,1.728,1.708,1.741,2.123,1.904,1.963,2.032,2.082,2.171,1.332,1.453,1.487,1.185,1.558,2.12,1.995,1.139,1.204,0.965,0.93,1.499,1.389,1.414,1.886,1.389,2.064,0.443,2.032,2.027,3.672,1.77,1.677,1.762,1.757,1.814,2.214,3.785,1.089,1.03,1.116,1.134,1.172,1.28,1.464,6.111,1.135,1.212,1.116,1.073,1.372,1.564,1.412,1.124,1.21,1.585,1.885,0.762,0.821,0.871,1.182,1.65,1.373,1.821,1.802,1.64,1.069,1.18,0.91,0.897,1.004,0.958,1.013,0.956,1.003,0.919,0.988,0.977,0.996,0.996,0.975,1.406,1.177,1.767,1.597,5.437,2.704,2.662,3.61,3.682,3.105,3.142,1.2,2.981,2.626,1.412,1.414,0.905,0.89,1.169,1.104,1.201,1.16,1.911,1.954,1.99,1.87,2.039,2.11,2.589,2.166,1.67,1.646,1.486,0.96,1.021,1.594,2.023,1.904,2.235,2.254,1.413,1.423,2.783,2.13,2.648,2.063,2.281,1.697,1.652,1.566,2.337,1.953,1.981,2.171,12.193,12.454,4.017,2.277,1.839,1.696,1.87,1.829,1.825,1.385,1.477,1.903,1.212,1.87,1.907,1.911,1.758,1.632,2.028,1.999,1.819,2.017,1.264,1.264,1.949,1.95,2.135,2.277,1.766,1.736,1.409,2.761,4.082,1.06,0.345,2.63,4.243,4.198,3.835,6.256,2.408,2.227,1.852,1.86,1.21,1.597,1.436,1.481,2.04,1.368,2.524,2.055,1.38,1.71,1.816,2.44,1.288,1.287,1.26,1.147,1.345,2.17,2.356,7.355,2.769,1.347,4.094,2.019,7.46,3.56,2.24,3.52,0.407,2.146,2.893,5.976,3.035,0.521,1.787,0.383,1.423,1.733,0.927,1.35,1.402,1.173,1.481,1.259,1.262,1.473,1.125,1.31,1.924,1.641,1.758,1.24,1.772,1.254,1.227,1.26,1.442,1.233,1.5,1.281,1.307,1.512,4.894,8.53,5.034,8.522,4.192,1.209,0.245,2.517,3.537,3.352,8.266,4.253,3.878,1.308,1.34,1.314,1.063,1.616,1.117,1.379,1.431,1.511,1.399,5.793,1.486,0.933,2.18,1.652,1.693,1.575,1.604,1,1.255,1.55,0.967,0.898,1.321,0.985,0.997,0.889,0.903,0.979,1.685,1.975,2.587,0.833,1.436,1.321,1.15,1.202,0.99,1.279,1.366,1.409,1.521,1.437,1.27,1.31,1.334,0.447,0.772,1.162,1.465,1.738,4.683,2.365,1.222,1.253,1.359,1.771,1.21,1.237,1.128,1.097,0.844,2.762,1.425,1.18,1.325,1.193,1.265,1.19,0.865,1.022,1.013,1.112,1.371,1.15,1.016,1.42,1.29,1.25,1.028,2.161,3.081,0.853,1.307,1.368,1.185,0.883,1.18,1.133,1.367,2.163,2.699,3.326,5.3,1.396,4.632,3.992,0.075,4.135,0.729,5.014,5.182,2.567,4.042,9.22,2.275,4.14,3.282,2.971,4.918,5.55,3.927,3.246,2.561,2.582,5.441,4.977,0.425,4.404,3.156,1.828,2.077,3.6,2.11,2.612,2.453,4.108,2.449,3.643,2.05,6.212,10.06,3.629,2.467,3.077,1.587,2.058,4.452,14.277,15.24,1.294,3.194,2.037,2.618,2.282,2.021,2.171,2.488,2.461,1.831,0.414,3.072,1.273,2.1,2.548,1.82,2.712,2.296,5.501,1.596,1.346,1.503,1.608,1.037,1.505,1.641,0.632,1.984,3.181,1.068,3.419,0.861,1.432,5.299,0.688,5.007,9.64,5.952,2.133,23.127,3.6,5.326,5.326,1.299,7.524,3.906,2.654,1.251,0.791,1.229,1.381,0.696,1.769,1.306,0.703,0.761,0.962,1.523,1.849,1.499,1.342,1.409,1.354,1.551,1.613,1.59,1.268,1.863,2.065,1.775,1.824,2.583,7.661,5.854,5.747,6.451,1.985,1.949,9.061,1.654,1.693,1.623,2.194,1.494,1.2,1.547,1.411,1.63,2.774,1.163,1.941,2.202,1.036,2.039,1.738,1.866,2.264,1.921,1.62,1.588,1.413,0.716,0.246,2.35,0.759,0.949,1.607,2.457,1.842,1.23,1.588,1.608,1.43,0.428,4.912,2.302,1.971,1.754,1.623,1.61,1.256,1.352,0.914,0.829,1.432,1.638,1.516,0.802,0.908,1.215,1.59,0.827,0.908,1.335,1.491,1.084,1.087,0.985,0.89,0.941,1.451,1.424,2.528,2.321,2.213,5.905,3.328,2.628,3.289,2.248,2.726,1.617,1.354,1.176,2.131,0.972,0.885,1.206,1.399,1.164,1.923,1.647,1.622,1.023,0.501,1.588,2.012,1.488,1.732,1.66,1.675,3.978,1.762,1.87,1.178,1.224,1.176,1.353,1.356,1.654,0.891,1.009,1.352,1.455,1.494,1.435,1.406,1.713,1.616,2.107,3.218,0.785,7.929,7.714,5.8,0.814,1.186,0.715,0.643,0.618,0.92,1.16,0.968,1.359,1.147,1.556,1.602,1.439,0.845,0.762,0.997,0.977,2.206,2.175,1.474,1.006,2.581,2.322,1.48,2.571,3.089,2.083,2.028,4.916,4.865,2.094,3.3,0.489,1.587,2.615,3.934,5.83,4.916,2.827,3.321,2.359,2.882,2.995,2.985,3.124,3.11,5.076,5.21,6.877,5.62,4.477,7.301,10.941,6.631,2.413,5.641,4.175,5.561,3.673,2.374,2.298,2.699,5.517,3.484,1.352,0.66,2.137,2.03,2.306,2.024,0.847,4.875,5.835,3.257,9.532,3.292,3.209,1.694,5.297,1.794,1.582,4.462,0.415,2.721,1.46,1.465,3.034,2.14,1.909,3.177,3.119,13.374,1.925,5.607,2.804,2.708,2.991,3.004,1.654,1.59,3.079,2.909,2.805,2.718,0.067,3.718,1.661,2.588,5.612,6.057,2.425,2.68,3.38,2.103,2.726,4.197,2.448,4.774,2.022,3.47,1.744,1.736,1.791,1.685,1.43,2.381,2.071,0.934,2.946,2.706,1.832,1.734,1.407,2.276,3.364,0.917,4.451,1.028,1.456,2.892,4.128,4.024,4.626,7.044,2.892,2.603,3.225,2.249,4.396,0.828,2.166,1.176,3.487,3.959,4.063,3.211,1.561,2.46,3.218,0.879,2.285,3.262,2.388,2.953,2.8,8.235,3.909,4.022,3.893,4.191,2.23,2.571,0.466,0.382,5.586,2.319,4.406,5.143,11.456,5.111,4.317,4.281,4.655,4.671,2.848,3.279,4.432,4.404,5.522,7.173,3.11,7.299,4.528,4.035,2.743,2.679,2.621,2.393,2.564,2.689,2.045,2.296,2.462,2.207,1.638,1.72,1.916,1.852,2.728,2.029,2.007,2.358,3.568,1.21,2.565,2.41,2.231,1.439,0.667,2.613,5.906,6.148,8.088,4.465,4.786,3.873,2.387,1.963,2.254,1.905,2.23,2.065,3.122,1.964,0.227,1.939,2.07,2.66,2.807,2.051,2.066,2.146,4.818,1.872,2.258,1.902,1.955,1.876,2.838,2.127,3.522,3.806,2.781,2.404,2.677,2.915,2.992,2.826,1.326,1.527,1.709,2.736,2.71,4.267,6.816,3.452,3.371,3.035,2.949,2.942,3.164,3.515,3.787,3.421,3.973,4.127,4.23,1.937,5.491,5.068,6.145,2.881,2.907,4.993,4.041,3.217,3.252,3.347,3.665,3.28,3.297,3.546,3.202,3.256,3.131,3.164,3.606,1.758,2.103,3.334,3.957,4.542,4.755,1.718,1.184,4.5,2.143,1.479,1.824,0.339,10.041,5.291,3.163,7.53,3.544,1.76,1.754,1.375,3.882,2.96,6.082,8.491,8.011,2.661,15.223,5.62,3.627,4.668,4.615,2.783,2.406,0.205,2.896,2.554,2.672,2.896,5.781,3.901,1.586,1.532,2.052,2.063,2.235,2.182,1.695,1.702,3.309,3.231,3.308,2.586,2.69,2.396,2.962,2.53,2.452,2.596,2.668,3.254,1.919,2.382,2.477,2.397,1.978,1.968,1.179,2.673,2.892,2.903,2.614,2.568,3.116,2.785,1.55,2.863,2.697,4.059,4.207,1.984,3.154,2.762,4.116,4.141,17.345,17.338,9.84,2.635,1.521,3.165,3.888,1.932,2,1.649,3.049,3.957,4.05,5.096,2.877,3.891,1.316,2.888,2.008,2.855,2.983,0.126,4.618,4.218,4.329,2.906,4.355,1.801,8.385,8.685,8.213,8.014,5.218,5.158,4.591,4.841,4.547,4.457,2.442,2.385,4.2,3.453,3.478,3.524,3.612,4.737,4.62,3.126,3.041,2.177,2.179,3.949,2.762,4.527,2.015,3.322,3.316,6.141,3.872,12.094,5.826,3.223,3.349,5.321,0.379,1.516,2.809,2.217,2.713,1.384,3.637,2.343,3.349,1.072,1.453,1.46,2.567,1.152,8.095,5.505,3.976,4.124,3.371,2.265,2.024,1.08,1.052,2.033,1.406,1.304,0.685,1.519,1.265,1.231,1.492,1.416,0.88,1.412,0.956,0.853,0.475,0.198,2.177,0.845,1.286,1.576,1.178,1.829,0.876,0.845,1.455,1.678,1.998,1.85,1.593,2.397,1.691,2.19,2.069,4.268,1.835,1.803,3.468,1.686,2.754,1.036,2.804,4.725,3.158,1.106,2.531,0.471,11.255,10.986,5.428,2.397,2.593,1.912,1.888,1.652,1.629,2.787,1.433,1.34,2.937,1.345,1.326,1.68,2.662,2.032,2.244,2.605,2.209,2.292,2.278,2.317,2.146,1.922,1.858,1.697,1.689,1.836,1.764,1.394,1.369,1.09,1.526,2.211,2.212,2.771,6.725,6.585,1.535,9.164,0.823,8.937,7.416,7.362,2.183,1.509,2.85,1.691,1.199,1.283,0.209,1.634,0.726,2.029,1.981,2.475,1.808,1.856,1.494,1.459,1.663,2.435,1.374,1.199,1.404,1.416,1.336,1.381,2.077,2.25,2.329,1.998,1.951,2.677,2.364,2.666,2.297,2.733,2.772,2.616,2.336,1.511,1.434,1.728,1.519,1.814,1.781,1.542,1.507,1.38,1.128,1.539,3.063,2.926,0.945,1.928,4.229,1.837,1.292,0.561,1.833,2.356,1.543,2.844,5.361,5.517,6.647,0.369,2.793,2.118,1.967,2.319,0.764,2.276,0.873,0.677,1.367,2.016,2.977,2.844,5.404,5.429,5.582,5.332,2.268,2.018,2.642,3.081,1.895,4.43,2.863,1.535,2.112,4.656,4.709,11.26,3.598,2.536,2.586,2.443,2.514,2.102,2.08,1.119,1.587,1.555,1.615,1.595,1.929,1.617,2.45,1.206,1.925,1.625,2.004,1.959,2.662,2.352,1.7,2.947,4.237,2.014,2.22,2.739,2.729,1.45,2.934,2.387,1.945,1.971,1.876,1.826,1.392,1.66,1.435,2.353,2.839,1.636,0.294,4.008,1.273,1.884,3.003,1.773,0.886,2.104,6.599,6.251,4.725,1.523,1.767,3.601,2.579,5.8,2.172,3.093,4.05,3.118,2.809,6.33,2.317,2.674,3.27,0.828,3.055,3.675,3.14,3.39,2.751,2.921,2.933,3.402,3.328,2.207,4.307,3.155,4.242,2.856,4.424,3.64,1.612,1.534,0.563,2.631,2.352,4.078,1.873,0.966,2.533,2.519,2.54,2.693,2.548,1.712,2.825,0.068,3.089,1.808,5.445,5.348,12.047,5.993,2.983,3.063,2.814,2.177,1.707,2.313,3.505,2.52,3.451,2.611,2.396,2.017,2.074,1.608,2.018,1.378,2.701,1.973,1.857,1.373,2.013,1.855,1.95,1.51,1.446,1.954,1.947,2.656,1.666,1.119,2.502,2.593,1.548,1.834,2.977,3.491,3.268,2.03,2.365,3.239,3.158,3.274,3.343,3.145,3.743,3.839,3.841,3.859,2.25,1.481,3.613,2.16,2.101,3.786,2.329,1.839,3.279,3.661,1.952,1.641,0.339,0.382,2.05,2.301,3.595,3.939,3.493,3.168,3.452,2.307,2.071,2.148,2.295,3.047,3.07,2.956,2.05,2.585,2.59,3.866,3.951,3.962,3.914,4.524,4.357,5.32,2.935,2.349,2.532,4.103,3.557,1.69,2.038,2.211,5.328,3.421,0.646,2.26,2.45,0.067,4.065,4.119,1.407,1.673,3.068,1.625,1.654,2.524,2.328,0.981,2.702,2.644,3.482,3.021,2.281,1.449,0.359,3.269,3.532,3.493,3.325,3.339,3.193,1.678,3.935,4.14,1.905,6.085,6.363,3.327,3.004,3.396,2.071,1.544,1.818,1.726,1.495,1.426,1.522,1.454,1.471,1.606,1.868,2.644,3.006,2.415,1.679,2.074,2.038,2.271,1.915,1.724,1.617,1.695,2.115,2.157,1.549,1.515,1.498,2.063,1.865,2.128,1.911,2.124,2.13,2.311,1.709,2.531,2.695,2.029,1.893,3.575,3.259,1.619,2.868,2.723,2.162,2.067,2.017,0.542,1.21,1.384,0.328,2.017,1.961,2.188,1.936,2.033,1.974,2.07,2.276,2.215,2.154,2.199,1.387,1.863,1.511,2.784,1.993,1.808,3.011,2.885,1.575,1.49,1.798,1.765,2.227,2.233,2.139,4.337,4.218,2.379,1.92,2.081,1.92,0.191,2.158,2.208,4.838,4.442,2.796,2.798,2.92,1.605,2.649,2.174,2.127,2.233,1.686,2.179,3.654,1.681,2.004,5.126,2.298,2.126,2.079,2.1,2.088,2.129,1.246,1.374,1.609,2.325,1.439,1.401,2.066,1.87,2.28,2.472,2.695,2.739,4.216,4.049,0.205,3.752,2.789,2.132,2.22,2.601,2.241,1.892,1.358,1.771,1.98,2.215,1.535,1.506,1.489,2.041,2.031,2.253,2.228,2.086,1.936,2.311,1.567,1.865,2.298,1.44,1.468,1.092,1.069,1.739,1.778,1.661,1.143,0.943,2.148,1.81,1.807,0.716,0.527,2.044,1.444,1.211,1.515,2.695,0.9,2.7,0.807,2.306,2.41,1.461,3.256,3.258,2.651,2.474,3.158,1.21,1.826,2.092,1.969,2.597,2.551,2.503,2.525,2.032,2.265,2.076,2.46,2.208,2.698,0.745,2.383,1.793,1.697,2.533,2.262,2.594,2.226,1.83,2.599,2.513,2.115,2.97,2.858,2.833,2.846,3.548,2.159,2.056,1.711,1.826,2.81,2.396,2.558,1.852,1.867,2.468,2.579,2.473,1.452,1.801,1.819,2.403,2.306,1.16,0.753,1.68,2.655,4.44,8.622,3.436,5.56,2.764,2.386,2.049,1.829,1.666,1.773,2.703,1.484,1.556,2.243,0.998,1.26,0.59,2.266,1.063,1.613,0.233,1.731,1.678,1.813,1.57,1.295,1.403,2.194,2.12,1.564,0.624,1.002,1.971,3.284,2.968,1.706,3.02,6.526,6.469,7.617,3.813,3.705,3.572,1.818,2.401,2.746,2.781,2.015,2.004,2.172,2.427,2.787,2.91,3.03,2.811,3.19,3.582,2.324,2.311,2.331,2.395,2.081,2.418,4.062,7.02,1.687,2.757,2.472,2.057,2.39,2.704,2.558,2.126,2.278,2.173,1.866,4.28,4.205,2.625,1.576,2.379,2.295,1.658,2.596,3.529,1.661,1.27,2.615,1.444,1.485,2.228,0.06,2.419,1.511,1.469,2.23,2.272,1.751,0.596,1.146,2.424,5.692,0.79,1.852,1.37,2.915,2.226,1.173,1.18,1.221,1.227,0.867,0.87,1.739,1.787,2.058,2.775,2.322,1.545,4.268,4.345,2.78,1.862,2.795,3.306,2.001,2.586,2.616,2.63,5.202,5.488,3.058,1.618,1.341,1.893,2.75,2.75,2.192,1.407,3.261,2.069,2.07,2.322,2.915,3.259,3.272,2.613,2.268,2.314,2.36,2.276,3.12,3.043,2.333,2.996,4.327,2.569,2.478,1.473,1.897,2.63,3.18,3.05,1.912,1.836,1.31,2.831,2.959,2.859,2.671,2.894,2.881,3.234,4.592,2.346,2.45,2.138,2.409,3.184,2.508,2.13,2.573,1.745,1.505,1.804,10.343,10.369,3.251,3.283,2.716,2.727,2.755,2.751,2.123,2.128,1.896,1.712,2.022,1.145,0.825,0.133,1.817,2.144,2.104,2.844,0.227,1.714,1.479,1.534,1.51,1.224,0.312,3.968,5.146,1.707,3.29,3.497,2.695,2.615,2.786,2.808,2.577,1.401,1.521,3.221,3.449,2.94,4.127,3.642,3.666,3.594,3.223,3.658,3.043,2.751,6.759,3.776,2.662,1.87,1.83,2.777,1.022,2.565,1.601,2.341,2.994,3.089,3.23,3.177,3.895,3.973,4.319,2.802,2.446,3.314,2.714,2.702,2.62,2.704,2.997,2.985,3.045,3.151,1.493,1.788,2.587,2.644,4.58,3.25,2.491,2.001,1.763,1.042,1.549,1.717,0.518,2.229,2.855,2.139,1.944,0.504,2.444,2.228,2.693,1.669,1.318,1.346,1.888,2.053,2.897,3.096,2.381,0.864,1.462,1.524,1.953,1.909,1.641,1.833,1.799,1.743,2.105,1.977,2.101,2.447,1.19,9.424,4.736,5.5,20.241,0.397,4.426,3.838,4.524,10.829,3.562,3.634,3.286,5.951,1.894,11.23,2.603,4.356,4.074,1.619,1.033,2.676,2.905,2.919,2.371,2.192,14.937,2.709,1.278,2.132,2.377,2.338,2.467,2.336,1.082,1.017,1.425,1.222,1.39,1.32,1.789,1.807,3.418,2.285,2.136,1.472,1.069,1.192,0.971,1.047,1.091,1.207,1.294,1.262,1.355,1.44,2.33,2.273,2.414,2.375,1.339,1.3,1.483,1.419,1.49,1.434,1.727,1.659,1.618,1.551,1.114,1.175,1.512,0.806,0.863,1.633,1.235,1.101,1.268,1.176,1.317,0.876,2.001,4.599,1.385,5.621,16.023,2.319,2.319,2.027,1,0.947,1.216,1.313,1.44,1.518,1.656,1.578,1.353,1.426,1.745,1.461,1.299,1.274,1.749,2.409,4.357,0.763,3.134,2.379,3.478,1.651,1.635,3.284,1.681,1.625,2.408,2.545,1.298,1.251,1.842,2.32,2.26,2.129,2.168,1.461,2.563,2.585,2.07,2.034,1.781,1.741,1.917,1.747,1.777,1.668,1.638,1.585,1.655,1.686,2.323,2.275,1.474,1.509,2.198,2.072,1.214,1.17,2.274,0.185,1.676,0.273,1.356,1.301,1.809,1.718,2.763,2.239,2.094,3.52,4.971,2.024,2.008,2.694,2.37,0.241,2.592,2.488,1.69,0.706,2.559,1.889,2.198,3.508,3.559,2.467,2.77,1.506,1.542,3.256,5.572,2.284,4.578,2.575,2.41,6.118,7.502,3.854,0.32,3.267,3.331,3.595,13.406,2.481,4.144,3.726,2.887,2.95,2.624,2.292,3.282,3.45,3.279,3.46,3.174,6.637,3.764,3.966,2.769,3.214,1.641,2.994,3.739,3.528,4.065,3.654,3.481,1.174,4.455,3.503,3.518,4.972,4.922,5.183,4.085,14.617,3.155,4.605,10.209,2.534,2.501,2.421,2.643,2.237,2.119,1.755,1.419,0.651,1.146,2.578,0.455,1.21,1.451,2.039,1.616,2.348,2.417,3.716,6,2.421,2.227,2.203,0.625,1.147,1.731,3.274,2.368,2.312,1.584,2.396,2.902,4.165,9.5,17.823,5.153,2.196,2.944,9.72,2.39,21.124,1.87,1.863,1.831,1.808,1.941,1.944,1.981,1.781,1.777,2.251,1.451,1.457,1.45,1.444,1.467,1.466,1.467,1.471,1.579,1.659,0.998,1.153,0.875,1.2,2.085,2.078,0.88,0.68,1.171,0.775,1.177,1.183,0.854,1.074,1.348,2.637,2.683,2.716,2.722,3.695,2.749,3.417,0.732,1.906,1.877,14.021,5.783,5.839,2.06,2.052,2.455,2.939,2.909,2.903,2.878,2.612,2.523,1.83,1.711,2.189,1.63,1.61,1.608,1.63,1.462,1.5,1.405,1.57,1.21,0.12,1.342,1.332,1.369,1.456,1.469,1.456,1.446,1.78,1.776,1.767,1.809,2.001,10.368,4.22,15.098,1.286,1.283,1.308,1.311,1.307,1.307,1.65,1.433,1.436,1.36,1.368,1.375,1.391,1.544,1.55,1.557,1.528,1.24,1.252,1.241,1.24,1.475,1.456,1.478,1.487,1.704,1.722,1.662,1.682,2.057,2.071,4.147,1.856,1.846,1.856,1.856,3.345,3.349,22.139,16.765,3.234,3.237,3.232,3.248,18.54,2.943,2.926,1.646,1.619,3.092,3.077,2.842,2.969,2.94,3.595,2.238,2.192,3.054,3.066,3.62,2.325,2.311,2.543,2.61,1.295,1.656,7.262,3.25,10.955,4.907,1.152,3.612,3.493,3.479,3.039,3.011,3.001,0.75,0.746,0.755,0.748,1.424,1.428,0.816,0.82,0.82,0.817,0.815,0.823,1.649,0.906,0.906,0.911,0.902,1.647,0.824,0.858,1,1.117,0.952,0.935,0.892,0.909,0.891,0.942,0.884,0.914,0.928,0.913,0.909,0.914,0.912,0.909,0.996,0.996,0.989,0.993,5.336,0.77,0.75,1.039,0.755,0.748,1.043,0.831,0.824,0.816,0.809,0.738,0.735,0.737,0.738,0.896,0.894,0.894,0.881,0.826,0.826,0.826,0.822,1.083,1.077,1.082,1.077,0.73,0.723,0.727,0.722,0.729,0.726,0.723,0.723,0.75,0.749,0.749,0.748,0.721,0.717,1.436,1.175,0.895,0.872,0.875,1.438,1.429,2.807,1.274,1.27,2.006,1.136,3.131,3.357,8.18,4.481,2.258,7.047,0.906,0.908,2.861,1.13,1.126,1.097,1.171,0.885,0.712,0.707,0.715,0.715,1.432,1.433,0.912,0.916,0.919,0.923,0.875,1.165,0.82,0.853,1.223,1.231,0.895,1.172,1.007,1.004,1.01,1.016,1.219,1.212,1.22,1.221,1.431,1.433,3.445,0.876,0.874,0.884,0.873,1.291,0.028,2.596,8.936,1.06,0.524,0.53,1.059,0.529,0.525,0.636,0.631,0.618,0.011,0.626,0.726,0.722,0.718,0.709,1.037,1.033,1.016,1.015,1.062,1.059,1.057,1.066,4.461,4.804,5.358,0.44,1.586,2.009,0.481,0.492,0.963,1.004,1.005,0.899,0.883,0.912,0.91,1.555,0.807,0.736,1.347,1.441,0.675,0.663,0.691,0.749,1.343,0.882,1.174,1.313,1.569,1.262,1.203,1.9,1.783,0.645,0.843,1.168,0.798,1.264,0.823,1.252,0.485,0.608,0.615,0.609,0.613,0.608,1.143,1.138,1.139,1.141,1.293,5.112,1.659,3.316,0.445,0.583,2.199,1.109,1.105,0.924,0.944,1.383,0.964,1.694,1.318,0.952,0.819,0.81,0.462,0.986,1.004,1.008,0.551,1.405,1.096,1.099,1.035,1.008,1.177,0.576,0.576,1.033,1.031,1.037,0.52,0.519,1.045,0.525,0.519,1.199,1.188,0.479,0.768,0.743,1.017,1.024,1.081,1.012,0.833,0.835,1.038,1.038,0.719,0.717,0.714,0.725,0.766,0.77,0.769,0.768,0.827,0.825,0.829,0.827,0.828,0.827,0.831,0.828,0.919,0.923,0.922,0.926,0.875,0.875,0.881,0.877,0.875,0.875,0.871,0.878,0.872,0.879,1.758,7.586,2.638,3.517,1.878,1.851,1.61,1.615,2.358,1.177,1.173,2.287,1.142,1.146,0.931,0.931,1.862,0.927,0.927,1.848,0.45,1.534,1.973,1.038,1.043,1.03,1.034,1.028,1.025,1.032,1.024,1.225,1.223,1.226,1.224,0.919,0.92,1.837,1.859,0.925,0.917,1.918,0.951,0.947,0.954,0.947,0.949,0.954,0.866,0.865,1.722,0.875,0.865,0.865,0.869,0.877,0.869,1.736,1.781,1.774,1.391,1.386,1.39,1.383,1.397,1.393,1.406,1.405,1.953,1.955,1.96,1.964,2.279,2.286,4.56,3.036,1.52,1.525,1.519,1.519,1.516,1.517,1.181,1.886,1.677,1.979,0.72,0.752,0.69,2.448,4.996,1.466,0.901,1.068,1.991,0.404,0.523,0.642,1.259,5.661,0.589,0.608,0.669,0.697,0.577,0.472,0.461,0.647,0.497,0.406,0.364,0.618,0.803,0.953,2.1,1.188,1.573,1.57,1.634,1.528,1.787,0.586,0.58,1.017,1.051,0.807,0.804,0.684,0.738,0.65,0.552,1.331,1.824,1.895,2.14,2.162,5.119,0.966,0.838,0.817,0.905,0.743,0.835,0.842,0.842,0.854,0.857,0.874,0.875,0.862,0.867,1.724,1.636,1.682,0.839,0.839,0.834,0.833,0.832,0.832,1.6,0.907,0.852,0.849,0.851,0.838,0.833,0.835,1.671,1.644,1.167,0.547,0.838,0.842,0.845,0.84,0.843,0.838,0.839,0.84,0.839,1.68,0.836,0.846,0.839,0.836,0.298,1.381,0.898,0.901,1.74,1.68,1.773,0.831,0.85,0.847,1.67,3.371,3.372,1.698,1.679,1.677,3.367,3.176,3.444,4.434,1.688,1.701,1.706,1.977,1.367,1.683,1.703,1.705,1.674,1.686,1.159,1.721,0.251,1.614,1.878,1.494,1.501,1.694,1.711,1.316,0.853,0.848,0.849,0.852,0.85,0.848,0.861,0.862,0.85,0.849,1.714,1.532,0.159,1.705,1.698,1.702,1.7,1.699,1.703,3.394,6.377,2.221,2.194,1.73,1.735,0.825,0.849,0.853,0.857,0.856,0.855,0.854,0.845,0.846,0.847,0.856,0.903,0.904,0.849,0.848,0.871,0.849,0.851,0.86,0.861,0.863,0.856,0.845,0.849,0.858,0.842,0.854,0.856,0.853,0.84,0.844,0.854,0.853,0.853,0.845,0.855,0.853,0.86,0.843,0.845,0.855,0.853,0.851,0.846,0.852,0.855,0.845,0.851,0.846,0.846,0.853,0.853,0.849,0.85,0.85,0.846,1.688,1.709,1.694,1.709,0.921,0.893,0.897,0.854,0.881,0.875,0.848,0.855,0.858,0.848,0.86,0.859,0.325,0.606,0.798,0.843,1.204,0.521,0.852,0.848,0.848,0.865,0.863,0.844,0.864,0.858,0.841,0.86,1.145,0.55,0.855,1.247,2.076,1.721,3.41,1.693,1.684,1.729,1.687,0.852,0.855,1.39,1.157,0.86,0.689,1.012,0.85,0.851,0.857,0.835,0.856,0.855,0.855,0.857,0.838,0.847,0.849,0.828,0.837,0.838,0.828,0.837,0.837,0.502,0.891,0.892,1.316,1.547,0.227,1.304,0.828,0.829,0.826,0.827,0.842,0.843,1.032,1.449,0.832,1.381,0.365,1.158,0.905,1.267,2.831,2.209,3.297,2.576,3.357,1.67,1.675,1.672,1.677,1.663,1.76,1.747,1.739,1.702,1.658,1.654,1.673,1.667,0.864,0.821,0.826,0.841,0.835,0.833,1.014,1.039,0.848,0.843,0.845,0.838,0.836,0.809,0.85,0.85,0.836,0.839,0.837,0.853,0.849,0.85,0.85,0.83,0.833,0.844,0.843,1.219,1.308,0.828,1.244,0.854,0.832,0.833,0.848,0.582,1.185,0.853,0.853,0.835,0.832,0.851,0.84,0.834,2.261,1.772,1.707,1.703,1.7,1.7,1.692,1.691,1.692,1.689,1.704,1.71,1.652,5.927,1.681,3.368,5.473,3.786,3.701,2.826,1.714,1.678,1.73,1.697,1.69,1.689,2.54,1.687,1.685,1.691,1.672,0.865,0.866,0.86,0.834,1.7,1.68,1.677,1.705,0.85,0.856,0.802,1.372,1.189,0.839,0.838,0.895,0.915,0.915,0.912,0.915,0.859,0.86,0.876,1.081,1.078,1.009,1.01,1.713,0.852,0.859,0.851,0.85,0.741,0.988,1.743,1.088,0.641,1.711,1.704,1.711,5.451,1.741,0.722,0.714,0.712,0.731,0.745,0.724,0.729,0.726,0.726,0.723,0.717,0.803,0.803,0.783,0.78,0.737,0.738,0.719,0.722,0.72,0.707,0.706,0.73,0.727,0.713,0.74,0.712,0.714,0.709,0.708,0.731,0.719,0.718,0.721,0.707,0.721,0.725,0.726,0.718,0.715,0.739,0.706,0.726,0.718,0.714,0.732,0.723,0.725,0.723,0.708,0.72,0.717,0.735,0.702,0.706,0.732,0.724,0.721,0.721,1.045,1.115,1.458,2.132,1.439,1.545,1.486,0.721,0.717,0.714,0.725,0.693,0.711,0.722,0.731,0.649,0.069,0.72,0.731,0.713,0.735,0.714,0.721,0.724,0.715,0.714,0.724,0.714,0.708,0.719,0.703,0.722,0.713,0.714,0.721,0.73,0.709,0.716,0.722,0.719,0.699,0.578,0.866,0.752,0.711,0.725,0.705,0.722,0.71,0.715,0.704,0.733,0.711,0.697,0.692,0.706,0.736,0.721,0.71,0.358,0.771,0.723,0.336,0.374,0.704,0.721,0.713,0.718,0.704,0.723,0.654,0.653,0.861,0.681,0.704,0.724,0.713,0.715,0.718,0.709,0.715,0.715,1.433,0.724,0.706,0.705,0.732,1.081,1.435,2.141,3.032,1.455,1.061,1.074,1.439,0.727,0.727,0.786,0.796,0.797,0.739,0.708,0.729,0.741,0.712,0.735,0.726,0.709,0.735,0.721,0.72,0.736,0.736,0.729,0.721,0.741,0.74,0.737,0.737,0.713,0.705,0.738,0.718,0.725,0.731,0.736,0.711,0.732,0.756,0.732,0.723,0.717,0.718,0.753,0.711,0.707,1.51,0.744,0.73,0.747,0.744,0.732,0.728,2.92,0.737,2.185,0.7,0.718,0.742,1.973,1.448,0.752,0.716,1.43,2.191,1.461,1.409,0.683,0.754,0.712,0.705,0.716,0.702,1.063,0.71,0.724,0.714,0.71,0.493,0.766,0.697,0.741,0.715,0.712,0.724,0.719,0.734,0.711,0.731,0.699,0.711,0.73,0.717,0.725,0.724,0.702,0.715,0.702,0.724,0.706,0.74,0.707,0.699,0.721,0.715,0.712,0.713,0.722,0.707,0.824,0.755,0.742,0.721,0.725,0.734,0.719,0.737,0.73,0.728,0.7,0.729,0.702,0.715,0.716,0.744,0.691,0.693,2.879,0.706,0.719,0.718,0.708,0.719,0.696,0.722,0.705,0.719,0.832,0.86,0.826,0.855,0.848,0.852,0.843,0.845,0.825,0.839,0.834,0.824,0.778,0.891,0.819,0.878,0.801,0.701,0.845,0.862,0.844,0.847,0.839,0.852,0.852,2.512,0.843,0.846,0.838,0.865,0.826,0.615,0.883,0.896,0.45,0.392,0.867,0.831,0.865,0.858,0.842,0.839,0.864,3.36,0.861,0.851,0.855,0.819,0.839,0.818,0.877,1.151,0.183,1.442,0.95,1.299,1.297,1.434,1.218,0.486,0.484,0.526,0.525,0.54,0.538,1.075,0.86,0.871,0.88,0.886,0.859,1.635,1.924,1.682,0.884,0.847,0.856,0.862,0.862,0.85,0.504,0.728,1.266,1.282,1.285,0.774,0.788,0.99,1.051,1.016,1.18,0.718,0.713,0.739,2.551,1.42,0.728,0.712,0.726,0.717,0.72,0.734,0.72,0.719,0.72,0.726,0.711,0.713,0.722,0.701,0.728,0.717,0.719,0.721,0.717,0.707,0.708,0.711,0.717,0.718,0.722,0.706,0.725,0.717,0.714,0.721,1.572,2.377,1.438,0.714,0.712,0.719,0.715,0.726,0.722,0.719,0.729,0.724,0.721,0.726,0.726,0.718,0.503,0.779,0.729,0.725,0.74,0.752,0.714,0.734,0.721,0.351,0.723,0.735,0.731,0.721,0.744,0.722,0.718,0.729,0.724,0.721,0.705,0.714,0.71,0.708,0.712,0.725,0.717,0.696,0.731,0.706,1.581,0.753,0.751,1.103,1.1,1.387,0.712,0.709,0.697,0.714,0.703,0.762,0.726,0.726,0.736,0.72,0.714,0.709,0.739,0.714,0.748,0.719,0.717,0.718,0.712,0.716,0.714,0.701,0.711,0.941,0.693,0.729,0.716,0.729,0.705,0.701,0.735,0.704,0.703,0.514,0.735,0.669,0.774,0.719,0.732,0.727,0.721,0.725,0.723,0.722,0.709,0.719,0.718,0.702,0.735,0.702,0.699,0.701,0.723,0.73,0.78,0.809,0.729,0.726,0.728,0.725,0.727,0.721,0.723,0.704,0.725,0.729,0.706,0.727,0.717,0.719,1.409,1.429,1.228,0.729,0.729,0.721,0.725,1.462,1.447,0.75,0.7,1.43,1.458,1.435,1.454,0.723,0.708,0.733,0.732,4.671,0.758,1.453,0.734,0.729,0.714,0.736,0.721,0.716,0.734,0.726,0.727,0.743,0.718,0.725,0.729,0.731,0.718,0.739,0.738,0.704,0.741,0.734,0.722,0.731,0.714,0.72,0.696,0.693,0.755,0.876,0.704,0.724,0.72,0.724,0.714,0.707,0.72,0.714,0.72,0.715,0.727,0.72,0.726,0.747,0.716,0.731,0.733,0.723,0.728,0.726,0.665,0.062,0.728,0.739,1.447,1.439,1.442,1.462,0.705,0.72,0.726,0.723,0.721,0.723,0.722,0.684,0.724,0.731,0.71,0.577,0.694,0.72,0.741,0.715,0.725,0.733,0.725,0.706,0.748,0.722,0.734,0.716,0.721,0.722,0.723,0.723,0.737,0.71,0.729,0.729,1.455,2.17,0.731,0.733,0.735,0.723,0.735,0.73,0.733,0.73,0.729,0.724,0.727,0.729,0.725,0.73,0.733,0.737,0.722,0.73,0.719,0.731,0.731,0.72,0.774,0.687,0.741,0.711,0.729,0.716,0.739,0.731,0.76,0.689,0.735,0.717,0.738,0.718,0.736,0.727,0.722,0.796,0.794,0.774,0.736,0.707,0.762,0.27,0.596,0.887,0.885,1.803,1.788,1.794,3.609,1.829,1.777,1.766,1.768,1.754,1.77,0.867,0.866,0.866,0.903,0.875,0.889,0.875,0.875,0.862,0.88,0.898,0.855,0.876,1.326,0.865,0.857,0.885,0.897,0.867,0.852,0.878,0.882,0.877,0.886,0.857,0.859,0.877,0.875,0.881,0.86,0.863,0.891,0.874,0.86,0.864,0.888,0.874,0.868,0.87,0.878,0.823,0.869,0.877,0.862,0.878,0.875,0.872,0.876,0.886,0.242,0.633,0.876,0.666,2.097,1.786,0.881,0.911,0.886,0.885,0.906,0.894,0.904,0.894,0.893,0.905,0.927,0.893,0.905,0.889,0.902,0.897,0.894,0.89,0.905,0.879,0.911,0.879,0.917,0.306,0.621,0.89,0.888,0.899,0.896,0.896,0.896,0.897,0.879,0.899,0.903,0.888,0.892,0.888,0.896,0.89,0.897,0.906,0.892,0.895,0.89,0.893,0.902,0.918,0.862,0.888,0.892,0.885,0.898,0.899,0.892,0.889,0.9,0.887,0.888,0.917,1.779,1.779,1.796,0.879,0.905,0.91,0.89,0.888,0.91,0.911,0.905,0.918,0.907,0.903,0.895,0.905,0.89,0.926,0.885,0.918,0.907,0.901,0.906,0.905,0.901,0.898,0.938,0.914,0.899,0.903,0.908,0.918,0.897,0.918,0.896,0.905,0.897,0.899,0.895,0.905,0.889,0.906,0.895,0.895,0.894,1.122,0.701,0.894,0.899,1.07,1.482,1.854,1.912,0.912,0.899,0.908,0.913,1.147,0.356,0.321,0.908,0.895,0.896,0.908,0.943,0.863,0.922,0.892,0.881,0.894,0.908,0.892,3.553,0.956,0.945,0.877,0.919,0.92,0.897,0.917,0.904,0.908,1.18,1.446,1.4,0.841,0.559,1.157,0.923,0.937,0.941,0.462,0.462,0.465,0.466,0.452,0.455,0.464,0.458,0.459,0.454,0.928,0.903,0.907,0.932,0.457,0.463,0.462,0.473,0.469,1.146,0.695,0.923,0.889,0.911,0.915,0.889,1.943,1.125,0.953,0.942,0.918,0.899,0.891,0.892,0.511,0.398,0.884,0.905,0.886,0.92,0.905,0.908,0.9,0.899,1.412,1.116,0.77,0.805,0.648,0.861,2.263,0.908,0.912,0.951,1.066,0.909,0.902,0.901,0.933,0.89,0.887,0.932,1.076,0.915,0.912,0.91,0.943,0.928,0.947,0.795,0.799,3.701,1.398,1.002,1.087,0.928,0.934,0.92,0.952,0.949,0.915,0.916,0.999,0.999,0.907,0.904,0.934,0.935,0.915,0.922,4.764,1.873,1.216,1.228,1.144,1.148,1.189,0.603,0.602,0.815,0.816,1.105,1.49,0.741,0.749,0.937,0.937,1.227,1.235,1.368,1.026,5.076,4.471,2.025,1.339,1.336,0.867,0.921,0.888,0.946,0.933,0.886,0.935,0.9,0.908,0.897,0.898,0.895,0.89,0.879,0.879,0.897,0.936,0.819,3.174,2.644,1.76,1.72,0.818,0.823,1.319,1.336,2.692,0.828,0.904,0.906,0.674,0.209,0.886,1.215,1.221,1.491,0.746,1.513,1.281,1.272,1.311,1.304,0.932,0.934,1.056,1.064,1.304,0.875,0.881,0.85,0.801,0.941,0.854,0.898,0.86,0.447,0.554,0.551,0.857,0.711,0.712,1.061,1.067,4.029,1.268,1.148,1.446,1.234,0.731,1.072,1.068,1.074,0.711,1.071,1.104,1.025,1.113,0.708,0.701,0.703,0.758,3.919,0.685,0.734,1.035,0.709,0.717,0.707,0.689,0.722,0.696,0.699,0.707,0.705,0.728,0.708,0.703,0.696,0.709,0.312,0.386,0.736,0.69,0.717,0.694,0.696,0.698,0.712,0.696,0.68,0.709,0.673,0.698,0.56,0.575,0.701,0.675,0.771,0.67,0.719,0.705,0.72,0.728,2.446,1.074,0.695,0.608,6.292,2.556,1.481,0.861,0.556,1.07,1.084,1.083,1.072,1.078,0.707,0.7,1.049,0.741,0.708,0.732,0.719,0.725,0.71,0.709,0.756,0.712,0.708,0.722,0.722,0.734,0.767,0.697,0.697,0.722,0.742,0.726,1.009,0.823,1.003,0.475,0.045,1.723,1.86,1.243,0.76,0.079,0.241,0.07,1.231,1.129,1.062,0.157,0.445,0.775,1.293,0.994,0.899,1.71,3.824,4.135,1.339,3.787,4.116,1.649,1.604,1.003,3.049,2.107,0.835,0.844,1.403,1.416,1.614,1.519,1.884,1.864,0.953,0.975,0.944,0.949,0.687,0.693,1.388,5.056,0.824,0.838,0.844,0.841,1.021,1.007,0.95,0.969,0.842,0.871,0.869,0.858,3.229,2.539,1.289,1.287,0.976,1.004,1.002,1.014,0.736,0.739,0.751,0.728,0.718,0.739,0.736,0.746,0.602,0.605,2.08,4.079,5.22,2.953,2.331,2.429,0.804,0.808,0.798,0.792,0.807,0.809,0.826,0.778,1.68,0.865,0.844,0.729,0.754,0.743,0.762,0.696,0.734,0.759,0.747,0.784,0.723,1.515,3.001,0.796,0.83,1.217,1.225,1.163,1.172,1.286,1.271,1.25,1.262,0.934,0.926,1.059,0.79,3.249,1.263,0.346,0.855,0.899,0.904,1.039,1.04,1.003,0.96,0.781,0.787,0.766,0.777,0.158,0.729,0.908,1.032,1.075,1.057,1.037,1,1.061,1.029,1.026,1.034,1.049,1.047,1.05,1.354,1.384,0.475,1.948,9.777,1.202,0.709,0.915,0.717,0.838,1.008,1.012,0.802,0.809,0.805,0.947,0.774,0.96,0.968,0.968,1.001,1.042,1.036,1.035,1.166,1.152,2.282,5.757,4.705,4.798,2.449,3.811,3.807,4.21,4.182,2.481,2.6,1.184,2.425,2.435,1.861,3.009,3.342,3.373,4.107,2.041,2.05,2.271,2.31,4.624,5.179,5.207,3.498,3.44,6.956,5.76,1.416,1.465,1.458,1.467,1.341,1.384,0.897,1.846,1.216,1.231,1.232,1.221,1.679,1.697,1.995,1.369,3.397,1.681,1.701,3.412,1.706,1.723,1.402,1.425,1.398,1.375,1.223,1.242,1.224,1.249,1.455,1.024,1.855,2.244,6.136,1.493,1.49,1.481,0.761,0.767,1.175,1.213,1.209,1.21,1.975,2.01,6.195,2.099,2.106,1.295,1.302,0.789,1.41,1.125,0.751,1.499,2.045,1.016,1.009,1.402,1.44,1.424,1.42,2.961,3.132,3.071,1.519,1.506,1.769,1.821,1.798,1.806,1.523,1.536,1.547,1.497,2.249,2.347,9.258,0.598,3.086,0.783,1.178,2.254,1.89,2.77,1.675,1.681,1.218,1.656,1.196,2.069,1.928,2.082,2.092,1.802,1.75,1.753,1.752,2.77,2.792,2.464,1.208,1.244,1.164,1.195,2.39,1.502,1.532,1.496,1.546,3.475,1.702,1.742,2.829,7.829,3.114,1.526,1.55,1.835,1.854,1.85,1.858,1.939,1.965,1.948,1.965,2.668,2.71,3.989,4.056,21.937,3.089,3.131,2.222,2.23,2.496,2.144,4.012,8.164,3.11,3.615,4.599,4.467,2.138,2.302,2.115,2.118,2.137,2.137,2.272,2.284,2.277,2.29,1.602,1.652,1.617,1.652,1.26,1.269,1.287,1.282,1.455,1.47,1.509,1.466,2.286,2.273,2.43,2.448,4.896,5.073,4.773,2.503,2.29,3.398,1.706,1.72,1.726,1.735,1.719,1.745,1.932,1.905,1.752,1.829,1.845,1.849,1.026,2.653,1.588,1.614,1.66,1.612,1.103,1.161,2.282,1.276,1.913,1.604,1.614,2.913,4.871,1.162,1.546,1.531,2.335,1.591,1.577,1.407,1.363,1.379,1.379,0.687,0.696,1.386,1.301,1.324,1.291,1.318,1.315,1.328,1.614,1.645,1.616,1.65,0.893,3.835,1.162,1.184,1.19,1.173,1.204,1.232,1.233,1.242,1.08,1.125,1.099,1.131,1.041,1.072,1.074,1.06,1.146,1.156,1.173,1.159,0.746,0.744,0.758,0.764,2.186,0.943,0.993,0.956,0.94,0.71,0.704,0.474,0.948,1.065,1.076,1.104,1.076,1.105,1.108,1.05,1.035,1.187,1.212,1.204,1.215,0.629,1.126,1.112,1.102,1.123,0.757,0.776,0.754,0.726,1.746,1.76,1.732,1.748,5.001,1.294,1.271,0.642,0.646,0.628,0.657,0.809,0.801,0.822,0.793,0.779,0.791,0.783,0.793,1.211,0.811,2.013,1.01,1.023,1.02,1.015,0.698,0.691,0.826,0.585,0.729,0.731,0.749,0.728,0.663,0.659,0.675,0.652,0.679,0.662,0.668,0.647,0.731,0.749,0.76,0.73,0.786,0.752,0.792,0.75,0.753,0.741,0.754,0.736,0.732,0.747,1.493,0.742,0.838,0.458,0.474,0.463,0.478,0.436,0.461,0.467,0.547,0.542,0.524,0.541,0.573,0.57,0.564,0.573,1.036,1.022,1.022,1.019,0.632,0.62,0.623,0.62,0.621,0.619,0.614,0.628,0.418,0.39,0.377,0.407,3.028,3.358,1.318,1.699,1.526,1.522,1.348,1.221,3.163,0.838,1.593,0.03,0.815,0.76,1.776,0.926,0.926,0.941,0.931,0.781,0.769,0.764,0.77,0.989,0.974,1.97,0.989,0.971,0.994,0.982,0.961,0.998,0.992,0.971,3.85,0.933,0.951,0.937,0.482,0.486,0.901,0.905,0.915,0.91,0.971,0.981,0.974,0.962,0.967,0.966,0.97,0.972,1.254,1.267,1.258,1.269,1.271,1.317,2.593,1.219,1.225,1.206,1.196,1.385,1.379,1.401,1.365,1.132,1.119,0.829,0.935,1.723,1.224,2.438,2.113,2.152,4.1,2.05,2.03,1.329,1.35,1.336,1.354,1.424,1.434,1.428,1.447,1.165,1.175,1.172,1.185,4.622,4.132,1.521,0.246,0.498,1.439,0.436,0.201,4.069,0.171,1.502,0.965,0.612,1.092,2.147,1.661,1.777,0.478,1.488,2.449,1.381,1.394,1.398,0.688,0.74,1.001,1.034,0.946,0.921,0.828,0.857,0.838,0.869,0.903,0.785,0.861,0.848,0.784,0.759,0.775,0.767,0.555,0.583,0.567,0.573,0.592,0.601,0.612,0.61,0.736,0.726,0.742,0.731,0.785,0.769,0.819,0.777,0.677,0.688,0.689,0.667,2.693,0.723,0.725,1.437,0.731,0.718,0.747,0.723,0.85,0.878,0.892,0.88,0.926,0.887,0.907,0.908,0.719,0.725,0.73,0.73,0.717,0.715,0.719,0.742,0.964,1.002,0.992,0.991,0.869,0.884,0.881,0.889,0.764,0.782,0.786,0.782,0.6,0.609,0.611,0.612,1.221,1.242,0.724,0.726,0.72,0.732,0.713,0.714,0.706,0.72,4.592,0.802,0.83,0.883,0.744,0.968,0.911,0.993,0.98,0.889,0.747,0.875,0.684,0.914,0.813,0.746,0.728,0.818,0.774,0.776,0.763,0.817,0.8,0.943,0.902,0.552,0.543,0.936,0.934,0.511,0.478,0.514,0.497,0.534,0.514,0.525,0.525,0.488,0.486,0.494,0.476,0.442,0.455,0.456,0.444,0.472,0.471,0.471,0.459,2.078,1.036,0.769,0.68,0.872,0.648,0.633,0.441,0.437,0.446,0.424,0.784,0.382,0.392,0.386,0.393,0.381,0.355,0.545,0.513,0.547,0.505,0.37,0.381,0.371,0.368,0.475,0.471,0.507,0.488,0.459,0.476,0.473,0.478,1.902,1.037,0.533,0.51,1.069,1.071,0.734,0.738,0.75,0.748,0.374,0.355,0.379,0.372,0.771,0.386,0.385,0.638,0.412,0.23,1.232,0.788,0.786,0.394,0.389,0.397,0.386,0.357,0.368,0.368,0.374,0.419,0.427,0.415,0.431,0.305,0.304,0.306,0.308,0.599,0.593,0.362,0.482,0.651,1.406,1.083,1.26,1.06,1.011,0.895,0.75,1.357,3.449,1.862,0.827,0.83,0.836,0.831,1.319,1.122,1.091,1.108,1.823,0.744,0.73,0.952,1.238,1.26,0.265,1.033,0.641,0.686,1.12,1.202,1.208,1.017,0.274,0.702,0.785,0.788,0.796,0.821,0.286,0.902,1.226,0.619,0.619,0.602,0.574,2.384,1.607,1.597,1.442,1.464,1.57,1.586,2.254,2.256,2.756,1.38,1.408,1.716,0.85,0.873,0.731,0.726,0.725,0.747,1.085,1.067,1.325,0.654,0.674,0.573,0.588,0.609,0.586,0.806,0.102,1.864,3.141,0.089,2.362,2.536,2.206,1.678,1.231,4.457,0.656,0.677,0.669,0.678,1.098,0.561,0.565,0.519,0.542,0.536,0.561,0.542,0.559,0.547,0.554,0.42,0.433,0.422,0.456,0.571,0.571,0.717,0.712,0.821,0.848,0.608,0.611,0.61,0.618,0.639,0.636,0.638,0.616,0.526,0.529,0.539,0.537,0.408,0.292,0.727,1.431,1.421,1.426,0.53,0.534,0.535,0.544,0.789,0.8,0.797,0.793,0.909,0.46,0.457,0.615,0.624,0.633,0.626,0.521,0.532,0.525,0.535,0.619,0.66,0.653,0.678,0.527,0.545,0.55,0.539,0.569,0.582,0.581,0.575,0.469,0.47,0.474,0.473,0.604,0.617,0.627,0.635,0.442,0.443,0.889,0.889,0.884,0.53,0.532,1.023,2.116,2.331,1.344,5.821,1.232,7.716,0.965,0.954,0.899,0.067,0.986,2.047,2.104,2.063,1.933,1.997,1.924,1.984,1.886,1.554,1.746,3.616,1.945,2.034,2.959,2.498,2.283,2.739,2.769,2.255,3.442,2.807,4.062,2.028,3.046,3.1,5.485,2.718,1.37,1.385,1.309,1.321,1.571,1.594,1.354,1.375,2.956,1.616,1.643,1.257,1.285,1.28,1.281,1.22,1.234,1.298,1.167,1.184,1.169,1.072,1.073,1.421,1.375,1.395,0.702,0.714,1.206,0.74,1.877,1.926,2.278,4.284,2.521,1.565,2.164,1.315,2.015,1.809,1.342,1.046,0.589,0.503,0.639,1.775,1.459,1.629,1.492,0.92,0.938,1.099,2.306,2.088,1.845,0.961,0.924,1.444,1.444,3.782,1.884,1.907,1.206,1.219,1.212,1.225,0.965,0.965,0.964,0.993,1.016,1.053,1.024,1.039,1.571,1.617,1.452,1.265,1.35,1.377,0.953,0.997,0.988,0.994,1.86,1.888,1.777,1.39,0.947,0.475,4.192,6.749,5.073,3.908,2.6,1.569,1.532,1.728,1.363,1.233,1.204,1.228,1.221,0.784,0.777,0.816,0.789,1.092,1.092,1.116,1.105,0.766,0.772,0.786,0.773,0.922,0.92,0.922,0.904,0.878,0.9,0.959,0.871,1.797,1.804,1.963,1.961,4.214,3.236,3.206,11.592,11.597,4.205,3.147,1.584,1.579,1.388,1.385,1.677,1.092,0.859,0.865,0.858,0.867,1.224,1.241,1.069,1.196,1.592,0.804,0.8,0.903,0.902,0.894,0.901,1.118,1.116,1.117,1.134,1.183,1.203,1.3,1.142,1.439,1.439,1.512,1.152,1.176,1.173,1.188,0.97,0.956,0.979,0.965,0.979,0.85,0.955,0.91,1.396,1.411,1.446,1.421,0.771,0.795,0.795,0.791,0.798,0.663,1.49,1.486,1.467,6.333,2.988,2.969,1.617,1.628,1.817,1.439,1.021,1.044,2.081,1.033,1.018,1.043,1.062,0.928,0.942,0.947,0.93,0.92,0.946,0.936,0.93,1.006,1.067,1.04,1.042,0.842,0.881,0.851,0.91,1.373,1.378,1.376,1.389,1.283,1.326,1.313,1.323,1.293,1.325,1.094,1.112,1.13,1.104,1.151,1.14,1.163,1.143,1.387,1.366,0.658,0.677,0.675,0.69,0.729,0.727,0.733,0.697,0.919,0.906,0.943,0.922,0.941,0.753,2.704,4.406,0.27,13.662,4.707,7.218,4.166,4.104,9.988,1.051,1.421,0.73,0.722,1.511,1.494,1.509,1.531,1.387,1.424,1.393,1.41,1.024,1.02,1.077,1.037,1.808,1.732,0.091,1.199,1.228,1.247,1.22,0.884,0.922,0.986,0.863,0.947,0.934,0.901,0.915,1.162,1.199,1.253,1.17,1.435,0.681,0.681,1.376,1.363,1.037,0.99,0.992,0.946,0.747,0.714,0.719,0.706,0.648,0.619,0.639,0.624,0.728,0.67,1.369,0.792,0.729,0.763,0.706,0.709,0.704,1.488,0.816,0.813,0.814,0.808,0.551,0.543,1.102,1.116,1.078,1.315,3.085,1.077,1.099,0.546,0.546,0.53,0.535,0.661,0.631,0.659,0.637,0.688,0.647,0.837,0.84,0.691,0.698,0.76,0.627,0.454,0.473,0.488,0.459,0.764,0.757,0.751,0.75,0.702,0.659,0.699,0.671,0.719,0.671,0.711,0.686,0.735,0.702,0.715,0.714,0.68,0.67,0.699,0.666,1.005,1.03,2.003,2.304,2.311,0.55,0.534,0.562,0.551,0.564,0.542,0.502,0.504,0.965,0.988,0.956,0.925,0.815,0.809,0.849,0.805,0.803,0.807,0.807,0.794,2.418,2.437,2.412,2.407,1.759,1.658,1.016,1.305,0.687,0.87,1.286,1.302,1.307,1.231,0.987,1.028,0.999,1.008,1.179,1.237,1.3,1.157,0.81,0.79,0.81,0.846,0.991,1.05,1.885,1.31,1.367,2.654,5.832,1.448,1.472,1.514,1.475,1.01,1.065,1.053,1.063,1.132,1.174,1.144,1.223,1.334,1.242,1.305,1.272,2.047,2.054,1.926,0.983,0.95,1.149,1.168,1.199,1.19,1.014,0.997,0.997,0.947,2.003,1.963,1.046,1.027,1.212,1.175,0.942,0.987,2.034,1.818,1.816,1.606,1.637,3.188,2.435,0.258,3.395,2.063,1.959,1.698,1.475,1.744,1.451,0.914,1.26,1.488,1.042,1.217,1.355,1.104,1.27,1.462,1.263,1.075,1.401,1.711,1.507,1.43,1.808,1.362,1.876,0.105,0.543,2.495,1.773,0.342,1.023,0.876,0.829,0.886,0.869,0.974,0.98,1.016,0.98,0.937,0.891,1.595,1.608,0.97,0.976,0.991,0.907,1.855,1.837,0.19,0.555,0.736,1.473,1.797,1.798,1.829,0.897,0.903,1.297,1.336,1.325,1.329,1.572,1.541,0.811,0.751,0.763,0.707,0.824,0.774,0.841,0.785,1.408,1.418,1.37,1.435,1.266,0.669,0.644,0.797,0.89,0.877,0.889,0.871,0.696,0.705,0.698,0.69,0.623,0.596,1.262,0.805,0.821,1.681,3.242,1.416,0.246,3.318,0.84,0.649,0.664,0.485,0.487,0.517,0.47,1.747,1.646,1.184,1.915,2.045,1.874,4.233,1.152,1.103,0.8,1.341,1.315,1.365,1.558,1.105,1.789,3.432,2.943,2.516,2.37,1.23,1.361,1.281,1.635,1.717,1.61,1.416,3.224,3.343,2.328,1.886,1.625,0.93,1.498,2.233,1.542,1.695,2.521,3.192,2.924,2.679,2.639,2.187,2.764,2.146,2.312,2.787,1.973,2.258,2.191,2.288,2.142,3.718,2.985,4.763,2.285,4.436,3.829,3.709,3.364,2.648,4.721,1.896,3.471,0.716,2.302,3.509,3.808,6.231,2.925,1.768,1.807,2.016,1.413,0.884,2.122,1.459,1.381,1.348,1.547,2.139,2.326,2.059,1.152,2.088,0.733,3.087,1.935,2.065,2.338,3.134,2.952,2.375,0.215,3.044,1.393,2.753,1.181,1.989,1.111,0.916,1.874,1.949,2.503,1.039,4.462,1.615,1.783,1.749,1.84,1.839,2.234,3.573,5.054,1.113,1.96,1.187,1.461,2.33,1.847,2.19,2.699,2.48,1.741,3.602,5.364,6.613,0.631,2.375,3.294,3.285,3.283,3.285,3.283,3.424,1.895,1.633,2.836,3.076,4.058,4.775,1.607,3.871,4.941,1.73,0.014,6.13,4.092,2.403,2.74,0.949,0.621,1.996,0.804,1.099,2.221,3.675,2.961,0.028,4.532,6.006,3.435,3.871,1.562,3.034,1.936,2.252,3.42,3.509,2.521,4.277,6.065,6.215,6.042,4.026,3.897,1.743,5.746,6.852,4.519,5.446,3.718,5.229,4.681,1.72,3.321,3.522,3.584,3.535,2.98,3.641,3.085,2.619,1.412,1.772,2.597,0.882,3.387,3.742,2.013,2.083,3.084,2.773,5.271,2.732,2.695,2.791,2.706,2.724,1.339,1.412,2.334,2.722,2.855,2.504,2.128,1.907,1.785,1.933,1.796,1.79,2.934,3.226,1.461,1.1,1.457,1.914,2.154,1.88,2.37,2.598,2.134,2.383,1.371,1.63,2.598,0.314,0.984,1.429,1.749,1.453,2.364,1.323,1.391,1.607,1.083,1.981,1.426,1.202,2.293,4.534,1.869,1.606,0.591,1.31,1.797,1.834,2.558,0.59,2.053,2.358,0.473,0.713,2.31,1.453,3.29,6.16,2.094,1.95,1.655,1.635,0.884,2.089,2.016,1.735,1.75,3.439,2.485,3.259,2.282,2.804,2.854,1.249,1.299,2.763,1.497,1.711,2.107,1.817,1.128,2.524,2.775,2.391,2.646,2.476,2.385,2.542,2.271,2.293,3.078,2.693,1.706,1.018,1.316,1.408,1.874,1.924,1.587,2.493,1.614,1.66,2.042,1.639,2.139,2.037,1.668,1.91,0.962,2.456,2.076,2.066,1.24,2.124,1.799,3.855,1.368,1.752,1.429,1.362,1.395,1.995,2.265,2.013,1.758,1.898,2.176,2.072,2.498,2.013,2.066,2.824,3.035,1.844,1.643,2.079,1.575,2.421,1.36,1.27,2.988,2.861,1.526,1.508,1.139,0.976,0.459,1.145,2,1.926,3.495,3.475,1.503,2.876,2.427,1.398,1.929,1.873,1.905,2.204,2.185,2.032,1.854,1.396,2.351,1.93,1.937,1.929,2.531,0.671,1.524,2.738,2.479,3.596,2.629,1.627,2.929,3.55,2.563,3.842,3.419,4.292,0.935,1.209,1.918,2.697,1.914,2.669,2.096,0.631,1.967,6.077,2.325,1.918,6.535,5.632,6.235,1.136,4.017,7.099,3.606,5.251,5.42,7.045,4.612,6.197,1.906,3.963,3.506,3.566,3.571,4.013,4.423,3.981,3.264,2.928,3.467,3.428,5.557,3.409,2.447,0.209,9.065,2.346,2.445,3.552,4.729,2.017,3.68,3.44,3.221,3.663,3.565,4.925,9.255,4.886,5.281,3.793,4.198,4.396,5.59,2.375,6.346,11.346,8.518,11.735,0.666,6.448,5.307,2.207,3.983,0.344,3.386,4.089,4.915,5.821,8.645,6.214,6.064,5.833,3.374,3.311,3.622,2.829,3.601,3.56,3.497,3.346,3.331,3.391,3.131,3.056,3.36,3.4,2.799,3.301,3.803,3.937,4.418,2.011,2.626,0.176,6.49,1.849,2.158,3.358,2.105,2.139,1.784,2.379,2.736,2.81,3.293,3.352,2.347,3.596,2.844,0.68,4.923,5.517,2.225,3.635,4.3,6.382,3.479,4.61,4.015,5.695,2.667,2.61,2.253,1.513,2.009,1.885,2.73,2.937,2.37,3.597,2.674,2.175,2.293,2.126,2.405,1.729,2.08,2.578,2.309,2.275,2.604,2.304,2.177,2.804,2.432,2.711,2.455,2.31,4.117,4.062,3.692,3.46,5.283,3.486,10.995,6.544,4.121,4.356,4.557,3.137,3.236,2.955,5.159,4.958,4.667,5.344,5.714,4.968,4.89,4.499,4.707,3.062,2.784,0.932,1.223,1.986,2.296,2.981,2.95,2.44,2.302,4.423,4.254,2.306,3.355,3.106,1.086,3.301,4.589,4.88,6.111,6.82,4.796,3.625,3.613,2.435,1.924,3.672,3.946,2.967,2.942,4.604,2.707,3.061,2.941,3.64,1.512,2.898,3.769,4.115,7.696,4.102,4.124,6.963,7.037,3.408,3.373,3.33,1.684,1.733,2.503,2.595,2.678,3.203,1.709,3.136,2.103,0.759,2.835,3.678,0.611,2.988,0.252,3.205,2.054,2.179,4.409,3.143,3.173,3.445,5.296,5.024,3.725,3.898,3.488,1.801,5.096,3.751,3.878,3.162,3.05,3.028,2.23,2.666,0.796,0.399,1.85,2.727,3.771,1.999,1.966,3.467,0.199,4.857,5.819,0.867,5.308,4.861,4.966,4.156,4.011,4.192,3.135,3.294,2.369,2.008,3.499,3.317,5.32,2.674,1.899,4.843,4.099,6.536,6.643,5.598,3.492,6.518,3.242,2.789,2.613,3.088,3.029,2.902,4.252,2.799,2.291,1.667,1.899,0.927,1.648,0.525,2.049,4.691,2.492,4.824,0.64,3.047,3.961,0.565,2.442,3.774,2.7,2.986,4.455,4.634,1.766,2.278,0.757,2.36,6.36,4.409,0.176,1.801,0.211,3.573,0.008,6.769,0.359,3.24,0.852,2.393,3.315,3.212,2.867,3.435,2.159,4.565,2.855,2.188,2.218,1.838,2.001,1.107,2.015,3.637,3.146,2.426,2.53,4.815,2.058,1.925,1.77,2.043,1.261,1.456,2.239,1.625,1.886,2.199,2.367,1.725,2.118,3.041,3.767,4.344,3.067,2.307,1.466,1.387,1.63,2.889,2.623,2.207,1.769,1.855,3.836,1.453,0.574,0.754,0.273,2.854,0.277,0.176,0.975,1.559,3.051,5.279,0.537,0.318,3.304,1.551,0.299,1.404,1.347,1.409,1.383,1.392,1.333,1.769,1.27,3.432,2.462,2.05,2.228,2.068,1.997,1.881,2.637,2.585,1.796,1.63,1.298,1.786,1.452,2.018,0.007,0.775,1.41,1.296,1.938,2.236,0.883,2.195,2.821,4.419,2.72,1.987,2.38,3.204,2.112,2.444,1.735,2.032,1.803,1.693,1.163,1.512,0.339,0.993,1.441,1.533,1.904,1.59,0.176,1.956,1.984,2.143,1.411,1.84,2.705,2.329,0.027,2.18,2.166,3.177,2.242,4.081,3.058,2.235,0.34,7.051,4.876,6.432,3.859,2.71,2.471,2.808,17.905,8.698,10.912,0.838,3.297,2.601,3.329,0.805,2.936,7.399,6.862,1.557,2.399,6.147,3.024,4.162,3.805,2.689,3.112,3.431,4.158,2.325,2.333,4.625,3.161,3.473,7.73,4.247,3.632,9.786,10.107,9.943,10.026,24.563,19.761,23.981,19.722,9.827,1.754,2.514,0.51,3.838,5.97,5.988,3.375,2.16,2.147,3.883,3.266,2.944,0.347,2.016,1.225,2.143,2.854,2.738,5.316,8.83,7.039,2.237,2.096,1.329,1.403,1.002,1.002,1.27,0.941,0.939,0.828,0.911,1.213,0.436,3.001,1.229,1.297,1.24,1.612,2.074,1.001,1.464,0.798,1.051,0.917,1.095,0.69,0.662,0.755,0.555,0.645,0.627,0.722,0.628,0.694,0.613,0.741,0.623,0.71,0.68,0.651,0.676,0.632,0.702,0.86,1.114,0.869,1.164,0.869,1.153,1.483,1.834,1.998,1.296,0.997,1.391,1.171,0.949,2.79,3.732,3.733,5.243,4.595,7.807,3.388,6.031,0.691,0.156,5.812,6.243,8.545,4.962,8.347,4.471,1.173,6.666,6.633,10.518,5.219,7.374,3.369,0.721,0.805,0.285,7.199,6.594,4.642,1.871,6.175,6.623,1.178,6.686,0.089,4.34,5.786,4.984,10.274,6.008,8.866,2.647,6.407,4.852,6.056,6.445,6.776,6.023,6.21,4.738,2.199,4.79,5.583,5.18,4.663,7.716,6.91,6.091,4.754,4.858,5.177,1.01,5.249,2.96,1.451,0.029,2.137,3.492,2.89,0.029,0.556,2.655,4.516,5.105,1.178,0.029,2.701,6.299,3.47,4.563,1.967,8.327,1.632,0.033,0.781,3.754,3.537,1.611,4.672,10.413,6.137,4.118,5.258,4.401,3.626,0.721,6.123,3.932,3.762,4.755,4.539,5.881,4.766,5.28,4.863,5.044,8.727,7.149,3.853,8.949,4.593,2.384,12.668,1.366,4.69,6.027,6.129,6.026,6.666,0.529,6.576,3.478,4.701,5.79,4.966,4.417,4.899,3.351,2.066,1.99,4.169,3.71,3.688,4.053,4.271,4.753,5.283,5.356,5.83,5.288,4.885,3.971,2.667,0.568,6.46,5.893,4.038,3.159,1.088,6.661,6.633,8.06,6.955,6.197,0.861,4.989,4.046,5.359,5.401,10.706,4.618,1.211,5.947,3.666,8.543,5.242,2.16,8.374,8.168,5.196,5.52,0.992,2.316,3.211,2.03,1.644,2.162,1.359,4.01,1.385,8.192,3.743,3.154,0.371,4.638,4.504,5.162,5.065,4.673,4.859,3.568,7.64,7.982,6.392,5.936,0.342,8.123,1.15,7.917,6.846,4.726,0.984,4.703,5.496,5.968,6.986,7.391,6.301,5.951,1.277,0.824,3.303,7.706,5.417,3.719,5.81,1.206,2.208,1.076,2.515,6.472,3.817,0.662,0.75,0.771,5.635,5.947,3.796,3.088,0.848,0.9,2.82,6.42,0.271,9.182,8.594,10.056,5.381,11.361,5.523,6.329,8.856,8.106,10.909,0.861,5.894,8.946,7.576,8.086,14.649,7.069,3.807,4.077,0.773,5.36,6.078,5.984,5.425,3.046,3.031,5.564,3.121,3.107,5.635,5.119,5.688,5.721,4.291,2.334,5.773,2.583,2.138,1.846,1.788,2.073,4.146,8.735,3.33,2.381,1.91,1.676,1.589,2.787,1.667,5.821,1.873,4.134,4.899,3.891,4.377,8.961,4.268,2.277,0.711,1.373,3.534,6.005,5.476,11.243,8.805,7.191,1.917,4.952,1.973,4.143,0.74,2.419,4.12,0.412,0.514,1.836,1.456,3.724,2.016,2.388,2.431,2.535,2.585,3.148,1.5,3.47,5.315,2.831,1.439,6.846,4.131,55.535,8.689,11.155,4.099,3.98,6.392,3.653,4.159,10.172,14.824,3.389,11.491,9.016,3.423,4.341,1.266,1.583,0.78,2.699,2.779,1.608,3.262,0.331,2.257,2.143,0.107,2.813,0.081,2.056,1.125,2.956,1.615,4.247,1.852,3.8,7.199,8.847,5.012,9.9,5.502,1.333,3.559,1.557,0.765,4.357,1.326,0.955,4.755,1.656,1.309,2.826,0.378,0.845,0.75,0.263,0.783,1.751,1.335,1.55,6.493,4.423,0.016,3.606,7.024,3,8.199,3.83,3.503,0.549,0.359,0.37,0.721,0.757,10.832,9.176,21.016,2.217,9.917,7.927,2.789,2.69,3.919,1.432,1.072,3.259,2.578,1.219,1.19,2.08,5.644,8.777,1.624,2.446,1.571,1.682,0.033,1.284,1.203,2.511,3.115,2.691,3.166,3.038,3.237,1.831,3.242,3.624,4.223,2.31,3.287,6.532,6.353,3.247,0.774,1.16,1.869,0.986,3.789,5.481,2.165,2.016,0.296,2.323,1.584,2.544,1.304,1.177,1.978,1.242,1.383,2.039,2.206,1.483,1.56,2.006,1.177,1.567,1.336,0.779,4.942,0.532,38.515,9.702,15.504,8.926,5.393,6.323,6.323,9.3,9.272,6.444,1.723,2.234,3.382,2.411,3.529,3.565,3.616,5.144,4.961,5.306,16.577,44.651,8.004,8.677,4.41,2.52,2.34,1.26,3.018,2.277,1.147,1.034,1.167,1.815,2.232,1.432,1.893,0.766,1.29,0.994,2.749,2.783,8.764,4.407,2.916,1.534,1.99,2.526,2.157,3.978,2.885,1.692,0.395,0.371,3.375,2.903,2.984,3.216,3.248,4.098,1.391,1.922,0.968,4.255,3.365,2.898,3.282,0.477,4.124,6.3,5.245,2.165,0.838,6.433,0.832,4.363,3.226,6.027,5.715,7.249,6.686,2.354,2.069,0.176,2.321,2.438,1.172,3.382,3.69,4.988,0.834,5.18,4.263,3.341,3.851,1.17,3.165,2.031,5.377,3.189,5.725,2.908,2.019,1.014,1.122,1.83,2.054,2.593,1.608,1.542,2.829,0.969,0.814,2.564,1.838,1.963,2.081,3.004,1.774,1.718,1.536,2.285,1.356,0.672,0.995,0.867,2.024,2.253,2.842,1.673,1.738,1.308,2.312,2.428,1.244,0.979,1.683,0.949,0.922,1.555,0.801,1.291,4.593,2.2,3.665,0.443,0.894,2.4,3.295,1.771,1.599,0.948,0.575,1.935,3.607,4.469,2.234,8.54,0.645,0.771,0.172,1.892,1.134,1.345,1.317,1.17,1.207,0.869,2.607,1.986,3.229,2.839,2.801,2.429,7.939,1.871,1.259,6.24,1.986,0.744,2.388,5.01,4.249,3.342,1.709,2.242,2.762,3.787,2.118,1.727,2.198,0.802,2.798,2.589,2.888,3.343,2.57,2.146,0.39,0.47,0.71,1.341,2.817,4.239,4.499,3.714,2.504,3.181,2.578,2.971,11.907,6.517,2.515,2.632,2.844,2.315,2.052,2.289,4.446,3.821,3.302,2.588,6.008,1.742,3.875,1.096,1.105,0.998,1.867,2.408,2.592,2.833,2.796,2.445,0.504,1.783,0.164,2.104,7.467,0.811,1.321,2.892,1.55,1.264,1.226,0.694,0.699,1.346,2.635,3.119,3.681,1.102,1.164,2.195,2.531,0.512,1.015,2.809,4.171,4.477,2.484,1.782,1.58,1.322,1.469,0.186,1.334,1.859,1.28,0.758,0.847,1.393,0.222,0.943,6.273,4.326,1.238,1.04,0.88,0.868,0.8,1.036,1.098,0.836,0.823,1.233,1.09,0.923,0.999,2.706,1.231,1.474,1.135,0.832,0.79,0.768,1.262,2.089,1.071,0.77,0.709,0.734,0.953,1.332,0.791,0.776,0.815,0.804,0.536,0.464,0.766,0.719,1.434,1.284,1.266,3.395,1.099,0.842,0.777,0.741,1.008,0.976,1.103,1.192,1.248,1.356,0.725,0.739,0.41,0.602,1.202,1.227,1.204,1.351,1.257,1.96,1.99,1.17,1.164,4.679,1.206,1.179,1.003,1.12,1.158,1.086,1.004,0.826,0.766,1.268,0.702,0.353,1.048,0.954,2.014,1.878,1.224,0.793,1.092,1.092,0.779,1.756,0.996,1.29,1.233,1.384,1.723,1.061,5.14,1.755,1.187,1.158,1.092,1.419,1.373,0.073,1.997,1.538,0.503,2.633,1.426,2.141,2.42,0.684,2.109,1.439,0.985,0.694,0.597,0.653,1.333,0.812,1.078,1.367,1.557,2.766,1.667,1.199,0.48,1.506,1.203,0.408,3.723,1.984,0.266,0.35,2.133,3.399,1.924,3.739,0.497,1.705,1.325,1.073,1.569,3.068,1.842,2.135,1.171,2.052,1.721,1.945,1.514,1.773,1.683,1.572,2.221,2.212,0.615,0.447,0.658,0.703,0.414,0.332,0.981,1.725,1.654,0.951,0.981,1.16,0.635,0.467,0.846,1.71,2.057,1.215,1.55,0.299,3.015,4.229,3.055,7.66,4.242,4.739,2.191,3.219,1.994,1.182,0.58,1.011,1.001,2.421,2.74,1.191,1.585,1.644,2.139,1.392,1.196,0.72,0.289,0.268,2.242,1.697,2.481,1.531,0.877,0.704,0.185,1.215,1.928,2.525,1.441,1.377,2.193,0.354,0.494,3.139,1.254,1.213,1.193,1.477,1.383,1.17,1.126,3.069,0.735,2.927,0.538,1.229,1.206,0.751,1.27,0.492,0.312,0.503,0.359,0.355,0.276,0.652,0.315,0.324,0.56,0.531,0.23,0.522,0.485,0.876,0.601,1.153,3.651,2.538,1.047,1.825,2.309,2.844,3.087,1.137,1.051,0.915,0.868,0.903,0.684,1.042,0.91,0.762,0.928,0.871,0.579,0.839,1.012,0.85,0.947,0.517,0.832,1.426,0.356,0.478,0.558,0.398,0.504,2.124,0.322,0.388,0.385,0.511,0.386,1.067,1.963,1.718,2.85,2.206,2.096,2.24,1.165,0.77,0.736,0.949,0.953,0.903,0.726,0.8,2.49,1.174,0.962,1.187,0.753,0.728,1.366,0.764,0.612,0.759,1.11,0.726,0.592,0.573,0.524,0.397,0.497,0.332,0.498,0.665,0.577,0.535,0.641,0.485,0.466,0.627,0.356,0.698,0.473,0.571,0.79,0.78,2.736,1.272,0.668,0.953,1.093,0.599,0.53,0.506,0.669,0.783,0.581,0.295,0.826,1.156,2.027,2.188,2.218,1.812,1.801,1.105,2.124,2.791,1.877,1.421,1.779,1.102,1.349,1.348,1.321,0.998,0.573,0.625,0.711,0.57,0.616,0.508,1.185,0.759,0.418,1.124,0.628,0.703,0.985,1.199,0.766,0.825,0.674,0.623,0.171,0.226,0.262,0.532,0.48,0.72,0.505,0.664,0.44,0.644,0.598,0.779,0.875,0.808,2.94,0.07,1.427,1.268,0.978,0.884,1.212,1.278,0.782,0.846,1.194,0.961,1.359,0.896,1.598,1.374,0.423,1.651,0.913,1.149,0.755,0.807,0.653,0.67,0.779,0.655,0.715,0.032,0.74,0.953,0.72,0.762,0.798,0.976,0.053,1.152,1.242,1.208,1.163,1.189,0.62,0.053,0.521,1.252,1.68,1.284,0.645,0.477,1.078,1.131,0.996,0.662,0.6,0.798,0.802,0.8,0.057,0.573,0.552,0.581,0.544,0.578,0.574,0.648,0.932,0.34,0.029,0.346,0.733,0.754,0.714,3.656,1.605,1.717,1.053,1.35,1.482,1.581,1.905,2.488,2.744,0.328,2.717,1.969,2.363,2.193,1.182,2.555,2.77,1.559,0.949,2.49,0.484,1.597,3.106,3.178,3.218,3.341,2.487,3.914,1.427,8.245,11.932,1.664,6.428,5.991,4.397,2.377,1.736,0.319,0.929,1.217,1.412,1.411,1.484,1.437,1.376,1.418,0.124,2.099,1.441,1.45,2.444,2.323,2.006,2.011,1.068,2.74,2.184,2.127,1.947,1.427,1.196,1.814,1.338,2.482,4.615,2.825,2.416,0.285,1.978,1.416,2.119,2.094,2.975,1.824,1.829,2.536,2.299,1.988,2.2,2.183,1.996,2.25,1.958,7.71,0.822,2.325,3.015,1.419,1.779,0.914,1.929,3.182,2.192,2.026,2.57,2.815,1.974,1.842,0.477,2.123,1.141,2.489,2.899,2.413,1.899,2.177,1.801,2.031,2.275,1.165,2.384,2.74,5.111,1.537,1.291,1.572,1.102,1.347,1.155,1.406,0.866,1.134,1.057,1.681,0.788,1.037,1.391,1.487,1.076,0.796,1.074,2.371,2.911,1.548,2.224,0.487,1.431,1.521,1.976,3.625,1.492,2.255,1.535,1.435,1.895,1.022,1.047,1.473,4.768,2.347,2.176,2.3,2.259,5.337,1.276,2.063,1.6,1.74,1.27,1.889,2.408,0.483,1.922,2.167,1.506,1.718,1.649,1.427,0.702,1.482,0.323,1.514,1.799,1.552,1.908,1.938,1.207,1.199,1.537,1.801,0.883,0.914,0.935,1.035,0.927,0.9,1.04,1.129,1.207,1.342,1.542,1.658,3.928,3.076,1.678,5.104,3.153,2.611,1.26,1.002,1.824,2.323,1.884,2.142,1.771,1.456,1.175,2.491,2.553,1.872,1.896,2.25,3.051,2.595,2.434,1.848,1.689,2.345,2.463,0.549,0.908,3.4,2.795,3.127,1.534,1.579,1.528,1.601,1.594,1.04,0.973,1.247,1.208,1.746,0.663,1.301,2.076,2.536,2.63,5.596,2.96,3.59,1.748,1.85,2.006,1.711,1.711,3.204,2.774,0.4,1.902,1.198,1.217,2.169,1.159,0.657,2.849,0.826,0.397,0.941,1.512,1.789,0.413,1.974,4.408,3.859,2.324,2.28,8.09,3.644,2.965,2.79,2.047,2.58,2.18,0.576,2.189,4.301,2.688,1.308,2.254,2.114,1.993,1.276,1.278,1.336,2.089,1.576,1.733,1.57,1.816,1.868,1.528,1.824,1.432,2.408,1.874,2.146,1.796,2.944,1.822,2.207,2.8,0.465,0.938,1.312,1.442,1.1,0.3,0.546,0.51,0.979,1.22,1.074,0.551,0.367,0.944,1.019,1.083,0.867,2.414,1.154,0.443,1.58,1.17,0.711,2.169,1.507,0.895,1.098,0.712,1.159,1.577,1.495,1.517,1.318,1.513,1.729,2.507,1.794,1.633,1.63,2.114,1.871,1.861,3.405,1.719,1.422,1.124,0.959,0.999,1.017,0.518,0.628,0.983,1.018,1.181,1.411,2.051,0.958,0.5,0.848,1.517,1.686,1.795,0.168,1.708,1.971,1.8,5.877,4.916,3.846,1.924,1.21,1.238,1.399,0.424,1.156,1.547,1.544,1.204,1.724,2.454,1.569,2.617,2.305,4,4.105,3.417,3.183,1.35,1.731,4.302,3.043,2.749,1.003,0.709,2.339,1.222,1.507,1.752,1.053,1.539,2.352,4.056,3.714,1.29,4.835,2.759,1.301,2.124,1.186,1.7,2.026,1.882,2.023,2.487,3.002,3.961,3.104,2.159,3.939,3.059,2.021,1.854,1.975,1.455,1.802,1.631,0.214,1.145,1.157,0.299,1.719,2.452,1.352,0.949,1.96,0.74,1.57,1.444,1.405,1.342,1.707,1.965,2.031,2.085,1.935,1.738,1.285,1.441,1.573,1.604,1.383,0.869,1.17,1.552,1.951,2.336,2.459,3.268,2.089,2.073,2.883,2.682,2.86,2.936,4.034,3.783,3.74,2.925,3.392,3.134,1.889,8.08,4.719,3.316,3.982,4.438,6.644,7.41,7.297,4.035,2.463,10.38,5.771,12.527,1.686,4.805,1.477,10.255,3.69,0.837,2.584,5.723,3.998,5.023,0.863,2.851,3.211,1.85,2.336,5.661,2.71,5.148,3.207,2.284,2.628,3.77,3.864,3.838,4.065,3.968,3.909,3.814,3.81,2.872,2.147,3.433,2.067,5.224,1.537,1.47,1.6,3.449,2.942,4.825,3.983,4.673,2.596,1.731,1.186,2.357,3.487,3.208,2.159,2.22,3.362,3.524,3.611,3.823,4.655,8.645,5.844,3.258,3.074,7.59,6.948,1.262,3.081,3.906,2.206,2.028,1.584,1.418,1.974,3,4.296,4,1.729,1.356,1.525,1.369,2.351,1.49,1.612,2.23,1.285,6.439,4.192,4.7,2.504,7.211,1.17,3.142,0.451,7.58,2.071,0.639,2.535,2.429,1.156,1.332,1.049,0.922,0.836,0.616,0.475,1.094,1.119,0.943,0.879,1.556,1.367,2.205,0.98,1.008,3.286,3.438,3.591,2.277,1.923,1.452,0.321,0.95,2.073,2.082,2.319,2.323,1.806,0.916,0.523,2.37,1.883,2.358,0.785,1.117,1.567,1.482,1.578,0.896,0.849,1.09,0.678,1.279,0.863,0.454,0.94,1.218,1.978,2.484,2.063,2.806,2.5,2.579,2.092,1.906,1.55,1.827,2.137,2.731,2.371,1.583,0.951,1.384,1.548,2.178,4.137,1.583,0.907,1.411,1.523,1.501,0.872,1.809,1.836,1.385,1.948,1.112,2.211,0.56,7.426,6.679,7.665,5.367,1.941,4.23,2.747,3.823,1.181,2.857,2.184,4.61,2.397,1.334,1.362,2.227,1.946,1.945,2.097,2.212,2.243,15.06,3.445,3.88,2.484,2.809,2.613,3.951,1.792,1.854,1.652,2.237,1.473,2.604,5.01,8.525,1.426,1.173,5.672,3.224,1.963,1.697,4.751,3.916,3.461,1.89,2.135,3.211,2.692,2.529,2.938,2.699,2.037,1.869,1.551,2.343,0.946,2.594,1.111,1.652,1.367,2.072,2.064,1.641,1.022,0.908,3.36,2.938,3.394,6.279,3.858,1.433,1.451,2.628,3.244,4.116,2.326,2.202,2.086,2.176,2.291,2.247,0.9,3.068,3.082,1.95,2.283,2.27,2.42,2.662,3.537,0.559,0.732,1.6,1.982,1.058,3.685,1.171,4.824,1.729,1.152,3.327,0.464,1.059,2.072,2.945,3,0.873,1.254,1.637,1.908,0.771,3.657,3.169,2.958,2.803,2.853,2.379,3.971,5.725,0.783,2.428,1.986,1.459,2.298,5.78,5.248,3.64,2.358,2.531,3.051,3.18,4.452,4.345,11.017,4.138,2.922,1.514,1.541,0.702,4.257,2.381,2.322,9.115,5.109,1.162,2.58,0.504,0.841,1.845,1.495,1.826,0.887,4.904,1.368,1.73,1.031,1.018,1.369,1.406,1.374,1.372,1.37,1.348,1.413,1.386,1.293,1.241,1.242,0.612,1.224,1.241,0.593,0.65,0.614,0.613,1.242,0.619,0.611,0.607,1.251,1.238,1.244,2.786,3.974,3.975,4.216,2.818,2.264,2.05,2.83,2.853,3.152,3.3,3.313,2.724,1.88,2.603,2.617,1.966,2.594,3.29,2.634,1.304,1.999,6.551,6.555,3.95,4.651,2.273,1.866,2.385,2.628,2.404,2.445,2.684,3.364,3.895,2.184,2.424,0.823,0.885,0.832,1.768,2.408,1.326,2.525,2.236,1.294,4.255,11.726,13.87,2.891,1.675,0.944,0.764,2.307,1.35,0.683,2.335,3.002,3.256,0.813,0.972,2.194,3.686,3.275,3.448,1.809,2.58,1.272,1.713,3.179,2.2,5.221,0.952,0.23,0.323,6.153,7.39,4.497,4.356,2.522,2.634,4.88,3.844,3.656,2.894,2.904,3.45,3.469,7.164,4.193,4.767,1.475,2.326,2.278,4.949,0.054,2.595,1.403,1.468,1.773,1.867,1.513,1.4,1.438,0.865,1.317,1.321,1.92,1.854,1.344,1.281,1.575,1.707,1.825,4.178,3.452,3.285,1.773,1.887,2.214,2.091,2.807,1.125,1.325,2.665,2.816,3.494,1.199,1.137,0.334,0.322,1.269,2.969,2.084,1.832,3.086,5.06,2.957,0.784,1.36,4.513,2.748,2.912,1.323,4.042,1.007,1.064,2.91,2.23,2.034,3.629,5.257,4.936,2.608,3.269,1.856,1.881,2.321,0.796,0.437,1.182,1.826,5.482,0.61,0.56,3.156,1.744,7.264,2.126,5.502,5.189,4.605,5.85,1.992,3.456,1.803,3.059,2.738,0.986,0.985,0.977,0.982,0.987,2.29,0.987,0.988,1.527,0.899,1.604,1.51,1.406,1.417,0.839,1.008,1.773,3.69,2.148,4.023,0.836,1.83,1.83,2.951,2.951,2.577,1.201,1.298,3.364,2.537,1.883,1.355,0.861,1.055,1.791,4.62,1.029,1.042,1.396,0.951,1.016,1.212,1.155,1.135,2.247,1.367,0.735,0.731,0.707,0.631,0.565,0.848,0.778,0.796,1.101,1.252,1.7,1.149,1.336,1.151,0.714,0.701,0.815,0.892,0.811,0.805,1.427,1.011,1.007,1.31,0.302,0.998,2.019,1.746,2.639,0.925,0.942,0.66,0.669,0.941,0.938,1.225,0.919,0.924,0.676,0.684,1.362,0.885,0.899,1.513,1.161,1.161,0.778,0.784,0.75,0.752,0.766,0.771,0.763,0.768,1.761,1.765,1.947,1.928,1.024,1.026,1.022,1.013,1.298,1.285,1.255,1.505,0.763,0.758,1.54,1.785,0.873,0.874,0.827,0.826,1.646,1.724,1.718,1.271,1.261,1.274,1.266,1.705,1.692,1.717,1.705,2.536,1.271,1.266,0.697,0.69,0.635,0.633,0.629,0.625,0.626,0.623,1.484,1.607,0.882,0.88,0.867,0.87,0.892,0.891,1.93,1.934,1.295,1.312,1.315,0.938,1.797,1.352,0.698,0.699,0.745,0.756,1.401,0.882,0.896,0.651,0.66,0.664,0.672,1.149,1.257,0.63,0.634,1.635,1.682,1.186,0.991,1.351,0.585,0.589,1.175,1.014,1.377,0.892,0.891,0.689,0.694,0.756,0.758,0.751,0.751,0.948,0.946,1.241,1.364,1.095,1.17,0.921,0.929,0.947,0.95,1.025,1.029,1.1,1.103,2.767,1.387,1.382,0.576,0.571,1.11,0.683,0.676,0.595,0.596,0.568,0.611,0.606,0.602,0.604,0.651,0.644,0.557,0.593,0.591,0.622,0.619,0.631,0.628,0.608,0.606,0.639,0.637,0.625,0.607,0.604,0.611,0.601,0.642,0.579,0.654,0.647,0.738,0.736,1.245,1.205,1.879,1.579,0.735,0.744,0.649,0.255,0.906,0.92,0.967,1.26,0.608,0.609,0.945,0.946,1.219,0.807,0.812,1.209,1.044,1.044,1.13,1.136,1.225,1.263,1.22,1.24,1.236,0.921,0.929,1.27,1.026,0.972,0.944,0.587,0.584,0.891,0.913,1.158,1.202,1.761,1.189,1.158,1.216,1.193,1.174,1.182,1.196,1.224,1.001,1.171,1.203,2.367,1.154,0.576,0.578,0.598,0.605,0.599,0.605,0.577,0.58,0.587,0.589,0.561,0.556,0.556,0.555,0.651,0.569,0.571,0.591,0.591,0.591,0.588,0.581,0.576,0.594,0.589,0.59,0.587,0.584,0.587,0.585,1.179,0.693,0.692,1.213,1.166,1.159,0.874,0.877,1.18,0.871,0.868,1.125,0.507,0.496,0.744,0.799,1.104,1.19,1.171,1.225,0.633,0.624,1.212,0.9,0.892,1.375,1.088,0.903,0.394,0.612,0.767,0.762,0.751,0.746,1.221,1.264,0.665,0.72,1.066,1.03,0.881,0.861,0.96,0.934,1.157,1.167,1.237,1.165,1.129,0.987,0.826,0.945,0.998,1.014,1.131,1.106,1.096,1.107,1.117,1.39,1.375,1.25,1.189,1.223,1.169,1.247,0.643,1.143,1.307,1.327,1.22,1.092,1.085,1.24,2.633,1.718,2.312,1.885,1.199,1.207,1.252,0.598,0.599,1.182,1.313,1.278,0.899,0.747,1.029,0.988,1.127,1.363,1.112,0.713,0.71,1.088,1.068,0.01,2.395,1.164,1.154,0.976,1.257,1.481,1.481,3.017,4.039,1.512,1.815,2.094,2.328,0.743,3.359,1.581,0.252,0.631,0.738,1.305,2.096,2.057,2.072,3.339,1.422,1.422,3.506,1.935,0.008,1.344,1.42,2.631,10.834,1.594,1.616,2.79,2.641,1.588,6.64,1.116,2.23,4.866,2.842,1.628,1.807,0.898,0.899,1.842,1.833,1.769,1.765,1.225,1.792,1.748,1.774,1.793,1.821,1.537,1.532,1.724,1.79,1.786,1.808,1.76,1.796,1.782,1.781,1.797,1.782,3.002,3.047,6.25,0.943,3.744,2.15,2.163,2.623,2.62,2.533,2.543,2.468,1.234,1.241,1.244,1.248,1.888,4.385,2.203,2.215,2.25,2.255,1.775,2.471,1.907,1.91,3.059,2.605,2.409,1.97,1.879,1.891,1.809,2.505,0.921,1.668,1.846,1.119,2.627,2.552,2.291,2.282,1.655,6.873,8.109,17.751,7.309,4.635,2.092,1.6,1.369,0.854,0.673,0.668,1.411,0.7,0.708,0.703,0.715,0.709,0.711,0.707,0.705,0.704,1.023,1.121,2.089,0.793,0.651,0.655,0.655,0.603,0.618,0.673,0.638,0.637,0.66,0.659,0.641,0.643,0.653,0.659,0.658,0.539,0.536,0.936,0.657,0.672,0.666,0.663,0.654,0.669,0.65,0.669,0.791,0.876,0.51,0.525,0.626,0.628,0.674,0.677,0.645,0.657,0.656,0.66,0.679,0.646,0.654,0.676,0.546,0.556,0.647,0.649,0.923,1.041,0.637,0.641,0.657,0.649,0.648,0.667,0.677,0.719,0.653,0.679,0.622,0.64,0.656,0.67,0.673,0.755,0.775,1.168,1.216,0.778,0.663,0.66,1.36,1.251,1.217,0.795,0.731,0.758,0.928,0.871,0.742,0.714,3.006,3.365,1.199,1.564,8.691,1.68,3.777,4.425,3.899,4.032,8.023,8.666,6.668,4.377,4.22,1.871,4.079,3.803,2.913,2.954,3.166,2.287,1.827,2.212,2.059,1.52,2.798,2.08,1.806,2.387,2.092,2.415,2.111,2.258,2.806,4.646,3.132,2.324,2.333,2.491,2.203,2.781,2.744,2.277,2.582,2.069,3.968,2.91,2.508,2.593,1.485,1.37,1.566,1.969,2.327,1.878,1.752,2.656,2.264,2.433,2.134,2.332,2.254,2.143,4.246,8.459,3.161,3.159,2.593,2.915,3.27,2.597,2.953,3.765,2.619,3.271,4.614,4.222,3.573,4.068,4.644,3.738,7.4,7.346,1.271,5.262,0.011,14.213,4.669,4.683,12.947,4.533,6.068,5.755,1.423,5.797,2.675,2.94,3.375,3.134,1.98,1.901,3.179,3.143,2.614,2.671,3.074,2.997,2.535,2.455,2.438,2.47,4.243,4.138,4.532,3.887,3.315,2.985,2.826,2.863,2.787,3.096,2.179,2.11,0.953,2.583,4.467,1.299,3.944,1.954,1.517,0.884,3.139,4.521,2.437,1.798,1.977,1.656,1.705,1.736,1.751,1.595,1.527,1.791,1.545,2.244,1.463,1.389,1.525,1.524,1.458,1.56,1.611,1.805,3.12,1.215,2.974,1.494,1.491,2.683,2.397,1.953,1.98,2.442,2.303,2.405,2.201,1.267,3.018,1.517,1.155,2.504,4.748,4.656,5.161,3.396,6.054,7.136,7.222,3.112,7.9,1.699,10.25,6.289,6.129,6.056,6.072,4.222,4.167,3.427,3.339,4.051,3.32,1.826,4.575,4.138,5.128,5.194,5.475,8.828,1.482,4.085,0.864,0.505,5.719,2.131,0.969,1.404,17.262,8.668,8.841,1.746,5.65,6.804,4.217,3.329,3.645,0.945,2.233,2.671,2.75,3.04,8.745,7.605,3.561,3.309,3.031,1.582,3.148,4.606,3.897,4.199,3.744,2.086,2.239,2.362,4.578,4.813,5.077,4.67,4.816,3.195,0.965,7.347,2.769,2.924,2.771,2.852,2.339,4.65,2.097,0.581,0.517,5.699,3.07,2.888,3.507,2.865,4.477,4.421,6.146,6.217,6.529,4.251,3.904,2.553,2.778,2.845,2.84,3.25,3.166,1.313,1.118,1.686,1.943,1.849,1.758,1.83,0.005,1.862,1.305,1.241,2.449,1.464,1.336,0.501,0.233,1.026,0.75,0.9,1.231,1.515,1.903,0.675,1.45,1.722,1.108,0.477,0.348,0.909,1.037,1.615,1.305,1.259,2.068,2.086,4.89,2.481,2.474,2.642,1.665,2.155,2.523,2.172,2.555,1.157,1.267,1.545,0.957,1.224,0.719,1.19,1.721,1.057,1.844,0.866,1.249,1.208,1.726,1.284,1.451,1.367,1.408,1.808,3.701,3.093,2.558,1.765,1.161,1.17,1.048,1,0.923,0.941,1.367,1.449,1.014,2.434,3.815,1.826,1.251,1.835,4.558,2.277,3.148,1.967,0.65,0.879,1.49,1.907,1.512,3.427,2.046,1.956,2.279,2.127,1.988,1.402,2.534,1.497,2.125,1.209,1.123,1.089,1.184,1.165,1.487,1.363,1.656,3.006,1.905,1.729,2.477,1.085,0.349,1.177,1.466,2.175,0.566,0.965,2.525,2.648,2.621,1.234,2.385,2.13,1.969,2.393,2.647,1.705,1.831,1.765,1.765,1.765,0.096,1.517,1.591,1.595,2.034,1.285,1.13,1.662,1.582,2.036,4.969,1.828,3.143,1.723,2.193,4.357,2.176,4.375,0.826,1.499,2.257,2.205,3.855,4.467,1.207,1.431,1.725,1.915,4.248,4.043,5.889,3.016,5.329,1.268,0.886,4.824,2.194,5.825,8.82,12.318,4.722,3.359,2.74,0.849,1.077,1.076,1.079,1.075,0.95,0.955,1.001,0.999,1.16,3.819,2.448,2.102,1.501,1.317,1.45,1.194,0.979,1.119,0.66,0.859,0.903,1.035,0.802,0.133,1.044,1.192,1.461,1.432,1.346,1.274,1.599,1.518,2.871,2.396,3.91,3.579,5.439,2.308,2.09,2.715,2.137,2.217,1.596,1.468,1.105,1.892,2.228,1.938,2.517,5.558,5.42,1.983,1.757,2.404,1.818,3.825,2.985,0.883,1.047,1.645,1.447,1.944,1.028,1.282,3.771,2.205,3.055,1.547,1.74,2.092,1.351,1.065,1.152,1.354,1.229,3.009,1.915,1.742,2.277,1.969,1.912,2.595,1.995,2.159,2.464,2.011,2.008,2.134,7.316,8.808,9.243,6.11,2.666,4.628,2.398,1.226,1.471,0.847,0.96,0.703,0.706,0.614,0.622,0.482,0.453,0.457,0.948,0.943,0.941,0.948,0.944,2.857,0.006,1.882,6.132,0.013,3.648,0.012,0.916,0.072,2.455,13.923,5.543,1.964,1.37,0.054,0.95,3.599,5.503,2.377,2.936,2.295,2.688,2.078,1.117,1.316,1.515,1.399,1.892,1.635,1.641,2.479,0.485,2.084,2.261,2.139,0.668,0.663,1.567,1.729,1.836,2.292,2.117,2.03,2.116,2.114,1.974,1.449,3.787,0.609,1.408,5.152,3.344,3.706,3.759,3.276,3.107,4.788,3.276,1.797,1.023,1.335,2.581,1.984,0.76,1.652,2.491,3.023,3.558,3.935,3.892,3.019,2.989,5.974,4.957,8.986,9.532,6.312,3.274,3.341,3.459,3.563,2.175,0.771,3.033,8.243,5.796,2.676,4.783,1.883,3.275,5.093,0.657,6.967,3.805,3.872,0.859,1.469,4.221,6.847,4.211,4.191,2.123,2.084,1.065,1.062,2.066,1.418,3.194,3.139,2.775,2.688,3.045,1.456,1.433,1.771,2.616,3.994,1.254,3.482,1.414,0.918,1.887,1.481,0.709,0.914,1.535,1.306,0.985,1.041,1.568,3.415,1.311,2.247,0.971,0.88,1.451,1.426,1.376,2.001,3.007,0.492,3.687,3.252,1.652,1.451,1.502,1.431,1.538,1.658,1.841,3.534,1.967,2.323,1.313,2.17,2.155,1.57,1.931,2.34,2.235,2.086,2.143,1.774,1.905,1.623,2.667,4.149,3.713,3.611,4.402,3.97,11.793,6.198,3.378,2.699,6.248,8.845,5.767,9.147,1.879,6.714,6.75,9.951,3.734,3.647,4.055,4.255,6.45,9.12,2.871,4.103,4.731,2.995,1.597,1.597,3.454,2.601,3.6,5.477,2.071,4.418,2.572,7.786,5.693,3.314,2.749,3.548,1.156,1.276,5.03,2.783,1.117,0.386,1.073,8.412,4.523,3.607,0.661,1.722,2.212,2.421,0.055,0.376,2.124,3.708,0.117,4.13,6.9,5.541,2.485,2.465,6.778,0.908,3.9,6.516,7.6,2.05,8.401,3.08,7.26,5.058,5.057,8.027,3.502,1.201,3.582,3.014,2.872,2.715,7.22,10.13,2.793,2.917,4.291,3.869,8.835,12.683,3.44,5.642,0.223,2.573,0.584,3.622,4.037,10.841,6.43,1.746,5.69,1.98,2.552,3.364,4.796,2.366,11.848,0.98,1.174,0.719,7.644,3.591,2.09,2.119,2.368,2.125,2.706,2.82,2.372,0.168,1.81,2.21,1.541,0.999,2.913,0.186,1.662,4.694,1.255,2.035,1.035,1.192,0.779,0.408,0.794,0.803,0.762,0.759,1.528,0.766,0.771,0.761,0.756,1.166,1.16,1.16,1.156,1.201,0.593,0.592,2.15,2.122,3.543,1.771,1.727,1.854,1.852,1.32,1.313,0.701,0.421,0.25,0.197,0.827,1.004,1.467,1.457,1.727,1.715,2.115,1.051,1.048,1.725,0.843,0.845,1.419,1.415,1.338,0.696,0.631,1.233,0.812,0.814,1.243,1.172,1.204,1.206,0.906,0.892,0.892,0.892,0.901,0.903,0.904,0.888,1.447,1.763,1.747,0.913,0.908,1.823,0.956,0.938,0.951,0.941,1.877,1.899,2.776,2.794,2.204,2.206,1.464,1.417,1.647,0.756,1.493,0.749,0.75,1.475,1.488,1.22,1.205,1.227,1.219,1.226,1.397,0.432,1.488,0.613,0.945,0.906,1.223,1.621,1.826,1.866,0.741,1.153,2.922,0.971,2.879,4.219,2.777,1.177,1.223,1.423,0.008,2.39,1.397,1.691,1.632,0.292,1.703,2.367,2.746,0.449,3.433,1.063,3.934,3.922,0.98,3.814,3.279,3.817,3.368,3.226,2.419,7.684,4.385,1.145,0.91,7.516,2.145,1.199,1.715,1.172,2.855,1.91,4.158,3.486,2.942,3.624,2.347,2.743,2.835,1.003,1.184,1.199,1.113,1.196,1.296,1.209,3.138,7.504,2.409,2.552,2.187,2.254,2.45,2.24,2.131,2.333,2.011,6.081,2.17,1.866,2.058,2.048,2.495,2.553,2.345,7.721,0.785,2.72,1.04,0.908,1.026,1.121,1.112,1.917,1.746,1.506,1.157,0.926,3.977,4.953,2.573,2.543,2.584,2.168,2.087,1.258,2.508,1.583,1.603,1.608,1.919,4.788,7.118,2.086,6.682,4.405,4.232,7.369,1.555,6.006,5.577,5.12,5.206,8.049,3.33,3.525,1.375,2.16,2.318,2.587,3.454,7.395,2.016,0.898,1.113,5.441,2.613,1.897,5.356,1.245,2.754,2.172,0.449,2.985,4.744,2.89,2.498,2.45,3.392,3.237,2.679,11.386,4.429,4.522,6.427,14.332,9.785,4.561,11.258,0.629,4.732,5.755,6.195,4.589,4.57,7.605,0.694,1.13,3.058,0.941,2.789,1.681,3.047,5.573,9.229,11.197,6.538,2.917,1.984,3.78,4.615,4.905,4.626,2.27,3.213,3.348,1.977,1.91,1.984,1.779,1.752,1.986,1.61,3.885,2.239,2.16,2.17,2.365,1.078,0.719,0.961,1.252,1.297,1.328,1.206,1.176,0.066,1.415,2.346,0.81,0.855,0.7,2.804,1.495,2.055,2.581,1.675,2.706,3.462,6.732,1.096,1.039,6.12,14.468,9.883,11.942,0.882,0.579,1.545,1.49,6.777,8.302,3.055,12.617,3.707,3.517,2.919,7.947,4.271,4.064,9.217,12.128,2.309,3.617,6.016,5.147,2.103,5.09,3.09,2.107,6.61,5.666,4.535,3.4,5.682,2.759,7.828,4.007,5.611,6.396,2.611,1.847,3.936,7.922,26.3,5.018,4.618,2.297,1.358,1.355,1.142,2.398,0.493,1.667,1.222,1.199,4.016,5.988,2.018,1.584,4.023,8.068,2.262,5.426,3.55,1.535,3.027,5.875,2.322,4.013,4.352,2.399,3.086,2.457,2.536,3.223,1.693,4.438,5,0.445,0.984,3.254,2.168,2.696,7.88,10.587,5.301,3.051,1.213,9.06,0.633,9.004,2.991,3.05,2.872,3.233,3.388,3.666,3.578,4.532,2.663,3.687,1.352,1.613,3.921,3.129,3.742,4.058,1.193,11.603,1.488,4.774,4.958,10.191,10.096,7.333,8.281,2.923,3.229,5.172,3.223,1.801,1.563,2.058,3.356,2.969,2.992,1.493,3.546,1.629,1.734,2.16,4.117,3.724,2.24,4.314,1.665,2.329,2.073,1.998,1.983,1.387,2.1,1.397,1.432,3.272,2.197,2.472,2.715,2.792,2.556,4.215,4.841,4.733,2.349,2.632,1.906,2.497,2.441,2.535,3.755,3.132,3.255,2.694,1.441,2.5,2.741,2.154,2.804,2.801,2.758,3.125,2.389,2.99,3.064,2.464,2.962,3.308,3.121,3.019,3.14,3.214,2.675,2.921,2.332,3.552,0.355,2.977,2.283,2.133,2.733,2.753,3.17,2.759,2.997,1.265,0.873,1.889,2.636,2.784,3.771,3.861,2.778,2.436,1.552,0.647,0.887,1.756,2.182,2.769,2.783,2.608,2.369,2.715,4.917,2.401,3.421,2.055,2.03,0.492,2.377,2.752,2.962,6.067,4.071,2.949,3.579,2.91,3.492,0.335,2.02,3.41,2.434,0.172,2.895,3.631,3.608,4.542,5.599,4.993,4.832,3.2,4.515,6.053,1.629,2.476,4.232,6.212,3.9,3.4,2.365,2.788,2.593,3.672,3.968,1.168,6.881,2.758,2.752,1.78,1.258,4.273,6.081,6.495,8.305,8.306,4.406,0.589,1.95,1.991,1.876,5.463,3.072,3.101,3.191,2.633,3.738,2.472,2.225,0.959,9.891,0.968,0.727,1.896,2.666,0.492,1.642,1.589,1.535,1.459,1.85,2.274,2.569,2.205,2.157,2.299,2.254,1.726,4.621,2.825,3.065,1.309,4.045,4.316,9.883,3.216,2.431,1.605,2.125,2.645,2.194,2.28,1.611,2.316,2.313,1.199,2,1.312,5.802,0.909,2.233,3.784,3.806,5.808,9.044,5.948,1.289,3.743,3.283,3.182,3.987,1.613,1.708,3.111,3.096,2.931,1.976,3.017,2.922,3.183,1.828,2.093,5.089,5.645,3.389,2.539,1.334,2.023,1.892,2.795,2.039,0.707,0.492,1.906,6.768,0.833,0.193,0.707,0.398,1.024,1.175,1.898,0.642,2.686,3.131,0.824,3.258,0.918,0.874,0.994,0.697,1.907,0.52,1.344,1.274,1.319,0.545,1.319,1.297,1.171,0.723,1.129,1.083,0.839,1.114,1.101,1.313,1.045,1.296,0.959,0.741,2.064,1.199,1.327,2.5,2.61,8.799,3.569,3.579,3.101,3.99,1.898,1.494,2.993,3.269,1.801,2.225,2.342,1.433,3.121,1.599,1.952,0.912,2.843,4.628,6.136,1.94,2.066,1.406,1.39,1.374,2.344,1.523,3.333,2.993,2.955,3.142,3.135,2.614,3.465,3.219,6.587,1.975,7.968,4.62,4.645,4.521,4.523,5.36,5.303,7.121,4.432,4.468,9.021,3.655,3.682,2.924,2.945,3.621,1.264,1.168,1.123,2.303,0.301,1.395,0.897,0.141,3.072,3.788,4.196,4.678,0.54,2.298,1.236,1.491,2.089,2.102,3.104,0.098,3.853,4.844,6.212,5.016,4.983,4.866,3.055,3.033,3.031,1.458,1.605,3.711,0.992,1.543,1.204,4.082,4.113,8.069,2.305,0.591,9.536,7.299,4.708,4.681,7.784,3.537,3.507,5.133,5.116,2.504,3.559,3.554,4.796,3.654,3.643,4.498,4.488,4.352,4.338,4.033,2.791,1.221,2.768,2.785,2.745,2.757,2.807,0.531,3.372,4.137,4.098,7.048,6.359,3.564,1.681,1.697,2.191,2.193,0.918,0.574,1.269,1.282,1.558,1.166,1.648,2.615,1.317,3.139,3.221,5.963,8.528,5.148,3.818,2.922,2.934,4.01,4.151,4.376,4.201,4.939,1.999,1.999,3.314,3.317,3.98,3.093,1.567,2.08,1.732,1.744,0.724,0.422,2.212,1.572,2.899,0.742,1.682,3.959,1.201,1.962,1.371,1.981,2.542,2.153,1.189,4.367,3.813,5.79,2.257,2.438,5.695,2.057,1.622,3.534,3.345,3.977,4.692,4.147,2.251,2.264,1.781,2.484,2.515,2.699,2.72,3.108,3.222,2.937,2.789,1.496,14.401,3.096,3.079,3.975,4.527,2.525,2.42,3.128,3.233,2.195,6.236,2.893,2.675,2.359,2.378,3.151,3.131,2.39,2.389,2.644,2.621,3.177,3.166,2.822,2.824,2.088,2.211,1.611,1.425,0.875,3.22,2.353,1.321,1.29,5.451,1.571,4.766,0.559,6.322,5.522,5.712,2.143,4.075,5.621,6.307,0.373,7.66,5.434,1.711,7.734,2.258,3.532,3.889,3.085,6.651,9.444,4.43,4.62,5.892,7.304,5.289,1.465,1.364,1.485,3.733,1.098,0.316,1.964,4.753,0.629,0.896,6.507,1.907,2.398,2.317,7.754,6.929,8.194,7.264,26.024,13.893,6.616,2.539,6.492,5.399,7.374,5.724,5.672,5.039,3.891,3.468,3.381,2.802,3.184,1.676,10.622,5.672,3.631,3.705,4.432,5.005,4.007,4.045,3.359,5.048,5.131,5.183,4.91,4.167,2.663,2.063,3.034,4.889,8.313,3.127,3.849,4.547,3.931,4.872,3.352,1.887,3.512,2.89,8.307,2.223,1.766,1.789,1.55,1.325,1.291,1.882,2.973,4.368,4.909,2.733,1.505,1.465,1.414,1.467,1.86,3.948,5.11,5.24,5.306,3.022,4.923,4.954,2.145,3.002,3.609,1.823,1.185,1.749,2.32,1.051,1.699,1.732,2.05,3.563,1.273,6.067,4.321,7.304,7.384,0.342,7.13,7.43,7.018,4.859,1.399,5.166,0.405,2.518,5.996,2.786,11.474,7.367,7.419,5.038,4.311,4.343,2.757,1.923,2.359,2.268,4.36,4.618,2.177,2.161,4.471,6.337,6.335,4.618,2.941,1.89,2.591,1.659,1.568,3.074,4.059,4.227,5.035,2.539,0.804,1.75,4.109,1.66,2.959,2.907,4.376,4.301,3.958,3.864,3.706,7.94,3.42,0.7,2.968,1.177,1.791,2.848,3.533,1.193,1.59,2.595,0.286,4.08,6.003,6.823,5.895,4.318,2.04,1.994,1.759,1.734,2.214,1.939,3.923,0.979,1.27,1.823,5.143,3.568,1.418,1.676,5.481,1.991,2.946,1.832,2.416,2.698,7.505,4.239,4.623,2.809,1.383,2.345,2.63,3.815,3.866,2.47,2.475,6.105,4.376,3.956,2.777,2.827,1.249,1.249,2.457,2.551,2.562,2.485,2.477,2.454,2.537,3.18,3.108,2.52,2.718,4.067,4.524,5.413,2.919,2.78,3.603,3.705,2.356,3.063,2.958,3.366,4.127,4.071,4.363,4.316,9.413,1.354,3.012,5.076,11.866,11.857,5.755,5.451,4.275,1.914,1.608,1.225,1.074,0.176,2.423,1.758,1.318,0.966,2.942,4.948,1.81,1.748,2.283,1.584,2.135,3.207,0.808,1.152,0.827,4.825,4.745,0.962,1.199,2.16,1.676,1.82,3.496,1.004,5.383,5.615,3.428,3.417,4.267,5.029,5.83,7.763,7.433,3.45,2.948,3.53,3.791,4.262,4.388,3.923,0.98,6.897,22.396,7.941,4.239,4.202,7.464,0.848,1.023,8.33,5.146,6.686,5.005,4.983,0.751,7.309,1.205,5.23,5.319,1.184,3.008,1.504,0.96,5.552,1.875,2.887,2.302,1.1,0.57,3.441,3.661,2.204,6.824,9.382,9.98,9.998,3.797,2.7,4.745,1.429,0.766,2.546,2.476,1.115,1.355,2.062,1.266,1.983,6.95,1.006,1.335,1.686,3.36,1.229,3.857,2.011,1.335,2.082,1.543,2.528,2.249,2.927,1.437,1.758,3.399,1.239,2.346,2.762,2.641,2.958,1.79,2.249,3.408,2.684,2.799,1.516,2.706,0.704,2.448,1.639,1.955,2.611,2.835,3.155,3.33,2.536,2.498,2.632,2.118,18.009,2.958,3.909,3.573,32.766,2.694,3.173,0.859,1.754,1.197,0.516,2.212,0.004,1.621,4.631,1.068,1.416,2.45,2.124,0.51,1.141,0.749,0.89,2.287,2.472,1.134,0.898,1.08,1.362,0.647,1.76,1.152,1.137,1.1,1.46,1.425,1.557,1.422,1.505,1.366,0.879,0.879,1.734,2.706,0.846,0.873,1.54,0.885,0.956,1.387,1.375,0.968,1.071,1.498,1.379,1.27,1.313,2.424,2.003,1.726,1.509,1.246,1.226,1.317,1.235,1.928,1.647,3.6,5.45,5.39,0.329,7.225,6.852,4.674,1.275,7.456,4.872,1.272,5.841,4.683,4.881,3.732,2.318,1.356,1.188,2.569,1.969,1.868,1.706,1.607,2.836,1.496,3.367,3.168,3.57,2.068,2.248,2.058,2.261,1.593,1.604,1.915,2.3,2.715,1.561,1.323,1.371,3.281,3.272,2.529,4.347,6.434,4.898,1.433,2.634,4.155,3.234,2.016,0.306,0.799,1.998,3.795,2.363,3.069,1.916,2.497,2.421,3.085,3.728,3.747,1.812,1.799,2.52,1.823,1.864,1.772,1.888,1.104,0.718,1.336,2.431,2.494,3.708,3.11,3.227,4.411,3.461,2.839,2.566,2.531,2.148,3.6,4.748,5.483,6.882,5.582,3.314,3.088,3.28,3.19,5.122,1.463,4.754,0.531,2.043,1.048,2.118,2.773,1.64,4.027,1.357,1.874,3.671,10.504,1.48,2.012,0.742,2.565,1.865,9.924,4.946,5.665,16.454,8.507,25.374,10.988,1.922,1.95,3.918,1.907,1.884,0.03,2.254,2.34,2.097,4.262,0.442,2.438,4.096,4.403,6.401,7.098,6.982,7.09,3.612,2.304,3.053,3.695,4.279,1.566,7.424,4.513,4.973,2.663,3.346,3.566,2.043,2.207,2.639,2.781,2.28,3.012,2.556,2.306,10.454,2.408,2.282,3.061,2.868,2.244,2.288,1.773,2.882,1.24,3.478,0.83,5.259,9.702,2.536,5.526,1.869,20.239,30.56,4.974,1.87,1.688,7.132,0.882,1.891,1.801,2.969,11.175,2.611,4.848,3.641,4.232,4.616,4.953,4.536,4.471,4.967,1.622,1.47,4.33,6.08,6.332,5.704,2.965,2.844,2.962,2.918,2.716,2.905,6.273,3.4,3.494,3.986,3.496,1.921,1.69,3.154,2.459,16.526,1.691,1.328,45.105,4.422,3.293,3.417,5.821,3.603,2.705,2.387,2.822,3.189,7.926,8.753,5.104,3.814,3.793,5.427,3.007,3.236,2.486,5.429,3.351,3.149,3.13,3.033,9.039,1.02,10.337,8.054,7.685,7.24,7.275,3.476,3.339,3.507,3.344,5.305,5.546,4.209,4.142,4.403,4.512,2.287,2.293,3.376,2.669,6.024,6.067,12.032,4.026,3.694,3.574,4.864,4.153,6.445,7.057,3.604,9.45,15.379,6.261,2.109,1.728,2.254,2.617,1.573,2.591,3.686,2.079,2.846,1.566,3.653,2.036,2.042,2.046,2.013,4.498,1.601,1.994,3.337,1.655,1.637,3.259,1.649,1.624,2.913,2.894,2.496,0.664,6.913,2.872,2.902,2.965,6.366,3.356,1.129,1.571,0.494,4.346,4.81,6.794,2.758,10.001,5.555,1.734,3.093,2.055,2.014,2.414,3.775,1.617,0.901,3.756,3.136,3.141,4.852,5.249,8.537,5.328,3.75,10.206,0.797,4.312,4.419,6.894,5.036,3.588,3.138,3.187,2.675,1.836,1.98,2.543,2.298,1.048,1.288,1.358,1.32,1.209,1.814,1.728,1.359,1.414,0.749,1.679,1.192,1.782,2.117,1.229,1.337,2.031,2.297,1.029,1.727,1.509,4.678,2.412,2.36,3.077,3.343,4.657,1.747,1.507,3.031,0.042,2.161,0.63,1.254,1.185,1.787,1.176,1.938,2.647,2.018,2.55,0.839,0.748,1.341,1.23,1.451,0.873,1.328,1.236,2.721,1.731,2.286,2.003,1.985,1.464,4.618,2.912,2.364,1.951,1.645,3.129,1.948,2.512,1.391,1.803,1.965,2.576,1.213,2.025,2.51,0.917,1.658,1.007,2.62,1.548,1.702,2.018,1.564,2.285,1.97,1.945,1.935,5.359,2.646,2.676,2.444,2.47,2.465,2.557,3.852,3.822,3.726,3.734,2.458,2.323,2.478,2.36,2.544,2.572,2.449,2.46,2.562,0.953,4.587,4.558,2.663,2.682,2.794,2.71,3.332,3.615,2.644,3.063,1.188,2.236,4.164,1.699,1.76,1.439,1.45,2.797,2.807,2.811,1.539,1.152,2.402,2.214,2.576,2.569,2.574,2.559,2.453,2.564,2.764,4.047,4.087,4.18,2.112,2.113,2.001,2.065,2.033,1.996,2.344,2.324,2.764,2.343,0.861,0.867,1.935,0.465,2.708,4.927,2.339,2.693,2.702,2.725,2.764,2.525,1.933,2.473,2.613,2.019,1.546,2.971,1.694,1.973,3.112,2.084,0.719,1.418,1.917,1.095,1.325,1.917,2.953,0.348,1.488,1.477,1.627,2.927,1.473,0.996,2.117,0.328,0.258,0.829,2.259,1.434,2.276,2.645,3.93,1.152,3.102,4.814,2.456,3.318,1.722,1.853,1.841,1.818,2.39,1.964,1.47,0.889,0.851,1.307,1.268,1.225,2.692,1.068,1.548,1.687,1.964,1.783,1.941,2.06,2.086,1.958,1.902,1.622,1.626,1.518,1.49,1.086,2.428,1.857,1.752,0.952,2.993,1.358,1.267,1.784,1.652,0.961,1.735,0.427,1.733,1.577,2.435,1.102,2.581,2.652,3.353,3.465,1.199,3.332,3.797,3.38,2.246,1.722,2.761,3.503,6.285,2.425,2.344,3.736,3.579,3.71,2.415,1.156,3.616,3.667,2.804,0.739,0.63,1.607,1.488,1.674,1.789,1.224,2.147,0.043,1.545,1.392,0.693,1.697,1.601,2.13,3.155,0.731,1.746,2.22,2.26,0.692,1.269,2.293,1.633,1.968,2.316,1.68,1.25,1.412,1.696,1.495,1.503,1.728,1.478,1.307,1.207,1.543,6.56,3.035,2.85,3.659,4.103,9.692,4.741,6.807,5.753,7.689,1.889,2.061,2.114,2.11,1.912,2.048,2.381,2.227,8.616,6.785,7.995,3.469,3.6,7.282,17.448,11.651,7.1,4.375,0.57,3.5,3.381,5.218,5.677,2.686,5.515,2.575,2.906,11.323,8.344,4.034,5.261,4.287,2.925,3.628,0.741,1.8,1.578,1.575,1.582,2.143,1.318,1.107,1.923,1.302,1.35,1.43,1.338,1.755,2.085,2.081,1.523,3.859,9.52,3.033,1.612,2.019,1.914,1.901,1.719,1.708,1.989,1.488,1.93,2.219,2.041,1.895,2.047,6.251,6.385,0.996,10.791,2.641,1.388,1.463,2.15,1.521,1.739,1.476,1.645,1.43,1.593,1.911,1.654,1.476,1.148,1.112,1.082,1.19,2.394,0.668,1.955,1.43,1.373,2.049,1.807,2.076,1.863,1.56,1.985,1.659,2.184,1.868,1.774,3.083,4.887,5.814,3.656,3.183,2.346,1.819,1.127,0.903,1.634,1.447,1.83,1.189,1.154,0.781,1.79,2.388,2.354,1.418,1.394,1.457,1.449,1.442,1.444,1.082,1.081,2.159,2.731,5.422,0.089,3.492,1.442,1.642,0.915,1.033,2.723,1.437,1.373,1.262,2.485,3.728,1.983,2.191,1.863,0.867,1.476,1.39,1.505,1.278,3.255,2.134,2.041,1.555,1.987,1.064,0.391,1.055,1.077,1.331,1.308,1.38,1.32,1.22,1.11,0.75,0.25,1.852,4.055,1.633,1.008,2.603,1.517,1.583,1.125,1.012,1.712,0.973,1.07,1.374,0.816,1.585,2.185,2.171,3.977,4.671,5.988,5.134,7.314,3.603,0.809,5.16,2.829,7.809,2.104,2.656,5.083,4.97,3.201,3.108,2.542,2.103,2.309,2.07,2.309,1.462,4.209,5.016,4.617,1.919,1.838,1.674,1.866,2.098,2.703,0.895,2.358,2.668,1.802,0.794,0.539,0.875,1.413,1.507,1.436,0.615,0.635,0.925,1.714,1.047,1.382,1.068,1.071,0.875,1.603,1.502,1.612,1.548,1.784,1.498,5.902,0.891,2.587,2.725,2.38,1.247,1.379,0.449,0.676,0.787,1.635,1.643,1.615,1.993,1.785,1.054,1.565,4.087,8.983,2.936,3.532,3.002,0.896,1.679,2.295,2.259,0.441,4.47,0.893,3.178,1.161,2.734,0.511,7.937,8.001,1.601,9.666,3.135,4.284,4.138,2.181,2.253,2.716,6.91,2.921,0.782,4.882,4.864,2.67,2.02,2.22,2.355,3.19,1.703,3.913,2.163,2.316,1.838,1.786,1.336,1.372,1.231,1.048,0.545,2.376,1.307,1.289,1.623,1.062,0.838,1.303,1.571,2.727,0.468,1.606,1.268,2.685,4.689,7.327,4.668,4.745,3.27,4.963,1.561,0.25,2.228,1.997,1.75,1.769,1.596,0.945,2.021,1.567,1.475,2.597,2.495,3.571,0.16,2.139,1.816,1.982,1.915,1.908,1.555,4.67,2.413,2.484,2.055,3.972,2.029,1.827,1.697,1.69,2.694,0.801,2.355,1.909,4.781,2.234,1.706,1.702,1.532,1.848,1.787,1.91,2.169,2.479,2.189,4.734,1.99,1.693,1.203,1.377,0.736,1.815,1.732,1.704,2.769,2.105,1.115,2.451,1.934,1.707,5.575,3.92,3.928,5.736,4.406,2.048,0.934,1.02,1.748,1.784,0.738,2.367,3.177,1.737,1.791,1.449,1.318,1.319,1.336,1.61,0.474,0.761,0.43,0.527,0.793,0.462,1.36,1.506,1.135,0.955,0.482,1.411,1.423,1.044,1.176,0.504,0.84,3.156,1.555,1.852,1.538,1.637,2.328,1.452,1.975,1.397,1.499,1.67,1.874,1.764,4.965,0.031,0.961,0.059,3.216,4.049,3.463,3.931,1.148,3.886,3.577,3.776,4.308,0.801,5.319,10.024,3.438,2.009,0.852,1.284,1.553,0.042,0.93,1.76,2.619,0.941,1.507,1.348,1.612,1.678,1.225,1.374,2.675,1.967,1.732,3.234,1.324,5.366,13.47,12.309,3.935,5.001,4.749,1.994,1.141,2.156,2.418,2.143,2.722,1.362,2.806,9.265,7.734,6.281,0.932,3.712,1.612,2.907,1.855,2.874,5.941,3.458,2.83,3.45,3.457,2.376,2.374,2.524,2.004,2.605,1.899,1.77,2.568,2.202,4.725,3.153,2.72,2.558,2.083,1.815,1.06,0.401,3.966,2.24,1.811,0.788,0.473,0.789,1.117,1.53,1.457,1.451,2.154,2.862,3.219,2.288,2.335,2.669,3.249,2.933,0.152,2.191,1.553,1.641,2.282,2.434,2.462,2.848,2.063,1.491,1.58,1.009,1.241,2.631,2.677,2.747,3.871,11.504,2.774,2.394,2.318,2.05,2.815,2.326,2.452,2.663,1.18,1.086,5.88,2.082,1.895,2.863,1.719,1.766,2.744,2.524,2.332,1.463,1.789,1.483,1.994,5.389,3.879,2.905,3.248,1.565,1.589,2.607,1.723,1.762,3.615,3.06,2.48,7.797,8.219,4.624,1.218,5.484,3.809,2.951,3.988,5.62,6.195,10.155,10.135,9.287,6.004,6.332,3.768,3.78,3.928,1.661,2.133,2.981,3.271,3.573,8.085,1.023,5.082,2.822,3.446,3.196,2.81,2.634,1.988,2.044,3.105,2.354,3.789,5.108,4.806,6.007,3.528,4.602,0.64,1.77,4.672,9.221,13.274,8.922,29.006,19.386,17.104,6.336,4.801,4.562,3.064,2.313,2.459,1.876,1.844,1.376,1.486,1.324,1.28,1.391,1.158,1.196,1.432,1.334,1.277,1.461,2.459,3.681,3.072,1.533,1.5,1.502,1.031,1.447,1.158,1.096,1.604,0.898,2.65,1.273,1.391,1.239,1.745,3.24,3.375,2.068,2.658,3.728,3.703,6.215,1.699,1.818,2.622,3.121,7.488,1.714,1.67,2.435,5.045,5.037,10.234,1.059,3.242,1.727,1.418,1.831,2.398,4.855,3.036,1.233,0.931,6.053,8.677,1.495,2.531,3.995,2.967,1.843,4.275,8.887,7.167,2.9,2.533,5.401,4.068,1.552,0.993,1.395,4.978,4.456,2.063,0.893,1.746,2.06,2.549,2.489,2.888,2.152,1.661,1.417,0.998,1.283,1.746,1.315,2.498,2.353,2.031,2.185,1.991,1.738,1.706,1.591,2.261,1.727,3.386,1.234,2.786,1.13,1.936,2.585,1.121,1.557,8.534,6.39,4.665,2.697,4.262,2.5,4.895,8.351,13.551,2.559,2.792,3.983,0.73,0.931,1.457,1.919,1.97,2.141,0.318,6.58,3.121,12.171,8.257,0.835,1.012,3.746,9.069,4.847,5.492,6.215,4.159,14.281,5.746,3.605,0.568,1.839,1.671,0.583,2.124,0.406,10.639,0.834,6.206,1.206,2.007,3.191,3.113,1.304,1.474,4.318,4.249,8.898,5.046,3.741,6.39,8.468,3.249,5.097,1.011,2.983,3.855,13.172,1.605,2,1.878,1.059,0.834,7.633,6.91,0.87,1.159,1.36,4.949,10.248,1.032,1.102,2.257,1.262,0.459,1.715,0.349,1.367,0.698,0.605,3.251,5.504,0.957,4.934,4.168,0.944,13.558,2.337,3.495,6.063,0.98,5.91,2.296,2.296,9.267,1.807,1.183,0.836,3.72,1.013,0.977,1.262,1.081,1.16,1.015,1.26,1.109,0.967,1.624,1.398,1.048,0.959,1.073,1.026,1.586,1.137,1.119,1.748,5.411,20.452,1.698,3.085,1.624,4.866,3.425,5.405,0.905,10.085,2.478,0.559,1.704,0.889,1.556,1.363,1.484,1.372,0.346,2.76,0.601,1.402,1.334,0.449,0.733,1.049,0.996,1.174,1.08,1.094,0.847,1.144,1.112,1.032,0.603,1.283,1.224,1.206,1.211,1.209,0.281,4.509,1.566,1.146,10.525,3.784,2.624,2.53,18.608]},"incidents":[{"id":"11043062738629137","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2022-11-18T04:30:00Z","end_time":"2023-11-06T06:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Bauarbeiten zwischen A96 und 12,Autobahnkreuz Memmingen A7 128","long_description":"Fahrbahnverengung von auf eine Fahrspur wegen Bauarbeiten auf der A96 in Richtung Osten zwischen A96 und 12,Autobahnkreuz Memmingen A7 128.","impact":"low","alertc_codes":[743],"traffic_codes":{"incident_primary_code":743},"lanes_blocked":[],"length":804,"south":47.989521,"west":10.136236,"north":47.993835,"east":10.144827,"congestion":{"value":101},"geometry_index_start":16008,"geometry_index_end":16016,"affected_road_names":["A 96/E 43/E 54/Buxachtalbrücke","A 96/E 43/E 54","A 96/E 54"],"affected_road_names_de":["A 96/E 43/E 54/Buxachtalbrücke","A 96/E 43/E 54","A 96/E 54"]},{"id":"853490101331390","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-05-31T05:00:00Z","end_time":"2024-04-11T16:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Gegenverkehr zwischen 13 und 14","long_description":"Gegenverkehr wegen Brückeninstandhaltungsarbeiten auf der A96 in Richtung Osten zwischen 13 MM30 Europastrasse Anschlussstelle Memmingen-Nord und 14 ST2009.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[517,707],"traffic_codes":{"incident_primary_code":517},"lanes_blocked":[],"length":2016,"south":47.998569,"west":10.167442,"north":47.999103,"east":10.194488,"congestion":{"value":101},"geometry_index_start":16054,"geometry_index_end":16075,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"17520281103509368","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T05:57:35Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Instandhaltungsarbeiten in Schwaighausen","long_description":"Instandhaltungsarbeiten auf der A96 in Richtung Osten in Schwaighausen.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":536,"south":48.001953,"west":10.23018,"north":48.004482,"east":10.236305,"congestion":{"value":101},"geometry_index_start":16136,"geometry_index_end":16139,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"7537612629209856","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-13T03:30:00Z","end_time":"2023-11-29T19:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Abschnitte mit Asphaltierungsarbeiten zwischen A96 und 19 B16","long_description":"Abschnitte mit Asphaltierungsarbeiten auf der A96 in Richtung Osten zwischen A96 und 19 B16.","impact":"low","alertc_codes":[704],"traffic_codes":{"incident_primary_code":704},"lanes_blocked":[],"length":5441,"south":48.029598,"west":10.39151,"north":48.037052,"east":10.463298,"congestion":{"value":101},"geometry_index_start":16274,"geometry_index_end":16327,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"1758850640418506","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-03-20T06:00:00Z","end_time":"2023-11-03T19:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Bauarbeiten in Kirchstetten","long_description":"Parkplatz gesperrt wegen Bauarbeiten auf der A96 in Richtung Osten in Kirchstetten.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":332,"south":48.03371,"west":10.4166,"north":48.033946,"east":10.42105,"congestion":{"value":101},"geometry_index_start":16301,"geometry_index_end":16303,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"11525298095640482","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T07:48:17Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A96: Instandhaltungsarbeiten zwischen 35 A99 4 und 36A Hans-Steinkohl-Strasse","long_description":"Instandhaltungsarbeiten auf der A96 in Richtung Osten zwischen 35 A99 4 und 36A Hans-Steinkohl-Strasse.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":104,"south":48.130111,"west":11.416193,"north":48.130229,"east":11.417581,"congestion":{"value":101},"geometry_index_start":17329,"geometry_index_end":17331,"affected_road_names":["A 96/E 54"],"affected_road_names_de":["A 96/E 54"]},{"id":"17505886838271484","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-16T10:41:48Z","end_time":"2023-10-31T16:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"Nymphenburger Strasse: Bauarbeiten in Neuhausen","long_description":"Fahrspur gesperrt wegen Bauarbeiten auf der Nymphenburger Strasse in beiden Richtungen in Neuhausen.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":240,"south":48.151359,"west":11.535882,"north":48.151966,"east":11.538993,"congestion":{"value":101},"geometry_index_start":17557,"geometry_index_end":17566,"affected_road_names":["Nymphenburger Straße"],"affected_road_names_de":["Nymphenburger Straße"]}],"admins":[{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"}],"via_waypoints":[]},{"via_waypoints":[],"admins":[{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"}],"incidents":[{"id":"4291694849469836","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-06-02T13:17:51Z","end_time":"2023-10-25T13:17:51Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"Gabelsbergerstrasse: Bauarbeiten zwischen Türkenstrasse und Oskar-Von-Miller-Ring","long_description":"Bauarbeiten auf der Gabelsbergerstrasse in beiden Richtungen zwischen Türkenstrasse und Oskar-Von-Miller-Ring.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":126,"south":48.145484,"west":11.573184,"north":48.146076,"east":11.574621,"congestion":{"value":101},"geometry_index_start":11,"geometry_index_end":15,"affected_road_names":["Gabelsbergerstraße"],"affected_road_names_de":["Gabelsbergerstraße"]},{"id":"14704333601012295","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T06:24:17Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten in Göggelsbuch","long_description":"Bauarbeiten auf der A9 in Richtung Norden in Göggelsbuch.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":522,"south":49.185817,"west":11.249337,"north":49.189922,"east":11.252802,"congestion":{"value":101},"geometry_index_start":1426,"geometry_index_end":1430,"affected_road_names":["A 9/E 45"],"affected_road_names_de":["A 9/E 45"]},{"id":"12303394303881589","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-10T20:30:00Z","end_time":"2024-10-10T04:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Brückeninstandhaltungsarbeiten in Nerreth","long_description":"Brückeninstandhaltungsarbeiten auf der A9 in Richtung Norden in Nerreth.","impact":"low","alertc_codes":[707],"traffic_codes":{"incident_primary_code":707},"lanes_blocked":[],"length":444,"south":49.352329,"west":11.203218,"north":49.356307,"east":11.20373,"congestion":{"value":101},"geometry_index_start":1530,"geometry_index_end":1535,"affected_road_names":["A 9/E 45"],"affected_road_names_de":["A 9/E 45"]},{"id":"7328765336011248","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T07:10:44Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten in Neuenreuth","long_description":"Bauarbeiten auf der A9 in Richtung Norden in Neuenreuth.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":544,"south":49.882953,"west":11.589944,"north":49.885978,"east":11.595806,"congestion":{"value":101},"geometry_index_start":2345,"geometry_index_end":2354,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"13911959664172729","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2022-11-30T06:30:00Z","end_time":"2024-02-01T14:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Brückeninstandhaltungsarbeiten zwischen 42 B2 und 41 B2","long_description":"Brückeninstandhaltungsarbeiten auf der A9 in Richtung Norden zwischen 42 B2 und 41 B2.","impact":"low","alertc_codes":[707],"traffic_codes":{"incident_primary_code":707},"lanes_blocked":[],"length":523,"south":49.956546,"west":11.605739,"north":49.961177,"east":11.606938,"congestion":{"value":101},"geometry_index_start":2476,"geometry_index_end":2485,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"5091020753035724","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-21T13:00:00Z","end_time":"2023-11-30T22:30:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Fahrspur gesperrt zwischen A9 und 40A,40A/40B,40B","long_description":"Fahrspur gesperrt, Gegenverkehr und Fahrbahnverengung von auf zwei Fahrspuren wegen Asphaltierungsarbeiten auf der A9 in Richtung Norden zwischen A9 und 40A,40A/40B,40B A70 26,Autobahndreieck Bayreuth/Kulmbach.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[500,779,515],"traffic_codes":{"incident_primary_code":500},"lanes_blocked":[],"length":4922,"south":49.986122,"west":11.604267,"north":50.029003,"east":11.610665,"congestion":{"value":101},"geometry_index_start":2521,"geometry_index_end":2607,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"15331284714688288","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-25T05:47:43Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten in Gottersdorf","long_description":"Bauarbeiten auf der A9 in Richtung Norden in Gottersdorf.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":455,"south":50.188774,"west":11.763781,"north":50.192348,"east":11.766878,"congestion":{"value":101},"geometry_index_start":2942,"geometry_index_end":2949,"affected_road_names":["A 9/E 51","A 9/E 51/Münchberger Senke"],"affected_road_names_de":["A 9/E 51","A 9/E 51/Münchberger Senke"]},{"id":"10747413286900560","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-18T11:57:18Z","end_time":"2023-11-06T18:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 24 A4 56A und 25B B175","long_description":"Fahrspur gesperrt wegen Bauarbeiten auf der A9 in beiden Richtungen zwischen 24 A4 56A und 25B B175.","impact":"low","alertc_codes":[736],"traffic_codes":{"incident_primary_code":736},"lanes_blocked":[],"length":7593,"south":50.803825,"west":11.851946,"north":50.86481,"east":11.895605,"congestion":{"value":101},"geometry_index_start":3912,"geometry_index_end":4000,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"8070726696213233","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-07T11:17:47Z","end_time":"2023-12-15T11:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 15 und 17","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A9 in beiden Richtungen zwischen 15 A14 20,Schkeuditzer Kreuz und 17 B181 Anschlussstelle Leipzig-West.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":8044,"south":51.351951,"west":12.180686,"north":51.422115,"east":12.195098,"congestion":{"value":101},"geometry_index_start":4554,"geometry_index_end":4637,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"3366451722945719","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-24T07:22:40Z","end_time":"2023-10-25T16:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 9 L133 und 6 L831","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A9 in Richtung Norden zwischen 9 L133 und 6 L831.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":26474,"south":51.845447,"west":12.327476,"north":52.014865,"east":12.576786,"congestion":{"value":101},"geometry_index_start":5030,"geometry_index_end":5250,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"9694743701479123","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-19T05:29:46Z","end_time":"2023-12-18T17:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen A9 und 2 L88","long_description":"Bauarbeiten auf der A9 in Richtung Norden zwischen A9 und 2 L88.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":6433,"south":52.215442,"west":12.899624,"north":52.269145,"east":12.917621,"congestion":{"value":101},"geometry_index_start":5503,"geometry_index_end":5566,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"16639668173810584","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-01-06T11:55:08Z","end_time":"2025-01-10T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"B2 Strasse Des 17. Juni: Bauarbeiten zwischen Bachstrasse und Hofjägerallee","long_description":"Fahrbahnverengung von auf eine Fahrspur wegen Bauarbeiten auf der B2 Strasse Des 17. Juni in Richtung Osten zwischen Bachstrasse und Hofjägerallee.","impact":"low","alertc_codes":[743],"traffic_codes":{"incident_primary_code":743},"lanes_blocked":[],"length":936,"south":52.513435,"west":13.335547,"north":52.514328,"east":13.34923,"congestion":{"value":101},"geometry_index_start":6335,"geometry_index_end":6368,"affected_road_names":["Straße des 17. Juni/B 2/B 5","B 2/B 5"],"affected_road_names_de":["Straße des 17. Juni/B 2/B 5","B 2/B 5"]}],"annotation":{"maxspeed":[{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,1,1,1,1,null,null,null,null,null,null,0,0,0,0,0,0,null,9,9,9,9,0,19,0,0,0,0,9,9,9,9,19,20,9,9,null,4,4,4,4,null,14,14,null,null,null,null,null,null,1,1,6,6,6,6,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,41,41,50,50,50,50,50,50,50,50,41,41,41,41,41,41,41,37,37,37,37,37,43,43,43,35,35,37,35,35,35,35,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,64,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,38,38,35,35,35,35,35,35,35,35,35,29,29,29,29,12,null,20,20,20,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,14,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,29,17,17,17,17,17,17,17,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,16,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,12,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,6,6,6,6,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,null,null,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,12,12,12,12,null,30,30,30,30,30,30,30,30,30,30,30,30,30,32,32,32,32,32,32,32,32,32,32,32,32,30,30,30,30,30,33,33,33,33,33,33,33,30,30,30,30,33,30,30,0,27,33,27,30,27,27,25,25,25,25,25,25,25,null,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,30,30,30,30,30,30,30,30,30,30,30,30,30,30,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,30,30,30,30,30,30,30,30,30,null,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,14,14,0,6,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,20,17,17,20,6,6,17,17,17,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,6,6,6,6,6,6,0,14,14,20,20,20,20,20,20,20,20,20,20,20,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,16,6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,17,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,14,14,14,0,0,0,0,0,0,null,14,14,14,14,24,24,24,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,null,null,0,0,0,0,0,null,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,null,null,0,0,0,32,32,32,32,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,8,8,8,8,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,null,22,22,22,22,22,22,22,22,6,6,6,6,6,6,6,6,6,6,6,6,16,16,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,32,32,32,32,32,32,32,32,32,32,32,32,50,50,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,35,35,null,41,41,41,41,0,0,0,41,41,41,41,41,41,41,41,41,41,41,40,40,40,40,40,40,40,40,40,40,40,40,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,38,38,38,38,38,38,38,38,38,38,38,30,38,38,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,null,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,0,0,0,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,null,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,null,null,null,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,null,0,0,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,33,33,33,null,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,20,20,20,20,27,27,27,27,19,19,19,19,19,19,32,32,32,32,16,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,19,19,19,19,19,19,19,19,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,41,41,41,41,41,41,41,0,40,40,40,40,40,40,40,40,40,40,40,40,40,null,41,41,41,41,41,41,41,null,41,41,41,41,41,41,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,33,38,38,38,38,38,38,38,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,45,45,45,45,37,37,37,37,37,37,37,37,37,37,37,null,35,35,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32,33,33,33,33,33,33,30,30,30,null,32,32,32,32,32,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,null,35,35,35,35,35,35,35,35,null,null,33,33,33,33,null,33,33,33,33,33,33,33,33,null,32,32,32,32,32,32,0,0,0,0,null,0,0,35,35,35,35,35,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,35,35,35,35,0,0,0,0,0,0,0,0,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,46,46,46,46,46,46,null,null,null,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,null,33,38,37,37,37,37,37,37,37,37,37,37,null,14,14,14,45,45,45,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,24,24,24,24,24,24,24,24,24,24,24,62,62,51,51,51,51,null,8,8,8,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,8,8,8,12,12,12,12,12,8,30,30,30,30,30,30,30,30,null,null,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,12,12,12,30,30,30,30,25,25,25,25,33,17,17,17,17,17,17,17,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,11,11,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,null,0,0,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,0,32,32,32,32,32,32,32,32,32,32,32,32,null,35,35,35,35,35,37,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,25,25,38,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,29,null,22,22,22,22,22,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,32,40,40,22,22,22,22,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,51,51,51,51,51,50,50,50,50,50,50,51,51,54,54,54,54,54,54,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,null,null,null,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,22,27,27,25,25,25,17,17,17,17,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,20,20,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,null,null,19,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,29,29,29,29,29,29,29,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,58,58,58,58,58,58,58,null,51,46,46,46,46,0,0,41,41,41,41,41,41,41,43,43,43,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,22,16,16,8,37,37,37,37,37,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,27,19,19,19,19,8,8,8,8,8,8,8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,12,12,22,22,null,25,25,25,25,25,25,null,48,48,48,48,null,16,16,16,16,16,16,null,53,53,22,22,22,22,22,22,22,22,16,8,8,8,12,12,0,0,0,0,0,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,43,43,43,43,43,43,43,43,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,12,12,12,12,12,20,20,20,20,8,8,8,8,0,0,0,0,0,0,0,null,null,3,3,3,4,4,null,null,null,null,null,12,12,12,12,12,12,null,null,null,20,20,20,20,20,20,17,17,17,17,17,17,17,null,12,12,12,12,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,9,9,9,9,9,9,9,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,1,1,1,1,1,1,null,null,null,null,null,null,null,1,1,1,1,1,1,1,1,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,0,0,0,0,0,0,0,0,0,12,12,12,12,9,9,9,9,9,9,9,9,9,4,4,1,1,1,6,6,12,12,0,0,0,17,24,0,0,0,0,1,1,1,1,1,25,25,25,25,25,25,25,0,8,8,8,19,22,22,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,22,22,22,22,22,22,null,null,null,null,null,null,0,0,0,0,0,0,0,0,30,30,30,30,30,30,30,30,40,40,35,35,35,33,30,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,null,8,8,8,8,8,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"speed":[5.3,5.3,5.4,5.5,5,4.3,4.3,4.3,4.2,4.6,4.6,3.6,3.6,3.5,3.6,5,5,5,7.4,7.4,7.4,8.5,8.5,8.9,8.9,8.9,8.9,8.4,8.4,8.4,8.4,8.4,8.3,8.3,8.3,9.1,9.1,9.1,9.1,8.6,8.4,8.4,7.9,7.4,5.8,5.5,5.5,5.4,5.4,5.4,5.4,6.8,9.2,8.9,8.9,8.9,6.4,7.8,5.5,5.5,5.5,5.5,9.3,9.5,9.5,9.5,11.1,11.9,11.9,11.9,12.4,13.6,13.6,13.6,13.6,15.5,15.5,15.5,7.8,7.8,7.8,7.8,8,8.3,13.9,13.9,13.3,13.3,13.3,13.4,13.4,13.4,13.4,10,10,14,14,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,12.8,12.8,12.8,12.9,12.9,14.6,13.9,14.4,14.4,14.4,14.5,14.5,14.5,15.1,15.1,15.1,15,15,15,15,15.3,15.3,15.3,15.3,15.3,15,15,15,15.1,15.1,15.5,15.5,15.4,15.6,15.6,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,14.7,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,10,10,10,10,10,10,10,10,10,10,12.3,12.2,12.1,12.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22,22,22,22,22,22,22,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.1,21.1,23.4,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.8,23.8,23.8,23.8,23.7,23.7,24.2,24.2,24.2,25.1,25.1,25.9,25.9,25.9,25.9,25.9,25.9,27,26.7,26.7,26.7,26.7,26.7,26.4,26.4,26.6,26.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,27.8,27.8,27.8,27.8,27.8,27.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.7,29.1,29.1,29.1,29.1,29.1,29.1,29.3,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.3,28.3,28.4,28.4,28.4,28.4,28.4,27.8,27.5,27.8,27.8,27.8,27.8,27.7,27.8,26.5,26.9,26.9,26.9,27,27,27,26.9,27,27.1,27,27,27,27,26.9,26.9,27.5,27.5,27.5,27.5,27.5,29.3,29.6,29.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,27.8,27.8,27.3,27.3,27.3,27.8,28.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.3,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.6,26.6,26.4,25.9,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,27.9,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,29.2,28.1,28.9,28.9,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28.1,28.1,28.1,27.9,27.9,28.4,28.4,28.4,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.9,29.7,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.4,29.2,28.7,29.1,29.1,29.1,29.1,29.1,29.1,30,30,30,30,30,30,30,30,29.4,29.4,29.4,28.6,29.4,29.1,29.4,29.5,29.5,29.5,28.3,28.9,28.9,28.9,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.2,29.2,29.2,29.2,28.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.9,28.6,28.6,28.6,28.6,28.6,28.5,28.7,28.6,28.9,28.9,28.9,28.9,28.6,28.9,28.9,29.4,29.1,27.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,29,29,29,28.6,28.6,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,30.7,29.1,25.7,25.8,25.8,25.8,25.5,25.5,25.5,25.5,25.9,26.8,27.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,26.9,27,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,26.6,26.6,26.6,26.7,26.7,23.5,23.3,23.3,23.3,23.3,23.3,23.3,28.1,26.7,27.1,25.3,26.4,26.7,26.6,26.5,26.7,26.4,26.3,26.9,26.5,26.5,26.6,26.6,27.2,27.2,27.2,27.5,27.2,27.1,27.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.4,27.4,27.4,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.7,28.7,28.5,28.3,28.5,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29,29,28.2,27.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.4,25.8,25.8,25.8,25.8,25.8,25.8,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.8,24.5,24.5,24.5,24.5,26.1,26.1,26.5,26.5,26.5,26.5,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.1,27.5,27.5,27.5,27.7,27.7,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.6,27.6,27.4,27,27,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,24,23.4,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,23,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.9,23.3,23.3,23.3,23.3,25.7,25.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.8,27.8,27.8,27.9,27.9,27.8,27.8,27.8,28,28,28,28,28,28,28.6,29.2,29.2,33.3,29.7,27.8,27.8,22.3,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.1,28.1,28.1,28.1,27.5,29.2,29.2,29.2,28.9,28.6,28.6,29.2,29.5,29.5,29.5,29.6,28.6,28.6,28.6,28.2,28.9,28.9,28.9,28.9,29,29,29.2,29.2,31.4,29.3,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.6,28.6,28.8,28.3,28.6,27.7,27.7,27.6,28.4,28.4,28.7,28.3,28.9,28.6,28.6,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.3,28.1,28.1,28.1,28.1,29.6,27.8,27.8,27.8,27.8,27.8,27.7,27.8,27.8,27.8,28.1,27.5,27.5,27.5,27.5,27.5,27.6,27.6,27.6,26.7,26.7,26.7,26.6,26.7,26.7,26.7,25,25,25,25,25,25,23.4,23.6,23.6,23.6,24,25.3,25.3,25.3,26.3,26.3,25.9,26.3,26.9,26.7,26.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.4,29.2,29.2,29,28.4,28.9,28.9,28.9,28.9,28.9,29.4,29.4,29.6,28.9,29.6,29.6,29.5,29.5,26.6,27.3,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27,27,26.9,27,27,27,27,27,27,27,27,27,27.3,23.4,23.4,23.4,23.4,23.3,23.3,23.3,23.5,14.3,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.1,14.1,14.1,17.8,17.8,22.7,22.5,22.8,22.8,22.8,22.8,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,27.2,27.1,26.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.3,28.6,28.6,28.6,28.6,28.5,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29,29,28.9,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.5,29.5,29.5,29.1,31.1,29.5,29.5,29.3,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,22.2,29.2,29.2,29.2,29.2,29.2,29.2,16.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.3,32.3,32.1,32.1,32.1,32.1,32.5,32.5,32.5,32.5,32.5,32.6,32.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.6,32.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,30,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,30.1,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,31.4,31.4,31.4,31.4,31.4,31.4,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.3,29.2,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.1,28.9,28.9,28.2,28,28.3,28.3,30,30,30,30,30,30,30,30,30,30,30,30,30,29.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.8,29.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,35.2,35.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,29.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.5,30.2,31.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.9,30.9,30.1,30.8,30.5,30.5,30.5,30.9,30.9,30.9,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,35.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30,31.4,31.4,29.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31,29.7,29.3,29.7,29.7,29.7,29.7,29.7,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.5,28.5,28.7,28.7,28.7,27.3,28.7,28.7,29.1,28.3,28.3,28.3,28.4,27.6,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.8,27.8,27.8,27.8,27.8,27.8,28.3,25.5,25.7,25.1,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25.3,25.3,25.3,25.3,25.1,25,25,24.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.9,24.9,25,25,25,25,25,24.8,25,25,25,25,25.1,24.9,24.9,25,25,25,25,25,25,25,25,25,22.5,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.3,21.6,21.6,21.7,21.7,21.7,21.7,21.7,21.6,21.6,21.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,24.2,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.9,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.4,24.4,24.4,24.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.4,33.1,33.3,33.3,33.3,33.3,33.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.5,27.5,27.4,27.4,27.5,27.4,28.1,28,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29,29,27.7,28,28,28,28,28.1,28.1,28.1,28.1,27.7,28.2,28,28,28,28,28,28.1,28.1,28,27.8,27.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,28.2,27.9,27.9,27.5,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.1,30.8,30.2,30.2,30.2,29.5,29.5,29.8,29.9,26.2,28,29.2,29.2,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.7,30,30,30,30,30,29.2,29.2,29.2,29.2,29.2,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,29.2,29.7,29.7,29.7,29.7,29.7,29.7,28.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.8,29.1,29.1,29.1,29.1,30,30,30,30,30,30,30,30,30.1,30,30,29.7,29.7,29.7,30.2,30,30,30,29.4,29.2,29.2,29.2,29.2,28.7,29,29,28.8,28,28,28,28,28.5,28.5,28.5,29,29.2,29.2,29.2,29.2,29.2,29.6,29.6,28.9,28.9,28.9,27.9,27.8,27.8,27.8,28.8,28.5,28.6,28.6,28,28,29.2,29.1,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.8,30.3,30.3,29.9,30.3,30.3,30.3,30.2,30.2,28.6,28.6,28.6,28.6,28.8,28.8,28.6,28.6,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,32.4,29.5,29.5,29.5,29.5,29.5,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.8,31.8,31.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,26.3,26.3,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,27.2,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.7,27.6,27.6,27.6,28,28,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29.2,29.2,29.2,29.2,29.2,28.5,28.9,28.9,28.9,28.9,28.6,28.7,28.7,28.7,27.9,29,28.9,28.5,28.5,28.8,28.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,28.9,28.9,28.9,28.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.1,28.4,28.4,28.4,28.1,28.1,28,28,28,28,28,28,28,28,28,28,27.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.5,31.1,31.5,33,33.3,33.3,33.5,29.3,29.3,22.1,22.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.2,28.3,28.3,28.5,28.9,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.9,29.1,29.5,27.8,27.8,27.8,27.8,27.6,27.2,27.2,27.2,27.2,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,27.5,27.5,27.5,27.5,28.6,27.5,27.5,27.5,27.5,27.6,27.6,27.6,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28,28,28,28,28,28.2,28,28,28,28,28,28,28,28,28,28,28,28,28.2,28.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.3,27.2,26.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.2,24.2,24.2,24.2,24,24.4,24.4,24.4,24.4,24.4,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,23.8,24.5,24.5,24.5,24.5,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,24.4,24.4,24.4,24.4,24.4,23.1,23.1,23.1,23.1,23.1,23.1,22.9,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,22.1,22.2,23.2,23,23.2,22.9,22.9,33.3,24.5,24.4,24.4,24.4,24.5,24.5,24.3,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.7,23.1,23.1,23.1,23.6,23.3,23.3,23.3,23.3,21.6,21.8,21.7,21.7,21.7,21.6,21.7,21.7,22.6,22.3,22.5,22.5,22.5,22.5,22.5,22.6,22.6,22.5,21.7,22,22,21.9,23.1,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.3,23.1,23.1,26.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.8,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.3,33.5,33.3,33.3,33.3,33.3,33.3,33.1,28.2,27.9,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.1,27.9,28.9,29,28.5,28.8,28.9,28.9,29.2,28.3,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.8,29.2,29.2,29.2,29.2,29.2,29.5,29.1,29.4,29.2,29.2,29.2,29.2,29.2,29.2,28.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,28.4,28,28.7,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.8,33.4,33.4,33.4,33.4,33.4,33.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,27.2,27.2,28.9,27.6,27.6,27.5,27.5,27.6,27.5,27.4,28.1,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,28.3,27.5,27.4,27.4,27.5,27.5,27.5,26.5,27.5,27.5,28.3,28,27.8,27.8,27.8,27.8,28.5,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.2,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,27.8,27.8,27.8,27.8,28.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28,27.5,27.5,27.5,27.5,27.5,27.5,27,27.2,27.2,27.2,27.4,29.2,29.2,28.3,28.7,28.7,28.6,28.6,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.2,28.3,28.3,28.1,28.2,29.6,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.4,28.4,28.4,28.1,27.8,27.8,27.6,27.6,27.7,27.8,28.3,28.3,28.3,28.3,28.3,28.2,28.3,28.3,28.4,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,30.4,30.6,30.6,30.4,29,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,26.5,26.7,26.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,24.3,17.6,17.8,17.8,3.6,3.6,3.7,9.3,9.4,9.5,9.5,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,9.4,18.5,16.1,12.9,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.8,12.7,12.7,12,12,15.3,15.3,15.3,15.3,16.9,14.2,14.2,14.2,17.9,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,10.6,17.2,15,15,15,16.3,13.1,13.1,13.1,14.2,14.2,20.3,20.3,20.3,15.6,19.7,19.7,19.7,19.7,20.1,19.7,19.7,19.7,19.2,19.3,18.1,18.1,18.1,18.1,18,18,18,18,18,18,22.4,5,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,22.3,16.9,16.7,16.7,16.7,19.7,19.7,19.7,19.7,20.2,23.1,23.1,23.1,23.1,23.1,23.1,23.2,26,27.1,27.3,27.3,27.3,25.9,25.9,25.9,25.9,26,25.8,25.8,25.8,26,25.9,25.9,25.9,25.9,25.8,25.8,25.9,25.9,26.6,28.6,29.1,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.1,28.1,28.1,28.1,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.3,30.3,29.8,29.8,29.8,29.8,29.7,29.7,29.2,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,28.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.2,28.9,28.9,28.9,28.9,33.5,33.4,33.4,33.3,33.3,33.3,33.3,33.3,28.7,28.6,28.6,28,28,28,28,28.1,28.6,28.8,28.8,28.8,29.5,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.3,29.4,29.4,29.4,29.1,30,28.8,29.7,29.7,29.7,29.4,29.4,29.4,30,30,29.1,29.2,29.2,29.2,29.2,29.2,29.3,29.2,29.2,29.2,29.2,29.3,29,29.2,29.2,28.9,29.1,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,28.8,28.7,28.9,28.3,29.9,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.8,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.4,29.4,29.4,29.4,29.4,28.9,29.5,29.5,29.5,30.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,28.7,28.9,28.8,28,27.7,29.2,28.6,28.4,29.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,28,28.3,28.3,28.3,28.3,28.2,28,28,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28.4,26.4,26.4,25.6,26.9,26.9,26.9,27,27,27,27,26.8,27,27,27,26.9,26.9,26.9,26.9,27,26.9,26.9,26,26,26.6,26.6,26.6,26.6,27,26.8,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.3,25.3,25.3,25.8,25.8,25.8,26.1,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,32.8,32.9,32.9,32.9,32.9,29.3,29.2,29.2,29.2,29.2,29.2,29.1,29.1,32.5,32.5,32.5,32.5,32.5,32.3,32.3,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,31.1,31.6,31.2,32.9,33.1,33.1,33.1,33.4,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.8,32.2,32.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.8,31.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.4,29.2,29.2,29.2,29.2,29.2,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29,30,30,30,30.2,29.4,30.1,30.1,30.1,29.5,30.2,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.5,29.4,29.4,29.4,28.8,28.9,28.9,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,29.2,29.3,29.3,29.1,28.1,27.2,29.4,22.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,11.4,24.7,24.7,24.7,24.7,24.7,24.7,24.7,23.2,23.1,22.7,23,23,23,23,23,23,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23,23.3,23.1,23.1,23.1,23.1,23,23,22.9,22.6,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23,23,23,23,23,23,23,23,23,23,23,23,23,23,22.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.7,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.1,24.7,24.7,24.8,24.7,24.6,24.3,24.4,24.3,24.6,25,24.7,24.7,24.7,24.7,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.5,25.6,25.6,25.6,25.6,25.6,27.5,27.5,27.5,27.5,27.5,27.5,27.6,27.4,27.7,27.7,27.8,27.8,27.8,27.8,28.1,28.1,28,28,28,28,28,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.9,28.9,28.9,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.9,28.5,28.5,28.5,28.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.9,28.3,28.3,27,27,27,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.7,27.9,28.9,28.9,28.9,28.9,28.9,28.9,30,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.6,29.1,29.1,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29,28.7,28.7,28.8,28.9,29.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.7,28.7,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.6,28.3,27.9,27.9,27.9,27.9,28.2,27.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.9,28.9,28.9,33.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,22.6,22.3,22.3,22.3,22.3,22.3,22.3,22.1,25.2,24.7,24.8,24,26.2,26.1,26.1,26.2,26.4,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,24.4,24.4,24.4,25.1,25.1,21.9,21.9,22.7,22.1,20.8,20.8,20.8,20.8,20.8,20.7,20.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.7,23.7,23.7,23.7,23.7,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,24,23.8,24.7,24.7,25.9,25.8,25.8,25.8,25.8,25.8,25.8,26,26.1,26.1,26.1,26.1,26.5,25.5,25.5,25.5,25.6,25.9,25.9,26.1,26.4,26.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25.2,25,25,24.7,24.6,24.7,23.1,23.1,23.1,23.2,23.2,18.6,18.6,18.6,18.1,16.9,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,15.9,16.7,16.7,16.6,16.6,16.6,16.6,16.6,15.6,15.6,15.6,15.6,14.2,14.2,14.2,16.7,16.7,16.7,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,16.6,9.6,9.3,9.3,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.1,13.8,13.8,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,14,14,14,14,18.1,18.1,18.1,18.1,18.1,10.3,10.3,10.2,10.2,10,10,10,11.9,11.6,11.6,11.4,11.4,11.4,11.4,11.4,3.7,4.4,8.2,8.3,8.4,9.2,9.2,5.3,5.3,5.5,5.8,5.5,8.5,9.1,8.6,8.6,8.6,8.6,8,8.1,8.3,7.8,7.8,7.8,7.8,7.8,7.8,7.2,7.3,7.5,7.5,7.5,7.5,7.3,8,9,10.3,8.9,8.9,6.1,3.6,3.3,3.5,8,7,8.3,6.9,7.1,7.1,7.2,7.4,8.6,8.9,7.6,8.7,6.1,5.5,5.8,5.8,5.8,5.8,5.7,5,4.9,5.1,5.2,4.9,5.3,5.3,6,5.2,7.3,8.1,7.3,7.8,8.1,8.1,7.4,8.2,8,8.1,8.1,8.6,8,8.2,8.2,7.9,8.6,9.3,9.3,9.2,9.2,9.3,9,9.2,9.2,9.4,9,4.4,4.5,4.5,4.5,4.1,4.5,6.6,8.2,7.9,8.7,8.6,8.6,8.7,8.4,8.2,4.3,4.1,4.1,4.2,4.2,4.1,4.1,4.1,4.2,4.3,4.2,4.2,4.2,4.2,4.8,4.8,4.8,4.5,4.7,4.7,4.7,4.7,7.5,7.5,7.5,8,8,8,8,8,8,8,8.8,8.8,8.8,8.8,8.8,8.8,8.8,8.8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,8.6,8.6,8.6,8.6,8.5,8.4,8.4,8.4,8.4,8.4,8.7,8.2,8.2,11.1,11.1,12.2,12.2,12,11.7,11.7,8.3,8.3,4.8,4.7,4.6,7,8,4.4,5.4,5.4,5,8.4,8.4,7.8,8,8,9.1,9.2,9.2,9.2,9.2,8.4,9.4,6.1,5.8,6.7,6.9,9.4,9.2,9.4,9.2,9.2,9.2,9.2,8.5,8.2,8.1,8.1,8.1,8.1,8.1,8,8.1,8.1,8,8.2,8.2,7.5,8.1,8.1,8.1,8.1,8.1,8.1,7.3,7.3,7.3,7.3,7.3,7.1,7.1,8.6,8.6,8.6,8.6,8.6,8.6,8.3,8.3,8.3,8.3,8.3,8.3,8.3,8.3,11,11,11,11,11,10.9,10.8,10.8,13.9,14,13.9,13.9,13.9,11.4,10,5.1,5,5,5,5,5,5.1,6.3,6.7,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.6,5.6,4.8,6,6.4,6.5,6.5,6.4,6.3,7.5,7.5,7.5,7.4,7.4,7.4,7.4,7.2,7,7.4,7.5,7.6,7.6,7.6,7.6,7.2,7.2,7.2,7.2,7.2,7.2,7.6,6.9,7.2,7.4,7.4,7.4,7.4,5.2,5.2,4.9,5.3,5.3,5.3,6.1,6.1,6.1,6.1,6,6.1,6.1,6.1,4.3,4.3,4.3,4.4,4.4,4.4,5.8,5.8,5.8,5.8,5.8,5.3,4.7,4.7,4.8,5.5,5.7,5.6,5.6,6.9,6.6,5],"distance":[59.5,50,6.1,4.4,86,4.7,2.9,3.1,2.8,3.8,7.5,9.1,18.1,13.6,33.2,12.3,12.5,11.1,11.5,7,6.1,3.7,7.8,6.2,16.9,83.8,19.3,22.2,19.6,10.8,8.8,91.1,160,170,124.6,102.3,33.5,35.2,15.5,8.3,7.1,11.1,4.2,15.4,16.9,1.3,30.5,7.8,10.5,3.1,1.1,1.6,14.4,47,23.5,69.4,128.2,97,20.5,1.3,47.8,12.9,11.8,71.8,85.1,67.5,151.9,134,109.9,21,22.9,14.2,14.7,28.9,157.1,29.4,181.8,113.8,61.2,3.3,99.2,4.6,14.4,14,49.1,130.9,81.5,186.9,51.7,24.4,26.3,21.8,21.8,22,23.9,25.6,18.8,25,15.3,16.5,19.1,13.1,22.2,15.2,12.3,14.2,12.1,27.5,11.4,10,32.6,24.6,21.7,22.9,26.2,13.6,9.4,23.7,80.5,86.7,36.9,33.8,24.7,30.3,25.3,33.9,19.8,27.2,19.2,25.3,49.5,52,95.1,84.8,166.8,42.7,31.2,10.2,80.2,9.8,4,34.5,33.3,34,9.8,8.9,19.2,25.2,12.2,21.3,10.5,10.8,8.3,9.6,10.8,9.2,10.1,14.8,10.6,18.6,17.5,12.3,13.7,20.3,24,60.1,75,21,10.1,15.7,11.1,12.7,13.3,15.9,11.7,7.1,6.1,5.7,5.2,13.9,95.2,27.4,25.3,47.2,20.8,8.5,9.1,8.4,8.4,6.6,8.1,6.8,6.5,6.6,6.6,11.5,70.3,88.7,27.6,12,3.6,44.4,56.6,54.2,137.7,100.1,52.1,52,31.7,38.9,89.5,25.5,22.1,34.4,22.3,35.5,1,29.1,26,37.6,28.3,32.6,31.3,43.4,38.5,3.5,50.1,26.2,45.8,40.2,29.6,27.9,42.5,37.2,18.8,11.9,44.4,26.9,16.7,11.3,28.1,15.3,22,34.9,67.2,42.1,53.5,52.9,37.7,23.7,23.3,38.8,15.5,43.6,19.3,5.6,8.2,82.3,334.4,35.5,38.9,39.6,61.7,87.4,27.7,1.1,48.6,91.4,95.3,18.3,12,28.7,191.4,128.9,160,51.2,0.9,13.4,56.7,90.6,45.7,37.6,22.3,186.2,49,58.1,55.4,249.9,68.9,9.4,41.2,171.4,1.3,17.3,67.2,35.9,126,141,58.8,50.5,34.7,132.7,174.8,6.5,34.4,6.9,318.5,108.8,16.8,0.4,94.5,232.2,138.8,15.1,244.9,57.8,137.5,30.6,26.7,232.9,264.1,44.7,18.9,25.4,103.4,48.5,134.9,270.5,107.8,47.7,295.7,149,200.7,45.1,111.4,122.6,137.6,130.9,64.5,66.7,59.4,36.4,75.9,96.5,66.2,91.7,62.4,69.7,73.7,21.4,35,39.1,44.7,77.4,38.8,50,31.4,24.2,45.7,162.7,136.7,218,53.5,253.2,198.1,35.6,146.2,125.1,108.2,177.5,169.1,106,90.1,66.4,24.1,127.6,74.2,141.5,169,177,195.1,71.5,71.8,266.5,192.8,80.2,71.5,119.6,41.9,2.7,158.4,142.9,2.6,150,96.1,129.7,151.7,147.9,121.3,35.7,48.6,234.5,29.7,61,181.2,279.5,249.4,89.5,261.4,385.5,12.1,74.4,54.9,309.4,203.7,240.2,37.2,150.1,69.4,11.2,32.7,157.5,3.2,38.7,557.5,46.7,7.8,238.3,29.1,24.3,30,161.7,1823.3,134.5,118.4,99.3,135.6,123.3,98.4,109.2,86.5,112.8,452.6,1116,128.2,196.9,108.4,76.4,126.7,128.1,18.4,21.2,31,20,36.5,81,54.6,71.7,48.6,45.8,89.5,85.7,100.7,94.1,51,204.1,56.5,62.1,39.7,76.5,39.2,41.8,97.3,53.9,56.9,55.8,54.3,118.8,63.6,57.2,695.1,489,251.6,133.8,69.3,165.1,440.2,151.8,38.8,72.9,156.7,192.1,49.6,192,9.8,551.2,318.3,34.3,67.9,141.8,142.9,142.1,138.1,162.7,131.2,507.9,98.4,76.9,72.7,70.9,89.3,73.9,70.8,0,68.2,41.4,105.7,59,186,400.3,86.7,139.5,385.6,79.7,45.7,46.9,40.7,33.4,46.3,87,143.8,62.6,47.7,87.9,78.7,64,78.5,102.2,668.4,114.1,195.4,197.8,70.6,74.3,127.6,64.1,35.6,36.5,32.4,32.9,66,37.6,39.3,40,38.3,69.5,80.6,91.3,83.2,70,56.8,53.4,71.2,90.5,128.4,125.4,60.8,46.1,69,219.1,42.8,6.6,123,75.2,74.8,77.6,81.3,40.4,88.3,40.5,49.4,32.7,37.7,72.1,56.4,41.9,160.8,138.4,49.9,48.2,47,60.9,46.7,52.9,39.1,35.7,31,56.4,39.2,56.3,50.9,55.4,68.1,73.5,68.6,83.5,57.9,297.1,285.3,22.5,108.2,20.8,64.1,53.3,55.4,52.7,54.4,34.3,54.2,52,74,38,50.4,39.3,36.8,68.5,92.4,215.9,251.3,451.4,72.7,67.2,67.6,54,147.8,68.3,57.6,233.7,44.7,6.4,127,11.2,72.6,77.6,53.1,52.6,72.9,40.3,59.4,45.6,76.3,24.3,17.2,34.9,44.6,43.8,39.6,262.1,188.5,71.4,89.9,59.2,49,67.7,55.3,35.6,33.6,35.4,178.5,112.5,27,20.3,51.8,74.4,2.9,164.9,8.8,42.8,17,46.4,79.6,53.2,34.7,21.1,32.2,36.1,36.1,53.4,42.4,41.3,22.1,22.2,31.6,38,24.7,16.7,17.7,37.9,26.3,25.6,36,42.2,30.4,37.3,37.4,26.4,20,148.5,62.5,82.1,15.9,139.7,66.2,95.8,85.2,9.3,10.1,9.6,68.7,85.5,86.9,79.7,126.3,159,250.1,82.8,24.3,510.4,34.7,353.8,26.5,76,144.7,127.1,126.5,64.9,222.3,174.1,169.5,25.9,82.4,92.5,71.1,86.8,147.8,123.1,38.1,12,21.8,202.3,143.2,69.5,19.1,20.4,32.6,91.5,35.4,73.7,52,56.4,103.3,19.7,216.4,76.7,84.8,75.9,64.4,66.1,64.6,78,82.8,76.2,75.1,79.6,80.7,91.4,47,47.9,32,14.1,33.5,37.5,48.8,169.9,101.5,115.5,58.2,118.9,37.3,179.5,855.9,18.9,206.9,17.6,69,104.7,31.3,9,30.1,53.1,157.9,81,83.8,84.1,30.7,90.7,161,65.5,57.3,29.6,371.1,630.9,163.8,124.6,180.2,125.7,108.1,179.5,35.3,88.3,126.2,143,459.2,130.7,41.3,131.8,4.3,30.6,441.9,50.8,11.4,108.8,206.3,6.8,615.9,114.9,83.1,116.8,145.8,76.3,129.6,106.1,420.8,474.2,7.2,82.6,9.4,116.9,27.9,109.9,60.6,30.2,41.6,6.1,101.9,51.9,48.6,62.7,39.3,406.3,329.8,123,93.4,161.3,90.1,91.9,103.1,45.5,423.8,116.3,917.1,150.1,350.1,905.6,39.8,22.2,59.5,56.8,70.9,58.6,36.3,14.9,141.4,73.8,58.5,49.6,48.4,79.4,62.4,8.5,48.2,101.2,117.1,143.3,3.2,27,6.1,245,383.4,353.1,93.6,49.6,87.1,174.3,96.6,60.5,40,26.4,108.9,64,166,79,200.6,44.4,352.2,5.3,12.8,108.6,100.4,109.4,104.5,104.7,114.3,251.8,520.5,249.3,590.8,72.5,73.9,134,125.4,2,556.3,84.9,72.1,76.9,61.4,57.1,19.7,103,75.4,47.9,128.7,40.9,115.6,178.9,144.5,271.2,70.1,37.2,53.3,53.1,56.2,68.8,53.8,55.8,88,71.8,49.4,58.4,56.9,73.8,52.1,55.5,121.7,46,188.4,107.6,79.5,99,188.8,47,2.4,135.2,67.3,258.6,233.8,92.9,69.9,92.2,115.8,94.4,24.4,93.8,142.4,107.8,88.4,161.9,248.6,202.8,683.7,470.9,26.1,307.3,70.6,102.3,88,86.9,49.2,51.8,46,44.5,241.3,57.4,58.7,42.8,45.4,60.9,52.2,93.7,131.5,27.2,101.9,180.6,46.9,114.3,322.8,118.3,185.8,32.7,137.9,99.3,53,159.8,164.8,90.1,54.2,101.1,95.3,72.8,108,70.7,247.2,624.9,63,117.9,116.5,88.4,89.8,90.3,339.3,143.2,82.4,7.9,91.2,89.6,142.3,81.2,83.7,15.3,39.9,68.8,53.4,110.6,86.3,40.6,33.8,13.9,19.9,174.4,315.6,150.5,169.5,277.1,229.2,109.2,55.8,95.6,400.8,91.5,93.7,53.2,54.4,94.5,194.6,73.5,83.4,96.8,40.8,49.6,176.4,100.6,25.8,20.1,37.9,53.3,56.9,49.4,34.9,35.6,100.7,107.5,77.2,78.4,60.4,59.5,73.7,56.3,2,65.2,20.6,38.2,14.4,26.9,121.2,27.8,42.1,61,86.7,38.1,54.6,73,57.4,182.4,98.2,43.8,55.5,79.7,83.2,68,50.7,46.5,18.9,202.7,586.7,247.2,98.8,81.8,35.3,22.3,93.9,49,68.3,49.3,32.8,0.8,36.8,39.9,29.7,36.7,23.9,35,45,32.7,43.4,45.7,80.8,34.8,79.6,44.7,54.4,25.1,24.4,56.7,32.5,20.8,63.4,50.1,27.1,43.8,47.2,65.2,61,97.3,5.1,56.9,76.6,78.1,141.5,18.1,29.3,21.6,35.7,76.3,68.7,58.8,69.5,72.7,57.5,93.2,82.1,102.7,92.4,89.4,33.4,55.3,72.8,108.1,122.8,121.8,21.2,75,36.8,41,56.8,6.6,49,156,66.2,5.8,57.8,70.1,60.2,61.9,67.3,70.1,60.1,53.5,40.1,24.9,32.8,36,35.8,40.5,61.5,147.3,162.8,73.8,51.6,55.2,50.5,55,48.8,54.9,38.7,43.6,32.1,34.8,33.6,57,48.8,42.2,41.7,45.8,56.2,96.6,201.3,117.2,95.3,96,41.5,24.1,45.3,37.1,43.1,49.8,33.9,45.2,45.4,43.3,47.5,33.2,56.2,53,42.4,40.5,49.1,52.2,48.3,39.6,32.5,37.3,37.4,49.5,40.1,33.2,53.9,252.7,96.5,63,48.2,45.6,66.6,58.6,51.1,56.6,179.4,78.4,95.3,79.4,32.2,23.2,41.2,78.7,34.8,40.2,32.3,58.7,76.7,34.7,59.8,92.3,71.7,70,145.3,24.1,55.9,104.5,110.6,102.2,51.9,46.3,46.2,42.7,69.5,90.8,60.6,68,114.4,67.7,40.1,134.3,114.6,175.2,102.1,45.7,53.5,44.5,38.9,50.9,48.4,44,54.6,71.1,380.1,161.6,38.8,65.8,93.8,56.1,76.6,41.2,73.8,79,63.1,75.8,228.1,51.2,341.3,36.9,275.9,282.2,298.8,347.4,108.9,85.7,87.9,67,78.9,124.4,52.8,166.4,119.9,164.5,92.2,71.2,109.4,108.3,206.6,526.7,23.8,655.7,199.6,386.3,257.3,42.4,36.1,96.2,90.9,161,202.7,173.8,159.8,173.9,502.3,253.3,56.5,56.8,68.1,22.4,24.7,43,134.1,43.5,135.7,180.8,135.2,24.6,22.9,279.7,116.7,133.8,100.3,81.4,319.7,359.1,168.9,357.9,42.3,403.8,24.3,502.7,6.4,248.6,248,211.3,219.6,171.9,125.9,463.6,345,84.6,57.1,125.4,186.4,135.7,91.4,66,70.7,152.8,144.6,70.8,23.1,150.8,287.9,51.3,88,22.5,259.4,152,204.1,134.9,233.3,424.1,33.4,174.7,553.4,337.3,28.2,422.9,535.2,52,21.7,72.2,101.3,108.2,64.1,112.3,55.2,344,186.4,5.3,27.9,154.7,36.2,847.7,315.3,308.5,206.2,218.9,24.1,590.8,52.4,39.9,127.1,104.2,54.6,76.6,169.6,130.9,26.4,232,32.1,467.2,160,26.6,483.7,240.1,0.6,529.2,141.5,156.2,172.5,110.5,84.7,93.5,372.8,695.3,229.7,242.2,334.8,20.6,248.1,909.6,594,110.5,9.5,150.2,126.2,216.2,121.3,110.1,313.5,133.9,247.3,219.2,42.1,319.6,136.9,679.4,103.1,49.5,98.4,48.4,4.6,56.6,214.9,9.7,163.8,19.7,33.9,45.4,9.2,117.7,143.3,69.9,102.9,62.1,19.8,25,108.7,92.4,83.3,66.3,93.9,268.3,26.8,30.7,43.6,35.6,27.3,213.2,22.5,107,192.7,154.5,726.7,568.3,65.5,65.8,85,41.1,59.3,66.9,68.2,162.8,28.5,53.5,62.2,29.5,103.7,37.2,70.2,77.6,41.2,97.5,15.2,50.3,22.6,94.9,32.6,25.1,2,5.8,48,71.8,15.6,28.9,10.3,54.7,69.1,72.7,404.2,134.2,151.2,154,86.1,23.5,30.7,27,59,32.5,87.7,94.6,52.3,56.2,65.9,84.7,50.6,64.3,44.7,58.1,98.2,26.2,46.4,52.5,132,159,187.6,149.7,117.6,190.5,97,105.4,55.7,49.6,274,25.1,140.8,21.7,227.4,266.7,788.5,37.5,149.9,125.8,223.7,129.1,253.2,214.9,241.6,268.7,69.8,93.4,173.8,78.4,70.3,180.7,63.2,78.8,54.3,87.7,63.9,112.3,64.7,80.3,81.5,102.6,104.7,170.4,183.9,6.4,194.6,114.1,67.6,40.9,63.7,37,46.1,64.2,1.7,169.4,125,91.7,15.7,130.3,67.2,105,323.7,83.1,11,138.9,211.2,179.1,297.4,74.9,238.7,226.5,348.1,75.1,270.3,370.1,330.9,76.6,113.9,97.2,135.6,135.7,54.7,64.9,105.9,115.2,148.8,516.9,142.6,119.9,409.7,291.4,80.5,9.5,30.7,72.6,53.4,123.8,87.5,53,173.8,160,111.4,343.2,209.4,172.7,151.8,127.9,176.3,128.4,844,524.2,442.7,189.8,481,81.7,82.6,220.1,31.6,139.4,219.3,142.2,143.1,84.1,108.9,28.5,44.2,66.3,26.6,44.5,73.7,74.7,81.9,25,38.8,46.3,101.5,22.2,240.8,320.6,180.6,190.1,189.5,177.6,113.6,74.7,52.9,56.4,75.4,58.2,50.2,42,55.3,47.3,54.4,54.1,69.8,62.1,95.5,51.9,65.4,58.9,65.4,34.4,32.5,66.3,49.5,57,47.2,49.7,63.4,67.2,64.3,42.4,27.6,53.1,71.2,76.7,42.9,51.1,45.7,71.2,79.5,73.3,74.2,69.7,101.4,62.2,50.5,43.1,46.1,81.9,86.9,97.2,120.8,91.3,96.5,19.8,0.7,356.4,111.7,111,83.3,87.5,11.8,0.6,46.2,49.9,63.9,53.3,2.2,68.6,56.8,68.5,66.7,70.4,56.1,68.6,80.5,110.7,140.1,155.3,94.4,16.9,115.8,109.9,101,4,97.5,108.6,98.9,108.9,257.1,96.7,195.5,180,30.3,84.6,70.4,51.5,21,60.1,38.8,42.7,23.5,35.1,38.3,16.2,60.7,252.2,2.3,114.3,38.3,279.6,229.7,40.8,116.2,125.7,155.4,31.9,51.1,38.7,48.2,99.8,142.2,4.2,205.9,44.1,53.1,69,81.4,68.7,131.2,81.5,53.5,56.5,43.9,48.7,61.3,55.6,58.7,42.3,78.4,71.2,31.2,53.5,46,50.5,40.3,47.7,34.2,37.3,25.3,40.9,49.4,51.2,63.9,55.9,53,48,47.6,74.9,65.8,77.6,59.6,63.8,49.2,66.4,52.6,45.3,30.8,29.8,52.5,50.2,52.5,60.2,56.2,101.8,53.9,40.2,153.6,181.6,170.9,156.9,157.7,110,43.1,130.3,75.4,88.9,56.9,26,34,43,61,48.1,71.5,71.3,27.3,105.2,54.3,50.8,85.1,44.1,119.4,308.5,42.3,86.3,24.7,368.4,386.5,72.1,54.5,131,364.3,253.6,49.4,147.6,83.3,104.6,138.3,142.2,123.5,102.4,80.8,99.3,72.3,73,40.3,53.5,78.4,55.6,41.2,58.7,54.5,68,22.8,84.6,10.6,76.3,71.2,66,44,169.6,61.5,233.6,267.9,125.4,365,67.3,110.2,80.4,59.7,59.6,84.6,40.4,85,86.1,76,83.7,93,98.3,330.5,144,12.9,474.1,145.2,72.2,80.3,75.2,86.2,34.3,55.7,85,37.8,34,64,38,58.9,63.3,20.3,62.2,101.6,200.5,26.4,62.6,59.7,24.9,35.1,73.1,42.8,50.3,50,64,45.4,59.9,71.1,39.4,115.9,73.7,62.3,209.9,217.8,155.2,31.7,124.9,84.3,60.6,88.1,95,61,18.2,13,18.2,27.3,12,16.8,37,175,167.7,96,36.2,106.3,81.8,82.2,118.3,63,51.7,54.9,56.4,49.5,50.4,31.5,68,83.7,79.1,60.5,68.1,75.5,47.2,62.6,63.5,117.2,85.2,67.3,99.6,115.6,45.6,46.8,67.1,74.6,81.8,73.9,193.6,80.2,72,53.7,77.4,37.8,34.3,32.2,47.6,28.9,22.5,68.1,57.9,55.8,70,68,34.9,41.1,35,43.2,38.6,57.7,4.9,19.4,113.9,83.3,54.1,58.9,55.4,76.5,47.7,61.3,91.1,102.5,74.5,161.1,4.7,25.4,73.2,70.3,17.2,50.9,46.8,52.2,65.8,50.7,65,67.6,65.1,54,28.2,33.1,50.7,63.5,47.4,66.5,44.4,40.3,46.2,49.1,43.5,43.2,68.3,38.6,32.1,60.1,44.7,152.8,153.5,93.5,52.6,44.8,78.4,42.1,38,46.4,45.6,78.4,70.8,75.2,27.2,54.1,95.6,124.8,42.8,54.3,45.2,36.5,147.2,77.6,68.4,57,69.9,106.4,49.3,43.9,47.6,45,52,42.7,45.3,46.6,123.1,46.2,81.4,77.5,82.6,39.5,33.3,58.3,94.4,24.8,97.6,44.3,23.5,58.3,71.3,37.9,31.6,107.3,232.5,37.5,62.4,115,72.5,105.6,5.6,165.4,79.5,80.6,65.9,105.7,84.2,72.9,77.8,79.2,69.4,44.5,35.1,120.8,83.7,215.8,109.2,109.3,90.8,76.3,97.8,71.7,80.3,79.9,73.7,75,84.9,52.5,37.7,97.3,167.2,179,49.6,120.2,192.4,98.8,76.7,63.5,65.4,68.1,76.9,61.3,46.2,84.2,75.2,98.3,75.4,85.9,59,107,78.6,87.4,80.7,52.4,55,56.8,49.5,34.2,110.5,105.9,69.8,59.1,63.2,57.7,67,68.1,67.4,65.4,59.4,80.5,87.9,51.6,54.5,208.3,125.6,56.2,62,35.3,40.2,32.3,39.9,40.5,33.8,44.8,41.2,71.5,58.7,63.8,68.8,61.7,74.1,75,75.3,72.8,70.9,89.6,68.8,101.2,51.2,91.2,127.7,84.7,145.9,54.2,173.3,90.2,53.1,47.1,161.4,105.9,70.2,42,56.4,79.8,44.4,46,69.7,40.4,30.2,7.7,36.4,88.6,71,69.7,46.5,42,75.8,64.9,49.1,8.6,40.3,40.3,48,36,54.8,57.8,56.8,85.7,76.3,75.7,81.6,88.3,280.4,163.4,79.5,0.5,89.9,119.5,42.9,82.5,82.6,153.2,15.5,64,27.3,72.8,28.7,41.4,80.3,89.6,112,71.1,88.2,123.3,67.8,75.7,41.8,88.2,105,17.9,91,97.1,95.6,56.4,115.5,51.9,107.8,101.4,106.2,110.5,48.3,111.9,165.8,107.1,87.6,61,38.4,34.8,24.7,25.1,34.6,43.2,69.1,66.5,41.9,48.2,31.7,20.4,39.7,35.1,56.9,30.1,69.1,31,61.8,70.6,70.7,25.2,81.2,102,101.1,64,95.1,38.4,21.4,62.3,76.3,25.8,44.6,24.7,51.5,13.3,34.2,126.8,16.7,97.3,57.2,122.8,92.8,116.3,18.6,102.4,66.1,59.8,29.5,26.5,48.8,54.5,0.5,40.8,14.9,18.3,46.9,62.4,44.8,36.8,52,83.6,88.3,99,13.1,24.8,49,151.3,59.5,52.8,40.2,62,62.9,20.1,75.9,61.2,101.3,52.9,77.9,34.2,73.6,117.2,45.6,7.7,55.2,51.1,228.4,236.6,43.3,116.2,39.5,67,114.7,43.9,47.7,51.5,139.6,99.3,27.7,68.5,125.1,94.3,102.9,41.3,24.7,97.3,43.6,47.6,94.5,36.9,60.6,72.4,28.9,43.9,40.2,96.7,86.4,104,103.7,44.1,19.9,36,75.4,73.9,101.4,95.1,56.3,54,52.8,39.8,45.6,34.4,31.8,28.8,60.2,56.9,53.1,62.7,56.7,43.9,100.5,14.4,78,45.5,24.5,27.7,56.8,36.8,50,60.8,43.5,41.9,41.7,37.5,30.9,8.8,50.6,77.1,128.9,38.7,39.8,53.8,17,37.1,188.5,68,16.3,29,73.5,20.2,155,91,74.3,66.7,32.6,33.4,34.5,10.2,6.2,14.3,31,25.3,36.3,46.8,49.4,50.2,135.9,112.1,50.6,24.4,130.8,77.7,77.8,59.7,151.4,46.2,82.2,104.3,34.9,37.3,24.1,45.1,52.3,80,64.5,62.5,74,23.1,23.4,49.8,103,61.8,61.9,61.9,61.8,94.9,46.2,20.2,120.3,92.9,95.3,92.4,75.3,64.3,104.9,72.3,102,97.9,46.7,68.3,84.5,99.6,90.9,67.5,65.2,85.3,10.5,50.2,83.2,33.6,39.8,83.4,161.7,37.1,51.8,66.8,49,46.6,74.8,48.7,82,34,36.6,70.9,49.6,68.4,55.3,46.5,3.7,63.9,59.5,55.5,70.6,51.5,47.6,95.5,103,107.7,42.1,78.2,133.1,56.5,57.5,51.3,60.6,50.1,55.2,56.6,46.1,43.6,52.8,66.2,92.7,47,39.3,76.4,124.8,57.6,53.4,52.4,68.2,60,7.7,8.7,39.9,65.2,89.2,120.7,92.9,77.7,125.6,62.8,64.8,54.5,56.1,64.5,64.8,134.1,116.4,89.9,20.2,105.3,45.5,62.4,55.4,125.1,35.5,37.7,185.7,1.8,192.4,97.1,67.3,116.1,115.1,126.3,102.2,30.9,107.1,36.3,65.3,297.7,163.8,73.6,71.9,71.3,66.7,86.9,101.9,34.3,79.2,94.1,208.5,35.2,79.5,70.6,70.9,52.7,64.3,60.3,65.8,55.8,19.1,31.6,59.1,67.4,55.4,202.5,27,24.3,76.7,95.5,75.6,88.5,61.9,16.2,81.7,53,23.3,60.1,30.5,74.2,98.2,71.5,46,29.3,31.5,13.6,51.3,83.5,101.5,94.3,84,83.6,39.9,55.3,77.8,64.3,124,127.2,44.2,89.6,111.4,279.7,485.5,185.4,58.6,54.3,72.9,72.6,38.9,47.1,74.7,71.6,37.9,49.4,30.2,45,73.8,51.8,45.4,30.1,22.6,38.7,42.3,39.7,59.1,36.3,42.6,48.2,49.7,70.9,94.4,102.4,43.4,27.7,70.6,79.2,92.4,34.4,64,40.9,31.4,48.5,41.1,40.6,44.4,69.1,58.6,47.9,46.9,72.5,87.4,83.1,187.4,30.4,94.3,106.4,72.8,54.2,103.8,63.5,55.4,85.8,63.4,6.1,55.3,47.5,61.1,26.4,48.9,67.7,28.7,28.7,27,73.1,79.8,50.7,48.4,186.5,40.7,124.7,35.6,85.4,24.5,21.6,51.1,40.6,39.8,10.8,12.2,39,18.5,33.1,37.2,54.1,53.5,41.5,37.4,49.2,37.6,84.2,39.8,33,49.5,31.9,29.7,31.6,36.3,54.5,71.4,60.1,45,69,51,51.9,54.9,51.4,96.9,101,7.1,33.6,97.9,74.6,125.5,118.9,62.7,63.8,71.9,93.1,117.5,115.7,71.3,125.8,118.5,121.9,37.4,62.9,19.6,23.2,18.9,47.9,25.7,114.6,80.7,107.9,53.3,24.8,29.8,115.5,117.1,62.9,117.9,66.5,43.9,112.9,102,118.4,109.9,120.2,76.2,71.3,52.2,98.5,6.7,29.5,50.3,10.4,54.1,53.2,8.3,23,22.1,5.7,214.6,105.1,65.3,19.3,114.3,104.2,41.4,58.2,60.7,52.9,43.6,103.1,109.2,74.6,16.3,98.6,29.9,64.2,104.5,81.2,110.7,86.6,26.1,69.6,104.1,61.5,41,92,76.2,120.7,59.3,108.6,52.8,86.8,82.3,77.3,88.2,39.8,29.5,74.3,71.2,53.4,45.6,84.9,13,76.9,0.1,76.9,36.5,38.4,50.8,74.9,71.1,88.6,17.7,54.1,87.3,84.5,46.1,82.2,39.9,76.8,105.5,109.7,104.8,144.3,9.6,31.2,92.5,31.4,13.5,11.9,33.4,58.8,98.1,86.7,33.1,64.3,89.4,94.3,87.2,104.1,106.8,100.3,78.1,36.8,117.7,109.6,48.7,59.4,100,19.3,15.9,28.9,98.7,110.5,77.7,30,106.6,101.3,82.3,108.9,83.2,23.2,64.8,42.9,76,108.8,107.5,65.1,46.3,65.3,37.6,74.3,106.4,109.6,57.1,50.9,109.7,104,111.9,94.3,90.3,115.2,119,32.5,48.2,74.6,81.3,97.4,43.6,48,51.5,46.8,56.8,46.7,44.3,82,12.6,41.6,64.1,45.1,77,53.4,58.2,29,43.3,29.6,49.3,65.7,129.3,274,193.3,250.5,47.8,136.9,34.9,325,26.9,46.3,196.9,219,213.4,27.9,141.1,91,37.5,303.9,17.7,59.8,39.7,21.7,40.8,58.2,122,173.5,52,86.4,72.2,85.5,45.3,64,63.6,77.1,59.1,35.7,29.7,98.5,91.4,169.1,72.2,28.7,4.2,163.6,26.7,168.6,113.3,140.4,65.4,162.2,39.3,40.9,60.7,36.5,22.7,13.3,35.8,34.7,35.6,34.6,35.4,34,32.6,72.9,105.2,57.9,39.5,84.4,55.5,34.8,72.3,47.3,45.3,48.1,41.2,46.6,47,43.3,36.6,60,82.1,71.4,115.9,45.1,108.7,53.7,49.7,48.2,45.1,63,54.6,61.7,66.3,31.3,49.4,52.9,44.4,61.4,48.2,47,46.6,46.8,41.9,34.9,47.1,70,59.3,62.3,45.2,32.9,72.2,209,118.7,7.6,152,49,15.8,57,56.1,21.1,46.3,63.3,82.3,60.2,73.8,12.4,63.8,18.9,0.6,40.8,68,36,56.7,53.5,49.8,53.4,42.4,40.3,45.2,50.1,80.3,52.1,38.4,56.3,47.2,18.3,2,105.5,54.4,122.8,111.1,91.3,28.9,66.8,46.2,58.6,48.5,47.2,32.3,69.5,48.7,50.6,109.4,92.3,54.5,51.9,28.2,36.3,71.5,64.4,78.9,37.1,59.7,40.3,48.9,54,72.6,60.1,70.5,54,38.7,43,40.6,36.1,50.2,36.5,35.4,36.1,35.3,60.1,36,30,51.9,101.9,285.3,37.1,39.7,28.9,32.4,31.2,24.8,30.6,33.7,35.8,0.5,35.6,47.2,60.4,34.5,29,30.8,33.6,23.3,24.2,44.5,34.7,30.8,71.9,35.9,33.5,21.5,37.1,32.7,47.5,49.6,43.4,5.9,2.2,15,24.7,36.2,28.7,21.4,27.8,24.6,21.6,40.7,42.8,46.7,32.1,49.3,50.1,34.7,33.9,53.6,45.4,46.1,0.3,44.7,43.3,57.3,61,13.2,56.7,34.5,3.7,23.4,49.7,42.7,27.5,28,28.6,30.1,31.2,31.6,76.7,71.1,256.4,65.4,24.4,90.1,50.7,57.2,70.7,25.5,31.9,53.6,73.4,48.2,152.3,55.5,151.3,43.7,34.7,94.5,119.1,102.6,30.5,20.7,131.5,44,81.7,29.3,40.5,74.1,55,90.3,19.6,34.4,34.3,4.3,25.7,51.4,36.1,73.3,160.1,132,59.7,52.2,53.8,58.5,52,44.5,79.2,61.6,60,67.7,62.2,139.4,68.5,53.9,110.6,111.2,210.8,50.2,101.9,73.5,137,105.1,91.1,80.6,37.2,55.3,64.3,48.3,111.9,107.1,142.4,399.8,119.4,162,56.5,65.9,121.6,106.8,105.1,125.9,123.8,100.6,41.9,56.8,122.8,123,40.7,87,63.1,81.2,82.4,73,145.3,102,206.9,291.7,56.2,33.1,42.5,55.6,61,68.6,55.9,60,60.8,67.9,73.8,39.8,39.9,79.2,56.5,72.3,75.4,64.1,71.6,119.5,104.7,58.5,70.2,73.4,71.1,62.3,70.7,69.1,71.5,57.6,32.2,26.7,47.4,28.9,43.7,50.4,50.8,53.5,52.8,47.9,47.8,43.2,42.5,76.9,52.1,46.8,35.3,57.2,172.4,167.2,46.5,46.7,40.3,40.8,43.5,43,84.9,0,463.9,21.7,61.8,449.7,90.9,90.5,83.5,86.1,32.6,129.5,229.3,143.3,144.8,150,153.7,3.5,134.5,83,57.9,126.2,127.3,137.2,67.2,87.4,129.7,141.4,97.6,39.5,60.3,62.8,81.9,46.5,100.4,102.8,34.1,4.6,35.5,101.8,45.1,61.4,63.5,98.2,91.9,94.7,87.6,320.4,232.8,13.8,48.5,51.9,48.4,49,38.3,42.2,28.5,43.4,38.5,24.2,35.5,51.7,62.9,64.3,54.3,71.1,80.2,248,89.3,92.7,88.5,74.1,52,50,1.6,55.6,50.2,30.7,37.2,40.9,48.7,9.3,63.9,33.5,9.5,39.7,57,55.6,57.1,17.9,27.9,44.5,32.7,48.2,49.7,47.3,48.1,149.6,73.3,55.9,20.1,14.8,167.4,35.6,218.4,125.5,32.1,54.3,98.4,56.6,94.5,66.8,272,162.7,97.3,327.5,129.8,106.3,127,266.5,506.3,68.2,42.9,41.8,77.7,140.9,113.4,50.4,59.2,109.4,106.4,223.3,376.8,119,255.2,186.4,46.5,23.6,26.4,38.9,40.5,60.7,74.4,46.6,220.5,500.1,494.2,18.5,10.3,477.9,448.8,49.1,50.1,49.7,49.6,50.2,49.9,49.3,50.5,49.3,49.9,62.2,36.7,49.7,49.9,59.2,49.3,50,49.5,147.5,22.9,172.9,82.6,99.5,91,32.8,28,69.2,83.9,41.8,57,52,29.2,64.9,71,76.7,420.6,458.7,445.4,57.5,50.5,70.6,56,62.8,108,31.9,172.8,462,23.2,290.7,206.6,199.4,20.4,203.5,72.8,511,507.9,223.9,81.5,76.7,73.1,77.4,224.3,232.7,46.9,139.6,60.7,60,60.4,60.6,60,60.3,60.9,60.2,60.1,60.9,60.4,60.4,60.5,60,60.5,5.6,33.3,61.1,60.4,121.3,60.3,60.5,56.8,3.7,70.3,70,318.7,182.2,79.4,59.6,70.2,69.2,27.7,121.7,59.5,60,59.3,59.1,59.4,60.8,59.9,59.8,59.2,60,59.3,59.8,59.2,59.3,62.5,117.4,45.1,141.6,31.4,103.1,20.5,95.1,201.5,29.9,171,165.8,39,121.8,90.1,36.2,47.8,230.6,75.8,156.9,34,10.6,188.4,72.2,55.6,42.1,123.7,55.4,109,19.3,150.6,67.5,143.2,76.7,42.2,197.9,66.5,108.5,27.4,72.8,37.6,54.1,53.3,56.6,52.3,47.5,42.5,25.9,22.9,18.5,18.2,167.5,216.7,90.8,243.1,115.7,69.8,36.7,52.1,53.7,36,21.8,34.5,33.7,48,42.2,51.2,47.9,55.2,49.5,4.4,50.3,27.9,30.6,26.2,51.2,41,173,92.6,196.6,61.6,72.9,55.9,73,19.5,54.3,70.5,72.8,71.7,88.1,57.4,55.1,49.2,41.4,36.1,93.7,215.2,26.9,66.1,24.3,506.5,497.5,76.3,148,79.4,37.1,156.3,17.7,146.4,55.5,63.8,38.1,41.7,33.1,32.7,36.2,37.8,21.2,32,38.2,33.9,36.9,56.2,33.1,36.3,35.2,36,53.7,106.9,121.4,382.6,90.6,70.4,72.6,71.8,125.7,30.5,42.3,38.3,178.7,112.1,86.6,65.4,61.8,64.6,77,74.3,71.1,72.1,96.1,3.7,40.2,73,72.1,213.4,39.4,52.3,217.4,209.6,75.7,198.9,199,31.9,77.1,77.9,91.1,88,100.2,122.4,158.5,44.2,25.9,283.2,147.9,390.9,107.2,109.5,105.2,125.6,51.4,35.3,42.8,184.6,33.3,101.9,62.3,37.2,4.5,1.4,5,6.1,245.9,42,170.9,45.3,116.5,38.6,272.8,395.4,116,9.9,84.1,54.4,49.2,59.5,240.4,51.9,45,6,54,189.7,104.4,60.1,256.5,17.3,22.3,151.6,37.4,19,50.8,43.9,62.4,352.2,5.2,207.1,186.6,72.7,12.5,55.6,58.3,360,393.6,110.6,211.9,211.6,88.7,71.7,36.9,35.7,30.1,52,39,55.2,153.8,2.7,179.2,376.7,133.8,127.2,235.7,13.8,498.6,477.1,200.5,294.2,13.1,26.6,204.7,103.4,11.4,142.4,260.9,104.7,72.8,38.4,39.4,67.9,94.8,76.6,252.4,303.8,70.6,69,50,17.5,43,31.7,18.6,27.8,42.2,50.4,28.7,29.5,26.9,30.3,41.1,30.9,35.2,48.7,29.5,0.6,86.5,117.5,34.8,28.1,27.8,156.1,17.9,163.1,150.7,48.1,33.9,62.6,33.4,54.1,43.2,46.2,56.1,50.3,50.4,34.5,51,49.4,51.8,46.8,174.1,25.8,40,91.3,28.6,48.8,37.1,3.9,122.3,11.9,40,43.3,56,54.3,50.8,36.8,53.5,48.4,5.5,54.6,54.2,53.4,42.3,24.9,37.4,31.3,45.1,52.8,49.9,38.6,39.4,55.7,186.8,104.5,69.4,181.9,29.8,274.7,577.2,205.9,156.9,106.6,243.3,36.6,88,117.8,68.9,95.9,94.2,210.1,150.7,31.2,168.9,114.3,32.5,48,87.6,92.9,119.1,166,150.6,315.3,49.2,501.8,100.6,32.4,195.6,192.1,410.4,57.8,185,69.1,118.7,30.2,86.2,74.4,406.9,407,133.5,413,26.4,17.8,84.9,425.1,22.4,135.2,132.1,100.9,87.1,56.9,36.9,12.2,48.5,32.8,64.1,27.7,11.1,36,178.8,102.1,99.2,122.6,100.7,70.3,30.5,42.7,37.7,16.3,55.1,71.7,40.8,40.5,29.3,185.7,45.9,71.8,71.8,142.8,110.6,79.6,12,11,235.5,14.2,249.8,20.6,35.2,80.9,45.8,162.4,76.7,76.8,22.1,1.6,106.9,31.9,70.6,71.4,143.1,63.7,0,59.5,4,121.6,130.7,133.3,77.2,155.6,167.9,170,344.3,17.3,137.1,231.1,19.4,229.1,25.4,159,34.9,64.2,126.9,61.7,15.5,30.4,160.8,137.7,19.4,75.9,84.5,5.6,301.9,14.1,94.9,84.4,91.2,72.1,316.1,484.7,7.7,4.2,168.8,41.4,30.3,78,216.7,188.2,37.2,48.2,106.6,106.1,39.8,110.8,8.8,99.7,131.4,110.5,29.2,118.9,4.6,92.6,111,14.5,91.7,13.7,45.7,118.5,134.6,138.6,70.3,115,25.2,21.4,340.1,216.6,278.6,494.8,11.4,490.8,265,68.8,17,33.8,111.2,107.3,78.8,47.1,12.9,22.9,228.9,211.3,221.2,63.3,365.3,146.8,408.7,13.1,54.9,502.3,34.7,128.2,41.9,163,57.5,77.8,193.2,167.8,59.4,91.4,404.9,30.6,78.1,107.2,343.6,69.7,16.9,415.5,216.4,66.4,234.1,195.8,177.7,116.2,55,16.8,106.1,60.4,101.4,172.5,454.8,185.3,211.8,29.8,76.2,188.5,30.7,57.6,9.4,150.6,76.5,40,179.1,97.9,214.5,282.3,195.7,464.2,45.9,4.6,36.5,33.3,164.5,108.3,103.6,42.3,6.4,23,444.2,33.2,18.7,222.1,272.2,183.9,57.7,256.6,198.8,66,34.8,169.1,31.4,122.8,369.5,22.4,50,82.9,92,70.2,36.8,107.7,99.7,23.5,73,109.4,78.3,90.9,169.7,240.9,142.1,214.1,247.6,58.1,192.5,322,104.5,107.7,276.3,344.8,160.8,13.2,258.7,180.2,51.4,38.8,75.6,126.1,115.7,149.1,8.8,249.5,24.6,129.4,77.9,15.3,291.9,216.9,167.2,3.1,304.2,19.8,107.3,112,50.3,21.9,103.2,62.2,22.9,27.5,36.1,149,160.3,152.3,79.3,365.4,55.3,238.9,235.9,243.4,160.4,90.4,25.7,31.9,103.1,52.2,286.6,498.5,19.3,362,75.9,271.3,264.7,81.6,160,28.5,16.5,46.5,169.7,26.6,53.5,271.1,31.5,24.6,72.8,29.2,82.2,44.5,147.7,147.2,65,250.6,248.2,44,461.6,185.6,36.4,105.3,21.5,76.1,38.3,32.7,80.8,120.1,126.7,111,35,49.4,47.9,47.8,83.9,83.3,192.4,48.6,2.8,126.4,53.8,98.7,11.4,508.9,154.6,44.6,10.1,91.5,133.2,102,93.9,42.8,52.9,64.1,125.6,183.9,30.1,42.1,133.4,179.3,54.8,125.2,170.9,258.9,81.4,53.8,187.6,51.4,132.3,58,23.3,174.8,218.1,93.6,5.1,7,42,282.4,23.4,9.2,61.1,61,26.6,33.3,21,85.2,93,90.4,14.7,77.3,5,0.2,61.8,12.2,124.4,70.5,102.8,18.3,97.3,80.7,36.5,34.5,42.6,112.2,49.2,167.8,26.1,20.9,239.8,67.6,167.3,12.8,166.4,313.6,504.4,125.3,24.2,6.6,56.7,15.6,275.4,105.4,70.3,115.3,209.1,33.9,12.1,44,158.9,36.7,48.4,115.2,50.6,27.4,13,113.1,301.5,45.1,38.1,165.6,166.9,10.1,119.6,81.8,422.8,108.6,386.4,15,41.9,13.7,52.1,377,23.7,195.9,296.6,132.1,160.4,175.7,12.6,95.8,105.8,37.9,92.6,95.9,41.7,35.3,29.4,55.6,53.5,57.8,49.7,44.3,60.3,153.2,130.2,367.8,13.8,175,183.6,129,104.5,117.2,113.1,120.2,6.1,36.9,108.6,105.9,184.7,68.9,37,243.6,108.8,148.2,54.2,70.1,135.4,121.6,59.3,59.7,2.3,32.6,49.8,59.5,40.5,37,90.7,122,62.5,74.9,328.7,97,322.5,25.8,155.3,124.2,11.4,356.2,202,201.6,99.8,56.4,177.5,100.8,166.6,346.1,154.3,194.5,302.1,36.6,56.8,143.9,191.6,59.1,174.5,62,279.2,309.8,193.8,5.9,35.2,304.1,196.8,172.5,202.4,82.2,42.3,15.6,317.4,132.5,52.8,71,98.3,147,98.4,67.1,21.2,104.8,76.5,78.3,33.5,79.4,117.2,30.4,443.9,452.3,75.9,60.6,56.2,76,57.8,57.7,62,51.7,51.9,44.9,7.1,57,49.9,70.6,59.5,52.7,192.7,499.2,81.7,357.8,47.5,349.7,71.2,40.2,91.9,79.5,70.3,93.8,59.9,63.9,48.9,85.7,75.5,41.8,70.3,67.6,63.9,17.8,52.4,16.6,130.6,46.4,296.2,125.2,89.9,80.1,40.1,11.4,170.8,44.3,489.8,0.8,529.2,195.7,55.6,241.1,305.9,142.7,29.1,131.9,53.7,44,31.6,134.4,56.8,11.5,39,127,53.9,58.9,123.7,62.7,53.1,275.7,33.8,44.1,137.3,151.8,363.7,39.3,385,80.5,325.9,55.7,956.1,180.1,228.5,32.6,2112.9,30.5,890.6,50.9,21.6,30.2,730.7,193,27.4,181.1,45.9,190.4,226.9,497.9,190.2,75.6,56.2,44.3,263.2,129.5,6.5,40.2,62.5,78.4,219.9,59.5,18,41.1,81.2,74.1,277.5,241.7,90.9,133.2,194.8,125.2,125.3,92.9,93,94.2,93.8,118.4,40.7,77.3,240.5,185.7,186.2,152.6,46.6,177,35.2,107.4,16.1,31.7,32.4,91.5,46.7,710.8,151.2,145.5,145.8,143.1,111,106,167.9,167,229.2,59.8,1016.6,28.8,351.2,146.4,152.1,232.2,156.1,74.4,74.7,237.1,67.6,178.2,22.2,38.4,20.6,125.1,142.8,152.1,170.2,40.9,60,268.5,437,335.9,48.2,62.9,72,72.4,66.8,65.8,69.7,72,128.5,385.5,51.5,394.2,35.8,51.7,51.3,55.6,51.7,84.8,40.5,42.5,76.9,122,203.6,41.6,136,28.9,60,12.8,42.6,83,29.8,38.1,23.4,126.3,127.6,228.8,26.1,510,78.9,78.8,19.1,20.4,39.9,28,53.8,58.3,59.8,26.5,82,97.7,8.7,92.7,37.6,43.4,45,40.7,85.5,101.2,46.8,47.9,94.1,87.8,76.1,18.2,77.9,95.5,116.3,29.6,22,52.8,55.2,26.7,23.9,89.8,131,66,66.2,66.8,65.4,56.8,58.7,58.9,48.2,42.7,43.4,74.4,79.3,86.4,75.4,173.1,13.5,138.5,277.4,722.4,47.5,39.3,33.9,88.6,118.8,192.9,77.9,29.8,18.1,89,0.3,41,10.9,103.5,102.3,27.1,50,83.6,17.5,29.6,43.6,123.7,113.2,154.1,28.4,44.2,67.7,66.9,41.5,59.6,59.1,58.9,59.2,136.1,135.4,220.5,214.5,180,166.7,482,133.8,34.8,200.4,211.8,44.9,100.3,73.4,31.3,52.3,144.9,170.9,138.5,469.5,154.7,156.3,75.1,120.2,75.1,56.2,59.5,58.9,95.2,65.7,42.1,58,43.7,63.6,41.3,87.6,66.3,932.7,412.6,70.7,62.4,79.9,69.3,77,69.8,63.5,63.3,68.5,69.6,94.8,103.8,53,53.7,113.6,60.1,51.7,175.7,146.9,134.8,228.7,37.2,252,144.1,291.6,77,370.3,51.9,247.6,18.6,425.3,237,243,381.4,141.5,62.2,44.4,31.3,54.3,24.7,55.7,57.6,56.5,120.4,115.1,101.2,69.3,78.2,74.5,74.9,31.7,28.8,57.3,31.5,25.9,54.2,31.9,157.6,409.1,163.5,407.9,83,119.7,53.1,74.4,87.9,157.9,97.8,39.7,37.7,153.3,305,239.6,221.2,195.5,86.3,192.6,100.5,117.1,171.4,227.3,109.8,115.8,227.9,178.7,295.6,49.6,128.3,116.2,118.7,172.7,119,136.8,48.3,42.9,93.2,56.8,150.3,174.5,82.7,193.1,156.1,68.1,66,183.4,230.8,86.2,190.6,183.6,149.8,105.5,115.9,215.2,233.5,135.4,104.8,158.2,136.9,161.4,147,84.4,206.4,14.1,37.3,150.4,46.5,39.3,29.8,127.6,441.4,234.6,129.4,27.5,17.5,176.3,96.5,89.4,64.2,58.6,57,54.7,55,55.1,315.4,66,52.9,70,42.7,49.2,55.7,39.4,52.2,36.8,40.9,41.4,33.7,67.5,48.2,170.9,62.8,54.8,67.9,87.1,24.4,22.8,39.1,50.8,79.7,43.7,40.1,37.1,36.4,36.2,37.5,60,60,43,61.1,164.1,58,23.4,75.3,56.2,53.2,50.5,61.9,122.2,486.1,298.4,25.2,160.5,76.8,96,107.5,87.3,97.5,107.8,95,2.6,111.8,173.4,326.7,317.4,310.3,121.9,102.5,307.8,62.4,93.7,198.5,193.9,192.2,124.9,29.8,74,81,222.3,168.3,172.4,176,197.9,160.8,180.4,353.3,209.4,284.8,37.1,165.7,104.8,93.3,40.3,23.6,21.8,121.2,29.2,135.4,64.4,160.5,274.8,118.1,281.8,382,514,377.1,221.7,91.2,153.7,96.5,184.4,185.6,345.1,487.4,376.4,140.2,69.8,63.5,66.4,94.4,24.7,26.7,220.6,358.3,232.8,73.9,600.3,87.2,232.6,475.5,154.4,185.4,235.1,394.5,117.6,349,154.5,243.5,78.9,158.5,85,39,62.4,37,54.9,48.6,11.6,30.9,142.1,77.8,200.9,135,65.7,61.4,49.3,13.5,73.1,81.1,69.4,65.7,97.5,60.5,55.2,93.4,102.5,500.4,239.2,241.3,354.9,391.9,215.9,218.3,82.5,129.4,94.5,13.9,73.5,139.4,87.7,108.6,52.1,130.5,63.6,123,196,35.7,30.2,804.1,45.9,58.6,23.5,30.3,145.8,50.2,111.8,119,70.3,95,14,0.5,47.1,65.6,29.8,37.5,54.5,108.7,285.2,33.2,193.3,19.7,7.6,92.3,70.4,46.3,33.9,70.1,97.3,94.7,101.8,82,35.8,28.3,90.2,117.9,118.2,116.2,120.5,142.3,37,149.4,160,196.5,434.7,154.5,65.1,91.8,356.3,57.8,56.9,168.6,178,229.5,429,46,207.7,153.5,21.9,21.6,94.3,73.1,83.9,69.7,26.1,47.5,71.6,71.6,74.8,67.6,67.5,71.9,73,75.9,70.6,71.7,72.4,75.6,72.7,68.3,29.1,37.2,28.5,38.4,32.5,38,82.6,38.3,58.6,27.7,50.4,37.2,46.5,56,296,38.8,31.5,251.3,355.3,254.3,49.1,60.3,142,103.1,107,71.4,142.3,138.2,150,61.3,111.2,391.3,164,59.9,59.7,92.1,103.9,46.2,91,82.6,98.5,126.7,59.7,99.5,379.1,575.2,65.3,73.4,17.4,29.2,27.5,29.7,21.6,23.4,23.6,19.8,22.6,27,22,26.4,19.7,27.3,26.1,27.3,25.4,31.7,31,31.4,32.4,30.6,29.9,35.9,73.8,189.1,122,65.7,34.6,409.6,27,112.5,273.4,587,1267.3,154.9,91.6,136.5,141.4,100.2,14.8,45.8,45.9,24,52.2,69.9,60.3,76.6,87.4,108.1,215.8,258,191.2,121.5,158.8,345.6,208.7,134.7,95.3,31.9,118,0,49.5,52.8,23.5,33.2,51.2,62.4,41.1,32.8,67.4,52.9,111.7,91.6,184.6,123.3,90.9,151.1,16.6,140.7,82.2,86.3,54.4,70,70.2,48,78.1,40.5,36.5,61,43.4,8.8,62.2,43.8,24.8,8.2,61.6,68.7,138.7,18.6,36.9,60.8,51.4,55.5,70.6,60.1,52.6,55.9,72.4,181.9,228,147.2,190.9,34.2,208.9,422.3,74.5,61.2,45.6,10.9,43.3,101.9,43.8,33.3,33.3,33.3,33.2,33.3,33.2,33.3,33.3,33.3,31.5,31.6,31.6,31.5,31.6,27.8,29.2,25.1,25,20.7,25,21.7,33.1,43.7,35.4,99.3,41,52.1,165.3,228.3,170.6,125.4,340.5,44.1,54.4,208.3,36.1,35.4,37.1,34.6,37,100.8,63.8,158.9,46.3,342.7,177.8,55.8,269.1,117.5,52.7,35,37.5,35.5,34.3,37.2,35.5,34.9,35.6,39.7,34.4,35.5,34.7,37.9,37.7,41.5,63.6,93.7,62.1,40.1,203.4,163.5,152.4,27.7,250.5,70.2,313.1,113,67.1,92.1,74.7,75.8,68.2,70,63.6,61.6,96.6,113.6,71.3,79.9,59.6,70.1,78.3,399.3,197.8,183.4,177.7,730.9,55.9,60.2,51.7,53.5,66,19.5,40.4,54.6,59.4,50.1,183.1,143.8,69,56.9,34.4,29.8,28.4,15,23.7,59.3,42.5,37.1,32.1,78.6,53,43.5,503.3,65.4,214.5,35,31.5,39.6,26.4,26.3,14.8,52.3,28,24.9,13.9,65.3,42.4,90,85.7,75.1,286.8,57.4,72.3,9,46.4,36.5,35.2,35,38.4,35.8,37.7,35.5,36.3,39.3,33.4,28.6,29.6,33.2,33.3,33.9,45.7,558.5,85.9,303.7,35.1,55.1,38.1,37.3,33.3,35.1,34.5,33.1,37.2,36,39.5,40.1,36,36.7,36.7,23.7,16.3,6,39.2,39.9,35.9,39.2,47.3,47.6,105.6,146,181.4,35.1,181.3,377.4,302.2,54.2,9.1,65.1,38.1,28.2,27.5,31.9,35,35.4,37.3,36.7,38.5,34.8,29.3,23.4,29.1,33,23.8,31.3,75,49.4,27.4,15.3,2.2,55.3,29.5,14.5,32.2,55.2,57.4,7.2,112.2,346.9,39.2,53.4,15.8,22.2,44.6,33.4,24.7,25.2,35.5,45.8,28.8,34.9,22.7,21.9,34.1,33.4,35.5,18.3,18,19.8,16.7,24.2,27,25.5,23.1,18.8,26.4,67.8,99.1,126.1,96.2,56.1,50.9,8.9,17.6,50.1,50.8,37.2,33.4,48.1,36.5,30.3,23.1,29.9,18.2,17.7,118.5,54.9,58.3,55.9,55.3,61.7,55.2,62.3,52.7,91.8,50.9,25.3,224,331.5,334.9,333.5,286.1,255.9,40.3,366.3,266.2,104.9,350.9,50.3,379.9,75.4,180.3,122.4,57,209.2,37.1,160.7,88.6,132.9,88.9,433.3,572.7,132.2,106.3,101.5,448.7,26.6,280.2,154.7,11.1,139.6,15.9,210,155.5,163.7,59.1,33.4,26.2,121,215.6,78.1,56.8,36,21.5,13.8,17.2,12.8,10.3,13.3,12.1,13,12.1,13.6,12.1,13.3,14.9,14.8,16.4,4.8,12.1,36,19.9,53.7,25.7,25.1,36.3,19.3,21.1,22.3,21.5,14.5,15.9,22.6,29.3,16.4,15.4,10.4,16.1,11.3,11.7,12.5,11.6,11.1,9.9,13.5,10.8,10.8,8.4,9.6,13.1,15.9,13.8,115.7,16.4,22.6,24,22,15.1,16,14.1,15.8,14.2,20.1,42.5,42,29.1,31.2,21.3,25,34.2,228.4,104,18.9,100.9,24.8,28.7,33.9,35.1,67.8,57.6,76.5,72.6,28.6,45.2,42.1,45.8,27.9,34.3,59.8,32.7,29.9,15.1,22.8,31.6,43.4,32.7,25.7,25.4,2.6,8.9,16.7,39.9,21,19.6,31.7,56.4,13.4,5.2,4.4,11.4,11.9,4.2,41.5,37,38,100.7,19.9,12.1,3,13,57.1,4.3,30.8,8.4,9,8.6,4.9,154.4,34.6,10.4,4.8,9.7,30.6,10.1,3.5,86,30.3,57.8,21,4.6,13.6,12.9,12.6,3.4,8.7,24.7,7.9,51.1,6.2,9.6,57,2.6,8.7,9.4,2.8,84.8,31.9,13.7,5.1,20.5,34.1,20.5,33.4,7.3,20.5,20.1,3,3.3,12.8,15.1,17.2,4.5,8.7,21.1,20.2,5.5,10.1,51.8,29,38.2,7.4,32.9,8.4,3.8,23.7,12.6,7.1,21.4,31.6,15.7,35.3,18.7,31.1,41,13.3,7.9,20.8,41.2,43.2,8.1,4.7,8.1,8.5,8.6,4.6,12.1,61.8,8.9,41.2,16.5,9.5,9.4,10.6,21.1,24.3,16.3,42.5,22.7,18.9,18.1,17.5,11.2,18.7,4.4,6,11.1,0.3,3.9,4.8,3.9,4.5,7.4,7,8.8,7.8,8.3,7.8,6.5,6.1,4.8,7.3,6.6,7.5,7.3,7.1,7.1,6.5,7.9,8.4,6.4,5.9,7.8,7.3,7.6,9,7,8.9,12.1,10.6,9.2,4,5.9,6.7,8.2,14.3,4.3,7.2,10.2,0.3,3.3,4.2,5.5,5.3,194.3,8.4,11.5,8.9,20,6.6,91.6,87.7,10.4,3.3,4.2,11.3,21.2,52.7,2.5,10.4,4,4.7,3.4,3.1,6,2.5,9.8,17.8,137.4,35.1,47.5,4.5,4.6,3.1,8,3.8,4.4,2.2,22.9,9,15.4,71.9,4.2,7.8,10.2,8.5,6.1,2.4,39.3,210,29.2,9,152.7,104.2,72.1,53.8,16.9,4.3,5.6,6,7.8,7.9,8.1,8.7,17.6,9.2,9.1,9.2,9.2,4.5,4.7,9.1,9.6,9.5,11.4,4.6,3.1,9.6,5.6,5.7,5.6,5.6,5.7,5.6,5.7,5.6,22.3,13.9,9,11.5,2,5,182.2,172.8,147.3,38.3,38,2.8,262.6,133.8,163.6,5.1,38.9,22.5,4.6,3.9,1.2,13.1,11.4,4.3,3,78.6,49.8,302.9,5.7,5.3,1.8,4,7.5,1.5,5.8,4.8,1.8,4.8,6.1,7.6,12.4,8.1,4.6,5,4.4,4.2,5.9,5.9,16.1,75.1,14.3,7.8,4.7,7,4.6,12.6,46.1,24.5,15.9,20.8,8.2,10.1,4.5,4.3,24.7,3.9,2.8,11.7,46,11.7,2.3,1.3,13.1,12.8,2.6,1.1,26.6,12.6,56.5,7.3,4.8,64.7,0.8,3.9,4.1,7.6,2,72.6,5.6,8.3,1.9,15.7,12.4,3.2,90.9,35.2,43.5,6.6,3.4,7.9,12.5,3.8,10.8,92.1,1.9,7.1,12.3,1.9,22.9,66.2,2.4,28.2,28.6,52.7,17.5,9,17.4,36.4,37.1,97.6,100.6,93.6],"duration":[11.198,9.481,1.144,6.195,17.219,1.132,0.675,0.72,0.693,0.842,1.65,2.699,4.985,3.877,9.138,2.515,2.511,2.231,1.577,0.958,0.819,0.437,0.913,0.717,1.903,9.402,2.177,2.65,2.351,1.29,1.047,10.902,19.207,20.393,15.008,11.194,3.658,3.85,1.698,0.96,0.871,1.315,0.55,2.101,2.914,0.237,5.523,1.44,1.936,0.57,0.201,0.259,1.575,5.267,2.627,7.762,20.042,14.479,3.723,0.236,8.663,2.347,8.781,7.596,9,7.129,13.699,11.238,9.223,1.765,1.851,1.07,1.08,2.132,11.535,1.898,11.704,7.325,7.829,0.42,12.78,0.599,1.807,1.687,3.545,9.422,6.115,14.016,3.876,1.821,1.97,1.627,1.631,2.201,2.399,1.822,1.346,1.798,1.111,1.19,1.377,0.943,1.604,1.096,0.889,1.021,0.869,1.974,0.816,0.79,2.547,1.919,1.701,1.772,1.824,0.969,0.657,1.647,5.589,5.99,2.546,2.332,1.649,2.014,1.678,2.256,1.321,1.807,1.283,1.657,3.24,3.411,6.227,5.56,11.137,2.848,2.081,0.698,5.321,0.632,0.257,2.271,2.131,2.176,0.703,0.611,1.33,1.744,0.843,1.475,0.721,0.751,0.573,0.663,0.747,0.634,0.698,1.027,0.734,1.284,1.213,0.851,0.942,1.406,1.653,4.152,5.181,1.426,0.632,0.945,0.671,0.763,0.806,0.955,0.708,0.424,0.365,0.346,0.308,0.834,5.704,1.639,1.515,2.833,1.244,0.509,0.941,0.846,0.844,0.667,0.809,0.683,0.65,0.669,0.66,1.16,5.727,7.282,2.278,0.995,0.188,1.997,2.544,2.442,6.191,4.504,2.344,2.338,1.426,1.753,4.025,1.144,0.994,1.546,1.001,1.592,0.045,1.309,1.164,1.693,1.276,1.464,1.409,1.955,1.733,0.157,2.257,1.179,2.059,1.811,1.332,1.254,1.917,1.674,0.845,0.537,1.997,1.227,0.759,0.514,1.28,0.693,1.004,1.587,3.065,1.921,2.438,2.415,1.717,1.081,1.063,1.769,0.709,1.986,0.885,0.289,0.39,3.514,14.336,1.522,1.665,1.693,2.642,3.74,1.182,0.05,2.056,3.836,3.997,0.764,0.527,1.214,7.916,5.332,6.615,2.043,0.037,0.536,2.196,3.5,1.768,1.456,0.86,6.922,1.837,2.175,2.074,9.367,2.584,0.355,1.557,6.439,0.048,0.629,2.371,1.268,4.444,4.975,2.073,1.785,1.225,4.688,6.176,0.228,1.216,0.256,10.906,3.721,0.575,0.014,3.233,7.954,5.02,0.543,8.827,2.081,4.946,1.102,0.972,8.393,9.512,1.611,0.68,0.914,3.717,1.741,4.86,9.456,3.727,1.64,10.143,5.114,6.885,1.55,3.806,4.163,4.673,4.444,2.192,2.262,2.017,1.236,2.579,3.276,2.249,3.112,2.119,2.368,2.502,0.726,1.188,1.325,1.516,2.683,1.33,1.717,1.08,0.83,1.569,5.609,4.691,7.48,1.837,8.682,6.795,1.222,5.018,4.311,3.713,6.089,5.815,3.629,3.083,2.27,0.829,4.373,2.546,4.85,5.796,6.068,6.691,2.45,2.464,9.136,6.611,2.75,2.454,4.094,1.435,0.095,5.539,4.989,0.101,5.306,3.387,4.574,5.351,5.218,4.271,1.283,1.764,8.437,1.067,2.201,6.517,10.08,8.964,3.375,9.701,14.308,0.449,2.761,2.034,11.468,7.571,8.907,1.373,5.567,2.569,0.415,1.21,5.856,0.119,1.413,20.273,1.7,0.284,8.664,1.013,0.823,1.029,5.554,62.515,4.609,4.061,3.405,4.649,4.228,3.375,3.743,2.966,3.866,15.518,38.264,4.395,6.751,3.722,2.621,4.584,4.616,0.693,0.775,1.136,0.72,1.296,3.038,2.044,2.69,1.819,1.717,3.355,3.215,3.772,3.527,1.915,7.65,2.117,2.328,1.455,2.84,1.455,1.551,3.61,1.998,2.112,2.07,2.017,4.408,2.359,2.123,25.791,18.144,9.344,4.966,2.574,6.127,16.337,5.644,1.445,2.759,5.885,7.295,1.915,6.589,0.336,18.902,10.915,1.176,2.329,4.866,4.9,4.872,4.738,5.589,4.495,17.402,3.372,2.639,2.492,2.432,3.061,2.537,2.427,0,2.338,1.42,3.624,2.024,6.377,14.124,3.108,4.99,13.745,2.84,1.629,1.673,1.449,1.192,1.651,3.101,5.126,2.228,1.703,3.133,2.806,2.28,2.799,3.641,23.826,4.066,6.965,7.051,2.517,2.647,4.549,2.285,1.268,1.3,1.158,1.169,2.354,1.341,1.402,1.423,1.366,2.479,2.871,3.254,2.967,2.494,2.025,1.904,2.539,3.224,4.578,4.47,2.174,1.577,2.459,7.593,1.483,0.239,4.312,2.63,2.616,2.713,2.842,1.415,3.085,1.417,1.724,1.145,1.317,2.519,1.971,1.466,5.619,4.836,1.744,1.685,1.642,2.13,1.633,1.849,1.366,1.247,1.073,1.972,1.371,1.967,1.782,1.936,2.38,2.57,2.397,2.92,2.025,10.381,9.961,0.804,3.812,0.735,2.261,1.883,1.955,1.859,1.92,1.211,1.915,1.836,2.613,1.339,1.78,1.388,1.297,2.419,3.263,7.623,8.871,15.936,2.568,2.373,2.385,1.908,5.216,2.433,2.051,8.325,1.591,0.232,4.556,0.404,2.556,2.732,1.924,1.898,2.63,1.45,2.135,1.642,2.746,0.873,0.621,1.255,1.605,1.578,1.426,9.435,6.768,2.57,3.235,2.131,1.764,2.438,1.99,1.281,1.21,1.275,6.425,4.048,1.002,0.686,1.777,2.552,0.099,5.659,0.302,1.488,0.584,1.592,2.727,1.827,1.188,0.726,1.104,1.236,1.239,1.832,1.451,1.406,0.761,0.759,1.086,1.302,0.849,0.574,0.607,1.302,0.903,0.876,1.237,1.45,1.041,1.28,1.283,0.908,0.69,5.078,2.126,2.812,0.554,4.8,2.274,3.292,2.926,0.319,0.346,0.32,2.291,2.85,2.898,2.658,4.21,5.302,8.338,2.819,0.825,17.344,1.211,12.023,0.909,2.581,4.912,4.313,4.291,2.294,7.694,6.028,5.87,0.909,2.856,3.203,2.465,3.008,5.118,4.258,1.314,0.416,0.755,6.937,4.91,2.384,0.655,0.717,1.119,3.139,1.215,2.526,1.779,1.929,3.538,0.692,7.422,2.63,2.91,2.601,2.211,2.268,2.215,2.674,2.839,2.615,2.576,2.728,2.766,3.135,1.613,1.644,1.108,0.485,1.148,1.287,1.672,5.825,3.483,3.96,1.994,4.078,1.28,6.155,29.351,0.677,7.235,0.626,2.414,3.665,1.096,0.322,1.049,1.853,5.469,2.806,2.9,2.914,1.073,3.143,5.58,2.229,1.973,1.059,12.849,21.841,5.67,4.312,6.238,4.351,3.745,6.214,1.22,3.057,4.37,4.951,15.888,4.535,1.427,4.55,0.15,1.075,15.438,1.774,0.407,3.726,7.071,0.233,21.12,3.941,2.849,4.005,4.997,2.616,4.446,3.638,14.429,16.261,0.245,2.846,0.309,4.011,1.103,4.261,2.348,1.171,1.641,0.237,3.998,2.035,1.877,2.338,1.448,15.08,12.239,4.567,3.466,5.987,3.346,3.411,3.826,1.67,15.736,4.305,33.012,5.4,12.6,32.616,1.44,0.802,2.149,2.053,2.556,2.114,1.309,0.538,5.315,2.77,2.197,1.861,1.815,3.393,2.679,0.364,2.069,4.34,5.017,6.145,0.113,1.012,0.225,9.692,14.514,13.238,3.525,1.875,3.262,6.601,3.695,2.25,1.507,0.994,4.106,2.402,6.121,2.9,7.384,1.616,12.931,0.198,0.47,3.724,3.442,3.747,3.585,3.588,3.918,8.632,17.844,8.544,20.253,2.486,2.534,4.594,4.298,0.069,19.072,2.908,2.474,2.637,2.103,1.958,0.676,3.521,2.581,1.763,4.693,1.491,4.261,6.583,5.307,9.965,2.574,1.367,1.957,1.951,2.067,2.526,1.976,2.05,3.236,2.635,1.817,2.146,2.088,2.712,1.916,2.037,4.48,1.692,6.924,3.954,2.917,3.636,6.931,1.727,0.097,4.917,2.448,9.406,8.505,3.379,2.543,3.354,4.212,3.437,0.882,3.409,5.182,3.92,3.217,5.891,9.043,7.375,24.877,17.13,0.927,11.061,2.543,3.681,3.167,3.13,1.771,1.864,1.655,1.604,8.684,2.065,2.116,1.541,1.631,2.196,1.878,3.371,4.736,0.979,3.667,6.5,1.692,3.921,11.067,4.054,6.373,1.121,4.726,3.406,1.814,5.48,5.651,3.09,1.857,3.465,3.268,2.499,3.702,2.424,8.473,21.425,2.16,4.044,3.994,3.032,3.076,3.098,11.634,4.91,2.823,0.272,3.127,3.071,4.878,2.783,2.871,0.526,1.368,2.358,1.829,3.878,3.012,1.414,1.196,0.489,0.699,6.082,11.032,5.26,5.925,9.684,8.014,3.816,1.951,3.339,14.009,3.2,3.274,1.861,1.901,3.304,6.799,2.572,2.915,3.381,1.407,1.709,6.092,3.572,0.927,0.717,1.351,1.899,2.027,1.76,1.243,1.268,3.63,3.866,2.779,2.824,2.176,2.14,2.652,2.027,0.073,2.346,0.741,1.376,0.518,0.97,4.362,1.073,1.611,2.339,3.318,1.461,2.093,2.795,2.198,6.989,3.759,1.678,2.127,3.052,3.187,2.604,1.944,1.782,0.743,7.858,22.716,9.571,3.827,3.166,1.364,0.958,4.032,2.103,2.928,2.118,1.404,0.035,1.581,1.707,1.277,1.573,1.024,1.498,1.929,1.405,1.86,1.96,3.462,1.492,3.414,1.915,2.331,1.075,1.05,2.431,1.391,0.891,2.719,2.15,1.16,1.877,2.024,2.796,2.614,4.172,0.214,2.328,3.133,3.192,5.787,0.694,1.126,0.816,1.344,2.905,2.587,2.164,2.554,2.673,2.112,3.427,2.984,3.739,3.359,3.25,1.217,2.01,2.647,3.934,4.465,4.43,0.756,2.732,1.341,1.491,2.05,0.241,1.803,5.727,2.432,0.227,2.085,2.525,2.168,2.229,2.423,2.525,2.163,1.924,1.445,0.898,1.179,1.298,1.288,1.458,2.215,5.305,5.858,2.658,1.857,1.988,1.82,1.978,1.758,1.977,1.391,1.571,1.156,1.253,1.209,2.052,1.758,1.519,1.502,1.646,2.026,3.476,7.25,4.219,3.43,3.455,1.495,0.869,1.631,1.336,1.549,1.794,1.219,1.629,1.633,1.559,1.709,1.195,2.026,1.906,1.526,1.459,1.766,1.88,1.74,1.426,1.17,1.344,1.346,1.78,1.446,1.196,1.939,9.097,3.476,2.265,1.735,1.642,2.399,2.109,1.838,2.04,6.459,2.823,3.43,2.859,1.156,0.837,1.469,2.811,1.244,1.529,1.211,2.208,2.879,1.305,2.245,3.464,2.691,2.626,5.28,0.873,2.036,3.884,4.103,3.692,1.873,1.67,1.664,1.539,2.503,3.271,2.182,2.451,4.122,2.437,1.455,4.873,4.164,6.371,3.714,1.661,1.944,1.619,1.414,1.851,1.76,1.598,1.985,2.587,13.82,5.876,1.411,2.391,3.413,2.038,2.785,1.498,2.685,2.87,2.297,2.754,8.293,2.135,14.614,1.605,12.111,12.391,13.115,15.253,4.781,3.759,3.858,2.943,3.462,5.462,2.299,7.13,5.138,7.05,3.952,3.051,4.687,4.64,8.856,22.568,1.041,28.103,8.554,16.555,11.03,1.652,1.406,3.427,3.238,5.738,7.223,6.195,5.693,6.197,17.902,9.026,2.013,2.023,2.428,0.797,0.883,1.532,4.777,1.584,4.877,6.498,4.86,0.882,0.82,10.072,4.199,4.816,3.59,2.905,11.398,12.804,6.023,12.76,1.482,13.841,0.833,15.09,0.216,8.957,8.935,9.495,7.622,6.019,4.402,16.202,12.059,2.954,1.997,4.382,6.514,4.745,3.194,2.308,2.469,5.343,5.052,2.475,0.812,5.374,10.263,1.826,3.138,0.82,8.88,5.21,6.995,4.673,8.148,14.815,1.142,5.931,18.787,11.452,0.951,14.78,18.703,1.818,0.769,2.501,3.51,3.744,2.222,3.877,1.904,11.808,6.384,0.177,0.951,5.314,1.241,29.068,10.81,10.578,7.07,7.506,0.815,20.656,1.817,1.412,4.439,3.763,1.968,2.772,5.982,4.614,0.917,8.188,1.108,16.324,5.591,0.926,16.58,8.231,0.02,18.141,4.852,5.354,5.912,3.79,2.904,3.207,12.78,23.839,7.877,8.303,11.48,0.756,8.84,32.42,21.17,3.938,0.321,5.409,4.542,7.783,4.367,3.963,11.304,4.816,8.9,7.884,1.497,11.628,4.979,24.713,3.752,1.799,3.569,1.756,0.166,2.127,8.055,0.363,6.15,0.739,1.274,1.7,0.377,4.71,5.72,2.8,4.119,2.481,0.868,1.058,4.601,3.913,3.475,2.617,3.712,10.603,1.025,1.166,1.685,1.35,1.013,7.987,0.845,3.813,6.869,5.507,25.903,20.255,2.336,2.346,3.029,1.464,2.114,2.387,2.429,5.536,0.977,1.834,2.146,1.039,3.594,1.287,2.43,2.685,1.428,3.343,0.516,1.698,0.781,3.211,1.102,0.848,0.069,0.24,1.759,2.634,0.572,1.06,0.376,2.012,2.538,2.671,14.847,4.973,5.604,5.715,3.191,0.871,1.134,1.004,2.188,1.204,3.252,3.51,1.942,2.057,2.82,3.625,2.161,2.75,1.917,2.49,4.207,1.114,3.266,3.712,9.32,11.225,13.241,10.573,8.296,13.447,6.846,7.45,3.939,3.505,15.429,1.409,6.198,0.966,9.985,11.705,34.613,1.649,6.667,5.6,9.956,5.741,11.245,9.538,10.729,11.924,3.098,4.151,7.716,3.009,2.688,6.912,2.421,3.018,2.08,3.361,2.447,4.29,2.434,3.011,3.054,3.85,3.924,6.389,6.896,0.24,7.306,4.282,2.535,1.506,2.351,1.398,1.581,2.2,0.057,5.81,4.282,3.144,0.54,4.465,2.306,3.6,11.097,2.848,0.379,4.765,7.239,6.142,10.196,2.568,8.185,7.764,11.936,2.576,9.267,12.692,11.347,2.626,3.909,3.326,4.649,4.649,1.897,2.242,3.658,3.985,5.152,17.892,4.935,4.151,14.182,10.088,2.787,0.312,1.073,2.539,1.87,4.329,3.076,1.841,6.024,5.493,3.819,11.767,7.178,5.922,5.204,4.386,6.045,4.401,28.938,17.969,15.18,6.514,16.499,2.833,2.852,7.615,1.097,4.781,7.517,4.877,4.906,2.883,3.734,0.978,1.516,2.272,0.909,1.508,2.5,2.529,2.832,0.804,1.315,1.571,3.464,0.754,8.249,10.985,6.191,6.519,6.498,6.087,3.896,2.561,1.814,1.934,2.586,1.993,1.738,1.452,1.914,1.635,1.884,1.871,2.413,2.15,3.299,1.795,2.261,2.037,2.262,1.187,1.139,2.317,1.731,1.995,1.651,1.74,2.217,2.353,2.247,1.485,0.963,1.857,2.489,2.681,1.5,1.783,1.599,2.489,2.777,2.562,2.593,2.435,3.544,2.175,1.764,1.506,1.612,2.863,3.035,3.396,4.222,3.194,3.371,0.686,0.034,12.223,3.83,3.808,2.858,3.002,0.404,0.034,1.584,1.713,2.19,1.828,0.076,2.351,1.948,2.348,2.288,2.415,1.922,2.351,2.761,3.798,4.801,5.328,3.237,0.579,3.971,3.767,3.463,0.138,2.949,3.286,2.991,3.291,7.778,2.926,5.912,5.439,0.915,2.626,2.181,1.593,0.657,1.871,1.206,1.329,0.746,1.081,1.181,0.499,1.869,7.746,0.069,3.403,1.137,8.32,6.833,1.215,3.455,3.742,4.623,0.976,1.556,1.072,1.335,2.764,3.936,0.116,5.7,1.22,1.471,1.91,2.255,1.902,3.635,2.255,1.483,1.563,1.215,1.35,1.695,1.539,1.626,1.173,2.171,1.973,1.047,1.783,1.531,1.68,1.342,1.587,1.138,1.265,0.849,1.377,1.662,1.721,2.152,1.881,1.782,1.614,1.604,2.52,2.213,2.613,2.004,2.148,1.655,2.233,1.771,1.524,1.037,1.003,1.766,1.692,1.766,2.024,1.891,3.428,1.814,1.353,5.164,6.111,5.747,5.277,5.305,3.7,1.45,4.383,2.537,2.99,1.914,0.876,1.142,1.447,2.052,1.618,2.459,2.424,0.931,3.534,1.823,1.709,2.865,1.484,4.019,10.386,1.424,2.903,0.849,12.277,12.881,2.403,1.815,4.365,12.143,8.45,1.649,4.92,2.777,3.489,4.61,4.742,4.119,3.416,2.693,3.311,2.411,2.436,1.341,1.785,2.613,1.856,1.368,1.955,1.812,2.265,0.771,2.848,0.357,2.618,2.435,2.258,1.507,5.817,2.11,8.009,9.185,4.299,12.514,2.309,3.779,2.757,2.046,2.043,2.902,1.385,2.914,2.953,2.606,2.869,3.187,3.37,11.333,4.937,0.444,16.255,4.979,2.474,2.752,2.58,2.953,1.177,1.902,2.907,1.294,1.164,2.196,1.303,1.874,2.012,0.671,1.983,3.24,6.393,0.836,1.989,1.901,0.791,1.117,2.329,1.367,1.603,1.595,2.04,1.445,1.91,2.266,1.257,3.695,2.349,2.125,7.2,7.474,5.227,1.067,4.203,2.836,2.037,2.965,3.196,2.053,0.613,0.446,0.632,0.945,0.431,0.607,1.305,6.177,5.588,3.197,1.208,3.54,2.727,2.739,3.94,2.099,1.722,1.832,1.877,1.652,1.679,1.077,2.265,2.791,2.634,2.015,2.27,2.516,1.574,2.086,2.117,3.904,2.839,2.244,3.319,3.855,1.518,1.56,2.235,2.488,2.726,2.462,6.451,2.7,2.4,1.791,2.58,1.261,1.142,1.075,1.587,0.962,0.751,2.27,1.93,1.86,2.331,2.27,1.164,1.37,1.166,1.439,1.288,1.923,0.165,0.65,3.501,2.559,1.663,1.812,1.706,2.354,1.468,1.887,2.803,3.155,2.292,4.954,0.136,0.721,2.294,2.2,0.539,1.592,1.467,1.632,2.06,1.59,2.034,2.116,2.037,1.692,0.882,1.037,1.589,1.986,1.486,2.081,1.39,1.261,1.448,1.537,1.361,1.352,2.137,1.21,1.087,1.931,1.44,4.91,4.934,3.006,1.692,1.439,2.521,1.356,1.22,1.49,1.467,2.52,2.277,2.418,0.872,1.74,3.074,4.039,1.447,1.8,1.421,1.158,4.651,2.449,2.162,1.798,2.208,3.361,1.584,1.41,1.531,1.445,1.67,1.373,1.457,1.495,3.959,1.485,2.615,2.512,2.677,1.312,1.08,1.913,3.098,0.815,3.167,1.432,0.76,2.012,2.452,1.304,1.084,3.678,7.972,1.283,2.139,3.944,2.486,3.621,0.192,5.67,2.726,2.761,2.259,3.624,2.887,2.5,2.668,2.716,2.378,1.527,0.992,3.955,2.74,7.062,3.575,3.579,2.969,2.498,3.203,2.344,2.631,2.615,2.41,2.456,2.778,1.72,1.235,3.184,5.471,5.861,1.622,3.936,5.97,3.066,2.378,1.972,2.029,2.114,2.385,1.901,1.435,2.612,2.332,3.049,2.34,2.666,1.831,3.32,2.438,2.712,2.505,1.625,1.706,1.764,1.534,1.061,3.429,3.292,2.169,1.834,1.962,1.791,2.078,2.114,2.094,2.029,1.843,2.5,2.728,1.601,1.694,6.463,3.898,1.743,1.924,1.095,1.247,1.005,1.238,1.256,1.048,1.39,1.279,2.218,1.823,1.98,2.135,1.914,2.299,2.327,2.339,2.258,2.199,2.783,2.133,3.143,1.587,2.829,3.964,2.627,4.53,1.681,5.378,2.798,1.65,1.46,5.011,3.286,2.177,1.305,1.75,2.476,1.378,1.428,2.164,1.253,0.937,0.24,1.127,2.752,2.204,2.163,1.441,1.304,2.352,2.014,1.524,0.267,1.251,1.251,1.487,1.117,1.7,1.795,1.762,2.66,2.37,2.349,2.533,2.743,8.713,5.074,2.211,0.012,2.492,3.306,1.189,2.283,2.288,4.241,0.429,2.134,0.869,2.317,0.976,1.332,2.58,2.879,3.6,2.283,2.837,3.961,2.178,2.434,1.343,2.834,3.374,0.576,2.923,3.124,3.071,1.811,3.711,1.668,3.464,3.259,3.413,3.551,1.552,3.599,5.327,3.441,2.816,1.959,1.237,1.117,0.795,0.807,1.113,1.394,2.321,2.275,1.429,1.621,1.067,0.688,1.336,1.254,2.009,1.06,2.437,1.095,2.184,2.493,2.496,0.89,2.866,3.599,3.572,2.258,3.359,1.345,0.751,2.174,2.659,0.899,1.637,0.862,1.794,0.459,1.21,4.482,0.59,3.424,2.072,4.515,3.415,4.277,0.687,3.757,2.424,2.195,1.076,0.954,1.759,1.96,0.018,1.468,0.537,0.648,1.839,2.426,1.78,1.464,2.057,3.308,3.497,3.918,0.52,0.981,1.96,6.054,2.383,2.113,1.611,2.479,2.519,0.803,3.039,2.422,4.004,2.087,3.086,1.368,2.946,4.693,1.84,0.307,2.206,2.043,9.132,9.454,1.732,4.645,1.578,2.681,4.584,1.756,1.906,2.063,5.589,3.973,1.109,2.745,5.015,3.765,4.112,1.652,0.987,3.885,1.76,1.907,3.785,1.482,2.426,2.88,1.161,1.759,1.608,3.866,3.454,4.16,4.145,1.766,0.793,1.439,3.009,3.289,4.676,4.391,2.6,2.493,2.436,1.835,2.107,1.585,1.469,1.327,2.779,2.628,2.449,2.896,2.618,2.025,4.64,0.664,3.596,2.103,1.13,1.279,2.62,1.701,2.309,2.806,2.004,1.935,1.927,1.731,1.424,0.415,2.338,3.569,5.945,1.783,1.836,2.481,0.786,1.712,8.716,3.141,0.71,1.228,3.11,0.857,6.567,3.857,3.151,2.825,1.38,1.418,1.463,0.432,0.254,0.606,1.312,1.071,1.536,1.979,2.094,2.123,5.751,4.746,2.11,0.999,5.35,3.176,3.181,2.441,6.188,1.887,3.364,4.261,1.43,1.527,0.985,1.85,2.143,2.996,2.412,2.345,2.772,0.867,0.878,1.865,3.861,2.319,2.318,2.322,2.316,3.453,1.679,0.737,4.375,3.38,3.465,3.36,2.742,2.338,3.816,2.631,3.71,3.56,1.699,2.559,3.164,3.734,3.405,2.523,2.443,3.191,0.394,1.883,3.112,1.275,1.207,2.502,4.852,1.113,1.554,2.01,1.47,1.396,2.243,1.46,2.46,1.019,1.096,2.127,1.488,2.051,1.659,1.396,0.11,1.918,1.785,1.665,2.117,1.547,1.427,2.867,3.088,3.232,1.264,2.345,3.994,1.694,1.726,1.539,1.818,1.503,1.657,1.697,1.384,1.309,1.582,1.985,2.784,1.408,1.179,2.293,3.747,1.727,1.601,1.904,2.474,2.179,0.279,0.314,1.453,2.369,3.246,4.391,3.377,2.827,4.569,2.284,2.356,1.983,2.04,2.345,2.357,4.877,4.234,3.269,0.728,3.835,1.657,2.274,2.017,4.546,1.296,1.341,6.648,0.081,6.852,3.429,2.372,4.097,4.064,4.457,3.606,1.091,3.779,1.281,2.304,10.509,5.779,2.599,2.538,2.516,2.353,3.066,3.596,1.209,2.795,3.324,7.341,1.25,2.804,2.49,2.499,1.862,2.268,2.134,2.326,1.971,0.673,1.117,2.091,2.381,1.962,7.131,0.951,0.878,2.71,3.374,2.674,3.125,2.196,0.572,2.882,1.868,0.819,2.139,1.055,2.565,3.396,2.47,1.592,1.014,1.089,0.473,1.774,2.889,3.514,3.266,2.905,2.896,1.379,1.913,2.693,2.225,4.293,4.403,1.53,3.102,3.853,9.681,16.804,6.416,2.029,1.881,2.522,2.512,1.346,1.63,2.587,2.478,1.312,1.707,1.046,1.559,2.552,1.793,1.571,1.043,0.781,1.36,1.466,1.374,2.047,1.258,1.475,1.668,1.722,2.456,3.27,3.544,1.504,0.959,2.443,2.743,3.198,1.187,2.218,1.414,1.088,1.677,1.424,1.403,1.537,2.392,2.03,1.657,1.623,2.512,3.022,2.877,6.487,1.053,3.264,3.68,2.522,1.875,3.592,2.201,1.918,2.97,2.196,0.213,1.908,1.64,2.111,0.912,1.688,2.339,0.993,1.033,0.965,2.608,2.849,1.811,1.724,6.643,1.45,4.441,1.283,3.029,0.875,0.772,1.823,1.454,1.421,0.384,0.436,1.39,0.664,1.19,1.325,1.925,1.902,1.478,1.352,1.752,1.338,3,1.416,1.179,1.757,1.143,1.067,1.152,1.309,1.968,2.569,2.162,1.615,2.481,1.833,1.868,1.976,1.85,3.488,3.638,0.253,1.212,3.523,2.684,4.52,4.279,2.259,2.294,2.59,3.353,4.231,4.164,2.566,4.529,4.267,4.387,1.349,2.263,0.705,0.834,0.682,1.723,0.926,4.125,2.909,3.496,1.728,0.805,0.966,3.744,3.796,2.038,3.894,2.197,1.448,3.729,3.37,3.912,3.629,3.97,2.517,2.355,1.727,3.252,0.231,0.958,1.665,0.345,1.788,1.812,0.282,0.773,0.74,0.233,7.663,3.613,2.234,0.651,3.919,3.572,1.416,1.997,2.08,1.812,1.496,3.533,3.744,2.556,0.558,3.381,1.025,2.2,3.583,2.782,3.795,2.969,0.896,2.384,3.569,2.108,1.405,3.155,2.613,4.138,2.033,3.723,1.808,2.975,2.822,2.652,3.023,1.362,1.028,2.546,2.444,1.832,1.562,2.913,0.444,2.639,0.004,2.636,1.251,1.32,1.742,2.568,2.439,3.039,0.607,1.856,2.992,2.9,1.579,2.822,1.346,2.559,3.515,3.655,3.494,4.81,0.335,1.069,3.168,1.077,0.461,0.407,1.116,1.96,3.27,2.891,1.105,2.143,2.981,3.144,2.908,3.473,3.56,3.344,2.606,1.257,3.963,3.689,1.64,2,3.368,0.649,0.549,0.971,3.322,3.717,2.615,1.007,3.588,3.407,2.769,3.663,2.799,0.781,2.178,1.445,2.556,3.661,3.616,2.19,1.558,2.195,1.267,2.498,3.581,3.687,1.918,1.715,3.688,3.501,3.765,3.171,3.037,3.877,4.003,1.087,1.621,2.51,2.733,3.276,1.468,1.615,1.732,1.574,1.91,1.569,1.491,2.756,0.422,1.399,2.151,1.571,2.643,1.833,1.998,0.989,1.445,0.988,1.644,2.19,4.313,9.14,6.447,8.333,1.597,4.57,1.182,10.941,0.906,1.541,6.566,7.294,7.106,0.951,4.834,3.138,1.291,10.407,0.617,2.061,1.368,0.754,1.454,2.077,4.355,6.193,1.825,3.029,2.528,2.948,1.553,2.196,2.182,2.641,2.022,1.207,1.001,3.411,3.163,5.853,2.612,1.03,0.151,5.875,0.926,5.907,3.986,4.912,2.341,5.793,1.357,1.405,2.041,1.226,0.759,0.447,1.205,1.169,1.198,1.162,1.191,1.145,1.095,2.453,3.541,1.946,1.33,2.839,1.865,1.188,2.388,1.563,1.495,1.589,1.36,1.541,1.552,1.428,1.212,1.982,2.713,2.356,3.831,1.488,3.591,1.774,1.643,1.589,1.491,2.083,1.802,2.04,2.19,1.032,1.632,1.749,1.467,2.026,1.592,1.552,1.541,1.546,1.385,1.151,1.555,2.313,1.959,2.059,1.492,1.086,2.384,6.904,3.921,0.265,5.022,1.617,0.528,1.879,1.849,0.697,1.533,2.1,2.907,2.105,2.584,0.434,2.237,0.657,0.02,1.427,2.31,1.222,1.925,1.817,1.692,1.813,1.44,1.37,1.533,1.701,2.726,1.771,1.305,1.911,1.603,0.622,0.06,3.584,1.848,4.169,3.773,3.098,0.985,2.008,1.39,1.76,1.456,1.418,0.968,2.084,1.462,1.517,3.281,2.768,1.635,1.556,0.847,1.089,2.273,2.03,2.492,1.169,1.885,1.271,1.543,1.704,2.291,1.899,2.224,1.704,1.219,1.354,1.279,1.137,1.806,1.311,1.276,1.298,1.269,2.163,1.296,1.079,1.869,3.668,10.264,1.336,1.43,1.038,1.167,1.124,0.895,1.102,1.214,1.291,0.017,1.282,1.699,2.176,1.244,1.044,1.111,1.207,0.842,0.871,1.604,1.248,1.11,2.584,1.288,1.204,0.837,1.407,1.24,1.804,1.881,1.645,0.223,0.082,0.568,0.937,1.375,1.087,0.814,1.055,0.932,0.82,1.545,1.626,1.776,1.221,1.785,1.806,1.252,1.223,1.934,1.633,1.657,0.013,1.604,1.557,2.061,2.194,0.477,2.103,1.271,0.134,0.854,1.824,1.569,1.009,1.03,1.048,1.105,1.145,1.161,2.818,2.583,9.308,2.363,0.889,3.263,1.855,2.041,2.521,0.883,1.106,1.854,2.542,1.669,5.27,1.924,5.227,1.517,1.187,3.24,4.076,3.515,1.045,0.727,4.542,1.523,2.825,1.011,1.419,2.606,1.919,3.152,0.699,1.188,1.188,0.148,0.901,1.782,1.258,2.512,5.484,4.519,2.044,1.79,1.843,2.003,1.808,1.525,2.713,2.114,2.056,2.32,2.131,4.781,2.347,1.852,3.853,3.851,7.304,1.748,3.394,2.448,4.563,3.502,3.034,2.685,1.239,1.853,2.141,1.61,3.73,3.572,4.747,13.324,3.98,5.4,1.881,2.196,4.053,3.56,3.503,4.197,4.127,3.352,1.397,1.893,4.095,4.099,1.393,2.928,2.123,2.733,2.772,2.459,4.889,3.433,6.963,9.815,1.89,1.132,1.444,1.889,2.074,2.329,1.899,2.036,2.067,2.306,2.506,1.353,1.353,2.693,1.918,2.455,2.563,2.178,2.429,4.078,3.556,1.989,2.382,2.495,2.413,2.116,2.402,2.348,2.429,1.954,1.093,0.909,1.611,0.985,1.309,1.514,1.524,1.608,1.585,1.436,1.436,1.297,1.276,2.308,1.563,1.405,1.058,1.96,5.91,5.73,1.595,1.599,1.383,1.397,1.492,1.472,2.911,0,15.898,0.769,2.184,15.881,3.208,3.198,2.947,3.041,1.153,4.755,8.422,5.265,5.32,5.508,5.644,0.131,4.966,3.047,2.128,4.637,4.678,5.038,2.471,3.209,4.766,5.194,3.586,1.452,2.216,2.305,3.01,1.68,3.541,3.624,1.2,0.172,1.261,3.633,1.607,2.188,2.267,3.501,3.277,3.375,3.124,11.426,8.302,0.499,1.696,1.812,1.69,1.711,1.339,1.475,0.995,1.517,1.377,0.726,1.066,1.551,1.885,1.929,1.632,2.132,2.406,7.437,2.68,2.781,2.653,2.223,1.56,1.499,0.051,1.665,1.506,0.962,1.169,1.281,1.54,0.293,2.02,1.058,0.301,1.282,1.831,1.783,1.833,0.576,0.895,1.432,1.048,1.551,1.596,1.519,1.547,4.804,2.355,1.8,0.658,0.478,5.32,1.099,6.554,3.766,0.96,1.87,3.36,2.565,4.275,2.29,9.333,5.589,3.338,11.233,4.45,3.644,4.352,9.137,17.356,2.337,1.47,1.435,2.663,4.828,3.889,1.728,2.031,3.748,3.647,7.655,12.92,4.077,8.749,6.39,1.594,0.807,0.905,1.336,1.387,2.082,2.549,1.599,7.565,17.151,16.947,0.651,0.363,16.701,15.687,1.715,1.751,1.739,1.734,1.751,1.746,1.723,1.765,1.723,1.745,2.174,1.282,1.735,1.743,2.07,1.723,1.748,1.731,5.155,0.797,6.046,2.886,3.478,3.179,1.149,0.977,2.421,2.932,1.503,2.012,1.835,1.023,2.271,2.462,2.661,14.56,15.874,15.417,1.991,1.749,2.444,1.936,2.173,3.741,1.118,5.927,15.843,0.797,9.969,7.087,6.835,0.699,7.165,2.579,18.036,17.925,7.905,2.876,2.705,2.583,2.729,7.919,8.212,1.656,4.928,2.145,2.116,2.134,2.139,2.118,2.132,2.151,2.126,2.122,2.151,2.133,2.131,2.136,2.119,2.139,0.197,1.11,2.056,2.03,4.08,2.027,2.035,1.913,0.124,2.364,2.353,10.72,6.129,2.671,2.005,2.36,2.327,0.93,4.142,2.02,2.037,2.013,2.007,2.016,2.066,2.031,2.032,2.011,2.035,2.014,2.03,2.013,2.01,2.123,3.988,1.459,4.868,1.063,3.71,0.737,3.42,7.253,1.08,6.287,6.093,1.434,4.48,3.396,1.358,1.788,8.646,2.839,5.884,1.274,0.397,7.061,2.704,2.1,1.546,4.496,2.012,3.964,0.696,5.472,2.456,5.208,2.792,1.546,7.186,2.414,3.934,0.987,2.624,1.355,1.948,1.917,2.039,1.882,1.711,1.531,0.931,0.825,0.666,0.655,6.032,7.804,3.272,8.76,4.131,2.49,1.309,1.861,1.916,1.283,0.777,1.224,1.201,1.713,1.504,1.824,1.707,1.97,1.764,0.159,1.792,0.994,1.092,0.936,1.817,1.461,6.372,3.401,7.22,2.263,2.681,2.052,2.682,0.718,1.996,2.591,2.674,2.634,3.24,2.109,2.02,1.805,1.516,1.323,3.437,7.898,1.023,2.763,1.023,21.212,20.834,3.193,6.183,3.319,1.538,6.46,0.732,6.05,2.317,2.625,1.563,1.709,1.358,1.342,1.478,1.546,0.864,1.308,1.562,1.385,1.506,2.297,1.354,1.487,1.436,1.475,2.193,4.375,4.962,15.649,3.706,2.879,2.968,2.937,5.141,1.283,1.729,1.562,7.306,4.581,3.708,2.798,2.645,2.763,3.296,3.182,3.047,3.086,4.114,0.16,1.647,2.986,2.955,8.734,1.614,2.268,9.432,9.089,3.287,8.627,8.633,1.388,3.471,3.505,4.097,3.961,4.507,5.504,7.131,1.98,1.155,9.707,5.07,13.4,3.675,3.755,3.605,4.305,1.765,1.21,1.935,8.325,1.439,4.424,2.696,1.622,0.2,0.041,0.204,0.248,10.063,1.716,6.984,1.852,4.786,1.655,11.556,16.752,4.907,0.417,3.559,2.299,2.083,2.523,10.18,2.198,1.906,0.256,2.286,8.046,4.404,2.61,11.127,0.75,0.962,6.503,1.601,0.815,2.181,2.031,2.861,16.239,0.237,9.554,8.631,3.346,0.576,2.459,2.61,16.01,17.501,4.915,9.414,9.404,3.933,3.178,1.645,1.663,1.37,2.366,1.777,2.392,6.68,0.117,7.777,16.342,5.805,5.516,10.227,0.599,21.626,20.698,8.697,12.762,0.568,1.144,8.877,4.483,0.426,5.512,10.096,4.052,2.818,1.487,1.521,2.628,3.671,2.963,9.769,11.763,2.732,2.672,1.937,0.68,1.662,1.141,0.656,0.983,1.489,1.778,1.011,1.04,0.947,1.066,1.443,1.094,1.057,1.464,0.885,0.016,2.598,3.527,1.05,1.017,0.998,5.563,0.639,5.816,5.376,1.712,1.211,2.232,1.19,1.93,1.542,1.644,2.001,1.796,1.797,1.231,1.818,1.759,1.847,1.668,6.202,0.927,1.403,3.15,1.004,1.703,1.284,0.135,4.183,0.419,1.412,1.527,1.975,1.917,1.792,1.301,1.887,1.707,0.193,1.929,1.913,1.883,1.494,0.865,1.308,1.093,1.576,1.845,1.744,1.35,1.378,1.943,6.53,3.652,2.429,6.361,1.038,9.51,19.986,7.127,5.435,3.692,8.424,1.269,3.049,4.078,2.386,3.323,3.261,7.276,5.22,1.053,5.79,3.92,1.114,1.646,3.004,3.184,4.086,5.692,5.162,10.815,1.685,17.208,3.448,1.087,6.708,6.587,14.073,1.981,6.342,2.351,4.087,1.028,2.956,2.549,13.951,13.956,4.577,14.16,0.918,0.627,2.996,14.997,0.789,4.772,4.66,3.56,3.081,2.01,1.306,0.43,1.714,1.172,2.259,0.988,0.396,1.283,6.317,3.601,3.503,4.326,3.553,2.481,1.076,1.506,1.329,0.576,1.945,2.528,1.441,1.429,1.023,6.551,1.62,2.536,2.532,5.038,3.902,2.81,0.424,0.328,7.052,0.432,7.494,0.617,1.059,2.424,1.375,4.871,2.301,2.305,0.663,0.048,3.208,1.002,2.118,2.14,4.291,1.908,0.001,1.783,0.147,4.379,4.705,4.801,2.781,5.602,6.045,6.121,12.399,0.594,5.035,8.484,0.671,8.315,0.921,5.787,1.268,2.334,4.618,2.255,0.558,1.115,5.902,5.056,0.711,2.79,3.105,0.205,11.093,0.499,3.454,3.074,3.326,2.639,11.499,17.628,0.297,0.154,6.137,1.461,1.08,2.808,7.798,6.776,1.338,1.694,3.801,3.78,1.422,3.948,0.314,3.557,4.682,3.94,1.04,4.241,0.162,3.301,3.958,0.516,3.271,0.489,1.627,4.226,4.799,4.941,2.506,4.101,0.891,0.748,12.242,7.798,10.029,17.812,0.409,17.666,9.54,2.479,0.608,1.209,3.999,3.86,2.832,1.694,0.454,0.84,8.406,7.759,8.122,2.324,13.419,5.39,15.013,0.468,1.998,18.267,1.262,4.654,1.524,5.93,2.149,2.858,7.097,6.172,2.167,3.131,13.875,1.09,2.725,3.741,12,2.435,0.594,14.38,7.489,2.297,8.102,6.777,6.149,4.023,1.904,0.582,3.672,2.088,3.511,5.972,15.739,6.415,7.339,1.078,2.692,6.66,1.094,2.054,0.317,5.234,2.649,1.384,6.197,3.388,7.423,9.766,6.775,16.071,1.607,0.162,1.285,1.176,5.846,3.902,3.73,1.531,0.232,0.828,15.984,1.197,0.66,7.837,9.604,6.489,2.047,9.07,7.023,2.329,1.218,5.794,1.074,4.206,12.651,0.769,1.712,2.844,3.153,2.406,1.263,3.691,3.421,0.806,2.502,3.75,2.686,3.116,5.818,8.26,4.872,7.342,8.487,1.992,6.601,11.039,3.585,3.693,9.471,11.823,5.513,0.452,8.873,6.177,1.762,1.33,2.593,4.322,3.966,5.115,0.301,8.554,0.849,4.434,2.671,0.526,10.009,7.437,5.734,0.104,10.433,0.676,3.68,3.838,1.714,0.727,3.369,2.032,0.753,0.957,1.244,5.108,5.494,5.222,2.716,12.528,1.893,8.19,8.088,8.343,5.497,3.099,0.884,1.2,3.862,1.95,12.581,21.888,0.847,15.895,3.332,11.91,11.626,3.579,7.042,1.256,0.678,2.644,9.532,1.493,14.685,75.046,8.585,2.654,7.729,3.083,8.67,4.708,15.631,15.59,6.88,26.521,26.279,4.655,48.867,19.646,3.866,11.169,1.163,4.717,2.981,2.564,6.331,9.4,9.92,8.693,2.739,3.873,3.751,3.751,6.58,6.967,16.074,3.198,0.18,8.29,3.525,5.843,0.806,35.925,10.916,2.492,0.953,8.671,12.614,9.665,8.896,4.06,5.006,6.075,11.895,17.428,1.742,2.81,8.897,11.96,3.355,9.593,13.09,19.828,5.737,3.792,9.251,2.535,6.51,3.729,1.179,8.87,11.065,4.746,0.254,0.357,2.128,14.299,1.218,0.477,3.386,3.375,1.473,1.846,1.164,4.724,5.159,5.014,0.814,4.281,0.225,0.045,2.779,0.547,5.6,3.175,4.626,0.823,4.368,3.625,1.637,2.047,2.561,6.739,2.94,8.52,1.323,1.061,12.173,3.354,7.256,0.555,7.222,13.601,21.882,5.437,1.041,0.255,2.094,0.573,10.106,3.868,2.717,4.459,8.086,1.313,0.465,1.703,6.162,1.424,1.858,4.455,1.957,1.058,0.503,4.382,11.683,1.741,1.471,6.247,5.837,0.35,4.178,2.859,14.777,3.794,13.505,0.522,1.489,0.489,1.835,13.194,0.828,6.851,10.366,4.618,5.606,6.142,0.44,3.351,3.697,1.325,3.227,3.344,1.511,1.258,1.048,1.98,1.786,1.903,1.642,1.463,1.99,5.062,4.302,12.148,0.456,5.782,6.064,4.261,3.451,3.872,3.738,3.969,0.204,1.217,3.587,3.499,6.103,2.274,1.225,8.044,3.6,4.887,1.785,2.362,4.552,4.086,1.994,2.01,0.076,1.128,1.694,2.024,1.377,1.257,3.081,4.14,2.124,2.541,11.16,3.295,10.948,0.918,6.989,5.591,0.512,16.028,9.089,9.069,4.494,2.538,7.985,4.538,7.496,15.57,6.943,8.752,13.596,1.643,2.557,6.484,8.623,2.661,7.854,2.792,12.564,13.943,8.725,0.262,1.212,10.419,6.745,5.911,6.926,2.832,1.45,0.537,10.876,4.541,1.81,2.431,3.371,5.038,3.373,2.299,0.729,3.559,2.598,2.661,1.138,2.698,3.98,1.032,15.066,15.358,2.578,2.056,1.908,2.581,1.964,1.958,2.107,1.756,1.763,1.525,0.24,1.936,1.693,2.399,2.021,1.79,6.544,16.949,2.774,12.151,1.615,11.874,2.412,1.368,3.125,2.706,2.386,3.19,2.034,2.171,1.66,2.911,2.566,1.419,2.389,2.299,2.169,0.603,1.782,0.561,4.431,1.599,10.245,4.333,3.109,2.77,1.22,0.342,5.119,1.328,14.694,0.025,15.874,5.881,1.938,8.427,10.692,5.094,1.037,4.712,1.917,1.568,1.114,4.658,1.971,0.398,1.332,4.315,1.832,1.999,4.201,2.131,1.802,9.362,1.145,1.499,4.661,5.157,12.348,1.335,13.074,2.731,11.066,1.902,32.478,6.117,7.765,1.121,70.434,1.063,29.962,1.711,0.727,1.029,24.826,6.555,0.916,6.04,1.595,6.514,7.78,17.081,6.522,2.594,1.92,1.515,9.01,4.439,0.223,1.371,2.165,2.684,7.533,2.057,0.617,1.235,2.43,2.221,8.324,7.253,2.729,3.995,5.846,3.758,3.759,2.789,2.791,2.826,2.815,3.555,1.22,2.32,7.215,5.571,5.586,4.58,1.398,6.068,1.243,3.74,0.559,1.119,1.105,3.105,1.582,24.146,5.139,4.941,4.955,4.859,3.771,3.601,5.704,5.673,7.785,2.076,33.9,0.961,11.709,4.878,5.072,7.741,5.203,2.481,2.489,7.905,2.253,5.939,0.748,1.306,0.698,4.249,4.85,5.164,5.885,1.387,2.036,9.108,14.303,11.518,1.654,2.159,2.468,2.483,2.29,2.258,2.388,2.469,4.41,13.219,1.766,13.521,1.228,1.775,1.761,1.905,1.774,2.908,1.391,1.457,2.638,4.184,6.994,1.472,4.707,1.004,2.146,0.463,1.461,2.9,1.049,1.279,0.8,4.333,4.375,7.844,0.893,17.489,2.704,2.703,0.654,0.699,1.367,0.962,1.843,1.999,2.05,0.91,2.81,3.351,0.296,3.179,1.288,1.49,1.543,1.396,2.93,3.471,1.603,1.643,3.227,3.01,2.609,0.625,2.671,3.278,3.992,1.067,0.778,1.869,1.95,0.945,0.848,3.21,4.673,2.348,2.357,2.382,2.331,2.028,2.092,2.101,1.721,1.521,1.547,2.653,2.827,3.082,2.69,6.173,0.473,5.252,10.511,28.252,1.768,1.463,1.259,3.295,4.407,7.156,2.889,1.113,0.67,3.288,0.013,1.523,0.407,3.842,3.803,1.002,1.862,3.111,0.676,1.137,1.647,4.643,4.247,5.785,1.051,1.655,2.546,2.517,1.557,2.233,2.216,2.209,2.219,5.106,5.077,8.267,8.042,6.749,6.249,18.072,5.016,1.326,7.912,8.387,1.747,3.889,2.847,1.199,1.791,4.971,5.859,4.748,16.097,5.306,5.357,2.577,4.122,2.574,1.928,2.04,2.018,3.267,2.25,1.445,1.988,1.5,2.18,1.415,3.005,2.273,31.979,14.148,2.421,2.14,2.741,2.374,2.641,2.391,2.18,2.168,2.351,2.385,3.251,3.559,1.817,1.84,3.896,2.059,1.772,6.024,5.036,4.621,7.842,1.277,8.64,4.938,9.999,2.642,12.695,1.778,8.49,0.637,14.583,8.127,8.33,13.079,4.85,2.133,1.523,1.073,1.86,0.847,1.911,1.973,1.939,4.128,3.945,3.47,2.378,2.684,2.559,2.574,0.974,0.874,1.742,0.954,0.787,1.871,1.09,5.391,14.019,5.604,13.977,2.849,4.112,1.639,2.289,2.705,4.859,3.008,1.23,1.175,4.707,9.385,7.37,6.807,6.014,2.658,5.924,3.093,3.604,5.274,6.993,3.38,3.562,7.013,5.499,9.096,1.524,3.948,3.575,3.653,5.312,3.662,4.21,1.488,1.318,2.867,1.749,4.624,5.367,2.545,5.942,4.802,2.095,2.032,5.644,7.101,2.651,5.866,5.647,4.608,3.247,3.566,6.62,7.187,4.164,3.225,4.868,4.212,4.966,4.523,2.595,6.356,0.434,1.148,4.673,1.515,1.242,0.955,3.873,13.349,7.094,3.911,0.824,0.559,5.519,3.021,2.801,2.009,1.833,1.785,1.713,1.721,1.724,9.875,2.066,1.657,2.189,1.339,1.538,1.747,1.233,1.635,1.152,1.278,1.306,1.064,2.148,1.537,5.443,1.999,1.747,2.163,2.764,0.773,0.721,1.215,1.578,2.562,1.393,1.28,1.183,1.16,1.156,1.193,1.913,1.915,1.37,1.95,5.18,1.824,0.734,2.315,1.729,1.635,1.551,1.903,3.759,14.946,9.177,0.783,5.504,2.633,3.292,3.689,2.991,3.346,3.697,3.257,0.09,3.832,5.948,11.202,10.886,10.639,4.171,3.509,10.561,2.125,3.214,6.802,6.648,6.588,4.28,1.01,2.401,2.629,7.21,5.459,5.593,5.707,6.421,5.217,5.85,11.46,6.794,9.238,1.281,5.524,3.497,3.113,1.334,0.801,0.726,4.035,0.972,4.594,2.14,5.367,9.161,3.936,9.392,12.734,17.137,12.568,7.39,3.042,5.122,3.218,6.148,6.185,11.505,16.249,12.546,4.673,2.326,2.117,2.214,3.147,0.823,0.936,7.492,12.172,7.914,2.567,20.77,3.012,7.632,15.568,5.054,6.067,7.698,12.914,3.851,11.423,5.059,7.968,2.584,5.176,2.777,1.343,2.131,1.263,1.885,1.738,0.424,1.053,6.391,2.665,6.891,4.627,2.253,2.104,1.693,0.463,2.506,2.781,2.378,2.253,3.345,2.074,1.893,3.202,3.515,17.158,8.201,8.274,12.168,13.437,7.404,7.484,2.829,4.438,3.241,0.478,2.518,4.782,3.004,3.726,1.785,4.477,2.18,4.217,6.719,1.224,1.038,27.569,1.577,2.008,0.804,1.059,5.896,2.032,4.521,4.812,2.84,3.845,0.566,0.041,1.906,2.651,1.203,1.517,2.203,4.393,11.528,1.432,8.371,0.867,0.328,4.014,3.059,2.011,1.47,3.04,4.224,4.108,4.415,3.56,1.551,1.227,3.909,5.113,5.146,5.036,5.227,6.168,1.61,6.463,6.939,8.524,18.86,6.705,2.824,3.98,15.458,2.507,2.473,7.242,7.74,9.939,18.609,1.993,9.021,6.68,0.955,0.955,4.09,3.169,3.639,3.021,1.131,2.056,3.106,3.101,3.24,2.932,2.924,3.113,3.17,3.293,3.062,3.11,3.139,3.284,3.154,2.962,1.263,1.615,1.234,1.669,1.408,1.65,3.584,1.658,2.559,1.203,2.188,1.612,2.016,2.427,12.839,1.682,1.364,10.902,15.413,11.029,2.076,2.712,6.39,4.641,4.813,3.213,6.403,6.217,6.75,2.759,5.003,17.609,7.381,2.699,2.699,3.733,4.203,1.869,3.682,3.357,4.051,5.195,2.455,4.051,15.16,23.265,2.637,2.97,0.704,1.176,1.112,1.198,0.872,0.944,0.956,0.8,0.911,1.091,0.889,1.063,0.797,1.104,1.056,1.106,1.026,1.282,1.254,1.269,1.31,1.241,1.208,1.452,2.984,7.65,4.938,2.603,1.35,16.023,1.057,4.405,10.699,21.346,46.078,5.631,3.336,4.972,5.147,3.637,0.539,1.657,1.656,0.87,1.876,2.51,2.168,2.738,3.115,3.852,7.696,9.2,6.817,4.335,4.762,10.366,6.26,4.041,2.859,0.954,3.533,0,1.484,1.837,0.812,1.152,1.774,2.159,1.426,1.136,2.334,1.833,3.868,3.172,6.404,4.286,3.143,5.225,0.6,4.872,2.846,2.986,1.885,2.422,2.43,1.661,2.706,1.439,1.277,2.132,1.502,0.306,2.181,1.532,0.873,0.279,2.156,2.407,4.856,0.648,1.293,2.121,1.797,1.939,2.466,2.099,1.84,1.953,2.528,6.353,7.967,5.145,6.676,1.225,7.377,14.895,2.773,2.264,1.692,0.404,1.607,3.783,1.628,1.232,1.235,1.233,1.232,1.233,1.233,1.233,1.233,1.234,1.171,1.174,1.174,1.172,1.172,1.026,1.072,0.921,0.921,0.762,0.918,0.797,1.22,1.607,1.3,3.637,1.477,1.871,5.711,7.9,5.911,4.342,11.793,1.527,1.816,7.135,1.238,1.215,1.27,1.186,1.265,3.456,2.193,5.451,1.563,11.763,6.1,1.885,9.228,4.029,1.808,1.199,1.284,1.219,1.176,1.277,1.216,1.196,1.222,1.362,1.18,1.215,1.193,1.298,1.291,1.424,2.183,3.223,2.125,1.371,7.032,5.702,5.313,0.961,8.654,2.377,10.944,3.948,2.345,3.221,2.61,2.648,2.384,2.447,2.223,2.155,3.376,3.971,2.49,2.795,2.083,2.449,2.739,13.955,6.92,6.355,6.229,25.54,1.956,2.103,1.804,1.873,2.305,0.691,1.413,1.91,2.078,1.755,6.405,5.027,2.409,1.988,1.201,1.043,0.99,0.521,0.828,2.071,1.557,1.322,1.144,2.8,1.891,1.547,17.939,2.207,7.588,1.261,1.13,1.422,0.945,0.936,0.539,1.844,0.987,0.877,0.491,2.307,1.5,3.181,2.974,2.602,9.936,1.719,2.174,0.271,1.395,1.096,1.054,1.051,1.152,1.076,1.129,1.065,1.091,1.178,1.001,0.86,0.887,0.995,1,1.018,1.371,16.758,2.575,9.119,1.267,1.983,1.374,1.343,1.202,1.262,1.243,1.194,1.34,1.295,1.423,1.447,1.295,1.322,1.322,0.855,0.721,0.267,1.759,1.793,1.615,1.759,2.121,2.16,4.193,5.906,7.339,1.472,6.932,14.462,11.581,2.068,0.344,2.519,1.476,1.089,1.065,1.231,1.356,1.367,1.443,1.421,1.489,1.345,1.136,0.905,1.125,1.275,0.922,1.211,3.068,2.025,1.125,0.606,0.089,2.543,1.349,0.639,1.459,2.679,2.766,0.345,5.382,16.639,1.889,2.575,0.719,0.978,1.957,1.466,1.085,1.105,1.556,2.014,1.263,1.534,0.994,0.96,1.497,1.468,1.557,0.802,0.793,0.867,0.732,1.063,1.184,1.117,1.013,0.826,1.161,2.975,4.347,5.536,4.094,2.379,2.159,0.378,0.745,2.123,2.153,1.574,1.412,2.032,1.544,1.281,0.973,1.268,0.77,0.747,5.015,2.324,2.464,2.365,2.336,2.611,2.336,2.601,2.219,3.721,2.064,0.979,8.673,12.832,12.964,12.912,11.077,9.903,1.549,14.023,10.194,4.016,13.435,1.895,14.876,2.954,7.057,4.773,2.23,8.089,1.418,6.083,3.353,4.803,3.198,15.598,20.611,4.76,3.823,3.654,16.148,1.057,11.209,6.191,0.449,5.662,0.646,9.104,6.743,7.098,2.55,1.44,1.42,6.508,11.588,4.32,3.363,2.089,1.25,0.803,0.998,0.739,0.601,0.768,0.705,0.75,0.704,0.791,0.701,0.77,0.866,0.856,0.952,0.301,0.735,2.153,1.193,3.229,1.546,1.507,2.186,1.271,1.351,1.432,1.379,1.02,1.124,1.596,1.8,0.985,0.923,0.626,0.97,0.676,0.705,0.752,0.697,0.666,0.596,0.809,0.652,0.649,0.509,0.573,1.377,1.697,1.479,8.892,1.25,1.735,1.843,1.683,1.157,1.229,1.077,1.207,1.09,1.454,3.081,3.023,2.091,2.245,1.534,1.799,2.463,16.436,7.498,1.358,7.271,1.782,2.054,2.428,2.52,3.774,3.189,4.232,4.02,1.585,4.405,4.08,4.474,2.725,3.433,5.993,3.274,2.512,1.301,1.956,2.822,3.818,2.879,2.251,2.228,2.676,2.03,5.043,4.818,2.539,2.131,3.434,10.739,2.548,0.947,2.758,2.103,1.4,0.484,6.857,4.317,4.412,11.748,2.502,1.49,0.379,1.679,7.297,0.549,3.965,1.069,1.164,1.218,0.685,20.533,4.635,1.384,0.646,1.351,3.872,1.133,0.357,9.657,3.394,9.511,5.824,3.385,3.884,1.644,1.815,0.433,1.246,3.465,1.103,7.063,0.837,1.144,6.419,0.338,1.02,1.562,0.521,14.572,5.498,2.362,0.882,3.608,6.818,4.199,6.6,1.4,4.199,3.811,0.554,0.568,2.474,2.1,2.116,2.628,1.117,2.612,2.483,0.744,1.259,6.462,3.607,4.724,0.874,4.096,1.03,0.465,2.985,1.482,0.771,2.296,3.432,1.703,3.837,2.079,3.388,4.48,1.418,0.878,4.732,9.225,9.661,1.814,3.125,1.806,1.305,1.052,0.599,1.393,7.21,1.036,4.767,1.975,1.179,2.191,2.581,5.119,5.779,3.84,10.328,5.527,4.568,4.331,4.08,2.672,4.46,1.053,1.422,2.325,0.054,0.819,1.077,0.873,0.963,1.572,1.501,1.253,1.048,1.115,1.099,0.808,0.768,0.605,0.914,0.815,0.949,0.877,0.81,0.8,0.737,0.893,0.952,0.723,0.676,1.212,1.057,1.114,1.304,1.064,1.289,1.746,1.533,1.333,0.56,0.699,0.775,0.967,1.696,0.516,0.845,1.207,0.042,0.391,0.493,0.682,0.648,17.534,0.754,0.965,0.728,1.693,0.579,7.841,10.523,1.256,0.681,2.9,2.483,3.043,6.58,0.568,1.921,0.751,0.966,0.425,0.366,0.791,0.336,1.226,1.982,14.945,3.818,5.173,0.499,0.564,0.345,1.328,0.675,0.661,0.335,2.436,0.982,1.637,7.852,0.46,0.852,1.118,1.016,0.744,0.307,4.88,26.086,3.622,1.117,18.992,12.918,8.938,6.703,2.073,0.534,0.763,0.761,0.966,0.975,1.011,1.073,2.181,1.282,1.262,1.265,1.267,0.622,0.649,1.288,1.171,1.115,1.325,0.538,0.367,1.116,0.744,0.681,0.672,0.669,0.675,0.681,0.675,0.675,2.048,1.269,0.818,1.049,0.186,0.476,16.813,15.988,10.603,2.755,2.755,0.215,18.884,11.785,16.42,1.019,7.801,4.48,0.921,0.79,0.229,2.619,1.818,0.675,0.499,12.926,8.182,49.645,0.937,0.875,0.3,0.643,2.422,0.27,1.058,1.033,0.334,0.857,1.106,1.372,2.238,1.469,0.828,0.919,0.791,0.753,1.074,1.066,2.899,13.446,2.574,6.875,0.806,1.104,0.732,1.958,7.218,3.931,2.126,2.782,1.092,1.375,0.601,0.584,3.326,0.541,0.423,1.608,6.133,1.546,0.306,0.162,1.726,1.773,0.368,0.141,3.682,1.744,7.811,0.988,0.712,9.007,0.121,0.525,0.563,1.025,0.409,13.821,1.157,1.589,0.349,2.987,2.029,0.533,14.803,5.746,7.218,1.106,0.55,1.328,2.943,0.887,2.507,20.707,0.429,1.588,2.129,0.315,3.917,11.437,0.41,5.324,8.246,11.23,3.6,1.627,3.068,6.501,6.64,14.119,15.158,23.988]},"weight_typical":21408.281,"duration_typical":22765.812,"weight":21408.281,"duration":22765.812,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive southeast on Prinz-Ludwig-Straße. Then Turn left onto Türkenstraße.","announcement":"Drive southeast on Prinz-Ludwig-Straße. Then Turn left onto Türkenstraße.","distanceAlongGeometry":115.581}],"intersections":[{"entry":[true],"bearings":[114],"duration":11.198,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":12.318,"geometry_index":0,"location":[11.571182,48.145544]},{"entry":[true,true,false],"in":2,"bearings":[114,204,294],"duration":9.481,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":11.421,"geometry_index":1,"location":[11.571912,48.145323]},{"bearings":[23,114,203,294],"entry":[false,true,false,false],"in":3,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":2,"location":[11.572525,48.145138]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"turn","modifier":"right","text":"Gabelsbergerstraße"},"primary":{"components":[{"type":"text","text":"Türkenstraße"}],"type":"turn","modifier":"left","text":"Türkenstraße"},"distanceAlongGeometry":115.581}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive southeast on Prinz-Ludwig-Straße.","bearing_after":114,"bearing_before":0,"location":[11.571182,48.145544]},"speedLimitSign":"vienna","name":"Prinz-Ludwig-Straße","weight_typical":26.99,"duration_typical":21.823,"duration":21.823,"distance":115.581,"driving_side":"right","weight":26.99,"mode":"driving","geometry":"ogqyzA{}faUxLsl@pJie@j@uC"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Gabelsbergerstraße. Then Keep left to stay on Gabelsbergerstraße.","announcement":"Turn right onto Gabelsbergerstraße. Then Keep left to stay on Gabelsbergerstraße.","distanceAlongGeometry":101.389}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[24,204,294],"duration":6.195,"turn_weight":10,"turn_duration":5.395,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":10.88,"geometry_index":3,"location":[11.5726,48.145116]},{"entry":[true,false,false,false],"in":2,"bearings":[23,113,204,296],"duration":17.219,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":20.92,"geometry_index":4,"location":[11.572624,48.145152]},{"entry":[false,true,false],"in":2,"bearings":[20,54,203],"duration":2.527,"turn_weight":1.5,"turn_duration":0.052,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":4.222,"geometry_index":5,"location":[11.573074,48.145864]},{"entry":[false,true,false,false],"in":3,"bearings":[18,67,201,234],"duration":0.693,"turn_weight":2,"turn_duration":0.018,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":2.743,"geometry_index":8,"location":[11.57319,48.14592]},{"bearings":[80,189,247,344],"entry":[true,false,false,false],"in":2,"turn_weight":2,"turn_duration":0.018,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":9,"location":[11.573225,48.14593]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"fork","modifier":"left","text":"Gabelsbergerstraße"},"primary":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"turn","modifier":"right","text":"Gabelsbergerstraße"},"distanceAlongGeometry":115.226}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn left onto Türkenstraße.","modifier":"left","bearing_after":24,"bearing_before":114,"location":[11.5726,48.145116]},"speedLimitSign":"vienna","name":"Türkenstraße","weight_typical":43.488,"duration_typical":29.126,"duration":29.126,"distance":115.226,"driving_side":"right","weight":43.488,"mode":"driving","geometry":"wlpyzAoviaUgAo@ok@c[u@_B_@}@YiASeAU_BMiE"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to stay on Gabelsbergerstraße.","announcement":"Keep left to stay on Gabelsbergerstraße.","distanceAlongGeometry":53.333}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[131,260,315],"duration":2.699,"turn_weight":9,"turn_duration":0.207,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":11.742,"geometry_index":11,"location":[11.573374,48.145948]},{"entry":[true,false],"in":1,"bearings":[126,311],"duration":4.985,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.983,"geometry_index":12,"location":[11.573466,48.145895]},{"entry":[true,false],"in":1,"bearings":[122,306],"duration":3.877,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.765,"geometry_index":13,"location":[11.573665,48.1458]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["right"],"valid":false,"active":false}],"bearings":[115,302],"entry":[true,false],"in":1,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":14,"location":[11.573821,48.145736]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Gabelsbergerstraße"}],"type":"fork","modifier":"left","text":"Gabelsbergerstraße"},"distanceAlongGeometry":73.996}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Gabelsbergerstraße.","modifier":"right","bearing_after":131,"bearing_before":80,"location":[11.573374,48.145948]},"speedLimitSign":"vienna","name":"Gabelsbergerstraße","weight_typical":33.042,"duration_typical":20.699,"duration":20.699,"distance":73.996,"driving_side":"right","weight":33.042,"mode":"driving","geometry":"w`ryzA{fkaUhBwD|DmK~BwHzFiX"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1562.658},{"ssmlAnnouncement":"In a quarter mile, Turn left onto Widenmayerstraße.","announcement":"In a quarter mile, Turn left onto Widenmayerstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left onto Widenmayerstraße.","announcement":"Turn left onto Widenmayerstraße.","distanceAlongGeometry":46.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[11.574226,48.14561],"geometry_index":15,"admin_index":0,"weight":8.67,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.056,"turn_weight":0.75,"duration":7.256,"bearings":[101,118,295],"out":0,"in":2,"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"location":[11.5747,48.145547],"geometry_index":18,"admin_index":0,"weight":10.667,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.021,"turn_weight":7,"duration":3.354,"bearings":[32,65,100,220,281],"out":2,"in":4,"entry":[false,false,true,true,false]},{"entry":[true,false],"in":1,"bearings":[93,278],"duration":1.35,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.985,"geometry_index":21,"location":[11.575026,48.145513]},{"entry":[true,false,false],"in":2,"bearings":[88,251,273],"duration":14.199,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.592,"geometry_index":23,"location":[11.575181,48.145508]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.576876,48.145584],"geometry_index":27,"admin_index":0,"weight":25.564,"is_urban":true,"turn_weight":5.5,"duration":18.24,"bearings":[92,269],"out":0,"in":1,"classes":["tunnel"],"entry":[true,false],"tunnel_name":"Altstadtringtunnel"},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.578864,48.145286],"geometry_index":32,"admin_index":0,"weight":44.51,"is_urban":true,"turn_weight":0.95,"duration":39.6,"bearings":[108,288],"out":0,"in":1,"classes":["tunnel"],"entry":[true,false],"tunnel_name":"Altstadtringtunnel"},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.583034,48.144269],"geometry_index":34,"admin_index":0,"weight":17.45,"is_urban":true,"classes":["tunnel"],"turn_duration":0.008,"turn_weight":0.95,"duration":15.008,"bearings":[114,292],"out":0,"in":1,"entry":[true,false],"tunnel_name":"Altstadtringtunnel"},{"entry":[true,false],"in":1,"bearings":[107,294],"duration":20.4,"turn_weight":5.95,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":28.39,"geometry_index":35,"location":[11.584572,48.143822]},{"entry":[true,false],"in":1,"bearings":[105,285],"duration":0.96,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.556,"geometry_index":39,"location":[11.586982,48.143351]},{"entry":[true,false,false],"in":2,"bearings":[98,275,285],"duration":2.186,"turn_weight":0.75,"turn_duration":0.026,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.126,"geometry_index":40,"location":[11.58709,48.143332]},{"entry":[true,false,true],"in":1,"bearings":[110,278,297],"duration":0.55,"turn_weight":0.75,"turn_duration":0.017,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.337,"geometry_index":42,"location":[11.587333,48.14331]},{"entry":[true,true,true,false],"in":3,"bearings":[15,106,221,290],"duration":2.101,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.285,"geometry_index":43,"location":[11.587386,48.143297]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":2.914,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.706,"geometry_index":44,"location":[11.587585,48.143258]},{"entry":[true,false],"in":1,"bearings":[106,286],"duration":5.76,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.836,"geometry_index":45,"location":[11.587803,48.143215]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":1.44,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.084,"geometry_index":47,"location":[11.588213,48.143134]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.588314,48.143114],"geometry_index":48,"admin_index":0,"weight":3.97,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":2.707,"bearings":[15,107,197,287],"out":1,"in":3,"entry":[false,true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.588503,48.143075],"geometry_index":51,"admin_index":0,"weight":1.264,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":1,"duration":0.259,"bearings":[23,106,197,287],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[true,false],"in":1,"bearings":[108,286],"duration":1.575,"turn_weight":0.95,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.682,"geometry_index":52,"location":[11.588524,48.143071]},{"entry":[false,true,false,false],"in":3,"bearings":[17,108,199,288],"duration":7.894,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.663,"geometry_index":53,"location":[11.588709,48.143032]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":7.762,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.039,"geometry_index":55,"location":[11.589614,48.142842]},{"entry":[true,true,false],"in":2,"bearings":[107,196,287],"duration":20.042,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":22.538,"geometry_index":56,"location":[11.590508,48.142661]},{"mapbox_streets_v8":{"class":"secondary"},"location":[11.592161,48.142329],"geometry_index":57,"admin_index":0,"weight":15.719,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":2,"duration":14.479,"bearings":[24,108,201,287],"out":1,"in":3,"entry":[false,true,true,false]},{"entry":[true,true,true,false],"in":3,"bearings":[17,106,197,288],"duration":12.622,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":14.86,"geometry_index":58,"location":[11.593402,48.142058]},{"bearings":[17,106,197,286],"entry":[false,true,false,false],"in":3,"turn_weight":1,"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":61,"location":[11.594303,48.141886]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Widenmayerstraße"}],"type":"turn","modifier":"left","text":"Widenmayerstraße"},"distanceAlongGeometry":1572.658},{"sub":{"components":[{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Widenmayerstraße"}],"type":"turn","modifier":"left","text":"Widenmayerstraße"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Gabelsbergerstraße.","modifier":"slight left","bearing_after":101,"bearing_before":115,"location":[11.574226,48.14561]},"speedLimitSign":"vienna","name":"Gabelsbergerstraße","weight_typical":259.066,"duration_typical":205.007,"duration":205.007,"distance":1572.658,"driving_side":"right","weight":259.066,"mode":"driving","geometry":"skqyzAc|laUh@cIl@iId@eHh@mHP{DFaDDcBBqECeDKgMcCeeACiOJsQToOV_H`@eFvN}gAtZc_Czb@ocC|Zc_BnOoqAlD}YfDq[fAsKd@wEP}DXgHXiBlAmKtAsLDa@zCqWf@iEv@mGNoAD[Fi@lAqJ`Gsd@xB}QhJ{v@vSifB|OqlAfBoODa@hFwe@~@kI"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":659.241},{"ssmlAnnouncement":"In a quarter mile, Keep left to stay on Widenmayerstraße.","announcement":"In a quarter mile, Keep left to stay on Widenmayerstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to stay on Widenmayerstraße.","announcement":"Keep left to stay on Widenmayerstraße.","distanceAlongGeometry":88.889}],"intersections":[{"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"secondary"},"location":[11.594469,48.141854],"geometry_index":62,"admin_index":0,"weight":11.398,"is_urban":true,"traffic_signal":true,"turn_duration":7.51,"turn_weight":10,"duration":8.781,"bearings":[16,107,194,286],"out":0,"in":3,"entry":[true,true,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[17,107,196,301],"duration":23.725,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":27.089,"geometry_index":63,"location":[11.594514,48.141956]},{"entry":[true,false,false,true],"in":2,"bearings":[9,97,189,280],"duration":13.699,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.048,"geometry_index":66,"location":[11.595167,48.143921]},{"entry":[true,false,false,true],"in":2,"bearings":[8,99,189,282],"duration":11.238,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.34,"geometry_index":67,"location":[11.595486,48.145269]},{"entry":[true,false,false,false],"in":2,"bearings":[7,97,188,277],"duration":10.988,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.064,"geometry_index":68,"location":[11.595751,48.14646]},{"bearings":[18,191,329],"entry":[true,false,true],"in":1,"turn_weight":0.5,"turn_duration":0.011,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":70,"location":[11.595988,48.147625]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Widenmayerstraße"}],"type":"fork","modifier":"left","text":"Widenmayerstraße"},"distanceAlongGeometry":675.908}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Widenmayerstraße.","modifier":"left","bearing_after":16,"bearing_before":106,"location":[11.594469,48.141854]},"speedLimitSign":"vienna","name":"Widenmayerstraße","weight_typical":83.464,"duration_typical":70.282,"duration":70.282,"distance":675.908,"driving_side":"right","weight":83.464,"mode":"driving","geometry":"{`jyzAimtbUkEyAse@gPym@oMkd@aHgsA}RmiAqOe|@qJsJgBeK_E"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":705.921},{"ssmlAnnouncement":"In a quarter mile, Stay straight to take the ramp.","announcement":"In a quarter mile, Stay straight to take the ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Stay straight to take the ramp.","announcement":"Stay straight to take the ramp.","distanceAlongGeometry":71.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[17,34,198],"duration":4.282,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.187,"geometry_index":71,"location":[11.596084,48.14782]},{"entry":[true,false],"in":1,"bearings":[31,208],"duration":11.535,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.188,"geometry_index":74,"location":[11.596387,48.148296]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[30,211],"duration":1.898,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.588,"geometry_index":75,"location":[11.59748,48.149504]},{"entry":[true,false],"in":1,"bearings":[31,210],"duration":19.029,"turn_weight":5.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":25.956,"geometry_index":76,"location":[11.597681,48.149732]},{"entry":[true,false,false],"in":2,"bearings":[28,206,210],"duration":8.249,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.846,"geometry_index":78,"location":[11.599709,48.152017]},{"entry":[true,true,false],"in":2,"bearings":[28,118,208],"duration":13.378,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":14.874,"geometry_index":80,"location":[11.600117,48.152528]},{"bearings":[28,117,208,297],"entry":[true,false,false,false],"in":2,"turn_weight":1,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":82,"location":[11.600772,48.153352]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Ifflandstraße"}],"type":"turn","modifier":"straight","text":"Ifflandstraße"},"distanceAlongGeometry":722.588},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Ifflandstraße"}],"type":"turn","modifier":"straight","text":"Ifflandstraße"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Widenmayerstraße.","modifier":"slight left","bearing_after":17,"bearing_before":18,"location":[11.596084,48.14782]},"speedLimitSign":"vienna","name":"Widenmayerstraße","weight_typical":74.574,"duration_typical":60.178,"duration":60.178,"distance":722.588,"driving_side":"right","weight":74.574,"mode":"driving","geometry":"wuuyzAgrwbUuFgBuFkCkMiJojAicAgMqKwvAemAav@qo@i]eWs@i@ep@cf@iAy@cFuD"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Keep left to take Isarring.","announcement":"In 600 feet, Keep left to take Isarring.","distanceAlongGeometry":163.363},{"ssmlAnnouncement":"Keep left to take Isarring.","announcement":"Keep left to take Isarring.","distanceAlongGeometry":83.333}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[11.600863,48.153466],"geometry_index":83,"admin_index":0,"weight":2.306,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":0.5,"duration":1.687,"bearings":[28,208,298],"out":0,"in":1,"entry":[true,false,false]},{"bearings":[28,208,298],"entry":[true,false,true],"in":1,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":84,"location":[11.600952,48.153577]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Isarring"}],"type":"fork","modifier":"left","text":"Isarring"},"distanceAlongGeometry":194.043}],"speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Stay straight to take the ramp.","modifier":"straight","bearing_after":28,"bearing_before":28,"location":[11.600863,48.153466]},"speedLimitSign":"vienna","name":"Ifflandstraße","weight_typical":18.238,"duration_typical":14.654,"duration":14.654,"distance":194.043,"driving_side":"right","weight":18.238,"mode":"driving","geometry":"sv`zzA}|`cU}EqDkWkRm`Acq@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2502.098},{"ssmlAnnouncement":"In a quarter mile, Take the A 9 ramp.","announcement":"In a quarter mile, Take the A 9 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 9 ramp toward Nürnberg, Flughafen.","announcement":"Take the A 9 ramp toward Nürnberg, Flughafen.","distanceAlongGeometry":120}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[28,39,207],"duration":24.007,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":0,"weight":25.2,"geometry_index":86,"location":[11.602064,48.155014]},{"entry":[true,false],"in":1,"bearings":[18,202],"duration":7.05,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":0,"weight":7.403,"geometry_index":89,"location":[11.604017,48.157575]},{"entry":[false,true],"in":0,"bearings":[179,354],"duration":4.6,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":4.83,"geometry_index":93,"location":[11.604205,48.158406]},{"entry":[false,true],"in":0,"bearings":[159,330],"duration":3.168,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":3.326,"geometry_index":95,"location":[11.604059,48.158803]},{"entry":[false,true],"in":0,"bearings":[142,308],"duration":10.008,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":10.508,"geometry_index":97,"location":[11.603727,48.159134]},{"entry":[false,true],"in":0,"bearings":[101,306],"duration":4.68,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":false,"admin_index":0,"out":1,"weight":4.914,"geometry_index":105,"location":[11.601986,48.159445]},{"entry":[false,false,true],"in":0,"bearings":[140,153,327],"duration":5.255,"turn_weight":22.6,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"weight":28.237,"geometry_index":109,"location":[11.601414,48.159873]},{"entry":[false,true,true],"in":0,"bearings":[145,320,346],"duration":3.473,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":3.705,"geometry_index":112,"location":[11.600912,48.160375]},{"entry":[false,false,true],"in":1,"bearings":[97,140,315],"duration":1.824,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"weight":1.935,"geometry_index":114,"location":[11.600524,48.160681]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[135,316],"duration":0.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":1.042,"geometry_index":115,"location":[11.600276,48.160849]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[136,313],"duration":7.892,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":8.484,"geometry_index":116,"location":[11.600149,48.160936]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[131,309],"duration":10.869,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":11.684,"geometry_index":119,"location":[11.599001,48.161611]},{"entry":[false,true,true],"in":0,"bearings":[131,312,332],"duration":5.341,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":5.733,"geometry_index":122,"location":[11.597368,48.162512]},{"entry":[false,true],"in":0,"bearings":[147,331],"duration":6.667,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":7.167,"geometry_index":125,"location":[11.596672,48.163059]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[164,350],"duration":20.095,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":21.602,"geometry_index":129,"location":[11.596156,48.163886]},{"entry":[true,false],"in":1,"bearings":[25,204],"duration":16.067,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":17.272,"geometry_index":134,"location":[11.597027,48.166529]},{"entry":[true,false,false],"in":2,"bearings":[25,197,206],"duration":6.019,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":6.45,"geometry_index":137,"location":[11.598403,48.168486]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[26,204],"duration":0.632,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.679,"geometry_index":139,"location":[11.598908,48.169225]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[27,206],"duration":0.257,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":0.276,"geometry_index":140,"location":[11.598966,48.169304]},{"entry":[true,true,false],"in":2,"bearings":[26,115,207],"duration":2.271,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.419,"geometry_index":141,"location":[11.59899,48.169336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[23,206],"duration":4.307,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":4.63,"geometry_index":142,"location":[11.599194,48.169615]},{"entry":[true,true,false],"in":2,"bearings":[21,39,205],"duration":17.541,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":18.829,"geometry_index":144,"location":[11.599561,48.170168]},{"entry":[false,true],"in":0,"bearings":[142,315],"duration":12.392,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"weight":13.322,"geometry_index":163,"location":[11.599575,48.172286]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[128,307],"entry":[false,true],"classes":["tunnel"],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":167,"location":[11.597687,48.17329]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Nürnberg"},{"type":"text","text":"/"},{"type":"text","text":"Flughafen"}],"type":"turn","modifier":"slight right","text":"Nürnberg / Flughafen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"turn","modifier":"slight right","text":"A 9"},"distanceAlongGeometry":2518.765},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Nürnberg"},{"type":"text","text":"/"},{"type":"text","text":"Flughafen"}],"type":"turn","modifier":"slight right","text":"Nürnberg / Flughafen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"turn","modifier":"slight right","text":"A 9"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take Isarring.","modifier":"slight left","bearing_after":28,"bearing_before":27,"location":[11.602064,48.155014]},"speedLimitSign":"vienna","name":"Isarring","weight_typical":211.181,"duration_typical":176.811,"duration":176.811,"distance":2518.765,"driving_side":"right","weight":211.181,"mode":"driving","geometry":"kwczzA_hccUig@k_@{{AghA{YmO_LkEoMmCeKk@gKLgK~@qKbFmKvIgG~HsGnOoC`JgB~Ks@zNC~Ib@rQSvKy@~HcCfI}C~EmLjJgCbFwClCkN|MgJ~JiHvJyHnKoInNmD|FsBxDaHrMo\\hr@u]tw@cL~VoKjTgHnN_LnO}JnJuOtLeIvEkMpFmIfC_MpBwZh@{[yE_r@qVqj@}[}sAcz@sTmNwNmJeDuB_h@{Z}CsB_Ao@mPwKePaJkP{JgDmAqC}AyHwE}KsGkEwBmJiDuDaA_Es@sCYkDMaEBcDTsD^cGxAuDtAsH~DsGbFuDzDwDpFcG`KuGjNgSng@uX`q@cF`M"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 59 miles.","announcement":"Continue for 59 miles.","distanceAlongGeometry":94874.625},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 9.","announcement":"In 1 mile, Keep left to stay on A 9.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 9.","announcement":"In a half mile, Keep left to stay on A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 9.","announcement":"Keep left to stay on A 9.","distanceAlongGeometry":188.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[11.597462,48.173404],"geometry_index":168,"admin_index":0,"weight":5.87,"is_urban":true,"mapbox_streets_v8":{"class":"trunk_link"},"duration":5.479,"bearings":[127,307,323],"out":2,"in":0,"turn_duration":0.019,"classes":["tunnel"],"entry":[false,true,true]},{"entry":[false,true],"in":0,"bearings":[134,309],"duration":15.72,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":1,"weight":16.899,"geometry_index":175,"location":[11.596636,48.173995]},{"entry":[false,false,true],"in":0,"bearings":[121,137,323],"duration":7.928,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":2,"weight":8.69,"geometry_index":186,"location":[11.593802,48.1754]},{"entry":[true,false],"in":1,"bearings":[26,202],"duration":5.727,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":6.3,"geometry_index":196,"location":[11.593707,48.176039]},{"entry":[true,false],"in":1,"bearings":[26,206],"duration":7.282,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":8.01,"geometry_index":197,"location":[11.594116,48.176608]},{"entry":[true,false],"in":1,"bearings":[23,206],"duration":3.273,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.6,"geometry_index":198,"location":[11.594633,48.177327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.594784,48.177662],"geometry_index":200,"admin_index":0,"weight":16.376,"is_urban":true,"turn_weight":14,"duration":2.185,"bearings":[30,192,210],"out":0,"in":1,"turn_duration":0.025,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":28.71,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":30.863,"geometry_index":202,"location":[11.595106,48.178036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":7.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.224,"geometry_index":212,"location":[11.600181,48.182632]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,242],"duration":26.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":28.541,"geometry_index":219,"location":[11.602096,48.18347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,233],"duration":7.063,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":7.593,"geometry_index":237,"location":[11.609267,48.185668]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,223],"duration":16.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.986,"geometry_index":244,"location":[11.610805,48.18661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":2.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.014,"geometry_index":253,"location":[11.613376,48.189277]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.613712,48.189796],"geometry_index":255,"admin_index":0,"weight":1.437,"is_urban":false,"turn_weight":0.75,"duration":0.679,"bearings":[20,191,204],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":3.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.69,"geometry_index":257,"location":[11.613777,48.189912]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":15.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.65,"geometry_index":258,"location":[11.614154,48.190607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":10.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.52,"geometry_index":260,"location":[11.615743,48.193756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.61683,48.195943],"geometry_index":266,"admin_index":0,"weight":11.164,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.653,"bearings":[17,37,198],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[18,177,198],"duration":0.527,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.534,"geometry_index":270,"location":[11.617862,48.198114]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":1.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.275,"geometry_index":271,"location":[11.617912,48.198217]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":19.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.359,"geometry_index":272,"location":[11.618038,48.198461]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":2.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.132,"geometry_index":275,"location":[11.620101,48.20255]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.620314,48.202996],"geometry_index":277,"admin_index":0,"weight":10.554,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.316,"bearings":[18,39,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[19,177,199],"duration":6.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.076,"geometry_index":283,"location":[11.621454,48.205264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":4.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.113,"geometry_index":284,"location":[11.622261,48.206848]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":14.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.025,"geometry_index":286,"location":[11.622709,48.207763]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.912,"geometry_index":289,"location":[11.624314,48.21095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":6.487,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.487,"geometry_index":291,"location":[11.624528,48.211381]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.625259,48.212854],"geometry_index":293,"admin_index":0,"weight":15.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.76,"bearings":[19,39,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":15.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.552,"geometry_index":299,"location":[11.627173,48.216654]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.629023,48.220349],"geometry_index":305,"admin_index":0,"weight":11.586,"is_urban":false,"turn_weight":1,"duration":11.162,"bearings":[18,184,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.166,"geometry_index":307,"location":[11.630411,48.223122]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.557,"geometry_index":311,"location":[11.631349,48.225001]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.632335,48.226981],"geometry_index":312,"admin_index":0,"weight":6.267,"is_urban":false,"turn_weight":1,"duration":5.563,"bearings":[19,190,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":10.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.363,"geometry_index":314,"location":[11.633006,48.228289]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":6.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.746,"geometry_index":316,"location":[11.6343,48.230868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,198],"duration":0.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.923,"geometry_index":318,"location":[11.635014,48.232302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,201],"duration":20.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.186,"geometry_index":319,"location":[11.635141,48.232526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,197],"duration":6.372,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.213,"geometry_index":323,"location":[11.637514,48.237307]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":4.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.739,"geometry_index":326,"location":[11.638279,48.238816]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.638851,48.239967],"geometry_index":327,"admin_index":0,"weight":9.201,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.456,"bearings":[18,46,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.63998,48.242277],"geometry_index":328,"admin_index":0,"weight":5.715,"is_urban":false,"turn_weight":0.5,"duration":5.368,"bearings":[18,166,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":15.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.876,"geometry_index":330,"location":[11.640656,48.2436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":8.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.223,"geometry_index":332,"location":[11.642597,48.24738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":3.806,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.711,"geometry_index":334,"location":[11.643653,48.249473]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":39.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.233,"geometry_index":335,"location":[11.644127,48.250422]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,357],"duration":4.755,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.398,"geometry_index":349,"location":[11.647366,48.260492]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.647238,48.261748],"geometry_index":353,"admin_index":0,"weight":8.499,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.211,"bearings":[1,175,352],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.646628,48.264116],"geometry_index":359,"admin_index":0,"weight":6.169,"is_urban":false,"turn_weight":1,"duration":5.609,"bearings":[152,168,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":12.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.954,"geometry_index":360,"location":[11.646136,48.26554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":17.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.583,"geometry_index":362,"location":[11.645082,48.268648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":6.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.616,"geometry_index":365,"location":[11.643565,48.273069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.643024,48.274662],"geometry_index":367,"admin_index":0,"weight":12.33,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.112,"bearings":[1,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.641829,48.278266],"geometry_index":370,"admin_index":0,"weight":6.07,"is_urban":false,"turn_weight":1,"duration":5.815,"bearings":[152,168,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":8.983,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.86,"geometry_index":371,"location":[11.641322,48.279747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":57.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":52.741,"geometry_index":374,"location":[11.640476,48.282036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,338],"duration":5.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.342,"geometry_index":387,"location":[11.633176,48.296159]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.632362,48.297531],"geometry_index":390,"admin_index":0,"weight":9.994,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.528,"bearings":[158,339,352],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[141,159,339],"duration":5.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":5.265,"geometry_index":392,"location":[11.63088,48.300051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":18.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.066,"geometry_index":394,"location":[11.630132,48.301329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":4.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.271,"geometry_index":398,"location":[11.627573,48.305731]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.283,"geometry_index":399,"location":[11.626979,48.306746]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,338],"duration":1.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.764,"geometry_index":400,"location":[11.626804,48.307045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":9.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.504,"geometry_index":401,"location":[11.626559,48.30745]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.625192,48.309642],"geometry_index":403,"admin_index":0,"weight":8.494,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.719,"bearings":[156,336,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,337],"duration":10.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.828,"geometry_index":405,"location":[11.623865,48.311631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,339],"duration":8.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.74,"geometry_index":406,"location":[11.622403,48.313946]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.291,"geometry_index":407,"location":[11.621187,48.316035]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":24.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":23.235,"geometry_index":408,"location":[11.620757,48.316787]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.617599,48.322321],"geometry_index":411,"admin_index":0,"weight":5.548,"is_urban":false,"turn_weight":1,"duration":4.795,"bearings":[138,160,340],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":11.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.608,"geometry_index":413,"location":[11.616989,48.32341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,341],"duration":7.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.003,"geometry_index":414,"location":[11.615589,48.326029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":8.907,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.239,"geometry_index":415,"location":[11.614687,48.327757]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,339],"duration":1.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.27,"geometry_index":416,"location":[11.613623,48.329796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":5.567,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.15,"geometry_index":417,"location":[11.613443,48.330108]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":4.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.879,"geometry_index":418,"location":[11.612715,48.331366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,339],"duration":5.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.527,"geometry_index":421,"location":[11.612161,48.332315]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.611395,48.333666],"geometry_index":423,"admin_index":0,"weight":29.095,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.334,"bearings":[159,339,353],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.607128,48.341131],"geometry_index":428,"admin_index":0,"weight":1.895,"is_urban":false,"turn_weight":1,"duration":1.013,"bearings":[153,159,338],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":0.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.741,"geometry_index":429,"location":[11.606983,48.341374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,339],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.926,"geometry_index":430,"location":[11.60686,48.341577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,338],"duration":5.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.999,"geometry_index":431,"location":[11.606716,48.341829]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":162.343,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":146.109,"geometry_index":432,"location":[11.605915,48.34318]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":6.343,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.709,"geometry_index":446,"location":[11.597303,48.384389]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.597455,48.386046],"geometry_index":448,"admin_index":0,"weight":8.262,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.201,"bearings":[1,13,183],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.597366,48.388333],"geometry_index":450,"admin_index":0,"weight":3.324,"is_urban":false,"turn_weight":1,"duration":2.604,"bearings":[168,176,353],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":0.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.648,"geometry_index":453,"location":[11.597234,48.388961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,350],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.166,"geometry_index":454,"location":[11.597198,48.389139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,349],"duration":39.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":35.269,"geometry_index":455,"location":[11.597114,48.389462]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,336],"duration":1.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.345,"geometry_index":468,"location":[11.591885,48.39814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,341],"duration":70.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":65.193,"geometry_index":469,"location":[11.591668,48.398466]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[0,160,179],"duration":39.348,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.39,"geometry_index":482,"location":[11.589694,48.415381]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":7.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.557,"geometry_index":487,"location":[11.58961,48.424903]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.589591,48.426615],"geometry_index":489,"admin_index":0,"weight":7.978,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.644,"bearings":[13,180,359],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.589565,48.428677],"geometry_index":491,"admin_index":0,"weight":7.73,"is_urban":false,"turn_weight":1,"duration":7.295,"bearings":[170,180,359],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":1.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.771,"geometry_index":492,"location":[11.589515,48.430403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":6.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.406,"geometry_index":493,"location":[11.589499,48.430848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":52.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.427,"geometry_index":495,"location":[11.589482,48.432661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":5.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.03,"geometry_index":503,"location":[11.589847,48.446452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":25.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":22.742,"geometry_index":504,"location":[11.590044,48.447907]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":24.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":22.495,"geometry_index":507,"location":[11.59091,48.454507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,345],"duration":6.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.739,"geometry_index":518,"location":[11.590095,48.460996]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.589444,48.46261],"geometry_index":519,"admin_index":0,"weight":12.706,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.125,"bearings":[3,165,345],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.588054,48.466086],"geometry_index":520,"admin_index":0,"weight":3.791,"is_urban":false,"turn_weight":1,"duration":3.108,"bearings":[139,165,346],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,345],"duration":4.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.491,"geometry_index":521,"location":[11.587763,48.46684]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":150.487,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":139.201,"geometry_index":522,"location":[11.587275,48.468051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":2.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.065,"geometry_index":566,"location":[11.590276,48.503956]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,330],"duration":1.577,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.498,"geometry_index":567,"location":[11.589854,48.504425]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,329],"duration":2.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.275,"geometry_index":568,"location":[11.58954,48.504783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.58906,48.505315],"geometry_index":569,"admin_index":0,"weight":8.389,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.076,"bearings":[149,329,342],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.587244,48.507337],"geometry_index":571,"admin_index":0,"weight":5.316,"is_urban":false,"turn_weight":1,"duration":4.551,"bearings":[139,149,329],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,328],"duration":10.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.99,"geometry_index":573,"location":[11.586349,48.508339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":39.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":36.824,"geometry_index":577,"location":[11.584457,48.510808]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.993,"geometry_index":596,"location":[11.583304,48.520901]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,192],"duration":21.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.721,"geometry_index":597,"location":[11.583393,48.521173]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,215],"duration":10.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.343,"geometry_index":607,"location":[11.586798,48.526126]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":9.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.965,"geometry_index":608,"location":[11.589227,48.528255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":0.804,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.723,"geometry_index":609,"location":[11.591578,48.530291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,216],"duration":3.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.431,"geometry_index":610,"location":[11.591757,48.530455]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":22.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.425,"geometry_index":611,"location":[11.592647,48.531228]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[182,358],"duration":53.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":48.473,"geometry_index":624,"location":[11.595397,48.536609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,339],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.96,"geometry_index":635,"location":[11.592279,48.550085]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,336],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.309,"geometry_index":639,"location":[11.590116,48.553421]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.589404,48.554523],"geometry_index":641,"admin_index":0,"weight":5.114,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.691,"bearings":[10,157,341],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.588837,48.555922],"geometry_index":644,"admin_index":0,"weight":6.8,"is_urban":false,"turn_weight":1,"duration":6.452,"bearings":[149,167,350],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,359],"duration":9.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.521,"geometry_index":647,"location":[11.588575,48.557515]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":15.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.77,"geometry_index":653,"location":[11.588838,48.559867]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":6.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.091,"geometry_index":658,"location":[11.590494,48.563521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":28.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.531,"geometry_index":659,"location":[11.59128,48.565132]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,181],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.902,"geometry_index":670,"location":[11.592695,48.572105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,182],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.617,"geometry_index":671,"location":[11.592708,48.572347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,181],"duration":10.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.35,"geometry_index":672,"location":[11.592712,48.57253]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.59282,48.575249],"geometry_index":677,"admin_index":0,"weight":15.274,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.994,"bearings":[10,182,359],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,325],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.265,"geometry_index":689,"location":[11.591052,48.579471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,325],"duration":16.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.595,"geometry_index":690,"location":[11.590728,48.579774]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.585721,48.582334],"geometry_index":706,"admin_index":0,"weight":6.184,"is_urban":false,"turn_weight":1,"duration":5.768,"bearings":[99,114,295],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":2.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.913,"geometry_index":708,"location":[11.583645,48.58297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,295],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.53,"geometry_index":709,"location":[11.582869,48.583197]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":0.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.499,"geometry_index":710,"location":[11.581862,48.583513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.32,"geometry_index":711,"location":[11.581667,48.583574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":8.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.93,"geometry_index":712,"location":[11.579946,48.584103]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,303],"duration":0.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.312,"geometry_index":716,"location":[11.576882,48.585194]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,302],"duration":28.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":25.98,"geometry_index":717,"location":[11.576767,48.585243]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,322],"duration":2.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.607,"geometry_index":725,"location":[11.568383,48.590627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":18.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.807,"geometry_index":726,"location":[11.567688,48.591212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.121,"geometry_index":728,"location":[11.563189,48.594983]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":12.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.121,"geometry_index":729,"location":[11.562897,48.595227]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.841,"geometry_index":730,"location":[11.559925,48.597725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,319],"duration":2.581,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.387,"geometry_index":731,"location":[11.559703,48.597912]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,319],"duration":13.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.503,"geometry_index":732,"location":[11.559031,48.59843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":2.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.122,"geometry_index":735,"location":[11.555361,48.601057]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":19.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.123,"geometry_index":736,"location":[11.55475,48.601478]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,317],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.841,"geometry_index":739,"location":[11.549408,48.605134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,316],"duration":16.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.401,"geometry_index":740,"location":[11.549169,48.605304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,325],"duration":5.989,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.539,"geometry_index":745,"location":[11.545072,48.608658]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.543706,48.609925],"geometry_index":748,"admin_index":0,"weight":14.462,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.641,"bearings":[144,324,335],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.539976,48.613193],"geometry_index":753,"admin_index":0,"weight":2.681,"is_urban":false,"turn_weight":1,"duration":1.836,"bearings":[121,140,318],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,316],"duration":4.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.028,"geometry_index":755,"location":[11.53949,48.613545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,313],"duration":9.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.794,"geometry_index":757,"location":[11.538277,48.614354]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,306],"duration":0.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.623,"geometry_index":761,"location":[11.535292,48.615989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,306],"duration":44.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":40.361,"geometry_index":762,"location":[11.535076,48.616093]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.997,"geometry_index":778,"location":[11.525272,48.625473]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,352],"duration":60.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":56.166,"geometry_index":779,"location":[11.525199,48.625756]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":0.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.643,"geometry_index":791,"location":[11.519228,48.641036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":7.235,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.873,"geometry_index":792,"location":[11.519135,48.641194]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.518116,48.642926],"geometry_index":793,"admin_index":0,"weight":7.21,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.801,"bearings":[159,339,359],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.517033,48.644794],"geometry_index":797,"admin_index":0,"weight":1.291,"is_urban":false,"turn_weight":1,"duration":0.322,"bearings":[145,159,339],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":1.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.97,"geometry_index":798,"location":[11.516989,48.644869]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":1.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.713,"geometry_index":799,"location":[11.51684,48.645121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.059,"geometry_index":800,"location":[11.516589,48.645568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":8.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.973,"geometry_index":801,"location":[11.515814,48.646891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.993,"geometry_index":804,"location":[11.514822,48.649027]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,349],"duration":8.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.069,"geometry_index":805,"location":[11.514725,48.649295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":2.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.062,"geometry_index":807,"location":[11.514127,48.651521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,350],"duration":1.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.825,"geometry_index":808,"location":[11.513979,48.652101]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,351],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.979,"geometry_index":809,"location":[11.51385,48.652609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":78.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":70.937,"geometry_index":810,"location":[11.513784,48.652871]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,337],"duration":15.888,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.3,"geometry_index":822,"location":[11.506523,48.672695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,338],"duration":4.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.968,"geometry_index":823,"location":[11.504116,48.676501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":6.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.361,"geometry_index":824,"location":[11.503455,48.677591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.502529,48.679063],"geometry_index":827,"admin_index":0,"weight":15.995,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.287,"bearings":[157,338,346],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.499618,48.683353],"geometry_index":830,"admin_index":0,"weight":4.703,"is_urban":false,"turn_weight":1,"duration":4.133,"bearings":[148,156,335],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,334],"duration":85.851,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":79.413,"geometry_index":832,"location":[11.498928,48.684332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":2.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.775,"geometry_index":845,"location":[11.487267,48.705386]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.301,"geometry_index":846,"location":[11.486972,48.706102]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":4.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.911,"geometry_index":847,"location":[11.486938,48.706184]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.486519,48.707197],"geometry_index":848,"admin_index":0,"weight":1.057,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.103,"bearings":[165,343,358],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":7.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.586,"geometry_index":849,"location":[11.486409,48.707437]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.485621,48.709163],"geometry_index":852,"admin_index":0,"weight":6.223,"is_urban":false,"turn_weight":0.5,"duration":5.877,"bearings":[153,163,343],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.984,"geometry_index":855,"location":[11.485017,48.710446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,341],"duration":1.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.83,"geometry_index":856,"location":[11.484805,48.710891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":2.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.28,"geometry_index":857,"location":[11.484589,48.711304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,342],"duration":1.448,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.411,"geometry_index":858,"location":[11.484326,48.71184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,342],"duration":51.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":50.624,"geometry_index":859,"location":[11.484159,48.712175]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":1.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.628,"geometry_index":867,"location":[11.477606,48.723961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,333],"duration":15.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.343,"geometry_index":868,"location":[11.47734,48.72433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,334],"duration":4.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.198,"geometry_index":869,"location":[11.474721,48.727723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,333],"duration":33.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":32.187,"geometry_index":870,"location":[11.474017,48.728658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.265,"geometry_index":871,"location":[11.468425,48.736025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":12.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.285,"geometry_index":872,"location":[11.46751,48.737231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":32.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":32.616,"geometry_index":873,"location":[11.465375,48.740043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,335],"duration":1.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.476,"geometry_index":874,"location":[11.459852,48.747317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":5.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.129,"geometry_index":875,"location":[11.459625,48.747642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,341],"duration":6.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.679,"geometry_index":878,"location":[11.458916,48.748795]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.458194,48.750346],"geometry_index":882,"admin_index":0,"weight":10.789,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.282,"bearings":[165,347,356],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":3.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.859,"geometry_index":885,"location":[11.457505,48.75276]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[169,177,358],"duration":3.393,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":3.555,"geometry_index":887,"location":[11.457392,48.753637]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,178],"duration":3.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.195,"geometry_index":888,"location":[11.45736,48.75435]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,182],"duration":17.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":18.45,"geometry_index":890,"location":[11.457388,48.754986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":0.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.118,"geometry_index":894,"location":[11.458091,48.758636]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":1.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.063,"geometry_index":895,"location":[11.458098,48.758664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":0.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.236,"geometry_index":896,"location":[11.458162,48.758903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":9.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.177,"geometry_index":897,"location":[11.458176,48.758957]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":14.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.239,"geometry_index":898,"location":[11.458724,48.761128]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":13.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.899,"geometry_index":899,"location":[11.459576,48.764526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,190],"duration":3.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.701,"geometry_index":900,"location":[11.460393,48.767652]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.969,"geometry_index":901,"location":[11.460566,48.768485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":3.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.426,"geometry_index":902,"location":[11.460652,48.768927]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.460778,48.769705],"geometry_index":903,"admin_index":0,"weight":6.923,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.601,"bearings":[5,23,186],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.460975,48.771265],"geometry_index":904,"admin_index":0,"weight":4.86,"is_urban":false,"turn_weight":1,"duration":3.695,"bearings":[3,158,185],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.363,"geometry_index":905,"location":[11.461044,48.772132]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":2.501,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.626,"geometry_index":906,"location":[11.461077,48.772675]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.461103,48.773271],"geometry_index":908,"admin_index":0,"weight":6.812,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.508,"bearings":[0,24,181],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.461108,48.774824],"geometry_index":910,"admin_index":0,"weight":10.45,"is_urban":false,"turn_weight":1,"duration":9.021,"bearings":[153,180,358],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,355],"duration":7.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":7.938,"geometry_index":912,"location":[11.46097,48.777023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,356],"duration":1.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.738,"geometry_index":913,"location":[11.460746,48.778819]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":12.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":13.9,"geometry_index":914,"location":[11.460699,48.779217]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.701,"geometry_index":915,"location":[11.460259,48.782367]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":48.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":49.692,"geometry_index":917,"location":[11.460237,48.782529]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":74.606,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":72.74,"geometry_index":925,"location":[11.462825,48.79504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,191],"duration":6.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.95,"geometry_index":939,"location":[11.466813,48.814343]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.467472,48.815885],"geometry_index":941,"admin_index":0,"weight":6.275,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.456,"bearings":[18,28,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.454,"geometry_index":943,"location":[11.468276,48.81738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":4.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.155,"geometry_index":944,"location":[11.468464,48.817726]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[20,191,200],"duration":6.583,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.411,"geometry_index":945,"location":[11.469005,48.818701]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":50.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":47.81,"geometry_index":946,"location":[11.469827,48.820215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,344],"duration":6.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.708,"geometry_index":964,"location":[11.472247,48.832144]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.471623,48.833594],"geometry_index":966,"admin_index":0,"weight":23.473,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.089,"bearings":[163,344,351],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.468935,48.839724],"geometry_index":972,"admin_index":0,"weight":7.709,"is_urban":false,"turn_weight":1,"duration":7.462,"bearings":[155,164,344],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":34.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":31.353,"geometry_index":975,"location":[11.468146,48.84149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":0.882,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.815,"geometry_index":982,"location":[11.465108,48.849844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":38.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":35.184,"geometry_index":983,"location":[11.465073,48.850062]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":42.007,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.8,"geometry_index":990,"location":[11.465765,48.85942]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":0.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.834,"geometry_index":992,"location":[11.467585,48.869723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":69.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.11,"geometry_index":993,"location":[11.467624,48.869956]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":1.692,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.48,"geometry_index":1014,"location":[11.466531,48.887225]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":154.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":138.703,"geometry_index":1015,"location":[11.466561,48.887646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,334],"duration":5.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.138,"geometry_index":1050,"location":[11.465317,48.927321]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.464276,48.928606],"geometry_index":1053,"admin_index":0,"weight":7.662,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.304,"bearings":[150,329,339],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.462521,48.9304],"geometry_index":1056,"admin_index":0,"weight":2.099,"is_urban":false,"turn_weight":1,"duration":1.196,"bearings":[120,144,325],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,324],"duration":0.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.453,"geometry_index":1057,"location":[11.462253,48.930648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,324],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.646,"geometry_index":1058,"location":[11.462142,48.930749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,322],"duration":6.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.625,"geometry_index":1059,"location":[11.461983,48.930894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,320],"duration":92.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":83.013,"geometry_index":1060,"location":[11.460499,48.93212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,314],"duration":3.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.804,"geometry_index":1078,"location":[11.434999,48.94872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,319],"duration":6.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.483,"geometry_index":1080,"location":[11.434148,48.949309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.432566,48.950506],"geometry_index":1081,"admin_index":0,"weight":3.208,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.572,"bearings":[139,320,329],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,320],"duration":0.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.834,"geometry_index":1082,"location":[11.431677,48.951195]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,320],"duration":10.265,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.239,"geometry_index":1083,"location":[11.431449,48.951372]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.429135,48.953462],"geometry_index":1090,"admin_index":0,"weight":7.739,"is_urban":false,"turn_weight":1,"duration":7.496,"bearings":[141,149,331],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"bearings":[156,337],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":1092,"location":[11.427861,48.955133]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"fork","modifier":"left","text":"A 9"},"distanceAlongGeometry":94894.625}],"destinations":"A 9: Nürnberg, Flughafen, Allianz Arena","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 9 ramp toward Nürnberg/Flughafen/Allianz Arena.","modifier":"slight right","bearing_after":323,"bearing_before":307,"location":[11.597462,48.173404]},"speedLimitSign":"vienna","name":"","weight_typical":3235.071,"duration_typical":3410.164,"duration":3410.164,"distance":94894.625,"driving_side":"right","weight":3235.071,"mode":"driving","ref":"A 9","geometry":"wtg{zAkhzbUeDpBeEjHoCnE_DpFiD|FeEpHqCbFoArCeA|BaAvBy@jBwChHq_@p~@iHhQkGdPqNf_@uEhM_AnEoBpD{B`CeCfBsBh@oCTyBEqBa@sBk@mB_AyDiCqb@qX}k@i_@eMeHwEGy@k@qTwQkZcWaYuVg`Aa}@ym@um@uVwXeVqYwL}OoOqTkb@ot@gHiOaGeMmJkVcFmNqIiXGWaGkT{EgR}Gu[eE_UmEsXeDeXyEcb@aEc^QyA_H_g@_DwS{Hqb@qHu]qFeUkFuSkKu]kJgYaE}K}BcGaNw\\mHwPcEsI_CkFuImP{DiHoGoLgMcSk[id@yQoTsWwXeXuVkQuNyJeHuJyGwRwLaG_DqUcM{H{E}As@iCmAmj@qVypDiyA_R_HuSqIcTiIy_@yOum@wUwMeFSI_YgK{o@sVar@_WwHsCmEcBgN{FaeBmq@ocAab@_tAmj@kZcLOEcFqBg]cNio@sVgWsK_SgIyJaE_bBmq@iYgK{]wNk\\eNadC{aAwc@gQ_DoA}T{IkzAkl@UIeHuCwb@cQeRkH_bA_a@cjAqd@g^{N{YsLmQkHseAsb@e|Aim@mBu@kQ_HuBy@shD}sA}x@}[}GoCGCiq@aXwzBs|@whAyd@_GcCoaCe`Au]uNihAmc@iOeG_M}Fg{Bi|@skCkeAyV}JcIuCoL_F}u@g[{XqK}fAwb@koCqeAmx@y[gXmL}{CepAinAcg@wiB_u@aW_Kiz@s\\i`As_@ihAuc@ydAma@ma@_Pub@yOi_@kKyRqFsh@}Lmt@iL{c@eFgr@yE_b@oAcf@}@kh@V_K^sRp@{TfA_XdBcj@rGmTlDuZ~EiPfDiL~BcXxF_xAv]}iA|WivB|g@i\\`IoiC|n@okBxc@qRbE_oAtZocAfViz@|Rm`Bn^q{At^}x@nScp@`Q_c@hMcLdDucAj]{f@fQijAzd@sxAzm@u|Avp@kfBpu@wd@lSae@bSelChiAceB|t@ii@bVqd@lTm}@~c@{T~Km@ZyqAto@uiA|j@k@ZomAzl@mq@t[_cAbf@gnA|m@mlAdl@m~@bd@uQ|IiXhNwxBjjAgN`Ie^hTc|Ar|@uoCjzAqaC~jA_n@zYihCxlAeiE`sBkEnBgf@nTy[rOubDnvA_kBjw@m~BnaAoRfJsmAnl@kc@`T{DjBaPdIwqA|m@u@\\iSnJycHjeDsWtLcCfAu{BzgAeN`HuKtFwN~GmsA`q@kw\\|sPofAjc@e_AbYqu@fPkjA`OadAfFgv@t@g|@kBmo@gDc~@gFm|FyZ{oRsdAyfAcFimB_Jw{@aEyi@mBcfAg@yfAxEgIp@wJzAgPxBcJfAeSfDuk@zKy\\lI}e@rNcYrJkWjKin@nX{k@hYer@~b@in@jb@aX~SaeBlmAk[hTg_@|RkSpLsg@bTwS`JgUfJ{s@rSm\\jIm^tGy]lGe]tEiaAxIsb@lBc_@LgeKbBoqGhFglCGcjAE}e@Tu{AAcvF`DetA\\yTF}g@`@}vAP{jBbByZ^yjB^oD@mtHxCuqDtAgRDce@BsnAoBcoA{DonAuHelAqJ}yAiKkhAuHa{Gsd@av@yEaj@kDwg@eByf@Baq@dBmh@jCof@lE??yd@`H_VbD{x@vRg_@lJ{cBtg@gxEzuAcn@dQujAn]ipElrAqj@jNeXjFaYxDsUnCuQtA}XxAyo@zAsoAsE{a@_EoYgEko@uM{i@eOea@qOkh@}Uys@w`@_vIwdFmy@qf@kcByaAeeBs`Akd@}R_g@wP_eAcVqb@mGyRyBkSeBeQ_AkQ}@ad@g@cTDaUf@kUdAmTvAwe@hFqk@rJ{p@zPyk@~Rcd@jRo\\hQiZtQcc@zXck@|d@_}@pv@i{@xu@i\\jYkUrRg`@~\\uhB~}AuSnQeBzAmz@`t@}b@l`@}c@d]cf@z[ii@vXaTzKan@lV}TbH_ZhH{PnEwSfE_g@hHm^rDmVnBeyAjDslAzC_[n@aZGkYa@ca@wBcYsBo\\eDsTsDsRcE_PqDu]yJcTkHa]sM}YqM_\\}O_b@eV{c@_[w`@}Zmf@ie@uYa[adCyvCg~B}qCgIeJio@sv@iHuIg]k\\qXqVwZeTwY_Rq[iOcQyHe\\cLm[_I}g@yIcTcCg[}AaU]sSZme@rAsr@zFqwBfRkkCbT_{Fpg@gg@nIyc@nKkc@fOw[rMmkAto@wb@|Sc]vPcwBvnAoUvOgBlAs`A`i@{DlBaf@pPoi@lMk\\tFi\\pD{g@bBsUTi`@[qXsAqi@kFmLkBoH{AeRyDmWgGuVcIeTgI{jCadAucBcp@_e@iRio@_Ug_@eK_Z_Gqd@_Hy]wD{R_ByQgA{Rg@ecBoBc~@eAcNYmJGa\\e@wh@m@s@Aq{A{B}CE_WLqHD_YzAek@tHc\\hIwQxFiJnD{OxH}QxIeQpLsYzSiSrQ}QfSeIxIyHnJsLfPyNpTwH|MoEfIwE~IyLnWaHrPsGhPkJhXeKv]cGrUsHb[uGz[aEnSuCjNab@jqBeMno@wR|}@yBdKa`@pjBuN|q@{WbgAyWx|@yArEaBdFyA|E_T|o@yZbz@i]xx@k\\`r@up@lkAw`AhzAwlBjcCqc@lj@uIxK_`FjkGgNfQc{CvxDuJzLk_@~h@u|@~nAor@tiA_r@tiAiYde@uxAdbCgeAxeBqcAzbBsI|Mk`@no@ye@bs@i^nd@}e@jk@ebAphAkw@p{@iPzQoD|D{H|IwzAfdBm_AtgA}\\zd@gGjImGtJqLtQuc@hu@{LnT_[dm@}Qp`@yRhd@mb@ndAoEnL_gA`sCeZnq@i`@nr@o]|k@qYdd@}[db@w[l`@mc@tc@wf@lc@ge@`\\oe@`Ykh@lX{i@`Usp@xRwXxGmYpFuPpC{Fr@sQzB}SnBiZ|Ag~AlF}w@rCm_AxIe_@fGi`A~SmS`Fw_Bti@}_MjbG{HxDgkBt~@gHlDcc@bT_v@l^kOtHuCvAwNhH}ZtNuqAlo@{i@~U{k@dTwl@xPwO`E}p@`NexAhUgc@fHw^`GkObCklEjt@c|IryAgyAtYgcAbV}`Ble@ubAd]}x@pZy~Ahn@yQhH}m@dWkaArd@oiAjl@{lFluCccAhh@mTlLicA~i@gAl@{NzHgaFhyC_YvPwDbCmv@~e@egBnkAmBnA}wH|}Eoy@fh@yi@`[q{@be@wkA|i@qg@zSkdAl`@kx@fWkcFtzAc`GtgB{Bp@wk@lQcDbAi~@dY_NzEaz@`Zq_@xMgOjFkUfIgBn@qu@~XyZfLyXnLo`@lO}SlIywEljBwnDfwAg`Aja@ep@nZasA`r@mm@n]{m@t_@gs@vd@aVrOasEtbDmy@~j@mkMn|IkjAdx@wnDldCseMdxIiSdMiJ|F{]jR{\\~Oud@hRo^lMuR|FaGlBklAzY{g@fIs_@|DuZtCcZjAqk@~@_b@k@wCKaZ_Aqw@mGa`A}LmnAqRw@M}M_CkB[ufCga@ksEgt@kbEar@as@yIsZkDso@{Fo`BiKeu@iC}`@aAmUe@yMMc|@W}b@Le|AtCgk@|BgoB~L{W|A{cEnZ_BJcF^w{@jGiw@`Ck|@Esy@{Cmy@kHi~@yN_iCqm@c|Gk`BogCym@qbI{mB}f@_K_h@yHyiAcKieAyCc@AgwHiKqn@_Cig@eEyi@sG_a@kGk^cI{IcB_w@uTkg@oRoXyK}bAmd@sTwJ}{@y`@s}Akr@akAwi@cnC_nAed@mR_SeH}[mJ_\\qI_^gHce@eH}\\_Eg^iBmp@o@gg@t@uZbBs_@~Cq^bFyg@|Ik[|Ie]pJ{`AxZwWdJodB`l@ay@pX{i@tQmt@hV{dBhk@kX`Ji@RygAn_@gc@dOqjCv{@g}Bru@mq@dSke@pKwq@nNc_AdOss@`IsLdAms@tE{nA~Do{@Gsp@wAwyAmGuiCwV_pBwSg|JacAueGul@qMmAkjDc]of@qDkx@}Akp@hAso@pEiZhEu[dFeXrGkWpG}aCts@q^xHo_@tGyVzCiXzBca@jCg\\lAqs@s@yhAeCgNe@cx@oCgdB{FiY{@c_AyC_tDyLiaAsCufB_QeQwBgkAeSqu@sP{[sIouAkc@ixA{c@yo@gSq\\yIsv@_P{s@qKug@qEo{@uDuf@_@wiCfAy}InFkb@VeaApB}_AzJgp@nHwp@`K{p@bM_yDt}@qmA~X{k@~OiCr@kp@tS{n@lVajAph@wh@xZqi@j]yFnDaSdNea@jZaYnU}s@jp@wg@~f@mQhSoNvOiE|EaH|HskAv{AogC~jDu_AvqAghAn{A_wBtuC}aBj|Bok@d_AaUz`@gd@vy@a{CxuFka@dy@c`@d}@cQdc@}Prd@m\\fbAq{@jiCyWhq@c\\xv@wc@z{@_O~WySd[yiAzaBaj@pv@aJfMsGbJoOnSgVt[aYb[iU`XuOrNePnNop@rh@}u@~d@wf@hYwg@lXs]fUu\\fV}b@d^sY~X]\\a]v^gHpIaPxRoEhFuJrMmr@xbA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 63 miles.","announcement":"Continue for 63 miles.","distanceAlongGeometry":100677.859},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 9.","announcement":"In 2 miles, Keep left to take A 9.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 9.","announcement":"In a half mile, Keep left to take A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 9, E 51.","announcement":"Keep left to take A 9, E 51.","distanceAlongGeometry":210}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[139,319,322],"duration":44.012,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":39.604,"geometry_index":1105,"location":[11.422945,48.960418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,316],"duration":0.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.669,"geometry_index":1122,"location":[11.413419,48.968587]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,315],"duration":7.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.072,"geometry_index":1123,"location":[11.41324,48.968709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":40.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":36.581,"geometry_index":1124,"location":[11.411273,48.969993]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,308],"duration":13.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.85,"geometry_index":1129,"location":[11.400999,48.976581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,311],"duration":54.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.963,"geometry_index":1135,"location":[11.397501,48.978242]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":0.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.193,"geometry_index":1164,"location":[11.387179,48.987404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,329],"duration":14.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.997,"geometry_index":1165,"location":[11.387145,48.987444]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,329],"duration":1.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.637,"geometry_index":1169,"location":[11.384716,48.990186]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.944,"geometry_index":1171,"location":[11.384385,48.990553]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.383995,48.990999],"geometry_index":1173,"admin_index":0,"weight":3.592,"is_urban":false,"turn_weight":1,"duration":2.904,"bearings":[141,151,327],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[147,325],"duration":2.587,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.329,"geometry_index":1174,"location":[11.383421,48.991572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,325],"duration":12.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.638,"geometry_index":1175,"location":[11.382881,48.992077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,314],"duration":32.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":28.833,"geometry_index":1180,"location":[11.379765,48.99448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":0.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.68,"geometry_index":1190,"location":[11.369672,48.998707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,292],"duration":4.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.666,"geometry_index":1191,"location":[11.369402,48.998777]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,292],"duration":1.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.342,"geometry_index":1193,"location":[11.367978,48.999146]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,292],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.062,"geometry_index":1194,"location":[11.367456,48.999282]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.366647,48.999489],"geometry_index":1196,"admin_index":0,"weight":8.959,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.962,"bearings":[111,291,300],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.363192,49.000382],"geometry_index":1199,"admin_index":0,"weight":7.286,"is_urban":false,"turn_weight":1,"duration":7.005,"bearings":[106,112,292],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,303],"duration":26.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":23.717,"geometry_index":1203,"location":[11.36079,49.001119]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":60.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":52.763,"geometry_index":1216,"location":[11.355478,49.006462]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,227],"duration":84.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":75.816,"geometry_index":1241,"location":[11.364536,49.018927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,332],"duration":5.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.11,"geometry_index":1282,"location":[11.358315,49.037942]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.357149,49.039099],"geometry_index":1285,"admin_index":0,"weight":8.429,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.132,"bearings":[141,320,328],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,303],"duration":11.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.198,"geometry_index":1290,"location":[11.354723,49.040571]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.351088,49.041683],"geometry_index":1294,"admin_index":0,"weight":5.877,"is_urban":false,"turn_weight":1,"duration":5.28,"bearings":[101,110,291],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,289],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.807,"geometry_index":1295,"location":[11.349224,49.042143]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":2.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.884,"geometry_index":1296,"location":[11.348912,49.042214]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.34819,49.042381],"geometry_index":1297,"admin_index":0,"weight":7.381,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.987,"bearings":[109,290,303],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.345422,49.043046],"geometry_index":1299,"admin_index":0,"weight":9.225,"is_urban":false,"turn_weight":1,"duration":8.899,"bearings":[99,110,290],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,299],"duration":18.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.116,"geometry_index":1303,"location":[11.342286,49.043867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,318],"duration":1.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.345,"geometry_index":1310,"location":[11.336987,49.046854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,319],"duration":4.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.507,"geometry_index":1311,"location":[11.336621,49.047123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,319],"duration":82.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":74.52,"geometry_index":1312,"location":[11.335403,49.048028]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,308],"duration":2.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.868,"geometry_index":1337,"location":[11.317388,49.0644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,307],"duration":14.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.788,"geometry_index":1338,"location":[11.316834,49.064682]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":1.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.404,"geometry_index":1339,"location":[11.313107,49.066536]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":77.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":67.495,"geometry_index":1340,"location":[11.312704,49.066737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,322],"duration":2.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.011,"geometry_index":1350,"location":[11.294115,49.076719]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,327],"duration":67.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":58.688,"geometry_index":1351,"location":[11.293672,49.077094]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,350],"duration":1.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.911,"geometry_index":1360,"location":[11.287242,49.090337]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,351],"duration":64.243,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":56.212,"geometry_index":1361,"location":[11.287188,49.090548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,347],"duration":3.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.676,"geometry_index":1365,"location":[11.283758,49.103824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,344],"duration":79.093,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":69.207,"geometry_index":1367,"location":[11.283507,49.10451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":1.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.386,"geometry_index":1383,"location":[11.275554,49.123677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":11.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.954,"geometry_index":1384,"location":[11.275351,49.124045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,340],"duration":4.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.252,"geometry_index":1386,"location":[11.273886,49.126721]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,341],"duration":0.882,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.772,"geometry_index":1387,"location":[11.273246,49.127861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.738,"geometry_index":1388,"location":[11.273135,49.12807]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.273035,49.128265],"geometry_index":1389,"admin_index":0,"weight":17.172,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.087,"bearings":[161,340,355],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.270729,49.13278],"geometry_index":1392,"admin_index":0,"weight":6.838,"is_urban":false,"turn_weight":1,"duration":6.496,"bearings":[148,165,349],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":42.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":38.688,"geometry_index":1394,"location":[11.270271,49.134384]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":1.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.334,"geometry_index":1398,"location":[11.2678,49.145092]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":14.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.207,"geometry_index":1399,"location":[11.26772,49.145469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":15.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":13.581,"geometry_index":1401,"location":[11.266802,49.149267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":0.216,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.194,"geometry_index":1402,"location":[11.265789,49.153734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":17.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.103,"geometry_index":1403,"location":[11.265776,49.153791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":9.495,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.545,"geometry_index":1405,"location":[11.2648,49.158206]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.264412,49.160087],"geometry_index":1406,"admin_index":0,"weight":6.854,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.622,"bearings":[7,172,352],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.263982,49.16204],"geometry_index":1407,"admin_index":0,"weight":6.411,"is_urban":false,"turn_weight":1,"duration":6.019,"bearings":[162,172,352],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,353],"duration":74.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":64.835,"geometry_index":1408,"location":[11.263655,49.163569]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,332],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.71,"geometry_index":1422,"location":[11.256204,49.181781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,331],"duration":20.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.027,"geometry_index":1423,"location":[11.256055,49.181964]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,332],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.717,"geometry_index":1427,"location":[11.252216,49.18651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,331],"duration":8.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.77,"geometry_index":1428,"location":[11.252069,49.186688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":12.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.985,"geometry_index":1429,"location":[11.250347,49.188728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":4.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.206,"geometry_index":1431,"location":[11.247981,49.191528]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,330],"duration":22.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.667,"geometry_index":1432,"location":[11.247086,49.19259]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":1.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.028,"geometry_index":1434,"location":[11.242722,49.197761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,330],"duration":36.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":32.553,"geometry_index":1435,"location":[11.242504,49.198025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.856,"geometry_index":1438,"location":[11.235403,49.206396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,331],"duration":35.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":31.771,"geometry_index":1439,"location":[11.235215,49.206617]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.692,"geometry_index":1442,"location":[11.228509,49.214563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,335],"duration":11.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.779,"geometry_index":1443,"location":[11.228372,49.214736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,346],"duration":5.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.203,"geometry_index":1447,"location":[11.226636,49.217626]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.22609,49.219087],"geometry_index":1449,"admin_index":0,"weight":16.354,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.192,"bearings":[0,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.224504,49.223738],"geometry_index":1451,"admin_index":0,"weight":1.153,"is_urban":false,"turn_weight":1,"duration":0.177,"bearings":[153,167,349],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,347],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.856,"geometry_index":1452,"location":[11.22449,49.223785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.783,"geometry_index":1453,"location":[11.224405,49.224029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":66.274,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":59.647,"geometry_index":1454,"location":[11.22394,49.225385]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,350],"duration":0.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.754,"geometry_index":1460,"location":[11.218143,49.24233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,351],"duration":20.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.107,"geometry_index":1461,"location":[11.218083,49.242543]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":1.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.681,"geometry_index":1462,"location":[11.216835,49.247787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.306,"geometry_index":1463,"location":[11.216724,49.248252]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":4.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.106,"geometry_index":1464,"location":[11.216643,49.248607]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.216376,49.249735],"geometry_index":1465,"admin_index":0,"weight":5.295,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.731,"bearings":[6,171,351],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":2.772,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.564,"geometry_index":1467,"location":[11.216036,49.251144]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.215872,49.251824],"geometry_index":1468,"admin_index":0,"weight":10.794,"is_urban":false,"turn_weight":1,"duration":10.596,"bearings":[160,171,351],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":0.917,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.849,"geometry_index":1470,"location":[11.215246,49.254492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":8.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.574,"geometry_index":1471,"location":[11.21519,49.254726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":1.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.024,"geometry_index":1472,"location":[11.214709,49.256787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":21.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":20.271,"geometry_index":1473,"location":[11.214648,49.257072]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.833,"geometry_index":1475,"location":[11.213317,49.262639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":53.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":46.53,"geometry_index":1476,"location":[11.213259,49.262875]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":80.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":70.08,"geometry_index":1482,"location":[11.21001,49.276648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":0.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.662,"geometry_index":1491,"location":[11.208429,49.297594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":66.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":58.072,"geometry_index":1492,"location":[11.208418,49.297779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,356],"duration":0.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.281,"geometry_index":1496,"location":[11.207574,49.314498]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":26.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.806,"geometry_index":1497,"location":[11.207566,49.314583]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":11.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.891,"geometry_index":1502,"location":[11.206667,49.32106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":21.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.9,"geometry_index":1503,"location":[11.206292,49.323866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":1.497,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.31,"geometry_index":1506,"location":[11.205552,49.329237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":46.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":41.014,"geometry_index":1507,"location":[11.205501,49.329614]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":5.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.942,"geometry_index":1512,"location":[11.203956,49.341144]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.203933,49.342504],"geometry_index":1515,"admin_index":0,"weight":9.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.545,"bearings":[13,179,360],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":6.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.535,"geometry_index":1518,"location":[11.203903,49.34503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":3.712,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.341,"geometry_index":1519,"location":[11.203865,49.346501]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.203853,49.34739],"geometry_index":1522,"admin_index":0,"weight":5.572,"is_urban":false,"turn_weight":1,"duration":5.087,"bearings":[175,179,359],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":5.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.148,"geometry_index":1524,"location":[11.20383,49.34853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,179],"duration":2.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.59,"geometry_index":1525,"location":[11.203805,49.349817]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":6.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.105,"geometry_index":1526,"location":[11.203809,49.350445]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.203787,49.351927],"geometry_index":1528,"admin_index":0,"weight":0.784,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.868,"bearings":[6,178,355],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":9.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.854,"geometry_index":1529,"location":[11.203762,49.352104]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":3.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.214,"geometry_index":1532,"location":[11.203494,49.354128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":16.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.662,"geometry_index":1533,"location":[11.203398,49.354874]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.202914,49.35871],"geometry_index":1536,"admin_index":0,"weight":3.074,"is_urban":false,"turn_weight":1,"duration":2.19,"bearings":[166,175,356],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":1.685,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.601,"geometry_index":1538,"location":[11.202841,49.359224]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.283,"geometry_index":1539,"location":[11.202793,49.359615]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":1.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.962,"geometry_index":1540,"location":[11.202749,49.359933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":7.987,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.588,"geometry_index":1541,"location":[11.202714,49.360177]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,356],"duration":0.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.803,"geometry_index":1542,"location":[11.202479,49.362086]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":78.452,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":74.529,"geometry_index":1543,"location":[11.202455,49.362288]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,191],"duration":5.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.397,"geometry_index":1555,"location":[11.200892,49.38198]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,190],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.741,"geometry_index":1556,"location":[11.201274,49.383421]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":2.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.092,"geometry_index":1558,"location":[11.201441,49.38415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.013,"geometry_index":1559,"location":[11.201574,49.384702]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":4.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.637,"geometry_index":1560,"location":[11.201636,49.384964]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,188],"duration":6.542,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.215,"geometry_index":1562,"location":[11.201926,49.386215]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":3.858,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.646,"geometry_index":1565,"location":[11.202211,49.387902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":1.698,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.613,"geometry_index":1567,"location":[11.202227,49.388914]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.742,"geometry_index":1568,"location":[11.202203,49.389366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,356],"duration":4.313,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.098,"geometry_index":1569,"location":[11.202192,49.389569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":0.917,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.871,"geometry_index":1571,"location":[11.202031,49.390709]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.201981,49.39095],"geometry_index":1573,"admin_index":0,"weight":0.209,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.24,"bearings":[172,351,356],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":6.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.723,"geometry_index":1574,"location":[11.201968,49.391002]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":22.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":21.323,"geometry_index":1578,"location":[11.201549,49.392452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":4.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.725,"geometry_index":1583,"location":[11.198956,49.397672]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":5.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.324,"geometry_index":1584,"location":[11.198348,49.39881]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":5.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.43,"geometry_index":1585,"location":[11.197673,49.400096]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":5.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.936,"geometry_index":1586,"location":[11.196988,49.401405]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,345],"duration":13.101,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.446,"geometry_index":1589,"location":[11.196401,49.402606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":2.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.954,"geometry_index":1595,"location":[11.195614,49.405732]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,358],"duration":11.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.789,"geometry_index":1596,"location":[11.19556,49.406235]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,185],"duration":8.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.184,"geometry_index":1600,"location":[11.195691,49.408616]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,191],"duration":1.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.059,"geometry_index":1603,"location":[11.19614,49.410397]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.196231,49.410625],"geometry_index":1604,"admin_index":0,"weight":4.084,"is_urban":false,"turn_weight":1,"duration":3.266,"bearings":[15,184,195],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":48.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":44.465,"geometry_index":1605,"location":[11.196392,49.411028]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":28.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.729,"geometry_index":1610,"location":[11.200418,49.41652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,215],"duration":14.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.405,"geometry_index":1613,"location":[11.20352,49.419548]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.205097,49.421138],"geometry_index":1616,"admin_index":0,"weight":15.137,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.838,"bearings":[33,53,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.207368,49.423382],"geometry_index":1618,"admin_index":0,"weight":6.571,"is_urban":false,"turn_weight":1,"duration":6.198,"bearings":[34,193,212],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":0.966,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.869,"geometry_index":1619,"location":[11.208464,49.424427]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":57.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.708,"geometry_index":1620,"location":[11.208633,49.424588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":6.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.833,"geometry_index":1624,"location":[11.2193,49.434205]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":5.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.9,"geometry_index":1625,"location":[11.220518,49.435294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":9.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.711,"geometry_index":1626,"location":[11.22154,49.436208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":16.986,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.855,"geometry_index":1627,"location":[11.223361,49.437831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":20.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.733,"geometry_index":1629,"location":[11.226463,49.440611]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,216],"duration":15.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.145,"geometry_index":1631,"location":[11.230175,49.443926]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":11.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.68,"geometry_index":1633,"location":[11.232704,49.446483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.234627,49.448532],"geometry_index":1635,"admin_index":0,"weight":11.34,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.61,"bearings":[28,38,212],"out":1,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":13.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.995,"geometry_index":1638,"location":[11.237324,49.450915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,207],"duration":4.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.86,"geometry_index":1643,"location":[11.239867,49.453562]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.240509,49.45448],"geometry_index":1644,"admin_index":0,"weight":26.595,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.557,"bearings":[24,32,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":14.362,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.285,"geometry_index":1651,"location":[11.245819,49.460652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":1.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.393,"geometry_index":1655,"location":[11.248565,49.46359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,210],"duration":2.351,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.175,"geometry_index":1656,"location":[11.248852,49.463907]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.249338,49.464384],"geometry_index":1657,"admin_index":0,"weight":2.27,"is_urban":false,"turn_weight":1,"duration":1.397,"bearings":[30,204,214],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":41.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":38.787,"geometry_index":1658,"location":[11.249596,49.464671]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":5.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.886,"geometry_index":1670,"location":[11.259638,49.473476]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":56.606,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":53.775,"geometry_index":1672,"location":[11.260978,49.474504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":35.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.135,"geometry_index":1680,"location":[11.273678,49.486791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":3.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.811,"geometry_index":1684,"location":[11.281053,49.494894]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":3.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.243,"geometry_index":1685,"location":[11.281853,49.495776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.282535,49.496528],"geometry_index":1686,"admin_index":0,"weight":9.059,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.298,"bearings":[31,51,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.284469,49.498617],"geometry_index":1688,"admin_index":0,"weight":8.988,"is_urban":false,"turn_weight":1.2,"duration":7.796,"bearings":[32,194,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":63.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.594,"geometry_index":1691,"location":[11.286212,49.500296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.304,"geometry_index":1699,"location":[11.301595,49.513259]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.046,"geometry_index":1700,"location":[11.301669,49.513329]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":8.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.52,"geometry_index":1701,"location":[11.301909,49.513557]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":3.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.999,"geometry_index":1704,"location":[11.303851,49.515413]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.30453,49.516064],"geometry_index":1705,"admin_index":0,"weight":7.465,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.865,"bearings":[34,53,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.306295,49.517748],"geometry_index":1707,"admin_index":0,"weight":5.711,"is_urban":false,"turn_weight":0.5,"duration":5.493,"bearings":[34,191,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":110.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":102.5,"geometry_index":1708,"location":[11.307548,49.518933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":6.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.026,"geometry_index":1719,"location":[11.321066,49.546205]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.321593,49.547875],"geometry_index":1720,"admin_index":0,"weight":15.254,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.499,"bearings":[11,27,192],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.322873,49.552115],"geometry_index":1721,"admin_index":0,"weight":6.251,"is_urban":false,"turn_weight":1,"duration":5.685,"bearings":[12,172,191],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":7.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.234,"geometry_index":1723,"location":[11.323318,49.553563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":1.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.042,"geometry_index":1724,"location":[11.323905,49.555503]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,191],"duration":28.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.262,"geometry_index":1725,"location":[11.323985,49.555782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,205],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.527,"geometry_index":1731,"location":[11.327355,49.562951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.328246,49.564058],"geometry_index":1734,"admin_index":0,"weight":7.066,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.446,"bearings":[30,44,208],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.329849,49.565732],"geometry_index":1738,"admin_index":0,"weight":3.671,"is_urban":false,"turn_weight":1,"duration":2.832,"bearings":[33,199,214],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,213],"duration":0.804,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.763,"geometry_index":1739,"location":[11.33047,49.566348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.743,"geometry_index":1740,"location":[11.330669,49.566532]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.291,"geometry_index":1742,"location":[11.33134,49.56716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.717,"geometry_index":1743,"location":[11.332142,49.567909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":19.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.792,"geometry_index":1744,"location":[11.332319,49.568072]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":40.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.072,"geometry_index":1746,"location":[11.336782,49.572202]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":15.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.552,"geometry_index":1756,"location":[11.346374,49.580645]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":12.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.558,"geometry_index":1764,"location":[11.349857,49.583768]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,225],"duration":18.874,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.986,"geometry_index":1770,"location":[11.352772,49.586466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,226],"duration":56.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.771,"geometry_index":1780,"location":[11.356634,49.590554]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.617,"geometry_index":1803,"location":[11.365651,49.603134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,205],"duration":0.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.031,"geometry_index":1804,"location":[11.365767,49.603295]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,208],"duration":26.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":22.86,"geometry_index":1805,"location":[11.365772,49.603301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,217],"duration":0.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.03,"geometry_index":1811,"location":[11.370786,49.609303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":54.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":48,"geometry_index":1812,"location":[11.370791,49.609307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,251],"duration":29.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":26.22,"geometry_index":1834,"location":[11.390689,49.614999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":6.353,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.718,"geometry_index":1841,"location":[11.402654,49.618831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.405236,49.619709],"geometry_index":1843,"admin_index":0,"weight":5.754,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.4,"bearings":[62,242],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.592,"geometry_index":1846,"location":[11.407715,49.620634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,236],"duration":4.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.966,"geometry_index":1847,"location":[11.407956,49.620741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":5.375,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.818,"geometry_index":1850,"location":[11.409445,49.621569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":7.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.034,"geometry_index":1855,"location":[11.41104,49.622737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":32.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.455,"geometry_index":1857,"location":[11.413233,49.624528]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.878,"geometry_index":1865,"location":[11.422419,49.63241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":1.556,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.4,"geometry_index":1866,"location":[11.422647,49.632655]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":40.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.039,"geometry_index":1867,"location":[11.423012,49.633049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":5.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.785,"geometry_index":1887,"location":[11.43386,49.643855]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.434671,49.645496],"geometry_index":1890,"admin_index":0,"weight":9.09,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.109,"bearings":[23,42,199],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.436875,49.647804],"geometry_index":1897,"admin_index":0,"weight":7.005,"is_urban":false,"turn_weight":1,"duration":6.873,"bearings":[43,203,219],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,233],"duration":45.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":39.802,"geometry_index":1902,"location":[11.439019,49.648995]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,220],"duration":45.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":40.909,"geometry_index":1926,"location":[11.45549,49.653903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":6.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.632,"geometry_index":1938,"location":[11.46691,49.663518]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.46796,49.665044],"geometry_index":1942,"admin_index":0,"weight":4.371,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.883,"bearings":[19,31,203],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.468552,49.666268],"geometry_index":1944,"admin_index":0,"weight":1.817,"is_urban":false,"turn_weight":1,"duration":0.931,"bearings":[13,170,196],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,193],"duration":7.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.359,"geometry_index":1945,"location":[11.46864,49.666506]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,185],"duration":23.081,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.772,"geometry_index":1948,"location":[11.469068,49.668374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":0.849,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.764,"geometry_index":1954,"location":[11.468435,49.674513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":54.333,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.542,"geometry_index":1955,"location":[11.468397,49.674734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":48.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":42.146,"geometry_index":1962,"location":[11.466301,49.689317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":7.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.475,"geometry_index":1978,"location":[11.465795,49.702235]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.466574,49.704167],"geometry_index":1982,"admin_index":0,"weight":3.474,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.977,"bearings":[17,49,197],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.467133,49.705163],"geometry_index":1985,"admin_index":0,"weight":7.39,"is_urban":false,"turn_weight":1,"duration":7.311,"bearings":[23,182,201],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":127.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":111.36,"geometry_index":1988,"location":[11.468378,49.706902]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,240],"duration":1.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.059,"geometry_index":2017,"location":[11.506665,49.726767]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":6.103,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.493,"geometry_index":2018,"location":[11.507068,49.726933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,226],"duration":3.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.024,"geometry_index":2021,"location":[11.509007,49.727928]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,222],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.172,"geometry_index":2023,"location":[11.50994,49.728569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[36,219],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"geometry_index":2024,"location":[11.510272,49.728834]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 9 / E 51"},"distanceAlongGeometry":100711.195},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 9 / E 51"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 9.","modifier":"slight left","bearing_after":319,"bearing_before":319,"location":[11.422945,48.960418]},"speedLimitSign":"vienna","name":"","weight_typical":3320.902,"duration_typical":3663.624,"duration":3663.624,"distance":100711.195,"driving_side":"right","weight":3320.902,"mode":"driving","ref":"A 9","geometry":"cyhk|AamexTwJtNcQ`VmYf`@ee@zl@gPhRkXfYya@z_@kZzX_vAjqAil@vn@cRpVoWj\\ea@|j@ib@pm@eZxg@iSl]iQj[sFdJgoA|yB}fFhcJ}`BxtC}e@f{@g]rs@uKbVwF~Ms]l`AyNha@oTho@iOba@yJlTINsLvVeN~WwJbQ_NnTgIdLgNxQkSvUgNtN{SbRoUxQ}g@t\\oPfLuf@j^{SdTcVj]eIxM_IjMoUha@{KrRgGpKuXpd@mSn\\gJpNkR`VoTrVs]p]q\\hY{n@bg@oAbAoZxW{c@v`@ee@v_@ycAn{@wGzFeMxKmIlHmP|Myb@zb@q^v`@}Yd\\u]tc@a^jg@aWv_@md@vv@{^tq@sd@taA__@d}@c\\f}@iI|VaPnf@eTft@_\\hpAw\\v}AgYf_BkCzOoNtz@qFh\\oGr_@uJdl@g@jD_I~e@w^l{BaMns@e@pCcK|l@uOhu@aOhl@cRfk@aVrl@uYbk@kXz`@wV|ZsQhRwJrJaOrL}PhMeQ~K_TfL}_@zNmnAdb@uvA`f@mg@zLw[jD}]`Bk[Hw]wBaZsEg]aHcTqFgVwJ{OuH}PyJ{OyKe[cVyUeVcRiTyPeV_RiYsUs`@ed@c{@ylAa|Bqk@yhAid@my@oc@m{@yNcYuHmMoQsY{NqSiRcUsV{UoOkM{U{OaWwK{UqKqXoJeQgE}]wHq\\wCwViAwUZmZrBa\\zDqYlGoTrGkPnGmR|JkRhKuWjRiRvP_OrMgXjX_uBbwBul@nk@u]tYsVbSsUhQw`@rWc]bSoYtOy\\|Og~A~p@ai@xRsq@jYuh@bWeObKwJtGmSlOsc@vd@gNtQePhUoLjQ{Vva@gZxq@eIjXgQ~i@eVteA{M`x@eLlw@w[nsBmCnRmIbl@gS~rAiT~wAoRhqAoInh@_Irc@iJpb@qJ`_@mStq@_]z}@kU`f@eYli@eo@x_A}Zff@yOzUqw@bkAio@v_A{iAj`Bmi@zy@}RrWyVzZcSrU}P~QcWjViVhToTnQqZlS_c@lYy`EhgCkqA`y@qRrMk_@`Zyk@hi@aY|Yga@tf@cQ|Te^th@o^pn@kWhf@qZlp@ilAxzCsPra@{rB|gFqKdXy|Ab{Dw~Av_EqdBvjE}tBdlFkd@zhAc^|v@aa@nu@gYdh@q_@xl@mt@tcAmVtZsmA~kAwy@dq@aqAv_Agn@h_@wd@`Sqy@d[}y@vUcqB~^sbHriAeLjBcjJn{AkmBn\\stE~w@smCjb@gVzFsRxF}r@nUso@pV_sA`r@{fB~eAgzAzs@kuA|c@y~At[otG~kAckC`d@a^xHa^|Icd@`M{JfEmLnDaVzIyeA|e@_VtKifA|g@}~Arq@gfA~f@aL|EeKfEwrChpA}|@r_@ogAd]ev@bPal@nJgpD`j@gfE`n@{|ArS{eEtj@qV~C{~Ehu@oL`BevGh~@qBXaiCj^{hCr\\qtBfWayBzYq~AlSeeAbLs`Gpw@}~D`g@{m@hJq^xGucApVucBpj@yfA`f@qn@l\\{`@`Vwb@fYyjAp|@_fAb{@{a@d\\mJhHkiAz|@klC~vBeXjTej@tc@cJdHo~BrjBuiAb~@icBvsAkaA|v@{pB~aBipEvlDoOrLgtAfiAcoGndFydD`kCyLvJynExnD{eGv}E}XpSyIpG{c@xXms@x`@ex@d^ca@tPc|@rVe]nIq{Dh_AceBxa@}AZgNhDwsA`\\yRzEeoMd`DukDpz@ehDzw@woBfg@mwBpd@iLvBwfI~lAa\\|EeU`DoeAtOyx@rLg]rFoi@fIa}AhUugAxOsMnBy_C`]yPxBebGx|@wwAjTwMrB}kGtx@adCh`@I@gdHhhAsmAxPsuAzSy~AdTu|@lIin@jFis@|EapErMeeKfQ}_CzD{fChF}zDxEqJTejC|Em}NdYklI`M}|@pDiDNasAtIqeAnHywB|P{bAtGo|@jHknDlV{iAxHkiC`QmyBjQqVdByqDlVqkAfIuzJzv@yx@fDwZv@gv@`@eZHqA@w^JuwBj@mDB}zAjAaJHaR@mXJeDBaaAh@moAp@gf@Gyx@Kya@v@aJp@_M~@w{@pGwr@dEsm@~Dad@pCqs@tEcuC~Q_Nr@cP|AmW~A{RvAgNdAivBtMsKn@yz@hGyjB~LmuAfJsuKjr@_}Htf@wc@|A}c@v@un@mA_VmAa`@_Ecd@cHod@sJayA{V{NeBu\\gFoa@iGkO{Bqx@oLsSsC_f@wGij@cFcV}@wu@m@oGLg[n@uKTct@jEcQtB}LzAc@FgBXqYvEsf@lJqGxA{NdDsDx@{\\fJid@hOye@lRsuEfpBcfA~d@koAdi@ypAxi@_m@~UsK|DmOvFuM~Di_@dJyP|Dqo@jKus@nIi\\dBm^jB_d@p@qn@w@i[wA}b@gD}WsCi_@{Eau@qOgMuDeXaIq[mJ_eAmd@gqAit@szAwnAyeAudAqv@wu@ywAuzA{k@mn@sp@op@cYmYsVsUi_CoaC}JmJi`AocAaIqIohBsmBwwBagCwdJ}oKaPaRacAckAcx@{~@mdBypBwy@i`A_rBq_Co`BelBulByyBg}B}}Bq`@c^}k@uh@crAomAua@uh@a_@kb@eqAozAw[__@ic@{e@wXcXqi@ee@a_@wWkx@cg@g`@qU{g@g\\ah@}]}p@ik@mq@km@{pAckAiwAiqAaB{Ao|AavAuu@ir@k_@k]yR}Py\\k]}PcOkUaSw]{[YW_pAykAwz@ow@ki@_l@_FiGwy@_bAc\\_d@kl@}x@khCavDsb@im@wCcEoz@slAmyA}tBcmAo`BwgCmrCma@cd@iqBujBilB}bBegDgxCkc@{_@yaCkuBuqDibD__DkpC}c@{`@cv@_q@_n@si@m`A{z@c`A_|@}XiXo]u]oo@}s@_s@cz@o_AypA{uEkkHy|@imAou@{{@_}DufEofCglC_d@_g@kCsCgM_N}`@wa@_XqXax@a|@ug@mi@sWsXsoAusAaiAimAur@gu@i~C_fDqaBuaButA}dAolAsu@_cAsb@q~Ayf@qeAsUepMgjCq_HywA{rFgiAkgB}_@_hG_oA_l@cMol@uLgxBuc@mP_DwkAyV}vBui@ikAgc@yjA}g@uj@qZqv@kf@gMgJ_UwP}_@uY{KsJuTcRmb@a`@sa@kc@oe@ye@oJmK{PcRkTyUym@cq@eIaJsmByvBorCc~CmqA_zA{uAu~A_vAo}AkqAquA}r@cx@oa@wc@wVoZcXw\\k^{j@iUwc@wQo_@uNcZ{T_a@}R_ZeXwY}XkWwb@uWa_@gTop@s^sXmTy\\a`@eWya@yXig@uL}SoL_Rq\\ya@eWaTe\\iSuW{McYeNs_@{Ty^k^gZmc@qOmYsHuQePsd@uTyr@sWou@qNk[gSg^sRqXa`@ua@}f@u]af@_S}g@}Jaf@iB}w@E}a@Ye[oC{V_EiXmG_k@uScl@o[{p@ca@}|@si@sm@a`@yo@ec@aIgFKIktDiaCov@_l@_u@ao@if@cf@yf@mk@cDmEGIaSkX}Sy[mX_f@gS}`@[m@iWam@kQgg@mSgq@iQmq@sPsu@mKsk@wLov@{M{`AcQyzAwRmtBySwaCiKqnAoAcM}O{_BgQ}yAqQuqAYgBcSqmAgXutAmVulA_[yrAyaAqdEcXiiAwq@euC_n@ciC{FgVgUw_AyRys@wNkd@uEaNkTig@kMeX_OqZcHwMmMuS}NiUuEoHyYm_@}mB{fC_@e@_r@g{@{OmSmzBytC_dBwzB}PaUyr@c|@yw@w_AwhA}fAiNgMsWyU{QsOoVwS}n@yk@eeAuy@aAw@oeBoqAkTgRiXkWe_@g`@cb@el@uZmh@os@{nAi_@}p@_V}\\{Xg[sSySyV{Ss]cWu[_Re^qOsUeJgi@}Qud@qScOqI_ZmSsUgReWyUcQ}SiT_X{MwQkN_U{HuN{MaZePs`@cPsb@{Qen@eMgj@wJei@gHaf@{Fof@kHi~@gDmw@{AebAoAor@wBav@_D}h@{G{v@uHcj@wG{c@mFcWcFkVsMof@sNic@mPuc@{Twf@iUma@ci@wz@_Vk]ePsUocAyoAenAibBwiA{{A{cAysAodAwsAyo@my@wQsVuw@mfAaa@{e@uh@ki@eZ}X}KoI_PiLyT_Os^iS}W_O_e@cSoe@{O{MoDay@yOg]yDm[cCwn@sAwWA{aAzEokDjWsVrBeo@jFyLjA}lEt\\cwEf]ig@rDm]rCehA~IujEj\\wlClSsZdCoqAnJqm@rEoy@fGilAxIonApJcdAtGmx@rCil@hAwv@Bqg@kA}g@}BoUaBu\\iFmj@wIs]sHsUcFc_@qJm\\yKqc@ePeKyDqk@qXoDqBqf@kXec@eY}_@gY}ToPeqAmiAg\\m[anB{jB{~BmyBmz@iy@slDigDa_@_^ms@yq@{d@_e@uYi^}Xu_@}`@mr@mNuXo\\_y@_Za}@wSux@_Sw`AiR_jAuQioAq|@ymG}Y{tBmAsIswAgcK_Z_vBaLiz@wNi`AiPsz@{Va`AkIeXoP_g@_]mx@uMwVkL_TuYid@qOwSuYg]y\\{\\"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 90 miles.","announcement":"Continue for 90 miles.","distanceAlongGeometry":145525.219},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 9.","announcement":"In 1 mile, Keep left to stay on A 9.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 9.","announcement":"In a half mile, Keep left to stay on A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 9, E 51 toward Berlin, Halle (Saale).","announcement":"Keep left to stay on A 9, E 51 toward Berlin, Halle (Saale).","distanceAlongGeometry":255.556}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.511234,49.729738],"geometry_index":2026,"admin_index":0,"weight":11.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.288,"bearings":[30,46,213],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.513621,49.732829],"geometry_index":2030,"admin_index":0,"weight":1.766,"is_urban":false,"turn_weight":1,"duration":0.836,"bearings":[27,191,206],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":5.798,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.363,"geometry_index":2031,"location":[11.513788,49.73304]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":21.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.216,"geometry_index":2035,"location":[11.514794,49.734542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.966,"geometry_index":2046,"location":[11.514826,49.740604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.66,"geometry_index":2047,"location":[11.514628,49.741149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":7.474,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.914,"geometry_index":2048,"location":[11.514004,49.742991]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.513365,49.744904],"geometry_index":2049,"admin_index":0,"weight":22.376,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.198,"bearings":[1,168,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.412,"geometry_index":2058,"location":[11.511232,49.751214]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":1.577,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.459,"geometry_index":2059,"location":[11.511196,49.751328]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.511055,49.751727],"geometry_index":2061,"admin_index":0,"weight":1.392,"is_urban":false,"turn_weight":1,"duration":0.431,"bearings":[151,167,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.555,"geometry_index":2062,"location":[11.51102,49.751832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":7.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.921,"geometry_index":2063,"location":[11.510973,49.75198]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":33.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":30.42,"geometry_index":2065,"location":[11.510334,49.753839]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,335],"duration":1.077,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.969,"geometry_index":2078,"location":[11.508072,49.762787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,332],"duration":55.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":50.28,"geometry_index":2079,"location":[11.507885,49.763043]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,216],"duration":35.259,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.71,"geometry_index":2100,"location":[11.510551,49.777184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,332],"duration":0.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.733,"geometry_index":2121,"location":[11.511155,49.786195]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[152,327],"duration":7.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.951,"geometry_index":2123,"location":[11.510997,49.786388]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,313],"duration":17.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.729,"geometry_index":2126,"location":[11.508856,49.788165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,292],"duration":4.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.458,"geometry_index":2134,"location":[11.502042,49.79066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,293],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.771,"geometry_index":2135,"location":[11.499962,49.791199]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,294],"duration":42.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.81,"geometry_index":2137,"location":[11.499577,49.791306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.978,"geometry_index":2163,"location":[11.494526,49.801448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,210],"duration":40.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.276,"geometry_index":2164,"location":[11.494751,49.801697]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,340],"duration":4.039,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.616,"geometry_index":2182,"location":[11.499939,49.811749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":1.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.302,"geometry_index":2183,"location":[11.49934,49.812801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.62,"geometry_index":2184,"location":[11.499137,49.813162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,339],"duration":1.421,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.279,"geometry_index":2185,"location":[11.49887,49.813619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,340],"duration":17.787,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.001,"geometry_index":2186,"location":[11.498648,49.813999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,180],"duration":20.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":18.022,"geometry_index":2193,"location":[11.497107,49.818913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,196],"duration":5.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.67,"geometry_index":2204,"location":[11.499206,49.824324]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.181,"geometry_index":2206,"location":[11.499534,49.825746]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,187],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.972,"geometry_index":2207,"location":[11.499598,49.826098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,182],"duration":5.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.243,"geometry_index":2208,"location":[11.499615,49.826397]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.499651,49.827991],"geometry_index":2211,"admin_index":0,"weight":4.816,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.358,"bearings":[0,18,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.499717,49.829475],"geometry_index":2214,"admin_index":0,"weight":6.184,"is_urban":false,"turn_weight":1,"duration":5.769,"bearings":[7,170,185],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,194],"duration":58.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.85,"geometry_index":2217,"location":[11.500133,49.830954]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,216],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.868,"geometry_index":2237,"location":[11.507787,49.845195]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":67.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":59.363,"geometry_index":2238,"location":[11.508092,49.845441]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":60.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":52.654,"geometry_index":2259,"location":[11.518359,49.862037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,267],"duration":5.462,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.916,"geometry_index":2284,"location":[11.534206,49.873241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,268],"duration":24.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.842,"geometry_index":2286,"location":[11.536654,49.873292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,220],"duration":139.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":125.941,"geometry_index":2298,"location":[11.54582,49.876628]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":5.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.748,"geometry_index":2365,"location":[11.598971,49.890725]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.599523,49.892209],"geometry_index":2367,"admin_index":0,"weight":12.746,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.787,"bearings":[14,25,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.601006,49.896079],"geometry_index":2369,"admin_index":0,"weight":5.354,"is_urban":false,"turn_weight":1,"duration":4.715,"bearings":[14,183,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":13.735,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.705,"geometry_index":2372,"location":[11.601564,49.897563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,196],"duration":2.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.973,"geometry_index":2378,"location":[11.603222,49.90189]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":3.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.947,"geometry_index":2379,"location":[11.603423,49.90245]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,195],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.902,"geometry_index":2381,"location":[11.603763,49.903322]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":84.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":80.614,"geometry_index":2382,"location":[11.603856,49.903573]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":2.507,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.444,"geometry_index":2415,"location":[11.602547,49.927064]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":2.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.264,"geometry_index":2417,"location":[11.602481,49.927761]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,178],"duration":2.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.219,"geometry_index":2418,"location":[11.602452,49.928381]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.602478,49.928979],"geometry_index":2419,"admin_index":0,"weight":5.97,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.143,"bearings":[2,21,182],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.602653,49.930608],"geometry_index":2424,"admin_index":0,"weight":2.235,"is_urban":false,"turn_weight":1,"duration":1.255,"bearings":[6,168,187],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,186],"duration":5.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.506,"geometry_index":2425,"location":[11.602708,49.930921]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":24.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":24.812,"geometry_index":2428,"location":[11.603047,49.932306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":2.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.097,"geometry_index":2438,"location":[11.60474,49.938524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":5.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.875,"geometry_index":2440,"location":[11.604873,49.939054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,188],"duration":1.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.677,"geometry_index":2443,"location":[11.605246,49.940511]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,191],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.723,"geometry_index":2444,"location":[11.605361,49.940905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,192],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.47,"geometry_index":2446,"location":[11.605562,49.941577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":6.282,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.439,"geometry_index":2447,"location":[11.605594,49.941695]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":3.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.509,"geometry_index":2450,"location":[11.606014,49.943268]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":2.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.125,"geometry_index":2451,"location":[11.606252,49.944129]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":12.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.216,"geometry_index":2452,"location":[11.606388,49.944635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":8.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.585,"geometry_index":2456,"location":[11.607212,49.947739]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.104,"geometry_index":2459,"location":[11.607669,49.949768]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,186],"duration":6.696,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.863,"geometry_index":2460,"location":[11.607711,49.950031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,181],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.664,"geometry_index":2466,"location":[11.607867,49.951698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":1.839,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.931,"geometry_index":2467,"location":[11.607868,49.951863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,357],"duration":2.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.548,"geometry_index":2468,"location":[11.607859,49.952284]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,357],"duration":1.78,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.869,"geometry_index":2469,"location":[11.607812,49.952844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,355],"duration":1.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.5,"geometry_index":2470,"location":[11.607776,49.953245]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[175,352],"duration":14.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.639,"geometry_index":2471,"location":[11.607732,49.953575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":1.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.009,"geometry_index":2477,"location":[11.606874,49.956768]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,349],"duration":14.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.006,"geometry_index":2478,"location":[11.606752,49.957201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":6.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.519,"geometry_index":2483,"location":[11.605867,49.960436]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.605622,49.961855],"geometry_index":2486,"admin_index":0,"weight":8.718,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.513,"bearings":[6,174,355],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,358],"duration":3.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.163,"geometry_index":2489,"location":[11.605418,49.963785]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.605386,49.964485],"geometry_index":2490,"admin_index":0,"weight":1.894,"is_urban":false,"turn_weight":0.5,"duration":1.368,"bearings":[163,178,359],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,179],"duration":7.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.831,"geometry_index":2491,"location":[11.605375,49.964792]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,181],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.886,"geometry_index":2493,"location":[11.605411,49.966506]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":29.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.52,"geometry_index":2494,"location":[11.605441,49.966915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,185],"duration":10.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.335,"geometry_index":2501,"location":[11.606323,49.973524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":14.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.908,"geometry_index":2505,"location":[11.606661,49.975896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":7.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.372,"geometry_index":2510,"location":[11.607125,49.979168]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.68,"geometry_index":2512,"location":[11.60737,49.9809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":1.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.672,"geometry_index":2517,"location":[11.607783,49.984127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.12,"geometry_index":2518,"location":[11.607808,49.984519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":2.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.736,"geometry_index":2522,"location":[11.60788,49.98667]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":2.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.701,"geometry_index":2523,"location":[11.607856,49.98732]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,358],"duration":19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.575,"geometry_index":2525,"location":[11.607826,49.987974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":5.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.847,"geometry_index":2531,"location":[11.607394,49.992233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":3.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.042,"geometry_index":2534,"location":[11.607261,49.993409]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,355],"duration":72.185,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":66.771,"geometry_index":2535,"location":[11.607195,49.994072]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":0.415,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.384,"geometry_index":2566,"location":[11.610073,50.007575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,333],"duration":5.907,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.465,"geometry_index":2567,"location":[11.610024,50.007648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,330],"duration":12.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.868,"geometry_index":2569,"location":[11.609152,50.008648]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":13.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.552,"geometry_index":2574,"location":[11.60741,50.010875]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.606344,50.013421],"geometry_index":2577,"admin_index":0,"weight":5.445,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.906,"bearings":[165,344,359],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,345],"duration":21.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.51,"geometry_index":2581,"location":[11.605856,50.01463]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.235,"geometry_index":2589,"location":[11.604353,50.01899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":21.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.097,"geometry_index":2590,"location":[11.604344,50.019045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":2.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.899,"geometry_index":2599,"location":[11.604861,50.023522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":32.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.05,"geometry_index":2600,"location":[11.604984,50.023969]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":6.505,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.854,"geometry_index":2610,"location":[11.606821,50.030962]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.607189,50.032369],"geometry_index":2614,"admin_index":0,"weight":5.86,"is_urban":false,"turn_weight":1,"duration":5.408,"bearings":[11,182,189],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,192],"duration":21.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.223,"geometry_index":2616,"location":[11.607593,50.03364]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":40.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.875,"geometry_index":2626,"location":[11.611063,50.038356]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,194],"duration":12.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.897,"geometry_index":2640,"location":[11.616734,50.047754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":8.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.909,"geometry_index":2644,"location":[11.617623,50.050784]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.617997,50.052822],"geometry_index":2648,"admin_index":0,"weight":4.738,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.994,"bearings":[5,30,186],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":1.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.211,"geometry_index":2650,"location":[11.618123,50.054017]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.618145,50.054319],"geometry_index":2651,"admin_index":0,"weight":2.14,"is_urban":false,"turn_weight":1,"duration":1.207,"bearings":[3,158,183],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,183],"duration":10.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.519,"geometry_index":2652,"location":[11.618171,50.054676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,357],"duration":2.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.909,"geometry_index":2656,"location":[11.61815,50.057676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,357],"duration":14.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.022,"geometry_index":2657,"location":[11.618107,50.058275]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,196],"duration":65.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":60.218,"geometry_index":2666,"location":[11.618797,50.06265]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,245],"duration":6.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.152,"geometry_index":2700,"location":[11.640949,50.074877]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,254],"duration":48.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":43.462,"geometry_index":2704,"location":[11.643433,50.075439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.654,"geometry_index":2721,"location":[11.660684,50.079451]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":5.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.941,"geometry_index":2722,"location":[11.66092,50.079551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":4.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.862,"geometry_index":2724,"location":[11.662689,50.080291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":4.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.091,"geometry_index":2726,"location":[11.664074,50.080865]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.166,"geometry_index":2727,"location":[11.665537,50.081483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.207,"geometry_index":2728,"location":[11.665955,50.081656]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.666396,50.081842],"geometry_index":2729,"admin_index":0,"weight":5.967,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.648,"bearings":[57,70,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.668576,50.082751],"geometry_index":2730,"admin_index":0,"weight":7.224,"is_urban":false,"turn_weight":1,"duration":6.934,"bearings":[57,221,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":70.765,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":63.688,"geometry_index":2732,"location":[11.670857,50.083699]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,222],"duration":7.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.607,"geometry_index":2753,"location":[11.693052,50.094581]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.695022,50.095963],"geometry_index":2754,"admin_index":0,"weight":11.849,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.172,"bearings":[42,222],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":6.431,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.781,"geometry_index":2760,"location":[11.698415,50.09851]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":8.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.401,"geometry_index":2763,"location":[11.699765,50.099894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,204],"duration":8.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.274,"geometry_index":2768,"location":[11.701172,50.101778]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.702537,50.103644],"geometry_index":2770,"admin_index":0,"weight":11.467,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.762,"bearings":[25,46,207],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.704682,50.106576],"geometry_index":2775,"admin_index":0,"weight":3.024,"is_urban":false,"turn_weight":1,"duration":2.196,"bearings":[28,186,206],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,208],"duration":6.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.681,"geometry_index":2776,"location":[11.705087,50.107068]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":2.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.979,"geometry_index":2780,"location":[11.706382,50.108393]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,215],"duration":11.077,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.969,"geometry_index":2781,"location":[11.706864,50.108836]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,224],"duration":1.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.912,"geometry_index":2786,"location":[11.70984,50.110986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,227],"duration":107.446,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":94.016,"geometry_index":2787,"location":[11.710138,50.111167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,199],"duration":23.144,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.232,"geometry_index":2824,"location":[11.741154,50.130141]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":56.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.656,"geometry_index":2836,"location":[11.742302,50.136069]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":12.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.589,"geometry_index":2861,"location":[11.747714,50.1501]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,193],"duration":6.784,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.106,"geometry_index":2866,"location":[11.74937,50.153262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":5.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.518,"geometry_index":2871,"location":[11.749612,50.155016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":1.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.931,"geometry_index":2874,"location":[11.749433,50.156315]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,348],"duration":8.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.41,"geometry_index":2875,"location":[11.74936,50.156568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,344],"duration":14.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.832,"geometry_index":2879,"location":[11.748557,50.158574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,347],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.155,"geometry_index":2883,"location":[11.747027,50.162034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,344],"duration":3.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.727,"geometry_index":2884,"location":[11.746913,50.162345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":6.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.71,"geometry_index":2885,"location":[11.74659,50.163084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":0.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.738,"geometry_index":2890,"location":[11.745991,50.164632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,351],"duration":1.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.251,"geometry_index":2892,"location":[11.74593,50.164835]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.668,"geometry_index":2893,"location":[11.745847,50.165181]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,355],"duration":6.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.967,"geometry_index":2895,"location":[11.745748,50.16564]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.745648,50.167311],"geometry_index":2899,"admin_index":0,"weight":7.956,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.858,"bearings":[2,21,181],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.746048,50.169523],"geometry_index":2904,"admin_index":0,"weight":3.637,"is_urban":false,"turn_weight":1,"duration":2.937,"bearings":[11,173,191],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":2.21,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.989,"geometry_index":2906,"location":[11.746315,50.170244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.037,"geometry_index":2908,"location":[11.74656,50.170774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":3.276,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.948,"geometry_index":2909,"location":[11.746694,50.171045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.275,"geometry_index":2911,"location":[11.747145,50.171807]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":77.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":71.762,"geometry_index":2917,"location":[11.749392,50.174582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":16.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.744,"geometry_index":2946,"location":[11.765611,50.190887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.2,"geometry_index":2953,"location":[11.769092,50.194903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.231,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.22,"geometry_index":2965,"location":[11.776118,50.203584]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":0.958,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.91,"geometry_index":2966,"location":[11.77615,50.203641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":3.798,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.608,"geometry_index":2967,"location":[11.776278,50.203893]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.776766,50.204875],"geometry_index":2970,"admin_index":0,"weight":1.981,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.094,"bearings":[18,197],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":0.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.735,"geometry_index":2972,"location":[11.777035,50.2054]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.703,"geometry_index":2973,"location":[11.777134,50.205597]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.777231,50.205786],"geometry_index":2974,"admin_index":0,"weight":0.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.233,"bearings":[18,38,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.089,"geometry_index":2975,"location":[11.777255,50.205834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.778175,50.20767],"geometry_index":2976,"admin_index":0,"weight":6.392,"is_urban":false,"turn_weight":1,"duration":5.848,"bearings":[18,182,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,197],"duration":0.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.603,"geometry_index":2978,"location":[11.778894,50.20913]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":26.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":23.513,"geometry_index":2979,"location":[11.778977,50.209295]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,192],"duration":60.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":54.864,"geometry_index":2989,"location":[11.782044,50.215851]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,351],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.926,"geometry_index":3013,"location":[11.777591,50.231294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,351],"duration":42.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":37.924,"geometry_index":3014,"location":[11.777524,50.231556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,215],"duration":1.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.211,"geometry_index":3035,"location":[11.781301,50.242017]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":18.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.23,"geometry_index":3036,"location":[11.781645,50.2423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":6.109,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.492,"geometry_index":3041,"location":[11.786576,50.245998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,220],"duration":0.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.367,"geometry_index":3046,"location":[11.788213,50.247209]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,223],"duration":34.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.05,"geometry_index":3047,"location":[11.788327,50.247287]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":1.257,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.131,"geometry_index":3060,"location":[11.795108,50.255448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":15.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.395,"geometry_index":3061,"location":[11.795301,50.255754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":0.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.48,"geometry_index":3067,"location":[11.797727,50.259533]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":87.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.777,"geometry_index":3068,"location":[11.797808,50.259666]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.979,"geometry_index":3100,"location":[11.811314,50.281441]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":21.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.35,"geometry_index":3101,"location":[11.811443,50.281721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,357],"duration":6.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.056,"geometry_index":3112,"location":[11.812475,50.2874]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.812221,50.289191],"geometry_index":3116,"admin_index":0,"weight":7.221,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.044,"bearings":[10,173,351],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.811634,50.291256],"geometry_index":3120,"admin_index":0,"weight":1.87,"is_urban":false,"turn_weight":1,"duration":0.989,"bearings":[142,169,346],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":6.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.64,"geometry_index":3121,"location":[11.811536,50.291509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,344],"duration":19.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":17.91,"geometry_index":3125,"location":[11.810849,50.293139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,342],"duration":8.333,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.5,"geometry_index":3128,"location":[11.808256,50.298235]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,341],"duration":6.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.55,"geometry_index":3129,"location":[11.807144,50.30037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.80631,50.301942],"geometry_index":3131,"admin_index":0,"weight":11.719,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.028,"bearings":[4,161,342],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.80458,50.305236],"geometry_index":3134,"admin_index":0,"weight":2.38,"is_urban":false,"turn_weight":1,"duration":1.541,"bearings":[144,161,341],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":6.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.91,"geometry_index":3135,"location":[11.804371,50.30563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.96,"geometry_index":3136,"location":[11.803481,50.307305]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,343],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.855,"geometry_index":3138,"location":[11.801536,50.310985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,342],"duration":4.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.351,"geometry_index":3139,"location":[11.801421,50.311225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,341],"duration":3.139,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.808,"geometry_index":3140,"location":[11.800792,50.312427]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":11.699,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.522,"geometry_index":3141,"location":[11.800374,50.3132]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,340],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.556,"geometry_index":3143,"location":[11.798833,50.316104]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":3.429,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.086,"geometry_index":3144,"location":[11.798746,50.316253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,334],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.679,"geometry_index":3146,"location":[11.798222,50.317082]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,333],"duration":14.079,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.671,"geometry_index":3147,"location":[11.798087,50.317257]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.795264,50.320307],"geometry_index":3151,"admin_index":0,"weight":6.638,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.382,"bearings":[149,329,339],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":2.948,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.653,"geometry_index":3154,"location":[11.793728,50.321924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,330],"duration":5.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.338,"geometry_index":3155,"location":[11.793109,50.322583]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,341],"duration":4.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.196,"geometry_index":3158,"location":[11.792016,50.323969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":2.208,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.986,"geometry_index":3160,"location":[11.791446,50.325136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":12.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.185,"geometry_index":3162,"location":[11.791218,50.325705]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.790146,50.328857],"geometry_index":3165,"admin_index":0,"weight":3.397,"is_urban":false,"turn_weight":1,"duration":2.612,"bearings":[160,168,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":7.056,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":6.526,"geometry_index":3166,"location":[11.789925,50.32949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,347],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.856,"geometry_index":3169,"location":[11.789339,50.331215]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":5.907,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.464,"geometry_index":3170,"location":[11.789256,50.331449]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.788752,50.332929],"geometry_index":3171,"admin_index":0,"weight":8.212,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.898,"bearings":[168,347],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.787959,50.335151],"geometry_index":3173,"admin_index":0,"weight":7.518,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.134,"bearings":[1,167,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.787283,50.337149],"geometry_index":3175,"admin_index":0,"weight":2.249,"is_urban":false,"turn_weight":1,"duration":1.356,"bearings":[159,168,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":1.405,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.3,"geometry_index":3176,"location":[11.787168,50.337495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":4.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.027,"geometry_index":3177,"location":[11.78705,50.337854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,356],"duration":22.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.925,"geometry_index":3181,"location":[11.786767,50.339036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.069,"geometry_index":3194,"location":[11.787805,50.344895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,185],"duration":85.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.541,"geometry_index":3195,"location":[11.787848,50.345207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":0.265,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.238,"geometry_index":3238,"location":[11.78762,50.3662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":6.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.975,"geometry_index":3239,"location":[11.787684,50.366255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":0.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.476,"geometry_index":3241,"location":[11.789364,50.367708]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,217],"duration":4.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.983,"geometry_index":3242,"location":[11.789497,50.367822]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.27,"geometry_index":3245,"location":[11.79053,50.368831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.791218,50.369711],"geometry_index":3247,"admin_index":0,"weight":7.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.03,"bearings":[21,34,205],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.792146,50.371674],"geometry_index":3251,"admin_index":0,"weight":2.994,"is_urban":false,"turn_weight":1,"duration":2.237,"bearings":[9,182,191],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,189],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.592,"geometry_index":3252,"location":[11.792279,50.372241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,188],"duration":1.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.303,"geometry_index":3253,"location":[11.792318,50.372409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,185],"duration":2.31,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.078,"geometry_index":3255,"location":[11.792367,50.372779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[181,359],"duration":24.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.008,"geometry_index":3256,"location":[11.792383,50.37339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,319],"duration":0.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.056,"geometry_index":3271,"location":[11.788832,50.379304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,315],"duration":16.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":15.236,"geometry_index":3272,"location":[11.788814,50.379317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":0.985,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.911,"geometry_index":3277,"location":[11.783602,50.382127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,309],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.325,"geometry_index":3278,"location":[11.783283,50.382288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,324],"duration":15.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":14.014,"geometry_index":3284,"location":[11.780258,50.384153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,324],"duration":1.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.008,"geometry_index":3292,"location":[11.776673,50.388064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,320],"duration":2.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.104,"geometry_index":3293,"location":[11.776369,50.388326]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,315],"duration":20.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":18.694,"geometry_index":3294,"location":[11.775717,50.388816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,303],"duration":4.989,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.615,"geometry_index":3305,"location":[11.768084,50.391798]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,318],"duration":31.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.993,"geometry_index":3309,"location":[11.766339,50.392679]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,186],"duration":22.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.023,"geometry_index":3323,"location":[11.763445,50.400027]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,257],"duration":5.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.695,"geometry_index":3342,"location":[11.768968,50.403843]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.770919,50.404097],"geometry_index":3345,"admin_index":0,"weight":8.413,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.119,"bearings":[72,82,256],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,224],"duration":0.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.525,"geometry_index":3353,"location":[11.7737,50.405266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":8.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.708,"geometry_index":3354,"location":[11.773827,50.405374]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":4.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.161,"geometry_index":3362,"location":[11.775079,50.407216]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.775468,50.40828],"geometry_index":3365,"admin_index":0,"weight":8.192,"is_urban":false,"turn_weight":1,"duration":8,"bearings":[17,182,194],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,211],"duration":11.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.076,"geometry_index":3370,"location":[11.776725,50.410093]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,202],"duration":3.509,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.141,"geometry_index":3378,"location":[11.77894,50.412496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.769,"geometry_index":3381,"location":[11.779379,50.413301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":12.71,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.439,"geometry_index":3382,"location":[11.779491,50.413499]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":11.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.702,"geometry_index":3391,"location":[11.782373,50.415952]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":2.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.127,"geometry_index":3393,"location":[11.785827,50.417904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":4.152,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.73,"geometry_index":3394,"location":[11.786515,50.418296]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,225],"duration":1.855,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.652,"geometry_index":3396,"location":[11.787672,50.419012]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,223],"duration":4.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.106,"geometry_index":3397,"location":[11.788156,50.419347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,214],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.794,"geometry_index":3399,"location":[11.789224,50.420272]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":14.365,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.929,"geometry_index":3400,"location":[11.789415,50.420466]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":5.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.704,"geometry_index":3406,"location":[11.791752,50.423877]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.792531,50.425142],"geometry_index":3407,"admin_index":1,"weight":1.357,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.517,"bearings":[23,42,201],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":13.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.757,"geometry_index":3408,"location":[11.792769,50.425504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.654,"geometry_index":3413,"location":[11.795437,50.428469]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":9.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.91,"geometry_index":3414,"location":[11.795606,50.428621]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,211],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.277,"geometry_index":3418,"location":[11.797892,50.43074]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.79816,50.431062],"geometry_index":3419,"admin_index":1,"weight":7.889,"is_urban":false,"turn_weight":1,"duration":7.677,"bearings":[26,189,208],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.629,"geometry_index":3422,"location":[11.799325,50.432885]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.069,"geometry_index":3423,"location":[11.79941,50.433052]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.069,"geometry_index":3424,"location":[11.799561,50.433346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,198],"duration":1.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.943,"geometry_index":3425,"location":[11.799712,50.433639]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,201],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.604,"geometry_index":3427,"location":[11.799863,50.43389]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,198],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.133,"geometry_index":3428,"location":[11.800088,50.434329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.263,"geometry_index":3429,"location":[11.800282,50.434629]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,205],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.912,"geometry_index":3432,"location":[11.802504,50.437589]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.803354,50.439525],"geometry_index":3436,"admin_index":1,"weight":1.604,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.809,"bearings":[6,25,191],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":19.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.989,"geometry_index":3437,"location":[11.803437,50.439989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.666,"geometry_index":3445,"location":[11.802578,50.445167]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.802377,50.445634],"geometry_index":3446,"admin_index":1,"weight":7.416,"is_urban":false,"turn_weight":0.5,"duration":7.704,"bearings":[149,165,344],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":7.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.573,"geometry_index":3448,"location":[11.801493,50.447545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,344],"duration":1.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.573,"geometry_index":3449,"location":[11.800617,50.449355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,345],"duration":20.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.78,"geometry_index":3450,"location":[11.800426,50.449789]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,182],"duration":78.709,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":68.862,"geometry_index":3457,"location":[11.799286,50.455343]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.219,"geometry_index":3478,"location":[11.80233,50.476064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,349],"duration":40.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":35.003,"geometry_index":3479,"location":[11.802193,50.476419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,197],"duration":1.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.019,"geometry_index":3489,"location":[11.805438,50.486744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,194],"duration":19.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.912,"geometry_index":3490,"location":[11.805554,50.487032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":15.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.64,"geometry_index":3500,"location":[11.804555,50.492145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,304],"duration":31.773,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.785,"geometry_index":3507,"location":[11.800168,50.49511]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,352],"duration":0.985,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.861,"geometry_index":3521,"location":[11.792771,50.501733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,353],"duration":19.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.905,"geometry_index":3522,"location":[11.792712,50.50199]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":41.349,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.18,"geometry_index":3535,"location":[11.794323,50.507587]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.673,"geometry_index":3547,"location":[11.798535,50.517892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":30.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.651,"geometry_index":3548,"location":[11.798547,50.518087]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,202],"duration":1.153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.009,"geometry_index":3554,"location":[11.800228,50.525704]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,206],"duration":35.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.664,"geometry_index":3555,"location":[11.80043,50.525967]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,189],"duration":45.173,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.632,"geometry_index":3562,"location":[11.80527,50.533895]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[148,324],"duration":7.53,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.777,"geometry_index":3574,"location":[11.801033,50.544354]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.799224,50.545791],"geometry_index":3577,"admin_index":1,"weight":1.493,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.68,"bearings":[140,317,335],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,316],"duration":7.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.448,"geometry_index":3578,"location":[11.798772,50.546095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,314],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.08,"geometry_index":3580,"location":[11.796733,50.54738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.796386,50.547592],"geometry_index":3581,"admin_index":1,"weight":2.283,"is_urban":false,"turn_weight":1,"duration":1.433,"bearings":[110,134,314],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,318],"duration":5.239,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.716,"geometry_index":3583,"location":[11.795979,50.547843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,324],"duration":37.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.715,"geometry_index":3585,"location":[11.794595,50.548827]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.449,"geometry_index":3593,"location":[11.790149,50.557735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":12.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.01,"geometry_index":3594,"location":[11.790108,50.557856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,324],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.239,"geometry_index":3602,"location":[11.788347,50.560777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,322],"duration":10.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.828,"geometry_index":3603,"location":[11.788025,50.561056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,317],"duration":26.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":23.814,"geometry_index":3610,"location":[11.784602,50.563495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,332],"duration":3.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.071,"geometry_index":3621,"location":[11.776496,50.569495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,338],"duration":5.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.689,"geometry_index":3624,"location":[11.775817,50.570372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,344],"duration":7.305,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.566,"geometry_index":3629,"location":[11.77503,50.571766]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,358],"duration":16.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.072,"geometry_index":3634,"location":[11.774499,50.573774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.62,"geometry_index":3643,"location":[11.77592,50.578327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":0.658,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.573,"geometry_index":3644,"location":[11.776184,50.5788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":0.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.43,"geometry_index":3645,"location":[11.776275,50.578971]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":5.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.788,"geometry_index":3646,"location":[11.776344,50.579097]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.77712,50.580518],"geometry_index":3647,"admin_index":1,"weight":0.972,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.1,"bearings":[19,46,199],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":10.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.288,"geometry_index":3648,"location":[11.777286,50.58082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.864,"geometry_index":3650,"location":[11.778881,50.583738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.779029,50.584011],"geometry_index":3651,"admin_index":1,"weight":2.666,"is_urban":false,"turn_weight":1,"duration":1.87,"bearings":[19,177,199],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":3.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.024,"geometry_index":3652,"location":[11.779283,50.584471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":2.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.309,"geometry_index":3653,"location":[11.779744,50.585305]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":4.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.848,"geometry_index":3654,"location":[11.780009,50.585785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":11.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.461,"geometry_index":3655,"location":[11.780462,50.586584]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":5.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.029,"geometry_index":3657,"location":[11.782082,50.589448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":14.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.114,"geometry_index":3658,"location":[11.782798,50.590837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":12.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.89,"geometry_index":3660,"location":[11.784743,50.594448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":74.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":65.49,"geometry_index":3663,"location":[11.78642,50.597531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":31.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.54,"geometry_index":3677,"location":[11.792552,50.616606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":41.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.45,"geometry_index":3688,"location":[11.793962,50.624789]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":1.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.887,"geometry_index":3691,"location":[11.797845,50.63542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":85.526,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":74.835,"geometry_index":3693,"location":[11.797935,50.635672]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":7.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.545,"geometry_index":3719,"location":[11.811936,50.65535]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.813713,50.656906],"geometry_index":3723,"admin_index":1,"weight":1.297,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.503,"bearings":[33,48,214],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,213],"duration":3.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.366,"geometry_index":3724,"location":[11.814039,50.65722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,210],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.896,"geometry_index":3726,"location":[11.814819,50.658065]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.815008,50.658298],"geometry_index":3727,"admin_index":1,"weight":2.969,"is_urban":false,"turn_weight":1,"duration":2.271,"bearings":[26,187,207],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":5.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.482,"geometry_index":3728,"location":[11.815412,50.658822]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,203],"duration":59.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":52.399,"geometry_index":3730,"location":[11.816269,50.660032]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":1.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.979,"geometry_index":3739,"location":[11.824942,50.674562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":46.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.65,"geometry_index":3740,"location":[11.825137,50.67482]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.611,"geometry_index":3746,"location":[11.833321,50.685828]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":7.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.27,"geometry_index":3747,"location":[11.833441,50.685995]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":80.054,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":70.041,"geometry_index":3748,"location":[11.834625,50.687662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":32.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.165,"geometry_index":3760,"location":[11.849436,50.705681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,360],"duration":1.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.972,"geometry_index":3776,"location":[11.85336,50.713352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":46.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":41.515,"geometry_index":3777,"location":[11.853358,50.713651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,349],"duration":38.589,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":35.688,"geometry_index":3793,"location":[11.848156,50.72546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":1.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.35,"geometry_index":3810,"location":[11.850488,50.735327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":4.868,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.504,"geometry_index":3811,"location":[11.850758,50.735694]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.983,"geometry_index":3812,"location":[11.851644,50.736836]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":15.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.986,"geometry_index":3813,"location":[11.851834,50.737091]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,206],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.026,"geometry_index":3817,"location":[11.854442,50.740486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":12.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.761,"geometry_index":3818,"location":[11.854633,50.740725]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":5.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.618,"geometry_index":3820,"location":[11.856706,50.743452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.857726,50.744744],"geometry_index":3822,"admin_index":1,"weight":3.206,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.396,"bearings":[26,34,207],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":31.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.554,"geometry_index":3823,"location":[11.858285,50.745472]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":2.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.942,"geometry_index":3832,"location":[11.864564,50.751985]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.865062,50.752373],"geometry_index":3833,"admin_index":1,"weight":2.413,"is_urban":false,"turn_weight":1,"duration":1.547,"bearings":[39,206,219],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":6.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.021,"geometry_index":3834,"location":[11.865441,50.752665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":3.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.666,"geometry_index":3836,"location":[11.867054,50.753909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":0.696,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.626,"geometry_index":3837,"location":[11.868032,50.754668]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":7.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.333,"geometry_index":3838,"location":[11.868205,50.754803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.2,"geometry_index":3840,"location":[11.870169,50.756318]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.872155,50.757842],"geometry_index":3842,"admin_index":1,"weight":1.375,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.547,"bearings":[39,56,219],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.64,"geometry_index":3843,"location":[11.872534,50.758135]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.874906,50.759977],"geometry_index":3845,"admin_index":1,"weight":7.771,"is_urban":false,"turn_weight":1,"duration":7.545,"bearings":[38,194,219],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,214],"duration":21.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.343,"geometry_index":3848,"location":[11.876673,50.76148]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":19.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.356,"geometry_index":3860,"location":[11.878923,50.766589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,186],"duration":13.766,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.039,"geometry_index":3863,"location":[11.879677,50.771512]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":1.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.071,"geometry_index":3870,"location":[11.880604,50.774917]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":15.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.754,"geometry_index":3871,"location":[11.880772,50.775208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,226],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.819,"geometry_index":3882,"location":[11.884237,50.778468]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":1.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.591,"geometry_index":3883,"location":[11.88451,50.778628]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.278,"geometry_index":3884,"location":[11.885038,50.778944]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":16.992,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.85,"geometry_index":3885,"location":[11.88547,50.779192]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":25.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.436,"geometry_index":3888,"location":[11.89029,50.782011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,191],"duration":10.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.839,"geometry_index":3899,"location":[11.895133,50.787336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":7.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.911,"geometry_index":3904,"location":[11.895361,50.789803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,180],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.896,"geometry_index":3905,"location":[11.895383,50.791736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,181],"duration":2.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.417,"geometry_index":3906,"location":[11.895388,50.791978]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":46.263,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":41.63,"geometry_index":3907,"location":[11.895396,50.792572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":9.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.552,"geometry_index":3911,"location":[11.895529,50.802494]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.895553,50.804537],"geometry_index":3913,"admin_index":1,"weight":1.378,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.538,"bearings":[1,15,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":13.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.917,"geometry_index":3914,"location":[11.89556,50.80487]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":2.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.086,"geometry_index":3917,"location":[11.895599,50.807748]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.895605,50.808247],"geometry_index":3918,"admin_index":1,"weight":2.856,"is_urban":false,"turn_weight":0.5,"duration":2.625,"bearings":[170,180,360],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,358],"duration":5.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.375,"geometry_index":3919,"location":[11.895601,50.80882]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,349],"duration":11.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.751,"geometry_index":3923,"location":[11.895408,50.810121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,333],"duration":50.563,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":44.243,"geometry_index":3931,"location":[11.894117,50.812608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,336],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.122,"geometry_index":3944,"location":[11.883926,50.821622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,338],"duration":15.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.28,"geometry_index":3945,"location":[11.883748,50.821872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":11.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.425,"geometry_index":3949,"location":[11.881974,50.825013]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,341],"duration":16.886,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.775,"geometry_index":3953,"location":[11.880698,50.827381]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[151,328],"duration":16.322,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.282,"geometry_index":3959,"location":[11.878481,50.830626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":1.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.412,"geometry_index":3963,"location":[11.875145,50.833519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,322],"duration":41.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":36.168,"geometry_index":3964,"location":[11.874803,50.8338]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[143,324],"duration":1.388,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.215,"geometry_index":3970,"location":[11.866537,50.840584]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,325],"duration":32.175,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.153,"geometry_index":3971,"location":[11.86627,50.840815]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,337],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.732,"geometry_index":3978,"location":[11.861703,50.846533]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,338],"duration":1.155,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.011,"geometry_index":3979,"location":[11.861462,50.8469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":14.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.93,"geometry_index":3980,"location":[11.861324,50.847116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,338],"duration":31.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.75,"geometry_index":3982,"location":[11.859028,50.850707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":1.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.741,"geometry_index":3989,"location":[11.854442,50.85849]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":8.325,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.492,"geometry_index":3990,"location":[11.854287,50.858862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.853651,50.860471],"geometry_index":3991,"admin_index":1,"weight":1.288,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.438,"bearings":[13,166,346],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":4.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.981,"geometry_index":3992,"location":[11.853538,50.860761]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.853191,50.86165],"geometry_index":3993,"admin_index":1,"weight":3.42,"is_urban":false,"turn_weight":1,"duration":2.696,"bearings":[137,166,346],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":1.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.64,"geometry_index":3994,"location":[11.852976,50.862193]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":0.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.037,"geometry_index":3996,"location":[11.852834,50.862557]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":0.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.185,"geometry_index":3997,"location":[11.85283,50.862569]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,346],"duration":12.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.824,"geometry_index":3998,"location":[11.852815,50.862613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":8.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.953,"geometry_index":4001,"location":[11.851802,50.865175]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[167,346],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"geometry_index":4003,"location":[11.851067,50.867061]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Berlin"},{"type":"text","text":"/"},{"type":"text","text":"Halle (Saale)"}],"type":"fork","modifier":"left","text":"Berlin / Halle (Saale)"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"fork","modifier":"left","text":"A 9"},"distanceAlongGeometry":145560.219},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Berlin"},{"type":"text","text":"/"},{"type":"text","text":"Halle (Saale)"}],"type":"fork","modifier":"left","text":"Berlin / Halle (Saale)"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"}],"type":"fork","modifier":"left","text":"A 9"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 9/E 51.","modifier":"slight left","bearing_after":30,"bearing_before":33,"location":[11.511234,49.729738]},"speedLimitSign":"vienna","name":"","weight_typical":4614.628,"duration_typical":5082.47,"duration":5082.47,"distance":145560.219,"driving_side":"right","weight":4614.628,"mode":"driving","ref":"A 9; E 51","geometry":"skgz}Ac{q}T{H{G_^{Wgr@we@adBukAeLmIu^mVw]ySyKqGsQaIgf@kQkV{GuZoGyZaEyb@gCmXm@s`@r@uf@nE_UtBw~@fSmg@lLaa@jKcrB~e@qvB|f@atA~[mPrDocAfVem@~Ng`@|Iio@pOcs@nPo`@`J_IjBcFfA_InB}MhDqEdAgH|AiSrE{~Ah`@a{Ar]ws@|O}RjE_z@pLwl@tEcm@jAkaAfAib@`Bw[bEe]|Hq]pKiY`McYxO_OtJs`@|Zih@va@qg@zZk_@xNid@|K_i@|GoYf@cb@{@mb@iE__AmV}l@sSmc@sNev@{Lu_A{GmX_C}XsEsc@oL{f@_Sqh@g]sb@{_@gwAgaBye@kb@gb@s]qZ_Reh@mTkSgHwQuEuP}DkYwEaOgBsKg@ee@}Ao_@Tg^pB}e@vFid@zK_RlFaUlImQnImUdMyRtLq[rVmA~@sHzFkt@ru@{b@lm@yTv_@oUnd@yRdd@cX|t@mLzb@aPhm@}SfgAoTtqAqNb{@u`@~`Ca@xBsDfS}O`y@oTfr@{DzJuOzb@wOl^ySz^uZzd@uUvYm]b^o`@rZo`@pU{[lM_NvF}PpF_[dGkb@nEsY~@id@o@yWuBiUuDqX_FsYaJeVyJsUoLma@aYyQwOqNaMwZu\\gRaXm_AuvAgaAktA_k@kk@iYySwUqOih@qVuUoIsSgGqXsFkXoD{j@iDwf@~@}h@xFaNpBy\\dHor@nVw`Ald@qUtKq[tOwVzLgRtI{lAbj@{h@lQsd@dKs^dFcf@|Cwz@GsZsAoW_CkY}EwWwFi[}IeVoHcWqK}WaKm`Aua@_XwI}j@kRyi@aKam@mG_U_CuQa@u_@sA_t@D}LDyu@IyW_AcLy@o_@}Dif@yJsSgGaPsFox@yZcxBojA}RgIm`@eOy}@iVag@eJsy@wLcBWwzAcUuj@gM{j@_Pib@aPuv@y^_j@o]oc@w[wd@ca@ad@ce@o^ob@gSwUkNaR{r@ybAwa@ap@{xA}|Bom@_}@qn@e{@gh@im@_c@ac@un@ii@yb@k[yh@iYai@eWyf@gP_h@_N}m@yKg\\}D_TgCmu@wEy|AgCocB}ByZ[obAaA_kByAkv@gDyi@uEib@_Gwb@_Luc@wOmg@kVg^iUwUmRkg@ce@ga@ge@kh@sw@c\\un@{]ox@_Rci@o]ioA{Pq}@qOufAeKwbA}Duk@qCkn@iBgp@gA}i@[w\\yAe_Bo@g{Au@w{@aBgr@{Diu@aFap@{Iyv@cMcv@}Oqs@oRgo@qR{h@c]is@yb@us@cU_\\mVs]a|A{lBgt@wfA_Uab@qUch@{JsWwK{[qH_WyIm]kIk^mFaZyH}b@_Gu`@oKez@gHcp@yG{t@yGky@mEys@gEy~@uC}_AqBm`AgAi~@o@u|@KcmA[{z@EgwA?qk@?mnACinB@whACe~BKen@Q_vCBqmAHim@A_h@KukCSg{As@a|@q@qc@sByo@aGkcAmDwd@}Ese@iKux@kGu_@{EaWy@cEoGw[_WubAyTyr@mVso@kOo^yNeZa]wm@gZqd@sToYyBsCiQsSwQuR_VuTwP_NmZqTs\\sSq\\oQ}l@gUoh@uOch@uOok@wOgo@wPywCqy@axAca@mj@gOGAap@qQe`AkWmVyG}k@iPal@ePorA__@iG}B_b@qK_N}Cof@iOuNyDuU_G{j@aOcp@wOs|@oRef@oJap@{IwcAeK}d@uCmi@eCmVu@op@_@}y@~@aIL_r@|Bku@bFit@lHk^jEe_AfMy[tE}z@`Liw@bL_z@jLk|@~LyYhEe}@jMa{A`Toz@hLuo@~I{`@rFoThBkRrByLhAaMn@iRpAgWp@we@x@kd@s@oVg@_Z_AwPaAmJo@cUcCqRmBs^kFuOyBge@_IePkCga@{Gaf@oIaf@{I}L{B}k@yJiw@{N}v@kNib@aIss@eMgTkD{J}Aqa@sGei@kJiMiBsWeFuLqBi[_HkF_A}QaDceA{QgHiAyt@{Ms^oG}bA_Qkr@uLk_A{OiI}Auw@yMwc@{Fk`@{DmOsAwMaBkZ}Aq]oAG?{Ug@kG?iIAiYP_b@|AaXfAsSvA{[lEkm@`J{o@dLou@zOgFbAuL|BaZrFkrA`X{_@jHc\\pGiUrDoa@tEcb@`EeJ|@ki@hFea@zCyw@nDs\\jAwj@~@eRTih@[y`Ak@qX{@iCI}]sAs[aBw~ByPgcCoQgWcB}_AuHaUiBod@gDc_A_HqWqBsY{By[aCamAcJov@{FoNaAie@cD}dAeIus@uFqx@}FcVeByL{@ou@cDoWq@uYu@_t@kAwSE_a@Gsg@n@gORsWf@qUj@eu@|Cko@lDgy@tEay@`EwWnAcJb@eS`Aei@bDmh@bCuw@hFgt@jEq^bBg]jBq\\fBiUf@sXYgRu@yPiA_OiBk`@iGc^kJs[yKg`@cQk\\cRgUmO{p@ch@eFwDoe@i_@sUqQgKuHiMoHk]_NeSaFwZwEca@o@iWtAgVvDyUjGcSrH}NpIqC`BeXhSid@da@k}@bx@gRrNiSnMc[bPcHnCyRxHmeBph@{c@fNyG|BwNlE}f@`OaJ`CasAza@op@vRug@nMuc@nJaQjCqQlCgRpBuD\\mBP_Gf@kPr@eMf@kSTgYSwZ_Aa[wBujA{Mc}@{N}ZuFoLwBmgAcR_j@kJaj@mJa`@sGyrAyTqXsEql@{Jux@gNkR}CsSqDiLqB_XsE_\\gFak@eLkb@aK{`@mMkf@oScKgFgKmFoXwPqr@wg@g]qY}\\kZy\\{Za]}Yym@uf@aVkQcIaGu{@cm@mn@y`@cp@}_@go@s\\of@sV_a@yQ{v@_\\we@{Qav@mWet@oToXqHmd@_Lmm@}Mav@oNmq@cKmd@wGmc@cEsn@qF{D]a[qBsm@iC{Qk@iUs@ym@u@yyABySf@a\\r@md@tAoZ|@cYd@_i@]iZaAyl@mFyQ{CgSgDye@{LyYyJqc@eQa\\_PwV_P{@i@g_@qWa\\sXuYaXs_@_b@}UoZqSqY}f@yv@ii@i|@ck@m_AiPcXc_@qm@wu@gnAyUia@uUyb@wQaa@yS}h@wNic@cOgh@mMak@sIyc@oHeb@wHqj@uImv@yMylAgG_f@}Fa_@ePg|@y]caByMwk@oKmi@oJgi@yKew@uHiq@c@oEa@kFkD}`@cGqv@_IokA{LkfBoIqnAqGuaAmMqjB_Got@gIku@}Hcl@yKyk@qN}q@qQwo@sg@waBkb@stAuZw`AgEwMm_@alAyLo`@{Q_m@_Pqg@se@mzAyIcYsJqZyw@ggCQg@uy@ilCk]seAiUmn@{g@cnAoh@glAol@wsAob@geAsIkT_b@ekA_JwYyRao@}sAm_Fom@szB}Tsu@kVir@uWcp@iWkk@u`@_v@uh@a|@gMcS}_@qm@if@cv@kuAczByMmSa`@wm@g\\uh@}\\yg@_Vc\\c\\g`@wZc]k^o]kZwViHeG}NcKy\\yUia@wWk[aSafBwiAqLqIkK{Ggf@sZoo@sb@qe@yZqk@ca@w]iX}F}Ekf@wc@uW{XyIkJuZc]sLeOs_@kg@kh@{w@i[ik@mQg[iJsQqJyS_DaH{Q{`@{[qx@g`@egAi]wbAuYq{@gZuz@oLyZwQqe@wY{t@wUuj@}j@gsAal@muAsNa]w^{{@mf@sjA_bBc}DykDygIy`Aw|BcU_e@wTk`@}\\oj@a^ch@_PkT}SeXwa@uc@aa@i`@iQ}OkWoSaNeKsUsP_e@sX{YkP}VsLaOiG_KkEySuH{UaIqTwGq_@}H_SgEsVyD{YsCwZyCuf@}C}s@oCmx@_AkWKqNGsf@Cok@I{r@i@gR_@}b@{A{UoAoPoB_ZcDyUwDmU_EmWuFyd@qLw^sLuXiK{WmLge@}Tul@wZsj@{XeaBaz@{NyHep@q]uv@q`@ce@eVk[cPgu@a`@k`@uRe\\wOam@}Twa@aKkBe@s]uFqYqBga@eByMNmZ\\yd@fE}N~ByNpC{MvC}f@pMcj@~QmZzJeYjJwcBpk@_UtHibA~\\mRbFem@dSgLvDuJ`DuZpJeUnG}TpE}Dx@wE~@sTdDgIlAmQvByS~Ai]|A_]^iVU_Tc@qZwA}S_Cym@sI}ToEeQsD{YaJgPiF{N_G}OkGeRqIm[sP{c@uWq]kUmU_Q_a@_\\wWmUyW}VeYkXiWgW}k@{n@im@cr@gBqBeNqPek@_r@o`@ef@uw@m`Awt@w|@w[y^e\\i_@e`@}b@ij@wl@qv@qv@sv@is@oa@u^c|@gv@ey@mq@wz@as@kQ_Oy]{YsHiGkJ{HiHaGoViSsK}Igw@wo@uf@ia@}s@}l@eYsUeKqIsMuKuw@ep@ox@yp@{]wYsx@{q@s_@k[oTuQkv@eo@aq@oj@ey@gq@{t@}m@mz@}p@ee@c]qc@mXcZoP_s@i\\qB_AwN_GyYyLqDyA_\\{Lk[qMmCgAiKeEyJaE_Bo@wqBox@ew@c[ab@yOiIeDc|@s]wv@wZcU{Ic^wNo_@}Ng[gMiVyJkv@gYgz@wW}g@uL}G_Buu@qLuO}Ayb@gEqy@{Dql@k@c}@`Boo@rDqMvAwe@nFsx@jNy`@|IiUvGwp@xTug@vSk~@nd@u]dS}v@|d@cZpQal@~[kj@|Wmh@hS_o@~QyThFkOdCch@rIyf@fE}\\xAqXh@un@SgFUaj@kDA?yi@mGgSyCeTqE{ZkHsg@{Oce@oQ{m@aY{G_FyZcRyj@ga@kh@kc@}TkTwd@sh@uPoTy`@yh@_l@e{@qm@_~@ok@g{@g|@}qAaCoDgL}Pgf@et@iLcQyDqF{CcFwMeQsXo_@_k@wr@eg@}i@{NeNy]k\\}j@}d@on@qc@yk@{]}t@ib@sv@}a@cs@i`@{g@}WcRaKy{@og@_x@gc@kX}N}]oR}r@m`@cI_EiGaDeNyGgr@a`@ox@mc@mg@uXqN}Hov@eb@ss@u`@ui@uZkw@_d@gj@sZaKwFw`@cTkUaMwf@eWuw@ub@wv@cc@y`@uTaWmNy`@aUqRqKwe@aWov@ua@ax@_c@s\\_RoY}Oyw@ad@gu@}`@sy@kb@cp@y]mn@}Zc|@e`@c_Ai\\oPaGeYsIug@uNwk@yLcu@gKiWwCyYiC{[mAgYo@{^g@eY^{Wb@_m@zB_Fh@gVzBub@xEaX|Dsi@bJi\\xHa_@xHyNbEuVtG_ObFwYbJmb@~NsdAd_@}pCbkA}eBvt@mdCndAmXnLygAre@sQlH}kDbzAiMpFsW`LugBrv@osBp|@opB~z@_NdFcjAhf@io@bY}RpIq`DvtAiHlDk^xQmS|L}IlGmS`Oi[pXuy@jv@erAlnA}WrVoh@lf@sa@|_@eh@te@}TbS__@rXu_@pU}g@`U__@pLmRxFcOlEeu@nPaq@rPw{Az^qf@xLuNtDiAVyxAd]sMdDo{An^a}@|TykArZ{b@~J_xAf]sTdFmUjFo`@bIiShCsK`AmFd@aSdAoRL_SDkRm@yRmA_RcBcQuBmg@_Iey@eO__@wG{T}D{m@wI}]kDoRuAqg@iAqYLkXbA{YbCyUzDwXpFoXrIiVpIkR|Ig^tRmh@t^ya@~]_v@ru@aT|Tyq@~s@iXtXeWzT{VxRaVlOw_@`Ta\\bNo`@~Lqc@zIiPlCsZzBu\\lA}WGka@eB{Y_D_YaFsXmGkXuImUeJkQqIgWoOqb@gYw[iYu\\a\\{SqU_N{Os_@ud@m}AelBmt@m}@mB_CycAenA_UyXcFiGgYu[mYyYkIaHuUwRi_@gVcj@cYi_@mNkg@wM{Eu@mb@iGoImAICyU}Aee@_@eSXw^jBw\\pEqZnFc\\bJ}U~HoTdJwVzLwXvPgg@x^gXfVaQnQqXb\\kSpYyFnIYb@ei@f`AcS`c@_j@nsAue@vkAs^d~@aI|RoVzl@wOb^kUxd@wRj\\{RnZiMjPm^fc@gVrUwWxTsu@`k@am@fd@}YxUmWzW}KjMkO~Qs]vg@qX~f@a\\ns@{KrXqQxj@cK|\\sKfe@eLxi@mOny@{Lho@aP~v@_Nhh@wJt[gMp]yMdZgMrU{St\\eOrRsOdPqPxNqPhMi^vRcRhIiOnEs[vGuw@hKc~Cd[ySp@iUUcOmA_QcCcPwDkLeEiOmGmPoJ_QcMGEgPyNqTcWeXsb@{KwUiIwR{HiUwHgXmE}PsDkRgHmc@}Da\\}BmYeFk}@aC}]sCs[wB}PoFo]kGsXkMib@iQ}_@mPuYmAoB[i@wE}F_JgLiPwOcMaKaJoFqMyGcLsEsJmDiUyFkVsGsXyGoP{EoYmKkYgNqPgL}OsL}X_WcTkUcTkVEEqSmUoSoSk[yVi^wT_F_C}\\{OmQoH}@a@kK_F}XaOoTuOkLaKaLyLaLqMuKoPuK}QeKgSy[gq@qYym@m~AahDoW_j@aHaOub@gw@}Sg]_Xu^y_@ab@cK}JkNoMmYoUyd@wXyW_PsnAwo@c\\qPanAuo@sU{M{PaKun@uc@my@{q@kn@or@}LsNoHqIiz@{cAgSiUwe@qe@cMcLcSwOmd@k[q[mQ}n@_YmIiDkQmHiQmHgAe@mLgGmZaMwQcK}d@cX{nAw_AebA_p@m^eQ_[wLi\\oJg_@uH_\\eDyWqCmk@a@sa@Vq`@jCyd@xDoa@hGwkAlWcd@rNe\\pKuz@~Ywz@f[cpBvu@cZ|Jiv@|Ugg@hMujAnTuy@zHar@pCgl@U{Sg@}]kCwb@mFwY}Ek|@aTay@yW}kAea@}vEc_Bs_Aa[}vAoc@a^{Hmc@aIwbAeL{z@iD_z@WseAzCadAnKqv@vN{UtGe^lIwaAhZqaAz[eUpG_o@hMeb@lEql@lAcm@cDgg@mK_nA{^uu@wYomBiw@{zC{mAc]sM_QgFkVqF{]iFea@eCoe@Bi^lBg`@bGk`@nJmc@rPie@vW}R|N}R|Ned@le@{Wz]c]vi@k[lp@{T|k@}Uxr@yd@bvAub@lhAaUhe@g[bj@g^hi@m_@nc@o\\p\\wa@d]ib@hXod@pU_^fMqPtEsMjDeYpFaOtBiWpCg[`Bo[Ja]w@o\\sCsYqDmYoFsVsG_VaIwg@mUeZ}O}VaPsPcMs[{UetAigAkrAybAkWyMmWyMqT}I}TgIuVoHsVqFen@yI??acGqTeKWua@iAc{FcToq@gJkp@cRsk@mUwk@y[mOsKu~@cv@gpBi_BkhA_s@ukAqi@mpAs`@atAuU_AEijAkGqm@g@o_@bAqeAfIqeA`Q_jAjZwb@bRam@nYoaAvm@ydAlz@im@bm@wQtQgZr^qZna@_b@|m@_Rf[mg@x|@{f@r`AgLtTy@|A{LnUsi@~z@{QnY{Zz^{\\v]ap@pf@mn@|^wq@xW}n@hP_oDpy@y~B`j@qFpAsYdHg[dJ{X~KwXdNwRlLgTpO{LnKeT~QmPbSwI`LsNnRaUt\\iY~c@oYpe@}Tl`@g\\ti@}_@jo@wdBptCoc@du@ee@tv@{c@js@g^fj@sV~YyUvXWZaY|YgWrUgNrKwQrMySdNiXjO{CzA_a@bQyPlHcDjAmTpHi^nIw]dG}^fCaITsN`@_Xt@iQY_ZuBqZuE_YmGgYeIwnAkh@af@kSq\\oOuIuD{FiCywAoo@{QkIwrBs~@saAac@aPgHw[{Ncs@y[_]qO}p@i[gb@_SwnCgpAyuAwk@sr@e[amDk|A_dA_d@gw@m^mbAkc@ilCqlAskGmqCuc@ePaV{IsUaIwh@{RglAsYw}@cP_[oE_`@sEa|@yHqz@_Fg|BuGgrE{QsaAeFanC}KmgB{I}XuCcLqAuMaBqTyDkUgEm`@qIug@yMoXkHqwB_k@qpG}bBimGwaBcIoBsDcAkdGo~AotFwxAuYwIaZaKuY_LoYoLmYeNeYyNmXeP{XiQ}W}Q_X_S{]wXsPyO_WkUuVqVsZe\\oUmXmUsYwTiZ}_AapAaIoKwkA{|A}b@em@yj@uu@eg@up@oM_QuKqMe^sc@{e@{h@sRkSsZoXeXgVqMyJw_@gX{b@kZwf@eYk}Em|B{pFijC}iFefCg]yPmYgOsc@}Vw[}Ra_@cVyu@ah@cOeKuvAq`AohFeqDwJ}GcrConByhBcjAceBegAmIoFegB_iAid@oYsdGyxDsbGayD{qBwoAqh@e]ie@}]sb@i_@cd@ob@}fBkoBmkB_rB_U{Uw`AkbAo[q\\u[wZm\\sYe]wWo]qUe^}Sa_@wQc_@sOk_@_Ng`@sKg`@oIm`@uGw`@aEq`@qC_a@GcB?uQBia@h@y`@hBqbApLg`@|Hc`@zJw]pL_AZsd@xQad@pSqgDx}Ak_Bfu@}h@|Vs^hPod@`Rmd@jOcNpDebA|Rc`@zEq`@pCg`@tAe`@Fi`@u@aa@aCk`@}De`@gGu_@uHu_@sKa_@eM}^iOg^cQs]mS__@yUez@}l@}U{OkfAkv@}N{Jcs@yf@iIaGyn@md@}dBulA}M}JkuAkaAasAe~@uRcNa|@so@ol@}a@oQkL_WyQasByyAkd@a_@ajA_hAsNiP{CkDgsAadBi^sg@gWc^gQuVst@ydAcW_^mn@c|@mGyIm`AqsAg\\ee@_}@yoAg`@ij@iQuV_uAinBc\\}c@wn@yz@eKyM_a@yb@eQ_P{YkUaZaSo\\wQ{ZoMuXmJgVqGgMmCuKkBgIsAcIcAq|AkNaxBoQwq@wF{fC{Ss_AyH}e@aFkSyCw[{Ge\\_KiRkHsJ_EeQoIqPcJqWsPaTcPyW{UuUyUgXo[yTeZ{@sA_Ty\\eJiP}JqR_IaPwR_`@oN_Z_aAsoBgb@m{@}iAe_CoVcg@e\\ml@uVo_@y_@ye@eHoHoXmYwa@_]gd@qYsd@qUun@_Ts^wHs]wEoZkCeVs@gS]ss@QywBk@cNIcd@OsLEk{GyBivGwByi@QarA_@sk@OySMwvAi@}HAeqAa@e^Kyb@FkTl@iVzAmQtBeQ`C}RbEuStFoJtCiPrFkStI{PhIaRvKu[xSoOpLwP|NyOhOyOzPgWf[en@xy@gt@fbAyfDhsE{f@~p@y^bd@}`@tb@qa@z_@y}@|q@sNbJ}TjMaS`Kw}Ahs@qz@b_@am@xWwa@vQ{_@rPia@pQ{g@dUgf@jU}c@`Wqc@lZkn@xg@y@t@gRtQaa@~b@s_@`e@{}AvrBqPjTgVj[u_B~tBe|AtpBw`@~g@mwA|jBuwArjBmMtOqb@df@wc@pd@gk@pg@wj@lc@_r@pd@s~@~g@mqAbt@}U`NoLrGmrCf}A_lAfp@mjEjaC{v@lb@kx@`b@sv@h^ebAx`@yZlKcRdGgVtHqcBvf@cQ`Fqv@tT}`@lLgS|FoA\\WFwA\\iBd@}dC`t@{U`Hc|Apc@wWjHo~@zW"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 124 miles.","announcement":"Continue for 124 miles.","distanceAlongGeometry":199123.062},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 16.","announcement":"In 2 miles, Keep right to take exit 16.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 16.","announcement":"In a half mile, Keep right to take exit 16.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 16 onto A 115 toward Berlin-Zentrum (Zoo), Zehlendorf.","announcement":"Keep right to take exit 16 onto A 115 toward Berlin-Zentrum (Zoo), Zehlendorf.","distanceAlongGeometry":320}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.850669,50.868077],"geometry_index":4004,"admin_index":1,"weight":27.698,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.964,"bearings":[166,343,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":11.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.343,"geometry_index":4007,"location":[11.848214,50.874234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,351],"duration":16.983,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.71,"geometry_index":4011,"location":[11.84738,50.876549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.811,"geometry_index":4015,"location":[11.846738,50.880128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":10.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.059,"geometry_index":4016,"location":[11.846674,50.88053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":4.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.185,"geometry_index":4019,"location":[11.846324,50.882762]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,355],"duration":14.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.763,"geometry_index":4020,"location":[11.846177,50.883695]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.845719,50.886681],"geometry_index":4023,"admin_index":1,"weight":1.896,"is_urban":false,"turn_weight":1,"duration":0.962,"bearings":[163,176,355],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":11.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.545,"geometry_index":4024,"location":[11.845693,50.88688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,354],"duration":2.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.93,"geometry_index":4028,"location":[11.845362,50.889196]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":2.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.719,"geometry_index":4029,"location":[11.8453,50.889588]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":16.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.653,"geometry_index":4030,"location":[11.845211,50.890146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":9.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.315,"geometry_index":4032,"location":[11.844637,50.893336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":8.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.199,"geometry_index":4033,"location":[11.844279,50.895183]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":3.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.727,"geometry_index":4034,"location":[11.843978,50.896848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":2.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.336,"geometry_index":4036,"location":[11.843858,50.89761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":2.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.479,"geometry_index":4037,"location":[11.843776,50.898107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,354],"duration":33.511,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":30.998,"geometry_index":4038,"location":[11.843682,50.898627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":23.733,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.953,"geometry_index":4040,"location":[11.842642,50.905365]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":7.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.578,"geometry_index":4043,"location":[11.841905,50.91014]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,356],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.521,"geometry_index":4045,"location":[11.841682,50.911574]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[17,176,354],"duration":1.663,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":1.518,"geometry_index":4046,"location":[11.841643,50.911905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":3.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.456,"geometry_index":4047,"location":[11.841587,50.912223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[175,355],"duration":1.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.644,"geometry_index":4049,"location":[11.84148,50.912958]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.841435,50.913307],"geometry_index":4050,"admin_index":1,"weight":3.207,"is_urban":false,"turn_weight":1,"duration":2.393,"bearings":[158,175,356],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.179,"geometry_index":4051,"location":[11.841376,50.913801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,354],"duration":7.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.104,"geometry_index":4052,"location":[11.841204,50.915179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":102.839,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":89.983,"geometry_index":4054,"location":[11.840953,50.916805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,353],"duration":1.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.001,"geometry_index":4064,"location":[11.835673,50.937828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,352],"duration":13.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.689,"geometry_index":4065,"location":[11.835625,50.938065]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,351],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.383,"geometry_index":4067,"location":[11.834989,50.940804]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,352],"duration":44.517,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":40.064,"geometry_index":4068,"location":[11.834965,50.940905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":21.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.301,"geometry_index":4078,"location":[11.836383,50.950921]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,215],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.026,"geometry_index":4084,"location":[11.839982,50.955336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":4.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.415,"geometry_index":4085,"location":[11.840275,50.955553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,228],"duration":5.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.955,"geometry_index":4089,"location":[11.841662,50.956443]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.984,"geometry_index":4094,"location":[11.843437,50.957293]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.843802,50.957449],"geometry_index":4095,"admin_index":1,"weight":0.945,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.058,"bearings":[58,83,236],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,238],"duration":8.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.641,"geometry_index":4096,"location":[11.844227,50.957617]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.05,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.945,"geometry_index":4101,"location":[11.847604,50.959006]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.848021,50.959175],"geometry_index":4102,"admin_index":1,"weight":1.898,"is_urban":false,"turn_weight":1,"duration":1.018,"bearings":[57,208,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.898,"geometry_index":4103,"location":[11.848357,50.959313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,238],"duration":6.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.582,"geometry_index":4104,"location":[11.848693,50.959446]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":36.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.913,"geometry_index":4106,"location":[11.850772,50.960299]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,198],"duration":6.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.737,"geometry_index":4123,"location":[11.860514,50.966823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":0.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.857,"geometry_index":4124,"location":[11.861203,50.968326]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.861305,50.968549],"geometry_index":4125,"admin_index":1,"weight":1.281,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.403,"bearings":[16,42,196],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":3.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.914,"geometry_index":4126,"location":[11.861461,50.968894]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.929,"geometry_index":4127,"location":[11.861818,50.969683]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.86193,50.96993],"geometry_index":4128,"admin_index":1,"weight":2.569,"is_urban":false,"turn_weight":1,"duration":1.703,"bearings":[17,166,196],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,197],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.312,"geometry_index":4129,"location":[11.862134,50.970349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":4.183,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.869,"geometry_index":4131,"location":[11.862292,50.970704]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,196],"duration":0.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.388,"geometry_index":4132,"location":[11.862784,50.971758]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,194],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.306,"geometry_index":4133,"location":[11.862826,50.971861]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,196],"duration":19.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.054,"geometry_index":4134,"location":[11.862985,50.972207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,225],"duration":0.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.801,"geometry_index":4146,"location":[11.867009,50.976411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":18.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.361,"geometry_index":4147,"location":[11.867273,50.97656]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":12.442,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.82,"geometry_index":4156,"location":[11.87399,50.978815]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":1.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.986,"geometry_index":4159,"location":[11.878701,50.980005]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":36.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.792,"geometry_index":4160,"location":[11.879095,50.980105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":5.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.163,"geometry_index":4163,"location":[11.893109,50.983635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":12.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.51,"geometry_index":4164,"location":[11.895186,50.98416]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":1.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.205,"geometry_index":4166,"location":[11.899817,50.985336]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,248],"duration":28.593,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.448,"geometry_index":4167,"location":[11.9003,50.98546]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":1.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.947,"geometry_index":4174,"location":[11.909944,50.989628]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,224],"duration":66.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":60.079,"geometry_index":4175,"location":[11.910251,50.989831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.979,"geometry_index":4188,"location":[11.922166,51.005507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":35.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.122,"geometry_index":4189,"location":[11.922334,51.005778]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":2.351,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.109,"geometry_index":4194,"location":[11.927747,51.014486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":4.087,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.672,"geometry_index":4195,"location":[11.9281,51.015066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.926,"geometry_index":4196,"location":[11.928705,51.016062]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":52.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":46.934,"geometry_index":4197,"location":[11.928861,51.016315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.826,"geometry_index":4203,"location":[11.936587,51.029085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":32.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.16,"geometry_index":4204,"location":[11.936721,51.029307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,189],"duration":8.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.688,"geometry_index":4211,"location":[11.940825,51.037121]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.941138,51.039281],"geometry_index":4216,"admin_index":2,"weight":1.048,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.172,"bearings":[3,28,183],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":2.259,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.033,"geometry_index":4217,"location":[11.941162,51.039576]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":0.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.89,"geometry_index":4218,"location":[11.941209,51.040151]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.941228,51.040399],"geometry_index":4219,"admin_index":2,"weight":1.35,"is_urban":false,"turn_weight":1,"duration":0.396,"bearings":[3,155,183],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.155,"geometry_index":4220,"location":[11.941236,51.040499]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,183],"duration":6.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.686,"geometry_index":4221,"location":[11.94126,51.040822]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":29.294,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.364,"geometry_index":4222,"location":[11.941391,51.042426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.921,"geometry_index":4235,"location":[11.943301,51.049741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":24.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.489,"geometry_index":4236,"location":[11.943446,51.049988]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,202],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.381,"geometry_index":4243,"location":[11.947312,51.055867]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,204],"duration":7.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.642,"geometry_index":4244,"location":[11.947381,51.055966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":26.798,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.441,"geometry_index":4246,"location":[11.948697,51.05802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,198],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.877,"geometry_index":4258,"location":[11.953237,51.065514]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":12.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.71,"geometry_index":4259,"location":[11.953362,51.065789]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,191],"duration":46.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":42.282,"geometry_index":4265,"location":[11.954691,51.069359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,180],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.55,"geometry_index":4274,"location":[11.955672,51.081044]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,181],"duration":13.519,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.505,"geometry_index":4275,"location":[11.955675,51.081199]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":0.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.62,"geometry_index":4277,"location":[11.955712,51.084507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":9.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.544,"geometry_index":4278,"location":[11.955713,51.084681]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":7.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.525,"geometry_index":4280,"location":[11.955742,51.086967]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955753,51.088709],"geometry_index":4282,"admin_index":2,"weight":2.152,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.334,"bearings":[0,14,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":4.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.271,"geometry_index":4283,"location":[11.955759,51.089286]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":2.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.086,"geometry_index":4284,"location":[11.955772,51.090426]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955777,51.09098],"geometry_index":4285,"admin_index":2,"weight":1.01,"is_urban":false,"turn_weight":0.5,"duration":0.558,"bearings":[0,168,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":7.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.49,"geometry_index":4286,"location":[11.955778,51.091119]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":5.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.335,"geometry_index":4288,"location":[11.955795,51.092837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":17.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.902,"geometry_index":4290,"location":[11.955811,51.094248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":0.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.462,"geometry_index":4294,"location":[11.955859,51.098451]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":3.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.195,"geometry_index":4295,"location":[11.955859,51.098578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":6.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.92,"geometry_index":4296,"location":[11.955867,51.09943]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955889,51.101008],"geometry_index":4298,"admin_index":2,"weight":2.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.639,"bearings":[0,13,181],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[0,180],"duration":29.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.215,"geometry_index":4299,"location":[11.955893,51.101655]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955975,51.108849],"geometry_index":4301,"admin_index":2,"weight":1.262,"is_urban":false,"turn_weight":1,"duration":0.298,"bearings":[1,168,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":6.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.662,"geometry_index":4302,"location":[11.955976,51.108918]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,180],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.315,"geometry_index":4304,"location":[11.955988,51.110472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[184,359],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.972,"geometry_index":4305,"location":[11.956029,51.110843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":2.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.527,"geometry_index":4306,"location":[11.956024,51.111115]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,179],"duration":15.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.32,"geometry_index":4307,"location":[11.956012,51.111816]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":1.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.524,"geometry_index":4310,"location":[11.956091,51.115787]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,181],"duration":64.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":56.544,"geometry_index":4311,"location":[11.956104,51.11622]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.779,"geometry_index":4333,"location":[11.964352,51.131452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,210],"duration":0.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.655,"geometry_index":4334,"location":[11.964531,51.131648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":77.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":68.229,"geometry_index":4335,"location":[11.964684,51.131815]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":1.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.591,"geometry_index":4343,"location":[11.979664,51.148853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":12.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.836,"geometry_index":4345,"location":[11.98003,51.149247]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":0.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.397,"geometry_index":4349,"location":[11.982417,51.151954]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":25.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.985,"geometry_index":4350,"location":[11.982506,51.152056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":36.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":31.629,"geometry_index":4354,"location":[11.987244,51.157437]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":0.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.421,"geometry_index":4358,"location":[11.994048,51.165179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":21.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.375,"geometry_index":4359,"location":[11.994139,51.165282]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,209],"duration":4.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.189,"geometry_index":4362,"location":[11.998229,51.16994]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,208],"duration":7.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.896,"geometry_index":4363,"location":[11.99909,51.170957]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.00032,51.172628],"geometry_index":4365,"admin_index":2,"weight":1.971,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.149,"bearings":[25,38,205],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,205],"duration":9.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.208,"geometry_index":4366,"location":[12.000663,51.173098]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":6.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.709,"geometry_index":4368,"location":[12.002199,51.175334]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":2.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.005,"geometry_index":4369,"location":[12.00315,51.176718]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":17.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.73,"geometry_index":4370,"location":[12.003485,51.177209]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.006295,51.181304],"geometry_index":4372,"admin_index":2,"weight":2.029,"is_urban":false,"turn_weight":1,"duration":1.091,"bearings":[24,189,203],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":6.466,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.143,"geometry_index":4373,"location":[12.006475,51.181555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":14.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.713,"geometry_index":4375,"location":[12.007542,51.183079]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.564,"geometry_index":4377,"location":[12.00987,51.186493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":89.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":82.418,"geometry_index":4378,"location":[12.009969,51.186632]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":7.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.604,"geometry_index":4393,"location":[12.027656,51.206773]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.02952,51.208274],"geometry_index":4394,"admin_index":2,"weight":0.953,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.078,"bearings":[37,59,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":9.353,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.418,"geometry_index":4395,"location":[12.029778,51.208488]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.984,"geometry_index":4397,"location":[12.032101,51.210368]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.032367,51.210588],"geometry_index":4398,"admin_index":2,"weight":2.843,"is_urban":false,"turn_weight":1,"duration":2.055,"bearings":[38,187,217],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.286,"geometry_index":4399,"location":[12.032872,51.210998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":5.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.704,"geometry_index":4400,"location":[12.032954,51.211065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":30.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":27.727,"geometry_index":4401,"location":[12.034272,51.212136]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":22.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.562,"geometry_index":4407,"location":[12.041286,51.21881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":1.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.487,"geometry_index":4409,"location":[12.046229,51.223866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":1.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.339,"geometry_index":4410,"location":[12.046572,51.224218]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.088,"geometry_index":4412,"location":[12.046886,51.22453]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":5.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.407,"geometry_index":4413,"location":[12.047137,51.224785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":7.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.06,"geometry_index":4414,"location":[12.048386,51.226038]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":1.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.632,"geometry_index":4416,"location":[12.049982,51.227658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,212],"duration":0.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.766,"geometry_index":4418,"location":[12.050353,51.228029]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,210],"duration":15.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.785,"geometry_index":4419,"location":[12.050519,51.228207]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.053879,51.231598],"geometry_index":4420,"admin_index":2,"weight":1.697,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.856,"bearings":[31,46,212],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":23.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.135,"geometry_index":4422,"location":[12.054266,51.231996]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":2.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.894,"geometry_index":4425,"location":[12.059383,51.237178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":9.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.391,"geometry_index":4426,"location":[12.059821,51.237618]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":7.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.321,"geometry_index":4427,"location":[12.061745,51.239583]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":2.329,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.097,"geometry_index":4428,"location":[12.063251,51.2411]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.063761,51.2416],"geometry_index":4429,"admin_index":2,"weight":2.08,"is_urban":false,"turn_weight":1,"duration":1.219,"bearings":[32,201,213],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":5.794,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.215,"geometry_index":4430,"location":[12.064022,51.241866]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":5.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.752,"geometry_index":4431,"location":[12.065295,51.243159]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":12.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.387,"geometry_index":4433,"location":[12.066466,51.244335]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":164.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":147.651,"geometry_index":4434,"location":[12.069259,51.247156]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.849,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.764,"geometry_index":4471,"location":[12.117633,51.277471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,217],"duration":41.349,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":37.214,"geometry_index":4472,"location":[12.117845,51.277648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":8.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.375,"geometry_index":4480,"location":[12.129802,51.285479]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,223],"duration":1.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.543,"geometry_index":4483,"location":[12.132165,51.287037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.132646,51.287375],"geometry_index":4484,"admin_index":2,"weight":0.648,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.727,"bearings":[42,63,222],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,222],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.86,"geometry_index":4485,"location":[12.132854,51.287522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":0.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.678,"geometry_index":4487,"location":[12.134346,51.288678]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[38,194,217],"duration":2.202,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.975,"geometry_index":4488,"location":[12.134543,51.288843]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":5.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.598,"geometry_index":4490,"location":[12.135103,51.289294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":61.954,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":55.759,"geometry_index":4491,"location":[12.136417,51.290351]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,211],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.11,"geometry_index":4502,"location":[12.151895,51.303375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":3.862,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.573,"geometry_index":4503,"location":[12.152118,51.303625]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":1.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.804,"geometry_index":4504,"location":[12.152839,51.304434]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":81.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":73.493,"geometry_index":4505,"location":[12.15321,51.304842]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":8.298,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.468,"geometry_index":4513,"location":[12.166275,51.319417]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":0.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.61,"geometry_index":4515,"location":[12.167608,51.320892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":2.644,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.379,"geometry_index":4516,"location":[12.167724,51.321021]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":11.025,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.923,"geometry_index":4517,"location":[12.168052,51.321385]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.169424,51.322926],"geometry_index":4519,"admin_index":3,"weight":13.209,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.685,"bearings":[29,48,209],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":75.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":67.542,"geometry_index":4520,"location":[12.1698,51.323345]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":8.585,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.727,"geometry_index":4521,"location":[12.171703,51.32547]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.171932,51.325714],"geometry_index":4522,"admin_index":3,"weight":3.383,"is_urban":false,"turn_weight":1,"duration":2.654,"bearings":[30,182,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,210],"duration":7.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.956,"geometry_index":4523,"location":[12.172111,51.325905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":11.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.578,"geometry_index":4524,"location":[12.172623,51.326475]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":168.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":156.118,"geometry_index":4526,"location":[12.173408,51.327348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":15.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.283,"geometry_index":4535,"location":[12.18283,51.340398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":1.163,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.104,"geometry_index":4537,"location":[12.183656,51.341562]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":4.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.481,"geometry_index":4538,"location":[12.183779,51.341739]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.184205,51.342369],"geometry_index":4539,"admin_index":2,"weight":2.825,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.98,"bearings":[23,39,203],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":47.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":44.906,"geometry_index":4540,"location":[12.184424,51.342684]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,189],"duration":10.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.813,"geometry_index":4548,"location":[12.186909,51.34786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.18715,51.349033],"geometry_index":4550,"admin_index":2,"weight":7.602,"is_urban":false,"turn_weight":1,"duration":6.968,"bearings":[6,179,187],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":16.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.271,"geometry_index":4551,"location":[12.18728,51.349777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.187609,51.351493],"geometry_index":4552,"admin_index":2,"weight":15.176,"is_urban":false,"turn_weight":0.75,"duration":15.192,"bearings":[7,175,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":5.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.551,"geometry_index":4556,"location":[12.188017,51.353558]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":47.647,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":45.265,"geometry_index":4557,"location":[12.188162,51.35444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.368,"geometry_index":4560,"location":[12.189327,51.360459]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,187],"duration":85.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":78.868,"geometry_index":4561,"location":[12.189403,51.360857]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":1.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.567,"geometry_index":4571,"location":[12.188201,51.368866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":23.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":20.708,"geometry_index":4572,"location":[12.188112,51.36913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":3.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.937,"geometry_index":4575,"location":[12.187108,51.372255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":42.511,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":37.197,"geometry_index":4576,"location":[12.186947,51.372737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":9.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.576,"geometry_index":4579,"location":[12.185391,51.377627]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,349],"duration":11.786,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.607,"geometry_index":4581,"location":[12.184974,51.378813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":6.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.858,"geometry_index":4583,"location":[12.184292,51.380918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":3.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.355,"geometry_index":4584,"location":[12.18392,51.382083]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":25.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":23.273,"geometry_index":4585,"location":[12.183761,51.382595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.234,"geometry_index":4589,"location":[12.18232,51.387085]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":2.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.298,"geometry_index":4590,"location":[12.182306,51.38713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":14.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.227,"geometry_index":4592,"location":[12.182167,51.387562]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":1.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.126,"geometry_index":4593,"location":[12.181368,51.390049]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":0.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.44,"geometry_index":4594,"location":[12.181301,51.390255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":10.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.324,"geometry_index":4595,"location":[12.181275,51.390336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":16.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":14.856,"geometry_index":4599,"location":[12.180867,51.391951]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,181],"duration":5.096,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.713,"geometry_index":4603,"location":[12.180709,51.394548]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,183],"duration":0.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.208,"geometry_index":4605,"location":[12.180775,51.395373]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":0.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.042,"geometry_index":4606,"location":[12.180782,51.395418]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":17.55,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":16.233,"geometry_index":4607,"location":[12.180782,51.39542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":9.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.148,"geometry_index":4613,"location":[12.181791,51.39886]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.182756,51.40069],"geometry_index":4616,"admin_index":3,"weight":1.938,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.048,"bearings":[20,46,199],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":9.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.835,"geometry_index":4617,"location":[12.182926,51.400981]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":2.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.793,"geometry_index":4619,"location":[12.183685,51.402289]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.18393,51.402704],"geometry_index":4620,"admin_index":3,"weight":9.845,"is_urban":false,"turn_weight":0.5,"duration":9.844,"bearings":[20,189,200],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":13.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.572,"geometry_index":4622,"location":[12.18486,51.404346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":3.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.186,"geometry_index":4624,"location":[12.186119,51.406552]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":55.952,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":53.154,"geometry_index":4625,"location":[12.186447,51.407124]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.989,"geometry_index":4631,"location":[12.192734,51.418027]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.255,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.242,"geometry_index":4632,"location":[12.192852,51.418231]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":2.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.989,"geometry_index":4633,"location":[12.192884,51.418287]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":14.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.819,"geometry_index":4634,"location":[12.19316,51.418766]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.195099,51.422116],"geometry_index":4637,"admin_index":3,"weight":2.574,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.717,"bearings":[20,34,200],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":13.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.165,"geometry_index":4638,"location":[12.195444,51.422709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.441,"geometry_index":4641,"location":[12.197188,51.425739]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":9.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.594,"geometry_index":4642,"location":[12.197248,51.425841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.719,"geometry_index":4645,"location":[12.19841,51.427868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":7.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.911,"geometry_index":4646,"location":[12.198643,51.428277]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":0.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.466,"geometry_index":4649,"location":[12.199594,51.429908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,200],"duration":16.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.859,"geometry_index":4650,"location":[12.199658,51.430018]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":3.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.053,"geometry_index":4652,"location":[12.201663,51.433526]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.202079,51.434227],"geometry_index":4654,"admin_index":3,"weight":6.758,"is_urban":false,"turn_weight":1,"duration":6.247,"bearings":[19,190,201],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":5.837,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.399,"geometry_index":4655,"location":[12.202875,51.43563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.332,"geometry_index":4656,"location":[12.203685,51.437041]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":39.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":36.662,"geometry_index":4657,"location":[12.203734,51.437127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.489,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.371,"geometry_index":4663,"location":[12.209257,51.446716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":0.489,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.452,"geometry_index":4664,"location":[12.209464,51.44707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.697,"geometry_index":4665,"location":[12.20953,51.447186]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[20,108,200],"duration":14.022,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.965,"geometry_index":4666,"location":[12.209784,51.447626]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":6.851,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.337,"geometry_index":4668,"location":[12.211735,51.451014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":35.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":32.88,"geometry_index":4669,"location":[12.212692,51.45267]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":6.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.078,"geometry_index":4677,"location":[12.216549,51.461456]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.216789,51.463142],"geometry_index":4679,"admin_index":3,"weight":5.197,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.797,"bearings":[2,18,184],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.216841,51.464597],"geometry_index":4683,"admin_index":3,"weight":4.3,"is_urban":false,"turn_weight":1,"duration":3.688,"bearings":[163,181,359],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,357],"duration":3.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.794,"geometry_index":4685,"location":[12.216812,51.465597]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":81.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":73.123,"geometry_index":4687,"location":[12.216729,51.46644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.24,"geometry_index":4707,"location":[12.208374,51.487726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":6.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.005,"geometry_index":4708,"location":[12.207711,51.488612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.206484,51.490262],"geometry_index":4710,"admin_index":3,"weight":2.119,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.362,"bearings":[155,335,353],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,335],"duration":10.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.568,"geometry_index":4711,"location":[12.206058,51.490833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,340],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.877,"geometry_index":4714,"location":[12.204184,51.493424]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.203879,51.493947],"geometry_index":4716,"admin_index":2,"weight":2.009,"is_urban":false,"turn_weight":1,"duration":1.128,"bearings":[148,160,340],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,342],"duration":5.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.585,"geometry_index":4717,"location":[12.203715,51.494222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,346],"duration":38.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":33.729,"geometry_index":4720,"location":[12.203105,51.495512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,350],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.803,"geometry_index":4728,"location":[12.200314,51.50556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[170,350],"duration":123.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":107.966,"geometry_index":4729,"location":[12.200248,51.505788]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[87,176,356],"duration":63.907,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":2,"weight":57.51,"geometry_index":4746,"location":[12.196901,51.530279]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,346],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.121,"geometry_index":4755,"location":[12.192865,51.542767]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,347],"duration":23.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":21.344,"geometry_index":4756,"location":[12.192745,51.543075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":6.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.579,"geometry_index":4759,"location":[12.190525,51.548964]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.189879,51.550738],"geometry_index":4760,"admin_index":2,"weight":2.671,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.832,"bearings":[1,167,347],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,347],"duration":35.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":33.939,"geometry_index":4761,"location":[12.189607,51.551456]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.187292,51.56067],"geometry_index":4771,"admin_index":2,"weight":16.803,"is_urban":false,"turn_weight":0.75,"duration":17.362,"bearings":[5,166,183],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":16.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.891,"geometry_index":4778,"location":[12.188346,51.565209]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":97.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.786,"geometry_index":4780,"location":[12.189531,51.569406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.17,"geometry_index":4803,"location":[12.184343,51.59459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,348],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.48,"geometry_index":4804,"location":[12.184074,51.595207]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[171,353],"duration":27.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.819,"geometry_index":4807,"location":[12.183477,51.597071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,193],"duration":4.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.493,"geometry_index":4820,"location":[12.18413,51.604304]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.184655,51.605585],"geometry_index":4822,"admin_index":2,"weight":1.433,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.6,"bearings":[14,31,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":20.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.412,"geometry_index":4823,"location":[12.184822,51.605989]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.186953,51.611134],"geometry_index":4827,"admin_index":2,"weight":2.08,"is_urban":false,"turn_weight":1,"duration":1.221,"bearings":[14,177,195],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":5.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.914,"geometry_index":4828,"location":[12.187098,51.611483]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":31.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.728,"geometry_index":4830,"location":[12.187749,51.613069]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":5.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.292,"geometry_index":4834,"location":[12.191593,51.622325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.793,"geometry_index":4835,"location":[12.192291,51.624029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":19.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.685,"geometry_index":4836,"location":[12.192486,51.624513]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":6.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.671,"geometry_index":4838,"location":[12.194477,51.629269]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":6.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.133,"geometry_index":4840,"location":[12.195095,51.630764]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,194],"duration":1.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.451,"geometry_index":4842,"location":[12.19576,51.632379]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.195918,51.632762],"geometry_index":4843,"admin_index":2,"weight":1.024,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.115,"bearings":[14,38,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":7.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.5,"geometry_index":4844,"location":[12.19603,51.633038]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.196761,51.634801],"geometry_index":4847,"admin_index":2,"weight":1.726,"is_urban":false,"turn_weight":0.5,"duration":1.332,"bearings":[15,173,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,195],"duration":6.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.532,"geometry_index":4848,"location":[12.196905,51.63514]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,193],"duration":72.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":65.259,"geometry_index":4850,"location":[12.197522,51.636719]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":1.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.712,"geometry_index":4864,"location":[12.202501,51.655632]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":46.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":40.563,"geometry_index":4865,"location":[12.202595,51.656129]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":1.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.98,"geometry_index":4868,"location":[12.20493,51.668303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":70.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":61.629,"geometry_index":4869,"location":[12.204983,51.668594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.93,"geometry_index":4870,"location":[12.208572,51.687443]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":32.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.35,"geometry_index":4871,"location":[12.208617,51.687716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.926,"geometry_index":4874,"location":[12.210271,51.696306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":24.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":22.344,"geometry_index":4875,"location":[12.21032,51.696576]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":6.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.899,"geometry_index":4876,"location":[12.21153,51.703097]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":0.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.825,"geometry_index":4877,"location":[12.21185,51.704819]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.211896,51.705064],"geometry_index":4878,"admin_index":2,"weight":5.43,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.041,"bearings":[7,32,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.212211,51.706679],"geometry_index":4879,"admin_index":2,"weight":2.419,"is_urban":false,"turn_weight":1,"duration":1.596,"bearings":[6,151,187],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":6.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.863,"geometry_index":4880,"location":[12.212281,51.707089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":33.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.579,"geometry_index":4881,"location":[12.2126,51.708788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":1.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.728,"geometry_index":4885,"location":[12.214281,51.717625]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":10.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.473,"geometry_index":4886,"location":[12.214374,51.718127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":4.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.196,"geometry_index":4888,"location":[12.21488,51.720871]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.234,"geometry_index":4890,"location":[12.215108,51.722085]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.215177,51.722443],"geometry_index":4891,"admin_index":2,"weight":1.944,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.166,"bearings":[7,27,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":10.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.195,"geometry_index":4892,"location":[12.215283,51.723001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":2.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.852,"geometry_index":4894,"location":[12.215791,51.725662]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,187],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.556,"geometry_index":4895,"location":[12.215892,51.726193]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.215923,51.726353],"geometry_index":4896,"admin_index":2,"weight":2.107,"is_urban":false,"turn_weight":1,"duration":1.236,"bearings":[7,163,187],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,187],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.187,"geometry_index":4897,"location":[12.216,51.726719]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":2.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.998,"geometry_index":4898,"location":[12.216133,51.727444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":51.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":45.202,"geometry_index":4899,"location":[12.216254,51.728106]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":26.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.336,"geometry_index":4912,"location":[12.22139,51.743187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":6.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.31,"geometry_index":4918,"location":[12.22662,51.750483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.227756,51.751909],"geometry_index":4919,"admin_index":2,"weight":1.07,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.244,"bearings":[24,48,206],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,204],"duration":3.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.272,"geometry_index":4920,"location":[12.227961,51.752199]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.489,"geometry_index":4921,"location":[12.228637,51.753068]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":1.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.979,"geometry_index":4922,"location":[12.228738,51.753199]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.22894,51.753454],"geometry_index":4923,"admin_index":2,"weight":1.951,"is_urban":false,"turn_weight":1,"duration":1.105,"bearings":[26,191,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":4.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.101,"geometry_index":4924,"location":[12.229147,51.753716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":70.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":61.752,"geometry_index":4926,"location":[12.23002,51.754833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,229],"duration":2.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.817,"geometry_index":4936,"location":[12.246961,51.769948]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,230],"duration":33.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.662,"geometry_index":4937,"location":[12.247626,51.770294]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,229],"duration":56.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":50.97,"geometry_index":4938,"location":[12.258823,51.776243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":0.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.673,"geometry_index":4949,"location":[12.272522,51.788589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,202],"duration":16.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.642,"geometry_index":4950,"location":[12.272642,51.788774]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":5.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.296,"geometry_index":4955,"location":[12.275524,51.792685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":12.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.279,"geometry_index":4956,"location":[12.276684,51.794035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":14.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.872,"geometry_index":4959,"location":[12.279125,51.79699]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":47.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":42.583,"geometry_index":4960,"location":[12.282079,51.800465]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":36.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":32.678,"geometry_index":4971,"location":[12.294211,51.810187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":6.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.295,"geometry_index":4983,"location":[12.304285,51.817319]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.305838,51.818875],"geometry_index":4984,"admin_index":2,"weight":1.309,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.473,"bearings":[32,51,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":4.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.237,"geometry_index":4985,"location":[12.306163,51.819191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.903,"geometry_index":4986,"location":[12.307222,51.820222]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.307436,51.820446],"geometry_index":4987,"admin_index":2,"weight":2.425,"is_urban":false,"turn_weight":0.5,"duration":2.146,"bearings":[31,186,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":0.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.417,"geometry_index":4988,"location":[12.307891,51.820905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.314,"geometry_index":4989,"location":[12.307989,51.821003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":2.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.611,"geometry_index":4990,"location":[12.308308,51.821331]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,212],"duration":1.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.943,"geometry_index":4991,"location":[12.308944,51.821965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,211],"duration":1.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.15,"geometry_index":4992,"location":[12.309167,51.822194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":88.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":77.67,"geometry_index":4993,"location":[12.309457,51.822486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.36,"geometry_index":5026,"location":[12.326028,51.843258]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.327162,51.845026],"geometry_index":5028,"admin_index":2,"weight":0.953,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.066,"bearings":[25,45,203],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":5.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.987,"geometry_index":5029,"location":[12.327341,51.845268]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,208],"duration":0.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.763,"geometry_index":5033,"location":[12.328355,51.846528]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.328527,51.846715],"geometry_index":5034,"admin_index":2,"weight":8.09,"is_urban":false,"turn_weight":1,"duration":7.885,"bearings":[30,182,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,212],"duration":4.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.234,"geometry_index":5036,"location":[12.3302,51.848407]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":33.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.834,"geometry_index":5038,"location":[12.331331,51.849367]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.426,"geometry_index":5051,"location":[12.341223,51.854995]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":15.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.188,"geometry_index":5052,"location":[12.341382,51.855065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,236],"duration":28.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.427,"geometry_index":5054,"location":[12.34637,51.857179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,235],"duration":4.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.042,"geometry_index":5055,"location":[12.354985,51.860895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,233],"duration":17.748,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.522,"geometry_index":5058,"location":[12.356391,51.861543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.975,"geometry_index":5062,"location":[12.362081,51.864014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,235],"duration":3.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.475,"geometry_index":5063,"location":[12.362436,51.864169]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.688,"geometry_index":5066,"location":[12.363729,51.86471]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":7.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.689,"geometry_index":5068,"location":[12.364357,51.864969]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.877,"geometry_index":5070,"location":[12.3669,51.865944]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,239],"duration":4.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.352,"geometry_index":5071,"location":[12.367238,51.866068]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,240],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.59,"geometry_index":5073,"location":[12.368923,51.866666]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,241],"duration":1.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.994,"geometry_index":5074,"location":[12.369146,51.866743]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.36952,51.866874],"geometry_index":5075,"admin_index":2,"weight":14.273,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.32,"bearings":[62,83,240],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":1.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.918,"geometry_index":5079,"location":[12.375112,51.868696]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.375477,51.868816],"geometry_index":5080,"admin_index":2,"weight":2.443,"is_urban":false,"turn_weight":1,"duration":1.656,"bearings":[62,222,242],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,242],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.43,"geometry_index":5081,"location":[12.376045,51.869001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,240],"duration":73.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":63.887,"geometry_index":5083,"location":[12.377752,51.869594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":1.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.193,"geometry_index":5096,"location":[12.395278,51.882974]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":7.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.121,"geometry_index":5097,"location":[12.395517,51.88325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":8.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.549,"geometry_index":5098,"location":[12.396883,51.88484]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.398334,51.886519],"geometry_index":5099,"admin_index":2,"weight":1.568,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.748,"bearings":[28,44,208],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":6.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.062,"geometry_index":5100,"location":[12.398643,51.886874]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.08,"geometry_index":5102,"location":[12.399839,51.888249]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.400045,51.8885],"geometry_index":5103,"admin_index":2,"weight":2.105,"is_urban":false,"turn_weight":0.5,"duration":1.791,"bearings":[28,189,207],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":4.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.475,"geometry_index":5104,"location":[12.400402,51.888915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":310.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":271.98,"geometry_index":5105,"location":[12.40139,51.890065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,220],"duration":7.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.84,"geometry_index":5174,"location":[12.46215,51.959719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.464452,51.96119],"geometry_index":5177,"admin_index":2,"weight":0.848,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.975,"bearings":[48,69,226],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":3.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.123,"geometry_index":5178,"location":[12.464793,51.961382]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,231],"duration":0.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.688,"geometry_index":5181,"location":[12.466103,51.962063]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.466403,51.962204],"geometry_index":5182,"admin_index":2,"weight":2.119,"is_urban":false,"turn_weight":0.5,"duration":1.871,"bearings":[53,206,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.67,"geometry_index":5183,"location":[12.467032,51.9625]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":33.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.24,"geometry_index":5185,"location":[12.469259,51.963507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,234],"duration":6.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.09,"geometry_index":5188,"location":[12.480753,51.968744]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.483215,51.969751],"geometry_index":5190,"admin_index":2,"weight":1.428,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.639,"bearings":[60,76,238],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,240],"duration":12.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.254,"geometry_index":5191,"location":[12.483886,51.969988]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":1.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.076,"geometry_index":5195,"location":[12.489426,51.97155]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.489959,51.97169],"geometry_index":5196,"admin_index":2,"weight":2.023,"is_urban":false,"turn_weight":1,"duration":1.176,"bearings":[66,229,247],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":4.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.119,"geometry_index":5197,"location":[12.490462,51.971826]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,247],"duration":117.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":99.646,"geometry_index":5198,"location":[12.492518,51.972367]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":109.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":93.369,"geometry_index":5223,"location":[12.540221,51.989525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,233],"duration":7.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.945,"geometry_index":5248,"location":[12.574118,52.013762]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.577242,52.015053],"geometry_index":5251,"admin_index":4,"weight":4.074,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.674,"bearings":[56,79,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.57906,52.015811],"geometry_index":5252,"admin_index":4,"weight":2.311,"is_urban":false,"turn_weight":1,"duration":1.516,"bearings":[57,215,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.088,"geometry_index":5253,"location":[12.579631,52.016037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.836,"geometry_index":5254,"location":[12.580113,52.016228]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":3.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.389,"geometry_index":5255,"location":[12.580476,52.016375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":24.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.309,"geometry_index":5256,"location":[12.582013,52.017022]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,236],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.721,"geometry_index":5259,"location":[12.591788,52.021042]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.488,"geometry_index":5260,"location":[12.592123,52.021178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":47.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":41.854,"geometry_index":5261,"location":[12.592335,52.021266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,236],"duration":2.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.072,"geometry_index":5281,"location":[12.607603,52.031064]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,241],"duration":15.037,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.158,"geometry_index":5283,"location":[12.608555,52.0314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,246],"duration":3.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.094,"geometry_index":5289,"location":[12.614959,52.032964]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.631,"geometry_index":5291,"location":[12.616378,52.033452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,236],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.443,"geometry_index":5292,"location":[12.616654,52.033568]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.617707,52.034049],"geometry_index":5294,"admin_index":4,"weight":13.213,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.123,"bearings":[49,66,232],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.621954,52.037369],"geometry_index":5304,"admin_index":4,"weight":2.686,"is_urban":false,"turn_weight":1,"duration":1.949,"bearings":[28,187,211],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.531,"geometry_index":5305,"location":[12.622375,52.037853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":2.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.238,"geometry_index":5306,"location":[12.62353,52.039144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,210],"duration":12.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.281,"geometry_index":5308,"location":[12.624115,52.039781]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,230],"duration":24.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.107,"geometry_index":5314,"location":[12.628215,52.042542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":0.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.686,"geometry_index":5316,"location":[12.637558,52.046621]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,236],"duration":71.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.131,"geometry_index":5317,"location":[12.637864,52.046747]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.721,"geometry_index":5331,"location":[12.653549,52.062219]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,202],"duration":10.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.24,"geometry_index":5333,"location":[12.65477,52.06409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.859,"geometry_index":5334,"location":[12.656413,52.066664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":27.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.09,"geometry_index":5335,"location":[12.656753,52.067184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,208],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.883,"geometry_index":5340,"location":[12.661525,52.073771]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,207],"duration":73.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":64.73,"geometry_index":5341,"location":[12.661725,52.074009]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.152,"geometry_index":5353,"location":[12.681552,52.090405]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,221],"duration":12.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.92,"geometry_index":5354,"location":[12.681906,52.090658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,226],"duration":1.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.199,"geometry_index":5357,"location":[12.685528,52.093049]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,228],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.721,"geometry_index":5358,"location":[12.685968,52.09329]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":5.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.16,"geometry_index":5359,"location":[12.686221,52.093433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.688133,52.09444],"geometry_index":5362,"admin_index":4,"weight":4.127,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.594,"bearings":[51,75,229],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.689667,52.095209],"geometry_index":5363,"admin_index":4,"weight":2.92,"is_urban":false,"turn_weight":1,"duration":2.141,"bearings":[51,206,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":5.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.83,"geometry_index":5364,"location":[12.690399,52.095572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,230],"duration":151.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":132.68,"geometry_index":5365,"location":[12.692203,52.096495]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.818,"geometry_index":5386,"location":[12.741614,52.123525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":19.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.207,"geometry_index":5387,"location":[12.741872,52.123705]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,215],"duration":7.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.924,"geometry_index":5389,"location":[12.746968,52.127854]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.748951,52.129555],"geometry_index":5390,"admin_index":4,"weight":2.242,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.568,"bearings":[35,46,216],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":20.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.174,"geometry_index":5391,"location":[12.749574,52.130097]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.635,"geometry_index":5392,"location":[12.75464,52.134503]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.755375,52.135143],"geometry_index":5393,"admin_index":4,"weight":7.672,"is_urban":false,"turn_weight":1,"duration":7.633,"bearings":[35,207,215],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":62.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.752,"geometry_index":5394,"location":[12.757333,52.136852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":15.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.051,"geometry_index":5401,"location":[12.77336,52.150927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":7.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.158,"geometry_index":5404,"location":[12.777402,52.154421]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.779456,52.156208],"geometry_index":5406,"admin_index":4,"weight":1.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.344,"bearings":[35,53,215],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.055,"geometry_index":5407,"location":[12.779787,52.156494]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,214],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.697,"geometry_index":5409,"location":[12.78062,52.157226]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.781092,52.157625],"geometry_index":5410,"admin_index":4,"weight":2.557,"is_urban":false,"turn_weight":1,"duration":1.738,"bearings":[36,203,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.381,"geometry_index":5411,"location":[12.78151,52.157979]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":1.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.947,"geometry_index":5412,"location":[12.781609,52.158063]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":6.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.752,"geometry_index":5413,"location":[12.78187,52.15829]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":197.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":172.711,"geometry_index":5414,"location":[12.783059,52.159338]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.926,"geometry_index":5456,"location":[12.850566,52.187945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,224],"duration":24.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.449,"geometry_index":5457,"location":[12.850873,52.188142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":0.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.035,"geometry_index":5464,"location":[12.857896,52.191442]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,241],"duration":25.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.227,"geometry_index":5465,"location":[12.857902,52.191444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":1.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.252,"geometry_index":5472,"location":[12.866402,52.193599]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":8.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.324,"geometry_index":5473,"location":[12.866861,52.1937]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.781,"geometry_index":5474,"location":[12.869529,52.194283]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,251],"duration":9.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.471,"geometry_index":5475,"location":[12.869801,52.194342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":23.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.646,"geometry_index":5479,"location":[12.872724,52.195099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":9.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.895,"geometry_index":5487,"location":[12.879339,52.197794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.881526,52.199096],"geometry_index":5489,"admin_index":4,"weight":18.861,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.578,"bearings":[42,56,224],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.885859,52.202678],"geometry_index":5493,"admin_index":4,"weight":2.445,"is_urban":false,"turn_weight":1,"duration":1.611,"bearings":[34,201,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":6.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.816,"geometry_index":5494,"location":[12.886159,52.202955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":6.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.246,"geometry_index":5495,"location":[12.887368,52.204074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":58.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.5,"geometry_index":5496,"location":[12.888662,52.205273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.164,"geometry_index":5503,"location":[12.899625,52.215441]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":7.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.338,"geometry_index":5504,"location":[12.900089,52.215866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.901418,52.217143],"geometry_index":5505,"admin_index":4,"weight":6.756,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.74,"bearings":[33,61,213],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.902858,52.218477],"geometry_index":5506,"admin_index":4,"weight":9.691,"is_urban":false,"turn_weight":1,"duration":9.939,"bearings":[34,196,213],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":20.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.027,"geometry_index":5507,"location":[12.904719,52.220194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":9.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.895,"geometry_index":5509,"location":[12.908574,52.223748]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.844,"geometry_index":5510,"location":[12.910246,52.225308]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":0.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.834,"geometry_index":5511,"location":[12.911481,52.226461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":0.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.834,"geometry_index":5512,"location":[12.911654,52.226626]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,213],"duration":15.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.17,"geometry_index":5513,"location":[12.911829,52.226788]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":20.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.914,"geometry_index":5518,"location":[12.914473,52.22945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,195],"duration":6.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.654,"geometry_index":5525,"location":[12.916835,52.233429]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,190],"duration":32.791,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.691,"geometry_index":5527,"location":[12.917248,52.234743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,347],"duration":2.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.238,"geometry_index":5541,"location":[12.916965,52.241493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,344],"duration":25.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.164,"geometry_index":5542,"location":[12.916765,52.242005]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,340],"duration":37.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.676,"geometry_index":5550,"location":[12.914049,52.24698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[160,339],"duration":2.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.867,"geometry_index":5553,"location":[12.909773,52.254257]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,342],"duration":66.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":59.859,"geometry_index":5554,"location":[12.909515,52.254669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":10.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.072,"geometry_index":5565,"location":[12.90879,52.267702]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.43,"geometry_index":5567,"location":[12.909449,52.269673]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.909625,52.270198],"geometry_index":5568,"admin_index":4,"weight":7.135,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.936,"bearings":[12,41,192],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.910217,52.271921],"geometry_index":5570,"admin_index":4,"weight":2.674,"is_urban":false,"turn_weight":1,"duration":1.869,"bearings":[12,170,191],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":3.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.312,"geometry_index":5571,"location":[12.910355,52.272327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":3.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.021,"geometry_index":5572,"location":[12.910631,52.273127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":4.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.645,"geometry_index":5573,"location":[12.910881,52.273853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.676,"geometry_index":5574,"location":[12.911172,52.27472]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":2.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.209,"geometry_index":5575,"location":[12.911547,52.275835]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":4.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.645,"geometry_index":5576,"location":[12.911725,52.27636]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":15.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.645,"geometry_index":5577,"location":[12.912021,52.277235]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.913154,52.280569],"geometry_index":5578,"admin_index":4,"weight":26.611,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.576,"bearings":[12,32,192],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,192],"duration":11.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.631,"geometry_index":5582,"location":[12.915342,52.287001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,217],"duration":28.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.992,"geometry_index":5594,"location":[12.917024,52.289388]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.926261,52.29223],"geometry_index":5608,"admin_index":4,"weight":3.324,"is_urban":false,"turn_weight":1,"duration":2.604,"bearings":[69,239,250],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":17.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.637,"geometry_index":5609,"location":[12.927163,52.29244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":1.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.951,"geometry_index":5611,"location":[12.933264,52.293852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,251],"duration":15.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.594,"geometry_index":5612,"location":[12.933638,52.293933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,249],"duration":21.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.211,"geometry_index":5614,"location":[12.938955,52.295134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":51.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.246,"geometry_index":5615,"location":[12.947032,52.296978]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":13.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.773,"geometry_index":5617,"location":[12.966607,52.301442]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.182,"geometry_index":5620,"location":[12.971702,52.302587]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,250],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.473,"geometry_index":5621,"location":[12.973086,52.302894]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,251],"duration":3.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.898,"geometry_index":5622,"location":[12.973291,52.302937]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.974577,52.303182],"geometry_index":5624,"admin_index":4,"weight":6.488,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.424,"bearings":[75,99,253],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.977553,52.303532],"geometry_index":5628,"admin_index":4,"weight":6.115,"is_urban":false,"turn_weight":1,"duration":5.854,"bearings":[85,244,262],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,268],"duration":31.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.711,"geometry_index":5630,"location":[12.979957,52.303619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,270],"duration":28.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.168,"geometry_index":5635,"location":[12.993098,52.30352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":5.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.672,"geometry_index":5640,"location":[13.006951,52.303389]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.00988,52.30336],"geometry_index":5644,"admin_index":4,"weight":20.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.504,"bearings":[92,101,271],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,296],"duration":6.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.084,"geometry_index":5655,"location":[13.018587,52.301907]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.021055,52.301219],"geometry_index":5656,"admin_index":4,"weight":12.002,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.654,"bearings":[115,124,295],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,295],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.57,"geometry_index":5659,"location":[13.025922,52.299837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,295],"duration":21.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.717,"geometry_index":5660,"location":[13.026143,52.299773]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.034974,52.298333],"geometry_index":5668,"admin_index":4,"weight":5.582,"is_urban":false,"turn_weight":1,"duration":4.848,"bearings":[86,253,270],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,259],"duration":1.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.428,"geometry_index":5671,"location":[13.03698,52.298502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,255],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.818,"geometry_index":5672,"location":[13.037597,52.2986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,249],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.83,"geometry_index":5675,"location":[13.039194,52.298928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":0.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.266,"geometry_index":5676,"location":[13.039528,52.299017]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,247],"duration":10.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.562,"geometry_index":5677,"location":[13.039639,52.299046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,242],"duration":1.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.229,"geometry_index":5681,"location":[13.043325,52.300306]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,243],"duration":36.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.494,"geometry_index":5682,"location":[13.043809,52.300457]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,273],"duration":6.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.176,"geometry_index":5693,"location":[13.05884,52.300766]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,272],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.133,"geometry_index":5694,"location":[13.061641,52.300693]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":7.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.822,"geometry_index":5695,"location":[13.062142,52.300674]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[93,273],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":5696,"location":[13.065206,52.300562]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Berlin-Zentrum (Zoo)"},{"type":"text","text":"/"},{"type":"text","text":"Zehlendorf"}],"type":"fork","modifier":"right","text":"Berlin-Zentrum (Zoo) / Zehlendorf"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"16"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"fork","modifier":"right","text":"Exit 16 A 115"},"distanceAlongGeometry":199156.391},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["straight","slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Berlin-Zentrum (Zoo)"},{"type":"text","text":"/"},{"type":"text","text":"Zehlendorf"}],"type":"fork","modifier":"right","text":"Berlin-Zentrum (Zoo) / Zehlendorf"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"16"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"fork","modifier":"right","text":"Exit 16 A 115"},"distanceAlongGeometry":3218.688}],"destinations":"A 9: Berlin, Halle (Saale), Leipzig, Bad Klosterlausnitz","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 9/E 51 toward Berlin/Halle (Saale)/Leipzig/Bad Klosterlausnitz.","modifier":"slight left","bearing_after":343,"bearing_before":346,"location":[11.850669,50.868077]},"speedLimitSign":"vienna","name":"","weight_typical":6815.805,"duration_typical":7556.775,"duration":7556.775,"distance":199156.391,"driving_side":"right","weight":6815.805,"mode":"driving","ref":"A 9; E 51","geometry":"yuv_`ByyhrUuSdIqsC~y@qvEfsAe~@~WkDbAcm@dO_]xGgZbFc`@jFieC`T_\\pCcX~BkBNc]rC_iBvOiy@dHs`@`DinCpUuH^mKr@ysA`K{S~AsIn@m[bCoWzB{a@pDocEjb@{ANmrBjUagBxQsg@lE_F`@a^bDo_@zDehEb^}zEz`@y|@nHkuBfQguBhQqp@zFag@`EuSlA{RnByO~Ac\\tByTxA{]tBcuAvIo@FccBlNmqEt`@wiA|J{eArLgaCjd@sFdAkrGnnAqfGbkAwmB|^abDvh@gFz@yM~AwpBjYmx@jLiEn@cnAjQ}oCn`@oy@bH{g@v@oTuA_UyAqd@mIsr@wSqg@sUi`Ca{AszCwmBib@o[u`@k]qVgWaG_HuRaUqLiQ{F{IwJkO_PeY_Rg`@iIuRwIaSaHeRcIuT{Ki]wHyUoIqY_Nkc@qHmTEMkYw_Aub@awAqIaYsG_TiG_Tyn@qsBoDkLsp@eyBam@woB}Msb@eJoWyTwj@qKaUcTua@_Q{XsRyY_Xm]kVgXgWcVwOoN}XgRiX{PeZkO_XyK}|Aaj@}LkEqTwHip@iUmN_FeYwKaS_HcA[{`Aw]mEsAsT}HcVyJq\\}Oi[_QuXsRgQoN_YyVsU{VqAuAwWy[kV}]yTs_@uO{YiHoOwLgX_JwTwMu_@mOef@gMie@_Iq]mHy^uKil@se@}yCsTquAoMox@ge@kuCgEsW{w@ubFuwBy|Maj@kiDy_@y`CiUgwAer@ehEwFe]wR_gAq]c|A{Pou@u[mgAk]wcA_iA}pCgz@__BuKeRigAk`Bgr@k|@cNeOkU{Vei@eg@}l@ef@k{@yl@quA{u@omAwp@scDsfBuX_OeeG}bDss@o_@}OoIieBo~@icB}}@iuEqeCi]kQ_`B}y@gc@aUg}@yd@yNwHel@sZ}e@{VutEo_CwtEq_C_eAqi@qwEwbC{LkGiHuDmk@mZq}E_hC}JeEggAed@_gAe[{v@yMoo@gIy^cCuSmAyEQeZeAmQo@}b@}AoNe@gEOeSo@gcBeGgx@sBuv@oBscAmGew@}H}e@iIwOsDkVmGqS{F{GuBy\\eLie@oRsTcKeTcLmNaHw_Bu|@{VmNmd@}Ved@uWqhAuq@ex@me@mh@wYeEiCuDuBuyBqmAkFuCcaCgrAuI}EkQyJai@aZ{ViNysAet@mg@qVyg@eUwJgE[Mex@a\\ePyFge@uOwe@gOimAw[_b@oJ??y_@{HgAUkbAqPugAwNoiAoJgj@}CgvAeEg}As@m~Aa@i`E_AuHE_lAQw`Cw@{IAs_Cs@gMEixAOqREac@KgfAYsa@IuGAaPEiyA[ilA[{ICsi@Omn@ScBAohDy@}F?gt@Okn@Ogr@[mg@GopDaAcoGaBiCAkACw}ASeVqA_PHyj@VsxBmAuhBcA{SKaZYwz@sDiz@cGiUaBi|@kO{Cg@iv@cM{fAgY{z@}XuNoF__Am]mAe@ko@i]_y@kc@qFwC{m@aa@_FcDiV}O}y@gp@aaAoy@_cAg{@qa@k]qw@up@gKeJmIqHofDaqCuiBa|AugCexBwqFivEqD_DmpFsrEkaCiqB{`@u\\gGsFkOgNsu@eo@ws@mm@ue@ca@cVmSkEqDgJ{HqoB}aB}fBezAqkBc_Ba^oZirDy}CggAc~@ghEynDmEuDaZsV_vF_xEaP_Nq~@yt@kTsNarAg|@k\\mTcg@qZsbBmcAouAmz@u]}Scn@i_@yoEinCuNgJig@oZ}u@ef@kpD_xB_c@oWuGeEwuEkpCenBcmAaa@cW{wBkqAcdBycAezAo_Agy@}m@qZgUmGwEcr@yo@a\\wZqn@_q@knAswA}hEkxFiqAsdBy|AosBkLcOy`@yh@urAkfBwLsOsXq^eCcD}aAkqAia@ih@}PqTyoAo~A_m@ao@yeBccBgfCybCw|AozAg}EmxE_UmTeAeAiPmP}NuNimAamAkr@_s@{p@wn@aSiScB{AcJkI}rE_qE}NoN}GuGwhBqhBeaCy~B}vAmuAoZkZyyBgwBy}Ac}Ag^{^sOiOyoAqnA}M}Mqy@gy@ioDqmDwIoI}ViVse@qh@mi@_n@}^{c@oO}Rwn@ez@ij@ww@_IwLa^ui@gl@iaAs_@cn@cc@qx@g`A}mBeyAa`Dau@w|A}nAonCo{AwdDyTwe@igAk_CqwBgvEcf@}dAkg@}fAqfBowDg`CkeF_{@yjB}CyGw_BglDsbAgwBoR_a@wMsXy\\io@gs@ikAeq@{`A_aAmqA{B{CwlBcjCaJgL}v@_iAq_@um@cEuHatBkvDyvA{eCwaAqhBe@}@_yBe~D_GgKqj@saAyl@ycAcTa]eH_Lsk@az@sZea@iIiKeKeN_OyRaaAcqAofAkvA_cA}qAkb@cj@caDchEwW{\\_jBk`CqgBaaCmlB{aCqjAimAij@ii@kK_KsN}Lqq@al@oXeVokCk|BgsFsyEmHoGmpDs}Cad@s`@mcCiwB}`CqrB{f@}b@imAoeA{LyKaGgFwUoSgrAeiAaLqJeYoVycC}uBgNiM}JeJsb@__@iM{Kgg@ec@wTsRihA}|@kiAyx@m`@kV{_CeyAw~BexAsUyN{lFucDs~AgaAwQcL_u@oe@aJuFkf@sYuRuL}OmJuh@w[a~@ae@acAa`@q{@qViRuDiZ_GqYwEsYkDum@uHom@cGgjBqScZiDo@IoeAuL}\\eEcv@aHkEa@uzGgu@cuAoP{WwCsDYer@gFwiAs@gx@~Aqs@pE{VxCm\\|Dob@rHcdAdUgdBt_@oOpDeVlFmhAnVuaBx^c]`I}cAdU_}Ax]umCfk@sk@tNo\\jIgfBp`@i[`HygAfV__@|HwKlCg_B|]cwBbe@or@pOyAZ{Bf@cVlFmzC|p@{KdCaDr@w`@bIy`@nGyM`BqQxBuJlAun@tDes@bBwq@k@gGEij@}ByAMC?oa@oDwEs@cdAcOye@uK_w@iUyHyCgs@qXyi@{ViR{IeQsIsUqKcz@{a@}XiNwwAsq@{LoFaJgEy}BmgAwb@oSiwAer@wE}B{vAar@udDi~AqiGkxCgaAae@wKkFoB_A}\\gPgGwCqpCwrAqv@u_@ad@qTa|@oa@kmBc_A}PkIkEwBeVoLasAao@mRaJqXqM}{@ya@sY}NkMuG{E_Ca{@_`@e~Ci{AyVyL_SeKuvAwp@ewAsq@kDaBe~@ic@gj@yWm~Eu_Ckx@_`@ekEwtB{FsCcU}KgFcCoZ{NgfEuqBoKgFofByz@{{CqxA{dA}f@ouAcg@e_Beb@}EeAys@sOyy@gLcTeCur@oGut@oEmVc@yR[oOUe^Qa]Xm_@^{ZnAyWtAw`@tBotAhNqgAnMukElj@uFr@m`BlSeeBnTqfAxPsx@rPc_AtVo|@rXi_At_@iBr@qRvIcx@da@_v@hc@m}AzcAeb@tX{QbM}zBt{Akv@lh@qjA`w@qZrSub@rY_dAjr@e}@dl@w]pSo^jQe@TePfIqY~La_@~M_UbHeS|F{p@vOmbA~Qsa@lHmh@fJauDno@wt@hMsqDfn@gMbC_uAfVycAfQiEt@gdE`t@{nBx\\{nBhZuv@nIo^dDibB|Kqw@jCo|A~BgaEzCsuAbAelBrAshDvCoSRy^xBqoAxHoiBfWm_@hJw~Aj`@}`@rKuwCzw@mhDb~@_iBtf@eBd@gRnFgeDf}@qjBvg@g}Avb@{mBjg@{k@~OcVtGqGfBslDh_AogAzYc\\~Gcf@~Juu@jKgqAzIgv@@sd@wA{Jq@sy@{Foi@yHqj@uHoQmD{j@{Kw_AsQyOwCotFidA_yFofAei@{Hu`@gFk^iDqi@cDm_@iAk_@Qya@t@_\\hAa\\lBaXjC}BTu^fFsZhF}e@dKs_@pJw[hJkgBzl@imGzuBgk@lRu`EztAwXjJo|DrqAqe@xOaUvFkq@xPak@vJcf@|Fos@rFq`@xA{b@XmZEao@sBgi@yDiVcCaf@eHkd@}Iab@aKwHiBu[wI_HuBafAc\\gXmIa`DqaAccAc[{o@eSoj@iQyTaHeEuA}{A_e@aW_IiiGqmBMEu~GovBoiBsj@g]eK}aCkv@ieDadAslAc_@yNoEwfAq\\e\\_K}V{HgP_F_hAo]}]sKgEqAeT_HgdAgZm\\iJc_@oKsbAqXia@{Ka\\sIgvCct@oQoEkWeFyjAiU{rAwWyhE}p@yTkDyuEcf@{k@eGytDc`@a^{D}sOwfBkcBoRq~BuUeQiBayc@i_FaPyAooNe~Ai[aEaKcA{OaBqvKsjAsjB_SiN{A}cBuRsXkCeiB}Ri}BeYytGwq@_iBkSei@wFk^yDuWqCyqCaZggAqLsBUkUiC{a@sEuj@mGsyBiVe`@iE_I}@{UyCil@iGkh@qFuyCi\\weC_Yqq@qJyhA_RkjBs`@qcAeXgcAkZgq@uUcq@uVkq@}X}p@_Zq}@mc@iTeLqg@_Xs{B{rAi~AecAs}AwfAklAoz@oVqQcxA_fAcQyKiu@gi@eGiE}NsKkO}Kgm@cc@qVmQafJkxGykAqy@{gAqz@mdAceAo_AilAgo@w~@gj@aaAu`AglBu{@orBcsAi|CsTqh@yrJyzTcJ_Ry_CipFqx@w}Ag~@y{AuiBcxB}jAueAid@k]yd@g\\wzBknAob@uT{|Ayv@qJoFiSyJwIyEk`Aqh@ggAgw@wjAu~@ksAogAmS{Oa]sWeeCanBexEswDggDuhCmV}Ti]k\\{`@sb@a`@ge@y\\wc@m[ee@q\\kh@o\\uk@sq@grAwuCczFcSq`@kyCo_G_MiV{Su_@aTy^gVs`@mUy\\od@mn@mQsToReUic@yd@{x@gz@g`Ba`BwRiSm_AeaA_MkLu[m[cEcEoS}Rsf@wf@iM}LgQcQ_JoJm{@c{@}{@}{@glBilBmKmKqrFwrFwd@md@ke@ub@cHaHeImG{RuOcMiJaZsT}\\mTc^kS}LoGaj@gYir@k^qCwAuo@y\\uRgKsUyMwV}LmTyK_l@}Ygt@e_@mWoNiXwMop@}\\am@k[}f@qWqH{D}g@}Wkq@u\\c{@eh@cNeJeJoG{YiSoZ_VeLqJuJwIsj@{g@c}@u~@m]ea@q\\oc@y\\yc@i[yd@iWo`@oWsb@aWwc@iRw]{OoZsOy[_[eq@s[ev@g]m|@gXav@yv@y_CkC}Huk@cfBmvAsoEggFmyO{Nua@gLq[kJsWy[u`Aoe@ewA}|@{nCeX{x@uHeU{DmL{ZabAAI{K{]iBkGo^_nAm\\}nAwFcTgMef@cVcaAyC}LeGkVsJ}a@w_@ebBe\\kzAig@_{BoFyUqJob@eQau@{Qss@cKg_@_Qsl@mQuk@yQak@{Rcj@yn@s_Bcq@q{A_xAkjCk|AezBgrAy{AeoAcmAomFcnEwaAyv@gP}MkbBktA}gBuyAeUiRqp@ij@kc@m^uN{K}XiU{fAw|@_sAcjAscAez@ugFugEukAeaAqlAkaAad@u_@mz@yr@ic@ua@oYyZyZ_]uYq^ci@mt@e[me@oPyXuVec@ePm[_Xih@mN_[a_@o{@gVcn@ydIowSupC_cHqXcp@mVgi@_^ss@a[sj@c_@}m@c]qg@e[ob@w[w`@{^_b@_`@{`@em@}i@}r@{i@}YoSwZaRqz@ad@__@gPwZwLi~Agh@ynAu`@ehAe^i{Bgs@gSoGugCez@ulAkc@s{CmlAyg@gVihEasAe[{JkeC}x@aIiCmfFm~Ak`Csq@_cCyv@inEevAokAqa@a`@iQgVsMkOiIe[wQqKqHi[sTs[iW{ZuWcy@_w@wt@cy@wk@yw@u\\{g@u_@on@e]_n@a\\kp@_KiTuIuRyS{f@aJiUyGwQoQif@qImVks@wrB_hCejHku@awB}fCcjH{Yw|@ac@c{AyM}h@kRa{@oTcgAmb@}bCiTcqAwGi`@oGm^y`@o_CyaA}~Fqs@}gEop@}wD_m@w`D{SafAwq@}yCkZcoAu_@s{Ain@agCu~@orDy]wuAi_@qzAu~@esDeq@alCeqAciFwLgf@ad@icBmb@}wAme@mwAc{@mzBij@sqAks@gzAkR{]iPcZme@sx@mVeb@q}@}zAegAojBy`@ur@ioAiuBa`Ai~Ak[sh@qY_i@gkAmoBa_BglCqb@gt@soAkqBmmAqkBiaA_sA_o@mw@ct@a|@kaB{pBejBwyBe}@}eAun@_w@_fAwuAox@{qAa~@whB}s@{eBe[y|@w_Ae{CkCuIqJk[kn@spBcMub@}Jc]eHuUmg@a_ByhCwmIihAypDcg@kaBoG}SoDgLyu@}dCw_@ceAo_@g}@sWwi@qVgd@kVqb@_We^oWo]_Xq\\ysCa{Cq]aa@{Vw[y\\oh@iPaZeRe_@eTod@_MyZ}Pud@wJsZyK{]wJs_@gH{YsNaw@uHch@y_@qqCkKst@uJim@qNqw@}UeeAqFoQgFgPoKi\\qPoc@k\\yu@gPk[uOsWyNaUaOoScOeSoP{Qq[a\\k\\}YwS_Sg]iYuoAegAo[wXiJyIwb@uc@iXu]oV}\\}S_^cVei@}j@wtAq|CgiJk`Bu|E{FcR}s@quBaZqu@ec@}_Aci@keAwc@ss@ih@oy@co@uz@mk@{n@g@i@ct@gu@yuAwfAugDatBkeD}fBy`D{gBq~@gh@kt@ab@{_DueBo_@gTuo@q_@ifBybAccBsdAm`BmjAc}@ys@{MoKqc@c_@_g@ib@qjB}eBwoAynAepAytAepAqzA_xAikBoeAyzA_lA_jB}tCirEmxAg{BsxB}gDyNcUsdAicBij@{_Aoc@e|@aNoZ}GyNmGmMuj@_tAyIaSao@{~AuUwl@ux@woBoaBi`E{k@mnAerBooDw_DcfFgyEorHi_Da`FmyAgjCub@{z@gw@oiBg`@udAcz@miC{y@}jCokBmdGy|CckJ_yB_xGqn@ceByWkp@oVuj@{Xwj@id@i|@oIwMgJcOc~Ac`CecDk|DiiB}zB{`@}e@krGs{H_g@}l@yiBkyBa{EkuFqfAunAktA}_B}jB{zBatD{nEut@u}@__DgwD{eAspAknBc`Ccc@{h@ogA_sAef@kk@{PuSq[a`@eP_R}Wo\\cUcYgDeEeMiOo`AiiA{b@og@kyAcmBiw@sqAkYai@aWeg@mQw`@aDeHqY_r@e[iy@kU}r@qS}p@_[wkAgOso@gM{k@}TslA}TwuA{dB{iL}n@okEio@kmEqfAenH}mA{mIsj@mwDek@kyD{PudAu^siBaYkjAyBcJoTkx@ok@ahB{]m}@of@yjA{R}a@at@oqA{Yie@st@}eAuuAomByNaSgLkPibJceMiS_YyWeb@oH{MiKeR}w@}~AwQka@if@ynA}e@qwAaTku@qZqiAuBiJCKmKce@eO}t@qFiWuGi^aK{l@wT_|A_w@usFiEu[mc@weDuB_Pm@oE{QymA{Naz@cJie@cGa[_Qax@qZ_lA}[wgA{`@ajAg[kz@eLuWoImRu`@u|@un@_jAsp@{fA}r@i_A{v@i}@maAigAiPwQ}dAqjA}iA{oAo{AaaB_jEc|E_hAqkAm]_`@aj@cm@_fDwrDoYq]qY_\\ynAarAkrA_yAijBisBqgEyxEqTcVo`BogBagAelAiIyIcI}Ick@yn@ma@mc@mg@of@ga@{]cLsI{ViRsc@gZgd@qWef@qWgc@qQoc@qO_f@yOcg@_M_i@yJgf@yG_g@iFqg@sBmi@sByg@Pie@~@iOt@yS`B}Nn@mThCcQ`BaTtDwl@nKaTtE__@nK_NxEiZfK_SvHyWfLw\\nOa|CzwAmShKqO~HkcCxnAc{DlkBieC~mAwXbOc_@jPyjAhg@sv@hYuy@xSmf@xJmnA|LolAjDesAqBia@oC}|@sKovE}dAeyAe]_`@_Jy_@_Joq@cQex@{QkXsG_q@gPkl@sNeu@eQudAmVy_@cJuu@oQkoEyeAk{HeiB{b@aKeg@eNqHiB_OoDaNuDaOgFqJ_EkKcFgKmGeIiFeJuHcLmKkI_JeKuLyG_JwJaOsIoOyIyPmHmPeJsUeIaV_HwWwGaYiFoXmEiXgFw]kMo~@id@oaDeVmhBcLkw@{Es\\kpAu~IaDkVcTk`B}t@}iFgrBywN}wF_aa@a]mdCwP}mAiYwtBoZwxBeRouAuAyKyFcg@oFgg@mBiTuEum@gFa~@oC}u@uBaeAw@eoAXebBdAceEh@{kFfAonDKsnBXwpC`Cg|HXs~Dh@uzBd@ovAFg\\^ikB??Pol@b@mo@VoTz@k]vBsm@vDmw@pCad@nCe\\rIkz@rIkl@|Wa}AhUwjA~i@gyCb\\weBjTwjAzb@u|B~ByL~_@ktBbRucAzNyiAtFko@rF_~@rC__Az@}j@DwfAq@ad@wAg`@gEav@cEqe@g@wFqIou@uGqd@qD{Sy@}EsNmq@_R}u@kf@{lBwCcNmHg]kK}r@_Iik@gGcp@cGm~@yByu@{Aco@Tir@`BgaAxHeeDtG{oEzBafCpCanDd@i^~Eo~D|JebK"},{"ref":"A 115; E 51","mode":"driving","weight":569.975,"distance":17145.604,"geometry":"eddwbBqay|WvEqbAvDiv@pD}g@h@wHdEme@fPexApEye@lB_]fAk]^o]Io]o@m]yAe]aCy\\gDi\\mEu[eFmYgGuXgHwWeIuVaJsUoI_RuJwQqIeN_JiMmHcJwJoKoIaIqO}LmUgOkQiKyr@w`@iT_MeZ{PcuAmw@_vBylAcxAqx@q`A{h@mpDmsBsUmOk[qQwkBceAuQ{K_Q}LuQ_NwOcOuPuPyn@sp@g]m^yiAonA{T{UkaD_hDwrAywAmYqZa~BwdCov@iy@sW{YuNiRmOmTaNmTaMoTyMcWwLqVsKoWoKqXeLm\\}IaYwIkZuHwZ}Hw]iHa^}Hoa@oNus@iU}lAyMur@qHi`@_p@ygDke@mgCec@{}BuE_Vg{@}nEsOqy@_jAecGw[o{AyRms@g]ucAwYys@q\\aq@o[{h@y]}f@c\\y`@o\\s\\yn@{h@}y@}f@_e@mSuj@{Ow_@eJ_f@mG}j@{Bc_FpDanBP}eBtCwbBbAiyKvGk^_Bk`@qGc[oJa\\wKea@iV_IkF_SoPoYeXiZi^eTk]}fAewBax@s|Ae[mj@gXa_@_N{ReMuMwLeLsFuD{J{Hc]iV}UyIaScHmPmFmj@qKq\\aEiW}AqyG~Guc@r@mwBhAsRJuPQgUa@wMy@wM}@gGg@a\\yEkNkDoL{DoFsB_b@wPoU{Kan@c]wk@{[ef@qX}tCi_Bm\\iT{d@}VuCcBoVmQ{PoOsOkPeOiQePiTmNeTsNiVwLsVmLeXkMkZcJuW{G_UyGaV{GyYoGiZ{Fm[cIse@}rBm|MsPohAg}@ccGeFc]aKsm@eHu^oHq]cHyY{H{ZyHkZmIgXcK{ZyJyYkL_\\mMk[mLuWkMeWcN}UwH{MuEgImAwBaOsW{PeU{NmSuPmTuT_X{TgXkp@wt@kbAqkA}rAm}AkOaQ}rAm}AkmDidEijCw}C}Wo[eCwCe]y`@iQgQqLiLyLkJoOgJiQyJsQgJ_SeI}RsGiT{DgRkDkOeBcLc@iOa@oQKkLTqPl@uh@fHoZ`EiN|AoGt@g@Dw]tEmOrBaGr@}PtB","duration":605.227,"driving_side":"right","duration_typical":605.227,"weight_typical":569.975,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 16 onto A 115 toward Berlin-Zentrum (Zoo)/Zehlendorf/Potsdam-Zentrum.","modifier":"slight right","bearing_after":99,"bearing_before":93,"location":[13.071401,52.300371]},"speedLimitUnit":"km/h","destinations":"A 115: Berlin-Zentrum (Zoo), Zehlendorf, Potsdam-Zentrum","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 115 / E 51"},"distanceAlongGeometry":17145.604},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"A 115 / E 51"},"distanceAlongGeometry":1609.344}],"exits":"16","voiceInstructions":[{"ssmlAnnouncement":"Continue for 11 miles.","announcement":"Continue for 11 miles.","distanceAlongGeometry":17105.604},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 115.","announcement":"In 1 mile, Keep left to stay on A 115.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 115.","announcement":"In a half mile, Keep left to stay on A 115.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 115, E 51.","announcement":"Keep left to stay on A 115, E 51.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[13.071401,52.300371],"geometry_index":5697,"admin_index":4,"weight":6.213,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":6.729,"bearings":[93,99,273],"out":1,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[104,283],"duration":7.422,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":6.865,"geometry_index":5700,"location":[13.074022,52.300082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,285],"duration":11.098,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":9.986,"geometry_index":5704,"location":[13.076841,52.299581]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,250],"duration":5.863,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":5.277,"geometry_index":5713,"location":[13.081158,52.2998]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,231],"duration":10.543,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":9.488,"geometry_index":5718,"location":[13.083129,52.300535]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":3.637,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":3.273,"geometry_index":5728,"location":[13.085424,52.30266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":1.477,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.328,"geometry_index":5729,"location":[13.085964,52.303489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":1.871,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":1.686,"geometry_index":5730,"location":[13.086188,52.30383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":5.711,"turn_weight":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.141,"geometry_index":5731,"location":[13.086474,52.304265]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.087377,52.305643],"geometry_index":5732,"admin_index":4,"weight":8.104,"is_urban":false,"turn_weight":1,"duration":7.9,"bearings":[22,191,202],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":23.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.215,"geometry_index":5733,"location":[13.088622,52.307547]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,204],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.635,"geometry_index":5737,"location":[13.092339,52.313223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":16.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.09,"geometry_index":5738,"location":[13.092636,52.313677]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.029,"geometry_index":5745,"location":[13.095762,52.317619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":5.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.043,"geometry_index":5746,"location":[13.096265,52.318103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.445,"geometry_index":5747,"location":[13.097537,52.3193]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,213],"duration":17.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.076,"geometry_index":5748,"location":[13.097903,52.31965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.695,"geometry_index":5750,"location":[13.102028,52.323588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.4,"geometry_index":5751,"location":[13.102469,52.324011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,244],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.98,"geometry_index":5770,"location":[13.113029,52.330593]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.967,"geometry_index":5771,"location":[13.114276,52.33095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.27,"geometry_index":5772,"location":[13.115103,52.331187]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.115636,52.33134],"geometry_index":5773,"admin_index":4,"weight":6.5,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.033,"bearings":[65,83,245],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.118337,52.332124],"geometry_index":5774,"admin_index":4,"weight":6.127,"is_urban":false,"turn_weight":1,"duration":5.703,"bearings":[65,234,245],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":5.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.781,"geometry_index":5775,"location":[13.12052,52.332738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.863,"geometry_index":5776,"location":[13.12255,52.333317]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":8.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.789,"geometry_index":5777,"location":[13.122918,52.333424]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":2.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.139,"geometry_index":5778,"location":[13.126245,52.334388]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":68.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":61.906,"geometry_index":5779,"location":[13.127182,52.334654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":6.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.229,"geometry_index":5797,"location":[13.140926,52.348355]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.140917,52.350132],"geometry_index":5798,"admin_index":4,"weight":5.701,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.355,"bearings":[180,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":6.229,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.754,"geometry_index":5799,"location":[13.140842,52.351779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":35.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":33.801,"geometry_index":5800,"location":[13.140808,52.353375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,203],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.676,"geometry_index":5806,"location":[13.141614,52.362438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,204],"duration":13.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.223,"geometry_index":5807,"location":[13.141732,52.362598]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,226],"duration":10.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.359,"geometry_index":5812,"location":[13.145325,52.365269]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,219],"duration":5.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.316,"geometry_index":5816,"location":[13.148349,52.367277]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.149417,52.368518],"geometry_index":5821,"admin_index":4,"weight":27.455,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.199,"bearings":[16,30,205],"out":0,"in":2,"turn_duration":0.041,"classes":["motorway"],"entry":[true,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,358],"duration":2.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.152,"geometry_index":5828,"location":[13.150056,52.375563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":7.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.398,"geometry_index":5829,"location":[13.15003,52.37615]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.149993,52.378077],"geometry_index":5830,"admin_index":4,"weight":5.633,"is_urban":false,"turn_weight":1,"duration":4.76,"bearings":[168,179,359],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,184],"duration":0.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.936,"geometry_index":5834,"location":[13.150042,52.379266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.539,"geometry_index":5835,"location":[13.150073,52.379502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,185],"duration":4.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.096,"geometry_index":5836,"location":[13.150093,52.379634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":6.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.814,"geometry_index":5840,"location":[13.15044,52.380681]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.151412,52.382354],"geometry_index":5843,"admin_index":4,"weight":14.732,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.514,"bearings":[21,37,201],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[24,177,201],"duration":1.719,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.625,"geometry_index":5846,"location":[13.153824,52.386096]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,204],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.648,"geometry_index":5847,"location":[13.154165,52.386567]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,206],"duration":36.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.633,"geometry_index":5850,"location":[13.154893,52.387624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":9.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.436,"geometry_index":5868,"location":[13.16987,52.393036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":21.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.58,"geometry_index":5869,"location":[13.174032,52.394032]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.666,"geometry_index":5885,"location":[13.181153,52.396938]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":9.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.617,"geometry_index":5886,"location":[13.181317,52.397045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.053,"geometry_index":5892,"location":[13.183196,52.398511]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":4.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.984,"geometry_index":5893,"location":[13.1836,52.398861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":5.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.609,"geometry_index":5894,"location":[13.18446,52.399651]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.185685,52.400729],"geometry_index":5895,"admin_index":4,"weight":6.955,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.34,"bearings":[34,51,215],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.187196,52.402072],"geometry_index":5896,"admin_index":4,"weight":2.393,"is_urban":false,"turn_weight":1,"duration":1.473,"bearings":[34,204,214],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":6.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.586,"geometry_index":5897,"location":[13.187485,52.402334]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,214],"duration":26.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.391,"geometry_index":5898,"location":[13.188996,52.403677]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.068,"geometry_index":5900,"location":[13.194693,52.408696]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.344,"geometry_index":5901,"location":[13.195149,52.409095]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,215],"duration":22.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.375,"geometry_index":5902,"location":[13.195225,52.409162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,352],"duration":3.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.068,"geometry_index":5919,"location":[13.197541,52.414043]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":3.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.15,"geometry_index":5920,"location":[13.197393,52.41471]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.695,"geometry_index":5922,"location":[13.197249,52.415395]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.197219,52.415551],"geometry_index":5924,"admin_index":5,"weight":3.873,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.893,"bearings":[17,173,352],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,353],"duration":0.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.639,"geometry_index":5926,"location":[13.197054,52.416306]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[173,353],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":5927,"location":[13.197028,52.416435]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 7 miles.","announcement":"Continue for 7 miles.","distanceAlongGeometry":10483.636},{"ssmlAnnouncement":"In 1 mile, Take exit 1.","announcement":"In 1 mile, Take exit 1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 1.","announcement":"In a half mile, Take exit 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 1 onto A 100 toward Hamburg, Wedding.","announcement":"Take exit 1 onto A 100 toward Hamburg, Wedding.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.196969,52.416722],"geometry_index":5928,"admin_index":5,"weight":5.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.445,"bearings":[173,350,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":22.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.367,"geometry_index":5930,"location":[13.196708,52.417721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,352],"duration":4.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.465,"geometry_index":5933,"location":[13.195789,52.421872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.195613,52.422697],"geometry_index":5935,"admin_index":5,"weight":13.117,"is_urban":false,"turn_weight":1,"duration":12.143,"bearings":[163,173,348],"out":2,"in":1,"turn_duration":0.026,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,315],"duration":30.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":29.664,"geometry_index":5944,"location":[13.193558,52.424777]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[9,17,188],"duration":15.605,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.195,"geometry_index":5963,"location":[13.191857,52.430526]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,192],"duration":7.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.061,"geometry_index":5971,"location":[13.192727,52.433786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,212],"duration":10.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.869,"geometry_index":5976,"location":[13.193781,52.435179]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":12.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.508,"geometry_index":5981,"location":[13.195908,52.436893]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[38,214,218],"duration":2.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.465,"geometry_index":5986,"location":[13.198492,52.438927]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":2.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.107,"geometry_index":5987,"location":[13.199054,52.439369]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":5.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.494,"geometry_index":5988,"location":[13.199531,52.439743]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":0.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.93,"geometry_index":5990,"location":[13.200803,52.440763]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":68.361,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":63.234,"geometry_index":5991,"location":[13.201032,52.440943]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.393,"geometry_index":5997,"location":[13.216907,52.453513]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":41.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.502,"geometry_index":5998,"location":[13.217274,52.453798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.705,"geometry_index":6002,"location":[13.227066,52.461543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":24.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.775,"geometry_index":6003,"location":[13.227518,52.461901]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,217],"duration":4.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.178,"geometry_index":6006,"location":[13.233238,52.466423]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.234365,52.467282],"geometry_index":6007,"admin_index":5,"weight":9.01,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.318,"bearings":[36,49,219],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":1.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.24,"geometry_index":6009,"location":[13.236738,52.469187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":9.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.256,"geometry_index":6010,"location":[13.237073,52.46945]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[37,199,218],"duration":72.596,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":67.133,"geometry_index":6012,"location":[13.239319,52.471223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,218],"duration":1.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.029,"geometry_index":6020,"location":[13.256642,52.485941]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":17.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.965,"geometry_index":6021,"location":[13.256875,52.486134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,218],"duration":0.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.449,"geometry_index":6023,"location":[13.260805,52.489222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":5.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.662,"geometry_index":6024,"location":[13.260907,52.4893]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":0.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.664,"geometry_index":6025,"location":[13.262155,52.490297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":22.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.092,"geometry_index":6026,"location":[13.262298,52.490411]},{"bearings":[38,218],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6029,"location":[13.267063,52.494177]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hamburg"},{"type":"text","text":"/"},{"type":"text","text":"Wedding"}],"type":"off ramp","modifier":"right","text":"Hamburg / Wedding"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"100","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 100"}],"type":"off ramp","modifier":"right","text":"Exit 1 A 100"},"distanceAlongGeometry":10510.303}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 115/E 51.","modifier":"slight left","bearing_after":350,"bearing_before":353,"location":[13.196969,52.416722]},"speedLimitSign":"vienna","name":"","weight_typical":398.242,"duration_typical":420.562,"duration":420.562,"distance":10510.303,"driving_side":"right","weight":398.242,"mode":"driving","ref":"A 115; E 51","geometry":"clg~bBqindXo]~G}^hF_C\\m}@vL_`Evi@yTvCw\\fEuGxAeKpCoVbMwOxLaKfJsJdLwN|R}Qr[oIbS{LvU{G|M{G|LmMrScNfQcPtOeHnFgHxEkIlE}GpCcLzD{MvCeMxA}Kl@qIEyMu@wd@_G}u@eMaeA_Pkt@gLe^mFg[iF}Ci@wHoAyZ{Ea[kGkSiFyPuHcXeOmQwMwM}L}IiJyLwNgG{H}FwHus@uaAmW{]}Xu_@yWq^oWe^kZ{a@oWe^sZcb@kVy\\wg@ur@_VyZgJiMwbBu|BmrCiyD}sCg{DmsCizDg~B{_DypBwnCyP}U_bDwlEkuBytCsm@az@a{CkdEkUg[}gDutEk`@yi@ioA_dBut@meA_Yw]a|AqtBmO}SkfAsyAmf@wp@qz@yhAwf@op@kgEsaFchGsiHe|@adAso@uw@{l@qv@kfEy{FaKqMk{Bc}CscAovA{CkEi}@_mAcF}Gm|AauBcdAsvAygAc{AgYi`@{MuQ"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take A 100.","announcement":"In a quarter mile, Keep left to take A 100.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Keep left to take A 100 toward Hamburg, Wedding.","announcement":"Keep left to take A 100 toward Hamburg, Wedding.","distanceAlongGeometry":126.667}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[30,45,217],"duration":19.516,"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":1,"weight":20.967,"geometry_index":6031,"location":[13.267895,52.494835]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,219],"duration":4.32,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":4.752,"geometry_index":6034,"location":[13.271298,52.497349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":3.363,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":3.701,"geometry_index":6035,"location":[13.272013,52.497899]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,217],"duration":14.342,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":15.775,"geometry_index":6036,"location":[13.272523,52.498304]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":0.301,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":0.33,"geometry_index":6052,"location":[13.275495,52.49945]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[68,84,262],"duration":2.889,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":1,"weight":3.168,"geometry_index":6053,"location":[13.275565,52.499456]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":9.66,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":10.627,"geometry_index":6055,"location":[13.276273,52.499493]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[72,251,260],"duration":5.434,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":6.074,"geometry_index":6060,"location":[13.278627,52.499655]},{"bearings":[55,241],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6064,"location":[13.279759,52.499959]}],"exits":"1","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hamburg"},{"type":"text","text":"/"},{"type":"text","text":"Wedding"}],"type":"fork","modifier":"left","text":"Hamburg / Wedding"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"100","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 100"}],"type":"fork","modifier":"left","text":"A 100"},"distanceAlongGeometry":1095.766}],"destinations":"A 100: Hamburg, Wedding, Zentrum, Messedamm ICC","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 1 onto A 100 toward Hamburg/Wedding.","modifier":"slight right","bearing_after":45,"bearing_before":37,"location":[13.267895,52.494835]},"speedLimitSign":"vienna","name":"AVUS Nordkurve","weight_typical":69.604,"duration_typical":63.564,"duration":63.564,"distance":1095.766,"driving_side":"right","weight":69.604,"mode":"driving","geometry":"e~_ccBmzxhXkIcPct@sdAs|A}|Bka@uk@iX{^yNuSiHuKuDuGuEmJyCuGoBsFkC{HqBqHkBqIyAeIyAuJkAmI}@yJ_AkLi@mLg@_NKkC[cJm@c`@YgQ_Amp@s@qVaA{UsB_`@iB}OcCeQqDmQ_EePmCeJmDuJqGmN"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Take exit 6.","announcement":"In 1 mile, Take exit 6.","distanceAlongGeometry":1986.243},{"ssmlAnnouncement":"In a half mile, Take exit 6.","announcement":"In a half mile, Take exit 6.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 6 toward Spandauer Damm. Then Turn right onto Spandauer Damm.","announcement":"Take exit 6 toward Spandauer Damm. Then Turn right onto Spandauer Damm.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,44,228],"duration":3.709,"turn_duration":0.048,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":4.117,"geometry_index":6067,"location":[13.280372,52.500254]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,203],"duration":8.881,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":9.99,"geometry_index":6070,"location":[13.280811,52.500729]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,183],"duration":1.377,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":1.549,"geometry_index":6083,"location":[13.280695,52.502039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,194],"duration":3.176,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":5,"out":0,"weight":3.574,"geometry_index":6084,"location":[13.280741,52.502154]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.280876,52.502407],"geometry_index":6086,"admin_index":5,"weight":35.533,"is_urban":true,"turn_weight":11.75,"duration":21.164,"bearings":[37,199,214],"out":0,"in":1,"turn_duration":0.023,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,188],"duration":4.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.104,"geometry_index":6096,"location":[13.282773,52.504559]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,180],"duration":29.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":33.291,"geometry_index":6098,"location":[13.282814,52.50512]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,202],"duration":8.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":9.963,"geometry_index":6105,"location":[13.2846,52.508617]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":7.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.182,"geometry_index":6107,"location":[13.285266,52.509644]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,202],"duration":6.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.047,"geometry_index":6108,"location":[13.285822,52.510485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,190],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.836,"geometry_index":6111,"location":[13.286135,52.511245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.286217,52.511557],"geometry_index":6112,"admin_index":5,"weight":18.459,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":16.801,"bearings":[9,31,189],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.286467,52.514265],"geometry_index":6117,"admin_index":5,"weight":9.811,"is_urban":true,"turn_weight":0.5,"duration":8.486,"bearings":[153,173,350],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[164,337],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":7.92,"geometry_index":6119,"location":[13.286182,52.515029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,326],"duration":12.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":13.971,"geometry_index":6121,"location":[13.285712,52.515625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,325],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":2.764,"geometry_index":6124,"location":[13.284549,52.516516]},{"bearings":[145,331],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6125,"location":[13.284297,52.516736]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight","slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"6"},{"type":"text","text":"Spandauer Damm"}],"type":"off ramp","modifier":"right","text":"Exit 6 Spandauer Damm"},"distanceAlongGeometry":2006.243}],"destinations":"A 100: Hamburg, Wedding, Flughafen Tegel","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 100 toward Hamburg/Wedding.","modifier":"slight left","bearing_after":35,"bearing_before":48,"location":[13.280372,52.500254]},"speedLimitSign":"vienna","name":"","weight_typical":177.691,"duration_typical":148.299,"duration":148.299,"distance":2006.243,"driving_side":"right","weight":177.691,"mode":"driving","ref":"A 100","geometry":"{pjccBgfqiXoLiN_GqFeGqCsDsA_Hs@iE@qEZ}Ex@iEpAaEfAmD|@mFdAaEZaEAwC?iD_@eF{AqG}BgFoCcs@w~@uFeG{IyIyJwIcJwG}F{CsGgCuF}AuGwA}Fo@eJgA{VIqVq@gOkAiPkCuJgCiLiF}PiJouBmoAku@cb@yHoEqs@wa@iL{EmNmFwQgDoRcDsd@oHc_@aEyi@yCwg@j@}NjB_XhFwUnIsVtOsLtK{NzPkXdc@mMrQwLvNgFhFoJdH"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right onto Spandauer Damm.","announcement":"Turn right onto Spandauer Damm.","distanceAlongGeometry":100}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[154,336,358],"duration":9.52,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.037,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":2,"weight":10.432,"geometry_index":6127,"location":[13.284033,52.517036]},{"entry":[false,true],"in":0,"bearings":[165,347],"duration":4.479,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":1,"weight":4.926,"geometry_index":6130,"location":[13.283729,52.51798]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.283515,52.51842],"geometry_index":6132,"admin_index":5,"weight":0.742,"is_urban":true,"mapbox_streets_v8":{"class":"secondary_link"},"traffic_signal":true,"turn_duration":2,"duration":2.676,"bearings":[160,346],"out":1,"in":0,"entry":[false,true]},{"bearings":[84,166,265,346],"entry":[false,false,false,true],"in":1,"turn_weight":1,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":5,"out":3,"geometry_index":6133,"location":[13.283506,52.518442]}],"exits":"6","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Spandauer Damm"}],"type":"turn","modifier":"right","text":"Spandauer Damm"},"distanceAlongGeometry":170.343}],"destinations":"Spandauer Damm","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 6 toward Spandauer Damm.","modifier":"slight right","bearing_after":358,"bearing_before":334,"location":[13.284033,52.517036]},"speedLimitSign":"vienna","name":"","weight_typical":19.326,"duration_typical":18.705,"duration":18.705,"distance":170.343,"driving_side":"right","weight":19.326,"mode":"driving","geometry":"wikdcBakxiXwPZoVlIwPtFaMjDmL~Fk@P{C`A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":1098.412},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Otto-Suhr-Allee.","announcement":"In a quarter mile, Bear right onto Otto-Suhr-Allee.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Otto-Suhr-Allee.","announcement":"Bear right onto Otto-Suhr-Allee.","distanceAlongGeometry":101.818}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.283473,52.51852],"geometry_index":6134,"admin_index":5,"weight":17.244,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":3.004,"turn_weight":15,"duration":5.043,"bearings":[84,166,267,345],"out":0,"in":1,"entry":[true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":4.818,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.279,"geometry_index":6135,"location":[13.283718,52.518535]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":2.539,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.271,"geometry_index":6136,"location":[13.284303,52.518572]},{"entry":[true,false],"in":1,"bearings":[77,264],"duration":5.564,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.619,"geometry_index":6137,"location":[13.284612,52.518592]},{"entry":[true,false,true],"in":1,"bearings":[85,247,266],"duration":13.287,"turn_weight":0.75,"turn_duration":0.023,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":15.34,"geometry_index":6139,"location":[13.285325,52.518741]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[85,264],"duration":0.947,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.543,"geometry_index":6141,"location":[13.286351,52.518801]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[13.286427,52.518805],"geometry_index":6142,"admin_index":5,"weight":1.334,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":2.758,"bearings":[84,265],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.286492,52.518809],"geometry_index":6143,"admin_index":5,"weight":3.293,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":1,"duration":2.104,"bearings":[84,264],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.286659,52.51882],"geometry_index":6144,"admin_index":5,"weight":3.033,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.4,"bearings":[86,170,264,351],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false],"in":1,"bearings":[84,266],"duration":0.484,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.512,"geometry_index":6145,"location":[13.286834,52.518828]},{"mapbox_streets_v8":{"class":"secondary"},"location":[13.286896,52.518832],"geometry_index":6146,"admin_index":5,"weight":10.592,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":11.174,"bearings":[85,264],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":4.412,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.354,"geometry_index":6148,"location":[13.28805,52.518899]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":11.748,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":13.402,"geometry_index":6149,"location":[13.288608,52.518931]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":2.502,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.23,"geometry_index":6150,"location":[13.290088,52.519018]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":1.49,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.139,"geometry_index":6151,"location":[13.29038,52.519038]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":0.379,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.896,"geometry_index":6152,"location":[13.290557,52.51905]},{"entry":[false,true,false],"in":2,"bearings":[69,92,264],"duration":9.525,"turn_weight":1.9,"turn_duration":0.011,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":12.365,"geometry_index":6153,"location":[13.290601,52.519053]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":5.035,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.516,"geometry_index":6156,"location":[13.291693,52.519096]},{"entry":[true,false],"in":1,"bearings":[84,263],"duration":1.164,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.273,"geometry_index":6158,"location":[13.292268,52.519139]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":1.219,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.32,"geometry_index":6159,"location":[13.2924,52.519147]},{"entry":[true,false],"in":1,"bearings":[85,265],"duration":0.686,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.732,"geometry_index":6160,"location":[13.292527,52.519154]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":20.533,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":23.086,"geometry_index":6161,"location":[13.292598,52.519158]},{"entry":[true,false],"in":1,"bearings":[86,264],"duration":6.666,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.834,"geometry_index":6162,"location":[13.294867,52.519293]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":1.352,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.467,"geometry_index":6165,"location":[13.2956,52.519329]},{"entry":[true,true,false,false],"in":2,"bearings":[82,173,264,353],"duration":3.871,"turn_weight":1.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.732,"geometry_index":6166,"location":[13.295742,52.519338]},{"entry":[true,false,false,true],"in":2,"bearings":[85,175,262,353],"duration":1.133,"turn_weight":1.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.738,"geometry_index":6167,"location":[13.29619,52.519374]},{"entry":[true,false],"in":1,"bearings":[84,265],"duration":0.357,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.371,"geometry_index":6168,"location":[13.296339,52.519382]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":13.051,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":14.855,"geometry_index":6169,"location":[13.29639,52.519385]},{"entry":[true,false],"in":1,"bearings":[85,266],"duration":9.512,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.939,"geometry_index":6171,"location":[13.298099,52.519482]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.29895,52.519525],"geometry_index":6172,"admin_index":5,"weight":6.896,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":0.5,"duration":5.824,"bearings":[87,265],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[13.29926,52.519535],"geometry_index":6173,"admin_index":5,"weight":2.023,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":3.385,"bearings":[87,267],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.299327,52.519537],"geometry_index":6174,"admin_index":5,"weight":5.264,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":3.885,"bearings":[87,267],"out":0,"in":1,"entry":[true,false]},{"bearings":[108,175,267,353],"entry":[true,true,false,false],"in":2,"turn_weight":7,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6175,"location":[13.299528,52.519543]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Otto-Suhr-Allee"}],"type":"turn","modifier":"slight right","text":"Otto-Suhr-Allee"},"distanceAlongGeometry":1108.412},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Otto-Suhr-Allee"}],"type":"turn","modifier":"slight right","text":"Otto-Suhr-Allee"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Spandauer Damm.","modifier":"right","bearing_after":84,"bearing_before":346,"location":[13.283473,52.51852]},"speedLimitSign":"vienna","name":"Spandauer Damm","weight_typical":212.271,"duration_typical":159.49,"duration":159.49,"distance":1108.412,"driving_side":"right","weight":212.271,"mode":"driving","geometry":"ofndcBahwiX]iNiAqc@g@iRkAuP}E{Y_Byr@WiKGwCGaCUmIO}IG{BeAee@_A}`@_A{a@mDo{Ag@gQWaJEwA\\}JkBks@G}BgAg[MuFOgGM}FGmCmGylCm@{^QoHGmCQ{GgA_[OiHEeBwC_nAi@yZuAet@SkRCeCKqKdAkJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1614.72},{"ssmlAnnouncement":"In a quarter mile, Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2.","announcement":"In a quarter mile, Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2, Mitte.","announcement":"Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2, Mitte.","distanceAlongGeometry":127.778}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.29971,52.519508],"geometry_index":6176,"admin_index":5,"weight":3.98,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.014,"turn_weight":2,"duration":1.814,"bearings":[119,175,288,353],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[117,299],"duration":0.434,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.457,"geometry_index":6177,"location":[13.299872,52.519453]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":1.246,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.871,"geometry_index":6178,"location":[13.299917,52.519439]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.568,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.525,"geometry_index":6179,"location":[13.30003,52.519403]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":7.062,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.268,"geometry_index":6181,"location":[13.300457,52.519267]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.838,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.914,"geometry_index":6182,"location":[13.301124,52.519052]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.145,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.238,"geometry_index":6183,"location":[13.301204,52.519026]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":6.42,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.055,"geometry_index":6184,"location":[13.301331,52.518987]},{"entry":[true,false],"in":1,"bearings":[116,297],"duration":0.338,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.871,"geometry_index":6185,"location":[13.30208,52.518754]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":1.02,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.113,"geometry_index":6186,"location":[13.302114,52.518744]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.562,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.697,"geometry_index":6187,"location":[13.302228,52.518707]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":0.521,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.566,"geometry_index":6188,"location":[13.302351,52.518669]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":14.572,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":16.529,"geometry_index":6189,"location":[13.302388,52.518657]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":8.742,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.117,"geometry_index":6190,"location":[13.303499,52.518306]},{"entry":[true,false],"in":1,"bearings":[118,296],"duration":3.607,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.961,"geometry_index":6193,"location":[13.304166,52.518099]},{"entry":[true,true,false,true],"in":2,"bearings":[117,176,298,356],"duration":6.818,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.48,"geometry_index":6194,"location":[13.304434,52.518013]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":4.199,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.119,"geometry_index":6195,"location":[13.304881,52.517873]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":6.6,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.76,"geometry_index":6196,"location":[13.30515,52.517788]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.4,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.039,"geometry_index":6197,"location":[13.305583,52.517645]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.199,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.119,"geometry_index":6198,"location":[13.305678,52.517614]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.305945,52.517527],"geometry_index":6199,"admin_index":5,"weight":5.293,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":0.5,"duration":4.365,"bearings":[119,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[113,298],"duration":0.568,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.125,"geometry_index":6201,"location":[13.306245,52.51743]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.306291,52.517418],"geometry_index":6202,"admin_index":5,"weight":3.709,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.011,"turn_weight":1,"duration":2.475,"bearings":[120,293],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.306454,52.517361],"geometry_index":6203,"admin_index":5,"weight":3.785,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.022,"turn_weight":1.5,"duration":2.1,"bearings":[117,176,300,358],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false,false,true],"in":2,"bearings":[117,176,297,358],"duration":2.117,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.822,"geometry_index":6204,"location":[13.306653,52.517299]},{"mapbox_streets_v8":{"class":"secondary"},"location":[13.306879,52.517229],"geometry_index":6205,"admin_index":5,"weight":1.684,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":2.629,"bearings":[118,297],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.117,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.729,"geometry_index":6206,"location":[13.306938,52.51721]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":5.096,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.098,"geometry_index":6207,"location":[13.307052,52.517174]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.744,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.318,"geometry_index":6209,"location":[13.307592,52.517003]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":1.26,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.865,"geometry_index":6210,"location":[13.307664,52.51698]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":6.463,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.602,"geometry_index":6211,"location":[13.307798,52.516939]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":3.607,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.461,"geometry_index":6212,"location":[13.308478,52.516726]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":4.725,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.689,"geometry_index":6213,"location":[13.308859,52.516607]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":0.875,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.455,"geometry_index":6214,"location":[13.309361,52.516452]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":4.096,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.006,"geometry_index":6215,"location":[13.309459,52.516422]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.30989,52.516286],"geometry_index":6216,"admin_index":5,"weight":2.139,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":0.5,"duration":1.496,"bearings":[118,297],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.31005,52.516235],"geometry_index":6218,"admin_index":5,"weight":4.277,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":2.986,"bearings":[118,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.310359,52.516136],"geometry_index":6219,"admin_index":5,"weight":2.109,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.019,"turn_weight":0.5,"duration":1.482,"bearings":[117,298],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.310525,52.516085],"geometry_index":6220,"admin_index":5,"weight":1.84,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":0.771,"bearings":[117,297],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":2.297,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.52,"geometry_index":6221,"location":[13.310619,52.516056]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":5.135,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.141,"geometry_index":6222,"location":[13.310899,52.515968]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":3.838,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.699,"geometry_index":6224,"location":[13.311514,52.515767]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":2.08,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.279,"geometry_index":6225,"location":[13.311977,52.515621]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":3.389,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.221,"geometry_index":6226,"location":[13.312224,52.515545]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.48,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.42,"geometry_index":6227,"location":[13.312628,52.515413]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":1.418,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.061,"geometry_index":6228,"location":[13.313164,52.515243]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.879,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.961,"geometry_index":6229,"location":[13.313339,52.515187]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":4.732,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.197,"geometry_index":6230,"location":[13.313441,52.515154]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":9.225,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.648,"geometry_index":6231,"location":[13.313712,52.515066]},{"entry":[true,false],"in":1,"bearings":[117,298],"duration":11.475,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":13.123,"geometry_index":6232,"location":[13.314249,52.514892]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"secondary"},"location":[13.314923,52.514681],"geometry_index":6234,"admin_index":5,"weight":1.738,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":0.5,"duration":3.125,"bearings":[119,297],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.314983,52.514661],"geometry_index":6235,"admin_index":5,"weight":2.98,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1,"duration":1.807,"bearings":[118,299],"out":0,"in":1,"entry":[true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.315089,52.514627],"geometry_index":6236,"admin_index":5,"weight":2.926,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":1.5,"duration":1.305,"bearings":[28,119,201,298],"out":1,"in":3,"entry":[false,true,true,false]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.315199,52.51459],"geometry_index":6237,"admin_index":5,"weight":2.65,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.053,"bearings":[18,118,199,299],"out":1,"in":3,"entry":[true,true,false,false]},{"entry":[false,true,false,false],"in":3,"bearings":[23,117,203,298],"duration":0.6,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.639,"geometry_index":6238,"location":[13.315311,52.514554]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":1.393,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.033,"geometry_index":6239,"location":[13.315371,52.514535]},{"entry":[true,false],"in":1,"bearings":[117,297],"duration":8.246,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.57,"geometry_index":6240,"location":[13.315531,52.514486]},{"entry":[true,true,false],"in":2,"bearings":[117,207,297],"duration":4.768,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.738,"geometry_index":6242,"location":[13.316462,52.514199]},{"entry":[true,false],"in":1,"bearings":[118,297],"duration":1.975,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.672,"geometry_index":6243,"location":[13.317002,52.514029]},{"entry":[false,true,false,false],"in":3,"bearings":[25,117,206,298],"duration":1.18,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.277,"geometry_index":6244,"location":[13.317218,52.51396]},{"entry":[true,true,true,false],"in":3,"bearings":[23,110,206,297],"duration":2.191,"turn_weight":1,"turn_duration":0.03,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":3.377,"geometry_index":6245,"location":[13.317343,52.513921]},{"entry":[false,true,false,false],"in":3,"bearings":[23,109,201,290],"duration":7.701,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":9.447,"geometry_index":6246,"location":[13.317473,52.513892]},{"entry":[true,true,false],"in":2,"bearings":[105,199,287],"duration":5.779,"turn_weight":0.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.836,"geometry_index":6248,"location":[13.317917,52.513804]},{"entry":[true,false],"in":1,"bearings":[103,285],"duration":3.84,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.725,"geometry_index":6249,"location":[13.318264,52.513747]},{"entry":[true,true,false],"in":2,"bearings":[104,194,283],"duration":10.328,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":11.852,"geometry_index":6250,"location":[13.318498,52.513713]},{"entry":[true,true,false],"in":2,"bearings":[105,193,284],"duration":5.527,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.572,"geometry_index":6251,"location":[13.319108,52.513623]},{"entry":[false,true,false],"in":2,"bearings":[15,105,285],"duration":4.568,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"weight":5.516,"geometry_index":6252,"location":[13.319431,52.513569]},{"entry":[true,true,false],"in":2,"bearings":[110,176,285],"duration":4.33,"turn_weight":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.252,"geometry_index":6253,"location":[13.319699,52.513524]},{"entry":[true,false],"in":1,"bearings":[113,290],"duration":4.08,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.988,"geometry_index":6254,"location":[13.319951,52.513469]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.320189,52.513408],"geometry_index":6255,"admin_index":5,"weight":11.061,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.008,"turn_weight":0.5,"duration":9.607,"bearings":[115,176,293],"out":0,"in":2,"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.320725,52.513251],"geometry_index":6259,"admin_index":5,"weight":4.244,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.02,"turn_weight":0.75,"duration":3.197,"bearings":[25,133,296],"out":1,"in":2,"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.320889,52.513159],"geometry_index":6262,"admin_index":5,"weight":2.164,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.017,"turn_weight":1,"duration":1.076,"bearings":[48,147,229,313],"out":1,"in":3,"entry":[false,true,false,false]},{"bearings":[42,172,221,327],"entry":[false,true,false,false],"in":3,"turn_weight":1,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.037,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6263,"location":[13.320928,52.513123]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Tiergarten"}],"degrees":260,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Mitte / Tiergarten"},"distanceAlongGeometry":1631.386}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Otto-Suhr-Allee.","modifier":"slight right","bearing_after":119,"bearing_before":108,"location":[13.29971,52.519508]},"speedLimitSign":"vienna","name":"Otto-Suhr-Allee","weight_typical":343.572,"duration_typical":267.611,"duration":267.611,"distance":1631.386,"driving_side":"right","weight":343.572,"mode":"driving","geometry":"gdpdcB{~vjXlBcIZyAfAaFlEgS`AmElLuh@r@_DlA}FpMym@RcAhAcFjAuFViA|TmdAfGcYlBiJf@gCjDwOvG}ZhDyO|GaZ|@}DlDuOlDgORoAV{ApBeIzBmKjCcMd@uBfAcFlDiPfDmOl@oCpAkGhLoi@lFyVtHk^z@cEnG}YdA{E^cBdEiRdBkIx@{DnDoPjGuXdCwKbH}[vCmNfGgXrIo`@nB}I`AkEnD}OzIq`@`Job@bAsEf@wBbAsEhA{EfA_Fd@wB`B_ItN{q@fAiFrIw`@hCoLlAyFx@cG`AcHlBsQpBuTbAsMrDce@jBeSxAwOlBwNxB{MrAkHpCqN`@uBp@{CvBeGBCz@}@fAmA~@o@lAc@bCM|BL"},{"destinations":"B 2, B 5: Mitte, Tiergarten","ref":"B 2; B 5","mode":"driving","weight":39.129,"distance":232.407,"geometry":"uhcdcBso`lX`CnCxBpBhC|AhCh@rB@lBMtAS~Bo@lBaAvBiBlBqBdB_C|AkCjAqCnA_EfAyEj@mDZiDRcFFuE?aFIgGYiEi@}FqAiI{AqG}A_Fs@oAsAmBcBiBaCuB","duration":30.492,"driving_side":"right","duration_typical":30.492,"weight_typical":39.129,"name":"","speedLimitSign":"vienna","maneuver":{"type":"rotary","exit":3,"instruction":"Enter Ernst-Reuter-Platz and take the 3rd exit toward B 2/B 5/Mitte/Tiergarten.","modifier":"slight right","bearing_after":210,"bearing_before":174,"location":[13.32097,52.512923]},"speedLimitUnit":"km/h","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Tiergarten"}],"degrees":260,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Mitte / Tiergarten"},"distanceAlongGeometry":232.407}],"rotary_name":"Ernst-Reuter-Platz","intersections":[{"entry":[false,true,false],"in":2,"bearings":[44,210,354],"duration":3.416,"turn_weight":6.125,"turn_duration":0.082,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":9.791,"geometry_index":6267,"location":[13.32097,52.512923]},{"entry":[false,true,true],"in":0,"bearings":[28,183,231],"duration":5.957,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left","right"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.122,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":1,"weight":6.418,"geometry_index":6270,"location":[13.320794,52.512728]},{"entry":[true,false,false],"in":2,"bearings":[143,297,339],"duration":6.469,"turn_duration":0.056,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":7.055,"geometry_index":6277,"location":[13.320899,52.512324]},{"entry":[true,true,false],"in":2,"bearings":[94,117,293],"duration":4.686,"turn_duration":0.077,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":5.068,"geometry_index":6285,"location":[13.32154,52.512021]},{"entry":[true,false,true],"in":1,"bearings":[74,269,351],"duration":6.965,"turn_duration":0.052,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":7.604,"geometry_index":6289,"location":[13.322006,52.512012]},{"bearings":[36,218,239],"entry":[true,false,false],"in":2,"turn_duration":0.097,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6294,"location":[13.322648,52.51218]}],"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 2, Mitte.","announcement":"Exit the roundabout toward B 2, Mitte.","distanceAlongGeometry":94.444}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on B 2, B 5 for 1 mile.","announcement":"Continue on B 2, B 5 for 1 mile.","distanceAlongGeometry":1796.387},{"ssmlAnnouncement":"In a quarter mile, Enter Großer Stern and take the 2nd exit toward B 2.","announcement":"In a quarter mile, Enter Großer Stern and take the 2nd exit toward B 2.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Großer Stern and take the 2nd exit toward B 2, Potsdamer Platz.","announcement":"Enter Großer Stern and take the 2nd exit toward B 2, Potsdamer Platz.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[13,44,213],"duration":1.695,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.848,"geometry_index":6298,"location":[13.322855,52.512363]},{"entry":[true,false],"in":1,"bearings":[52,224],"duration":3,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.301,"geometry_index":6299,"location":[13.323001,52.512455]},{"entry":[true,false,false,false],"in":2,"bearings":[63,175,234,356],"duration":0.492,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.527,"geometry_index":6304,"location":[13.323296,52.512594]},{"entry":[true,false,false,false],"in":2,"bearings":[71,175,243,353],"duration":1.33,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.451,"geometry_index":6305,"location":[13.323351,52.512611]},{"entry":[true,true,false,true],"in":2,"bearings":[84,110,251,355],"duration":18.287,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":20.098,"geometry_index":6307,"location":[13.323501,52.512642]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":1.693,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.842,"geometry_index":6309,"location":[13.326475,52.512843]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,264,353],"duration":1.693,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.842,"geometry_index":6311,"location":[13.326774,52.512862]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":8.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.24,"geometry_index":6312,"location":[13.327068,52.512882]},{"entry":[true,true,false],"in":2,"bearings":[84,173,264],"duration":11.779,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":12.936,"geometry_index":6314,"location":[13.328509,52.512976]},{"entry":[true,false,false,true],"in":2,"bearings":[86,203,264,353],"duration":0.682,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.742,"geometry_index":6316,"location":[13.32995,52.513067]},{"entry":[true,false],"in":1,"bearings":[82,266],"duration":2.9,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.99,"geometry_index":6317,"location":[13.329998,52.513069]},{"entry":[true,false,false,false],"in":2,"bearings":[84,176,262,355],"duration":2.482,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.723,"geometry_index":6318,"location":[13.33006,52.513074]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.330226,52.513084],"geometry_index":6319,"admin_index":5,"weight":4.326,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":1,"duration":3.043,"bearings":[84,160,228,264,353],"out":0,"in":3,"entry":[true,true,false,false,true]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":6.58,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.072,"geometry_index":6320,"location":[13.330536,52.513104]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[85,264],"duration":0.568,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.611,"geometry_index":6321,"location":[13.33131,52.513153]},{"entry":[true,false,false],"in":2,"bearings":[84,113,265],"duration":2.672,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.852,"geometry_index":6322,"location":[13.331347,52.513155]},{"entry":[true,false,false,false],"in":2,"bearings":[85,173,264,353],"duration":0.967,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.018,"geometry_index":6324,"location":[13.331559,52.513169]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.331628,52.513173],"geometry_index":6325,"admin_index":5,"weight":1.33,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":0.5,"duration":0.791,"bearings":[84,265,353],"out":0,"in":1,"entry":[true,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,353],"duration":0.791,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.83,"geometry_index":6327,"location":[13.331723,52.513179]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,264,353],"duration":1.562,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.658,"geometry_index":6328,"location":[13.331811,52.513185]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":1.982,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.111,"geometry_index":6330,"location":[13.331991,52.513197]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":14.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":16.066,"geometry_index":6331,"location":[13.332252,52.513214]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":3.818,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.105,"geometry_index":6332,"location":[13.334268,52.513349]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[84,264],"duration":5.672,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.098,"geometry_index":6333,"location":[13.334784,52.513384]},{"entry":[false,true,false,false],"in":3,"bearings":[3,84,183,264],"duration":0.564,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.586,"geometry_index":6335,"location":[13.335547,52.513435]},{"entry":[false,true,false,false],"in":3,"bearings":[1,84,179,264],"duration":0.346,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.352,"geometry_index":6336,"location":[13.335614,52.513439]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.335659,52.513442],"geometry_index":6337,"admin_index":5,"weight":1.908,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.019,"turn_weight":0.5,"duration":1.328,"bearings":[84,264,356],"out":0,"in":1,"entry":[true,false,false]},{"entry":[true,true,false],"in":2,"bearings":[11,83,264],"duration":0.676,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.703,"geometry_index":6338,"location":[13.335777,52.51345]},{"entry":[false,true,false,false],"in":3,"bearings":[10,83,189,263],"duration":0.662,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.703,"geometry_index":6339,"location":[13.335833,52.513454]},{"entry":[false,true,false,false],"in":3,"bearings":[11,87,191,263],"duration":0.336,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":0.352,"geometry_index":6340,"location":[13.335897,52.513459]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[84,267],"duration":2.436,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.617,"geometry_index":6341,"location":[13.33593,52.51346]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":0.982,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.055,"geometry_index":6342,"location":[13.336266,52.513483]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":1.637,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.76,"geometry_index":6343,"location":[13.336398,52.513492]},{"entry":[true,true,false],"in":2,"bearings":[83,175,265],"duration":8.312,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.912,"geometry_index":6344,"location":[13.336623,52.513505]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,263,353],"duration":1.971,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.111,"geometry_index":6346,"location":[13.337739,52.513585]},{"entry":[true,true,false,true],"in":2,"bearings":[82,176,264,355],"duration":1.016,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.068,"geometry_index":6348,"location":[13.338004,52.513603]},{"entry":[true,false],"in":1,"bearings":[82,262],"duration":0.744,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.801,"geometry_index":6349,"location":[13.338128,52.513613]},{"entry":[true,false,false,false],"in":2,"bearings":[90,175,262,353],"duration":34.895,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":37.498,"geometry_index":6350,"location":[13.338217,52.513621]},{"entry":[true,false],"in":1,"bearings":[84,256],"duration":1.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.201,"geometry_index":6354,"location":[13.342328,52.513906]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":18.992,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":20.418,"geometry_index":6355,"location":[13.342461,52.513915]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,263,353],"duration":12.918,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":13.879,"geometry_index":6356,"location":[13.3447,52.514071]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":8.938,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.832,"geometry_index":6357,"location":[13.346229,52.514173]},{"entry":[true,false],"in":1,"bearings":[83,264],"duration":6.703,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.373,"geometry_index":6358,"location":[13.347287,52.514243]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[84,263],"duration":2.607,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.867,"geometry_index":6359,"location":[13.348075,52.514299]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,355],"duration":0.764,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.818,"geometry_index":6361,"location":[13.348387,52.51432]},{"bearings":[94,175,264,353],"entry":[true,false,false,false],"in":2,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6362,"location":[13.348469,52.514325]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Potsdamer Platz"},{"type":"text","text":"/"},{"type":"text","text":"Mitte"}],"degrees":179,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Potsdamer Platz / Mitte"},"distanceAlongGeometry":1813.054}],"destinations":"B 2, B 5: Mitte, Tiergarten","speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout toward B 2/B 5/Mitte/Tiergarten.","modifier":"slight right","bearing_after":44,"bearing_before":33,"location":[13.322855,52.512363]},"speedLimitSign":"vienna","name":"Straße des 17. Juni","weight_typical":231.078,"duration_typical":212.756,"duration":212.756,"distance":1813.054,"driving_side":"right","weight":231.078,"mode":"driving","ref":"B 2; B 5","geometry":"uebdcBmedlXwDcHw@yAqAaDeByFCGa@oAa@mBg@sCUwCcKeqDMuFUqIOcGg@kQK_EoDasAcDmoAQsHC_BI{BSkIg@kRaBko@CiASoHGwBGiCEcBEyAKoDCiAS}Ga@iOmG_}BeAg_@{Aoj@IeCGeCEyAOkFGoBI_CAaAm@_TQgGYaMwC{`AG{BOcFSmHSwFOqDAeABgc@yLm_EaCaYQiGwH}jCkEq~AkCcaAoBgp@a@oNG_CIcDCqD@eF^aF|@yEdAcFbD{L"},{"destinations":"B 2, B 5: Potsdamer Platz, Mitte, Reichstag","ref":"B 2; B 5","mode":"driving","weight":21.197,"distance":147.915,"geometry":"cvedcB}uwmX`CeDrB_EbBwEpAkF\\{B^}Bh@eGRwGAyG[kI[_CQwAeAaGq@oC{@gC_A_CeAuBkAmBqAcBuAwAyAkA","duration":18.736,"driving_side":"right","duration_typical":18.736,"weight_typical":21.197,"name":"Straße des 17. Juni","speedLimitSign":"vienna","maneuver":{"type":"rotary","exit":2,"instruction":"Enter Großer Stern and take the 2nd exit toward B 2/B 5/Potsdamer Platz/Mitte.","modifier":"slight right","bearing_after":137,"bearing_before":121,"location":[13.349231,52.514162]},"speedLimitUnit":"km/h","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"2","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 2"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 5"},{"type":"delimiter","text":"/"},{"type":"text","text":"Potsdamer Platz"},{"type":"text","text":"/"},{"type":"text","text":"Mitte"}],"degrees":179,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 2 / B 5 / Potsdamer Platz / Mitte"},"distanceAlongGeometry":147.915}],"rotary_name":"Großer Stern","intersections":[{"entry":[true,false,false],"in":1,"bearings":[137,301,335],"duration":5.697,"turn_weight":0.75,"turn_duration":0.02,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":6.994,"geometry_index":6368,"location":[13.349231,52.514162]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[107,301],"duration":1.938,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"weight":2.133,"geometry_index":6373,"location":[13.349698,52.513933]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.349892,52.513896],"geometry_index":6375,"admin_index":5,"weight":6.131,"is_urban":true,"mapbox_streets_v8":{"class":"roundabout"},"yield_sign":true,"out":0,"in":2,"turn_duration":0.056,"duration":5.631,"bearings":[92,137,287],"entry":[true,true,false]},{"bearings":[53,203,251],"entry":[true,false,false],"in":2,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.071,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6381,"location":[13.350576,52.513959]}],"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 2, Potsdamer Platz.","announcement":"Exit the roundabout toward B 2, Potsdamer Platz.","distanceAlongGeometry":100}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1744.482},{"ssmlAnnouncement":"In a quarter mile, Turn right toward Mitte.","announcement":"In a quarter mile, Turn right toward Mitte.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right toward Mitte, Potsdamer Platz.","announcement":"Turn right toward Mitte, Potsdamer Platz.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[15,49,214],"duration":2.049,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.234,"geometry_index":6389,"location":[13.351026,52.514248]},{"entry":[true,false],"in":1,"bearings":[55,229],"duration":3.322,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":3.656,"geometry_index":6390,"location":[13.351276,52.514378]},{"entry":[true,false,false,false],"in":2,"bearings":[76,175,244,355],"duration":0.477,"turn_duration":0.015,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.508,"geometry_index":6394,"location":[13.351736,52.514543]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,256,355],"duration":16.812,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":18.48,"geometry_index":6395,"location":[13.351808,52.514554]},{"entry":[true,false,false,false],"in":2,"bearings":[84,172,264,352],"duration":15.988,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":17.166,"geometry_index":6396,"location":[13.354482,52.514725]},{"entry":[true,false,true],"in":1,"bearings":[84,264,353],"duration":10.604,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":11.377,"geometry_index":6397,"location":[13.357019,52.514887]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,353],"duration":2.756,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.941,"geometry_index":6398,"location":[13.359181,52.515027]},{"entry":[true,false,false,false],"in":2,"bearings":[84,175,264,355],"duration":2.756,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.941,"geometry_index":6399,"location":[13.359744,52.515063]},{"entry":[true,false,false,false],"in":2,"bearings":[84,173,264,353],"duration":19.1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":20.512,"geometry_index":6400,"location":[13.360302,52.515099]},{"entry":[true,true,false,true],"in":2,"bearings":[84,168,264,353],"duration":11.785,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":12.648,"geometry_index":6402,"location":[13.364197,52.515351]},{"entry":[true,false,false,true],"in":2,"bearings":[84,175,264,353],"duration":16.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":17.631,"geometry_index":6403,"location":[13.366161,52.515479]},{"entry":[true,false,true],"in":1,"bearings":[84,264,351],"duration":1.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.074,"geometry_index":6404,"location":[13.368562,52.515633]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":7.801,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.385,"geometry_index":6405,"location":[13.368637,52.515638]},{"entry":[true,false],"in":1,"bearings":[85,264],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.805,"geometry_index":6406,"location":[13.369208,52.515675]},{"entry":[false,true,false,false],"in":3,"bearings":[7,84,187,265],"duration":1.02,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.074,"geometry_index":6408,"location":[13.369607,52.515698]},{"entry":[false,true,false,false],"in":3,"bearings":[7,85,187,264],"duration":2.619,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.795,"geometry_index":6410,"location":[13.369681,52.515703]},{"entry":[true,false,true],"in":1,"bearings":[84,265,356],"duration":1.818,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.936,"geometry_index":6411,"location":[13.369874,52.515714]},{"entry":[true,false,false,false],"in":2,"bearings":[83,175,264,353],"duration":0.676,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.703,"geometry_index":6412,"location":[13.370041,52.515724]},{"entry":[true,false,false,false,false],"in":3,"bearings":[84,175,208,263,353],"duration":13.426,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":14.424,"geometry_index":6413,"location":[13.370105,52.515729]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[84,264],"duration":8.182,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":8.795,"geometry_index":6415,"location":[13.371302,52.515807]},{"entry":[true,false,false,false],"in":2,"bearings":[84,182,264,359],"duration":50.582,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":54.355,"geometry_index":6416,"location":[13.372033,52.515855]},{"bearings":[84,173,264,353],"entry":[true,false,false,false],"in":2,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6418,"location":[13.376564,52.516145]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Potsdamer Platz"}],"type":"turn","modifier":"right","text":"Mitte / Potsdamer Platz"},"distanceAlongGeometry":1761.148},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Mitte"},{"type":"text","text":"/"},{"type":"text","text":"Potsdamer Platz"}],"type":"turn","modifier":"right","text":"Mitte / Potsdamer Platz"},"distanceAlongGeometry":402.336}],"destinations":"B 2, B 5: Potsdamer Platz, Mitte, Reichstag","speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout toward B 2/B 5/Potsdamer Platz/Mitte.","modifier":"slight right","bearing_after":49,"bearing_before":34,"location":[13.351026,52.514248]},"speedLimitSign":"vienna","name":"Straße des 17. Juni","weight_typical":211.422,"duration_typical":196.43,"duration":196.43,"distance":1761.148,"driving_side":"right","weight":211.422,"mode":"driving","ref":"B 2; B 5","geometry":"o{edcBcf{mXcGsNwCeIsAaFsAuHIy@UoCuIcfDcIq}CwGcfCgAeb@gA{a@EoAqN}oF_GwyBsHauCIuCiAub@e@uSGgCGqBAa@UaKSmII_CCwAwCagA_Bul@yP}tGIgDIyCCu@EsB"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Turn left onto Behrenstraße.","announcement":"In 600 feet, Turn left onto Behrenstraße.","distanceAlongGeometry":179.314},{"ssmlAnnouncement":"Turn left onto Behrenstraße, B 5.","announcement":"Turn left onto Behrenstraße, B 5.","distanceAlongGeometry":88.889}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.376726,52.516155],"geometry_index":6421,"admin_index":5,"weight":4.971,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":1.051,"turn_weight":2,"duration":3.75,"bearings":[83,162,264,353],"out":1,"in":2,"entry":[true,true,false,false]},{"entry":[false,true,false,false],"in":3,"bearings":[82,133,263,342],"duration":16.738,"turn_duration":0.178,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":18.217,"geometry_index":6424,"location":[13.376795,52.516029]},{"bearings":[2,185],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6438,"location":[13.377455,52.515391]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active_direction":"left","active":true,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Behrenstraße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"5","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 5"}],"type":"turn","modifier":"left","text":"Behrenstraße / B 5"},"distanceAlongGeometry":195.981}],"destinations":"Mitte, Potsdamer Platz, Kreuzberg, Unter den Linden","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right toward Mitte/Potsdamer Platz.","modifier":"right","bearing_after":162,"bearing_before":84,"location":[13.376726,52.516155]},"speedLimitSign":"vienna","name":"Ebertstraße","weight_typical":40.408,"duration_typical":36.508,"duration":36.508,"distance":195.981,"driving_side":"right","weight":40.408,"mode":"driving","ref":"B 5","geometry":"uridcBklmoXbCs@XI|AkAbAsAXa@|@_BbAmC~@eEpByH`BqDx@_BhAwAfAs@fAa@hBUhBA~GR~h@zD`GN"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue on Behrenstraße for a half mile.","announcement":"Continue on Behrenstraße for a half mile.","distanceAlongGeometry":1047.533},{"ssmlAnnouncement":"In a quarter mile, Turn right onto Markgrafenstraße.","announcement":"In a quarter mile, Turn right onto Markgrafenstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right onto Markgrafenstraße.","announcement":"Turn right onto Markgrafenstraße.","distanceAlongGeometry":46.667}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[3,94,183],"duration":6.875,"lanes":[{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["left"],"valid_indication":"left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"turn_duration":5.275,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.721,"geometry_index":6440,"location":[13.377353,52.51459]},{"entry":[true,true,false,false],"in":3,"bearings":[1,91,183,274],"duration":0.805,"turn_weight":1.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.342,"geometry_index":6441,"location":[13.377467,52.514585]},{"entry":[false,true,false,false],"in":3,"bearings":[1,91,182,271],"duration":1.104,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":1.178,"geometry_index":6442,"location":[13.377536,52.514584]},{"entry":[false,true,false,false],"in":3,"bearings":[6,84,186,271],"duration":2.689,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":1,"weight":2.861,"geometry_index":6443,"location":[13.37764,52.514583]},{"entry":[true,false,false],"in":2,"bearings":[84,179,264],"duration":7.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":7.74,"geometry_index":6445,"location":[13.377893,52.5146]},{"entry":[true,false,false],"in":2,"bearings":[84,177,264],"duration":3.932,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.305,"geometry_index":6446,"location":[13.378569,52.514645]},{"entry":[true,false],"in":1,"bearings":[78,264],"duration":6,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.6,"geometry_index":6447,"location":[13.378929,52.514669]},{"entry":[true,true,false,false],"in":2,"bearings":[72,162,253,344],"duration":5.887,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.453,"geometry_index":6450,"location":[13.37957,52.514768]},{"entry":[true,false,false],"in":1,"bearings":[73,252,342],"duration":0.541,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.586,"geometry_index":6454,"location":[13.380183,52.514888]},{"entry":[true,true,false],"in":2,"bearings":[71,162,253],"duration":0.422,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.439,"geometry_index":6455,"location":[13.380237,52.514898]},{"entry":[true,false,true],"in":1,"bearings":[73,251,348],"duration":1.607,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.76,"geometry_index":6456,"location":[13.380276,52.514906]},{"entry":[true,false],"in":1,"bearings":[72,253],"duration":6.133,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":6.746,"geometry_index":6457,"location":[13.380442,52.514937]},{"entry":[true,false,false],"in":2,"bearings":[72,162,252],"duration":3.74,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":4.107,"geometry_index":6458,"location":[13.381088,52.515063]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.381488,52.515141],"geometry_index":6462,"admin_index":5,"weight":8.049,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.012,"turn_weight":1.5,"duration":5.965,"bearings":[80,162,252,342],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false],"in":1,"bearings":[84,264],"duration":9.555,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":10.51,"geometry_index":6466,"location":[13.382117,52.515195]},{"entry":[true,true,false],"in":2,"bearings":[84,173,264],"duration":0.988,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.066,"geometry_index":6468,"location":[13.38313,52.515264]},{"entry":[true,false,true],"in":1,"bearings":[83,264,353],"duration":0.713,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":0.762,"geometry_index":6469,"location":[13.383238,52.515271]},{"entry":[true,false,true],"in":1,"bearings":[84,263,353],"duration":9.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":9.9,"geometry_index":6470,"location":[13.383308,52.515276]},{"entry":[true,false,true],"in":1,"bearings":[84,264,355],"duration":2.234,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":2.438,"geometry_index":6471,"location":[13.384259,52.515333]},{"entry":[true,true,false],"in":2,"bearings":[84,169,264],"duration":14.23,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":15.631,"geometry_index":6475,"location":[13.384499,52.515349]},{"entry":[true,false,true],"in":1,"bearings":[83,264,351],"duration":1.158,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":1.25,"geometry_index":6477,"location":[13.385594,52.515419]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[84,263],"duration":4.926,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":5,"out":0,"weight":5.42,"geometry_index":6478,"location":[13.385676,52.515425]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.386057,52.515451],"geometry_index":6481,"admin_index":5,"weight":21.08,"is_urban":true,"mapbox_streets_v8":{"class":"street"},"turn_duration":0.019,"turn_weight":2,"duration":17.365,"bearings":[84,172,264,353],"out":0,"in":2,"entry":[true,true,false,true]},{"entry":[true,false,true],"in":1,"bearings":[84,264,355],"duration":5.746,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":7.301,"geometry_index":6484,"location":[13.387619,52.515556]},{"entry":[true,true,false],"in":2,"bearings":[32,84,264],"duration":7.219,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":8.92,"geometry_index":6485,"location":[13.388135,52.515591]},{"mapbox_streets_v8":{"class":"street"},"geometry_index":6486,"admin_index":5,"weight":2.801,"is_urban":true,"location":[13.388774,52.515634],"stop_sign":true,"out":0,"in":1,"turn_duration":0.019,"turn_weight":1,"duration":1.656,"bearings":[85,264,306],"entry":[true,false,true]},{"entry":[true,false,false],"in":2,"bearings":[84,175,265],"duration":1.328,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":2.439,"geometry_index":6488,"location":[13.38892,52.515642]},{"entry":[true,false,true,false,true],"in":3,"bearings":[85,166,183,264,353],"duration":2.943,"turn_weight":4,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":7.217,"geometry_index":6489,"location":[13.389037,52.515649]},{"entry":[true,false,false],"in":2,"bearings":[85,189,265],"duration":3.395,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":4.713,"geometry_index":6490,"location":[13.389221,52.515659]},{"entry":[true,false],"bearings":[85,265],"duration":22.725,"turn_weight":1,"in":1,"yield_sign":true,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":26.566,"geometry_index":6492,"location":[13.389435,52.51567]},{"entry":[true,false,false,false],"in":2,"bearings":[84,160,265,339],"duration":6.361,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":9.135,"geometry_index":6495,"location":[13.390922,52.515748]},{"entry":[true,false,false],"in":2,"bearings":[84,175,264],"duration":11.848,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":14.307,"geometry_index":6498,"location":[13.391466,52.515785]},{"bearings":[84,264,356],"entry":[true,false,true],"in":1,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6500,"location":[13.392473,52.515853]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Markgrafenstraße"}],"type":"turn","modifier":"right","text":"Markgrafenstraße"},"distanceAlongGeometry":1065.276}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Behrenstraße/B 5. Continue on Behrenstraße.","modifier":"left","bearing_after":91,"bearing_before":183,"location":[13.377353,52.51459]},"speedLimitSign":"vienna","name":"Behrenstraße","weight_typical":213.311,"duration_typical":181.641,"duration":181.641,"distance":1065.276,"driving_side":"right","weight":213.311,"mode":"driving","ref":"B 5","geometry":"{pfdcBqsnoXHcF@iC@oEGeCYsJyAgi@o@oUq@mMgBmQk@eFu@{GW}BWyBiCuTSkBOmA}@kI{Fkg@_AiIKaAGa@gAqJo@oJEmAA]s@mWWqJqBwr@MwEIkCqBmz@AUEqBGyBO}EC{@gCqaAKcDOuFCu@_@mMWiJE_BsDirAeAg_@uA}f@IaEEaBMiFSoJEmBO}HmCusACw@IoEWiJCu@m@_TcCw{@CeAu@{X"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Turn left onto Mohrenstraße.","announcement":"In a quarter mile, Turn left onto Mohrenstraße.","distanceAlongGeometry":386.9},{"ssmlAnnouncement":"Turn left onto Mohrenstraße. Then Your destination will be on the left.","announcement":"Turn left onto Mohrenstraße. Then Your destination will be on the left.","distanceAlongGeometry":63.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[84,175,264],"duration":8.246,"turn_weight":7,"turn_duration":2.105,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":13.908,"geometry_index":6501,"location":[13.392887,52.51588]},{"entry":[false,true,false],"in":2,"bearings":[84,174,355],"duration":11.23,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":13.627,"geometry_index":6502,"location":[13.392927,52.515624]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":3.6,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":5.051,"geometry_index":6503,"location":[13.393007,52.515153]},{"entry":[true,true,true,false],"in":3,"bearings":[84,174,265,354],"duration":1.627,"turn_weight":3,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":4.822,"geometry_index":6504,"location":[13.393033,52.514997]},{"entry":[true,false,false],"in":2,"bearings":[174,265,354],"duration":3.068,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":4.443,"geometry_index":6505,"location":[13.393046,52.514917]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":13.141,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"weight":15.783,"geometry_index":6506,"location":[13.393071,52.514761]},{"entry":[true,true,false,false],"in":3,"bearings":[86,174,252,354],"duration":14.119,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"weight":17.877,"geometry_index":6508,"location":[13.393177,52.514104]},{"bearings":[84,174,354],"entry":[true,true,false],"in":2,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":1,"geometry_index":6509,"location":[13.393319,52.513231]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Mohrenstraße"}],"type":"turn","modifier":"left","text":"Mohrenstraße"},"distanceAlongGeometry":396.9}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Markgrafenstraße.","modifier":"right","bearing_after":175,"bearing_before":84,"location":[13.392887,52.51588]},"speedLimitSign":"vienna","name":"Markgrafenstraße","weight_typical":93.555,"duration_typical":70.189,"duration":70.189,"distance":396.9,"driving_side":"right","weight":93.555,"mode":"driving","geometry":"oaidcBm~lpX~NoAl\\_DvHs@~CYvHq@hSiBvSiBpu@{Gdw@cH"},{"voiceInstructions":[{"ssmlAnnouncement":"Your destination is on the left.","announcement":"Your destination is on the left.","distanceAlongGeometry":41.667}],"intersections":[{"bearings":[84,175,265,317,354],"entry":[true,true,true,false,false],"in":4,"turn_weight":10,"turn_duration":5.275,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":5,"out":0,"geometry_index":6510,"location":[13.393465,52.512332]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Your destination will be on the left"}],"type":"arrive","modifier":"left","text":"Your destination will be on the left"},"distanceAlongGeometry":93.566},{"primary":{"components":[{"type":"text","text":"Your destination is on the left"}],"type":"arrive","modifier":"left","text":"Your destination is on the left"},"distanceAlongGeometry":41.667}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Mohrenstraße.","modifier":"left","bearing_after":84,"bearing_before":174,"location":[13.393465,52.512332]},"speedLimitSign":"vienna","name":"Mohrenstraße","weight_typical":31.053,"duration_typical":23.988,"duration":23.988,"distance":93.566,"driving_side":"right","weight":31.053,"mode":"driving","geometry":"wcbdcBqbnpXgD{tA"},{"voiceInstructions":[],"intersections":[{"bearings":[264],"entry":[true],"in":0,"admin_index":5,"geometry_index":6511,"location":[13.394839,52.512416]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"Your destination is on the left.","modifier":"left","bearing_after":0,"bearing_before":84,"location":[13.394839,52.512416]},"speedLimitSign":"vienna","name":"Mohrenstraße","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"_ibdcBmxppX??"}],"distance":585685.5,"summary":"Prinz-Ludwig-Straße, Türkenstraße, Gabelsbergerstraße, Widenmayerstraße, Ifflandstraße, Isarring, A 9, A 115, AVUS Nordkurve, A 100, Spandauer Damm, Otto-Suhr-Allee, Ernst-Reuter-Platz, B 2, Großer Stern, Straße des 17. Juni, Ebertstraße, Behrenstraße, Markgrafenstraße, Mohrenstraße"},{"notifications":[{"details":{"actual_value":"DE,FR","message":"Crossing the border of the countries of DE and FR."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":9050,"geometry_index_start":9049},{"details":{"actual_value":"FR,ES","message":"Crossing the border of the countries of FR and ES."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":22992,"geometry_index_start":22991},{"details":{"actual_value":"ES,PT","message":"Crossing the border of the countries of ES and PT."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":31475,"geometry_index_start":31473}],"summary":"Mohrenstraße, Jerusalemer Straße, B 1, Wexstraße, A 100, AVUS, E 51, A 4, A 7, A 5, A 3, A 67, A 60, A 63, B 48, A 6, E 50, A 26, A 19, A 10, E 05, AP-1, N-622, A-1, BU-30, A-62, E 80, A 23, A 1, E 01, IC 2, Avenida Infante Dom Henrique, Rua do Mar, Cais do Sodré, Rua do Alecrim","distance":2869761.75,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive east on Mohrenstraße. Then Turn right onto Jerusalemer Straße.","announcement":"Drive east on Mohrenstraße. Then Turn right onto Jerusalemer Straße.","distanceAlongGeometry":110.147},{"ssmlAnnouncement":"Turn right onto Jerusalemer Straße.","announcement":"Turn right onto Jerusalemer Straße.","distanceAlongGeometry":50}],"intersections":[{"bearings":[84],"entry":[true],"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":0,"location":[13.394839,52.512416]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Jerusalemer Straße"}],"type":"turn","modifier":"right","text":"Jerusalemer Straße"},"distanceAlongGeometry":110.147}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive east on Mohrenstraße.","bearing_after":84,"bearing_before":0,"location":[13.394839,52.512416]},"speedLimitSign":"vienna","name":"Mohrenstraße","weight_typical":24.848,"duration_typical":22.087,"duration":22.087,"distance":110.147,"driving_side":"right","weight":24.848,"mode":"driving","geometry":"_ibdcBmxppXcEcdB"},{"voiceInstructions":[{"ssmlAnnouncement":"In 600 feet, Turn right onto Leipziger Straße.","announcement":"In 600 feet, Turn right onto Leipziger Straße.","distanceAlongGeometry":163.758},{"ssmlAnnouncement":"Turn right onto Leipziger Straße, B 1.","announcement":"Turn right onto Leipziger Straße, B 1.","distanceAlongGeometry":56.667}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[18,174,264,353],"duration":16.805,"turn_weight":7,"turn_duration":2.105,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":23.538,"geometry_index":1,"location":[13.396457,52.512514]},{"mapbox_streets_v8":{"class":"street"},"location":[13.396615,52.511637],"geometry_index":2,"admin_index":0,"weight":12.658,"is_urban":true,"yield_sign":true,"out":1,"in":3,"turn_duration":0.008,"turn_weight":2,"duration":9.482,"bearings":[94,175,273,354],"entry":[true,true,true,false]},{"bearings":[84,175,265,355],"entry":[false,true,false,false],"in":3,"turn_weight":2,"lanes":[{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":4,"location":[13.396677,52.511191]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Leipziger Straße"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 1"}],"type":"turn","modifier":"right","text":"Leipziger Straße / B 1"},"distanceAlongGeometry":173.758}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Jerusalemer Straße.","modifier":"right","bearing_after":174,"bearing_before":84,"location":[13.396457,52.512514]},"speedLimitSign":"vienna","name":"Jerusalemer Straße","weight_typical":43.738,"duration_typical":31.22,"duration":31.22,"distance":173.758,"driving_side":"right","weight":43.738,"mode":"driving","geometry":"cobdcBq}spXxu@{HbZwBVCjMgA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":5747.702},{"ssmlAnnouncement":"In a quarter mile, Turn right onto Wexstraße.","announcement":"In a quarter mile, Turn right onto Wexstraße.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn right onto Wexstraße.","announcement":"Turn right onto Wexstraße.","distanceAlongGeometry":77.778}],"intersections":[{"lanes":[{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.396713,52.510961],"geometry_index":5,"admin_index":0,"weight":13.254,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":2.105,"turn_weight":10.5,"duration":4.553,"bearings":[84,265,355],"out":1,"in":2,"entry":[false,true,false]},{"entry":[false,true],"in":0,"bearings":[85,265],"duration":8.928,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.044,"geometry_index":6,"location":[13.396469,52.510947]},{"entry":[false,true],"in":0,"bearings":[84,265],"duration":11.232,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":12.636,"geometry_index":8,"location":[13.395558,52.510893]},{"entry":[false,true],"in":0,"bearings":[85,266],"duration":1.44,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.62,"geometry_index":9,"location":[13.394418,52.510827]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[86,265],"duration":2.304,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.534,"geometry_index":10,"location":[13.39427,52.51082]},{"entry":[false,false,true,false],"in":0,"bearings":[85,175,264,353],"duration":3.031,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.326,"geometry_index":12,"location":[13.394035,52.510808]},{"entry":[false,true,true,true],"in":0,"bearings":[84,172,264,353],"duration":2.743,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.01,"geometry_index":13,"location":[13.39373,52.51079]},{"entry":[false,false,true,false],"in":0,"bearings":[84,173,263,353],"duration":8.947,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.821,"geometry_index":14,"location":[13.393454,52.510772]},{"entry":[false,true],"in":0,"bearings":[79,244],"duration":5.904,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.494,"geometry_index":16,"location":[13.392549,52.510695]},{"entry":[false,false,true,false],"in":0,"bearings":[67,175,232,355],"duration":2.077,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.061,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.218,"geometry_index":21,"location":[13.391996,52.510543]},{"entry":[false,true,true,true,true],"in":0,"bearings":[52,101,175,265,353],"duration":1.396,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.063,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.467,"geometry_index":22,"location":[13.391832,52.510464]},{"entry":[false,false,true,false],"in":0,"bearings":[85,175,265,353],"duration":0.674,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.733,"geometry_index":23,"location":[13.391692,52.510456]},{"entry":[false,true],"in":0,"bearings":[85,264],"duration":8.8,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.48,"geometry_index":24,"location":[13.391621,52.510452]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":3.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.52,"geometry_index":25,"location":[13.390867,52.510406]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[84,264],"duration":5.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.16,"geometry_index":26,"location":[13.390518,52.510385]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.389899,52.510348],"geometry_index":32,"admin_index":0,"weight":5.083,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":3.265,"bearings":[8,84,175,264,341],"out":3,"in":1,"entry":[true,false,true,true,false]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":8.857,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.543,"geometry_index":34,"location":[13.389619,52.510331]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":12.343,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":13.577,"geometry_index":36,"location":[13.389032,52.510295]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":2.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.206,"geometry_index":37,"location":[13.387977,52.510232]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":1.714,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.886,"geometry_index":38,"location":[13.387726,52.510217]},{"entry":[false,false,true,false],"in":0,"bearings":[84,144,265,322],"duration":2.236,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.451,"geometry_index":40,"location":[13.387583,52.510208]},{"entry":[false,true,true,true],"in":0,"bearings":[85,149,264,331],"duration":2.236,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.451,"geometry_index":41,"location":[13.387393,52.510197]},{"entry":[false,false,true,false],"in":0,"bearings":[84,149,265,332],"duration":0.693,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.754,"geometry_index":42,"location":[13.387205,52.510185]},{"entry":[false,true],"in":0,"bearings":[85,265],"duration":23.6,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":23.76,"geometry_index":43,"location":[13.387149,52.510182]},{"entry":[false,true],"in":0,"bearings":[84,265],"duration":2.743,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.017,"geometry_index":46,"location":[13.385293,52.510072]},{"entry":[false,true,false],"in":0,"bearings":[85,265,353],"duration":4.807,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.28,"geometry_index":47,"location":[13.385052,52.510058]},{"entry":[false,true],"in":0,"bearings":[85,265],"duration":2.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.206,"geometry_index":48,"location":[13.384644,52.510035]},{"entry":[false,false,true,false],"in":0,"bearings":[85,163,264,345],"duration":2.065,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.263,"geometry_index":50,"location":[13.384399,52.510021]},{"entry":[false,true,true,true],"in":0,"bearings":[84,162,264,344],"duration":2.789,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.56,"geometry_index":51,"location":[13.384216,52.510009]},{"entry":[false,false,true,false],"in":0,"bearings":[84,159,264,339],"duration":0.826,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.9,"geometry_index":52,"location":[13.383971,52.509993]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":4.455,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.7,"geometry_index":53,"location":[13.383896,52.509988]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":1.309,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.44,"geometry_index":54,"location":[13.38368,52.509974]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":22.745,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":25.02,"geometry_index":55,"location":[13.383556,52.509966]},{"entry":[false,true,true],"in":0,"bearings":[85,175,264],"duration":4.589,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.04,"geometry_index":59,"location":[13.381521,52.509845]},{"entry":[false,true],"in":0,"bearings":[84,264],"duration":2.455,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.7,"geometry_index":61,"location":[13.381112,52.509819]},{"entry":[false,true,true],"in":0,"bearings":[84,175,264],"duration":14.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.84,"geometry_index":62,"location":[13.380891,52.509805]},{"entry":[false,false,true,false],"in":0,"bearings":[84,175,262,353],"duration":3.166,"turn_duration":2.021,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.26,"geometry_index":64,"location":[13.379596,52.509724]},{"entry":[false,true,true,false],"in":0,"bearings":[82,175,261,353],"duration":5.035,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.516,"geometry_index":66,"location":[13.379487,52.509715]},{"entry":[false,true],"in":0,"bearings":[83,264],"duration":8.486,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.334,"geometry_index":69,"location":[13.378923,52.509667]},{"entry":[false,false,true],"in":0,"bearings":[84,253,271],"duration":6.49,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":8.128,"geometry_index":73,"location":[13.377957,52.509607]},{"entry":[false,true,true],"in":0,"bearings":[91,266,351],"duration":11.155,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":12.24,"geometry_index":77,"location":[13.377433,52.509613]},{"entry":[false,false,true,false],"in":0,"bearings":[86,170,273,353],"duration":3.284,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.6,"geometry_index":82,"location":[13.376932,52.509594]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.37679,52.509599],"geometry_index":83,"admin_index":0,"weight":4.329,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":2.594,"bearings":[93,175,270,353],"out":2,"in":0,"entry":[false,false,true,true]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.376571,52.509598],"geometry_index":84,"admin_index":0,"weight":3.84,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.022,"turn_weight":1.5,"duration":2.15,"bearings":[90,177,268,358],"out":2,"in":0,"entry":[false,true,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[88,173,262,353],"duration":8.212,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":9,"geometry_index":86,"location":[13.376383,52.509594]},{"entry":[false,true],"in":0,"bearings":[82,263],"duration":19.636,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":21.6,"geometry_index":87,"location":[13.375656,52.50953]},{"entry":[false,false,true,false],"in":0,"bearings":[83,173,263,353],"duration":14.407,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.84,"geometry_index":90,"location":[13.373903,52.509392]},{"entry":[false,true],"in":0,"bearings":[83,263],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.94,"geometry_index":91,"location":[13.372617,52.509291]},{"entry":[false,true,true],"in":0,"bearings":[83,183,263],"duration":1.207,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.32,"geometry_index":92,"location":[13.37213,52.509255]},{"entry":[false,false,true,false],"in":0,"bearings":[83,172,263,353],"duration":1.34,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.467,"geometry_index":94,"location":[13.371996,52.509245]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.371849,52.509234],"geometry_index":95,"admin_index":0,"weight":3.76,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":2,"duration":1.608,"bearings":[25,83,170,264,351],"out":3,"in":1,"entry":[false,false,false,true,true]},{"entry":[false,true,true,false],"in":0,"bearings":[84,144,263,351],"duration":2.035,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.167,"geometry_index":96,"location":[13.371671,52.509222]},{"entry":[false,false,true,false],"in":0,"bearings":[83,172,263,353],"duration":5.767,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":6.192,"geometry_index":97,"location":[13.371466,52.509207]},{"entry":[false,true],"in":0,"bearings":[77,241],"duration":3.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.251,"geometry_index":101,"location":[13.370884,52.509143]},{"entry":[false,true,false],"in":0,"bearings":[60,232,327],"duration":1.086,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.155,"geometry_index":105,"location":[13.370614,52.50905]},{"entry":[false,true],"in":0,"bearings":[52,231],"duration":4.05,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.354,"geometry_index":106,"location":[13.370531,52.50901]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[51,231],"duration":2.25,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.419,"geometry_index":107,"location":[13.370218,52.508854]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[51,231],"duration":2.7,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.902,"geometry_index":108,"location":[13.370049,52.50877]},{"entry":[false,false,true,false],"in":0,"bearings":[51,128,228,308],"duration":1.672,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.774,"geometry_index":110,"location":[13.369842,52.508667]},{"entry":[false,false,true,true],"in":0,"bearings":[48,117,220,297],"duration":1.694,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.786,"geometry_index":111,"location":[13.369718,52.5086]},{"entry":[false,true,true,false],"in":0,"bearings":[40,117,209,287],"duration":20.057,"turn_duration":0.041,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":21.517,"geometry_index":113,"location":[13.369608,52.508521]},{"entry":[false,true,true,true],"in":0,"bearings":[19,108,190,289],"duration":2.09,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.211,"geometry_index":122,"location":[13.368887,52.507359]},{"entry":[false,true,true,false],"in":0,"bearings":[10,108,193,289],"duration":2.224,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.382,"geometry_index":123,"location":[13.368858,52.507257]},{"entry":[false,false,true,false],"in":0,"bearings":[13,108,195,289],"duration":25.762,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":27.685,"geometry_index":124,"location":[13.36883,52.507184]},{"entry":[false,false,true,false],"in":0,"bearings":[18,103,198,284],"duration":0.838,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.893,"geometry_index":128,"location":[13.368415,52.506386]},{"entry":[false,false,true,false],"in":0,"bearings":[18,103,197,277],"duration":2.788,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.977,"geometry_index":129,"location":[13.368403,52.506363]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.368361,52.506281],"geometry_index":130,"admin_index":0,"weight":3.629,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1.5,"duration":1.988,"bearings":[17,101,199,282],"out":2,"in":0,"entry":[false,false,true,true]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[19,200],"duration":1.906,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.049,"geometry_index":131,"location":[13.368307,52.506188]},{"entry":[false,true,true],"in":0,"bearings":[20,170,203],"duration":4.508,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.837,"geometry_index":132,"location":[13.368261,52.506109]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.368124,52.505898],"geometry_index":135,"admin_index":0,"weight":1.514,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2,"duration":3.409,"bearings":[21,196],"out":1,"in":0,"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.368087,52.505821],"geometry_index":136,"admin_index":0,"weight":3.435,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.807,"bearings":[16,89,196,270],"out":2,"in":0,"entry":[false,true,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[16,87,201,267],"duration":7.903,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":8.484,"geometry_index":137,"location":[13.368035,52.50571]},{"entry":[false,true],"in":0,"bearings":[26,209],"duration":5.815,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.252,"geometry_index":141,"location":[13.367697,52.505239]},{"entry":[false,true,true],"in":0,"bearings":[31,213,297],"duration":3.608,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.87,"geometry_index":144,"location":[13.367393,52.504914]},{"entry":[false,false,true,false],"in":0,"bearings":[33,125,213,306],"duration":1.392,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.488,"geometry_index":145,"location":[13.367187,52.504721]},{"entry":[false,true,true],"in":0,"bearings":[33,122,213],"duration":1.879,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.012,"geometry_index":146,"location":[13.367107,52.504646]},{"entry":[false,true,true],"in":0,"bearings":[33,214,301],"duration":4.184,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.489,"geometry_index":147,"location":[13.367001,52.504548]},{"entry":[false,true,true],"in":0,"bearings":[34,214,300],"duration":1.159,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.238,"geometry_index":149,"location":[13.366759,52.504332]},{"entry":[false,true,true],"in":0,"bearings":[34,212,298],"duration":3.907,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.18,"geometry_index":150,"location":[13.366695,52.504274]},{"entry":[false,true],"in":0,"bearings":[31,208],"duration":5.76,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.192,"geometry_index":152,"location":[13.366489,52.504067]},{"entry":[false,true,true],"in":0,"bearings":[21,45,205],"duration":3.231,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.463,"geometry_index":154,"location":[13.366246,52.503744]},{"entry":[false,true,true],"in":0,"bearings":[25,121,209],"duration":0.198,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.204,"geometry_index":155,"location":[13.366139,52.503605]},{"entry":[false,true,true],"in":0,"bearings":[29,208,303],"duration":2.294,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.444,"geometry_index":156,"location":[13.36613,52.503595]},{"entry":[false,true],"in":0,"bearings":[28,208],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.87,"geometry_index":157,"location":[13.366047,52.503501]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[28,208],"duration":1.137,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.222,"geometry_index":158,"location":[13.365913,52.503348]},{"entry":[false,true,true],"in":0,"bearings":[28,209,298],"duration":2.47,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.648,"geometry_index":159,"location":[13.365869,52.503298]},{"entry":[false,false,true,false],"in":0,"bearings":[29,106,208,286],"duration":2.673,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.852,"geometry_index":161,"location":[13.365776,52.503194]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.36568,52.503082],"geometry_index":162,"admin_index":0,"weight":2.514,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1,"duration":1.416,"bearings":[28,111,209,287],"out":2,"in":0,"entry":[false,true,true,true]},{"entry":[false,false,true,false],"in":0,"bearings":[29,101,211,282],"duration":0.477,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.505,"geometry_index":163,"location":[13.365614,52.503009]},{"entry":[false,true,true],"in":0,"bearings":[31,208,253],"duration":1.901,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.019,"geometry_index":164,"location":[13.365593,52.502988]},{"entry":[false,true],"in":0,"bearings":[28,208],"duration":6.73,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.235,"geometry_index":166,"location":[13.365511,52.502894]},{"entry":[false,true,false],"in":0,"bearings":[28,214,344],"duration":0.167,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.168,"geometry_index":167,"location":[13.365211,52.502551]},{"entry":[false,true,true],"in":0,"bearings":[34,213,315],"duration":0.332,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.337,"geometry_index":168,"location":[13.365201,52.502542]},{"entry":[false,true,true],"in":0,"bearings":[33,207,310],"duration":3.939,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.207,"geometry_index":169,"location":[13.365185,52.502527]},{"entry":[false,true,true],"in":0,"bearings":[27,118,208],"duration":0.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.673,"geometry_index":170,"location":[13.365015,52.502325]},{"entry":[false,true,true],"in":0,"bearings":[28,208,297],"duration":5.955,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.394,"geometry_index":171,"location":[13.364986,52.502292]},{"entry":[false,true,true],"in":0,"bearings":[28,208,297],"duration":4.39,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.711,"geometry_index":172,"location":[13.36472,52.501988]},{"entry":[false,true,true],"in":0,"bearings":[28,208,298],"duration":3.763,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.038,"geometry_index":173,"location":[13.364528,52.501767]},{"entry":[false,true,true],"in":0,"bearings":[28,120,208],"duration":3.763,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.038,"geometry_index":174,"location":[13.364365,52.50158]},{"entry":[false,true,true],"in":0,"bearings":[28,120,208],"duration":2.668,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.86,"geometry_index":175,"location":[13.3642,52.501392]},{"entry":[false,true,true],"in":0,"bearings":[28,208,296],"duration":0.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.673,"geometry_index":176,"location":[13.364084,52.501259]},{"entry":[false,true,true],"in":0,"bearings":[28,208,297],"duration":6.111,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.562,"geometry_index":177,"location":[13.364054,52.501225]},{"entry":[false,true],"in":0,"bearings":[28,208],"duration":2.626,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.673,"geometry_index":178,"location":[13.363783,52.500913]},{"entry":[false,false,true,false],"in":0,"bearings":[28,99,208,279],"duration":1.729,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.851,"geometry_index":179,"location":[13.363757,52.500883]},{"entry":[false,true,true,true],"in":0,"bearings":[28,101,207,286],"duration":1.724,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.833,"geometry_index":180,"location":[13.363681,52.500796]},{"entry":[false,false,true,false],"in":0,"bearings":[27,108,209,289],"duration":0.765,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.815,"geometry_index":181,"location":[13.36362,52.500723]},{"entry":[false,true],"in":0,"bearings":[29,208],"duration":18.105,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":17.313,"geometry_index":182,"location":[13.363594,52.500695]},{"entry":[false,true],"in":0,"bearings":[28,207],"duration":3.411,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.666,"geometry_index":183,"location":[13.363011,52.500017]},{"entry":[false,false,true,false],"in":0,"bearings":[27,110,203,290],"duration":2.298,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.444,"geometry_index":185,"location":[13.362894,52.499876]},{"entry":[false,false,true,true],"in":0,"bearings":[23,104,194,296],"duration":1.836,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.935,"geometry_index":187,"location":[13.362822,52.499773]},{"entry":[false,true,true,false],"in":0,"bearings":[14,101,194,296],"duration":3.093,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.317,"geometry_index":188,"location":[13.362785,52.49968]},{"entry":[false,false,true,false],"in":0,"bearings":[14,106,194,284],"duration":14.15,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.204,"geometry_index":190,"location":[13.362742,52.499574]},{"entry":[false,true,true],"in":0,"bearings":[14,104,194],"duration":1.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.382,"geometry_index":194,"location":[13.362549,52.499093]},{"entry":[false,true,true],"in":0,"bearings":[14,104,194],"duration":2.064,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.211,"geometry_index":195,"location":[13.362533,52.499053]},{"entry":[false,true,true],"in":0,"bearings":[14,194,284],"duration":1.035,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.106,"geometry_index":196,"location":[13.362503,52.498979]},{"entry":[false,true,true],"in":0,"bearings":[14,194,284],"duration":5.921,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.358,"geometry_index":197,"location":[13.362489,52.498944]},{"entry":[false,true,true],"in":0,"bearings":[14,194,287],"duration":0.778,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.829,"geometry_index":198,"location":[13.362407,52.49874]},{"entry":[false,true,true],"in":0,"bearings":[14,189,286],"duration":2.855,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.041,"geometry_index":199,"location":[13.362395,52.498711]},{"entry":[false,true,true],"in":0,"bearings":[9,106,191],"duration":16.208,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":17.415,"geometry_index":200,"location":[13.362368,52.498612]},{"entry":[false,false,true,false],"in":0,"bearings":[16,108,197,289],"duration":1.808,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.935,"geometry_index":204,"location":[13.362143,52.49806]},{"entry":[false,false,true,false],"in":0,"bearings":[17,107,199,279],"duration":2.322,"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.488,"geometry_index":205,"location":[13.362112,52.497997]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[13.36207,52.497922],"geometry_index":206,"admin_index":0,"weight":7.305,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.021,"turn_weight":1.5,"duration":5.421,"bearings":[19,107,195,287],"out":2,"in":0,"entry":[false,false,true,true]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.361968,52.497691],"geometry_index":209,"admin_index":0,"weight":3.611,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":1.5,"duration":1.971,"bearings":[15,108,195,289],"out":2,"in":0,"entry":[false,true,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[15,108,195,289],"duration":0.662,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.72,"geometry_index":210,"location":[13.361922,52.497587]},{"entry":[false,true],"in":0,"bearings":[15,194],"duration":5.436,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.78,"geometry_index":211,"location":[13.361905,52.497548]},{"entry":[false,true,true],"in":0,"bearings":[14,195,283],"duration":7.862,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":8.64,"geometry_index":213,"location":[13.361829,52.497369]},{"entry":[false,true],"in":0,"bearings":[15,195],"duration":14.727,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.2,"geometry_index":215,"location":[13.361647,52.496952]},{"entry":[false,false,true],"in":0,"bearings":[15,177,208],"duration":3.102,"turn_weight":1.5,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.894,"geometry_index":216,"location":[13.361307,52.496175]},{"entry":[false,true],"in":0,"bearings":[28,194],"duration":2.514,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.566,"geometry_index":218,"location":[13.361183,52.496033]},{"entry":[false,false,true,false],"in":0,"bearings":[14,103,193,284],"duration":2.248,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.451,"geometry_index":219,"location":[13.361171,52.496003]},{"entry":[false,true,true],"in":0,"bearings":[13,187,277],"duration":1.468,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.584,"geometry_index":220,"location":[13.361129,52.49589]},{"entry":[false,false,true,false],"in":0,"bearings":[7,96,180,275],"duration":0.318,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.317,"geometry_index":221,"location":[13.361111,52.495798]},{"entry":[false,true],"in":0,"bearings":[0,169],"duration":2.304,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.534,"geometry_index":222,"location":[13.361111,52.49578]},{"entry":[true,true,false],"in":2,"bearings":[25,183,349],"duration":14.745,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":16.2,"geometry_index":223,"location":[13.361157,52.495636]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":0.818,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.9,"geometry_index":226,"location":[13.361094,52.494827]},{"entry":[false,false,true],"in":0,"bearings":[3,166,199],"duration":5.195,"turn_weight":1.5,"turn_duration":0.02,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":7.193,"geometry_index":227,"location":[13.36109,52.494782]},{"entry":[false,true],"in":0,"bearings":[17,190],"duration":0.45,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.495,"geometry_index":231,"location":[13.360987,52.494594]},{"entry":[false,true],"in":0,"bearings":[10,189],"duration":2.9,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.99,"geometry_index":232,"location":[13.360981,52.494573]},{"entry":[false,false,true,false],"in":0,"bearings":[9,97,187,277],"duration":1.144,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.237,"geometry_index":233,"location":[13.360972,52.494537]},{"entry":[false,false,true,false],"in":0,"bearings":[7,99,184,277],"duration":1.597,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.732,"geometry_index":234,"location":[13.360963,52.494492]},{"entry":[false,false,true,true],"in":0,"bearings":[4,99,183,277],"duration":3.799,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.658,"geometry_index":235,"location":[13.360956,52.494433]},{"entry":[false,true,true,false],"in":0,"bearings":[3,99,181,277],"duration":1.115,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.705,"geometry_index":236,"location":[13.360941,52.494248]},{"entry":[false,false,true,false],"in":0,"bearings":[1,99,180,277],"duration":0.802,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.861,"geometry_index":237,"location":[13.36094,52.494186]},{"entry":[false,false,true,false],"in":0,"bearings":[0,97,179,277],"duration":0.489,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.517,"geometry_index":238,"location":[13.36094,52.494139]},{"entry":[true,false],"in":1,"bearings":[180,359],"duration":0.313,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.344,"geometry_index":239,"location":[13.360941,52.494115]},{"entry":[false,true],"in":0,"bearings":[0,179],"duration":7.357,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":8.092,"geometry_index":240,"location":[13.360941,52.494101]},{"entry":[true,false],"in":1,"bearings":[161,356],"duration":0.36,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.396,"geometry_index":244,"location":[13.360967,52.493683]},{"entry":[true,true,false],"in":2,"bearings":[20,184,341],"duration":1.078,"turn_duration":0.032,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.15,"geometry_index":245,"location":[13.36098,52.49366]},{"entry":[false,true],"in":0,"bearings":[4,183],"duration":6.852,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.537,"geometry_index":247,"location":[13.360971,52.493582]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":3.716,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.181,"geometry_index":248,"location":[13.360923,52.493054]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":1.394,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.568,"geometry_index":249,"location":[13.360897,52.492768]},{"entry":[false,true,true],"in":0,"bearings":[3,183,273],"duration":8.557,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.619,"geometry_index":250,"location":[13.360886,52.492658]},{"entry":[false,true,true],"in":0,"bearings":[3,183,273],"duration":7.083,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.96,"geometry_index":251,"location":[13.360829,52.49198]},{"entry":[false,true],"in":0,"bearings":[3,183],"duration":1.862,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.095,"geometry_index":252,"location":[13.360785,52.491465]},{"entry":[false,true,true],"in":0,"bearings":[3,93,184],"duration":2.193,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.459,"geometry_index":253,"location":[13.360775,52.491332]},{"entry":[false,true],"in":0,"bearings":[4,192],"duration":4.243,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.773,"geometry_index":255,"location":[13.360759,52.491183]},{"entry":[false,false,true],"in":0,"bearings":[19,187,221],"duration":12.332,"turn_weight":1.5,"turn_duration":0.032,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":15.338,"geometry_index":261,"location":[13.360633,52.490899]},{"entry":[false,true],"in":0,"bearings":[29,210],"duration":3.2,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.35,"geometry_index":265,"location":[13.360295,52.490606]},{"entry":[false,false,true,false],"in":0,"bearings":[30,108,209,287],"duration":2.421,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.7,"geometry_index":266,"location":[13.360265,52.490574]},{"entry":[false,false,true,true],"in":0,"bearings":[29,115,209,289],"duration":4.174,"turn_weight":1.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":6.173,"geometry_index":267,"location":[13.360206,52.490509]},{"entry":[false,true,true,false],"in":0,"bearings":[29,117,210,289],"duration":0.487,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.04,"geometry_index":268,"location":[13.360099,52.490391]},{"entry":[false,true],"in":0,"bearings":[30,209],"duration":1.2,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.35,"geometry_index":269,"location":[13.360071,52.490361]},{"entry":[false,false,true,false],"in":0,"bearings":[29,113,209,291],"duration":0.381,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.405,"geometry_index":270,"location":[13.359995,52.490279]},{"entry":[false,true],"in":0,"bearings":[29,209],"duration":13.68,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.39,"geometry_index":271,"location":[13.359976,52.490258]},{"entry":[false,true,true],"in":0,"bearings":[29,209,298],"duration":5.061,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.67,"geometry_index":272,"location":[13.35916,52.48936]},{"entry":[false,true],"in":0,"bearings":[29,209],"duration":2.48,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.54,"geometry_index":273,"location":[13.358857,52.489027]},{"entry":[false,false,true,false],"in":0,"bearings":[29,107,208,287],"duration":0.501,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.54,"geometry_index":274,"location":[13.35883,52.488997]},{"entry":[false,false,true],"in":0,"bearings":[28,110,209],"duration":0.607,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.675,"geometry_index":275,"location":[13.358801,52.488964]},{"entry":[false,true,true],"in":0,"bearings":[29,113,209],"duration":0.89,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.978,"geometry_index":276,"location":[13.358766,52.488926]},{"entry":[false,true],"in":0,"bearings":[29,209],"duration":4.345,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.888,"geometry_index":277,"location":[13.358715,52.488869]},{"entry":[false,true,true],"in":0,"bearings":[29,209,294],"duration":1.138,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.257,"geometry_index":279,"location":[13.358461,52.488592]},{"entry":[false,false,true,false],"in":0,"bearings":[29,118,208,298],"duration":0.766,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.838,"geometry_index":282,"location":[13.358395,52.488519]},{"entry":[false,false,true,false],"in":0,"bearings":[28,120,208,298],"duration":0.255,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.279,"geometry_index":283,"location":[13.358355,52.488474]},{"entry":[false,true],"in":0,"bearings":[28,209],"duration":6.579,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.402,"geometry_index":284,"location":[13.35834,52.488457]},{"entry":[false,false,true,false],"in":0,"bearings":[29,120,210,301],"duration":9.566,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":10.753,"geometry_index":285,"location":[13.357961,52.488038]},{"entry":[false,true,true],"in":0,"bearings":[27,120,209],"duration":10.357,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":11.644,"geometry_index":287,"location":[13.357429,52.487429]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.357102,52.487063],"geometry_index":288,"admin_index":0,"weight":1.266,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2,"duration":3.125,"bearings":[29,210],"out":1,"in":0,"entry":[false,true]},{"entry":[false,false,true,false],"in":0,"bearings":[30,120,210,298],"duration":2.932,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.291,"geometry_index":289,"location":[13.357067,52.487026]},{"entry":[false,true,true],"in":0,"bearings":[30,121,210],"duration":2.298,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.327,"geometry_index":290,"location":[13.356971,52.486925]},{"entry":[false,false,true,false],"in":0,"bearings":[30,118,210,300],"duration":0.334,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.368,"geometry_index":291,"location":[13.356867,52.486815]},{"entry":[false,true],"in":0,"bearings":[30,200],"duration":13.909,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":15.648,"geometry_index":292,"location":[13.356849,52.486796]},{"entry":[false,true],"in":0,"bearings":[47,231],"duration":2.818,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.92,"geometry_index":299,"location":[13.356191,52.486163]},{"entry":[false,false,true,false],"in":0,"bearings":[51,141,231,320],"duration":1.971,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.209,"geometry_index":300,"location":[13.356139,52.486137]},{"entry":[false,true,true,true],"in":0,"bearings":[51,144,230,324],"duration":2.037,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.268,"geometry_index":301,"location":[13.356004,52.48607]},{"entry":[false,false,true,false],"in":0,"bearings":[50,141,232,322],"duration":0.583,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.648,"geometry_index":302,"location":[13.355845,52.48599]},{"entry":[false,true],"in":0,"bearings":[52,231],"duration":5.04,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.67,"geometry_index":303,"location":[13.355803,52.48597]},{"entry":[false,true,true],"in":0,"bearings":[51,232,320],"duration":6.487,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.29,"geometry_index":304,"location":[13.3554,52.485774]},{"entry":[false,true,true],"in":0,"bearings":[52,232,322],"duration":2.54,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":2.85,"geometry_index":306,"location":[13.354882,52.485526]},{"entry":[false,false,true,false],"in":0,"bearings":[52,144,233,322],"duration":6.808,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":7.65,"geometry_index":308,"location":[13.354661,52.485421]},{"entry":[false,true,true],"in":0,"bearings":[53,232,325],"duration":3.831,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.288,"geometry_index":309,"location":[13.354067,52.485145]},{"entry":[false,true,true],"in":0,"bearings":[52,233,320],"duration":3.608,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.05,"geometry_index":310,"location":[13.353862,52.485049]},{"entry":[false,true,true],"in":0,"bearings":[53,233,321],"duration":9.113,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":10.244,"geometry_index":311,"location":[13.353661,52.484957]},{"entry":[false,true],"in":0,"bearings":[53,232],"duration":2.847,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.953,"geometry_index":313,"location":[13.353158,52.484726]},{"entry":[false,false,true,false],"in":0,"bearings":[52,141,231,321],"duration":1.925,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.144,"geometry_index":314,"location":[13.353108,52.484702]},{"entry":[false,false,true,true],"in":0,"bearings":[51,135,231,322],"duration":3.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.6,"geometry_index":315,"location":[13.353003,52.484651]},{"entry":[false,true,true],"in":0,"bearings":[51,139,232],"duration":0.847,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.945,"geometry_index":316,"location":[13.352731,52.484518]},{"entry":[false,false,true,false],"in":0,"bearings":[52,139,232,321],"duration":0.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.405,"geometry_index":317,"location":[13.352649,52.484479]},{"entry":[false,true],"in":0,"bearings":[52,231],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.075,"geometry_index":318,"location":[13.352618,52.484464]},{"entry":[false,true,true],"in":0,"bearings":[51,231,320],"duration":4.447,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":4.995,"geometry_index":319,"location":[13.352098,52.48421]},{"entry":[false,true,true],"in":0,"bearings":[51,233,321],"duration":1.568,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.755,"geometry_index":320,"location":[13.351672,52.484001]},{"entry":[false,false,false,true,false],"in":0,"bearings":[53,141,203,231,320],"duration":8.901,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":9.99,"geometry_index":321,"location":[13.351524,52.483932]},{"entry":[false,true],"in":0,"bearings":[53,225],"duration":6.96,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.83,"geometry_index":323,"location":[13.350671,52.483524]},{"entry":[false,true,true],"in":0,"bearings":[41,220,315],"duration":0.499,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.54,"geometry_index":326,"location":[13.350081,52.483143]},{"entry":[false,true],"in":0,"bearings":[40,220],"duration":0.48,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.54,"geometry_index":327,"location":[13.350044,52.483116]},{"entry":[false,false,true,false],"in":0,"bearings":[40,113,220,307],"duration":1.327,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.485,"geometry_index":328,"location":[13.350007,52.483089]},{"entry":[false,false,true],"in":0,"bearings":[40,127,219],"duration":5.167,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.805,"geometry_index":329,"location":[13.349903,52.483014]},{"entry":[false,true,true],"in":0,"bearings":[42,142,220],"duration":2.421,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.7,"geometry_index":332,"location":[13.349495,52.482723]},{"entry":[false,false,true],"in":0,"bearings":[40,124,222],"duration":7.587,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.526,"geometry_index":333,"location":[13.349319,52.482596]},{"entry":[false,true,true],"in":0,"bearings":[43,221,313],"duration":0.78,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":0.853,"geometry_index":335,"location":[13.348919,52.48233]},{"entry":[false,true,true],"in":0,"bearings":[41,221,313],"duration":8.154,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.166,"geometry_index":336,"location":[13.34888,52.482303]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[13.348477,52.482001],"geometry_index":340,"admin_index":0,"weight":0.853,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2,"duration":2.758,"bearings":[37,219],"out":1,"in":0,"entry":[false,true]},{"entry":[false,false,true,false],"in":0,"bearings":[39,124,217,306],"duration":0.779,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":0.853,"geometry_index":341,"location":[13.348438,52.481972]},{"entry":[false,false,true,false],"in":0,"bearings":[37,125,216,306],"duration":1.158,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.279,"geometry_index":342,"location":[13.348399,52.48194]},{"entry":[false,false,true,true],"in":0,"bearings":[36,127,216,307],"duration":1.971,"turn_weight":2,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.194,"geometry_index":343,"location":[13.348343,52.481893]},{"entry":[false,true,true,false],"in":0,"bearings":[36,130,215,310],"duration":0.808,"turn_weight":2,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.886,"geometry_index":344,"location":[13.348226,52.481796]},{"entry":[false,false,true,false],"in":0,"bearings":[35,128,215,308],"duration":0.457,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.506,"geometry_index":345,"location":[13.348169,52.481747]},{"entry":[false,false,true,false],"in":0,"bearings":[35,128,217,308],"duration":0.233,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":1.253,"geometry_index":346,"location":[13.348133,52.481716]},{"entry":[false,true],"in":0,"bearings":[37,217],"duration":18.562,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":21.383,"geometry_index":347,"location":[13.348111,52.481698]},{"entry":[false,true],"in":0,"bearings":[39,219],"duration":0.787,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.386,"geometry_index":349,"location":[13.346604,52.480537]},{"entry":[false,true,true],"in":0,"bearings":[39,219,308],"duration":0.826,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":1.42,"geometry_index":350,"location":[13.346543,52.480491]},{"entry":[false,true],"in":0,"bearings":[39,219],"duration":20.618,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":24.211,"geometry_index":351,"location":[13.346492,52.480453]},{"mapbox_streets_v8":{"class":"secondary"},"location":[13.345327,52.479574],"geometry_index":355,"admin_index":0,"weight":1.253,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":0.5,"duration":2.662,"bearings":[39,220,358],"out":1,"in":0,"entry":[false,true,false]},{"entry":[false,false,true,false],"in":0,"bearings":[40,130,221,308],"duration":1.153,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.317,"geometry_index":356,"location":[13.345291,52.479548]},{"entry":[false,false,true,false],"in":0,"bearings":[41,130,221,308],"duration":2.298,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.635,"geometry_index":357,"location":[13.345224,52.479501]},{"entry":[false,false,true,true],"in":0,"bearings":[41,189,220,346],"duration":3.619,"turn_weight":1.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":5.64,"geometry_index":358,"location":[13.34509,52.479407]},{"entry":[false,false,true],"in":1,"bearings":[10,40,222],"duration":2.168,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":3.234,"geometry_index":359,"location":[13.344854,52.479236]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"in":0,"bearings":[42,222],"duration":15.36,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":18.164,"geometry_index":361,"location":[13.344764,52.479175]},{"bearings":[42,122,219,303],"entry":[false,false,true,false],"in":0,"turn_weight":1,"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"geometry_index":363,"location":[13.34413,52.478749]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Wexstraße"}],"type":"turn","modifier":"right","text":"Wexstraße"},"distanceAlongGeometry":5757.702},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Wexstraße"}],"type":"turn","modifier":"right","text":"Wexstraße"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right onto Leipziger Straße/B 1.","modifier":"right","bearing_after":265,"bearing_before":175,"location":[13.396713,52.510961]},"speedLimitSign":"vienna","name":"Leipziger Straße","weight_typical":1087.226,"duration_typical":974.442,"duration":974.442,"distance":5757.702,"driving_side":"right","weight":1087.226,"mode":"driving","ref":"B 1","geometry":"an_dcBqmtpXZfNpAvk@XdKbCffALfHNbIFpCb@`Rb@fPdB`l@r@nJ~@fGpAjFpAlFx@xFPtB|CfINvGFlCzAbn@h@xTXfLLvF@FD`CBfATbJXnLF~BLbFx@p\\|B|`A\\tNHtCFfCTzJVvJDnBfB`w@x@~\\x@|\\Z`Nl@nXRfJF`CVlJ^hNHtCZnLNvFRpH`Ar`@PrHhCjiAj@vTFxBZxLh@~TvB|y@PrE?Dp@~MJdC`@`Ox@xZX`Mb@`Q?LC|U?nBAjBE|ACrB@|Af@dS@hAAfAIzG@tL@dEDpD~Bll@`GheBHnBFvBhEjoAfAl]DbBLfDTdHVbJ\\xKNzGj@~LZtEf@xE|@bFr@pC^hAf@zAnAdDvHpRfDpIjCnG`AlCdCvFpAxBjA`BhBtBpBbBzAdAxBjAhAl@bf@fUhFfClD`BzCtAjEx@pCv@lA`@|DhAbg@xTj@Vl@VbDrAxDjB|CzA|E`DvAv@nBv@xChA|EfBbElBxHvElHlF`CnBj@d@|H~G~GxG`KzKtC~CbErEdIhJhBxBrB~BlIpInAhAdGrF~JpFtGtERPzDdDpHjGbBvAtC`Cx@v@~E~DpCbCh@h@~@v@zBjBlTvQPR\\^rKrI`Ax@~QrOxL~JtJdIvJhIhGfFbAz@nR|Oz@r@lDvCpCxBv@r@ji@lc@nEjDhA|@tA`AvBlAxDhAv@VzC|@hA\\lF~AxC|@nNdEnA^rCz@dAZvKbDx@VdEt@bEt@fKvC~LjEbAf@|B|@tCrAlC|@lDlApC~@nEzAlA`@hA\\zGxBhFdBvQdGpo@fTjChCnClBz@V`FrAvDb@b@?~G{A`@@ho@xBd@@xAF`BbCbBZlARbBXh@JfAPxAPtBLpJ\\zB@|A?n@AZ?xJEr@AjIChAg@l@Yp@FhBH~_@~AzPr@zETji@pBd_@vAhGR~DRhBJ~@FrAPvA\\pClAfDhBPJfBjFdDvCpCdChDxC~@z@`CtBjFtEz@v@bDvCh@d@bw@~q@xS|Qz@t@`Ax@jAdApBdBbL`KdCxBxArA^XVTxAnA`@\\dYtVrH~Gl[fWzUlShAdAhE~DzEnEd@b@zEfCnFfCbEnD|DbE|BhD`DtFbC~Fr@fBdClG~C|Hf@rAfKdXhKrXdBvEfD|Ih@zAfPbd@~DxKvDpKlHlS~C~In@bBdBpEhG~OlAbD\\|@zNn_@`LrYhCfHbN~]jIhU`@fA|NlXxEdHt@hAt@hAtCnEdHjKfG`KV`@|F~IZd@vNxVt@lA|AlC|GjK`BtB|BtCx@lA~@lA|AnB`EhF`BpB|@fAb@j@hJdMf|@~nAzAxBjAdBzf@vs@rDnFBDhHjKr@fA|AdCzDjGtIvM^l@xAdCfXrd@j@~@|CpE"},{"voiceInstructions":[{"ssmlAnnouncement":"In 700 feet, Take the A 100 ramp on the left.","announcement":"In 700 feet, Take the A 100 ramp on the left.","distanceAlongGeometry":188.347},{"ssmlAnnouncement":"Take the A 100 ramp on the left toward Hamburg, Magdeburg.","announcement":"Take the A 100 ramp on the left toward Hamburg, Magdeburg.","distanceAlongGeometry":116.667}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[13.344025,52.47867],"geometry_index":364,"admin_index":0,"weight":8.999,"is_urban":true,"mapbox_streets_v8":{"class":"secondary"},"turn_duration":0.613,"turn_weight":7,"duration":2.351,"bearings":[39,115,214,287,329],"out":3,"in":0,"entry":[false,false,true,true,false]},{"entry":[false,true],"in":0,"bearings":[107,285],"duration":12.064,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":14.848,"geometry_index":365,"location":[13.343822,52.478707]},{"entry":[false,true],"in":0,"bearings":[101,281],"duration":2.614,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.498,"geometry_index":369,"location":[13.342426,52.478892]},{"bearings":[101,278],"entry":[false,true],"in":0,"turn_weight":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":370,"location":[13.342129,52.478928]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hamburg"},{"type":"text","text":"/"},{"type":"text","text":"Magdeburg"}],"type":"turn","modifier":"slight left","text":"Hamburg / Magdeburg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"100","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 100"}],"type":"turn","modifier":"slight left","text":"A 100"},"distanceAlongGeometry":205.014}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right onto Wexstraße.","modifier":"right","bearing_after":287,"bearing_before":219,"location":[13.344025,52.47867]},"speedLimitSign":"vienna","name":"Wexstraße","weight_typical":35.213,"duration_typical":23.026,"duration":23.026,"distance":205.014,"driving_side":"right","weight":35.213,"mode":"driving","geometry":"{k`bcBqpmmXiAtK_ArJ{@rLcBfWqCvd@gApQyC|y@M~F"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":5137.74},{"ssmlAnnouncement":"In 1 mile, Take exit 10.","announcement":"In 1 mile, Take exit 10.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 10.","announcement":"In a half mile, Take exit 10.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 10 onto A 115 toward Magdeburg, Leipzig.","announcement":"Take exit 10 onto A 115 toward Magdeburg, Leipzig.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[97,263,275],"duration":15.82,"turn_weight":2.25,"turn_duration":0.052,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":20.383,"geometry_index":372,"location":[13.341058,52.479012]},{"entry":[false,true],"in":0,"bearings":[81,261],"duration":6.336,"mapbox_streets_v8":{"class":"secondary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":7.286,"geometry_index":377,"location":[13.337867,52.478735]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.336618,52.478529],"geometry_index":380,"admin_index":0,"weight":29.806,"is_urban":true,"turn_weight":19,"duration":9.41,"bearings":[71,82,260],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,257],"duration":5.919,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":6.954,"geometry_index":383,"location":[13.334387,52.478258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,261],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.586,"geometry_index":384,"location":[13.332991,52.478068]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":6.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.149,"geometry_index":385,"location":[13.33255,52.478026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":8.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.87,"geometry_index":388,"location":[13.330633,52.477939]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":24.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":29.089,"geometry_index":389,"location":[13.328152,52.477926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":0.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.927,"geometry_index":396,"location":[13.320758,52.478021]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,279],"duration":1.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.539,"geometry_index":397,"location":[13.320524,52.478036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,281],"duration":2.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":3.011,"geometry_index":398,"location":[13.3201,52.478075]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.319287,52.478169],"geometry_index":399,"admin_index":0,"weight":3.549,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":3.094,"bearings":[101,284,310],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,286],"duration":4.292,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.936,"geometry_index":401,"location":[13.318339,52.478314]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,293],"duration":10.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":12.097,"geometry_index":403,"location":[13.317036,52.478571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,304],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":0.707,"geometry_index":407,"location":[13.314114,52.479522]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[97,124,307],"duration":6.632,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":7.618,"geometry_index":408,"location":[13.313939,52.479594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,313],"duration":7.968,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.163,"geometry_index":410,"location":[13.312353,52.480367]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,317],"duration":3.792,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":4.361,"geometry_index":414,"location":[13.31068,52.481453]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[13.309856,52.481951],"geometry_index":416,"admin_index":0,"weight":4.968,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":4.361,"bearings":[132,301,329],"out":1,"in":0,"turn_duration":0.041,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,296],"duration":8.505,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.781,"geometry_index":419,"location":[13.308612,52.482368]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,321],"duration":8.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":9.66,"geometry_index":426,"location":[13.306314,52.483303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.304617,52.484653],"geometry_index":429,"admin_index":0,"weight":7.769,"is_urban":true,"turn_weight":1,"duration":5.906,"bearings":[134,143,323],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[143,320],"duration":8.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":10.054,"geometry_index":430,"location":[13.303714,52.485395]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.302256,52.486448],"geometry_index":431,"admin_index":0,"weight":12.042,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":10.725,"bearings":[140,317,338],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[141,320],"duration":22.128,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":24.894,"geometry_index":434,"location":[13.300141,52.487986]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[115,136,315],"duration":4.581,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":5.244,"geometry_index":438,"location":[13.295719,52.491127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,313],"duration":7.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.694,"geometry_index":439,"location":[13.294723,52.49173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,314],"duration":7.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":8.748,"geometry_index":440,"location":[13.292993,52.492717]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.291231,52.493698],"geometry_index":442,"admin_index":0,"weight":26.804,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":23.856,"bearings":[129,303,334],"out":1,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"tunnel_name":"Tunnel Rathenauplatz","entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[116,304],"duration":11.791,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":13.265,"geometry_index":457,"location":[13.286133,52.494565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[156,334],"duration":9.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":11.122,"geometry_index":464,"location":[13.284089,52.496117]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[113,144,323],"duration":11.024,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":2,"weight":12.379,"geometry_index":471,"location":[13.282766,52.497554]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,333],"duration":2.513,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.827,"geometry_index":475,"location":[13.281502,52.498787]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.281251,52.499086],"geometry_index":476,"admin_index":0,"weight":3.498,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":3.128,"bearings":[1,153,332],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[152,333],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":477,"location":[13.280862,52.49954]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Magdeburg"},{"type":"text","text":"/"},{"type":"text","text":"Leipzig"}],"type":"off ramp","modifier":"right","text":"Magdeburg / Leipzig"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"10"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"off ramp","modifier":"right","text":"Exit 10 A 115"},"distanceAlongGeometry":5157.74},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Magdeburg"},{"type":"text","text":"/"},{"type":"text","text":"Leipzig"}],"type":"off ramp","modifier":"right","text":"Magdeburg / Leipzig"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"10"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"115","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 115"}],"type":"off ramp","modifier":"right","text":"Exit 10 A 115"},"distanceAlongGeometry":1609.344}],"destinations":"A 100: Hamburg, Magdeburg, Leipzig, Flughafen Tegel, Wilmersdorf","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 100 ramp on the left toward Hamburg/Magdeburg/Leipzig/Flughafen Tegel.","modifier":"slight left","bearing_after":263,"bearing_before":277,"location":[13.341058,52.479012]},"speedLimitSign":"vienna","name":"","weight_typical":334.19,"duration_typical":272.89,"duration":272.89,"distance":5157.74,"driving_side":"right","weight":334.19,"mode":"driving","ref":"A 100","geometry":"gaabcBcwgmXt@`UlAb_@lEbaAfDh~@n@xNVhGzA~XfHvj@pCdj@rC|e@vFhx@zJfvArApZbBf`@z@x\\Lvw@X`zCOv_FGve@[`gAMrb@k@dh@SdQ{@p^]rMmAnY{Dxq@_BfSaE~e@kF`i@uGjf@aMzt@mGr\\cI~]yYbcAoC|IyVbs@oW~m@yLfWyU|`@aSj]eJ~NoSx^sItRmG|U{FfWwHp]wInc@cKpa@wEnPCHsGhR{GzPeJpPgRxXgWb]{g@bq@km@lw@y`AbzAuHzMse@|s@yn@j_AqgBdnC}a@zn@s]jj@eY|h@ud@f}@u|@bkBsi@tgAuQld@yF|RsFrSeFl[sApNcAlNq@dNc@fNm@ra@IvQ_@vRk@`TsApVsBlSkD~TkG~ZoD|L}F|P}Nf[iJhN_KbMkRdS}W~PmPtLiRxLyKrJiKfJ_IlIoNhRmApA}U`[mWdXyNhM{LlJuQtNk[hWcK~H"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4664.958},{"ssmlAnnouncement":"In 1 mile, Keep left to take E 51.","announcement":"In 1 mile, Keep left to take E 51.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take E 51.","announcement":"In a half mile, Keep left to take E 51.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take E 51.","announcement":"Keep left to take E 51.","distanceAlongGeometry":177.778}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[13.280702,52.499734],"geometry_index":478,"admin_index":0,"weight":2.471,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.227,"bearings":[153,334,355],"out":2,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,353],"duration":35.245,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":38.77,"geometry_index":480,"location":[13.280652,52.500052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":0.523,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":0.575,"geometry_index":513,"location":[13.275145,52.500672]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.617,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":1.779,"geometry_index":514,"location":[13.275068,52.500611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":4.8,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":0,"out":1,"weight":5.28,"geometry_index":515,"location":[13.274789,52.500391]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.273958,52.499735],"geometry_index":516,"admin_index":0,"weight":7.271,"is_urban":true,"turn_weight":6,"duration":1.163,"bearings":[24,38,219],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":5.511,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":6.062,"geometry_index":517,"location":[13.273716,52.499551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":1.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":1.858,"geometry_index":518,"location":[13.272568,52.498678]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":2.412,"geometry_index":519,"location":[13.27221,52.498421]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":21.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":1,"weight":22.71,"geometry_index":520,"location":[13.271727,52.498043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":27.099,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.776,"geometry_index":524,"location":[13.266892,52.49426]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.435,"geometry_index":526,"location":[13.260745,52.489376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":3.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.244,"geometry_index":527,"location":[13.260648,52.489299]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":4.8,"geometry_index":528,"location":[13.259901,52.488715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":8.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.643,"geometry_index":530,"location":[13.258782,52.487829]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":0.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.951,"geometry_index":531,"location":[13.256725,52.4862]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":63.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":58.442,"geometry_index":532,"location":[13.256488,52.486012]},{"bearings":[36,216],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":541,"location":[13.241435,52.473191]}],"exits":"10","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"E 51"},"distanceAlongGeometry":4684.958},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E51","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 51"}],"type":"fork","modifier":"left","text":"E 51"},"distanceAlongGeometry":1609.344}],"destinations":"A 115: Magdeburg, Leipzig, Potsdam","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 10 onto A 115 toward Magdeburg/Leipzig/Potsdam.","modifier":"slight right","bearing_after":355,"bearing_before":333,"location":[13.280702,52.499734]},"speedLimitSign":"vienna","name":"AVUS","weight_typical":200.503,"duration_typical":192.719,"duration":192.719,"distance":4684.958,"driving_side":"right","weight":200.503,"mode":"driving","geometry":"kpiccB{zqiXoHd@kI|@eLvA_Iv@mHZiMf@kFv@gIpAiF|BiEvBiDzBiErDsE`IeEnHuCpF{BxF{ClJmCxJyBhKcBfKiA~Jy@rIw@vJYnKF~Mp@pPbAfKhAtHfArHhBbHhCtHpHrOhJhNrY`_@v^nf@xBxCvLlP~g@|r@nJbNpu@vfA`OjUrVd]~v@bhA`q@|_A|xAnpBlg@rq@~nCfsDf`D|jExC`Enc@tm@z_@ph@nUj[xdBp_CvJxMlcChgDlfBl`CdB~Bre@jl@j`@ld@tp@dw@zyHhbJvtAb`B|f@rn@ry@|dAnh@ts@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 138 miles.","announcement":"Continue for 138 miles.","distanceAlongGeometry":221543.344},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 24.","announcement":"In 1 mile, Keep right to take exit 24.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 24.","announcement":"In a half mile, Keep right to take exit 24.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 24 onto A 4 toward Erfurt. Then Keep right to take A 4.","announcement":"Keep right to take exit 24 onto A 4 toward Erfurt. Then Keep right to take A 4.","distanceAlongGeometry":261.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.239473,52.471589],"geometry_index":543,"admin_index":0,"weight":9.614,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.994,"bearings":[38,218,231],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.374,"geometry_index":545,"location":[13.236839,52.469504]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":9.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.478,"geometry_index":546,"location":[13.236472,52.469212]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[23,40,217],"duration":6.33,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":5.521,"geometry_index":548,"location":[13.234167,52.467424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":22.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.322,"geometry_index":549,"location":[13.23266,52.466202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.637,"geometry_index":551,"location":[13.227304,52.46197]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":38.78,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":34.902,"geometry_index":552,"location":[13.226872,52.461631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.236,"geometry_index":557,"location":[13.217086,52.453888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":64.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":59.503,"geometry_index":558,"location":[13.216746,52.453624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.978,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.929,"geometry_index":565,"location":[13.20084,52.441029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":20.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":19.814,"geometry_index":566,"location":[13.200614,52.440848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":3.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.148,"geometry_index":569,"location":[13.195825,52.437057]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[37,218,231],"duration":7.462,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.268,"geometry_index":571,"location":[13.195095,52.436477]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":22.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":22.175,"geometry_index":574,"location":[13.193555,52.435203]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[8,189,358],"duration":28.492,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.773,"geometry_index":588,"location":[13.191681,52.430557]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,320],"duration":10.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.662,"geometry_index":606,"location":[13.192642,52.425161]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.194913,52.423497],"geometry_index":614,"admin_index":0,"weight":33.11,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":33.133,"bearings":[150,169,334],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.196603,52.417323],"geometry_index":624,"admin_index":0,"weight":3.756,"is_urban":false,"turn_weight":1,"duration":2.762,"bearings":[173,344,354],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":1.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.778,"geometry_index":625,"location":[13.196719,52.416773]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,353],"duration":0.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.622,"geometry_index":626,"location":[13.196794,52.416416]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":3.911,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.911,"geometry_index":627,"location":[13.196825,52.416288]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[172,339,353],"duration":0.788,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.769,"geometry_index":628,"location":[13.196985,52.415502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":5.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.42,"geometry_index":629,"location":[13.197022,52.415335]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[173,229,353],"duration":0.631,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.624,"geometry_index":630,"location":[13.197275,52.414138]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,353],"duration":0.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.795,"geometry_index":631,"location":[13.1973,52.41402]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[177,306,356],"duration":21.109,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.102,"geometry_index":632,"location":[13.19732,52.413864]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":28.915,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":28.192,"geometry_index":646,"location":[13.194998,52.409231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":6.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.076,"geometry_index":648,"location":[13.188674,52.403658]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":1.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.36,"geometry_index":649,"location":[13.187283,52.402417]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.844,"geometry_index":650,"location":[13.186991,52.402163]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.186825,52.402017],"geometry_index":651,"admin_index":1,"weight":2.954,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.116,"bearings":[35,215,229],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":3.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.342,"geometry_index":652,"location":[13.186189,52.401455]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.185465,52.400816],"geometry_index":653,"admin_index":1,"weight":6.201,"is_urban":false,"turn_weight":1,"duration":5.482,"bearings":[18,35,215],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":3.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.625,"geometry_index":654,"location":[13.184236,52.399742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,216],"duration":79.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":75.719,"geometry_index":655,"location":[13.183376,52.398952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,204],"duration":6.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.489,"geometry_index":695,"location":[13.154721,52.387746]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.153576,52.386066],"geometry_index":699,"admin_index":1,"weight":14.82,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.621,"bearings":[22,202,220],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[6,22,203],"duration":1.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":1.304,"geometry_index":701,"location":[13.15109,52.382266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,199],"duration":5.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.583,"geometry_index":702,"location":[13.150868,52.381942]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.142,"geometry_index":707,"location":[13.150121,52.380511]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,186],"duration":1.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.454,"geometry_index":710,"location":[13.149867,52.379686]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":10.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.8,"geometry_index":712,"location":[13.14981,52.379312]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":2.495,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.433,"geometry_index":715,"location":[13.149802,52.376776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":2.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.364,"geometry_index":716,"location":[13.149823,52.376151]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":2.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.26,"geometry_index":717,"location":[13.149825,52.375554]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.149832,52.375028],"geometry_index":718,"admin_index":1,"weight":23.342,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.959,"bearings":[0,179,196],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.316,"geometry_index":730,"location":[13.149453,52.369083]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,199],"duration":5.22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.09,"geometry_index":731,"location":[13.149415,52.369006]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.14857,52.367816],"geometry_index":737,"admin_index":1,"weight":6.952,"is_urban":false,"turn_weight":0.75,"duration":6.368,"bearings":[18,28,209],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,224],"duration":19.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.492,"geometry_index":741,"location":[13.146995,52.366499]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,205],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.613,"geometry_index":747,"location":[13.141503,52.36265]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,202],"duration":22.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.265,"geometry_index":748,"location":[13.141392,52.362502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":7.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.385,"geometry_index":754,"location":[13.140496,52.356941]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.140541,52.354926],"geometry_index":755,"admin_index":1,"weight":5.583,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.042,"bearings":[179,359],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":6.788,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.272,"geometry_index":756,"location":[13.140578,52.353386]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":80.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.884,"geometry_index":757,"location":[13.140619,52.351645]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,245],"duration":2.388,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.15,"geometry_index":775,"location":[13.127071,52.334778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":8.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.683,"geometry_index":776,"location":[13.126149,52.334515]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":0.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.841,"geometry_index":777,"location":[13.122827,52.333566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":6.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.103,"geometry_index":778,"location":[13.122464,52.333463]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":6.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.473,"geometry_index":779,"location":[13.119887,52.332714]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.117576,52.332046],"geometry_index":780,"admin_index":1,"weight":6.175,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.683,"bearings":[65,245],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":2.194,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.03,"geometry_index":781,"location":[13.11503,52.331318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":7.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.365,"geometry_index":782,"location":[13.114178,52.331074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,242],"duration":5.8,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.347,"geometry_index":785,"location":[13.111117,52.330187]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,231],"duration":26.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":23.989,"geometry_index":790,"location":[13.109016,52.329411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.745,"geometry_index":802,"location":[13.102157,52.323971]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":17.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.583,"geometry_index":803,"location":[13.101707,52.323547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.445,"geometry_index":805,"location":[13.097707,52.319726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":5.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.209,"geometry_index":806,"location":[13.097343,52.319375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":2.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.085,"geometry_index":807,"location":[13.096091,52.318178]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":16.325,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.692,"geometry_index":808,"location":[13.09558,52.317683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.032,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.829,"geometry_index":813,"location":[13.092603,52.314007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":1.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.433,"geometry_index":814,"location":[13.092287,52.313536]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.016,"geometry_index":815,"location":[13.092046,52.313151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":16.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.707,"geometry_index":816,"location":[13.09187,52.312885]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":8.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.211,"geometry_index":818,"location":[13.08932,52.309027]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.088099,52.307126],"geometry_index":819,"admin_index":1,"weight":10.601,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.786,"bearings":[21,202,217],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,207],"duration":6.116,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":5.505,"geometry_index":822,"location":[13.086226,52.304321]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,220,327],"duration":34.008,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":30.6,"geometry_index":829,"location":[13.084851,52.303002]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.072311,52.300508],"geometry_index":851,"admin_index":1,"weight":21.232,"is_urban":false,"turn_weight":6,"duration":16.476,"bearings":[88,93,273],"out":2,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,274],"duration":8.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.55,"geometry_index":854,"location":[13.065538,52.300737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.153,"geometry_index":855,"location":[13.06218,52.300866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":7.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.82,"geometry_index":856,"location":[13.061654,52.300888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":18.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.97,"geometry_index":857,"location":[13.058533,52.30099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":18.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.386,"geometry_index":859,"location":[13.050765,52.301297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,241],"duration":9.761,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.273,"geometry_index":869,"location":[13.043033,52.300424]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,248],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.094,"geometry_index":873,"location":[13.039413,52.299198]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,250],"duration":5.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.282,"geometry_index":874,"location":[13.038972,52.299089]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,261],"duration":3.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.454,"geometry_index":877,"location":[13.036786,52.298676]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.035301,52.298558],"geometry_index":880,"admin_index":1,"weight":7.571,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.978,"bearings":[83,267,276],"out":1,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,282],"duration":4.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.648,"geometry_index":885,"location":[13.031964,52.298646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":1.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.428,"geometry_index":888,"location":[13.029974,52.298966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,292],"duration":6.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.91,"geometry_index":889,"location":[13.029378,52.299088]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[13.026972,52.299721],"geometry_index":891,"admin_index":1,"weight":1.609,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.702,"bearings":[114,295,306],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":0.583,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.554,"geometry_index":892,"location":[13.026329,52.299901]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,295],"duration":17.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.698,"geometry_index":893,"location":[13.026096,52.299966]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.019466,52.301862],"geometry_index":896,"admin_index":1,"weight":6.834,"is_urban":false,"turn_weight":1,"duration":6.149,"bearings":[97,115,295],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":9.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.12,"geometry_index":897,"location":[13.017155,52.30253]},{"mapbox_streets_v8":{"class":"motorway"},"location":[13.01344,52.30343],"geometry_index":900,"admin_index":1,"weight":9.151,"is_urban":false,"turn_weight":1,"duration":8.604,"bearings":[82,108,284],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":2.79,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.581,"geometry_index":904,"location":[13.009309,52.303866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,268],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.33,"geometry_index":907,"location":[13.007951,52.303905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":32.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":29.67,"geometry_index":910,"location":[13.006194,52.303857]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":17.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.39,"geometry_index":915,"location":[12.993119,52.303701]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.106,"geometry_index":917,"location":[12.986148,52.303765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":7.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.512,"geometry_index":918,"location":[12.985191,52.303769]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,271],"duration":9.792,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.568,"geometry_index":919,"location":[12.982232,52.303782]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,264],"duration":7.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.426,"geometry_index":921,"location":[12.97824,52.303765]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.975285,52.303495],"geometry_index":924,"admin_index":1,"weight":4.082,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.686,"bearings":[78,255,276],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.973486,52.303191],"geometry_index":926,"admin_index":1,"weight":1.964,"is_urban":false,"turn_weight":1,"duration":1.126,"bearings":[48,74,251],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.482,"geometry_index":927,"location":[12.973072,52.303102]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.754,"geometry_index":928,"location":[12.972859,52.303055]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":5.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.676,"geometry_index":929,"location":[12.972122,52.302888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":30.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":26.67,"geometry_index":930,"location":[12.970143,52.302441]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":10.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.827,"geometry_index":932,"location":[12.959648,52.300054]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":7.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.819,"geometry_index":934,"location":[12.956134,52.299254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.888,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.527,"geometry_index":935,"location":[12.953425,52.298635]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":14.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":13.352,"geometry_index":936,"location":[12.95242,52.298406]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":13.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.568,"geometry_index":937,"location":[12.947252,52.297228]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":18.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.698,"geometry_index":938,"location":[12.942404,52.296115]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.96,"geometry_index":940,"location":[12.935944,52.294641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":24.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.719,"geometry_index":941,"location":[12.930936,52.293502]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":3.442,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.098,"geometry_index":943,"location":[12.922545,52.291594]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.921355,52.291318],"geometry_index":944,"admin_index":1,"weight":5.237,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.841,"bearings":[69,246,259],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,242],"duration":1.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.281,"geometry_index":948,"location":[12.91949,52.29081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,235],"duration":8.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.367,"geometry_index":949,"location":[12.919044,52.290666]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[6,40,218],"duration":3.407,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":3.049,"geometry_index":956,"location":[12.916934,52.289543]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":9.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.348,"geometry_index":960,"location":[12.916258,52.288957]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.915131,52.287129],"geometry_index":969,"admin_index":1,"weight":10.874,"is_urban":false,"turn_weight":1,"duration":10.992,"bearings":[0,13,192],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":2.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.353,"geometry_index":971,"location":[12.914372,52.284876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":8.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.676,"geometry_index":972,"location":[12.914193,52.284343]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":17.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":15.93,"geometry_index":973,"location":[12.913606,52.282592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":3.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.893,"geometry_index":974,"location":[12.912372,52.278957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,190],"duration":2.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.54,"geometry_index":975,"location":[12.912148,52.278297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.995,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.795,"geometry_index":977,"location":[12.911985,52.277788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":24.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":22.286,"geometry_index":978,"location":[12.91186,52.277424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":11.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.202,"geometry_index":980,"location":[12.910331,52.272951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.909623,52.270905],"geometry_index":981,"admin_index":1,"weight":2.233,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.503,"bearings":[12,190,218],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":4.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.378,"geometry_index":983,"location":[12.909483,52.270457]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.90919,52.269574],"geometry_index":984,"admin_index":1,"weight":3.138,"is_urban":false,"turn_weight":1,"duration":2.383,"bearings":[11,192,351],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.685,"geometry_index":985,"location":[12.908996,52.268992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.333,"geometry_index":986,"location":[12.908843,52.268534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":15.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.071,"geometry_index":987,"location":[12.908527,52.267584]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":6.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.71,"geometry_index":990,"location":[12.907305,52.263558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":0.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.041,"geometry_index":993,"location":[12.907157,52.262293]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,182],"duration":2.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.365,"geometry_index":994,"location":[12.907157,52.262291]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,181],"duration":7.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.168,"geometry_index":995,"location":[12.907118,52.261637]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,356],"duration":7.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.844,"geometry_index":998,"location":[12.907217,52.260049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,351],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.175,"geometry_index":1000,"location":[12.907531,52.258543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,350],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.1,"geometry_index":1001,"location":[12.907608,52.258283]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,345],"duration":10.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.234,"geometry_index":1004,"location":[12.908264,52.25653]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,341],"duration":2.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.089,"geometry_index":1006,"location":[12.90933,52.254586]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,339],"duration":5.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.216,"geometry_index":1007,"location":[12.909585,52.254172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":5.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.702,"geometry_index":1008,"location":[12.91024,52.253054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":2.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.134,"geometry_index":1009,"location":[12.91083,52.252048]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.553,"geometry_index":1010,"location":[12.911093,52.251594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":26.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.587,"geometry_index":1011,"location":[12.911162,52.251475]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,340],"duration":0.351,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.307,"geometry_index":1015,"location":[12.914211,52.246289]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":12.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.025,"geometry_index":1016,"location":[12.914249,52.246222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,341],"duration":2.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.266,"geometry_index":1017,"location":[12.915633,52.243784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,342],"duration":6.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.839,"geometry_index":1019,"location":[12.915913,52.243279]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,345],"duration":2.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.228,"geometry_index":1023,"location":[12.916541,52.241972]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,348],"duration":18.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.288,"geometry_index":1024,"location":[12.916723,52.241461]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":38.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":33.69,"geometry_index":1033,"location":[12.917372,52.237677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":18.966,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.595,"geometry_index":1046,"location":[12.914669,52.23004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":0.966,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.845,"geometry_index":1053,"location":[12.91145,52.226707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":4.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.833,"geometry_index":1054,"location":[12.911272,52.226545]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":13.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.107,"geometry_index":1055,"location":[12.910461,52.225787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":21.47,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.786,"geometry_index":1060,"location":[12.907886,52.223392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":19.952,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":17.458,"geometry_index":1063,"location":[12.903876,52.219681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":2.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.163,"geometry_index":1068,"location":[12.900161,52.216233]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,213],"duration":2.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.087,"geometry_index":1069,"location":[12.899683,52.215813]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":6.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.685,"geometry_index":1070,"location":[12.899235,52.215398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.898045,52.214285],"geometry_index":1072,"admin_index":1,"weight":7.135,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.162,"bearings":[32,213,239],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.896532,52.212871],"geometry_index":1073,"admin_index":1,"weight":10.488,"is_urban":false,"turn_weight":1,"duration":10.851,"bearings":[4,33,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":30.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":26.87,"geometry_index":1076,"location":[12.894533,52.21099]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":12.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.852,"geometry_index":1079,"location":[12.888814,52.205686]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.886541,52.203609],"geometry_index":1080,"admin_index":1,"weight":10.93,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.164,"bearings":[34,213,235],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":9.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.666,"geometry_index":1082,"location":[12.884297,52.201502]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.882373,52.199895],"geometry_index":1084,"admin_index":1,"weight":3.381,"is_urban":false,"turn_weight":1,"duration":2.654,"bearings":[18,38,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,222],"duration":6.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.883,"geometry_index":1085,"location":[12.881789,52.199486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,228],"duration":1.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.632,"geometry_index":1087,"location":[12.880222,52.19848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":40.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":35.865,"geometry_index":1088,"location":[12.879759,52.198221]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.846,"geometry_index":1097,"location":[12.867804,52.194078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.223,"geometry_index":1098,"location":[12.866781,52.193844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.981,"geometry_index":1099,"location":[12.866321,52.193741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":44.128,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":38.612,"geometry_index":1100,"location":[12.865477,52.193549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,223],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.878,"geometry_index":1113,"location":[12.850629,52.188201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":162.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":142.44,"geometry_index":1114,"location":[12.850341,52.188011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":15.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.053,"geometry_index":1148,"location":[12.793402,52.165608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,229],"duration":8.37,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.533,"geometry_index":1152,"location":[12.789227,52.163838]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,223],"duration":20.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.063,"geometry_index":1154,"location":[12.787204,52.162715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":7.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.763,"geometry_index":1158,"location":[12.7831,52.159609]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":1.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.975,"geometry_index":1159,"location":[12.781662,52.158401]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":3.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.81,"geometry_index":1160,"location":[12.781397,52.158175]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.780686,52.157552],"geometry_index":1161,"admin_index":1,"weight":0.794,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.901,"bearings":[35,214,245],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":4.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.717,"geometry_index":1162,"location":[12.780482,52.157363]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.779484,52.156509],"geometry_index":1164,"admin_index":1,"weight":9.244,"is_urban":false,"turn_weight":1,"duration":9.181,"bearings":[7,37,215],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":82.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":72.45,"geometry_index":1166,"location":[12.777332,52.154614]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,216],"duration":10.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.107,"geometry_index":1173,"location":[12.75783,52.13752]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.755323,52.135393],"geometry_index":1174,"admin_index":1,"weight":21.952,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.112,"bearings":[36,213,241],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.749685,52.13048],"geometry_index":1176,"admin_index":1,"weight":9.082,"is_urban":false,"turn_weight":1,"duration":9.243,"bearings":[11,35,215],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":24.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":21.255,"geometry_index":1177,"location":[12.747557,52.128607]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,223],"duration":0.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.818,"geometry_index":1181,"location":[12.741706,52.1238]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":78.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":68.279,"geometry_index":1182,"location":[12.741439,52.123624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":6.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.096,"geometry_index":1198,"location":[12.714066,52.111048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":50.933,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":44.567,"geometry_index":1200,"location":[12.711983,52.10967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,225],"duration":14.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.87,"geometry_index":1206,"location":[12.69718,52.099391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":8.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.95,"geometry_index":1209,"location":[12.692488,52.096837]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.689514,52.095314],"geometry_index":1210,"admin_index":1,"weight":6.162,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.854,"bearings":[50,231,265],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.687312,52.094214],"geometry_index":1212,"admin_index":1,"weight":3.287,"is_urban":false,"turn_weight":1,"duration":2.548,"bearings":[30,51,231],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,229],"duration":1.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.334,"geometry_index":1213,"location":[12.686499,52.093805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,227],"duration":0.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.762,"geometry_index":1214,"location":[12.686042,52.093557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,226],"duration":3.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.526,"geometry_index":1215,"location":[12.685781,52.093409]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":10.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.339,"geometry_index":1217,"location":[12.684626,52.092706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":1.269,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.142,"geometry_index":1220,"location":[12.681723,52.090753]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":74.749,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":65.406,"geometry_index":1221,"location":[12.681368,52.0905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":1.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.892,"geometry_index":1232,"location":[12.661511,52.074081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":27.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":24.15,"geometry_index":1233,"location":[12.661305,52.073845]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.126,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.86,"geometry_index":1238,"location":[12.656541,52.06724]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":88.903,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":77.79,"geometry_index":1239,"location":[12.656204,52.066719]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":0.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.712,"geometry_index":1252,"location":[12.637729,52.046868]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":5.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.711,"geometry_index":1253,"location":[12.63742,52.046736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":7.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.527,"geometry_index":1254,"location":[12.635436,52.045873]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.632678,52.044694],"geometry_index":1256,"admin_index":1,"weight":12.6,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.419,"bearings":[55,234,258],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.627426,52.042362],"geometry_index":1258,"admin_index":1,"weight":2.918,"is_urban":false,"turn_weight":1,"duration":2.217,"bearings":[18,54,229],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":6.774,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.928,"geometry_index":1259,"location":[12.626682,52.04197]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,214],"duration":11.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":9.679,"geometry_index":1263,"location":[12.624677,52.04059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.3,"geometry_index":1266,"location":[12.622186,52.03797]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,214],"duration":12.442,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.887,"geometry_index":1269,"location":[12.620536,52.036191]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":0.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.636,"geometry_index":1278,"location":[12.616515,52.033694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,239],"duration":18.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":16.109,"geometry_index":1279,"location":[12.616245,52.033577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,241],"duration":2.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.082,"geometry_index":1287,"location":[12.608442,52.031516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,236],"duration":39.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":34.539,"geometry_index":1290,"location":[12.607479,52.031182]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,232],"duration":9.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.455,"geometry_index":1308,"location":[12.595654,52.022876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":0.845,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.74,"geometry_index":1311,"location":[12.591997,52.021294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":13.89,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":12.154,"geometry_index":1312,"location":[12.591668,52.021161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":8.347,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.304,"geometry_index":1316,"location":[12.586375,52.018992]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.583191,52.017682],"geometry_index":1317,"admin_index":1,"weight":3.429,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.926,"bearings":[56,236,265],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.581696,52.017065],"geometry_index":1318,"admin_index":1,"weight":2.997,"is_urban":false,"turn_weight":1,"duration":2.29,"bearings":[31,56,237],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.153,"geometry_index":1319,"location":[12.58082,52.016719]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,236],"duration":0.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.829,"geometry_index":1320,"location":[12.58031,52.016521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":3.536,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.094,"geometry_index":1321,"location":[12.57995,52.016372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":125.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":107.046,"geometry_index":1323,"location":[12.578619,52.015799]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,223],"duration":119.819,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":101.847,"geometry_index":1353,"location":[12.540082,51.989642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":6.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.965,"geometry_index":1376,"location":[12.493043,51.972654]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.490174,51.971897],"geometry_index":1377,"admin_index":2,"weight":0.864,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.995,"bearings":[67,248,270],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,247],"duration":12.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.039,"geometry_index":1378,"location":[12.489752,51.97179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.254,"geometry_index":1381,"location":[12.484483,51.970337]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.483898,51.97015],"geometry_index":1382,"admin_index":2,"weight":2.23,"is_urban":false,"turn_weight":1,"duration":1.43,"bearings":[44,63,240],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":4.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.32,"geometry_index":1383,"location":[12.483376,51.969963]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":17.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.66,"geometry_index":1385,"location":[12.481588,51.969282]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":17.417,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.675,"geometry_index":1392,"location":[12.475454,51.966503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":6.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.06,"geometry_index":1396,"location":[12.469505,51.963791]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.46713,51.962719],"geometry_index":1397,"admin_index":2,"weight":0.926,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.066,"bearings":[54,234,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,232],"duration":3.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.176,"geometry_index":1398,"location":[12.466719,51.962534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,229],"duration":0.817,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.715,"geometry_index":1400,"location":[12.465349,51.96187]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.46505,51.96171],"geometry_index":1401,"admin_index":2,"weight":1.91,"is_urban":false,"turn_weight":0.5,"duration":1.618,"bearings":[27,49,230],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":5.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.13,"geometry_index":1402,"location":[12.464521,51.961436]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,221],"duration":298.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":260.85,"geometry_index":1405,"location":[12.462746,51.960355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":15.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.071,"geometry_index":1466,"location":[12.404313,51.893731]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":8.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.282,"geometry_index":1469,"location":[12.401183,51.890118]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.399556,51.888251],"geometry_index":1470,"admin_index":2,"weight":0.519,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.595,"bearings":[28,207,248],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":5.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.536,"geometry_index":1471,"location":[12.399448,51.888121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":1.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.102,"geometry_index":1473,"location":[12.3985,51.887011]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.398273,51.886741],"geometry_index":1474,"admin_index":2,"weight":1.847,"is_urban":false,"turn_weight":0.5,"duration":1.504,"bearings":[11,27,208],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":5.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.101,"geometry_index":1475,"location":[12.397985,51.886404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":8.198,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.378,"geometry_index":1476,"location":[12.396892,51.885146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,207],"duration":1.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.123,"geometry_index":1477,"location":[12.395287,51.883329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":67.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":58.977,"geometry_index":1478,"location":[12.395056,51.883049]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":6.345,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.551,"geometry_index":1497,"location":[12.378218,51.869952]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.375974,51.869146],"geometry_index":1500,"admin_index":2,"weight":1.544,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.771,"bearings":[61,241,259],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":13.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.982,"geometry_index":1501,"location":[12.375332,51.868929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,243],"duration":1.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.173,"geometry_index":1504,"location":[12.370335,51.867305]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.369842,51.867147],"geometry_index":1505,"admin_index":2,"weight":2.368,"is_urban":false,"turn_weight":1,"duration":1.583,"bearings":[42,63,242],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.636,"geometry_index":1507,"location":[12.369288,51.866965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.55,"geometry_index":1508,"location":[12.369024,51.86688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":3.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.961,"geometry_index":1509,"location":[12.368801,51.866802]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":38.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":33.799,"geometry_index":1510,"location":[12.367619,51.866374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,235],"duration":25.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.875,"geometry_index":1519,"location":[12.354635,51.861034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,233],"duration":14.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.991,"geometry_index":1521,"location":[12.346226,51.857392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.409,"geometry_index":1525,"location":[12.341259,51.855179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":24.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":21.885,"geometry_index":1526,"location":[12.3411,51.855109]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,221],"duration":15.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.244,"geometry_index":1536,"location":[12.33316,51.850977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":6.147,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.532,"geometry_index":1543,"location":[12.329116,51.847622]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":1.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.467,"geometry_index":1546,"location":[12.327832,51.8462]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.327534,51.845814],"geometry_index":1547,"admin_index":2,"weight":0.321,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.365,"bearings":[25,209,246],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,205],"duration":5.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.068,"geometry_index":1548,"location":[12.32746,51.845733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,201],"duration":1.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.412,"geometry_index":1550,"location":[12.326509,51.844437]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[4,21,203],"duration":6.998,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":2,"weight":6.117,"geometry_index":1551,"location":[12.326279,51.844065]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":6.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.291,"geometry_index":1553,"location":[12.325233,51.842392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":56.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":49.534,"geometry_index":1554,"location":[12.324355,51.840936]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":12.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.34,"geometry_index":1573,"location":[12.312443,51.825739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.153,"geometry_index":1576,"location":[12.309234,51.822525]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":0.944,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.849,"geometry_index":1577,"location":[12.308944,51.822244]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":2.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.58,"geometry_index":1578,"location":[12.308738,51.822037]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.284,"geometry_index":1579,"location":[12.308084,51.821416]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":2.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.982,"geometry_index":1580,"location":[12.307761,51.821091]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.307278,51.820606],"geometry_index":1581,"admin_index":2,"weight":0.654,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.751,"bearings":[32,209,242],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":4.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.175,"geometry_index":1582,"location":[12.307127,51.82044]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.028,"geometry_index":1583,"location":[12.306098,51.819416]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.305844,51.819161],"geometry_index":1584,"admin_index":2,"weight":6.116,"is_urban":false,"turn_weight":0.5,"duration":6.248,"bearings":[1,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":17.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.768,"geometry_index":1585,"location":[12.304259,51.817565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,226],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.388,"geometry_index":1592,"location":[12.299189,51.813381]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.976,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.902,"geometry_index":1593,"location":[12.298661,51.81307]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":15.005,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.505,"geometry_index":1594,"location":[12.298355,51.812886]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":45.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":41.09,"geometry_index":1596,"location":[12.293715,51.810088]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":14.706,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.235,"geometry_index":1608,"location":[12.281795,51.800512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":11.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.606,"geometry_index":1609,"location":[12.278909,51.797056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":6.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.229,"geometry_index":1612,"location":[12.276594,51.794286]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,207],"duration":16.132,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.519,"geometry_index":1613,"location":[12.275274,51.792707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":0.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.672,"geometry_index":1618,"location":[12.272413,51.788825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,200],"duration":58.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":53.067,"geometry_index":1619,"location":[12.272299,51.788637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":35.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":30.919,"geometry_index":1634,"location":[12.258667,51.776389]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.76,"geometry_index":1635,"location":[12.247555,51.770451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":63.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":55.844,"geometry_index":1636,"location":[12.246923,51.77012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":15.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.64,"geometry_index":1646,"location":[12.231505,51.75706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":7.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.392,"geometry_index":1648,"location":[12.228688,51.75345]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.227354,51.751765],"geometry_index":1650,"admin_index":2,"weight":0.795,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.928,"bearings":[26,204,229],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":4.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.768,"geometry_index":1651,"location":[12.227202,51.751556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":1.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.513,"geometry_index":1652,"location":[12.226425,51.750576]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.226121,51.750179],"geometry_index":1653,"admin_index":2,"weight":5.8,"is_urban":false,"turn_weight":1,"duration":5.493,"bearings":[10,25,205],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.75,"geometry_index":1654,"location":[12.225126,51.748877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":13.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.06,"geometry_index":1655,"location":[12.224969,51.74867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":8.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.74,"geometry_index":1658,"location":[12.222565,51.74538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":59.108,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":51.72,"geometry_index":1660,"location":[12.221152,51.74323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":6.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.863,"geometry_index":1674,"location":[12.216035,51.728123]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.215721,51.726427],"geometry_index":1675,"admin_index":2,"weight":1.187,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.326,"bearings":[7,187,210],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.41,"geometry_index":1676,"location":[12.21566,51.726096]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":1.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.123,"geometry_index":1677,"location":[12.215266,51.724034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.215185,51.723726],"geometry_index":1678,"admin_index":2,"weight":7.147,"is_urban":false,"turn_weight":1,"duration":6.851,"bearings":[9,186,344],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":21.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":18.925,"geometry_index":1680,"location":[12.21486,51.721918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":15.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.717,"geometry_index":1685,"location":[12.213797,51.716341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":8.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.661,"geometry_index":1687,"location":[12.212998,51.712301]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.212575,51.710047],"geometry_index":1689,"admin_index":2,"weight":5.209,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.807,"bearings":[7,186,217],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.212313,51.708584],"geometry_index":1690,"admin_index":2,"weight":1.81,"is_urban":false,"turn_weight":1,"duration":0.907,"bearings":[6,186,334],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":2.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.95,"geometry_index":1691,"location":[12.212271,51.708345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":4.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.35,"geometry_index":1692,"location":[12.212162,51.707767]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":37.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":32.433,"geometry_index":1693,"location":[12.211916,51.706472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.926,"geometry_index":1694,"location":[12.210036,51.696553]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,185],"duration":31.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":27.686,"geometry_index":1695,"location":[12.209983,51.696283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.967,"geometry_index":1698,"location":[12.208363,51.687734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":74.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":65.409,"geometry_index":1699,"location":[12.208309,51.687459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.029,"geometry_index":1701,"location":[12.204725,51.668559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":48.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":42.416,"geometry_index":1702,"location":[12.204671,51.668268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.796,"geometry_index":1704,"location":[12.202384,51.656132]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":62.163,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":55.946,"geometry_index":1705,"location":[12.202288,51.655633]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":15.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.147,"geometry_index":1714,"location":[12.198546,51.640144]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.678,"geometry_index":1718,"location":[12.1971,51.636284]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.648,"geometry_index":1719,"location":[12.196482,51.634738]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.196299,51.634304],"geometry_index":1720,"admin_index":2,"weight":5.407,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.853,"bearings":[15,195,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.352,"geometry_index":1723,"location":[12.195712,51.632874]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.195559,51.632519],"geometry_index":1724,"admin_index":2,"weight":1.357,"is_urban":false,"turn_weight":0.5,"duration":0.934,"bearings":[15,195,358],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":6.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.638,"geometry_index":1725,"location":[12.195464,51.632293]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":25.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":23.903,"geometry_index":1726,"location":[12.194855,51.630805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":1.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.747,"geometry_index":1731,"location":[12.192277,51.62449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":48.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":44.002,"geometry_index":1732,"location":[12.19207,51.624014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,195],"duration":2.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.283,"geometry_index":1738,"location":[12.18692,51.611613]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":0.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.586,"geometry_index":1739,"location":[12.186637,51.610976]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.845,"geometry_index":1740,"location":[12.186571,51.610812]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.18602,51.609445],"geometry_index":1741,"admin_index":2,"weight":0.578,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.648,"bearings":[14,194,231],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.026,"geometry_index":1742,"location":[12.185954,51.609286]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":7.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.544,"geometry_index":1743,"location":[12.18584,51.609009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,194],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.642,"geometry_index":1745,"location":[12.185103,51.607239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":11.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.041,"geometry_index":1746,"location":[12.185029,51.607061]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":1.925,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.732,"geometry_index":1749,"location":[12.183909,51.604333]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.183725,51.603862],"geometry_index":1750,"admin_index":2,"weight":2.429,"is_urban":false,"turn_weight":1,"duration":1.61,"bearings":[14,192,358],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":6.741,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.067,"geometry_index":1751,"location":[12.18359,51.603467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,186],"duration":116.929,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":105.236,"geometry_index":1754,"location":[12.183135,51.601773]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":10.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.117,"geometry_index":1788,"location":[12.190222,51.572655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":8.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.548,"geometry_index":1789,"location":[12.189497,51.570113]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.205,"geometry_index":1791,"location":[12.188899,51.568012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":9.12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.436,"geometry_index":1792,"location":[12.188803,51.567677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":19.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":17.602,"geometry_index":1794,"location":[12.188132,51.565321]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.187013,51.560385],"geometry_index":1800,"admin_index":2,"weight":2.02,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.152,"bearings":[4,179,191],"out":1,"in":0,"turn_duration":0.026,"classes":["motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":4.731,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.495,"geometry_index":1801,"location":[12.187027,51.559827]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,356],"duration":31.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.835,"geometry_index":1803,"location":[12.187096,51.558593]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,347],"duration":3.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.866,"geometry_index":1810,"location":[12.189728,51.550536]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.190001,51.549767],"geometry_index":1811,"admin_index":2,"weight":7.873,"is_urban":false,"turn_weight":1,"duration":7.242,"bearings":[167,341,348],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":4.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.407,"geometry_index":1812,"location":[12.190678,51.547956]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":15.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.896,"geometry_index":1814,"location":[12.191116,51.546782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.11,"geometry_index":1816,"location":[12.192541,51.542987]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":7.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.771,"geometry_index":1817,"location":[12.192654,51.542681]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,347],"duration":73.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":66.388,"geometry_index":1819,"location":[12.193471,51.540548]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":61.524,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":53.833,"geometry_index":1830,"location":[12.196933,51.522343]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,350],"duration":5.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.788,"geometry_index":1842,"location":[12.199663,51.507112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,351],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.844,"geometry_index":1843,"location":[12.200019,51.505767]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,349],"duration":40.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":35.579,"geometry_index":1844,"location":[12.200089,51.505539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,348],"duration":1.099,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.989,"geometry_index":1851,"location":[12.202674,51.496036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[166,348],"duration":8.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.571,"geometry_index":1852,"location":[12.202757,51.495783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.203663,51.493875],"geometry_index":1857,"admin_index":2,"weight":1.67,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.876,"bearings":[159,176,341],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":12.173,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.956,"geometry_index":1858,"location":[12.203927,51.493455]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[154,336],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.737,"geometry_index":1860,"location":[12.205853,51.490764]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.206179,51.490341],"geometry_index":1861,"admin_index":3,"weight":2.136,"is_urban":false,"turn_weight":1,"duration":1.27,"bearings":[156,322,334],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,336],"duration":6.161,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.545,"geometry_index":1862,"location":[12.206376,51.490066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":4.454,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.008,"geometry_index":1864,"location":[12.207391,51.488712]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.203,"geometry_index":1865,"location":[12.208118,51.487731]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":90.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":81.167,"geometry_index":1866,"location":[12.208339,51.487434]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,356],"duration":7.015,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.313,"geometry_index":1885,"location":[12.216498,51.466392]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.216613,51.4647],"geometry_index":1889,"admin_index":3,"weight":6.678,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.427,"bearings":[0,180,196],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.216536,51.462889],"geometry_index":1892,"admin_index":3,"weight":7.868,"is_urban":false,"turn_weight":1,"duration":7.434,"bearings":[2,184,345],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":35.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":33.022,"geometry_index":1895,"location":[12.216254,51.461122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":25.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":23.241,"geometry_index":1902,"location":[12.212588,51.452907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.486,"geometry_index":1905,"location":[12.20932,51.447247]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":38.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":35.84,"geometry_index":1906,"location":[12.209252,51.447133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":4.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.725,"geometry_index":1912,"location":[12.204175,51.438303]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.356,"geometry_index":1914,"location":[12.20352,51.437175]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.821,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.73,"geometry_index":1915,"location":[12.20347,51.43709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":7.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.403,"geometry_index":1916,"location":[12.203258,51.436726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":7.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.961,"geometry_index":1917,"location":[12.202357,51.435173]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.006,"geometry_index":1919,"location":[12.201517,51.433712]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.201398,51.433504],"geometry_index":1920,"admin_index":3,"weight":2.97,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.133,"bearings":[20,200,222],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":10.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":10.26,"geometry_index":1921,"location":[12.201074,51.432942]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":5.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":5.039,"geometry_index":1923,"location":[12.199956,51.431017]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":0.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.57,"geometry_index":1924,"location":[12.199383,51.430045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":9.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.369,"geometry_index":1925,"location":[12.199321,51.429933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.274,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.16,"geometry_index":1927,"location":[12.198398,51.428316]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":9.095,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.64,"geometry_index":1928,"location":[12.198163,51.427908]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.25,"geometry_index":1930,"location":[12.197223,51.42629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.568,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.54,"geometry_index":1931,"location":[12.196978,51.425867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":7.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":7.335,"geometry_index":1932,"location":[12.196919,51.425765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":3.079,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.925,"geometry_index":1934,"location":[12.196119,51.424386]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.195815,51.423832],"geometry_index":1935,"admin_index":3,"weight":18.186,"is_urban":false,"turn_weight":1,"duration":18.098,"bearings":[19,200,353],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":4.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":4.574,"geometry_index":1939,"location":[12.193858,51.420431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.825,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":3.634,"geometry_index":1940,"location":[12.193335,51.419524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.479,"geometry_index":1941,"location":[12.192923,51.418809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.315,"geometry_index":1942,"location":[12.19264,51.418318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":15.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":14.601,"geometry_index":1943,"location":[12.192608,51.418262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.71,"geometry_index":1945,"location":[12.190988,51.415448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":43.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":40.909,"geometry_index":1946,"location":[12.190803,51.415127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.981,"geometry_index":1951,"location":[12.186258,51.40724]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.087,"geometry_index":1952,"location":[12.185929,51.406669]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":26.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":25.628,"geometry_index":1953,"location":[12.1857,51.406274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":10.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.949,"geometry_index":1956,"location":[12.182894,51.401393]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.181825,51.399493],"geometry_index":1959,"admin_index":3,"weight":1.539,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.639,"bearings":[19,197,220],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":6.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.284,"geometry_index":1960,"location":[12.181673,51.399185]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":2.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":2.762,"geometry_index":1962,"location":[12.18113,51.397906]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.180957,51.397346],"geometry_index":1963,"admin_index":3,"weight":0.83,"is_urban":false,"turn_weight":0.5,"duration":0.354,"bearings":[11,191,355],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,190],"duration":6.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.339,"geometry_index":1964,"location":[12.180936,51.397279]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,185],"duration":27.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":24.995,"geometry_index":1967,"location":[12.180593,51.395873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":1.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.518,"geometry_index":1976,"location":[12.181032,51.390303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":37.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":33.92,"geometry_index":1977,"location":[12.181122,51.39003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.264,"geometry_index":1982,"location":[12.183528,51.382565]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":16.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.699,"geometry_index":1983,"location":[12.183686,51.382055]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,349],"duration":5.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.27,"geometry_index":1985,"location":[12.184755,51.378783]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":25.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.932,"geometry_index":1987,"location":[12.18513,51.377591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":2.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.936,"geometry_index":1990,"location":[12.186712,51.37269]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":16.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.06,"geometry_index":1991,"location":[12.18686,51.372243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,349],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.146,"geometry_index":1994,"location":[12.1879,51.369022]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":39.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":36.183,"geometry_index":1995,"location":[12.187984,51.368765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,187],"duration":1.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.858,"geometry_index":2004,"location":[12.189144,51.36084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":30.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":29.113,"geometry_index":2005,"location":[12.189063,51.360449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.275,"geometry_index":2009,"location":[12.18791,51.354373]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.676,"geometry_index":2010,"location":[12.187743,51.353482]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":10.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":9.88,"geometry_index":2011,"location":[12.187717,51.353336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.187293,51.351254],"geometry_index":2014,"admin_index":2,"weight":2.926,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.099,"bearings":[7,186,196],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":40.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":38.156,"geometry_index":2015,"location":[12.18718,51.350619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":1.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.772,"geometry_index":2026,"location":[12.18408,51.342576]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.183837,51.342223],"geometry_index":2027,"admin_index":2,"weight":3.143,"is_urban":false,"turn_weight":1,"duration":2.262,"bearings":[7,23,203],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,204],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.948,"geometry_index":2028,"location":[12.183548,51.341797]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":5.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.351,"geometry_index":2029,"location":[12.183416,51.341608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":6.903,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.386,"geometry_index":2030,"location":[12.182656,51.340516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":39.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":35.335,"geometry_index":2032,"location":[12.18172,51.339169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":21.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":19.326,"geometry_index":2038,"location":[12.176408,51.331532]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":8.894,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":8.005,"geometry_index":2043,"location":[12.173209,51.327441]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.171737,51.325792],"geometry_index":2045,"admin_index":3,"weight":1.355,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.513,"bearings":[29,210,237],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":10.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":9.059,"geometry_index":2046,"location":[12.171444,51.325469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":1.249,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.124,"geometry_index":2047,"location":[12.169501,51.323327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.16926,51.323061],"geometry_index":2048,"admin_index":3,"weight":1.76,"is_urban":false,"turn_weight":1,"duration":0.866,"bearings":[8,30,209],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":6.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":6.282,"geometry_index":2049,"location":[12.169096,51.322879]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":1.62,"geometry_index":2051,"location":[12.167756,51.321391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":0.54,"geometry_index":2052,"location":[12.167423,51.321005]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,209],"duration":73.62,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":1,"weight":66.258,"geometry_index":2053,"location":[12.167302,51.320874]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,210],"duration":1.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.748,"geometry_index":2062,"location":[12.152954,51.304844]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":3.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.13,"geometry_index":2063,"location":[12.15258,51.304433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,209],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.045,"geometry_index":2064,"location":[12.151885,51.303706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":52.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":47.029,"geometry_index":2065,"location":[12.151663,51.303459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":9.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.804,"geometry_index":2072,"location":[12.13944,51.293072]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.137082,51.291155],"geometry_index":2075,"admin_index":2,"weight":1.62,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.808,"bearings":[37,218,237],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,216],"duration":0.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.324,"geometry_index":2076,"location":[12.136726,51.290873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":6.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.196,"geometry_index":2077,"location":[12.136659,51.290816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":2.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.228,"geometry_index":2079,"location":[12.135319,51.28973]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[23,38,217],"duration":6.431,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":2,"weight":5.771,"geometry_index":2080,"location":[12.134837,51.28934]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":18.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":16.848,"geometry_index":2083,"location":[12.13319,51.288011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":4.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.06,"geometry_index":2089,"location":[12.127818,51.284445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":2.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.442,"geometry_index":2090,"location":[12.126535,51.283623]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":7.44,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.882,"geometry_index":2091,"location":[12.125773,51.283123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":20.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":18.73,"geometry_index":2093,"location":[12.123593,51.281735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":0.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.779,"geometry_index":2098,"location":[12.117645,51.277751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":1.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.443,"geometry_index":2099,"location":[12.117431,51.277574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,218],"duration":160.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":144.003,"geometry_index":2100,"location":[12.11702,51.277262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":24.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.231,"geometry_index":2135,"location":[12.071053,51.249131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":8.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.218,"geometry_index":2141,"location":[12.065717,51.243876]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.064045,51.242149],"geometry_index":2144,"admin_index":2,"weight":1.879,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.096,"bearings":[31,212,225],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":19.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":17.366,"geometry_index":2145,"location":[12.063607,51.241706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":2.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.932,"geometry_index":2147,"location":[12.059534,51.237619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":6.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.594,"geometry_index":2148,"location":[12.059097,51.23718]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":2.124,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.965,"geometry_index":2149,"location":[12.057849,51.235892]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.057398,51.235444],"geometry_index":2150,"admin_index":2,"weight":8.198,"is_urban":false,"turn_weight":1,"duration":7.789,"bearings":[20,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":3.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.464,"geometry_index":2151,"location":[12.055784,51.233812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,213],"duration":2.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.984,"geometry_index":2153,"location":[12.055009,51.233023]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.054551,51.232573],"geometry_index":2154,"admin_index":2,"weight":2.748,"is_urban":false,"turn_weight":1,"duration":1.896,"bearings":[18,33,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":16.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.035,"geometry_index":2155,"location":[12.054149,51.232167]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.352,"geometry_index":2157,"location":[12.050697,51.228689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":2.923,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.704,"geometry_index":2158,"location":[12.050402,51.228371]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":7.628,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.056,"geometry_index":2160,"location":[12.049793,51.227737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":5.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.374,"geometry_index":2161,"location":[12.04818,51.226106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.089,"geometry_index":2162,"location":[12.046936,51.224867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.175,"geometry_index":2163,"location":[12.046679,51.224609]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":1.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.522,"geometry_index":2165,"location":[12.046403,51.224333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":54.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":49.081,"geometry_index":2166,"location":[12.046033,51.223972]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":8.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.539,"geometry_index":2175,"location":[12.034261,51.212383]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.032204,51.210712],"geometry_index":2176,"admin_index":2,"weight":1.283,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.433,"bearings":[38,218,239],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":8.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.892,"geometry_index":2177,"location":[12.031857,51.21043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.604,"geometry_index":2179,"location":[12.029701,51.208677]},{"mapbox_streets_v8":{"class":"motorway"},"location":[12.029255,51.208323],"geometry_index":2180,"admin_index":2,"weight":1.866,"is_urban":false,"turn_weight":1,"duration":0.981,"bearings":[14,38,217],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":4.669,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.202,"geometry_index":2181,"location":[12.029021,51.208131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.668,"geometry_index":2182,"location":[12.02788,51.207199]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":4.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.721,"geometry_index":2183,"location":[12.027425,51.20683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":16.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.628,"geometry_index":2185,"location":[12.026404,51.206004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":34.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":31.816,"geometry_index":2187,"location":[12.022376,51.202774]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":8.163,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.754,"geometry_index":2197,"location":[12.015606,51.195245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":29.085,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":27.631,"geometry_index":2199,"location":[12.014306,51.193355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.604,"geometry_index":2203,"location":[12.009673,51.18662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":15.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.889,"geometry_index":2204,"location":[12.009568,51.186468]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":1.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.967,"geometry_index":2206,"location":[12.007133,51.182912]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":6.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.218,"geometry_index":2207,"location":[12.006975,51.18268]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[12.005963,51.181195],"geometry_index":2209,"admin_index":2,"weight":7.054,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.432,"bearings":[23,203,215],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":8.685,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.034,"geometry_index":2210,"location":[12.005023,51.179836]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":4.905,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.537,"geometry_index":2212,"location":[12.003926,51.178248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.998,"geometry_index":2214,"location":[12.003305,51.177347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":12.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":11.488,"geometry_index":2216,"location":[12.002965,51.176855]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.429,"geometry_index":2217,"location":[12.001013,51.174012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":2.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.098,"geometry_index":2219,"location":[12.00026,51.172914]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.999909,51.172395],"geometry_index":2220,"admin_index":2,"weight":2.517,"is_urban":false,"turn_weight":1,"duration":1.648,"bearings":[13,23,206],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":5.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.813,"geometry_index":2221,"location":[11.999622,51.17202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":3.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.4,"geometry_index":2222,"location":[11.998721,51.170841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":9.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.982,"geometry_index":2224,"location":[11.998021,51.17]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":11.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.073,"geometry_index":2226,"location":[11.996075,51.167805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.385,"geometry_index":2229,"location":[11.993897,51.165341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":59.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":52.022,"geometry_index":2230,"location":[11.993815,51.165248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.374,"geometry_index":2234,"location":[11.982264,51.152133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":12.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.931,"geometry_index":2235,"location":[11.982179,51.152037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.638,"geometry_index":2237,"location":[11.979763,51.14931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":77.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":67.429,"geometry_index":2239,"location":[11.9794,51.1489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.452,"geometry_index":2245,"location":[11.964482,51.131887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":65.085,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":56.95,"geometry_index":2246,"location":[11.964158,51.131522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,180],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.668,"geometry_index":2261,"location":[11.955792,51.116186]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":14.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.796,"geometry_index":2262,"location":[11.955786,51.115716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":5.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.138,"geometry_index":2266,"location":[11.95577,51.112208]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":1.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.361,"geometry_index":2267,"location":[11.955765,51.1108]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":0.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.389,"geometry_index":2268,"location":[11.955758,51.11042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955754,51.110309],"geometry_index":2269,"admin_index":2,"weight":25.596,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.459,"bearings":[1,180,193],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.56,"geometry_index":2273,"location":[11.955691,51.103214]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955678,51.102502],"geometry_index":2274,"admin_index":2,"weight":8.756,"is_urban":false,"turn_weight":1,"duration":8.638,"bearings":[1,180,351],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":7.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.232,"geometry_index":2275,"location":[11.955655,51.100377]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":0.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.471,"geometry_index":2277,"location":[11.955631,51.098445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":7.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":6.86,"geometry_index":2278,"location":[11.95563,51.098317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":2.772,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.564,"geometry_index":2279,"location":[11.955614,51.096465]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":3.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.164,"geometry_index":2280,"location":[11.955606,51.095771]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.955594,51.094916],"geometry_index":2282,"admin_index":2,"weight":2.464,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.684,"bearings":[1,180,199],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":3.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.263,"geometry_index":2283,"location":[11.955586,51.09425]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,180],"duration":2.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.198,"geometry_index":2285,"location":[11.955574,51.093372]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.955568,51.09278],"geometry_index":2286,"admin_index":2,"weight":3.467,"is_urban":false,"turn_weight":0.5,"duration":3.215,"bearings":[0,180,344],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":4.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.484,"geometry_index":2287,"location":[11.955561,51.091975]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,180],"duration":8.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":7.484,"geometry_index":2289,"location":[11.955544,51.090752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,181],"duration":16.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.035,"geometry_index":2291,"location":[11.955523,51.088716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,179],"duration":0.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.626,"geometry_index":2294,"location":[11.955466,51.084623]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":12.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.818,"geometry_index":2295,"location":[11.955469,51.084455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":0.642,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.593,"geometry_index":2297,"location":[11.955436,51.081205]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[1,180],"duration":76.905,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":69.214,"geometry_index":2298,"location":[11.955433,51.081042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":1.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.96,"geometry_index":2312,"location":[11.953124,51.065824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":21.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":18.603,"geometry_index":2313,"location":[11.952999,51.065544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.476,"geometry_index":2317,"location":[11.949881,51.060277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":14.264,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.481,"geometry_index":2318,"location":[11.949792,51.060141]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.262,"geometry_index":2321,"location":[11.94755,51.056639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":0.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.378,"geometry_index":2323,"location":[11.947157,51.056024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":24.706,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":22.235,"geometry_index":2324,"location":[11.947093,51.055924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,200],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.953,"geometry_index":2329,"location":[11.943271,51.050111]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,201],"duration":32.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":29.604,"geometry_index":2330,"location":[11.943122,51.04986]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":3.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.113,"geometry_index":2342,"location":[11.941093,51.04164]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.283,"geometry_index":2343,"location":[11.94101,51.040758]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":4.349,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":3.914,"geometry_index":2344,"location":[11.940982,51.040398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.940898,51.039304],"geometry_index":2346,"admin_index":2,"weight":1.176,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.312,"bearings":[3,183,208],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.97,"geometry_index":2347,"location":[11.940867,51.038974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,186],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.571,"geometry_index":2349,"location":[11.940814,51.038418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":1.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.251,"geometry_index":2350,"location":[11.940789,51.038255]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.940741,51.03791],"geometry_index":2351,"admin_index":2,"weight":8.122,"is_urban":false,"turn_weight":1,"duration":7.92,"bearings":[5,187,346],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,194],"duration":27.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":24.541,"geometry_index":2353,"location":[11.940232,51.035939]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":53.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.384,"geometry_index":2360,"location":[11.936566,51.029472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":1.053,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.947,"geometry_index":2366,"location":[11.928591,51.016311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":6.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.462,"geometry_index":2367,"location":[11.928429,51.016048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":2.011,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.804,"geometry_index":2368,"location":[11.927507,51.014565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":30.912,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.815,"geometry_index":2369,"location":[11.927203,51.014075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":2.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.598,"geometry_index":2373,"location":[11.922488,51.006461]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":1.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.987,"geometry_index":2374,"location":[11.922045,51.005747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.055,"geometry_index":2375,"location":[11.92188,51.005475]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":34.183,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":30.765,"geometry_index":2377,"location":[11.921349,51.004655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":28.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.519,"geometry_index":2382,"location":[11.916134,50.99632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,224],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.926,"geometry_index":2389,"location":[11.910131,50.989985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,225],"duration":27.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.815,"geometry_index":2390,"location":[11.909834,50.989794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.173,"geometry_index":2396,"location":[11.90037,50.985649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,249],"duration":54.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":52.089,"geometry_index":2397,"location":[11.899895,50.985522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.912,"geometry_index":2402,"location":[11.878911,50.980239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":20.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.698,"geometry_index":2403,"location":[11.878537,50.980146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":10.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.254,"geometry_index":2408,"location":[11.87062,50.978125]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.856,"geometry_index":2415,"location":[11.867171,50.976716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":6.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.434,"geometry_index":2416,"location":[11.866887,50.976557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,216],"duration":14.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":13.514,"geometry_index":2420,"location":[11.865014,50.975224]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.415,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.384,"geometry_index":2428,"location":[11.862568,50.971828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.552,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.36,"geometry_index":2429,"location":[11.862519,50.971727]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.52,"geometry_index":2430,"location":[11.862222,50.971096]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.377,"geometry_index":2431,"location":[11.86204,50.970693]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.874,"geometry_index":2433,"location":[11.861867,50.970324]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.861389,50.969282],"geometry_index":2434,"admin_index":4,"weight":0.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.081,"bearings":[16,197,227],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":2.319,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.146,"geometry_index":2435,"location":[11.861259,50.969012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.929,"geometry_index":2436,"location":[11.860991,50.968431]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.860877,50.968177],"geometry_index":2437,"admin_index":4,"weight":2.176,"is_urban":false,"turn_weight":1,"duration":1.278,"bearings":[16,196,353],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.354,"geometry_index":2438,"location":[11.860737,50.967865]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,200],"duration":3.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.232,"geometry_index":2440,"location":[11.860074,50.966456]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,207],"duration":16.765,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.508,"geometry_index":2443,"location":[11.859547,50.965632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,235],"duration":7.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.147,"geometry_index":2453,"location":[11.85533,50.962349]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.852653,50.961231],"geometry_index":2456,"admin_index":4,"weight":1.091,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.219,"bearings":[57,237,260],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":10.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.128,"geometry_index":2457,"location":[11.852238,50.96106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":2460,"location":[11.848725,50.959633]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.848418,50.959505],"geometry_index":2461,"admin_index":4,"weight":1.654,"is_urban":false,"turn_weight":1,"duration":0.734,"bearings":[30,56,237],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":0.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.85,"geometry_index":2462,"location":[11.848167,50.959402]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":5.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.346,"geometry_index":2463,"location":[11.847846,50.959268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":14.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.636,"geometry_index":2464,"location":[11.845476,50.958309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.241,"geometry_index":2476,"location":[11.840225,50.955739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,217],"duration":60.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":54.564,"geometry_index":2477,"location":[11.83989,50.955492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":23.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.976,"geometry_index":2490,"location":[11.834193,50.943066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":1.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.989,"geometry_index":2492,"location":[11.835362,50.938039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,352],"duration":78.321,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":68.531,"geometry_index":2493,"location":[11.835416,50.937803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":20.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.837,"geometry_index":2501,"location":[11.840012,50.921251]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,354],"duration":18.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.577,"geometry_index":2503,"location":[11.84073,50.916786]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,356],"duration":10.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.37,"geometry_index":2506,"location":[11.841266,50.912849]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.841586,50.910682],"geometry_index":2509,"admin_index":4,"weight":1.083,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.178,"bearings":[175,201,355],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":3.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.49,"geometry_index":2510,"location":[11.841623,50.910438]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,355],"duration":1.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.364,"geometry_index":2511,"location":[11.841741,50.909661]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.84179,50.909356],"geometry_index":2512,"admin_index":4,"weight":3.507,"is_urban":false,"turn_weight":1,"duration":2.719,"bearings":[174,334,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":6.649,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.15,"geometry_index":2513,"location":[11.841886,50.908782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.214,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.123,"geometry_index":2514,"location":[11.842103,50.907375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":39.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.979,"geometry_index":2515,"location":[11.842144,50.90712]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,354],"duration":2.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.307,"geometry_index":2518,"location":[11.843477,50.89858]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,355],"duration":30.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.514,"geometry_index":2519,"location":[11.843554,50.898058]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":3.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.04,"geometry_index":2525,"location":[11.844728,50.891663]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":17.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.91,"geometry_index":2526,"location":[11.844844,50.890948]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,355],"duration":7.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.688,"geometry_index":2531,"location":[11.845466,50.886972]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[174,354],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":2534,"location":[11.845722,50.885403]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Erfurt"}],"type":"fork","modifier":"right","text":"Erfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"Exit 24 A 4"},"distanceAlongGeometry":221576.672},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Erfurt"}],"type":"fork","modifier":"right","text":"Erfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"Exit 24 A 4"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E 51.","modifier":"slight left","bearing_after":218,"bearing_before":218,"location":[13.239473,52.471589]},"speedLimitSign":"vienna","name":"","weight_typical":7320.549,"duration_typical":8081.194,"duration":8081.194,"distance":221576.672,"driving_side":"right","weight":7320.549,"mode":"driving","ref":"E 51","geometry":"iqracBajagXp|@dmAvcAluAfQ|UdqAzfBp\\dg@jkAd}AnaBp{B~dDdqEdT~Y|~C|hEheAdxAbr@j|@`i@fw@n_DziEnOfTrtBpsCz{Bn|CrkCzpDhxCt`EbShXh_CfaDheB|_ChJbMl`A`rAhcCxeDdf@lp@fT|Y~MtQhp@b}@hPjS~KvLfHzH`HxF`QbNnNnI~PlIbHnD|IbDbV`G`JnBfKjBn`@`GhDr@h`@jGzpAvRp}Bt^|d@hGbN~@xJQ|Ms@|D]jFm@tE_AxGwAhDkA`E{AnIyDxKyFxF_EzHcGrOmOdMaPzQgYbJoOjWah@lIyOlKcQpNySjJwKlJwIfFcDbKqJjIoEzHiDfM_EdGwApXsEhjDme@hj@oHf}@sLr[iDja@gFhUuC~F}@bp@_IlIiAxiAyNjFq@vHg@hEYbLUnN?zZ`At_@lEhRjDnXhIfWdK`_@jStNxJ`NxJhQvQtPtPdYx\\vkDlaEpnDxgEplA|uAzNfQbHjIbb@vf@|f@fl@bbAxkAjp@vt@zTrXdUdYfUhZjOlSjMdQvKzQxNxV|OhZxOh[rLlU`Nn\\nI`VbJdXlIdXzG~TbIvXxHzYnI|[zFjZnGhZtNpz@fxAzoJpuBfkNnJpf@zFjZnGvXxJt_@nItWvJxYlJtWbL`VnIfQlIdPvKvQlLfQxJnMlK`O~OxQxKfJjLzKdTjN~OtK|YtPzf@xXti@d[xaEd~BfSzLtQnIzTnKvPvHvNnFjNlElKjDjQzCvSrDnJbAzJl@|a@|BtR?zfBmB`f@i@hd@Cz_@MfDA|v@{@`s@s@phAi@pe@Qno@HzQnA~QfBjMfCtRnF~NlEvHzCxCjAxClAxMzGxIxEdCpAdOrJpVnS|LtK`\\j_@dWz^bNnTvNrWr_CvuE`Tz[nYr]fWjVjW~SfH|Erb@~Vt[jL`c@dLr_@lF`[fAnyDgC||ByAf_BiAxkBqAjnLgItk@hCja@~Ehd@vKpe@hNbc@pSpz@vf@zp@hj@z\\z^b^nc@|Ytb@vYne@dZfo@v[nv@rZf~@xRbs@d[rzA`kAtcGlOrx@hz@rnElEtUxm@``Dvh@loCnl@b~CfNft@jUlmAlN~s@rPzz@~@~DrHd]rIv\\pIfZtNbe@xGtPdL~YfLzWbLrVlL~T`NbWbN|S`OxRtO|Sn_@lb@`eBjjBtoAzsAnYb[ppAjtAf|CrcD|TvUxiAfmA|]|^hz@h|@tShRvO~MhQ|LtqBnkAl\\vR`W`NrO~IhlDxqBxbApk@xuBhkAxcCvuAhUdNdSbNnNzKhKdJvJpJrIfJhKzLdJvLvGlJfJpNnKvQ~L~UbMpXvLtZ`IjUpGrSxGdVxHn[nGpZtFd[zFh`@|Ela@|Cr\\`Cn\\fBt\\lAj\\|@~d@n@jq@\\pcAJfbApAroBY|WiAd`AeJdlIaGzpEk@z_@kE`bEsJ~vIqFnlCoBnxARpp@bAtr@pCbp@vDbl@dEjf@vHjt@~Fv`@fKbi@xGr\\nKvc@xa@z|AxMhl@nMhq@xEpZtJnt@pG~i@pDbg@v@nNv@bXzBds@x@dy@?xy@qAra@wBxo@_@bGcDtg@gIf|@sClUsFfd@gOr`AiVvsAgJdg@aCpMsKdl@cLpn@w{Ar`Iwh@loC}`@f}BgKnw@aIlp@gH|{@}G`cA}DzeAcBhy@QvJ{@~w@?bOZxo@?NbAn{@hCp_BnDhbCx@tvBM`kIm@phCw@~zCgAtvGGxz@Y|wDc@hrBdAdeC~Bv_AhD`|@pFzy@|IxaA`Grl@pDzX|AhLlI`m@|ZtzBnmBvcNte@djDjQfpAr^jiCte@hhDhMx}@rhA~aIpdA~mHlE`[ttAtvJdfA~wHzcBhzLjQbpAfPjiAzOj|@|CrRfFfZtAhG~GzZhHbUfIxVzIpUbInQhJ~QvItNpFdIlC|DvGvI`KxLjJvJ`LrK~J~H~IjGbKjG~KxF~JhElO`FrGxB~N`EpzA|]fp@nOh`@dJllBtc@dbFblAfh@~LfQnDpLtCvUxF`aEraAntA|[z~Bfk@|NvC`K~Bdv@hQjc@bKr[pHjz@vRvjDtx@h^dGpo@nIxKvA`b@rCd^z@B?zg@lAxFLrn@y@xj@yCtdAkLlWgEfOyCbV{EvfAwZtMkEdj@iUhmAik@zX}NzdA}g@z}@{c@j[mOlFiChnC}qAh{Ce|AvQeJvDgBdCkAjwCouAhOgHfNgGhPkHrRmHnWwJfSuG|^kJlYkH`W}EfS{D~ScChNmB|WqBbm@}C~e@kAjR@|S@li@r@bg@hDzf@rE|e@jGvh@jKbd@lKtf@hPtf@bRzh@lTxc@jW|c@xVbT`OjPdL|b@z\\ta@h^p[~Yna@~b@b`@vd@bW`YbIbJjn@tq@dj@hm@fp@vs@jX|ZhUrVpHhIhsAryA`}A`dBpt@|y@z_@bb@bl@bo@xo@|r@bk@xo@pk@do@fYz\\|X~Zhu@zy@fNnNjwAp}A`g@bh@th@`l@xb@ve@hr@rt@rpE|bFpeAzjAx`C`mC`xBn_CrIvJ~i@rn@lx@rgApXnc@|Sr]|h@hbAdO|[nj@jpAz_@hdAd[~_AlZ~dAvZvkAlPnw@lRpaApNlw@vm@flErM|~@lEv[~Jvs@nj@t~DnUn}AlGva@bIjd@`Jpd@|Mtp@lPxs@bYtfAtRzp@dh@h|Adb@xfAbb@`~@|o@znAzJ~PxJ~P|R|Zxv@|iAnaIhwK`\\jd@dtApjB~r@jdArZlf@rr@fpA~Upg@rf@liAj^p`AnMt_@h\\tfAlCvI`j@vyBzc@n{BzXtfBnd@v~Cxd@p~CpnAtqIjb@ztC@D~a@rsCrCtRzj@dzDdn@hmEnvAzmJ@HxPtiAzPteAtUnkA`Oxr@pLbd@bh@pjBvMhb@bZz{@rZdx@`n@|uAbVnf@|z@j{AzXtb@t^rg@rkAxvAnjAzxAbMpO|e@lk@xJvKnSbUz_@fg@ps@b{@z`AjiA|h@zo@riBh{Bf~Er_Gt`G|iH|p@~v@lnDveEntEjjF|cCt{Cf]l_@xsG|~H`tB~cCz{D`{ElVj\\xg@|r@hn@h_A~ItOhEfHnYph@x]tt@fYdo@xf@tlAhb@~iAx{@xhCpz@hjCjDxKvtCt~I|rB`mGjz@|lCry@`gC~`@fgA~u@dhBpUhe@fRr_@zaAp`BnMdT``D|gFptExnHdoAhrBfoAbqBz{AxhCdd@zz@h`@|{@bxAlkDd~AzxDze@hlAz\\h{@pXxq@nNp[fHhOhQt]rXnh@`Vzc@~\\~k@~cApbBxNdU|wBfiD|sApvBhuCfoElkAfgBrkA|dBzqA|bBboAxyArpAnuAxpAxpAfyChqCfc@l^vMzKboAp`A|lA~z@dfBjgA~iBffApk@p[p_@`TxuErjC``FzrCrhDthBhbDznBfrApeAfpAloAr@r@l_A`kAdk@r|@fYte@~j@tfAhk@xnApmAbhDfGhR|t@~zBbi@paBp^xhA`~Bn}GtQvh@nWnm@vGpOnRn_@dWra@x`@rh@d`@xb@b_@|]laB|wAft@dn@z[vY`\\d\\tOpQtNvRdOfThNbSvNlWrPd[`\\ls@rP`d@bKn\\hFzOpEtPnV|cAnMhr@lL|s@tJ`r@p_@~pC~Mnx@pJfi@fHtZdIl[l@`CfKr\\jK`\\zPrd@xMx\\nS|c@tRj`@`QpZv\\rh@|X~^x\\z_@jsCdzCvWd\\zW`]fVz^bVfa@dVdc@jW`i@bYvp@re@toAfk@jlB~Nne@hGpStg@fbB|Mnc@jx@jjCpUtv@zpA~eEpe@l|ArTvu@jKz^hHnUlFjOj[xaAnm@tpBxHxVff@f~Atr@~rBvt@riBnz@`bBn~@x{AjeAxtAdo@zv@h_AvhAnjBb{BpcB|qBrl@ls@jp@xz@le@~n@v_@li@xhAjbBnmAbrBld@fv@paBzpCriAtkBzs@foA~bAbbBvmA|tBdPlXlMlT|HvMd_Az~Al}@dzA|Ux`@`g@h|@jPl[vhAvyBlh@~lAh}@~aC~b@nsA|a@btAfb@~_BvaBzuGjo@biCb{@riDbc@ndB|X~hA~aAf|Ddo@biCt`@b~Ad]dvAzj@hgClWzmArk@`|Clq@j_E~r@vcEzw@rxEhn@hrDtEjY~[`lBbb@bcCtYbwAtJpc@tJr_@h[lmAfMh`@nG|RRl@f[t~@py@r~Bz{@ldCzDbL~IbW|h@~{AjaAnoCbd@hqA`W~r@~aAlsCpJtXnLh[~Zhx@~HtQbP``@jF|Ld]|o@~\\`o@t_@zm@b]bh@tm@ty@lYx\\bYd[zYdZ~[bZh]`[b`@|Yhg@n]~W~O|eAxh@xlA|c@`qEbvAl_G`mBzBt@jgFr~AhuCh|@`|El~AlsG~cCzfCry@jVvHptGbsB|aBlk@dw@~Zbx@vb@rZjQp[`Utp@xg@zl@ri@h_@b`@dOrP|MrOzYn^f^vf@b_@`j@v\\|i@zZzj@|\\hq@hW|j@~Vdn@hpC|dHhfIjwS|R`g@fa@z`AjPd^xVzf@zPd\\xWje@pPhX|Y`d@lj@xu@`Yz]~Z|\\f^n_@`_@f]nz@fs@be@d`@hkAlaAvmAbcA|}ClhC~dAp{@|cAjz@zuAtjAtsBtdBbGvExj@bd@pXbUzOdM`T~PrmAhcAppBhcBnPlMh`Anv@h|Ep~D~SdQbmAnjAno@dt@n`@ze@lf@vo@pd@~q@pu@joAfs@zrAzFlMlV|i@fOv\\hP|a@d]v{@hRvi@|Rpm@tPth@~Mvh@jMxf@bQto@zPvr@pLbg@nm@bnCj\\dzArX~lAzHx]dEpQdD`OhDnOzC|LvYzhAhJx]t`AfkDvl@xnBzj@|dBv}@xnCdq@~tB~Xn}@~HdWdQdm@fwBptGjjB~vF|`@|hAb^xdAz[v_Ajk@|dBjC|Hpu@r}BfZ`z@xZ`x@fj@vpArNrZxOp\\`Q|[nRf^~Rz]jNnV`d@rr@pZlc@zYba@x^`e@``@pc@|\\`_@jVzVbn@|j@~]xZvInGbWrQ`DrCll@xa@pb@rWfVjMhn@b_@fx@f`@~yAzu@|wApt@tx@fb@~y@pb@lZnOxSjLhp@x]~Az@~jAbl@nv@ha@j\\|Rp\\`Tt^tWnb@t\\vi@zf@rVfVpOdO`sFpsF|N|N`j@|i@bcA~bA`}@h}@teAfeApPbQ|KzKxe@zg@hSdSh]d]jIlH~~@h_A|NzNvbB`bBhq@rq@pp@rr@di@|n@zf@lq@vh@ly@lRv[jQ`\\lR~_@nJbRzkClhF~`@pw@pjCbgFtp@rpAl`@`q@tWna@`^dh@h]pd@x\\fa@|OzQtRvRnv@vs@t{@ts@bjBrxA~vEjsDleClnB|SxPvPlNtaBnqA`dAnw@pkA`{@t`Azi@|FdDjVdMvJbF`eBt{@`~@|d@ptAdw@dg@x]fc@v[be@nb@hc@zb@pXfZv]ta@zm@nz@|c@jp@zc@~w@tJ`Qfb@|z@~jClcGbrJnuTtSnf@zxAzdDpx@|kBl}@vjBho@pgAno@n_Ap|@tfAviArjAty@~p@pxAnfA~_FdnDx}C|zBxaAbs@xp@jg@nv@~i@`LnHf|@po@xW~QjpAd}@|KxH~mAxz@v}AbdAz^hTj|An}@~g@xXvS~KrMpGvn@vZrq@pZfr@~Xpp@lVzp@dUfcA|ZfdAjXzjBt`@`iAjQdr@bJ~eCdXbyCr\\~hBrRtSxBz_CrWfR`Dry@bIju@dIp_A`KdUdCr{BrVbWvC`pBxTfbAlLfxDnc@t{AtOdo@vHlzAjO|MrAbc@xE|oAjN|jRntBzOhBrHj@j[`DhoNx}AdPjB|qRnuBhiPnhBdQjB|zBbWpyRxuBd^~DrsDtc@zcBnSb}Cn[xTnCneCn]j}B~`@rWhFvbBt]jxBdh@zp@xPv}@nU~aAtXr|@jWr_Bre@bZlJvMjE`}@~WpKhDdUpHbM|D~{A`e@hPbF~jBjk@`fCvw@nGrBx|Bfp@v\\|KdfBvi@||G`vBbAZdjGfnBxV|Hx{A~d@xf@tPfIbCltAla@|HbChPbFtWdI|tAzb@bJrClyA`d@rcAf[lJtCl\\nJtWlGpRpEfd@lI`p@lJ~LdAvi@|Dh^tAlPP|YZfc@e@da@{A|s@gFve@qG|k@sJtq@aQzTyFrbF_bBnYwJx`EstAlk@qRrmGavB`gBwl@f[wIt_@aKpe@{JfZiFx^iFj[qC`\\mB|[qAha@c@|^Rh_@x@fi@hDp]bD`a@|E~h@jIjo@vLz}Chl@ri@bKtwAfX|S~D`gCve@dJdBddAvQp~@hQjj@dJfl@rHxw@lGh]rBza@[nc@Nrg@yCzl@gEfu@kKdg@sKf\\gHthAkYtsDobArnAc]`o@aPdpBii@r_@eKvg@eNpoAa]r{C_z@bRaFd{Bun@bHkB|kCqr@xcEagA`tAe[v`@eJ|hBwY`nBkLpSUjkDuDfiBsAxtAeAfnAaA~rB_Bn|A_Cf{@sCd}@yDv`@sEp^{Dz}@wJdkBiYdhBe[|AYrdEus@zlA}S`sAgUfMkCpqDin@zs@aMxuDwo@di@uJv`@iHzcA_Rza@mJxNeDnf@eO|\\gMv[sMnRwIp@YfYoOhc@_WzbCk_BlYkSdPiK`QqLpaA{p@h|@ml@pQyLhlBupAjQwLfbCm~A|s@_c@tw@_`@zQ_JrbA}`@b}@mYf_AyVnv@wOfFeAn`AsNrfEii@vEm@jkEwi@~bAuM|JsAzmAuKzb@yB~o@qDr^e@tSOlC@jd@JbSf@tv@dBjb@~BnW~Bpq@rHdy@vLvr@jN`GjAn|Aza@xsAng@tgA|g@loChpApK`F~qBnaAdaFtaCbFfCf]jPvjEdtBfz@~`@ltCxtAthAhi@nb@rSfFdCf~@vc@hDbBvUfL``Bhw@rjAlj@tN`H~KlFbb@fSrUjLt`Bnw@v{@xb@~EzBlKdFrwAnq@nXtM~Q|IbqAxn@lYhNjEtBbP|H`dA`g@ra@~Qxa@~Rp{Abt@r^fQpt@|]tw@t_@tk@vXt]tPnB~@vlAvk@baBnw@`SpJtsCptAbeDt~ArvAjq@|E~BprAlo@tb@pStWhMflBn~@flBl~@puAlo@|y@r`@|L|Fzl@fXfRnH~YrK|s@hT~a@xIdCh@la@dIbg@nGhLvAx\\|Bvj@`Cfz@h@bs@wAjn@sDf_@gE`LoA~b@yGna@yI`PsDdrDax@fx@mQpxB}f@b}Ag]lMuCz^{HddBq`@hfBg`@v[_Hvl@mMjmCmm@b{Ao\\xfA}U|ZgHnaBq^jgAqVl]{H`OgDtpCkn@rr@mM~_@uEzV{Cls@cFdv@aB`kApApr@tFzDXlW`DfsA~MrgDd_@prBvUhJbAtv@lIbHr@`xAlQhPjBvVtCtf@`Frr@tGl|AlQdYhDtY~E`YvF~TpEpz@~U|`Ab_@f|@nc@po@p`@jTxM`UdNrY`QxJfGfcAnn@|ChBfnAdv@pMbItcAzn@lgDbtBlW`Pt~B|wAnhAzq@jw@~e@~U|NfmAlz@piAv_AnVxSjh@|c@t|@`v@dShQzdClxBrO`NjJfItCfChwAnnAbWxSdGpF~JtIpqB`fBx`CxsBlcCfuBxd@v`@hpD|}CvHvGhrFdxEzoCh`CtXjVll@lj@lNzLnKjKnoB~mBjpBbhCvhBb`CtmBziCzOdTnpDfuEfW|\\fdAjtAhY`_@rPfUpBdCnCfDj~@nmAjWb]~MjQtl@|v@jUr[`a@nl@v^hl@b`@`r@nk@pcADFfnA`|Bjr@doAf^rn@fd@ly@np@xlA|c@lx@|sBlvDjDjG`b@`r@tu@lfA`JjLnRtXbxAfoBdDnEp`AbqAxp@b_Ahr@hjAl`@`u@vJxSxTne@zbAzvBb}A`gDvE`Kn{@rkBz}B|`FtmC`}FnThe@rRbb@jwBzuEbgA``CxT|e@v}AdgDzmAdlCbq@rxArNd[dkAvfCvGrNfy@|`Bv`AfdBpPlXv^|l@fe@ds@zDtFlc@|n@th@|q@vTfZha@df@dk@|o@`i@~j@lUvUzJ`KxkDziD`b@za@xW|Vzf@pe@fj@~h@tZjZn~B`~B|~Bn~BlZhZnoA~lA~Zd[~dBzcBzS`Tl[jZb[r[jXbXrNpNvhEdgEzRlQ~KnKrYpX|dBxcBllAvlAbO`OjOhOZ\\pUbVtErEdOzNtgErcE`~CzzCrdAldArmCdmCzvAnaBnNzQ`Yv^lgBp_CrPtTfqAddBhZp`@bUzZ~JrMfy@hfA`Vl[rLlO~d@jn@tZla@dmDhxE`Zh_@zY`_@f|@xbAfu@dt@ziArfAjYrSrg@x^~z@tl@jBbAz~Az`Alt@vc@t_Ank@ryChiB`t@lc@beEfgCbNpInHpEx]bTl~D`bCnMzHpZxQf`Alk@|sAvy@~nAfv@fRhLjMzH|h@|[pQxKdKlGtpD~xBvKvGzv@he@l_@|TlV|PthAhw@tYxSzX|U`PbNbwBniBl~ApsA`]lYn[bXxDbDjgEloDd|F~}EbsF|uE~xBpjB~DhD|rBteBnu@ho@`P`NpGrF~`DxmC`hH|dGh`E|gD|qCj_Cd_B|rAxfDjqCxUfSlv@|o@niDfuC`{@dp@bUtOrs@vf@hsBjfAt|@n_@bUrHpy@pXtfApYhx@bNdaAdQlUlBty@`Hv}@rEj\\JrcAfAnr@O~tAYbL@~vAHvVL|EFxJBngARzuGnAfoATnk@XxcCl@lJ@hlBl@~F@vrB^jj@N`D@jo@Trh@NdJBtj@R~c@Jhq@Ltb@Hvg@VzlARjp@TzRHpfBh@jcC|@nIEd}Bl@|kARdIDz_EdAr~AZr~Ar@dfBbGdZhBhhApJ~gArNv`AlPna@lINB~a@hJ`lAl[ze@lOre@xOnPxF|v@|Znu@f]rh@jVbpDhpBnGpDzg@tYvnArq@faBx}@z_@~SpDpBfE~Bj`Bl_AhvAh{@`}@rf@jTvLd~Av{@tNhHx]bRpQdIjb@dQ`f@~O|HvBt_@nK`n@lLhm@tHlh@|EbhBnGtRp@tvA|Dbv@dDnUv@~c@xAj^lArS|@tER`[tAdIp@pT~Apn@pHrjAfU|c@lMhdA`a@~K~FjnEb|BfFlC`Y~Nfk@`ZnmFfpCtkAtk@fnE|~B~iA`m@fyDhnBze@dVlObIt{Arx@r]~QpqA`r@laDvcBlcAbi@laDvcBrk@tZ~OhItn@z]pBhA|~@nh@jvEfdCfsA`s@zgB`bAns@`_@`PlIv_@~R~fAjq@hsArdAxw@~x@dt@f|@xnAnhB|JpQ`~@zbBnhAjqCny@rlCrNhn@n]l|AzPz}@|Ft\\to@peEbeB~rKz\\ttBpyAfdJ|y@~hFxDjV|h@zbDnHrc@p{@fpFvKvn@p@hDnFpXzI|_@fNbh@tNxd@dNv_@hJzUfKnU|HvP`Pd[hTl_@nV~]lTlXpIlK~UvVfYjWdSzOtXzQf[~P`\\~Nfp@pUhE`Blf@pQdXjJzAh@dSnHb`Az\\zObGhc@vOzNbFnRvGfn@~Sxg@lSfN|GrHzDrYbQxYhTzMxKtVfVtTjVtYf_@bQjWxPfYvQl]rMdYbUhj@tLv]xJn[jk@`kBtI|Xd_@jnAdWvy@x_@lpA~FdRlEtNjG`S|z@bsCdJzYxG~S~ZjdAfStn@tHnT~HbS~H`StJxT~Q`_@nPlZfHpKfDtFlN|SfV`[zJpMxwApqA`pC|cBnoCdcBdb@zR~q@fTll@|KfIh@bb@zCng@q@bv@kGnyAqS|w@eLf`G{z@vMkBdSeDj`Dah@hpAyV|iGilArfHstAzbCae@zgAoNhCU|bA{IbrE_a@~aBaN`hBaM~h@kCt_BgMzVoBzMgAfNiApo@kF`RaBzb@_E|vAqL|NqAro@_GzxG}j@fjEk^r_@yCzQ}A|OcBtqCkYxhBiSvI_ArcBsQtk@gFv[mCnW_C|sA{Lrg@_EtdAqIx[kCrh@cFrZoCvd@eE"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep right to take A 4 toward Erfurt.","announcement":"Keep right to take A 4 toward Erfurt.","distanceAlongGeometry":122.182}],"intersections":[{"bearings":[175,191,354],"entry":[true,true,false],"classes":["motorway"],"in":2,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.023,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":2535,"location":[11.845821,50.884799]}],"exits":"24","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Erfurt"}],"type":"fork","modifier":"right","text":"Erfurt"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"A 4"},"distanceAlongGeometry":155.515}],"destinations":"A 4, A 9: Erfurt, Frankfurt am Main, Dresden, Gera","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 24 onto A 4 toward Erfurt.","modifier":"slight right","bearing_after":191,"bearing_before":174,"location":[11.845821,50.884799]},"speedLimitSign":"vienna","name":"","weight_typical":6.929,"duration_typical":7.316,"duration":7.316,"distance":155.515,"driving_side":"right","weight":6.929,"mode":"driving","geometry":"}jw``Byj_rUvTnEb`AgC"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 16 miles.","announcement":"Continue for 16 miles.","distanceAlongGeometry":25699.406},{"ssmlAnnouncement":"In 2 miles, Take exit 52.","announcement":"In 2 miles, Take exit 52.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 52.","announcement":"In a half mile, Take exit 52.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 52 onto L 2309 toward Bucha, Milda. Then Turn left to take the A 4 ramp.","announcement":"Take exit 52 onto L 2309 toward Bucha, Milda. Then Turn left to take the A 4 ramp.","distanceAlongGeometry":274.167}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[11.845785,50.883409],"geometry_index":2537,"admin_index":4,"weight":27.736,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":30.001,"bearings":[175,192,358],"out":1,"in":2,"turn_duration":0.017,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.839571,50.879587],"geometry_index":2558,"admin_index":4,"weight":11.978,"is_urban":false,"turn_weight":11,"duration":1.07,"bearings":[69,80,259],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,259],"duration":2.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.316,"geometry_index":2559,"location":[11.839199,50.879542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,259],"duration":10.448,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.664,"geometry_index":2560,"location":[11.838304,50.879433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":6.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.61,"geometry_index":2562,"location":[11.834563,50.878988]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":2563,"location":[11.832384,50.878743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":22.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":20.569,"geometry_index":2564,"location":[11.831954,50.87869]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,263],"duration":9.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.836,"geometry_index":2569,"location":[11.823616,50.877861]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":2.625,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.356,"geometry_index":2571,"location":[11.819806,50.87755]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":9.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.738,"geometry_index":2572,"location":[11.818793,50.877468]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,262],"duration":3.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.306,"geometry_index":2573,"location":[11.815027,50.877166]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.813611,50.877043],"geometry_index":2575,"admin_index":4,"weight":4.222,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.698,"bearings":[82,263],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.811792,50.876896],"geometry_index":2576,"admin_index":4,"weight":12.351,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.729,"bearings":[83,263,277],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.806352,50.87646],"geometry_index":2579,"admin_index":4,"weight":3.053,"is_urban":false,"turn_weight":1,"duration":2.302,"bearings":[55,84,262],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,262],"duration":6.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.774,"geometry_index":2580,"location":[11.805448,50.876383]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,260],"duration":14.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.703,"geometry_index":2581,"location":[11.802914,50.876145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":1.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.048,"geometry_index":2586,"location":[11.79752,50.875134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,244],"duration":51.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":46.591,"geometry_index":2587,"location":[11.797083,50.875016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,253],"duration":4.284,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.855,"geometry_index":2605,"location":[11.778877,50.869161]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.271,"geometry_index":2606,"location":[11.777254,50.868841]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.34,"geometry_index":2607,"location":[11.776714,50.868736]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.776126,50.86862],"geometry_index":2608,"admin_index":4,"weight":5.877,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.536,"bearings":[73,253,277],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.773609,50.86812],"geometry_index":2612,"admin_index":4,"weight":2.526,"is_urban":false,"turn_weight":1,"duration":1.703,"bearings":[53,73,254],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,253],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.922,"geometry_index":2613,"location":[11.772934,50.867996]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":16.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.424,"geometry_index":2614,"location":[11.770792,50.867572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.903,"geometry_index":2616,"location":[11.764499,50.866332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":16.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.549,"geometry_index":2617,"location":[11.764105,50.866252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":53.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":49.374,"geometry_index":2620,"location":[11.75772,50.865091]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[129,309],"duration":4.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.566,"geometry_index":2650,"location":[11.737546,50.868927]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[129,310],"duration":5.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.884,"geometry_index":2651,"location":[11.735952,50.869743]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,308],"duration":1.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.938,"geometry_index":2652,"location":[11.734268,50.870626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,309],"duration":6.997,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.466,"geometry_index":2653,"location":[11.733944,50.870788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,302],"duration":45.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":42.449,"geometry_index":2655,"location":[11.7317,50.871897]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":0.874,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.786,"geometry_index":2666,"location":[11.713756,50.874665]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":20.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.567,"geometry_index":2667,"location":[11.713396,50.874693]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":7.485,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.736,"geometry_index":2669,"location":[11.704995,50.875411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":13.876,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.488,"geometry_index":2671,"location":[11.70203,50.875661]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":1.044,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.939,"geometry_index":2673,"location":[11.696431,50.876141]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":1.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.321,"geometry_index":2674,"location":[11.696018,50.876172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":54.44,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.978,"geometry_index":2675,"location":[11.695423,50.876222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,272],"duration":5.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.284,"geometry_index":2683,"location":[11.673449,50.878053]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.921,"geometry_index":2686,"location":[11.671055,50.878046]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.08,"geometry_index":2687,"location":[11.670646,50.878026]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.670166,50.877998],"geometry_index":2689,"admin_index":4,"weight":1.133,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.279,"bearings":[84,262,283],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.692,"geometry_index":2690,"location":[11.669657,50.877951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":13.106,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.796,"geometry_index":2691,"location":[11.669343,50.877921]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":0.804,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.724,"geometry_index":2696,"location":[11.664136,50.877182]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.663813,50.877133],"geometry_index":2697,"admin_index":4,"weight":2.838,"is_urban":false,"turn_weight":1,"duration":2.05,"bearings":[48,76,257],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":5.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.203,"geometry_index":2698,"location":[11.662998,50.877016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,259],"duration":2.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.306,"geometry_index":2700,"location":[11.660689,50.876677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":4.154,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.738,"geometry_index":2701,"location":[11.659652,50.876546]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,263],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.882,"geometry_index":2703,"location":[11.657963,50.876366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,262],"duration":30.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.189,"geometry_index":2704,"location":[11.657577,50.876335]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":9.481,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.771,"geometry_index":2718,"location":[11.645438,50.876198]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":7.065,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.706,"geometry_index":2721,"location":[11.641685,50.876536]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":0.292,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.271,"geometry_index":2723,"location":[11.638892,50.876901]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":0.642,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.609,"geometry_index":2724,"location":[11.638779,50.876917]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":0.981,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.933,"geometry_index":2725,"location":[11.638526,50.876956]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":11.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.47,"geometry_index":2726,"location":[11.638152,50.877012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":17.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.891,"geometry_index":2727,"location":[11.633996,50.877642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":2.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.185,"geometry_index":2730,"location":[11.627299,50.878658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":7.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.593,"geometry_index":2731,"location":[11.62645,50.878787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.623517,50.879237],"geometry_index":2733,"admin_index":4,"weight":8.29,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.509,"bearings":[104,284,293],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":11.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.604,"geometry_index":2735,"location":[11.620451,50.879706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":3.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.175,"geometry_index":2740,"location":[11.616241,50.880303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.615209,50.880414],"geometry_index":2741,"admin_index":4,"weight":4.724,"is_urban":false,"turn_weight":0.5,"duration":4.143,"bearings":[83,100,277],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,271],"duration":3.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.823,"geometry_index":2744,"location":[11.613867,50.880488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,266],"duration":2.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.712,"geometry_index":2746,"location":[11.612647,50.880481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":0.367,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.355,"geometry_index":2748,"location":[11.611784,50.880422]},{"tunnel_name":"Lobdeburg-Tunnel","entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[81,257],"duration":27.831,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.526,"geometry_index":2749,"location":[11.611675,50.880411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":0.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.461,"geometry_index":2758,"location":[11.604336,50.877769]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":0.58,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.587,"geometry_index":2759,"location":[11.604226,50.877704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,229],"duration":3.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.059,"geometry_index":2760,"location":[11.604085,50.877621]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":27.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.63,"geometry_index":2761,"location":[11.603141,50.877099]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.106,"geometry_index":2765,"location":[11.596565,50.87346]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":4.339,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.23,"geometry_index":2766,"location":[11.596046,50.873182]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.595042,50.87263],"geometry_index":2767,"admin_index":4,"weight":1.327,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.368,"bearings":[49,230,251],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,231],"duration":3.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.878,"geometry_index":2768,"location":[11.594701,50.872452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,235],"duration":1.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.376,"geometry_index":2770,"location":[11.593917,50.872076]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.593532,50.871909],"geometry_index":2771,"admin_index":4,"weight":3.309,"is_urban":false,"turn_weight":1,"duration":2.438,"bearings":[32,55,238],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,242],"duration":7.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.524,"geometry_index":2772,"location":[11.592871,50.871653]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,252],"duration":17.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.4,"geometry_index":2777,"location":[11.590595,50.870994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,276],"duration":17.595,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.275,"geometry_index":2786,"location":[11.585066,50.870554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,287],"duration":3.652,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.372,"geometry_index":2794,"location":[11.57967,50.87138]},{"tunnel_name":"Jagdbergtunnel","entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[107,286],"duration":162.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":146.182,"geometry_index":2796,"location":[11.578566,50.87159]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,271],"duration":2.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.883,"geometry_index":2811,"location":[11.536543,50.879036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":9.177,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.012,"geometry_index":2812,"location":[11.535753,50.879045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,261],"duration":28.878,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.269,"geometry_index":2817,"location":[11.532438,50.878912]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":49.032,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":44.129,"geometry_index":2826,"location":[11.522635,50.87665]},{"bearings":[110,293],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"geometry_index":2850,"location":[11.503846,50.87606]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bucha"},{"type":"text","text":"/"},{"type":"text","text":"Milda"}],"type":"off ramp","modifier":"right","text":"Bucha / Milda"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"52"},{"type":"icon","text":"L 2309"}],"type":"off ramp","modifier":"right","text":"Exit 52 L 2309"},"distanceAlongGeometry":25732.74},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Bucha"},{"type":"text","text":"/"},{"type":"text","text":"Milda"}],"type":"off ramp","modifier":"right","text":"Bucha / Milda"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"52"},{"type":"icon","text":"L 2309"}],"type":"off ramp","modifier":"right","text":"Exit 52 L 2309"},"distanceAlongGeometry":3218.688}],"destinations":"A 4: Erfurt, Frankfurt a.M., Jena","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 4 toward Erfurt.","modifier":"slight right","bearing_after":192,"bearing_before":178,"location":[11.845785,50.883409]},"speedLimitSign":"vienna","name":"","weight_typical":943.232,"duration_typical":1008.695,"duration":1008.695,"distance":25732.74,"driving_side":"right","weight":943.232,"mode":"driving","ref":"A 4; E 40","geometry":"att``Bqh_rUdKdC`HbBjRvCvKlD|JvDxLbGvNjJdKtHrLpLlMhPlJrNjJpPzIhSjHxQ~FrRzHtZ`GdZpFd_@vFfb@pJpy@zFf_@xAfVxE|v@dMxuBrL~qBhNdgChBzYzLp{BbClf@tChm@hN~|CxLxwC~IrdClGngBbDh~@zQjjFpDf_AbAfWdHtpBnE`pA`QjyEtApg@xCnw@zMj}ChChe@nG|}@pNfrAvK~{@`UrzAjFhZfUxeA~VjfAnKza@bnBfyH`p@`hCtp@xjCtKpe@tKdf@fHh]|Ff[zFl\\xFl\\hEjXhEfYdFn^hFta@xDb[bEp[~RldBpEv`@fFvc@|Gjl@bEh^jEt]xH|p@vFdi@nYzdCzl@fgFr^``D~CrWxm@lpFvL|lA~JtnAvBn[xC|g@bChl@zAdf@hAtj@f@jg@Tn{@g@fn@e@na@y@l`@{@vY_Bpd@sCzj@gDrh@eDrb@_Fnh@}F|i@mHhk@sIlk@yGra@}Hfb@eKlf@kLdg@kMtf@cKl^{Mhb@eNla@uOrb@mPjb@k`Ad~B_r@rbBev@fhBcIfS_]|y@if@hpAwXn_A}Mhf@uKvd@kNrp@}QrnAcMbjAwEzh@uEtv@gGtpAic@vxLeLpyCw@nUgUdbGsUzhGaIfwBqD``A{LxbDcObyD}@xXcBdd@s@fTqYhwH{HdqBed@nvLyUhhGeHbyBgDbhA}@pXe@`v@Et\\x@z_Af@pXRjKb@rP|Ax^z@rR~Dxr@tCj`@nLf{AlOrnBpDjc@`BdShF|q@zCn^hOxoBdGx_AhEnu@|C`r@|@bWxBni@dBpe@vArg@hApb@~BlwA\\zVXdZj@h`AZl|@Idu@[pq@m@reAsBtrAgDbkAcEdwAkEheAsG`kAiIpyAoK~rA_@`FmAxNoBjVkf@vbGyMxcB{Wz_DyVz{CaG`t@{KbtAgNdaBmO~gB{KruAcBbT{Qr~B{HnaAgChd@e@pI}En_A_AlZm@|Ye@n\\Q`c@^dg@XfSzAt`@TxEvJfrAdGlf@hGr`@xZvtAdSdm@tN|c@tPpb@lf@xeA`ObZ`CzEdDxGr_@~y@hfB~yDP`@~cA`|Bpu@z`BjPl_@na@v}@bJhTtIzSxKb[lI`W~Nhh@bKlb@tHn^rElVrEfXbErYvCrUpDp\\fDv_@|Etu@dCzm@bA`l@Trh@U|f@i@l_@kAp`@wBhg@yCvd@kEbi@aNlqAiI`u@{@hHaFtd@cI`t@_B|Nax@juH{mA~hLcnAnjLiNvqAmBnRgZtsCuPf_BsMpnAitAzoMui@vgFeItv@_Ih|@iL`xAsFngA{Arz@Qjp@?rf@Pjg@t@re@~@vc@`Cxr@jEd~@dHddAbHnv@~Gnn@~Kf{@tMdz@vVzqApEhTtp@txCnD`PjP`y@xMzw@pJbq@jIfp@zFvh@fEvc@nCz]`C|^~Bn`@|@dOlCrq@nBhm@lAxv@l@lx@I|w@cAt|@{BneA}FppAkGb_AmKpjAkEdb@}Fnd@yLty@iMtt@gPny@}YvkA"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left to take the A 4 ramp toward Frankfurt a.M..","announcement":"Turn left to take the A 4 ramp toward Frankfurt a.M..","distanceAlongGeometry":76.34}],"intersections":[{"bearings":[119,298,326],"entry":[false,true,true],"classes":["motorway"],"in":0,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.042,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":2,"geometry_index":2853,"location":[11.500823,50.876996]}],"exits":"52","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Frankfurt a.M."}],"type":"turn","modifier":"left","text":"Frankfurt a.M."},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"4","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 4"}],"type":"turn","modifier":"left","text":"A 4"},"distanceAlongGeometry":111.34}],"destinations":"L 2309: Bucha, Milda","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 52 onto L 2309 toward Bucha/Milda.","modifier":"slight right","bearing_after":326,"bearing_before":299,"location":[11.500823,50.876996]},"speedLimitSign":"vienna","name":"","weight_typical":7.492,"duration_typical":8.367,"duration":8.367,"distance":111.34,"driving_side":"right","weight":7.492,"mode":"driving","geometry":"gch``Bmp}|TqKjLaCvAcCfAkEf@gD]{CaA_CkAmCsCwBcDgDaG"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 98 miles.","announcement":"Continue for 98 miles.","distanceAlongGeometry":157196.062},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 7.","announcement":"In 1 mile, Keep left to take A 7.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 7.","announcement":"In a half mile, Keep left to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 7 toward Frankfurt, Gießen.","announcement":"Keep left to take A 7 toward Frankfurt, Gießen.","distanceAlongGeometry":168.889}],"intersections":[{"mapbox_streets_v8":{"class":"motorway_link"},"location":[11.50088,50.877871],"geometry_index":2863,"admin_index":4,"weight":32.688,"is_urban":false,"turn_weight":24.5,"duration":16.583,"bearings":[73,222,243],"out":2,"in":1,"turn_duration":7.485,"classes":["motorway"],"entry":[true,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.498993,50.877703],"geometry_index":2872,"admin_index":4,"weight":13.868,"is_urban":false,"turn_weight":11.75,"duration":2.389,"bearings":[99,122,302],"out":2,"in":0,"turn_duration":0.035,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,303],"duration":3.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.583,"geometry_index":2873,"location":[11.498168,50.878026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":21.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.409,"geometry_index":2874,"location":[11.496792,50.87859]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":1.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.558,"geometry_index":2877,"location":[11.489309,50.881593]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,302],"duration":43.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":37.681,"geometry_index":2878,"location":[11.48871,50.881832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,297],"duration":1.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.499,"geometry_index":2886,"location":[11.473336,50.887791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,298],"duration":49.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":43.524,"geometry_index":2887,"location":[11.472717,50.887991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,288],"duration":1.315,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.184,"geometry_index":2901,"location":[11.453695,50.892699]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":6.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.986,"geometry_index":2902,"location":[11.453181,50.892806]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":1.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.541,"geometry_index":2905,"location":[11.450615,50.893448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,294],"duration":10.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.275,"geometry_index":2906,"location":[11.449969,50.893615]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,300],"duration":7.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.416,"geometry_index":2910,"location":[11.446241,50.894776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.443773,50.895716],"geometry_index":2913,"admin_index":4,"weight":3.956,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.403,"bearings":[122,303,320],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[37,125,306],"duration":2.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":2.461,"geometry_index":2917,"location":[11.442277,50.896353]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.441373,50.896773],"geometry_index":2920,"admin_index":4,"weight":3.212,"is_urban":false,"turn_weight":1,"duration":2.477,"bearings":[99,127,306],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":5.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.233,"geometry_index":2922,"location":[11.440568,50.897155]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,308],"duration":10.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.876,"geometry_index":2924,"location":[11.438665,50.898063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,308],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.957,"geometry_index":2927,"location":[11.435074,50.899796]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,307],"duration":7.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.449,"geometry_index":2928,"location":[11.434729,50.899967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":21.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.595,"geometry_index":2930,"location":[11.43236,50.901106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,309],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.091,"geometry_index":2934,"location":[11.42519,50.904582]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[129,311],"duration":16.532,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.879,"geometry_index":2935,"location":[11.424814,50.904775]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,319],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.73,"geometry_index":2941,"location":[11.420003,50.90774]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[139,320],"duration":17.196,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.047,"geometry_index":2942,"location":[11.419793,50.907894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.684,"geometry_index":2949,"location":[11.415639,50.911451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":15.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":13.558,"geometry_index":2950,"location":[11.415451,50.911624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":2.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.791,"geometry_index":2954,"location":[11.411979,50.914903]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.575,"geometry_index":2955,"location":[11.411525,50.915333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[146,326],"duration":50.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":44.427,"geometry_index":2956,"location":[11.41137,50.915477]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":0.792,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.713,"geometry_index":2970,"location":[11.398301,50.926029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":11.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.49,"geometry_index":2971,"location":[11.398079,50.926169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,316],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.392,"geometry_index":2975,"location":[11.394781,50.92825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,315],"duration":9.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.703,"geometry_index":2976,"location":[11.394663,50.928328]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,315],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.571,"geometry_index":2977,"location":[11.391888,50.930061]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,314],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.426,"geometry_index":2978,"location":[11.39171,50.930172]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.391578,50.930252],"geometry_index":2979,"admin_index":4,"weight":6.008,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.695,"bearings":[134,313,341],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.389604,50.93144],"geometry_index":2982,"admin_index":4,"weight":2.398,"is_urban":false,"turn_weight":1,"duration":1.561,"bearings":[120,134,314],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,315],"duration":1.31,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.178,"geometry_index":2983,"location":[11.389186,50.931698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,314],"duration":5.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.984,"geometry_index":2984,"location":[11.388817,50.931929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[134,314],"duration":2.458,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.273,"geometry_index":2985,"location":[11.387182,50.932935]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,312],"duration":19.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.187,"geometry_index":2987,"location":[11.386446,50.933374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,290],"duration":1.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.144,"geometry_index":2997,"location":[11.379596,50.936041]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":19.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.049,"geometry_index":2998,"location":[11.379136,50.936147]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":2.556,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.364,"geometry_index":3002,"location":[11.371775,50.937612]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,282],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.076,"geometry_index":3005,"location":[11.370801,50.937772]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,280],"duration":24.263,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.836,"geometry_index":3006,"location":[11.370356,50.937832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":7.95,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.155,"geometry_index":3014,"location":[11.36117,50.93794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.358156,50.937817],"geometry_index":3015,"admin_index":4,"weight":12.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.3,"bearings":[86,267,298],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.352507,50.937606],"geometry_index":3019,"admin_index":4,"weight":1.836,"is_urban":false,"turn_weight":1,"duration":0.937,"bearings":[62,87,269],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,268],"duration":0.353,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.317,"geometry_index":3020,"location":[11.352161,50.937603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,270],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.218,"geometry_index":3021,"location":[11.35203,50.9376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.725,"geometry_index":3022,"location":[11.351928,50.9376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,274],"duration":17.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.599,"geometry_index":3024,"location":[11.349709,50.937628]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.864,"geometry_index":3032,"location":[11.342523,50.938507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,291],"duration":29.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":26.352,"geometry_index":3033,"location":[11.342144,50.938592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.979,"geometry_index":3038,"location":[11.33073,50.941254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,291],"duration":7.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.134,"geometry_index":3039,"location":[11.330299,50.94135]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,287],"duration":0.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.55,"geometry_index":3042,"location":[11.327205,50.942004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,288],"duration":27.192,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":24.473,"geometry_index":3043,"location":[11.326955,50.942051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.306,"geometry_index":3052,"location":[11.316057,50.943266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,272],"duration":27.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.693,"geometry_index":3053,"location":[11.315488,50.943288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,274],"duration":13.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.536,"geometry_index":3061,"location":[11.304264,50.943306]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":4.235,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.918,"geometry_index":3064,"location":[11.298906,50.943984]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":1.565,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.448,"geometry_index":3066,"location":[11.297245,50.944258]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.197,"geometry_index":3067,"location":[11.296693,50.944352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.295807,50.944498],"geometry_index":3068,"admin_index":4,"weight":5.604,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.08,"bearings":[105,285,308],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.293455,50.944881],"geometry_index":3070,"admin_index":4,"weight":2.647,"is_urban":false,"turn_weight":1,"duration":1.788,"bearings":[82,104,284],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":0.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.172,"geometry_index":3071,"location":[11.292786,50.94499]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.755,"geometry_index":3072,"location":[11.292715,50.945002]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.718,"geometry_index":3073,"location":[11.292414,50.945051]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":1.433,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.325,"geometry_index":3074,"location":[11.290833,50.94531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.725,"geometry_index":3075,"location":[11.290271,50.945403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":1.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.584,"geometry_index":3077,"location":[11.287404,50.945873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,285],"duration":4.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.3,"geometry_index":3078,"location":[11.286729,50.945982]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":37.153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":34.367,"geometry_index":3079,"location":[11.284893,50.946283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":1.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.365,"geometry_index":3089,"location":[11.270015,50.947915]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":25.829,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.892,"geometry_index":3090,"location":[11.269435,50.947935]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.521,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.407,"geometry_index":3094,"location":[11.258916,50.948332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":20.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.802,"geometry_index":3095,"location":[11.258338,50.948358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":5.04,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.662,"geometry_index":3101,"location":[11.247949,50.949156]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,277],"duration":1.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.948,"geometry_index":3103,"location":[11.245382,50.949372]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.244855,50.949415],"geometry_index":3104,"admin_index":4,"weight":5.262,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.695,"bearings":[97,278,303],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.242619,50.949601],"geometry_index":3106,"admin_index":4,"weight":2.303,"is_urban":false,"turn_weight":1,"duration":1.416,"bearings":[69,97,278],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":1.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.396,"geometry_index":3107,"location":[11.242117,50.949643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":4.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.259,"geometry_index":3108,"location":[11.241562,50.94969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":3.843,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.554,"geometry_index":3109,"location":[11.239678,50.949852]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":21.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.782,"geometry_index":3110,"location":[11.238108,50.949989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":1.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.123,"geometry_index":3116,"location":[11.229095,50.950465]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,268],"duration":19.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":17.962,"geometry_index":3117,"location":[11.228594,50.950459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":0.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.841,"geometry_index":3121,"location":[11.220469,50.950117]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":38.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":34.705,"geometry_index":3122,"location":[11.220088,50.9501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.277,"geometry_index":3126,"location":[11.204245,50.949376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.103,"geometry_index":3127,"location":[11.203658,50.949352]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.523,"geometry_index":3128,"location":[11.203185,50.949329]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":3.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.437,"geometry_index":3129,"location":[11.202951,50.949318]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.201461,50.949246],"geometry_index":3130,"admin_index":4,"weight":23.459,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.072,"bearings":[86,266,291],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.190828,50.948418],"geometry_index":3137,"admin_index":4,"weight":2.508,"is_urban":false,"turn_weight":1,"duration":1.694,"bearings":[53,76,255],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,253],"duration":6.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.614,"geometry_index":3138,"location":[11.19018,50.948309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":1.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.476,"geometry_index":3140,"location":[11.187813,50.947822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.534,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.481,"geometry_index":3141,"location":[11.187197,50.947683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":10.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.207,"geometry_index":3142,"location":[11.186991,50.947637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.949,"geometry_index":3145,"location":[11.183132,50.946786]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.961,"geometry_index":3146,"location":[11.182738,50.946702]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":0.624,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.562,"geometry_index":3148,"location":[11.179825,50.946058]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":11.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.646,"geometry_index":3149,"location":[11.179594,50.946007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.24,"geometry_index":3151,"location":[11.175268,50.945049]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":1.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.324,"geometry_index":3152,"location":[11.173949,50.944754]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.24,"geometry_index":3153,"location":[11.173441,50.944643]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.172201,50.944355],"geometry_index":3154,"admin_index":4,"weight":5.728,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.383,"bearings":[70,249,272],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.169914,50.943728],"geometry_index":3158,"admin_index":4,"weight":2.874,"is_urban":false,"turn_weight":1,"duration":2.089,"bearings":[45,65,245],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":5.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.86,"geometry_index":3160,"location":[11.169159,50.943496]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,237],"duration":3.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.212,"geometry_index":3162,"location":[11.167257,50.942823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.787,"geometry_index":3163,"location":[11.166017,50.942307]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":31.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.393,"geometry_index":3164,"location":[11.165713,50.942176]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,226],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.059,"geometry_index":3173,"location":[11.15566,50.93734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.318,"geometry_index":3174,"location":[11.155319,50.937135]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,218],"duration":12.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.243,"geometry_index":3178,"location":[11.153407,50.935862]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":3183,"location":[11.150529,50.933333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":12.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.022,"geometry_index":3184,"location":[11.150325,50.933149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":1.065,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.959,"geometry_index":3190,"location":[11.147499,50.930785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,224],"duration":24.253,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.827,"geometry_index":3191,"location":[11.147221,50.930595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":7.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.196,"geometry_index":3198,"location":[11.140018,50.927092]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.137531,50.926027],"geometry_index":3200,"admin_index":4,"weight":6.347,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.07,"bearings":[56,235,260],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.135284,50.925076],"geometry_index":3206,"admin_index":4,"weight":2.687,"is_urban":false,"turn_weight":1,"duration":1.881,"bearings":[32,58,239],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,241],"duration":6.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.422,"geometry_index":3207,"location":[11.134664,50.92484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":20.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.097,"geometry_index":3210,"location":[11.13257,50.924183]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":0.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.856,"geometry_index":3216,"location":[11.124825,50.922918]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":30.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.103,"geometry_index":3217,"location":[11.124427,50.922876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":1.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.653,"geometry_index":3226,"location":[11.11288,50.920216]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":11.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.707,"geometry_index":3227,"location":[11.112199,50.920005]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.6,"geometry_index":3230,"location":[11.108295,50.918866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":75.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":66.211,"geometry_index":3231,"location":[11.108029,50.918791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":7.759,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.789,"geometry_index":3242,"location":[11.079212,50.911889]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.076169,50.911342],"geometry_index":3244,"admin_index":4,"weight":1.35,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.563,"bearings":[74,254,276],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":11.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":10.23,"geometry_index":3245,"location":[11.075554,50.911234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,261],"duration":1.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.049,"geometry_index":3248,"location":[11.070844,50.910496]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.07036,50.910446],"geometry_index":3249,"admin_index":4,"weight":2.73,"is_urban":false,"turn_weight":1,"duration":1.943,"bearings":[62,81,260],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,262],"duration":5.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.284,"geometry_index":3250,"location":[11.069592,50.910363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,264],"duration":0.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.314,"geometry_index":3251,"location":[11.067216,50.910165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":1.306,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.176,"geometry_index":3252,"location":[11.067076,50.910156]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,266],"duration":20.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.101,"geometry_index":3253,"location":[11.066554,50.910123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":33.825,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":30.437,"geometry_index":3256,"location":[11.058301,50.909751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":10.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.818,"geometry_index":3262,"location":[11.045081,50.909194]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":27.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":24.774,"geometry_index":3264,"location":[11.040818,50.908957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.424,"geometry_index":3269,"location":[11.030145,50.907981]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":57.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":51.307,"geometry_index":3270,"location":[11.02958,50.907925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":5.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.672,"geometry_index":3277,"location":[11.010668,50.90595]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.678,"geometry_index":3278,"location":[11.008931,50.905767]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":2.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.28,"geometry_index":3279,"location":[11.008683,50.905741]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":0.544,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.49,"geometry_index":3280,"location":[11.007884,50.905657]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.055,"geometry_index":3281,"location":[11.007703,50.905638]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[11.007312,50.905597],"geometry_index":3282,"admin_index":4,"weight":0.894,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.014,"bearings":[81,261,296],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":6.331,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.698,"geometry_index":3283,"location":[11.006972,50.905563]},{"mapbox_streets_v8":{"class":"motorway"},"location":[11.004824,50.905345],"geometry_index":3284,"admin_index":4,"weight":2.93,"is_urban":false,"turn_weight":1,"duration":2.164,"bearings":[56,81,260],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":1.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.129,"geometry_index":3285,"location":[11.004074,50.905261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":5.38,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.842,"geometry_index":3286,"location":[11.003646,50.905212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,258],"duration":28.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.92,"geometry_index":3287,"location":[11.001787,50.904995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.818,"geometry_index":3295,"location":[10.992146,50.903029]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":29.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":26.154,"geometry_index":3296,"location":[10.991824,50.902954]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.239,"geometry_index":3299,"location":[10.981367,50.900519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":4.835,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.352,"geometry_index":3300,"location":[10.980849,50.900396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.381,"geometry_index":3302,"location":[10.979023,50.899968]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":19.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":17.882,"geometry_index":3303,"location":[10.978861,50.89993]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":8.931,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.261,"geometry_index":3306,"location":[10.971195,50.898149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.362,"geometry_index":3307,"location":[10.967753,50.897345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,249],"duration":4.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.041,"geometry_index":3308,"location":[10.966369,50.897023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":2.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.716,"geometry_index":3309,"location":[10.964698,50.896625]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":1.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.353,"geometry_index":3310,"location":[10.963571,50.896362]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.397,"geometry_index":3311,"location":[10.963052,50.896245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.961692,50.895939],"geometry_index":3312,"admin_index":4,"weight":2.129,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.321,"bearings":[70,248,262],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,249],"duration":13.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.736,"geometry_index":3313,"location":[10.960874,50.895735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":3.716,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.438,"geometry_index":3318,"location":[10.955917,50.894575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,248],"duration":13.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.479,"geometry_index":3320,"location":[10.954636,50.894283]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.949631,50.893206],"geometry_index":3325,"admin_index":4,"weight":2.93,"is_urban":false,"turn_weight":1,"duration":2.04,"bearings":[56,73,255],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,257],"duration":4.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.74,"geometry_index":3326,"location":[10.948846,50.893073]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,260],"duration":5.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.943,"geometry_index":3329,"location":[10.94689,50.892808]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.944834,50.892607],"geometry_index":3331,"admin_index":4,"weight":3.457,"is_urban":false,"turn_weight":1,"duration":2.605,"bearings":[63,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":2.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.457,"geometry_index":3332,"location":[10.943788,50.892531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,267],"duration":9.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.832,"geometry_index":3333,"location":[10.942745,50.892464]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,273],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":13.32,"geometry_index":3336,"location":[10.93896,50.892435]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":1.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.819,"geometry_index":3340,"location":[10.933121,50.892759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":8.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.938,"geometry_index":3342,"location":[10.932364,50.89281]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.929018,50.893019],"geometry_index":3343,"admin_index":4,"weight":1.165,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.267,"bearings":[96,276,304],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":2.376,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.198,"geometry_index":3344,"location":[10.928518,50.893052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":1.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.365,"geometry_index":3345,"location":[10.92758,50.893114]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,277],"duration":1.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.632,"geometry_index":3346,"location":[10.927003,50.893148]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[72,97,276],"duration":2.224,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":2.039,"geometry_index":3347,"location":[10.926306,50.893202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.916,"geometry_index":3348,"location":[10.92545,50.893254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":28.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":25.91,"geometry_index":3349,"location":[10.923256,50.893395]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,270],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.958,"geometry_index":3360,"location":[10.911674,50.894034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":13.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.584,"geometry_index":3361,"location":[10.911269,50.894034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,262],"duration":9.886,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.125,"geometry_index":3366,"location":[10.905685,50.89382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,262],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.306,"geometry_index":3369,"location":[10.901678,50.893437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":5.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.251,"geometry_index":3370,"location":[10.901115,50.893387]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.199,"geometry_index":3373,"location":[10.898227,50.893103]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":3.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.63,"geometry_index":3374,"location":[10.897724,50.893053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":1.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.547,"geometry_index":3375,"location":[10.89619,50.892904]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":5.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.379,"geometry_index":3376,"location":[10.895545,50.892841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,270],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.031,"geometry_index":3379,"location":[10.893134,50.8926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,261],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.48,"geometry_index":3380,"location":[10.893131,50.8926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,261],"duration":1.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.426,"geometry_index":3383,"location":[10.890227,50.892315]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":4.694,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.225,"geometry_index":3384,"location":[10.889602,50.892255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":23.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.378,"geometry_index":3385,"location":[10.887723,50.892074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,255],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.103,"geometry_index":3393,"location":[10.878279,50.891069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":6.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.54,"geometry_index":3394,"location":[10.87782,50.890994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":55.872,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.888,"geometry_index":3398,"location":[10.875502,50.890531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":1.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.096,"geometry_index":3414,"location":[10.85699,50.883007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":20.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":18.129,"geometry_index":3415,"location":[10.856624,50.882838]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":9.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.711,"geometry_index":3421,"location":[10.850101,50.879877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,239],"duration":0.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.821,"geometry_index":3426,"location":[10.846949,50.878481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":36.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":31.597,"geometry_index":3427,"location":[10.84666,50.878373]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":6.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.521,"geometry_index":3443,"location":[10.833156,50.876907]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":0.587,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.528,"geometry_index":3445,"location":[10.830794,50.877057]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":2.478,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.229,"geometry_index":3446,"location":[10.830587,50.87707]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.829673,50.877124],"geometry_index":3447,"admin_index":4,"weight":0.969,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.084,"bearings":[95,276,301],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":4.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.008,"geometry_index":3448,"location":[10.829262,50.877151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":1.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.035,"geometry_index":3450,"location":[10.827568,50.877263]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.827135,50.877286],"geometry_index":3451,"admin_index":4,"weight":3.138,"is_urban":false,"turn_weight":1,"duration":2.383,"bearings":[72,95,276],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":4.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.309,"geometry_index":3453,"location":[10.826233,50.877345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.902,"geometry_index":3454,"location":[10.8244,50.877464]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":1.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.703,"geometry_index":3455,"location":[10.824017,50.877486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":1.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.197,"geometry_index":3456,"location":[10.823296,50.877534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":13.335,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.001,"geometry_index":3457,"location":[10.822812,50.877566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,277],"duration":4.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.166,"geometry_index":3460,"location":[10.817667,50.877895]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,275],"duration":1.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.197,"geometry_index":3461,"location":[10.815884,50.878024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":23.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":20.946,"geometry_index":3462,"location":[10.815409,50.878052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":1.763,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.542,"geometry_index":3465,"location":[10.80627,50.878645]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,275],"duration":105.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":95.27,"geometry_index":3466,"location":[10.805611,50.878689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[124,305],"duration":0.909,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.841,"geometry_index":3491,"location":[10.767403,50.888084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,306],"duration":12.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.134,"geometry_index":3492,"location":[10.767126,50.888206]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,313],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.996,"geometry_index":3497,"location":[10.763442,50.890064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,313],"duration":48.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":44.576,"geometry_index":3498,"location":[10.762189,50.8908]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,301],"duration":1.124,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.022,"geometry_index":3513,"location":[10.74784,50.898849]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,301],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.995,"geometry_index":3514,"location":[10.747461,50.89899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,299],"duration":29.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":27.142,"geometry_index":3515,"location":[10.747106,50.899122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,278],"duration":7.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.982,"geometry_index":3525,"location":[10.736976,50.901368]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.734211,50.901555],"geometry_index":3527,"admin_index":4,"weight":3.248,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.53,"bearings":[95,273,283],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,271],"duration":12.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.265,"geometry_index":3528,"location":[10.733093,50.901586]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.729189,50.901581],"geometry_index":3532,"admin_index":4,"weight":2.207,"is_urban":false,"turn_weight":0.5,"duration":1.852,"bearings":[68,89,269],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":8.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":8.2,"geometry_index":3533,"location":[10.728607,50.901575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":23.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.604,"geometry_index":3534,"location":[10.725802,50.901555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":27.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":24.381,"geometry_index":3539,"location":[10.718411,50.901485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":2.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.123,"geometry_index":3542,"location":[10.709836,50.901418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":23.097,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":20.787,"geometry_index":3544,"location":[10.709024,50.901412]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":1.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.761,"geometry_index":3548,"location":[10.700897,50.901339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":35.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.09,"geometry_index":3549,"location":[10.700183,50.901337]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":1.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.31,"geometry_index":3558,"location":[10.687007,50.902052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,284],"duration":19.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.636,"geometry_index":3559,"location":[10.686482,50.902125]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,291],"duration":1.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.084,"geometry_index":3564,"location":[10.67959,50.90349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":52.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":45.726,"geometry_index":3565,"location":[10.679161,50.903592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,283],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.206,"geometry_index":3576,"location":[10.661127,50.90779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":55.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":48.91,"geometry_index":3577,"location":[10.66063,50.907864]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":3591,"location":[10.640198,50.907479]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":17.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.654,"geometry_index":3592,"location":[10.639858,50.907455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":5.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.241,"geometry_index":3599,"location":[10.63293,50.907092]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,269],"duration":26.308,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.677,"geometry_index":3601,"location":[10.630581,50.907045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.026,"geometry_index":3607,"location":[10.619766,50.906736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":2.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.454,"geometry_index":3608,"location":[10.619307,50.906715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,266],"duration":8.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.232,"geometry_index":3609,"location":[10.618244,50.906655]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,267],"duration":0.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.72,"geometry_index":3611,"location":[10.615105,50.906496]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.614797,50.906485],"geometry_index":3612,"admin_index":4,"weight":1.394,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.568,"bearings":[87,265,280],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":5.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.217,"geometry_index":3613,"location":[10.614189,50.906452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.6119,50.906331],"geometry_index":3616,"admin_index":4,"weight":1.802,"is_urban":false,"turn_weight":1,"duration":0.899,"bearings":[72,84,266],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":6.237,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.614,"geometry_index":3617,"location":[10.611545,50.906314]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,268],"duration":3.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.465,"geometry_index":3620,"location":[10.609057,50.90621]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,271],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.617,"geometry_index":3623,"location":[10.607526,50.906189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,273],"duration":34.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":31.331,"geometry_index":3624,"location":[10.607246,50.906191]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,300],"duration":7.956,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.16,"geometry_index":3638,"location":[10.594094,50.908478]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,304],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.799,"geometry_index":3641,"location":[10.59144,50.90954]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.591156,50.909662],"geometry_index":3642,"admin_index":4,"weight":1.144,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.244,"bearings":[124,306,327],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,309],"duration":24.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.974,"geometry_index":3644,"location":[10.590765,50.909842]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,312],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.976,"geometry_index":3651,"location":[10.583525,50.913934]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.583225,50.914107],"geometry_index":3652,"admin_index":4,"weight":1.933,"is_urban":false,"turn_weight":1,"duration":1.016,"bearings":[103,132,313],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,313],"duration":5.724,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.295,"geometry_index":3653,"location":[10.58294,50.914277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,311],"duration":10.62,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":9.823,"geometry_index":3655,"location":[10.581265,50.915236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,302],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.214,"geometry_index":3660,"location":[10.577907,50.916824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[122,301],"duration":8.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.866,"geometry_index":3661,"location":[10.577488,50.916987]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,295],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.82,"geometry_index":3665,"location":[10.574618,50.917973]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":1.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.535,"geometry_index":3666,"location":[10.574305,50.918066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,292],"duration":0.618,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.587,"geometry_index":3668,"location":[10.573732,50.918226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,293],"duration":3.673,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.489,"geometry_index":3669,"location":[10.573508,50.918284]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.829,"geometry_index":3671,"location":[10.572166,50.918611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,289],"duration":53.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":49.819,"geometry_index":3672,"location":[10.571841,50.918681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":7.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.986,"geometry_index":3682,"location":[10.550281,50.919986]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.54723,50.920066],"geometry_index":3684,"admin_index":4,"weight":1.078,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.173,"bearings":[92,273,289],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":5.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.63,"geometry_index":3685,"location":[10.546743,50.920082]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":2.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.935,"geometry_index":3687,"location":[10.544659,50.920149]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.54379,50.920175],"geometry_index":3688,"admin_index":4,"weight":4.855,"is_urban":false,"turn_weight":1,"duration":4.292,"bearings":[82,93,274],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":1.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.166,"geometry_index":3689,"location":[10.542095,50.92025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":1.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.935,"geometry_index":3690,"location":[10.541581,50.920273]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.224,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.102,"geometry_index":3691,"location":[10.541152,50.920297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":0.468,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.421,"geometry_index":3692,"location":[10.54067,50.920321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.288,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.152,"geometry_index":3693,"location":[10.54049,50.92033]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":32.4,"geometry_index":3694,"location":[10.539968,50.920356]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":0.823,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.74,"geometry_index":3706,"location":[10.525531,50.922321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,292],"duration":53.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":47.22,"geometry_index":3707,"location":[10.525207,50.922394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[136,318],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.75,"geometry_index":3726,"location":[10.507105,50.930066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,317],"duration":66.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":57.76,"geometry_index":3727,"location":[10.506869,50.93023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[153,334],"duration":15.776,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.199,"geometry_index":3745,"location":[10.489178,50.943148]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,346],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.81,"geometry_index":3752,"location":[10.486936,50.946901]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[166,348],"duration":6.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.221,"geometry_index":3753,"location":[10.486849,50.947117]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,352],"duration":0.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.777,"geometry_index":3757,"location":[10.486293,50.948808]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.486247,50.949022],"geometry_index":3758,"admin_index":4,"weight":0.857,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.96,"bearings":[23,172,354],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,352],"duration":3.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.731,"geometry_index":3759,"location":[10.486205,50.949261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.953,"geometry_index":3761,"location":[10.486062,50.950026]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[153,174,356],"duration":1.115,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":2,"weight":0.997,"geometry_index":3762,"location":[10.486018,50.950296]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,356],"duration":5.677,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.109,"geometry_index":3763,"location":[10.485987,50.950586]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,180],"duration":8.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.321,"geometry_index":3766,"location":[10.485917,50.952058]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,186],"duration":6.728,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.048,"geometry_index":3769,"location":[10.486113,50.954162]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":26.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.223,"geometry_index":3773,"location":[10.48651,50.955907]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,189],"duration":0.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.477,"geometry_index":3780,"location":[10.488427,50.962854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,189],"duration":51.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.91,"geometry_index":3781,"location":[10.48846,50.962988]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,334],"duration":16.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.659,"geometry_index":3798,"location":[10.486024,50.976153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[147,325],"duration":89.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":78.688,"geometry_index":3802,"location":[10.482667,50.979944]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":0.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.36,"geometry_index":3828,"location":[10.451817,50.990933]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":7.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.644,"geometry_index":3829,"location":[10.451648,50.990963]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.448737,50.991499],"geometry_index":3832,"admin_index":4,"weight":0.997,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.127,"bearings":[107,286,306],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":14.157,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.742,"geometry_index":3833,"location":[10.448304,50.991579]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":1.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.966,"geometry_index":3836,"location":[10.442702,50.992617]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.442269,50.992688],"geometry_index":3837,"admin_index":4,"weight":2.759,"is_urban":false,"turn_weight":1,"duration":1.961,"bearings":[82,105,286],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,287],"duration":5.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.999,"geometry_index":3839,"location":[10.441483,50.992833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,286],"duration":16.56,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":14.904,"geometry_index":3840,"location":[10.439269,50.993248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":0.515,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.463,"geometry_index":3845,"location":[10.432653,50.994469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,286],"duration":48.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":43.771,"geometry_index":3846,"location":[10.432441,50.994505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,297],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.48,"geometry_index":3859,"location":[10.413748,50.998312]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,302],"duration":7.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.885,"geometry_index":3861,"location":[10.411232,50.999169]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.408779,51.000151],"geometry_index":3864,"admin_index":4,"weight":1.31,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.462,"bearings":[123,303,318],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":3.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.88,"geometry_index":3865,"location":[10.408306,51.000346]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.8,"geometry_index":3866,"location":[10.407254,51.00078]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.406594,51.001051],"geometry_index":3867,"admin_index":4,"weight":1.484,"is_urban":false,"turn_weight":0.5,"duration":1.104,"bearings":[111,123,306],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[126,303],"duration":4.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.479,"geometry_index":3868,"location":[10.406231,51.001215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,304],"duration":38.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":34.306,"geometry_index":3870,"location":[10.404552,51.001909]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,311],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.315,"geometry_index":3879,"location":[10.392091,51.007603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[131,311],"duration":76.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":68.688,"geometry_index":3881,"location":[10.391651,51.007843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,273],"duration":1.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.112,"geometry_index":3911,"location":[10.364521,51.017265]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":96.282,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":86.654,"geometry_index":3912,"location":[10.364039,51.01728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":1.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.375,"geometry_index":3944,"location":[10.325575,51.015184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,271],"duration":64.073,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":57.666,"geometry_index":3945,"location":[10.324981,51.015201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,252],"duration":23.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":21.805,"geometry_index":3960,"location":[10.298913,51.012995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.118,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.034,"geometry_index":3967,"location":[10.289833,51.010809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":32.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":30.497,"geometry_index":3968,"location":[10.289417,51.010688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,248],"duration":5.774,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.341,"geometry_index":3977,"location":[10.277635,51.006935]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.076,"geometry_index":3980,"location":[10.275465,51.006434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":4.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.737,"geometry_index":3981,"location":[10.275026,51.006344]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,256],"duration":2.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.073,"geometry_index":3983,"location":[10.273521,51.006077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,257],"duration":7.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":7.034,"geometry_index":3984,"location":[10.272679,51.005947]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.269768,51.005614],"geometry_index":3989,"admin_index":4,"weight":0.824,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.898,"bearings":[82,263,282],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":4.714,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.36,"geometry_index":3990,"location":[10.26943,51.005588]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.267628,51.005493],"geometry_index":3994,"admin_index":4,"weight":1.099,"is_urban":false,"turn_weight":1,"duration":0.131,"bearings":[66,86,262],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,267],"duration":1.756,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.624,"geometry_index":3995,"location":[10.267592,51.00549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,273],"duration":0.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.133,"geometry_index":3996,"location":[10.267016,51.00547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,268],"duration":5.112,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":4.729,"geometry_index":3997,"location":[10.266961,51.005472]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":18.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.883,"geometry_index":3999,"location":[10.264928,51.005451]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,284],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.532,"geometry_index":4008,"location":[10.257767,51.006012]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.167,"geometry_index":4009,"location":[10.257136,51.006112]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,285],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.021,"geometry_index":4010,"location":[10.256659,51.006184]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.255455,51.006401],"geometry_index":4013,"admin_index":4,"weight":1.514,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.644,"bearings":[106,286,300],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,287],"duration":21.491,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.879,"geometry_index":4014,"location":[10.254837,51.006509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,286],"duration":1.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.422,"geometry_index":4018,"location":[10.246755,51.008024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,287],"duration":2.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.231,"geometry_index":4019,"location":[10.24619,51.008123]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.245303,51.008295],"geometry_index":4020,"admin_index":4,"weight":2.599,"is_urban":false,"turn_weight":1,"duration":1.747,"bearings":[84,107,286],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.099,"geometry_index":4021,"location":[10.244637,51.008413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.84,"geometry_index":4022,"location":[10.24418,51.008491]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,283],"duration":13.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":12.635,"geometry_index":4023,"location":[10.242974,51.008695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,279],"duration":3.317,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":3.068,"geometry_index":4028,"location":[10.237572,51.00944]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":26.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.803,"geometry_index":4031,"location":[10.236245,51.009573]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":1.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.508,"geometry_index":4034,"location":[10.225812,51.010731]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":6.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.191,"geometry_index":4035,"location":[10.225145,51.010806]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,278],"duration":42.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":37.959,"geometry_index":4038,"location":[10.222437,51.011103]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":0.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.581,"geometry_index":4058,"location":[10.206938,51.009791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":13.187,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":11.867,"geometry_index":4059,"location":[10.206755,51.009735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":26.88,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.192,"geometry_index":4065,"location":[10.20289,51.008295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,280],"duration":3.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.97,"geometry_index":4084,"location":[10.191171,51.005931]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,283],"duration":3.06,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.754,"geometry_index":4086,"location":[10.189634,51.006124]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.18822,51.006328],"geometry_index":4087,"admin_index":5,"weight":6.093,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.776,"bearings":[103,283,293],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":5.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.036,"geometry_index":4088,"location":[10.185817,51.006675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":0.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.569,"geometry_index":4089,"location":[10.183827,51.006962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":12.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.571,"geometry_index":4090,"location":[10.183599,51.006995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":0.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.614,"geometry_index":4092,"location":[10.179081,51.007647]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,283],"duration":4.187,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.769,"geometry_index":4093,"location":[10.178836,51.007686]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.177345,51.007902],"geometry_index":4095,"admin_index":5,"weight":8.818,"is_urban":false,"turn_weight":1,"duration":8.694,"bearings":[92,103,283],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":6.222,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.6,"geometry_index":4096,"location":[10.174251,51.008348]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.172044,51.008672],"geometry_index":4098,"admin_index":5,"weight":8.079,"is_urban":false,"turn_weight":1,"duration":7.872,"bearings":[82,103,283],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,283],"duration":16.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.475,"geometry_index":4101,"location":[10.169245,51.009064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":7.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.114,"geometry_index":4105,"location":[10.16359,51.010031]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":5.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.543,"geometry_index":4107,"location":[10.160875,51.010656]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,291],"duration":74.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":67.328,"geometry_index":4108,"location":[10.15915,51.011058]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":4.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.023,"geometry_index":4122,"location":[10.133831,51.016729]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.948,"geometry_index":4123,"location":[10.13223,51.016816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,276],"duration":5.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.086,"geometry_index":4124,"location":[10.131835,51.016837]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":8.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.704,"geometry_index":4128,"location":[10.129932,51.016963]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,276],"duration":10.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.957,"geometry_index":4132,"location":[10.127043,51.017089]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.123685,51.01729],"geometry_index":4134,"admin_index":5,"weight":6.808,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.584,"bearings":[95,273,280],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,264],"duration":3.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.167,"geometry_index":4136,"location":[10.12131,51.017334]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,258],"duration":12.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.394,"geometry_index":4138,"location":[10.120072,51.017235]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,237],"duration":12.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.218,"geometry_index":4152,"location":[10.115835,51.016205]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":8.64,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.769,"geometry_index":4156,"location":[10.112152,51.014476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":11.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.964,"geometry_index":4158,"location":[10.109605,51.013275]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":2.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.904,"geometry_index":4161,"location":[10.106323,51.011752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":21.867,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.674,"geometry_index":4163,"location":[10.105673,51.01144]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":7.46,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.527,"geometry_index":4172,"location":[10.100048,51.007522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.779,"geometry_index":4175,"location":[10.097735,51.006457]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":16.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.113,"geometry_index":4176,"location":[10.097447,51.006328]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,212],"duration":0.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.811,"geometry_index":4185,"location":[10.092643,51.00359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":18.136,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":15.869,"geometry_index":4186,"location":[10.092447,51.003392]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":2.423,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.12,"geometry_index":4191,"location":[10.089969,50.99888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":19.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":16.65,"geometry_index":4192,"location":[10.089716,50.998274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":7.256,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.331,"geometry_index":4200,"location":[10.087136,50.99358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":33.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.926,"geometry_index":4203,"location":[10.085723,50.991966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,233],"duration":68.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":61.934,"geometry_index":4216,"location":[10.075414,50.986616]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":2.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":2.697,"geometry_index":4245,"location":[10.065723,50.97055]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":31.165,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":28.827,"geometry_index":4246,"location":[10.064956,50.970004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,227],"duration":5.647,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.224,"geometry_index":4251,"location":[10.056596,50.964069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.054833,50.963161],"geometry_index":4254,"admin_index":4,"weight":1.715,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.862,"bearings":[54,237,248],"out":1,"in":0,"turn_duration":0.009,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":6.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":6.231,"geometry_index":4255,"location":[10.054211,50.962904]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":0.998,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":0.923,"geometry_index":4259,"location":[10.051819,50.962126]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.051453,50.962018],"geometry_index":4260,"admin_index":4,"weight":1.718,"is_urban":false,"turn_weight":1,"duration":0.783,"bearings":[42,65,245],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":5.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":5.093,"geometry_index":4261,"location":[10.051164,50.961932]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.11,"geometry_index":4263,"location":[10.049154,50.961327]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":20.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":19.236,"geometry_index":4264,"location":[10.048717,50.961191]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":25.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":23.199,"geometry_index":4266,"location":[10.04106,50.958888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,287],"duration":0.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.591,"geometry_index":4285,"location":[10.029637,50.957655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,289],"duration":6.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.827,"geometry_index":4286,"location":[10.029382,50.957705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,301],"duration":10.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.046,"geometry_index":4291,"location":[10.026645,50.958455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,298],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.055,"geometry_index":4300,"location":[10.022384,50.960283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,296],"duration":0.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.306,"geometry_index":4301,"location":[10.021986,50.960417]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[116,296],"duration":7.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.743,"geometry_index":4302,"location":[10.021845,50.96046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,277],"duration":1.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.609,"geometry_index":4308,"location":[10.018547,50.961108]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,273],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.934,"geometry_index":4309,"location":[10.017728,50.961171]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,270],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.681,"geometry_index":4310,"location":[10.017304,50.961183]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[10.016531,50.961184],"geometry_index":4311,"admin_index":5,"weight":1.696,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.856,"bearings":[90,267,284],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,263],"duration":2.241,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.073,"geometry_index":4313,"location":[10.015758,50.961156]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":1.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.414,"geometry_index":4316,"location":[10.014825,50.961069]},{"mapbox_streets_v8":{"class":"motorway"},"location":[10.0142,50.960988],"geometry_index":4318,"admin_index":5,"weight":5.934,"is_urban":false,"turn_weight":1,"duration":5.354,"bearings":[69,78,255],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,244],"duration":0.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.277,"geometry_index":4322,"location":[10.012047,50.960517]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":11.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.822,"geometry_index":4323,"location":[10.01193,50.960481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.069,"geometry_index":4326,"location":[10.007457,50.959073]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":3.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.357,"geometry_index":4327,"location":[10.007009,50.958931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":14.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.446,"geometry_index":4330,"location":[10.005467,50.958445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,257],"duration":4.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.807,"geometry_index":4336,"location":[9.999001,50.95662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":1.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.123,"geometry_index":4340,"location":[9.997021,50.956403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,266],"duration":5.204,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.684,"geometry_index":4341,"location":[9.996528,50.95637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,270],"duration":1.112,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.994,"geometry_index":4344,"location":[9.994446,50.956324]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":23.382,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":21.044,"geometry_index":4345,"location":[9.994007,50.956322]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":17.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.623,"geometry_index":4359,"location":[9.984936,50.955254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":17.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.168,"geometry_index":4370,"location":[9.97897,50.953035]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":13.509,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.158,"geometry_index":4378,"location":[9.972584,50.950994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,230],"duration":2.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.694,"geometry_index":4382,"location":[9.96837,50.948858]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,231],"duration":19.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.354,"geometry_index":4384,"location":[9.967447,50.948374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":17.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.43,"geometry_index":4393,"location":[9.960867,50.945891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":18.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.328,"geometry_index":4403,"location":[9.954176,50.945037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":15.755,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.179,"geometry_index":4411,"location":[9.946919,50.945116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":18.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.034,"geometry_index":4421,"location":[9.940679,50.944777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,217],"duration":0.847,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.763,"geometry_index":4434,"location":[9.934514,50.942122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":0.177,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.159,"geometry_index":4435,"location":[9.934303,50.941948]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,218],"duration":7.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.321,"geometry_index":4436,"location":[9.934256,50.941911]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":6.247,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.622,"geometry_index":4437,"location":[9.932492,50.940513]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.671,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.604,"geometry_index":4439,"location":[9.930947,50.939253]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.381,"geometry_index":4440,"location":[9.930781,50.939114]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.930678,50.939029],"geometry_index":4441,"admin_index":5,"weight":5.536,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.172,"bearings":[37,215,239],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.929272,50.937715],"geometry_index":4444,"admin_index":5,"weight":3.359,"is_urban":false,"turn_weight":1,"duration":2.629,"bearings":[18,32,213],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":3.181,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.862,"geometry_index":4445,"location":[9.928694,50.93715]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":8.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.801,"geometry_index":4446,"location":[9.927992,50.936467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":14.155,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.74,"geometry_index":4449,"location":[9.926078,50.934596]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":3.216,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.894,"geometry_index":4459,"location":[9.921835,50.932161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":1.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.144,"geometry_index":4460,"location":[9.920762,50.931682]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,235],"duration":30.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.54,"geometry_index":4461,"location":[9.920346,50.931493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,193],"duration":23.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.676,"geometry_index":4474,"location":[9.91385,50.926035]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,231],"duration":7.161,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.267,"geometry_index":4487,"location":[9.909566,50.921375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":68.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":59.979,"geometry_index":4489,"location":[9.90751,50.920329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":13.261,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.604,"geometry_index":4514,"location":[9.885736,50.91102]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,217],"duration":6.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.979,"geometry_index":4520,"location":[9.881734,50.909022]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.880304,50.907619],"geometry_index":4523,"admin_index":5,"weight":13.357,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.286,"bearings":[30,208,221],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":0.657,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.575,"geometry_index":4528,"location":[9.877074,50.904234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.876886,50.904106],"geometry_index":4529,"admin_index":5,"weight":1.593,"is_urban":false,"turn_weight":1,"duration":0.685,"bearings":[23,43,225],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,227],"duration":4.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.148,"geometry_index":4530,"location":[9.876692,50.903985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,235],"duration":2.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.121,"geometry_index":4533,"location":[9.87524,50.903216]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.039,"geometry_index":4534,"location":[9.874441,50.902867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":6.522,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.707,"geometry_index":4535,"location":[9.874058,50.902695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.545,"geometry_index":4536,"location":[9.871908,50.901764]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":0.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.16,"geometry_index":4538,"location":[9.871708,50.901677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":16.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.86,"geometry_index":4539,"location":[9.871652,50.901653]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,237],"duration":7.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.48,"geometry_index":4544,"location":[9.866077,50.899202]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":6.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.981,"geometry_index":4547,"location":[9.86355,50.898236]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.861193,50.897365],"geometry_index":4549,"admin_index":5,"weight":0.717,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.816,"bearings":[59,237,246],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":10.659,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.593,"geometry_index":4551,"location":[9.860914,50.897251]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.85746,50.895643],"geometry_index":4554,"admin_index":5,"weight":1.999,"is_urban":false,"turn_weight":1,"duration":1.101,"bearings":[30,51,230],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":5.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.762,"geometry_index":4555,"location":[9.857136,50.895471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.716,"geometry_index":4559,"location":[9.85559,50.894636]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":9.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.464,"geometry_index":4561,"location":[9.855046,50.894333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":22.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.682,"geometry_index":4564,"location":[9.851792,50.892516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":3.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.97,"geometry_index":4576,"location":[9.84264,50.888809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,249],"duration":10.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.374,"geometry_index":4577,"location":[9.841201,50.888417]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,256],"duration":70.304,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":61.516,"geometry_index":4580,"location":[9.837168,50.887589]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":8.431,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.149,"geometry_index":4601,"location":[9.808837,50.884453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":2.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.795,"geometry_index":4603,"location":[9.805741,50.883478]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,237],"duration":9.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.386,"geometry_index":4604,"location":[9.804979,50.883212]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":4.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.659,"geometry_index":4607,"location":[9.801597,50.881801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":0.69,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.604,"geometry_index":4608,"location":[9.800231,50.881227]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.764,"geometry_index":4609,"location":[9.800004,50.881131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":52.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":46.018,"geometry_index":4610,"location":[9.799722,50.881013]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,198],"duration":11.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.143,"geometry_index":4629,"location":[9.78678,50.872397]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":2.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.677,"geometry_index":4636,"location":[9.786284,50.869848]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":1.397,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.258,"geometry_index":4638,"location":[9.786317,50.869169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,181],"duration":14.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.768,"geometry_index":4639,"location":[9.786318,50.868873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,213],"duration":1.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.423,"geometry_index":4648,"location":[9.785128,50.866038]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,217],"duration":4.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.855,"geometry_index":4649,"location":[9.784851,50.86577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,226],"duration":1.935,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.741,"geometry_index":4651,"location":[9.784009,50.865116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,229],"duration":34.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":31.127,"geometry_index":4652,"location":[9.783566,50.864847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,220],"duration":132.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":122.14,"geometry_index":4667,"location":[9.773635,50.861431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,235],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.003,"geometry_index":4725,"location":[9.733494,50.855885]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":27.942,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.942,"geometry_index":4726,"location":[9.733217,50.855763]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":0.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.651,"geometry_index":4737,"location":[9.724794,50.853681]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":0.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.09,"geometry_index":4739,"location":[9.724586,50.853675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":2.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.16,"geometry_index":4740,"location":[9.72456,50.853674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":4.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.185,"geometry_index":4741,"location":[9.723884,50.853653]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.733,"geometry_index":4742,"location":[9.722569,50.853612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.037,"geometry_index":4743,"location":[9.722022,50.853592]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,267],"duration":2.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.52,"geometry_index":4744,"location":[9.722003,50.853591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.721208,50.853563],"geometry_index":4745,"admin_index":5,"weight":5.726,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.593,"bearings":[87,267,289],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.373,"geometry_index":4747,"location":[9.719289,50.853507]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.718841,50.853493],"geometry_index":4748,"admin_index":5,"weight":1.539,"is_urban":false,"turn_weight":1,"duration":0.545,"bearings":[70,87,266],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,267],"duration":6.513,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.675,"geometry_index":4749,"location":[9.718653,50.853485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.866,"geometry_index":4750,"location":[9.716365,50.853409]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":1.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.078,"geometry_index":4751,"location":[9.715725,50.853386]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":0.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.771,"geometry_index":4752,"location":[9.715359,50.853374]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":5.538,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.677,"geometry_index":4753,"location":[9.715088,50.853365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,267],"duration":8.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.88,"geometry_index":4755,"location":[9.713102,50.853304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,269],"duration":1.684,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.703,"geometry_index":4758,"location":[9.709981,50.853258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":1.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.055,"geometry_index":4759,"location":[9.709382,50.853253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.326,"geometry_index":4760,"location":[9.709011,50.853251]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,270],"duration":5.048,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.174,"geometry_index":4761,"location":[9.708189,50.853245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":5.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.596,"geometry_index":4762,"location":[9.706357,50.853239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.543,"geometry_index":4764,"location":[9.704317,50.853229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,271],"duration":0.712,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.712,"geometry_index":4765,"location":[9.703757,50.853229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":0.198,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.198,"geometry_index":4766,"location":[9.703494,50.853231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.385,"geometry_index":4767,"location":[9.70342,50.853231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.812,"geometry_index":4768,"location":[9.70292,50.853221]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,265],"duration":1.433,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.433,"geometry_index":4769,"location":[9.702622,50.853215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,263],"duration":2.807,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.787,"geometry_index":4770,"location":[9.702094,50.853187]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,261],"duration":2.252,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.245,"geometry_index":4772,"location":[9.701087,50.853092]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,254],"duration":12.503,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.19,"geometry_index":4774,"location":[9.700273,50.852994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":3.481,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.395,"geometry_index":4779,"location":[9.695876,50.852165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,254],"duration":8.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.364,"geometry_index":4780,"location":[9.694676,50.851924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":3.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.085,"geometry_index":4783,"location":[9.691605,50.851347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":14.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.383,"geometry_index":4784,"location":[9.69048,50.851133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":2.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.738,"geometry_index":4787,"location":[9.685591,50.850172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":12.456,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.521,"geometry_index":4788,"location":[9.684589,50.849978]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":3.636,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.363,"geometry_index":4795,"location":[9.680014,50.848856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":6.3,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.827,"geometry_index":4797,"location":[9.678801,50.848366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,241],"duration":1.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.992,"geometry_index":4801,"location":[9.676705,50.847521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":16.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.463,"geometry_index":4802,"location":[9.676355,50.847401]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.47,"geometry_index":4810,"location":[9.670409,50.846505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.268,"geometry_index":4811,"location":[9.669785,50.846466]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":18.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.232,"geometry_index":4812,"location":[9.668793,50.846398]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,272],"duration":4.464,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.018,"geometry_index":4821,"location":[9.661701,50.846004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,275],"duration":1.368,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.231,"geometry_index":4822,"location":[9.659942,50.846041]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":9.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.845,"geometry_index":4823,"location":[9.6594,50.846069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,279],"duration":47.124,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":41.233,"geometry_index":4826,"location":[9.655546,50.846387]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":30.096,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":25.582,"geometry_index":4842,"location":[9.637911,50.848705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":6.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.91,"geometry_index":4853,"location":[9.62739,50.845403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":19.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.33,"geometry_index":4854,"location":[9.625266,50.844252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":24.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.858,"geometry_index":4860,"location":[9.619346,50.841459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,250],"duration":29.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.161,"geometry_index":4871,"location":[9.609961,50.840723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,288],"duration":5.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.502,"geometry_index":4883,"location":[9.599095,50.84001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":13.983,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.585,"geometry_index":4885,"location":[9.597334,50.840427]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,261],"duration":2.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.699,"geometry_index":4893,"location":[9.59223,50.84101]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[77,252,269],"duration":7.146,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.587,"geometry_index":4895,"location":[9.591154,50.840878]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":8.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.16,"geometry_index":4900,"location":[9.58874,50.840333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.464,"geometry_index":4905,"location":[9.585746,50.839685]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":0.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.766,"geometry_index":4906,"location":[9.585199,50.839601]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,257],"duration":13.121,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":12.137,"geometry_index":4907,"location":[9.584923,50.839558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,239],"duration":4.297,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":3.975,"geometry_index":4913,"location":[9.581214,50.838756]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,232],"duration":9.619,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":8.897,"geometry_index":4915,"location":[9.580322,50.838405]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,216],"duration":10.037,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":9.262,"geometry_index":4920,"location":[9.57861,50.83732]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,187],"duration":5.625,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":5.203,"geometry_index":4927,"location":[9.577515,50.835896]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,352],"duration":1.177,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":0,"weight":1.089,"geometry_index":4931,"location":[9.577532,50.835002]},{"lanes":[{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,348],"duration":5.184,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":0,"weight":4.795,"geometry_index":4932,"location":[9.577583,50.834854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,353],"duration":4.32,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":0,"weight":3.996,"geometry_index":4935,"location":[9.577785,50.834223]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[9.577777,50.833685],"geometry_index":4938,"admin_index":5,"weight":17.59,"is_urban":false,"turn_weight":0.75,"duration":18.24,"bearings":[4,32,208],"out":2,"in":0,"turn_duration":0.035,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":1.895,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":1.753,"geometry_index":4939,"location":[9.576583,50.832283]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[27,207],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":4940,"location":[9.576452,50.832119]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Gießen"}],"type":"fork","modifier":"left","text":"Frankfurt / Gießen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"left","text":"A 7"},"distanceAlongGeometry":157231.062},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Gießen"}],"type":"fork","modifier":"left","text":"Frankfurt / Gießen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"left","text":"A 7"},"distanceAlongGeometry":1609.344}],"destinations":"A 4: Frankfurt a.M.","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left to take the A 4 ramp toward Frankfurt a.M..","modifier":"slight left","bearing_after":243,"bearing_before":42,"location":[11.50088,50.877871]},"speedLimitSign":"vienna","name":"","weight_typical":5231.324,"duration_typical":5742.644,"duration":5742.644,"distance":157231.062,"driving_side":"right","weight":5231.324,"mode":"driving","ref":"A 4; E 40","geometry":"}yi``B_t}|T`BdJzCxKfB`JlAzL`@bJHfJUrHyAnZ_@nHeSpr@gb@~tAqChJgnBlsG{fA|rD}Mld@}~@v~Ckl@znB{sAxsEad@f|Asd@n_B}p@jdC}XxgAuZnoAoKte@uJhb@q]n`By\\tcBiK~j@{TpnAeg@x~Cw[bzBqC`Ss^bnCg_@vvCoFbb@iVzlB{MnaA}ClUuEb_@aKnr@{OlaAeJli@mIjg@iJdg@qJrf@yZjxA{Tx~@sMzg@{Mlg@g\\|gAcFrPgHzUuHjTwLr^u@pB}JpYsKjYyG|QaNj^e`@bdAqVxp@uWjq@uKrY}eAlrCuIpTob@`iAub@~hAeoAheDwiAfzCuQre@sj@|vAaKnVos@j~Ao\\np@k\\xm@{JbQ{Yhg@eb@pq@sHbLqe@|q@ae@jn@ue@vl@kb@bf@i]r_@g]d_@aJrJyIvJyA~AazBjaCyLpMg`A`dA{Yj[_HtHwj@bm@ccA`gAcd@tf@w|@f`AwlAtqA_l@to@ai@`o@kx@dfAul@l}@od@lt@{_@hq@cn@djAmm@riA}O`ZwGzL}[lm@a\\zm@g\\dm@yi@raA{CjFikBllD}EbJ_DfGgGxLcd@t|@{[zn@cObYmM`V{}@deBuPd\\wHxOeJjRaRbb@wRzf@oGrPoTbo@aWn{@oXdiAuPvx@{Hhd@qHfe@sEv[uR`|AsLjcAov@~yGwArNeBfPoAtNiC|ZwBxZuEly@kCnp@uC~uA_@dt@En^Rhd@p@~t@~FdjEtFj{DtApoA`Cz|AbB~oAhBr`BDrTDdG?jE?b_Aw@piAmAly@uDljAqFjiA_Gz|@yG~{@eGrl@sG|k@sDlZiDtVqKdt@cXjlBaq@vqEqfA~qHaF``@_E|Y{E~[uRbyAiMfiA}ArNqDzZaOd_BiMh_B_Dle@uKljBkF`mAeEhmAgDhsAoBdiAk@pb@iAt{ABfhC@xkALrwAL`qABj`AJ`}BKr_@yA`~@}GbpAs]t}DqEvf@qI`_A{Dna@cHjv@qJxdAkKdlAyExh@WlCaBxQeOxaByDbb@eLjpAeOx`ByEdi@yQvqBuDza@md@`dFeTtcCwJhuAmFxdA_Cbm@aB~m@_Bh}@gCxmBeCzmBg@fc@gFjdEoGruEwGpmFIzEs@bc@uDtlBwCjfAgNrxDgPvjEEdAwEtkAaIxyBmBrd@uA|_@aEzfAqDzbAsAj^}Ata@cIvtBqGbaBqJxiCmHryBuDpiBq@xi@k@`mACliAJh^l@bv@bAvdAbFltCtInhF`@xVvGf_EbP`}JxHpoEpHhnEn@tc@l@p\\TrMnCb|AbCxcB|JloFjCxjApGpoArGnhAzEpn@fFzl@xEng@xNtpArMfaAtGne@zAzKfSt{AzOdjA`OhhAfDrW~PdpAfUzcBdBlMtt@dsFdEdYlQlqA|Ev^~PnlApDlUbFxZpObz@|Hp`@vErUvFpWfS`{@xTxy@f_@nlAdG~QvUxq@lQ|e@rd@xmAht@hnBzrAtnDxV~p@z\\f|@~Q|b@pLpXxKhTdUlc@bU|`@pUv^tKjPba@ph@pWxZdXl[bX`[`p@~t@nJvKrRvTza@|e@r_@fd@xVf\\|Uj]zL`RzJjPlJlP`MdU`[xm@bY`p@z[zz@t^hgAtmAnuDlf@b{AbZh~@xAtEjOrc@xHfVzO|f@bE|MlF~QvMve@rPxq@`Lxh@jIfe@xLxq@jNzcAhL~fAnJviAhHvmAvNziCrAzW|JfhB`JrsA|H~~@~H`t@rLn{@|Nh}@~SjeA`b@bhBtd@lsBdLpi@fH|[lr@dpDnIzd@tCrO~QpbAd[diBvK|p@z_BzvJtq@xhEht@tjEld@`pCxu@fuFzP~uAx`@~mDrYtmC~PncBdOtxAvEle@lSbqBbLlwApKxzAbBf]dD~n@jKnsCPvG`Ar_@rDhtB`Hh`EpGdlEhBbtAlHxxFbDzgBxAfv@xKdkHh@~]dEfmCrGd{BpBnr@xOr|Ez\\r}GtHt_B`@rInBhb@bBx[pc@bbJbIp}AnG~pAvc@z|InVr_FzC~m@lJpkBr@nNfD|p@d@hJpAlWbAfTrLfeCfDzm@`BvYpLdsBbEzk@bEzi@xEpi@nNxsA`PnmAnPdlAn\\f_CfWnfBtCbS|CfUvx@htFnxA~`KtFj_@vClS~Tt|AjAbIxXdqB|w@`nFp[z|Bfq@bvEbSnuAzWlgBlOleAhFl_@bR~sAvKbr@vAnJfJrn@`TrxAzStxApOjfA`F~]dJ`p@vD|UdVv`BnKly@rN|mAfIvu@hG`p@pGx{@hCt`@tBvZdIl|AjA`b@vCj`AdCd`AhAzqANtvA_@~`A}BfkBoCjmA_Ev}AyDprAYlJkAzb@aLbpEaAf^{Bry@cA`c@kBpj@gBnt@yGbhCsHboC{B`{@mBpt@kDjsAoDprA{Bh|@q@la@cAhl@gA~q@q@f~@Wzi@?hXDt_Al@v_ApA|bAbCvmA`DzgA|DvbAhGpzAtHbzAbBdb@~Gf|AvE~aA~@fSbBl^hHz~A|Bhg@hCdj@`En}@tC~k@?Dz@zPhLnkCrAbVvB`f@hJltBd@dKlL~dChGjuAhEt}@nKt}B`Fj}@jGt|@rDfk@tCt[nClWnDj[fLvbAtDhW|Itm@`QlcAhWzqAbSbz@xId\\xH~YxYfcA|Zz~@v]jcAhb@zmAn^ndAxd@tqAjaCj~G~Ozd@nPnf@dTjn@pIzU|HrT|g@lyAjn@vfBlXjx@pTbn@xf@jvA~Z~|@pX`w@vRbm@pK~[j@xBvE`Q|Jx^lUlcArNtx@vIzj@jHdl@rGpl@`CvXhBpShCv^`Dfl@rCv}@hAln@p@~y@q@bkA{FxfC}A~m@eClbAeDdoAY|KkBbx@u@tXyAvj@eCb}@m@`ZeAf`@o@bVmFpqBk@|V_B`l@_Af]wEjnB{DtzA}FnuBaGlnBw@t\\kMtaFoNvmFeFvhBwAdh@kBtv@gB`n@wI|gD_D`dAgEdoAeFpaA_Cbf@cJxnAyUt~B}XdqBsS|jAgcAtfFaq@leDufA|jFgi@vjCmRx~@_Ktg@so@x_D{]faBmNjm@iO~n@sT~z@iUtw@ySls@eZz}@sFhPuUnp@sXps@qPlb@iR~c@}]vv@_m@hmAom@bmAkH~MeMzUqYth@{dB`_Dqf@b_AqXxh@_p@xqAgh@rgAcr@f_Bi`@lcAuMn_@kP~f@_N|b@uPpk@yGtVgGdUgXzeAeRp`AoLtp@aHx_@wRtrA{OrkA}LhqAcKfnA}FvaAwApXsEdnAaDr|A}@zdAUb}@D~u@J|hAL|s@Jjc@f@hnDDnP^p~BL|d@?f@vAttGn@zeDVtpC|@j~EH~n@@vATflAt@tmD`@`pCb@|mBBrk@LnqBQlvBm@`|AsCzoBkEfvAaHdmBcF|_A_Gx_A}Flw@qCx_@_Ezd@eJjaAcOxwAiTbdBu]pgCkExYg]r|Bei@~nDan@zdEk_@beCcO|bAwKjs@{[lxBkPvhAgIlm@cNhkA_Ifv@sC`^eF|s@{D`o@}FznAiCv|@kApo@k@fn@o@toAZ|m@d@vp@~Cd_BpJheD`Cjv@dQp}FvLv{Dn@fTB~@^hKThKfIzoC|C`_B`CboAr@htAH~LrAxcCtAvtDtAx`CTjZ~C|aDlCr{AxBlpAh@t[vBlaAfBlfAtEv{BTfR`A~d@vAjr@bAln@tAfk@`@dUt@`a@nAry@hAx}@Rv`@Fxf@LbUCnPaAj`AsA~l@mDnpAqFlkAmIjoAgHv{@kIp{@eK~x@eOjeAsCrQsOp{@yPxz@_M~j@wLrf@{Rbv@}Mhe@q^lgAsFvPaAnCeH|R}CrHoMl[iW|l@wa@b}@qg@beAgy@tcBmmApfCyIvQsIxPi`@bx@sYpn@mSbd@qKbXs[|{@oRvi@cQ|j@eIdY}Ttx@{Obo@qLfj@gHh]yDpRg@jCwGl^sB~LgGf^eKrs@kChS{Jfv@mLfiAwIreAaH|fAqGlwAiDfwAeBjpAyDfdF{GhjKuCx_EiBf~Bu@l~@_@l]cAf~@aA~aAs@hu@uC|hBm@b_@o@xYo@b]QfJs@r_@ItDoCnbAqErrAeFrsAkG`wAqHhrAsLhdBcKxpAaLhlAeLteAyNzkAoQnpAqCfSObAyMty@cJlj@cThkAeZnxA_V`fAg\\`sAgXrbA{Sbu@sZxaAwZ`_Acd@bnAuHlRySni@we@vhAqm@~rAkp@poA}Ufb@wX|e@gIvM}x@`tAikAviBer@tjAysAb{Byy@`zAov@fzAmh@fcAgj@beAoZvi@{b@hu@ae@hs@cY~_@ot@z}@ua@`d@}\\h]_X|Uug@|b@wYzT}X`S}ZbSc[vQ{_@vSyk@`Xwj@xTc^pLoLlDsVfGm[dIoX|Fc[jGkLzA}MrAkSlCmZnC{OvAcQ|@yYvAc\\x@ac@E_k@{@cj@mBkk@}Eu^cEiVmD}RgCca@_H}F}@miBi\\unAqTCAotBk`@mcBwZaUyDkGaA{e@cHmxAcPoh@oCs]aBw\\m@w{@Hep@nByt@hEgc@`Faa@~Es{@`Oqy@xRwx@jW_n@dU}y@j_@uo@r[_ZzRc{AreAcS`Pct@to@qfAlhAyGxHoWbYgh@jr@mn@h}@w]jj@qU~_@gi@tcAeb@hz@ep@t|AcN`^e]d`A_b@nqAa_@bqAaXrfAeVlfAcUrhA{RpiAkQzjA}O|iAuNnkAqHzm@kE|^kJx{@qYjlCgm@xxFc^diD{@pIyK~eA{R|iBY~B_D`Zy[bzCoXfiCqIvw@mC`ZqAdMoE|a@}XjiCwPr_BgYjpCqIjv@{RvhB{@jIgAfLiWpbCy`@lwDwOvwAcKb_AoL~jAaMxkAcHlp@yNrtAoZdhCg[~yBgOh{@uBtLwUjlAyU|eAw]huA}Vp|@ob@~uA}@vCeKp\\cZv`A}Ofh@gItU}Lz`@m\\`fAsa@`rAgqAzdEgq@psBsO~b@wi@p{Aim@j}A}^~}@y^n{@iRza@uKhViAdC{KlVau@x}Aei@feAeo@|mAoT`b@wMnVca@jy@oa@|{@w[rv@gT|g@gVzq@uVdu@uDdM_Ozf@cc@v~AyR`w@iUjfAuW`vAsMhw@eChOeMn}@uKx{@}Oh{AuHh{@uGt}@}Dro@gEf}@mD`}@cBbq@kB`q@]b]q@hn@QrlABlp@b@~}@zAb~@zBl`AfE`nAbEpz@tHbpAtDrd@jEnh@xMvzAxO`{Ax]ffDnGzp@~Flk@hLd|ApEnn@~Dps@lDrw@pBpj@fCrdAfCriBTjyAe@`yAiA`_AcIbvDgFteCcBl`AeBlaAkBnlAm@ls@a@bd@s@vcCB~~BlAl~BjBxeBzGfhDlHt~BjHnmBnJnkBfBv]vDdp@xLllBjN|kBfUpjC~O`|A|OjzAdXvyBtO`lAtS~vAvQriApU|wA~[pfBvBpKpF~X|Lvo@h]xaBrZruA~UnaAfEfQzVrdAlt@tzCp]``BpX`~ArLrt@zK`y@xC|VrDlZxChXzJvcAbGrs@nE`m@lDnm@`Dnn@hBbc@NvDr@bTn@pRfAnj@r@ja@PdNDfAf@~b@ClBp@xfAGfv@?lUk@zn@q@bj@mCjoAcCnr@aCto@mDjl@wDrn@iGp{@gElf@oCx\\yAhOs@|GcH~p@wEre@}d@viEwW`_C_KzcA_SlhBeEhb@wIlv@kFrh@{Cp[wKjjAsS~hC}Gz}@qFxz@_E|m@mB~\\_AvQoAv\\yBla@_Dvk@mn@xjL}RnrDuCth@qGniAwCtl@gD`p@cCdk@oBfm@_DrnAaAnn@Sl]En|@R~n@^n_@`DrlAvCv|@zE|z@tBd`@pFfn@zKljA~Ghl@zHbk@|Ijj@fGd^pJdi@lDhPnBlJpGpZdMvi@tWnbAdOjh@fUns@bCzHve@~xA|^zgAfPzh@~R~u@tL|i@xFf[~E`]|Gnm@nCj]dCn_@jAr[D|@v@r_@@x^MdXI|Ug@h_@mCfo@gCje@kB|]uGb`AwKjwAuTduC}Pj{BaAfMiQ~}BmUjzCmAhNiAfNeJ|lA{Zj`EuHbaAqIxfAg@nFqIhkAuKbzAyS|lC}OxgB}I`u@wJrs@{G|g@e]v_CcXxjB}CnS{aBzaLmd@`zC_j@n~CsYv{AoFfYkwAp}HwJjr@{CjVoIt{@aFxr@wBjl@gBbp@oEdlBmD`cBi@tWKbDiBfn@_Av\\eAxc@SvIaBp~@aAnt@cAvs@wEhaByDpnBmBzmBTpd@hAfa@zBbj@rBrZhCvZ|ClZpDdZ~@tGtAtJn@lEtCnQ`A~FbDdQfAzF~FpXnGdXbHtWzIlYzXtu@fd@vlA`a@hfAz[b|@dm@`aBjp@jgBvNp`@`]dbAdKdYhFlMtFhNfYzm@`g@pw@xw@zeAv]zd@h\\`f@|T|]rTta@lIjRjIfRnUzo@t`@lkA`G~P`\\j`AlMf_@bLj\\fRzc@pSxb@fOxXvTt]xOvTzRhUjKfKb_@f]v_@xWfs@n]fiAd^ryAbe@zd@xN|c@pNtd@|NzlAn_@jQ`Hd\\tNd[rQra@`Zn]xYhF|DpWhT~cA`|@ji@~c@rc@dc@t^ne@tYbh@|Rvb@|Lx[zMva@fYbdAhg@lkBrc@~aBfClJrSxt@dSjq@nLj[zMvZpQn_@dTf_@fQjVxVnZtXrYtXrU`XtQrY|O|VhKnXhIn`@hIpRvBvf@pD`~@xDd_AhEpmCxLzb@bCdg@zFte@zMpb@fO`X|Mb[`Rp_@|YrZfYfc@~h@da@|l@tk@r}@ba@|n@`lAfjB|kArjBxbCpvDtn@dbAld@zw@jQv^|P|`@lSnk@`Oze@hJt]xIv^nSxaA~DfSvEzUjD`Q`VrkAvM~o@nGhZxy@pbEbtA~yGxZf{AH`@dKfh@vKrk@jFrZvEd[~C~VrCfW`D|]lC`^bDhn@dAx]`Axo@Av^Sb^a@l_@_Clt@{Chh@_Gtr@cB|NmGpf@eF`]_Hn`@kOns@{DlNcEfOGR{Mrb@kP|e@wRni@yNza@mRhj@aJrZqHpYkGzWuAxGsDlQmF`[oFh_@eEl]_Ih{@wBpc@}Bdr@WnYAho@NtOf@r^jAx]fAtSXxElApRrAnR|BbWrA~NbFna@vN|z@fAhFpRd_AnZpuA|g@x_CzG~ZlIh`@zOht@`BvHdXrnAtu@dkDrIbg@hJfo@tGji@pBpTbA`LrD~j@fB`^pArb@`Ax]h@f[DxSj@`pABlZFtm@b@ppAH|n@h@zn@bAbc@hCrn@|C|i@zCf^pDh^~E~^tE~Z~Gz_@pGn\\tIf^|BpJnI|YlO~g@jXx}@lOhg@xK`^jMpc@lIpZ`Hf[`Qf}@f@pCf^fqBvZzeBfJbe@pIn_@fGjV|Id[~Kb]pMt\\tBpFl_@l~@zq@dbBnm@d|AlZbs@xApDx[xw@vMv\\xSfn@|Odg@tO~k@`Nnh@tOft@~Nny@lH~e@h@jD`I~k@`Hfm@vGzq@bEli@fE|m@`Djr@zAdj@~Abs@Zra@DpFT|s@a@v~@S`_Au@xzAg@`sA]ngAGzOOxf@Wvh@Szo@V~r@^|`@lB`o@pCjj@`Cp^pDr^tB~QfAtJtEz\\tFn]jGp\\fHt[nHlZ~Jj_@lOre@xQxe@bQv`@pL|UbPxXbYfb@zIdLhA|AjvAfmBvk@tu@~`@zh@tGjIhDlE~Yj]~`@dc@bThThb@bc@ti@zj@d[d[rx@ry@b^x_@vB~BzSbW~V|`@pPfXrLvUrPba@jRvh@jNla@bMr^zDdL|\\`bAxJ~XxThp@tPtg@va@|jAxK~ZjPr_@pNdXpRhZfQfSrXlXjX|ThW`Otc@dQhfA`X~MhDn\\|HfRnFhR`GfPjHl[tO|YfR~RdO|QzQnPrUjXdg@|Uvf@x]~t@d[`v@dd@lhAfc@|kAha@`oAv`@zwAxRbt@bQ`u@tJtj@~Mr}@|RxqAvEl[dGr[fIv]fMpb@rPtd@nNjZvQz[pb@hs@~b@vs@dj@h~@jV`b@hPv]`W`p@`T|q@fShu@rg@zjBdg@~gBj[pjAlWpv@rOx_@bNjYbSb_@dStZdZn_@vZfZv_@r\\tv@lm@zlAx_A`m@zo@fOhStNlT~FvJpFbKhPt\\nKlVfQrd@xT|p@vI|Vdy@jeC?@lDlKn@nBvGbRt{@d`C|]|dAv`@~nA`Rdq@lPfj@nRdq@lVn_AnShw@|`@~yAjBfGvBdHz`@rrAdWzo@li@jrAvIfStIhSfKtU|Qpb@hI`QhHtOrHhP`iApcC`D~Gla@x|@fSvd@tY`s@r]tcAn`@phAbVfw@jZfcAfStw@fH~XtKpd@~Lbm@FVtLho@nW|xAjR`qAjXfaC~Evf@xGjw@dHffAzJhqB|G~~B`I~rEdAztA`CbdBxChwAhDhaBtCxfAhDxbAtJxrB|HhmAfG|{@tI|bA|Ipx@tLpeAlPlmAvMfw@|Nx~@lFzXfYxwAta@tgBrOrn@l[pcAfJdZno@rrBzb@jtA~DdMjFrPbJrXzk@nfBbx@`dCdT|p@jNv_@rMfZtLjVdKzQfLjRxz@jlAt|@~lAp{@bkArV|\\dQ~U~UnWtR|QtOnLd\\|SrUxK|E|B|RrGvYnHnRzClTpBr\\p@bb@a@fXg@dPYnQArQJbM\\vO|AdSxDrR|E~RzG`\\fPfUbPpObMvOhPnStWjS|ZxOtZrMvYhMz\\xQjp@dHp\\hHf`@`NrlAdNnkAzMpgA~Kzn@hLzd@hMdb@zOz`@nQh_@fUz_@zBdDzTd\\drA|lBzUh^jUt]fOxZbSve@dN|`@tMvd@lI`_@tHna@vEpYrDb[hDt]rCn^hBl^nAp_@^rc@@fi@gCl`Bk@r\\w@bf@q@h_@Q~^Rn^f@~YbB|_@nC|a@hD`^tD`YrGf`@rOru@hPxw@xGd\\rThfAfMjy@bEb_@nH|aAlD~iAX~f@W~m@cAlh@wAf^}Bp]iCr^mDd]}Kn}@yOpmAuZxhCcEph@sBnf@}@xj@Zl|@fDt{@bGvn@`Et[zH`g@|E|V|Jb`@rFhPzGfSnu@xwBtKd^vMff@|Hr`@bIhh@jD~\\bDb`@lBhd@`Abk@fBl~A?BJzK@r@h@fi@pAdqAf@da@@d@v@tp@p@dq@|@vdAZ~ZNvJvC~mCl@~f@VzUP|O`Bj`BVvYnApsAZvt@Ovw@Hld@BdVJjr@JnqB?zGRruB?~a@ClO?rCRf^JrQv@~_@`AlZzBnb@pAjXpBnX|Cb[pIxw@zDx^fM~jAdO`qA`N~iA~WfeCdGti@zA~MjLheAb`@pgDbKj}@xMriAbKr}@~Jv|@~Iny@|D~[dGta@hJzf@bMjj@pFvQfXp}@jDfLjCxIhLp_@|HfWdXj~@nFzTfHz\\~I`h@lGvf@rFvf@`Dnd@fBva@pAd`@xGvrBlA~e@fC~|@v@`Y@VnCn_AlD|nAfDjmAtBnr@v@pj@~@``ADn`@iA|lBw@z`@oBlbAgBta@cLviC{YboGoO~sAcQ~x@On@ueAd}DoNbp@oGb\\oEj`@oDx`@oB`e@qAh{@@p]pAhd@zDtp@~IhjAjIty@~LpkA~QddBzMjdA~Hzm@|Op}@?@xPvw@tU~y@d\\x~@x[p{@``@x{@|fAvcC`{AxeD`^h{@~Z~~@nD~MzLfl@`CrQjGfk@bExv@bArj@v@|_Cv@t`Aj@ju@R|MzAxc@bDvj@zEpl@~Gxs@`d@~`DjI`n@dApIpIh_AdCvf@dCnu@jAzo@Axg@y@bs@qFz|@aChb@{K||@}ClVcTruAyQ|lA_Gti@mDrb@q@tIyArd@o@nb@G`k@|@za@rBxb@rCl^jCdTvEnb@fHjg@|DlYvFjZpDxRvM|z@nG|e@zE~c@xCl^fDda@tAfP`Gru@hFxm@dEb^nGjb@vF|XhK|d@|Iz[~IzYzLb[tHdP~InPlNbTxP`VxQnT~I`J|JfIrI~EdJ~E`KxEjLxC|LrA`MT~Lg@zLcBfHeB|KwDdLgChLsAdJ]fJBdJh@rvAriAfIdGbi@l`@|o@ze@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":3266.293},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 5.","announcement":"In 1 mile, Keep left to take A 5.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 5.","announcement":"In a half mile, Keep left to take A 5.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 5 toward Frankfurt, Wiesbaden.","announcement":"Keep left to take A 5 toward Frankfurt, Wiesbaden.","distanceAlongGeometry":211.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.575295,50.830662],"geometry_index":4942,"admin_index":5,"weight":17.64,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":19.09,"bearings":[27,206,213],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[9.574088,50.829074],"geometry_index":4944,"admin_index":5,"weight":6.078,"is_urban":false,"turn_weight":0.5,"duration":6.05,"bearings":[11,25,203],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,196],"duration":2.43,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":2.248,"geometry_index":4946,"location":[9.573718,50.828524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":5.76,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":5.328,"geometry_index":4947,"location":[9.573612,50.82829]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.573361,50.827736],"geometry_index":4948,"admin_index":5,"weight":14.064,"is_urban":false,"turn_weight":6,"duration":8.729,"bearings":[16,23,202],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":7.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.009,"geometry_index":4952,"location":[9.572405,50.826037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.556,"geometry_index":4954,"location":[9.571621,50.82449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,199],"duration":18.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.503,"geometry_index":4955,"location":[9.571353,50.823924]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":8.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.716,"geometry_index":4966,"location":[9.568099,50.820698]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,237],"duration":4.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.635,"geometry_index":4970,"location":[9.565964,50.819661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":30.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.264,"geometry_index":4972,"location":[9.564861,50.819217]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,268],"duration":36.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.993,"geometry_index":4991,"location":[9.555373,50.818755]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":9.131,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.219,"geometry_index":5007,"location":[9.545382,50.815109]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,222],"duration":1.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.961,"geometry_index":5012,"location":[9.54332,50.813771]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[42,221],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":5013,"location":[9.543065,50.813589]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"left","text":"Frankfurt / Wiesbaden"},"distanceAlongGeometry":3292.96},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Frankfurt"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"left","text":"Frankfurt / Wiesbaden"},"distanceAlongGeometry":1609.344}],"destinations":"A 7: Frankfurt, Gießen, Würzburg, Fulda","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 7 toward Frankfurt/Gießen/Würzburg/Fulda.","modifier":"slight left","bearing_after":206,"bearing_before":207,"location":[9.575295,50.830662]},"speedLimitSign":"vienna","name":"","weight_typical":153.882,"duration_typical":161.595,"duration":161.595,"distance":3292.96,"driving_side":"right","weight":153.882,"mode":"driving","ref":"A 7; E 40; E 45","geometry":"ksm}_B}vlgQhdAht@|\\bU`@Th`@lUrMrEra@tNxZlPlRtInZxMl^xOlaA`a@f]|Mjb@vO|UpKrHrDrIzEjP~JvMfJfRzOfXlXzOpQvN`Rj]hj@xQx^tEhJpYls@rKjZ|Qhi@lXx}@hAbEjLpb@hLxh@jFx[pBfOnBbPpCf[vBh]xA~]r@fZJnN?pMe@|d@y@x]eBj_@eH~lAsBz^mBh_@kAn`@Qv\\^zj@~@jb@hBh\\nBvZdClXbCfSbEhXvF`\\dLrg@|Ljc@bS`h@nYbo@hA~BlmAlmCt`@h}@tFbLxQ`_@`HdMvItOli@d}@pAvBjJ|NbGhJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 78 miles.","announcement":"Continue for 78 miles.","distanceAlongGeometry":126265.852},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 22.","announcement":"In 2 miles, Keep right to take exit 22.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 22.","announcement":"In a half mile, Keep right to take exit 22.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 22 onto A 3, B 43 toward Wiesbaden, Frankfurt. Then Keep left at the fork.","announcement":"Keep right to take exit 22 onto A 3, B 43 toward Wiesbaden, Frankfurt. Then Keep left at the fork.","distanceAlongGeometry":291.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.542884,50.813459],"geometry_index":5014,"admin_index":5,"weight":2.262,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.537,"bearings":[41,217,231],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":2.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.666,"geometry_index":5015,"location":[9.542311,50.812979]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.742,"geometry_index":5016,"location":[9.54161,50.812425]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":0.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.067,"geometry_index":5017,"location":[9.541419,50.812274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":11.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.294,"geometry_index":5018,"location":[9.541401,50.81226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,225],"duration":2.795,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.517,"geometry_index":5022,"location":[9.538619,50.810153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,231],"duration":7.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.948,"geometry_index":5024,"location":[9.537878,50.809696]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,244],"duration":12.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.484,"geometry_index":5029,"location":[9.535623,50.80872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.531298,50.807948],"geometry_index":5036,"admin_index":5,"weight":5.26,"is_urban":false,"turn_weight":1,"duration":4.752,"bearings":[79,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":36.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.509,"geometry_index":5038,"location":[9.529644,50.807822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":0.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.704,"geometry_index":5056,"location":[9.517095,50.807824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,282],"duration":1.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.585,"geometry_index":5057,"location":[9.51682,50.807867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,281],"duration":1.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.162,"geometry_index":5058,"location":[9.516197,50.807952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,278],"duration":5.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.142,"geometry_index":5059,"location":[9.515737,50.808008]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":11.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.107,"geometry_index":5063,"location":[9.513668,50.80809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,246],"duration":5.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.282,"geometry_index":5071,"location":[9.509695,50.807567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,240],"duration":0.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.298,"geometry_index":5074,"location":[9.507803,50.80694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,233],"duration":8.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.412,"geometry_index":5075,"location":[9.507708,50.806905]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.505422,50.805837],"geometry_index":5078,"admin_index":5,"weight":8.337,"is_urban":false,"turn_weight":1,"duration":8.393,"bearings":[39,54,234],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,232],"duration":8.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.146,"geometry_index":5081,"location":[9.503221,50.804828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,220],"duration":26.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.587,"geometry_index":5086,"location":[9.501258,50.803713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.778,"geometry_index":5097,"location":[9.495778,50.799478]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":20.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":18.27,"geometry_index":5098,"location":[9.495531,50.799361]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.008,"geometry_index":5112,"location":[9.486358,50.797288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":8.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.241,"geometry_index":5113,"location":[9.485914,50.79722]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":4.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.56,"geometry_index":5117,"location":[9.483583,50.796632]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":0.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.409,"geometry_index":5119,"location":[9.482483,50.796268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":8.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.476,"geometry_index":5120,"location":[9.482357,50.796225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":0.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.658,"geometry_index":5121,"location":[9.480376,50.795544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":6.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.112,"geometry_index":5122,"location":[9.480202,50.795484]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.478583,50.794913],"geometry_index":5124,"admin_index":5,"weight":25.954,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":29.67,"bearings":[61,242,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,227],"duration":4.006,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.505,"geometry_index":5136,"location":[9.472366,50.791478]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.471525,50.791015],"geometry_index":5139,"admin_index":5,"weight":10.223,"is_urban":false,"turn_weight":1,"duration":10.549,"bearings":[31,51,235],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,259],"duration":8.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.575,"geometry_index":5147,"location":[9.468414,50.790107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":0.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.225,"geometry_index":5156,"location":[9.465566,50.790032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,280],"duration":0.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.415,"geometry_index":5157,"location":[9.465482,50.790039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,281],"duration":18.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.581,"geometry_index":5158,"location":[9.465317,50.790058]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,297],"duration":7.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.577,"geometry_index":5170,"location":[9.45909,50.791762]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":2.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.423,"geometry_index":5174,"location":[9.456666,50.792512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,289],"duration":2.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.8,"geometry_index":5176,"location":[9.455752,50.792759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,284],"duration":20.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.966,"geometry_index":5178,"location":[9.45505,50.7929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,233],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.975,"geometry_index":5198,"location":[9.447991,50.792167]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":6.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.841,"geometry_index":5199,"location":[9.447651,50.792006]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.445808,50.790912],"geometry_index":5203,"admin_index":5,"weight":8.256,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.457,"bearings":[44,223,239],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.443312,50.78933],"geometry_index":5207,"admin_index":5,"weight":5.49,"is_urban":false,"turn_weight":1,"duration":5.141,"bearings":[32,49,231],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":6.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.932,"geometry_index":5210,"location":[9.441774,50.78863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.857,"geometry_index":5215,"location":[9.439496,50.78797]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":0.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.321,"geometry_index":5217,"location":[9.438307,50.787723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":55.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":48.248,"geometry_index":5218,"location":[9.438168,50.787695]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.374,"geometry_index":5233,"location":[9.417457,50.783057]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":167.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":146.621,"geometry_index":5234,"location":[9.417299,50.783021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,256],"duration":6.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.578,"geometry_index":5291,"location":[9.365041,50.760927]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.362754,50.760546],"geometry_index":5294,"admin_index":5,"weight":20.008,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.256,"bearings":[74,250,259],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.355002,50.758336],"geometry_index":5301,"admin_index":5,"weight":1.262,"is_urban":false,"turn_weight":1,"duration":0.301,"bearings":[62,68,252],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,250],"duration":4.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.255,"geometry_index":5302,"location":[9.354898,50.758314]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":96.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":84.35,"geometry_index":5304,"location":[9.353167,50.75792]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,270],"duration":1.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.936,"geometry_index":5344,"location":[9.316967,50.756846]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":31.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":28.458,"geometry_index":5345,"location":[9.316534,50.756847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,222],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.882,"geometry_index":5364,"location":[9.303165,50.753177]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":10.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.721,"geometry_index":5365,"location":[9.302903,50.752994]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,209],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.296,"geometry_index":5370,"location":[9.300507,50.750892]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.266,"geometry_index":5371,"location":[9.299829,50.750122]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":2.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.564,"geometry_index":5372,"location":[9.299574,50.749823]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.29905,50.749215],"geometry_index":5373,"admin_index":5,"weight":5.77,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.258,"bearings":[29,208,225],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.297874,50.747833],"geometry_index":5374,"admin_index":5,"weight":1.866,"is_urban":false,"turn_weight":1,"duration":0.943,"bearings":[13,28,210],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,209],"duration":2.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.431,"geometry_index":5375,"location":[9.297691,50.747631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.857,"geometry_index":5376,"location":[9.297184,50.747063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":2.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.638,"geometry_index":5377,"location":[9.297003,50.74686]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,217],"duration":29.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.267,"geometry_index":5379,"location":[9.296377,50.746263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,270],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.973,"geometry_index":5395,"location":[9.286314,50.742969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":22.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.346,"geometry_index":5396,"location":[9.285907,50.742968]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,255],"duration":10.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.113,"geometry_index":5405,"location":[9.276826,50.742567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.254,"geometry_index":5410,"location":[9.272932,50.741698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":13.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.61,"geometry_index":5411,"location":[9.272472,50.741574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":2.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.157,"geometry_index":5416,"location":[9.267507,50.740249]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":20.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.191,"geometry_index":5417,"location":[9.266737,50.740043]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.123,"geometry_index":5422,"location":[9.259339,50.738251]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":26.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.885,"geometry_index":5423,"location":[9.258902,50.738163]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,259],"duration":0.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.793,"geometry_index":5432,"location":[9.248365,50.736538]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,258],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.824,"geometry_index":5433,"location":[9.248015,50.736495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,258],"duration":6.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.867,"geometry_index":5434,"location":[9.247647,50.736447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.245078,50.736085],"geometry_index":5437,"admin_index":5,"weight":5.923,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.588,"bearings":[76,256,267],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.242765,50.735652],"geometry_index":5439,"admin_index":5,"weight":0.986,"is_urban":false,"turn_weight":0.5,"duration":0.561,"bearings":[65,73,251],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,250],"duration":5.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.184,"geometry_index":5440,"location":[9.242559,50.735606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":16.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.066,"geometry_index":5444,"location":[9.240449,50.735076]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,231],"duration":55.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":50.285,"geometry_index":5452,"location":[9.234776,50.732957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.77,"geometry_index":5472,"location":[9.216476,50.725328]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":9.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.767,"geometry_index":5473,"location":[9.216177,50.725226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.187,"geometry_index":5477,"location":[9.212715,50.724059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":89.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":78.435,"geometry_index":5478,"location":[9.212251,50.7239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,278],"duration":1.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.103,"geometry_index":5508,"location":[9.183853,50.711707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":4.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.843,"geometry_index":5509,"location":[9.183362,50.711752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,284],"duration":1.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.368,"geometry_index":5513,"location":[9.181674,50.711981]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":36.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.218,"geometry_index":5514,"location":[9.181081,50.712078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.693,"geometry_index":5531,"location":[9.166551,50.711962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,263],"duration":51.256,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":43.566,"geometry_index":5532,"location":[9.166242,50.711941]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.02,"geometry_index":5555,"location":[9.146226,50.713037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,291],"duration":69.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":58.984,"geometry_index":5556,"location":[9.145778,50.713153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":5.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.439,"geometry_index":5576,"location":[9.117595,50.715647]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.414,"geometry_index":5578,"location":[9.115499,50.71555]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,263],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.287,"geometry_index":5579,"location":[9.115319,50.715539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.115191,50.715529],"geometry_index":5580,"admin_index":5,"weight":12.76,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.604,"bearings":[83,262,277],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.109659,50.714868],"geometry_index":5586,"admin_index":5,"weight":5.977,"is_urban":false,"turn_weight":1,"duration":5.695,"bearings":[70,79,259],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,267],"duration":25.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.166,"geometry_index":5589,"location":[9.107451,50.714641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,282],"duration":8.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.775,"geometry_index":5601,"location":[9.097495,50.715674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,283],"duration":0.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.43,"geometry_index":5603,"location":[9.094163,50.716139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":18.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.785,"geometry_index":5604,"location":[9.09399,50.716164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,279],"duration":23.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.166,"geometry_index":5609,"location":[9.087587,50.717011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,252],"duration":30.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.432,"geometry_index":5620,"location":[9.079311,50.716747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":0.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.338,"geometry_index":5632,"location":[9.070239,50.713023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":2.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.762,"geometry_index":5633,"location":[9.070146,50.712963]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":13.164,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.512,"geometry_index":5634,"location":[9.069675,50.712658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,225],"duration":2.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.512,"geometry_index":5638,"location":[9.066617,50.7107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,227],"duration":3.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.963,"geometry_index":5639,"location":[9.065937,50.710274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":38.365,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":33.562,"geometry_index":5640,"location":[9.065112,50.709788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.705,"geometry_index":5651,"location":[9.054619,50.705286]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,237],"duration":19.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.01,"geometry_index":5652,"location":[9.05439,50.7052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,227],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.479,"geometry_index":5658,"location":[9.049328,50.702616]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,223],"duration":2.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.402,"geometry_index":5659,"location":[9.049184,50.702531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":13.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.463,"geometry_index":5661,"location":[9.048476,50.702046]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":1.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.521,"geometry_index":5668,"location":[9.045467,50.699522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":82.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":73.807,"geometry_index":5669,"location":[9.045123,50.699173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,213],"duration":1.322,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.189,"geometry_index":5701,"location":[9.031685,50.680922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,211],"duration":42.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":38.361,"geometry_index":5702,"location":[9.031407,50.680654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,205],"duration":1.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.219,"geometry_index":5713,"location":[9.024331,50.671016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,204],"duration":55.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":50.172,"geometry_index":5714,"location":[9.02411,50.670709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,214],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.826,"geometry_index":5733,"location":[9.016301,50.657899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":4.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.408,"geometry_index":5734,"location":[9.016104,50.657714]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":14.52,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.061,"geometry_index":5737,"location":[9.015006,50.656756]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,227],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.156,"geometry_index":5742,"location":[9.011237,50.654193]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,226],"duration":35.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":31.508,"geometry_index":5743,"location":[9.01087,50.653975]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,227],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.893,"geometry_index":5749,"location":[9.001121,50.64805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,226],"duration":25.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.777,"geometry_index":5750,"location":[9.00084,50.647884]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":3.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.98,"geometry_index":5762,"location":[8.992816,50.644275]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.047,"geometry_index":5764,"location":[8.991566,50.644027]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":2.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.148,"geometry_index":5765,"location":[8.991127,50.643941]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.990274,50.643773],"geometry_index":5766,"admin_index":5,"weight":4.973,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.543,"bearings":[73,252,276],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.988189,50.643344],"geometry_index":5768,"admin_index":5,"weight":7.383,"is_urban":false,"turn_weight":1,"duration":7.1,"bearings":[61,72,252],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,256],"duration":21.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.793,"geometry_index":5771,"location":[8.985493,50.642811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.668,"geometry_index":5776,"location":[8.976975,50.641559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":19.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.301,"geometry_index":5777,"location":[8.976689,50.641519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,260],"duration":6.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.285,"geometry_index":5780,"location":[8.96931,50.640473]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.966597,50.640201],"geometry_index":5783,"admin_index":5,"weight":17.092,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.996,"bearings":[83,263,282],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.960654,50.63983],"geometry_index":5788,"admin_index":5,"weight":5.891,"is_urban":false,"turn_weight":1,"duration":5.441,"bearings":[75,84,265],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":3.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.412,"geometry_index":5789,"location":[8.958349,50.639703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":0.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.736,"geometry_index":5790,"location":[8.956705,50.63961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,265],"duration":37.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.678,"geometry_index":5791,"location":[8.956358,50.639585]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.932,"geometry_index":5804,"location":[8.940987,50.637799]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,244],"duration":18.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":16.334,"geometry_index":5805,"location":[8.940554,50.637675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.752,"geometry_index":5808,"location":[8.93346,50.635415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":12.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.711,"geometry_index":5809,"location":[8.933129,50.635309]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":6.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.119,"geometry_index":5811,"location":[8.928619,50.633867]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.926036,50.633046],"geometry_index":5813,"admin_index":5,"weight":4.26,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.875,"bearings":[64,243],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,241],"duration":1.27,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.125,"geometry_index":5814,"location":[8.924243,50.632469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":0.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.463,"geometry_index":5815,"location":[8.923826,50.632325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.09,"geometry_index":5816,"location":[8.923645,50.632269]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":4.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.277,"geometry_index":5817,"location":[8.923218,50.632129]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":52.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":45.752,"geometry_index":5818,"location":[8.921501,50.631581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.07,"geometry_index":5825,"location":[8.902609,50.625508]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.23,"geometry_index":5826,"location":[8.902158,50.625358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":10.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.789,"geometry_index":5827,"location":[8.901645,50.625186]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.898053,50.623876],"geometry_index":5830,"admin_index":5,"weight":14.242,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.283,"bearings":[59,239,255],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.892859,50.621943],"geometry_index":5834,"admin_index":5,"weight":1.061,"is_urban":false,"turn_weight":1,"duration":0.104,"bearings":[51,60,232],"out":2,"in":1,"turn_duration":0.036,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,240],"duration":0.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.225,"geometry_index":5835,"location":[8.892841,50.621934]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.145,"geometry_index":5836,"location":[8.89275,50.6219]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":4.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.271,"geometry_index":5837,"location":[8.892313,50.621737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":82.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":72.389,"geometry_index":5839,"location":[8.89059,50.6211]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":57.877,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":52.09,"geometry_index":5856,"location":[8.860328,50.612134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,271],"duration":0.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.801,"geometry_index":5872,"location":[8.836659,50.61222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":12.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.539,"geometry_index":5873,"location":[8.836305,50.612224]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.1,"geometry_index":5884,"location":[8.831404,50.611867]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.828958,50.611267],"geometry_index":5888,"admin_index":5,"weight":11.166,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.1,"bearings":[65,240,246],"out":1,"in":0,"turn_duration":0.028,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":1.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.262,"geometry_index":5898,"location":[8.825074,50.609454]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,220],"duration":11.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.338,"geometry_index":5899,"location":[8.82469,50.609202]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.822141,50.606764],"geometry_index":5904,"admin_index":5,"weight":7.09,"is_urban":false,"turn_weight":1,"duration":6.59,"bearings":[23,30,210],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":7.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.756,"geometry_index":5905,"location":[8.820789,50.605266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.043,"geometry_index":5906,"location":[8.819279,50.603605]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,210],"duration":16.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.373,"geometry_index":5907,"location":[8.819056,50.603359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,203],"duration":5.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.242,"geometry_index":5911,"location":[8.815738,50.599583]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.814848,50.598221],"geometry_index":5914,"admin_index":5,"weight":6.066,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.406,"bearings":[21,199,215],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.814025,50.596616],"geometry_index":5916,"admin_index":5,"weight":4.617,"is_urban":false,"turn_weight":1,"duration":3.826,"bearings":[3,18,197],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.039,"geometry_index":5917,"location":[8.81356,50.595675]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":1.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.51,"geometry_index":5918,"location":[8.813299,50.595147]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":0.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.93,"geometry_index":5919,"location":[8.813108,50.59476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":46.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":43.289,"geometry_index":5920,"location":[8.81299,50.594522]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.283,"geometry_index":5932,"location":[8.806316,50.582802]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":24.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":22.363,"geometry_index":5933,"location":[8.806256,50.58273]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.219,"geometry_index":5940,"location":[8.802687,50.576867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":36.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.777,"geometry_index":5941,"location":[8.802664,50.576803]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.787,"geometry_index":5951,"location":[8.797284,50.568141]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":52.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":47.088,"geometry_index":5952,"location":[8.797118,50.567944]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.424,"geometry_index":5959,"location":[8.78891,50.555269]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":28.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26,"geometry_index":5960,"location":[8.788845,50.555162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.152,"geometry_index":5966,"location":[8.784528,50.548405]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":9.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.988,"geometry_index":5967,"location":[8.784306,50.548115]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":4.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.912,"geometry_index":5969,"location":[8.782604,50.545866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.908,"geometry_index":5971,"location":[8.781827,50.544901]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":1.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.682,"geometry_index":5972,"location":[8.781647,50.54469]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.781295,50.544301],"geometry_index":5973,"admin_index":5,"weight":6.094,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.596,"bearings":[30,213,225],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.77987,50.542924],"geometry_index":5975,"admin_index":5,"weight":2.1,"is_urban":false,"turn_weight":1,"duration":1.195,"bearings":[13,34,214],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":5.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.914,"geometry_index":5976,"location":[8.779599,50.542668]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":25.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.762,"geometry_index":5977,"location":[8.778403,50.541538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.42,"geometry_index":5980,"location":[8.772615,50.536052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":52.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":47.15,"geometry_index":5981,"location":[8.772516,50.535958]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.666,"geometry_index":5986,"location":[8.760483,50.524561]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":1.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.227,"geometry_index":5987,"location":[8.760061,50.524161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":6.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.787,"geometry_index":5988,"location":[8.759754,50.52387]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":1.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.943,"geometry_index":5989,"location":[8.758309,50.522499]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.758078,50.522273],"geometry_index":5990,"admin_index":5,"weight":14.611,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.242,"bearings":[33,213,234],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.754674,50.518657],"geometry_index":5994,"admin_index":5,"weight":2.215,"is_urban":false,"turn_weight":1,"duration":1.371,"bearings":[15,29,209],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":5.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.328,"geometry_index":5995,"location":[8.754404,50.518352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.598,"geometry_index":5996,"location":[8.753215,50.517011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":40.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":36.75,"geometry_index":5997,"location":[8.753087,50.516866]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,203],"duration":0.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.418,"geometry_index":6009,"location":[8.744865,50.50755]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,205],"duration":22.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.889,"geometry_index":6010,"location":[8.744792,50.507442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":29.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.273,"geometry_index":6014,"location":[8.74147,50.50229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.631,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.568,"geometry_index":6017,"location":[8.737797,50.49531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":15.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.02,"geometry_index":6018,"location":[8.737719,50.495165]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":7.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.832,"geometry_index":6022,"location":[8.735751,50.491442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.295,"geometry_index":6023,"location":[8.734796,50.489625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.818,"geometry_index":6024,"location":[8.734755,50.489548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":14.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.385,"geometry_index":6025,"location":[8.734644,50.489338]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.486,"geometry_index":6027,"location":[8.732812,50.485858]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.949,"geometry_index":6028,"location":[8.732748,50.485738]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":13.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.037,"geometry_index":6029,"location":[8.732366,50.485018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":9.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.775,"geometry_index":6031,"location":[8.730805,50.482066]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":8.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.701,"geometry_index":6033,"location":[8.729667,50.479915]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.728674,50.478021],"geometry_index":6034,"admin_index":5,"weight":14.479,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.66,"bearings":[18,199,215],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.789,"geometry_index":6036,"location":[8.72688,50.474611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":10.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.934,"geometry_index":6037,"location":[8.726673,50.474225]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.725583,50.472144],"geometry_index":6039,"admin_index":5,"weight":3.752,"is_urban":false,"turn_weight":1,"duration":2.904,"bearings":[10,18,199],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":2.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.791,"geometry_index":6040,"location":[8.725267,50.471551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.422,"geometry_index":6041,"location":[8.724948,50.470951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.135,"geometry_index":6042,"location":[8.724899,50.47086]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.172,"geometry_index":6043,"location":[8.724758,50.470595]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.701,"geometry_index":6044,"location":[8.724613,50.470323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":20.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.094,"geometry_index":6045,"location":[8.724411,50.469921]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,198],"duration":1.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.367,"geometry_index":6050,"location":[8.721989,50.465329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.938,"geometry_index":6051,"location":[8.721817,50.464996]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.658,"geometry_index":6053,"location":[8.720922,50.463295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.625,"geometry_index":6054,"location":[8.720842,50.463136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.52,"geometry_index":6055,"location":[8.720764,50.462979]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.109,"geometry_index":6056,"location":[8.720696,50.462853]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":2.498,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.311,"geometry_index":6057,"location":[8.720548,50.46258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,201],"duration":2.791,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.582,"geometry_index":6058,"location":[8.720224,50.462003]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.719812,50.461369],"geometry_index":6060,"admin_index":5,"weight":1.242,"is_urban":false,"turn_weight":1,"duration":0.283,"bearings":[14,24,202],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":10.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.656,"geometry_index":6061,"location":[8.719768,50.461298]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":37.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":33.52,"geometry_index":6068,"location":[8.71775,50.458739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":10.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.338,"geometry_index":6083,"location":[8.706195,50.451786]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":46.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":42.623,"geometry_index":6086,"location":[8.702509,50.450167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":0.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.744,"geometry_index":6116,"location":[8.694735,50.439478]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.283,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.219,"geometry_index":6117,"location":[8.694769,50.439282]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.555,"geometry_index":6118,"location":[8.694825,50.438958]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":1.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.273,"geometry_index":6119,"location":[8.694994,50.43802]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":3.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.18,"geometry_index":6120,"location":[8.695054,50.437685]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.695204,50.436852],"geometry_index":6121,"admin_index":5,"weight":6.102,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.432,"bearings":[174,353],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":4.178,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.961,"geometry_index":6122,"location":[8.695486,50.435224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.422,"geometry_index":6123,"location":[8.695671,50.434177]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":85.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":78.963,"geometry_index":6124,"location":[8.695736,50.433802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.578,"geometry_index":6136,"location":[8.699457,50.412422]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,353],"duration":16.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.58,"geometry_index":6137,"location":[8.699486,50.41226]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":7.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.354,"geometry_index":6139,"location":[8.700199,50.40816]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.700522,50.406373],"geometry_index":6141,"admin_index":5,"weight":5.865,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.523,"bearings":[174,187,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.700799,50.404761],"geometry_index":6142,"admin_index":5,"weight":6.25,"is_urban":false,"turn_weight":1,"duration":6.008,"bearings":[174,345,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.09,"geometry_index":6143,"location":[8.70107,50.403196]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":24.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.09,"geometry_index":6145,"location":[8.701232,50.402273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.355,"geometry_index":6150,"location":[8.702319,50.395992]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,354],"duration":42.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.459,"geometry_index":6151,"location":[8.702383,50.395607]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.67,"geometry_index":6157,"location":[8.704236,50.385011]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.704509,50.383446],"geometry_index":6158,"admin_index":5,"weight":4.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.783,"bearings":[174,189,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.704721,50.382253],"geometry_index":6159,"admin_index":5,"weight":4.363,"is_urban":false,"turn_weight":1,"duration":3.645,"bearings":[174,344,354],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.252,"geometry_index":6160,"location":[8.704877,50.381343]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":11.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.414,"geometry_index":6161,"location":[8.704936,50.381001]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":1.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.418,"geometry_index":6165,"location":[8.705437,50.378151]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":31.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.826,"geometry_index":6166,"location":[8.705502,50.377769]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,198],"duration":1.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.094,"geometry_index":6180,"location":[8.704486,50.370154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":26.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.959,"geometry_index":6181,"location":[8.704352,50.369887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.996,"geometry_index":6189,"location":[8.699863,50.363876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":1.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.273,"geometry_index":6190,"location":[8.699675,50.363649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":11.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.709,"geometry_index":6191,"location":[8.699414,50.363341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":8.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.129,"geometry_index":6193,"location":[8.697268,50.36073]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.695636,50.35875],"geometry_index":6196,"admin_index":5,"weight":19.373,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.547,"bearings":[28,205,217],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.693112,50.353755],"geometry_index":6204,"admin_index":5,"weight":1.264,"is_urban":false,"turn_weight":1,"duration":0.318,"bearings":[4,11,187],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.156,"geometry_index":6205,"location":[8.693098,50.353682]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,187],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.416,"geometry_index":6206,"location":[8.69302,50.353376]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":68.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":60.037,"geometry_index":6210,"location":[8.692761,50.351591]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":118.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":106.406,"geometry_index":6234,"location":[8.695799,50.334534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":53.322,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":49.324,"geometry_index":6268,"location":[8.681261,50.306897]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.109,"geometry_index":6283,"location":[8.672803,50.294794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":14.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.188,"geometry_index":6284,"location":[8.672708,50.294501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.143,"geometry_index":6286,"location":[8.671515,50.290987]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.67132,50.29042],"geometry_index":6287,"admin_index":5,"weight":6.99,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.576,"bearings":[12,192,207],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.670678,50.288564],"geometry_index":6288,"admin_index":5,"weight":3.355,"is_urban":false,"turn_weight":1,"duration":2.566,"bearings":[12,192,358],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.715,"geometry_index":6289,"location":[8.670478,50.287946]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.531,"geometry_index":6290,"location":[8.670329,50.287496]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":3.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.877,"geometry_index":6291,"location":[8.670189,50.28709]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[12,192,215],"duration":6.766,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.24,"geometry_index":6292,"location":[8.669919,50.286307]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[12,192,358],"duration":8.129,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.5,"geometry_index":6294,"location":[8.669339,50.284611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":29.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":27.416,"geometry_index":6295,"location":[8.66865,50.282571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.85,"geometry_index":6303,"location":[8.666118,50.275126]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":32.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":30.844,"geometry_index":6304,"location":[8.66604,50.274898]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.783,"geometry_index":6312,"location":[8.663168,50.26643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,190],"duration":14.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":14.604,"geometry_index":6313,"location":[8.663104,50.266225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":21.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":21.127,"geometry_index":6321,"location":[8.662579,50.262285]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.291,"geometry_index":6327,"location":[8.662664,50.256556]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,180],"duration":5.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.496,"geometry_index":6328,"location":[8.662668,50.256208]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.662682,50.254718],"geometry_index":6329,"admin_index":5,"weight":9.604,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.855,"bearings":[0,180,193],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.662721,50.252109],"geometry_index":6332,"admin_index":5,"weight":7.008,"is_urban":false,"turn_weight":1,"duration":6.182,"bearings":[0,179,339],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.248,"geometry_index":6333,"location":[8.662748,50.250514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":4.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.623,"geometry_index":6334,"location":[8.66275,50.250186]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":0.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.619,"geometry_index":6336,"location":[8.662768,50.248955]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[179,359],"duration":64.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":60.877,"geometry_index":6337,"location":[8.662771,50.248793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.797,"geometry_index":6348,"location":[8.663009,50.232006]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":40.639,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.607,"geometry_index":6349,"location":[8.663012,50.231794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.887,"geometry_index":6355,"location":[8.663159,50.221248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":3.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.543,"geometry_index":6356,"location":[8.663163,50.221017]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,184],"duration":37.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":36.35,"geometry_index":6357,"location":[8.663173,50.220077]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.953,"geometry_index":6378,"location":[8.659676,50.210781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,211],"duration":5.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.117,"geometry_index":6379,"location":[8.659491,50.210565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.164,"geometry_index":6381,"location":[8.658419,50.209457]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":2.111,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.111,"geometry_index":6382,"location":[8.658159,50.209211]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,217],"duration":1.496,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.488,"geometry_index":6384,"location":[8.657655,50.208763]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":1.635,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.627,"geometry_index":6385,"location":[8.657296,50.208458]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,222],"duration":23.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":23.227,"geometry_index":6386,"location":[8.656884,50.208125]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.650104,50.203948],"geometry_index":6396,"admin_index":5,"weight":17.32,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.918,"bearings":[47,224,235],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":2.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.516,"geometry_index":6403,"location":[8.645341,50.201158]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.801,"geometry_index":6404,"location":[8.644882,50.200881]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.643483,50.200102],"geometry_index":6406,"admin_index":5,"weight":5.68,"is_urban":false,"turn_weight":1,"duration":4.705,"bearings":[34,52,228],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,223],"duration":7.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.992,"geometry_index":6408,"location":[8.642126,50.199318]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,232],"duration":0.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.973,"geometry_index":6412,"location":[8.639838,50.197964]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":0.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.145,"geometry_index":6414,"location":[8.639543,50.197817]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.639493,50.197794],"geometry_index":6415,"admin_index":5,"weight":9.223,"is_urban":false,"turn_weight":1,"duration":8.463,"bearings":[32,54,227],"out":2,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":19.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.221,"geometry_index":6417,"location":[8.636947,50.196299]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":67.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":65.721,"geometry_index":6422,"location":[8.630959,50.192833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":18.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":17.783,"geometry_index":6447,"location":[8.615015,50.178849]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":12.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.758,"geometry_index":6453,"location":[8.612507,50.174345]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.648,"geometry_index":6454,"location":[8.610937,50.171505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":27.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.969,"geometry_index":6455,"location":[8.610468,50.170613]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.312,"geometry_index":6460,"location":[8.606842,50.164042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,197],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.311,"geometry_index":6461,"location":[8.606801,50.163969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,200],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.244,"geometry_index":6462,"location":[8.606764,50.163892]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":22.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":21.477,"geometry_index":6463,"location":[8.60673,50.163833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":7.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.771,"geometry_index":6468,"location":[8.603839,50.158601]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.602908,50.156906],"geometry_index":6469,"admin_index":5,"weight":5.486,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.781,"bearings":[19,199,225],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":11.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.039,"geometry_index":6471,"location":[8.602141,50.155533]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":2.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.086,"geometry_index":6473,"location":[8.600611,50.152773]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.600325,50.152262],"geometry_index":6474,"admin_index":5,"weight":4.721,"is_urban":false,"turn_weight":1,"duration":3.836,"bearings":[13,20,199],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":2.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.879,"geometry_index":6475,"location":[8.599844,50.151357]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":42.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":42.084,"geometry_index":6476,"location":[8.599465,50.150666]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":7.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.127,"geometry_index":6485,"location":[8.593995,50.140771]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,200],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":3.908,"geometry_index":6487,"location":[8.593004,50.138943]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.592525,50.138092],"geometry_index":6488,"admin_index":5,"weight":20.527,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":19.115,"bearings":[20,199,214],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.590425,50.133919],"geometry_index":6495,"admin_index":5,"weight":8.74,"is_urban":true,"turn_weight":1,"duration":7.207,"bearings":[13,193,356],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":0.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.152,"geometry_index":6500,"location":[8.590012,50.132289]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.590004,50.132251],"geometry_index":6501,"admin_index":5,"weight":7.791,"is_urban":true,"turn_weight":1,"duration":6.342,"bearings":[8,185,358],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[175,359],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.188,"geometry_index":6505,"location":[8.589932,50.130641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,355],"duration":6.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.906,"geometry_index":6507,"location":[8.590028,50.129887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,351],"duration":0.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.531,"geometry_index":6512,"location":[8.59038,50.128273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,351],"duration":34.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":37.371,"geometry_index":6513,"location":[8.590408,50.128153]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,337],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.037,"geometry_index":6529,"location":[8.5954,50.119911]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":3.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.854,"geometry_index":6530,"location":[8.595405,50.119903]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.595954,50.119039],"geometry_index":6532,"admin_index":5,"weight":15.158,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.465,"bearings":[152,170,338],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.598141,50.115718],"geometry_index":6539,"admin_index":5,"weight":1.391,"is_urban":false,"turn_weight":1,"duration":0.398,"bearings":[152,328,338],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,332],"duration":1.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.91,"geometry_index":6540,"location":[8.598204,50.115641]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,339],"duration":3.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.131,"geometry_index":6541,"location":[8.598446,50.115242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,338],"duration":1.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.209,"geometry_index":6542,"location":[8.59901,50.114361]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[158,336],"duration":1.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.676,"geometry_index":6543,"location":[8.599184,50.11411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":3.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.977,"geometry_index":6544,"location":[8.599412,50.113755]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":7.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.539,"geometry_index":6546,"location":[8.59995,50.11292]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":7.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.143,"geometry_index":6551,"location":[8.600961,50.111375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.602044,50.1097],"geometry_index":6553,"admin_index":5,"weight":5.598,"is_urban":true,"turn_weight":1,"duration":4.283,"bearings":[157,322,338],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,338],"duration":5.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.709,"geometry_index":6555,"location":[8.602694,50.108704]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,337],"duration":33.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":35.941,"geometry_index":6558,"location":[8.603502,50.107468]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,323],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.195,"geometry_index":6571,"location":[8.610536,50.100385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,323],"duration":17.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":18.916,"geometry_index":6572,"location":[8.611013,50.099982]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,333],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.264,"geometry_index":6579,"location":[8.614329,50.096709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,332],"duration":5.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.033,"geometry_index":6580,"location":[8.614547,50.096447]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,338],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.049,"geometry_index":6583,"location":[8.615446,50.095136]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":0.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.91,"geometry_index":6584,"location":[8.615698,50.094682]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[161,340],"duration":3.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.832,"geometry_index":6585,"location":[8.615809,50.094483]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,344],"duration":1.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.303,"geometry_index":6587,"location":[8.616226,50.093637]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.616331,50.093345],"geometry_index":6588,"admin_index":5,"weight":4.418,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":4.137,"bearings":[160,187,347],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":3.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.518,"geometry_index":6593,"location":[8.616721,50.09236]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,350],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.602,"geometry_index":6595,"location":[8.61695,50.091568]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,351],"duration":0.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.088,"geometry_index":6596,"location":[8.616987,50.091425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[170,349],"duration":3.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.641,"geometry_index":6597,"location":[8.616992,50.091408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":10.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.488,"geometry_index":6599,"location":[8.617194,50.090561]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,353],"duration":12.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.859,"geometry_index":6600,"location":[8.617752,50.087798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,358],"duration":6.627,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.783,"geometry_index":6606,"location":[8.618237,50.08465]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,184],"duration":2.619,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.619,"geometry_index":6608,"location":[8.618173,50.083016]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,187],"duration":13.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.127,"geometry_index":6610,"location":[8.618094,50.082374]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,198],"duration":1.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.561,"geometry_index":6616,"location":[8.617115,50.079192]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.616926,50.078817],"geometry_index":6617,"admin_index":5,"weight":9.035,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.287,"bearings":[18,197,208],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.146,"geometry_index":6620,"location":[8.615837,50.07659]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":14.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.582,"geometry_index":6621,"location":[8.615699,50.076311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":27.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":25.73,"geometry_index":6626,"location":[8.613917,50.072743]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.113,"geometry_index":6632,"location":[8.610533,50.065987]},{"bearings":[18,197],"entry":[false,true],"classes":["motorway"],"in":0,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6633,"location":[8.609855,50.064647]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Wiesbaden"},{"type":"text","text":"/"},{"type":"text","text":"Frankfurt"}],"type":"fork","modifier":"right","text":"Wiesbaden / Frankfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"22"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"43","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 43"}],"type":"fork","modifier":"right","text":"Exit 22 A 3 / B 43"},"distanceAlongGeometry":126299.188},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Wiesbaden"},{"type":"text","text":"/"},{"type":"text","text":"Frankfurt"}],"type":"fork","modifier":"right","text":"Wiesbaden / Frankfurt"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"22"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"43","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 43"}],"type":"fork","modifier":"right","text":"Exit 22 A 3 / B 43"},"distanceAlongGeometry":3218.688}],"destinations":"Frankfurt, Wiesbaden, Basel, Gießen","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 5 toward Frankfurt/Wiesbaden.","modifier":"slight left","bearing_after":217,"bearing_before":221,"location":[9.542884,50.813459]},"speedLimitSign":"vienna","name":"","weight_typical":4200.712,"duration_typical":4546.012,"duration":4546.012,"distance":126299.188,"driving_side":"right","weight":4200.712,"mode":"driving","ref":"A 5","geometry":"e`l|_BgmmeQ~\\xb@ra@xj@lH|JZb@zPbV`n@x|@nf@lr@fZnd@nNvW`LpTdKrVjJbVfN|a@hJr\\zIr\\tIba@nFfZnJhp@tExd@hDfc@hBlc@fBbp@hA~\\pDjhAxCt~@`D|_AzCz~@`D|~@jCvx@pCpx@hBdl@v@jb@Xh]Kr[[zZe@|TsAf`@_AtQcBjX}C~^iInz@iHlu@uAdPiD|e@oBv[sAp\\s@f`@_@ra@Bz^Vx[rAff@zAt^nBt[rCz]lD~]fEp\\rEl[tH`a@nIf`@~Q|q@dA|DfZzw@zXxv@rLd]t`@fhAjGvQ~Spl@lOl`@vHnRlIdQlPp[rN~UfLzPfc@jf@fXpWzXtWdZrYbXdZ|`@rh@hT|^dJdR~Zxt@hPrb@hFlN~Mf`@bPxg@bKh]hR`r@tFjXF\\lGd[dIrh@~Edb@fDt_@|IfaBzFlxA`Ebr@hA`NfCvZnHtp@~Hpf@tHd`@pFfVnHn\\fLff@tAzFpi@xzBvBzIrRbv@`O`m@tBdJ~GtXtJr^vJx\\~IrXbOr_@lOd]hOxZ|MbV`k@f~@rf@dy@`Sl\\lA~B~KrUnL|XlG`RrKt^dEjPpE~TfD`QrFh\\jDxZtCb\\xBz\\r@lOd@jOV|PHnO?rX_@b\\w@tUGlBMfDe@hIUhEcAfPgBtTsCxWsBbPgBjMcDfRgF|WiIva@sRr|@wRj}@{YtsAgQzx@yG~ZiHf]oIjb@eGh\\gFxZ_DrVyBfSmBnTsAhSgAvUu@tRc@fTOlSEhWHhRd@jTh@bRjAvW|AzVfBzRtBhSlCjTpBrNjDdSvFpYnHrZ|J|]`IfTrJbVbUpe@`M~TpSn^p[zi@b]hm@j^|q@xGzNtSng@fNlb@xFdS|G|V|FvWlLfm@lDvVnDtVnGpf@|Eva@v@tGzJ~z@hVpyBvJh}@vKr~@nJ|x@pKr|@`Sv|AdS~wAtW|`Bl\\ttBx\\~tBpf@dbDxQnpAbGnc@lNxcAfAzHn_@zsChYtrB|XlvBlZhyBtL`z@fQtiAlJnk@hT`uA`RjlAfQzhAzMfy@bJje@bJb`@bRhp@zOhg@hYrt@lYnm@pRp]nP|Wbh@|y@rWra@|Vbc@nWhi@jWro@tQzi@`Yx}@r[peAx_@tnA`o@juBjU`u@tY`aAlk@vgB|d@bwAhb@tqAt`@pmAtO~d@|Nna@vX|p@rU|d@h[jj@r^ng@l_@nc@`r@hr@jw@~x@jXvZhXz_@bUf_@nYbh@pTvf@pWzq@bOxe@xQdo@|Ktg@xI`f@rGz`@pFba@jHrq@vHrz@tEph@jFvh@xPlnAhLnn@dJbc@vc@zrB|Y|tAxJre@hS~oAj@nErLjy@~Ixp@zLd|@xZt{BfVjcBhLxz@vZlxB~NfgA|Z|wBbYnrB`QroAjGni@bF|l@|Cta@pA`WhAvVfB`n@f@h^P|_@?z_@[j]q@r^gAf_@aAtTaAvRkErm@cD|]aJ|{@_TtnBoS~jBePtyAaMliAiGxk@gJvz@_KbeAgD|a@_Ct]mCnh@wB~m@{@|]m@tc@]bb@A`Zd@b~@rAvi@xAhc@xB|i@lDzm@|Cda@hFhi@rGfl@|Kjz@pK|o@nJre@nMdj@nOfl@jM|c@zOle@jYxv@hRjc@fSza@lZ~j@lJjObSlZnVh]nWh[~]|_@f_@v]bo@ji@tQ|N~d@v_@juAnhArKlJnb@t^tKhJtMtMrUlW`R~UtKhO~Vrb@|Q|]vTdf@xNx`@zOvg@tI~XxL|i@lPrz@bKpv@tFdl@lDrb@tDvw@bAf_@v@jv@@lXNnpADdzADjpAx@|nAfAzk@bBpl@zEtaAlCdb@tDfh@dExc@dFdc@~K|z@fMny@tL|r@vFv[tQbcAdJzh@lU|rA`Kjo@lQ~bAzKbo@nl@bjDfQvgAtMl~@fPjkAhOtmAnDhZjTbnBfGvl@xFbn@jFrl@xGny@`NzfB`IrjA~Fxz@xMbnBtAzT~A~UdJjsAbDxb@hEjg@~E`j@`SndBzAzK~Hbj@|DjXvHpc@lFxYxMbr@nIpa@`Krc@lM`g@jGpUnWr{@xRto@|Zh{@t\\zy@pXvn@fN~YxRrb@lUrf@pShb@tZdp@fXnp@bRze@pZv|@dZz_AtRfs@vOxn@hQ~u@vQ`v@bQfu@`UbaAnXljApy@xjD|Qrx@jEtQhV~bAzVreAvLzg@~Jzc@|H~[vXbiAfXfaAv[`aA~Pvb@zRpd@jPx]|c@l}@ls@vvAlx@n_Bra@~x@vh@heAbcAzqBpbAzoBb`CxvE|MrXhVzj@rKdZdLj\\vK`a@dKd`@bJlf@nGr]~Gdf@tJp~@rErv@rCtu@bAvl@Qny@Yl\\gArb@yAt]oAr\\mB|XiC|\\aC~RaE`d@oD~a@}Etl@uEpm@gDjm@_Bna@kAzh@e@n_@?pn@x@fy@v@vc@`Cv|@rAh]`Bvm@vEvwAbDhlArCr_AjGppBh@hRzAbf@bC`x@`Fb|AvBbq@lCdy@lEt`Bh@vh@^j|@]|lAkAhaAkA~h@gBnm@cCzl@_Dpq@{Fv|@aEvi@_Dj_@yCb\\wGfm@kF|d@wInq@uLny@cPd_AgF~ZsR~pAmUvuAyWzbBkKts@s@~EiHll@iDd^{Fjo@yElo@mD`p@_Chn@aCfy@_CxoByBrtBsDzhDsDj~CsFr~EwEduEHvy@\\xo@lAt_ArBhaATfJR~FfCrm@dDbo@nHliAvHtlA~Cfc@rFr}@hFny@nC|m@jAp_@d@p^NfUCh}@eAhk@mAjc@aBd^aCr_@yEdm@aM`wAoKjmA}RdlCa@xFeI|hA{QheCq@xIqJjwAwIlkAuEzo@sMziBiHrnAa@`HsCjr@mBr}@a@hj@Ktc@d@|hAnAnn@bC~n@vC`n@bFvr@jF|l@vJfw@hF|`@bIdf@dKvk@vLbj@lMhh@~Njg@h[v_Ah_@t|@la@py@tUtc@l\\jm@vBxD`Rl\\rPdZfb@rv@nj@tbA~Xrg@rYni@j]pr@vS|c@j[bt@dh@~tAfQhi@hOpg@bTdt@rSvs@t_@`rAl^doA|ZlfAtUfw@jDhMzSdq@nUjq@b]n|@j^|z@l\\dr@dZdj@hD~GdRl[bJxNxGnKtP`WpTr[|Xt^lWl[dW`Zbb@tb@xTnThd@j`@df@n^tr@dg@jv@nj@l|@hn@tZzRtZpRxd@dWz^jQr\\hNra@tOjo@bShj@`Off@|LjaB|a@zy@xSlp@~PhR|GbRhIta@~UpRnL|JbIlRzPxNhN|NhQvPhTda@~q@pbAx}Ajk@t|@vMtR|K|NjThWvOjP~NlN~WfT`d@l[to@bb@~k@|_@|u@te@vlBrnAzu@ff@v}@~k@hlBtmA~e@xZdRxL~QfLnd@pXpj@bYre@xTdr@dZpq@zWzhAhd@vkA~d@z[~Lle@vRze@tRds@jYbj@`Xrj@j[dk@v_@tj@rb@n^f[fXpWxRnRpJhKxRjT|TrXbQrTld@ln@tWna@hUl_@da@|s@ph@fcArL|UpvBrcEpa@zw@dh@lcA|o@roArq@trAljA`zBjIpPr_@|s@~_@tu@tb@dy@tWvl@dNl]lPbf@nM~b@vLpf@lHt[~Gd^`J`k@dHzg@jC~TbJbw@jDlZnIht@nGbh@hQdxAvRj`BvDv\\xFjh@fFxm@fGht@rQt}BnQl_CrXbpDnAzP~]buE|YvxDlFh|@dHlnAfCfi@pBzn@xBnm@@RpBd_AjFx{BjGhfC|F`oCxDveBp@tTfDrzAxElmBnH`aDvGzgCnFhqAbFdx@bIfaAzFbm@pDd]pKhz@hIpk@tHxc@pI|c@vF`Zdb@joBpb@lnBneApzErEtSdb@dmB|u@tjDxSh_An]b`B`c@`oB~G`YnBhJvGtYfa@hjB|bBlwHdgAx~Exs@ddD~q@h}Ctp@dyChZtsArYbqAjHd[vI`_@|Nll@n]xsAlb@f}ApKh`@lVp_Az^`tA|s@tlCPb@bAtDdIhZdOjj@rVh_A`~@hgDzdBfpGvoDjxM`g@vjBr{@b_DjSlz@~Rd}@vLfp@fPhhA~MbhAlJlbAjHtnAbClj@|Alk@x@zd@r@fu@Hb_AI|jAO|nA_@r~AIf}BYt~EJ`nAi@`bBUbj@U|^k@bcAU`jASlyAN`eAf@hfAd@fbBKluCGbUAhd@DhXJd[\\n]`@hTj@jThAhYlAjUpAxR`Cv]`F`j@dHbm@bKxq@fJlf@|CnO|EhRnJj_@dHlVrFrQpF~OrShl@xHjR~HrQtMtWjN~VvN~VrVv^v\\t`@v`@|_@|WlWhg@nc@r|AnsAxfBj}AjN|L~wC`jC`VbSb\\jWx]xV~g@xZbTxL~U~Lf`@xP`bAr`@xy@`\\~_@hOdW|JzMjF~n@tVl|@z\\`uAzh@xu@rY|_Brn@feAx`@`fApb@r}@`c@zZfQdb@pX|t@rj@h_Apu@nCvB|pA~cA`p@lg@f]hUfZnPjd@zRpg@zO~bB`d@~Bl@`j@tNtp@dQdy@tUvk@nTbh@~T|ZbPda@nU~w@xi@t~AnmAvxAfjAhKjI~e@r^`p@xc@fi@f^n\\zSziAjq@bdGd_DjgHztDtE`CjjCxsA`qCxxAvd@vVj]`Sda@`Xpa@hYbQzLtlAny@z}@zn@v[|Tp^rYdLfJhW~Tro@~p@ld@`f@~N|OreAviA~sA`yAnqDvzDjnA|rAzDdEpsD|}DfhG`wGpeCrlCnaAjeAl`A`dA~WjYdQdRttAhyAbMlMbYnYr{@b{@l{@bw@xmA~dA`RzOxrAhiA`H~FjsAxiAzy@zu@hy@fv@d@b@xx@xy@vZv[b_@j^hi@bh@rk@rc@`u@xh@nx@bi@h~@dn@vEpCbmAjx@jsA`z@bbAlh@j{Avp@jdAvc@vrCvlAbzE`rB`HzCzHjDlo@jXx|Avp@poAni@ppBtz@xCpAbL|EteBfu@xqBf{@nF~B~k@zVn|CnrA~Y`M~y@x]ljAhg@juB`}@`{ClqA`x@t\\bW|KdXfLzgBzu@`d@vRnd@|RtD`BpOxG~O`HbXrK~L~EpaAnb@luA`l@lt@l[paAjb@xSvIxr@nZnu@l[|H~CxHzCzFfC`PfH`c@fStQhJ|SlMlCvAzEhC~OxIxa@zW|XlSlYbT`YhVxUfTtVjVxV`Wrb@xf@h_@|e@b[jc@pWv`@rXpd@h[rk@``@vw@jKvTbg@dmAhOz`@tVvs@ne@bwAlo@foBnz@lfC~^tgAtHfUvHhUbNja@rK~\\|InWnPxd@fLpZ~Pb`@~Qv^jPhY~PdXtQ|VhRtUzRhTnS~R~SrQnTdPzTvNjUfMtUvK`VdJhVtHpV`GvVnEzV|C`WhB`Wt@bW@bWq@pZiBdvAcMfKcAfSoBry@qI|SwB`s@kHvdBsPl`AqJlVaC|yA{NfcB}OdcBsPnlBcRrzCiZzzCaZvnAaMvgDi\\xxAuNfyA}NzwA}MliBuQbIy@veEqa@nx@_I~e@mFtgAwKvcBiPx`B}OlPaBfg@aFbiBsQp@GhmAqL|kBwQr`BwO`W_Cx}@iJrdBaQvaCmUpdDu\\xmBgRtyAaNx`BaPpiAgLzw@wHjTuBdx@yH|x@kI``@_E|\\cDzVaCdg@yExl@yDhUq@l^SxR@|e@z@`i@~Bxz@zIpe@tHf_@pHp[nH|[zIvUnInWjJtOjG~UzJlRtIbm@v[lj@`]nh@n_@~uAngAncAhw@tm@zd@dMvJfRhOpqB||Aro@dg@zm@he@hv@xl@pTzPzh@t]xZbQbh@fXf\\`Odd@tQ~|@vX`b@xJzd@jJpCZbRzCf\\|Dp^jDl\\~AhTz@|^j@xh@@j`@i@f\\qAbj@qE~i@aHhe@eIte@oKtgAqZjs@aSrsCcx@hk@aPbk@iN~d@gJxc@sG|i@wFpa@aCzc@sAvb@[`g@p@ji@pBf[tBra@rEda@vFhT|C~t@`Lbj@|H|aApNlrAbSb`AnNvp@zJzg@pHvq@dKdq@|Jxp@vJtr@zJlr@hKjq@zJtq@~JdlA`Q`_A|N~_@hGzd@lKnf@dNxf@tP|d@dRv]lPdm@f\\naAfo@rb@v\\~[zXxV`Vv]f^zy@haA~n@vw@rw@n`Ad_BnnBb_BjoBhkAbxAvr@l{@`a@zd@na@dc@jb@ra@fc@d_@`d@~\\td@zZhe@tX|e@lVlf@bT|f@zQhg@pOn`@dK~uDl}@hQ|DbgEvbAnRxElb@dK~rBbg@re@nKb[hHjXvG|o@zOxh@lMd_AxTn~B`j@`{@lShr@|O~kApYvlA`Y|o@zOjq@|Orw@nRfj@|MfMzCdS|Ep}@tStcAnVdeApVrpB|e@jpBje@|n@lOt_@`JxK~Bli@jJdUtDnTlCne@tDp\\jB|Rd@|\\Zdi@DxA?~jAi@bdBk@tiBm@f`@Wde@MvTGb|A[df@M|pAm@|h@QtbBu@nSClSInw@YbIEbv@Yxz@MrcBy@phAYfeBq@plAi@vkC{@n~Aq@|nDgAnqAm@ptA_@fLEtx@UvyE_BnbDqA`qA_@hw@]xoA_@lMGvy@SlJl@d]Er]Tz[dAxWfAr]hCt`@jEv]dFn^rGz\\vHlVjGdWpHrYxJfTdI`TvIp]~OdX`Np[dQzd@bZ~b@rZzVfSnLpJfb@t_@~`@ha@jNfOtLbNhMjO`RlUxSvXtRtZhc@tq@h]~l@~\\np@xXbk@hS`b@h\\zq@x^zu@vYxm@vIbQpRb\\zQn_@xSvb@nf@xcAnQ|^`Y|k@`^ru@hPt[re@hbA`IbSz^nu@bPh]pF~IjAlBlShb@fu@f|AtBjEnD`Kl@bBxt@vyArf@jcAj\\dq@xi@fiAt]ht@f{@lgBnt@`{AfXxj@l`@|x@d`@fx@|aAjsB|bAtsBjd@f_And@`z@jWta@rRlZ|N`Tbe@fn@vVnZdWfY~XvYxYnXp`@`^l`@~ZbRnMfYnRt[|RtZrPfl@xXve@xT~w@`^x~@jb@zh@`V`dA`e@zwApp@TJr`@nQjn@dZnpDbaBvv@h\\bMlFtdBrw@~}CvvAfdA|d@raAzc@pCpAxChAtBbAjh@pVz}BzdAffCxhAfKfFfJdE|hBdy@n\\fOhw@t^hiArg@daB~u@|^zPpw@`]dj@tVt[vNxzAnq@z}@xb@f~@`b@p_Bvr@x`Bju@~`@lQztAhn@px@z_@hvAtn@|YfMdt@|\\`SzItjAbh@p~@bb@d]|Mna@pN|\\bJzEnAnKpCre@nIrRdCrPzBnLtAjANvSpAlZbAj[R`WYtQmAl[qB`a@gD`I{@n]yFfMgC~JyAnFw@`XeHvXgJhVwIpc@oRrVuLpg@sXlQyJ`[oQhXoOzRaLlr@a`@r_Aoi@b]kSbb@_U`\\}Qde@gXNIzQgKbb@aUFEnIwGzZmQjb@sU`[}Pzu@oc@rq@g_@xC}B|WcN`v@gb@tN{IdUgMrb@aVpOqIlQcK`T{LjPsJvRoK|RaLznAks@xWiNpWkOtd@gW|[}QpQcKv\\mRn`@eUbOoJzYoSbOcL~QeO`ZwVhq@wn@pj@ck@tg@gk@rp@ku@~{@igArQqTdg@_o@dXy\\vn@ow@z^ac@hPeQp_@y_@HIlc@u_@he@u]jOsLhXyQl[mRd[}Pj[wNlK}ExXeM`Z{JfQqEdJgEb@Spg@{MjFgAh@Kd\\yGhSoD|GiA`@IzS{D`_@wEtkD{a@jt@}Jli@oFb\\yClRkAfT}@b^w@dz@L|i@pBx[bBhJx@dBN``@xEx^tFre@vIbh@bM`r@hTlVxJxeAfa@t`@tOta@bPlPrG`]bNl_@vNrc@rQfp@|WriA|c@vmAnf@`n@tVn@VbdA|`@tkAze@btCviAvrAji@nx@zZpsBry@bIdD"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left at the fork.","announcement":"Keep left at the fork.","distanceAlongGeometry":118.077}],"intersections":[{"bearings":[18,199,205],"entry":[false,true,true],"classes":["motorway"],"in":0,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"turn_duration":0.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":2,"geometry_index":6636,"location":[8.608388,50.0617]}],"exits":"22","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Keep left at the fork"}],"type":"fork","modifier":"left","text":"Keep left at the fork"},"distanceAlongGeometry":147.744}],"destinations":"A 3, B 43: Wiesbaden, Frankfurt, München, Köln, Würzburg, Offenbach, Mainz, Frankfurt-Süd","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 22 onto A 3/B 43 toward Wiesbaden/Frankfurt.","modifier":"slight right","bearing_after":205,"bearing_before":198,"location":[8.608388,50.0617]},"speedLimitSign":"vienna","name":"","weight_typical":6.326,"duration_typical":6.672,"duration":6.672,"distance":147.744,"driving_side":"right","weight":6.326,"mode":"driving","geometry":"gwon~AggllOpn@xa@r[|N"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep right to take A 3.","announcement":"In a quarter mile, Keep right to take A 3.","distanceAlongGeometry":389.005},{"ssmlAnnouncement":"Keep right to take A 3 toward Köln, Wiesbaden.","announcement":"Keep right to take A 3 toward Köln, Wiesbaden.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.607576,50.060481],"geometry_index":6638,"admin_index":5,"weight":3.598,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":3.709,"bearings":[20,199,211],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,201],"duration":1.732,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":1.688,"geometry_index":6639,"location":[8.6072,50.059784]},{"bearings":[21,198],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6640,"location":[8.607009,50.059466]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Köln"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"right","text":"Köln / Wiesbaden"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"}],"type":"fork","modifier":"right","text":"A 3"},"distanceAlongGeometry":418.671}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left at the fork.","modifier":"slight left","bearing_after":199,"bearing_before":200,"location":[8.607576,50.060481]},"speedLimitSign":"vienna","name":"","weight_typical":18.57,"duration_typical":19.066,"duration":19.066,"distance":418.671,"driving_side":"right","weight":18.57,"mode":"driving","geometry":"akmn~AotjlOpj@nVzR|JdoBhv@zJxD~b@pO"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep left to take A 3.","announcement":"In 1 mile, Keep left to take A 3.","distanceAlongGeometry":1536.737},{"ssmlAnnouncement":"In a half mile, Keep left to take A 3.","announcement":"In a half mile, Keep left to take A 3.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 3 toward Köln, Wiesbaden.","announcement":"Keep left to take A 3 toward Köln, Wiesbaden.","distanceAlongGeometry":211.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[8.605766,50.056905],"geometry_index":6643,"admin_index":5,"weight":22.078,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":22.666,"bearings":[16,197,212],"out":2,"in":0,"turn_duration":0.023,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,246],"duration":15.34,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":15.34,"geometry_index":6661,"location":[8.601629,50.0541]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[8.5977,50.053417],"geometry_index":6669,"admin_index":5,"weight":1.889,"is_urban":false,"turn_weight":0.5,"duration":1.4,"bearings":[88,97,276],"out":2,"in":0,"turn_duration":0.011,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,274],"duration":2.777,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":2.777,"geometry_index":6670,"location":[8.597326,50.053441]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":0.9,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":0.9,"geometry_index":6671,"location":[8.596571,50.053477]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":32.131,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":32.934,"geometry_index":6672,"location":[8.59632,50.053488]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[93,273],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6682,"location":[8.586358,50.053932]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Köln"},{"type":"text","text":"/"},{"type":"text","text":"Wiesbaden"}],"type":"fork","modifier":"left","text":"Köln / Wiesbaden"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"3","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 3"}],"type":"fork","modifier":"left","text":"A 3"},"distanceAlongGeometry":1563.403}],"destinations":"A 3: Köln, Wiesbaden, Mainz","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 3 toward Köln/Wiesbaden/Mainz.","modifier":"slight right","bearing_after":212,"bearing_before":196,"location":[8.605766,50.056905]},"speedLimitSign":"vienna","name":"","weight_typical":77.113,"duration_typical":76.381,"duration":76.381,"distance":1563.403,"driving_side":"right","weight":77.113,"mode":"driving","ref":"A 3","geometry":"qkfn~AkcglOxMjMlDfDpD`EdDxDzD|EvEnH~KnPz_AhwAbHvKtEhItD|GpC~FjCfGnCxG`EhLxC~J`DtL|AvGpAtGnChO|EdYvNv}@`Gnc@rAxTd@~R`@ht@o@jVgAdn@UtNIbFcA`r@wApv@aD~eBgBthAwBlrAgBjcAaCluAaAjy@c@pb@QvR"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6562.898},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 67.","announcement":"In 2 miles, Keep right to take A 67.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 67.","announcement":"In a half mile, Keep right to take A 67.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 67 toward Mainz, Rüsselsheim.","announcement":"Keep right to take A 67 toward Mainz, Rüsselsheim.","distanceAlongGeometry":221.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.586042,50.053941],"geometry_index":6683,"admin_index":5,"weight":2.443,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.391,"bearings":[93,273,289],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,275],"duration":10.922,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":11.195,"geometry_index":6684,"location":[8.585353,50.053961]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.58159,50.053922],"geometry_index":6689,"admin_index":5,"weight":9.766,"is_urban":false,"turn_weight":6,"duration":3.686,"bearings":[83,89,269],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":12.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":12.82,"geometry_index":6692,"location":[8.580202,50.053892]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,257],"duration":12.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":13.277,"geometry_index":6702,"location":[8.57553,50.053474]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.686,"geometry_index":6707,"location":[8.570824,50.052651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":2.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.891,"geometry_index":6709,"location":[8.570575,50.052606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,253],"duration":36.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":37.053,"geometry_index":6710,"location":[8.569555,50.052418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":17.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":18.26,"geometry_index":6717,"location":[8.556506,50.049886]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.533,"geometry_index":6718,"location":[8.550107,50.048566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":7.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.266,"geometry_index":6719,"location":[8.549916,50.048524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.637,"geometry_index":6723,"location":[8.547437,50.047883]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":0.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.928,"geometry_index":6726,"location":[8.546186,50.047516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":2.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.441,"geometry_index":6727,"location":[8.545878,50.047415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,241],"duration":4.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.428,"geometry_index":6728,"location":[8.545137,50.047177]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.543834,50.046707],"geometry_index":6729,"admin_index":5,"weight":3.682,"is_urban":false,"turn_weight":0.75,"duration":2.953,"bearings":[53,61,239],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":1.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.596,"geometry_index":6730,"location":[8.542884,50.046339]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":9.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":9.02,"geometry_index":6731,"location":[8.54238,50.046136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":3.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.785,"geometry_index":6733,"location":[8.539494,50.044982]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":5.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.246,"geometry_index":6734,"location":[8.538283,50.044502]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":0.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.398,"geometry_index":6735,"location":[8.536563,50.043816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":1.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.266,"geometry_index":6736,"location":[8.536436,50.043765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":25.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":24.01,"geometry_index":6737,"location":[8.536023,50.0436]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":32.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":30.441,"geometry_index":6741,"location":[8.527778,50.040295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":1.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.816,"geometry_index":6747,"location":[8.517041,50.035998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":2.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.221,"geometry_index":6748,"location":[8.516392,50.035744]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.639,"geometry_index":6749,"location":[8.515607,50.035437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.119,"geometry_index":6750,"location":[8.515385,50.03535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":3.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.162,"geometry_index":6751,"location":[8.514625,50.035055]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[58,238],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6753,"location":[8.513507,50.034612]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"distanceAlongGeometry":6596.231},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"distanceAlongGeometry":3218.688}],"destinations":"A 3: Köln, Wiesbaden, Mainz","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 3 toward Köln/Wiesbaden/Mainz.","modifier":"slight left","bearing_after":273,"bearing_before":273,"location":[8.586042,50.053941]},"speedLimitSign":"vienna","name":"","weight_typical":247.162,"duration_typical":244.92,"duration":244.92,"distance":6596.231,"driving_side":"right","weight":247.162,"mode":"driving","ref":"A 3; E 42","geometry":"ir`n~Asr`kOg@`j@mA|k@Yf[BrdA~Apy@pAx`@Png@b@|g@DhDf@h]xAti@x@p\\h@jQ`ApTdApUtBz_@xA~\\~Bn^dCp_@xGxx@pFjl@rDf^vLfjAtNlsAd@lEr@bHvJv~@nS~iB|RliBhUruBrVnvBpXlcC`TbjBfXl{BnqA|nKrA|JtD`Y~DdXdL|q@dNvs@rEzVbG`ZdGfZhEfRzMhm@j\\lpA~Ujz@tKn^fXh}@zm@`uB~\\tjAzi@njBdB|FhIxXvv@pgCpw@pmCjqAnmEzJt\\~aAdfD|x@pnCjy@vpClTlt@|Sft@zi@zjBzNpg@dR`p@lDzLlQnn@~Rpq@tFhRjUzu@`^bnAtg@jcB~y@vrC|Qjm@x\\xhAhK`]`f@haB|Kn`@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6345.088},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 3.","announcement":"In 1 mile, Keep right to take exit 3.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 3.","announcement":"In a half mile, Keep right to take exit 3.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 3 onto A 60 toward Mainz, Rüsselsheim.","announcement":"Keep right to take exit 3 onto A 60 toward Mainz, Rüsselsheim.","distanceAlongGeometry":244.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.50288,50.030353],"geometry_index":6762,"admin_index":5,"weight":2.609,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.832,"bearings":[59,237,246],"out":2,"in":0,"turn_duration":0.011,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,246],"duration":4.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.395,"geometry_index":6764,"location":[8.501905,50.030078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.549,"geometry_index":6765,"location":[8.500267,50.029606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.48,"geometry_index":6766,"location":[8.500063,50.029547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":8.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.746,"geometry_index":6767,"location":[8.499889,50.029497]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.497072,50.02867],"geometry_index":6770,"admin_index":5,"weight":7.744,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.404,"bearings":[66,238,246],"out":1,"in":0,"turn_duration":0.033,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":12.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":11.488,"geometry_index":6776,"location":[8.494902,50.027556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[171,354],"duration":0.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.885,"geometry_index":6788,"location":[8.493946,50.02522]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[168,351],"duration":4.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.605,"geometry_index":6789,"location":[8.494001,50.024999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,330],"duration":4.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.428,"geometry_index":6793,"location":[8.494615,50.023909]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[156,334],"duration":0.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.354,"geometry_index":6799,"location":[8.495508,50.022948]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":3.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.977,"geometry_index":6800,"location":[8.495564,50.022869]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.496019,50.022177],"geometry_index":6802,"admin_index":5,"weight":7.854,"is_urban":false,"turn_weight":2,"duration":6.336,"bearings":[68,159,332,337],"out":1,"in":3,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,348],"duration":3.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.91,"geometry_index":6805,"location":[8.496686,50.02074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,354],"duration":16.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.529,"geometry_index":6807,"location":[8.496827,50.020001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,193],"duration":6.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.559,"geometry_index":6814,"location":[8.496314,50.016199]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,199],"duration":4.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.229,"geometry_index":6817,"location":[8.495746,50.014778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,202],"duration":3.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.771,"geometry_index":6818,"location":[8.495184,50.013721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,205],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.17,"geometry_index":6819,"location":[8.494755,50.01303]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":36.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":32.182,"geometry_index":6820,"location":[8.494542,50.012733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,228],"duration":9.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":8.443,"geometry_index":6835,"location":[8.486098,50.005756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.483419,50.004181],"geometry_index":6837,"admin_index":5,"weight":10.309,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.475,"bearings":[48,227,246],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.480217,50.002238],"geometry_index":6840,"admin_index":5,"weight":1.602,"is_urban":false,"turn_weight":1,"duration":0.688,"bearings":[27,46,225],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":4.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":4.443,"geometry_index":6841,"location":[8.480042,50.002126]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,223],"duration":29.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":26.32,"geometry_index":6842,"location":[8.478742,50.001267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,210],"duration":7.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.969,"geometry_index":6850,"location":[8.472102,49.995641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.470708,49.99405],"geometry_index":6852,"admin_index":5,"weight":11.156,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.084,"bearings":[29,207,214],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.468778,49.991409],"geometry_index":6855,"admin_index":5,"weight":8.361,"is_urban":false,"turn_weight":1,"duration":7.977,"bearings":[15,24,203],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":16.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":15.213,"geometry_index":6859,"location":[8.467735,49.989643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":5.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.58,"geometry_index":6863,"location":[8.466094,49.985894]},{"bearings":[11,190],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6864,"location":[8.465673,49.984528]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"3"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"right","text":"Exit 3 A 60"},"distanceAlongGeometry":6380.088},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Mainz"},{"type":"text","text":"/"},{"type":"text","text":"Rüsselsheim"}],"type":"fork","modifier":"right","text":"Mainz / Rüsselsheim"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"3"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"right","text":"Exit 3 A 60"},"distanceAlongGeometry":1609.344}],"destinations":"Mainz, Rüsselsheim, Darmstadt, Raunheim","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 67 toward Mainz/Rüsselsheim.","modifier":"slight right","bearing_after":246,"bearing_before":239,"location":[8.50288,50.030353]},"speedLimitSign":"vienna","name":"","weight_typical":223.619,"duration_typical":241.883,"duration":241.883,"distance":6380.088,"driving_side":"right","weight":223.619,"mode":"driving","ref":"A 67","geometry":"aprl~A_e~eOzHra@hFhYn\\jeBtBvKbBzIbCxLfRp_Ah[t`BjNzd@vNpb@dKdVrGnM|EpIvI|LhIpKxGvGvHhFjHfFrInEbLvF`MjDjLfChLlAhPRnMa@lJ_AxLmBrOoD`VaJrLkGxMmLpBgBrMqNdLiLxI}HtKcIdDsB|CoBh[wQ|MuHbE_C`l@mWre@gLjXoDxSiBrd@eA~o@bAna@nC~\\bDbT~BjUpD~i@|KdMbDhR|Ehv@lV`aAbb@dj@xYpQhLzZ`SnYzSp[|Vju@vq@pVxWfU`Wj_@je@b[pa@lV~]nJtNp^tk@n]~l@|g@x_Atf@b`AxM~Ud{At{CfEvIlf@p`A~g@hcA~g@faA~E|Itt@fpArNrUfy@ppAf}@pnAz[ra@`_@td@ldAtiAtf@vg@ll@nj@~k@zg@lu@fm@th@``@nn@lb@zjAbs@rKdGzx@pa@vJrEb[xNhRtIl{Ajl@z{Ahd@t\\dHjtAhYpOpC~fAfQ"},{"ref":"A 60; E 42","mode":"driving","weight":361.062,"distance":9326.777,"geometry":"mgvi~AwxtcOd]rIri@bMfT|DrTdFxK`DtLrDjOrG~N`IpNrJ`N`LpMlM~LxNhL`PtKhQzJlRbJnShIpTlHnUrGhVrF`WjElWtDnXnC~XxBlYpAnYdArYjAvf@z@po@tAzeA~@xh@x@vdA`Afq@dCfq@nCdq@~C`p@~Czg@hDdg@hHl_ApMp{A`Ih}@|PxmBtL||AnPnzBfElo@dAdPdFj{@`Cra@rBl_@fDdu@f@|KfAfU|Btn@~@`WnCfy@fAj^pBx}@jB|{@z@~m@|@~l@d@z\\`Aj{AJzzAF~lAw@lyBkCdrEgBtmCo@bmCQ`gA?pB`@`bBf@pbAnBr_BtB`rAnBl_AbCry@~HdaCrHnjBhLzfC`Hb{AdHh|Ab@tKlJ||BvHx}BhAhb@|A`j@jBh}@bCnmA|CrdDhA`mCOp{BgBp~C{BxgBu@nb@sEzwB}CrpA]bK_E`kAqFzqAkK~wByGlhAcHxjAyKn~AkOjjBgMzvAob@jcEuUnkBkRxsAgUlrAqR|~@wRlv@ePdl@{Rvm@{V`q@kQpb@wTxf@o\\hr@}[xn@c^pr@sLhWsL|TsQva@qPtb@oMdb@gM`c@oQjs@","duration":356.557,"driving_side":"right","duration_typical":356.557,"weight_typical":361.062,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 3 onto A 60 toward Mainz/Rüsselsheim.","modifier":"slight right","bearing_after":193,"bearing_before":189,"location":[8.465308,49.983111]},"speedLimitUnit":"km/h","destinations":"A 60: Mainz, Rüsselsheim, Bingen, Wiesbaden","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Koblenz"},{"type":"text","text":"/"},{"type":"text","text":"Bingen"}],"type":"fork","modifier":"left","text":"Koblenz / Bingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"left","text":"A 60"},"distanceAlongGeometry":9326.777},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Koblenz"},{"type":"text","text":"/"},{"type":"text","text":"Bingen"}],"type":"fork","modifier":"left","text":"Koblenz / Bingen"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"60","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 60"}],"type":"fork","modifier":"left","text":"A 60"},"distanceAlongGeometry":3218.688}],"exits":"3","voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":9291.777},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 60.","announcement":"In 2 miles, Keep left to stay on A 60.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 60.","announcement":"In a half mile, Keep left to stay on A 60.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 60 toward Koblenz, Bingen.","announcement":"Keep left to stay on A 60 toward Koblenz, Bingen.","distanceAlongGeometry":266.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.465308,49.983111],"geometry_index":6866,"admin_index":5,"weight":41.686,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":42.766,"bearings":[9,187,193],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":1.941,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":1.941,"geometry_index":6895,"location":[8.45565,49.977498]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.454981,49.977466],"geometry_index":6896,"admin_index":5,"weight":28.838,"is_urban":false,"turn_weight":6,"duration":22.846,"bearings":[86,92,268],"out":2,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":19.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.473,"geometry_index":6905,"location":[8.44686,49.976638]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,259],"duration":3.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.658,"geometry_index":6910,"location":[8.439836,49.975591]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.438595,49.975441],"geometry_index":6912,"admin_index":5,"weight":4.955,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.842,"bearings":[80,260,277],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,261],"duration":0.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.527,"geometry_index":6915,"location":[8.436655,49.975234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.436448,49.975214],"geometry_index":6916,"admin_index":5,"weight":2.354,"is_urban":false,"turn_weight":1.3,"duration":1.049,"bearings":[70,81,261],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,263],"duration":7.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.543,"geometry_index":6917,"location":[8.436092,49.975178]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,265],"duration":38.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":39.17,"geometry_index":6921,"location":[8.43351,49.974975]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,272],"duration":6.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.65,"geometry_index":6931,"location":[8.42003,49.974839]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.417747,49.974891],"geometry_index":6932,"admin_index":5,"weight":9.094,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.113,"bearings":[92,271,283],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.41432,49.974924],"geometry_index":6934,"admin_index":5,"weight":1.146,"is_urban":false,"turn_weight":1,"duration":0.168,"bearings":[77,91,270],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":7.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.016,"geometry_index":6935,"location":[8.414263,49.974924]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":36.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":35.637,"geometry_index":6937,"location":[8.411597,49.974887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,262],"duration":0.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.531,"geometry_index":6946,"location":[8.397809,49.973831]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,262],"duration":10.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":10.459,"geometry_index":6947,"location":[8.397606,49.973813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,264],"duration":1.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":1.453,"geometry_index":6949,"location":[8.393562,49.973474]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":32.693,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":31.059,"geometry_index":6950,"location":[8.392997,49.973437]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,273],"duration":5.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":5.619,"geometry_index":6957,"location":[8.380586,49.973214]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.378341,49.973303],"geometry_index":6959,"admin_index":5,"weight":8.131,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.566,"bearings":[94,275,283],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[89,95,277],"duration":0.545,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":2,"weight":0.523,"geometry_index":6961,"location":[8.375101,49.973488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":7.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.871,"geometry_index":6962,"location":[8.374907,49.973503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,279],"duration":39.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":38.125,"geometry_index":6964,"location":[8.372364,49.97372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":43.123,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":43.123,"geometry_index":6972,"location":[8.35851,49.975831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"bearings":[123,302],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"geometry_index":6989,"location":[8.345589,49.981423]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 5 miles.","announcement":"Continue for 5 miles.","distanceAlongGeometry":8351.225},{"ssmlAnnouncement":"In 1 mile, Take exit 21.","announcement":"In 1 mile, Take exit 21.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 21.","announcement":"In a half mile, Take exit 21.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 21 onto A 63 toward Kaiserslautern, Ludwigshafen.","announcement":"Take exit 21 onto A 63 toward Kaiserslautern, Ludwigshafen.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.344174,49.981947],"geometry_index":6991,"admin_index":5,"weight":4.732,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.764,"bearings":[119,293,304],"out":1,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":0.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.414,"geometry_index":6996,"location":[8.342642,49.982312]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,283],"duration":19.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":19.787,"geometry_index":6997,"location":[8.342511,49.982334]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,244],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":6.457,"geometry_index":7011,"location":[8.336669,49.981949]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.334965,49.981334],"geometry_index":7014,"admin_index":5,"weight":12.572,"is_urban":false,"turn_weight":1,"duration":11.312,"bearings":[51,59,236],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.331868,49.979862],"geometry_index":7017,"admin_index":5,"weight":2.312,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.262,"bearings":[52,232,248],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":2.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":3.023,"geometry_index":7018,"location":[8.331291,49.979575]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.330545,49.979204],"geometry_index":7019,"admin_index":5,"weight":8.045,"is_urban":false,"turn_weight":1,"duration":6.893,"bearings":[32,52,231],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":2.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":2.432,"geometry_index":7021,"location":[8.328705,49.978261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":34.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":34.221,"geometry_index":7022,"location":[8.328073,49.977932]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":5.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.463,"geometry_index":7027,"location":[8.319065,49.973281]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":0.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.248,"geometry_index":7029,"location":[8.317621,49.972551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":7.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.861,"geometry_index":7030,"location":[8.317555,49.972518]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.315352,49.971569],"geometry_index":7034,"admin_index":6,"weight":1.82,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.828,"bearings":[60,242,259],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,243],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.699,"geometry_index":7035,"location":[8.314782,49.971377]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":1.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.742,"geometry_index":7037,"location":[8.313917,49.97111]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,249],"duration":1.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.471,"geometry_index":7038,"location":[8.313334,49.97095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":0.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.311,"geometry_index":7039,"location":[8.312844,49.970831]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.312744,49.970807],"geometry_index":7040,"admin_index":6,"weight":1.779,"is_urban":false,"turn_weight":1,"duration":0.787,"bearings":[52,70,250],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,252],"duration":1.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.553,"geometry_index":7041,"location":[8.31247,49.970744]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,255],"duration":7.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.889,"geometry_index":7042,"location":[8.311925,49.970631]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.309104,49.970267],"geometry_index":7047,"admin_index":6,"weight":5.668,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.676,"bearings":[82,264,284],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.307035,49.970197],"geometry_index":7051,"admin_index":6,"weight":8.314,"is_urban":false,"turn_weight":0.75,"duration":7.572,"bearings":[75,89,272],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,281],"duration":4.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.004,"geometry_index":7055,"location":[8.304439,49.970347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,286],"duration":0.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.762,"geometry_index":7057,"location":[8.303083,49.97052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,288],"duration":25.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.91,"geometry_index":7058,"location":[8.302826,49.970566]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,297],"duration":6.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.148,"geometry_index":7067,"location":[8.294762,49.97314]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.292549,49.973787],"geometry_index":7071,"admin_index":6,"weight":8.664,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.271,"bearings":[113,291,298],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,285],"duration":1.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.246,"geometry_index":7075,"location":[8.289843,49.974352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,283],"duration":11.146,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.705,"geometry_index":7076,"location":[8.289445,49.97442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,274],"duration":0.775,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.793,"geometry_index":7082,"location":[8.285903,49.974801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":9.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.801,"geometry_index":7083,"location":[8.285669,49.974811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,267],"duration":3.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.594,"geometry_index":7087,"location":[8.28274,49.974827]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":17.244,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.107,"geometry_index":7089,"location":[8.281672,49.97478]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.276376,49.974063],"geometry_index":7097,"admin_index":6,"weight":7.979,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":7.443,"bearings":[73,250,259],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[67,245],"duration":6.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":6.594,"geometry_index":7099,"location":[8.274216,49.973508]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[65,245],"duration":11.217,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":12.051,"geometry_index":7100,"location":[8.272465,49.972987]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":8.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":8.756,"geometry_index":7101,"location":[8.269355,49.972047]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":6.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":1,"weight":7.43,"geometry_index":7102,"location":[8.267068,49.971352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":11.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.756,"geometry_index":7103,"location":[8.264638,49.970624]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":6.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.031,"geometry_index":7104,"location":[8.260703,49.969439]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.258355,49.968714],"geometry_index":7105,"admin_index":6,"weight":8.889,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.473,"bearings":[64,245,262],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.256156,49.968052],"geometry_index":7106,"admin_index":6,"weight":1.283,"is_urban":false,"turn_weight":1,"duration":0.277,"bearings":[52,65,246],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.213,"geometry_index":7107,"location":[8.256084,49.968031]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":7.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.998,"geometry_index":7108,"location":[8.255749,49.967934]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":10.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.268,"geometry_index":7109,"location":[8.253898,49.967379]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.338,"geometry_index":7110,"location":[8.251477,49.966643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":0.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.428,"geometry_index":7111,"location":[8.251163,49.966547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":10.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.014,"geometry_index":7112,"location":[8.251057,49.966517]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,248],"duration":11.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.539,"geometry_index":7114,"location":[8.248591,49.965802]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":4.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.494,"geometry_index":7116,"location":[8.246345,49.965247]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.24545,49.96507],"geometry_index":7117,"admin_index":6,"weight":4.16,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.166,"bearings":[73,254,265],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,256],"duration":17.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.279,"geometry_index":7118,"location":[8.244748,49.964941]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,263],"duration":11.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.6,"geometry_index":7123,"location":[8.241801,49.964515]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,268],"duration":8.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.73,"geometry_index":7126,"location":[8.239791,49.96439]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[88,270],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7127,"location":[8.238434,49.964362]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Kaiserslautern"},{"type":"text","text":"/"},{"type":"text","text":"Ludwigshafen"}],"type":"off ramp","modifier":"right","text":"Kaiserslautern / Ludwigshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"21"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"63","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 63"}],"type":"off ramp","modifier":"right","text":"Exit 21 A 63"},"distanceAlongGeometry":8391.225},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Kaiserslautern"},{"type":"text","text":"/"},{"type":"text","text":"Ludwigshafen"}],"type":"off ramp","modifier":"right","text":"Kaiserslautern / Ludwigshafen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"21"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"63","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 63"}],"type":"off ramp","modifier":"right","text":"Exit 21 A 63"},"distanceAlongGeometry":1609.344}],"destinations":"A 60: Koblenz, Bingen, Mainz, Ginsheim-Gustavburg","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 60 toward Koblenz/Bingen/Mainz/Ginsheim-Gustavburg.","modifier":"slight left","bearing_after":293,"bearing_before":299,"location":[8.344174,49.981947]},"speedLimitSign":"vienna","name":"","weight_typical":399.076,"duration_typical":383.961,"duration":383.961,"distance":8391.225,"driving_side":"right","weight":399.076,"mode":"driving","ref":"A 60","geometry":"u~si~A{eh|NkBfKgFnYoCtQ_DjUuA|Nk@dGwB`Y}AjYaApYe@tYKvYLvYj@rYdApY~AhYzB`YrCvXnDjXhEzW`FjWrGfZvHzY`Sjs@ba@hlAvQff@bf@~kA|P`c@dVrm@jb@|cApV`m@pSnf@ju@`hBlk@buAvm@nzAviAjpCjeA|eCzPba@vZbw@`AbCfX~s@dL`^bGzRvKv`@~Jrb@bLtg@pBjL~Hlc@lFr]n@fE|BbP`F`a@tCtYrEfl@rCxc@vBt_@`Bza@v@lXp@v^Xra@Fnd@Wde@_Ark@kAfb@gCdk@qEfu@gCn]{A`OwKv|@gI~j@qKpm@wMfo@uXthAa]hoAeXxbAcLlc@oOdl@yGdZiIt_@eJlg@cI~d@iHre@eIpm@kF`d@mGzm@gCzWiFvq@sCvc@uBl_@yB`j@MbD}Bft@SrMWdRm@zx@@vz@b@fm@`@za@z@z^~Bnx@fC`l@lCbg@~Enp@tDra@~Dlc@dGnh@fDfY~OzeAtPb_Ap_@llBvy@jaElj@|mCnl@zvC`iA|tFhl@vqCjh@lhCh@nC`E|Sta@trB~l@hvC~DrRz@rEbV`mApT`kAfQncAlOzfA`J|v@`Gzj@vGzs@tDjh@tCb\\dCxZhB~_@zApb@zAdl@`Azk@v@xsAApUGzQ"},{"ref":"A 63","mode":"driving","weight":1916.365,"distance":57573.164,"geometry":"}sqh~AukxuNyBpRuBxIqA~BqBdCkCp@kC]aCmAcDgE}CwGyCaJ{BgIiCiMyDeXcGeb@s@{FOgFBaFf@oErA_FhBaDvBkBrBy@vCG~Dh@bH~B`|@nkAzv@l_Axh@bq@pGnIvbAjqA|[pa@|{@rgArf@pm@b_@|b@n^|`@|j@lm@ny@~y@neArcAbOhOxqAtqAnnAdtAbj@xq@hTvXJLn]vf@xU|]~\\pj@d]tn@t^~t@b[ns@jJvVdKfYbU~q@~]|oA|Qvu@~F~WvLxi@dJhb@jTxbAtTjbAvIt^tXndAfW~w@d_@xaAvV~h@dZ~i@bf@|u@`[ra@j]r`@fSxRrW~Tfm@rc@h\\dR`h@nVjf@hQdf@tMbe@tJxu@~L~mAjRf[pF~UfFtr@pQlr@pVl}@t`@h~@jd@|yBffA`eArf@riAxf@fjBhv@vf@vSzy@t[jp@`Vbw@hWrFpBdq@hTjr@rSdy@rTf}@bT|r@|Nxy@nPzqA`Tv`@rFl]rErH`A`{@hLtL~A~NdBpNhBbt@lJnsBtVvV~Cz\\nE`a@xEhmAtQpr@|Ktt@~Mld@fIdgA`WfrA`^pu@pTd\\vK~b@lOb`@jN~]|Mj\\|MtZxM`^zN|^tQ|eAhi@pfAfl@h]nRnfA|p@x{AfdAlsAjbA|FtEdi@db@lj@fd@hm@|g@dl@~g@|f@zc@pdAx`Al{@|y@vaAlaA~`ApbAfmCdsCzhF`yF|yAp`BxyAl`BpoAluA~oAvuAlJhKrXdZbi@zk@vh@hj@tsAtsA`r@~o@lp@dm@`\\bYdj@~e@~g@|b@t\\xW~a@t\\di@|`@he@p]nZhT~QnMpGhEfbBhhAxi@v]zy@~f@rs@ja@zp@r^v`Arf@jaAle@rm@vYphB|u@dx@b[|bA`_@ny@hYrvArc@`cCxo@nyAb]blBp_@jx@dMfq@pKdb@xGr}@zKbwAdPjCZvx@`Hp`@tCn}AzJpdC|Ins@rAfnArAzcCe@liDiH`g@oArbBcErIStbBwE|gBoF|jEaLxhEqK~gA}C~z@uBvfAuBzi@{@bw@m@b{@Ona@Src@Zr{@jB|z@nCpt@|DxaAtI|_AzLx_AjPpz@|QjdAj[d]vKzc@|Plc@zQtz@ha@t`@xS|x@rf@vU|Nff@f]tb@f\\hd@|^|j@lg@tObOph@~h@x`@jc@d_@fc@|w@~cA|h@nv@lg@pv@bZdg@hd@tw@bi@pcA|e@r`Az_A~tB|g@tkAbd@tgAp]||@r`@bdAhXfq@f|@z}BxvBdyFxj@dyA`HlR`Unm@pFpNrEbLtJjWxVfp@fEdLdRvf@`Tfk@dHjRhMb]be@rmAj{@pzB|}@lzB|x@vkBv`@|y@f^hr@li@rbAvj@~_Apf@du@fe@~p@vc@hl@zh@|o@~m@xr@ll@dm@nn@pl@z`@r]hY|Uz\\|Wrb@fZth@`^rd@hYpYvPzq@x]ls@x\\pf@nSfs@vWnc@nN|lAp]zvAh]rq@jNxuAnVtdBdYxf@|H`h@dInmBnZlkBtYt{AbVljAnQbnCbb@pbAtOnEn@rdAjOztCzd@nrDnk@p_Fnx@reAxRxq@xN`GnAdf@rLbl@nO|eAf\\LDrf@|Ppv@fZbf@nSrc@~Sjo@h\\~nAxr@po@z`@zd@l[vh@b`@pu@dl@fvAtnAbf@he@|s@vt@tMzNzf@vi@jh@nl@lWl[p~@fjAvu@`bA`m@zy@ft@ldArq@haAfeA|xAblAbdBttAdmB`[fc@rcAzxAbhAb~Av{@dnAjbAfwAzRdXxs@xbAdt@hdAxhAx~Ad}@hpArVb]bt@~cAvrAnkBjaBt~BxkAzbBbeAtyAhnA~fB|~@|pAtpAbiBpPtTf{@xgAlSvVvp@tu@zcAvcAnfAt~@~b@`\\db@|Yfb@|Wx`@hVnkArm@bw@x\\hx@v\\nt@bXjs@tSlPfEfv@vRbi@hK`_@nGjXpD|gAtMh^bDtWtBd]jBt_@xAxe@~Ath@b@xr@FlHEbn@cAb`AuDngBsOrmAiRfmAyUteAoXzcA{ZjmAab@roAsf@naBgr@t_Bis@|y@y^`d@mR`cBcr@pw@iZvt@oX|nAg`@ro@sQfj@kMff@cKnp@eLvvBkWhk@uElu@sDtmA{Ar`@G~m@j@ri@pAhk@zBzj@~Efp@fGfu@vIbv@hMr}@hRpfAxYjgAl\\tp@rV|x@f]nx@|`@xv@lb@rk@l]tn@~a@bj@|_@~m@nf@zj@xe@jj@hh@tr@`r@vu@lz@xaA`mAn^lf@~d@jp@`z@bqA|s@xoAl[~k@v[vn@|k@hnAz`@v}@p\\dx@`^n}@d\\h{@tc@`oAte@rvAVt@d[h`Ahc@~vAzj@plBjv@noCr|@r`D|BrI`l@lxBpFfSd_AjlDpc@raBjeA~{Dnu@ppCxr@jjCp[pkAnYjgAlp@ddCfU`z@lPvm@nY~fAbk@|tB~YhfAz]zrAl\\`oAhg@rkBl`@pzAr[npAvVbiAfVxmA|UrwAl]phC|BfR~Hvr@vLriAhG`n@tCj[pQtcB~QzaBxKr|@rOfhArXpbBb\\haB`Tv~@lN|j@pQ`q@`N|e@pOff@~Zf~@|Wnt@r]b{@re@dfA~e@xcAxWji@vYdl@tm@nnA~_@jx@b_@px@hZds@`[`x@v[t}@dZ`_AtXd`AhOnk@fVnbA~XprAzXn|AzL~w@dLfy@jIfo@xKzcA~O|fBbNpgBhMfhBdP`wBbKbnA~Hzy@~H`v@vGtj@vI~n@|Krt@nNdw@rLpk@jB~I|VzaAfPjk@rZx}@d[vw@r[tq@nPz\\lOpX~[|h@`b@tm@dh@~n@ro@jp@br@pk@df@~[lj@`[pTzKra@|P`\\nLjq@fUjf@|Ohx@bYdZfMhb@|Rrl@h]jY`Sd]nWhZ`Wh[h[~_@db@hUzXbP~Tb^ji@xM|Tf[tj@h^vu@~Xbr@`Zny@|S`s@pVd_ApVrhAjJdg@vHje@zJvr@~KtaAlHz|@rGz~@bPpuCzHvkAjCz[zHvu@tKb{@dPv`ArQrz@jJd_@dN~e@zZb`A","duration":2085.375,"driving_side":"right","duration_typical":2085.375,"weight_typical":1916.365,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 21 onto A 63 toward Kaiserslautern/Ludwigshafen/Alzey.","modifier":"slight right","bearing_after":287,"bearing_before":271,"location":[8.237771,49.964367]},"speedLimitUnit":"km/h","destinations":"A 63: Kaiserslautern, Ludwigshafen, Alzey","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Winnweiler"},{"type":"text","text":"/"},{"type":"text","text":"Rockenhausen"}],"type":"off ramp","modifier":"right","text":"Winnweiler / Rockenhausen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"13"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"}],"type":"off ramp","modifier":"right","text":"Exit 13 B 48"},"distanceAlongGeometry":57573.164},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Winnweiler"},{"type":"text","text":"/"},{"type":"text","text":"Rockenhausen"}],"type":"off ramp","modifier":"right","text":"Winnweiler / Rockenhausen"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"13"},{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"}],"type":"off ramp","modifier":"right","text":"Exit 13 B 48"},"distanceAlongGeometry":3218.688}],"exits":"21","voiceInstructions":[{"ssmlAnnouncement":"Continue for 36 miles.","announcement":"Continue for 36 miles.","distanceAlongGeometry":57559.832},{"ssmlAnnouncement":"In 2 miles, Take exit 13.","announcement":"In 2 miles, Take exit 13.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 13.","announcement":"In a half mile, Take exit 13.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 13 onto B 48 toward Winnweiler, Rockenhausen. Then Turn right toward Bad Bergzabern.","announcement":"Take exit 13 onto B 48 toward Winnweiler, Rockenhausen. Then Turn right toward Bad Bergzabern.","distanceAlongGeometry":247.917}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[8.237771,49.964367],"geometry_index":7129,"admin_index":6,"weight":40.096,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":40.115,"bearings":[91,272,287],"out":2,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.239613,49.964863],"geometry_index":7154,"admin_index":6,"weight":16.988,"is_urban":false,"turn_weight":6.75,"duration":10.543,"bearings":[13,38,219],"out":2,"in":0,"turn_duration":0.042,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":16.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.941,"geometry_index":7155,"location":[8.238389,49.963886]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.236556,49.962323],"geometry_index":7157,"admin_index":6,"weight":1.793,"is_urban":false,"turn_weight":1,"duration":0.82,"bearings":[20,38,218],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,218],"duration":9.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.109,"geometry_index":7158,"location":[8.236388,49.962186]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":31.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":29.762,"geometry_index":7160,"location":[8.234517,49.960639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,213],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.25,"geometry_index":7167,"location":[8.228707,49.955245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":33.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":31.771,"geometry_index":7168,"location":[8.228446,49.954987]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,233],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.162,"geometry_index":7179,"location":[8.220233,49.94858]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":7.775,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.387,"geometry_index":7180,"location":[8.219853,49.948398]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.217322,49.947353],"geometry_index":7183,"admin_index":6,"weight":3.707,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.912,"bearings":[59,242,255],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,243],"duration":3.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.6,"geometry_index":7185,"location":[8.216046,49.946922]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.214796,49.946523],"geometry_index":7187,"admin_index":6,"weight":6.744,"is_urban":false,"turn_weight":1,"duration":6.055,"bearings":[49,64,244],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.361,"geometry_index":7189,"location":[8.212633,49.945834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":5.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.645,"geometry_index":7190,"location":[8.212126,49.945662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,233],"duration":32.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":29.68,"geometry_index":7192,"location":[8.210102,49.944863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":67.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":62.074,"geometry_index":7205,"location":[8.203236,49.938131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":0.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.469,"geometry_index":7222,"location":[8.195622,49.921634]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":26.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.168,"geometry_index":7223,"location":[8.195565,49.921512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,188],"duration":2.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.025,"geometry_index":7230,"location":[8.193338,49.914862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.826,"geometry_index":7231,"location":[8.193216,49.914322]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.576,"geometry_index":7232,"location":[8.19311,49.913835]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":3.889,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.693,"geometry_index":7233,"location":[8.193077,49.913681]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.192864,49.91272],"geometry_index":7234,"admin_index":6,"weight":5.936,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.254,"bearings":[8,188,204],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[8,187,352],"duration":7.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.939,"geometry_index":7238,"location":[8.192529,49.911146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":1.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.428,"geometry_index":7239,"location":[8.19215,49.909282]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.793,"geometry_index":7240,"location":[8.19207,49.908902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":44.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":42.299,"geometry_index":7241,"location":[8.191966,49.908424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":9.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.658,"geometry_index":7257,"location":[8.187739,49.896993]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":6.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.4,"geometry_index":7259,"location":[8.186338,49.894713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":6.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.756,"geometry_index":7261,"location":[8.185227,49.893084]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.184119,49.891599],"geometry_index":7262,"admin_index":6,"weight":5.369,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.973,"bearings":[26,207,225],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[13,27,208],"duration":6.521,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":5.863,"geometry_index":7263,"location":[8.183041,49.890248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,210],"duration":81.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":73.439,"geometry_index":7266,"location":[8.181775,49.888751]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.801,"geometry_index":7279,"location":[8.163471,49.870933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,214],"duration":43.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":40.186,"geometry_index":7280,"location":[8.163274,49.87075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.539,"geometry_index":7295,"location":[8.154456,49.861156]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":64.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":57.889,"geometry_index":7296,"location":[8.154355,49.861019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":5.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.092,"geometry_index":7310,"location":[8.145687,49.845162]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.145205,49.843714],"geometry_index":7311,"admin_index":6,"weight":6.48,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.221,"bearings":[12,191,206],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.144684,49.841968],"geometry_index":7312,"admin_index":6,"weight":5.836,"is_urban":false,"turn_weight":1,"duration":5.393,"bearings":[11,189,353],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":53.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":46.936,"geometry_index":7314,"location":[8.144256,49.840246]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":0.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.576,"geometry_index":7328,"location":[8.143257,49.822895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,358],"duration":55.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":48.178,"geometry_index":7329,"location":[8.143267,49.822725]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":54.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":47.582,"geometry_index":7336,"location":[8.144102,49.809683]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":6.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.035,"geometry_index":7351,"location":[8.142019,49.796932]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.141168,49.795394],"geometry_index":7353,"admin_index":6,"weight":8.199,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.379,"bearings":[20,202,225],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[0,24,204],"duration":1.893,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":1.65,"geometry_index":7355,"location":[8.140201,49.793928]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.625,"geometry_index":7356,"location":[8.139946,49.793564]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,209],"duration":76.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":69.082,"geometry_index":7358,"location":[8.138994,49.792365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":7.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.215,"geometry_index":7377,"location":[8.121987,49.780801]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.119957,49.779821],"geometry_index":7378,"admin_index":6,"weight":15.895,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.191,"bearings":[53,233,246],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":6.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.771,"geometry_index":7379,"location":[8.115954,49.777904]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.059,"geometry_index":7380,"location":[8.114511,49.777203]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.498,"geometry_index":7381,"location":[8.1142,49.777058]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.113456,49.776705],"geometry_index":7382,"admin_index":6,"weight":0.779,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.85,"bearings":[54,233,253],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":0.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.688,"geometry_index":7383,"location":[8.113207,49.776584]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":4.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.756,"geometry_index":7384,"location":[8.112997,49.776478]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.111819,49.77591],"geometry_index":7386,"admin_index":6,"weight":1.658,"is_urban":false,"turn_weight":1,"duration":0.721,"bearings":[35,53,234],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":2.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.977,"geometry_index":7387,"location":[8.111608,49.77581]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":2.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.119,"geometry_index":7388,"location":[8.110972,49.775503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":0.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.914,"geometry_index":7389,"location":[8.110264,49.775166]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":1.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.404,"geometry_index":7390,"location":[8.109954,49.775019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":16.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.41,"geometry_index":7391,"location":[8.109472,49.77479]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.104262,49.772207],"geometry_index":7394,"admin_index":6,"weight":6.238,"is_urban":false,"turn_weight":1,"duration":5.684,"bearings":[38,52,230],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":93.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":86.709,"geometry_index":7395,"location":[8.102522,49.77128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":5.104,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.721,"geometry_index":7423,"location":[8.086313,49.750229]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.085991,49.748935],"geometry_index":7425,"admin_index":6,"weight":10.117,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.945,"bearings":[9,189,200],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[9,189,348],"duration":5.844,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.398,"geometry_index":7427,"location":[8.085124,49.745432]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":4.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.396,"geometry_index":7428,"location":[8.084754,49.743949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":9.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.342,"geometry_index":7429,"location":[8.084458,49.742742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":4.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.553,"geometry_index":7430,"location":[8.083896,49.740452]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":41.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":37.193,"geometry_index":7432,"location":[8.083605,49.739267]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,190],"duration":6.092,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.482,"geometry_index":7436,"location":[8.081105,49.72929]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,192],"duration":34.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":30.705,"geometry_index":7438,"location":[8.080535,49.727347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,211],"duration":4.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.486,"geometry_index":7453,"location":[8.074607,49.717014]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.073332,49.715618],"geometry_index":7454,"admin_index":6,"weight":7.434,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.268,"bearings":[31,212,232],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[13,33,215],"duration":1.449,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":1.297,"geometry_index":7456,"location":[8.071859,49.714145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":7.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.168,"geometry_index":7457,"location":[8.071605,49.71391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,217],"duration":85.725,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":75.01,"geometry_index":7459,"location":[8.070193,49.71261]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,219],"duration":2.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.789,"geometry_index":7473,"location":[8.053308,49.699431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":54.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":47.439,"geometry_index":7474,"location":[8.052905,49.699113]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":6.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.828,"geometry_index":7484,"location":[8.039463,49.688748]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.037799,49.687479],"geometry_index":7485,"admin_index":6,"weight":11.775,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.092,"bearings":[40,220,232],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.034443,49.684868],"geometry_index":7488,"admin_index":6,"weight":6.67,"is_urban":false,"turn_weight":1,"duration":6.318,"bearings":[25,39,218],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,215],"duration":43.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":39.473,"geometry_index":7490,"location":[8.032898,49.683577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":6.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.668,"geometry_index":7503,"location":[8.025704,49.673279]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.025191,49.671721],"geometry_index":7505,"admin_index":6,"weight":8.119,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.564,"bearings":[11,190,206],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.024731,49.669635],"geometry_index":7508,"admin_index":6,"weight":3.129,"is_urban":false,"turn_weight":1,"duration":2.26,"bearings":[7,186,353],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":1.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.602,"geometry_index":7509,"location":[8.024649,49.669134]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,184],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.793,"geometry_index":7510,"location":[8.02459,49.668739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,183],"duration":10.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.762,"geometry_index":7511,"location":[8.024536,49.668256]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":0.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.51,"geometry_index":7515,"location":[8.024421,49.665616]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,359],"duration":215.693,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":199.518,"geometry_index":7516,"location":[8.024424,49.665465]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,231],"duration":2.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.617,"geometry_index":7573,"location":[8.015539,49.612833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":26.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":23.914,"geometry_index":7574,"location":[8.014624,49.61236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,239],"duration":6.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.986,"geometry_index":7582,"location":[8.005743,49.608444]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.003431,49.607558],"geometry_index":7583,"admin_index":6,"weight":6.998,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.783,"bearings":[59,240,260],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.000845,49.606572],"geometry_index":7584,"admin_index":6,"weight":1.445,"is_urban":false,"turn_weight":1,"duration":0.516,"bearings":[44,60,240],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":5.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.146,"geometry_index":7585,"location":[8.000675,49.606509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.857,"geometry_index":7586,"location":[7.998732,49.605788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":48.303,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":43.455,"geometry_index":7587,"location":[7.998408,49.605667]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":2.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.461,"geometry_index":7595,"location":[7.981959,49.599556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":34.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":31.186,"geometry_index":7596,"location":[7.981014,49.5992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,244],"duration":6.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.074,"geometry_index":7605,"location":[7.968956,49.594756]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.966509,49.594004],"geometry_index":7607,"admin_index":6,"weight":8.83,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.82,"bearings":[66,248,267],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.96289,49.59315],"geometry_index":7609,"admin_index":6,"weight":1.746,"is_urban":false,"turn_weight":1,"duration":0.836,"bearings":[55,71,252],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":5.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.924,"geometry_index":7610,"location":[7.962582,49.593087]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,255],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.814,"geometry_index":7612,"location":[7.96056,49.592707]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,256],"duration":1.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.125,"geometry_index":7613,"location":[7.959807,49.592574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,254],"duration":162.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":146.293,"geometry_index":7614,"location":[7.959353,49.592499]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,213],"duration":7.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.543,"geometry_index":7671,"location":[7.902597,49.572704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,206],"duration":31.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.938,"geometry_index":7673,"location":[7.901094,49.571108]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":1.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.797,"geometry_index":7686,"location":[7.896682,49.563434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,213],"duration":24.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":22.094,"geometry_index":7687,"location":[7.896297,49.562997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,240],"duration":9.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.918,"geometry_index":7698,"location":[7.889324,49.558513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,251],"duration":31.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":28.303,"geometry_index":7702,"location":[7.885862,49.557421]},{"bearings":[64,241],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7713,"location":[7.874012,49.555298]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right toward Bad Bergzabern, Enkenbach-Alsenborn.","announcement":"Turn right toward Bad Bergzabern, Enkenbach-Alsenborn.","distanceAlongGeometry":168.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[7.871831,49.554427],"geometry_index":7716,"admin_index":6,"weight":8.527,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":9.24,"bearings":[57,234,254],"out":2,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true,true],"in":0,"bearings":[137,170,343],"duration":3.949,"turn_duration":0.042,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"weight":3.613,"geometry_index":7722,"location":[7.870538,49.554603]},{"bearings":[163,341,360],"entry":[false,false,true],"turn_weight":0.75,"turn_duration":0.022,"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"geometry_index":7723,"location":[7.870336,49.555043]}],"exits":"13","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bad Bergzabern"},{"type":"text","text":"/"},{"type":"text","text":"Enkenbach-Alsenborn"}],"type":"turn","modifier":"right","text":"Bad Bergzabern / Enkenbach-Alsenborn"},"distanceAlongGeometry":209.428}],"destinations":"B 48: Winnweiler, Rockenhausen, Enkenbach-Alsenborn","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take exit 13 onto B 48 toward Winnweiler/Rockenhausen/Enkenbach-Alsenborn.","modifier":"slight right","bearing_after":254,"bearing_before":237,"location":[7.871831,49.554427]},"speedLimitSign":"vienna","name":"","weight_typical":23.922,"duration_typical":25.137,"duration":25.137,"distance":209.428,"driving_side":"right","weight":23.922,"mode":"driving","geometry":"u~po}Amtm_NvBjR|@tOQbKyAlIsCzIuGhJoZrK}DZcBEqBWaC}@}EmBoDW"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 5 miles.","announcement":"Continue for 5 miles.","distanceAlongGeometry":7605.053},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward B 48.","announcement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward B 48.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 3rd exit toward B 48, A 6.","announcement":"Enter the roundabout and take the 3rd exit toward B 48, A 6.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false,true,true],"in":2,"bearings":[18,117,192,220,296],"duration":8.703,"turn_weight":15,"turn_duration":4.001,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":19.35,"geometry_index":7729,"location":[7.870435,49.555509]},{"entry":[true,false],"in":1,"bearings":[122,302],"duration":2.496,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.309,"geometry_index":7733,"location":[7.87142,49.555154]},{"entry":[true,false],"in":1,"bearings":[127,306],"duration":1.277,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.182,"geometry_index":7736,"location":[7.871917,49.554937]},{"entry":[true,false],"in":1,"bearings":[130,307],"duration":3.234,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.992,"geometry_index":7737,"location":[7.872159,49.554818]},{"entry":[true,false],"in":1,"bearings":[136,310],"duration":7.057,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.527,"geometry_index":7738,"location":[7.872812,49.554462]},{"entry":[true,false],"in":1,"bearings":[146,320],"duration":2.016,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.865,"geometry_index":7741,"location":[7.873714,49.55381]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[146,326],"duration":3.889,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.596,"geometry_index":7742,"location":[7.87393,49.553602]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.874329,49.553192],"geometry_index":7744,"admin_index":6,"weight":2.912,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.008,"turn_weight":1,"duration":2.074,"bearings":[52,151,330],"out":1,"in":2,"entry":[true,true,false]},{"entry":[true,true,false],"in":2,"bearings":[7,154,332],"duration":0.883,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":0.811,"geometry_index":7746,"location":[7.874539,49.552945]},{"entry":[true,false],"in":1,"bearings":[156,334],"duration":3.795,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.51,"geometry_index":7747,"location":[7.874644,49.552803]},{"entry":[true,false],"in":1,"bearings":[166,341],"duration":6.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":5.43,"geometry_index":7749,"location":[7.875032,49.552147]},{"entry":[true,false],"in":1,"bearings":[169,349],"duration":6.811,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.129,"geometry_index":7751,"location":[7.8754,49.551059]},{"entry":[true,false],"in":1,"bearings":[158,345],"duration":30.145,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":27.102,"geometry_index":7755,"location":[7.875843,49.549831]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":4.191,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.766,"geometry_index":7771,"location":[7.880512,49.545327]},{"entry":[false,true],"in":0,"bearings":[0,184],"duration":3.551,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.195,"geometry_index":7773,"location":[7.880543,49.54456]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.880471,49.543905],"geometry_index":7774,"admin_index":6,"weight":2.32,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.007,"turn_weight":0.5,"duration":2.029,"bearings":[4,184],"out":1,"in":0,"entry":[false,true]},{"entry":[false,true],"in":0,"bearings":[4,183],"duration":5.869,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.281,"geometry_index":7775,"location":[7.880428,49.54354]},{"entry":[true,false],"in":1,"bearings":[169,356],"duration":10.484,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":9.41,"geometry_index":7778,"location":[7.880451,49.542469]},{"entry":[true,false],"in":1,"bearings":[156,335],"duration":8.334,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.5,"geometry_index":7781,"location":[7.881407,49.540676]},{"entry":[false,true],"in":0,"bearings":[0,189],"duration":2.959,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":2.662,"geometry_index":7786,"location":[7.881899,49.539203]},{"entry":[false,true],"in":0,"bearings":[16,205],"duration":8.967,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.057,"geometry_index":7788,"location":[7.881714,49.538676]},{"entry":[false,true],"in":0,"bearings":[6,177],"duration":5.727,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.123,"geometry_index":7794,"location":[7.880756,49.537166]},{"entry":[true,false],"in":1,"bearings":[153,333],"duration":19.752,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":17.775,"geometry_index":7797,"location":[7.881141,49.536159]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":20.635,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":18.564,"geometry_index":7805,"location":[7.883119,49.532768]},{"entry":[true,false],"in":1,"bearings":[148,328],"duration":2.627,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.365,"geometry_index":7811,"location":[7.886293,49.529591]},{"entry":[false,true,false],"in":2,"bearings":[51,150,328],"duration":3.414,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.064,"geometry_index":7812,"location":[7.886685,49.529176]},{"entry":[false,true,false,false],"in":3,"bearings":[66,150,231,330],"duration":1.127,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.008,"geometry_index":7814,"location":[7.887172,49.528634]},{"entry":[true,true,false],"in":2,"bearings":[147,234,330],"duration":3.879,"turn_weight":0.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.221,"geometry_index":7815,"location":[7.887333,49.528455]},{"entry":[true,false],"in":1,"bearings":[145,327],"duration":1.156,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.041,"geometry_index":7816,"location":[7.887782,49.528006]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":4.822,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.34,"geometry_index":7817,"location":[7.887925,49.527873]},{"entry":[true,false],"in":1,"bearings":[147,325],"duration":12.248,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":11.016,"geometry_index":7818,"location":[7.888517,49.527319]},{"entry":[true,false],"in":1,"bearings":[152,338],"duration":2.713,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.443,"geometry_index":7825,"location":[7.890234,49.525704]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.890551,49.52531],"geometry_index":7826,"admin_index":6,"weight":1.508,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.03,"turn_weight":0.5,"duration":1.148,"bearings":[62,145,332],"out":1,"in":2,"entry":[true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[46,145,234,325],"duration":4.191,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.766,"geometry_index":7827,"location":[7.890736,49.525138]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":18.486,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":16.639,"geometry_index":7829,"location":[7.891421,49.524506]},{"entry":[false,true],"in":0,"bearings":[20,199],"duration":13.816,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":12.436,"geometry_index":7837,"location":[7.891293,49.521248]},{"entry":[false,true],"in":0,"bearings":[12,186],"duration":12.436,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":11.164,"geometry_index":7842,"location":[7.89047,49.518759]},{"entry":[false,true],"in":0,"bearings":[4,175],"duration":11.955,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":10.727,"geometry_index":7848,"location":[7.890482,49.516477]},{"entry":[false,true],"in":0,"bearings":[11,191],"duration":4.184,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.766,"geometry_index":7853,"location":[7.890477,49.514287]},{"entry":[false,true],"in":0,"bearings":[11,191],"duration":22.482,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":20.229,"geometry_index":7854,"location":[7.890248,49.513533]},{"entry":[true,false],"in":1,"bearings":[164,342],"duration":3.016,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.715,"geometry_index":7860,"location":[7.891842,49.509679]},{"entry":[true,false],"in":1,"bearings":[173,350],"duration":1.217,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.094,"geometry_index":7862,"location":[7.892021,49.509136]},{"entry":[true,false],"in":1,"bearings":[174,353],"duration":0.973,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.875,"geometry_index":7863,"location":[7.89206,49.508915]},{"entry":[true,false],"in":1,"bearings":[173,354],"duration":11.451,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":10.301,"geometry_index":7864,"location":[7.892091,49.508732]},{"entry":[true,false],"in":1,"bearings":[168,348],"duration":5.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.6,"geometry_index":7868,"location":[7.892525,49.506837]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":0.059,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.053,"geometry_index":7870,"location":[7.892869,49.506077]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":2.09,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.881,"geometry_index":7871,"location":[7.892873,49.506069]},{"entry":[true,false],"in":1,"bearings":[161,342],"duration":1.242,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.117,"geometry_index":7872,"location":[7.893032,49.505758]},{"entry":[true,false],"in":1,"bearings":[163,341],"duration":2.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.16,"geometry_index":7873,"location":[7.893122,49.505586]},{"entry":[true,false],"in":1,"bearings":[164,343],"duration":1.59,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.414,"geometry_index":7874,"location":[7.893279,49.505256]},{"entry":[true,false],"in":1,"bearings":[167,345],"duration":0.785,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.707,"geometry_index":7876,"location":[7.893368,49.505045]},{"entry":[true,false],"in":1,"bearings":[167,347],"duration":1.113,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.002,"geometry_index":7877,"location":[7.893406,49.504938]},{"entry":[true,false],"in":1,"bearings":[169,347],"duration":2.094,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.885,"geometry_index":7878,"location":[7.893459,49.504786]},{"entry":[true,false],"in":1,"bearings":[174,350],"duration":1.121,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.002,"geometry_index":7880,"location":[7.893539,49.504506]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":0.654,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.59,"geometry_index":7881,"location":[7.893565,49.50435]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[174,354],"duration":1.963,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.768,"geometry_index":7882,"location":[7.89358,49.504264]},{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[7.893626,49.503993],"geometry_index":7883,"admin_index":6,"weight":5,"is_urban":false,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.009,"turn_weight":1,"duration":4.453,"bearings":[79,177,263,354],"out":1,"in":3,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[190,357],"duration":2.307,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.133,"geometry_index":7884,"location":[7.893675,49.503282]},{"entry":[false,true],"in":0,"bearings":[11,196],"duration":7.426,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":6.867,"geometry_index":7886,"location":[7.893576,49.502923]},{"entry":[false,true],"in":0,"bearings":[10,190],"duration":11.426,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":10.562,"geometry_index":7889,"location":[7.893092,49.501777]},{"entry":[true,false],"in":1,"bearings":[179,359],"duration":0.676,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.625,"geometry_index":7893,"location":[7.892804,49.499965]},{"entry":[true,false],"in":1,"bearings":[178,359],"duration":9.225,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":8.533,"geometry_index":7894,"location":[7.892806,49.499857]},{"entry":[true,false],"in":1,"bearings":[162,348],"duration":10.49,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":9.678,"geometry_index":7897,"location":[7.893139,49.498403]},{"entry":[false,true,false],"in":2,"bearings":[139,159,328],"duration":1.023,"turn_weight":1.5,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":2.432,"geometry_index":7900,"location":[7.894195,49.496891]},{"entry":[true,false],"in":1,"bearings":[149,339],"duration":2.25,"turn_duration":0.038,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.045,"geometry_index":7901,"location":[7.894263,49.496776]},{"entry":[true,true,false,true,false,true],"in":4,"bearings":[61,153,220,265,320,336],"duration":3.752,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.455,"geometry_index":7903,"location":[7.894603,49.496466]},{"entry":[false,true,false],"in":2,"bearings":[151,163,336],"duration":2.572,"turn_weight":1,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.369,"geometry_index":7905,"location":[7.894932,49.496019]},{"entry":[true,false,true],"in":1,"bearings":[162,334,346],"duration":1.234,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.131,"geometry_index":7908,"location":[7.895117,49.495716]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":3.748,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.461,"geometry_index":7909,"location":[7.895194,49.495563]},{"entry":[true,false],"in":1,"bearings":[162,342],"duration":1.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.109,"geometry_index":7910,"location":[7.895423,49.495106]},{"entry":[true,false],"in":1,"bearings":[167,342],"duration":13.619,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":12.588,"geometry_index":7911,"location":[7.895497,49.494958]},{"entry":[true,false],"in":1,"bearings":[171,352],"duration":0.596,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.533,"geometry_index":7915,"location":[7.895932,49.493287]},{"entry":[true,false],"in":1,"bearings":[170,351],"duration":0.668,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.6,"geometry_index":7916,"location":[7.895948,49.493219]},{"entry":[false,true,false],"in":2,"bearings":[151,169,350],"duration":3.621,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.33,"geometry_index":7917,"location":[7.89597,49.493137]},{"bearings":[166,346],"entry":[true,false],"in":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":7919,"location":[7.896048,49.492917]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":222,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":7628.386}],"destinations":"Bad Bergzabern, Enkenbach-Alsenborn, Münchweiler","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right toward Bad Bergzabern/Enkenbach-Alsenborn/Münchweiler.","modifier":"right","bearing_after":117,"bearing_before":12,"location":[7.870435,49.555509]},"speedLimitSign":"vienna","name":"","weight_typical":390.576,"duration_typical":410.797,"duration":410.797,"distance":7628.386,"driving_side":"right","weight":390.576,"mode":"driving","ref":"B 48","geometry":"ibso}Ae}j_Nj@oC|EiSxEaR`FuPrDiMnDyJlA}ClFcNfUyg@~HaNlKqPhQwV~KoLbPwPnGeF|DmDnHuFzGqEhNoItXwLla@}Kp`@aI`QmDrZuH|TsGbH}BhO}HhKoHbIcIzTyUzR_ZrOwZx`@k|@dI{OfUg_@bJ_LvKkKxMyKfVoNrTcJvVsFxIw@pHw@je@E|g@nCxUtA|F\\v]Pf[}A|[kGf^mMzr@}c@jHsE~ZwMpXqF`YqA`BVvNvBdPxFzP~KxCnCvY`X|JfFnOnFnOpA`ZmAbXiLvIiGlMeJpe@_]z^}XrTsKrUkHpd@gKl\\cLxNcHrL_Gxa@sXjYwWdXg[|r@sbArm@ck@|XoWhSgQpLeKdJaI`[a[hG}Gra@_d@tHwHxLsP|JsOtL}RvLkO`J}H~YaPrWyRvIqJzAeBrc@sf@zGqHzM_LxLiFbLcCpjAlAnL~Bnc@|RjZrNbGrCbKzChe@pIzT~DbjAjXbMjAlPYbd@oCb]}@xT|@~TdAb\\cCzx@qEdW|CbObBpH|Abn@hMzm@tMrX~AnVyDpLyGptB}~AvLwEbHmCxWwExLmAlJ}@fFg@f~@{JhOyBr^eI`N_Dl_@oONGlR}HvIsDrSyHtD}AnFsAtEkAnHiBvBi@vLuBvHs@jD]|O{Alk@aBlKfB~H|At\\bLp]|LjJdBbQvCjf@zFph@rDdMGvEChSg@bY_Dlk@qMrn@kWdUoPtWcWdFgCjOiN~A}DnLoIlMaIvCi@fHwD|CoCpHyCp[iMfHsCtU{FzUoDjj@iInNoBfC_@bDk@nGm@fDmBvAw@`Dg@"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 48, A 6.","announcement":"Exit the roundabout toward B 48, A 6.","distanceAlongGeometry":36.647}],"intersections":[{"entry":[false,true,false],"in":2,"bearings":[53,192,346],"duration":1.066,"turn_weight":5.75,"turn_duration":0.037,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":6.701,"geometry_index":7921,"location":[7.896096,49.492792]},{"entry":[false,true,true],"in":0,"bearings":[12,160,258],"duration":1.633,"turn_duration":0.223,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":1.303,"geometry_index":7923,"location":[7.896073,49.492722]},{"entry":[true,true,false],"in":2,"bearings":[116,175,340],"duration":2.682,"turn_duration":0.582,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"weight":1.943,"geometry_index":7925,"location":[7.896116,49.492647]},{"bearings":[83,200,296],"entry":[true,false,false],"in":2,"turn_duration":0.223,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":7928,"location":[7.896279,49.492595]}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern, Alsenborn","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":222,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":36.647}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":3,"instruction":"Enter the roundabout and take the 3rd exit toward B 48/A 6/Bad Bergzabern.","modifier":"slight right","bearing_after":192,"bearing_before":166,"location":[7.896096,49.492792]},"speedLimitSign":"vienna","name":"","weight_typical":10.572,"duration_typical":6.279,"duration":6.279,"distance":36.647,"driving_side":"right","weight":10.572,"mode":"driving","ref":"B 48","geometry":"orxk}A_a}`NbAd@fAFlAYfA{@v@yAb@mBJ}B@_AOcB"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 1st exit toward B 48.","announcement":"In a quarter mile, Enter the roundabout and take the 1st exit toward B 48.","distanceAlongGeometry":514.777},{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit toward B 48, A 6.","announcement":"Enter the roundabout and take the 1st exit toward B 48, A 6.","distanceAlongGeometry":127.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[35,115,263],"duration":3.865,"turn_weight":5,"turn_duration":0.059,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.52,"geometry_index":7930,"location":[7.896361,49.492602]},{"entry":[true,false,true],"in":1,"bearings":[128,299,317],"duration":2.713,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.498,"geometry_index":7932,"location":[7.89682,49.492451]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":5.4,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.994,"geometry_index":7933,"location":[7.897241,49.492238]},{"entry":[true,false],"in":1,"bearings":[112,296],"duration":2.836,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.604,"geometry_index":7936,"location":[7.898152,49.491869]},{"entry":[true,false],"in":1,"bearings":[115,292],"duration":17.541,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":16.227,"geometry_index":7937,"location":[7.898704,49.491727]},{"entry":[true,false],"in":1,"bearings":[165,347],"duration":1.637,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.555,"geometry_index":7942,"location":[7.900231,49.489683]},{"bearings":[145,165,345],"entry":[false,true,false],"in":2,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7944,"location":[7.900319,49.489467]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":172,"driving_side":"right","type":"roundabout","modifier":"right","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":531.444}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern, Alsenborn","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward B 48/A 6/Bad Bergzabern.","modifier":"slight right","bearing_after":115,"bearing_before":83,"location":[7.896361,49.492602]},"speedLimitSign":"vienna","name":"","weight_typical":42.789,"duration_typical":39.676,"duration":39.676,"distance":531.444,"driving_side":"right","weight":42.789,"mode":"driving","ref":"B 48","geometry":"sfxk}Aqq}`Nl@kE~FiUhLiYhIoSbEiNrEcTzGoa@dJic@bIkMxKiI~HeDrrAg\\tCs@xG{BzDe@nKkGtB]"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward B 48, A 6.","announcement":"Exit the roundabout toward B 48, A 6.","distanceAlongGeometry":27.776}],"intersections":[{"bearings":[61,183,341],"entry":[false,true,false],"in":2,"turn_weight":5.75,"turn_duration":0.03,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7947,"location":[7.900487,49.489114]}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"rectangle-yellow","display_ref":"48","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"B 48"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"},{"type":"delimiter","text":"/"},{"type":"text","text":"Bad Bergzabern"}],"degrees":172,"driving_side":"right","type":"roundabout","modifier":"straight","text":"B 48 / A 6 / Bad Bergzabern"},"distanceAlongGeometry":27.776}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":1,"instruction":"Enter the roundabout and take the 1st exit toward B 48/A 6/Bad Bergzabern.","modifier":"slight right","bearing_after":183,"bearing_before":161,"location":[7.900487,49.489114]},"speedLimitSign":"vienna","name":"","weight_typical":9.434,"duration_typical":3.906,"duration":3.906,"distance":27.776,"driving_side":"right","weight":9.434,"mode":"driving","ref":"B 48","geometry":"slqk}AmseaNtAjA`BZbBSxAcAdAkB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":738.238},{"ssmlAnnouncement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward Bad Bergzabern.","announcement":"In a quarter mile, Enter the roundabout and take the 3rd exit toward Bad Bergzabern.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 3rd exit toward Bad Bergzabern, Neustadt (Weinstraße).","announcement":"Enter the roundabout and take the 3rd exit toward Bad Bergzabern, Neustadt (Weinstraße).","distanceAlongGeometry":178.889}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[99,168,341],"duration":3.705,"turn_weight":5,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":8.51,"geometry_index":7952,"location":[7.900533,49.488892]},{"entry":[true,true,false],"in":2,"bearings":[10,172,347],"duration":3.25,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":3.078,"geometry_index":7955,"location":[7.900654,49.488559]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":1.289,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.225,"geometry_index":7957,"location":[7.900772,49.48816]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":0.914,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.867,"geometry_index":7958,"location":[7.900854,49.487948]},{"entry":[true,false],"in":1,"bearings":[166,346],"duration":20.633,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":19.602,"geometry_index":7959,"location":[7.900912,49.487799]},{"entry":[true,false],"in":1,"bearings":[171,340],"duration":1.289,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.225,"geometry_index":7966,"location":[7.903149,49.484714]},{"entry":[true,false],"in":1,"bearings":[177,351],"duration":0.439,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.408,"geometry_index":7967,"location":[7.903199,49.484503]},{"entry":[true,false],"in":1,"bearings":[179,357],"duration":3.6,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.42,"geometry_index":7968,"location":[7.903206,49.484427]},{"entry":[false,true],"in":0,"bearings":[16,205],"duration":2.049,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.945,"geometry_index":7972,"location":[7.90309,49.483836]},{"entry":[false,true],"in":0,"bearings":[25,212],"duration":6.127,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":5.82,"geometry_index":7973,"location":[7.902899,49.48357]},{"bearings":[53,236],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"geometry_index":7976,"location":[7.902149,49.48306]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bad Bergzabern"},{"type":"text","text":"/"},{"type":"text","text":"Neustadt (Weinstraße)"},{"type":"text","text":"/"},{"type":"text","text":"Hochspeyer"}],"degrees":269,"driving_side":"right","type":"roundabout","modifier":"right","text":"Bad Bergzabern / Neustadt (Weinstraße) / Hochspeyer"},"distanceAlongGeometry":754.905}],"destinations":"B 48, A 6: Bad Bergzabern, Kaiserslautern","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward B 48/A 6/Bad Bergzabern.","modifier":"straight","bearing_after":168,"bearing_before":161,"location":[7.900533,49.488892]},"speedLimitSign":"vienna","name":"","weight_typical":50.945,"duration_typical":48.395,"duration":48.395,"distance":754.905,"driving_side":"right","weight":50.945,"mode":"driving","ref":"B 48","geometry":"w~pk}AiveaNlCyAdK{@dC{AvIcAdMgDfLcDhHsBlz@{UpT}JxVgSdPmOlXu[r`@e`@vJmEdLcBvCMzGUzIx@fGt@|GlCrO|JvJbJxHhMhIlThC`InEpM"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward Bad Bergzabern, Neustadt (Weinstraße).","announcement":"Exit the roundabout toward Bad Bergzabern, Neustadt (Weinstraße).","distanceAlongGeometry":39.904}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[56,176,280],"duration":3.895,"turn_weight":5.75,"turn_duration":0.131,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":2,"weight":9.326,"geometry_index":7978,"location":[7.901755,49.482887]},{"entry":[false,true,true],"in":0,"bearings":[95,227,320],"duration":1.375,"turn_duration":0.625,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":0.713,"geometry_index":7982,"location":[7.901469,49.482911]},{"entry":[false,true],"in":0,"bearings":[47,179],"duration":3.301,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":1,"weight":3.135,"geometry_index":7983,"location":[7.901414,49.482878]},{"bearings":[100,228,357],"entry":[true,true,false],"in":2,"turn_duration":3.767,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":7987,"location":[7.901425,49.482697]}],"destinations":"Bad Bergzabern, Neustadt (Weinstraße), Hochspeyer","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bad Bergzabern"},{"type":"text","text":"/"},{"type":"text","text":"Neustadt (Weinstraße)"},{"type":"text","text":"/"},{"type":"text","text":"Hochspeyer"}],"degrees":269,"driving_side":"right","type":"roundabout","modifier":"right","text":"Bad Bergzabern / Neustadt (Weinstraße) / Hochspeyer"},"distanceAlongGeometry":73.237}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":3,"instruction":"Enter the roundabout and take the 3rd exit toward Bad Bergzabern/Neustadt (Weinstraße)/Hochspeyer.","modifier":"slight right","bearing_after":280,"bearing_before":236,"location":[7.901755,49.482887]},"speedLimitSign":"vienna","name":"","weight_typical":16.457,"duration_typical":15.793,"duration":15.793,"distance":73.237,"driving_side":"right","weight":16.457,"mode":"driving","ref":"B 48","geometry":"mgek}AubhaNgAxCUlCFnCd@bC`AlBvAbA~AR~A_@pAmAv@cB^uBHaCO_Cg@qB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":988.32},{"ssmlAnnouncement":"In a quarter mile, Take the A 6 ramp.","announcement":"In a quarter mile, Take the A 6 ramp.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 6 ramp toward Saarbrücken.","announcement":"Take the A 6 ramp toward Saarbrücken.","distanceAlongGeometry":94.444}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[46,133,272],"duration":1.191,"turn_weight":5,"turn_duration":0.1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":6.037,"geometry_index":7992,"location":[7.90172,49.482676]},{"entry":[true,false],"in":1,"bearings":[137,313],"duration":2.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.799,"geometry_index":7994,"location":[7.901919,49.482555]},{"entry":[true,false],"in":1,"bearings":[145,322],"duration":0.873,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.828,"geometry_index":7996,"location":[7.90241,49.482189]},{"entry":[true,false],"in":1,"bearings":[145,325],"duration":0.328,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.311,"geometry_index":7997,"location":[7.902534,49.482075]},{"entry":[true,false],"in":1,"bearings":[147,325],"duration":1.746,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.658,"geometry_index":7998,"location":[7.90258,49.482032]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":2.42,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":2.279,"geometry_index":7999,"location":[7.902822,49.481792]},{"entry":[true,false],"in":1,"bearings":[147,327],"duration":3.4,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.213,"geometry_index":8000,"location":[7.903155,49.481459]},{"entry":[true,false],"in":1,"bearings":[149,326],"duration":1.691,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.605,"geometry_index":8002,"location":[7.903632,49.480998]},{"entry":[true,false],"in":1,"bearings":[149,329],"duration":7.908,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":7.316,"geometry_index":8003,"location":[7.903856,49.480756]},{"entry":[true,false],"in":1,"bearings":[150,330],"duration":4.637,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.281,"geometry_index":8006,"location":[7.904874,49.479629]},{"entry":[true,false],"in":1,"bearings":[156,332],"duration":3.414,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":3.15,"geometry_index":8008,"location":[7.905543,49.478858]},{"entry":[true,false],"in":1,"bearings":[165,341],"duration":4.631,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":4.275,"geometry_index":8010,"location":[7.905916,49.478274]},{"entry":[true,false],"in":1,"bearings":[178,356],"duration":0.736,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.676,"geometry_index":8013,"location":[7.906133,49.477434]},{"entry":[true,false],"in":1,"bearings":[183,358],"duration":7.541,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":6.975,"geometry_index":8015,"location":[7.906139,49.477298]},{"entry":[false,true],"in":0,"bearings":[11,190],"duration":5.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":4.969,"geometry_index":8021,"location":[7.905817,49.475923]},{"entry":[false,true],"in":0,"bearings":[3,177],"duration":1.912,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":1,"weight":1.742,"geometry_index":8026,"location":[7.905658,49.47506]},{"entry":[true,false],"in":1,"bearings":[174,357],"duration":1.107,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":1.025,"geometry_index":8027,"location":[7.905679,49.474759]},{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[true,false],"in":1,"bearings":[172,354],"duration":0.498,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"weight":0.461,"geometry_index":8028,"location":[7.905708,49.474583]},{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"bearings":[169,352],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":8029,"location":[7.905727,49.4745]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Saarbrücken"}],"type":"turn","modifier":"slight right","text":"Saarbrücken"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"turn","modifier":"slight right","text":"A 6"},"distanceAlongGeometry":1011.653},{"sub":{"components":[{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Saarbrücken"}],"type":"turn","modifier":"slight right","text":"Saarbrücken"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"turn","modifier":"slight right","text":"A 6"},"distanceAlongGeometry":402.336}],"destinations":"Bad Bergzabern, Neustadt (Weinstraße), Hochspeyer","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward Bad Bergzabern/Neustadt (Weinstraße)/Hochspeyer.","modifier":"slight right","bearing_after":133,"bearing_before":92,"location":[7.90172,49.482676]},"speedLimitSign":"vienna","name":"","weight_typical":54.012,"duration_typical":52.814,"duration":52.814,"distance":1011.653,"driving_side":"right","weight":54.012,"mode":"driving","ref":"B 48","geometry":"gzdk}Ao`haNv@uAxDwHtNwUdF}FbFwFtA{A~McNxSySpIsIfQeRbN_MlGyFbQqOzj@gf@~b@}^dK{H~VyOnKoEpR}FnUuClI]tBKxC?hGTrLr@jQhC~TjEdQpDlDp@pCh@vGfAlL|AzKdAhMf@xQi@~Iy@dDe@hCg@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":74129.992},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on E 50.","announcement":"In 1 mile, Keep right to stay on E 50.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 50.","announcement":"In a half mile, Keep right to stay on E 50.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 50 toward Paris/Metz, Strasbourg.","announcement":"Keep right to stay on E 50 toward Paris/Metz, Strasbourg.","distanceAlongGeometry":233.333}],"intersections":[{"lanes":[{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"mapbox_streets_v8":{"class":"primary_link"},"location":[7.905747,49.474431],"geometry_index":8030,"admin_index":6,"weight":9.619,"is_urban":false,"yield_sign":true,"out":1,"in":2,"turn_duration":0.026,"turn_weight":4.5,"duration":5.715,"bearings":[168,189,349],"entry":[true,true,false]},{"entry":[false,false,true],"in":0,"bearings":[32,55,226],"duration":1.195,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"weight":1.809,"geometry_index":8037,"location":[7.905409,49.473768]},{"entry":[false,true,true],"in":0,"bearings":[46,76,249],"duration":11.895,"turn_duration":0.032,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":false,"admin_index":6,"out":2,"weight":10.676,"geometry_index":8039,"location":[7.905248,49.473666]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[7.902721,49.472945],"geometry_index":8043,"admin_index":6,"weight":11.117,"is_urban":false,"turn_weight":0.75,"duration":11.551,"bearings":[50,199,224],"out":2,"in":0,"turn_duration":0.03,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.901397,49.471645],"geometry_index":8050,"admin_index":6,"weight":20.717,"is_urban":false,"turn_weight":11.75,"duration":9.996,"bearings":[47,69,249],"out":2,"in":0,"turn_duration":0.032,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":103.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":90.984,"geometry_index":8053,"location":[7.898326,49.470873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":1.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.199,"geometry_index":8059,"location":[7.866292,49.462847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":38.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":33.551,"geometry_index":8060,"location":[7.865875,49.462742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":8.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.215,"geometry_index":8064,"location":[7.854154,49.459629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.732,"geometry_index":8066,"location":[7.851705,49.458847]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":8.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.068,"geometry_index":8067,"location":[7.851455,49.458763]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.849088,49.457966],"geometry_index":8068,"admin_index":6,"weight":12.307,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.072,"bearings":[63,243],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":10.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.275,"geometry_index":8072,"location":[7.844912,49.456638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.336,"geometry_index":8074,"location":[7.842102,49.455699]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.85,"geometry_index":8075,"location":[7.841696,49.455564]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.412,"geometry_index":8077,"location":[7.841443,49.45548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":27.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":24.451,"geometry_index":8078,"location":[7.839184,49.454742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,260],"duration":1.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.354,"geometry_index":8084,"location":[7.830854,49.452634]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,262],"duration":2.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.686,"geometry_index":8086,"location":[7.830323,49.452572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":7.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.09,"geometry_index":8088,"location":[7.829292,49.452486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":9.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.486,"geometry_index":8091,"location":[7.82656,49.452396]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.823294,49.452556],"geometry_index":8094,"admin_index":6,"weight":5.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.715,"bearings":[97,280,304],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.821276,49.452832],"geometry_index":8099,"admin_index":6,"weight":6.299,"is_urban":false,"turn_weight":1,"duration":5.586,"bearings":[94,104,287],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,290],"duration":4.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.359,"geometry_index":8101,"location":[7.819412,49.45321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,294],"duration":13.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.928,"geometry_index":8103,"location":[7.817923,49.453604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":0.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.561,"geometry_index":8108,"location":[7.813785,49.455117]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":5.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.527,"geometry_index":8109,"location":[7.813617,49.455188]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":4.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.959,"geometry_index":8110,"location":[7.811905,49.455914]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.810674,49.456436],"geometry_index":8111,"admin_index":6,"weight":18.289,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.766,"bearings":[123,303,315],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":3.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.66,"geometry_index":8115,"location":[7.804953,49.458873]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,303],"duration":5.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.414,"geometry_index":8116,"location":[7.80382,49.459359]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.802129,49.460066],"geometry_index":8118,"admin_index":6,"weight":3.227,"is_urban":false,"turn_weight":1,"duration":2.309,"bearings":[108,122,299],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,299],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.906,"geometry_index":8119,"location":[7.801422,49.460325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,299],"duration":4.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.566,"geometry_index":8120,"location":[7.801132,49.460431]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,295],"duration":10.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.719,"geometry_index":8123,"location":[7.799628,49.460913]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.795939,49.461765],"geometry_index":8128,"admin_index":6,"weight":1.555,"is_urban":false,"turn_weight":1,"duration":0.592,"bearings":[90,107,283],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"location":[7.795737,49.461795],"geometry_index":8129,"admin_index":6,"weight":2.992,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.076,"bearings":[103,283],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,280],"duration":11.064,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.789,"geometry_index":8132,"location":[7.794636,49.461948]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":9.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.127,"geometry_index":8137,"location":[7.790624,49.46218]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,260],"duration":22.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":21.582,"geometry_index":8141,"location":[7.787228,49.462014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":43.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":43.949,"geometry_index":8149,"location":[7.779067,49.460331]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,268],"duration":7.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.846,"geometry_index":8162,"location":[7.762898,49.457012]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.012,"geometry_index":8164,"location":[7.759707,49.456917]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":22.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":22.027,"geometry_index":8165,"location":[7.75741,49.456805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":9.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.777,"geometry_index":8169,"location":[7.748922,49.456192]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":3.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.529,"geometry_index":8171,"location":[7.745154,49.455736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":0.764,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.744,"geometry_index":8172,"location":[7.743797,49.455579]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,257],"duration":25.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.334,"geometry_index":8173,"location":[7.743506,49.455543]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":24.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":24.369,"geometry_index":8182,"location":[7.734648,49.452538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":0.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.705,"geometry_index":8191,"location":[7.725539,49.449822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,258],"duration":28.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.605,"geometry_index":8192,"location":[7.725278,49.449774]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":5.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.812,"geometry_index":8197,"location":[7.714921,49.449064]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.712725,49.448952],"geometry_index":8199,"admin_index":6,"weight":26.953,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.672,"bearings":[86,261,267],"out":1,"in":0,"turn_duration":0.028,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.838,"geometry_index":8204,"location":[7.704284,49.447903]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,254],"duration":18.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.428,"geometry_index":8205,"location":[7.703689,49.44781]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.696506,49.446308],"geometry_index":8211,"admin_index":6,"weight":1.963,"is_urban":false,"turn_weight":1,"duration":0.996,"bearings":[53,72,252],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,250],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.512,"geometry_index":8212,"location":[7.69614,49.446232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,252],"duration":2.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.592,"geometry_index":8213,"location":[7.695949,49.446188]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":9.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.824,"geometry_index":8214,"location":[7.69492,49.445965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":78.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":75.012,"geometry_index":8219,"location":[7.691339,49.445316]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,257],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.994,"geometry_index":8236,"location":[7.659819,49.442662]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.657278,49.442253],"geometry_index":8239,"admin_index":6,"weight":6.279,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.809,"bearings":[75,254,267],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.654658,49.441745],"geometry_index":8242,"admin_index":6,"weight":6.404,"is_urban":false,"turn_weight":1,"duration":5.861,"bearings":[53,73,251],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,249],"duration":22.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":21.236,"geometry_index":8243,"location":[7.65241,49.44124]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":16.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.488,"geometry_index":8250,"location":[7.643907,49.438734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":1.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.996,"geometry_index":8254,"location":[7.638067,49.43646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":5.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.436,"geometry_index":8255,"location":[7.6377,49.436296]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.006,"geometry_index":8256,"location":[7.635719,49.435419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":141.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":134.432,"geometry_index":8257,"location":[7.635361,49.435255]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,272],"duration":22.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":21.904,"geometry_index":8290,"location":[7.585249,49.420563]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,277],"duration":4.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.287,"geometry_index":8296,"location":[7.576318,49.421003]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,276],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.084,"geometry_index":8297,"location":[7.574571,49.421145]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,274],"duration":12.357,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.049,"geometry_index":8298,"location":[7.572908,49.421259]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,276],"duration":0.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.371,"geometry_index":8301,"location":[7.568006,49.421558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,274],"duration":5.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.637,"geometry_index":8302,"location":[7.567852,49.421568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.289,"geometry_index":8304,"location":[7.565548,49.421685]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":1.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.156,"geometry_index":8305,"location":[7.565445,49.421691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,273],"duration":15.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.002,"geometry_index":8306,"location":[7.565077,49.42171]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,270],"duration":1.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.795,"geometry_index":8312,"location":[7.560542,49.421814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.711,"geometry_index":8313,"location":[7.559964,49.421814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":4.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.703,"geometry_index":8314,"location":[7.559411,49.421812]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.557897,49.421785],"geometry_index":8315,"admin_index":6,"weight":9.119,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.621,"bearings":[88,267,284],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.554696,49.421667],"geometry_index":8317,"admin_index":6,"weight":1.043,"is_urban":false,"turn_weight":1,"duration":0.072,"bearings":[77,86,261],"out":2,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,265],"duration":0.248,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.236,"geometry_index":8318,"location":[7.554686,49.421666]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.949,"geometry_index":8319,"location":[7.554609,49.421662]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":6.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.549,"geometry_index":8320,"location":[7.554261,49.421641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,262],"duration":2.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.037,"geometry_index":8323,"location":[7.551786,49.421471]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,262],"duration":36.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":34.186,"geometry_index":8324,"location":[7.551022,49.421399]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,251],"duration":7.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.369,"geometry_index":8333,"location":[7.538064,49.419433]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.535347,49.41883],"geometry_index":8335,"admin_index":6,"weight":18.988,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.535,"bearings":[71,250,258],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":1.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.145,"geometry_index":8340,"location":[7.528445,49.417098]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,247],"duration":21.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":19.674,"geometry_index":8341,"location":[7.528027,49.416988]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.520685,49.414926],"geometry_index":8345,"admin_index":6,"weight":1.799,"is_urban":false,"turn_weight":1,"duration":0.885,"bearings":[56,67,246],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":6.443,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.961,"geometry_index":8346,"location":[7.520385,49.414839]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":6.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.293,"geometry_index":8347,"location":[7.518128,49.414184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.791,"geometry_index":8348,"location":[7.515735,49.413501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":30.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.73,"geometry_index":8349,"location":[7.515429,49.413411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,246],"duration":0.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.826,"geometry_index":8352,"location":[7.5044,49.410244]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":36.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":32.432,"geometry_index":8353,"location":[7.504068,49.410149]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.922,"geometry_index":8355,"location":[7.490935,49.406341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":45.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":40.881,"geometry_index":8356,"location":[7.49057,49.406234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.865,"geometry_index":8359,"location":[7.474327,49.401551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":21.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":19.564,"geometry_index":8360,"location":[7.473992,49.401453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":6.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.764,"geometry_index":8364,"location":[7.466123,49.399095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.463818,49.398372],"geometry_index":8365,"admin_index":6,"weight":9.977,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.092,"bearings":[64,244],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":6.139,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.67,"geometry_index":8368,"location":[7.45998,49.397129]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":11.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.584,"geometry_index":8369,"location":[7.457877,49.396417]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":1.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.299,"geometry_index":8371,"location":[7.453978,49.395047]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":33.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":31.303,"geometry_index":8372,"location":[7.45351,49.394869]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":7.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.49,"geometry_index":8378,"location":[7.442404,49.390501]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.43987,49.389422],"geometry_index":8379,"admin_index":6,"weight":8.48,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.934,"bearings":[57,237,252],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.437087,49.388208],"geometry_index":8381,"admin_index":6,"weight":7.771,"is_urban":false,"turn_weight":1,"duration":7.137,"bearings":[45,56,236],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":12.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.055,"geometry_index":8382,"location":[7.434799,49.387211]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.77,"geometry_index":8384,"location":[7.430742,49.385403]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.428754,49.384515],"geometry_index":8385,"admin_index":6,"weight":10.223,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.059,"bearings":[56,236],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":4.66,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.303,"geometry_index":8387,"location":[7.425257,49.382966]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":86.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":77.934,"geometry_index":8388,"location":[7.42333,49.382133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,267],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.867,"geometry_index":8417,"location":[7.383295,49.372726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":4.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.012,"geometry_index":8418,"location":[7.382885,49.37271]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":4.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.912,"geometry_index":8420,"location":[7.380672,49.372611]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.378512,49.372504],"geometry_index":8422,"admin_index":6,"weight":1.23,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.375,"bearings":[85,266],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":18.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":16.816,"geometry_index":8423,"location":[7.377991,49.37248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":7.295,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.547,"geometry_index":8430,"location":[7.370877,49.371989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,258],"duration":9.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.365,"geometry_index":8433,"location":[7.368196,49.371672]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.48,"geometry_index":8436,"location":[7.364796,49.371142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.362202,49.370637],"geometry_index":8438,"admin_index":7,"weight":11.029,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.275,"bearings":[73,250],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[48,67,245],"duration":1.014,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":2,"weight":0.893,"geometry_index":8442,"location":[7.35786,49.369546]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":7.451,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.707,"geometry_index":8443,"location":[7.357521,49.369444]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":16.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.709,"geometry_index":8447,"location":[7.35494,49.368648]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.068,"geometry_index":8453,"location":[7.349543,49.366592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,235],"duration":29.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":26.746,"geometry_index":8454,"location":[7.349162,49.366423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.021,"geometry_index":8462,"location":[7.339883,49.361883]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":17.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.75,"geometry_index":8463,"location":[7.339547,49.361714]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":8.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.225,"geometry_index":8466,"location":[7.334411,49.359095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":8.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.092,"geometry_index":8468,"location":[7.331734,49.357725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.561,"geometry_index":8469,"location":[7.329095,49.356383]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":27.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.518,"geometry_index":8470,"location":[7.328604,49.356131]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,231],"duration":1.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.008,"geometry_index":8474,"location":[7.320695,49.352107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,232],"duration":9.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.191,"geometry_index":8475,"location":[7.320396,49.351951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":35.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":33.844,"geometry_index":8477,"location":[7.317593,49.350526]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":3.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.277,"geometry_index":8483,"location":[7.307287,49.345265]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":7.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.732,"geometry_index":8484,"location":[7.306289,49.344757]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.30424,49.343713],"geometry_index":8485,"admin_index":7,"weight":9.945,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.477,"bearings":[52,232,238],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":0.396,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.375,"geometry_index":8486,"location":[7.301152,49.342134]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.30104,49.342077],"geometry_index":8487,"admin_index":7,"weight":1.355,"is_urban":false,"turn_weight":0.5,"duration":0.906,"bearings":[45,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":6.494,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.17,"geometry_index":8488,"location":[7.300808,49.341959]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.551,"geometry_index":8489,"location":[7.298898,49.340992]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.298416,49.340749],"geometry_index":8490,"admin_index":7,"weight":12.381,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.039,"bearings":[52,232],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":3.715,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.523,"geometry_index":8493,"location":[7.294489,49.338735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.162,"geometry_index":8495,"location":[7.293379,49.338164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,231],"duration":1.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.436,"geometry_index":8496,"location":[7.293013,49.337977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":8.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.416,"geometry_index":8497,"location":[7.292562,49.337739]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.084,"geometry_index":8499,"location":[7.289874,49.336326]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":7.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.971,"geometry_index":8500,"location":[7.289529,49.336142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":9.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.307,"geometry_index":8502,"location":[7.28729,49.334922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":1.068,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.016,"geometry_index":8504,"location":[7.284343,49.333258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":34.217,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":31.65,"geometry_index":8505,"location":[7.284034,49.333074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":0.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.891,"geometry_index":8515,"location":[7.274552,49.326827]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":18.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.449,"geometry_index":8516,"location":[7.274313,49.326646]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":3.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.047,"geometry_index":8521,"location":[7.269696,49.323026]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,218],"duration":8.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.33,"geometry_index":8522,"location":[7.268923,49.322394]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.934,"geometry_index":8523,"location":[7.266861,49.320644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":32.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":30.846,"geometry_index":8524,"location":[7.266634,49.320448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.705,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.67,"geometry_index":8529,"location":[7.258901,49.313792]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.072,"geometry_index":8530,"location":[7.258735,49.31365]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.471,"geometry_index":8531,"location":[7.258466,49.31342]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.35,"geometry_index":8532,"location":[7.258131,49.313131]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":3.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.537,"geometry_index":8533,"location":[7.258056,49.313067]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.257295,49.312413],"geometry_index":8534,"admin_index":7,"weight":8.939,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.672,"bearings":[37,217,224],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.255253,49.310643],"geometry_index":8535,"admin_index":7,"weight":2.846,"is_urban":false,"turn_weight":1,"duration":2.002,"bearings":[30,37,217],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":2.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.244,"geometry_index":8536,"location":[7.25483,49.310279]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":1.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.146,"geometry_index":8537,"location":[7.254315,49.309836]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":5.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.293,"geometry_index":8538,"location":[7.254059,49.309616]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.252803,49.30853],"geometry_index":8539,"admin_index":7,"weight":9.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.889,"bearings":[37,217,227],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.250551,49.306608],"geometry_index":8541,"admin_index":7,"weight":6.572,"is_urban":false,"turn_weight":1,"duration":6.031,"bearings":[30,38,218],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,221],"duration":13.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.43,"geometry_index":8543,"location":[7.249089,49.305429]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":6.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.773,"geometry_index":8550,"location":[7.245409,49.303041]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":1.045,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.939,"geometry_index":8554,"location":[7.243422,49.302069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":30.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":27.412,"geometry_index":8555,"location":[7.243092,49.301922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.906,"geometry_index":8566,"location":[7.232308,49.298703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":72.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":63.211,"geometry_index":8567,"location":[7.231942,49.298611]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":9.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.16,"geometry_index":8575,"location":[7.204875,49.291783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":0.514,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.449,"geometry_index":8577,"location":[7.20138,49.290895]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,249],"duration":43.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":39.436,"geometry_index":8578,"location":[7.201191,49.290848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":2.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.314,"geometry_index":8593,"location":[7.185458,49.285853]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":0.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.578,"geometry_index":8594,"location":[7.184712,49.285412]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,225],"duration":13.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":12.541,"geometry_index":8595,"location":[7.184537,49.285305]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":6.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.412,"geometry_index":8602,"location":[7.181414,49.282866]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.180032,49.28151],"geometry_index":8605,"admin_index":7,"weight":10.119,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.658,"bearings":[33,212],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,212],"duration":3.383,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.207,"geometry_index":8607,"location":[7.177964,49.279317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.781,"geometry_index":8608,"location":[7.1773,49.27863]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,214],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.105,"geometry_index":8609,"location":[7.17693,49.278248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,215],"duration":21.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.141,"geometry_index":8610,"location":[7.176681,49.278009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,238],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.711,"geometry_index":8620,"location":[7.171218,49.274222]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,241],"duration":1.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.814,"geometry_index":8621,"location":[7.170646,49.273992]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":1.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.799,"geometry_index":8622,"location":[7.17002,49.273762]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,246],"duration":22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.9,"geometry_index":8623,"location":[7.169392,49.273565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":0.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.752,"geometry_index":8634,"location":[7.161252,49.272639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,272],"duration":5.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.393,"geometry_index":8635,"location":[7.160969,49.272637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,274],"duration":6.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.586,"geometry_index":8636,"location":[7.158925,49.272684]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.156419,49.272794],"geometry_index":8637,"admin_index":7,"weight":15.74,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.164,"bearings":[94,273,280],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.150439,49.272852],"geometry_index":8643,"admin_index":7,"weight":4.107,"is_urban":false,"turn_weight":1,"duration":3.209,"bearings":[77,87,265],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,261],"duration":19.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":18.574,"geometry_index":8644,"location":[7.149274,49.27278]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,238],"duration":6.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.617,"geometry_index":8654,"location":[7.142703,49.271306]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.140661,49.270374],"geometry_index":8657,"admin_index":7,"weight":7.924,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.152,"bearings":[53,229],"out":1,"in":0,"turn_duration":0.024,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":5.402,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.248,"geometry_index":8661,"location":[7.138408,49.269069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,232],"duration":43.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":42.02,"geometry_index":8664,"location":[7.136795,49.268128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.225,"geometry_index":8692,"location":[7.120325,49.266342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,265],"duration":10.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.291,"geometry_index":8693,"location":[7.119859,49.266329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,249],"duration":5.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.6,"geometry_index":8700,"location":[7.116059,49.265822]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,240],"duration":19.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.287,"geometry_index":8704,"location":[7.114125,49.265263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":8.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.475,"geometry_index":8717,"location":[7.108293,49.262223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":4.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.422,"geometry_index":8720,"location":[7.105793,49.260826]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.104376,49.260142],"geometry_index":8722,"admin_index":7,"weight":3.645,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.857,"bearings":[54,232],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":1.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.691,"geometry_index":8725,"location":[7.103299,49.25962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":4.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.285,"geometry_index":8726,"location":[7.10279,49.259385]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":2.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.9,"geometry_index":8727,"location":[7.101509,49.258795]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":0.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.836,"geometry_index":8728,"location":[7.100946,49.258534]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,234],"duration":5.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.432,"geometry_index":8729,"location":[7.100701,49.258424]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":0.678,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.645,"geometry_index":8731,"location":[7.0992,49.257712]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.781,"geometry_index":8732,"location":[7.099021,49.257625]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":11.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.342,"geometry_index":8734,"location":[7.098242,49.257241]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,222],"duration":10.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.436,"geometry_index":8740,"location":[7.095553,49.255645]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":6.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.953,"geometry_index":8744,"location":[7.093918,49.254347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":15.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.229,"geometry_index":8747,"location":[7.093019,49.253467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":6.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.547,"geometry_index":8753,"location":[7.091329,49.251195]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":18.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.814,"geometry_index":8755,"location":[7.090831,49.250236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":18.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.92,"geometry_index":8759,"location":[7.089869,49.247604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,200],"duration":26.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":23.912,"geometry_index":8764,"location":[7.088901,49.244721]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":27.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":24.828,"geometry_index":8777,"location":[7.084085,49.239535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":6.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.775,"geometry_index":8792,"location":[7.080899,49.233655]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,183],"duration":23.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":21.096,"geometry_index":8793,"location":[7.080704,49.232184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":17.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.461,"geometry_index":8800,"location":[7.080136,49.226819]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,207],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.998,"geometry_index":8809,"location":[7.078339,49.223071]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":3.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.559,"geometry_index":8811,"location":[7.07815,49.222829]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.077419,49.221971],"geometry_index":8813,"admin_index":7,"weight":9.117,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.865,"bearings":[30,212],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,222],"duration":5.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.715,"geometry_index":8817,"location":[7.075124,49.219938]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,230],"duration":3.465,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.197,"geometry_index":8820,"location":[7.073738,49.219022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,227],"duration":2.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.932,"geometry_index":8822,"location":[7.072725,49.218475]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,230],"duration":17.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.23,"geometry_index":8823,"location":[7.072135,49.21812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,231],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.693,"geometry_index":8827,"location":[7.066886,49.215189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,225],"duration":8.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.914,"geometry_index":8828,"location":[7.066363,49.214916]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":7.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.492,"geometry_index":8832,"location":[7.064215,49.213246]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":26.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":25.633,"geometry_index":8836,"location":[7.062639,49.211454]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,234],"duration":5.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.537,"geometry_index":8846,"location":[7.056428,49.206088]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,242],"duration":10.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":9.984,"geometry_index":8850,"location":[7.054783,49.205404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,256],"duration":14.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":13.814,"geometry_index":8856,"location":[7.051532,49.204538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.046543,49.204224],"geometry_index":8864,"admin_index":7,"weight":3.246,"is_urban":false,"turn_weight":1,"duration":2.254,"bearings":[86,92,275],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,278],"duration":7.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.936,"geometry_index":8866,"location":[7.045743,49.204275]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,286],"duration":0.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.736,"geometry_index":8870,"location":[7.042986,49.204662]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":5.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.535,"geometry_index":8871,"location":[7.042737,49.204708]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[108,290],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"geometry_index":8874,"location":[7.04086,49.205093]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris/Metz"},{"type":"text","text":"/"},{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"right","text":"Paris/Metz / Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"fork","modifier":"right","text":"A 6"},"distanceAlongGeometry":74159.656},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Paris/Metz"},{"type":"text","text":"/"},{"type":"text","text":"Strasbourg"}],"type":"fork","modifier":"right","text":"Paris/Metz / Strasbourg"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"de-motorway","display_ref":"6","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 6"}],"type":"fork","modifier":"right","text":"A 6"},"distanceAlongGeometry":1609.344}],"destinations":"A 6: Saarbrücken","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the A 6 ramp toward Saarbrücken.","modifier":"slight right","bearing_after":189,"bearing_before":169,"location":[7.905747,49.474431]},"speedLimitSign":"vienna","name":"","weight_typical":2575.734,"duration_typical":2731.34,"duration":2731.34,"distance":74159.656,"driving_side":"right","weight":2575.734,"mode":"driving","ref":"A 6; E 50","geometry":"}vtj}Ae|oaNhEbApEV|CV~CbArExBbGrFzB|BfBlDbBrCv`@xeCfCxIrBhFlB~CvCfG~CbEhl@x^lF|EnDnF`E`IdF`KzMfz@nXddBzFn^`g@z~CnkAhpHfmArzHtiChdPbc@lqC~bCplOpE`Yl}ArwJne@boCvb@~_CzXxqAnb@npBjLpf@fDrNxp@|rCdMbj@rSn_AzPju@h]~aBfR~x@lf@rtBlGjXbBjHbAlEbm@dlCt~@rhErKjk@nN|z@zLx{@hOlxAvHl_Aj@dKnA~SlC|p@\\nMtCphAh@vx@Klf@m@nxAmA~d@cErkAiBj[cA|N{Dvj@cBbSyA|PwPhxA{DdZ_Ihi@sMvq@mIrb@{Qny@sQts@}j@lhBuAjEmCnIkl@~iBs_@|kA}IpXubAd|Csd@bwAac@tuAk]xeAw]fgAmLl`@eOdk@sEbQoH|XwIda@{Hz`@qGp[}Kxp@oNjeAcJhv@cDnY{@rKqBnWiDle@UzDmCje@cArUsDlqAkAfcA@`f@@hd@r@jy@hB`z@jDnx@rD`q@|Gf_AnIn{@bRvtA`Vx_BvFr_@fWb_B|D|VxXnfBl[tuBzn@`_E|f@vdD~d@t_DvClUxBhRhCjXjBpWdBf`@vAfe@jA`h@xAr`Ax@v`AbCtdC~EpnCdJhnF|LliDpEr|@rEbz@~V`dEnCle@xHxsAfAdQbIbcAjFfd@nNrx@nH`b@rHt\\`L`f@jRbp@zc@~sAjaAtwCj\\hcAtTbx@nXvdAnRt|@bNfn@lL|o@~Hrf@|OhlAdQhbB~AhO~L|`B|GlxAhExyAlHvfFtDjhCzB~iAbBf}@tHtaBdQ~cDrMbpBnLfyApHn{@xDdd@nZtoCpTrfB~\\daCdApHJx@fK`z@vCzUvA|J|Lh_AtFdc@|F`j@pDb]`MrpAhDx_@rIt`AhQvaCvClg@|Bf`@`G`mArDl`AvG|fCvInsD`HdbExP|mIrIxeDhMboDxGj|A|Lr|BjGf~@dEnl@|Dbf@bDna@pB~VzOhcBxMlnArG|h@hGji@p^nkC~_@xbCvPr`AdQn}@|Gp]lDnQlUlgAzq@~tC~AzGjh@zqBjl@prBjs@t|BfI|Uxu@xzBfIjU~}@vfCd`AxdCjuAhoDhxAvnD`fCxpGrq@ziB~p@xiBrd@zvAxZbbA~YpdAbJn[bHjX~VfbAfQfu@xOjs@nYjvAlNpu@dOzz@~Mn{@hY|oBvOzmAxM|lAnM~rAvK|nAvPfjCxIzgBlJhhCvC|qAzAtqAtApvBIz}B_@zu@IdYe@vu@wBlcBqCnbB{HvjDyChqAiBlp@{GdlBcF|fBsAz_AoKhxDqBdw@SrHo@v\\yDfqBKlEe@~UqAhdA_Ahw@]ju@K|d@EvOMvo@?bc@Bpa@t@r}AfBdeBbCz`B@RFxCh@vTr@zXfFrfBv@dXnCvn@bGvwAzGfrAlIvqA~H|iAlJtkAh]luDfRxdB|OpqAnFtc@tQltA~QjsAjT`{AdThtAnTzsA|TxsAfUhsAzEbYzg@nsCrd@`eCpg@dlCxHbb@lDvQ|g@`lCti@ptCrDbRzjAleGr|A`dIl[xdB|DvSruAlfHjvCjlOtExUbgCbyMb_A`}El{A~}HbE|Sbe@x`C~d@~~Blj@tnCxZhyAdl@`oC~\\z}Ax]j}AzOrq@nk@lbCnc@pfBbp@bkCbJf\\tm@h}B~h@lmBbl@rrBd_A~_Drj@~hBj^viAlbAj}Cba@nnAvh@l}Ah}@~mCffAj}Cvh@d~Anv@f{BtgAtbDbWzu@`s@lwBfThp@nh@`aBhm@`pBtj@fmB|Uxz@rt@zpCzi@h{Bl]h|A|]vbBnb@f{BfYzbBdXheB`Z|vB`Er\\zJby@nMniAnMxoAtLlqAdG~t@~Epo@jHzbAlGhaAfG`iArGfrAfEjcAbEbjAbDllAhDrzA`F|`C^rXhB`hAzAf`AxAx_AzBdeAn@p_@DnBtAzy@nDx~AdB`v@zEb}AxEhmAlD|y@bDno@vEhy@|Fv{@zKxzA`Ib~@dIpx@~MhpApOxoAbTbzAjSvrAlLjp@fLbn@jEdTlHj_@dJhe@`Mbl@`Nnl@vLhh@xMli@xVp`Ar^xoAlTbs@`V`v@pIxVfPzd@`i@dzAhX|s@f^r_Ad^j}@x_@r`Aj`@n`AneAxjCpI~S|`A`_C`_@|_At`A~~Bdy@hpBlZ~t@zrA|cDvNt]|n@j|AdcAleCviA|qCr{@pvBvHtQzz@buBd\\`x@nj@~sAd~@tzBjo@b}A~_Az_Cj|AfuDjNd]v^j}@f`A`_CtaB~_EpB~EjFnMl{@jvBdNb]j[|u@h~@vzBda@vaARb@`b@fcAtJzUzMd[xj@rrAnk@jsAnJpTtm@`uAp\\zt@fVli@voAvlCnJhRnShb@j[hn@hYrj@ja@lv@~d@fz@jn@`hA`q@~iAfp@veAri@hz@pt@phAhJ|Mj]ng@tu@|eAxd@lo@~e@do@j_AnoAnf@ho@jlBz_CfKdMj}@hhAr}A~lBnaAjkAfqCrhDfm@~t@zGjIjMxO`Q|S~BtCzg@pn@rmBr~BvUlYtZd_@vL~NzbAnmAlf@tl@toA`~A`a@rg@rf@vq@bObT`QpW`P`Wf`@lp@hWrf@`Ypk@jMrY|HjQbTbi@nP~c@dKtYdHrSjNjc@|Llb@zMxf@lMxg@zNbo@lIp`@hL|k@rLto@xXf_BhUtvAdh@haDvDzU`vAtxI|s@fqEdq@neEfeAjuGtaAffG~s@xpEd@pCll@ftDbb@zhCjSpoA|AxJdPncA`h@faD`m@~sDnU~tAlVhsAbN`q@tMvl@nLlg@rMxg@tN~f@dPbh@hT|n@jRre@pMd[zNh[pZrm@tE|IlOzWfQbZvTn\\`QlVxMfQt[|`@la@`e@d`@jb@j^~]dS~RrcA~_AlcAf_A|i@nh@zVbV|MpNfr@vu@pa@xg@fN~QdTxZjY|d@nVlc@lOzZ`LlVdRzd@zNnb@jMvb@jMbf@hKff@tHr`@`Lpt@tH`r@fF|m@pD~i@jCfj@fBng@lAhj@v@th@d@|e@KzgABtP}Av~B{Er{CoBjcBy@x{@]zq@@ps@Z|t@t@dv@nCxgAhErz@bDfg@`H|u@`Hbn@bGja@fHfd@vJ|g@`FjU`Knb@hMhe@bO`f@`Ojb@`Ydt@dVrg@lQt_@bPb\\xUje@xSfa@pNpYlU~f@nOd_@rNr^b@fA`IrTtJp[vItZrKdd@rKxh@|DtTfGx`@hFva@pFph@xDxi@bBxX~Aj_@`Al_@x@v^Lt\\W|h@i@dh@}@n^oAtd@}Ate@iIvfCqA|g@s@jb@[vc@B|f@Xb\\v@~`@fBfe@fCpg@fCf_@jEzc@vEf`@`DhUfGn`@tHnb@fGnXvGjY`I`ZfKv]pOzd@dIjTlGjOdKzVlLlXbPb^rRv`@nK`T|Vrf@|\\zp@vBhE`k@riAtUhh@pShg@bOv_@rYxv@|LpZ~B|FtMx^tMx^zc@`oAhOdb@zEhNpXdu@|Qrf@lDdJdOp`@xFbNlN|\\rTbf@~Udf@`HpMdIzNlSj\\fXbb@fYj`@vTbXzFpGtM|NbTzTdRjQjCdCvPzN|Q`ObYfSd[dSrm@`\\fObItj@~Sbc@nN~d@lM|j@pNlm@rMlnBx`@zHzBrWxGrI~BrV~H|WdMhW`Mr]dSb^bVdMtJfOjMfVxTpUhVrVzWf`@pf@pc@vi@n^vd@|JhLlU`XxS|S`NvMbOrMlRpNrSjNlRjLhSbK~YxLr^jMj_@zJrRhE`SlD`h@lGnh@`F|zAdKdi@`BpnAlCry@rBtx@bEfi@jEbb@xEzR`DhPjCjf@fKfXtHx^lLzZvLn^`QrWpNhWdOdK~GfFtDzFbEnZdUbYnVd`@`_@r^|`@d_@he@`]bf@pKnPjKbQh_@~q@lOl]vPz_@dUzc@|}@vpBfx@vhBjR`b@rj@nhA`Pt_@f\\tk@r_@ni@b`@vd@jHhHzEzEhPnOtj@~d@bk@bd@vIdHzw@~l@xrAtjAre@ff@v\\x`@fk@bx@dVva@hRza@rJjVdPba@jJfWbMxb@xKf]lCnKxCpL`Qrv@xLdt@bFh^rEv]tBvQzElj@BZrC|b@zBpf@pAha@z@xl@f@pt@q@hy@o@hXu@tWqBbe@_Fdw@cGlm@oDp^{ApNqD|[uDr[yKvz@qCrR"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 13 miles.","announcement":"Continue for 13 miles.","distanceAlongGeometry":20180.916},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 50.","announcement":"In 2 miles, Keep left to stay on E 50.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 50.","announcement":"In a half mile, Keep left to stay on E 50.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 50 toward Paris, Metz.","announcement":"Keep left to stay on E 50 toward Paris, Metz.","distanceAlongGeometry":244.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[7.040546,49.205166],"geometry_index":8875,"admin_index":7,"weight":5.477,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.486,"bearings":[110,289,295],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[114,295],"duration":0.729,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.729,"geometry_index":8878,"location":[7.038756,49.205698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,293],"duration":1.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.859,"geometry_index":8879,"location":[7.038516,49.205771]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":15.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.23,"geometry_index":8880,"location":[7.037923,49.205936]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,281],"duration":36.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":36.359,"geometry_index":8889,"location":[7.032894,49.206998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,298],"duration":5.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.076,"geometry_index":8916,"location":[7.019611,49.209226]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,298],"duration":0.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.967,"geometry_index":8918,"location":[7.017622,49.20991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,297],"duration":13.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.158,"geometry_index":8919,"location":[7.017292,49.210023]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,288],"duration":0.779,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.799,"geometry_index":8929,"location":[7.012549,49.211355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,285],"duration":17.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.971,"geometry_index":8930,"location":[7.012277,49.211413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,261],"duration":20.865,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":20.844,"geometry_index":8944,"location":[7.005644,49.211741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":1.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.809,"geometry_index":8957,"location":[6.998163,49.210009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,248],"duration":33.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":32.369,"geometry_index":8958,"location":[6.997511,49.209832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":0.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.293,"geometry_index":8983,"location":[6.985344,49.209788]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":8.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.043,"geometry_index":8984,"location":[6.985238,49.209815]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":7.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.057,"geometry_index":8988,"location":[6.982428,49.210547]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,282],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.68,"geometry_index":8993,"location":[6.979899,49.211056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,275],"duration":2.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.139,"geometry_index":8997,"location":[6.978166,49.211247]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":0.373,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.363,"geometry_index":8999,"location":[6.977437,49.211282]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,271],"duration":5.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.447,"geometry_index":9000,"location":[6.977317,49.211287]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.975457,49.211249],"geometry_index":9004,"admin_index":7,"weight":7.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.084,"bearings":[85,263,270],"out":1,"in":0,"turn_duration":0.019,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":3.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.711,"geometry_index":9009,"location":[6.973067,49.210959]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":2.365,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.307,"geometry_index":9011,"location":[6.972102,49.210753]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.971516,49.210608],"geometry_index":9013,"admin_index":7,"weight":9.359,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.621,"bearings":[68,247,256],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,240],"duration":17.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":17.275,"geometry_index":9018,"location":[6.969541,49.209969]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.966689,49.208696],"geometry_index":9024,"admin_index":7,"weight":1.701,"is_urban":false,"turn_weight":1,"duration":0.738,"bearings":[34,53,232],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,229],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.771,"geometry_index":9025,"location":[6.966577,49.208638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,231],"duration":6.553,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":6.389,"geometry_index":9026,"location":[6.966459,49.208571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":0.596,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.562,"geometry_index":9028,"location":[6.965488,49.208057]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":1.102,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.053,"geometry_index":9029,"location":[6.965403,49.20801]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":14.422,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":14.039,"geometry_index":9030,"location":[6.965246,49.207923]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":4.262,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.148,"geometry_index":9037,"location":[6.963226,49.206704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":1.061,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.025,"geometry_index":9038,"location":[6.962574,49.206301]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,225],"duration":3.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.402,"geometry_index":9039,"location":[6.962385,49.206184]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,226],"duration":4.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.58,"geometry_index":9040,"location":[6.961766,49.205785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":10.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":10.141,"geometry_index":9042,"location":[6.960699,49.205127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":0.791,"turn_weight":5030.122,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5030.912,"geometry_index":9049,"location":[6.958204,49.203852]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.891,"geometry_index":9050,"location":[6.957962,49.203759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":9.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.039,"geometry_index":9051,"location":[6.957695,49.203661]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,258],"duration":36.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.52,"geometry_index":9059,"location":[6.954792,49.202959]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.742,"geometry_index":9071,"location":[6.941866,49.200422]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[70,247,252],"duration":19.285,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.262,"geometry_index":9072,"location":[6.941613,49.200361]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":5.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.9,"geometry_index":9081,"location":[6.935657,49.197867]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[18,38,212],"duration":11.781,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":11.756,"geometry_index":9084,"location":[6.934242,49.196778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":28.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.652,"geometry_index":9086,"location":[6.931955,49.194324]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":32.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":32.947,"geometry_index":9092,"location":[6.924649,49.189296]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,186],"duration":2.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.07,"geometry_index":9104,"location":[6.918178,49.18304]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":2.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.291,"geometry_index":9105,"location":[6.9181,49.182546]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,187],"duration":2.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.836,"geometry_index":9106,"location":[6.918028,49.182022]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.917902,49.181374],"geometry_index":9108,"admin_index":8,"weight":14.918,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.562,"bearings":[8,192,213],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[32,52,235],"duration":5.996,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":6.137,"geometry_index":9117,"location":[6.915283,49.178519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,250],"duration":28.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.918,"geometry_index":9120,"location":[6.91334,49.177795]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":2.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.146,"geometry_index":9129,"location":[6.903019,49.17661]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[91,271,280],"duration":12.98,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.961,"geometry_index":9130,"location":[6.902233,49.176617]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,269],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.643,"geometry_index":9133,"location":[6.897532,49.176674]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.89696,49.176665],"geometry_index":9134,"admin_index":8,"weight":1.098,"is_urban":false,"turn_weight":0.75,"duration":0.371,"bearings":[82,89,266],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":6.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.869,"geometry_index":9135,"location":[6.896835,49.17666]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,257],"duration":16.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.404,"geometry_index":9138,"location":[6.894284,49.176444]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[61,238,245],"duration":18.059,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.135,"geometry_index":9143,"location":[6.888437,49.174969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,223],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.32,"geometry_index":9149,"location":[6.883303,49.172136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,222],"duration":12.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.234,"geometry_index":9150,"location":[6.882934,49.171877]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.879689,49.169598],"geometry_index":9152,"admin_index":8,"weight":7.178,"is_urban":false,"turn_weight":1,"duration":6.523,"bearings":[34,43,223],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":54.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":50.459,"geometry_index":9154,"location":[6.87803,49.16843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,237],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.447,"geometry_index":9174,"location":[6.860069,49.163264]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.199,"geometry_index":9176,"location":[6.859234,49.162915]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,236],"duration":2.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.879,"geometry_index":9177,"location":[6.858815,49.162736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.227,"geometry_index":9178,"location":[6.85816,49.162449]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,221],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.332,"geometry_index":9182,"location":[6.855839,49.161236]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":14.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.865,"geometry_index":9183,"location":[6.855743,49.161164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,212],"duration":10.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.809,"geometry_index":9191,"location":[6.852792,49.157555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,239],"duration":0.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.756,"geometry_index":9197,"location":[6.849777,49.155459]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,243,251],"duration":10.516,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.717,"geometry_index":9198,"location":[6.849477,49.155341]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":74.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":72.529,"geometry_index":9202,"location":[6.84536,49.15432]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.818726,49.143853],"geometry_index":9220,"admin_index":8,"weight":3.135,"is_urban":false,"turn_weight":0.6,"duration":2.555,"bearings":[46,64,242],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,240],"duration":7.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.578,"geometry_index":9221,"location":[6.817888,49.143561]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":3.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.135,"geometry_index":9223,"location":[6.815549,49.142619]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.359,"geometry_index":9224,"location":[6.814627,49.142213]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":6.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.369,"geometry_index":9225,"location":[6.814238,49.142042]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.898,"geometry_index":9227,"location":[6.812441,49.141207]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"location":[6.811896,49.140964],"geometry_index":9228,"admin_index":8,"weight":4.125,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.135,"bearings":[56,239,251],"out":1,"in":0,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.305,"geometry_index":9230,"location":[6.810695,49.140495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,243],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.277,"geometry_index":9231,"location":[6.810024,49.140239]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"bearings":[63,243],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":9232,"location":[6.809621,49.140103]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Metz"}],"type":"fork","modifier":"left","text":"Paris / Metz"},"primary":{"components":[{"type":"icon","text":"A 4"}],"type":"fork","modifier":"left","text":"A 4"},"distanceAlongGeometry":20214.25}],"destinations":"A 6: Paris/Metz, Strasbourg, SB-Goldene Bremm, Messegelände","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 50 toward Paris/Metz/Strasbourg/SB-Goldene Bremm/Messegelände.","modifier":"slight right","bearing_after":295,"bearing_before":290,"location":[7.040546,49.205166]},"speedLimitSign":"vienna","name":"","weight_typical":758.152,"duration_typical":767.654,"duration":767.654,"distance":20214.25,"driving_side":"right","weight":5788.273,"mode":"driving","ref":"E 50","geometry":"{yfz|AcavlLyGd\\cIja@iMho@qC~MiI`d@sDxSyEtY_Gx^kH~b@kI~l@}Ebb@qGzo@aCxVsEdl@u@hLaAtOcAvPcA`Tu@lQEv@{@|Sq@lUi@fSg@hRc@|QiAjf@kB~}@wA~t@iA|b@cBrd@aCpb@kBlW}Dz_@aDjWsEzZcGz]yFdYeIha@mRtz@sR|x@cQfv@_WldAwQzu@aFrSoGpXyF`V{Jxc@wJve@eHl`@uFfY}I`k@wEr[eEjZqAnKsB~OgDl\\aD`_@kCr_@eBfYqBx`@w@zTo@hWg@j`@[xYAf]j@pn@l@n^bAn\\l@dNj@|LvBt_@lBvXzBhWxD~]lEz]hDbXjFj^xGha@fGv]~N~w@xOrw@~SxhA`Jvg@xLts@fE~X~Db[fE|]nDj\\~Cj_@fCj\\rBr`@pAv_@h@|VZzTVxWFhWGjVW`SYtOe@nVgBlf@gChb@cB~U_Fzh@{Db^oEp]uGhc@_K~o@u@rEeGj_@yVbwAkJ`l@kA`IaJbn@aEjZeF~d@aEnb@m@`IkCf]yB~_@kAp[k@nOo@x[UvOInFMje@NdZ\\xXj@zW|Atc@|Bxc@fDtf@xBnVdAtKhFxc@pDnVhDnUvBbMfElUxHx_@~GvYrE`RfGjUvMje@vFdR~FdQjShk@nIvTdQlc@rB~EdCjFhOf^xNl\\|AhDlDxHrShb@nRf`@jDvGdClEtFdKbLrStDtHdXvg@hFxJ|Wte@tXzg@lNxXlSfa@hKpTjKdWbHvQnHnS`Ll\\zAfFxDbNbEtO`E~OxBjK~CvN`FhW`EtVjE~\\`Dl[lCz\\bEhk@fGfhAlGhiAzDnk@`Gdq@tCzVfBtOhHvj@jVr`BfVbaB|p@tnE~Fp`@xBxNzKln@j]l`BnUhy@nVps@dJpU~C`I|Qp`@jRr^bKtQtFlJt^ni@t[na@nmAlkAziAnaAhcAf}@~w@j~@rk@v{@lk@~hAncAldCj^x}@pt@fjBb^tz@tVvg@nZpf@|^le@xk@hi@d\\vTx_@rRhV|I~^fJ~c@bH`WvBz]zCv_@nCl[bD`KvAvMxCp\\~J|TxKvUtOnTbS~OnPp\\zg@lIxP|I`TpMd_@lNfg@fN~o@`Mjy@~OpiAvMltAhGbu@~Dbt@hF|jAdDdyA~@z~AQlx@Mbp@w@nkBgAv}ALpyAPvb@HxFhBpz@`D|y@bD|g@xCz_@`Gnq@`VtgBz[bdBjZfkAzKl^x_@jhAne@rgAj_@pt@b[xi@j_@`n@dO`VfS`[dyBvmDrLdRjz@nsAfH`LxuAzyBfMvT|KhSfXxh@~O~^dQjg@~Nbl@`Jxg@vI|p@`Gvx@rBzm@fC~rA`ChtAtBvoAfC~v@jFby@pQbuApZdvA|Rjs@zQdl@|A~EdJdY|P|g@zLn\\jUjm@tPh`@zTzb@nC~D|OnUvOpR~LdLdShQz\\`W`l@t\\le@rXhk@n^rg@bf@t[ta@fTx^dTjg@tMv]pCtJjFvQ|Kjf@zIff@tL`}@hYrsBdMt}@lSvnApb@|rBxTv~@Lj@v_@jwAzs@vkCnhA|_Ef}@pvCz_@vhAtzAroDzm@pwAxU~g@fj@fvAt_@dpAbVtcAh\\t|AvPvw@fQjs@p`@`yAhXbw@jXrx@tIhWr`@reApQth@dN`a@~L~a@hN`g@~N|h@nGdXrS|{@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 26 miles.","announcement":"Continue for 26 miles.","distanceAlongGeometry":41105.062},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 4.","announcement":"In 2 miles, Keep right to take A 4.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 4.","announcement":"In a half mile, Keep right to take A 4.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 4 toward Paris, Luxembourg.","announcement":"Keep right to take A 4 toward Paris, Luxembourg.","distanceAlongGeometry":260}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[63,245,252],"duration":4.029,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.021,"geometry_index":9233,"location":[6.808646,49.139773]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.807357,49.139357],"geometry_index":9236,"admin_index":8,"weight":24.98,"is_urban":false,"turn_weight":16,"duration":8.992,"bearings":[62,70,249],"out":2,"in":0,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,253],"duration":10.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.652,"geometry_index":9238,"location":[6.804226,49.138617]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.800405,49.137982],"geometry_index":9242,"admin_index":8,"weight":11.301,"is_urban":false,"turn_weight":0.5,"duration":10.809,"bearings":[63,78,260],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":3.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.859,"geometry_index":9244,"location":[6.79646,49.137586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":0.529,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.529,"geometry_index":9245,"location":[6.795045,49.137453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":10.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.234,"geometry_index":9246,"location":[6.794848,49.137433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":21.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.336,"geometry_index":9250,"location":[6.791071,49.136628]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":53.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":51.133,"geometry_index":9253,"location":[6.783161,49.134577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,289],"duration":30.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":27.848,"geometry_index":9274,"location":[6.763855,49.138302]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,253],"duration":17.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.979,"geometry_index":9286,"location":[6.752367,49.13854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,250],"duration":24.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.822,"geometry_index":9289,"location":[6.745871,49.137012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,253],"duration":10.658,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.594,"geometry_index":9291,"location":[6.737025,49.134875]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,272],"duration":27.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.529,"geometry_index":9299,"location":[6.732957,49.134404]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,271],"duration":11.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.527,"geometry_index":9319,"location":[6.722642,49.136181]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":3.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.486,"geometry_index":9323,"location":[6.718329,49.136172]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269,273],"duration":15.621,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.832,"geometry_index":9324,"location":[6.7169,49.136161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":0.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.553,"geometry_index":9325,"location":[6.711595,49.136119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":9.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.299,"geometry_index":9326,"location":[6.711402,49.136117]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.84,"geometry_index":9327,"location":[6.708086,49.136089]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.641,"geometry_index":9329,"location":[6.705891,49.136084]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,275],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.156,"geometry_index":9330,"location":[6.705685,49.136085]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.703963,49.136189],"geometry_index":9331,"admin_index":8,"weight":26.027,"is_urban":false,"turn_weight":1,"duration":26.365,"bearings":[79,95,272],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.398,"geometry_index":9333,"location":[6.701751,49.13621]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.701625,49.136209],"geometry_index":9334,"admin_index":8,"weight":22.752,"is_urban":false,"toll_collection":{"name":"Saint-Avold","type":"toll_booth"},"turn_weight":15,"duration":8.16,"bearings":[89,270],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[90,265,291],"duration":11.514,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.914,"geometry_index":9335,"location":[6.700685,49.136211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,270],"duration":3.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.57,"geometry_index":9336,"location":[6.697722,49.136028]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.696749,49.136029],"geometry_index":9337,"admin_index":8,"weight":5.939,"is_urban":false,"turn_weight":1,"duration":5.219,"bearings":[80,90,269],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":0.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.229,"geometry_index":9338,"location":[6.694968,49.136016]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":11.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.471,"geometry_index":9339,"location":[6.694888,49.136015]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,251],"duration":5.566,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.262,"geometry_index":9345,"location":[6.68948,49.135597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":42.793,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.506,"geometry_index":9348,"location":[6.686922,49.134948]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":10.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.916,"geometry_index":9362,"location":[6.666721,49.132495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[6.661761,49.133114],"geometry_index":9364,"admin_index":8,"weight":13.836,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.82,"bearings":[102,281,291],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.655466,49.134032],"geometry_index":9368,"admin_index":8,"weight":10.012,"is_urban":false,"turn_weight":1,"duration":10.307,"bearings":[89,103,285],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[105,286],"duration":20.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.143,"geometry_index":9369,"location":[6.651361,49.134748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[108,288],"duration":65.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":57.518,"geometry_index":9371,"location":[6.643187,49.136378]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,267],"duration":18.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.838,"geometry_index":9388,"location":[6.617285,49.134919]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,292],"duration":152.143,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":133.117,"geometry_index":9395,"location":[6.609951,49.135519]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[107,286,304],"duration":15.826,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.832,"geometry_index":9429,"location":[6.549096,49.133305]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.542585,49.134003],"geometry_index":9437,"admin_index":8,"weight":36.426,"is_urban":false,"turn_weight":1,"duration":40.514,"bearings":[77,91,266],"out":2,"in":1,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":101.9,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":89.145,"geometry_index":9451,"location":[6.522821,49.131906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,274],"duration":0.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.199,"geometry_index":9481,"location":[6.475054,49.141159]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,270],"duration":6.242,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.596,"geometry_index":9482,"location":[6.474946,49.141164]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,267],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.832,"geometry_index":9484,"location":[6.472339,49.141135]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.5,"geometry_index":9486,"location":[6.469627,49.141009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":1.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.68,"geometry_index":9487,"location":[6.469394,49.140998]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":1.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.148,"geometry_index":9488,"location":[6.468611,49.140961]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":14.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.494,"geometry_index":9489,"location":[6.468076,49.140934]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[68,86,266],"duration":9.65,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":8.678,"geometry_index":9490,"location":[6.461859,49.140627]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":28.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.717,"geometry_index":9491,"location":[6.45775,49.14042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,280],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":9498,"location":[6.445589,49.140406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,282],"duration":70.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":61.553,"geometry_index":9499,"location":[6.445083,49.140465]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[59,241,256],"duration":15.121,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.225,"geometry_index":9514,"location":[6.416777,49.138436]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.410789,49.137027],"geometry_index":9520,"admin_index":8,"weight":2.52,"is_urban":false,"turn_weight":1,"duration":1.746,"bearings":[61,80,264],"out":2,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,264],"duration":47.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":41.596,"geometry_index":9521,"location":[6.410046,49.136974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,269],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.238,"geometry_index":9540,"location":[6.390558,49.140065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,267],"duration":5.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.359,"geometry_index":9541,"location":[6.389977,49.140056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,260],"duration":19.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.238,"geometry_index":9544,"location":[6.387488,49.139908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":1.932,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.691,"geometry_index":9550,"location":[6.379698,49.138143]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.688,"geometry_index":9551,"location":[6.37895,49.137934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,248],"duration":92.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":81.293,"geometry_index":9552,"location":[6.378651,49.137852]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,257],"duration":30.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":27.516,"geometry_index":9569,"location":[6.333329,49.133993]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.934,"geometry_index":9574,"location":[6.318771,49.131247]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,250],"duration":0.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.285,"geometry_index":9575,"location":[6.318386,49.131158]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":115.148,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":103.617,"geometry_index":9576,"location":[6.318274,49.131131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,282],"duration":11.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.004,"geometry_index":9604,"location":[6.274824,49.126472]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[6.270402,49.127344],"geometry_index":9608,"admin_index":8,"weight":0.688,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.762,"bearings":[112,292],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,294],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.383,"geometry_index":9609,"location":[6.270131,49.127417]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":9.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.441,"geometry_index":9610,"location":[6.269606,49.127567]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[109,288],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":9613,"location":[6.266237,49.128465]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Luxembourg"}],"type":"fork","modifier":"right","text":"Paris / Luxembourg"},"primary":{"components":[{"type":"icon","text":"A 4"}],"type":"fork","modifier":"right","text":"A 4"},"distanceAlongGeometry":41141.73}],"destinations":"A 4: Paris, Metz, St Avold, Carling","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 50 toward Paris/Metz/St Avold/Carling.","modifier":"slight left","bearing_after":245,"bearing_before":243,"location":[6.808646,49.139773]},"speedLimitSign":"vienna","name":"","weight_typical":1265.58,"duration_typical":1365.047,"duration":1365.047,"distance":41141.73,"driving_side":"right","weight":1265.578,"mode":"driving","ref":"E 50","geometry":"ybgv|Akcq~KpGd[zEbUpIf]v]r{BnN`fAnG`j@vHbq@tHz|@vJvrAvIbaB~LlsChGlwAf@hKxA|Y|Pv_BdJbl@jQfbAd`AdfF`d@nqC|XtsBjHti@bGpk@lEnl@vCte@lA~f@x@dg@Jt`@c@jh@}Ahe@qBvg@oCd`@wEhc@yEz\\{Irg@qGh\\wNpk@iuAvjFsnAtzE{L|h@iNbs@cInd@cQ~nAqF`k@oFdp@cGniAiCh~@y@~cAV~bAvA|q@`C|q@rJ~}AhIzx@`BdN`Ghg@~^ddClv@ngFjpBtsMdSdsA~Fze@zBfStCtZlC|[vCzl@nA|c@b@|_@@vUQrT[|UsAfe@_C`c@mCh`@{C~ZuEv_@gF|]kIfg@mJ`h@_K`i@yIzg@eJnm@eDzWiCpUwCd[eCpa@wAt]y@hZ]zTQz`@Gt_@Hpu@`@lsCThxArApjIB`Kv@fnELpjBCr\\AzKoErjBy@|eANhbA@zFCvy@lJdxDAx{@XhnB@~C\\rmAz@fq@pB`v@tBhe@fC`c@xJtnAzNpeAnPpaAdFvU`Onq@tT~y@vbAr~DdVdiAzXlrB\\dCrLxoAdGbgAxCn}@zBn}@l@p_AoBrhBiUprFiG|jA{V`hEyM|kB{NjwBkLvwAkKpqAwNvdBwk@p_Gis@lrGqp@ljFms@|oFqZtfCsIpnAaEbhAwBh`C`D|dBjJx~AtRfeBd]rxBxw@trDtS`hAnLlv@hFn_@hHto@xEfk@jDzj@nDb|@vA`fAFzu@kAzcA}C|~@aHvgAmH|t@uM|gA_ShkAip@~oDwJzm@}LxbAiJjbAoFp_AcDt`Au@xu@?zv@nBbkA|B`t@`Fdy@fKthA|LbgAhmEz_]`KvdArGr`AvDfr@|Cr_A|BpiBbA`{D~@z{@lBr_A`EpbA~Wp_FpGpmBpCzhA^jnBgDlsBqF`vAgKn|A{ObfBmLxgAuSxcBsCjWaJfw@sGpv@{Fdz@oDbz@yAhf@kAn|@Wrr@|@jn@lApb@fCpw@dFf{@bPptBlLfnAxZvoDtGv}@jIhhAfLrvBnIrtBhIlcDhBjfBLxS`@nw@mB~xFyDfuBoHp}BsJhuBsGhnA}Gn`AeIjfAmPdhBkLdhA]bD_XbyBiSdwAsTtvAoV~vAoXhuA{o@jwC}u@p{CetAblFkv@~{CwTfbAwShdAyXjgBaOljAeOz}AwJ`wAuBl`@}Dp}@eCtbAaBvlAIvEFdiBp@vw@HpJpF||CTpMhA|o@t@l`@dRpcK|Kx_GzCl_BnFbrCdD~oCRdo@Ul~AkDvoBgJbrBuBr^cIbfAyi@tzFsOxcBgMrdBsJdaC_C`yBb@pgAlBbiA~HbrB`IreAjKrkAdY`vBda@hxBtj@z}BdtAhvEjU`}@fRp}@fN`~@fMt_AdIz_AvE~w@hBlm@~@p[j@l|@Sdy@sAbhAaFrhAeInbAeKx|@uMt}@ePn{@iWrpA_VbjA_UzgA}Oj_AaOtiAuKrjAgFj{@sD~~@yAzm@i@~u@Phc@h@|k@zAdt@`Dlx@T|F|HbgAxKlgAdQtnAhSxlAjo@zoD`Lvm@bDtQdt@ldEzT~uA`SzvAhVniCpOlsCrEhtBz@huBqCzgEmAftEx@|wEtBpoCvDdrCvHjvDdKppDxNnmDhXnoFj]~mFxb@liFb_AnzID^da@n`Dhd@ldDpD`Wt@~Evt@dtE`e@vjCjf@bfCne@b_Chb@fbC~Fxa@nFfb@xLxdApTvnC`IviBtEdwBj@dcBcBbhB{KdmEoB`bAiA~_AKbkApAjiAzBbcAjExbAhGjdAzIl{AxN`~CtAzuA?f|@{Ab|@eBxn@aDtp@gLt_BoKv_AmM||@iM~s@qC|OkHx_@yUdnAoQhbAyM`_AcIvn@wF`o@cFvn@sAh["},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 99 miles.","announcement":"Continue for 99 miles.","distanceAlongGeometry":159580.203},{"ssmlAnnouncement":"In 2 miles, Take the A 26 exit.","announcement":"In 2 miles, Take the A 26 exit.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take the A 26 exit.","announcement":"In a half mile, Take the A 26 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the A 26 exit toward St Gibrien, Épernay.","announcement":"Take the A 26 exit toward St Gibrien, Épernay.","distanceAlongGeometry":260}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[98,275,279],"duration":4.732,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":4.488,"geometry_index":9617,"location":[6.263487,49.128907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,276],"duration":11.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.223,"geometry_index":9619,"location":[6.26178,49.12906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,286],"duration":7.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.57,"geometry_index":9624,"location":[6.257522,49.129508]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[116,296],"duration":12.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.918,"geometry_index":9627,"location":[6.254879,49.130177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[132,314],"duration":2.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.668,"geometry_index":9631,"location":[6.251224,49.13184]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[136,320],"duration":34.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.203,"geometry_index":9633,"location":[6.250515,49.132302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,178],"duration":2.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.184,"geometry_index":9643,"location":[6.246429,49.140019]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.246475,49.140583],"geometry_index":9645,"admin_index":8,"weight":54.676,"is_urban":false,"turn_weight":1,"duration":59.646,"bearings":[4,160,184],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":1.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.965,"geometry_index":9657,"location":[6.252288,49.153346]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,195],"duration":103.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":93.516,"geometry_index":9658,"location":[6.252397,49.153618]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[142,320],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.477,"geometry_index":9684,"location":[6.24591,49.18094]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[140,318],"duration":1.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.445,"geometry_index":9685,"location":[6.2455,49.181261]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[138,315,328],"duration":22.025,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.805,"geometry_index":9686,"location":[6.245077,49.181565]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.237741,49.184882],"geometry_index":9694,"admin_index":8,"weight":5.734,"is_urban":false,"turn_weight":1,"duration":5.285,"bearings":[107,115,291],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,289],"duration":0.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.375,"geometry_index":9696,"location":[6.235795,49.185372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,290],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.453,"geometry_index":9697,"location":[6.235638,49.185408]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,289],"duration":6.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.027,"geometry_index":9698,"location":[6.235445,49.185453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[111,291],"duration":58.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":52.629,"geometry_index":9701,"location":[6.23287,49.18606]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,306],"duration":8.352,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.5,"geometry_index":9717,"location":[6.213883,49.195336]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[121,301],"duration":17.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.52,"geometry_index":9719,"location":[6.211132,49.196572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,288],"duration":6.941,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.402,"geometry_index":9725,"location":[6.204896,49.198507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,286],"duration":2.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.723,"geometry_index":9726,"location":[6.202277,49.199063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":4.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.129,"geometry_index":9728,"location":[6.201146,49.199268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.566,"geometry_index":9729,"location":[6.199435,49.199562]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":16.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.641,"geometry_index":9730,"location":[6.198399,49.199741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,275],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.574,"geometry_index":9735,"location":[6.192061,49.200571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":21.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.109,"geometry_index":9736,"location":[6.191834,49.200585]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":2.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.035,"geometry_index":9738,"location":[6.183786,49.201033]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[95,274,277],"duration":5.895,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.742,"geometry_index":9739,"location":[6.182995,49.201075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":3.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.668,"geometry_index":9740,"location":[6.180847,49.201181]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":11.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.969,"geometry_index":9741,"location":[6.179572,49.201244]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,259],"duration":2.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.863,"geometry_index":9746,"location":[6.175799,49.201162]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,256],"duration":21.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":21.715,"geometry_index":9747,"location":[6.174786,49.201037]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.167654,49.199026],"geometry_index":9754,"admin_index":8,"weight":15.516,"is_urban":false,"turn_weight":1,"duration":14.17,"bearings":[48,62,242],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":11.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.164,"geometry_index":9756,"location":[6.163311,49.197506]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,253],"duration":13.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.633,"geometry_index":9760,"location":[6.159571,49.196378]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,272],"duration":8.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.406,"geometry_index":9766,"location":[6.154837,49.195867]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[99,282,289],"duration":5.863,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6,"geometry_index":9770,"location":[6.152031,49.19604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,289],"duration":0.92,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.941,"geometry_index":9773,"location":[6.150066,49.196382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[109,291],"duration":32.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":32.98,"geometry_index":9774,"location":[6.149754,49.196454]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.14101,49.20151],"geometry_index":9786,"admin_index":8,"weight":13.387,"is_urban":false,"turn_weight":0.75,"duration":12.336,"bearings":[135,145,326],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,321],"duration":6.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.41,"geometry_index":9789,"location":[6.138353,49.204012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[136,309],"duration":7.781,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.781,"geometry_index":9791,"location":[6.13676,49.205154]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,301],"duration":0.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.363,"geometry_index":9796,"location":[6.134364,49.206269]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[121,295,301],"duration":27.586,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.871,"geometry_index":9797,"location":[6.134241,49.206317]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.125053,49.206965],"geometry_index":9810,"admin_index":8,"weight":13.434,"is_urban":false,"turn_weight":0.5,"duration":13.637,"bearings":[61,76,252],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,251],"duration":212.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":196.227,"geometry_index":9813,"location":[6.120388,49.205808]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261,265],"duration":0.957,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.844,"geometry_index":9892,"location":[6.056559,49.180308]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":26.424,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":23.781,"geometry_index":9893,"location":[6.056202,49.180272]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.046228,49.179264],"geometry_index":9894,"admin_index":8,"weight":110.605,"is_urban":false,"turn_weight":1,"duration":118.502,"bearings":[76,81,263],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,307],"duration":1.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.656,"geometry_index":9931,"location":[6.000341,49.186491]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[127,309],"duration":13.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.227,"geometry_index":9932,"location":[5.999817,49.18675]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,318],"duration":1.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.25,"geometry_index":9937,"location":[5.995666,49.18924]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[138,318],"duration":10.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.582,"geometry_index":9938,"location":[5.995318,49.189492]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[145,325],"duration":4.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.535,"geometry_index":9942,"location":[5.992754,49.191568]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[146,327,344],"duration":27.111,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.426,"geometry_index":9944,"location":[5.991692,49.192583]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[97,118,296],"duration":2.756,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":2.668,"geometry_index":9953,"location":[5.984193,49.197481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,293],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.004,"geometry_index":9955,"location":[5.983216,49.197786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,291],"duration":8.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.504,"geometry_index":9956,"location":[5.982831,49.197891]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,281],"duration":97.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":92.207,"geometry_index":9962,"location":[5.97866,49.198618]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,264],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.352,"geometry_index":10013,"location":[5.933985,49.199568]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,264],"duration":9.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.785,"geometry_index":10014,"location":[5.9336,49.199542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,264],"duration":8.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.578,"geometry_index":10015,"location":[5.931116,49.199372]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,265],"duration":17.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.879,"geometry_index":10017,"location":[5.928967,49.199235]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.924458,49.199201],"geometry_index":10021,"admin_index":8,"weight":18.328,"is_urban":false,"toll_collection":{"name":"Péage de Beaumont","type":"toll_booth"},"turn_weight":15,"duration":3.6,"bearings":[85,264],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,255],"duration":5.105,"turn_duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.691,"geometry_index":10022,"location":[5.923486,49.199129]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,256],"duration":3.955,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.66,"geometry_index":10024,"location":[5.92215,49.198902]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,261],"duration":32.309,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":29.07,"geometry_index":10025,"location":[5.921116,49.198733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,275],"duration":2.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.918,"geometry_index":10035,"location":[5.912398,49.198409]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,277],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.031,"geometry_index":10036,"location":[5.911826,49.198444]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,276],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.637,"geometry_index":10037,"location":[5.909043,49.198668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276],"duration":1.393,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.254,"geometry_index":10038,"location":[5.908397,49.198716]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276],"duration":14.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.203,"geometry_index":10039,"location":[5.907911,49.198752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,266],"duration":2.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.957,"geometry_index":10046,"location":[5.902702,49.198825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":1.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.914,"geometry_index":10047,"location":[5.90195,49.19879]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[86,264,270],"duration":16.793,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.676,"geometry_index":10048,"location":[5.901593,49.198772]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.895641,49.198187],"geometry_index":10052,"admin_index":8,"weight":12.988,"is_urban":false,"turn_weight":1,"duration":13.721,"bearings":[66,81,261],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":49.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.215,"geometry_index":10053,"location":[5.890323,49.197608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":5.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.586,"geometry_index":10067,"location":[5.871023,49.19633]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[77,255,272],"duration":16.809,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.691,"geometry_index":10069,"location":[5.869015,49.19603]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.862662,49.194708],"geometry_index":10075,"admin_index":8,"weight":22.262,"is_urban":false,"turn_weight":1,"duration":24.307,"bearings":[53,69,249],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":1.045,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.91,"geometry_index":10077,"location":[5.853666,49.192438]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":0.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.516,"geometry_index":10078,"location":[5.853277,49.192341]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":11.596,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.148,"geometry_index":10079,"location":[5.853057,49.192286]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,250],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.059,"geometry_index":10080,"location":[5.848762,49.191209]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,252],"duration":14.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.539,"geometry_index":10081,"location":[5.848304,49.191103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,259],"duration":0.236,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.207,"geometry_index":10088,"location":[5.842764,49.19012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,260],"duration":110.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":97.07,"geometry_index":10089,"location":[5.842672,49.190108]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":101.334,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":88.66,"geometry_index":10129,"location":[5.789612,49.181327]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,220],"duration":0.693,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.605,"geometry_index":10158,"location":[5.747416,49.164603]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.859,"geometry_index":10159,"location":[5.747228,49.164458]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.695,"geometry_index":10160,"location":[5.746956,49.164255]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":43.533,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":38.09,"geometry_index":10161,"location":[5.746741,49.164093]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,230],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.375,"geometry_index":10167,"location":[5.734355,49.155622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":49.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.18,"geometry_index":10168,"location":[5.73385,49.155342]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,237],"duration":1.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.164,"geometry_index":10178,"location":[5.713464,49.146533]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[57,237,244],"duration":32.244,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.207,"geometry_index":10179,"location":[5.712908,49.146298]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.701713,49.141326],"geometry_index":10184,"admin_index":8,"weight":5.578,"is_urban":false,"turn_weight":1,"duration":5.242,"bearings":[53,57,239],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,240],"duration":108.84,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":95.23,"geometry_index":10186,"location":[5.699868,49.140599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,260],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.273,"geometry_index":10204,"location":[5.659064,49.128668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":73.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":64.168,"geometry_index":10205,"location":[5.658931,49.128653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":2.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.012,"geometry_index":10223,"location":[5.628889,49.126884]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271,277],"duration":1.529,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.32,"geometry_index":10224,"location":[5.627944,49.126893]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":1.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.039,"geometry_index":10225,"location":[5.627338,49.126898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":15.369,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.449,"geometry_index":10226,"location":[5.626854,49.126903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,265],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.398,"geometry_index":10231,"location":[5.619244,49.12684]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,264],"duration":5.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.609,"geometry_index":10232,"location":[5.619052,49.126829]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.616896,49.126677],"geometry_index":10234,"admin_index":8,"weight":12.828,"is_urban":false,"turn_weight":1,"duration":13.535,"bearings":[70,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,255],"duration":51.971,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":45.473,"geometry_index":10239,"location":[5.611322,49.126005]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":5.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.496,"geometry_index":10258,"location":[5.590757,49.121339]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,242],"duration":0.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.352,"geometry_index":10261,"location":[5.588815,49.120733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":31.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":27.766,"geometry_index":10262,"location":[5.588671,49.120683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":40.707,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.629,"geometry_index":10276,"location":[5.578873,49.115123]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,279],"duration":17.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.254,"geometry_index":10296,"location":[5.564498,49.110762]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":20.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.113,"geometry_index":10306,"location":[5.558043,49.112683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":1.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.301,"geometry_index":10308,"location":[5.551322,49.116116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":97.627,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":85.426,"geometry_index":10309,"location":[5.550835,49.116365]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[91,270,277],"duration":12.137,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.602,"geometry_index":10338,"location":[5.514493,49.119283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":20.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.566,"geometry_index":10340,"location":[5.509693,49.119241]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.501745,49.11934],"geometry_index":10345,"admin_index":8,"weight":9.973,"is_urban":false,"turn_weight":1,"duration":9.977,"bearings":[89,96,278],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,289],"duration":172.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":151.297,"geometry_index":10350,"location":[5.496927,49.120036]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[116,297],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.203,"geometry_index":10437,"location":[5.417704,49.108303]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[5.41659,49.10868],"geometry_index":10438,"admin_index":8,"weight":5.211,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.965,"bearings":[117,298,306],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[84,118,298],"duration":0.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":2,"weight":0.25,"geometry_index":10439,"location":[5.414324,49.109461]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":1.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.227,"geometry_index":10440,"location":[5.414218,49.109498]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":3.256,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.848,"geometry_index":10441,"location":[5.413687,49.109681]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.301,"geometry_index":10443,"location":[5.412426,49.110116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":1.447,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.262,"geometry_index":10444,"location":[5.412295,49.110161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":8.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.512,"geometry_index":10445,"location":[5.411737,49.110353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,299],"duration":1.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.719,"geometry_index":10446,"location":[5.408559,49.111449]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,301],"duration":27.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":24.832,"geometry_index":10447,"location":[5.407841,49.111707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[131,309],"duration":0.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.621,"geometry_index":10463,"location":[5.399395,49.1171]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":18.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.961,"geometry_index":10464,"location":[5.399183,49.117213]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,278],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.523,"geometry_index":10475,"location":[5.392557,49.119127]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,277],"duration":15.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.691,"geometry_index":10476,"location":[5.392332,49.119148]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.391,"geometry_index":10486,"location":[5.386454,49.118901]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":8.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.625,"geometry_index":10487,"location":[5.386274,49.118877]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":74.439,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":65.117,"geometry_index":10492,"location":[5.382772,49.118197]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.355,"geometry_index":10521,"location":[5.354276,49.109443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,260],"duration":50.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":44.047,"geometry_index":10522,"location":[5.354094,49.109424]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.539,"geometry_index":10538,"location":[5.332411,49.105659]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,250],"duration":1.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.617,"geometry_index":10539,"location":[5.332155,49.1056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":74.387,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":65.07,"geometry_index":10540,"location":[5.331415,49.105421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":5.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.523,"geometry_index":10569,"location":[5.302104,49.098339]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[87,269,297],"duration":13.637,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.266,"geometry_index":10572,"location":[5.299983,49.098223]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.294179,49.09806],"geometry_index":10576,"admin_index":8,"weight":12.484,"is_urban":false,"turn_weight":1,"duration":12.768,"bearings":[68,85,264],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":1.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.531,"geometry_index":10579,"location":[5.288789,49.097553]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":19.076,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.168,"geometry_index":10580,"location":[5.288096,49.097485]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":2.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.391,"geometry_index":10581,"location":[5.280414,49.096698]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261,265],"duration":3.656,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.27,"geometry_index":10582,"location":[5.279338,49.096588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":0.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.391,"geometry_index":10583,"location":[5.277911,49.096442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":11.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.508,"geometry_index":10584,"location":[5.277737,49.096424]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.273028,49.095942],"geometry_index":10585,"admin_index":8,"weight":13.336,"is_urban":false,"turn_weight":1,"duration":13.727,"bearings":[72,81,260],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,253],"duration":202.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":177.152,"geometry_index":10590,"location":[5.267474,49.095141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,275],"duration":102.691,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":89.848,"geometry_index":10650,"location":[5.185269,49.088671]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277,284],"duration":0.996,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.863,"geometry_index":10685,"location":[5.144277,49.091536]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":14.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.934,"geometry_index":10686,"location":[5.143861,49.09157]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":0.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.371,"geometry_index":10687,"location":[5.13755,49.092087]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.137375,49.092101],"geometry_index":10688,"admin_index":8,"weight":59.234,"is_urban":false,"turn_weight":1,"duration":64.715,"bearings":[92,97,277],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.285,"geometry_index":10704,"location":[5.109012,49.091528]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":8.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.465,"geometry_index":10705,"location":[5.108382,49.091536]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":12.816,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.516,"geometry_index":10706,"location":[5.104744,49.091586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,274],"duration":6.93,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.23,"geometry_index":10708,"location":[5.099388,49.091683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,282],"duration":65.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":56.895,"geometry_index":10713,"location":[5.095987,49.091968]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":0.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.77,"geometry_index":10742,"location":[5.065664,49.095752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,255],"duration":50.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":44.414,"geometry_index":10743,"location":[5.065377,49.095699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,289],"duration":3.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.395,"geometry_index":10759,"location":[5.048283,49.095383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":108.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":94.574,"geometry_index":10761,"location":[5.047029,49.095687]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,279],"duration":18.617,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.281,"geometry_index":10809,"location":[4.999081,49.091673]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,278],"duration":44.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":39.23,"geometry_index":10810,"location":[4.989965,49.092588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,240],"duration":18.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.871,"geometry_index":10838,"location":[4.970726,49.086649]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249,255],"duration":20.922,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.301,"geometry_index":10843,"location":[4.962484,49.084327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.954676,49.08237],"geometry_index":10844,"admin_index":8,"weight":9.238,"is_urban":false,"turn_weight":1,"duration":9.699,"bearings":[63,69,249],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":80.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":70.027,"geometry_index":10846,"location":[4.950186,49.081247]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":0.258,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.223,"geometry_index":10868,"location":[4.911803,49.075313]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":2.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.355,"geometry_index":10869,"location":[4.911691,49.075285]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":16.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.465,"geometry_index":10870,"location":[4.910671,49.075029]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,250],"duration":4.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.742,"geometry_index":10871,"location":[4.904142,49.073412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,250],"duration":34.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":30.613,"geometry_index":10872,"location":[4.902411,49.073002]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,275],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.68,"geometry_index":10888,"location":[4.887602,49.072028]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,276],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.883,"geometry_index":10889,"location":[4.886819,49.072077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276],"duration":2.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.402,"geometry_index":10890,"location":[4.885926,49.072139]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[96,276,279],"duration":16.766,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.082,"geometry_index":10891,"location":[4.884801,49.072217]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.877435,49.072686],"geometry_index":10892,"admin_index":8,"weight":10.812,"is_urban":false,"turn_weight":0.5,"duration":11.465,"bearings":[80,96,276],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,276],"duration":175.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":157.688,"geometry_index":10894,"location":[4.872445,49.073008]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":1.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.578,"geometry_index":10947,"location":[4.797066,49.074465]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.184,"geometry_index":10948,"location":[4.796329,49.074333]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255,260],"duration":22.289,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.055,"geometry_index":10949,"location":[4.795775,49.074234]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.786681,49.072619],"geometry_index":10950,"admin_index":8,"weight":20.73,"is_urban":false,"turn_weight":1,"duration":21.93,"bearings":[68,75,255],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,256],"duration":0.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.363,"geometry_index":10951,"location":[4.777656,49.07101]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":68.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":59.766,"geometry_index":10952,"location":[4.777481,49.070981]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.434,"geometry_index":10973,"location":[4.74808,49.069702]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":93.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":81.535,"geometry_index":10974,"location":[4.747865,49.069695]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":146.832,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":128.473,"geometry_index":10999,"location":[4.704453,49.059982]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,244],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.086,"geometry_index":11029,"location":[4.638341,49.040655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":42.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":37.219,"geometry_index":11030,"location":[4.637865,49.0405]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,261],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.277,"geometry_index":11044,"location":[4.617938,49.036221]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.797,"geometry_index":11045,"location":[4.617361,49.036161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":66.902,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":58.531,"geometry_index":11046,"location":[4.616994,49.036124]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.559,"geometry_index":11056,"location":[4.589038,49.036102]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,272],"duration":110.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":96.535,"geometry_index":11057,"location":[4.58876,49.036107]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":11.859,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.371,"geometry_index":11085,"location":[4.535385,49.029281]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":3.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.641,"geometry_index":11089,"location":[4.529595,49.028696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.77,"geometry_index":11090,"location":[4.528137,49.028505]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[79,257,272],"duration":17.312,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":15.133,"geometry_index":11091,"location":[4.52715,49.028375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.519952,49.027348],"geometry_index":11093,"admin_index":8,"weight":12.262,"is_urban":false,"turn_weight":1,"duration":12.879,"bearings":[66,79,260],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,268],"duration":81.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":71.586,"geometry_index":11100,"location":[4.514463,49.026928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,280],"duration":81.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":71.531,"geometry_index":11115,"location":[4.479744,49.03018]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.867,"geometry_index":11134,"location":[4.445319,49.034116]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[98,279,291],"duration":9.914,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.918,"geometry_index":11136,"location":[4.443963,49.034236]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.439766,49.034724],"geometry_index":11140,"admin_index":8,"weight":7.035,"is_urban":false,"turn_weight":0.5,"duration":7.27,"bearings":[84,101,281],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.535,"geometry_index":11141,"location":[4.43665,49.035116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":11142,"location":[4.435441,49.035268]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,279],"duration":25.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":23.398,"geometry_index":11143,"location":[4.434936,49.035331]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.402,"geometry_index":11152,"location":[4.42382,49.03597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,269],"duration":150.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":131.887,"geometry_index":11153,"location":[4.423634,49.035969]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[123,304],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.461,"geometry_index":11198,"location":[4.350573,49.037366]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[124,303],"duration":50.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":43.883,"geometry_index":11199,"location":[4.350382,49.03745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":5.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.234,"geometry_index":11219,"location":[4.326734,49.041831]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,293],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.621,"geometry_index":11221,"location":[4.324026,49.042475]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.07,"geometry_index":11222,"location":[4.323313,49.04267]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.098,"geometry_index":11223,"location":[4.322852,49.042799]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293,313],"duration":16.387,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":14.742,"geometry_index":11224,"location":[4.322376,49.042932]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.316015,49.044717],"geometry_index":11225,"admin_index":8,"weight":9.906,"is_urban":false,"turn_weight":0.5,"duration":10.457,"bearings":[97,113,293],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,291],"duration":44.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":39.828,"geometry_index":11227,"location":[4.311859,49.045851]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[124,306],"duration":2.938,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.637,"geometry_index":11238,"location":[4.294604,49.050996]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[127,307],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"geometry_index":11240,"location":[4.293587,49.051491]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"St Gibrien"},{"type":"text","text":"/"},{"type":"text","text":"Épernay"}],"type":"off ramp","modifier":"right","text":"St Gibrien / Épernay"},"primary":{"components":[{"type":"icon","text":"A 26"}],"type":"off ramp","modifier":"right","text":"A 26"},"distanceAlongGeometry":159623.531},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["straight","slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"St Gibrien"},{"type":"text","text":"/"},{"type":"text","text":"Épernay"}],"type":"off ramp","modifier":"right","text":"St Gibrien / Épernay"},"primary":{"components":[{"type":"icon","text":"A 26"}],"type":"off ramp","modifier":"right","text":"A 26"},"distanceAlongGeometry":3218.688}],"destinations":"A 4: Paris, Luxembourg, Thionville","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 4 toward Paris/Luxembourg/Thionville.","modifier":"slight right","bearing_after":279,"bearing_before":278,"location":[6.263487,49.128907]},"speedLimitSign":"vienna","name":"Autoroute de l’Est","weight_typical":4592.479,"duration_typical":5083.758,"duration":5083.758,"distance":159623.531,"driving_side":"right","weight":4592.461,"mode":"driving","ref":"A 4; E 50","geometry":"u{qu|A}jh}JmDtr@cC~u@qCd`AkBto@cEj~@uHraAgCfUaIps@qNd|@eOlr@qExS_[xgA{b@~lAo`@xw@eNdWuLbS}]lf@_Zb_@qp@`q@_s@fg@sy@nc@{k@fSki@tLmz@rL}h@pDqjAzByXq@mHi@gw@eEiw@aGqg@iG_]{GoeAuWsv@eWip@sYmk@cX__EywBsoBabA}k@uVcl@uR_PyEcb@iKaa@_KcdAsP_kBeMcsBhAwdAvJodAtOa`AfTmzAn`@{rAj`@w_AxT__AdM}q@dFo{AlAuuA[{uAnAuiArG{w@~Jem@jLuq@lTqu@d\\ax@vc@il@zb@a`A`z@sb@~e@w`@bg@aSrX_RlYsOdXuWrd@ed@p`Aw[pv@wc@vtA}P~m@iO~m@a\\x}AuJlm@}QdjAgAxHyA`KsGpd@{Uf`BmEbY{G~b@{Xd}A{Mpn@uPnu@eYbgAmZhdAic@fnAm_@n_Aae@xbAgb@p}@ie@l~@kgChzEey@v`Bue@bgAqb@jbAsHzQmy@|{ByQ~m@wQ|m@qg@rxBuR~}@yTnjAiKdq@yFn_@wa@tbDm@vEkJ|~@kQ|iBeJv_AqR~uB_IpbAmF~x@mJthBmBzl@[dMsIxkDkPdiIsAlp@sEfeC}BtnA_Az|@Hjy@n@nh@rAnh@tAp_@xFh~@tHz{@hEl^bIrk@pI~h@~XrtAz[~sAba@d_Bjc@vgBry@teD`XnfAvLri@zOby@xMn|@hIlq@xE`i@zCbf@~Cjn@fBxp@t@`bAi@`dA}Bhv@aC`d@o@|LeDtd@eFhh@_Hxj@oCnRiGd`@_Hd`@oPvu@oMpf@kPpi@iMj]wVbm@m[ro@qZxh@}Uh^mi@bq@{xAz}Aw~@~aAwz@t}@{_@jc@yYt_@qk@zaAa_@f{@aSzl@gI~XeD`KcApD_BtFmW|pAyFda@aGjg@cEdc@iD`f@sB`c@wApc@c@nb@Mnb@f@hh@pA`h@vDfw@rHf{@jIxo@zFla@`u@hoExUnbBjOvlA|_@pjDtFxc@zG|c@bLbj@bGfUjFxRdIzWhWzs@v[v}@~Rfs@hKze@z[fjBpKje@rKpb@jN~a@fOh`@hS`a@lcAvbBhTbb@|Tdh@hS`j@rQtr@|VrhAfI`]dJ~\\vTln@nP|^lJxQvWnb@lNzQrNjPpcBz_BbQ|RnTj[rSf^vWbl@hVrq@~|@lsCrMt^~Mv\\lTvc@pUt`@tUb[t]~]tY|UnqAn}@fb@rYpRnQjRxSxYha@bXjf@`Qp`@tOtb@|Rvt@`Pvx@dHpi@vFvp@hC|h@vAti@rAhkCrArs@|Adh@nC|g@lFfh@jGle@~Ovw@~v@x}Cbo@hbC~L|f@fL`f@pKnh@~Jtq@tHnp@~Hv_AbFbz@nG`wAtEh~@fAhU~}@jnRrAn_@|@lb@Xlm@Yn`AcBxq@mChh@}Ezo@oInx@aPzsAoz@l{G{Hhr@uIx}@gGbx@mEtu@cC~h@{DziAaCtsAaNrvMuBdqAmEhyAoCho@wDlu@{LvfBoKxmAoOzuAcFha@wHxj@{I`m@qUvtAuOzx@cUpdAeVdcAuW`bAmXd}@eVzt@cWzs@iPza@eOv_@m\\vv@i\\~r@e^`s@a_@|q@s`@to@wNvTeZhd@gc@jm@av@j_AgJdK}X~Zod@je@gbBncB_R`VwSdXkd@zq@q^ro@ge@deAc]|cAeNhf@sM~h@kO`r@uA~HqE`WuIti@gGfg@mFzc@cFfm@wD|h@eEts@qGrdAm@rJ}Fnv@iDn]wDf]cEx[kEfZcIjf@uMvp@_Svz@m|BzdJqSn{@uR~|@uTplAkL~w@sJtv@_Hdq@oGnr@}Ehu@aErv@wBbo@_Bzn@gCtfBwBhsB}AfqBSj_A`@xb@v@|_@pC|n@bDvf@lFjk@fFjb@lGda@vJth@lK`e@~In]nFjQ`HbT~GfRnJ~Vt|@r|Br]b~@vNr`@xHhV`Ntf@vJ|c@bIte@nH|k@zEpm@tB`^jD|`Ar@`WrIfzCjC|~@dCjeAvAfm@_@`lAyAt_BdBx|@nCv{@zKjjAh@bGpIr_ApEd}@nJdfD`Bjl@dAtl@j@pk@Fjj@Qti@k@pc@aApm@UtIeAvb@_M|lD_Bjg@gAj]qAzf@s@`_@m@~k@Yvs@I|v@Ttr@n@fo@dA~m@b@hU~DjqAtC|p@dD|n@tSv~Ddc@jkInJ|jBpDxaAjCbz@pCtxAr@|q@rBbaFpAhpAzAf}@dDn|AhCt~@~DnaA`Ctk@vI|~AzKv`BtAlS`O`hBxH~x@vKncA`LvaA`PjmAbM|{@xNn_AhaApgGpjAthH`EhWlBvLhbAlkGrEr[lJls@tGxi@dMpjAzF`m@zFjo@rD`g@vD|g@VvD`Efr@rDtv@bCnl@rCfx@bBvm@jAzm@zExuC~Azu@zBhu@nCrw@nDfu@bEpu@~GbfApIddA|H`{@tJ|`AjMdiAvc@nyDhIfy@tGrr@lIpaAxIhlAnGfbAbFl_Av\\vnHjFv`A|Fl~@|Ffx@|I|iAzKrjA`Fbf@dOlrAtOnnA`Jnp@|Gte@v@rF`Mzv@dLbr@tTjmAj|C`fP|a@hzBdPn}@bRxgAzPfiAlgCp_RrNnbA|ThvAtWdyAnNzs@hWxnAbUvbAf^rxA~[flAz_@`rArVbx@lUhr@``@xgAn^n`AzWrp@x\\rw@dWvk@xYdn@`i@`gAltAvcC~\\pj@zc@`r@j_AluAdqBtvCbL|P`HvJtK~ObIlLzpFtaIni@l{@zl@hbAxl@vdAnvAdkCz`AvpBnPp^xj@voAbq@f_B?@zeAzpCht@tsBrWbx@pbAlbDngDlsLry@lqCbL`^tMva@xh@`aB~pAdsDzzB`oG~_@hlA`]`gA`h@|fBjCjJzdAd{Dhq@hsC`n@duClnBzmKjXryAdXnsAh_@hcBnrEniR`e@b{BhXjyA~N~{@vPzhAvQptArL`cAvLbkAzIv~@zG|y@rH|cA\\hGtK`kBrEhiAhDxdApCjlAfB~lA~EbcG`Dl|ChDbkBfE|}A~HzxBdYdaG~C~z@~CvfA`DzaBdAddAj@jdABxs@Mjn@Q`z@Izd@If]{@reEE|dA`@|fAl@x}@nBhgAT~JbBho@jEluArDz`AfDru@dI~tApJhpAjHp{@vId}@lOntAhJbv@tN`fAbLjt@`K~n@vOp~@pb@rxBhKpk@xKdo@jQpkAnRpwAzHjq@t[j|ChJr{@fJlu@pNzaAxL|t@lEjVjFxYlKlg@`Qbu@bB~GrKlb@rK~_@`Pvi@pQpi@bY~w@jM`\\nStf@fRva@`Sha@`Qx\\pT``@hTr^p\\lh@x~Az~B|bB~bCnSv\\rRl_@jQb`@bL|XpKbZbQdk@dLlb@nN~o@xKbm@fKhu@nGhm@fEvj@nBb]~Bzu@x@po@Chm@{@ps@wAdh@wAhXwAhXuFpq@wHdq@sFba@eLdp@qOhr@aN`g@iQnj@sIzUoQhc@}rC|`HsaAbaCqNl]kl@xvAiQpd@}Xfy@iUzz@yQp}@oHvd@kKbw@mG|p@wFl}@gB`g@mAzr@W`{@dBnbAvDndApTnyEnFdxArCjwAl@tt@Bd[B`^Qhz@gB~nAgB|p@qQncFwEdqAiEjrAaH~oD{Af~BYnhARfpB~@vyDvAj{F@nj@k@p_AkAr{@gDtjAqD`z@kHxjAeHd|@qHhw@yHvo@_Z|xBsl@veEoJly@sE|i@sF`cAsBjo@Wb_@Oj\\T`m@lArl@fC~p@pErp@xJ~aAxOtiAbTlxAhGfg@zFzg@dHt`AxD~aA`Axt@?fy@uAvu@iCbu@qLn{BuE~bAuAbbANdbA`ChcAjFfaAxIn`AxL`}@zMtt@pN|o@vOdl@fZ`~@n`@zdA~\\h`AjNve@~Oho@~@xE@DxKrj@nGta@rCzQnHfv@bHf{@pE`|@lJfyB`K`}Bx@tQzFfaA~Dvf@hFje@~Ifq@jJ|j@|Ht`@vOdr@nOzj@vTrr@zX~v@tV`n@dOj]xWlm@ri@diAftAvrCxj@fnA|m@b|AbVds@~Xv`AhPjp@rM|o@zKjq@|Izr@hGhs@pEzs@lDbmAPxcA_A|k@?Je@|XsElbAuHb_AyJhx@cPhaAmEnSCJgCjLqVrdAyo@rlCiArEmJd`@aMxg@cL~d@yAdG_Kza@ocAreEcOzk@oNvf@iJ|YiJfXkL|ZiQnb@cTvc@wJnRcUda@uJhO_Zra@kSxWwx@lcAcb@zj@oVl`@mSd_@kOj[aFfLgO|]aOnb@eNde@}L~d@sKre@cIxc@yJlp@_Ff`@sFzi@oDxd@oBt_@i@`MkAt^m@z\\[dc@?la@`@ze@|@~e@bBld@~Btg@hD|k@tCfa@n@fJ~Dre@~Gzq@|Flg@lHrl@bIhj@vIhi@dMds@vKfi@jN`o@tNpj@jJ|\\jNxd@bP`e@~Pvc@xQ`d@vhC`iGdc@biArSrl@~Vbx@pPhl@nOpl@|Nvn@dI``@jK|h@xKzm@~Nr`AhGfd@`Itq@nHps@pGlu@vDth@xClf@`Evw@tWbnGd@jJlH`pAbE`k@`Evh@|Gpw@fE~c@dGhj@`p@d~F~QfpB~{@bvJnFnk@lFph@hGjj@nGjj@dFxa@xFjc@nMz~@tB~NdJfm@jSznApOh{@~f@nkCzNrz@zMfy@lKlu@rJfw@zIlx@fId~@hH|}@`UpnD`J~lAvJx}@vGjd@bHba@~Hj`@zL`h@pUry@d{@jqC~Svv@rPjq@~Lhn@|Jnj@zMl~@dFva@vI|}@hGf{@bChf@f@dM|Ap`@xAxs@n@dm@rAfeDhAztAn@be@vBngAxAbg@vC|y@bWxlFfChj@dp@b_NzEfbAbHdxAb@zIb]heHrJlbBfF~v@tH|aArNb}AzDr]pP|uAlLp}@nu@vnFjN`lAjIp_AlDdg@pGlkArM|eDhDlr@fE~s@vF`r@dKr|@pIpl@nOj|@je@hcCz[teB|K|t@xH`s@hDhc@~Bx_@pC`q@bAbh@Xr`@E`k@k@he@mAxb@{Bvg@yCvd@scAbdLoIxfAkD|m@aC~y@i@np@Ddy@fA`i@tDzjAxYr_HnBxh@lAf_@xBzz@vAbdAPft@?fo@a@rcEBzk@ZbeA`Bx_B`DjxAvCraAfDny@nIh}AvKv}AlrAnmOhJrrAtGnnAfExoA|AbaAz@nrAGdm@{@vfAgRpiIyBflAUfc@Hje@\\j\\nApo@zCpn@~F`w@zG|o@lJzq@nj@vtDbL||@dEjb@~Dfh@hCjf@~Bhu@v@dn@Fp]Wfe@oA~j@uBji@sDjn@yFtm@uIhs@sHhe@aItc@_dChcLwS~hAeMjy@mJru@cIhx@qEdi@eEdo@}Crk@mLx_DcA~Xi_@liK[|Io`@lkL{Bb`Am@~l@Irj@`@nx@lA|s@rB~o@jE|v@|Edu@lg@lrGzF~|@tDp~@rAti@nAtbAFdq@{CjeJOjf@cBjbFqBfgGoAneAkAnp@sBvu@AJoDtw@gEfr@mEnl@{Fti@}Gpl@eHxg@wM~y@wK|k@mRv|@}Ur`AadB|iGcW~aAoM~k@_Jtd@wHvc@cNj`AwJp|@eExc@sE|l@aEjy@}B|q@qAbr@a@bz@Tn}@jAvk@dAl`@hCjr@fCte@jG`z@tFpl@tp@hnGhB|P`d@xkEbJniAfFnx@zCln@|Bln@lBreAt@tt@Ch}@eAhlAgBvu@cCju@mDfs@mFxy@_Hzx@eInv@{Fdf@yHjj@eH~a@uq@x`E{mCpuOoQfhAsIbs@kGfq@gErt@{Bnu@aAv`AXhk@dAxm@tBfn@`D|h@~F|r@rGxi@tFl_@fFzZnKdj@`Odn@rPrk@lPhf@nNz]tSzc@`KlSnLvSjXra@nVr]rc@hl@leAbuAnYbb@pSj^|Rv_@`U`h@bRrg@xJ~ZnJx[jMrf@xKdh@hNzx@fJfs@pEzd@~Ett@xCbv@|Axv@H`m@o@dn@gBps@}ObiDuNl{Cex@vxPqD`|@y@ha@Mh`@Epm@h@vk@`Btr@vBbi@jCre@bDlb@|E`i@xK|{@bG`a@fHdb@rJje@jJla@hKpa@dOlg@`Pbf@jWfp@`Qn`@nQr^nWhe@`h@t{@pk@veAjZho@`Tbg@vPxc@rQ~l@vTrw@xObo@nK`g@xW`|AfdAftGhyB~fNvLzu@lw@v`F~_AhaGtb@|tCtZldCjJ|~@pIn_Ady@hnLhi@txH~TvoD~F~bArDny@ThF~Alo@x@pt@d@`jBrAd{@nBhv@|Crj@dEbj@lHhs@lJbr@zFr^v^z}Bv@~E~Nv~@`dB`wKrXdkB|BtOdFd`@|Fzc@|KhfAfF`k@lE`k@xDjk@dDbl@|FrqAvBh{@nAzx@r@`y@Nrw@g@jy@w@nv@cHn_DaB|o@{Bxv@{CheAi\\jkMkQ~zGw@zZyGreCiG~dBuGhqAiNztBsHp`AkZzoDeL`yAuFbw@{F~}@aDdo@qDdw@wBnm@gBlk@eBjv@y@de@k@fk@g@jv@[x|@?hg@|CxrMEhaAi@zm@{@dk@wAne@{Cpq@cE~n@mIj`AoK~}@iM~z@oEzWig@voCqKfp@yMr`AuKxfA}Cv_@qB`Z}Bt_@yCpx@mB`s@k@hp@Cnt@^tk@vA`q@pDdlA|S`nF|`@bcKrI`uBvDvv@bItwAxHbhAxHvbAnNh}AriAlfLfG`m@dEra@|cBjwPpcB`sPx@|I`_@lxDhNn`B`Kf{AfHhlAvFvlApDh_AbDhbA`DfpAjClhBp@r{@Tvp@Lfp@K`bAi@xgAeAtbAmKjhGsBhuAm@~`AKx~@V`qAt@fy@LlL`@t_@`Bpx@@X|Bt|@|Ft{A~Dbx@~D~s@rHhgAzGnz@lKlgArKtcAlMleA~PzmApRrlAnTvnA`Rp`A|TvcA`_@`_B~{AdmGnc@jtBzSvhA|RvkAxUh`BxgBpfN|yAvgLpuC~~TrPrkAtKnt@tKvp@jWlwArLfm@zNpq@~Z`qAfVn_A~`@hvA`xCb~J~h@|lBfc@feBvTp}@lb@flBnl@|vCbf@`qCbVhzApX|oBlNpgAxYbfCxQb_Bb\\`oCdTbzAnU|vAjRvdAdXdpAdb@dgBx|Bx`J~pBvbItHv\\la@`iBzN`s@rNjr@zh@zzCnVt{AvTj|A|V|nBX|B|T~nBvMnrA|LrtAbLrvAfM~jBrJjdBvB`c@hA|UlFzoA|DjiA`GdzBxBtoAz@|v@jB~dCHbeAGbhA}Ar~DgYh~YIjPaAv|AMx_Bf@ffAvAbcAjBp_AjD|gApCpv@pGtnAbGd`A~Lb~AxJlbAjKnbAhgA`tJj@`FnJb|@hIb}@lLxqAhMz{A`P~`CxZjhFrNtjBvGhw@`Hfs@`hA~|JrSl`ChN|}BvIflBrb@tnLpFvzAfI`kBdP`uCp@~J|JbzAbGt|@dn@|wH~O|gC|FtfAvDb~@rBdk@jAbd@fA`a@`Avb@fAbx@tAv}AXngAWrfAeBvcCsC~tAmHzwB}Dx{@sNrcCiIdhAu|@d~JmTbnCyLxeB}LriCiUdvGuVztGkItzAiHxcAkOpgBeR|fBiNlhAsTl`BeS`zA_[paCoVjwB_QplBwMpjBeJxdBsHdlB{DniBgCdiB}Ep}JiDxoC{BnhAiA~ZuB|j@yBxg@gFffAaExr@wEnv@mIvrAoWvaEoHpjA}Bp^qKpuBiEf`AcD|y@{Eh}AeBf_AqAp_AcAxhAe@pgA?nqA@rJXvq@jA|mAdEx`CzCtiAnE`mA|FnmAnKzkBfNzwBpp@dqJtFfbA|GzsAzGliBjD`iBbBt}ATv|Ae@x|A?t@}ClzBsFlnBgMpeDkSzhFkIfsC{C~sB}@ndB@vfAx@jmAzApcAlDp{AvXluIbFpjBzA|vAUpbBaAzo@}Afn@sFxxAeJxsAuK|kAaOfmAgVx|AcL~k@}L|k@wLzh@_Uj{@}U~v@cm@hkBgD|Jge@jzA{Rps@}Obp@{Mtm@_Pdy@yNj|@qMz_AyKfaA}Hf{@uGlbAeG`oAkFfwAwL|oDoHz}AsIr}AmIfiAiL|rAoLhjAaKb~@iEn[gJdr@_\\`uBeKpk@aGx[iGv\\qnBplK}p@prD}SdoAsShoAmbAjqHg[xoBoW~zAw[v}A}UtcAoV~bAcW~}@mW||@uVzu@i`@tjAkLxZqPvb@wSbi@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 60 miles.","announcement":"Continue for 60 miles.","distanceAlongGeometry":96551.516},{"ssmlAnnouncement":"In 2 miles, Take the exit toward Paris.","announcement":"In 2 miles, Take the exit toward Paris.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take the exit toward Paris.","announcement":"In a half mile, Take the exit toward Paris.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the exit toward Paris, Orléans.","announcement":"Take the exit toward Paris, Orléans.","distanceAlongGeometry":195.556}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.292913,49.051823],"geometry_index":11241,"admin_index":8,"weight":6.973,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.762,"bearings":[127,308,321],"out":2,"in":0,"turn_duration":0.018,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,313],"duration":6.758,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":6.082,"geometry_index":11244,"location":[4.291514,49.052704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[150,335],"duration":12.453,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":11.207,"geometry_index":11250,"location":[4.290454,49.053542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,257],"duration":2.699,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":2.43,"geometry_index":11263,"location":[4.288431,49.054656]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,240],"duration":6.375,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":5.738,"geometry_index":11265,"location":[4.287875,49.054549]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,237],"duration":5.793,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":5.215,"geometry_index":11268,"location":[4.286623,49.054032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":0.07,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":0.066,"geometry_index":11269,"location":[4.285428,49.053532]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,238],"duration":18.801,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":16.922,"geometry_index":11270,"location":[4.285415,49.053527]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[4.283119,49.050206],"geometry_index":11287,"admin_index":8,"weight":22.883,"is_urban":false,"turn_weight":15.5,"duration":8.219,"bearings":[1,15,192],"out":2,"in":0,"turn_duration":0.014,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"location":[4.282664,49.0481],"geometry_index":11291,"admin_index":8,"weight":11.191,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"turn_weight":2,"duration":10.211,"bearings":[7,189],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":41.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.418,"geometry_index":11297,"location":[4.281785,49.045361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":24.531,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":21.445,"geometry_index":11318,"location":[4.283148,49.032024]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,335],"duration":76.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":67.047,"geometry_index":11326,"location":[4.288024,49.024748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.863,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.625,"geometry_index":11353,"location":[4.298046,49.001288]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.398,"geometry_index":11354,"location":[4.297868,49.000701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":22.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.652,"geometry_index":11355,"location":[4.297731,49.000243]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":3.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.906,"geometry_index":11358,"location":[4.295905,48.993792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":13.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.207,"geometry_index":11359,"location":[4.295661,48.992868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":0.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.336,"geometry_index":11364,"location":[4.294643,48.988997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":12.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.078,"geometry_index":11365,"location":[4.29461,48.988895]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.195,"geometry_index":11373,"location":[4.292843,48.985502]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":10.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.609,"geometry_index":11374,"location":[4.292801,48.985442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":3.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.703,"geometry_index":11378,"location":[4.29057,48.982721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":28.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.863,"geometry_index":11379,"location":[4.289919,48.981977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":3.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.727,"geometry_index":11391,"location":[4.28478,48.974405]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.284452,48.97357],"geometry_index":11393,"admin_index":8,"weight":10.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.094,"bearings":[14,192,199],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.283781,48.97011],"geometry_index":11398,"admin_index":8,"weight":7.797,"is_urban":false,"turn_weight":0.5,"duration":8.113,"bearings":[2,181,356],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,355],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.367,"geometry_index":11401,"location":[4.283893,48.967791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.824,"geometry_index":11402,"location":[4.283911,48.967675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":48.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":43.5,"geometry_index":11403,"location":[4.283954,48.967412]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.789,"geometry_index":11414,"location":[4.289294,48.954027]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,350],"duration":2.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.887,"geometry_index":11415,"location":[4.289358,48.953776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.395,"geometry_index":11416,"location":[4.28945,48.95318]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.289469,48.953054],"geometry_index":11417,"admin_index":8,"weight":14.457,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.531,"bearings":[174,177,354],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.289665,48.948241],"geometry_index":11421,"admin_index":8,"weight":9.891,"is_urban":false,"turn_weight":1,"duration":10.168,"bearings":[3,185,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189],"duration":118.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":103.984,"geometry_index":11424,"location":[4.289279,48.945978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,180],"duration":38.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.461,"geometry_index":11437,"location":[4.283173,48.919702]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":2.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.344,"geometry_index":11440,"location":[4.283599,48.91112]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,186,356],"duration":13.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.641,"geometry_index":11441,"location":[4.283659,48.910518]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.284263,48.906719],"geometry_index":11443,"admin_index":8,"weight":7.922,"is_urban":false,"turn_weight":0.5,"duration":8.254,"bearings":[173,332,353],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":86.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":75.68,"geometry_index":11444,"location":[4.28474,48.904334]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,185],"duration":53.73,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":47.008,"geometry_index":11457,"location":[4.290003,48.879412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":19.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.961,"geometry_index":11464,"location":[4.286158,48.863943]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":1.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.727,"geometry_index":11470,"location":[4.285321,48.858318]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,179],"duration":21.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.199,"geometry_index":11472,"location":[4.285313,48.85775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":70.953,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":62.078,"geometry_index":11476,"location":[4.285948,48.851415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":59.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":52.328,"geometry_index":11484,"location":[4.288714,48.830961]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,193],"duration":1.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.645,"geometry_index":11493,"location":[4.288666,48.813701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":142.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":124.715,"geometry_index":11494,"location":[4.288479,48.813173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.68,"geometry_index":11518,"location":[4.254851,48.772823]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,218],"duration":28.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":25.254,"geometry_index":11519,"location":[4.254653,48.772645]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":2.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.652,"geometry_index":11523,"location":[4.24619,48.766438]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225,232],"duration":11.957,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.754,"geometry_index":11524,"location":[4.245274,48.765838]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.241605,48.763372],"geometry_index":11528,"admin_index":8,"weight":7.121,"is_urban":false,"turn_weight":0.5,"duration":7.375,"bearings":[27,43,223],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,219],"duration":83.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":74.77,"geometry_index":11531,"location":[4.239473,48.761778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.25,"geometry_index":11549,"location":[4.227523,48.739463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":22.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.484,"geometry_index":11550,"location":[4.227505,48.739382]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.027,"geometry_index":11556,"location":[4.225281,48.73303]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[19,201,207],"duration":14.566,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":13.102,"geometry_index":11557,"location":[4.224964,48.732418]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.222481,48.72858],"geometry_index":11561,"admin_index":8,"weight":7.324,"is_urban":false,"turn_weight":0.5,"duration":7.59,"bearings":[8,25,205],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":8.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.227,"geometry_index":11562,"location":[4.221134,48.726633]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.684,"geometry_index":11563,"location":[4.219699,48.724577]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,203],"duration":41.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":36.25,"geometry_index":11564,"location":[4.219564,48.724383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":38.402,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.582,"geometry_index":11573,"location":[4.21252,48.711781]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.773,"geometry_index":11584,"location":[4.20198,48.701538]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,224],"duration":101.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":88.66,"geometry_index":11585,"location":[4.201714,48.701351]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.41,"geometry_index":11602,"location":[4.171232,48.675991]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,193],"duration":12.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.863,"geometry_index":11603,"location":[4.171179,48.67586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.754,"geometry_index":11607,"location":[4.170233,48.672328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":109.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":95.449,"geometry_index":11608,"location":[4.170198,48.672088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.895,"geometry_index":11630,"location":[4.178487,48.641138]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[169,173,349],"duration":35.852,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":31.363,"geometry_index":11631,"location":[4.178569,48.64085]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.180854,48.630593],"geometry_index":11636,"admin_index":8,"weight":49.879,"is_urban":false,"turn_weight":1,"duration":55.871,"bearings":[174,345,353],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":63.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":55.75,"geometry_index":11647,"location":[4.181355,48.61449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.844,"geometry_index":11658,"location":[4.180172,48.596135]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":85.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":74.438,"geometry_index":11659,"location":[4.180234,48.595863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,344],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.652,"geometry_index":11670,"location":[4.192069,48.569419]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,344],"duration":82.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":71.859,"geometry_index":11671,"location":[4.192158,48.569207]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.613,"geometry_index":11685,"location":[4.189607,48.545792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":1.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.359,"geometry_index":11686,"location":[4.189505,48.545594]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":3.887,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.492,"geometry_index":11687,"location":[4.189278,48.545172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":2.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.543,"geometry_index":11688,"location":[4.188689,48.54412]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":17.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.172,"geometry_index":11689,"location":[4.188268,48.543353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":2.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.859,"geometry_index":11693,"location":[4.185665,48.538395]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,198],"duration":10.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":9.414,"geometry_index":11694,"location":[4.185382,48.537836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":19.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":17.734,"geometry_index":11696,"location":[4.183979,48.534956]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.094,"geometry_index":11699,"location":[4.181472,48.529496]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196,207],"duration":13.137,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":11.816,"geometry_index":11700,"location":[4.181186,48.528854]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.179642,48.525193],"geometry_index":11701,"admin_index":8,"weight":7.754,"is_urban":false,"turn_weight":1,"duration":7.512,"bearings":[0,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":99.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":87.133,"geometry_index":11702,"location":[4.17865,48.522848]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":119.277,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":104.363,"geometry_index":11724,"location":[4.164918,48.49233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":98.18,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":85.898,"geometry_index":11750,"location":[4.157835,48.454237]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,201],"duration":3.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.738,"geometry_index":11765,"location":[4.148469,48.427064]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,198],"duration":4.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.652,"geometry_index":11767,"location":[4.147992,48.426221]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,195],"duration":30.73,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.871,"geometry_index":11768,"location":[4.147457,48.425098]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,359],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.367,"geometry_index":11775,"location":[4.145724,48.416555]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[176,183,359],"duration":9.699,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":8.707,"geometry_index":11776,"location":[4.145731,48.416119]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.43,"geometry_index":11780,"location":[4.146112,48.413428]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,351],"duration":4.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.484,"geometry_index":11782,"location":[4.146277,48.412678]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.146671,48.411307],"geometry_index":11784,"admin_index":8,"weight":6.84,"is_urban":false,"turn_weight":0.5,"duration":7.051,"bearings":[169,327,349],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":7.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.438,"geometry_index":11786,"location":[4.1473,48.409348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":85.27,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":74.605,"geometry_index":11787,"location":[4.147969,48.407305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":2.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.074,"geometry_index":11789,"location":[4.155724,48.383607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,348],"duration":133.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":116.855,"geometry_index":11790,"location":[4.155944,48.382931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.789,"geometry_index":11810,"location":[4.165405,48.345542]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":25.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":21.977,"geometry_index":11811,"location":[4.165445,48.345282]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":0.891,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.773,"geometry_index":11816,"location":[4.166756,48.337177]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[175,177,354],"duration":31.605,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":27.648,"geometry_index":11817,"location":[4.166795,48.336928]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.166897,48.328114],"geometry_index":11824,"admin_index":8,"weight":57.969,"is_urban":false,"turn_weight":1,"duration":63.305,"bearings":[5,186,358],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,353],"duration":55.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":50.375,"geometry_index":11836,"location":[4.164338,48.310123]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":0.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.34,"geometry_index":11846,"location":[4.16601,48.294214]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186,203],"duration":4.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.262,"geometry_index":11847,"location":[4.165993,48.294111]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":11.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.488,"geometry_index":11849,"location":[4.165774,48.29277]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.165218,48.28948],"geometry_index":11851,"admin_index":8,"weight":6.527,"is_urban":false,"turn_weight":0.5,"duration":6.707,"bearings":[1,6,186],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,186],"duration":5.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.988,"geometry_index":11853,"location":[4.164929,48.28757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":37.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":33.863,"geometry_index":11854,"location":[4.164676,48.285986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,358],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.988,"geometry_index":11862,"location":[4.16402,48.275218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,359],"duration":11.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.621,"geometry_index":11863,"location":[4.164031,48.274895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":2.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.957,"geometry_index":11864,"location":[4.164225,48.271511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[178,357],"duration":34.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":30.047,"geometry_index":11865,"location":[4.16427,48.270882]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.875,"geometry_index":11869,"location":[4.165361,48.261055]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,353],"duration":66.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":58.438,"geometry_index":11870,"location":[4.165418,48.260766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":33.715,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":30.324,"geometry_index":11882,"location":[4.170849,48.24181]},{"bearings":[152,332],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"geometry_index":11888,"location":[4.176587,48.233038]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Paris"},{"type":"text","text":"/"},{"type":"text","text":"Orléans"}],"type":"off ramp","modifier":"right","text":"Paris / Orléans"},"distanceAlongGeometry":96581.516}],"destinations":"A 26: St Gibrien, Épernay, Troyes, Orléans","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 26 exit toward St Gibrien/Épernay/Troyes/Orléans.","modifier":"slight right","bearing_after":321,"bearing_before":307,"location":[4.292913,49.051823]},"speedLimitSign":"vienna","name":"Autoroute des Anglais","weight_typical":2645.062,"duration_typical":2974.172,"duration":2974.172,"distance":96581.516,"driving_side":"right","weight":2645.074,"mode":"driving","ref":"A 26; E 17","geometry":"}i{p|Aar_eGiLtO_OxZwX|i@mNtXqDtGkExF{FzGiHnGyFtEwU~NoHvEiCnBqDhD}BxCyCnEaDfHkDfKcCbMqAvJs@dKUtJThKpAxPbC|O|CnLfLn_@bMf_@f^tiAHXfHnUxDpJxEvJdFdJlHvJ`IpHtGzFlIzF~I`FdLtE~HdChIzBvLdDfb@`JlNfDxVvFbFs@nJ|BpKvBjOvBdzA~OfPhCzS`E~ZzHtk@~NxWfGpb@lIv`@|GrWvD`p@xHvy@nHbo@`D~c@jAfo@p@tw@a@|Z{@v_@{Apa@uBHA`]qCfb@iEja@_Flb@kG~_@uG`w@_QxfAoYlj@aRhi@cSfl@qV|kAgl@h~@mi@he@sY|v@ag@zq@ud@v{@yj@j~@il@vDaCzbAim@j}@ug@j_Akh@v}@ag@~{@ug@`mMc{HbXsNh[oOb`@{Pl\\qM|`@sMnTiGnUaGhm@gMhl@oIbp@_Hro@qDv`@aAjc@GdY^|]|@|ZvBbXrBx[|Dhv@`Mh_@xHtc@bJr[pGphAvShfHbtAha@fGvx@fNtaAxNz{@|Mdp@|Kfd@lI|ZnHjE`AxT|Fb\\zJp\\pLx]`Nj\\hOx]vQzRlKtSnMvBrAjQ|Kh\\|T|b@n\\luA`jAnm@tg@j`A~x@j^dZdc@z[vOhLte@j[bh@~[b_@jTl^bSbe@bV|~@pb@vn@tUj]pLf[dJ|VhHb^xHxe@`Jzw@zJbo@nEhh@tAhdA^n^{@bk@cEfFc@lOuAhQ}A|}AcU|bA}TjhA_[lwBqv@t{@ub@xfB}w@nnAod@b~Agd@zrA}Xpe@{HtN_Cfd@wDzFe@lvAaMxvAqBvdARxv@vCnbAxGtt@bJfSdChO~BraBtZhdBde@zt@dWxwFv~Ab`FflArgDbm@|qDfb@hlCjRtxBvGdCH|iClDnoCUrh@GppHuFd|DuQrd@wBvtBmOtvBiT`tCy\\~sF}o@zfCo]~tBm`@nbCyi@pvEqkA`bCak@li@yKj}@_NtgAwLniBuMvuAcCh`Bs@poBjHvx@jGlkChZrxCnb@hyDbl@zrCph@rqDnu@deB|ZzfAtP`~AjPtcAfHfm@xBro@~A`Td@vCBv]Jbq@Y|rBcEzmEc\\~UsB|jCcUnfEi_@~qDoXjmDeYxyCiV~vAqLzxDkRz{CoIfyDwIdnEiMj`G{QfbBqBzsAfBpfAxE`gAjLdpAzT~QdD~_@tJbkCrt@niA~d@baB|y@v@`@xrAn{@~lBjzAjqAvnAhjBxqBdcBnjB`xBb_CbiBvkBziB|iBzsAttAbmAxkAhoBvcBzoBf|A~aBtkAllCtgBxtBpvAdwBbwAxeCv`BvrC|pBnaCxqB|lBhoBbJjKhpBrdCviAhaBp~AthChgBh~Cnd@fx@t^jn@xgArlBfa@tq@jNrT`a@tn@dq@r`AjN|RzSnXbc@li@f_BrhBxsAtpAxzAtlArmArz@fwAd{@djA~j@|iApf@x_Bnj@jgApYv_A`TpEbAbw@lNnwAnSl{Cx`@baCn]bkA`P`Db@jzAnSt_AnRl|Aj^doAda@`f@xQf[rMfe@xR~l@zYt{@zd@zx@fe@hjAds@txBdsAn_CtxAbKlG~dBbbAhcBt{@hhAfh@vdAxd@`tBtz@dgD~uArhAvd@jfAth@~JfFrPrIjy@~f@jv@tg@jeAry@`z@ls@xf@ff@t{@v`Anq@bx@dfAxtAfeA~xA|uAluBtJrO`zA~bCh`C`hEnyI`uOpC`FptF~_K`t@vjA|eAxwAlD|D|dAhoA~gAthAjoAjhAjeAzv@jdAlp@xeArk@~z@h`@du@vYnyA`e@dGhBt~@tTv_AjQ`m@tIfm@jG~MdAdj@zDhi@pBlw@~@p`@b@hoAsBvmAkHhsA}NnoAoT~pAwZjdBsi@prBer@zaCsz@~aAe]n`Beg@||Aka@|`Bq^dxDgm@`lCu]xsBi[fcBwZ`_B_ZlHuA~PcDflCgg@flBuZ~sB{VziCeYteCyW~wAmMbE_@l{BaTbdCaVpkBmNb`B{Drz@G~qAbDnyCzSv}B`SdWvBjlBbPjmCnY~eDz]roCfWzvApIhp@tBbtA|Bv{A}AvhBcHdeBcPx{@yL~O{BpjC_h@hg@sNdeAcZlqDesAf_Cy~@bxFmzBz}FsvBdtCucAniEgzA`EwAfiFeeBfLqDp{Ayc@`[qHf`Bc`@~eB_Yn{AqMrsBaIfxA?p`BfE`iAzHr|BdXhyB|d@j{Bbr@~cBvq@ffElkBjKjEjYdMv`Axc@|n@hYt^|Ot}Atq@xiBtv@tkAjf@|a@tPl`Al_@pqBfv@xjAlc@~oCraAlwBrt@bg@zPxcFn_BpqC~|@nm@dSdv@nXhx@|Zb_B|q@|jB|}@`vA~v@rcEnlCf[zUr~B~aBpeB|mApn@fb@lf@pYnf@rX~bAdg@xtAbj@~eAd]zoAf[|mA~SbiAfNplAfIvyA`ErwFiHle@m@vlBkDndCeC~}BgBvrBm@rtCwA`bCqAvbB?lz@vAzfA`Grx@dH|bAhNl|@xPdsAp\\lfAp]`rChfAfcCfaAdcAb_@frAxc@xoAx\\vs@`O|}Bb^|qDde@PB|xBpYhH`Aj_BfTdjBrRvv@xEtlAlGf`E|KxbBlFncAtEzp@~E|z@dKh_A`OhnAzWdkAp]xlAxd@jfBdy@|gNnzHx[`PzVvKdeAl`@toAp`@n~@rTf~@tQjsA~QliAnI|uAbEvoAe@fZMlI_@d`@}Arq@{D|hA_MxMyA`_@oFj~@}PhUuEzYaGp~Ag^t~Byh@fcg@scLzcEa_Afi@wLpxByc@hpBmYdfAwKjnBgNd{CmRvdA}JhyA_RddCmc@zmBme@d|Byp@`y@kUruD{fAr`Da}@bpAmZd~@yQ`t@_MltA_Rtz@{IrhJiy@l~BgSfOoAtAMnpBqQvdCqTjnCsVfpBwPpNmA|}AgL|fA{E~kA_BziAm@vq@`A|dBrElnAnHn`AtHv~@|JrxAjSnpEv{@~hCjg@xaAbP|cBdPhcAlFz`Bl@|}@{Av~@mEl`BaPx|@yN~yAgZnaFybAlz@uKtiAcKbbAaEf}AyAbfAxAjpAbI~eDbZlE`@n}@dIhTnBlw@hHdtClXrqAlLvc@rC~aBxN|x@hH|hCtTrp@vEvp@~Ct}@pCb}@bAbcCm@xwB_FdSUnrEcKhf@yA|lCsFx_E_PpoCeSzeCkV`QqBb@GrsC}^hvD}g@|kDee@zyBsYtpBg\\raAkSjkAmXhkAa[f}A}d@~yBqx@rD{Az{@m^plBw|@|zAow@tfBgeAhpAoy@zcBeoAzh@i`@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 43 miles.","announcement":"Continue for 43 miles.","distanceAlongGeometry":69435.289},{"ssmlAnnouncement":"In a quarter mile, Take the A 19 exit.","announcement":"In a quarter mile, Take the A 19 exit.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Take the A 19, E 511 exit toward Sens, Provins.","announcement":"Take the A 19, E 511 exit toward Sens, Provins.","distanceAlongGeometry":155.556}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[151,165,332],"duration":3.473,"turn_duration":0.017,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":1,"weight":3.109,"geometry_index":11889,"location":[4.17712,48.232368]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,338],"duration":23.09,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":8,"out":0,"weight":20.777,"geometry_index":11894,"location":[4.177462,48.231768]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.17394,48.228901],"geometry_index":11921,"admin_index":8,"weight":32.582,"is_urban":false,"turn_weight":26.75,"duration":21.496,"bearings":[65,77,258],"out":2,"in":0,"turn_duration":15.017,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,250],"duration":28.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":26.043,"geometry_index":11925,"location":[4.170902,48.228343]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234,315],"duration":9.949,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":8.949,"geometry_index":11938,"location":[4.158917,48.223493]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,243],"duration":7.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.703,"geometry_index":11944,"location":[4.154855,48.221738]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,251],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.797,"geometry_index":11949,"location":[4.151532,48.22077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,252],"duration":8.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":7.652,"geometry_index":11950,"location":[4.15117,48.220685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,260],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.855,"geometry_index":11957,"location":[4.147594,48.220081]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,263],"duration":7.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":6.516,"geometry_index":11958,"location":[4.14721,48.220035]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,268],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.5,"geometry_index":11963,"location":[4.14416,48.219845]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,268],"duration":5.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":4.773,"geometry_index":11964,"location":[4.14393,48.219839]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,272],"duration":1.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.941,"geometry_index":11967,"location":[4.141747,48.219836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,272],"duration":20.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.105,"geometry_index":11968,"location":[4.14131,48.219844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,283],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.574,"geometry_index":11974,"location":[4.132578,48.220625]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,284],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":2.574,"geometry_index":11975,"location":[4.132332,48.220664]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.131211,48.220843],"geometry_index":11977,"admin_index":8,"weight":1.957,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.121,"bearings":[103,284,293],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":11.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.633,"geometry_index":11979,"location":[4.130368,48.220978]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.125799,48.221697],"geometry_index":11982,"admin_index":8,"weight":7.625,"is_urban":false,"turn_weight":0.5,"duration":7.707,"bearings":[90,103,283],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,279],"duration":0.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.117,"geometry_index":11986,"location":[4.122558,48.222147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":0.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.324,"geometry_index":11987,"location":[4.122504,48.222153]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,279],"duration":65.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":60.836,"geometry_index":11988,"location":[4.122361,48.222169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,279],"duration":3.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":3.387,"geometry_index":12001,"location":[4.094168,48.22343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,276],"duration":27.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":24.426,"geometry_index":12002,"location":[4.092607,48.223592]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,279],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.148,"geometry_index":12008,"location":[4.080957,48.224176]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":47.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":42.445,"geometry_index":12009,"location":[4.080429,48.224231]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,299],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.547,"geometry_index":12026,"location":[4.059263,48.229891]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[119,299,303],"duration":1.23,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.09,"geometry_index":12028,"location":[4.058535,48.230163]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,299],"duration":22.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":20.609,"geometry_index":12029,"location":[4.058067,48.230337]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,286],"duration":6.609,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":5.934,"geometry_index":12044,"location":[4.048746,48.233061]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,281],"duration":84.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":73.953,"geometry_index":12047,"location":[4.045631,48.233584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,298],"duration":72.371,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":63.32,"geometry_index":12069,"location":[4.005802,48.239631]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,320],"duration":93.273,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":81.609,"geometry_index":12087,"location":[3.981266,48.253167]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":2.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.934,"geometry_index":12112,"location":[3.951344,48.271324]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[100,278,289],"duration":19.062,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.66,"geometry_index":12113,"location":[3.950395,48.27144]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.942284,48.271565],"geometry_index":12120,"admin_index":8,"weight":8.566,"is_urban":false,"turn_weight":1,"duration":8.652,"bearings":[72,86,266],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,270],"duration":14.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":12.465,"geometry_index":12122,"location":[3.938502,48.271417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,286],"duration":131.887,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":115.391,"geometry_index":12130,"location":[3.932312,48.271898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,265],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.688,"geometry_index":12153,"location":[3.875113,48.272895]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[85,264,270],"duration":20.723,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":18.641,"geometry_index":12154,"location":[3.874297,48.272846]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.864222,48.272755],"geometry_index":12160,"admin_index":8,"weight":7.844,"is_urban":false,"turn_weight":1,"duration":7.613,"bearings":[89,95,277],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,282],"duration":11.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.473,"geometry_index":12163,"location":[3.860957,48.273075]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,284],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.137,"geometry_index":12165,"location":[3.856023,48.273824]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,282],"duration":71.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":64.246,"geometry_index":12166,"location":[3.855492,48.273912]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,284],"duration":21.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":19.711,"geometry_index":12179,"location":[3.824378,48.273995]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[116,295],"duration":1.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.578,"geometry_index":12183,"location":[3.815339,48.2764]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,292],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.301,"geometry_index":12184,"location":[3.814628,48.276619]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,293],"duration":24.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.41,"geometry_index":12185,"location":[3.814493,48.276656]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,266],"duration":12.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.934,"geometry_index":12195,"location":[3.803572,48.277957]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,251],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.227,"geometry_index":12200,"location":[3.798194,48.277363]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,253],"duration":179.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":161.523,"geometry_index":12201,"location":[3.798094,48.27734]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,281],"duration":1.57,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":1.398,"geometry_index":12227,"location":[3.722618,48.269173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.539,"geometry_index":12228,"location":[3.72195,48.26926]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,279],"duration":56.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":49.613,"geometry_index":12229,"location":[3.72167,48.269296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,256],"duration":185.309,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":162.129,"geometry_index":12238,"location":[3.697205,48.268399]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,231],"duration":31.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":28.164,"geometry_index":12278,"location":[3.617484,48.245648]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.324,"geometry_index":12288,"location":[3.603912,48.241317]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[78,260,265],"duration":11.418,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":10.27,"geometry_index":12289,"location":[3.603734,48.241292]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.598735,48.240826],"geometry_index":12292,"admin_index":9,"weight":8.051,"is_urban":false,"turn_weight":1,"duration":7.844,"bearings":[72,84,265],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,269],"duration":13.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12.469,"geometry_index":12298,"location":[3.595254,48.240694]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[94,276],"duration":57.031,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":51.324,"geometry_index":12305,"location":[3.589088,48.240833]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.504,"geometry_index":12322,"location":[3.564252,48.244403]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[101,280,284],"duration":33.344,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":29.992,"geometry_index":12323,"location":[3.56303,48.244564]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.548604,48.246076],"geometry_index":12335,"admin_index":9,"weight":7.941,"is_urban":false,"turn_weight":1,"duration":7.512,"bearings":[96,102,282],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":43.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":39.578,"geometry_index":12339,"location":[3.545045,48.246642]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,251],"duration":217.625,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":195.844,"geometry_index":12367,"location":[3.524024,48.247112]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,273],"duration":57.523,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":51.766,"geometry_index":12475,"location":[3.420415,48.235025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.773,"geometry_index":12488,"location":[3.39246,48.234749]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,267],"duration":27.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":25.023,"geometry_index":12489,"location":[3.392039,48.234729]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":4.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.633,"geometry_index":12508,"location":[3.378813,48.236202]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,299],"duration":5.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.016,"geometry_index":12512,"location":[3.376997,48.236791]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.035,"geometry_index":12516,"location":[3.374592,48.237738]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":5.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.215,"geometry_index":12517,"location":[3.37458,48.237743]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.023,"geometry_index":12519,"location":[3.37288,48.238453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,302],"duration":18.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":16.258,"geometry_index":12520,"location":[3.372868,48.238458]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,299],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.035,"geometry_index":12524,"location":[3.365201,48.241658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,300],"duration":5.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.215,"geometry_index":12525,"location":[3.36519,48.241662]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,299],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.035,"geometry_index":12527,"location":[3.363433,48.24231]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[119,297],"duration":38.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":34.02,"geometry_index":12528,"location":[3.363422,48.242314]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,295],"duration":27.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":24.949,"geometry_index":12532,"location":[3.351499,48.245945]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[135,317],"duration":1.504,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.348,"geometry_index":12542,"location":[3.340503,48.251056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,320],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.023,"geometry_index":12543,"location":[3.340009,48.251411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[140,318],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.746,"geometry_index":12544,"location":[3.340004,48.251415]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[138,315],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.023,"geometry_index":12546,"location":[3.339374,48.251881]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[135,318],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.945,"geometry_index":12547,"location":[3.339368,48.251885]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[138,319,335],"duration":12.062,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":10.848,"geometry_index":12548,"location":[3.338988,48.252167]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,315],"duration":8.742,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.848,"geometry_index":12550,"location":[3.33568,48.254718]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[130,309],"duration":18.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":16.676,"geometry_index":12554,"location":[3.332901,48.256438]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,292],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.559,"geometry_index":12560,"location":[3.325983,48.259138]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,290],"duration":31.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":28.68,"geometry_index":12561,"location":[3.325729,48.259207]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,292],"duration":17.129,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":15.41,"geometry_index":12576,"location":[3.312584,48.261829]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[121,297],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.027,"geometry_index":12581,"location":[3.306018,48.264064]},{"bearings":[117,301],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"geometry_index":12582,"location":[3.306015,48.264065]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Sens"},{"type":"text","text":"/"},{"type":"text","text":"Provins"}],"type":"off ramp","modifier":"right","text":"Sens / Provins"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 19"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E511","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 511"}],"type":"off ramp","modifier":"right","text":"A 19 / E 511"},"distanceAlongGeometry":69464.953}],"destinations":"Paris, Orléans, Auxerre, Sens, Troyes-Centre","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the exit toward Paris/Orléans/Auxerre/Sens.","modifier":"slight right","bearing_after":165,"bearing_before":152,"location":[4.17712,48.232368]},"speedLimitSign":"vienna","name":"","weight_typical":1877.566,"duration_typical":2083.668,"duration":2083.668,"distance":69464.953,"driving_side":"right","weight":1877.566,"mode":"driving","ref":"A 5; E 54; E 511","geometry":"_zz~zA_m}}F`Fe@`HkEtG_ErHgE`Bq@~CqAbGoB~FoAxFs@hH]|EAtEPdGl@~GjAjFxAbGxBdIlEpGtElEbEdGxGhE`GfDlF|EhJ`DvHjDxJbClIvBhK`BtJtDd]jC~WnEdh@xC`LzCf`@|Ix~@nIlt@pGjf@|PhhAnLbp@pOxu@rKfd@jNjl@~HpZnIxZnO~g@`Qni@hY`x@tZxx@pQpd@nbBzdEn[tz@zMx^nNza@nNlc@lNzd@zRdt@jGlW~L`j@|Lzl@~Kno@dJxl@hDrUdDrVvCxUxFxh@~Ebh@|Cb`@bCx\\|Bd^zA~VrBlh@pA|`@dAh_@dAdk@h@ve@JjMXtl@Bri@Wbo@OhZQjWoB~zAuE~aBmJtwB_Fz_AsRxoCmAjNsBlUqFrn@}Fpp@ObByWtyCiLvuAyEbk@aOvfB}A~UsCrb@oCdg@KjB_@|G_B|YqD|u@iB|a@wJlhDmBl{CTnaC|Ad~B~B`uEaAtyC{BtiBeI`tCoT|wEwTf{EcIp`BiEbvAcC~gAiAjfAiCbqDeE~vCgLneDmB~_@ARuLxqBiKtsAiKfjAO`BePx|AkRd{AkUb_BkY|cBuPj|@iP`y@wUteAc`@v}Aw[jmAkv@luC{n@x`CuEzPUx@iOtj@{If\\W~@yI`\\aTjw@iSvx@_Lhe@qPvu@iGb[iFnWqLzn@oG~^eQpfAaMr|@yI~p@iDjXUfBeNzpAgHxv@gG~w@{I`sA}Ev|@oDj|@{C|`A_A`^q@l_@sEn~B{IltEqIfpEmLlqDyR~kDaOdpBqLntAwUnvBkaAb_I_^vmCm@|D_XzgBcVxtAg^rjB_m@tmCiG`VeVv_AmXvbAsd@~{AkWxv@qZz}@k]``Aob@peAsg@|kAqh@bjAovAzrCe|Af|CwvAdsCcp@|qAyo@hqAeeAtnBky@btA_h@ru@yVr^]f@ej@hu@e}@vfAuaBxoBwrGzyHcuCnjD_iAruAcl@vw@gVd^}l@vaAyg@paAua@r}@ke@piAq]x`AyZfbAgW``AyQtu@aQtx@aRdaA{Mpz@gKfs@cHtl@mJv|@qJreA}B~^gFhz@mDly@{Bxt@wBtnAi@zaABh}@rBzyBxA|}@|FjsDh@~v@Adb@O|c@s@rk@q@p[kAhd@eBzf@oH~vAgJjkAmL|eAsMtdAaq@ppEgQj{AqNt~AsNvkBaIfuAiFliAsFtsBcCn`BY|zA`CreD|IpiDtTjqEdZhbGdIlpBvCrzBt@baDaDxjX^~iB~DziChDdjAlFdyB`B~q@jHv{B~CzmC`@f~B?ZkAjhBkFp_CyDneA{Df{@iGhhAeElj@sg@|gGoDd`@{IdkAoMlsBgKvrCiF~xD|@nqDnJxuDzh@b}P`CrvApAbuAo@~aB{EzxA{Dhz@}Fz{@sO``BgOjrAw]prBuuA|kGuLlk@iAlG{Gd_@}P|~@uM~aAwMxnA}GbjAmG|nAuDdiAcBttAE~~@h@t{@rAxu@zBnu@|GnsAhKxwAjHnt@l@fErKd{@bLlv@jS`oA`z@z_FrM~w@jLvu@rIfm@fI`n@nP~sApUltBxsAfaM~vHzyr@~Mn}AfKnzAzKnyBfDrfAdDp{AtAzzAJzqBu@zjAyEt_BmEr}AgJhpBwLvkBkO`kBylAhvNmDvh@gAnPeKrqByNdwEcB`oBv@jnB|ChrBpH~jBly@hfStHvuAxAlPnVzqCf]pqCvSpwA`AxGtWd|ArX~rAd^j{Aph@foBbl@~qB|r@voBp{B~iFbj@d~Azi@nbBpc@pbBd`@~kBx\\`vB|[||C`Q~uC`Hd}CBnhB}HhnHyAl`CzAf_CbKhtDzh@`~LvI`fBjX`mChRbqA`UxqAxXhsAr[`rA~_@frApb@noAvuAjxCd|@h_BrzArtBjeCvyChj@hv@`o@d`A~o@bnArm@vuAjXlp@dc@znAbc@dxApd@|qBtPj|@jQfeApW~pB|O|cBfJnpAp@bJ~HzrAhHtxAxHziCtBldA\\zRXbU`@|_@TzT`@hr@Px|@I`q@c@r`A_A|jAe@zd@y@|d@yAbw@{Apj@aBni@mBdh@yBbj@_Ctg@}Bnd@yCxh@qDxk@}Dbl@sDnf@sDdd@cEhf@soCn_[kGrt@iExf@kDpe@sBlZaIjkAaHvhAwBja@oBt`@oCtm@iGp}AkK|iC{KjpCyDh{@sGhlAcFnz@qGx`A_IhfAeFnp@aFfi@mIr_AuI`aAkK|jA}KxlAuH|s@uFjl@cFnj@oG~u@_Efa@eElj@eCd`@aDrk@kCvk@aC~u@cA~k@e@pk@Sxc@H`g@Rlb@t@`k@dAzm@`Bbl@vClu@fF~aAlFpu@nEtj@~D~b@vEzd@lFxc@vGtf@jFp^|F|^dGh^~G|_@pS`hA|SlhAdIte@fHnb@lGnb@bGzb@nEl]|Df]pDr\\Db@nD|^hD`a@|Cra@`Ct_@rBz]`Ddr@jBfl@bBps@p@`o@`@jj@V~n@TvtAf@jlDj@fnDFpk@Lrl@^ni@p@|h@jAzk@zAfk@|C|v@nDzr@pIbmAdEhe@xEre@fEp_@~E|_@`Fh^tFp_@|Lhw@vMjw@bYx`BpLbr@xK`p@tIhk@lJ~q@lKv~@rEdd@~Etj@lC~^|Bd]xBz`@hBh_@|Bhl@vAtk@zAh_AhD~wD`A`{@bBn|@~Ahl@zBvk@|B`f@vCrf@|D`j@fEng@pCf[dD`\\tQrbBlRtcBtIpy@~ItaAfDha@vCba@bFfv@dEdv@~FxqAhHncB|Dtu@zEhv@lHz_AlI~aAvF|j@nG~k@zoAl_LxEjd@bE|d@jJnkA`D`d@~Cdf@zCrg@|Bde@bDvv@~Brv@zBbbApJxjFxIdiFjB~gApApgAz@ziAZpfADbx@Kxu@m@|oAgBp_BoAz|@{PxeLy@nr@c@dq@c@fwAD~xAL|p@\\vq@j@zq@x@bq@fP~nJlPdnJfAtl@f@hY~@l|@Xd`@R~`@A|_@Gfa@k@tk@q@xa@eA`d@_Bje@sBzf@{Bnd@}Ehv@yFfu@gHru@iIxs@}Ijq@mLzv@cLxo@wFlYoFnXsLni@uL|f@_ApDyLtd@aPlj@_Rvm@iHlUIVqIlXy`@xoAIVuDnLazCxqJkb@vsA{BbIGTa[|gAmKzc@GT{j@x`Ccj@fiCcuAnkHyt@roDeMlm@_ZprAe]~qAmX~~@}d@ztAke@xmAge@pgA}Yvm@qi@vcAqe@nx@eUz]GHkDlFwV|^GJsPvVwtCb`EuHrLyf@|y@}Rz^yWrh@}Ufh@mMpYim@f`B{e@x|AaZvjAeUtdA{RhdAiCzNuLzw@}Grf@_Hxj@qF~g@wFri@uB~TwC|[eHrv@kRhsBeJf_AwAtNgOpsA{PbqAcRfnAwKzo@sNbx@u[b~Ag]dxAqX~cAqf@|bBADgJh[Of@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 18 miles.","announcement":"Continue for 18 miles.","distanceAlongGeometry":28593.639},{"ssmlAnnouncement":"In 2 miles, Keep right to take A 19.","announcement":"In 2 miles, Keep right to take A 19.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take A 19.","announcement":"In a half mile, Keep right to take A 19.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 19 toward Orleans, Montargis.","announcement":"Keep right to take A 19 toward Orleans, Montargis.","distanceAlongGeometry":274.444}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[121,301,304],"duration":8.676,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":2,"weight":7.801,"geometry_index":12584,"location":[3.305542,48.264253]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":1.328,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":1.195,"geometry_index":12587,"location":[3.303518,48.265189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[128,308],"duration":31.199,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":28.078,"geometry_index":12588,"location":[3.303218,48.265347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":3.258,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":2.934,"geometry_index":12614,"location":[3.295953,48.268295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":8.23,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":7.406,"geometry_index":12616,"location":[3.295103,48.268087]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,240],"duration":3.137,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":2.824,"geometry_index":12620,"location":[3.29297,48.267391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":24.812,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":9,"out":1,"weight":22.328,"geometry_index":12622,"location":[3.292191,48.267066]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.290362,48.262971],"geometry_index":12650,"admin_index":9,"weight":29.172,"is_urban":false,"turn_weight":21,"duration":9.09,"bearings":[19,25,207],"out":2,"in":0,"turn_duration":0.013,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215],"duration":6.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":5.719,"geometry_index":12655,"location":[3.288376,48.260731]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,221],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.867,"geometry_index":12657,"location":[3.286719,48.25928]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,223],"duration":9.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":8.184,"geometry_index":12658,"location":[3.28644,48.25907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":0.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.84,"geometry_index":12662,"location":[3.283566,48.257206]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":4.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.891,"geometry_index":12663,"location":[3.283271,48.257035]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":37.684,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":34.84,"geometry_index":12664,"location":[3.281829,48.256233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217],"duration":20.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":19.391,"geometry_index":12672,"location":[3.269405,48.248735]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":3.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.02,"geometry_index":12680,"location":[3.264102,48.243614]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.387,"geometry_index":12682,"location":[3.26321,48.242879]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222,232],"duration":9.949,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.445,"geometry_index":12683,"location":[3.262478,48.242309]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.259632,48.240379],"geometry_index":12687,"admin_index":9,"weight":7.086,"is_urban":false,"turn_weight":1,"duration":6.586,"bearings":[41,47,227],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":4.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":4.578,"geometry_index":12690,"location":[3.257471,48.239131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":13.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":12.902,"geometry_index":12691,"location":[3.255882,48.238241]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,228],"duration":8.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":7.633,"geometry_index":12692,"location":[3.251405,48.235736]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,223],"duration":43.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":40.113,"geometry_index":12695,"location":[3.248492,48.233896]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":14.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":13.211,"geometry_index":12709,"location":[3.237925,48.221828]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,211],"duration":45.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":41.059,"geometry_index":12714,"location":[3.235255,48.217967]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234],"duration":57.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":50.344,"geometry_index":12725,"location":[3.221801,48.208406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":121.133,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":105.988,"geometry_index":12738,"location":[3.201074,48.19912]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[178,183,358],"duration":29.91,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":26.902,"geometry_index":12770,"location":[3.176612,48.170394]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.17546,48.162334],"geometry_index":12779,"admin_index":9,"weight":43.812,"is_urban":false,"turn_weight":1,"duration":47.578,"bearings":[14,195,358],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.469,"geometry_index":12796,"location":[3.166802,48.149798]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215,218],"duration":12.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":11.363,"geometry_index":12797,"location":[3.166397,48.149411]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.162842,48.146067],"geometry_index":12801,"admin_index":9,"weight":7.828,"is_urban":false,"turn_weight":1,"duration":7.605,"bearings":[27,35,214],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,212],"duration":2.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.316,"geometry_index":12805,"location":[3.16084,48.143995]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":132.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":118.906,"geometry_index":12807,"location":[3.160195,48.143275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,340],"duration":98.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":0,"weight":88.602,"geometry_index":12847,"location":[3.135979,48.105507]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":40.52,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":37.477,"geometry_index":12883,"location":[3.122563,48.076324]},{"bearings":[28,208],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"geometry_index":12907,"location":[3.110178,48.066158]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Orleans"},{"type":"text","text":"/"},{"type":"text","text":"Montargis"}],"type":"fork","modifier":"right","text":"Orleans / Montargis"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 19"}],"type":"fork","modifier":"right","text":"A 19"},"distanceAlongGeometry":28623.639},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Orleans"},{"type":"text","text":"/"},{"type":"text","text":"Montargis"}],"type":"fork","modifier":"right","text":"Orleans / Montargis"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 19","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 19"}],"type":"fork","modifier":"right","text":"A 19"},"distanceAlongGeometry":3218.688}],"destinations":"A 19, E 511: Sens, Provins, Orléans","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the A 19/E 511 exit toward Sens/Provins/Orléans.","modifier":"slight right","bearing_after":304,"bearing_before":301,"location":[3.305542,48.264253]},"speedLimitSign":"vienna","name":"","weight_typical":812.332,"duration_typical":875.078,"duration":875.078,"distance":28623.639,"driving_side":"right","weight":812.332,"mode":"driving","ref":"A 19; E 511","geometry":"yby`{AkcwhEud@dsAkInUmIxR{HvQov@`hBaF~K{F~L}FjKsFjJyHpLoJlMo_@nf@kLnOcGhJoDbHoDvHwCzHkD`LiC`M_BvJsAdL_AhMa@fKIvK?rHNpHXzGv@vKzA`OpD|XdEzYxEfYdKpi@bJbb@pH|YrIt[bHpVdJbXzGnRlF~MfEjJpEnInEtG|FlHxD~D|FrEdEdCnFdCtGhCfH|AdGn@~FR`GCbHo@dG{@nGqA`UkFtF{@bGi@nDUnGHdEZrEn@bF`AbFzA~d@bRtVxPx^nYt^~ZvWjV`[l[re@fh@`s@h}@bLlPva@ro@hYff@~\\~n@lXvj@tIlQbq@byAxoGvfN`j@tiA`Y~h@fZ~h@vZnf@t\\nf@hSpXtTnXlUvXjWbYdiAtiA~nAdlAjk@zk@pUfWhYv[xXx\\pW~[jTvYrb@vl@h^xi@d]ni@rc@xv@nUvc@dTda@bSja@tc@naArv@hbBp{CxvGhf@h`Ala@bv@fh@r|@dj@lz@n`@~i@~a@fj@rcAbmAp\\t^nc@|c@jhAdcAjn@df@np@de@xm@``@vk@z]~nEbeCxAx@fb@pUv|Ad{@lm@h^tXbQlg@l\\~a@xZpg@zb@hd@v`@pfAhgAphA|tAjg@`s@xj@~{@nt@poA`s@nrAn|@zfB`{@rjBf~@j{Bn|@x{B|w@d{BhOzc@hf@twAno@tsBb`Ar_D`aA|~Che@xwA~g@zxAbp@poB~l@|tA|i@nxAfH|Od~AhmDn~B~rEteBdvCfvAx}BdjBl{C~gAfgBzw@tqAb~@nzAbe@hs@d_@zi@z`@li@r[t_@bo@bq@v_@n^xUlRnXxSjn@jb@`n@t]d\\vNxf@hT`w@xVh`AlUbb@zGdz@`Jbd@dCfi@nAvaAi@lr@qDxk@eEbnBwNlbAqGnSc@tbBaC|i@d@fg@dA~s@tDbx@zGpr@jIpfArQj{@xQfZhIphAx[|i@|Qvi@~R~eAte@pp@jZby@hb@rh@bZlh@f[|f@z[zf@n]nu@vg@fs@jk@p^n[da@r^f{@`{@zc@he@`LrLdWhXzjBfrB@@lo@zr@rs@~u@bq@lq@bQlPbe@zb@bVjT`TpR|VvSbwEh}DxfF|tEtiGjuFffBnyAreBdwAt~@nz@zz@t{@xw@f}@ds@fz@`h@bq@xg@fr@rqA|fBfZ|_@z^vb@j_@f`@|_@t]v`@d\\~YbUpZjSn`@vUr`@nShvAxk@zd@zMbf@dL`dAbO||@vHle@xAxi@Zrq@aAne@kClk@iFfWoDtWqEjV}EbWoGhc@_M|GmB|h@kQdi@eTbZqMjp@qYj[iMj^}Nv`@uM`_@uKz^qJrb@qIj_@kEn^eCzc@cCjd@s@df@Wlh@bAbq@dCno@dFbo@xHdi@rKrm@fOfl@vQ~h@pUrd@dT`e@`Vpe@vWtr@zc@br@hf@pnFhxD||@`o@z}@`p@tz@zo@dy@rq@hh@jd@ph@je@zv@vq@fr@dt@vfBpjBzm@~t@vM~Olw@~`Afz@hiApw@dhAblBvuC~kBbxCxY``@xNfSvFrHdGxH~GpIfHpI`HnIfHfIfRjR`QjQvHpH~JrJdKrJxKxJxKdJbKhIbLxI~KjItFbE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 72 miles.","announcement":"Continue for 72 miles.","distanceAlongGeometry":116374.094},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 10.","announcement":"In 1 mile, Keep left to stay on A 10.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 10.","announcement":"In a half mile, Keep left to stay on A 10.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 10, E 05 toward Bordeaux, Tours.","announcement":"Keep left to stay on A 10, E 05 toward Bordeaux, Tours.","distanceAlongGeometry":220}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[3.11008,48.066035],"geometry_index":12908,"admin_index":9,"weight":15.863,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":16.715,"bearings":[28,206,219],"out":2,"in":0,"turn_duration":0.015,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":0.066,"turn_weight":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.066,"geometry_index":12921,"location":[3.106997,48.062745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":23.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":22.422,"geometry_index":12922,"location":[3.106973,48.062731]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":0.16,"geometry_index":12953,"location":[3.102396,48.057625]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,191],"duration":2.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.484,"geometry_index":12954,"location":[3.102384,48.057578]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,207],"duration":10.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.715,"geometry_index":12960,"location":[3.102095,48.056912]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":2.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":2.68,"geometry_index":12978,"location":[3.099498,48.055646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,253],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":1.402,"geometry_index":12980,"location":[3.09859,48.055532]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.098041,48.055423],"geometry_index":12981,"admin_index":9,"weight":2.582,"is_urban":false,"turn_weight":1,"duration":1.676,"bearings":[73,82,259],"out":2,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":3.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":3.09,"geometry_index":12983,"location":[3.097376,48.055335]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":9.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.359,"geometry_index":12986,"location":[3.096028,48.055131]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.091949,48.054497],"geometry_index":12989,"admin_index":9,"weight":5.539,"is_urban":false,"turn_weight":1,"duration":4.785,"bearings":[70,77,257],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":9.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":9,"out":1,"weight":9.316,"geometry_index":12990,"location":[3.089939,48.054185]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":3.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.332,"geometry_index":12991,"location":[3.085798,48.053542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,256],"duration":6.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.934,"geometry_index":12994,"location":[3.0843,48.053307]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.081714,48.052741],"geometry_index":13008,"admin_index":10,"weight":5.617,"is_urban":false,"turn_weight":0.5,"duration":5.406,"bearings":[62,68,247],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.984,"geometry_index":13009,"location":[3.079514,48.052119]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.945,"geometry_index":13010,"location":[3.078659,48.05188]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":9.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.055,"geometry_index":13011,"location":[3.078258,48.051765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,240],"duration":1.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.332,"geometry_index":13024,"location":[3.074411,48.050597]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,240],"duration":38.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":36.785,"geometry_index":13025,"location":[3.073875,48.050393]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.586,"geometry_index":13056,"location":[3.058218,48.046018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":54.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":51.504,"geometry_index":13057,"location":[3.057956,48.045997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,230],"duration":1.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.191,"geometry_index":13120,"location":[3.035558,48.041787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,232],"duration":5.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.879,"geometry_index":13121,"location":[3.035144,48.041556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,240],"duration":0.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.93,"geometry_index":13131,"location":[3.033334,48.040716]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":24.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":22.609,"geometry_index":13132,"location":[3.032969,48.040574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.133,"geometry_index":13150,"location":[3.023328,48.038]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.022396,48.037784],"geometry_index":13151,"admin_index":10,"weight":15.051,"is_urban":false,"turn_weight":15,"duration":15.062,"bearings":[71,251,258],"out":1,"in":0,"turn_duration":15.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":9.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.18,"geometry_index":13152,"location":[3.022365,48.037777]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,255],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.027,"geometry_index":13161,"location":[3.0183,48.036938]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.018283,48.036935],"geometry_index":13162,"admin_index":10,"weight":4.238,"is_urban":false,"turn_weight":0.5,"duration":4.051,"bearings":[69,75,255],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,257],"duration":30.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":27.141,"geometry_index":13166,"location":[3.016381,48.036608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,261],"duration":8.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.727,"geometry_index":13178,"location":[3.001986,48.034883]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":74.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":66.969,"geometry_index":13179,"location":[2.997873,48.034424]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":18.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.625,"geometry_index":13231,"location":[2.962012,48.03409]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,308],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.023,"geometry_index":13257,"location":[2.954176,48.036933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":1.199,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.09,"geometry_index":13260,"location":[2.953349,48.037375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":8.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.426,"geometry_index":13261,"location":[2.952963,48.037587]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[125,304],"duration":102.102,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":91.875,"geometry_index":13268,"location":[2.95031,48.038997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":12.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.609,"geometry_index":13356,"location":[2.90781,48.044652]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.488,"geometry_index":13360,"location":[2.902287,48.044393]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":123.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":108.078,"geometry_index":13361,"location":[2.90206,48.044383]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[100,280],"duration":4.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.102,"geometry_index":13456,"location":[2.850129,48.051682]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":13.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.062,"geometry_index":13457,"location":[2.848129,48.051926]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[104,286],"duration":4.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.102,"geometry_index":13465,"location":[2.842228,48.052721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,287],"duration":61.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":53.793,"geometry_index":13466,"location":[2.840274,48.053088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,296],"duration":30.867,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":26.992,"geometry_index":13537,"location":[2.814913,48.063345]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,273],"duration":0.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.508,"geometry_index":13581,"location":[2.800546,48.065901]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":32.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":28.203,"geometry_index":13582,"location":[2.800268,48.065911]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":21.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":19.664,"geometry_index":13613,"location":[2.78481,48.064542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.672,"geometry_index":13616,"location":[2.774427,48.063113]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.27,"geometry_index":13618,"location":[2.774072,48.063064]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,258],"duration":0.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.508,"geometry_index":13619,"location":[2.773247,48.062951]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.773103,48.062931],"geometry_index":13620,"admin_index":10,"weight":14.973,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.641,"bearings":[78,258,263],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,259],"duration":0.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.082,"geometry_index":13623,"location":[2.766049,48.061959]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.76601,48.061954],"geometry_index":13624,"admin_index":10,"weight":4.504,"is_urban":false,"turn_weight":0.5,"duration":4.465,"bearings":[72,79,258],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":4.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.281,"geometry_index":13629,"location":[2.764069,48.061701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":30.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":28.434,"geometry_index":13634,"location":[2.762037,48.061484]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":22.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":21.082,"geometry_index":13635,"location":[2.748736,48.06026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.688,"geometry_index":13657,"location":[2.738687,48.058776]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":2.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.258,"geometry_index":13658,"location":[2.738366,48.058719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.737298,48.058531],"geometry_index":13659,"admin_index":10,"weight":0.223,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.25,"bearings":[75,256,262],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":17.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.285,"geometry_index":13660,"location":[2.737193,48.058513]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":4.574,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.227,"geometry_index":13662,"location":[2.729635,48.05718]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":54.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":48.789,"geometry_index":13664,"location":[2.727668,48.056832]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,275],"duration":80.145,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":72.125,"geometry_index":13713,"location":[2.70468,48.052513]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.68,"geometry_index":13790,"location":[2.672689,48.062432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":7.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.922,"geometry_index":13791,"location":[2.671939,48.062608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.684,"geometry_index":13794,"location":[2.668765,48.06335]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":2.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.219,"geometry_index":13795,"location":[2.668459,48.063421]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.667464,48.063654],"geometry_index":13797,"admin_index":10,"weight":0.027,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.051,"bearings":[109,287,297],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,289],"duration":2.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.586,"geometry_index":13798,"location":[2.667445,48.063658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":0.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.113,"geometry_index":13800,"location":[2.666296,48.063927]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":6.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.055,"geometry_index":13801,"location":[2.666248,48.063938]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.663539,48.064571],"geometry_index":13803,"admin_index":10,"weight":4.762,"is_urban":false,"turn_weight":1,"duration":4.188,"bearings":[103,109,289],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":103.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":90.914,"geometry_index":13804,"location":[2.661617,48.06502]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":87.434,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":76.496,"geometry_index":13896,"location":[2.616522,48.079604]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[114,294],"duration":24.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":21.25,"geometry_index":13952,"location":[2.580071,48.093989]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":0.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.473,"geometry_index":13986,"location":[2.568637,48.095686]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,270],"duration":80.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":70.77,"geometry_index":13987,"location":[2.568405,48.095688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":54.066,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":48.652,"geometry_index":14006,"location":[2.532672,48.091699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":87.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":78.652,"geometry_index":14014,"location":[2.508789,48.088969]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.973,"geometry_index":14101,"location":[2.471211,48.082847]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":2.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.297,"geometry_index":14102,"location":[2.470773,48.082853]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.469726,48.082869],"geometry_index":14103,"admin_index":10,"weight":15.516,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.262,"bearings":[91,271,282],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.462715,48.082973],"geometry_index":14108,"admin_index":10,"weight":4.961,"is_urban":false,"turn_weight":1,"duration":4.422,"bearings":[84,91,271],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":97.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":88.078,"geometry_index":14111,"location":[2.460584,48.083005]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.648,"geometry_index":14215,"location":[2.41737,48.094042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,291],"duration":15.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.633,"geometry_index":14216,"location":[2.41704,48.09413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,279],"duration":35.328,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":31.777,"geometry_index":14237,"location":[2.409969,48.095453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.652,"geometry_index":14262,"location":[2.392853,48.095689]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,270],"duration":48.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":42.258,"geometry_index":14263,"location":[2.392549,48.095688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":19.641,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.18,"geometry_index":14289,"location":[2.369195,48.096953]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,283],"duration":83.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":72.766,"geometry_index":14299,"location":[2.35985,48.098225]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,295],"duration":87.738,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":76.762,"geometry_index":14347,"location":[2.321547,48.106283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":63.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":55.414,"geometry_index":14408,"location":[2.280215,48.112644]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":100.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":90.695,"geometry_index":14445,"location":[2.249505,48.112857]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":2.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.922,"geometry_index":14491,"location":[2.200907,48.113996]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284,289],"duration":9.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.324,"geometry_index":14492,"location":[2.199933,48.114161]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":7.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.836,"geometry_index":14495,"location":[2.196213,48.114789]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.193163,48.115307],"geometry_index":14497,"admin_index":10,"weight":21.59,"is_urban":false,"turn_weight":1,"duration":22.266,"bearings":[99,104,284],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,281],"duration":0.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.871,"geometry_index":14510,"location":[2.183875,48.11684]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,281],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.559,"geometry_index":14511,"location":[2.183491,48.116891]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.293,"geometry_index":14518,"location":[2.18095,48.117187]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":80.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":72.203,"geometry_index":14519,"location":[2.180814,48.1172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,248],"duration":59.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":52.098,"geometry_index":14592,"location":[2.142395,48.114105]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,224],"duration":17.73,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.508,"geometry_index":14654,"location":[2.120773,48.101656]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,237],"duration":50.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":44.609,"geometry_index":14677,"location":[2.114187,48.09797]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.629,"geometry_index":14739,"location":[2.091045,48.092686]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":18.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.523,"geometry_index":14740,"location":[2.090697,48.092683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":9.395,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.215,"geometry_index":14767,"location":[2.081607,48.093397]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[111,291],"duration":2.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.84,"geometry_index":14781,"location":[2.077259,48.094319]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[113,293,298],"duration":0.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.855,"geometry_index":14784,"location":[2.076316,48.094574]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,294],"duration":18.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.203,"geometry_index":14786,"location":[2.075919,48.094688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[115,295],"duration":75.855,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":66.367,"geometry_index":14790,"location":[2.068503,48.096978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,256],"duration":133.855,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":117.105,"geometry_index":14855,"location":[2.032286,48.098681]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":109.043,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":95.398,"geometry_index":14900,"location":[1.976587,48.076553]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234],"duration":79.68,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":69.711,"geometry_index":14941,"location":[1.936057,48.053836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":16.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.129,"geometry_index":14998,"location":[1.899127,48.047277]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":24.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":22.258,"geometry_index":15002,"location":[1.891066,48.046432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,263],"duration":1.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.977,"geometry_index":15011,"location":[1.87921,48.045208]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":10.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.516,"geometry_index":15012,"location":[1.878802,48.045174]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.809,"geometry_index":15013,"location":[1.874493,48.044833]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,263],"duration":52.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":47.363,"geometry_index":15014,"location":[1.87415,48.044806]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.031,"geometry_index":15046,"location":[1.852666,48.044709]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,250],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.797,"geometry_index":15047,"location":[1.852648,48.044705]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,249],"duration":7.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.773,"geometry_index":15048,"location":[1.852313,48.044622]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,237],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.426,"geometry_index":15056,"location":[1.849832,48.043793]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,236],"duration":2.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.488,"geometry_index":15057,"location":[1.849685,48.043728]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":0.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.066,"geometry_index":15061,"location":[1.848849,48.043332]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.848831,48.043323],"geometry_index":15062,"admin_index":10,"weight":3.309,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.684,"bearings":[53,233,244],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":12.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.645,"geometry_index":15066,"location":[1.847784,48.042793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":8.824,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":7.941,"geometry_index":15084,"location":[1.843593,48.041514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,245],"duration":3.125,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":2.812,"geometry_index":15093,"location":[1.840711,48.040829]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,233],"duration":10.68,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":9.613,"geometry_index":15099,"location":[1.839783,48.040482]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,198],"duration":10.477,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":1,"weight":9.43,"geometry_index":15119,"location":[1.837607,48.038589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,348],"duration":11.934,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":10.738,"geometry_index":15139,"location":[1.837441,48.036297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,343],"duration":0.586,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":0.508,"geometry_index":15146,"location":[1.838605,48.033762]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,342],"duration":4.426,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":3.98,"geometry_index":15147,"location":[1.838657,48.033652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[163,343],"duration":10.445,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":9.398,"geometry_index":15148,"location":[1.839066,48.032782]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,346],"duration":10.66,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":10,"out":0,"weight":9.594,"geometry_index":15152,"location":[1.839976,48.030764]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.840514,48.028726],"geometry_index":15160,"admin_index":10,"weight":22.305,"is_urban":false,"turn_weight":21,"duration":1.461,"bearings":[175,345,355],"out":0,"in":1,"turn_duration":0.014,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,355],"duration":6.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.141,"geometry_index":15161,"location":[1.840555,48.028397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":67.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":58.855,"geometry_index":15165,"location":[1.840787,48.026789]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,344],"duration":53.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":47.18,"geometry_index":15198,"location":[1.845375,48.011162]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":63.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":57.168,"geometry_index":15218,"location":[1.851434,47.999758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,349],"duration":18.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":16.648,"geometry_index":15243,"location":[1.858034,47.98622]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[176,186,356],"duration":29.824,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":27.582,"geometry_index":15253,"location":[1.858872,47.981901]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.85877,47.97454],"geometry_index":15269,"admin_index":10,"weight":13.438,"is_urban":false,"turn_weight":1,"duration":13.098,"bearings":[5,186,352],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":18.879,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.93,"geometry_index":15277,"location":[1.858121,47.971332]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":52.953,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":51.621,"geometry_index":15289,"location":[1.856547,47.966791]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.617,"geometry_index":15316,"location":[1.850282,47.954413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.273,"geometry_index":15317,"location":[1.850227,47.954265]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.871,"geometry_index":15319,"location":[1.850115,47.953957]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":2.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.871,"geometry_index":15320,"location":[1.85004,47.95375]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.849805,47.953057],"geometry_index":15324,"admin_index":10,"weight":7.785,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.809,"bearings":[12,192,204],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":4.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.031,"geometry_index":15328,"location":[1.849281,47.951306]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.195,"geometry_index":15331,"location":[1.849053,47.950397]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.849042,47.950353],"geometry_index":15332,"admin_index":10,"weight":11.008,"is_urban":false,"turn_weight":0.75,"duration":10.277,"bearings":[10,189,358],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":86.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":86.168,"geometry_index":15337,"location":[1.848585,47.947989]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,183],"duration":2.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.152,"geometry_index":15379,"location":[1.849277,47.928028]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":5.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.324,"geometry_index":15380,"location":[1.849241,47.92752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.164,"geometry_index":15382,"location":[1.849142,47.926286]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":8.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.234,"geometry_index":15383,"location":[1.849115,47.926007]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":1.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.59,"geometry_index":15384,"location":[1.848924,47.924077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":18.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":18.891,"geometry_index":15385,"location":[1.848886,47.923698]},{"bearings":[1,180],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":15394,"location":[1.848587,47.919319]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Bordeaux"},{"type":"text","text":"/"},{"type":"text","text":"Tours"}],"type":"fork","modifier":"left","text":"Bordeaux / Tours"},"distanceAlongGeometry":116404.094},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Bordeaux"},{"type":"text","text":"/"},{"type":"text","text":"Tours"}],"type":"fork","modifier":"left","text":"Bordeaux / Tours"},"distanceAlongGeometry":1609.344}],"destinations":"A 19, E 60: Orleans, Montargis","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 19 toward Orleans/Montargis.","modifier":"slight right","bearing_after":219,"bearing_before":208,"location":[3.11008,48.066035]},"speedLimitSign":"vienna","name":"","weight_typical":3219.203,"duration_typical":3538.109,"duration":3538.109,"distance":116404.094,"driving_side":"right","weight":3219.203,"mode":"driving","ref":"A 19","geometry":"e~utzA_ky|Dn@lDfpA`~@r_@vXfZxTxIfH`HjGhGpGhFxG`FzG`D|EdCtEhEpIzCpGZn@tGpNnHbPjd@zaAvQf`@tChGvCfGxCbGzC|FdD|FdDtFhDpFjD`FvD|EzDjE~DdEhExDhEhDpE|CpEjCxEdCzEtBzEdB`F`B`FtAbFlAdFhAhM~BjMzBtx@jMhMrBpJ~A|AVbF~@bFbA|EzA~EhBxErBrEbCtGfExExDfF`FpElF`EtFxDjGvDhH`CbFxBtF~BtHxB`IlBtIfBvIbBdKx@rGt@rHd@rG~@hNtBd\\lBpZxEha@jAxQbBvUbB`TdB`TlEbi@tEji@pEni@jY`iDnRr|Bdg@xaGnFdo@bF`l@@J~AfQx@lIz@lI|@dI~@nI`AlIdAbIhAfIjAfInAhIpA`IpAbItAdInD`Sze@nhC|Mlt@dF`XxTblAjJ~f@xDbSzDxR`BxH`BvHdBxHdBvHfBtHhBrHdB~G`BnGxAlFvKn`@jFfRfFhQxMxd@xMvd@b\\niAr\\rjAh\\ziAr\\rjAtMpd@dFvQ`FtQ~EfRpEjRfEjRzDvRrDbSbDbSzCnSnCnS`ChSvB|SlB`T~A`TvAjThA`T`AfT|@xTx@rTrB`j@rBfj@jC~t@h@jO|E~nAhFhuArBlj@rB|i@lB`j@hBhj@nBdj@rBdj@tB`j@rBbj@hBte@|Bbn@hFfuAjF|uApB`j@tB`j@x@pT~@pT`@tIb@vIf@tIh@vIl@tIp@tIt@tIv@tIv@`I|@pIdAzIdAhIfAjIjAdIlAbItAlItA`IvA|H|AdI`BzH`B|HdB~HhBtHlBrHrBxHnBnHrBjHxBhHzBdH|BdH`C~GbCzGdCxGnC`HnC~GpCnGnCjGvCpGxCjGvCbGxC|F~HfO~HbOpRn^nUfd@lMzXtFxMnCxGlCzGdCjGfCzGdCzG`C|G|B`HvFlQnF`QzGxUpEjPvEtQxEtRfEfR|DnR|D`SvD|RjJzf@xU~nAlDnRjDnS~C`SxClSxClSxCzSlHxg@~d@|bD~CrTnLfy@L|@fHzg@|G`h@jClSfCnSfCpShGvh@~BrS`ChT~C|YD`@fEta@rBzSpBzS~Eli@rEnh@jEji@bEni@xDdi@lDvi@pDfl@rGhkArIh~AdRtjDbRnjDnHltAxCzi@t[``GtCvi@lC~i@`Cti@xBjj@lBxi@fBrj@zAri@rAfj@fApj@~@~i@l@`b@HfGtExlDtE`lDvExkDhB~uAjBvuAhB~uAjBtuAlBvuAjBvuAhBruAVrTRtTJrTFjT@rTCbUKdTQrTWtT]zTa@jTg@tTm@jTw@zTy@hT_AfTgAnTmAjTqAfTuAxS_BlT_B`SoB`UoBbTuB~S{BxSaCvSgCtSmC|SuC|SyCrS}CdS_D`SoDlSmD`SqDvR{D~RcE`SaEfRmEtRmEdRsEdR}EbR_F`RgF|QgFrQsFvQmF|P_GvQ}F`Q}FlPgGxPqGzP{G|PmGtOkFfMo@xAaHdPaPt^gLbWoMjYgRpa@uQx`@cH~OaHjPsGlP{GfRuFbP{FhQwFtQuFbRaFxQaFbR}EpRuEzRgErRaEjSsDlSsDhTqDzT}C|S}DnY{BbQgCvSeCbT{BzSsBhTmB|SeBdT}AhTsAjTmAlTaAjS_ApTu@rTu@|Tq@hT}K`lDgBbj@u@rTy@rTaAjTiAjTuAnT{AfTcBdTiB~SsBdTgCvUqOjvAw^zeDaObsA{NhrAw^neDaGfi@}BxS{BzSuBdTsB`TiBrSmB~TeBlTaBfT{AbTwAnTsAfToAvTkAhTeAtTcApT{@tT}@vUs@vTo@rTk@rTg@rTa@~T_@tTWjTU~TO|TMvTEtTCnT?zTFxTH`UL~UT`VVhVZtT`@tTbCdwArBvjAN|I`Apj@^zT^pTbKdaGRdMhC~wA~BzuAbA`k@`A`j@\\lTXrTPzTJnTDrT?tTIlTMrTUtT[jTa@zTg@tTq@fTu@xT{@dTcAnTiAfTqAhTuA`T}A`TeBlTkBbToBzSyB~S{BtSgC~SiClSqCzSyCpS_DjScDfSqT~oAwIjg@iO|{@qQheAqIvg@iIrg@{B`NyBzN_DjSwBlNaE`X_DzSqH~g@oHdh@iHfh@sCzSqCnSmCvSmCvSmCzSkCtSgCvSgCtSgCvScCzScCzSaC|SgCzTcCzT}B~S_CnT{BfT{BdTwBdTwBfTkFni@cF|i@_Fpi@sEbi@sEti@mE~i@cEhi@aEfj@yDxi@sD|i@mDdj@kDlj@eDvi@qI`uAoI`uAqI|tAoIttAoIztAgDzi@g@bI}Bz_@iDzi@gD|i@oIrtA_JdyAgN~{BwTnpDkD`i@{Dri@aBfTgBnTgBvSoBpTsBpT}UbyB}CrVmCfTqCvSuCrSyCvS{CvSaDlSaDjSgDnSiDnSmDdSoDdSsD`SwD~R{D`S}D|RcE~ReEzRiEvRkEvRkEhRuEtRsEdR_F~R{E`R_FhRsFrS{FrSkGnTmFxQoFrQsFrQuFlQyFnQ}FjQ}FbQkGrQkGjQmGfQoGbQsG`Q}GfQ}GdQcQtb@kQ`b@uRnc@ajAzhCod@~cAkHfPgHhPkHtPcHvPkHnQgHtQ_HtQ{GvQaHrRiGhQaGdQaGpQyFlQwFrQyFdRqF`RqF|RgFlQgFpRaFjRcF`S{EzRmC~KuD`PqEbSmEdSqEfTuEhUkEvTwDhSwCfPYzAmDdSkDlSgDpSaDjS_D`TyCpSuCzSsC`TmC`TgCbTcApIaApIaCpT{BhTyBpTsBjTqBbUkB|TeBxTcBtUcBlVyAvTwAxVkArTiAnTcArT_AzTy@rTw@xTq@tTm@zTg@|Te@vT_@bU[pVSjPSlXO`UGtTCbU?|TBxTH~TJ`UR|TT`UX~T^hUf@`Uf@fUj@xTt@dUt@vTz@fU~@zTdA`UjA~UrAzU~AvWxAxTxAjT|Dbj@vJvtAlBxWfSprCzJbuA|AfTvVvkDzVllDth@vmHxAfSF|@`Fpr@f@~GzYzaErJfsAfUv`DHlAxCza@~AzU|A|UpAhSnAhStAzVpAzVjAxThA|TrBnb@nkAh~XlApYbAzT`AvTfAhTjAhTnAxTvArUxAlUzAlU`BjUbBhUtAhRzAhRfBnTjBlTnBnTpBlTtBxTxBxTpFri@hNruAvMzrApB`SvJvaAb@pExLlmAndA|hK~MzsAvE`e@~UjaCpFni@|B`TlCnVbC|SfC|SjC~SlCtSnCxSrCxSzCvSxCtS~CrS|CdSdDlShDnSjDnSnDbSnD`SnzAz_ItDbSjDvRbDhS|CfSvCtSnCtSfCvS~B`TxBdTlB~SfB`T~AfTxApTnAdTfAjT`AxTv@hTp@rTf@tT^lTVxTPxTB`N@vE@fUGfTOpTWnTUfPq@dYq@fUs@tScAjTgArToAlTwAnT_BfTiBfToBbTuB`T_CrSgCxSmCxSuCnS}CnSgDlSkD`SuD`S}D~R_EpRkEpRsErRwEbR_F|QiFbRsF|QwFvQ{FhQeGbQyaApnCk`@rfAm`@zfAiGbQiGdQaG`QcGhQ_GlQ}FpQwFlQwFpQuFtQqFxQoFzQmFxQiF|QeF`RcFbRaFfRaFhR{EdRwEfRyEvRwExRoEhRmElRmEzRkE|RgEzReE|R_ExR}D|RyDzRc@~BsC|NwDhSsDlSqDfSmDjSiDjSgDlSgDxSeDzS}ClS{CpSse@hdDo^`fC_Jzm@wSpwAiRrqAiEdZmCbRYlBwLvy@Gd@}F~`@{Gxd@U~AkRzqAeSluAa[bwBue@ldDwHzh@yHnh@mIni@qIbh@{I|g@eJfg@qJng@yJzf@gKvf@sKvf@_Llf@kLdf@sLte@}Lpe@kMje@sM|d@_Nvd@iNld@uNfd@}Nrc@kOtc@aPfd@wOdc@iPbd@yPje@qOvb@k`@pfAa^`bAoOlb@kOlb@oOpb@oOnb@eG~P_GxPaG~P_GfQ}FhQsEtNa@nAuFhQwFpQqFlQoFtQqF`RkFzQcFrQiF`RaFzQ}EzQyE~Q{EdRuE`RuElRuEpRqEpRyApGwBlJkEvReEpRgEvRaErRaE`S_EhSwDpRwDbS_E`TqDhS{DpTyD|TgDdSeDbSaDlS_DdS{ChSyCjSuCjSsClSqCnSmCnSmCxSiCzSeCxScCxScCfTyNxrAwNzrA{F|h@eGxh@oGjh@wGbh@_Ilk@kEpZ{ClS}ChS_DdSaD~RiDjSiDhSmDjSkDrRqDbSwDfSwD|RwDtR_EdSaEvRcExReEzRiErRkEpRmEnRoElRsEjRqLre@wLhe@eM`e@gF`RkF~QiFrQkFnQsF|QsFrQuFlQ{FrQuF`Q_GhQaGjQgGpQucC|kHw_CbcHsaChgHs_C|bHcOpc@_GfQ}FpQ{FvQqFrQkFrQkF`RcF`RcFhRwEfR{ExRoElRkEpRkEbSgGlZuErUuDlSoDfSmDvSgD|R}CnS}CxSuCpSqC~SsC~TeCbTkCrUeCdVsBdToBdTiBbTeBnT_BjTwAhTsAlToAhTiAxTeApT{@pTy@pTs@zTo@vTg@rTc@|T]tTWxTS|TKtTCpFCnMAvTBtTH`ULtTPzTXvT^xTb@|Th@rTn@xTr@zTx@xT`AvTbAtTjAnTnApTzpEfxt@pDnl@fMjuBvK|jBv\\v`Gbv@zcNtR`lD|^pwGtA`WbFt}@pJvdBpIv{AxHfuA~C`j@pApTrAnTtArT~ArTbB`UdB~ThBfTpBrU|BzVrBbTtBbTxBfT~B`T`CbTbCbThCzSlCzSnC|StCxStCvSxCtS~CxS~CjSdDpSfDlSjDjSnDlSpDbStD`SxDfS|D`S~D~RdE~RfE|RrKrf@tKxf@`XlmAhFzUhQdx@fX|mAfE~RbE~RfEfTtDdSzDpT|DtU`DdS|CrSxCvSnCfSlC`TfCzS~BvSxBzStBbTlBdThBfT`B|S|AhTvAjTpAnTjAnTbArT~@pTz@vTr@xTl@vTd@vTb@~TZ`UR|TNzTFvT@~TAnTGvTIxTUfk@i@fvASpj@Oh_@E`KSpj@Udl@KjZ_@l`AiAfxCUxm@i@tvAg@pvA]z}@U~m@?Bi@`uAcEx`LU|j@Szj@KxTOxTU|TYvT]~Tc@zTe@dUk@lTq@zTu@vTu@bT_A~TaApTeAvTkApToAnTsAlTyAxT}AnTaBlTeBlTkBjToBhTsBhTwBhT}B`T_C~ScCdTkC~SmC|SqCzSwCxSyCtS_DtScDrSiDrSkDnSqDjSuDdSwDfS{D~RcEbSeE|RiEzRkEtRyEdSyE`ScFbScF~RsFnSuFhSiF~QkFvQsFxQuFpQyFpQ{FhQaGjQeGfQgG|PiGxPsG|PuGxPmP|a@sPnb@iPxa@qPfb@uPpb@kP|a@wPnb@iP|a@iPva@uPlb@qPhb@wGrPwGzPkGnPqGfQoGnQ_GvPgGtQ{FfQ{FtQ{FzQsFzQiFnQoFlReF|QcFdR}EhR_FvRsEhRwEzRmEtRkEzReE|RcE`S}DzR_ErSsDzRqDpSoDrSgDhSgDzS_DlS{CrSyCxSuCdToC|SiCxSgCbTcCjT_ChTwB`TsB|SqBpTmBjTgBfTcBbT_B|T{AtTuAnTiAtRsAnViAbUcAvT_ArT{@zTw@xTq@zTm@rTg@|Te@`U_@|T[~TUvTQzTKvTIfUEvT?~TB~TF|TNzj@~BvfJ^pvANvj@^j~A@~Q?`sAE~j@Kpv@Qnk@Ubk@[hk@a@pm@g@bn@wAlvAkBnvA{@rj@cArj@gAxj@kAdk@qApj@wAzj@{A`k@}Abj@eBvj@gBfj@mBjj@qBhj@sFvuAgGfuA{GhuA_IpzAcK|eByIduAsDxi@wDri@}Dti@aEzi@gE~i@wKttAuKltAo@xHwfAdaN{q@fuIkX~iDmXdjDuKftAiEri@qEdj@mBjTqBhTuBfTwBxSyB`TgCpTcC|SgCvSkCvSmCjS{CrTqCzR}CtS_DtSeDrSgDfSkDhSmDhSsDjSwDfS{D`S{DxRaEvRiEdSgExRqEvRmEfRuEvRsElRgLte@kL`f@iL|e@uYbmAiLve@oLpf@cLpe@wEvRoEnRcLpf@_L`g@iIt_@iJjc@cKzf@}G|\\{Jvg@qJng@eJ`g@}Ilg@}Ibh@iI~f@sIhi@aIfh@wH`h@qHhh@iHdh@sCdTsCjTuCxTiCvSmChTgC~SgC`TaC|SaC|SaCdT_CdT}B`TyBbTyBfTwBfTqB`T}BzUmBvSkBjT}BfWgBbTiBjTeBlTeBlTcBlT}Dti@wDfj@oDdj@gDhj@_Ddj@wCtj@mChj@iCjj@uFdmAyG|xAeP|lDmGluAqGxuAoGruA_Rb`EGxAqG~uAqG~uAaC~i@_Cpk@yBxj@uBfj@uBjm@kBrj@cBjj@kAh_@{Avj@wAnj@qAtj@oAtj@gAtj@cAtj@_Arj@{@tj@u@vj@q@tj@k@vj@e@vj@c@vj@[|j@Wxj@Srj@M|j@Ixj@Ezj@@zj@Bnj@H~j@Nxj@Pnj@Xdk@Zrj@`@zj@|@r`Al@vj@r@tj@v@fj@|@bk@hNzjI~JnaGjCf}AvFlfDpa@veVx@rj@p@zj@TzTRxTPzTNzTJzTLhUNfj@Hxj@@zj@G`l@Mrj@W`k@]tj@g@vj@o@`l@{@hm@aApj@gAlj@Y|Mu@p[wAxi@aB~j@gBhj@oBrj@yBdj@_Cdj@iCtj@oCli@{Cbk@aD`j@eDji@sDlj@wDvi@_Eni@kEhj@qEni@{E|i@_Fji@w[xhDgEzc@iIz{@iFbj@gF|i@uWlqC_NdwAkPleBcJt`AcEhc@oFlk@eFvi@gFti@gFvi@_Gbn@kEzd@iF`j@eFri@}Evi@oE|i@aFnp@eB~VuBfZuAxTqArTmAfToAxTiAvTiAhVYnGgBt`@}@hTy@tTy@bUq@xTq@tTm@xTm@bUe@jTe@|Ta@bU_@~T[tTWvTWfUQ|TQzTK`UIrTEbUEzT?tTB~TD~TFtTXnj@N~TT~TVvTXvT\\zT`@xT`@xTh@fUf@rTl@lTn@dUr@rTt@rTx@vTz@~T~@~T`ArTdArTfArTjApThA`T~Crj@vMhaCfa@vmHjl@doKjAlTpAnTtAnTzAvT|AtTbBrTfBhTjBhTpBnTrBbTxBhT|BfT`C|SfCbTjCbTlC|SrCzSvCzSzCvS`DrSdDvSfDfShDdSrDlSh@rCjCpNzDhS|DbS~D|RfEzRfEvRpE~RzEhStErRzEnR|EfRpFjSzDpN|DnNjFvQpF|QrFrQvFnQxFfQ~FhQ`GbQfG~PhG|PlGxPpGtPpGjPxGlPxGdP~G`P`H~ObHxOfHrOpHzOnHhOxHvOtH`OxH~N`IdO|HpN~HjNpI`OlIjNlIfNtIdNpIxMxIvMvInMzIjMfH~Jt@dAhUr[bUh[rv@pfAvv@pfAryBj|Ct_@`i@|T~[|I~M~GzKtZzf@jInNbInN`IrN`I|N~H`OrH~NrHbOtHrOrHvOjHtOhHxO`H|O`HbP~GfP~GtPtGlPpGpPnGtPlG|PfG|PfGjQ~FdQzFfQ|FtQpFjQnFnQrFfRbFlQfF~QbFbRzEdRxEfRtElRtEpRbDlNl@jC~XjmA~e@xtB~Kdf@lEpRhEvRdEtR`EvRxDtRvDtRvDfSrDhShDzRhDhSbDjS~ChSzCjSxCzSrCvSnCxSjCxSdCvS`CvS|BtSxBbTvBdTrBpTjB`TfB`TbBfT~AhTxAbTvAjTrAjTjAnThApTdApT~@jT|@xTv@zTr@nTn@pTh@pTd@nT`@dUZrTl@dj@NrTJzTDvT?~A@vQ?xTGtTItTO|TS|TYvT[tTa@|Te@xTk@xTm@xTs@nTw@rT{@rTaA|TeAjTgAfToAvTqApTwAjTyAhTcBtTcBpTiBjTiCpYuA`OuBxSwBdTaC`TeCdTeC|SmCzSoCrSsCtSwCpS}CpScD|SgDxSm@lD{BzMmDdSsEzVoCzNsA|GcBvIqGp[}o@`}CoqAbiGcLri@sJpd@eE|RcE|R_E~RyD`SsDdSoDnSgDjScDrS}CtSoDbWoCrSkC`TeC~S_CfTwBzSsBfTkBfTgBhTcBbU{AlTsAlTqA|TgAlTaArT_AtTw@hUq@nTi@nUe@xT]tTWvTQ`UKzTQxj@iE`lOsBfgHOtj@C~TAxTBxTFdUJ`UPzTR|TXzT^~T`@vTf@dUj@rTn@pTr@zTx@zT~@tT`ApTfAtTjAzTnAnTtAzTvAbTzArT`BnTfBrTjCxZnAxMrBnTxBdTzBbT~B`TdCbTfCzSlCvSrC`TvC|SvChS|CrSfD|SbD~RlDxSjD|RxDrSxDhSxDxRbEbSbEtRdE~RnEzRtEzRnEfRzErR|EjR~EbRhFnRhF~QlFzQrF~QrFrQpOpf@|gPz~g@tkChlIvxFboQ`yAjtElB`GtNrc@xNnc@fOzc@ro@lkBzW~t@tVtq@f^p`AnTfk@va@neApPbb@xP~a@tPta@zPha@bQpa@dQja@~Pr`@jQba@tQ`a@rQv`@vQp`@jRfa@dRt`@fRn`@d|BdxErkAzcC~m@rpA~zBbvEv{BnwElx@tbBje@naAje@paApx@vbBlx@pbBvqB|eEvZ`o@nIdQhe@laAde@laAfRf`@bRj`@fHtOfHvObH~O~GbP~GnPtG`PzD~JzAtDpGxPpG|PjG`QhGdQdGhQ~FjQ|FpQxFrQpDpLbAdDvFjRrFnRhFbRjFxRfFzRdFdSbFhSpEjRpErRjEzRdEvRbE|R|DtRxD~RtD~RrDjSnDnSdD|RfDlS`DrSzClSvCnStCzSpCzSjCvSfCzSbCbT~BbTzBfTtBfTpBbTlBbTfB`TfB|T~AjTzAlTvAfTpApTnAvTjAxTjChj@hLnbCfr@nxNp^fvHr^|vHf@nK|PflDdQvkDfHhvAlFneA|JxoBjQxlDhQzkDtCzj@pCfj@nCbj@hCnj@`Clj@vDh_AbAnXhThlGt@lT@\\hBbj@r@`Ul@jTb@vTZ~TT|TJzTB~TEzTKzTSzT[~TkEbrCwHl`FsMhsIWdTQ~TGzT@bUN|TXbUh@~Tt@vT~@xTjAvTzA~T`BdTnBhT~BhThCfThCpRFb@dD|SjCbP|D`T`EbSlE`SxEvR~E~QnFfRtFtQ`CdHfCvHnGbQnGnPnBzEPb@lLjYtG`P|GxP`AdCnElLbG|P~BbHxBdHvBjHpBpHlBpHjBtHdBvH`BxH|A|HvA|HvAhIpAhInAjIjAhInHph@vJvr@dFl^lHjh@nHrh@jAjInAfInAfIrAfIvAbI|BlMv@`EbB|HjBvHrBrHxBjH~DfLzEpLrCxGtClGzCdG`D`GdDtFjDrFnDhFtD`FvDvE`ErE`EdEdE~DhEtDlElDpE`DpEvCtEpCzEfC|E|B`FpB|EfB`F|AfFtAhFfAfF|@fFt@fFh@hF\\jFRjFJjFAjFIjFUjFa@hFk@hFq@fEw@dFgAfEcA\\IdFyAdF}A`MeE~LoE~LqE`dBmn@zEgBju@qXfqAue@tLeExLyDjOeEnIsBvJqBrHwAhLiBrIcAb\\gD|O}AnXaIpSqAzL{@r[}Bz[gCb\\mCbx@qHr\\kDv[gDx[sDt[wDv[_Ev[gEv[oEt[sEv[{Et[gFf]wFxZkFvZmFr[aGp[iGl[kGj[uGf[yGn[cHl[kHj[sHh[wHd[{Hd[eI~ZkIh[uIl[_J`[_J`[iJd[sJnZoJtc@mNlRuGrZeKrZoKf[_L~YuKd[mLhZgLjZqL~Z}L~Y}LvZmM|YeMfZsMpZ_NfZcNnZmN~YoNnZ_Oj~Eq`CxAs@jtEwzBhu@m^bZuNbZqNdZgNdZcNjZ}MhZqMdZeMfZuLrZsLhZ}Kl[yKjZ{JbIgClJuC~Ag@~WaI|Z{If[iIj[_Ij[oHj[}Gp[oGn]uGhY_Ff\\gFl[qE|ZaEp\\{D`\\gD`\\wCd\\kCx[{BhKk@tO}@l\\}Ab\\iAj\\y@r[o@nZYv@A`\\Od\\?b\\L|^b@tw@hBd\\nA~[zAh\\jB`a@rCf]rCt[zCz[jD`\\|Dn[fEt\\`F@?jXlEt[tFjM~BjMdCbMdC`MjCl[`Hf[pHj[bIb[lI`[|I~ZlJ|[jKn[rKpZxKtZfLvZvLjZ~LhZjMvZxM|YtMfZbNju@r]hu@v]tu@v]dZdNhZ`NdZtMhZnMdZbMpZzL~\\rM|ZbLvZpK`[fKh[vJ`MvD`MrDbMnD`MjDfHlB~Cx@fMdD|KtCb@J~L|ClM|CvLlCp[dHp[xGt[fGrVnEzCh@v[hFdVrDvATr^`F|[zDt[tD`\\dDl\\vCp[fCz[xBf\\hBx[|Af\\lAd\\`Ab]r@l\\d@h\\Rf\\Dh\\GlMGtMKvMQvMWjZk@jZ_Ah\\kAd\\sAb\\{AvNw@|Km@|\\kBd\\sBd\\qBf\\{B~gAmHjy@mFpy@yErZ_Bd\\yAd\\uAf\\gAf\\y@d\\m@j\\]h\\Of\\E`\\Jl\\Xh\\f@pf@fAv^fAvf@|Ajd@fBlPt@rwB|JtVjAp_A~Dxy@|C`\\~@t`@|@nQ`@vINhMPxMPd\\b@lMDlMApM?rME|MI|MMh\\c@h\\q@|\\cAr[gAb\\sAp]eBt\\eBv[kBv_@{BjKq@`j@mDzx@{ErdAqF"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 86 miles.","announcement":"Continue for 86 miles.","distanceAlongGeometry":138823.531},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A 10.","announcement":"In 1 mile, Keep left to stay on A 10.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 10.","announcement":"In a half mile, Keep left to stay on A 10.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 10, E 05.","announcement":"Keep left to stay on A 10, E 05.","distanceAlongGeometry":190}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.849316,47.910696],"geometry_index":15413,"admin_index":10,"weight":23.742,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.637,"bearings":[173,182,356],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.848709,47.90536],"geometry_index":15434,"admin_index":10,"weight":4.816,"is_urban":false,"turn_weight":1,"duration":3.645,"bearings":[4,20,201],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,207],"duration":9.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.469,"geometry_index":15438,"location":[1.848166,47.904524]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.258,"geometry_index":15448,"location":[1.846268,47.902647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227],"duration":42.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":43.879,"geometry_index":15452,"location":[1.845467,47.902082]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,279],"duration":131.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":124.828,"geometry_index":15495,"location":[1.830395,47.90012]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.223,"geometry_index":15579,"location":[1.774626,47.895002]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,251],"duration":2.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.484,"geometry_index":15580,"location":[1.774523,47.894978]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,250],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.168,"geometry_index":15583,"location":[1.773398,47.894708]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.773324,47.89469],"geometry_index":15584,"admin_index":10,"weight":12.543,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.941,"bearings":[70,250],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":9.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.793,"geometry_index":15594,"location":[1.76774,47.893186]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,245],"duration":314.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":282.805,"geometry_index":15598,"location":[1.765419,47.892476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":9.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.168,"geometry_index":15697,"location":[1.702734,47.857663]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":21.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":19.77,"geometry_index":15698,"location":[1.699408,47.856152]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,231],"duration":2.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.84,"geometry_index":15710,"location":[1.691564,47.852401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":9.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.785,"geometry_index":15712,"location":[1.690867,47.852027]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":64.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":59.32,"geometry_index":15719,"location":[1.687587,47.850174]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,222],"duration":0.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.695,"geometry_index":15744,"location":[1.668724,47.836189]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.668509,47.836028],"geometry_index":15745,"admin_index":10,"weight":1.754,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.867,"bearings":[42,219,227],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,220],"duration":11.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.641,"geometry_index":15746,"location":[1.668002,47.835614]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.664789,47.833161],"geometry_index":15754,"admin_index":10,"weight":7.457,"is_urban":false,"turn_weight":1,"duration":6.816,"bearings":[32,43,223],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,225],"duration":49.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":45.441,"geometry_index":15758,"location":[1.662762,47.831741]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.27,"geometry_index":15785,"location":[1.64647,47.822687]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.645212,47.822055],"geometry_index":15786,"admin_index":10,"weight":20.395,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.668,"bearings":[53,233],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,231],"duration":5.883,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.277,"geometry_index":15795,"location":[1.637674,47.818245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,230],"duration":47.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":42.621,"geometry_index":15799,"location":[1.635716,47.817177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217],"duration":193.395,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":169.203,"geometry_index":15829,"location":[1.621589,47.807323]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":2.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.082,"geometry_index":15924,"location":[1.55813,47.762014]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,226],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.27,"geometry_index":15926,"location":[1.557296,47.761487]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.557235,47.761448],"geometry_index":15927,"admin_index":10,"weight":11.461,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.105,"bearings":[46,226],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,224],"duration":57.043,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":49.906,"geometry_index":15935,"location":[1.553135,47.758709]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":88.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":77.273,"geometry_index":15951,"location":[1.543328,47.751238]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":3.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.039,"geometry_index":16004,"location":[1.510755,47.733001]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.509414,47.732379],"geometry_index":16007,"admin_index":10,"weight":7.789,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.426,"bearings":[55,235,246],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.506438,47.730911],"geometry_index":16013,"admin_index":10,"weight":7.52,"is_urban":false,"turn_weight":1,"duration":7.066,"bearings":[32,53,232],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":10.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.566,"geometry_index":16018,"location":[1.504018,47.729626]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,228],"duration":10.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.965,"geometry_index":16025,"location":[1.500587,47.727643]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":281.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":253.742,"geometry_index":16029,"location":[1.496776,47.725266]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.047,"geometry_index":16192,"location":[1.391319,47.668656]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,215],"duration":1.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.719,"geometry_index":16194,"location":[1.390995,47.668347]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.390471,47.667839],"geometry_index":16196,"admin_index":10,"weight":22.57,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.086,"bearings":[34,214,227],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.384658,47.661508],"geometry_index":16206,"admin_index":10,"weight":7.031,"is_urban":false,"turn_weight":1,"duration":6.707,"bearings":[18,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":120.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":111.301,"geometry_index":16210,"location":[1.382993,47.659646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.344,"geometry_index":16287,"location":[1.350348,47.627584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,220],"duration":1.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.828,"geometry_index":16288,"location":[1.350238,47.627492]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":0.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.18,"geometry_index":16290,"location":[1.34972,47.627071]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.238,"geometry_index":16291,"location":[1.349666,47.627028]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":1.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.41,"geometry_index":16292,"location":[1.3496,47.626977]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.349193,47.626661],"geometry_index":16295,"admin_index":10,"weight":8.785,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.254,"bearings":[41,222,237],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.346418,47.624743],"geometry_index":16302,"admin_index":10,"weight":35.32,"is_urban":false,"turn_weight":1,"duration":34.328,"bearings":[30,47,227],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,249],"duration":62.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":64.262,"geometry_index":16324,"location":[1.333788,47.619408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.109,"geometry_index":16366,"location":[1.306922,47.616162]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":9.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":9.68,"geometry_index":16367,"location":[1.306441,47.616146]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":1.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.551,"geometry_index":16374,"location":[1.302173,47.616052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,270],"duration":377.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":358.707,"geometry_index":16375,"location":[1.30151,47.616046]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,244],"duration":13.953,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.898,"geometry_index":16605,"location":[1.12308,47.606707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":324.809,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":292.324,"geometry_index":16614,"location":[1.117636,47.604786]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244,258],"duration":7.941,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.141,"geometry_index":16777,"location":[0.988095,47.546871]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.985004,47.545822],"geometry_index":16783,"admin_index":10,"weight":48.211,"is_urban":false,"turn_weight":0.5,"duration":53.016,"bearings":[49,63,243],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":3.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.105,"geometry_index":16803,"location":[0.965293,47.537193]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":0.246,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.215,"geometry_index":16804,"location":[0.964033,47.536599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":12.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.648,"geometry_index":16805,"location":[0.963943,47.536557]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":34.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":30.121,"geometry_index":16806,"location":[0.959476,47.534452]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":49.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":44.797,"geometry_index":16815,"location":[0.946771,47.528581]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,246],"duration":1.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.418,"geometry_index":16845,"location":[0.92658,47.522309]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":13.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.184,"geometry_index":16846,"location":[0.92594,47.522119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.664,"geometry_index":16855,"location":[0.920513,47.52032]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":211.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":189.938,"geometry_index":16856,"location":[0.920235,47.520218]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":4.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.738,"geometry_index":16973,"location":[0.827998,47.492513]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":7.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.055,"geometry_index":16976,"location":[0.826137,47.492025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":8.598,"geometry_index":16981,"location":[0.823659,47.491493]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.81928,47.490588],"geometry_index":16987,"admin_index":10,"weight":17.914,"is_urban":false,"toll_collection":{"name":"Péage de Monnaie","type":"toll_booth"},"turn_weight":15,"classes":["toll","motorway"],"turn_duration":15,"duration":18.238,"bearings":[69,248],"out":1,"in":0,"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,235],"duration":13.82,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.422,"geometry_index":16991,"location":[0.817907,47.490103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":94.34,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":84.898,"geometry_index":17001,"location":[0.814349,47.488933]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,232],"duration":0.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.438,"geometry_index":17054,"location":[0.779748,47.476501]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,232],"duration":19.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.934,"geometry_index":17055,"location":[0.77959,47.476418]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":22.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":20.559,"geometry_index":17067,"location":[0.773358,47.472854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,219],"duration":0.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.328,"geometry_index":17081,"location":[0.766908,47.46821]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,219],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.16,"geometry_index":17082,"location":[0.766814,47.468131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,219],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.031,"geometry_index":17083,"location":[0.766486,47.467855]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,218],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.684,"geometry_index":17084,"location":[0.766474,47.467845]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":2.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.379,"geometry_index":17085,"location":[0.766283,47.467682]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[38,217,227],"duration":16.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":16.07,"geometry_index":17087,"location":[0.765633,47.467117]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.761639,47.463186],"geometry_index":17097,"admin_index":10,"weight":52.602,"is_urban":false,"turn_weight":1,"duration":54.324,"bearings":[23,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[51,232,239],"duration":15.605,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":14.82,"geometry_index":17128,"location":[0.747339,47.451278]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.742405,47.448364],"geometry_index":17139,"admin_index":10,"weight":7.16,"is_urban":false,"turn_weight":0.5,"duration":7.027,"bearings":[24,42,221],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,212],"duration":4.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.902,"geometry_index":17148,"location":[0.740659,47.446784]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,206],"duration":29.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":28.207,"geometry_index":17153,"location":[0.739803,47.445776]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.574,"geometry_index":17178,"location":[0.736971,47.437674]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,190],"duration":71.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":68.25,"geometry_index":17179,"location":[0.736862,47.437216]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.094,"geometry_index":17210,"location":[0.730467,47.417434]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":13.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.832,"geometry_index":17211,"location":[0.730458,47.417409]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,199],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.035,"geometry_index":17217,"location":[0.729197,47.413977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,197],"duration":10.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.262,"geometry_index":17218,"location":[0.729195,47.413973]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214],"duration":1.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.309,"geometry_index":17229,"location":[0.727502,47.411476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,216],"duration":3.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.82,"geometry_index":17232,"location":[0.727214,47.411196]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.246,"geometry_index":17237,"location":[0.726293,47.410423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":1.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.977,"geometry_index":17238,"location":[0.726234,47.410378]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,226],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.281,"geometry_index":17241,"location":[0.725722,47.410019]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[0.725642,47.409967],"geometry_index":17242,"admin_index":10,"weight":9.137,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.145,"bearings":[46,227,237],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.746,"geometry_index":17253,"location":[0.722823,47.408569]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.72258,47.408481],"geometry_index":17255,"admin_index":10,"weight":1.777,"is_urban":false,"turn_weight":0.5,"duration":1.254,"bearings":[51,62,243],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,245],"duration":2.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.082,"geometry_index":17257,"location":[0.72217,47.408342]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.512,"geometry_index":17261,"location":[0.721488,47.408129]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,247],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.977,"geometry_index":17262,"location":[0.721316,47.408076]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.367,"geometry_index":17263,"location":[0.720983,47.407979]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":3.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.91,"geometry_index":17264,"location":[0.720866,47.407945]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.297,"geometry_index":17267,"location":[0.719579,47.407571]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.969,"geometry_index":17268,"location":[0.71948,47.407542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,246],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.613,"geometry_index":17269,"location":[0.719159,47.407448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":14.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.555,"geometry_index":17276,"location":[0.717732,47.406979]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.082,"geometry_index":17292,"location":[0.714071,47.404529]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":2.016,"geometry_index":17293,"location":[0.714057,47.404512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":7.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":8.184,"geometry_index":17294,"location":[0.713734,47.404116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.777,"geometry_index":17297,"location":[0.712432,47.402518]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.656,"geometry_index":17298,"location":[0.71214,47.402161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.969,"geometry_index":17299,"location":[0.71188,47.401842]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":18.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":20.547,"geometry_index":17302,"location":[0.711728,47.401654]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":2.52,"geometry_index":17303,"location":[0.708739,47.397978]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.27,"geometry_index":17306,"location":[0.708377,47.397536]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.809,"geometry_index":17307,"location":[0.708335,47.397485]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":1.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.844,"geometry_index":17308,"location":[0.708217,47.39734]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.707951,47.397014],"geometry_index":17309,"admin_index":10,"weight":1.641,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.48,"bearings":[29,209,222],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":4.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":4.801,"geometry_index":17310,"location":[0.707746,47.396765]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,208],"duration":1.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.445,"geometry_index":17312,"location":[0.707129,47.396015]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":1.379,"geometry_index":17314,"location":[0.706942,47.395775]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,207],"duration":0.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.887,"geometry_index":17316,"location":[0.706773,47.395556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":12.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":14.223,"geometry_index":17318,"location":[0.706668,47.395415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,180],"duration":8.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":9.938,"geometry_index":17332,"location":[0.705724,47.392893]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.706245,47.391105],"geometry_index":17340,"admin_index":10,"weight":9.895,"is_urban":true,"turn_weight":0.5,"duration":8.016,"bearings":[159,324,340],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":7.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":8.902,"geometry_index":17343,"location":[0.707167,47.389504]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":20.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":24.348,"geometry_index":17344,"location":[0.708047,47.387989]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,338],"duration":21.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":25.43,"geometry_index":17348,"location":[0.710453,47.38385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,339],"duration":26.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":30.539,"geometry_index":17351,"location":[0.712932,47.379581]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,352],"duration":10.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":11.301,"geometry_index":17372,"location":[0.715214,47.374181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":12.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":0,"weight":13.77,"geometry_index":17380,"location":[0.71545,47.372036]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":4.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":5.383,"geometry_index":17391,"location":[0.715223,47.369447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[0.714987,47.368444],"geometry_index":17396,"admin_index":10,"weight":30.211,"is_urban":true,"turn_weight":15,"duration":13.527,"bearings":[10,191,200],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,198],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":2.188,"geometry_index":17407,"location":[0.713921,47.365636]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":17.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":19.629,"geometry_index":17408,"location":[0.713728,47.365239]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,203],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":0.922,"geometry_index":17416,"location":[0.711773,47.361784]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":37.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":42.148,"geometry_index":17417,"location":[0.711672,47.36162]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,204],"duration":4.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":4.852,"geometry_index":17428,"location":[0.706994,47.354232]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.706431,47.35339],"geometry_index":17430,"admin_index":10,"weight":2.969,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":2.648,"bearings":[24,205,215],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":52.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":58.078,"geometry_index":17431,"location":[0.70607,47.352854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":32.617,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":10,"out":1,"weight":35.039,"geometry_index":17448,"location":[0.698878,47.342048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":10.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.871,"geometry_index":17463,"location":[0.695388,47.334953]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":6.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.059,"geometry_index":17465,"location":[0.694399,47.332615]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.693759,47.331099],"geometry_index":17466,"admin_index":10,"weight":9.059,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.066,"bearings":[16,196,208],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.469,"geometry_index":17467,"location":[0.692906,47.329077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":5.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.656,"geometry_index":17468,"location":[0.692864,47.328975]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.039,"geometry_index":17470,"location":[0.692344,47.327736]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":1.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.066,"geometry_index":17471,"location":[0.69234,47.327726]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.199,"geometry_index":17472,"location":[0.692249,47.327494]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,194],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.938,"geometry_index":17473,"location":[0.692231,47.327448]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.039,"geometry_index":17474,"location":[0.692155,47.327242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,194],"duration":1.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.184,"geometry_index":17475,"location":[0.692151,47.327232]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.039,"geometry_index":17476,"location":[0.692052,47.326961]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,193],"duration":6.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.449,"geometry_index":17477,"location":[0.692048,47.32695]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.691533,47.325468],"geometry_index":17481,"admin_index":10,"weight":5.344,"is_urban":false,"turn_weight":0.5,"duration":4.977,"bearings":[3,13,193],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":4.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.234,"geometry_index":17483,"location":[0.691151,47.324358]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.527,"geometry_index":17485,"location":[0.690815,47.323388]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":1.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.719,"geometry_index":17486,"location":[0.690695,47.32304]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":5.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.93,"geometry_index":17487,"location":[0.690559,47.322645]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":50.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":47.742,"geometry_index":17489,"location":[0.690138,47.321426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.898,"geometry_index":17536,"location":[0.690573,47.309214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,343],"duration":1.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":1.035,"geometry_index":17537,"location":[0.690781,47.308745]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[163,172,343],"duration":42.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":40.254,"geometry_index":17538,"location":[0.690894,47.308491]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":0.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.062,"geometry_index":17578,"location":[0.691235,47.298095]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,199],"duration":1.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.703,"geometry_index":17579,"location":[0.691229,47.298082]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":0.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.238,"geometry_index":17581,"location":[0.691022,47.297658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":6.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.203,"geometry_index":17582,"location":[0.690994,47.297597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,205],"duration":10.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":10.633,"geometry_index":17589,"location":[0.690104,47.296081]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214],"duration":23.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":23.273,"geometry_index":17601,"location":[0.688064,47.293652]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.683437,47.288389],"geometry_index":17618,"admin_index":10,"weight":8.668,"is_urban":false,"turn_weight":1,"duration":7.871,"bearings":[18,26,205],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,198],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.996,"geometry_index":17623,"location":[0.682302,47.286523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":5.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":5.387,"geometry_index":17624,"location":[0.682187,47.286278]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":7.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.973,"geometry_index":17627,"location":[0.681584,47.284949]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":46.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":42.625,"geometry_index":17628,"location":[0.68074,47.283131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":5.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.633,"geometry_index":17648,"location":[0.673469,47.27153]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208],"duration":42.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":38.172,"geometry_index":17650,"location":[0.672508,47.270319]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":3.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.152,"geometry_index":17680,"location":[0.666445,47.259473]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[13,190,200],"duration":13.266,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.918,"geometry_index":17683,"location":[0.666141,47.258536]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.665283,47.254981],"geometry_index":17689,"admin_index":10,"weight":34.48,"is_urban":false,"turn_weight":1,"duration":37.219,"bearings":[8,187,358],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":68.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":61.676,"geometry_index":17703,"location":[0.662514,47.244859]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[2,182],"duration":4.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.156,"geometry_index":17729,"location":[0.658323,47.226168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,182],"duration":7.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.871,"geometry_index":17730,"location":[0.658249,47.22495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,183],"duration":4.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.664,"geometry_index":17732,"location":[0.658132,47.223063]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":3.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.316,"geometry_index":17733,"location":[0.65805,47.222057]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,187],"duration":4.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.852,"geometry_index":17735,"location":[0.657971,47.221269]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,198],"duration":18.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.035,"geometry_index":17738,"location":[0.657765,47.220491]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,187],"duration":3.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.82,"geometry_index":17742,"location":[0.657208,47.219082]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,187],"duration":4.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.867,"geometry_index":17743,"location":[0.657165,47.218839]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.657108,47.218513],"geometry_index":17744,"admin_index":10,"weight":17.594,"is_urban":false,"toll_collection":{"name":"Tours centre sorigny","type":"toll_booth"},"turn_weight":15,"duration":2.879,"bearings":[7,187],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,184],"duration":3.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.754,"geometry_index":17745,"location":[0.657055,47.218232]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[4,176,196],"duration":14.613,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.121,"geometry_index":17746,"location":[0.657022,47.217926]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.656842,47.21503],"geometry_index":17753,"admin_index":10,"weight":8.996,"is_urban":false,"turn_weight":1,"duration":8.891,"bearings":[1,9,190],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":130.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":117.801,"geometry_index":17757,"location":[0.656193,47.212653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":39.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":35.195,"geometry_index":17780,"location":[0.640959,47.178619]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211,224],"duration":19.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.527,"geometry_index":17796,"location":[0.633431,47.169309]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.62956,47.164654],"geometry_index":17803,"admin_index":10,"weight":55.078,"is_urban":false,"turn_weight":1,"duration":60.105,"bearings":[17,27,206],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"bearings":[9,189],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"geometry_index":17834,"location":[0.622639,47.148926]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 10","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 10"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"type":"fork","modifier":"left","text":"A 10 / E 05"},"distanceAlongGeometry":138853.531}],"destinations":"Bordeaux, Tours, Blois","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 10/E 05/L'Aquitaine toward Bordeaux/Tours/Blois.","modifier":"slight left","bearing_after":173,"bearing_before":176,"location":[1.849316,47.910696]},"speedLimitSign":"vienna","name":"L'Aquitaine","weight_typical":4239.328,"duration_typical":4484.242,"duration":4484.242,"distance":138853.531,"driving_side":"right","weight":4239.328,"mode":"driving","ref":"A 10; E 05","geometry":"oqfkzAg}zoBd{@_JpMy@rMs@pM[tMUtMEdNDjMVzMl@jMz@jMpAhM~AhMpB`M`CjMvC~LdDnLnDdMlEjMdFdKrEt@^`K|EpLlGlLbHdLlH~K|HpKjI`LfJlKrJrKhKzJlKnJzKjJvLjJdMnFzHjBnCvInMvIhNlIvNxHrNvHjOtH`PbH~OxGpPnGrPdG~PxFhQrFvQdFxQ|EjRpEvR~D`RzD`SlDbS`D|RvCnSnCpT`CxStBbThB`T~AzTnAbTdA|Tx@rTl@pT^bURvTFrP?xBErUMtS[bUm@pTu@`U{@nTgAlTsCri@yCpi@W|EcCzb@wCxi@aDfn@eCnf@kCtj@eClj@_ArTy@tTy@|Ty@xTu@xTu@tTm@rTk@tTg@tTi@fUc@fUc@pT_@pTYvTWxTY`UU`UOpTKpTKxTEvTIhUCfUA`U@bUDjTDjTHjTJzTNzTd@vj@V~SVbU\\pT^nT^tTd@tTf@`Uf@hTj@hTp@tTr@vTr@vTv@vTx@hTz@fT~@rT`AhT`AjTlCri@tCvi@|Cti@|Cdi@dDhi@dDfi@lj@zvIvFj|@jb@fvG`k@l{I~IjvAbJjvAtDzi@xDzi@bEvi@hEzi@pEli@tEbi@zE~h@bFbi@hFbi@nFrh@rFph@`Gbi@hGhi@hGlh@nGhh@zGph@bHth@dHfh@nHph@vAxJn@lElDbV|Hdh@n@~Db@rCjFz\\jIfh@pIbh@jDjSfDdS~Irg@|Izf@xJzh@tJxg@rH~_@jMbo@hKrg@tKrg@~CtNdDhOtNno@dL|f@jLzf@nLff@xLlf@vLte@dMdf@lM~e@nMze@tMde@zMje@fNne@hNzd@nNxd@xN|d@xNhd@`Ofd@pOtd@jOvc@vO|c@~Ovc@~Ofc@pPpc@tP`d@zPhc@~P`c@`Qrb@nQxb@pQpb@xQfb@~Q`b@fRbb@fRla@lRja@dRh`@fR|_@nRz_@~Rf`@xRh_@fSt_@fSb_@nS|^nSl^pSd^pSt]nSb]vSd]zS`]~S|\\zh@|z@la@jp@bq@tfAbTd]`Th]dTd]~`D`gFrElHvsApxBtsAfxB`Wta@h{@tuA`Tz]zSd^lSv]tSn^nSp^jSz^bSp^xRv^xRz^rR|^rRj_@lRt_@fRn_@`Rt_@~Qx_@~Qf`@xQn`@tQn`@pQp`@hQp`@bQz`@`Q`a@bQja@zPpa@zPva@tP|a@lPra@jPbb@dPhb@bPlb@pOva@zOxb@pO|b@pO|b@p_@jeAnI|UzRhj@l}AznEf^tdAbOtb@r_@pfAlOlb@pOhb@xOfb@~O`b@bPza@lPta@pPla@pPba@|Pba@bQz`@fDtH~KdWjQj`@hQz_@xQd`@xQx_@`Rr_@lH|NrHhOhRb_@nR|^nRp^vRn^~Rj^dSd^fS|]jSp]|Sb^|Sp]rTz]lTj]rTb]zT`]`Ux\\~Th\\bU|[jU|[pUt[rUh[|k@dw@`xAjnBhjGdmI`i@ps@`IlLzXt^dHfJzTnZtTxZpT`[~SvZ|SzZfT|[xNrTjYzc@~Sz\\pSp\\xSj]pSp]`Sb]tR~\\nRb]tRx]rRb^vRd_@tRf_@vQf^|Q|^nQp^hQz^bQd_@~Pf_@zPl_@nPp_@lPv_@jP``@hPh`@bPj`@~On`@zOt`@z`@nbApJ|UfUjk@hdAdiCdThi@nf@rmAxFpN`cAxfC|bAhfCfPja@zOp`@xP~a@lPz`@rPx`@hFxL|JhUzPf`@lQp`@nQf`@hQh_@dRn`@|Qr_@dRl_@~Qv^dRp^lRp^nR`^pRt]vRt]zRn]~R`]fS`]hSv\\jSl\\|Sx\\`Tn\\fTl\\`Tp[nTx[tTt[nT|Z`Uh[~TzZ~TfZ~SzXxUpZhVvZlVlZjPbSzDvElVpYtVpYzVfY~VdYdWtXfWtXhWrXf_BzdBz~AldBh_BxdBt}DthE`~ApcBl~AzcBbxAj}AfEnEn~A~cB~~AndB~VjX|VpXrVrXnV|XhV~XpVpYfm@ft@`VjZ`VlZtUpZtUrZnU|ZhUb[fUf[dUt[~Tv[bUl\\~Tn\\xTx\\vT|\\jTb]nTh]`Td]bTv]~S~]vSz]pS`^tSr^fSl^hSx^dSb_@zR~^xRp_@pRl_@tR``@lR~_@dRd`@`Rh`@|Qn`@xQv`@pQz`@vKpVrDjIlQja@lQ~a@`Qta@zPza@zPdb@tPjb@nPnb@za@dfAza@zeAd}At~Dbl@zzA`b@bfAnP`b@nOx_@`Rld@`Q|a@~Pra@dQla@hQja@lQha@nQ|`@vQba@tQn`@tQf`@~Qn`@|Q|_@dR``@fRz_@lRt_@lRl_@nRf_@vRh_@xR`_@|Rz^`Sx^zKhSlAxBvClFhSl^lSh^nSf^nSr]tS|]zSv]bj@n}@|Rj[fT~\\fTv\\rTx\\nTl\\nTb\\xTl\\|T`\\xTp[`Uv[hUv[tTtZZb@~j@vv@~wAzoBjiAl}AlMjQpk@lw@dUh[bUn[bUz[xT|[|Tf\\vTr\\tTx\\pT`]hTb]pTz]~Sn]~Sz]zS~]vSj^pSl^lSt^hS|^`S|^|R`_@`Sv_@vRx_@tR|_@xe@jaA`Rd`@|Ql`@xQr`@tQz`@nQ|`@jQda@`Qda@bQra@vPpa@|Phb@pPbb@lPfb@hPpb@`Prb@|Oxb@xO~b@rOdc@lOjc@fOnc@`Orc@|Npc@|Nrc@h_@hiAr_ArsCj_@liAl_@liAnO`d@rOzc@zOrc@xObc@dD`JdKnXxO|a@hPfb@lP`b@nPta@nIpSjFdM|Pna@bQfa@hQ`a@pQfa@pQn`@xQl`@zQ~_@dRb`@dRp_@fRd_@`IrOf\\vn@rf@j~@jf@v}@hg@h_AvnAd~BrnA`~BzR|^rRj_@tRz_@hRv_@hRp`@|Qh`@vQr`@tQba@pQla@bQja@`Qxa@zPbb@rPdb@jPnb@lGjPvGdQ~O~b@vO`c@nOlc@hOlc@bOvc@|N`d@pNvc@hN~c@hNnd@`Nxd@vM|d@rMde@fMde@fMxe@zLpe@rLze@jL|e@fLbf@hLlf@dYrlAts@~zChY~lAnYpmAhLbf@rLze@xLre@bMpe@hMde@vM~d@|Mzd@fNtd@jN~c@tNdd@~Nxc@hOrc@pOpc@vO|b@~Ovb@fPnb@pPfb@zPdb@dQ`b@hQna@pQha@tQp`@zQl`@jRl`@lRz_@pRn_@|Rh_@bS~^hSr^nSd^vS`^dTz]fTl]lTb]jTx\\nTb]hTv\\tTh]bkDtoF`uAjwB~i@h{@bMbSbFdIbT|]xSz]rSd^rSt^fSv^bSb_@|Rh_@vRr_@tR~_@jRb`@fRn`@|Qr`@|Qda@vQja@dQda@fQra@~Pza@rP|a@rPjb@lPtb@bPvb@~O~b@tOfc@pOpc@hOxc@bOvc@h|@`kCf{@lhCb_AfqCf_@thAfO~c@`Opc@v_@viAf_@nhAbOrc@lOnc@hOzb@xO`c@|Otb@jPxb@jPdb@rPdb@tPpa@|Pna@fQna@`EhJjKzUrQ|`@xQr`@bRr`@jRj`@lR|_@rRv_@xRl_@~Rb_@hSb_@hSn^fS~]bTn^xSt]bTt]fTd]jTz\\vT~\\tTf\\~Td\\dU|[jUp[nUh[tU`[xUtZ~UjZdVfZbVnYtVtYnVdYvVxXdWxX`EjE|PxQj@l@|UxVxG|GpNrNnWhWrW|VxWtVzWjVdX`VfXxUrq@hl@xcBbyAlnA`fApg@hc@fXpUjXtUdXnUdXrUdX`V~WdVvWlVrW~VpWfWpWtWdWxWdWdXzVlXnVjX`WrYjVfYhVtYhVdZ|UbZxUrZzU`[tUh[nUx[dUx[dU`\\fk@`y@pk@jy@vk@ry@rl@zz@lUl\\tUr\\vUb\\~Ux[bVv[hVh[pV~ZrVtZzVnZ|V~YpWfZtWvY`XxY~WdYjX|XnXtX~XrXnWtVfWbVlWrUnWlUhWxThWhTrWfTxW`T~WtSdXlSdXbShXvRhXhRlX`RrXzQ|k@d`@nEvCheBpjArXzQpX~QlXhRfXtRdXfSzWzSvWlTjWdUdWtUpV|UfUrUjVnW~U~WpUjXnUdYfDfEvDzEzTzYlCnDtAjBdBbC`ArAzHvKxF`IjLtPhT|[dTz\\rS`]dSp]zR`^hBfDnOrYbRd_@xQr_@hQ~_@nQha@bPf`@jPna@tOpa@rOrb@|Nlb@pNdc@`Nbc@vMvc@fMdd@vLpd@nLbe@bLpe@nKne@bK|e@tJff@dJtf@|Ijg@hIjg@vHlg@jHxg@dBnMtDlYjGdh@zFbh@nFvh@zEph@vExh@tE|h@hE`i@dErh@dE|h@zD|h@dDde@`Dhe@nDbi@hDhi@dDfi@zC|h@xChi@rCvi@x@~O~EhcAfCbj@~Bti@xBvi@rBzi@nB`j@jB`j@bB~i@`Bbj@xAtj@tAxi@nAzi@d@bU`@hTdAhj@`Ajj@v@xi@p@be@^`]@t@b@rd@f@bj@`@dj@\\nj@Vlj@Tdu@Jlh@Bvk@Arj@Cjj@Ijj@IdYGpPUlj@Ybj@_@bj@c@`j@i@`j@m@fj@y@rn@s@ze@y@bj@_Abj@cA`j@eA`j@iAvi@kAdj@qAdj@qAfj@wAtj@wAdj@yAbj@{Abj@}Abj@_E|uAoKllDuK|jDsKrkDqK~kDwKfmDuKdlDuKhlDuKvlDuKhlDqKjkDqKvjDcEjtAaBdj@_Bbj@{A|i@yAvi@wAbj@sAbj@mAxi@kAhj@eA`j@_A`j@y@|i@s@hj@o@`j@e@|j@]dj@Wlj@Opj@Cpj@Brj@Lpj@Xzj@`@tj@h@di@t@nj@|@~i@hA`j@nAti@r@pWf@tQdBfj@nBxi@xBbj@`Cxi@lCxi@tCri@|Cpi@hDri@rDvi@zDri@fEji@pEri@zEvi@`F~h@jFbi@tF|h@tF|h@xF|h@nFvh@lDr^t@bIzEni@tEhi@fEji@~Dni@tDri@jDhi@bD~i@vCji@jCji@fC~i@zBxi@pBri@dBxi@|Axj@tAbj@lA|i@`Afj@v@nj@l@fj@d@rj@Xlj@N~i@Fhj@Ajj@Khj@Wnj@_@jj@g@jj@s@dj@y@xi@_Apj@gAdj@mAfj@oAdj@uAfj@uAdj@wAfj@oDjuAwAzj@sA~i@oAbj@iAlj@gAfj@_Alj@w@lj@q@nj@g@vj@_@dj@Wpj@Otj@Gfj@@nj@Dnj@Rjj@Tpj@^rj@f@rj@l@nj@t@hj@|@nj@bAjj@jAjj@pAvj@xA|i@~Afj@dBhj@hBdj@rB`j@xBlj@~Bbj@dC`j@jCbj@pCpi@tCxi@zCzi@`Dri@fDvi@lDxi@v@vLxB~[tD`i@zDvi@bE|i@dEfi@fEdi@lEfi@rEbi@xEni@zEli@|Edi@dFfi@hFfi@jF|h@nFvh@tFdi@xFbi@vFfh@|Fhh@`Ghh@dGhh@fGrh@rGnh@rGlh@vGlh@vG~g@`Hth@`H`h@hHhh@jHdh@nHdh@pHvg@tHtg@xHvg@|Hxg@bI|g@fIzg@jIrg@nIrg@lIdg@vIfg@zIvg@|Ifg@`J|f@bJlg@`Jhf@xJbh@nJtf@nJnf@rJlf@|Jrf@bKbg@dKrf@fKlf@jKnf@nKlf@vKnf@xKnf@xK|e@|K|e@rFlUrD|OnLpf@vLfg@~Lbg@`Mdg@jM~f@bMlf@tMlg@|Nhj@bLjb@vMhf@|Mff@`Njf@lNtf@nNpf@hNze@pNve@nNje@rNfe@~Mhc@hNvc@nNtc@jNjc@vNvc@xNlc@|Njc@~Njc@`O|b@hOdc@x_@zfAd`@hfAr`@zeAv`@|dAra@heA~a@zdAhb@hdAvb@tcA|b@vbAvc@fcArc@zaA`d@xaA`d@faAzc@haA|c@zaAdQj`@bQl`@hQda@fQja@xP`a@vPfa@nPja@rPxa@hP|a@xGvPnGhP`Pdb@~Ojb@tObb@vOrb@lOlb@jOpb@lOvb@fO|b@hOzb@fO`c@t_@|gAlM`_@tPnf@h_@rfAdOxb@hOtb@rO`c@pOzb@xO~b@~O|b@zOrb@dPlb@hPlb@pPjb@fPra@tPva@zPta@lPj`@nPf`@vQ~a@xQ|a@jQv`@rQv`@vQr`@vQ~_@zQ|_@xQp_@dRt_@hRp_@lRj_@pRf_@rRb_@vR~^zR`_@`Sz^~f@h~@`Vfc@dP~YdoAb}BbnAr}BxRf_@vRn_@rRp_@pRx_@hRz_@hR``@bRj`@`Rr`@xQl`@vQz`@tQda@jQz`@fQba@`Qfa@~Pna@zPra@vPxa@hPja@lPbb@hPdb@dPnb@xOfb@zOrb@xOxb@pO|b@rOjc@hOfc@dOlc@bOtc@~N~c@vNtc@pNzc@rNjd@bNvc@dNrd@|Mfd@vMnd@tMld@pMtd@fMtd@bMxd@`Mxd@xL~d@tL|d@xLve@rLxe@jLne@hLpe@dLte@bLxe@`YvlAxX~lAtX|lApX`mArX`mAnX`mAneBpwHpeB|wHnt@fbD|o@btCvXrmAxXrmA`r@zzClr@r{CnXxlArXdmAbm@|jCNl@xCpM`YxlAjLdf@nLbf@hF`TxKrc@tLje@zLhe@`Mfe@hMde@fS|s@fOlh@|Mdd@dNbd@~Lr`@nNpc@~Nvc@~Ndc@dO~b@tOhc@pOnb@v}@fdC`bAnmC|dCt{Gf\\b}@bd@vmArArDpbCdvGzeCj}GreC||GpOzb@hObc@bOhc@|Njc@tNxc@pNdd@f@`B~L|`@|Mfd@xMld@pMrd@lM|d@bM~d@|Lfe@tLne@nLte@`Lle@|Kte@vKdf@pKdf@hKlf@fK~f@vJhf@rJbg@zIje@nJhh@fJhh@xItg@vIxg@fTxpAjTvpAtIxg@xIxg@~Irg@fJrg@|TpkAf@lCzJ~f@bKzf@jKxf@pKnf@zKpf@bLlf@hLbf@pL~e@xLze@tG~VjEjPbLlb@hMde@vMpe@tMxd@zMxd@~Mxd@bNvd@dNtd@fNtd@jNrd@~{@|sC|{@~sC~bC`aItq@h{B|Mjd@|Mld@tMnd@pMrd@jM~d@dMhe@zLne@rLte@hLle@bL~e@|Knf@nKhf@hKtf@~Jrf@tJtf@lJ|f@bJ~f@lJli@pJjk@fJjk@~Itk@xStxAhHfi@vGfh@tGbi@vGpk@vGnl@lGrl@lG|m@hG~m@hG`n@dG`n@hExb@z@xIvO~|AnGhm@tGfm@xGxl@`Hdm@hH~l@nHtl@vHhm@tHvk@`Ill@bIvk@nIjl@tHhh@zHhh@|Hpg@`Ipg@hIvg@nIrg@pIng@xIlg@|Ilg@bJfg@fJ~f@nJng@nJlf@vJ`g@zJrf@bKzf@bKff@jKlf@pKjf@rKff@zKdf@|K~e@bLxe@jLve@lLxe@pLte@rLve@tLte@dZrkAnLhe@lLne@hLte@fLxe@`Lze@|K~e@vKdf@rKjf@lKdf@bKbf@bKhf@|Jpf@xJpf@rJvf@nJ`g@nJbg@fJ|f@bJ`g@dJng@`Jrg@rThoApT~oAhTbpAjT`pAhTdpAhTbpAfTjpA`TloAJj@tT|qAlG~^r@fEtIpg@vC~UnC~UtJ`}@~L`iAfOntAbFzb@|Fvb@zIbh@Jj@~Hrc@rExQzF`QxDhKxI~UrFbQbFjQlEvQjEzQfFbVvEjVhDrRdDtRfIlf@xIhh@pI`g@pVzxAbT~nAhTdoAnTznAzIvf@|Ixf@~Ipf@bJpf@hJpf@jJpf@rJnf@rJff@zJdf@~Jbf@fK~e@jK~e@lKre@tKte@xKte@|Khe@bLde@jLje@lL`e@pLrd@xL`e@~Lxd@`Mpd@fMnd@jMhd@rMdd@zMhd@vMvc@bN~c@hN~c@fNbc@jNdc@rN`c@xN`c@zNzb@|Nrb@dOnb@vLx\\fRbh@vOhb@vOxa@~Oza@dPta@`Pfa@hPda@lP~`@rPx`@dDzHdL`XxPp`@dQx`@lQl`@pQj`@rQx_@xQ|_@|Qn_@bRj_@lRd_@hRr^hUxb@nQb\\tQz[lRp\\vPlYzSv]xS|\\|Sn\\fTn\\rTd\\pTp[|Tn[bU`[hUtZlUlZ|CzDfPnSRVdI|JjKlM|UdYvUlX|UbXrVlXxVxWja@bb@tXrXfWpVfWhVfWxUvRjQvUbTbXbVdX`VxWtUnp@fl@jp@vl@nW`VlWdVjWpVfWzV~VbW|VpWpVzWjVlXbVzXxUjYrU~YjUtZbUh[vTr[dTb\\zSt\\pSl]hS~]zRj^nRz^hRj_@vQr_@tQ|_@tQt`@nU`h@`cAb~BlQr`@tQr_@nH`OzH|N~HtNfIlNdI~MhIjMzIvM|DvFbDrEbJzLjJtLjJfLpJ|KxJtKzJfKzJvJrK`KfKhJlK~ItKxIzKnIvKzHbLrHhLjH`LvGlLrGfL~FrLzFvLnFvL`FxLtEzLhE~LzD~LpDbMdDbMzCbMlClMbCjMxBhMrBhMnBjMhBrZ`ErZ`Ejz@lLdx@jLjx@|Lr[xEt[dFr[fFt[jFt[nFr[pFt[xFt[xFr[|Fr[`Gr[dGt`AbRhw@|Ofw@jPtw@|Pp[dHp[jHl[jHl[nHj[pHj[vHh[vHh[zHpw@~Rrw@jSxh@`Nbx@pSnw@lSnw@hS~oBtg@tm@zOtA\\p@PvA^`t@bR|pB~g@dMjDfMpDhOvEFBpJbD|LrEnZvMxLjG|GxDjP~J~KvH|KfIpKrIdK|IfKpJlDlDlEpErD~DbElEnJ~KrJvL`JxL~FpIxAtBrItMnIhNh@~@fB~CbD|FtHvNtHpOhHtO~GdPpGbPjGxP~F`QtFlQlFpQnC`KpA|E|AfGvB|I|CtMn@pCrAlGnB~ItDrQhBvI`ExSbAhF~FpZ|E`WlGx[x@dEzD`SJh@xB|KdErRhElRrEhRrDlNJb@\\pAbFxQlFjQxF~PpGhQvGhPdHxOxHfOdIjNxI`N`JvLtJbL`KfKjKlJpK|IvKlI`@ZvWdSfr@ph@hWzRhW|RhUfQ|RfO`HhFx@n@ZTvdFxyDDBbTjPhEbDdBrA`HjFjSrOpNxK~MfKz^hY@@|MrJFDlLjIDBrGlE@@vMdIdLpGtL`G`MpFtLfEpCn@tH~BhMpCzMrBtGr@~RbAtMZj@?dLAtMi@nMmAlMyBdM_D`MaEzSwIxDcBjTaKlu@q^fW_Mt}A_v@jk@wXrkBc~@~p@_\\tv@o_@jhBg|@hkB{}@bt@y]p[gOlZuNvLyFxLsFrLgFrLeFxLcF~LyE~LuE~LkEhL{DlLqD`NwD`NkDfM{ChMsCjMiClM_CrMyB~[yE~KyAxYaDlMgAnM}@rMs@jMm@pMa@rM[bSOzN?tMDnMNvMVrM^pMf@vMp@jMx@rMbAtMjAjMrAtM`BpMfBnMnBhMvBrCd@jV|EdNtC|LvC|LzCjMdDjMpDfMtDfMzDbM~DbMfEpVxIxW`KxWvKnZjMdZvMfZfN|YrN|YzNdZnOb[`PfIhE~aCrpArgBl`AzYtOzYzO|YbPdYzObYxOtYbPrYfPpYrPfL|G`MlHpe@vXn`@pU`nB`jAvZpQnYzPxYzPhYrPhr@na@z@f@dt@rb@pt@|b@xs@nb@lt@zb@pt@zb@fYtP~YtPx^jSvTrLj]pQzVfMhZxNhZpNpZfNpZxMvZpMvZbMvZvLb[nLxZ|Kd[zKb[jKb[|Jnw@tVt\\tKjd@zNvkB|l@v}A~f@j}Bht@jErArj@nQx`@~LRFnMtDzAb@zKvCRF|OdETFj]vIr[zHnS`FbLnCzNnDnt@jQnBd@bx@xRvTnFtWnGb@J`jA|X`a@xJl[pHl[fHx[|GbM`ChM~BhMvBhMpBjMjBjM`BjMvAnMnAlMdAnM|@hMt@lMn@tM`@nMXrMRnMHpM?pMGrMOpMYnMa@nMk@nMo@nM_AlMeAnMmAlMwAlM}AnMgBjMsBjM{BjM_CfMkCfMuCdMyC`MkDnQ{EbMsDbMyDbM_Ef[iKb[kK`FcBh\\_LzNaFbPuFjNsEn[}Jj[gJfMgDhMcDpM{ClMmCnMiCtM_CrMsBxMkBrM_BpMsArMmA~MaAlMs@hMi@rMe@nMWtMKxMGvMBtj@fArMj@rMt@x[jCjMrApM~AjMdBhMpBnM|BjMfCjMlC~L|CjM~CvLlDfMtD|LxDhIbDXJdPrGhHhCxBv@fMpEjLvFtLrFnL~FpLjGlLvG|KpGdLfHdLlHzKrHxK~HzKjIzKrInKvIlK~IlKlJhKrJdKrJbKvJnWpWro@np@jWxWpWjWxKjKzKdK~K~JbLtJbLhJxKxI|LhJvK`IvLnIxLdIz\\lTjShMrWvPpXtPzSrLjRvJp^rPfRfIhNdFj[zKbZpKpZfKrpBvs@db@jNbv@xVvq@~TfXxIxWfJ|a@nOn^tPjAh@~t@b_@lVjNbVxMfm@l]|UxN|UbOxUfO~UnOrr@jf@xr@fg@|wAhfAfa@hZbv@|j@pSbOhW`R`l@ha@f_@~Vn_@jVxRzL|RpLfL|GdLxGhLrGhLlGtYrOrYlObPbI`PvHha@dRjS~IlSvInSlIlSfIpZjLrZxK|ZlK~ZzJpPdFnP`FrPzEpPrE|[nIr\\dIlFlAvJzBnX`GhT`F`mAvSvXhEx[vEz[pEj]tEh]pEri@zFhi@vGxsAfPfmAfPne@dHxf@bIda@fHra@zHl]hHbi@tL|h@jM|i@`Ndp@vQz]hK@?jQhFdhCpt@v[jJp]xJhV`H`ZfIdWfHra@vKdX|Gni@jMl[xGj[pGt[dGr[rFpx@dMr[hEv[~Dhj@dGtj@dFt[dCr[zB|j@|C|j@dClq@fCtgGvObkArC~u@hB|}@~Bz}@bDxUfAlYtAlHn@nUfCtObFlFnB`YlKr`@~L|SzCdNtAjSpBpPhBbR`Ah`@gBnZsB~KYhKRxW`BnZfDpi@~H|f@`I`g@zI~f@hJp[hGnL|B~h@xKrw@lRji@dNri@tN|v@zTdw@|UphKxiDbe@jOzrLr|DdzEl~A`lBhn@bmBxo@tkAbb@pkA|b@pn@`V|u@vZjm@~Wbm@pXzp@z[np@v\\~m@p\\hPfJn\\dRdf@zYff@nZfc@nY|b@|Yl]pVd]~V`TvO|S`P`UhQbUtQ|d@f_@td@|_@boAdfAnp@rk@tp@bk@pj@xe@l}@`u@rq@zi@vk@pc@jh@t_@`WrQbWhQ~b@`Ype@hZ~ZrQ`VlN`VbNvg@lX`S~JfSvJ|aAtc@jBz@jSzIjVpKhV`KjW~JhWpJtStHzSfH|h@`Qdi@~O~g@lN|TzFzTpFt[rHx[fHz[~Gvd@jJfSxDhSjDfnAdSrrArSb\\`Ftu@dLnaCp_@h_AnQj_@xHj_@hIfZbHvc@dLbX|H`XjIrXlIpX|Idt@nV"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 190 miles.","announcement":"Continue for 190 miles.","distanceAlongGeometry":306222.969},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 1.","announcement":"In 1 mile, Keep right to take exit 1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 1.","announcement":"In a half mile, Keep right to take exit 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 1 onto E 05 toward Toulouse, Bayonne.","announcement":"Keep right to take exit 1 onto E 05 toward Toulouse, Bayonne.","distanceAlongGeometry":220}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[17,194,199],"duration":14.262,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":12.816,"geometry_index":17846,"location":[0.619889,47.140401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.48,"geometry_index":17849,"location":[0.618077,47.136586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,199],"duration":12.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":11.527,"geometry_index":17850,"location":[0.617055,47.134683]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.61495,47.131376],"geometry_index":17855,"admin_index":10,"weight":7.426,"is_urban":false,"turn_weight":1,"duration":7.16,"bearings":[25,30,205],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":3.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.273,"geometry_index":17862,"location":[0.613545,47.129546]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,213],"duration":19.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.656,"geometry_index":17866,"location":[0.612758,47.128673]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":37.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":34.938,"geometry_index":17881,"location":[0.607621,47.124408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,211],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.945,"geometry_index":17907,"location":[0.597459,47.115964]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":13.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.109,"geometry_index":17908,"location":[0.597238,47.115715]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,207],"duration":4.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.051,"geometry_index":17917,"location":[0.594371,47.112307]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":3.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.27,"geometry_index":17920,"location":[0.593586,47.111221]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204,220],"duration":27.227,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":25.859,"geometry_index":17923,"location":[0.592982,47.110335]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.589262,47.103028],"geometry_index":17942,"admin_index":10,"weight":9.492,"is_urban":false,"turn_weight":1,"duration":8.957,"bearings":[8,15,194],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.5,"geometry_index":17948,"location":[0.588406,47.100511]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":125.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":116.004,"geometry_index":17949,"location":[0.588359,47.100363]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.754,"geometry_index":17989,"location":[0.588584,47.064269]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,352],"duration":41.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":37.457,"geometry_index":17990,"location":[0.588632,47.064031]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.121,"geometry_index":18021,"location":[0.588136,47.052074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":21.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":19.52,"geometry_index":18022,"location":[0.588009,47.051739]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,208],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.719,"geometry_index":18035,"location":[0.584759,47.046064]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209],"duration":2.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.641,"geometry_index":18036,"location":[0.584602,47.045864]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":1.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":1.07,"geometry_index":18038,"location":[0.584006,47.045142]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":42.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":39.344,"geometry_index":18039,"location":[0.583757,47.044851]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.562,"geometry_index":18062,"location":[0.572309,47.033485]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,209],"duration":15.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":14.301,"geometry_index":18063,"location":[0.572177,47.033328]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":4.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":3.633,"geometry_index":18073,"location":[0.569212,47.029201]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":0.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":0.141,"geometry_index":18075,"location":[0.568533,47.028124]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[24,202,217],"duration":24.062,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":21.637,"geometry_index":18076,"location":[0.568506,47.028082]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.564742,47.021675],"geometry_index":18081,"admin_index":10,"weight":13.734,"is_urban":false,"turn_weight":1,"duration":14.172,"bearings":[18,22,202],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":6.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":6.059,"geometry_index":18082,"location":[0.562521,47.017907]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201],"duration":19.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":17.168,"geometry_index":18083,"location":[0.561463,47.01612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":17.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":15.461,"geometry_index":18085,"location":[0.558558,47.011068]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":8.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":7.73,"geometry_index":18087,"location":[0.555886,47.006536]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[21,201],"duration":4.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":4.207,"geometry_index":18089,"location":[0.554584,47.004258]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,200],"duration":14.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":13.359,"geometry_index":18090,"location":[0.553896,47.003013]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":2.535,"geometry_index":18099,"location":[0.551965,46.998998]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":73.32,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":1,"weight":65.973,"geometry_index":18101,"location":[0.551625,46.99822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.484,"geometry_index":18140,"location":[0.546516,46.974758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[175,357],"duration":28.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":24.789,"geometry_index":18141,"location":[0.546531,46.974581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":0.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":0.41,"geometry_index":18146,"location":[0.548036,46.965452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":7.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":6.543,"geometry_index":18147,"location":[0.548062,46.965303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,354],"duration":76.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":10,"out":0,"weight":68.688,"geometry_index":18149,"location":[0.548475,46.962893]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":16.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.578,"geometry_index":18178,"location":[0.547902,46.947748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":55.238,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":48.316,"geometry_index":18181,"location":[0.546293,46.942609]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.027,"geometry_index":18205,"location":[0.537755,46.925756]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":6.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.699,"geometry_index":18206,"location":[0.537746,46.925745]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,212],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.035,"geometry_index":18209,"location":[0.536465,46.924187]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,209],"duration":38.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":33.496,"geometry_index":18210,"location":[0.536456,46.924177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,211],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.035,"geometry_index":18217,"location":[0.53027,46.916688]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,209],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.91,"geometry_index":18218,"location":[0.530263,46.91668]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,210],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.684,"geometry_index":18221,"location":[0.529031,46.915179]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,210],"duration":28.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.523,"geometry_index":18222,"location":[0.528905,46.91503]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[25,203,231],"duration":18.051,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.23,"geometry_index":18233,"location":[0.52451,46.909416]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.522054,46.904619],"geometry_index":18244,"admin_index":11,"weight":19.266,"is_urban":false,"turn_weight":1,"duration":20.316,"bearings":[0,16,193],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,190],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.445,"geometry_index":18257,"location":[0.520542,46.898836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":9.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.992,"geometry_index":18258,"location":[0.520507,46.898696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":43.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":38.938,"geometry_index":18262,"location":[0.519891,46.895835]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,180],"duration":145.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":134.863,"geometry_index":18274,"location":[0.517667,46.883411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,187],"duration":0.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.816,"geometry_index":18354,"location":[0.525506,46.841932]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186,191],"duration":13.324,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.973,"geometry_index":18355,"location":[0.525463,46.841688]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.524725,46.837908],"geometry_index":18360,"admin_index":11,"weight":80.406,"is_urban":false,"turn_weight":1,"duration":81.449,"bearings":[3,10,191],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.922,"geometry_index":18393,"location":[0.514788,46.815784]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,191],"duration":52.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":49.852,"geometry_index":18394,"location":[0.514693,46.815519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":3.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.125,"geometry_index":18418,"location":[0.512055,46.798605]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193,201],"duration":26.066,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":24.105,"geometry_index":18422,"location":[0.511723,46.797532]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":22.852,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.121,"geometry_index":18432,"location":[0.508429,46.790551]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,212],"duration":1.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.723,"geometry_index":18446,"location":[0.504032,46.784806]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214,218],"duration":21.48,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.859,"geometry_index":18449,"location":[0.503614,46.784359]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.498308,46.77959],"geometry_index":18454,"admin_index":11,"weight":96.758,"is_urban":false,"turn_weight":1,"duration":103.531,"bearings":[39,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,240],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.715,"geometry_index":18495,"location":[0.462542,46.763056]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,240],"duration":96.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":89.418,"geometry_index":18496,"location":[0.462268,46.762946]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":24.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":22.441,"geometry_index":18543,"location":[0.430731,46.745669]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":0.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.754,"geometry_index":18555,"location":[0.421937,46.742188]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,245],"duration":51.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":46.516,"geometry_index":18556,"location":[0.421633,46.742088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":129.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":116.105,"geometry_index":18587,"location":[0.403171,46.734472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,197],"duration":2.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.258,"geometry_index":18641,"location":[0.371706,46.704884]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196,213],"duration":15.695,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.5,"geometry_index":18642,"location":[0.371403,46.704213]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.369865,46.699919],"geometry_index":18651,"admin_index":11,"weight":49.691,"is_urban":false,"turn_weight":1,"duration":51.273,"bearings":[12,192,358],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":31.133,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":30.348,"geometry_index":18674,"location":[0.362905,46.686192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,189],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.602,"geometry_index":18696,"location":[0.358802,46.676526]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[9,187,238],"duration":8.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.902,"geometry_index":18697,"location":[0.358527,46.675377]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.358032,46.672953],"geometry_index":18701,"admin_index":11,"weight":27.09,"is_urban":false,"turn_weight":1,"duration":26.098,"bearings":[9,188,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,189],"duration":0.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.309,"geometry_index":18707,"location":[0.356587,46.665926]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,188],"duration":48.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":48.469,"geometry_index":18708,"location":[0.356569,46.665847]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":51.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":50.066,"geometry_index":18737,"location":[0.355365,46.652604]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.398,"geometry_index":18768,"location":[0.353613,46.638625]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.277,"geometry_index":18769,"location":[0.353487,46.63823]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,192],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.387,"geometry_index":18770,"location":[0.35346,46.638147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,192],"duration":9.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.367,"geometry_index":18771,"location":[0.353335,46.637753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":1.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.309,"geometry_index":18776,"location":[0.352546,46.635081]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,190],"duration":1.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.469,"geometry_index":18777,"location":[0.352448,46.634719]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.289,"geometry_index":18778,"location":[0.352342,46.634314]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":5.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.941,"geometry_index":18779,"location":[0.352322,46.634233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":16.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.363,"geometry_index":18782,"location":[0.351928,46.632616]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":3.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.562,"geometry_index":18796,"location":[0.350435,46.627275]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.16,"geometry_index":18801,"location":[0.349903,46.626147]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[20,201,214],"duration":6.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.191,"geometry_index":18802,"location":[0.349712,46.625785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":17.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.484,"geometry_index":18807,"location":[0.348735,46.624173]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,218],"duration":2.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.027,"geometry_index":18815,"location":[0.34503,46.619971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,220],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.355,"geometry_index":18816,"location":[0.344531,46.619532]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.344183,46.619248],"geometry_index":18817,"admin_index":11,"weight":44.461,"is_urban":false,"turn_weight":1,"duration":43.469,"bearings":[34,40,219],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.863,"geometry_index":18840,"location":[0.330641,46.611677]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.57,"geometry_index":18841,"location":[0.330368,46.611539]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":2.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.617,"geometry_index":18842,"location":[0.33019,46.61145]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.973,"geometry_index":18844,"location":[0.329364,46.611039]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":21.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.84,"geometry_index":18845,"location":[0.329057,46.610887]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":3.605,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.691,"geometry_index":18858,"location":[0.322427,46.607225]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":1.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.492,"geometry_index":18859,"location":[0.321352,46.606586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":20.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.984,"geometry_index":18860,"location":[0.320899,46.606316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,224],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.148,"geometry_index":18870,"location":[0.314769,46.602316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,224],"duration":122.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":119.465,"geometry_index":18871,"location":[0.314439,46.60208]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":9.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.254,"geometry_index":18932,"location":[0.289479,46.573433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,190],"duration":37.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":36.641,"geometry_index":18933,"location":[0.288822,46.57087]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":2.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.539,"geometry_index":18946,"location":[0.285407,46.558909]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.285104,46.558094],"geometry_index":18949,"admin_index":11,"weight":1.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":1.535,"bearings":[14,198,206],"out":1,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":13.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.965,"geometry_index":18950,"location":[0.284913,46.55769]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.28271,46.554346],"geometry_index":18964,"admin_index":11,"weight":8.23,"is_urban":false,"turn_weight":0.75,"duration":7.68,"bearings":[20,32,213],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,223],"duration":5.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.129,"geometry_index":18972,"location":[0.28051,46.55237]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,231],"duration":0.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.379,"geometry_index":18977,"location":[0.27872,46.551195]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,232],"duration":46.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":44.434,"geometry_index":18978,"location":[0.278578,46.551116]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.656,"geometry_index":19027,"location":[0.258449,46.54523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":16.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.652,"geometry_index":19028,"location":[0.258179,46.545097]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":0.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.641,"geometry_index":19038,"location":[0.252098,46.541542]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":262.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":236.195,"geometry_index":19039,"location":[0.251848,46.541391]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,274],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.043,"geometry_index":19198,"location":[0.152375,46.51103]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":22.879,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.574,"geometry_index":19201,"location":[0.151306,46.511078]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,264],"duration":8.305,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.469,"geometry_index":19219,"location":[0.141368,46.510944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":183.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":164.828,"geometry_index":19224,"location":[0.137842,46.510639]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.527,"geometry_index":19298,"location":[0.071716,46.484756]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":43.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":38.988,"geometry_index":19299,"location":[0.071555,46.48463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,241],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.879,"geometry_index":19326,"location":[0.05788,46.476134]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":92.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":83.305,"geometry_index":19327,"location":[0.057092,46.475828]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,239],"duration":3.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.746,"geometry_index":19379,"location":[0.020436,46.465794]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,238],"duration":1.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.363,"geometry_index":19382,"location":[0.019323,46.465319]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":6.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.898,"geometry_index":19383,"location":[0.018776,46.46508]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":69.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":62.418,"geometry_index":19388,"location":[0.016458,46.464022]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,246],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.023,"geometry_index":19421,"location":[-0.009339,46.454496]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,249],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.992,"geometry_index":19422,"location":[-0.009349,46.454493]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,249],"duration":2.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.199,"geometry_index":19424,"location":[-0.010318,46.454231]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,246],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.027,"geometry_index":19425,"location":[-0.011267,46.453974]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,249],"duration":28.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.527,"geometry_index":19426,"location":[-0.011277,46.453971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,245],"duration":241.785,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":217.59,"geometry_index":19433,"location":[-0.022241,46.450934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,252],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.434,"geometry_index":19478,"location":[-0.07578,46.430691]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[72,251,262],"duration":21.68,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.496,"geometry_index":19479,"location":[-0.076161,46.430604]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.084951,46.428456],"geometry_index":19483,"admin_index":11,"weight":11.051,"is_urban":false,"turn_weight":0.5,"duration":11.754,"bearings":[68,69,242],"out":2,"in":1,"turn_duration":0.03,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,236],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.738,"geometry_index":19495,"location":[-0.089277,46.426778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":51.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.844,"geometry_index":19496,"location":[-0.089555,46.426648]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.082,"geometry_index":19519,"location":[-0.107501,46.418048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,245],"duration":21.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.438,"geometry_index":19520,"location":[-0.10795,46.417897]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,254],"duration":0.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.582,"geometry_index":19534,"location":[-0.116285,46.415756]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254,259],"duration":2.758,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.465,"geometry_index":19535,"location":[-0.116542,46.415704]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":18.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.562,"geometry_index":19536,"location":[-0.11766,46.415482]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,254],"duration":42.312,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.121,"geometry_index":19540,"location":[-0.125387,46.413956]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,242],"duration":49.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":45.527,"geometry_index":19567,"location":[-0.142286,46.40934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":1.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.98,"geometry_index":19588,"location":[-0.15972,46.401059]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":16.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.477,"geometry_index":19589,"location":[-0.160081,46.400871]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.016,"geometry_index":19596,"location":[-0.165988,46.398035]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,240],"duration":10.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.434,"geometry_index":19597,"location":[-0.16639,46.397871]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.316,"geometry_index":19606,"location":[-0.170336,46.396489]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,248],"duration":4.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.477,"geometry_index":19607,"location":[-0.170903,46.396322]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,247],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.035,"geometry_index":19611,"location":[-0.17237,46.395927]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,250],"duration":34.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":32.02,"geometry_index":19612,"location":[-0.172377,46.395925]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,255],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.664,"geometry_index":19638,"location":[-0.188232,46.393443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,254],"duration":57.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":53.102,"geometry_index":19639,"location":[-0.188554,46.393385]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":53.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":49.508,"geometry_index":19696,"location":[-0.207273,46.38096]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,235],"duration":7.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.746,"geometry_index":19724,"location":[-0.216588,46.370976]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,245],"duration":7.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.859,"geometry_index":19729,"location":[-0.219241,46.36987]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,254],"duration":56.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":52.348,"geometry_index":19737,"location":[-0.222179,46.369065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,262],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.707,"geometry_index":19751,"location":[-0.246064,46.366676]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,263],"duration":65.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":58.676,"geometry_index":19752,"location":[-0.246391,46.366646]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[46,225,227],"duration":24.879,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":22.371,"geometry_index":19802,"location":[-0.270578,46.358155]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.278246,46.353295],"geometry_index":19811,"admin_index":11,"weight":7.18,"is_urban":false,"turn_weight":1,"duration":6.688,"bearings":[44,52,233],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.395,"geometry_index":19815,"location":[-0.28056,46.352143]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":34.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":32.254,"geometry_index":19816,"location":[-0.28071,46.352074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,245],"duration":1.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.883,"geometry_index":19838,"location":[-0.293936,46.347413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,245],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.754,"geometry_index":19840,"location":[-0.294705,46.347172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,245],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.723,"geometry_index":19841,"location":[-0.295009,46.347076]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.2953,46.346981],"geometry_index":19842,"admin_index":11,"weight":20.941,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.051,"bearings":[65,245,248],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.303342,46.344074],"geometry_index":19853,"admin_index":11,"weight":10.207,"is_urban":false,"turn_weight":1,"duration":9.449,"bearings":[45,59,239],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,237],"duration":149.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":141.824,"geometry_index":19857,"location":[-0.307132,46.342481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.711,"geometry_index":19896,"location":[-0.355827,46.308431]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,215],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.816,"geometry_index":19897,"location":[-0.356025,46.308226]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.356822,46.307433],"geometry_index":19898,"admin_index":11,"weight":15.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.012,"bearings":[35,215,232],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.36119,46.303769],"geometry_index":19912,"admin_index":11,"weight":7.117,"is_urban":false,"turn_weight":1,"duration":6.445,"bearings":[28,43,224],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":26.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":24.156,"geometry_index":19914,"location":[-0.363133,46.302428]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[59,240,245],"duration":41.793,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":38.652,"geometry_index":19928,"location":[-0.372017,46.297828]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,230],"duration":203.973,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":188.652,"geometry_index":19943,"location":[-0.387094,46.291512]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[34,214,217],"duration":11.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.359,"geometry_index":20021,"location":[-0.433477,46.241088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,212],"duration":14.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.691,"geometry_index":20025,"location":[-0.436051,46.238342]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.439223,46.234618],"geometry_index":20030,"admin_index":11,"weight":24.832,"is_urban":false,"turn_weight":1,"duration":26.488,"bearings":[25,29,210],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[28,208,210],"duration":30.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":27.703,"geometry_index":20039,"location":[-0.444537,46.227742]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.450789,46.219776],"geometry_index":20045,"admin_index":11,"weight":40.551,"is_urban":false,"turn_weight":1,"duration":42.766,"bearings":[28,31,211],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[44,48,228],"duration":18.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":17.059,"geometry_index":20068,"location":[-0.463563,46.209159]},{"entry":[false,true,false],"classes":["toll","motorway"],"in":0,"bearings":[48,228,344],"duration":72.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":67.137,"geometry_index":20071,"location":[-0.470039,46.205198]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":23.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.773,"geometry_index":20093,"location":[-0.492718,46.187723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":204.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":189.043,"geometry_index":20102,"location":[-0.499488,46.181699]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189,206],"duration":22.645,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.941,"geometry_index":20138,"location":[-0.532684,46.120215]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.534187,46.113633],"geometry_index":20139,"admin_index":11,"weight":252.082,"is_urban":false,"turn_weight":1,"duration":271.449,"bearings":[6,9,189],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[15,194,199],"duration":20.895,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.309,"geometry_index":20186,"location":[-0.540132,46.026459]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.541663,46.020366],"geometry_index":20192,"admin_index":11,"weight":155.41,"is_urban":false,"turn_weight":1,"duration":166.953,"bearings":[5,185,351],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194,196],"duration":17.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.285,"geometry_index":20226,"location":[-0.548357,45.971258]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.550208,45.96619],"geometry_index":20228,"admin_index":11,"weight":28.293,"is_urban":false,"turn_weight":1,"duration":29.516,"bearings":[10,14,195],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.953,"geometry_index":20231,"location":[-0.553332,45.95785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":7.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.812,"geometry_index":20232,"location":[-0.553436,45.95757]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.062,"geometry_index":20233,"location":[-0.554179,45.955507]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,193],"duration":6.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.406,"geometry_index":20234,"location":[-0.554294,45.955198]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.012,"geometry_index":20236,"location":[-0.554964,45.953272]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,192],"duration":203.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":188.375,"geometry_index":20237,"location":[-0.555069,45.952971]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[50,229,231],"duration":0.938,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.848,"geometry_index":20302,"location":[-0.598532,45.896653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.285,"geometry_index":20303,"location":[-0.598819,45.896477]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":36.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":33.555,"geometry_index":20304,"location":[-0.599601,45.895996]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,229],"duration":151.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":136.406,"geometry_index":20307,"location":[-0.611093,45.888917]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":0.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.691,"geometry_index":20347,"location":[-0.624934,45.846983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":10.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.395,"geometry_index":20348,"location":[-0.624995,45.846766]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":4.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.648,"geometry_index":20351,"location":[-0.625734,45.843681]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":63.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":57.324,"geometry_index":20352,"location":[-0.626003,45.84249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":10.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.324,"geometry_index":20382,"location":[-0.639577,45.82503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":10.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.102,"geometry_index":20385,"location":[-0.643041,45.823221]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,226],"duration":5.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.941,"geometry_index":20390,"location":[-0.646655,45.821185]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,219],"duration":70.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":63.152,"geometry_index":20393,"location":[-0.648258,45.820019]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206,211],"duration":24.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":22.398,"geometry_index":20422,"location":[-0.656792,45.800519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.662419,45.794649],"geometry_index":20433,"admin_index":11,"weight":5.641,"is_urban":false,"turn_weight":1,"duration":5.035,"bearings":[30,37,216],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,214],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.262,"geometry_index":20435,"location":[-0.663647,45.793458]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,212],"duration":44.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.844,"geometry_index":20436,"location":[-0.663964,45.793129]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.667856,45.780786],"geometry_index":20462,"admin_index":11,"weight":39.035,"is_urban":false,"turn_weight":1,"duration":41.145,"bearings":[0,178,353],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,196],"duration":49.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":46.672,"geometry_index":20482,"location":[-0.669357,45.768999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.727,"geometry_index":20506,"location":[-0.672215,45.755016]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[176,356],"duration":14.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":14.527,"geometry_index":20507,"location":[-0.672192,45.754798]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,354],"duration":118.402,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":115.438,"geometry_index":20512,"location":[-0.671638,45.750536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[163,344],"duration":2.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":2.105,"geometry_index":20545,"location":[-0.658928,45.717586]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":7.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":7.363,"geometry_index":20546,"location":[-0.658657,45.716968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,340],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.898,"geometry_index":20548,"location":[-0.657559,45.714815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":21.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":20.637,"geometry_index":20549,"location":[-0.657412,45.714557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[160,340],"duration":3.617,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":3.328,"geometry_index":20555,"location":[-0.654046,45.70867]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.199,"geometry_index":20557,"location":[-0.653509,45.707685]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[159,165,339],"duration":29.637,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":26.668,"geometry_index":20558,"location":[-0.653477,45.707627]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,348],"duration":0.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.023,"geometry_index":20570,"location":[-0.649845,45.698363]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.649842,45.698354],"geometry_index":20571,"admin_index":11,"weight":134.035,"is_urban":false,"turn_weight":1,"duration":147.824,"bearings":[168,345,347],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[170,350],"duration":157.961,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":146.098,"geometry_index":20595,"location":[-0.634886,45.65658]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[153,333],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":2.031,"geometry_index":20632,"location":[-0.605078,45.615592]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[151,191,333],"duration":31.992,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":29.57,"geometry_index":20633,"location":[-0.60466,45.615018]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.596226,45.607832],"geometry_index":20646,"admin_index":11,"weight":84.711,"is_urban":false,"turn_weight":1,"duration":90.504,"bearings":[137,298,317],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,198],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.203,"geometry_index":20669,"location":[-0.59831,45.580973]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197,200],"duration":19.973,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.457,"geometry_index":20670,"location":[-0.598343,45.580902]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.600151,45.57517],"geometry_index":20677,"admin_index":11,"weight":29.105,"is_urban":false,"turn_weight":0.5,"duration":30.945,"bearings":[6,9,186],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.504,"geometry_index":20680,"location":[-0.601422,45.566184]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,186],"duration":120.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":111.312,"geometry_index":20681,"location":[-0.601486,45.565719]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,189],"duration":50.867,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.047,"geometry_index":20688,"location":[-0.608732,45.530972]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[10,187,193],"duration":21.352,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.727,"geometry_index":20691,"location":[-0.612165,45.516321]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.613035,45.510018],"geometry_index":20695,"admin_index":11,"weight":57.77,"is_urban":false,"turn_weight":1,"duration":63.082,"bearings":[3,183,358],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[10,192],"duration":28.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.32,"geometry_index":20702,"location":[-0.614685,45.491352]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":6.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.691,"geometry_index":20705,"location":[-0.617699,45.483272]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":14.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.18,"geometry_index":20706,"location":[-0.61843,45.48147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,191],"duration":12.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.379,"geometry_index":20709,"location":[-0.619866,45.477242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.414,"geometry_index":20712,"location":[-0.620584,45.473523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":96.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":86.684,"geometry_index":20713,"location":[-0.620631,45.473068]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.574,"geometry_index":20726,"location":[-0.608576,45.443381]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[160,170,338],"duration":21.273,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.137,"geometry_index":20727,"location":[-0.608467,45.44319]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.606106,45.437166],"geometry_index":20733,"admin_index":11,"weight":140.266,"is_urban":false,"turn_weight":1,"duration":154.758,"bearings":[169,346,350],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,180],"duration":42.852,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.617,"geometry_index":20757,"location":[-0.604561,45.392411]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,336],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.32,"geometry_index":20767,"location":[-0.600889,45.380289]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,335],"duration":30.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":29.145,"geometry_index":20768,"location":[-0.60064,45.379911]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[148,153,328],"duration":20.781,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.738,"geometry_index":20775,"location":[-0.59401,45.372265]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.590316,45.366738],"geometry_index":20778,"admin_index":11,"weight":76.516,"is_urban":false,"turn_weight":0.5,"duration":82.188,"bearings":[160,334,337],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.418,"geometry_index":20791,"location":[-0.576069,45.345356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,325],"duration":147.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":136.301,"geometry_index":20792,"location":[-0.575703,45.344994]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[165,168,345],"duration":21.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.781,"geometry_index":20826,"location":[-0.556059,45.299799]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.553609,45.293797],"geometry_index":20829,"admin_index":11,"weight":74.176,"is_urban":false,"turn_weight":1,"duration":79.125,"bearings":[164,329,344],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,353],"duration":45.402,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":41.98,"geometry_index":20847,"location":[-0.549976,45.270904]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[155,159,335],"duration":19.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":17.684,"geometry_index":20858,"location":[-0.544882,45.258198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.541495,45.253205],"geometry_index":20860,"admin_index":11,"weight":68.375,"is_urban":false,"turn_weight":1,"duration":72.859,"bearings":[152,327,334],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,332],"duration":0.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":0.754,"geometry_index":20865,"location":[-0.528123,45.234339]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,330],"duration":150.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":138.914,"geometry_index":20866,"location":[-0.527955,45.234131]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[166,175,345],"duration":31.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":29.305,"geometry_index":20894,"location":[-0.493467,45.193159]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.489915,45.184421],"geometry_index":20902,"admin_index":11,"weight":81.031,"is_urban":false,"turn_weight":1,"duration":88.945,"bearings":[161,336,342],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":86.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":77.398,"geometry_index":20915,"location":[-0.47946,45.159605]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":82.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":74.188,"geometry_index":20932,"location":[-0.483455,45.134837]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[166,170,347],"duration":22.16,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.938,"geometry_index":20958,"location":[-0.484119,45.111032]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.481399,45.104864],"geometry_index":20965,"admin_index":11,"weight":233.586,"is_urban":false,"turn_weight":1,"duration":251.469,"bearings":[159,334,340],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,337],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":7.02,"geometry_index":21018,"location":[-0.43905,45.029296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,338],"duration":2.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":2.852,"geometry_index":21020,"location":[-0.438092,45.027711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,338],"duration":3.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":3.07,"geometry_index":21021,"location":[-0.437715,45.027059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":3.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":3.641,"geometry_index":21022,"location":[-0.437399,45.026472]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":7.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":7.371,"geometry_index":21023,"location":[-0.437025,45.025778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":13.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":13.477,"geometry_index":21024,"location":[-0.436264,45.024364]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.152,"geometry_index":21025,"location":[-0.435832,45.023562]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.435797,45.023497],"geometry_index":21026,"admin_index":11,"weight":15.387,"is_urban":false,"toll_collection":{"name":"Péage-de-Virsac","type":"toll_booth"},"turn_weight":15,"duration":0.387,"bearings":[156,339],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[156,336],"duration":11.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":11.27,"geometry_index":21027,"location":[-0.43575,45.023422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,336],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":8.398,"geometry_index":21028,"location":[-0.434415,45.02126]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,339],"duration":21.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":21.559,"geometry_index":21029,"location":[-0.433508,45.019621]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[160,165,339],"duration":5.727,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":5.719,"geometry_index":21030,"location":[-0.431176,45.015411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,340],"duration":5.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":5.137,"geometry_index":21031,"location":[-0.430427,45.013974]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.429847,45.012699],"geometry_index":21032,"admin_index":11,"weight":26.219,"is_urban":false,"turn_weight":0.5,"duration":25.098,"bearings":[163,335,342],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.427817,45.006609],"geometry_index":21037,"admin_index":11,"weight":25.887,"is_urban":false,"turn_weight":0.75,"duration":24.531,"bearings":[172,348,351],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[178,358],"duration":30.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":30.301,"geometry_index":21046,"location":[-0.426999,45.000768]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.427069,44.993509],"geometry_index":21050,"admin_index":11,"weight":32,"is_urban":false,"turn_weight":0.5,"duration":31.508,"bearings":[1,181,352],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.427834,44.985682],"geometry_index":21058,"admin_index":11,"weight":20.391,"is_urban":false,"turn_weight":0.5,"duration":20.41,"bearings":[6,9,191],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,202],"duration":1.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.844,"geometry_index":21065,"location":[-0.429775,44.980843]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[22,202,208],"duration":22.621,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.473,"geometry_index":21066,"location":[-0.430019,44.980412]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.433371,44.975481],"geometry_index":21072,"admin_index":11,"weight":10.902,"is_urban":false,"turn_weight":1,"duration":10.449,"bearings":[18,26,202],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":7.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.008,"geometry_index":21075,"location":[-0.434563,44.97313]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,198],"duration":8.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.805,"geometry_index":21078,"location":[-0.435328,44.971402]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":11.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.258,"geometry_index":21082,"location":[-0.436357,44.969521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.664,"geometry_index":21086,"location":[-0.438232,44.967093]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":38.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":35.246,"geometry_index":21087,"location":[-0.438402,44.966898]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,235],"duration":42.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.328,"geometry_index":21098,"location":[-0.449511,44.957462]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,222],"duration":7.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.168,"geometry_index":21105,"location":[-0.461615,44.951229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.762,"geometry_index":21109,"location":[-0.463435,44.949664]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":0.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.066,"geometry_index":21111,"location":[-0.463612,44.94949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,211],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.52,"geometry_index":21112,"location":[-0.463626,44.949476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":22.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.234,"geometry_index":21113,"location":[-0.463733,44.949349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,190],"duration":16.25,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.414,"geometry_index":21119,"location":[-0.46572,44.945909]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,186],"duration":18.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.941,"geometry_index":21122,"location":[-0.466248,44.94314]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[7,187],"duration":1.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.684,"geometry_index":21124,"location":[-0.466773,44.939909]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":26.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.184,"geometry_index":21125,"location":[-0.466842,44.939486]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":0.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.598,"geometry_index":21128,"location":[-0.467673,44.934559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":0.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.898,"geometry_index":21129,"location":[-0.467696,44.934422]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":4.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.602,"geometry_index":21130,"location":[-0.467742,44.934215]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.195,"geometry_index":21132,"location":[-0.467987,44.933172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,192],"duration":3.113,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.027,"geometry_index":21133,"location":[-0.468,44.933126]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,198],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.934,"geometry_index":21134,"location":[-0.468169,44.932572]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,200],"duration":3.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.703,"geometry_index":21135,"location":[-0.468405,44.932054]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,204],"duration":20.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.715,"geometry_index":21136,"location":[-0.468731,44.931406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":23.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.422,"geometry_index":21138,"location":[-0.470923,44.928071]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,202],"duration":73.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":73.074,"geometry_index":21140,"location":[-0.473625,44.923997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":3.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.348,"geometry_index":21153,"location":[-0.483853,44.912406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,233],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.125,"geometry_index":21154,"location":[-0.484534,44.912063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":17.863,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.855,"geometry_index":21156,"location":[-0.484996,44.911817]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,231],"duration":14.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.184,"geometry_index":21157,"location":[-0.487566,44.910537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,223],"duration":28.184,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":28.16,"geometry_index":21159,"location":[-0.489436,44.909366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":11.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.523,"geometry_index":21168,"location":[-0.492653,44.904833]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":10.496,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.75,"geometry_index":21169,"location":[-0.493449,44.902861]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.047,"geometry_index":21170,"location":[-0.494278,44.900823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":11.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.344,"geometry_index":21171,"location":[-0.494357,44.900622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,196],"duration":2.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.059,"geometry_index":21173,"location":[-0.495235,44.898474]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,201],"duration":36.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":37.746,"geometry_index":21175,"location":[-0.495481,44.897935]},{"bearings":[38,217],"entry":[false,true],"classes":["motorway"],"in":0,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"geometry_index":21183,"location":[-0.500763,44.892303]}],"bannerInstructions":[{"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"type":"text","text":"Toulouse"},{"type":"text","text":"/"},{"type":"text","text":" Bayonne"}],"type":"fork","modifier":"right","text":"Exit 1 Toulouse / Bayonne"},"distanceAlongGeometry":306252.969}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 10/E 05/L'Aquitaine.","modifier":"slight left","bearing_after":194,"bearing_before":197,"location":[0.619889,47.140401]},"speedLimitSign":"vienna","name":"L'Aquitaine","weight_typical":8882.203,"duration_typical":9528.398,"duration":9528.398,"distance":306252.969,"driving_side":"right","weight":8882.203,"mode":"driving","ref":"A 10; E 05","geometry":"abf|xAavyd@lp@nPlpBjw@pjAjf@|uBz~@~t@vZpa@lQre@tUpb@|W|j@vd@zPjK|PxKlPdLlPnLnPxLfPnM|GrFzFvEvOvMxOnNbLdKxBpBnZ~YbOvOzN`Pt^xa@tNnPfN~PxSxX`NzQzMfRvMdRrMxRnYdc@fYnc@vFvInQvXdYrc@lw@hmAd[re@h[he@jWh_@hKxNjKxNlUb[lU`[xLdP|LxOdMvObMnOpVzYzU`YjP`RlPxQjJdKjJ~JvPrQxPfQnWrW|LxL~LlLb[jYpNxLrTjRlXhUdX`UhXvTvz@lp@hYlTdLpIfL`I|AdAlXzQl[lS~LvHrSjMhPvJlPrJpTdMtTtLna@vSpTtKpTlKlSrJnSnJdSzIhSrI|[xM|[jMlZ`Lx]fMfVhIhVdItUpHnVvHvU~GvUxGtPrEtPjEpXbHnXtGjb@pJnb@bJfH|A``@~Hh_@fHf_@zGj_@pGh_@~Fxb@rGzb@bG`j@bHrTlCrTfCbc@zEdc@lExq@jGzq@~Fxf@rDxf@fDjkAxGjc@rBjc@hB``AhDfcA~B|dAbBty@f@py@NvsAMli@[fi@m@~h@_A|h@gA|h@{A~h@iBbj@{Bjn@uCln@oDdn@}DpgAgIx[oCfy@yHzx@qIjwMo~AzM_Bxp@{H|m@eGpTaCbR}AlMkApMcAlTyAnTsAnc@sBhQm@fQa@nMWnMMx\\Gx[HlMNlMVxTh@xTr@vTdAtTpAvVhBvVxB|h@xFhRfCdRnCp\\pFr\\jGhR|DlRhElb@lK|S|Fv[rJna@xMpVvInWzJtX`LpXxLtVpLrVzLhVlMdV|MlYxPhYrQpl@|`@nKxHvX~SjRfOdQpNrj@bf@z]d\\d_@r^`Q~PbQhQte@hg@je@vg@viAvpAf@h@vjAfrA`e@lh@de@`h@x\\b^~\\t]b]j]dNbNhNtMh]~[fNfMhNxLfShQlSrPlg@ja@xHfGzVrR`TnOjRdNnRpMff@p[vR~LxRxL`]fS`m@z]dR|JlZ~Ozf@lXrAt@pw@``@~s@h^nhBt|@heB~z@`rAdp@njFxiCtnBbaAh_DpzAlzC~xAlwDxkBxaBdy@h{Ajt@`q@~ZxlA~i@pb@nQr[pM|h@vSlZpLzS|Hxh@zQzN|E~RhHxQfGdYnJlUvHjVtH`dAlZta@xKxa@tKza@jK`b@|Jve@|KlR`EnRvDhm@|Lnm@bLh\\zFn\\rF~[hFd\\~Etd@rGvd@hGxd@rFzd@zF~v@rJxu@rJhnBbVnnBxVzZbEzZvD|ZpD~ZlDhZ`DjZtCf[rCn[xBxXjB|XjAx^pAt_@j@pYNrY?`d@o@r_@s@`J]lo@wDxi@qDfe@aEpe@mEnqKgeAhHs@r`B_P~s@yGvz@}H|bAsIl`@yCl`@aCb_@sBh_@sBdb@eBfb@kAn\\o@n\\_@r\\[r\\Un_@Hn_@d@r_@fAt_@vAxV|@zVlAt[nBv[|BlUpBjU|BrUpCvU`DtWvD|WzD|p@lL`p@fMrWjFhWhFt_FleAdgAxUfOdDhk@~Llk@hMdy@rQfy@fRzx@jS~x@zSxc@lMvc@|Mh`@zLd`@pMt\\rLv\\`Mjn@rVxm@vWbo@lZno@f[z}@df@l{@rg@hy@rh@ft@ve@`y@rk@n[bVfCnBTPrVnR`p@dg@tWjSRP|VvRtaBrpAn`BvoALJzaBlpAdwBbbBl[pVNLd]|Wt]lX|_@rYhHzFrmCduBJH`p@rf@tSlOxS~NpSvN|SdN`R~LhRfLlRjL~PpKvg@pXrStKhSlJlUlKjVpKp`@lP~OlGhP`Gvb@lO|b@~Mv_@lLfVbG~]zItN`DtNvCtTrEzTdErWrEzWfExp@xJ|^dFb_@zEh_@xEpc@hFvGdApc@bGxh@`HrpAhPxQ~BbvCd_@~_IzbAdaAdLl]pDl]~Cx]hC|]|B|]~AnNh@pNZh\\h@fWLbDBbOA`OGl_@[n[gAp[kAfOo@dO{@`OaA`OiAx_@wDn_@kEpViDzk@eJfQaDbQiD~PuDdM}CzBk@~b@uKdQ}EbQkF|QuF`RiGbUgIl^{Mh^sNfb@_Qdb@oQnrA{j@vh@_U|h@kTx^sNt^}Mf`@oNf`@}MlPsFnPgFnPgFpPyEbe@qMbR}EbRuEhTeFjTyE~`@mIvi@_KxYeFvYyElVsDnVgDzi@}Gbj@gGxeAwJbf@{Drf@qDvg@cDdSqAlSoAxh@uCxh@oBbv@{C|w@oBhs@qAbYk@bY_@rnAy@jrAIpoAx@hg@p@hg@z@|`@x@`a@fAxl@fB|Ux@|UhAlqAjGpe@rCze@bDxCXfNtAnnAhKnXrCfg@bGnl@zHnl@dJzVpE`WlE~t@dOh|@vSv]nJjj@vOpZlJlZzJvg@lQxg@bR|VfJ~VrJpo@~V~}Adn@lkCvdAbq@rW|YnL~YfLbgCrbAfiCbcAx[dMf\\fM|QpH|QnH`RdHdR~GhQdGrQxF`d@vNrUbHxUtGdUzFrU|FpO|DpLzB~LzBp[jFvYhE~YvDn\\bD`UnBpUjBpQnAzQhA~RlA|RhAl{Mxt@pt@vEl[pBf[jCd^|Dr^fE`ZnDr@Hx[nEn^pFl^jGxXdF|AXv[lGrPrDvPzDbb@~JpZ|HrZpIhZvIfZ~Ili@nQhi@lR|b@rP`c@lQteCrlApCjAt^fSp^xSt\\lSx\\vSbQ|KvQ|Lzc@|[h\\fVd\\zVbZzUbZrVpYtVtQ`PrF|ExPvOnAlAfnAlmAbd@te@b`@hc@fXf[hzB|tC|DdF`U~[|Tl\\lUz]zTd^fRzZ|QvZvSh^hSn^lXng@jWtf@nLhUpLvUjYll@~Vpk@~U~i@hZ|s@~Yft@zKdYvKxYdKfYfK~YtPff@pPxf@|Odf@vOtf@~Olh@`Pph@|Orh@~Ofi@zyB|xHr|@t{CnNlf@pN`f@nNdf@rNff@|Lnb@pLhb@tZzeAxv@bmCrmBjyGzEbPlRfp@lHvVrHxVng@laBlMra@tOff@~G|SpGlRzPdf@zO`d@`Pxc@tNv_@~Ppd@fSjg@nQzb@~Pla@rQfb@rHvPtHnPpR`b@~Rza@tHzOzH|OnR~_@`I|ObIrOfRp^|S|`@~f@t~@zg@b~@`{Bt}Dr|@x}Af|@|~AfeA|pBzMfWrMpW~MpXjUdf@j\\~r@l_@tz@pMrZbMvZpMb[`Ml[jO~_@vNx_@vO~b@r@lBtQbg@vQ`i@tQli@zSlp@xRjn@lP`k@bQpm@~Pln@pSlw@jWtcArSp|@fE~Qnx@hqDzYbrApKze@vKxe@rIz^~GbY|Hd[~H|ZnRxt@pQpo@hJ|[hJ~ZpD~LxD|LhIxWnJjZdKxZ|JnZfKjZtOhc@nPdd@tO|a@dPxa@pI`TrIvS`Tzf@zTng@`JnS`J|Rtd@``AnCpFnOtZjThb@fT|`@nTf`@bVjb@nVpa@fZ~e@xLrR|LdR|Sn[`T`[di@xv@tlAzdBjeF|kHneFnkH`g@xr@~RnXfS~WlRxVzRpVxRjVzR~UzZb^`[b^xp@ls@`XxX`XpXft@jq@nLpKhLfK~YnWn[zWz[pWp[tV|[lVhRhNxj@r`@rk@~_@bWbPlWvO|WzObXbOxVtMdWtM|V~MbWrMfVbMfVzKjVzKdVhKjn@jWpVjJjV~IhPxF|h@|QvRfGvKnD|ZdJlZnIhXfHvUhGjXxGlXpGrpAvXzdD~r@je@zLrSvFrSbG|\\bKz\\vKjTjHfTxHjSfHnSrH|UnJ|UdK|g@fUbTzJfTdKfTnKfSlKxRdKvRlK|g@nYtcCxwA`aAhj@dRbK`o@j\\~]|Ph^rPnQrHnQjH`e@pRd\\vMn[rLxc@lO`QxFbQpFdZ|IfZrIpZbIrYjHx@RtTfFd\\nGnYxFrWfFvd@xIxd@lHxfAdPvt@fIv[bExh@rGdZ|DtyCv^v}@~KrlBtUpt@dJrw@hJ|@J|Cb@RBh_@vEta@fFddAhM`fArMh`@tEb_@`Ez[bDtW`C`TfBpPnAbObAfTpAr`@tBnZjAfX|@f_@x@v\\b@~\\Rt[Fdc@Oh[[zUc@lb@aAf]cAp\\kAdQq@~Ni@\\Adg@gBzi@gBrXs@nSe@p[c@hYYbf@EpYF~WVt[^|[v@xb@vAlc@pBfUrAbW~AfVjB~R~A|`@vD`b@tEjTlCzTzCvP`CpO~B~_@nGbb@pHx\\vGzVdFjZnGtWtFni@pLnOhDtWzFdDt@rWxF|`@rIj[vGph@hKfZtFzb@|HrUbEhXrE`Df@n_@fGrZ|E|g@lHNBhpA~Pn@H`j@~Grh@rIvTpDbMzB`M`C`MhC`MlCvZnHxZhIjTtGxInC`Bh@zL~DlNdFjNlFvUhJrU|J|VjL`OfHzNrHpUdMhUrMj[vRlc@vYl[jUjWdStVvSxVrTbbAnbAj]r_@lZd^vPvTlPjStOhTlOpT`[zd@pMfTpMpT|MzUvM|UnMjV`MpVtM`XvGnNpGnNtO|]lOh^na@nbAzO`a@tOja@~aAzgCh`AfdCfTdj@tGhQvJxVrG`PpDbJlJ~UfMr[nHdRzZ|s@`J|SdJvSzJrU|JlU~Nn\\|Nb\\|Px_@bQh_@pc@j`AzJfSfO|ZfUjd@|f@dbAzOh[li@hcAdUdb@jPtZpRn]~Rp]x\\hl@jSl]dSd]dSz\\zd@`v@vMrSrfAtbBlXna@rX~`@|t@xeA~NxS`OnSle@ro@t_@rg@`StW`ShWf_@`f@xMlPxMdPfh@nn@`h@rm@vqAxyAto@~r@xo@`r@vb@~c@bc@zc@zb@zc@dc@xc@vQdRvQtQvQ|QtQrQrd@rd@|d@hd@lOxNhOnNj`@j^nR|PnRrPzf@|a@le@n_@bRtNlRnNrRnN`S`NvRnMfSlM|SnMxS`MrTzLpTrLnS`KxSrJzSfJnTfJ`]dMl\\bL`\\`KxLdDnMxCz\\~Hd\\`H|u@|Nzc@dIde@bIjXrD~p@zKd_D`h@zjAnRnb@lHpa@|HfnA~TzpAnSpmAnRpmAzS`WrE|VhFzm@dMxvB`f@bd@hLp^dJvS~FF@|\\zIfX|JlNhFnJjDtW|KfNjGdNrGtOjIbMnHtNnIlN~IbXpR~FhEvJ|HfJzHzG~FfUfTrJlJlJxJxQnSxLrNnLfOpTxYnIxLfNrSfKvPjVbc@pLdU~GdN|CzGnHlPtKtVlKxWbGxOfGlPbGbQlFfPlFtPxEfPvEtPrEjQlFvSrGtX`Hf\\vG|[lDbRnDrSzCtRtCvRvEl\\lEr\\~Dx\\tF`g@lVj`CtG`p@~Gxq@bH~p@vC`XzC|W~Dt[nCpS|AjMfBhMfD`UpChQbDzQbGv\\fEnTnEtSfEdRtEtRpEtQzErQbFnQjFfQpF|PxFdQxFpP~Nv`@hGzO`LdXfOr]jJrSzJlSrItQhIlP`DrGlNtXd`@bv@~}Ar|ClHrNboBfyDpVff@xVbf@~xBhiEbTjb@~Snb@jQ~^`Qb_@bQ|_@zPf`@lP``@nPz`@bPv`@zO`a@f`@|cAla@~gAz`AxiClKvXnKrXrG~OtGxO|GxOxGjObHrOdHjOzE|JdF`KdMnVzFpKvFhK~FjK`G`KxN~UhOrUbOtThObT|IvL~IlLfJhLhJ`LtJfLpOfQ|GlHzGfH~G~G~GvG~PnPdO~MfQjOlQtNfQ|MlQnM|PjLdQhLbSxLhS`LjVjMpS`Khn@nYbr@`ZrdBdu@n{Arp@d\\lO`TtKnR`KzKhGxKpGtXbQvXdRdX|RnTnPjXfU|W`VrTvSnT`UvRnTtRzTxTpX|SbY|IvLnIdM|OxUbIrLxH`MrN~VlWbd@|LpUbFtJpEnJxQb`@fLlW`LpWlNh]dKjXtEvL|Kh\\lJhYxFnQtErOzIvZlInZdIjZpHzZ~J|c@~Gt[rGz[dGr[rFf\\jEfYzE~ZvEv\\nEn]tDx\\jDb]fDz]vC~\\lCt]zArSlAxSbB`]`ApS|@rSxAh^h@pSh@tSr@h^h@p^^pc@JvTDjSE|RW`h@Yj]YpS]nSa@fQa@fQiA~\\qAh]{@rS_AlSgC`f@yCfh@ewBv}\\sAbTy|@vkN}b@f~G{Rh|CcDbh@}Cbh@uB`_@oBf_@}Cfn@oCdn@wB`j@mBdj@_Bnh@uArh@}BlaAc@xU_@tU[hTKrMe@vc@a@`d@Wd^KtRKrYEzY@pt@Dj_@Jp^f@j}@Pt^ZxZd@p]b@tVnAts@dA~g@jA~g@n@xTdCxt@rAr^xAr^|FnpA|l@ryLtQhsDlHn}AnClh@~Cni@lFn}@rAzSxAxSlCd^hEdi@xHj}@rIh}@jFph@vFdh@zF|f@pG~g@vGxg@fLvz@zGzc@rPleArFr\\xDlUvFn[|Fn[hGp\\rGf\\dQp{@nPlw@|Njo@xH|[`Iz[~Rbw@tS`w@lInZlKp^xTzt@bUdt@vgAzfD|a@rpAvNbc@dShl@`KzYdKtYjKxYlKpYlKfYrKzXlX|r@tWjo@jYrq@nLfXrLbX~LlXfMlXzL|WbMxWn[lp@bM`WfMxVz[fn@bi@vaAji@paA|qAv`C`jD|iGhj@x_Ath@|{@fTr]fT`]zi@hz@tYhc@tT`\\pj@dx@xoBrnC|FzHzF`IlxAdpBjj@fw@zt@tfAni@ly@jS|[hI|MfSf]`St]xM`VnMhV~Qf^rHfOlHlOtPd^dGtM|F|MdJzSzI~SzKrXvKvXvOhb@lKnYpJ`YxN~b@tFbQpFfQbItXbRfp@|HnYfL|c@xH|ZtHv[dHx[`H|[rHp^fHn^pIrd@fIbf@pPndAbHvd@|G~d@bM~|@fIvl@vHfm@zOtoAtBdR~BvR|Fdf@hQruAl`@jaDh`@x_DvDf\\fEh\\lClSpCfSrChSdHxf@nHvf@lRfmAzKro@~Kro@dOpy@|Ind@bM~n@bF|VfF|VtMjn@bNdn@rKje@zHx\\`Il\\rM|h@fPlo@rE|PdGlUzQbq@jMjd@jQpm@|Odi@hOtf@zN~d@fG`RpDnK|Mda@fK|ZhNha@pKdZpKbZlLh[bMl\\lGlPnGjPrOv`@|Oh`@~h@trAbh@vsAbe@rqArNxa@bRlj@jNpb@fGtQ|F|QxObh@pOdh@hMrc@dM|c@|Slv@|L`e@d[tnAdL|d@dLze@fKxd@rK`f@fP|t@TdAdIz_@dJvd@bJne@zIle@~Iff@zt@~fExg@xwCDRdF|YdHr`@`Ohz@DRpC|O|wAbhIxZpeBzYb`BrPd{@tJ~e@hKhg@tPfw@hKte@rKje@tKde@zKde@dL`e@lL|d@hSlw@hI~ZlIzZ`Tjv@nT|u@xM~c@dUnu@jd@bxAX~@pxQfhi@`]pdAzNnd@rNjd@fJnZdJrZrT~u@dTlv@jItZ`I|Ztc@pfBrPrs@hPrs@nK|e@`Kpe@xJxe@bP|x@rGf]rLzo@nDjRrDlSjDbShFt[fInf@dIfg@jE~WzDtWtHdh@dp@|uElDxVrTt{A|o@nsE`Hfe@ru@|lEbA~CfAhEhEnRtHv[fDpNjDjN|K`b@xI|ZbJhZhJxYlJtYfO`c@bGjPlKlYtKdYzG~PzKnXjPba@pYjq@du@pcBhu@bcBbx@hhB`h@hlA~^`}@~Mv\\p`@|cAzWtt@vJdYpJhYzUbu@fUfv@hJx[|I`\\hKb`@|J``@rRhx@lH`[fHh[bQhy@rGf\\nGj\\jGn\\~Fz\\bN|y@fFd\\bFf\\zLvz@nEx\\|CfUzIrr@fFnb@fB`OzLzdAxIru@bR``Brn@~pFxPfxArNtnAbOjoAzL|~@xEz^fF`_@nH|f@pHtf@tWxaBrFl\\vFf\\`Lzo@pDlRtDhRzLtn@fFnWlFhWrPbx@~Gr[bHn[`HzZbHxZbLtd@zK`d@`Lzc@`IzZbIvZrBxHbPxl@tW`_ArTxt@`J|YfJxYhJbZjJvYpRxk@fVbs@j[l|@rKvYrKjYrK`YtKtXfPja@lP|`@va@lbAbeAnfCbyAhlDlY|q@f^pz@vJpUrb@`dA~a@ddA|Wpq@n[vz@hKpYjNha@nXvz@fIbXjL|`@rEbPlEhPfId[rEnQnErQ|Hf\\fKnd@jMdm@lIlb@`K~j@jDrRdDxR`AfGBLvF`^xHbg@rCrRjCpRpDjY`En]~D`]BTvDn]tIj|@tBvUjCf\\vC`_@lCl^zFh{@|KxfBhJ~~AzJpaBzDnn@bBbVfBbVpCj]nCt]dBpSjBlSfD`^rBbS~BdS`C`ShCbShC`SxEt\\lF`]|CpRbDhRfGj\\rG`\\dEjRfEdRjHtZbIx[hIb[xIzZ~IfZtJpZdK`ZhKhYlGrPpGnPpG`PtGxO~GxO`HrOfHnOjHdOjRb_@vHhNjW~c@jNlUdKzO`KhObK`OpLjPhO`S~ObSdPzRrPrR|PtQbQjQlQnPdKjJnPhOxQ`OtKvItKjIpRrN`JrG~IjG~MfJzM`Jb`@pVf_@vU`]bSf`A`k@p|@rh@t_CpvAj]vSl]bTh`@pV|NvJzN|JnTrOdPrLbRxNhQzNtP`OnPnOlOpOnOlPrOlQvOrRlNbRfN~RxOvUjObW~FbKzFfKpMnV|EtJzE~J|GvNbL~VzV~o@fFxNfFvOnLjb@fPzo@zKzf@lGj[hC|M`CzMnD|SfFb\\hEtZp@xFbClSxD`^fDd^`Dz]dCp]fE~p@|Chh@nCji@rMl|CzMpfDr\\vjIj\\jeIxMpeDzDh`Az@lSdFrnA`B`_@hBj`@~Ed~@zCvh@jAtQrAxQlCv]rCr]jDha@pBvS|BnSrFtg@jFzb@`F~^nC~RtCxRpGn`@bDzR~CzQlGn]`DnPfDhPdIf`@nId`@zHp\\xHb[jIn[rId[tInZpMlb@vJvZjL~\\tMr^lNr_@nGhPvGdPxI|S~IrSrJnTxJbTzHbP~GnNrMjW~LvUfXhf@nSz^vSj^~g@tz@fq@ziA||AreCbq@|iAv[vk@pZvj@pM|V|NnY|[np@|Urh@~Srf@ja@paApIhTlIfTrOnb@hCjH|Rjj@xHbUvHfUdJdYfNhc@dJ~Y`Jf[tLvb@pId[xEpQrEtQ`L`e@`Ur`AxThaArR~|@xH|]nHb^pe@x|BlK|g@pIt`@nClMnB~IjDtOtHj^~D~Q|DdQfSl}@bLbf@rLdg@~K|d@rLle@dYtfA|Lzc@vIn\\h^ppAzJx]~L`a@dXv|@~Y``AtSvo@tYh|@`Shl@jSfk@na@dhAv~@bbC~aA`eCdaAhxBjlAljCzuLbtWpChGteAd~B~eAl|Bxb@h|@xc@|{@tXzh@dq@rkArk@``Afb@hp@pXda@hx@biAls@n~@rq@jy@t^db@x^|`@xp@dr@pY`YbYhXrYbXnVxTti@te@xa@`^rD~CfmAvcAbmA`cAbvA|jAz}@bv@d|@fu@tt@to@vd@va@dTlSxKjKpp@xp@\\\\`UxUhR|SfNpOrOvQfRxTrUlZrS`WxTbZfVp\\vExGfQbWlSpZx@nAlh@jy@ji@`~@dZbj@f[|k@`\\`q@fPl]pKlUrJfTr\\nv@b\\fy@nGfP|Q~f@~Olc@vWnv@rRpm@~Ln`@zS|r@|Ndg@fMtc@lQzn@rErPnF`SllBb_H|Shu@zUrw@jVbw@vXjy@lOrb@lc@niAdUti@t`@p|@lXjj@|R|_@fOnYrm@feAjR~Ytg@hv@fh@rs@pT~XzTnXnk@rp@|c@ne@jf@ze@d_@x\\hb@f^n`@|Zve@t]t\\rUvg@p]tb@`W|PrK`tCpeB`TdNda@xW|U|O`[~Sl|@fo@tpAzbAtp@pj@~a@t^`e@jb@vd@rd@`bAj`A`cAneAxn@dt@pYh]dQvSvW|[|j@tr@vi@hq@~j@hr@tqAzzAv]r_@z]~^r[b\\~VzVjQbQtN`Nti@jg@|m@xi@`o@fi@zb@d]hKpIn^~X`m@jc@jm@bc@noA~x@xcBvdA`SzLhnAnt@rb@hXfa@rWn]dUvc@hZ`g@p]lc@f[xb@`[phAhz@jd@|]|a@l\\f[bWl^dZhd@d`@rn@vi@ve@rb@zu@fr@fv@bt@l[b[``@v^jo@jm@fPbOr~@z{@ji@nd@db@n^dy@zq@nd@x^tq@li@dr@rh@zIdHzyAbfAle@l\\lPhLzbAds@vXtRxp@`e@jp@`e@hnA`|@fkG|kEhf@j]|q@`g@vh@p`@~k@tc@rs@bl@r]|Yd_@`\\f`@b^|LbLrPdP`]z\\h\\b]lh@pj@`QrRnUvWfU`XlPzRzYr^zFfHxNdR|Q~UrVl\\pPnU|_A|vAn_AjxA|v@hrAlP`Zjh@j`Ank@dfAzp@|rAdxCrxFltBh~Dh{@v~AnaA~bBny@ztA`{@dsAr_A`vAv`AjtApcAbtAvOhSnZ|_@hYv^PRh{@ncAdk@rp@hk@~p@pk@xp@jk@|p@dk@vp@tk@bq@bk@pp@~j@np@pk@hq@twAxbBfk@pp@fk@tp@`k@np@vk@jq@fk@vp@bTtVdVxX|T|Wr_BnlBrbA|gAteArgAljA`fAhxA|oA~kAd`A|kAz|@niA|v@xjAjt@bfAbn@jqAlq@dkAfk@zkA`h@`lAbe@rdK|rDzuAbg@rlA`e@phAlg@hhAng@rwAxt@bsAxs@lnJduFhbBn}@jhB|}@bcAdd@n@XljArb@rlArb@zgAn\\frAh]xtAlYbuAvUtvAtTv}Gt_AvaFzr@j|Cnc@jzK||Axj@vHn|Cn`@dgBzOj}AzJz{AbFtTVlkArA~yAoAr}AwEzyAqIbzAmNb_BwS|xAoVpxHozAjbBa[`iBuWdxAmQ`{AcMb`BkH`pAmBhoAl@fqApCzf@pBdh@tCzh@pD|i@xEfmArNtiAbPhRlC|qXxcF``BtWbcBzTbdB~Px_CbMzvAjCzmAh@lpPkSvrAKtpAv@~mA|CnmAjFfpAbLrpA`O~gA~Pj~A~\\|yAn_@hlEdmAze@bMdt@rQlbA|SxpAjS~kAjMn}@fFbMt@plAvBrkAw@vdAeDvgAeG~}CcUpmAwJfpA{FjgAmB~iAhAtbA`CxkAbIteArMniAdRt_ApRdzD`|@z|@xRr{@lP~z@|Nn}@jMnlApNnrAdLhqAxHfhA|FrmIxb@lxBhNz{AhMfiBpSt`AjLvgAfOzlBnYvtB~^dtAfYtqAzZz}Ap`@z|EbqAdfCpq@fcEbiAx|DpeAnPnE|_Clm@hRdFjz@zR~{@~TxQpE`~Av[zFjAlgLv}BfiAlVhhApWfz@fVjFjBri@hRtt@z[ry@tc@~p@fb@|s@jj@he@fa@~a@r`@ld@fh@xa@xg@jb@zm@~m@baA`d@jy@zk@rjA`fDtoHpf@zaA`]bp@j`@`q@xg@rw@vZta@b_@~b@xLnNfq@~s@xf@dc@ln@bb@|TrOfVvOrUlNjV`Ndg@xVlZrM`ZjL`t@b[`v@rSjo@vNbeAxRveC~\\fq@~Kfq@nLh~@fQjc@~Ihw@hSlmApa@xw@b[xm@fXlu@``@zp@~`@`u@tg@l{@bq@jr@~m@|l@rk@|o@bs@x}@phAjd@bp@n_@nk@pg@bz@hr@tmAfgBvhDxGfN~I|P`]zo@ziHzdNh_AhgBfnA`_ClSfa@jm@rjAnj@|dA|o@|hAxl@v}@zt@`aAvq@jv@pv@tv@zr@pl@pk@|a@xdA~m@dm@pY`s@nXbp@xR|v@~Qnx@bMj`ArJvt@fE~r@zA`_AcCjFYhjAiGvm@yF|fDsYjaCwUxcBgO|_@_Dh_@mCfeAcD`iAoCbv@r@jt@|Cdw@|Dp|@lJtcA`PnhAhVnoFzqArxAv\\r}Az\\`}@bPpLxBbQ~CzdBvWxgAlOliAxOblB`WbjCl_@~dAzPx[hGrf@|K`_@bL|u@fXlj@dUl_@pR`b@~T|^hUfa@xXzWpSj[pWrFpE|\\d[rZzZnWdYfTfWdUlYzOpTrAhB~RfYpYxc@~Q`[dRx\\`c@z{@`b@p}@|_@~z@vl@rwA`p@x}Ad[hu@xb@jbA`a@n_AzXbo@~U|g@`Znk@fPxZbJpOl^tk@h]|e@`b@ng@rb@dd@f^n\\pj@bc@jYxRbg@`Z`g@dVta@dPz[~KhZjIlYtGb]jHrx@tMhy@fJ~y@zHx_AdJ`[fD|}AfOlz@xKb~@lOhp@zNvl@pOnl@nRvn@~Urh@`UzTdL~XvNr[rQnZ`RbT~MnUdPbQjMbP`Mla@t\\vTvRvQzPln@~l@z_AzbAd~@vcApd@bh@tp@dr@vWpXpSxRtc@n_@zWdTrX`S`ZtSl[hRnQtJrSbKlXxMpTbJ|XtKtWlIjYhJjc@xK|MhCd[~F`^jF~SdCnTpBrVlBpb@fBt\\nAj\\Z|_Aa@b\\O`gAgBd[EbyAqDt\\cAv[m@f{@i@`]@l\\J|\\^nc@`Av\\dBt[fBv\\|B|b@|Dxj@nG|[xEj\\~F|^`Hb`@nIbf@pLrh@bOz\\zJ@?dpAp`@jp@pR|b@bMva@dL~g@rNnd@rLfg@zLdh@fL`TpDra@`Hpb@`GhXhDtVhC`n@vEh_@zBl_@vAn\\v@d`@p@hg@Dz~@k@ti@o@d`@qAzP}@rLm@B?r\\_Bvk@wC|fAoG|vBkQph@wFtOkBpb@iEdmAiQnsA}SfbAoStq@qO|l@oPxh@{OheAm_@`dAsb@xmA}k@hmAso@bnByeAlt@s`@xf@iWxe@aVzWkMnWoLhVcKzb@}Pjv@wXxz@mXfiA{YhrAkX~}A_WhtBoYhtB}YhzAeVddBw^fY_Hxm@{O~oAe`@re@}Op`Aq_@~cAac@bOeHt~E_~B|q@k]hc@qSte@uUjLcF|CsAn]gO`^iPrB_AzUgKhT{Iv^uNpd@qPl@UdgA{_@~lAa_@hp@cR|Z}Hbq@iQh_AqRdyBae@PExeEk}@tmEs~@diDmt@vuAy[t[wHdq@}PduAk`@jnBym@vjBkp@|q@cXvmFizBxzBk_AhjAwd@rjAqb@vqAmb@teA}ZzjAoZ`~@wSfd@qJtoAgUrrAoSjdHwaAvjDcg@vg@iIvc@qHhyAgXbpAkX~x@cSz`@qKjbA_Zny@iYdXuJlcAaa@hbA}c@`hAyj@hz@ce@~_Awk@~cA}q@lcAmu@`fAo{@zaAi|@lcAgbAvz@c}@b_A}dAzoBu_CdfBcyBjtBohCl{@yaAlfA{gAliAmcAd~@gs@diAuv@x`@oVvd@qW~rAar@b}DuhBtgAeg@|sBsaAx\\iQla@oUb`@cWzb@cYp\\sV|`@c\\t}@cz@n`@ib@j`@{d@j^md@nXq^|_@_j@j]_h@dp@qcAz\\gi@zj@_|@|KgPte@_r@n^{e@~d@oi@p_Bq}AduA_cAjiBoy@f`Boa@`hBkS`lAs@juAfFf|AdVfaBpe@z{Atv@z~A~~@xwCbqBdpAry@j]vTv[jRzt@xa@ht@t^hB|@xmAnk@|s@tWlC`Aje@bPtx@lUpx@xSrp@lNzp@|Lbh@lH~~@xL`OlAhkBnOftLn{@`\\~BbiKpu@luCdWjuBhUlqBxUvlBxXxuGz`Avl^hlFlnWzwDr_BvSrb@|GfcAnKjgCbTbjCvOdq@~BblAdEtjBvFvfNhLfcCxHjuBbMx}BfUrsBt\\xwBrb@liB`g@vtGtoBroBtl@p}Aje@zjBha@x|@`P~eArRhxBbTbg@bCl[|Afb@rBx_CxBbgBcClhC_PxrBiVnbC{c@f~Bcn@XIb_Ciz@~hDy}AjzCc_BraQydJhi@aW|JyE~z@i^p{Aqk@lCcAtmB_g@hu@}Nnu@sLbf@sI~hBeNxl@oBj|AcFztBuGjcBiDdRa@nO[`hCwK|yBaOdsB_V`|OsqC|iBeWb}AcL|bBoD`|AtBlyAlHb_AbGjyAvTpzJzfBvdAvOprApN~uAjKxqAnDl@BlqBc@|{AgJnhB_ShzAuW~vAq^`eBsl@l~@ca@faAkg@f_@{SrVqNbNsJ|FwDxu@ig@rmAa`AzkAwdAtlC}`CxeB}zApYyV`cCo_BxyDqmBjy@{]jqBqs@vlKczDffCohAhrBciAjp@uc@xx@ck@fx@in@br@al@b{@cu@hbDmeDvp@gs@pYgYrU{Uhk@il@pt@gr@tt@ui@p`A}m@`{@qb@`~@{_@|w@uT~EsAzhFonAlmAo\\`iAi_@|vAil@jqAoq@bjA_r@hgFgtDpmA{z@jxAuy@zrAkn@haBen@pxAy_@fx@{Nny@eNvjAwNd`A{If`AgGb`Ieg@b_BuOx_ByTjcBmYfw@kPvf@}Lb^cJnc@uLtOiEbr@_Svb@_Mf_HcvBf_@iLzeAsYbxAw_@~uAmWvoAeRtmAuOncAwIlgAaJpeAqExeAqE~eAyDb}@sBj|@eBhwEoLnyCuLtgAsGd_AgHrFm@p{@mJhuA_SlwAyXz{Ae^z_AcXdcAoZ|aAu\\dkA_d@zdAme@l_Agb@lv@}c@|hBsdAbmEamCpc@kZ`wBwsAdYmQn~]i|TxC{B~KoIx{@_p@plAeeAxfAikArdAm{AnmAuxBl_DkhHxz@_lBzx@y{A`iAi`BlbAwiAxkAkfAfuAu{@voAmm@bzAqk@jtDqoArE}AlpAue@vcByw@tpBciAffB_pAjuFelEznAu}@~dBo_Al{Akq@d|Asg@`y@iVdmAa\\rmBuh@js@yQtkBae@fW}Gr_AsWlhBek@r_Csy@l^}Mt]yLxqAch@laEqdBroMuoF``Bin@v|Ayj@raBgf@h}A{a@|kAuWlfAcTbcAsP~lAaPlhA{Mlx@mHdYiC~hB{JflBgFrmBuBra@e@b`BvBz|BbInfAdGxwAxL|jA|Ld_AjMtx@zLtpAhUznAlWl|Aj_@t{ErpAngBdf@l@NpeA`YfcAdVb_AzRlcAxQz_AjNz{@xKrbA`KxeA~If_ArE|cA`Dzb@fA~Zv@|fAn@nj@Wx[a@~z@eAjcAiDvfAmG`_AeIbw@iIrbAaLrx@qMz~@{Orx@aRli@qLpTyFx`A_Wpo@eRdr@kTdq@wUnu@cYt|Awo@jBq@jWaMndAqg@p}Ak{@t{Ai}@|iDazB`C}AbqAwy@`bAem@ju@ec@|p@c^lo@s\\pm@kYvd@}Sng@eTzcAc^jp@aU|JiDrt@yShw@qSd_AsSzoB{_@x{Dep@rsAsUtwAcYx`AkU~cAaXbcAe[baAc]~nAig@pw@}]bdAgh@j}@of@nfDsqB~`Fe|CpoAiw@rcCouAnbBwz@dk@oX`k@uWbdBut@~wCqnAthHwyCd~CerA|oCurAlsAgr@hqA}t@zpAcv@dhFkbDfhF}`DbS}KpeB}_Ad_@qR~wAau@`IyDvg@qVtc@wRjj@kVjwAqn@bq@_Z`CeAtC}AbfCmrAleBuw@bfGwpCxxAym@tnAgc@xr@wT`jAu\\reCko@dh@uH|lAkPjZsDx_@sFn^cEnf@mFnf@}Dra@wCphA{Fd\\wA~w@_Bpp@aAxaBCvdBNpjE`EjdBdBtfBfB`_@bAjg@vBrh@vBxs@xEzy@hJjy@rLb[jF~x@vPzn@bPzm@lR~r@`Vbt@n[lO`G|YfNrz@ra@r|@nk@xh@n[pPrK|l@f`@rpA~v@hn@hZl`Ah_@da@zMzU|H|q@bUda@vNhP|Fpp@pXh`@lRjPjJ|PpJh}@~l@hp@hg@dUhRdKrIrOnMp}EfzE`A~@z|Az{Azg@vk@~i@xr@~Vp]rWja@tg@x|@f`@bv@do@fvAteBbnE|sAboD`uAjmDxe@xiAbM~X|Xbk@~c@|t@~b@~l@xWx\\`RrR|PhQZZ~HdIZZ|FtE~WdTri@l^l_@`Sp`@dQhd@rP`k@tNbf@bId`BxOvc@`E~_DvX|g@`FlYhCbrB|Rns@pGhkClVpGl@|KzApq@hJrM~BzAXra@pIj_@vMng@jSjo@v\\`_DfjB`sAdu@piDtqB`nBx~@njA~j@dyCxoAps@rZtm@|Yde@p[l^r[nZj]x_@hc@dXt`@tWpb@f]lu@jiAnsClTpi@`BxDhK`V~nAr_DbXnk@`o@jgAdLfPpRlUnUjVj[pYvc@`[d_@vTdc@tSldAx]bXbIfzBvp@j~Bxr@pK|Cdr@bS`rAva@hK`DjThIb\\`OtV|M|c@dZzf@r^ta@j`@bb@|c@dX|Zj~B`mCrm@vp@leBrsBho@`q@t]`\\jUrSpm@~i@hNdN`N|N"},{"ref":"E 05","mode":"driving","weight":972.988,"distance":19816.781,"geometry":"q`urtA|t{]lVx_@dKzOpJvPxJfRbJhSxGvPpH~S|FdTvCpKhCdOpA`Mz@|Oh@fKAjWg@zRcAxU[hULhKf@xJjB`MjCtLxEzLlFtItHlItGnEvCnAzCdAxEv@dGf@tFIrFy@xH_CbHoDpNaK|X_Ujd@_\\jLyGxPmJdPwItOkHdWcL`W{KrVaMvAw@`VkMlQqJt`@uQje@}Svs@oZzFaCtTiJ|oAkk@vhAkg@fn@yXnoBu{@ncAs_@zXyJbWyHdm@iPfj@wLhm@_Ljc@oGxg@oGr_@wCz]iD|eAgDdoAo@rDHby@|A~jAfGju@zG~pEpp@nJlAbZxD`e@tD|^jAd^\\r^aAzY}Af[eDnf@mH`j@_Mtv@cU~M{Dzq@ySlR{FxWaIlVmHnj@qPvkAa^xr@}Svf@gOdX_Hfa@mJzJqBjYoDrYeCfXkAp^U|_@x@`j@dBzb@f@xc@sAh`@eDnc@sGjg@cMra@}NdUmJzb@mQjSwHvOoEfRaEjZ_E~VgBj^I|VpAlZxCpb@tIdl@rPzbA`]|[fMf[vNpWtOtNhKrIjH|UxUjS|W|Rr\\pLvVxLhZpIbXpNfm@zZfsArJ`\\dNf`@`Qta@jL|UzOtYzPzWhUzZbR~S~bAnaApWn[bPhUvXdf@vJlR|ItRpOha@pIvWzGpUlJx_@zJ~h@jF|XvI~b@nKra@pEdObIbTnK~UbLnTrLlRrKzNhXxYvOnNzSjOnQ|Jr]lNpWlHb\\nEtT~AfYHda@kCnH_A~U}CtWaBfCOjYc@rXVtMt@rXjDhc@~HpOrFhMvEzM~FhQ|IdY~RvOxLpTrSfE~DjWp[fRvXxKrQ|@xAnZhh@v^~n@vsAp}BxgCrlE|FrKpH|LhTn^|HjKvIbKvIpJlJbJvBfBvFvExJfHvWnPdKdF|^pSfRvLdRtMfOvLh^nZlh@jc@ls@~l@rCbCxx@dr@hOzL|d@d^xg@z]d\\lSnMdIpZlP`_@|Q|Ap@~[vNfq@nVxSdH`xAz]bHlApl@lKxl@vIhVfDnz@jL``Cn\\|nDfg@pUlEh`@`JlSjGdZtM``@dVfQnNzQ~PpMbOrSdXdWnc@dUpf@hTrn@zLlg@zMjv@nKxu@hS|zA|H|m@nEn]zPfuAxBjQ`q@rdFzKj~@pI|fAbC`x@z@hm@@l@?tg@iAbw@eEjaAmJxnA{Dn`@kHdt@sR`nBoRbpB_Ixq@yAbO_f@ryEoo@jhFgKju@cEfZcJjj@qJdk@iRrhAqY~cBoc@pzBgXzjAq\\`_BkQlr@qIn\\}YfhAgMnd@iMpd@_\\phAiBjGaJ|ZagAjnDyQjl@mTpr@oo@fsBq^rnAaTjx@qQvy@oJbg@iHzb@wKhx@cGlj@{Exi@eHdhAmAj\\_AnZm@v^aAbv@Ark@@|`@dCv`AvDdiA`FllAfTlgF","duration":901.152,"driving_side":"right","duration_typical":901.152,"weight_typical":972.988,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 1 onto E 05 toward Toulouse/ Bayonne/ Bassin d'Arcachon/ Périgueux.","modifier":"slight right","bearing_after":225,"bearing_before":217,"location":[-0.506207,44.887065]},"speedLimitUnit":"km/h","destinations":"Toulouse, Bayonne, Bassin d'Arcachon, Périgueux","bannerInstructions":[{"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"15"}],"type":"off ramp","modifier":"right","text":"Exit 15"},"distanceAlongGeometry":19816.781}],"exits":"1","voiceInstructions":[{"ssmlAnnouncement":"Continue for 12 miles.","announcement":"Continue for 12 miles.","distanceAlongGeometry":19786.781},{"ssmlAnnouncement":"In 1 mile, Take exit 15.","announcement":"In 1 mile, Take exit 15.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 15.","announcement":"In a half mile, Take exit 15.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 15.","announcement":"Take exit 15.","distanceAlongGeometry":130}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[37,220,225],"duration":16.957,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":2,"weight":18.215,"geometry_index":21191,"location":[-0.506207,44.887065]},{"entry":[false,true],"in":0,"bearings":[62,242],"duration":1.117,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":1.199,"geometry_index":21199,"location":[-0.508878,44.885522]},{"entry":[false,true],"in":0,"bearings":[62,250],"duration":3.66,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":3.934,"geometry_index":21200,"location":[-0.509079,44.885446]},{"entry":[false,true],"in":0,"bearings":[81,264],"duration":4.25,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":4.566,"geometry_index":21203,"location":[-0.509834,44.885306]},{"entry":[false,true],"in":0,"bearings":[95,277],"duration":13.199,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":14.191,"geometry_index":21206,"location":[-0.510738,44.885306]},{"entry":[false,true],"in":0,"bearings":[38,206],"duration":3.457,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":3.715,"geometry_index":21215,"location":[-0.51285,44.88482]},{"entry":[false,true],"in":0,"bearings":[14,183],"duration":19.711,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":1,"weight":21.191,"geometry_index":21219,"location":[-0.513057,44.884418]},{"entry":[true,false],"in":1,"bearings":[158,336],"duration":9.691,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":0,"weight":10.66,"geometry_index":21230,"location":[-0.511386,44.881703]},{"entry":[true,false],"in":1,"bearings":[156,337],"duration":2.492,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":0,"weight":2.742,"geometry_index":21235,"location":[-0.510567,44.880242]},{"entry":[true,false],"in":1,"bearings":[156,336],"duration":1.992,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":11,"out":0,"weight":2.191,"geometry_index":21236,"location":[-0.510337,44.879873]},{"entry":[true,false,false],"in":1,"bearings":[159,336,341],"duration":11.281,"turn_weight":6,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":18.402,"geometry_index":21237,"location":[-0.510152,44.879578]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":0.949,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":1.043,"geometry_index":21240,"location":[-0.509078,44.877581]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":1.969,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":2.164,"geometry_index":21241,"location":[-0.509013,44.877455]},{"entry":[true,false],"in":1,"bearings":[159,340],"duration":7.363,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":8.578,"geometry_index":21242,"location":[-0.508832,44.877108]},{"entry":[true,false],"in":1,"bearings":[159,339],"duration":6.68,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":7.348,"geometry_index":21243,"location":[-0.508122,44.875813]},{"entry":[true,true,false],"in":2,"bearings":[159,179,339],"duration":14.082,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":15.484,"geometry_index":21244,"location":[-0.507476,44.874633]},{"entry":[true,false,false],"in":2,"bearings":[161,331,339],"duration":6.117,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":7.723,"geometry_index":21246,"location":[-0.506092,44.872077]},{"entry":[true,true,false],"in":2,"bearings":[162,182,341],"duration":15.164,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":16.672,"geometry_index":21247,"location":[-0.50557,44.870981]},{"entry":[true,false,false],"in":2,"bearings":[171,344,349],"duration":11.391,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":13.273,"geometry_index":21252,"location":[-0.504519,44.868009]},{"entry":[true,false,false],"in":2,"bearings":[177,332,353],"duration":11.688,"turn_weight":0.75,"turn_duration":0.009,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":13.598,"geometry_index":21256,"location":[-0.504086,44.865758]},{"entry":[false,true],"in":0,"bearings":[0,182],"duration":30.852,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":1,"weight":33.938,"geometry_index":21259,"location":[-0.503983,44.86325]},{"entry":[false,true],"in":0,"bearings":[9,189],"duration":2.051,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":1,"weight":2.309,"geometry_index":21264,"location":[-0.505136,44.85669]},{"entry":[false,true],"in":0,"bearings":[9,186],"duration":24.395,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":1,"weight":26.809,"geometry_index":21265,"location":[-0.505229,44.856256]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":6.789,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":7.449,"geometry_index":21274,"location":[-0.504481,44.851037]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":3.812,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":4.102,"geometry_index":21277,"location":[-0.503928,44.849672]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":9.559,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":10.273,"geometry_index":21279,"location":[-0.503616,44.8489]},{"entry":[true,false],"in":1,"bearings":[164,344],"duration":4.113,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":11,"out":0,"weight":4.422,"geometry_index":21281,"location":[-0.502838,44.846976]},{"entry":[true,true,false],"in":2,"bearings":[164,189,344],"duration":19.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":20.219,"geometry_index":21282,"location":[-0.502503,44.846147]},{"entry":[false,true,false],"in":0,"bearings":[2,183,352],"duration":5.844,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":6.875,"geometry_index":21291,"location":[-0.501684,44.842086]},{"entry":[false,true,false],"in":0,"bearings":[1,177,338],"duration":14.875,"turn_weight":0.75,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":15.973,"geometry_index":21293,"location":[-0.501755,44.840823]},{"entry":[true,false],"in":1,"bearings":[160,342],"duration":1.68,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":1.723,"geometry_index":21298,"location":[-0.501011,44.837917]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":92.84,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":92.84,"geometry_index":21299,"location":[-0.500828,44.837562]},{"entry":[false,true],"in":0,"bearings":[68,248],"duration":21.309,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":21.301,"geometry_index":21343,"location":[-0.515873,44.821889]},{"entry":[false,true],"in":0,"bearings":[25,200],"duration":14.25,"turn_weight":0.5,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":15.078,"geometry_index":21356,"location":[-0.520422,44.818999]},{"entry":[true,false],"in":1,"bearings":[171,352],"duration":3.82,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":3.918,"geometry_index":21363,"location":[-0.520875,44.816184]},{"entry":[true,false],"in":1,"bearings":[177,355],"duration":4.445,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":0,"weight":4.555,"geometry_index":21365,"location":[-0.520747,44.815421]},{"entry":[false,true,true],"in":0,"bearings":[1,185,206],"duration":15.234,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":15.609,"geometry_index":21368,"location":[-0.520733,44.814521]},{"entry":[false,false,true],"in":1,"bearings":[23,28,210],"duration":4.234,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":2,"weight":5.082,"geometry_index":21376,"location":[-0.521859,44.811851]},{"entry":[false,true],"in":0,"bearings":[34,217],"duration":7.824,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":8.023,"geometry_index":21378,"location":[-0.52241,44.811238]},{"entry":[false,true],"in":0,"bearings":[46,226],"duration":0.262,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":0.266,"geometry_index":21382,"location":[-0.523673,44.810235]},{"entry":[false,true],"in":0,"bearings":[46,227],"duration":3.711,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":4.297,"geometry_index":21383,"location":[-0.523718,44.810204]},{"entry":[false,true],"in":0,"bearings":[47,227],"duration":4.27,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":4.375,"geometry_index":21384,"location":[-0.524379,44.809764]},{"entry":[false,true],"in":0,"bearings":[47,227],"duration":11.312,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":11.879,"geometry_index":21385,"location":[-0.525147,44.809256]},{"entry":[false,true],"in":0,"bearings":[47,227],"duration":18.309,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":19.223,"geometry_index":21386,"location":[-0.527172,44.8079]},{"entry":[false,true,true],"in":0,"bearings":[47,228,246],"duration":1.074,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":1.117,"geometry_index":21387,"location":[-0.530462,44.805711]},{"entry":[false,true],"in":0,"bearings":[48,226],"duration":1.215,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":1.277,"geometry_index":21388,"location":[-0.530664,44.805584]},{"entry":[false,true],"in":0,"bearings":[46,226],"duration":2.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":2.699,"geometry_index":21389,"location":[-0.530887,44.805431]},{"entry":[false,true],"in":0,"bearings":[46,221],"duration":4.973,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":5.223,"geometry_index":21390,"location":[-0.531391,44.80509]},{"entry":[false,true],"in":0,"bearings":[34,211],"duration":20.793,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":21.836,"geometry_index":21395,"location":[-0.532198,44.804344]},{"entry":[false,true],"in":0,"bearings":[32,212],"duration":5.211,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":11,"out":1,"weight":5.473,"geometry_index":21405,"location":[-0.534875,44.80089]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.535611,44.800051],"geometry_index":21406,"admin_index":11,"weight":1.977,"is_urban":false,"turn_weight":1.5,"duration":0.465,"bearings":[30,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":5.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.836,"geometry_index":21407,"location":[-0.535677,44.799977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,211],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.547,"geometry_index":21408,"location":[-0.536496,44.799052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,210],"duration":10.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.496,"geometry_index":21409,"location":[-0.536718,44.798791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":1.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.391,"geometry_index":21412,"location":[-0.538038,44.797064]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,204],"duration":6.156,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.289,"geometry_index":21413,"location":[-0.538201,44.796832]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":17.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.293,"geometry_index":21416,"location":[-0.538808,44.795831]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[7,14,191],"duration":16.344,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":16.73,"geometry_index":21420,"location":[-0.540077,44.792805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":10.902,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.164,"geometry_index":21425,"location":[-0.540785,44.789872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":53.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":54.535,"geometry_index":21426,"location":[-0.541257,44.787807]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":5.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.555,"geometry_index":21442,"location":[-0.548507,44.779907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.758,"geometry_index":21443,"location":[-0.549978,44.779582]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.914,"geometry_index":21444,"location":[-0.550729,44.779423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,254],"duration":6.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.363,"geometry_index":21445,"location":[-0.551217,44.779319]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[74,253,260],"duration":25.305,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.547,"geometry_index":21447,"location":[-0.552891,44.778972]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,266],"duration":0.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":0.098,"geometry_index":21452,"location":[-0.560384,44.7777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.560407,44.777699],"geometry_index":21453,"admin_index":11,"weight":7.266,"is_urban":true,"turn_weight":1.6,"duration":5.281,"bearings":[82,86,270],"out":2,"in":1,"turn_duration":0.009,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[93,277,282],"duration":7.879,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":8.461,"geometry_index":21455,"location":[-0.561956,44.777736]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,284],"duration":4.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":5.086,"geometry_index":21457,"location":[-0.564295,44.778018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":15.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":16.156,"geometry_index":21459,"location":[-0.565682,44.778262]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,284],"duration":0.977,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":1.051,"geometry_index":21462,"location":[-0.570082,44.779048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":26.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":28.941,"geometry_index":21463,"location":[-0.57034,44.779093]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,288],"duration":3.023,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":3.316,"geometry_index":21465,"location":[-0.577572,44.780493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,288],"duration":10.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":11.648,"geometry_index":21466,"location":[-0.578442,44.780689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,290],"duration":17.832,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":19.609,"geometry_index":21470,"location":[-0.581457,44.781459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,293],"duration":15.621,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":17.551,"geometry_index":21473,"location":[-0.586264,44.782872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,298],"duration":2.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":2.734,"geometry_index":21477,"location":[-0.590268,44.784239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,298],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":8.102,"geometry_index":21478,"location":[-0.590868,44.784467]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[119,299,307],"duration":0.547,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":0.594,"geometry_index":21480,"location":[-0.592646,44.78516]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,299],"duration":19.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":21.199,"geometry_index":21481,"location":[-0.59278,44.785213]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,300],"duration":16.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":17.723,"geometry_index":21485,"location":[-0.597584,44.787187]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,294],"duration":8.625,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":9.68,"geometry_index":21488,"location":[-0.601636,44.788805]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,287],"duration":13.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":14.832,"geometry_index":21491,"location":[-0.603792,44.789435]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.60726,44.790026],"geometry_index":21495,"admin_index":11,"weight":14.527,"is_urban":true,"turn_weight":0.5,"duration":12.492,"bearings":[94,100,277],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,270],"duration":2.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":2.523,"geometry_index":21500,"location":[-0.610274,44.790154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,265],"duration":11.066,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":12.422,"geometry_index":21501,"location":[-0.610817,44.790153]},{"bearings":[83,263],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"geometry_index":21504,"location":[-0.614295,44.789881]}]},{"ref":"A 63; E 05; E 70","mode":"driving","weight":989.59,"distance":25333.633,"geometry":"iqvltAz`vd@`AleA~I|zBzBht@zBvr@rB~h@T`UEfPYxM]bIsAbVk@bHUzCsArNaBhR{@tLO`I?bILlKj@~Mz@bMHn@|BvPlCdO|DpN`EvLjCtGlErI~HxLtH~HxHpFvMtF~HjBlGr@vHF|Js@tJaB~HwC~H}D~IgD`HqBfG_AfLAhId@rKtB~IvDvErCnHbK~ExF|Zb^zNbSdFrIpGrKzEhIhInNnV~e@nUzg@lLhXxa@hkAtq@tsB|`@znAhd@lvAzgA`jDhhBzwFp`ApzCpfArfDbItVfZz_Afp@|qB~w@`dCdx@ndCrXd{@nw@faCxy@vaCho@|fB|p@ffBz`@vcAn^~|@`x@~gBvJvS|Ynn@fbA`rBrd@b}@`o@nlAdaAbhBjqCdaF~xBnvDjnBfiDbPvXreAvjBpkAztBf_Ah`BdBzCzRb]`BrC|@|AjdIfrNt[zk@pd@`}@pFrKlJ~Qzl@`oA`@z@hv@r`Bdc@h_AfDnHz]lu@`d@x`A~{@dhBfUle@dk@hhA~FhLzVne@`\\|k@`k@bcAn}@jzArdAjcBj^nk@NV`S|YvgB|qCxxBliDzcFv}Hr}BjmDhmApfBd]xd@~f@br@zp@f|@xz@neAxBfCvfA~nAruAz{Ar{A`_BtvGhxGn_En_EfAfAXXfAfAd~Bf~B`rA~sA|tCjyCvcBnhB|mClzCfvB~gC~ArB`r@f{@~oAxaB~kAnaBp|@vpAbp@~aAd_AvyAxy@pwArr@nnAjiAjxBbeA~tBjh@lgAdr@|zAr_BbrDvf@hlAreBlhE~rAtiDvk@|zABH~kClcHfw@bsBfBjElW~o@hWvo@lDdIdjArkCr]~u@h]pr@|{AnyCrqCdnF~F`LjbBbaDrjAjzB`nBltDb}AvwC`kAxxBzw@lxA|h@f~@zj@p_Ax]pj@x^vj@zc@~o@rfA|yAx`BznB|dA~iAt`@na@rb@nc@|[bZfq@zm@pw@vp@xy@rp@~lAv|@frA~{@h`Ank@pcAxi@loA`p@|mGxvCnjCrkA|~DfgB","duration":1041.715,"driving_side":"right","duration_typical":1041.715,"weight_typical":989.59,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 15.","modifier":"slight right","bearing_after":268,"bearing_before":263,"location":[-0.618014,44.789541]},"speedLimitUnit":"km/h","destinations":"Saint-Sébastien - Bayonne - Mont de Marsan - Bassin d'Arcachon","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E70","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 70"}],"type":"fork","modifier":"straight","text":"E 05 / E 70"},"distanceAlongGeometry":25333.633}],"exits":"15","voiceInstructions":[{"ssmlAnnouncement":"Continue for 16 miles.","announcement":"Continue for 16 miles.","distanceAlongGeometry":25303.633},{"ssmlAnnouncement":"In 1 mile, Keep straight to stay on E 05.","announcement":"In 1 mile, Keep straight to stay on E 05.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep straight to stay on E 05.","announcement":"In a half mile, Keep straight to stay on E 05.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep straight to stay on E 05, E 70.","announcement":"Keep straight to stay on E 05, E 70.","distanceAlongGeometry":168.889}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[83,262,268],"duration":3.57,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":2,"weight":3.914,"geometry_index":21505,"location":[-0.618014,44.789541]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[83,88,263],"duration":21.254,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":2,"weight":23.348,"geometry_index":21506,"location":[-0.619141,44.789508]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,275],"duration":4.172,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":4.691,"geometry_index":21512,"location":[-0.624106,44.789142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,283],"duration":8.57,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":9.645,"geometry_index":21516,"location":[-0.625021,44.789234]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,253],"duration":6.801,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":7.648,"geometry_index":21526,"location":[-0.626889,44.78931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,224],"duration":6.266,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":7.051,"geometry_index":21532,"location":[-0.62821,44.788811]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,192],"duration":18.672,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":11,"out":1,"weight":20.539,"geometry_index":21536,"location":[-0.628835,44.788103]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.628937,44.785486],"geometry_index":21552,"admin_index":11,"weight":12.996,"is_urban":true,"turn_weight":6,"duration":6.379,"bearings":[23,41,218],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,226],"duration":1.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":2.059,"geometry_index":21556,"location":[-0.630052,44.784558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":1.387,"geometry_index":21558,"location":[-0.630419,44.784311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,230],"duration":47.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":11,"out":1,"weight":51.438,"geometry_index":21559,"location":[-0.630667,44.784146]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":48.121,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":50.52,"geometry_index":21567,"location":[-0.640852,44.779521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":1.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.613,"geometry_index":21570,"location":[-0.650005,44.775642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":11.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.926,"geometry_index":21571,"location":[-0.650384,44.77548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":8.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.863,"geometry_index":21573,"location":[-0.653261,44.774256]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":8.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.648,"geometry_index":21574,"location":[-0.65539,44.773344]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":41.18,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.145,"geometry_index":21575,"location":[-0.657526,44.772429]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":6.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.512,"geometry_index":21582,"location":[-0.668072,44.767556]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,231],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.371,"geometry_index":21583,"location":[-0.669752,44.766643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":22.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.625,"geometry_index":21584,"location":[-0.670084,44.766455]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":52.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":50.918,"geometry_index":21588,"location":[-0.674919,44.763577]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":1.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.699,"geometry_index":21592,"location":[-0.68588,44.756442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":20.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.328,"geometry_index":21593,"location":[-0.686292,44.756168]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":7.133,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.938,"geometry_index":21595,"location":[-0.689902,44.753813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.477,"geometry_index":21596,"location":[-0.691459,44.752785]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":36.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":35.004,"geometry_index":21598,"location":[-0.692019,44.752416]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[47,228,244],"duration":5.898,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.598,"geometry_index":21601,"location":[-0.700128,44.74713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.652,"geometry_index":21603,"location":[-0.701839,44.74607]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":27.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.625,"geometry_index":21604,"location":[-0.702041,44.745949]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.676,"geometry_index":21613,"location":[-0.710006,44.741404]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.648,"geometry_index":21615,"location":[-0.711794,44.740341]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.712007,44.740213],"geometry_index":21616,"admin_index":11,"weight":6.289,"is_urban":false,"turn_weight":1,"duration":5.898,"bearings":[45,50,229],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,228],"duration":22.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.926,"geometry_index":21618,"location":[-0.713342,44.739366]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":87.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":79.102,"geometry_index":21623,"location":[-0.718224,44.736037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":53.254,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.91,"geometry_index":21633,"location":[-0.736811,44.722272]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":15.707,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.117,"geometry_index":21638,"location":[-0.745683,44.71372]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":0.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.164,"geometry_index":21641,"location":[-0.748812,44.710591]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":169.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":148.66,"geometry_index":21642,"location":[-0.748848,44.710555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":23.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.441,"geometry_index":21666,"location":[-0.789769,44.68135]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[55,235,237],"duration":2.715,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.371,"geometry_index":21670,"location":[-0.796413,44.67814]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":3.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.871,"geometry_index":21671,"location":[-0.797197,44.677749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":37.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":32.809,"geometry_index":21673,"location":[-0.79814,44.677273]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.707,"geometry_index":21678,"location":[-0.808394,44.671262]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.808603,44.671134],"geometry_index":21679,"admin_index":11,"weight":9.781,"is_urban":false,"turn_weight":1,"duration":9.762,"bearings":[48,49,229],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":34.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.461,"geometry_index":21680,"location":[-0.811197,44.669544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":29.488,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.52,"geometry_index":21684,"location":[-0.820467,44.663834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,219],"duration":8.371,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.516,"geometry_index":21691,"location":[-0.827579,44.658813]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,217],"duration":8.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.715,"geometry_index":21692,"location":[-0.829369,44.657248]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.676,"geometry_index":21694,"location":[-0.831121,44.65559]},{"bearings":[34,214],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"geometry_index":21696,"location":[-0.832139,44.654557]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 120 miles.","announcement":"Continue for 120 miles.","distanceAlongGeometry":193334.938},{"ssmlAnnouncement":"In 2 miles, Keep right to take AP-1.","announcement":"In 2 miles, Keep right to take AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take AP-1.","announcement":"In a half mile, Keep right to take AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take AP-1, AP-8 toward Bilbao, Vitoria-Gasteiz.","announcement":"Keep right to take AP-1, AP-8 toward Bilbao, Vitoria-Gasteiz.","distanceAlongGeometry":293.333}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[21,201,201],"duration":30.414,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":27.367,"geometry_index":21707,"location":[-0.843948,44.63626]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":35.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.992,"geometry_index":21713,"location":[-0.847524,44.628872]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.850226,44.619955],"geometry_index":21720,"admin_index":11,"weight":23.512,"is_urban":false,"turn_weight":1,"duration":25.746,"bearings":[6,8,186],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":212.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":185.777,"geometry_index":21730,"location":[-0.850618,44.611629]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":22.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.211,"geometry_index":21773,"location":[-0.833852,44.544879]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[10,190,194],"duration":26.492,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.836,"geometry_index":21777,"location":[-0.83581,44.537727]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.837192,44.530199],"geometry_index":21781,"admin_index":11,"weight":44.031,"is_urban":false,"turn_weight":0.5,"duration":49.77,"bearings":[3,6,184],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":2.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.93,"geometry_index":21788,"location":[-0.840466,44.516045]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":36.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.824,"geometry_index":21789,"location":[-0.840721,44.51543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,352],"duration":1.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.711,"geometry_index":21796,"location":[-0.842183,44.505063]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[172,177,352],"duration":22.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":19.285,"geometry_index":21797,"location":[-0.84207,44.504504]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.840574,44.49827],"geometry_index":21801,"admin_index":11,"weight":159.832,"is_urban":false,"turn_weight":1,"duration":181.547,"bearings":[168,346,351],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":6.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.84,"geometry_index":21824,"location":[-0.810727,44.444617]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.811337,44.442501],"geometry_index":21826,"admin_index":11,"weight":86.129,"is_urban":false,"turn_weight":0.5,"duration":97.871,"bearings":[6,14,194],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[172,353],"duration":36.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":32.969,"geometry_index":21837,"location":[-0.820269,44.415626]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.818463,44.405294],"geometry_index":21843,"admin_index":11,"weight":41.809,"is_urban":false,"turn_weight":15,"duration":29.797,"bearings":[185,193,358],"out":0,"in":2,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.823294,44.397863],"geometry_index":21856,"admin_index":11,"weight":118.875,"is_urban":false,"turn_weight":0.5,"duration":131.535,"bearings":[41,43,224],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.852,"geometry_index":21867,"location":[-0.848493,44.365537]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205,208],"duration":26.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.906,"geometry_index":21868,"location":[-0.84865,44.365294]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.852985,44.358623],"geometry_index":21870,"admin_index":11,"weight":28.395,"is_urban":false,"turn_weight":1,"duration":30.449,"bearings":[23,25,205],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":9.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.121,"geometry_index":21872,"location":[-0.856485,44.353172]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":5.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.961,"geometry_index":21874,"location":[-0.857522,44.351559]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":3.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.32,"geometry_index":21875,"location":[-0.858154,44.350567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":15.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.902,"geometry_index":21876,"location":[-0.8586,44.349908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,207],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.285,"geometry_index":21879,"location":[-0.860552,44.347198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.860594,44.347139],"geometry_index":21880,"admin_index":11,"weight":18.109,"is_urban":false,"toll_collection":{"name":"Saugnac et Muret","type":"toll_booth"},"turn_weight":15,"duration":3.555,"bearings":[27,204],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,201],"duration":10.488,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.16,"geometry_index":21881,"location":[-0.860998,44.346501]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,204],"duration":7.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.254,"geometry_index":21882,"location":[-0.861849,44.344919]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.594,"geometry_index":21883,"location":[-0.862554,44.343778]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,205],"duration":73.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":64.066,"geometry_index":21884,"location":[-0.863098,44.342899]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[36,212,222],"duration":17.141,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.402,"geometry_index":21901,"location":[-0.879737,44.322588]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[6,11,187],"duration":221.109,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":193.449,"geometry_index":21908,"location":[-0.882185,44.318084]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.102,"geometry_index":21922,"location":[-0.901718,44.257047]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[15,195,201],"duration":20.949,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.324,"geometry_index":21923,"location":[-0.901963,44.25639]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.90413,44.250585],"geometry_index":21924,"admin_index":11,"weight":62.574,"is_urban":false,"turn_weight":1,"duration":70.379,"bearings":[8,15,195],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":45.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.879,"geometry_index":21928,"location":[-0.911604,44.23112]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,213],"duration":2.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.199,"geometry_index":21942,"location":[-0.922977,44.221116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,210],"duration":52.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":48.312,"geometry_index":21943,"location":[-0.923498,44.220544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,204],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.367,"geometry_index":21960,"location":[-0.92937,44.204247]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[24,203,210],"duration":9.43,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.703,"geometry_index":21961,"location":[-0.929823,44.203503]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[18,23,203],"duration":64.934,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":58.434,"geometry_index":21962,"location":[-0.931311,44.201049]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":19.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.367,"geometry_index":21967,"location":[-0.941496,44.183913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":115.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":100.828,"geometry_index":21969,"location":[-0.944612,44.178679]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[50,231,234],"duration":13.594,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.227,"geometry_index":21985,"location":[-0.964441,44.149075]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,215],"duration":6.754,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.059,"geometry_index":21991,"location":[-0.968316,44.146353]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,206],"duration":201.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":181.723,"geometry_index":21994,"location":[-0.969714,44.144703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.168,"geometry_index":22016,"location":[-0.99854,44.091069]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[18,197,203],"duration":25.855,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.254,"geometry_index":22017,"location":[-0.998562,44.091019]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.002021,44.083013],"geometry_index":22021,"admin_index":11,"weight":93.324,"is_urban":false,"turn_weight":1,"duration":102.59,"bearings":[10,17,197],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":3.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.875,"geometry_index":22037,"location":[-1.006133,44.054083]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,203],"duration":8.176,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.352,"geometry_index":22038,"location":[-1.006601,44.05323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,204],"duration":1.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.07,"geometry_index":22040,"location":[-1.007878,44.051074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,203],"duration":2.828,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.531,"geometry_index":22041,"location":[-1.008069,44.050761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":202.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":177.25,"geometry_index":22042,"location":[-1.008507,44.050025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":64.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":56.531,"geometry_index":22068,"location":[-1.040972,43.990704]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,230],"duration":0.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.559,"geometry_index":22077,"location":[-1.059126,43.974823]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,226],"duration":15.156,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":13.242,"geometry_index":22078,"location":[-1.05935,43.974689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,204],"duration":64.273,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":56.215,"geometry_index":22084,"location":[-1.062984,43.971352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,225],"duration":46.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.707,"geometry_index":22103,"location":[-1.071089,43.952109]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,225],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.969,"geometry_index":22106,"location":[-1.085789,43.941357]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[45,225,245],"duration":35.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.988,"geometry_index":22107,"location":[-1.086479,43.940852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.096002,43.933919],"geometry_index":22109,"admin_index":11,"weight":221.754,"is_urban":false,"turn_weight":1,"duration":238.672,"bearings":[44,45,224],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.211,"geometry_index":22144,"location":[-1.132609,43.876256]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.132646,43.876199],"geometry_index":22145,"admin_index":11,"weight":26.527,"is_urban":false,"turn_weight":15,"duration":12.141,"bearings":[25,209,213],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,226],"duration":20.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.531,"geometry_index":22149,"location":[-1.135246,43.873534]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,254],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.109,"geometry_index":22158,"location":[-1.141532,43.870708]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.141964,43.870618],"geometry_index":22159,"admin_index":11,"weight":134.699,"is_urban":false,"turn_weight":0.5,"duration":149.133,"bearings":[68,74,254],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":2.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.25,"geometry_index":22178,"location":[-1.1767,43.840734]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,206],"duration":2.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.531,"geometry_index":22179,"location":[-1.177126,43.84008]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":5.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.066,"geometry_index":22180,"location":[-1.17757,43.839421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,209],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.199,"geometry_index":22181,"location":[-1.178463,43.838094]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":21.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.484,"geometry_index":22182,"location":[-1.178687,43.837802]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[29,206],"duration":0.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.07,"geometry_index":22184,"location":[-1.180565,43.835359]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[26,206],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.574,"geometry_index":22185,"location":[-1.180577,43.835341]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.180619,43.835279],"geometry_index":22186,"admin_index":11,"weight":15.859,"is_urban":false,"toll_collection":{"name":"Castets","type":"toll_booth"},"turn_weight":15,"duration":0.98,"bearings":[26,206],"out":1,"in":0,"classes":["tunnel","toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,203],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.844,"geometry_index":22187,"location":[-1.180649,43.835234]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,205],"duration":2.449,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.137,"geometry_index":22188,"location":[-1.181445,43.833849]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,204],"duration":6.738,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.879,"geometry_index":22189,"location":[-1.18177,43.833356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":2.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.324,"geometry_index":22190,"location":[-1.182631,43.831976]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":77.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":67.773,"geometry_index":22191,"location":[-1.183119,43.831193]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206,210],"duration":27.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":24.043,"geometry_index":22194,"location":[-1.198361,43.808598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.203226,43.801384],"geometry_index":22195,"admin_index":11,"weight":58.23,"is_urban":false,"turn_weight":1,"duration":63.598,"bearings":[24,26,206],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.285,"geometry_index":22209,"location":[-1.209657,43.78348]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,193],"duration":7.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.316,"geometry_index":22210,"location":[-1.209686,43.783393]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.449,"geometry_index":22213,"location":[-1.210471,43.781157]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":16.66,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.406,"geometry_index":22214,"location":[-1.210741,43.780414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":199.668,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":179.691,"geometry_index":22221,"location":[-1.213305,43.776048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":22.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":20.117,"geometry_index":22237,"location":[-1.227666,43.720664]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,183],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.086,"geometry_index":22238,"location":[-1.228067,43.714256]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[3,182,201],"duration":19.961,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":17.949,"geometry_index":22239,"location":[-1.228108,43.713594]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.228445,43.707975],"geometry_index":22240,"admin_index":11,"weight":21.629,"is_urban":false,"turn_weight":0.5,"duration":22.852,"bearings":[0,2,182],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.228798,43.701713],"geometry_index":22241,"admin_index":11,"weight":21.684,"is_urban":false,"turn_weight":15,"duration":22.043,"bearings":[2,182,186],"out":1,"in":0,"turn_duration":15.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,192],"duration":13.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.785,"geometry_index":22244,"location":[-1.229025,43.699435]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,221],"duration":9.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.762,"geometry_index":22249,"location":[-1.231357,43.695456]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.234341,43.693397],"geometry_index":22252,"admin_index":11,"weight":11.375,"is_urban":false,"turn_weight":1,"duration":10.934,"bearings":[37,53,239],"out":2,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":126.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":117.203,"geometry_index":22254,"location":[-1.238302,43.692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,259],"duration":33.238,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":30.738,"geometry_index":22277,"location":[-1.28675,43.681387]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[85,259,262],"duration":22.543,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.391,"geometry_index":22282,"location":[-1.300091,43.680538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.308726,43.678422],"geometry_index":22289,"admin_index":11,"weight":76.066,"is_urban":false,"turn_weight":1,"duration":79.043,"bearings":[53,63,239],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":4.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.75,"geometry_index":22305,"location":[-1.328343,43.660107]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,219],"duration":2.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.676,"geometry_index":22306,"location":[-1.329335,43.659146]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,221],"duration":33.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":29.992,"geometry_index":22307,"location":[-1.330073,43.658496]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,255],"duration":98.746,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":88.863,"geometry_index":22319,"location":[-1.340991,43.653149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,241],"duration":27.516,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.445,"geometry_index":22345,"location":[-1.376893,43.642511]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,219],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.625,"geometry_index":22355,"location":[-1.385301,43.637344]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,220],"duration":25.488,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.57,"geometry_index":22356,"location":[-1.385474,43.637191]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":6.176,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.551,"geometry_index":22359,"location":[-1.392018,43.631623]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":2.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.406,"geometry_index":22360,"location":[-1.393597,43.630272]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":6.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.559,"geometry_index":22362,"location":[-1.394249,43.62972]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,220],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.41,"geometry_index":22363,"location":[-1.395773,43.628453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":2.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.453,"geometry_index":22364,"location":[-1.395881,43.628361]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.102,"geometry_index":22365,"location":[-1.396507,43.627825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":7.926,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.129,"geometry_index":22366,"location":[-1.396789,43.627584]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":8.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.656,"geometry_index":22368,"location":[-1.398209,43.626383]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,219],"duration":20.27,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.227,"geometry_index":22370,"location":[-1.399788,43.625123]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.400834,43.624179],"geometry_index":22371,"admin_index":11,"weight":33.258,"is_urban":false,"toll_collection":{"name":"Péage de Bénesse-Maremne","type":"toll_booth"},"turn_weight":15,"duration":20.285,"bearings":[39,213],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,217],"duration":12.094,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.879,"geometry_index":22373,"location":[-1.403719,43.621074]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,222],"duration":59.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":53.586,"geometry_index":22376,"location":[-1.405578,43.619452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,355],"duration":1.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.469,"geometry_index":22394,"location":[-1.416345,43.602708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":12.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":11.344,"geometry_index":22395,"location":[-1.416275,43.602273]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,356],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.68,"geometry_index":22400,"location":[-1.415707,43.598839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[181,359],"duration":28.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":26.492,"geometry_index":22401,"location":[-1.415689,43.59833]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":1.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.547,"geometry_index":22409,"location":[-1.418412,43.590481]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[22,201,213],"duration":19.887,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":18.375,"geometry_index":22410,"location":[-1.418657,43.590035]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.420675,43.584686],"geometry_index":22417,"admin_index":11,"weight":8.82,"is_urban":false,"turn_weight":1,"duration":8.461,"bearings":[13,193,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":1.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.441,"geometry_index":22421,"location":[-1.421582,43.582423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,202],"duration":17.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.523,"geometry_index":22422,"location":[-1.421788,43.582023]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":57.332,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":53.023,"geometry_index":22432,"location":[-1.425827,43.577047]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,194],"duration":17.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.598,"geometry_index":22464,"location":[-1.430751,43.55944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":9.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.914,"geometry_index":22474,"location":[-1.432367,43.553766]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":15.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.09,"geometry_index":22475,"location":[-1.432603,43.550642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,349],"duration":1.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.613,"geometry_index":22482,"location":[-1.432004,43.54575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,349],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.383,"geometry_index":22483,"location":[-1.43185,43.545192]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[171,190,351],"duration":22.383,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":20.688,"geometry_index":22484,"location":[-1.431747,43.54471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,358],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":1.531,"geometry_index":22495,"location":[-1.432008,43.538426]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.431973,43.537962],"geometry_index":22496,"admin_index":11,"weight":7.129,"is_urban":false,"turn_weight":0.5,"duration":7.207,"bearings":[167,351,357],"out":0,"in":2,"turn_duration":0.038,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":13.098,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":12.098,"geometry_index":22499,"location":[-1.431457,43.536045]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,206],"duration":51.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":47.934,"geometry_index":22504,"location":[-1.431842,43.532548]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":104.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":101.402,"geometry_index":22517,"location":[-1.441858,43.520739]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[35,211,217],"duration":15.891,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":16.266,"geometry_index":22582,"location":[-1.448022,43.49527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,187],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.477,"geometry_index":22594,"location":[-1.449789,43.491435]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,182],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.074,"geometry_index":22596,"location":[-1.449808,43.491318]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,181],"duration":11.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":12.359,"geometry_index":22597,"location":[-1.449822,43.491054]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.449246,43.48816],"geometry_index":22606,"admin_index":11,"weight":5.27,"is_urban":false,"turn_weight":1,"duration":4.074,"bearings":[167,346,347],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[167,347],"duration":17.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":18.859,"geometry_index":22607,"location":[-1.448949,43.487242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,347],"duration":15.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":0,"weight":16,"geometry_index":22608,"location":[-1.447593,43.4831]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199,208],"duration":15.457,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.836,"geometry_index":22622,"location":[-1.447567,43.479459]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,233],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.633,"geometry_index":22634,"location":[-1.450637,43.476587]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.828,"geometry_index":22635,"location":[-1.450804,43.476497]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,236],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.922,"geometry_index":22637,"location":[-1.451284,43.47624]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":2.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.625,"geometry_index":22638,"location":[-1.451539,43.476115]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":15.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":15.961,"geometry_index":22641,"location":[-1.45225,43.475777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.457156,43.474347],"geometry_index":22653,"admin_index":11,"weight":1.516,"is_urban":false,"turn_weight":1,"duration":0.523,"bearings":[75,77,257],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,257],"duration":5.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.477,"geometry_index":22654,"location":[-1.457324,43.474319]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,248],"duration":11.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":11.758,"geometry_index":22658,"location":[-1.459103,43.473971]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,229],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":0.617,"geometry_index":22670,"location":[-1.46242,43.472444]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":23.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.227,"geometry_index":22671,"location":[-1.462579,43.472342]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[88,266],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.258,"geometry_index":22681,"location":[-1.469726,43.470016]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":2.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.539,"geometry_index":22682,"location":[-1.470529,43.469977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,264],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.023,"geometry_index":22683,"location":[-1.471433,43.46993]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,258],"duration":32.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":31.938,"geometry_index":22684,"location":[-1.472508,43.469846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":3.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.438,"geometry_index":22689,"location":[-1.482519,43.465953]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":40.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":39.789,"geometry_index":22690,"location":[-1.483511,43.465432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,260],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.789,"geometry_index":22699,"location":[-1.495788,43.46106]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,265],"duration":1.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.43,"geometry_index":22700,"location":[-1.496385,43.460982]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,265],"duration":1.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.023,"geometry_index":22701,"location":[-1.496867,43.460952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,271],"duration":2.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.453,"geometry_index":22702,"location":[-1.497207,43.460931]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-1.498031,43.460937],"geometry_index":22703,"admin_index":11,"weight":13.68,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.059,"bearings":[91,268,276],"out":1,"in":0,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.502735,43.461235],"geometry_index":22707,"admin_index":11,"weight":6.727,"is_urban":false,"turn_weight":0.5,"duration":6.395,"bearings":[84,96,276],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,275],"duration":35.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":34.789,"geometry_index":22708,"location":[-1.504958,43.461401]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,241],"duration":59.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":58.492,"geometry_index":22718,"location":[-1.517272,43.460721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":26.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":25.57,"geometry_index":22739,"location":[-1.534553,43.450325]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,266],"duration":6.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":6.516,"geometry_index":22749,"location":[-1.541875,43.447169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,280],"duration":2.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.008,"geometry_index":22754,"location":[-1.544115,43.447287]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,284],"duration":1.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.719,"geometry_index":22756,"location":[-1.544801,43.447378]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,284],"duration":9.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":9.375,"geometry_index":22757,"location":[-1.545313,43.447468]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[103,284],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.875,"geometry_index":22759,"location":[-1.548142,43.447962]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[104,282,291],"duration":5.621,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5.461,"geometry_index":22760,"location":[-1.549011,43.448114]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,283],"duration":23.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":23.148,"geometry_index":22761,"location":[-1.550366,43.44832]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.553305,43.448795],"geometry_index":22765,"admin_index":11,"weight":22.977,"is_urban":false,"toll_collection":{"name":"Péage de La Négresse","type":"toll_booth"},"turn_weight":15,"duration":7.977,"bearings":[99,279],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[99,269,300],"duration":7.703,"turn_duration":0.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":7.664,"geometry_index":22766,"location":[-1.554308,43.448914]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.55615,43.448881],"geometry_index":22767,"admin_index":11,"weight":7.492,"is_urban":false,"turn_weight":1,"duration":6.512,"bearings":[70,89,265],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.558053,43.448731],"geometry_index":22769,"admin_index":11,"weight":8.344,"is_urban":false,"turn_weight":0.5,"duration":7.871,"bearings":[79,84,258],"out":2,"in":1,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,244],"duration":74.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":72.773,"geometry_index":22774,"location":[-1.560492,43.448185]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,238],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.719,"geometry_index":22799,"location":[-1.57617,43.432775]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,242],"duration":20.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.281,"geometry_index":22800,"location":[-1.576705,43.432536]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,242],"duration":27.422,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":26.047,"geometry_index":22806,"location":[-1.585094,43.430073]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233,238],"duration":22.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":21.305,"geometry_index":22814,"location":[-1.594712,43.424603]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.600227,43.420341],"geometry_index":22824,"admin_index":11,"weight":14.68,"is_urban":false,"turn_weight":1,"duration":14.406,"bearings":[31,37,217],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"tunnel_name":"Tranchée couverte de Guéthary","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[50,232],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.352,"geometry_index":22829,"location":[-1.603913,43.417696]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,234],"duration":86.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":81.922,"geometry_index":22830,"location":[-1.604896,43.41713]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":2.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.43,"geometry_index":22858,"location":[-1.631097,43.404494]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[50,226,242],"duration":29.062,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":28.312,"geometry_index":22860,"location":[-1.631818,43.40406]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.637059,43.39765],"geometry_index":22868,"admin_index":11,"weight":3.008,"is_urban":false,"turn_weight":0.5,"duration":2.531,"bearings":[6,10,189],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,186],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.117,"geometry_index":22869,"location":[-1.637196,43.397039]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":40.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":40.039,"geometry_index":22870,"location":[-1.637276,43.396504]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":14.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":14.734,"geometry_index":22879,"location":[-1.64231,43.386593]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,192],"duration":3.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.938,"geometry_index":22882,"location":[-1.644132,43.382897]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":95.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":95.656,"geometry_index":22883,"location":[-1.644439,43.381867]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[64,244,249],"duration":10.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.734,"geometry_index":22910,"location":[-1.67233,43.373432]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,243],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":4.133,"geometry_index":22912,"location":[-1.675781,43.372224]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,242],"duration":8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8,"geometry_index":22913,"location":[-1.676986,43.371786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.679568,43.370725],"geometry_index":22915,"admin_index":11,"weight":43.938,"is_urban":false,"turn_weight":1,"duration":44.062,"bearings":[46,59,236],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.195,"geometry_index":22922,"location":[-1.691426,43.362769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,228],"duration":146.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":135.703,"geometry_index":22923,"location":[-1.691755,43.362546]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,243],"duration":38.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":35.805,"geometry_index":22960,"location":[-1.727945,43.342009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,275],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":3.656,"geometry_index":22969,"location":[-1.741095,43.341128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,277],"duration":8.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.164,"geometry_index":22970,"location":[-1.742419,43.341217]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.672,"geometry_index":22974,"location":[-1.745369,43.341475]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":1.805,"geometry_index":22975,"location":[-1.745961,43.341538]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,277],"duration":8.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":8.445,"geometry_index":22977,"location":[-1.746598,43.341603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,234],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":2.344,"geometry_index":22983,"location":[-1.749493,43.34132]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.749637,43.341245],"geometry_index":22984,"admin_index":11,"weight":17.844,"is_urban":false,"toll_collection":{"name":"Péage de Biriatou","type":"toll_booth"},"turn_weight":15,"duration":2.914,"bearings":[54,235],"out":1,"in":0,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,231],"duration":4.258,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":19.148,"geometry_index":22985,"location":[-1.749804,43.341159]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,230],"duration":10.969,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":10.68,"geometry_index":22987,"location":[-1.750175,43.340937]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[37,59,249],"duration":2.641,"turn_duration":0.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":2,"weight":2.633,"geometry_index":22990,"location":[-1.75159,43.340133]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,253],"duration":3.102,"turn_weight":5030.122,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":11,"out":1,"weight":5033.227,"geometry_index":22991,"location":[-1.752025,43.34001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":3.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.477,"geometry_index":22992,"location":[-1.752616,43.339876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":5.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.289,"geometry_index":22993,"location":[-1.753272,43.339728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.516,"geometry_index":22994,"location":[-1.75438,43.339476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.195,"geometry_index":22995,"location":[-1.754694,43.339406]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":2.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.508,"geometry_index":22996,"location":[-1.755151,43.339301]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.755692,43.339179],"geometry_index":22997,"admin_index":12,"weight":19.484,"is_urban":false,"turn_weight":15,"duration":4.492,"bearings":[73,253,263],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[71,253],"duration":6.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.422,"geometry_index":22999,"location":[-1.756707,43.338937]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.759236,43.338368],"geometry_index":23005,"admin_index":12,"weight":5.258,"is_urban":false,"turn_weight":1.2,"duration":4.062,"bearings":[66,74,255],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,260],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.375,"geometry_index":23008,"location":[-1.760518,43.338144]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,261],"duration":151.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":155.367,"geometry_index":23011,"location":[-1.761601,43.338026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[77,262],"duration":60.578,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":62.086,"geometry_index":23154,"location":[-1.807499,43.32785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,243],"duration":1.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.156,"geometry_index":23213,"location":[-1.828941,43.319854]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,243],"duration":8.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.398,"geometry_index":23214,"location":[-1.82904,43.319817]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,251],"duration":31.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":30.711,"geometry_index":23217,"location":[-1.829791,43.319575]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":11.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.906,"geometry_index":23224,"location":[-1.832721,43.319053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,261],"duration":28.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":27.453,"geometry_index":23226,"location":[-1.833773,43.318907]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.836458,43.318657],"geometry_index":23230,"admin_index":12,"weight":28.375,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":13.711,"bearings":[80,259],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.838321,43.318195],"geometry_index":23234,"admin_index":12,"weight":9.953,"is_urban":false,"turn_weight":0.75,"duration":9.461,"bearings":[56,67,244],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,248],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.336,"geometry_index":23239,"location":[-1.840235,43.317502]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[79,261,273],"duration":0.656,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.633,"geometry_index":23244,"location":[-1.841584,43.317219]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,264],"duration":34.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":33.406,"geometry_index":23245,"location":[-1.841777,43.317198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.851895,43.316791],"geometry_index":23283,"admin_index":12,"weight":11.297,"is_urban":false,"turn_weight":1,"duration":10.57,"bearings":[65,74,257],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,277],"duration":59.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":59.617,"geometry_index":23297,"location":[-1.855729,43.316821]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,201],"duration":1.789,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.812,"geometry_index":23340,"location":[-1.874216,43.310249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,202],"duration":4.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.039,"geometry_index":23342,"location":[-1.874444,43.309824]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,216],"duration":13.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.875,"geometry_index":23346,"location":[-1.875214,43.308684]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,267],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.984,"geometry_index":23357,"location":[-1.879243,43.306954]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,271],"duration":6.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.438,"geometry_index":23358,"location":[-1.879551,43.306941]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,288],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.297,"geometry_index":23364,"location":[-1.881632,43.307186]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[108,287],"duration":4.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.344,"geometry_index":23365,"location":[-1.882018,43.307276]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[102,279],"duration":4.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.078,"geometry_index":23369,"location":[-1.883386,43.307548]},{"bearings":[87,263],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"geometry_index":23373,"location":[-1.884976,43.307583]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria-Gasteiz"}],"type":"fork","modifier":"right","text":"Bilbao / Vitoria-Gasteiz"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":193361.609},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Bilbao"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria-Gasteiz"}],"type":"fork","modifier":"right","text":"Bilbao / Vitoria-Gasteiz"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep straight to stay on E 05/E 70.","modifier":"straight","bearing_after":201,"bearing_before":201,"location":[-0.843948,44.63626]},"speedLimitSign":"vienna","name":"","weight_typical":5973.039,"duration_typical":6292.59,"duration":6292.59,"distance":193361.609,"driving_side":"right","weight":11003.203,"mode":"driving","ref":"E 05; E 70","geometry":"gekctAvior@xqBj{@~cChaAjqAjf@hrAvc@vWrInV`Ips@pUdiB~f@zeEt|@~p@`Llp@fJ~o@tIfr@rHxhC|R~_A|D`bAfC`{@n@~d@F~TU~CBjo@o@rb@_Alh@iB|VgAzy@aF~h@iEdNuAnq@yGby@mKvw@aMjq@kLn{Ag[nu@wQfv@oSzvAeb@lkAaa@rnA}d@x\\gN`b@aQxi@iV~iBiz@xoH_wD~jBcaARKjhAyj@xoCsrAhnBuz@v`Cy{@p|B{u@|hC{r@bhCcf@`wA{TbtAuQpzDoa@vaD{XvuEm`@bzD_ThqDuFxiBz@lf@l@d{BdHnnBbKjiBdO|fBzWt|Bj`@h{@`Q`|@fPzu@nNpjE~w@n~Br_@pjC`a@jlArJdz@nJjaEd\\tcAnFbeH~^tgC`VrxBha@hwCv{@vy@tYls@hSle@|NvpBnl@vm@rPfs@bOliBpWxpBtIzsCwH`aAkL|a@aFbaAkLvaDyf@|dAcRxyAeTbXqFrrC_j@l`Dyw@zeEmtAzoDm{AtvD{oB|jDsyBphCgoB`hQofOxdJ_aIhC{BrwDawCbdB_gAfiCgkAjaBag@z`Bu_@d`AiPlz@mIt~BcMjlB[hiBrGh|AhOlTxBlcAtNx~@lU|hBfd@feIveChmY~bJpx@~Ufn@dNf_A`LpTpAlU^t\\Vx]y@r~BoVjnA{MpvBoWzpCk\\|bBwSlbBiRpdBaC`m@fDpSpBpOpB~N~BdTnEpSjF|h@fPdS`Ilm@bZtgAnu@rh@df@ji@tm@fy@zkAhRlYt`CftDpcD`dFdfA~tAl`Af~@paAnn@dtAxo@p`Cn`AzpBvbAda\\~wQxsFj}CdNxHtfAhm@fxIr_F~pFpyCtaBd_Abt@na@tn@h]~|@nf@dh@zZ~g@vZ|cAdr@lz@`j@tBrAzf@fXzaBdt@hfA`k@|u@~`@riC~xApvCbbBXNnrMjkHv_BtbAx}AntAbd@de@|b@lh@pT|YnUr\\jh@dy@li@x|@tUf^pTb[~QhVrT~Vp`@z`@`\\pXf\\fVdMnI|p@j_@|r@zX~}@fVbk@dK~e@hEbf@fA`q@Jrq@iDlkBmNvn@mBfn@Gvm@l@dl@~Cro@~Gxm@|IxrA`]fmaBtvc@bJdC`h@hNxiJlfCve@dMflKzuCnkVh|G`_@vOfh@jVtu@xd@|i@h`@bh@~c@ze@rf@t_@pd@no@b~@~_A~aBt}@n`Bb`@tr@t`@vm@pa@zj@pf@|m@pw@ft@vb@p_@xMvJpi@j[hh@~WzVdL|v@|Wrl@hNtHnAl`Ch`@zB^ttBbXtq@vIjwE~i@`n@dMrk@vPhx@d[peBj~@bNfHnm@h[jxC~{Aj{ClyAroFvnCtqF|oCzoCnuAl}G|iDt|FhvClhAlj@hvBffAzgJfuEzjNndHv_@lR~nAjn@`uM|uGn[dQj{@ni@ve@x`@hOvN~PxPtTfWvTjYbVr\\xZrg@`f@r`Az^`u@|[fn@pRt\\rYvc@p]pe@p_@zb@bd@|b@vSdPfl@fa@xxAzz@nt@d`@dT|M`TtNpm@ve@jXdXjc@df@xb@hg@`fAfqAbt@j|@tr@hy@vSpU~WpXt^v\\rn@zf@zo@lb@vfBj}@ppIzpChpTlkHndOnaF~nQh~FnoLz{DbBj@n|Et_B^LpwFliBh\\rKtbHp}BvvArd@jmAzXhcA~M`w@xF~qA`EnuJrY~{A`A~`BeLzgFqi@`_AgFrx@\\b`ArGfr@xLrt@~Rzs@~[ht@f\\f_@vQneB`|@pR|J~l@jZ`qBjcArdFjhCjqEh|Bn}BjiA~rBjdAtlA~b@tbArSrcAnIzkAPlqA_K``HseAhiAgQ|x@wHzt@oB~z@lBt_AnJj_A`TraAr^r}@|h@d`Afs@fq@fr@hl@jm@jk@fi@fu@~m@rsKrtIdw`@jm[dbSp{O`eApeAzo@z{@|l@bfAln@`{AtlAfvDvAnEfm@f{AjIlPjG~L`m@bbAfJbNnS~Wl`@lc@|c@db@j{@fo@pj@jZhh@tTrf@xO|h@nMfoArNne@~BpBJd|I~GvcA|Dpv@zJnk@`Ldx@dXjc@xRfh@vYpa@hYnl@jg@bx@l|@lf@dr@nsAfrBbdEfmGjvB`bDnbJldNp^bj@zxIdyMlvA~wBbyMzeSd|DvaGrzDv|F~m@rv@~aA|~@vr@~h@rva@dkYznC`jBdhBleA|wA|e@fnAzR`pAfElpAgFjnAoOriAka@zpBmr@tm@}TpaA_^tm@yQhj@kMlYiE`YsCtYoB~YkAnl@Hfl@bB~k@rGzThDjTxExQdEl`@tLz_@xNda@lRrNjIrC`BpBhAvf@b]tl@lg@`k@hm@`d@rl@~a@dq@rXvh@fY`o@nPjc@jQzi@|Ib[nJn`@xS~bArI~j@rD~YpK~{@xPvbCjj@nfI|SxqBrYx`Bl]zrAlb@`lA|i@~iAbr@xgAxx@~~@~b@fb@lf@p^jeApq@rkAdx@vxAd`AlnEtoCtoErlCjeVntN~x@xd@zg@rYdh@vZ|qAxv@fQ~L~sCnqBtBzAb@VzBrAxAz@puAvp@x]hSfuAxt@|o@n]tyAn|@zoIdbFrw]|vSzaM`oHhgJ`sFzsAvv@po@p[x{@~Z`{@pRlj@`H|z@|El}@Ov~AyFzvAaDrd@LbfApIpb@zGrInBlDx@z_AhTfr@bRrVrGlm@zOhz@|Thb@hLtg@~Qff@nWfs@he@pV|SnUfUdQxR`StV`_AppAdk@`w@v]pc@x]v^~\\b\\d`A`r@vbAti@drAv^fbCz^xbD`e@pko@pvInzAtPp|Vfm@rqH`OnoK`Xjh@pAd~I`TjfK`UvmAhC``@fCp]rD|cArSdu@bZrv@nb@VNddA~|@daAloAd[|i@ha@b~@`]xdAfx@vpDpWrlA`\\ftAvs@xlCjdAp`Edm@xwCt}@bnFjp@noD~w@bjD|bA|bElXrpA`Yl_B|PtnAnOjtA|LjwAlJd~AfIf_CvFbsEfE|jDhDvoAbFvqA~HhtAvLp|Ar_@zsExS|yC|IfbCnDhdCzEtyG|GrbCzRdlC~Jr`AdLr|@rP`}@vTvhA~Sn}@xY|gAp\\`bAn_@~eAt}@|kBtkApkBdnAzdBjlAl}Afm@tr@vt@xu@b|A~sAz~@ns@b}@lm@dpBtsAv_Cn_Bp}ApnAn|AfsApd@ve@`{@~|@rg@bm@dj@~q@zh@ds@`PvTrZrd@lQ~YhP|Y`Rl_@jRdc@zu@l~Bve@lvBfZfdBjHbp@lJzz@zVtdBrb@llBni@hxAbi@rsAjf@n_B~X~uApTj}AfLzpAhHfjBJ|eAgDjvB}@jdBzBpaAfFbdAnRdgBrJ|q@lNbw@bj@ziBhn@j~Adi@leAhm@rmAxv@beBfm@d{Api@l~AjXfs@`Qnk@lj@zyArVdn@f[hr@bc@~{@pZph@nd@~t@p~@rpA|e@xm@zDrEpHxIhsAjbBtq@tz@~sE|xFlsAtaB|V`[pItKdnAf~AvDvEn`@bf@`NrPb{@ldA|MhRtg@rs@`e@`m@~y@j`AfbBrvAx}At{Ang@`i@`l@ru@xNnRdTbYRXrd@jv@j{@``BxcAflBfw@`hA~eAlfA`nA~y@jaB`q@~~Cf}@~l@`Qb_AdVbl@dLpl@|Inh@nDbq@dC`k@?tw@qEdZkCv_@yD`i@{Gzo@{Hjq@gFpg@uBx^c@vm@b@d_AfH~i@zFhnAnWbgAt_@jsAph@r|@t^df@nTzZhNr}@l_@pl@`Td^rKff@`Mps@pNtiArTl[vGta@zIjf@bN`c@fNh^lN~WzKr\\rOv]pQnb@bWf@ZpW`Pl^dWp[rVbn@vh@ds@|s@~\\t_@zq@~w@tc@pf@na@z`@bb@~]na@tYdc@rW`_@|QtU|Jlh@`Rfa@lKp^zHjj@pIfh@zFdr@fHnd@dEnYnAp[~@bd@DpZeA~a@{CnQ_B|]eEjr@aJ`[{CbYkBtR_Az[_@vYUh\\T~i@zC`k@rGxb@fHbd@jKvt@bUbw@fWn^nK`W|F~`@jGtUnC`Op@pb@|Bvj@lBfbEvMdhAnDfe@I`Vo@lWqBbg@_Gtg@mJ~`AcQza@sHb]mEhXmDh]sBl_@y@nTB`[z@jeApIzx@pIvXdCtVh@tZ^vp@mA~[eAtb@kJfq@iLz`@qFzh@iHny@mA`g@xFrd@xIng@dP`k@t\\|t@nk@vt@xz@pm@p{@`r@`fA~w@dmApu@d|@jy@|r@l|@fo@f}@zd@d`An_@nlAd`@js@fPbN|CzdAfNhkAzJffAtN`jAfVzeAlYhaA|Mxk@zCra@Sxw@iEvz@uOb\\cI~LwEhSyIbMgGjL{GjQoKdHwExj@w`@d^iWxTqNzWcOlSmJlRgH|MaEjMkD`TmElMqBfMaBtMiAbMo@tMc@xMIjUJ`Qn@zPvA`UlCnThE`[fItSdHtStIrRzJjL|GhRbMbRtN|JxIxJhJfMzMlMhOlOdSpNjT~MhUzKdTpLlWhTvf@`Udh@nGzMlHtNdKtQdL`R`JzMjN~Q|ObRnPbQjPpOrQrN~QlMzLtHvRpKrSpJxS|HtY|ItSjFdW~EpUnDhRtBpLbAx@HnDZnOZ`IJtIHrTWtMm@tNkA~L}AhMuB|SgEzy@gRjx@qQzaGwsA~`@sJjJmBvLoBhNmB~LaAzMi@jIYdJE|Tl@vTlBdMlBhM~BjMbDbOhFhJbDjIvD|VhNvQfMtK`JnLrLhNzNvI~KrIvLxMfT~IdPlYtl@rDlIbGtM|FhNxF|NdElKlE|KnG`RpGbRvFtQ~F~RzG~UzFhTbGzV|F~WnDzRrC`QvCtRjDvX~JfgAv@nIjEle@nDh\\~BxQzDrWvEdVzDtQ`ExPpEzPhFjP`FtNvFxN|GdPlG~MnHnNpHhNrJzPjE|Hf^~m@fRx\\|LjV~LlW|J|VtWh}@`QdcAlGnfA~@v\\x@jaAlAdq@|Anw@fDdbArIzfAtSdwApY|sAz`@vuApvC|dHp_@~|@~i@hqAhq@tdBvPtj@|V`|@jl@~hCtk@buCt[~bBrIvi@zGtn@zChd@z@b]h@fTKnr@Zxh@gBzi@eDncAaJxkCkI|iCyCfiAeBpmA_EfuFP`nAlBrr@~Dfr@|Ffo@~Izp@hLnn@fM~i@lUfv@nRhh@n[vq@b]nk@`b@bk@fhAzrAve@~o@x`@zo@pYvn@jVln@tQvl@xj@|tB`]fiAz^daA|^lv@Xj@fT`a@pZjg@l`@vi@va@fh@dk@xn@`f@rh@rZta@t\\rh@zUde@lSzh@hPfk@xMjm@jKhv@`Hz_A~Bxo@^dKMbo@YfQqBhc@qBbXa@vFsCbb@sD~^mHtt@mTbzBoHhu@{KtsAmDh`@gEpd@mJxu@qE~x@mFt}@`AbrBHhE`HroB|Cv^lGrf@`DhWtDnT~Hfb@bOtk@xPjj@~Xvr@l[vl@p_@~l@pk@fq@xb@ta@bl@zb@pg@hYtn@~V~w@`[jo@z\\ln@nc@ho@vk@js@bv@~f@hg@l^fZhg@h\\js@db@nk@|^`b@`^|a@~c@hZp`@v\\|j@ff@hhA|Ml`@fXj`AxSrfApgAxyGDRxRl_AhNlf@tHzWn`@fbAzk@tdApTv\\|~@nzAxb@b~@r`@``AzaBz|DjWtk@`W|f@zN|W`OpVhSl[nRjXjYx^dYh\\js@~t@fh@ri@~a@zc@pVl\\xOzStRl[feAvqBjb@l|@hYtq@vTjz@vOzz@jc@xjCxLlm@rNtj@nOfe@bP`_@bUhc@jo@~dAjr@xjA`Zvl@|Ona@`O`d@n\\vkAnQbq@zYfaArQpg@hUph@n]fp@hl@pcAva@hu@~]rw@l^|_Ale@lpAby@hpBtg@xiAnPl\\zM`XfK~Rr}@fwA`j@lr@jn@hp@hj@ve@lz@`g@xu@d]xp@jRdg@dIde@pGl`@~Cb}AnIvs@bJvj@~Ldf@jPr]zNjx@zg@p~BhcB`m@r\\~~B|iApfBpz@p~@|[z~@jXj_AdRzy@vQvn@jUju@x`@bbA`s@tz@bx@`dBjvBha@|t@n[pu@zUxw@fGvXdN`u@jMtaAvBlf@tBdt@]rpAgFl~@sL~fA}NnfAkRrdAmPnjAoJzkAoCfnADtgAxHlpAlMzfAhRnbAdu@|vCrn@vdCzZ|pAjZhjAz[fjAld@buAhe@nmArw@f~Af`AjhB~nAvuBz{A|zBzpBfqChq@`hA|LpS|Sb_@lp@huAjy@xvB`n@zpBfR~u@pLvk@dXvjBlF`k@dE`z@zCl{@t@ju@}A`{A}B~sAw@poAhEjmAdNx_Bt\\fdCv]hoA|^lx@hh@pr@fn@`h@bk@`Xlq@pNbq@dDzdBn@xn@hDvp@tQxq@td@puAhjBtq@vv@dl@te@xfAhv@ln@hm@|b@jp@`l@lsAlk@fgBtLld@hUx{@|SpjAhMroAIxiAs@dpA~Bx_BpEdyAPpvAuJhmDqDvqAIbD}Bth@gD~jAsEp|@}B~c@}@~PcAxTc@bJwBlx@ZtYpAj[xG`a@hIfVtC~GjDlInHzNjChFhd@`}@pFpLjDxKtFdZjG|c@fH~g@vNfdAjCrRpEp[rFx`@~DxYbHrc@zGrf@F^~F|a@fE|ZvG|d@lBrObEz]|CvZ|AnTdAbOrApVpA~Z~ApZzAnWjBdXlDjY~CzTbExSvG|YfHvVbGtQdG`OdKvUhK~UfKrVtD|JrGdQpI`Z|G|Y~EnXpBxOhBxOfBzS`ArOt@|Qh@rYTb[LfQRtVBhRh@lU`@hUhA`WrAtXhBzW|BdVxA`N|ClU~BvPzDrTxDfTfEzRvEvRdFvRbHfUjExM~ClK`EvNpKzU~Sba@lOfZxKbT|HdNlH~N~IzTfHjThGtTxDbP`E~SbD|UvBvQlBlUtAvUf@bXLdMJzUCnQD`VNhVXdVd@hTjAnZzAnUzAnQfCjV~ClVbEhV~DbSnGbZvGdYjFpUxFdWbGhZtDzVxBxRjAjPpA~Wh@lXHhPCxWe@nVcAjWiBxXeCf[gBlU_BhS{AhTwAhW}@~T_@jM]pOW`VC`NCbRLtNVtPv@p[fAvUz@zNdB~WrBdTzBrSpB`PTpB`B`LtDxU`EpTfBpIbCpLvC`MzCzLtC|JbF`QjElMxE~NhFpNrEjLvC|GnFjMnIbR|JxT`ItPfFtL`ClGxClIrChIxCnJvCjKvC`LpBdJ~C|OfCjPxB`QjCfUfAvLl@hLjAhZdAtVZzg@^`f@d@hYt@fYpAvSjAxQpBlWbCzVlCrQlCdQ~DfWzFpWnFnUnGlUlH`VjHbSpJbW`Oz^bItSfAxCnJnXnKn[bDvKlBrGdH`YnEfRh@xBbFhTjIzb@fHld@rIzp@zFtd@~CrXvDz[nE|YrC`PpErSpFhTdEpNfGnQrHlStJxTpJrQtLhRzLnQhNhPhTlUlg@xd@xNhNtMdOzNhRtJhPfK~RjJbT`H|RhDpLhAdE`FtQ|E|Vb@hCfCpO~F~f@x@lIfCvVDj@rFtk@nEhm@x@~KhFvs@nDtm@vBvu@`A|`@hCl_@~ArSvHpi@jH|]vEhUnIl\\|HfYdHjWnF~SdEpQzChObBbMrCxTrAzMlAdPh@`KP|Cd@xQTrRCrOMbNUdNs@lQw@~L{AdQaD~XeFv^eAtIgBlNqBbPgBvS}@~J}@pL_@dMa@|LIpNKbLFhLLxLj@zQj@hNx@`N`C|U`B`MrBbN~C~PtDtRpBlK`CvJzD|PlGzXtClOdChPbCjRhBdRpBxVh@|Mh@pOVtMEnSEfLi@dR]lLo@zMaAbPkAnVsA|R]rGc@pIc@pOUdQAzRPbUxAnc@`Dha@tF~_@pHj_@dJn_@pLzd@pKbf@vDfTrCrT~Cz\\fBl^x@`^j@vd@n@fc@v@td@`Chg@pEzh@hGvj@rIlh@zJff@hHtZhL`a@pJhYxL~ZbK`VhEhJvItQdIpOlOzVxKnObNnQfRpTdT~StS~QhTfPxOpKnVrNv\\hPfThJhD|AjKzE`_@jRhP|KnH|GlKnKpMpOxNdTjKdR|LzZ`I`VnGtWnGh]`DfVdChYtAzYXfRGnU[pTq@vN_A`NqC`[aEbZsDbWy@tFeF|_@aEv^}@bLsAvV]lRArSl@pb@dBxb@hFxk@nElZtJfb@~K`_@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6898.593},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on AP-1.","announcement":"In 2 miles, Keep left to stay on AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on AP-1.","announcement":"In a half mile, Keep left to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on AP-1, AP-8 toward Lasarte-Oria, Bilbao.","announcement":"Keep left to stay on AP-1, AP-8 toward Lasarte-Oria, Bilbao.","distanceAlongGeometry":306.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[-1.887782,43.306916],"geometry_index":23378,"admin_index":12,"weight":12.023,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":11.203,"bearings":[61,231,236],"out":2,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,244],"duration":9.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":10.562,"geometry_index":23383,"location":[-1.890442,43.305547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,261],"duration":3.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":4.156,"geometry_index":23391,"location":[-1.893179,43.304983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,252],"duration":8.398,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":9,"geometry_index":23395,"location":[-1.894243,43.304828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,224],"duration":5.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":5.914,"geometry_index":23403,"location":[-1.896284,43.30396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,206],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":12,"out":1,"weight":2.852,"geometry_index":23406,"location":[-1.897347,43.302986]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.897716,43.302443],"geometry_index":23407,"admin_index":12,"weight":11.289,"is_urban":false,"turn_weight":1,"duration":9.82,"bearings":[14,26,202],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,221],"duration":4.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.477,"geometry_index":23412,"location":[-1.899268,43.30037]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,212],"duration":20.789,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":36.312,"geometry_index":23414,"location":[-1.900159,43.299555]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[180,359],"duration":52.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":50.945,"geometry_index":23425,"location":[-1.901509,43.294207]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[78,260],"duration":17.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17,"geometry_index":23446,"location":[-1.912441,43.283956]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,272],"duration":29.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":27.734,"geometry_index":23452,"location":[-1.918897,43.28348]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[127,303],"duration":5.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.438,"geometry_index":23469,"location":[-1.928571,43.286808]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,295],"duration":12.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.344,"geometry_index":23472,"location":[-1.930364,43.287635]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[103,278],"duration":14.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.594,"geometry_index":23478,"location":[-1.93525,43.288902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,263],"duration":11.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.156,"geometry_index":23482,"location":[-1.94041,43.289074]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":16.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17.148,"geometry_index":23487,"location":[-1.944246,43.288552]},{"bearings":[73,252],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":23492,"location":[-1.949946,43.287581]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lasarte-Oria"},{"type":"text","text":"/"},{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Lasarte-Oria / Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":6931.926},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight","right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lasarte-Oria"},{"type":"text","text":"/"},{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Lasarte-Oria / Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"destinations":"AP-1, AP-8, E-5, E-70, E-80: Bilbao, Vitoria-Gasteiz, Burgos, Hernani, Iruña/Pamplona","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take AP-1/AP-8 toward Bilbao/Vitoria-Gasteiz/Burgos/Hernani.","modifier":"slight right","bearing_after":236,"bearing_before":241,"location":[-1.887782,43.306916]},"speedLimitSign":"vienna","name":"","weight_typical":259.68,"duration_typical":243.164,"duration":243.164,"distance":6931.926,"driving_side":"right","weight":259.688,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"gyfrqAjafrBjS~g@fU`e@|Uri@bOv`@zBxIfIl[|CvPpCxPnBbQlBzTtA`RjA~PnB~\\J`BjArRjBnTpBhUbC`PfDlPpDrOjFzPvC`Iz@~BfE`K`Rl_@pVb^~]`^hEfC|`@`Vv]jPtZzOpVzMfX|VhU|VzYx^`WzV~\\rXtZdR`UbK|]xKjXbHd\\`El_@pApi@g@da@]nc@KhVQbJGla@hBbl@zFlWtEza@pHpUlG`U`IjaAla@dV`Odp@~b@db@~]fx@xw@xm@lz@hm@t`Ar[vr@nTjh@tTxp@lQrn@lQdbA~G~s@`CjZ~HpkAtE~{@jDj|@lChaAfBzpA?jw@[j`@ElHeA`WE|@yBz]mDl`@cPxkAeIjd@_Rrs@kQls@wIpVsGxRaPnb@gRnc@qRbb@}Yfp@m[ns@{O`b@qRlg@gNpc@wZnoA{Nfs@sLbu@Ib@yIxs@yIp_AaEbz@gFxtBAxtArAvz@vAh\\lApYzEfr@t@tKzQ|vBbL`oArNx}AzKlnAnIt}@pGff@dHtf@pXj{A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":5301.287},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on AP-1.","announcement":"In 1 mile, Keep left to stay on AP-1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on AP-1.","announcement":"In a half mile, Keep left to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on AP-1, AP-8.","announcement":"Keep left to stay on AP-1, AP-8.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-1.952059,43.287025],"geometry_index":23494,"admin_index":12,"weight":0.305,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.32,"bearings":[69,241,251],"out":1,"in":0,"turn_duration":0.033,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":12.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.555,"geometry_index":23495,"location":[-1.952147,43.286989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":13.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.961,"geometry_index":23501,"location":[-1.955856,43.285312]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,215],"duration":4.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.688,"geometry_index":23508,"location":[-1.959077,43.282925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,212],"duration":10.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.117,"geometry_index":23510,"location":[-1.95993,43.28205]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.96181,43.279756],"geometry_index":23516,"admin_index":12,"weight":9.82,"is_urban":false,"turn_weight":1,"duration":8.406,"bearings":[25,32,217],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":8.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.836,"geometry_index":23521,"location":[-1.963619,43.278239]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,254],"duration":11.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.352,"geometry_index":23525,"location":[-1.966046,43.27723]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[95,281],"duration":5.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.633,"geometry_index":23530,"location":[-1.969899,43.27691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,282],"duration":20.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.227,"geometry_index":23531,"location":[-1.971626,43.277155]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[105,285,289],"duration":1.914,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.938,"geometry_index":23537,"location":[-1.978237,43.278471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.914,"geometry_index":23538,"location":[-1.978855,43.278594]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,285],"duration":19.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":19.312,"geometry_index":23540,"location":[-1.9801,43.278841]},{"entry":[false,false,true],"classes":["tunnel","motorway"],"in":1,"bearings":[82,90,266],"duration":2.234,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":2,"weight":2.211,"geometry_index":23546,"location":[-1.986578,43.279419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,262],"duration":6.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.664,"geometry_index":23547,"location":[-1.98731,43.279386]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":11.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.547,"geometry_index":23550,"location":[-1.989583,43.279113]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,245],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.75,"geometry_index":23555,"location":[-1.993358,43.278179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":44.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":46.016,"geometry_index":23556,"location":[-1.993873,43.278005]},{"bearings":[103,283],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":23573,"location":[-2.008955,43.276141]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":5341.287}],"destinations":"AP-1, AP-8, E-5, E-70, E-80: Lasarte-Oria, Bilbao, Vitoria-Gasteiz, Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on AP-1/AP-8/E 05/E 70 toward Lasarte-Oria/Bilbao/Vitoria-Gasteiz/Burgos.","modifier":"slight left","bearing_after":241,"bearing_before":249,"location":[-1.952059,43.287025]},"speedLimitSign":"vienna","name":"","weight_typical":200.008,"duration_typical":192.875,"duration":192.875,"distance":5341.287,"driving_side":"right","weight":200.016,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"a~_qqAtrcvBfAnDdHtUdVx~@`Rtk@fPzc@jP|^vQx^j`@zt@|Rx\\dQ`X`TvZjP`TpN`QtVtXx]`]zVfV|KfJxOlL`NbKf_@lXfWpR`i@tb@vC`DlTlTl\\j_@zTp\\hPrW|KjQdSjc@bShw@xHrg@zGpi@fFph@zCfk@bAjz@cB`t@iN|jBuBtVgMxgA}TpiB}Ql~AwRh_BuBjQuFre@mDlZ_Ijq@aHxl@yKvkAmGvhA}DtsAEniAHjp@`Avl@zCvn@nEtx@tDrc@l@fHdHjq@bK~s@rLjs@~T|eAzId_@vWrbAtP|n@nRvv@rNlp@vLns@jGf`@xFh`@xE~b@dErb@~BhZzEfw@tDf}@hBdcAv@~oAeBjx@mJtmB_JbcAeArLmKd|@aFp^"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 28 miles.","announcement":"Continue for 28 miles.","distanceAlongGeometry":44257.594},{"ssmlAnnouncement":"In 2 miles, Take exit 69.","announcement":"In 2 miles, Take exit 69.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 69.","announcement":"In a half mile, Take exit 69.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 69 onto 69 toward Bergara, Vitoria-Gasteiz-Burgos.","announcement":"Take exit 69 onto 69 toward Bergara, Vitoria-Gasteiz-Burgos.","distanceAlongGeometry":266.667}],"intersections":[{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.010657,43.276488],"geometry_index":23576,"admin_index":12,"weight":24.828,"is_urban":false,"turn_weight":15,"duration":9.594,"bearings":[107,290,296],"out":1,"in":0,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[117,296],"duration":15.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.516,"geometry_index":23580,"location":[-2.013694,43.27746]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,289],"duration":33.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":33.945,"geometry_index":23587,"location":[-2.018473,43.279187]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[118,297],"duration":10.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.688,"geometry_index":23604,"location":[-2.027649,43.283818]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[110,292],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.062,"geometry_index":23607,"location":[-2.030945,43.284836]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,349],"duration":2.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.789,"geometry_index":23619,"location":[-2.036123,43.288222]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.57,"geometry_index":23620,"location":[-2.036303,43.288899]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.039044,43.292323],"geometry_index":23631,"admin_index":12,"weight":192.555,"is_urban":false,"turn_weight":1,"duration":201.664,"bearings":[123,131,298],"out":2,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[65,250,262],"duration":41.227,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":38.125,"geometry_index":23739,"location":[-2.10306,43.283493]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[101,276],"duration":7.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.812,"geometry_index":23769,"location":[-2.119245,43.282359]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,264],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.273,"geometry_index":23776,"location":[-2.122183,43.282261]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,274],"duration":5.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.641,"geometry_index":23780,"location":[-2.124027,43.282217]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,278],"duration":21.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.195,"geometry_index":23784,"location":[-2.126449,43.282428]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,277],"duration":53.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":51.117,"geometry_index":23789,"location":[-2.133295,43.283149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,243],"duration":15.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.266,"geometry_index":23823,"location":[-2.148204,43.279702]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,271],"duration":1.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.422,"geometry_index":23833,"location":[-2.152824,43.279008]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[91,272,279],"duration":6.578,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.406,"geometry_index":23834,"location":[-2.153264,43.279015]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,277],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.359,"geometry_index":23838,"location":[-2.155054,43.279126]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,280],"duration":2.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.172,"geometry_index":23841,"location":[-2.155888,43.279215]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,281],"duration":34.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":33.266,"geometry_index":23842,"location":[-2.156423,43.279283]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.15905,43.279697],"geometry_index":23846,"admin_index":12,"weight":27.969,"is_urban":false,"toll_collection":{"name":"Zarautz","type":"toll_booth"},"turn_weight":15,"duration":13.305,"bearings":[100,281],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.160082,43.27984],"geometry_index":23847,"admin_index":12,"weight":7.43,"is_urban":false,"turn_weight":0.75,"duration":6.891,"bearings":[79,101,272],"out":2,"in":1,"turn_duration":0.036,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,272],"duration":76.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":72.555,"geometry_index":23849,"location":[-2.161303,43.279876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,263],"duration":57.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":53.391,"geometry_index":23901,"location":[-2.182465,43.282244]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[93,272],"duration":3.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.375,"geometry_index":23936,"location":[-2.199587,43.281442]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":20.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":19.195,"geometry_index":23938,"location":[-2.200594,43.281453]},{"tunnel_name":"Meaga","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[87,271],"duration":20.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.867,"geometry_index":23947,"location":[-2.206346,43.281191]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,294],"duration":8.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.578,"geometry_index":23951,"location":[-2.212235,43.282093]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[113,292],"duration":32.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":30.398,"geometry_index":23955,"location":[-2.214642,43.282879]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[76,259],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.977,"geometry_index":23977,"location":[-2.224007,43.285481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,261],"duration":15.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.508,"geometry_index":23980,"location":[-2.225803,43.285249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,258],"duration":0.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.172,"geometry_index":23992,"location":[-2.231041,43.284929]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[78,257],"duration":64.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":61.562,"geometry_index":23993,"location":[-2.231103,43.284919]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[95,274],"duration":4.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.906,"geometry_index":24042,"location":[-2.249505,43.277735]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[99,278],"duration":59.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":56.25,"geometry_index":24046,"location":[-2.25069,43.277843]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,265],"duration":15.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.867,"geometry_index":24120,"location":[-2.263364,43.271472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,226],"duration":8.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.922,"geometry_index":24140,"location":[-2.267958,43.270042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,210],"duration":3.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.242,"geometry_index":24152,"location":[-2.269606,43.268482]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209,220],"duration":7.336,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.945,"geometry_index":24155,"location":[-2.270153,43.267777]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,218],"duration":4.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.414,"geometry_index":24160,"location":[-2.271425,43.266298]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,226],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.305,"geometry_index":24164,"location":[-2.27245,43.265476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":12.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.906,"geometry_index":24165,"location":[-2.272778,43.265246]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.276359,43.263441],"geometry_index":24178,"admin_index":12,"weight":144.883,"is_urban":false,"turn_weight":0.5,"duration":156.094,"bearings":[56,62,242],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[107,286],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.859,"geometry_index":24348,"location":[-2.323694,43.284145]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[106,284],"duration":18.797,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17.367,"geometry_index":24349,"location":[-2.324061,43.284222]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[77,90,268],"duration":2.438,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":2,"weight":2.234,"geometry_index":24362,"location":[-2.329973,43.284775]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,267],"duration":1.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.992,"geometry_index":24364,"location":[-2.330745,43.284752]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[87,266],"duration":5.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.922,"geometry_index":24365,"location":[-2.331085,43.284737]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,266],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.391,"geometry_index":24369,"location":[-2.332796,43.284636]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,267],"duration":11.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.805,"geometry_index":24370,"location":[-2.332927,43.28463]},{"tunnel_name":"Itziar","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[90,263],"duration":20.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.82,"geometry_index":24376,"location":[-2.336692,43.2846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,282],"duration":50.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":46.258,"geometry_index":24380,"location":[-2.343069,43.284317]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,206],"duration":1.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.266,"geometry_index":24423,"location":[-2.357349,43.28436]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,209],"duration":13.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.375,"geometry_index":24424,"location":[-2.357537,43.284078]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,217],"duration":3.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.367,"geometry_index":24432,"location":[-2.359744,43.281353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.656,"geometry_index":24435,"location":[-2.360483,43.280673]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,221],"duration":14.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.727,"geometry_index":24436,"location":[-2.360636,43.280545]},{"tunnel_name":"Istiña","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[39,222],"duration":7.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.141,"geometry_index":24443,"location":[-2.363673,43.277977]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,203],"duration":1.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.617,"geometry_index":24448,"location":[-2.36504,43.27644]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":33.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":30.352,"geometry_index":24450,"location":[-2.365257,43.276046]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,218],"duration":12.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.258,"geometry_index":24472,"location":[-2.371244,43.26944]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,207],"duration":61.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":54.977,"geometry_index":24478,"location":[-2.373729,43.267098]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,252],"duration":112.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":100.852,"geometry_index":24528,"location":[-2.387183,43.256975]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,215],"duration":2.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.422,"geometry_index":24622,"location":[-2.403899,43.235056]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[30,199,206],"duration":0.844,"turn_duration":0.041,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.742,"geometry_index":24628,"location":[-2.404352,43.234527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":17.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.508,"geometry_index":24629,"location":[-2.404434,43.234351]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.403611,43.230361],"geometry_index":24648,"admin_index":12,"weight":4.828,"is_urban":false,"turn_weight":1,"duration":4.164,"bearings":[161,331,340],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,346],"duration":11.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":10.766,"geometry_index":24651,"location":[-2.403244,43.229441]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,185],"duration":22.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.781,"geometry_index":24656,"location":[-2.403079,43.226838]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,188],"duration":11.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":10.594,"geometry_index":24671,"location":[-2.402919,43.221588]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,222],"duration":2.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.477,"geometry_index":24681,"location":[-2.404279,43.219273]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.289,"geometry_index":24684,"location":[-2.404837,43.218858]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,235],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.539,"geometry_index":24686,"location":[-2.4054,43.218514]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,230],"duration":25.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.719,"geometry_index":24687,"location":[-2.405546,43.21844]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,235],"duration":6.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.578,"geometry_index":24708,"location":[-2.410257,43.21385]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,253],"duration":13.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.227,"geometry_index":24714,"location":[-2.412152,43.213119]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,207],"duration":15.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.781,"geometry_index":24727,"location":[-2.415854,43.211743]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,216],"duration":39.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":37.773,"geometry_index":24744,"location":[-2.416995,43.208405]},{"bearings":[66,244],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":24780,"location":[-2.426638,43.203133]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bergara"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria-Gasteiz-Burgos"}],"type":"off ramp","modifier":"right","text":"Bergara / Vitoria-Gasteiz-Burgos"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"69"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"69","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"69"}],"type":"off ramp","modifier":"right","text":"Exit 69 69"},"distanceAlongGeometry":44297.594}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on AP-1/AP-8/E 05/E 70.","modifier":"slight left","bearing_after":290,"bearing_before":287,"location":[-2.010657,43.276488]},"speedLimitSign":"vienna","name":"","weight_typical":1614.531,"duration_typical":1682.594,"duration":1682.594,"distance":44297.594,"driving_side":"right","weight":1614.508,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"okkpqA`avyBgMvu@oL~j@iQzq@uMdg@cMnf@wMfa@w]ngA}HbXkGdXmJze@qQf~@sTbwA{DzUgDdQqE|ScEbPcJ|ZcLr[yKdWuKrTkLtS_LzPul@~u@sl@vx@oWpe@aRrc@qRhi@mL`b@c[zjAaPd|@mQ|cAuItc@}Ldn@sKpg@{Ljd@gOja@sHrOoOrWgT~Wi^xYg_@hSkUlH}IrCii@fJuPbCkDf@mh@lKwYlKwXxOc^zX_PzQwLfP{LzRaJbTeIfTsAhEiEpOmCfLiDpOcAfIcAfIeDzU{BdUuC|g@}Cbr@cBr^_D~]uEx`@wGjZmGhZcKvg@uE|^sBvTo@hQi@nV?pP\\tWp@fXlAx[LfPPn\\{@~XsBlYoEh[uG|YmGjSaTnp@eJb\\mF|ZmDn\\iBj[]xe@rB`{@f@d^C~]{@te@yCv|@mAbl@Mvc@N|^nA`d@J|CpEhh@`@tE|Fja@~Ipb@lKn`@~Kl[hYhn@f\\rr@n[xv@xShn@xMne@fLne@bIha@~Gfa@rIzp@zHbr@fGjn@vH|n@~I~o@~L|p@lHb]rM|h@lSdr@p[f`AhUvr@xRnr@lQvu@xKtj@vOjcAbLpgAbGvq@rHnw@`Ilo@jIri@dIta@`Nhu@xEpWtDvVfCpX`Bd_@j@xV[tc@kBfc@{Cnd@eCr_@wAd_@]z[ZzYbAfY~AzUjCzVxFn]fHd[dRvh@bc@hjAdM`c@fKjj@|]vyB~Y|gAxa@ryAhJz`@`Ibd@dGhe@bDfWrKdz@pOp{@bPht@bVjmAXvAzKbp@pItv@dFrf@rAlQlAfP|Bf^~@vQ~@~QdAtX|@jh@Mzb@UzQmAlV}BtYcEd]}Fp\\gGfXyFzTcHdZkId_@uGhe@uC`_@aAvYo@hYHjWdAz]jBn]rAv]d@`Mb@zK|@ze@Np\\Y|`@AbBu@x`@qB|d@{FnkAoJfqBgFncA}EfbAkH`yA_IxvAiBhe@aAb\\c@~\\Kf\\Nxc@dAh}@NvZYt]aBta@iJxqAiBl`@g@t[LnZn@lUnB|\\zEb_@fGz\\|DpQlG~T~KlZdHbPfMtTjNrS~[p^tR|RnBpBrStSzMvO|BlChOfUxQ`\\xH~PrH~R|DjK~Kjb@dFdV~D~U|CdVjCh\\jCxe@z@|[b@n\\PhZAb]MnZ]d]k@~XwA|c@{@vQq@xOmB`^QfCgCl`@iE~l@}G~p@_F`h@sBbZ}Gn_AaAzaAElHSpXh@l`@p@hX~AzTdGjs@vA|LdGx`@xInc@|Odt@|Inc@z@fExCxPvCjRfAnJdAxIvBdTvBvWjAvS`A`Vr@fTX~WDzROj_@o@t[y@vTmAxT}AbSqCj[gCvS_DfU_FpYaFhUeJl_@oJtYeN`a@mJ~UePr\\aOnXuRnZ{Yrd@qKdQmMxXwKrW_Kx\\wElVeFhZkDlYwBx^i@nUSlPPb[ZpJVxH`AtPdAjM~A|OnFz]xErU`Il]zLbj@lDpTvCbUbCbWjA`Vj@bU@zWI`ScDtbAm@zSUtNYx`@Lv^r@r^jA`]nC|h@dCjl@jA``@X`\\Dn^w@`_@iAb`@oCjh@mBn_@oBlh@iAxd@eB|s@k@ri@[tj@DfRHdd@^jv@h@f^`Adh@vCneAxAne@^vSt@jZl@jd@Wb`BmGz~AyR`rAkZ~zAsKtf@aZnnA_GnYm@vCuG|[uHv\\uGhUiKnY{LxVmJrQ__@|j@qJjOcH`NmFpKaMpZuFlQoGdVmF`XiFp_@kCh_@{AdYa@j^b@d^bB`]nCl_@vE`d@vDbg@dDhe@pBx`@zAhYp@hYX|Gj@pd@\\p_@D~Yd@|g@`@j[lAn`@xA|^jBnXj@lGRzBbBpQzB~RlHxg@zFz[zCnOxFnVjHbYtIjZvM``@~LpZvIpSdKfSrPpZbN~SpN|RxYx^~W|ZjBrBxP~QxFhG`ItIbAfA~^pb@|LjPdLvO|K`RdMfT`NnZrJ~WfHzThJf]jHh\\jHv^pF|Z~Er\\|El^~D~]|D|`@fBlWhB|VtA|ZbB`]d@zQ`@~OVnPJhQAbR_@|Ym@`Ta@jRmAzX{@rOk@dKw@dQ_@fMOnKAxKJtK`@hMl@nKx@vJfApJdA~H|AjKrBjJvGpTdJrTvHdOfKzOlGvH|HjHnGdFtEhDnGzDtHvDlHpChIhCvFfAhIdB`K`BfH~@xHhA|GjAtGvAzG`B`HzArIzCtIhDrFnCdDjB~D|B`F`DtExDpCbCzCnCrHrHbIjI~GdJpFvIpFjJrDjHzE|JbDtHzDfJdFdNtEdObEpNvBpItAzGrBrJbCnNvAvI|ArLhAxKlAdM|@zJr@dLj@~Ll@|Pb@zPb@rSPnVRhRPxQLnI\\pVPlK^rO|@nQx@pO|@hMvAxO|BxS`DjTzCxPnBdJpBjJbCbKhBxG|BhIpC`J~CvIrD|JfEjKxFnMbHnNfHjMzGvKnFzHpFjHlF|GdG`H`HzHdG~F~GnGtE~D|FxEhGtEvGbFjBxAvMlJ|X|RlJvG`J`HrFjDdm@ff@bO`PvJnKpNvRpLpPnIfMjMnS|K`SvHnNdKnSfFpKnH|PfDlHjLpYfFtN`FlNjEnM|D|LnHvWlE|O|BdIzEfP`Sxs@hF~O~Ld`@tMj]hR~b@hOtZzMtUjUj`@vPfY|MzUnJ|Q|LzXpIhU`HfTjGzTdErQ|DhSlDxVlBnS`AnKnBt[`@x]Dr\\k@fUkCte@oDd[yDjYuDtRqEbUuDrQwFtVyE|ReGpUmGnUyJx\\oHjUeE|K{FzNyEjKgEvIwGdLyFbJoEpGkHjJcKnKwHjJsLbKkJdIaLlJqLxJwJlIeKjJkKlK}LfNcMbO_O`TyHvLsI`OkGjL{J|SiIbRyGxPgI~S}FpOsD|JcHfRqIxTmHdRyGnO{GvNaG~LcHfN_HdMqKfQaHlL_LzQ_H|K{ErH}EjI{MrT{Rz\\gOtWoJtPgJxPsJ~Q{Qx\\eJnQ{G`NgJfS}IlRcJpRmJxRgIlPiJrQiHrMyGhLwEhHcGbJ}JpNyKxM_KdLcIfIwHrHiM`LgNhKwKxHcMtHaLrGaJlEqK~EaQvGmIvCqM|DwNbEiOxDoQ~E}NtDgJjC}JxCyJzCeNpE_J~CiJjD{KlEaR|HyG~CwFjCgGzCaIjEeLpGgItFiObKgMtJwKrJwKdKeQ`R_LdNqJbMiHdKiCdEuF|IoHnM{FnKaGnLsInRoJxUoI~TiFpOeGhQgGfR{JvYcJxV}HfToEnLwW|s@wSnl@}K`^yI`ZgOdj@oGnWeDfNeJ~a@uCbOsGr]{FvYeD|SmCnRmCfSyC|UwBbSu@tGaCpWqCzXwBtXqAhRcA`PuA|WcBf_@uAfd@}@~b@q@tu@A`j@b@xg@HlF\\fTTtMzAba@dAhl@PxKJdGb@lXZ|h@?hh@?th@K|[F~v@bLhxCnHdwANdbBmDzx@{@fKwBdWaDjYkDdX_DnT{E|XwIta@mMdl@aErRqDnTaCjQuAbQq@vRUxSPlSZhVJvZSdTw@lTwA~PyChSuDzQcGlVwEzQgFtVuC~QgCnWkAvYP`Vl@~T|@fPhBnOvAbLrB~JdBjIfFhPbHvPbEbJ`MlT|LnQfP~QfPbPnOzMrPvJpIfGvTnN|VtOdWrPlYxS~ZlWlGrG~Y~XjM~MbVdX~C~D~FpHdYx]~Vp[hVj[x[ra@fTxWtPlTfRdTfJ|L|KlNp_@rZnMjJxW`P`IbEpMlFjSjIjg@`RdPpHvPnK|LdKpHbIvJrLfUr[pS|VxNhOxMdKnJjGf\\~RnWzOdVzRdN`OzQxV~ItM~MhRpMhQbYf[hRbS|WhY|FlGr]la@`r@`y@tQ~PbL`ItLjHdTrK|LnFnGrCfIdEdGrDjKlHbJzInJ~KhHvK~FpMhF`KdEzJxEtLfIxRvIfQbJbOnLvNpLpLzM~KvJxIvGhFpSzQ`KpKpIlMpKfOjUx\\bQbWpSvSjLzIlQ`LnU~MvUhOdPzOzNxRlMtUnJhTfHjRzErL|InS|JbTnKhS~NxWpUlf@|Nja@hKvb@bCrNpBbMdFf`@tB~OpAxJfHr^xJ~\\zEhLbHlNvTvZbMdLzMpJdKnFnGjCbGzBbKdCpOtB`Jj@dMNlZq@~^o@bKl@xMbBfKvBzIzCxMfGvKnGbKfJpGlGfKrMlJrOfJ~PlWxe@|KtPrJzLrM`OjP|N~KdItQrKtVjKvXpHbYbGz[|HfR`FtRrGlIxCjRlI`N|GhO`JnJ~FtRnM~OzMlR~PvRbSzY~]bOdTlR~ZxZhg@jNfSxL|LjJtHpN~IvPxGrN~E~NfBfL`@hKAlLg@nJ{@nMcCnQqD|QqDzO_B`Mc@bLT|Kx@bKbBpJ|BpJzD`NxGtIhG~HfHfJxJ~ItLxHbMzI~PhK|UpGbN|HxPzGzN|MfYfI`OnJzQdQbZ`HnKrIxL`KzL`CnC~AfBzFfFjElDhFxDbChBjCfB~IbDnQpGnMrDdKxCzI`AzKf@tLPbPo@xEe@bGm@jOoDbIaDfJeDxBw@lMqFzUsM|EcCzEeCfOsHvXqK~NsFfQgFfVaGd\\eEv_@mDzXy@hf@Cpb@fBpQlAfVdApMt@hPLxX@`TaAhTsA~j@_Gh[iCtQw@jXw@jQE~KB~QRnRbBtQpBfVpFfK~CjMpEfMvFzJ~FtMhK~MjK~L|MhE|EdDtDjHrKjJpOpGlK|KvUrCbHtHbOpK~T`IpOhKjQrOjTlMzOxIpIlJ`IlJ|G~GtEhHrExJbF~^`RtUzLxNlJzIxGdK|ItHrHtK|LdNxRfOrXjMh[rEhMfJf\\~EtTfDfSd@rClD~WdExa@TfCbE|c@~B`QzC|OrDnN|DnMzGnP`IxMxHpLvEnFrJ~JxIrFvIrFdHfDnKtDpJzBrMvAbNp@zMZfZR`Ml@~JrApGdAhGzArGvCtHhDfLlHlFxE~AvApFtFhGlIdDzEnD|GtF`N`FjNdF`R`IvZvHzXhGnPtE~KnD`HlE|HrCpEdEtG|O|SvTpWxRrS`VbXvP|T|IpNpHfN`InPtHbQdIxRtH~S|HjVvGdUjIl[lEjThFjUtClO`C|MjEdR`BjHxBrJnGpSvFlN`IvQdNpUpKbOjM|N~L~OhIhLrJfPtD|HpBbF`FnNbF~OzGxV`GvSdHrUzHhUdKnRvK`P"},{"ref":"AP-1; E 05; E 80","mode":"driving","weight":1461.031,"distance":44801.66,"geometry":"gbvkqA`hmsCrLnTfKpK~LjLjWnSdThQlLjL|JvMnKhQtKvRxE|HxEzH|MrS~OzQrLpKhEfDtIjFjMhGlMdFfF|A|KdCnM`BfJr@|Gd@xJLbMc@zMkBfJ_CxKsEzJiFzMwHxN}JvHcHpI_J|IkLpFwI|FcJ`Xki@pKsTrKgWzO{]pJmTrJuSlH}PfJ{P|J}PhKiRnIsKnHsKdIeInOwMlNsKxN_LjMqIpOqJ~R{IzPcGl[oInNmD`QcBfOsAjf@kB`QU|PCbQWvWTxWSpq@aCr`@wCb`@sFj_@cId_@mLxa@yP|YkOxiAeq@bfEitApbBuSv~AZ`]`CbzAjMtJv@noh@duEfg@VfVOhXw@h\\yAl`@eD~j@}Hnh@cKzeBq[dxDkr@pbHibAlu@aDfq@Opd@]~d@eF~x@eTvx@oQ`\\gDf\\aApSB|Sp@di@dFnTrDjU`HhJjCbKpDvMxFfH|DvS~KhShM|FhEbLjIbl@hb@~a@jVjb@nTlWdKzW~Hl]pIv\\|Fdh@`Frh@hB~h@Irh@mB`yA}If{@aBrnA~O`pAj\\bbAfh@nnGx}E`hAfn@f_AbZ``AjP~cAhKrWjDlYzBlUpAlo@x@lo@uApWcBvUgCpo@}Lhw@mRpDcArTcGlZiI|WsHlWeF~V_ElWcChWkApWK|f@bBjg@pGrZvGjZzIzt@zVjWrHvWxF`WhDdXnBlk@^ll@`@fu@g@zDB|g@`@xDBvb@pBjDNxYhDnBTt`@fG`a@`Mz`@dP|^|RtKzHjQvKnH`GtVbSf\\p[d[p^nWl^`Xzc@`Wzf@|FrNbMzZfQjj@p^`iA``@`lAt@xBbQ|b@bG`Oj_@tq@pb@bo@lYxa@lk@`{@xLxQ|NpTpO~UjHtLrQfZlV|g@rQhm@pLff@nzDzyRnHz_@vJpb@zFfSdDlLfP`f@~Nb_@|F|NlExJrVlj@lGnOzKfZvHzVnHf[tFhZhGrb@xG~k@xJl~@~Izl@dIf`@fJb]`Nd`@jJhUxPj]rRz[nQjVrWnYhVpT|VjQ\\TnT|LnQjIfShH`d@bPld@vNfdBzl@jkAjl@ja@hZbb@n^n\\t^nf@zs@fYfg@`Qd_@xPz`@b^b}@flAbzCpa@z_A|`@zx@d_@rq@ph@vv@h^re@nc@bf@n^j]|UhSnp@fh@hgAdy@n}@zr@dZrX`XfYtQjTlY`_@nq@f`Aj_@tj@nb@xm@bfAv|Ad\\dg@tNjWhOjY`NfYpO|^hN~_@bMfa@xJv]|Pnv@lIr`@lQj`AdIhc@xJba@bLv^xGxQdKnUtKlWhAnChOh[fU~[p^r]pg@pa@lJzGzUxNxVtLn`@jO`c@~KtOdCzWxCxStAn[f@dXMh_@iC~{@wI`p@qJde@_F`o@iD|Pn@jR|Av\\xEjRlEzJpCrHvBzNrFvRvI|`@tUnMpJrQ`OtPpP`MtNtMfPlGdJhD~EjGtJjDxF`y@hsA|OhW~QzWhBlDzMxRfQbXfi@bv@zLhR~KvQpMrWjJ~SdKfXhK~[|FfThI|^vGb^`YtaBxJna@jKh^rFfOhJfUnIxQjDvHtJ|RnKnRxLvQ`KfMb`@bg@d~@jkA`k@pw@tTvY|\\bf@jV|`@rRn]~Xnj@vIvRlBpEpFfMbNp^dGhRtGbUjH~YnFpW~DhTnH`g@vCzWjCrYdBnVxAd[lAxb@Zr^GjXWzWsBvu@eAjW_C|b@qCtd@qDvh@cE|l@gCb`@gCfb@sBjf@qAdj@a@lg@HpX\\pU`Af\\rAxWxBnXbClVnDzXzGpa@`E|S|EfRxE`R`I~W~GlR`HnQ`Pv]~JdRxNpVpPdVhM`PvMzOzShU`[vZ~xAjsAbZ|XxWpXjNzNxUvXnYja@xSx[fWne@hKxU~MxZ~Tho@pPtl@zKrf@lSlfA~e@vkChVxoAbZtmAdRdm@`Prb@vSpd@pMrVjExHlHnMx[`f@dUxZfUpXxOnPzS|RzRlPlUbPz^nT|WdNfYnMnt@`Yls@|Vbu@rWvb@`O`d@xQ~_@~PpL`GxN`I`RvL~SxOjYfXvi@ji@ja@td@bb@te@x`@tb@rh@hb@r]fUp`Ani@br@xc@vh@|`@xVrTb[hZdRdSpZh\\rh@lp@xlXpg]x_BtrB~~ArnBtj@ro@xc@fg@r]d_@hr@rr@lp@|m@bYbXrm@rh@n[zWj_@~YpZfUh^hXh}Bd~AxYnTdWlTpRrQhS`U|MfOfU~Zd^tj@hHfNbOtYlLlXzK|XvIxVhEfNdOtf@jMpe@h\\ppAzRtu@tUzy@vSnp@|Tzn@nPta@vSjd@~Of[|Rb]hZje@b_@bg@zb@~e@f^z]zMlL~OdMz]tWvh@~Z~^xQdO|Gdp@nVfx@rUZJjHtBvxDj_A`vAf]hwAh]liAvXjpAr[`eCpm@dhBpi@nhBpo@pn@pZ~XzO``@fVzThOtSjOlh@lb@|VrUfW~UzTdVfTtUzf@pm@X\\fPtT~[he@nJdOha@xq@zVxe@lVjg@~MbZnNt\\bSrg@zKb[nKb[rJfZxUly@~Nfk@vGtYdHj\\jOrv@fIzd@rHfd@zb@rsCbNt~@rQbgApVvtA`UxhAn@`Dfh@d_CrYdlAxTl_Ara@hkB|SdfAtRhfAdWd{AnXnjB|NliAbOrmAdLjfAdKzgAfKjmAhF|u@dGn~@jGrdAdEn|@nGfaBvFvuBtC~|ApAv~CZju@Vxt@|@py@rBv{@fD`v@jBj_@fF|p@xIny@~Ivp@~RdjAvV|hAjXz_AxG~SfR|l@`Qvb@pAxCzAjDhXnm@fZpe@zUz`@rMvRpTf[dJdMvBjCdMrOxPzRbSdT|SrSvUlT~RfQdVtS`jBnxAd\\dX","duration":1559.477,"driving_side":"right","duration_typical":1559.477,"weight_typical":1461.027,"name":"Iparraldeko Autobidea / Autopista del Norte","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 69 onto 69 toward Bergara/Vitoria-Gasteiz-Burgos.","modifier":"slight right","bearing_after":229,"bearing_before":224,"location":[-2.432145,43.200052]},"speedLimitUnit":"km/h","destinations":"69: Bergara, Vitoria-Gasteiz-Burgos","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Vitoria-Gasteiz"},{"type":"text","text":"/"},{"type":"text","text":"Burgos"}],"type":"fork","modifier":"right","text":"Vitoria-Gasteiz / Burgos"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"101"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"}],"type":"fork","modifier":"right","text":"Exit 101 N-622"},"distanceAlongGeometry":44801.66}],"exits":"69","voiceInstructions":[{"ssmlAnnouncement":"Continue for 28 miles.","announcement":"Continue for 28 miles.","distanceAlongGeometry":44774.992},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on E 05.","announcement":"In 2 miles, Keep right to stay on E 05.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 05.","announcement":"In a half mile, Keep right to stay on E 05.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 101 to stay on E 05, E 80 toward Vitoria-Gasteiz, Burgos.","announcement":"Keep right to take exit 101 to stay on E 05, E 80 toward Vitoria-Gasteiz, Burgos.","distanceAlongGeometry":360}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[44,222,229],"duration":1.656,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":2,"weight":1.562,"geometry_index":24800,"location":[-2.432145,43.200052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,217],"duration":6.797,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.461,"geometry_index":24801,"location":[-2.432489,43.199834]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,216],"duration":5.359,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":5.086,"geometry_index":24805,"location":[-2.433525,43.198685]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,227],"duration":1.539,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":1.461,"geometry_index":24809,"location":[-2.434584,43.197876]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[47,225],"duration":7.633,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":7.25,"geometry_index":24811,"location":[-2.434901,43.197658]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,209],"duration":3.812,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":3.625,"geometry_index":24814,"location":[-2.435734,43.196929]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,195],"duration":9.641,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":9.156,"geometry_index":24818,"location":[-2.436184,43.196196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,336],"duration":9.406,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":0,"weight":8.938,"geometry_index":24829,"location":[-2.43604,43.19409]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.434129,43.19245],"geometry_index":24837,"admin_index":12,"weight":38.828,"is_urban":false,"turn_weight":6,"duration":35.5,"bearings":[129,300,309],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,179],"duration":18.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.891,"geometry_index":24865,"location":[-2.428772,43.185195]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,336],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":4.977,"geometry_index":24873,"location":[-2.427575,43.1809]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[163,334],"duration":25.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":24.008,"geometry_index":24874,"location":[-2.426772,43.179703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,186],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.875,"geometry_index":24877,"location":[-2.42509,43.173392]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,187],"duration":5.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.336,"geometry_index":24878,"location":[-2.425155,43.172911]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,186],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.703,"geometry_index":24879,"location":[-2.425385,43.171453]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[6,187],"duration":82.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":74.242,"geometry_index":24880,"location":[-2.425413,43.171266]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,181],"duration":15.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.945,"geometry_index":24881,"location":[-2.42884,43.15001]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[169,348],"duration":44.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":40.781,"geometry_index":24888,"location":[-2.428335,43.146217]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,179],"duration":12.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.023,"geometry_index":24893,"location":[-2.42589,43.135268]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[172,177,347],"duration":12.703,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":12.375,"geometry_index":24897,"location":[-2.425125,43.132207]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,199],"duration":1.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.773,"geometry_index":24905,"location":[-2.425455,43.129052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,205],"duration":2.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.047,"geometry_index":24907,"location":[-2.425669,43.128622]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,207],"duration":11.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.281,"geometry_index":24909,"location":[-2.425972,43.128142]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,200],"duration":27.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":26.43,"geometry_index":24915,"location":[-2.427751,43.125632]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[189,358],"duration":54.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":53.477,"geometry_index":24925,"location":[-2.428284,43.118812]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[7,189],"duration":20.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":19.25,"geometry_index":24933,"location":[-2.434916,43.106481]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.328,"geometry_index":24943,"location":[-2.434405,43.101231]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[165,345],"duration":28.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":27.133,"geometry_index":24944,"location":[-2.434275,43.100885]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,181],"duration":9.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.547,"geometry_index":24960,"location":[-2.434938,43.093498]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[0,181],"duration":2.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.336,"geometry_index":24964,"location":[-2.434953,43.091098]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,183],"duration":4.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.422,"geometry_index":24965,"location":[-2.43497,43.090443]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[8,190,199],"duration":9.781,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.047,"geometry_index":24970,"location":[-2.435133,43.089207]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.436242,43.086867],"geometry_index":24975,"admin_index":12,"weight":2.242,"is_urban":false,"turn_weight":1,"duration":1.367,"bearings":[20,30,207],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[27,212],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.664,"geometry_index":24976,"location":[-2.436446,43.086573]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[32,212],"duration":8.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.922,"geometry_index":24977,"location":[-2.436575,43.086421]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,227],"duration":5.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.258,"geometry_index":24981,"location":[-2.438362,43.084731]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,235],"duration":24.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":22.211,"geometry_index":24984,"location":[-2.43984,43.083818]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,225],"duration":6.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.016,"geometry_index":24994,"location":[-2.446429,43.080309]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":1.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.375,"geometry_index":24997,"location":[-2.448036,43.079122]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[45,227],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.664,"geometry_index":24998,"location":[-2.448404,43.078857]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[47,227],"duration":33.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":31.414,"geometry_index":24999,"location":[-2.448623,43.078707]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,248],"duration":4.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.148,"geometry_index":25004,"location":[-2.461241,43.074519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,242],"duration":4.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.242,"geometry_index":25007,"location":[-2.46266,43.074053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[56,236],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.812,"geometry_index":25010,"location":[-2.464014,43.073438]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[56,233,239],"duration":0.68,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.625,"geometry_index":25011,"location":[-2.464269,43.073311]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":20.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":19.242,"geometry_index":25012,"location":[-2.464458,43.073208]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.471177,43.071076],"geometry_index":25024,"admin_index":12,"weight":45.492,"is_urban":false,"turn_weight":0.75,"duration":47.125,"bearings":[53,63,238],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[56,236],"duration":23.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":23.109,"geometry_index":25048,"location":[-2.481974,43.059887]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,218],"duration":44.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":42.625,"geometry_index":25054,"location":[-2.48874,43.055874]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,229],"duration":13.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.164,"geometry_index":25069,"location":[-2.498918,43.046413]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":11.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.359,"geometry_index":25077,"location":[-2.503117,43.044448]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[53,235],"duration":1.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.281,"geometry_index":25084,"location":[-2.506997,43.043088]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[55,233],"duration":9.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.422,"geometry_index":25085,"location":[-2.507388,43.042885]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,210],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.742,"geometry_index":25090,"location":[-2.50942,43.041077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,207],"duration":14.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.734,"geometry_index":25091,"location":[-2.509562,43.040894]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,359],"duration":2.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.945,"geometry_index":25100,"location":[-2.510704,43.037177]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[173,354],"duration":12.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":11.5,"geometry_index":25101,"location":[-2.510635,43.03666]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[183,355],"duration":6.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":5.797,"geometry_index":25105,"location":[-2.510081,43.033519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":11.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.367,"geometry_index":25110,"location":[-2.510437,43.031946]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,225],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.109,"geometry_index":25120,"location":[-2.512583,43.029271]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227,234],"duration":0.477,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.445,"geometry_index":25122,"location":[-2.512882,43.029052]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,227],"duration":9.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.117,"geometry_index":25123,"location":[-2.513007,43.028966]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.515547,43.027171],"geometry_index":25128,"admin_index":12,"weight":24.117,"is_urban":false,"turn_weight":1,"duration":24.344,"bearings":[37,44,225],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,237],"duration":6.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.836,"geometry_index":25142,"location":[-2.523019,43.02373]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,225],"duration":13.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.562,"geometry_index":25148,"location":[-2.524723,43.022786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,222],"duration":8.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.578,"geometry_index":25153,"location":[-2.52802,43.020126]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,231],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.359,"geometry_index":25157,"location":[-2.530105,43.018612]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[53,234,239],"duration":0.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.352,"geometry_index":25159,"location":[-2.531117,43.018024]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":22.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.938,"geometry_index":25160,"location":[-2.531222,43.017969]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.538835,43.016597],"geometry_index":25177,"admin_index":12,"weight":28.25,"is_urban":false,"turn_weight":1,"duration":30.289,"bearings":[90,95,277],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,238],"duration":13.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.234,"geometry_index":25199,"location":[-2.549601,43.016278]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,214],"duration":10.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.445,"geometry_index":25209,"location":[-2.553099,43.013742]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,217],"duration":10.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.414,"geometry_index":25212,"location":[-2.555273,43.011471]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":6.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.688,"geometry_index":25218,"location":[-2.557931,43.009518]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,246],"duration":5.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.766,"geometry_index":25221,"location":[-2.55988,43.008645]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[69,249],"duration":16.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.18,"geometry_index":25223,"location":[-2.561657,43.008112]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,237],"duration":4.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.648,"geometry_index":25227,"location":[-2.5672,43.006374]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,230],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.711,"geometry_index":25229,"location":[-2.568371,43.005769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":14.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.109,"geometry_index":25231,"location":[-2.568906,43.005434]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,204],"duration":6.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.945,"geometry_index":25240,"location":[-2.572113,43.002321]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,198],"duration":20.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.078,"geometry_index":25243,"location":[-2.573005,43.000646]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,216],"duration":23.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":21.5,"geometry_index":25253,"location":[-2.575811,42.995715]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[28,211],"duration":113.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":99.398,"geometry_index":25261,"location":[-2.580472,42.990355]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,213],"duration":23.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.477,"geometry_index":25277,"location":[-2.607097,42.966782]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,219],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.617,"geometry_index":25286,"location":[-2.611549,42.961391]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,226],"duration":59.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":53.805,"geometry_index":25288,"location":[-2.612257,42.960796]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,197],"duration":0.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.062,"geometry_index":25318,"location":[-2.627934,42.9495]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,196],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.508,"geometry_index":25319,"location":[-2.62794,42.949486]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,194],"duration":31.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":28.5,"geometry_index":25320,"location":[-2.627999,42.949336]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[14,194],"duration":23.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20.734,"geometry_index":25325,"location":[-2.630868,42.941065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,203],"duration":28.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":25.727,"geometry_index":25328,"location":[-2.633071,42.935549]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,226],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.898,"geometry_index":25342,"location":[-2.638428,42.929647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,227],"duration":10.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.625,"geometry_index":25343,"location":[-2.638687,42.929463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,236],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.461,"geometry_index":25348,"location":[-2.641676,42.927669]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.742,"geometry_index":25350,"location":[-2.642776,42.927141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,242],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.781,"geometry_index":25352,"location":[-2.643662,42.926755]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[62,244,248],"duration":17.875,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":16.523,"geometry_index":25353,"location":[-2.644597,42.92639]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.650672,42.924693],"geometry_index":25360,"admin_index":12,"weight":13.445,"is_urban":false,"turn_weight":1,"duration":13.461,"bearings":[63,72,252],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,247],"duration":80.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":72.867,"geometry_index":25364,"location":[-2.655398,42.923423]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,269],"duration":20.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.406,"geometry_index":25386,"location":[-2.68454,42.917993]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,250],"duration":3.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.406,"geometry_index":25395,"location":[-2.69211,42.917275]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[70,246],"duration":4.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.742,"geometry_index":25396,"location":[-2.693313,42.916955]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,242],"duration":4.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.258,"geometry_index":25397,"location":[-2.694496,42.916575]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,240],"duration":3.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.961,"geometry_index":25398,"location":[-2.695534,42.916169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,240],"duration":12.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.664,"geometry_index":25399,"location":[-2.69587,42.916028]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.742,"geometry_index":25401,"location":[-2.697177,42.915431]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.697254,42.91539],"geometry_index":25402,"admin_index":12,"weight":15.836,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":0.922,"bearings":[54,234],"out":1,"in":0,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":7.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.039,"geometry_index":25403,"location":[-2.69734,42.915344]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,226],"duration":4.031,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":3.602,"geometry_index":25404,"location":[-2.698084,42.914939]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,227],"duration":6.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.281,"geometry_index":25405,"location":[-2.698701,42.914503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,221],"duration":19.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":18.422,"geometry_index":25410,"location":[-2.700308,42.913319]},{"bearings":[31,212],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":25418,"location":[-2.703959,42.909382]}]},{"ref":"E 05; E 80","mode":"driving","weight":19.945,"distance":502.109,"geometry":"en}ypAr}`dDnJjKbm@jp@hVvYnc@`q@nQj[lMdWzJjUbHrT|D`QxFd\\","duration":21.586,"driving_side":"right","duration_typical":21.586,"weight_typical":19.945,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep right to take exit 101 to stay on E 05/E 80 toward Vitoria-Gasteiz/Burgos.","modifier":"slight right","bearing_after":218,"bearing_before":212,"location":[-2.704362,42.908915]},"speedLimitUnit":"km/h","destinations":"N-622: Vitoria-Gasteiz, Burgos, Bilbao","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Vitoria-Gasteiz"},{"type":"text","text":"/"},{"type":"text","text":"Burgos"}],"type":"fork","modifier":"left","text":"Vitoria-Gasteiz / Burgos"},"distanceAlongGeometry":502.109}],"exits":"101","voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take N-622.","announcement":"In a quarter mile, Keep left to take N-622.","distanceAlongGeometry":476.442},{"ssmlAnnouncement":"Keep left to take N-622, E 05 toward Vitoria-Gasteiz, Burgos.","announcement":"Keep left to take N-622, E 05 toward Vitoria-Gasteiz, Burgos.","distanceAlongGeometry":188.222}],"intersections":[{"entry":[false,true,true],"classes":["toll"],"in":0,"bearings":[32,208,218],"duration":1.344,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":2,"weight":1.234,"geometry_index":25419,"location":[-2.704362,42.908915]},{"entry":[false,true],"classes":["toll"],"in":0,"bearings":[38,218],"duration":5.352,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":4.945,"geometry_index":25420,"location":[-2.70456,42.908731]},{"bearings":[32,38,220],"entry":[false,false,true],"in":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":2,"geometry_index":25421,"location":[-2.70535,42.907993]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":3244.077},{"ssmlAnnouncement":"In 1 mile, Take exit 5.","announcement":"In 1 mile, Take exit 5.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 5.","announcement":"In a half mile, Take exit 5.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 5 onto A-1 toward Burgos, Madrid. Then Keep right to take A-1.","announcement":"Take exit 5 onto A-1 toward Burgos, Madrid. Then Keep right to take A-1.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[70,250,259],"duration":6.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.102,"geometry_index":25429,"location":[-2.70888,42.905953]},{"entry":[false,true],"in":0,"bearings":[83,262],"duration":4.852,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":4.492,"geometry_index":25434,"location":[-2.710837,42.905687]},{"entry":[false,true],"in":0,"bearings":[63,235],"duration":1.32,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":1.219,"geometry_index":25439,"location":[-2.712241,42.905389]},{"entry":[false,true],"in":0,"bearings":[54,227],"duration":2.719,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":2.516,"geometry_index":25441,"location":[-2.712537,42.905233]},{"entry":[false,true],"in":0,"bearings":[36,209],"duration":6.758,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.25,"geometry_index":25444,"location":[-2.713038,42.904819]},{"entry":[true,false],"in":1,"bearings":[164,351],"duration":3.867,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":3.578,"geometry_index":25451,"location":[-2.713366,42.903493]},{"entry":[true,false],"in":1,"bearings":[141,327],"duration":12.391,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":11.461,"geometry_index":25455,"location":[-2.712925,42.902802]},{"entry":[true,false,false],"in":2,"bearings":[127,290,301],"duration":1.852,"turn_weight":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":2.203,"geometry_index":25469,"location":[-2.709726,42.901664]},{"entry":[true,false],"in":1,"bearings":[139,313],"duration":10.117,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":9.359,"geometry_index":25471,"location":[-2.709321,42.901421]},{"entry":[true,false,false],"in":1,"bearings":[146,309,324],"duration":6.391,"turn_weight":6.75,"turn_duration":0.023,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":12.641,"geometry_index":25475,"location":[-2.70748,42.899794]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[144,324],"duration":6.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":6.078,"geometry_index":25477,"location":[-2.70634,42.898609]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"in":1,"bearings":[144,324],"duration":8.469,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":7.828,"geometry_index":25478,"location":[-2.705152,42.8974]},{"entry":[true,false],"in":1,"bearings":[144,324],"duration":2.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":2.367,"geometry_index":25479,"location":[-2.703604,42.895845]},{"entry":[true,false],"in":1,"bearings":[143,324],"duration":31.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":29.383,"geometry_index":25480,"location":[-2.703153,42.895387]},{"entry":[true,false],"in":1,"bearings":[158,338],"duration":1.031,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":0.953,"geometry_index":25489,"location":[-2.698224,42.889177]},{"entry":[true,false],"in":1,"bearings":[158,338],"duration":5.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":4.836,"geometry_index":25490,"location":[-2.698107,42.888963]},{"entry":[true,false],"in":1,"bearings":[160,340],"duration":0.656,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"weight":0.609,"geometry_index":25492,"location":[-2.697585,42.887965]},{"bearings":[160,340],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":12,"out":0,"geometry_index":25493,"location":[-2.697522,42.887836]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"},{"type":"text","text":"/"},{"type":"text","text":"Madrid"}],"type":"off ramp","modifier":"right","text":"Burgos / Madrid"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"5"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"off ramp","modifier":"right","text":"Exit 5 A-1"},"distanceAlongGeometry":3269.744},{"sub":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"A-1"},"secondary":{"components":[{"type":"text","text":"Burgos"},{"type":"text","text":"/"},{"type":"text","text":"Madrid"}],"type":"off ramp","modifier":"right","text":"Burgos / Madrid"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"5"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"off ramp","modifier":"right","text":"Exit 5 A-1"},"distanceAlongGeometry":1609.344}],"destinations":"Vitoria-Gasteiz, Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take N-622/E 05/E 80 toward Vitoria-Gasteiz/Burgos.","modifier":"slight left","bearing_after":250,"bearing_before":250,"location":[-2.70888,42.905953]},"speedLimitSign":"vienna","name":"","weight_typical":132.75,"duration_typical":135.664,"duration":135.664,"distance":3269.744,"driving_side":"right","weight":132.75,"mode":"driving","ref":"N-622; E 05; E 80","geometry":"auwypA~widDfCvMnB~RpBr[dBbc@bAxUb@tJzA|TtCtUlClPnD~LpF|MdApBpClFtGnJrKjKpKpHvJpE|HtBtJdBnMb@fK]dIuAbGyAnHwCpKmG~KqJ`GkGxGiK`EyI|DiJxCeL~BcLdB{JdBwLdC}StDu^nB{MvBaLnC_LlDsJ~DuJdHsLxH{Jbg@kg@vd@kf@~LmVpUySnr@mq@pjAgiAd`Bw_Br[e[xOaPrt@ct@ts@ar@he@w`@|g@a`@xw@ug@nz@qe@pk@cZzWsLjLiF~VcLje@oR`G}BtSiItVaJrq@sTtp@qRb~@sTt{@gQjHoA"},{"ref":"E 05; E 80","mode":"driving","weight":15.336,"distance":130.449,"geometry":"{rkxpAdipcDfJYdQi@|e@oEnCW","duration":16.148,"driving_side":"right","duration_typical":16.148,"weight_typical":15.336,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 5 onto A-1 toward Burgos/Madrid.","modifier":"slight right","bearing_after":177,"bearing_before":169,"location":[-2.695843,42.88339]},"speedLimitUnit":"km/h","destinations":"A-1: Burgos, Madrid, Donostia/San Sebastián, Iruña/Pamplona","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"},{"type":"text","text":"/"},{"type":"text","text":"Madrid"}],"type":"fork","modifier":"right","text":"Burgos / Madrid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"A-1"},"distanceAlongGeometry":130.449}],"exits":"5","voiceInstructions":[{"ssmlAnnouncement":"Keep right to take A-1 toward Burgos, Madrid.","announcement":"Keep right to take A-1 toward Burgos, Madrid.","distanceAlongGeometry":103.782}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[169,177,349],"duration":2.492,"turn_duration":0.012,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":2.359,"geometry_index":25500,"location":[-2.695843,42.88339]},{"entry":[true,false],"in":1,"bearings":[177,357],"duration":12.664,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"weight":12.031,"geometry_index":25501,"location":[-2.69583,42.88321]},{"bearings":[173,353],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":0,"geometry_index":25503,"location":[-2.695705,42.882296]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 15 miles.","announcement":"Continue for 15 miles.","distanceAlongGeometry":23805.016},{"ssmlAnnouncement":"In 2 miles, Take exit 328.","announcement":"In 2 miles, Take exit 328.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 328.","announcement":"In a half mile, Take exit 328.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 328 onto A-4104, AP-1 toward Burgos.","announcement":"Take exit 328 onto A-4104, AP-1 toward Burgos.","distanceAlongGeometry":266.667}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[170,186,353],"duration":23.539,"turn_duration":0.017,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":22.344,"geometry_index":25504,"location":[-2.695693,42.882224]},{"entry":[false,true],"bearings":[14,210],"duration":7.078,"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":12,"out":1,"weight":6.727,"geometry_index":25516,"location":[-2.696913,42.880814]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.697417,42.880466],"geometry_index":25520,"admin_index":12,"weight":20.352,"is_urban":false,"yield_sign":true,"out":2,"in":0,"classes":["motorway"],"turn_duration":0.042,"turn_weight":1.125,"duration":20.273,"bearings":[62,89,269],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.699412,42.880508],"geometry_index":25523,"admin_index":12,"weight":9.695,"is_urban":false,"turn_weight":6,"duration":3.898,"bearings":[92,96,277],"out":2,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":25.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.586,"geometry_index":25525,"location":[-2.700732,42.880612]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.516,"geometry_index":25536,"location":[-2.709311,42.879547]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[66,242,252],"duration":27.875,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":26.453,"geometry_index":25537,"location":[-2.709474,42.879495]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.716982,42.87511],"geometry_index":25549,"admin_index":12,"weight":66.562,"is_urban":false,"turn_weight":1,"duration":69.039,"bearings":[30,39,217],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":0.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.195,"geometry_index":25573,"location":[-2.735651,42.86403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,230],"duration":13.086,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":12.406,"geometry_index":25574,"location":[-2.735708,42.864]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.914,"geometry_index":25577,"location":[-2.73913,42.861674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":12.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":11.531,"geometry_index":25578,"location":[-2.739361,42.861484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":23.477,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":22.297,"geometry_index":25582,"location":[-2.742017,42.858967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,196],"duration":6.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.422,"geometry_index":25592,"location":[-2.74656,42.854069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,188],"duration":2.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.18,"geometry_index":25596,"location":[-2.747052,42.852457]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.281,"geometry_index":25597,"location":[-2.747155,42.8519]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,192],"duration":16.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":15.984,"geometry_index":25598,"location":[-2.747267,42.851317]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":4.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.094,"geometry_index":25607,"location":[-2.74948,42.847434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":25.781,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.469,"geometry_index":25609,"location":[-2.750211,42.846489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,184],"duration":59.375,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":54.914,"geometry_index":25621,"location":[-2.75159,42.840016]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.562,"geometry_index":25646,"location":[-2.76266,42.827178]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":26.539,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":24.539,"geometry_index":25647,"location":[-2.762833,42.827081]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.770643,42.823388],"geometry_index":25651,"admin_index":12,"weight":13.648,"is_urban":false,"turn_weight":1,"duration":13.695,"bearings":[56,59,237],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[51,58,238],"duration":49.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":2,"weight":46,"geometry_index":25653,"location":[-2.774704,42.821461]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,237,241],"duration":0.828,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.75,"geometry_index":25656,"location":[-2.790255,42.814434]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":65.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":60.969,"geometry_index":25657,"location":[-2.790528,42.814305]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.812516,42.803049],"geometry_index":25679,"admin_index":12,"weight":26.336,"is_urban":false,"turn_weight":1,"duration":28.156,"bearings":[46,51,231],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,205],"duration":6.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.508,"geometry_index":25689,"location":[-2.819675,42.797391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,198],"duration":10.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.078,"geometry_index":25692,"location":[-2.820575,42.795778]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":15.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":13.758,"geometry_index":25695,"location":[-2.821738,42.793034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,191],"duration":6.609,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":5.773,"geometry_index":25699,"location":[-2.823005,42.789182]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[10,187],"duration":10.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.516,"geometry_index":25701,"location":[-2.823408,42.787531]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[6,185],"duration":8.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.117,"geometry_index":25704,"location":[-2.823862,42.784816]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,182],"duration":38.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.883,"geometry_index":25707,"location":[-2.824044,42.782714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":2.242,"geometry_index":25716,"location":[-2.823276,42.772403]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,354],"duration":27.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":24.312,"geometry_index":25717,"location":[-2.823185,42.771746]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[183,187,359],"duration":0.25,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":0.219,"geometry_index":25722,"location":[-2.822392,42.764698]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,182],"duration":7.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.094,"geometry_index":25723,"location":[-2.822396,42.764636]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,187],"duration":0.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.57,"geometry_index":25726,"location":[-2.822659,42.762583]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,193],"duration":5.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.711,"geometry_index":25727,"location":[-2.822689,42.762415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,198],"duration":1.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.156,"geometry_index":25730,"location":[-2.823159,42.761048]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,201],"duration":12.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.18,"geometry_index":25731,"location":[-2.823304,42.760716]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.82543,42.757665],"geometry_index":25737,"admin_index":13,"weight":9.898,"is_urban":false,"turn_weight":0.5,"duration":10.453,"bearings":[28,33,217],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,230],"duration":28.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.859,"geometry_index":25743,"location":[-2.828089,42.7555]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.992,"geometry_index":25753,"location":[-2.837246,42.751137]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,243],"duration":30.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.469,"geometry_index":25754,"location":[-2.837608,42.750998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1,"geometry_index":25759,"location":[-2.848286,42.747453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,247],"duration":60.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":54.898,"geometry_index":25760,"location":[-2.84866,42.747337]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,220],"duration":10.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":9.625,"geometry_index":25779,"location":[-2.867414,42.73954]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,209],"duration":7.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":6.914,"geometry_index":25783,"location":[-2.869648,42.737274]},{"bearings":[23,201],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":25786,"location":[-2.870871,42.735479]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"}],"type":"off ramp","modifier":"right","text":"Burgos"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"328"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"A-4104","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-4104"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"off ramp","modifier":"right","text":"Exit 328 A-4104 / AP-1"},"distanceAlongGeometry":23831.682}],"destinations":"A-1: Burgos, Madrid","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A-1 toward Burgos/Madrid.","modifier":"slight right","bearing_after":186,"bearing_before":173,"location":[-2.695693,42.882224]},"speedLimitSign":"vienna","name":"","weight_typical":783.711,"duration_typical":840.008,"duration":840.008,"distance":23831.682,"driving_side":"right","weight":783.711,"mode":"driving","ref":"A-1; E 05; E 80","geometry":"_jixpAx_pcDfGP~Ez@zD~B~BfCbE|HrLd[rDrG|AdB|BtBpDdBrEpApQdEzD~BfErDrDzH~B~JHlWw@ng@e@vz@mDr_Aa@zPmAph@m@xp@NraAxAjs@tA~]~Bxa@`Glt@lIdu@rJ|q@hKjl@~P`w@fBdIlY`dAtMta@xSbl@pTdj@jW|l@vSra@|Xdh@jUj`@zRxZjYpa@dYb_@tWpZpi@nk@pZfYpnAhdAfn@`g@bo@zi@te@nf@fc@zg@z_@`j@v[|j@dZ`m@hYfr@zVdv@vTlx@lLvg@nM`n@~VbqAtMdo@rMfn@xRjw@bZpeAxVpv@vNl`@fNn]v[tu@z@pBrbAtlBtq@`fA`Zb`@zJlMxSnXtY`[j\\p]loAzpAlTxVtcAxsAv\\~b@~[v\\hOvNjNbL~^bY|\\pSj`@~Qf]~M~VnHvVnGfVfEv\\nExa@lElc@~Ez`@tHlYhHtZzJrV`KlR|IhXnO~UlOve@l^pW`Svb@d\\hVnOpQ`K|b@hS|S~HhW~H~X`Hf[|Fz_@vExd@jCdn@rAtz@\\z_@Lbg@t@zQr@lZlBpSfBpZpDfS|CjYlF|]`Ih`@`Lb[pKv[jMte@xTff@`Y~`@tWlk@~c@n]n[rh@`j@fl@zp@df@dm@~e@ro@fe@fr@fd@jt@b`@lq@j^vq@tQz]p\\`t@`ExIjz@jsBpu@hrBv~@|eCbt@nxBtoAxfDvf@~tAnzCvoIhaCnyGjxCt_J`G`Pxc@|lAh{@jzBfq@`aB|Pv`@dAbClTde@zRp`@li@~`Apg@~{@zv@zsAnPb\\`Rj`@bTzf@`Sli@pLr\\vLn`@n[reArl@|nBrs@vbCzT`p@vWbq@jlA|bCnrAhjCjf@f_A`f@hx@zi@xt@pa@hd@`UvTnTnR~[~Vrd@rZ`CpApc@|Uz`@rQj]tMdi@rQxj@zQntAdb@bmAn\\j_Bb^tl@|KpSrD|X`FflAbQ|_@zDpjAlLd|@`H`t@dExt@`CnWb@jT`@|j@n@t_B?`x@aAxx@kBp{@aDry@wDlwBcO|~BeQ`h@uDr}Ey^hrAwIlz@sCxZk@hn@_@zBFzp@|Av\\lBto@`InIz@pPjDz^~H~b@~LvS`H~n@hXbV|LnYdPjZ|R~YvTte@va@zP`QhNxNhOzPxWr\\x^nh@d\\hj@h[pl@~Xtl@f]nx@zW~p@hY~u@hZfy@zS`n@hVbt@`Yf}@jf@z`BtGrUhe@vdBz[brAf[lsAru@lkDnfAr`FfFjVz{AjdH`n@psChUteAdXhkAvV~dAhRls@fS~s@pNhd@vLx_@rNfa@rQje@vSxg@nS|b@|Udf@l_@xo@`N|TpPfWtSdY`VzZxp@dw@xYzXx_@n\\d_@`[fl@ra@b`@|Tx`@zR~ZjM`ZpK"},{"ref":"E 05; E 80","mode":"driving","weight":18.289,"distance":422.015,"geometry":"k_iopAj_gnDfKnG`KjEt]`JdQdDpI~Ax^~EheA~Jrl@lG","duration":20.32,"driving_side":"right","duration_typical":20.32,"weight_typical":18.289,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 328 onto A-4104/AP-1/AP-68 toward Burgos.","modifier":"slight right","bearing_after":207,"bearing_before":199,"location":[-2.871302,42.734598]},"speedLimitUnit":"km/h","destinations":"A-4104, AP-1, AP-68: Burgos, Armiñón, Estavillo, Logroño, Bilbao","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Burgos"}],"type":"fork","modifier":"left","text":"Burgos"},"distanceAlongGeometry":422.015}],"exits":"328","voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to stay on E 05.","announcement":"In a quarter mile, Keep left to stay on E 05.","distanceAlongGeometry":388.682},{"ssmlAnnouncement":"Keep left to stay on E 05, E 80 toward Burgos.","announcement":"Keep left to stay on E 05, E 80 toward Burgos.","distanceAlongGeometry":186.667}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[19,196,207],"duration":6.586,"turn_duration":0.013,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":2,"weight":5.922,"geometry_index":25788,"location":[-2.871302,42.734598]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,191],"duration":9.742,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":8.773,"geometry_index":25792,"location":[-2.8718,42.733427]},{"bearings":[7,188],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"geometry_index":25795,"location":[-2.872152,42.731624]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 56 miles.","announcement":"Continue for 56 miles.","distanceAlongGeometry":89870.875},{"ssmlAnnouncement":"In 1 mile, Keep right to take A-62.","announcement":"In 1 mile, Keep right to take A-62.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take A-62.","announcement":"In a half mile, Keep right to take A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A-62 toward Valladolid.","announcement":"Keep right to take A-62 toward Valladolid.","distanceAlongGeometry":180}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[8,186,190],"duration":9.086,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":12,"out":1,"weight":8.156,"geometry_index":25796,"location":[-2.872287,42.730894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,182],"duration":5.703,"turn_weight":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":7.133,"geometry_index":25798,"location":[-2.872559,42.728933]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,345],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.766,"geometry_index":25804,"location":[-2.872299,42.72759]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,334],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.227,"geometry_index":25806,"location":[-2.872034,42.727149]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,329],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":1.586,"geometry_index":25808,"location":[-2.871801,42.72686]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,323],"duration":7.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":6.383,"geometry_index":25810,"location":[-2.871461,42.726512]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[119,300],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":5.086,"geometry_index":25816,"location":[-2.869637,42.725463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[136,311],"duration":5.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":5.297,"geometry_index":25820,"location":[-2.86816,42.724732]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,335],"duration":10.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":0,"weight":9.852,"geometry_index":25826,"location":[-2.867018,42.723519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.866873,42.720808],"geometry_index":25837,"admin_index":12,"weight":26.172,"is_urban":false,"turn_weight":0.75,"duration":28.25,"bearings":[10,15,190],"out":2,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,203],"duration":4.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":4.188,"geometry_index":25855,"location":[-2.86754,42.71359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,209],"duration":19.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":17.922,"geometry_index":25858,"location":[-2.86826,42.712442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,237],"duration":1.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.453,"geometry_index":25868,"location":[-2.872853,42.708289]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,239],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.977,"geometry_index":25869,"location":[-2.873352,42.708052]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,245],"duration":2.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.281,"geometry_index":25871,"location":[-2.874062,42.70775]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,249],"duration":22.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":20,"geometry_index":25872,"location":[-2.874903,42.707458]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,283],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":0.688,"geometry_index":25883,"location":[-2.883036,42.70706]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,284],"duration":53.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":49.312,"geometry_index":25884,"location":[-2.883298,42.707106]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[69,250,256],"duration":37.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":35.562,"geometry_index":25907,"location":[-2.902709,42.706048]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.916647,42.703764],"geometry_index":25923,"admin_index":12,"weight":1.586,"is_urban":false,"turn_weight":1,"duration":0.609,"bearings":[84,88,269],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":2.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.219,"geometry_index":25924,"location":[-2.91687,42.703761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,271],"duration":15.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":14.82,"geometry_index":25925,"location":[-2.917685,42.703749]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,278],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":2.07,"geometry_index":25932,"location":[-2.92345,42.704042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":8.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":8.086,"geometry_index":25933,"location":[-2.92421,42.704118]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":12,"out":1,"weight":1.961,"geometry_index":25935,"location":[-2.927252,42.704416]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,276],"duration":12.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.664,"geometry_index":25936,"location":[-2.927994,42.70448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.781,"geometry_index":25939,"location":[-2.932907,42.704825]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[95,274,280],"duration":0.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.461,"geometry_index":25940,"location":[-2.933216,42.704843]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,274],"duration":25.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.18,"geometry_index":25941,"location":[-2.933398,42.704852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.943241,42.705079],"geometry_index":25948,"admin_index":13,"weight":41.484,"is_urban":false,"turn_weight":1,"duration":43.789,"bearings":[86,90,269],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,259],"duration":0.406,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.359,"geometry_index":25959,"location":[-2.960122,42.704104]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[79,258],"duration":32.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.031,"geometry_index":25960,"location":[-2.960271,42.704082]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":9.648,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.906,"geometry_index":25977,"location":[-2.97191,42.70119]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,235],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.867,"geometry_index":25981,"location":[-2.975032,42.699837]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":4.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.969,"geometry_index":25982,"location":[-2.975315,42.699689]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,232],"duration":5.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.953,"geometry_index":25985,"location":[-2.976614,42.699009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,230],"duration":145.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":127.391,"geometry_index":25986,"location":[-2.978188,42.698089]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,239],"duration":42.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":37.461,"geometry_index":26026,"location":[-3.026168,42.67263]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[37,220,225],"duration":83.438,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":73,"geometry_index":26046,"location":[-3.034873,42.661951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,239],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.078,"geometry_index":26085,"location":[-3.063982,42.652749]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,242,249],"duration":0.43,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":26086,"location":[-3.064396,42.652567]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":30.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.523,"geometry_index":26087,"location":[-3.06454,42.65251]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.075702,42.650704],"geometry_index":26103,"admin_index":13,"weight":7.445,"is_urban":false,"turn_weight":1,"duration":7.391,"bearings":[77,84,263],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":29.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.148,"geometry_index":26107,"location":[-3.078265,42.650246]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,263],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.859,"geometry_index":26122,"location":[-3.085371,42.644742]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,263],"duration":12.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.859,"geometry_index":26123,"location":[-3.085705,42.64471]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[85,259],"duration":2.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.227,"geometry_index":26130,"location":[-3.090012,42.644846]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[70,246],"duration":5.703,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.969,"geometry_index":26132,"location":[-3.090866,42.64469]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,224],"duration":15.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.648,"geometry_index":26135,"location":[-3.092521,42.643932]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[44,227],"duration":9.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.906,"geometry_index":26141,"location":[-3.096278,42.640925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,231],"duration":30.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.305,"geometry_index":26142,"location":[-3.098614,42.639329]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,205],"duration":6.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.289,"geometry_index":26157,"location":[-3.107571,42.636577]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[12,193],"duration":5.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.891,"geometry_index":26160,"location":[-3.108308,42.63493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,194],"duration":9.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.945,"geometry_index":26161,"location":[-3.1087,42.63363]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[176,357],"duration":17.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":15.492,"geometry_index":26166,"location":[-3.109086,42.631056]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,206],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.68,"geometry_index":26175,"location":[-3.109952,42.626644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":2.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.086,"geometry_index":26176,"location":[-3.110069,42.626467]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[28,212,222],"duration":10.57,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.508,"geometry_index":26178,"location":[-3.110451,42.625914]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,232],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.25,"geometry_index":26185,"location":[-3.112932,42.623781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,235],"duration":30.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.234,"geometry_index":26186,"location":[-3.113313,42.62356]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.123692,42.621637],"geometry_index":26203,"admin_index":13,"weight":95.391,"is_urban":false,"turn_weight":0.75,"duration":108.172,"bearings":[83,91,272],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[79,261,265],"duration":26.469,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.156,"geometry_index":26267,"location":[-3.163369,42.623151]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":263.75,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":230.766,"geometry_index":26277,"location":[-3.172317,42.622737]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[42,222,225],"duration":32.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":28.852,"geometry_index":26410,"location":[-3.253557,42.578274]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":222.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":194.289,"geometry_index":26422,"location":[-3.260295,42.571725]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[58,240,246],"duration":0.602,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.531,"geometry_index":26501,"location":[-3.313411,42.533505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":18.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.375,"geometry_index":26502,"location":[-3.313607,42.533423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.914,"geometry_index":26512,"location":[-3.320028,42.532127]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,263],"duration":13.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.492,"geometry_index":26513,"location":[-3.320384,42.532098]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.324899,42.531416],"geometry_index":26519,"admin_index":13,"weight":1.883,"is_urban":false,"turn_weight":1,"duration":0.977,"bearings":[65,74,252],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":3.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.016,"geometry_index":26520,"location":[-3.325221,42.531338]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,247],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.836,"geometry_index":26522,"location":[-3.3263,42.531041]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[60,235,239],"duration":1.375,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.25,"geometry_index":26528,"location":[-3.329289,42.529907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":34.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.875,"geometry_index":26529,"location":[-3.329678,42.529707]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.337826,42.523209],"geometry_index":26546,"admin_index":13,"weight":297.352,"is_urban":false,"turn_weight":1,"duration":329.297,"bearings":[31,34,212],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[50,229,232],"duration":24.867,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.359,"geometry_index":26710,"location":[-3.44358,42.472022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,199],"duration":12.734,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.445,"geometry_index":26728,"location":[-3.448816,42.466415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,197],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.766,"geometry_index":26734,"location":[-3.450115,42.463031]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":87.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":76.383,"geometry_index":26735,"location":[-3.450325,42.462512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,230],"duration":59.531,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":52.07,"geometry_index":26797,"location":[-3.47683,42.450639]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,225],"duration":175.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":153.297,"geometry_index":26826,"location":[-3.494101,42.439911]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,249,265],"duration":0.352,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.305,"geometry_index":26941,"location":[-3.543733,42.405419]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":29.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.523,"geometry_index":26942,"location":[-3.543847,42.405387]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.554055,42.403844],"geometry_index":26960,"admin_index":13,"weight":89,"is_urban":false,"turn_weight":1,"duration":100.594,"bearings":[61,74,252],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,201],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":27026,"location":[-3.581917,42.386233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,199],"duration":10.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.227,"geometry_index":27027,"location":[-3.58204,42.385998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,184],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.602,"geometry_index":27036,"location":[-3.58276,42.383375]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,182],"duration":5.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.031,"geometry_index":27037,"location":[-3.582807,42.382902]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,187],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.281,"geometry_index":27042,"location":[-3.582946,42.381446]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[7,187,194],"duration":0.469,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.414,"geometry_index":27043,"location":[-3.58296,42.381363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,188],"duration":4.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.805,"geometry_index":27044,"location":[-3.582982,42.381235]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,196],"duration":27.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.938,"geometry_index":27049,"location":[-3.583293,42.380106]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.588218,42.373556],"geometry_index":27067,"admin_index":13,"weight":106.43,"is_urban":false,"turn_weight":1,"duration":117.172,"bearings":[15,22,199],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,207],"duration":15.703,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.125,"geometry_index":27133,"location":[-3.605419,42.344641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,224],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.203,"geometry_index":27142,"location":[-3.608714,42.341059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,225],"duration":16.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.492,"geometry_index":27143,"location":[-3.609325,42.34059]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,241],"duration":9.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.133,"geometry_index":27152,"location":[-3.614258,42.337889]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.25,"geometry_index":27156,"location":[-3.617519,42.336703]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.906,"geometry_index":27158,"location":[-3.618278,42.336448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.836,"geometry_index":27159,"location":[-3.618931,42.336231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.68,"geometry_index":27160,"location":[-3.619562,42.336021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.008,"geometry_index":27161,"location":[-3.619793,42.335941]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,242,251],"duration":0.219,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.188,"geometry_index":27162,"location":[-3.620144,42.33582]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":1.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.359,"geometry_index":27163,"location":[-3.620209,42.335794]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":5.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.242,"geometry_index":27164,"location":[-3.620671,42.335608]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.016,"geometry_index":27167,"location":[-3.622507,42.334905]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":20.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.945,"geometry_index":27168,"location":[-3.622864,42.334764]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,250],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.297,"geometry_index":27175,"location":[-3.629407,42.332342]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.629876,42.332214],"geometry_index":27177,"admin_index":13,"weight":101.961,"is_urban":false,"turn_weight":1,"duration":109.156,"bearings":[65,70,250],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[105,284,291],"duration":0.414,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.359,"geometry_index":27241,"location":[-3.669532,42.325747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[104,284],"duration":9.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.477,"geometry_index":27242,"location":[-3.669675,42.325773]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,278],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.039,"geometry_index":27245,"location":[-3.673005,42.326276]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,276],"duration":4.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.391,"geometry_index":27246,"location":[-3.673404,42.326316]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.812,"geometry_index":27249,"location":[-3.675094,42.326423]},{"entry":[false,true],"in":0,"bearings":[93,272],"duration":5.484,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":13,"out":1,"weight":5.211,"geometry_index":27250,"location":[-3.675404,42.326435]},{"entry":[false,false,true],"in":1,"bearings":[80,89,266],"duration":13.766,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":13,"out":2,"weight":14.055,"geometry_index":27252,"location":[-3.67742,42.326432]},{"entry":[false,true],"in":0,"bearings":[75,253],"duration":34.258,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":13,"out":1,"weight":33.406,"geometry_index":27259,"location":[-3.682903,42.325779]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,213],"duration":2.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.914,"geometry_index":27287,"location":[-3.693109,42.319391]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.727,"geometry_index":27289,"location":[-3.693722,42.318749]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,220,231],"duration":2.07,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.008,"geometry_index":27290,"location":[-3.69389,42.318599]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["left","right"],"valid_indication":"right","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,223],"duration":10.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.812,"geometry_index":27292,"location":[-3.694361,42.318201]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":[],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[67,248],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"geometry_index":27298,"location":[-3.69707,42.316656]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Valladolid"}],"type":"fork","modifier":"right","text":"Valladolid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"right","text":"A-62"},"distanceAlongGeometry":89897.539}],"destinations":"Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 05/E 80 toward Burgos.","modifier":"slight left","bearing_after":186,"bearing_before":188,"location":[-2.872287,42.730894]},"speedLimitSign":"vienna","name":"","weight_typical":2601.898,"duration_typical":2897,"duration":2897,"distance":89897.539,"driving_side":"right","weight":2601.898,"mode":"driving","ref":"E 05; E 80","geometry":"{waopA||hnDb|AtLl\\hBnNPrMc@nIq@xImArOwDzN}D~LoFpLaHfGoExHaG~K}JvGiHpKuMxLeRrGeMlF{LhJeWxJ{ZdKw\\pIcVhJmTrJ_QfKkOrKaMtNqNlOaLbIcFtGeDzGyCpIwCvPsErGoArIeAdN_AxNWvPTjIt@pS|Bh`@fGldBbXtt@rMfW~ClRvA|Pl@hPg@lTcA|UuCjSaEvUoEjL_CtOgBtUo@bSv@fJdApI|A`PbExPbHf`@rR`^zRlFnDnp@|c@~p@rg@jYdWpZp[|Wr[pVf_@rM`TnNhXdMbXhLjWxMd^pIfWhGbSfQps@bPj|@rH~k@~Ght@`D|k@|Ahp@j@tg@Yhc@mAxh@oBng@_Cl_@oHr}@{AjO{Q|iBkHrw@sFpq@yFv|@oDry@cBhn@gA`y@Yfv@Dzb@\\bn@dAzd@bCvv@zCjt@pFlx@fFzn@hHbt@tI|q@xEl^~Fx_@zHbe@xGf_@`Kfj@x[xcBlZ|cBnLnp@rKdp@`QbjAfLd~@`I|r@nGfq@dI~~@rEjn@zEtx@fDju@zAd`@`B|k@bAzk@l@tq@Zz`@D|LV|q@Qfv@Ch_@]~[{@lj@uAxr@gD`dA{ElnAwCnn@_JfkBsFzpA_Cjm@aHdlBqE`_B}DxdBc@hRQjJgClsAmCtgBe@pn@sApkBk@j_AU|wBJrsAd@bwBtAbcBjAdrAdBrkAzCjbBxGbqCnGjmBlEpsAtFf~A`HtyAbEro@j@hH|C|_@hIngAdKxkAfLziAhMl{@bLhy@dF`ZnAhHl@jDjL|o@xJjh@nJtb@fJ`a@vJdc@fNjj@bLda@lL~b@nPnl@nS~p@pVfs@~Ujn@fHtPtF~M~Pha@xOz^nx@jaB`j@rdAvgAvqBjm@`gAzl@~kArn@zoA`n@poAnr@nzAf{@hpB~}@dxB~x@jsBpo@pbBdk@v~Atk@jaBdj@n`B~i@|}Atc@`mA`p@bbBti@bwAzh@dpApl@drAbAxBrg@~iAjm@frAn_@tw@za@ry@xg@nbA|g@xaAxd@fz@~k@xfAd[zh@zGbLv`@vs@zg@fcA`\\du@`\\zz@v[d_AxY|aAdSdu@`YxcAnVvy@vTho@hSng@`Tra@vTr_@|Wn`@rc@pi@lg@`f@jb@|Z|h@r[nd@jTvn@zSdq@tOjq@jOjj@hOvc@fPzXnM|YhPhZrTfe@ta@|QhRrQ~SfLtMvPxWzTt[xRp_@nPx^pItTrKhZxKz^xKtc@dKvc@rKtk@rHbh@fGzo@fGj~@zDbt@dFl|@nG~v@jI~q@vOj{@dSrz@bW|y@lUnu@nSnu@fQlw@tL|w@nI`y@bHlaAxDtv@lH`jAtHnt@xKnv@jJ|f@|Mjk@jQdn@pT`n@|]||@n[vt@rN~^jJzXpB~GzGpUdFnTvJzb@~Kzm@nIxh@xHji@hIto@dIhx@`Gtw@tDxp@fCrk@zA`h@~Alv@|Aht@`@n`@jBdm@nBtg@hF~r@~Ifm@xEfTfDhOdQ~k@|T`f@xWv_@~^tZnOpM`QtKxm@~Xbh@hWf`@lZbU|WnR|[zPxa@|Obl@rHnk@~@zShAjWFrg@wAhd@yCfe@gD~r@?zn@v@v[dEni@pBzIvKxe@pNra@`R~\\zN`T`SdWj`@ne@tc@fk@f^zf@tq@|aAvbB~pCdKnS~IfUbKr\\dHza@dGtk@dAji@_@jdAVjk@xCjk@nGvi@dO~k@nNla@vNdY`W|\\p_@`\\tb@fUl[vKxe@`JfpAnWzq@tO~[tDr]lBvg@[rHYpZmAxb@sAp^Nvb@zBp]~Df^fHlc@zLvUlJ`WfM`JhFhQdKfOtJfF|DlTdR`QrOfXvZ~Q~U~QrYhV|b@xLxV`Pp`@xO`e@dNtg@dFpTrE`UbKnl@nGhg@jFri@`Eta@vE`n@`Dde@xCxq@RxTrAna@fB|o@^f`@[`v@e@~t@}@~o@iAxWyAtj@yExv@_Hx_AgAfMmH`t@{Dh]qDn]qH`e@uHzj@mV`|AkPneAyIrn@oBdPcDv^s@tLyCxk@k@xTk@d\\Wz[Lj]TbZt@pWbBru@xDpfAd@xOf@jp@AzTY|\\m@~XiBtb@sEbx@}@`GwCl[gChQmFt_@gGp]gGtc@}RjhA{Itr@mCnZwA`QsCdi@o@jO{@l]{@jZPdb@Xhc@bAl_@nBdf@zEtm@lCr[`Fx\\nDxXpD|S~Lft@nP|cA~Lbx@tPnpAvLjdAfBjUdEvk@pDln@dA`RjDj`AdA~i@zAdj@|@n`BJ`z@j@nhAt@ly@hAts@xA|j@lDjz@p@xN~Cjf@|Err@xC|YvBzXxJby@bIzh@|EtZlMnu@dNzm@lGfYlLvf@pFlSxIhZfOne@lMz`@xMv`@~Plg@da@vjAlZ||@bXry@fThu@lQjr@hK~c@jKvh@|L~q@tMzw@zKdu@nWveB`Nb{@jJ|e@lHz\\bLfd@xJd]jO|e@`Nl^|S|e@rLvUdPlZdSr]bUr]vTvYlVlYj^h`@vb@zb@t]h^v_@p`@hWrXdZ|\\pShWtQbUxTf\\jSj[~Vta@bVbb@zZbl@lSrb@jQb`@tOp_@bNf^fPfe@`Ovd@`IlWrHdXxJd^rKhc@|Njn@dPbt@lU~cAhNzm@pNrj@vLzb@~InZdHbT`Lb[`T|j@tNd[pUbf@|Wlf@~MfUhFdI|HlLdN`S|Ux[lKdMzStVtThUvYjYjXlUlWrS`c@b[rc@r[p\\dUhUhPt^pW`PdMhTdQdTdQrU|Sd[`ZlXdY`X`[nXn\\xY``@zc@`p@lf@lx@l_@lo@j\\bn@pSj`@d[jn@le@bbAbo@vtAnc@tbA`p@d{Avd@pdAh\\ru@j_@bz@tWnk@|Tfe@r^zu@~U|e@dVte@xVre@ha@nt@l\\xl@`Vt`@ha@bp@f_@vk@jg@`u@f`@di@l[fb@jg@dp@~Xr]|V|YjTtW~c@xf@|f@vh@vj@rk@zm@nl@lf@~c@tg@zc@fVvStYjVhm@hg@rxCp_Cf_B|pAl`@h\\dh@|c@pk@|h@lUzUdYbZtVxXj`@pd@`_@xd@vVh\\pWd^|^hj@la@fp@b[li@jYxh@d[zm@rY|l@vd@pbAx^ry@df@jhAzc@raAnWlh@nTlc@nS`_@hX~c@hKrPlOxUdd@ln@bVbZza@ne@be@pe@zE|Elk@|i@|s@ho@bu@nq@zf@nd@lo@xm@zUxU``@pa@vb@ff@dZx]|Ub[v\\vc@|[le@j]jh@fa@dp@nNdWbXnf@p[bo@vTjd@`[vr@tXhq@zTtk@za@bkAjWrw@dUzt@nSzp@l[xeAvZtdAnTrr@`T~n@pNr`@~]d}@zK~VtY~l@zQ`]|MpVdTx^~d@tu@ta@zn@zq@`gAfKvQlN~WhM`XpL`XpGjQfCfHbDfKjI~W|Jz^xIx_@dHx_@pHff@tFbe@pDv`@vBh[dEfaA|DbhAx@fUjEzaAnCxd@zEfr@jEze@|F|e@pIlo@zCbSxG|`@vHn`@dI|^xL`g@rNxh@pKf\\|IvXvF~PnKhWzK~WjSfe@|R|a@zQb\\nOlXdKrPjMrSt]dg@~Uj\\|Wh]tXp]bQvSdZn\\`SlTtu@lu@pb@n`@`^d[`eBxvAdDnCnl@|c@ns@dh@dy@jj@`u@le@jm@p^bp@x_@ls@f`@hv@v`@~k@nYju@p^|l@dYfc@tS`m@fYru@|]`l@dYld@fUv]dRle@xWl\\xRjZnRz_@tWda@fZz]jX`e@j`@x^t\\fWfVjd@rd@p\\p^fX~Zt]`c@~O|TxS`[pSx\\hUza@lRf`@bRfb@jRje@bQ`g@vKn\\dNpf@xPvr@xIna@fEvTpE~WxGtb@lH`h@jLj~@`OrmApGze@vFj_@fIvf@hHja@nIxa@vJ`a@`Phl@rNbe@dL|\\nRlf@bW|m@dWxj@bWvh@f[tp@rT`e@|h@zhAr[jr@|`@r{@jXdo@|[hv@v`@haAzTbk@tRrh@fVnq@dRji@~j@bgBb\\|fAtVf~@nPpn@rU|_AlSz|@`WhjArWlrAdStgA~P`dAxPpgA~K|w@tJxs@vIjs@dMdlA`Hpv@jDjc@dFju@|Cdk@pCvi@rCf{@hC~}@bBd_AvAriAhAhpAfAntAtA`gAz@`c@jAr^fB`b@`C~a@`Ddd@|Fjm@dGlg@fGhb@vG~`@xFv[zFzYxIz_@rKnd@~t@fuC|FfUxKze@nGfZzDjT`ErUzDjV`EfYtF~b@fG`m@rD|`@|Exl@hEvm@vGv}@`Dn`@nC~VtD~YnFh^bGt\\bFnVtGrXbLp`@vH`WvKxZtKlXzNb\\jS|_@~FlKzIbOrJzO`r@heAtOtW`L~RpKzSzPp_@fKxW`IvTlInVrJr[~Szt@`Vvx@jN`c@dK`[~Lz\\fJhV~Nb]`KnTpNrYfM~UnL|SdRdZzMfSpSjYhOfSrPtRnLtMtNrOvMjMvOvNnW|TfTvPjRhNlXrQfXrOzPfJnY~MnZrMlQrG~PfGvQvFpXzHbi@`NrwAr^l_@bLn]bLx]dNt[vN|[`Q`YnPxUpOxXxSxUrRxP|NfZhYxZr\\rRbUlTlXlUj[vT~[`RrXrQzXfXre@lP`[zUxf@|E`LpG~NvNh^zGnOtQdh@bNfb@vDdMnFxRrGlYrFlYxF|\\vFt`@xC`XvB|UpB|VfBl\\pAhXr@pXZpR@p[@hb@Y|`@kAr{@]bv@L`e@j@pXn@dXbAxXxAlXnBhXhCrXvEz_@xHnh@nHj`@tHh]hFhT|GbVjIpWvL|\\|IrUlPn^fGxLdKrR~LhT~f@~y@l\\rk@xL|UlJdSpN|\\nN|_@dHxTrKv_@fUf{@bBlGhRrs@jMpa@|L`^xJ`WtNb\\nJjSjLzTfTr^hRdYb`@pi@bf@po@`g@bq@bt@ncA~p@p`Atd@xq@dg@`v@nd@|s@lBdCno@`dAbJrNzMtRvIdL|IxKjJvK~KjLnQ~PtMrL`P`NbPjLjMzIlLbHtLrGdPdItPnHbRlHrStGpUxG~MvCrh@nJps@hKfZzEtShEnThF`PfErWfJvXbLr[jP~NnIvSlNvTlPfWvUxU~UjYn]dWt]jYpe@pPl\\pKhVpOj_@nL|]tLja@hJr_@|FvWnGn\\zFt_@jClTbFxf@dHf|@rE|p@~Dfh@dClYpGni@hE|ZfHba@jGn[lJr`@bHvVnOze@nHdSVt@pN`]rPr]bQd[zLvSvQrWrSfXfShU|XtXhV|Stx@bp@dd@|^v_@~\\tT~S|UjVpZj^rQxThRrWlN`TrGpKpKnQvOzXzL|T~Zfo@za@b}@tZdr@`Xzo@f[fv@b}@t~Bp\\l|@j`@hdAlQvd@rTpi@rRdd@zKvUzPv^bQf\\pM`VzRx\\x]|j@x]di@j[pd@fXz`@vUh^`S|\\jH`NpI|PbNrZ`JbUdFlNdOjd@hHxWxChL~GjY~@bFbC~MzEpYfFx\\nDlYnEhc@nB`XnAfTjBb_@xCxr@hDxy@fDzr@`Drn@zBr^xCr`@lCj\\lG|n@vGzj@`Ez[tGjc@hGd_@|Fd\\lHd_@pMdm@bLxe@jKp`@~Jx]pN~c@nNza@fN~_@xMb]pJnU~JfUvNh[fRr_@|[dm@rXbf@fVb`@zR`ZpT~ZnYb`@jOnRnJ|Lf\\p`@`VzXdg@lk@pWrYdX`ZtW|Y~QtTx^`e@hS~XvRbZ`R~ZrVrd@fKhThKzTxLxXfUdm@vKvZxM|`@bXty@vTrr@|H~TjGjPpGxPlJnStI~QfLxS`T|^zKxOzIfMpMvPtN`PpJrKlJtJtKnJ~IdIdM~JlNfKbHrE|RtLzHpEzIpE|TbKtMtFvGfC`StG`YtH|WvFlS`D|NfBbNhAhMt@hQhAp\\|A`Sb@nOt@jSl@nR`ApMjAdDZ~Fj@xHv@vQrCfPvClOhDhG~A~HzBxQrFlVnJ`PrGlVzMvUpN~NxJrPxL~ZhX~RvRlv@fw@rV`VpTlSjRpNlMhJtYzQhQlJx_@bQvRfHvY`JrX~F|PfDfRzCr\\bElv@hItc@|E`\\pDxc@tGxb@jHvZnGdQ`EjZpHrWnHtWbJl]jMpZpLdX`Mva@lSlc@rVpt@lf@xc@~\\`\\dXpYdXjY~Xd\\~]l[p_@dV`[lVb]p[he@`w@roA~Zni@fWhb@~Up_@tTjZxTjXjW|WfQjPxStPzPdMpY|QfMzGdJtEbMxFxYjLjZdJdPnEhGxA|QnDxRdDfYlDve@lE~e@pEhd@dEnh@rGpUvCxUdE`g@|KnZ~HxZlJj_@pM`UnJzNjGlX|Mf_@dSbZ|Qp^fV`RnNvYtUbZbX|ZtZrXdZxQxTzRvVh\\de@nSd[~Wxc@`Sh_@pTbd@zShf@~Sdi@hKnYvKp\\vMhc@`P~g@zS|w@jQrt@xPfs@bMvh@x@tDpLxg@bLlf@~ClMpF|Tr@`CrJz[rQho@pK``@vKj`@xGhUbh@viBlTft@~Xz`AtRfs@~Oto@~Qdx@bF|W|@xE`EnUnQncAzDzWpGjb@lEp^nEt^fEr^`Dv]hIf}@dCt]|Bp_@zB|b@hCli@dBfh@|@pWxAtd@lAnp@xA~x@dAry@z@ty@r@zz@pAdkAbApe@z@v_@dA`^xBtd@lCbd@jDtf@bEtd@zGlm@jGhf@~Gbd@pKrn@lK`j@bIj]dHpZdJv\\dWz{@rPpf@nRph@dg@rmAng@vqAdJjW|ErNvElQbH|VnHl\\zChOxFlZfGva@hF`e@`BxO|@hM|@rKlAzR`Bf]bAdYZbd@Edo@eAbg@{Ax`@qC`d@{BzVoHju@wMthAs@|GaNjrAaHbx@iFrbAoA|WsB`p@{@j[e@d[WjRU``@Z|{AhBt{@v@d[rErcAzBh`@zElq@nNpvAzAzLtG`e@zI~k@rKrn@jKxh@zErSvDdPjHlXbFzPtD|LdGlPrGfRzMf]bJ~RxJhRbL`S~LbTtI~MjMnQfMlO|KbNlNtOpNjN~W`UB@bKjIhXlSto@jd@rj@lb@rXpUnMvNjHnIvKfMbKdNfJjMfSpZ`[~k@vN`[lNtb@xDrQhGnZ"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4192.107},{"ssmlAnnouncement":"In 1 mile, Keep left to take E-80.","announcement":"In 1 mile, Keep left to take E-80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take E-80.","announcement":"In a half mile, Keep left to take E-80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take E-80, A-62 toward Palencia, Valladolid.","announcement":"Keep left to take E-80, A-62 toward Palencia, Valladolid.","distanceAlongGeometry":280}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[68,251,263],"duration":12.914,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":12.25,"geometry_index":27299,"location":[-3.69751,42.316523]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.398,"geometry_index":27307,"location":[-3.70123,42.316622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,264],"duration":6.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.43,"geometry_index":27308,"location":[-3.701353,42.316621]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,243],"duration":2.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.836,"geometry_index":27312,"location":[-3.70337,42.316267]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.704195,42.315932],"geometry_index":27314,"admin_index":13,"weight":11.047,"is_urban":false,"turn_weight":1,"duration":10.609,"bearings":[51,60,235],"out":2,"in":1,"turn_duration":0.028,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.706651,42.314112],"geometry_index":27320,"admin_index":13,"weight":14.648,"is_urban":false,"turn_weight":1,"duration":14.375,"bearings":[37,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,246],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.422,"geometry_index":27329,"location":[-3.710503,42.311998]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,248],"duration":10.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.086,"geometry_index":27330,"location":[-3.711612,42.311637]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[69,251,253],"duration":1.367,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.289,"geometry_index":27334,"location":[-3.714947,42.310668]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":35.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":32.391,"geometry_index":27335,"location":[-3.715412,42.31055]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.93,"geometry_index":27346,"location":[-3.727577,42.308404]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.727952,42.308354],"geometry_index":27347,"admin_index":13,"weight":2.617,"is_urban":false,"turn_weight":1,"duration":1.82,"bearings":[72,80,258],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,258],"duration":28.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.586,"geometry_index":27348,"location":[-3.728582,42.308258]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,250],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":27357,"location":[-3.738339,42.306174]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,251],"duration":14.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.438,"geometry_index":27358,"location":[-3.738659,42.306088]},{"bearings":[76,256],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"geometry_index":27362,"location":[-3.74392,42.304944]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Palencia"},{"type":"text","text":"/"},{"type":"text","text":"Valladolid"}],"type":"fork","modifier":"left","text":"Palencia / Valladolid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E-80"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"left","text":"E-80 / A-62"},"distanceAlongGeometry":4232.107},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Palencia"},{"type":"text","text":"/"},{"type":"text","text":"Valladolid"}],"type":"fork","modifier":"left","text":"Palencia / Valladolid"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E-80"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"left","text":"E-80 / A-62"},"distanceAlongGeometry":1609.344}],"destinations":"A-62: Valladolid","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A-62 toward Valladolid.","modifier":"slight right","bearing_after":263,"bearing_before":248,"location":[-3.69751,42.316523]},"speedLimitSign":"vienna","name":"Circunvalación de Burgos","weight_typical":141.547,"duration_typical":149.523,"duration":149.523,"distance":4232.107,"driving_side":"right","weight":141.547,"mode":"driving","ref":"BU-30; E 80","geometry":"umxuoAjut`FxBlf@H|OU`XoAp\\gDxv@m@tSWvSHfW@tFtAfa@hCz\\jEl^vGn]lIjZnIdW~Nv]dIpOvGvKbHhKtUpZ~m@pt@bHpIvPjUxLhQfNpUpOhYjStg@vHtTnMdb@~M`j@pUhdAr@|CtTlhA|Orx@hSlgAjF`\\tLbu@`Np_AzMh_AxGji@~Ihv@vJ~}@nHpv@lL`sApIdfAfJrwAdMdtBbBlV~Djf@bLvtA`L`jAlFbh@pHto@dLl|@lL|y@`Lnx@|M|y@l_@jyBjD~RbSznA`Gva@xUteBnSnnBdNbqA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6881.036},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 80.","announcement":"In 1 mile, Keep left to stay on E 80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":188.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[-3.745234,42.304701],"geometry_index":27363,"admin_index":13,"weight":19.672,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.875,"bearings":[76,253,265],"out":1,"in":0,"turn_duration":0.022,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":26.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.969,"geometry_index":27369,"location":[-3.753453,42.303717]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.763453,42.303713],"geometry_index":27376,"admin_index":13,"weight":114.117,"is_urban":false,"turn_weight":1,"duration":129.281,"bearings":[92,94,275],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,292],"duration":2.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.984,"geometry_index":27428,"location":[-3.811126,42.309604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[115,294],"duration":17.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.477,"geometry_index":27430,"location":[-3.811885,42.309852]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,258],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.648,"geometry_index":27445,"location":[-3.817627,42.310676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":9.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.211,"geometry_index":27447,"location":[-3.818251,42.310554]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.820996,42.309332],"geometry_index":27457,"admin_index":13,"weight":1.906,"is_urban":false,"turn_weight":0.75,"duration":1.297,"bearings":[37,46,225],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,220],"duration":8.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.07,"geometry_index":27458,"location":[-3.821312,42.309102]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,199],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.031,"geometry_index":27466,"location":[-3.822821,42.307084]},{"bearings":[19,195],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"geometry_index":27467,"location":[-3.822954,42.306802]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":6921.036}],"destinations":"E-80, A-62: Palencia, Valladolid","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E-80/A-62 toward Palencia/Valladolid.","modifier":"slight left","bearing_after":253,"bearing_before":256,"location":[-3.745234,42.304701]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":201.844,"duration_typical":226.672,"duration":226.672,"distance":6921.036,"driving_side":"right","weight":201.844,"mode":"driving","ref":"A-62; E 80","geometry":"yjauoAb|qcFlDrW|Fbr@tLn}AtIlyAdMp_CpHl{B~Ald@z@ffAv@l~@pAzgCm@rsCmCdjBaBd{@qBfy@{EfgBwBnq@}Bjq@kCjr@gB`e@wC|r@}Brd@aEpw@_Dxl@uDhr@iCbe@}Exw@{Bb]cIrkAeKfuAoLb{A}Grw@qGxs@mIl~@eD~a@sBlV{BxXgC~ZoCf_@oCr^uBpXwCdc@_Ezl@qDtj@aHjiAuDpr@qKvtBqCvl@{Bff@sGlkBgDjbAkLpaEmCxu@iBba@uH`}AaH`hAsFnu@eG`u@gFns@cHfu@kRvfBcIhq@uJ`t@_Klv@{Mn|@mArGgBjJgK`c@uUfcAoFzT{C`P}BhL{C|PkCdUmCdW{AbX{@jVUzQAzNBtRn@`Z~@jT`BtUbB`RnC|RfApI~ArIzCzN|CbNjFlRpHdUtHtSnI|RbIbP`M~RjMvRxHfJfI|IhK|JrNzLxMnJnPjJlNdHj]fMrPhGfU`Gha@~OzK`GxLpI~HxFrI~HrDrE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 87 miles.","announcement":"Continue for 87 miles.","distanceAlongGeometry":139647.828},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on E 80.","announcement":"In 2 miles, Keep right to stay on E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 80.","announcement":"In a half mile, Keep right to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 80 toward A-11 Zamora, A-62 Salamanca Portugal.","announcement":"Keep right to stay on E 80 toward A-11 Zamora, A-62 Salamanca Portugal.","distanceAlongGeometry":333.333}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,219,239],"duration":4.391,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.945,"geometry_index":27474,"location":[-3.824044,42.30505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,235],"duration":5.992,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.391,"geometry_index":27479,"location":[-3.825115,42.30429]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,258],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.047,"geometry_index":27485,"location":[-3.827012,42.303638]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.734,"geometry_index":27489,"location":[-3.828569,42.30348]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,253],"duration":11.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.43,"geometry_index":27492,"location":[-3.829613,42.303343]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.742,"geometry_index":27501,"location":[-3.832994,42.301691]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,228],"duration":4.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.328,"geometry_index":27502,"location":[-3.833207,42.301538]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,223],"duration":13.875,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.461,"geometry_index":27503,"location":[-3.834461,42.300699]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,236],"duration":11.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.711,"geometry_index":27509,"location":[-3.83816,42.298387]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[55,236,238],"duration":46.953,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":41.078,"geometry_index":27511,"location":[-3.841744,42.296575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":0.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.281,"geometry_index":27518,"location":[-3.854831,42.289974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,236],"duration":25.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.023,"geometry_index":27519,"location":[-3.854936,42.289921]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[52,57,238],"duration":64.148,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":56.125,"geometry_index":27522,"location":[-3.862825,42.286]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[73,252,253],"duration":67.695,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":60.906,"geometry_index":27550,"location":[-3.886641,42.278748]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.909081,42.271748],"geometry_index":27592,"admin_index":13,"weight":40.211,"is_urban":false,"turn_weight":0.75,"duration":45.102,"bearings":[62,66,247],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,252],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.805,"geometry_index":27607,"location":[-3.924434,42.266841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,254],"duration":25.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.25,"geometry_index":27608,"location":[-3.924762,42.266761]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.93391,42.265414],"geometry_index":27627,"admin_index":13,"weight":55.891,"is_urban":false,"turn_weight":0.75,"duration":63.023,"bearings":[68,71,251],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[53,233,238],"duration":37.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.062,"geometry_index":27668,"location":[-3.951491,42.25415]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.962546,42.247932],"geometry_index":27681,"admin_index":13,"weight":47.133,"is_urban":false,"turn_weight":1,"duration":52.734,"bearings":[44,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":25.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.047,"geometry_index":27700,"location":[-3.977588,42.238702]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":48.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":42.18,"geometry_index":27709,"location":[-3.984635,42.234155]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,228],"duration":25.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.023,"geometry_index":27724,"location":[-3.9981,42.225459]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,206],"duration":63.539,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":55.578,"geometry_index":27743,"location":[-4.004496,42.220495]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":27.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.664,"geometry_index":27779,"location":[-4.015784,42.205347]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":136.195,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":119.164,"geometry_index":27791,"location":[-4.022476,42.199733]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":26.992,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.609,"geometry_index":27842,"location":[-4.056226,42.176967]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":37.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.047,"geometry_index":27860,"location":[-4.06539,42.173552]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.297,"geometry_index":27889,"location":[-4.074483,42.165395]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.172,"geometry_index":27890,"location":[-4.074853,42.164724]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[23,205,208],"duration":0.43,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":27892,"location":[-4.075529,42.163503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":41.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":36.328,"geometry_index":27893,"location":[-4.075598,42.163392]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.08576,42.15358],"geometry_index":27917,"admin_index":13,"weight":28.156,"is_urban":false,"turn_weight":1,"duration":30.18,"bearings":[45,49,230],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.562,"geometry_index":27935,"location":[-4.095358,42.149414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,244],"duration":1.195,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.062,"geometry_index":27937,"location":[-4.095945,42.149217]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":24.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.531,"geometry_index":27938,"location":[-4.096333,42.149079]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,215],"duration":143.758,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":125.773,"geometry_index":27957,"location":[-4.103303,42.14484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":3.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.977,"geometry_index":28008,"location":[-4.146049,42.122152]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":27.977,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.469,"geometry_index":28009,"location":[-4.147129,42.121677]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,255],"duration":7.141,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.242,"geometry_index":28029,"location":[-4.155454,42.117492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":2.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.836,"geometry_index":28033,"location":[-4.157938,42.117101]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":113.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":99.125,"geometry_index":28034,"location":[-4.158678,42.116976]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.039,"geometry_index":28108,"location":[-4.193905,42.101488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":0.266,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.227,"geometry_index":28109,"location":[-4.194291,42.101342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":23.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":20.18,"geometry_index":28110,"location":[-4.194374,42.101311]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,228],"duration":26.891,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.18,"geometry_index":28118,"location":[-4.20194,42.098277]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.797,"geometry_index":28141,"location":[-4.208395,42.092726]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[32,209,214],"duration":21.367,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.203,"geometry_index":28143,"location":[-4.208566,42.09252]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[180,359],"duration":4.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":3.781,"geometry_index":28157,"location":[-4.209882,42.086787]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,179],"duration":12.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.57,"geometry_index":28158,"location":[-4.209873,42.085592]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[2,183],"duration":26.164,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.539,"geometry_index":28164,"location":[-4.209838,42.082163]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,208],"duration":31.625,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.664,"geometry_index":28182,"location":[-4.212714,42.075413]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[53,234,237],"duration":19.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.742,"geometry_index":28200,"location":[-4.22167,42.068751]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.227367,42.065563],"geometry_index":28205,"admin_index":13,"weight":61.711,"is_urban":false,"turn_weight":1,"duration":69.391,"bearings":[51,52,232],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[63,242,248],"duration":34.805,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.438,"geometry_index":28241,"location":[-4.246542,42.053485]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.256502,42.047484],"geometry_index":28263,"admin_index":13,"weight":53.977,"is_urban":false,"turn_weight":1,"duration":60.57,"bearings":[37,45,223],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,254],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.289,"geometry_index":28297,"location":[-4.274905,42.039179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,255],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.805,"geometry_index":28298,"location":[-4.275431,42.039069]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-4.275758,42.039005],"geometry_index":28299,"admin_index":13,"weight":17.109,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.57,"bearings":[75,253],"out":1,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":3.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.961,"geometry_index":28311,"location":[-4.28253,42.037299]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":43.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":38.086,"geometry_index":28312,"location":[-4.283569,42.036948]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":20.516,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.461,"geometry_index":28326,"location":[-4.296836,42.032386]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,251],"duration":9.758,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.781,"geometry_index":28333,"location":[-4.30367,42.030067]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.5,"geometry_index":28340,"location":[-4.307215,42.029643]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[86,266,270],"duration":0.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.211,"geometry_index":28341,"location":[-4.307426,42.029631]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,265],"duration":17.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.359,"geometry_index":28342,"location":[-4.307514,42.029626]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.313691,42.029259],"geometry_index":28351,"admin_index":13,"weight":10.477,"is_urban":false,"turn_weight":1,"duration":10.539,"bearings":[79,85,266],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":9.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.203,"geometry_index":28354,"location":[-4.317461,42.029037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,265],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.547,"geometry_index":28355,"location":[-4.320724,42.028841]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,264],"duration":0.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.336,"geometry_index":28356,"location":[-4.320935,42.028828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[84,264],"duration":29.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.586,"geometry_index":28357,"location":[-4.321064,42.028818]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":35.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.414,"geometry_index":28376,"location":[-4.330593,42.025605]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[51,233,237],"duration":80.148,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":70.125,"geometry_index":28392,"location":[-4.340121,42.018761]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,239],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.508,"geometry_index":28426,"location":[-4.364588,42.006039]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,240],"duration":0.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.375,"geometry_index":28427,"location":[-4.36477,42.005957]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":24.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.531,"geometry_index":28428,"location":[-4.364903,42.005899]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":106.891,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":93.523,"geometry_index":28438,"location":[-4.372827,42.002725]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,244,249],"duration":53.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":46.523,"geometry_index":28476,"location":[-4.40501,41.990939]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[81,260],"duration":27.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.453,"geometry_index":28508,"location":[-4.42372,41.98813]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,217,222],"duration":4.672,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.188,"geometry_index":28527,"location":[-4.431876,41.984359]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.523,"geometry_index":28530,"location":[-4.432852,41.983369]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":8.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.742,"geometry_index":28531,"location":[-4.432975,41.983245]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,221],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.453,"geometry_index":28536,"location":[-4.434835,41.981382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":25.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.734,"geometry_index":28537,"location":[-4.435456,41.980857]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.443265,41.976975],"geometry_index":28551,"admin_index":13,"weight":52.633,"is_urban":false,"turn_weight":1,"duration":57.383,"bearings":[61,66,246],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":2.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.367,"geometry_index":28576,"location":[-4.45693,41.965619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,188],"duration":8.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.055,"geometry_index":28577,"location":[-4.457134,41.964922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":0.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.688,"geometry_index":28581,"location":[-4.457482,41.962506]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,183],"duration":126.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":116.758,"geometry_index":28582,"location":[-4.457501,41.962303]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.625,"geometry_index":28639,"location":[-4.489725,41.939332]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.125,"geometry_index":28640,"location":[-4.489928,41.939237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,239],"duration":10.688,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.133,"geometry_index":28644,"location":[-4.492278,41.938231]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,222],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.008,"geometry_index":28652,"location":[-4.495288,41.936446]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,218],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.508,"geometry_index":28653,"location":[-4.495537,41.936237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,208],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.719,"geometry_index":28656,"location":[-4.496746,41.934995]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.32,"geometry_index":28657,"location":[-4.497052,41.934575]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,205],"duration":0.25,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.227,"geometry_index":28658,"location":[-4.497112,41.934492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":15.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.281,"geometry_index":28659,"location":[-4.497147,41.934436]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[7,189],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.266,"geometry_index":28668,"location":[-4.498572,41.930297]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,188],"duration":35.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.883,"geometry_index":28669,"location":[-4.498643,41.929951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,222],"duration":19.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.781,"geometry_index":28695,"location":[-4.506116,41.922467]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.50937,41.917805],"geometry_index":28711,"admin_index":13,"weight":5.844,"is_urban":false,"turn_weight":1,"duration":5.242,"bearings":[6,13,193],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,197],"duration":1.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.82,"geometry_index":28715,"location":[-4.509824,41.916433]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[18,200,203],"duration":0.867,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.797,"geometry_index":28717,"location":[-4.510036,41.915931]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.953,"geometry_index":28718,"location":[-4.510146,41.915708]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":19.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":17.297,"geometry_index":28725,"location":[-4.511952,41.912144]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":0.695,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.617,"geometry_index":28731,"location":[-4.514429,41.907252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":13.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.828,"geometry_index":28732,"location":[-4.514526,41.907063]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,201],"duration":0.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.43,"geometry_index":28739,"location":[-4.516396,41.903382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,201],"duration":14.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.383,"geometry_index":28740,"location":[-4.516465,41.903247]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,206],"duration":36.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.617,"geometry_index":28748,"location":[-4.518185,41.899961]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,217],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.031,"geometry_index":28772,"location":[-4.525095,41.891985]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":6.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.914,"geometry_index":28773,"location":[-4.525097,41.891983]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,241],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.695,"geometry_index":28781,"location":[-4.52683,41.890769]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,244],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.25,"geometry_index":28782,"location":[-4.527776,41.890382]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[64,241,251],"duration":16.969,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.836,"geometry_index":28783,"location":[-4.527867,41.890349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.031,"geometry_index":28799,"location":[-4.531725,41.887166]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,219],"duration":4.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.773,"geometry_index":28800,"location":[-4.531728,41.887163]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,220],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.477,"geometry_index":28803,"location":[-4.532662,41.886342]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":24.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.688,"geometry_index":28804,"location":[-4.532787,41.886233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,219],"duration":22.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":20.195,"geometry_index":28814,"location":[-4.538483,41.881308]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,177],"duration":1.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.93,"geometry_index":28833,"location":[-4.541049,41.875766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[174,357],"duration":11.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":10.18,"geometry_index":28834,"location":[-4.54103,41.875488]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,195],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.305,"geometry_index":28844,"location":[-4.54086,41.872513]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.086,"geometry_index":28845,"location":[-4.540891,41.872426]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,206],"duration":46.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":41.938,"geometry_index":28854,"location":[-4.542556,41.869738]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,220],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.242,"geometry_index":28877,"location":[-4.549543,41.858476]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":1.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.906,"geometry_index":28879,"location":[-4.549871,41.858204]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,230],"duration":2.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.484,"geometry_index":28881,"location":[-4.55012,41.858011]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,239],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.164,"geometry_index":28885,"location":[-4.550901,41.857554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[61,242],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.633,"geometry_index":28887,"location":[-4.55129,41.857386]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,245,255],"duration":41.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":36.938,"geometry_index":28888,"location":[-4.551507,41.8573]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[23,28,208],"duration":21.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":19.227,"geometry_index":28916,"location":[-4.559086,41.848655]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[28,208,214],"duration":38.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.633,"geometry_index":28923,"location":[-4.562689,41.843686]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.569259,41.834554],"geometry_index":28935,"admin_index":13,"weight":71.406,"is_urban":false,"turn_weight":1,"duration":80.477,"bearings":[23,28,207],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[12,194,199],"duration":27.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":25.156,"geometry_index":28967,"location":[-4.582183,41.812595]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.586108,41.805852],"geometry_index":28980,"admin_index":13,"weight":118.281,"is_urban":false,"turn_weight":1,"duration":134.039,"bearings":[25,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[32,212,215],"duration":0.539,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.469,"geometry_index":29023,"location":[-4.616431,41.777955]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":24.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.609,"geometry_index":29024,"location":[-4.616534,41.777832]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.621347,41.772229],"geometry_index":29031,"admin_index":13,"weight":43.055,"is_urban":false,"turn_weight":1,"duration":48.07,"bearings":[30,33,213],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":0.414,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":29046,"location":[-4.63179,41.760128]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,213],"duration":20.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.656,"geometry_index":29047,"location":[-4.631869,41.760037]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,235],"duration":65.828,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":59.234,"geometry_index":29058,"location":[-4.636516,41.755777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.281,"geometry_index":29074,"location":[-4.6557,41.745868]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[54,234,238],"duration":25.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.023,"geometry_index":29075,"location":[-4.655789,41.745819]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.663199,41.741637],"geometry_index":29083,"admin_index":13,"weight":27.219,"is_urban":false,"turn_weight":1,"duration":29.156,"bearings":[44,51,230],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,231],"duration":0.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.211,"geometry_index":29092,"location":[-4.671074,41.736435]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[51,227,235],"duration":0.289,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.242,"geometry_index":29093,"location":[-4.671138,41.736396]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":27.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.477,"geometry_index":29094,"location":[-4.671212,41.736345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.677618,41.730805],"geometry_index":29106,"admin_index":13,"weight":69.508,"is_urban":false,"turn_weight":1,"duration":78.297,"bearings":[27,41,223],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":24.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.578,"geometry_index":29140,"location":[-4.697691,41.716595]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,219,224],"duration":0.703,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.625,"geometry_index":29149,"location":[-4.703291,41.711507]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":8.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.695,"geometry_index":29150,"location":[-4.703447,41.711365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,220],"duration":2.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.367,"geometry_index":29153,"location":[-4.70533,41.70965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":9.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.938,"geometry_index":29154,"location":[-4.705914,41.709125]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.708057,41.707105],"geometry_index":29158,"admin_index":13,"weight":2.195,"is_urban":false,"turn_weight":1,"duration":1.344,"bearings":[20,34,213],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[33,210,221],"duration":12.062,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.844,"geometry_index":29159,"location":[-4.708317,41.706809]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,212],"duration":73.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":68,"geometry_index":29168,"location":[-4.71017,41.703907]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,206],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.609,"geometry_index":29202,"location":[-4.72708,41.689035]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[26,206,215],"duration":0.422,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.391,"geometry_index":29203,"location":[-4.72718,41.68888]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":18.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":17.461,"geometry_index":29204,"location":[-4.727242,41.688783]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,220],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1,"geometry_index":29215,"location":[-4.730198,41.68453]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,223],"duration":5.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.805,"geometry_index":29216,"location":[-4.73044,41.684316]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.731687,41.683397],"geometry_index":29218,"admin_index":13,"weight":16.562,"is_urban":false,"turn_weight":0.75,"duration":16.648,"bearings":[38,48,231],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,232],"duration":30.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":29.391,"geometry_index":29223,"location":[-4.736509,41.680875]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,258],"duration":72.336,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":68.711,"geometry_index":29234,"location":[-4.745469,41.676341]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[169,348],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":0.852,"geometry_index":29275,"location":[-4.760504,41.665116]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[173,177,349],"duration":0.492,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":0.469,"geometry_index":29276,"location":[-4.760435,41.66486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":13.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":0,"weight":13.141,"geometry_index":29277,"location":[-4.760415,41.664739]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[15,197],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.703,"geometry_index":29285,"location":[-4.760627,41.661237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,200],"duration":26.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.344,"geometry_index":29286,"location":[-4.761004,41.660322]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,193],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.32,"geometry_index":29298,"location":[-4.764951,41.65418]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":5.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.836,"geometry_index":29299,"location":[-4.764974,41.654105]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,185],"duration":0.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.062,"geometry_index":29305,"location":[-4.765252,41.652658]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,182],"duration":13.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.32,"geometry_index":29306,"location":[-4.765254,41.652641]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.765288,41.649158],"geometry_index":29314,"admin_index":13,"weight":20.016,"is_urban":false,"turn_weight":0.75,"duration":18.797,"bearings":[0,6,188],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[27,208],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.438,"geometry_index":29326,"location":[-4.767333,41.644747]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,211],"duration":2.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.953,"geometry_index":29329,"location":[-4.767718,41.644229]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[31,214,220],"duration":11.82,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.805,"geometry_index":29332,"location":[-4.768217,41.643612]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.770635,41.641288],"geometry_index":29338,"admin_index":13,"weight":14.672,"is_urban":false,"turn_weight":0.75,"duration":13.93,"bearings":[30,42,224],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.438,"geometry_index":29346,"location":[-4.773539,41.639041]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,209,218],"duration":1.141,"turn_duration":0.038,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.125,"geometry_index":29347,"location":[-4.7738,41.63879]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,209],"duration":24.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.703,"geometry_index":29348,"location":[-4.773996,41.638529]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.777268,41.632525],"geometry_index":29356,"admin_index":13,"weight":28.375,"is_urban":false,"turn_weight":0.75,"duration":26.961,"bearings":[11,21,204],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[50,228,237],"duration":15.258,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16,"geometry_index":29372,"location":[-4.783826,41.627403]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,218],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.641,"geometry_index":29377,"location":[-4.787545,41.624643]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,214],"duration":9.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.672,"geometry_index":29378,"location":[-4.78787,41.624328]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.789359,41.622276],"geometry_index":29384,"admin_index":13,"weight":12.375,"is_urban":false,"turn_weight":1,"duration":10.859,"bearings":[17,23,199],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[4,186,190],"duration":9.734,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.211,"geometry_index":29391,"location":[-4.790072,41.619558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,201],"duration":3.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.484,"geometry_index":29394,"location":[-4.790745,41.617021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,208],"duration":16.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.656,"geometry_index":29396,"location":[-4.791228,41.616183]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.795179,41.612933],"geometry_index":29403,"admin_index":13,"weight":6.977,"is_urban":false,"turn_weight":1,"duration":6,"bearings":[51,59,236],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":72.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":69.141,"geometry_index":29405,"location":[-4.796946,41.612071]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[48,229,232],"duration":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.688,"geometry_index":29417,"location":[-4.817157,41.600223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":13.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.852,"geometry_index":29418,"location":[-4.817354,41.600097]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.555,"geometry_index":29422,"location":[-4.821202,41.597758]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,231],"duration":5.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.883,"geometry_index":29423,"location":[-4.82137,41.597662]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.822842,41.596777],"geometry_index":29426,"admin_index":13,"weight":19.945,"is_urban":false,"turn_weight":1,"duration":21.07,"bearings":[49,52,229],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,234],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.586,"geometry_index":29433,"location":[-4.828526,41.593276]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,231],"duration":14.672,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.188,"geometry_index":29435,"location":[-4.829021,41.593008]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,197],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.586,"geometry_index":29445,"location":[-4.831883,41.590073]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.336,"geometry_index":29446,"location":[-4.831948,41.589913]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":11.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.602,"geometry_index":29448,"location":[-4.832272,41.588969]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":55.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":49.961,"geometry_index":29455,"location":[-4.833856,41.586265]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[41,220,227],"duration":0.43,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.367,"geometry_index":29477,"location":[-4.847487,41.575997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,220],"duration":48.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":43.492,"geometry_index":29478,"location":[-4.847582,41.575913]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.859509,41.566787],"geometry_index":29487,"admin_index":13,"weight":14.328,"is_urban":false,"turn_weight":1,"duration":14.82,"bearings":[42,47,227,244],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.86333,41.564164],"geometry_index":29489,"admin_index":13,"weight":17.453,"is_urban":false,"turn_weight":1,"duration":18.812,"bearings":[42,48,228],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":4.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.312,"geometry_index":29491,"location":[-4.868153,41.560954]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.492,"geometry_index":29492,"location":[-4.869369,41.560068]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[46,225,229],"duration":0.297,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.242,"geometry_index":29493,"location":[-4.869509,41.559966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,224],"duration":15.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.32,"geometry_index":29494,"location":[-4.869576,41.559915]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.873284,41.557054],"geometry_index":29496,"admin_index":13,"weight":3.938,"is_urban":false,"turn_weight":1,"duration":3.367,"bearings":[39,44,224],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":71.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":62.398,"geometry_index":29497,"location":[-4.874099,41.556423]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":1.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.109,"geometry_index":29506,"location":[-4.891452,41.54299]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[44,224,235],"duration":11.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.219,"geometry_index":29507,"location":[-4.891761,41.542751]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[44,224,231],"duration":0.523,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.453,"geometry_index":29508,"location":[-4.894627,41.540524]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":18.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.117,"geometry_index":29509,"location":[-4.894756,41.540424]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[41,44,224],"duration":54.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"weight":47.883,"geometry_index":29511,"location":[-4.899184,41.536985]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,242,244],"duration":18.391,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.086,"geometry_index":29521,"location":[-4.913989,41.528327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.919601,41.526061],"geometry_index":29523,"admin_index":13,"weight":53.844,"is_urban":false,"turn_weight":1,"duration":60.398,"bearings":[56,62,242],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":2.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.43,"geometry_index":29528,"location":[-4.940909,41.517551]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":2.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.883,"geometry_index":29529,"location":[-4.941706,41.517231]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[62,242,248],"duration":0.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.336,"geometry_index":29530,"location":[-4.942316,41.516986]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,242],"duration":17.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.891,"geometry_index":29531,"location":[-4.942434,41.516939]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.947895,41.514691],"geometry_index":29534,"admin_index":13,"weight":99.25,"is_urban":false,"turn_weight":1,"duration":109.195,"bearings":[53,60,238],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[77,256,260],"duration":73.727,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":68.18,"geometry_index":29555,"location":[-4.974764,41.506861]},{"bearings":[119,122,299],"entry":[false,false,true],"classes":["motorway"],"in":0,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":2,"geometry_index":29580,"location":[-4.992293,41.510927]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"A-11 Zamora"},{"type":"text","text":"/"},{"type":"text","text":"A-62 Salamanca Portugal"}],"type":"fork","modifier":"right","text":"A-11 Zamora / A-62 Salamanca Portugal"},"distanceAlongGeometry":139681.156},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"A-11 Zamora"},{"type":"text","text":"/"},{"type":"text","text":"A-62 Salamanca Portugal"}],"type":"fork","modifier":"right","text":"A-11 Zamora / A-62 Salamanca Portugal"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":219,"bearing_before":218,"location":[-3.824044,42.30505]},"speedLimitSign":"vienna","name":"","weight_typical":4239.258,"duration_typical":4689.047,"duration":4689.047,"distance":139681.156,"driving_side":"right","weight":4239.258,"mode":"driving","ref":"E 80","geometry":"s`buoAvykhFpG~G`GhIlGhJdJxMfJnTlFdMzGfRpGnUpF~X`DfRfBjP^jDvAnRbAzS~Bpr@l@bQvAzTjCfX|CzTtC~PpHtZ`FrQtE~MvIjTdNfXbRd[fXhb@pHhLls@jmA~Yba@rc@ds@dOxW~H`P`Pf^rd@vfA~mA`|Cfa@|aA`^`}@|mA~zCRf@tzBpsFtcBfgEff@hmAhe@njAhBpExrD`fJhm@`}A|Q|f@jJlWpZdy@lm@neBdYfy@Xv@ni@|}AjVbs@`T`r@tNdg@`Lnc@f\\drAzI~`@`Odt@`XpzAvCbQlFj]fG`d@fGjc@xHbq@lI~y@dNbqAxNfsAjKl{@bNliAlItp@rKt|@~CxXlGbd@bHbd@fFvWnKhf@dJl\\zG~T~HfUrI`U|IpTrIrRvJ|RtKbSxMlUh]~i@zKpQ`Sv[lPv[lKfThJtTbI|SbIfTjHxUzJd\\nKvd@zFpZjEtUpDlVxDzXnEnd@dDrf@tBlc@|@nY~@`c@~Afj@lCnp@nAnXdKhxAdTtoB~Gbd@jJrj@jJbh@lLlj@fNtm@jMtk@pMnl@hg@jzBpSv~@hUpcAjVpgArb@`mBjV~fA|Qdy@`Sf|@da@lhBhLvh@jNbt@dFpYbBvK~CnSvBfPhDnXzDr^pC~YfBfVxBv[~Btc@rBde@bAlYpCxq@lA~XpAbYhBr\\zBb[~C~_@~G|n@xFxc@dCbQbDnSxDpUtF|YjIp`@zHj\\zErRfG~SfM|b@lLf^rIzU|HjSpJdVxIbSpJlSrPh]|Qr\\`LhRpRxZtLbQlMlQlNvQrQzTzOhQxUnVpVxUzd@xb@fWfV`O`Nd]n]fNzO~M|OjM~ObM|PjSbYfMtRjJ|O~LbTlPl[`Pf\\vPd^vwAj}CdIdQ`Txd@hg@dgA`o@ztArf@zeAdy@jfB~a@z}@bRt`@pUrf@hRbb@jKnTrWxi@p`@fz@xM|XrYpm@lR~`@rZlo@bYtl@d[`p@pe@hbAnUvf@hP~\\lQt]j\\vo@fWhe@|w@|vArd@|x@lk@~cAv]pn@hWbe@ba@hs@fc@bw@~`@ps@n{@t|Ap]rn@z^fp@vLzTx\\tl@x_@pq@zWne@|Rj]`g@z}@rTj`@j~@t`BluBvvDjWtd@rMnU~Wre@bXxe@lWvd@xQd\\|Qp\\n^po@bXje@|w@|vAt^pp@nj@dcAfSl]p`@vr@dj@naA~Rz]rN`W~R`]zIvO~F~ItSfY~H`KxKjMlMlNlFpFrFrFzFxFvFnErPrN`MzIlQdMdGlDdUtMv]tOjKlEzU`ItRxF`OxDhJdB`[nFzQzB|RdBr[jCrn@lFdZbE~Z~Fp[hIvZlKnVvJzJ`FhPhI|PzJjO~JxL~IvI|GnNhLvNdNlVrW`\\r_@r[x`@bTtWdNpP`\\h`@pb@vh@fc@ji@jdDp`EdUjYjQlTjQjTtTlXh\\ja@bb@hh@jUbY`VnZvKfNr[ba@t[`b@h[fa@dsA~dBdd@hl@fb@ti@~e@fn@pXh]n[|a@vh@`r@h[ba@d\\jb@|b@xj@`_AllAtb@jj@df@nn@jr@h}@|_@~f@hn@lx@va@di@nc@tj@|Y`a@~R|XpNbTzX~c@nLrShPlZtQz]nW|f@|Sna@~[bo@dV|d@`Qp\\`]pp@x[fn@bZ~k@|AzCdQn\\t]hq@xd@f}@fn@xlA~^ds@|o@zoAnQl]rOb\\jVph@z[xs@`Qbb@~Qjd@dOj`@~Nz`@rMx]fUdq@dPzf@hKf\\~IhZdJ`[hOzi@tFfSzKfb@vG|WhJb`@rNfn@~Qn{@nLzi@hG|VlDrNfIbZ`InX`IlXfItVrMr_@dPjc@vLj[bKdVjI|QhPz]rMfWfOhYxQp[jKfQlLjRzL`R~L`Q`T|YhLtOzMfPpTfWbVfXt\\r\\rU|TlWnThWbTvNrK|O`LfOdKlPdLnO|IhPrJbUpMtV|LzJjE|h@bVjj@nV|_@vQ|EhCnLhGrTbMfSfMzRjN`StOpSvPp[xYnf@de@~m@nk@zf@ne@jfBzaBh[j\\|Yb\\tPjRpQlTbPtSfPhTnOnTfP|UlO|TtOpV~MbU~OzXhMnUfNvWnMzWlM~WbNxYrQnb@lY|s@nNz_@jHpSrEbNvJnZxIrXvJn\\|Nli@|Hb[lMli@vMjj@nQzu@rOpn@fBjH`HhZrGfWhGfVvHbY|InYzItXzI|VfGpOhL~YfLfXtL|VxM~WrNnWpNnVbJrNfLpQxOtTxNrR|PzSdX~ZpR~RhPrOzRnQze@~_@vf@v_@pf@r_@|e@r`@xSlQvQbQ~YrZnQzSpXd]|OtTzOtUbQdY`Wzc@pRj`@bUhf@rc@~hAvj@tyAbYnt@`Xvr@xWhr@p_@zaAfRtf@bK`Y~Pjf@xPhg@nb@npAz]ndApa@pmAbi@f_Bte@fvAfo@tlB~Y|{@t\\rbApb@doAn\\`bAvVlt@hW`v@ht@xwBlW|u@jVht@bh@h|Ajc@rpAdVxs@vQxi@|Rvk@pZn}@b\\`aAd`@~iA`HpSt\\nbAze@fwArP~f@|FpPxItVvFnNtKtUdIhO|KpR`OnTtRjXlKpNjKfPdK`QhHzMbHhOhIxSpJ`YpIl[lGrZtIzk@lBvPfHh{@xCf^|E|l@xFfm@pEtb@`DlUzEzWrFpVpG`VxGhT`FjNfKfWbHtMxJ~QbLpQ`KlN|OfR`OvOrNbN`SbRfPzOjOpNtO|OjObQvNtQtMhQxLzQ~HnMnLtSnJpQxKnU~HrQ~FnOzDfKnGbTpDvMdCrJbCzKbFnVjExW~Ev]nGlg@pD~YlDhYpBtM`B~JfCnNtGt[`FxShH~W~H|W|IdWbJtUxK`WlKjUxPf`@xJ~UzJfX~H|UrMjc@`V`|@nSxt@lXzaA|Tlx@`Pvk@`Q`n@`Rxp@hRxq@tO|j@lTjw@jRnr@|Up{@zWl`AzXvcAhZzgAhUry@pYbeAdMld@bHbW|@dDjl@twBhWx}@jk@nuBda@~uAvFxQzGtRfJdUnLdVjLbShNfSdNnP|MdO`PvN~YfVtP`NhPbNfP`P|MnO|MrQbN`TpSx]dLbTjJnPlH~LhL`RjJhM|KxNjO`QpNtN~LbLtGlFrBbBfHpF~N~JrY`QpJrEfJpD|QdHvRlGjR`FfShDnS|CnSdBpXzAfo@Fv\\E~dAa@tiAQtg@Utu@]t`@Kjl@Od[ItJRdVz@dLz@hPlAl[hEfX|F~P|EbQpFbSrHn[xMpWdKlh@vTp_@hOn\\bNj[tMbSfIzRjIdRzIbMxGfHhEvJpHzWbTbQnRdP~RtRnW`_@xf@n[tb@f]`e@r]ze@|\\jg@|c@js@x[xj@FJjXng@fSz`@rWlk@zZpq@p_@~z@vb@l`A|Wzk@tWrj@hpAbmChVdg@hJpR`Sh`@t\\jn@tWjf@lVnd@tLrS`LdQfJdMzMbQhM~M~OvO|NtNtj@th@`l@fj@ne@pc@xi@|g@dXvVzWvVhXlWlOvPrMdPtM|Q`KvP~ItQfJtShIrT~HpVpIb[|Pxn@tXzcAdu@bpCpOjl@hQ`p@dRxq@~Lxc@lHvVrInXfHfTxJxWfKfXlJ`UrKvUnIrQvM`WjN|W~JrQdZ`i@lTh_@xg@~|@j[tj@lRn\\vRj]hTn_@zSz^hSn]nKtQ~KjPxJ`NnMbPdOvP`YvXlWvVhXzVbS`SrTfUlVrXbW|YlUfZtM`RjKzNpOxU`MvRvMpT`LrShKhT`KlV|I|UrHbU`EfNnHvYtD`PtDvRnErXfDfU~Lt`ArQrwAnRh|AxLh`A~OhpAnQruAlQtvAzEz_@~BlSjCbRtOdoA|K~{@|Grh@jGpc@xErYvE~XtFvYxFdYfFjVpIx]lG~W|T|_A~V`dArT~}@nVrcAxVjdAxTl~@xTj~@tSl{@`Sdy@lLdf@l_@f}A`VlaAT|@xWxgAjL`f@hd@zjBzYfnApPxq@fPpq@|O|o@pP|r@lJvd@pEhY`Ef]tBxXbBn\\~@fYvAbi@hAhh@VdLHnDfA|c@t@~[\\nOh@zWvCxjAvAhn@xB~bArB|w@x@t]`Apb@zDnaB|DpdBfK|jEXdLR`Gx@`WrAl[dBlZnCfZhDn[nDjZtDnVlFvZfJ~c@fH`YzP~n@zR~r@lQ`o@`Nrb@tNbb@zPja@fLvVhKhSzL|SbT~\\vTp\\xYzb@be@hr@`g@du@r_@zj@lU`]vb@do@lUz\\rWt`@jR|Xf[le@tW|a@`QzYvRj]z^hs@hShc@`Sxc@dSxf@jUxl@lP~b@lMv\\lNx^nInSrQvb@xPx_@bLpVxL`WfTtb@vQn_@jNd[xR`c@bTrh@bPv_@nXtp@z[nv@dVrk@xQlc@x\\xx@z]jz@|[tv@bv@fiBzP~b@pTpf@fy@foBdcAjbC~X|q@dPva@dPpc@dIpUbDjJrBhGbHvSvJrZzOfh@~Q|m@rYzaAdQ`l@xQnm@xStr@z_@nsAhW`_A|P`o@pQhq@dPlm@vM|f@fPvm@`Rfr@dQdp@pQhq@bQvo@vT|y@bPlm@dQpo@jSpv@nR|q@tQjn@zVfz@tNxd@bMtc@hQfp@bVf`ArWlcAlK`b@rNnj@~S|y@bRbt@bUt|@jRxt@h@tBjS`x@dWzbAd`@p{A~WhdA|Rbw@hStw@nQxq@jShx@|Uf_AxXbiAtBhIxIz\\fGvVjL`h@tJzb@dL`i@nEdVtHva@|EdYjIdi@tJhr@vCbUhFxd@~CtZnFzl@rCl\\xCfc@tCpe@|B`d@dBr`@jB~k@tAzk@h@d\\x@rq@h@vs@Xdb@r@p`A~@d~@|@fe@nAhc@rAhZp@bKpAhSrCj\\tE`c@~Ed_@xFr\\~Ivc@jJj_@xHpXrK~\\dKxYpOt^|Or\\zKfSzObX`NzSbPpTtP`TtTjWdNbOhNfNbQnQl[fZvFtFpUxT|T`TnVdVvUnVtXtYx_@xe@bQzUdRjXvWjb@lXjg@nVfg@vTdh@|Rbh@rIxVpNxd@~FzShEjOxCnKhMjf@h]vyAdQpu@lb@zcBtVl{@`Nlc@zNda@|\\v{@nVnh@vVnf@jV|b@tV|_@nZjc@hZf`@xk@|p@zXnXhYrWnWfTvWbSl[vTf[xRzp@b^bo@nXfX|J`WtIlj@lOv[rGpj@vK`e@jFbd@`Ejc@rClf@tBtKd@|j@jBpn@pCj]xB`]dDp^hFbi@nJ|_@|JrYjIxc@bPxUfKx\\bPv`@tT`N|HfQtLnX~Rt[pW~QnPbUvTtVbXbTxVdTtXzYpb@bRlZdXld@~Vhe@dW|f@b\\xp@|_@|x@dV~i@``@r}@vTzj@rXds@vSfk@|\\baAd_@liAbUtt@bZ|bAnYheAt_@jyAx[lpAr[hpAnNlj@fO|g@nNze@xLr`@xLd]`Pvb@~Srh@dPd^dR`a@rZxl@bXbh@pa@lw@lVxf@jPd^fNj]dEfL|DtKtEhM`Zn}@nQdl@rIzWhJjXvIjU|HpRvIpRhK~SbQ~ZvLxRrWl_@`LpNtd@`g@|LnK~X~UfYbRdDvBnBdArJlF~Z|P~VzJfTtHrQzFfj@tL`ZdEbd@nEvn@zFrTlCdOdBbZxF|RzEdPbFdQxFhQhH|WvLbRxJlSjMvTtO~NpLfO~M~MnMjN~NrMpObM|OvSrZbRhZrQb]pPb^fPb^pOn]zPv]bRv\\|KvQjLtQjRpVpH|IdMbOxM`NbMpLnHtGtVbStOlKbPnK~KpGnT`LzUdKnSvHhQvFdZdI|[zGzZpGjY`GpQxE|K|ChD~@`YfJ|LzEfS|Hxd@fRxj@dUzc@zQxb@~Plj@dUvClA`i@lTbw@h[~i@~Tly@t\\b_Ab_@~h@fTxJ`EzPdHnYjL|l@nVte@lRbh@`Tfj@|TtOjGlGhChRvHxj@hUTHp^`O~o@zW`YfLrOpHhQjJbQxJlOxInNlK~O`M|NnM`XlWpXd[vh@dn@~f@ll@`]fa@z`@de@vNfN|LpLhOzKtK`HdLdHhOtHzYnM`b@~PzYpNlKtGzIvFfHvFrHtGBBtBhB~HtInJrKvGbJpKfPtL~UvFzL|FlOdWbz@`AtDnIbXpHxS~GzPfHbOdJjP`GhJzGdKnKdMrKdLvKxJxQzNhPzLzVzQzNtLfM|LnCzCDDhI`JvNvPfXp\\xExFhVrYtVvZbq@`y@rVlZ~[b`@je@nk@ra@`g@lTxWt^xc@|^xc@`M`NbOxNdO|MxMrKfOfLxOdKrQjK~NnHdQtHnYtKrQhF|PbEtQjDjRxCpQlB|QdBnQl@tRTnUCjPe@fF_@vQ}Aj[cDtQiB|Q}AvRgA~Q[rQl@dRnAjPzBlD|@dO|DjObFbPdHjQvJhNxItWpP|PxKtW~OhPzJpa@lUfj@bZ|`@zShj@tY`b@jTji@pZxq@ba@hj@n\\py@~e@la@jVt`@|UnY`PxNfHlLtEhVpI~l@hQ~YzIvYrKrP`I`PhKzNhL`NxLbExExGtHdGxIfA|AxHrKpJnQ`ExH|D|I~CpHtEtMxBrHjDpL|EhSfJ`a@hKza@lHrU`ItStIdRlHpNjIxMnKfPbO~PjNfMjN~LxOzJnP~IxP~GrPfFbZ|Gdf@lJlYrH|PtFxO|G~PtI|OlJbb@dXpYdRte@|Yd`@tVta@dXjh@b\\``@vWtr@jd@hi@v\\|o@nc@z~@rm@h\\`T~w@|g@jx@zh@pbAbp@bp@~b@b]tTvc@pYz[zSrd@`Zx_@hV|t@de@lq@bc@bdAzo@tc@pXtAz@r{@hj@ztAj|@hd@|Y~XdP`s@ba@lq@l`@~h@zZtr@bb@vq@v`@zy@lf@xg@rZ~j@p\\rbA~k@nu@rc@r^fT~v@vc@d`@lT|o@d^vb@lVhj@bZbV|MbRxIzQ`H`RnG|Z`Ilm@zLdj@vKj|@`Qbw@dOlm@nLhe@pKpb@rJ`\\~Jr_@bNrXzLxv@p^b[bOr\\~OpVjNf\\zUh[hVdTjPjk@nc@xuBv`Bdq@rk@n_@r_@bQlRhQpS~_@hf@tVl]jc@np@h_@tk@dg@lv@bk@t{@pf@tu@jb@fo@rf@fu@ne@`t@j~@jqAbm@~y@nv@fgAts@lcApr@|aArk@dy@vo@n~@jz@|kAjn@r|@`PzTvRbXlI|K~QtShNdNpS~QpR~Nb`@|Yd^vXhf@b^vkAx}@hbAtu@ro@lf@xj@dc@jq@pg@vf@p_@~p@zg@nj@nb@`[jVtFlE~SlP`z@`q@n}@du@xj@|d@~gAz}@hf@z`@nr@lk@jw@ro@NLfo@vh@tjAh`Are@h`@pi@xb@rq@zj@~kA`bA`|@~r@xw@xp@bgA~|@l|@xs@rw@ro@pg@nb@`QvNtD|Cjt@hm@ne@z_@j]`Zp`@f_@pP`RbPbS~MfRtPvVbJvOjSv_@pJfSliAbmCte@riA|a@rcA|g@foAfw@flBhP`d@bj@toA`s@~eB`_@p}@jy@fqBrq@bbBl\\tx@l^tz@bZrq@nQda@~LfX`BpD~Pd`@fJtTniBnaEn^dw@zR|a@|Z~m@hZjk@~Qf^ln@piAdY`f@x_@vo@|k@dcA~Xhf@ti@p_Add@`w@z\\zk@~d@xw@lA~BdBrCbi@z{@xS`]~KzNhVvYzb@hf@rd@jg@`a@`c@jdAbiArSzTbDnDdVhXbTfWrR|W|MpTvPlZ|KvTzIzS|IlTvI|UnV~w@tWf}@|X~_A|Utx@~Qfm@hNt`@tOr_@fPh\\vFbLtHrM`NxTdLpPpPrT~SbWrYj\\f_@xb@n_@~b@lw@||@jq@xv@nt@|y@v^za@n`@xc@xmAbvAjS|Tno@vt@xcArkAhF|FnMvNhf@zi@daAlgA~q@nw@dq@dv@||@bcArA|A~G`IfVbYzGvH|d@rh@lTpVxn@ns@x_@nc@nx@v~@jW`ZhUlV`UtRnQfOlWpQvRlLhHfEhNjGrXxMxZnMpXpNbZ`RlEfDnOrL`XfUlVtVnPtRvPvThQxWvNtVnQt]`[`n@nXfi@jSn\\pWrf@pXpd@f[rf@z\\zf@dY``@`QdVha@nh@tTlXvQxT``@`d@pYv[|d@ji@vc@~e@vh@bj@tY~Ydc@pb@vi@vg@z_@j^xU~Src@v_@be@f_@z^hVn^zTtHfE`EzBvOtIx\\hPbf@|Tl`@xQtTtKvWvNtQbL|SrOnSrPxP|OhUfVjLbN``@|h@jW~b@fO`ZjOn[zjAjzCvc@zcAjKpThg@~cAhg@d_Adu@roAzWzb@vWnd@zRnb@`Rxd@tR|m@fNjl@zMbu@dI`t@tDta@Ft@rCpu@`Ahz@[dZc@l[iC~l@gDzh@}Gpn@kHhp@kDzf@yBjf@_@xh@f@xk@rAh_@jC~]tMndAxTrbAdMpa@lNn]tXjj@bc@xn@jVlXbW|TzY~SvY~PlWnK`WbJn\\|Hf[zEzUdBnVr@`YCrZqAfn@qJj`@}Jv^yLvoAc`@|g@gOvg@}KpIyA~NiCpFg@te@mEjW{@dTc@~]v@~YlAnb@`Fzb@xGfDrAdx@pV`LnE`[xNlVfN`hAfs@ph@x]zy@vl@|XjRbWdOz_@~QrP`Gf[|J~OvDtCl@hJpBnI|A|K~AhQjBpNnAxT~@`@BfSXbX@nn@_Bb\\u@j]IdO^zOZf_@jCzI|@rQnCrZzFdS`Ffd@fNvZpKpYlLvO|GtZxNld@pVvTrMdBfAzDbC`QbLlGxElU|PtI|GlDhCbc@d`@tJlIlWlWt^z`@dNrPbYp^tFvHvEbHrU|]j_@jl@tQrXzNrRz_@hd@pBvBtNhOhOfKvg@t]z_@zTnRjKrMnGvt@h]n{@`^fsBzq@~c@xQxAn@dWdN~VhO|[tUzNtMxQlQrPvRpL|NvShZfOjUtKpS~c@|`A~h@fiA`X`i@tAlCzPl[`x@jsAbr@xcA|^dg@`PjShNtQtRhSrNdMnCbC`MzKdPzLt\\lTdn@pYxLnEhLjEd]hJtYdF|]pEfZ`CtZpAdq@nE|r@tJlw@zV`YfLhY|O~XtQdYdT~g@|g@jZh^vUl\\nk@reAhNva@|KfX|g@dtAfjAn{Cr}AtcEn\\`{@|l@fvAx[vr@n^pt@da@jw@ro@thAbpAxxB`oAfwBp|ArjCh`BrpCzFhKtZjj@tb@|x@dh@~cArh@deA~DnI|Rv_@vPn\\rPv\\pr@loAn_@|o@p`@vp@bUpa@vV~g@pZlp@vZbr@dMhYpArC`Qp\\pOxW~Vf^pWpYvU~RbNrJlL~GfQtIvSzI|HnC~H`C`VfG|b@~J`c@hKhe@tOnRvIpSdLxOdK`P~LtSzR|Y~Zn[v]fhAlmA``AtdAbf@xi@bSzUp\\za@vPnU`T|[hR|ZvM`V~^ju@rl@`oA~Uph@jUnf@fTpb@~Rf`@tMfTjN~ThZxd@b^~d@p`@te@fD|Dd~BrnCxWf[dXz[|p@dx@lYl_@pu@nkAbv@pnA~lBz|Cb`BblCj|AjeCpeAlgBhz@`xAhlCjsEjv@~jAjEvGdBdClw@|hAjyBx|Clf@|q@lm@`{@fvAzoBhxBp{Cfz@vkAr|@bnAppBdrCh{@|kAfu@veApjFhoH|MhRdjCbrDfE`GfKvNtiE~cGpy@tjAxy@rjAxuAznBvuA|oBd`@`q@|`@dx@v`@ffAfR|l@dmBnrGzRfp@`fAtnDpeA`nDhrBz}Gf@`BpxBvnHn~GlqUfErN~Rxp@hNbe@|AjFj_AbaDxVvz@hs@lvBxL~[leBxuEts@|kBdn@veBlQlk@nOhk@hLdl@nJfl@t[zcCbZtbCjq@dqFpUnmB`@fDdMbdAbBdNnHlm@hWluBvNdpA|Evd@dCzStDb`@lXpjCnHfeAlFjfAtAvk@p@rk@Jrh@c@|i@qEvr@sCrZqDlXiEtWuE~TeIz[iIhWeIxTaInQ}q@vpAEHgaA~`Bs_@ls@_Wbk@_R`d@aQdf@iHnScH`UgRrl@cQnm@}_@v}AiTvhAyKjp@qJzq@qNplAyGxs@wFvt@mEdu@oFxoA_Bvv@aAfn@M`a@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 148 miles.","announcement":"Continue for 148 miles.","distanceAlongGeometry":238091.109},{"ssmlAnnouncement":"In 2 miles, Keep left to take exit 30.","announcement":"In 2 miles, Keep left to take exit 30.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take exit 30.","announcement":"In a half mile, Keep left to take exit 30.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take exit 30 onto A 23 toward Guarda Sul, Covilhã.","announcement":"Keep left to take exit 30 onto A 23 toward Guarda Sul, Covilhã.","distanceAlongGeometry":306.667}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-5.005366,41.513608],"geometry_index":29594,"admin_index":13,"weight":19.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.164,"bearings":[91,267,270],"out":2,"in":0,"turn_duration":0.021,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,253],"duration":0.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.438,"geometry_index":29602,"location":[-5.012662,41.513382]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":5.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.445,"geometry_index":29603,"location":[-5.012822,41.513346]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[60,236],"duration":2.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.656,"geometry_index":29607,"location":[-5.014703,41.512723]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,228],"duration":22.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.406,"geometry_index":29609,"location":[-5.015515,41.512286]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.019978,41.507787],"geometry_index":29617,"admin_index":13,"weight":4.07,"is_urban":false,"turn_weight":1,"duration":3.25,"bearings":[25,31,209],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,203],"duration":0.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.703,"geometry_index":29620,"location":[-5.0205,41.507021]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[23,200,210],"duration":0.789,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.727,"geometry_index":29621,"location":[-5.020605,41.506838]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,199],"duration":3.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.328,"geometry_index":29622,"location":[-5.0207,41.506641]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,191],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.523,"geometry_index":29625,"location":[-5.02106,41.505737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,188],"duration":17.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.844,"geometry_index":29626,"location":[-5.021169,41.505318]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.02172,41.500562],"geometry_index":29632,"admin_index":13,"weight":10.977,"is_urban":false,"turn_weight":1,"duration":10.523,"bearings":[0,5,184],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,185],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":29634,"location":[-5.022003,41.497737]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,185],"duration":5.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.117,"geometry_index":29635,"location":[-5.02203,41.497493]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,183],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.648,"geometry_index":29637,"location":[-5.022197,41.496009]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,185],"duration":2.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.992,"geometry_index":29638,"location":[-5.022211,41.495817]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,184],"duration":7.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.125,"geometry_index":29639,"location":[-5.022277,41.495246]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[5,185],"duration":12.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.281,"geometry_index":29641,"location":[-5.022488,41.493192]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[30,216,222],"duration":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.438,"geometry_index":29648,"location":[-5.023776,41.489999]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,216],"duration":43.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":38.82,"geometry_index":29649,"location":[-5.023881,41.48989]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.688,"geometry_index":29664,"location":[-5.037664,41.484172]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,242],"duration":4.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.531,"geometry_index":29665,"location":[-5.038297,41.483937]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[59,238,245],"duration":0.797,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.68,"geometry_index":29667,"location":[-5.039549,41.483415]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":27.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.891,"geometry_index":29668,"location":[-5.039786,41.483303]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.047403,41.478881],"geometry_index":29677,"admin_index":13,"weight":115.602,"is_urban":false,"turn_weight":1,"duration":130.977,"bearings":[44,51,231],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,224],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.531,"geometry_index":29695,"location":[-5.084607,41.454717]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[44,221,224],"duration":21.625,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.898,"geometry_index":29696,"location":[-5.084762,41.454598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.088792,41.449485],"geometry_index":29707,"admin_index":13,"weight":5.719,"is_urban":false,"turn_weight":0.75,"duration":5.703,"bearings":[15,20,196],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,193],"duration":1.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.414,"geometry_index":29710,"location":[-5.089317,41.447964]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":119.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":104.844,"geometry_index":29711,"location":[-5.089449,41.447537]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,227],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.961,"geometry_index":29741,"location":[-5.118854,41.42024]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,227],"duration":32.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":28.289,"geometry_index":29742,"location":[-5.11914,41.420042]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[47,224,227],"duration":16.172,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.133,"geometry_index":29747,"location":[-5.127664,41.41412]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,221],"duration":1.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.305,"geometry_index":29750,"location":[-5.131591,41.410977]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,219],"duration":11.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.031,"geometry_index":29751,"location":[-5.131929,41.410681]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.13445,41.408238],"geometry_index":29754,"admin_index":13,"weight":115.398,"is_urban":false,"turn_weight":1,"duration":130.766,"bearings":[31,36,214],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,214],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.812,"geometry_index":29783,"location":[-5.159298,41.373991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":41.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":36.5,"geometry_index":29784,"location":[-5.159727,41.373509]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,196],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.617,"geometry_index":29796,"location":[-5.166979,41.363033]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[16,194,200],"duration":0.375,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.312,"geometry_index":29797,"location":[-5.167167,41.36254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,194],"duration":9.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.547,"geometry_index":29798,"location":[-5.1672,41.362441]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.167976,41.359776],"geometry_index":29801,"admin_index":13,"weight":41.344,"is_urban":false,"turn_weight":1,"duration":44.828,"bearings":[1,10,190],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,220],"duration":22.18,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.398,"geometry_index":29814,"location":[-5.173771,41.348091]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,232],"duration":89.703,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":78.477,"geometry_index":29820,"location":[-5.179924,41.343823]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[49,232,237],"duration":30.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.031,"geometry_index":29846,"location":[-5.199473,41.323346]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.209683,41.319888],"geometry_index":29858,"admin_index":13,"weight":20.766,"is_urban":false,"turn_weight":0.75,"duration":22.25,"bearings":[70,73,253],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[54,233],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.07,"geometry_index":29867,"location":[-5.217079,41.317179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,230],"duration":61.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":55.398,"geometry_index":29868,"location":[-5.217756,41.316789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,196],"duration":1.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.203,"geometry_index":29889,"location":[-5.22981,41.302542]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,195],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.086,"geometry_index":29890,"location":[-5.229946,41.302179]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,204],"duration":536.461,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":469.398,"geometry_index":29894,"location":[-5.231215,41.299136]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,213],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.148,"geometry_index":29987,"location":[-5.31403,41.230288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,212],"duration":2.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.148,"geometry_index":29988,"location":[-5.31476,41.229445]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,207],"duration":9.445,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.242,"geometry_index":29989,"location":[-5.315248,41.22886]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[21,202],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.188,"geometry_index":29992,"location":[-5.316706,41.226467]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,199],"duration":17.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.117,"geometry_index":29993,"location":[-5.316888,41.226129]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[15,195],"duration":124.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":108.602,"geometry_index":29996,"location":[-5.318794,41.221288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,231],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.906,"geometry_index":30030,"location":[-5.348126,41.195724]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":59.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":52.141,"geometry_index":30031,"location":[-5.348422,41.195546]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,224],"duration":11.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.953,"geometry_index":30052,"location":[-5.362824,41.183003]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":14.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.305,"geometry_index":30058,"location":[-5.365813,41.180891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,225],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.555,"geometry_index":30063,"location":[-5.369923,41.178157]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[45,223],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.648,"geometry_index":30064,"location":[-5.370079,41.178038]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,220,224],"duration":25.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.852,"geometry_index":30066,"location":[-5.370794,41.177431]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.376515,41.171788],"geometry_index":30075,"admin_index":13,"weight":265.07,"is_urban":false,"turn_weight":0.5,"duration":302.375,"bearings":[34,40,221],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,218],"duration":28.367,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.805,"geometry_index":30177,"location":[-5.484467,41.140028]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,193],"duration":132.508,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":115.922,"geometry_index":30187,"location":[-5.489191,41.133095]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,200],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.992,"geometry_index":30233,"location":[-5.501716,41.095832]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[20,199,206],"duration":10.789,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.422,"geometry_index":30234,"location":[-5.502027,41.09519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.503057,41.092337],"geometry_index":30238,"admin_index":13,"weight":142.242,"is_urban":false,"turn_weight":1,"duration":161.438,"bearings":[8,13,190],"out":2,"in":1,"turn_duration":0.022,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":5.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.875,"geometry_index":30295,"location":[-5.539724,41.061144]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-5.540749,41.059859],"geometry_index":30297,"admin_index":13,"weight":25.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":28.016,"bearings":[32,212],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,229],"duration":7.141,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.422,"geometry_index":30308,"location":[-5.547336,41.05414]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,227],"duration":95.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":83.688,"geometry_index":30309,"location":[-5.549359,41.052834]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.719,"geometry_index":30339,"location":[-5.570135,41.031173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":77.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":67.727,"geometry_index":30340,"location":[-5.570351,41.031018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,223],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.922,"geometry_index":30357,"location":[-5.586661,41.013848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[43,224],"duration":13.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.977,"geometry_index":30358,"location":[-5.586909,41.013644]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,233],"duration":80.531,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":72.469,"geometry_index":30361,"location":[-5.59044,41.0112]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[69,251,258],"duration":27.578,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.812,"geometry_index":30377,"location":[-5.615665,41.00173]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.626436,41.000429],"geometry_index":30386,"admin_index":13,"weight":13.734,"is_urban":false,"turn_weight":0.75,"duration":14.039,"bearings":[83,85,265],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.631433,41.000094],"geometry_index":30389,"admin_index":13,"weight":24.18,"is_urban":false,"turn_weight":0.75,"duration":24.672,"bearings":[77,86,267],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,272],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.875,"geometry_index":30393,"location":[-5.64015,40.999845]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[92,274],"duration":34.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":33.461,"geometry_index":30394,"location":[-5.640469,40.999854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":1.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.391,"geometry_index":30405,"location":[-5.652549,41.000586]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":8.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.938,"geometry_index":30406,"location":[-5.653044,41.000557]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,267],"duration":1.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.992,"geometry_index":30407,"location":[-5.655923,41.000413]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.789,"geometry_index":30408,"location":[-5.656285,41.0004]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,266],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.094,"geometry_index":30409,"location":[-5.656567,41.00038]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[86,266],"duration":10.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.172,"geometry_index":30410,"location":[-5.65696,41.000358]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[81,258,263],"duration":15.836,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.023,"geometry_index":30413,"location":[-5.66063,41.00007]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,252],"duration":5.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.969,"geometry_index":30417,"location":[-5.666005,40.998894]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,252],"duration":11.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.273,"geometry_index":30418,"location":[-5.667753,40.998473]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.671782,40.997487],"geometry_index":30421,"admin_index":13,"weight":3.234,"is_urban":false,"turn_weight":0.75,"duration":2.633,"bearings":[68,71,249],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.578,"geometry_index":30422,"location":[-5.672638,40.997233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,242],"duration":4.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.367,"geometry_index":30423,"location":[-5.672836,40.997169]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,234],"duration":12.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.781,"geometry_index":30425,"location":[-5.674254,40.99655]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.677377,40.994211],"geometry_index":30430,"admin_index":13,"weight":47.617,"is_urban":false,"turn_weight":1,"duration":47.828,"bearings":[30,37,215],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,214,217],"duration":1.227,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.203,"geometry_index":30447,"location":[-5.687627,40.984196]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[34,214],"duration":14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.648,"geometry_index":30448,"location":[-5.687868,40.983925]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,202],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.875,"geometry_index":30452,"location":[-5.690097,40.980559]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,204],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.375,"geometry_index":30453,"location":[-5.690218,40.980334]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.690568,40.979734],"geometry_index":30454,"admin_index":13,"weight":42.68,"is_urban":false,"turn_weight":1,"duration":42.766,"bearings":[18,24,203],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,213],"duration":15.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.891,"geometry_index":30463,"location":[-5.69711,40.969966]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[22,199,203],"duration":16.188,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.758,"geometry_index":30470,"location":[-5.699516,40.966497]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.701431,40.962646],"geometry_index":30475,"admin_index":13,"weight":1.484,"is_urban":false,"turn_weight":0.5,"duration":1.016,"bearings":[11,25,208],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":12.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.57,"geometry_index":30476,"location":[-5.701577,40.962441]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,220],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.422,"geometry_index":30480,"location":[-5.703821,40.959789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[40,221],"duration":10.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.727,"geometry_index":30481,"location":[-5.70537,40.958382]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[58,236,245],"duration":4.242,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.008,"geometry_index":30486,"location":[-5.707656,40.956887]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,247],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.438,"geometry_index":30489,"location":[-5.708646,40.95647]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,251],"duration":32.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":29.969,"geometry_index":30490,"location":[-5.709003,40.956358]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[102,280],"duration":1.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.484,"geometry_index":30503,"location":[-5.718081,40.95696]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,276],"duration":10.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.992,"geometry_index":30504,"location":[-5.718617,40.957034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.721742,40.957219],"geometry_index":30508,"admin_index":13,"weight":26.289,"is_urban":false,"turn_weight":0.75,"duration":27.641,"bearings":[87,92,268],"out":2,"in":1,"turn_duration":0.026,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":0.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.633,"geometry_index":30516,"location":[-5.730588,40.955741]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,244],"duration":127.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":115.008,"geometry_index":30517,"location":[-5.730796,40.955679]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.828,"geometry_index":30572,"location":[-5.770936,40.94232]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.297,"geometry_index":30573,"location":[-5.771122,40.942121]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,215],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.203,"geometry_index":30574,"location":[-5.77164,40.941573]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,216],"duration":37.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":32.688,"geometry_index":30575,"location":[-5.771904,40.941288]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,263],"duration":1.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.438,"geometry_index":30589,"location":[-5.782356,40.935891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,265],"duration":4.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":4.25,"geometry_index":30590,"location":[-5.782906,40.935841]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[89,272,279],"duration":25.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":22.523,"geometry_index":30592,"location":[-5.78456,40.935782]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.793604,40.936092],"geometry_index":30603,"admin_index":13,"weight":115.039,"is_urban":false,"turn_weight":0.75,"duration":130.641,"bearings":[76,81,261],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":10.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.844,"geometry_index":30622,"location":[-5.84202,40.922433]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":10.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.266,"geometry_index":30624,"location":[-5.845643,40.921142]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,245],"duration":22.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.664,"geometry_index":30625,"location":[-5.849446,40.919792]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,244],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.703,"geometry_index":30629,"location":[-5.857489,40.916903]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[63,240,249],"duration":13.289,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.609,"geometry_index":30631,"location":[-5.858176,40.916642]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.125,"geometry_index":30638,"location":[-5.862095,40.914485]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,224],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.117,"geometry_index":30639,"location":[-5.862737,40.914019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[44,222],"duration":34.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":30.18,"geometry_index":30640,"location":[-5.863047,40.913776]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[67,248],"duration":4.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.742,"geometry_index":30654,"location":[-5.872751,40.907713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,255],"duration":0.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.336,"geometry_index":30656,"location":[-5.87425,40.907323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":35.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.055,"geometry_index":30657,"location":[-5.874393,40.907295]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,256],"duration":46.07,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":40.312,"geometry_index":30670,"location":[-5.887518,40.906363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,249],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.734,"geometry_index":30679,"location":[-5.903504,40.901619]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,248],"duration":6.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.992,"geometry_index":30680,"location":[-5.903793,40.901535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,248],"duration":179.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":156.836,"geometry_index":30681,"location":[-5.906184,40.900798]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":21.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":19.664,"geometry_index":30695,"location":[-5.968521,40.881351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":0.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.594,"geometry_index":30700,"location":[-5.975549,40.878139]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":29.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.484,"geometry_index":30701,"location":[-5.975771,40.878032]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,245],"duration":18.867,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.977,"geometry_index":30708,"location":[-5.985808,40.873565]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,243],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.852,"geometry_index":30709,"location":[-5.992414,40.871237]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,245],"duration":41.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":35.914,"geometry_index":30710,"location":[-5.992731,40.871115]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":0.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.57,"geometry_index":30713,"location":[-6.007073,40.866021]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,245],"duration":111.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":97.891,"geometry_index":30714,"location":[-6.007289,40.865941]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":0.625,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.562,"geometry_index":30732,"location":[-6.045711,40.851333]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,222],"duration":12.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.602,"geometry_index":30733,"location":[-6.045862,40.851208]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[59,238],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.625,"geometry_index":30739,"location":[-6.049354,40.848876]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,243],"duration":16.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":14.984,"geometry_index":30740,"location":[-6.049576,40.84877]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[88,268],"duration":127.133,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":111.219,"geometry_index":30749,"location":[-6.055464,40.847604]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.812,"geometry_index":30774,"location":[-6.100304,40.831062]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":45.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":39.742,"geometry_index":30775,"location":[-6.100592,40.830898]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":0.445,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.383,"geometry_index":30779,"location":[-6.114607,40.822933]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,233],"duration":26.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":23.555,"geometry_index":30780,"location":[-6.114743,40.822856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,240],"duration":61.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":53.688,"geometry_index":30786,"location":[-6.123037,40.818363]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,245],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.547,"geometry_index":30799,"location":[-6.144101,40.810564]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[65,249,256],"duration":21.219,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.562,"geometry_index":30800,"location":[-6.144712,40.810353]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.152843,40.80893],"geometry_index":30808,"admin_index":13,"weight":12.109,"is_urban":false,"turn_weight":1,"duration":12.703,"bearings":[77,85,269],"out":2,"in":1,"turn_duration":0.01,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,273],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.562,"geometry_index":30811,"location":[-6.157525,40.809053]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":222.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":194.992,"geometry_index":30812,"location":[-6.158155,40.809078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[70,247],"duration":13.852,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":12.445,"geometry_index":30868,"location":[-6.235296,40.788919]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.781,"geometry_index":30873,"location":[-6.239707,40.787349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":14.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.234,"geometry_index":30874,"location":[-6.239979,40.787241]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,241],"duration":109.82,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":98.836,"geometry_index":30878,"location":[-6.244476,40.78528]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,237],"duration":0.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.82,"geometry_index":30907,"location":[-6.281166,40.773574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":0.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.391,"geometry_index":30908,"location":[-6.281441,40.773438]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,238],"duration":30.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.039,"geometry_index":30909,"location":[-6.281568,40.773378]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,256],"duration":30.414,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.609,"geometry_index":30921,"location":[-6.291241,40.770176]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[68,246],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.43,"geometry_index":30931,"location":[-6.302132,40.768209]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,246],"duration":99.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":87.203,"geometry_index":30932,"location":[-6.302296,40.768153]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,229],"duration":4.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.961,"geometry_index":30947,"location":[-6.333995,40.7505]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,230],"duration":18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":15.75,"geometry_index":30948,"location":[-6.33522,40.749688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,253],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.547,"geometry_index":30956,"location":[-6.34085,40.747271]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,255],"duration":7.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":6.68,"geometry_index":30957,"location":[-6.341854,40.747044]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,249],"duration":2.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.523,"geometry_index":30959,"location":[-6.344477,40.74651]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[69,247],"duration":95.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":83.367,"geometry_index":30960,"location":[-6.345421,40.746242]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.766,"geometry_index":30973,"location":[-6.372446,40.727922]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":57.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":50.258,"geometry_index":30974,"location":[-6.372668,40.727759]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,208],"duration":0.656,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.57,"geometry_index":30983,"location":[-6.387818,40.71637]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,208],"duration":27.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":24.383,"geometry_index":30985,"location":[-6.387935,40.716204]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[22,202],"duration":55.641,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":50.062,"geometry_index":30991,"location":[-6.392061,40.708725]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,257],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.117,"geometry_index":31010,"location":[-6.406111,40.699266]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[77,256],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.656,"geometry_index":31011,"location":[-6.406902,40.699132]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,250],"duration":30.734,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":27.641,"geometry_index":31013,"location":[-6.409021,40.698713]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,215],"duration":56.711,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":49.602,"geometry_index":31029,"location":[-6.417952,40.693789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,197],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.664,"geometry_index":31044,"location":[-6.428056,40.680154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,195],"duration":33.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":29.742,"geometry_index":31045,"location":[-6.428246,40.679669]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,204],"duration":32.508,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":28.438,"geometry_index":31056,"location":[-6.431592,40.670617]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.539,"geometry_index":31062,"location":[-6.437321,40.663022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,212],"duration":36.633,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":32.047,"geometry_index":31063,"location":[-6.437862,40.662358]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[73,257,265],"duration":24.68,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":21.586,"geometry_index":31080,"location":[-6.446835,40.655368]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.454865,40.65278],"geometry_index":31092,"admin_index":13,"weight":155.664,"is_urban":false,"turn_weight":1,"duration":176.789,"bearings":[42,50,227],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,242],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.734,"geometry_index":31164,"location":[-6.502954,40.623971]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[62,241],"duration":36.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":31.789,"geometry_index":31165,"location":[-6.50322,40.623863]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[25,201,208],"duration":14.562,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":13.086,"geometry_index":31184,"location":[-6.513207,40.616352]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.514048,40.612633],"geometry_index":31193,"admin_index":13,"weight":36.391,"is_urban":false,"turn_weight":0.75,"duration":38.555,"bearings":[175,352,358],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.477,"geometry_index":31208,"location":[-6.513411,40.60229]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,190],"duration":0.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.414,"geometry_index":31209,"location":[-6.513437,40.602158]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,190],"duration":18.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.023,"geometry_index":31210,"location":[-6.513463,40.602044]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[33,216],"duration":19.656,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.664,"geometry_index":31220,"location":[-6.515622,40.597289]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":7.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":7.414,"geometry_index":31227,"location":[-6.520578,40.593661]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[49,229],"duration":10.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.898,"geometry_index":31228,"location":[-6.522562,40.59233]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,231],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.625,"geometry_index":31230,"location":[-6.52524,40.590571]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,233],"duration":45.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":42.938,"geometry_index":31231,"location":[-6.525687,40.590294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[65,244],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.656,"geometry_index":31240,"location":[-6.539422,40.584014]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,246],"duration":58.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":52.812,"geometry_index":31241,"location":[-6.539648,40.583932]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,252],"duration":0.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.242,"geometry_index":31252,"location":[-6.561481,40.578125]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":20.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":18.289,"geometry_index":31253,"location":[-6.56158,40.5781]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[106,286],"duration":128.891,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":112.773,"geometry_index":31264,"location":[-6.568845,40.577889]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[120,298],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.219,"geometry_index":31296,"location":[-6.614247,40.593558]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[118,297],"duration":89.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":78.688,"geometry_index":31297,"location":[-6.61467,40.593729]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":3.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.117,"geometry_index":31320,"location":[-6.645874,40.593327]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":2.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.797,"geometry_index":31321,"location":[-6.647105,40.593164]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.414,"geometry_index":31322,"location":[-6.64782,40.593069]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":0.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.273,"geometry_index":31323,"location":[-6.647989,40.593047]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.289,"geometry_index":31324,"location":[-6.648089,40.593034]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":10,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":8.75,"geometry_index":31325,"location":[-6.648595,40.592966]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[80,260],"duration":44.383,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":38.828,"geometry_index":31326,"location":[-6.652088,40.592501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,263],"duration":4.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.508,"geometry_index":31333,"location":[-6.667901,40.590447]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,265],"duration":77.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":67.961,"geometry_index":31334,"location":[-6.669273,40.590323]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[66,243],"duration":2.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":2.281,"geometry_index":31362,"location":[-6.699208,40.592267]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":1.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.414,"geometry_index":31363,"location":[-6.70013,40.591911]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.700695,40.591693],"geometry_index":31364,"admin_index":13,"weight":0.242,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.281,"bearings":[63,243,256],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[63,243],"duration":12.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":10.797,"geometry_index":31365,"location":[-6.700774,40.591662]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[76,258],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.148,"geometry_index":31371,"location":[-6.704712,40.590463]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[78,263],"duration":12.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.023,"geometry_index":31372,"location":[-6.705161,40.590389]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.709534,40.590345],"geometry_index":31377,"admin_index":13,"weight":8.852,"is_urban":false,"turn_weight":0.75,"duration":9.266,"bearings":[87,94,275],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,269],"duration":158.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":138.344,"geometry_index":31381,"location":[-6.712877,40.590492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,269],"duration":6.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.328,"geometry_index":31412,"location":[-6.769831,40.587544]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,271],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":0.531,"geometry_index":31413,"location":[-6.772033,40.587514]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[91,271],"duration":13.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":11.867,"geometry_index":31414,"location":[-6.772251,40.587518]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,287],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.375,"geometry_index":31420,"location":[-6.776781,40.587965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[107,293],"duration":48.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":42.328,"geometry_index":31421,"location":[-6.777292,40.588081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[103,279],"duration":29.664,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":26.672,"geometry_index":31432,"location":[-6.791917,40.593484]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[105,286],"duration":18.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":16.555,"geometry_index":31441,"location":[-6.801871,40.594319]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[125,309],"duration":10.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":9.094,"geometry_index":31446,"location":[-6.807248,40.596351]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,321],"duration":48.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":45.242,"geometry_index":31449,"location":[-6.809704,40.598152]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,331],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.555,"geometry_index":31465,"location":[-6.814963,40.609379]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[148,328],"duration":3.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.555,"geometry_index":31467,"location":[-6.815565,40.61018]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,321],"duration":5.352,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5.062,"geometry_index":31469,"location":[-6.816248,40.610951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[138,315],"duration":3.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":3.383,"geometry_index":31471,"location":[-6.817382,40.611962]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[135,310],"duration":1.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":1.414,"geometry_index":31472,"location":[-6.818212,40.612586]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[130,309],"duration":3.898,"turn_weight":5030.122,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":13,"out":1,"weight":5033.828,"geometry_index":31473,"location":[-6.818583,40.612824]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,302],"duration":5.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.555,"geometry_index":31475,"location":[-6.819549,40.613399]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[119,295],"duration":10.75,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.195,"geometry_index":31478,"location":[-6.821129,40.614123]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[113,292],"duration":18.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.719,"geometry_index":31481,"location":[-6.824365,40.615192]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[112,290],"duration":11.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.336,"geometry_index":31482,"location":[-6.830048,40.616926]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[110,286],"duration":12.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.469,"geometry_index":31483,"location":[-6.833814,40.617951]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[100,278],"duration":8.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.352,"geometry_index":31487,"location":[-6.837741,40.618668]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.840664,40.618946],"geometry_index":31489,"admin_index":14,"weight":28.734,"is_urban":false,"turn_weight":15,"duration":14.875,"bearings":[96,271,291],"out":1,"in":0,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.845784,40.618901],"geometry_index":31496,"admin_index":14,"weight":7.328,"is_urban":false,"turn_weight":0.5,"duration":7.398,"bearings":[75,86,264],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,262],"duration":26.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.703,"geometry_index":31498,"location":[-6.848679,40.618649]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[81,262],"duration":14.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.492,"geometry_index":31500,"location":[-6.858956,40.617512]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,262],"duration":128.219,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":112.195,"geometry_index":31501,"location":[-6.864543,40.616952]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,259],"duration":6.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.344,"geometry_index":31530,"location":[-6.913855,40.611748]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[79,259],"duration":20.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":18.25,"geometry_index":31531,"location":[-6.916265,40.611408]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[72,247],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.695,"geometry_index":31534,"location":[-6.923434,40.610242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,245],"duration":37.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":32.43,"geometry_index":31535,"location":[-6.92403,40.610048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,269],"duration":37.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":32.828,"geometry_index":31542,"location":[-6.935632,40.607271]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[82,265],"duration":0.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.727,"geometry_index":31554,"location":[-6.946524,40.604487]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[85,266],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.594,"geometry_index":31555,"location":[-6.946782,40.60447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[86,269],"duration":5.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.055,"geometry_index":31556,"location":[-6.946983,40.604458]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[91,271],"duration":4.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.32,"geometry_index":31558,"location":[-6.948617,40.604452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.950012,40.604478],"geometry_index":31559,"admin_index":14,"weight":6.609,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.578,"bearings":[91,269,296],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[89,271],"duration":5.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.742,"geometry_index":31560,"location":[-6.952524,40.604457]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.954321,40.604474],"geometry_index":31561,"admin_index":14,"weight":11.695,"is_urban":false,"turn_weight":1,"duration":12.242,"bearings":[73,91,270],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,268],"duration":56.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":49.828,"geometry_index":31563,"location":[-6.958499,40.604461]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[108,286],"duration":5.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.172,"geometry_index":31569,"location":[-6.977506,40.606649]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[104,283,290],"duration":17.242,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.5,"geometry_index":31571,"location":[-6.979403,40.607042]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.985351,40.607885],"geometry_index":31576,"admin_index":14,"weight":113.961,"is_urban":false,"turn_weight":0.5,"duration":129.672,"bearings":[87,98,280],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":11.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.055,"geometry_index":31603,"location":[-7.029826,40.604709]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[94,275],"duration":83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":72.625,"geometry_index":31604,"location":[-7.033972,40.604937]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":5.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.797,"geometry_index":31615,"location":[-7.063073,40.604669]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.064957,40.604835],"geometry_index":31616,"admin_index":14,"weight":21.516,"is_urban":false,"turn_weight":15,"duration":7.242,"bearings":[97,277,286],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":1.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.172,"geometry_index":31617,"location":[-7.067339,40.605045]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,276],"duration":6.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.078,"geometry_index":31618,"location":[-7.067785,40.605085]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[96,277],"duration":11.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.422,"geometry_index":31619,"location":[-7.070434,40.6053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,267],"duration":315.602,"toll_collection":{"name":"Pórtico do Nó Pinhel / Pínzio","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":284.039,"geometry_index":31622,"location":[-7.074981,40.605608]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.117,"geometry_index":31685,"location":[-7.188038,40.576877]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[80,260],"duration":9.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.719,"geometry_index":31686,"location":[-7.188494,40.576816]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,240],"duration":50.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":45.008,"geometry_index":31690,"location":[-7.192184,40.576108]},{"bearings":[58,234],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":31702,"location":[-7.210711,40.571894]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Guarda Sul"},{"type":"text","text":"/"},{"type":"text","text":"Covilhã"}],"type":"fork","modifier":"left","text":"Guarda Sul / Covilhã"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"30"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A23","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 23"}],"type":"fork","modifier":"left","text":"Exit 30 A 23"},"distanceAlongGeometry":238131.109}],"destinations":"A-11 Zamora, A-62 Salamanca Portugal","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 80 toward A-11 Zamora/A-62 Salamanca Portugal.","modifier":"slight right","bearing_after":270,"bearing_before":271,"location":[-5.005366,41.513608]},"speedLimitSign":"vienna","name":"","weight_typical":6994.32,"duration_typical":7823.117,"duration":7823.117,"distance":238131.109,"driving_side":"right","weight":12024.445,"mode":"driving","ref":"E 80","geometry":"ogxdnAjbopHQ`mCJtw@d@deARx`A\\~[x@v[zBx_@zDt]fA~H`ErYzFzZ`GtV|Ojf@|LhZjLlV~Yrg@lVfZj\\r]hlAdeA|v@rq@jj@hf@b@^rVhRlOjKfRfLdK~ElJpEhK|DhG~BhThHzYdHdYxE`Z`Dba@~Btr@nDrbApF|_@fBxrA`HzjAlFtcBfIfNt@l[dBh_AfF~JZtb@bCprA`Gxk@bDvh@tCvXvDje@pKfXlJ`UtKpT`MxWhRxEpErNbN|QpSnRjWlMtRbV`b@~Qj`@tShi@lMpb@nPtp@n`@jeBni@j_CzZbtAf[xuAbc@zmBzXbgAtMpf@dWnz@lGvQ~ExMfHrRxZlv@lWrk@pGtMp`@jx@hiApxBzFzKfk@|hAhm@|jAvxA|rC|oD`cHleJvoQxeAfrBfiArzBtsC|sFnNrVfXvd@pn@r`AhxAvwBdhChyD|IxM~q@fdArfA|_Bz|@|sAbd@|p@zXdb@bQpVlFtHvY|]rXp[xQnRnXfXpy@|p@rM~I|[vRre@nWzShKv[rMn_@nNfh@`Opb@fJfQnDtYfGzXhFrdA`Tb|@vR~j@rNt[nJn]bK`u@xXnl@bWzn@v[v^xSdh@r[zb@hYpVzQth@db@dT~RhTdRba@r`@xWpY|SdUri@to@BBvm@tw@dt@~cApp@laAn{BlqDjzBrsD`nAfrBbnA|rBdlDr{FzeFpoIjKzPxiArkBtnCrpEru@`nAh|@vsAtb@tq@|aBz}Bhc@rl@d|@|gAnQbTpx@z|@`v@bx@`g@pe@rqAziAts@xi@nf@d^tb@rYjd@pZvs@fc@jc@pVhg@tWvh@rWvh@xU|xAhn@noA|f@p`B|l@z_Bfn@zuA`l@bqAxl@j}@ne@v|@nf@d{@hi@`x@vh@px@bm@pr@~i@leBhvAj~AtsAnbBzvAfxCldCzfDxrCjFnElhDzrCb]xYvqAjhAldCzqB`q@zg@zr@~e@dj@p]lu@`c@hs@n\\vx@j^rd@vQnUjIrj@|QdXpHx]vJdE`At|@zSxp@bM`v@nLxyBrZr{Bj_@ru@jPdq@dR|`@tLhf@`Rln@~Wfg@jXfj@v[~g@r]ds@jj@rl@bj@`b@rc@rp@hv@nf@tp@rd@~s@bo@xgAfq@voArh@~gA~e@v`A`m@diArw@ztAdT|]x_@nj@~Wz]`\\ra@fs@zv@`y@lt@`t@tj@bs@`e@`aBr`AjhB|dAnpEhiCx~Ap`Ahg@l\\v`@~YjYtT|c@~`@f[r\\lQfRhS`W|e@fo@hXdb@dWzc@~KdSz[pp@|Zxu@pJzWnKrZlWtz@bRbu@~Ohv@fO~z@fKro@`O`bAvN|iAjMn|@bKbs@tTjrAxOjw@pM`j@tLnc@hP~i@pQpi@xVlo@v]xw@jWhi@dW|d@jZvf@|_@hj@jYj^~j@xq@zr@`x@b{AhbBhaAvgA|eAxkAnW|VhYxWt^dY~YbTvO|I`UrM|d@pSnW`K`_@fLjuAt^|~@vVd|@hTtUnGxx@dSbb@|Lzh@~Pjv@dZzPjIlRlJlm@`\\`s@re@li@pb@jk@zf@rnAriAh_DxuCjvArpAd{AfuA~hDn~Cv~@v{@p|@||@bj@ln@|k@rr@|g@~q@bl@tz@`Znd@nYje@plAbmBzg@xw@n\\be@zc@bk@rc@fh@pl@jo@z^b^l]t\\j~@xu@jxB|gBfVnTnXtWz`@`c@z`@de@xRjWnVv\\td@jr@ff@j|@j^|q@bj@bgAf`@hv@db@pv@r]fj@hXpa@|LtPt^`d@zp@~t@nmC~lCpc@~d@j_@pb@tYh^lCdDf_@|g@b[nd@|\\ri@hSf`@rY`k@jThe@lQhd@bRff@zU~p@jc@`wAdu@rhCzj@fhB~_@~fAjZns@zQpa@|d@~_A|[bj@lc@jr@x_@di@jUbY`WxZfUjWl_@ta@rb@lc@vjAdmAfkCroCxtFxzFphAhjA`q@ps@lt@d{@tu@lbA~u@jhAtc@vs@x~@z_Bf}@zzAhj@p~@f`@pl@b[~_@~Yz`@bo@ps@bVjWf]h[ts@rl@pc@n]tp@ja@tq@h^dp@lXbTjJtnA`c@jnAd]nnCzs@tc@xKzv@vShpAf\\`pAv\\lkA|[`t@tUzo@hVhr@rYtVfM`^`Rz]bTjOfJxi@x`@rTvPda@|]td@zc@t_@xa@b]h`@tQ`TxPfUtXr`@hY|d@fl@zcAj`@lu@|]ts@l{@bkBfg@~eAr~@`qB`t@l}AttBbqEbuAfyC|wAf}CpkAlgCfZjo@bJnQxKnUxk@`hA`Rr]xRb]fb@rq@xYrd@nf@nr@zW~]nXp^`UbXni@bp@`_@va@xi@ri@fb@ha@|m@dk@ngAr`ArlAjfAtw@zt@df@nh@f^rb@rc@jj@dBvBtVz]`Xn`@v]rj@j\\`k@|R~]dV~b@|l@phAng@r}@zd@ft@jVl^lFvHxOxSbTzV~Wd[jg@ji@jbAdbAvfA~cAv^b]dd@lc@fm@ho@bN~NzP|Rbj@hq@~\\lc@pXha@v_@`m@fV~c@vTdd@pTfe@lQ|d@rO~a@`Rxk@xOti@tLtc@zPfw@tNtu@`Kps@hK~v@fIf`A|Fry@pDpaAbBf}@v@bz@E`x@e@niA{@jeAiDp`BmDfcBoDxbB_CpwA_B`sBNx`A~@dz@pBdpAhCbu@pJ|bBhNpaB|J~cAfNtiAra@laDjUfbBbW~oBnItt@bJx|@tKntAnFfx@hEfx@xF~aBtBxt@dA`r@rB`nB`Dv|C|AztAtBb~@jCt|@bD`_A|E``AdHb_A`Ih|@pInt@pOldAfIje@rJbg@lOlr@bM`h@xPzl@`Rrn@nXbx@jTpi@fTne@zc@z_Al_@ls@R`@`f@~z@|h@p{@|x@lrAz~@|wAr{@hwAnd@|w@nZxi@h\\do@vq@fxAfXvo@hZrv@xTdn@d\\fbAxi@rjBt_@pxAxf@toB|c@njBvg@roBvo@|_Ctq@v|Bxa@jmAz^xbAd\\rx@dOt\\j]ns@rWfh@xXtf@nb@ps@he@rp@t^ff@pYz\\nbAfdAvcAxz@z\\pUz[bShWhOf\\~Qdn@vYnh@dTrd@fPly@~Ubo@tMrl@tKlz@~Jhf@xEpi@~DpoAjF~e@h@zk@r@ny@QpmBmCxmBgGpnAyEtpAaF~u@kCns@cBpm@w@z_@Opw@d@hs@rAh]tAx`@jCtYzBz]lEh\\rEtFv@ve@zIp`@|Ifq@hRdi@zQf]xMd[`N~^pQte@lWhq@~a@fd@h[p`@|Ydb@h\\laAdy@bgCt}BljAldAhhA`_Atx@fm@ly@zh@ty@rd@vs@v[vChAbg@lRng@hQ|s@~Rbj@rLvh@lKteAtOdbAvLrwAzNvkApLlbBdSljApRhn@dNle@hM`e@hN`q@`W~UfLrW`Nlo@|_@dm@tc@r[tXl]j\\vk@~p@~TpYvR~XxTr]hQ`[zPx[bP`]|Svf@|Svi@lSjm@pTtt@tUv}@bNrl@fWflAfb@j|Bz_@vxBf^hoBh]vcBdQ~w@fQ`s@xQbq@dN~d@hPhg@hO~a@fPxb@bOf^dWfk@hTfc@nV|d@xQt[`Rh[vk@xz@ve@~m@bSrUvd@rg@xd@~c@td@pb@tWvTr`@d\\xy@fo@toAz_A|~@lq@jOrLfx@bn@hc@b`@p^p]x\\l]lYv\\|e@rl@fU`\\xUp]je@ju@lRr]fa@lq@rpAl}Bzl@~`Axn@hcAnp@j_Afo@hy@hr@dx@bl@lm@nm@fk@zb@d_@ja@x[fd@x\\b_@~Wfa@hWzc@pXpg@xY|z@ne@`z@~c@raAvh@n`Alj@xn@n`@xp@~d@nj@jb@zx@br@dx@tv@ta@tc@n^lb@t\\bb@vX`^zc@jn@li@tx@zz@jrAtHnL`gApcBdc@jp@pe@`p@haAboAdr@bw@bk@~k@|p@jn@xw@bp@bs@~h@l|A|cAjzA~_AneB~gA|oAl}@dkAx~@jm@lj@d~@``Axr@|y@vKnN|p@n_A|k@z~@zx@h{Av\\xs@~X|p@f^r~@jUbr@n[pcAzXl`AjRno@he@hiBxj@f|Bl{@zkDriBbjHnu@pwCt]lxAvW`eAd^b_BlQx_AbJ~j@vGre@fGze@nEbc@`K|mA`HbnA`FxzAxH`hCtGr_CnKprD`D|gAjBxz@fBfuA|HhgHjAvqA?nnAQ|RgAnm@kBho@cF~hAoHptAwQjvDiDdaAiAdj@o@v~@Llz@fAvo@t@|b@x@|]~G|rDXrUf@rPj@pW|BzmAjDhlAtGdhAjE|g@bHdm@nHdk@no@rkEhYflBd\\vwBlMd{@~PzeAzNnt@~BjKnNbe@dVnq@|]|v@dT`_@hXr`@pXh]dj@fj@hF~EdYvThY|Rj~@rh@`n@v]bi@n]np@~g@`c@l`@fh@|k@rf@jn@~RpYb`ArzAnm@b`A~\\vh@dXt^~QjVhh@di@|O`NpRjPnb@z[bG~EdrC`uA`MpFnd@zThoC`pAlkClmAle@bUvf@bWji@|Z|h@n]jh@ha@tx@~p@d_Aj{@h^jZ~\\`XpZhTv_@rUtZdPbW`Mjj@vU~|@t[xu@|Wfp@nVj^jOfj@dYxKbHta@rWj^hWnh@ha@dy@~w@|vAx_BdO|QfXb_@xR~\\jStc@xJbXfKlW~Jj_@x@`D~EhUbBbKvBbNlFr`@bEvi@tA~XrAbl@K~j@eB`d@aEji@iFdg@{ShxAsM|hA}Iv`AsCn`@iErhAeAh_@_Ahq@a@`f@d@|j@rC|rAzEdhAdKbuA|Gbo@dH|i@rVvzAvXzqAzB~KnX`cA|\\fhAj^naA~Sdg@pShd@~Rba@jRv^rvAjeCn]bp@~Wtj@tSlg@pLl[pRlk@|Jh[pI|YpNxi@rLli@jHj^fGn]jLrv@|Ips@|Fdl@bEnj@jCdc@vB|f@~Alf@~@vo@d@rb@Dhd@s@zl@}Ajk@qBfo@{Bbl@gD|r@oBvk@iAjn@]lx@l@xm@zAvg@jDzk@pDzf@nIhw@|Inj@xKrm@zNbo@bNxf@tTtp@zTnj@z[dq@r`@hq@`f@tp@`a@he@nd@bd@je@`b@nc@za@lKrJfa@j_@xPnObfAhbAvh@xj@hZv_@zVp_@~Vtb@`Ytj@d\\bx@bWlv@~Nri@nLhi@|Hla@tLfz@nHps@fFtt@bBja@~A`m@Thx@k@nk@yA`j@yGvpAuHbzAs@vZuBdt@[hs@?|_@l@xa@bBj|@|Cli@bDth@nHd{@~Jfx@lJzk@hiBj|Kn@vDly@jbFb]`uBfS`kAjaBl_Kzi@heDrf@lyCxm@~uDnh@zpC~a@lrBf`AfyDjWrdAx|B`aJjnA||Efn@dcCl`@f}AjsAtlF|FjUv{B|{Ile@liBlH|WzEfQlHtW`V`s@zLx[pOf_@hSfb@dWri@xa@dr@~@vAb\\bg@dNjRxV|ZtYt\\lt@~y@zh@jn@ld@xn@hUt\\lQ|Zr\\nn@vSvc@rT`i@bc@xmAdNpe@hNzh@hOnr@hCnL`SdoAv@|GjJft@nG|q@zF|}@`Dpy@xAb{@`@zy@{AjkCO`oA`BncAfBpr@~Er}@dDdd@lEhb@nFbg@vHvh@zN~z@|Q`_Ald@~wBrb@~uBtoAdbGzgAvjFxPfy@fD`Q`m@ltCdZnwA`y@n{Dtg@baCl~Bv~KtcAt}El{@xaE`iHtg]r{DvcRp|AdoHh|AdmHbs@`hDrZdqA|XhkAtt@hkCjZfcAd[baArb@zmAxlAt`Dv^h_AtEzLbVfo@JXtfAxrCve@foAp\\t`A~{@jnCtu@blCnpCz{KrFxRd}AdiGhfBp_HzwBrtI~CnLlq@vlCtvAjuFd`ApvD|Ur`A|dBb|GzcBnyGvaBtyGdx@fkDnb@zlBvx@poDf[vsAbYvcAp]~bAvXvq@zg@pdAhe@hv@lSt[lWf\\xFlHbp@hz@~Tx\\nRtZhTza@nTtf@hKzYrEzLdR~p@`L|c@`QjdAtHpn@lD`j@|Bva@z@|VTxY\\pb@`@~g@Ph~@dBx`AbDxr@pGvx@rL|~@nM|v@RnAxJhd@dPvm@zVv|@d{@zwCxRhq@poAtlEp_DtxKdbDl|KxrApvE~lAbdEpq@f~Bdf@b|Apn@dgBre@zlAfc@peAve@rgAtc@h_AfI~P`cCfgFznDntH~vBfqEzdA|zBxCnG|Qr`@`lC~uFj^ly@jc@~eAn_@h`ApS~i@f\\|`A|Npb@tKl\\`a@rqAt]zlAtv@zxCz|@pmDnbAp}Dj|@pkDxl@j_Cjn@tbCrHf[pNdl@dLde@zWrrA~Np~@pFp`@hIts@|Grs@|Ffy@fFhjA`EpwAPfoA}A`jBiDhhBq@jf@kFn_DmAfoBSxhBvBzpCnBrjAnChfAtJzlCbMh|Bxe@ppG~d@n`G~T|yClYtsDbWjjDfM~qA|MzhAbPdnAlOdaArSldAjQ|z@fSnx@`Pjm@tNjf@~\\zgAte@rrAll@vvAlXbl@rXti@dj@ncAv^tm@z_@`n@vsAxsBzd@|t@v`@lq@dj@~bAbi@pfAzSje@hU`k@|Tnj@|Qzg@lSpl@fb@`tAfVn|@rPrq@lSz~@vXjvArQhhAjRtrAvP|wAlP`}AtIt|@lJf}@fLrcAzPrtAvNtbAfPvcAvZhbB`Tz_AfSr{@xR|t@|Qfq@`Q~l@vE~Ol[hbAxw@|aC|Zn|@jHhTnNhd@|f@taB|ZdjAd]buApUhhAr\\vkBbNt{@vKbu@|Jtv@pHtr@jRfmB`a@brExI~|@fPx{ApKn~@vOnfAdX~`BbVlpAxRv|@rVdeAnXleAzVt|@|W|w@fb@pmAbi@lvAzw@hmBvgAziCrTji@~IjUnGdPvB|FfTxk@`Tbp@fQlj@jNle@`ZthAtWrhAdKff@lM~r@~Hhc@dQ~eAfK~v@jDzYlMjiAjIh`A|NvkBzMjqBrErp@jJraA|F~i@hJrq@dMxu@zNdt@nBfIhNjk@hTzx@|V|w@zRvi@~Zlu@pZro@xaArtBx_C~_FvlCjwFvnCpzF~`EvqIh@hA`yDvdIdt@luArr@joAvq@pkAlXxf@vS`b@fRvd@tOpa@lXxz@jPrq@`Nzo@`Jjl@dMv}@|OlsAlOnnAvO~y@lH|\\xHx\\`Tfu@hRnk@zU~k@rS~d@|b@hw@p`@tn@roCjgEvrEvcH|uE`iHvxEbjHhvDf|FdIzLp`C`sDj}HruLbnBnyCte@vs@`Z|a@fQ`T|P`R`VjUvZnVfIfFB@fQzK|b@hTds@~[fpDj~An@XhuDnaBdvClpAtmAhi@pc@~TzZzPl`@hYj[dYrWjYtd@~m@nUh`@nTtd@`N|[lLr\\nLh_@dNxj@zIxf@lJpo@hFxf@|QxsB~U|hCjGlp@pPn}ArG|d@|Lpq@vJtf@|Jnb@|L~d@tPji@p\\|~@tXrn@lOb\\fUpb@pX~d@rS`ZfVf\\nPhSvRjUhShTpPnPjHvGnp@`k@~p@li@ffAl{@~dApz@hbCjnBvcAtx@b`Alt@vvAd}@l[bStgA|g@`g@jTje@`Rtc@`Oz_@~Lh]zJri@fNdm@`NvuAtXzkAbUxoAjYnl@rOtk@|P`d@rOdo@dVrYpLl]tOlu@f_@d[~PlWvNzo@ba@nw@zi@feG`vEnh@x`@zqAhcA~kA|~@b~@hr@jTjQnQbQpNdOvOnRvN|RlLnQxOnXpMnWpTng@hMf`@jKh\\tJla@pJzd@rHfh@bJv}@zIdbA`Ipu@jJjo@vKzj@tN~l@rOri@rPje@vNp^fMxWbKjSnLjT~U~_@rSrYfZd_@r]~_@he@`g@de@vj@jRzWdOtUzMtTrSd`@rR~a@fNf^dMr\\p`@|mArc@xwAje@fuA~Wps@`Xfq@pSpe@~P`_@jSzb@n\\np@z_@`u@hr@~oAnlAhyBpqAjaCvcArkB|n@bkAxWlj@nOra@`Pre@~Mxh@rHh_@tFz[dEhZzCfX~It{@tSvqBhZlzCvIzq@jHnd@lIra@zPxq@nRjk@tSzg@tNtZfM~Ur@jAvVba@n`@zi@z^z_@lZtWvYbUrYpQpd@pUnUfJjXdKdv@tTtb@bO~b@lP`[jPpT`N|SdPjW|UrJjLfLfNfRdYpQb\\tM`YrNp^dTlp@bU~x@vErOj^ljAxNpd@hOl`@zVfo@nQb`@jPv\\dQn]n\\hj@jV|_@|Vj^lVl[fYz\\x]|_@vYxY`\\nXt]`Yrc@t[vU~MxWdNfNpFfXbKlVtHb\\xHh^lFxZlCdVx@vYVh]a@d[oBf~@uGrt@{E|eB{LvaBiLry@qEpTg@nXm@tUMv]Bt^p@b`@zAh]bCbYrBhRxBfGr@bFr@t[nEtVlEbb@vIdt@pQ`c@vMvb@pP|StKx^lTrVxQhGlFrXrW`NtNrLvOnRbX|Sz\\h`Az`BtaAxbBdrA~zBf|ApkCtOxYhP|Z`Qb^pTvi@|a@phAnyBhkGbcBfwEvh@b{AxRnm@rRfo@bMpf@bDbMhJz`@tMnn@|J`k@z\\tlBl{@phFn~@xpFJj@pl@jmDfn@|qDvb@dfCfi@dcDp@dEhLjq@fHnk@bChXtC`_@~Cxo@b@~o@c@pi@{Adj@kCta@iEfe@sHhl@}@bHs^~eCyZtxBqu@liF{@|F_z@b}F}y@f}F{dBpuLao@zoEqm@jdEmKpm@aKbe@{Jha@qMpa@yQpf@iR~b@mWrg@aTz[eYx`@sY`\\_YnYc^b^o[~[aYv]cRtWuM`TmUpa@cW~j@}Pjc@cQrf@eiAhgDkx@v_CuIlYuFrR{Lld@sLlk@qH~c@yEv_@iD|Z_Dp_@aCra@_A~^kAbn@[dj@e@tiBeBhkEw@vtDZnaBvAr{AhDjkB~Bzt@fDhp@dE|~@tMj}Bt_@nsFt]hfFdI|kA|Dtk@j@pIXfEfCr^`\\hyEvBb[n[vvEdObxBrMhkBjf@zgHdM~oBvJbhBvFvtAjCv_A|AlmA`@xrA{@t|AiCrsAgG~|AaH|iAsKnqA_@lE{JleAaLn`As[nhCc_@huCwVfiB}UpmByIn{@gEbn@mBxe@kBjw@Lnr@rAro@|Dnp@fEfe@nHlm@vF`^zHd`@vNpp@jDfOfUrx@rLhb@|@|C`GzSdRdq@jOrn@bNts@|Gfd@fFnd@rC`[bDjs@bBfs@Hdu@y@jl@_CbdAiB|r@uAfq@sAl_AQhi@d@rgA~AzaAxJpkElNdrG~FdgCrE|sBf@dPrBfq@bCbp@pH~dBtRr{DbNbpCzR|dEbM|dCvNr_DzC~bAfCzaAhB~fAdAzdA|@blB\\rnAf@ljAl@voA`@voAz@deC|@b|Bz@jaCdAjiC`BzpDbAdtDVzs@z@rhCGrL[`lA}@nc@eDnv@uHt`AgEz]_CnPgF|^sZ~uAq^bmAu_@~bAyUpj@sy@hrBoa@|gAue@r_BeY|hAoVzsAa^deCmInz@mKviBmDpmAoBpbBg@hb@oAxnAsBx`AgF~|@uFfs@oG`i@eLbz@eZ~xAoUzx@_Upq@ci@nmAwZpk@kg@rv@mk@ht@{\\~^sp@rn@kd@v[ku@bd@gk@nUav@`VyYvHu_@vGcx@tKagAfLsn@nJam@~J_e@nK_g@jP}_@bOyd@tVeb@fX{MjKkNxKy_@z\\{\\v^i`@bf@_f@zr@{MdVaVvd@{KrUkRtg@gMf]sJxZiT`{@cIr^kb@pmBkkBdbJa_AjjFqMz`AgMfiAyG|t@eFjr@iHvtAaG|_BQx^q@fi@Yt^Sti@Phg@tBnvAbAvj@xEbxA|GxzA|[vvGbi@piJ~a@d|Idi@dwKt}@dxRzE~z@`Ets@jIf}@tP~}@~a@tvAd^tnAfLxc@vKhn@fEv`@pBr[x@d[Pnu@uIdtBqFrdAkDvaAa@lbAzD~cArKpcAbPzu@xq@llCrMhm@dMzz@tE|v@~A`eA}Zp}JY~`AnBneAfTruCzs@ffJbI|o@zHzf@bKfd@lMrg@vwBnfHbN|q@xHfl@jGpv@rCh}@L|mD`@``BjBl}@~Glz@~Mh~@tSnx@rbApkCzTbt@hOho@~EjXfDxXdCtVrAbW`@bOVpK\\zn@Qfu@s@dvAh@~{Ca@hoB\\xqEChq@|JbfL]|iA}C`cAyHb|@aK|{@}wBvrNmQfuAcEh_@oP~eBsHt}@qGl|@}GtcAaG|jAuj@|rIaFps@eHzv@_kBvgRmIzgAsB`cAl@j}@vE~}@rIrx@bP`}@rQpt@jXvt@pwCj|GhWxt@~Tds@xSjt@bP~o@dN|n@tN~|@fKfbAbOt_BhGzlAzCpnA\\bgAc@r}@gAlaAgE~}AgMbbG}EvhBUxx@xAvy@lEtx@nG~u@`hAdaJ~F|v@zDl}@H`y@uAh~@}lAzxZkIvtBcLzsCoAzZmLpdD{KnnCuCldAu@ffAxAn_A`Gx_AdJry@`Lts@dsDz~PjMly@rL`bAjI~kAhB`aAP~v@qAn_AiErz@{~@bjKaF|cAa@fbArB|z@xFnw@|kAb}IhInu@jIx}@fFp`AzAj|@rHppR~ChfAjJt`AvOt`AxV|y@v[vv@d_@ll@|c@|i@ndBr_Bf[j^zZfd@t[nn@fTrj@zWpdAdR|`AjT|_AfXv|@rWjq@~\\xm@v_@vl@neC~jDvb@dm@na@xn@zjIl|N`Zbl@nXft@|Qbn@hNpx@|Hhx@xaB|g]B`@dHty@dK|z@dQn|@n\\rpA|k@pmBxTfu@jQhq@xN`x@tJl{@vb@vhGxBn[nHbhAhIhcAxOvaArFlUdQfi@fZdp@~\\zq@bZnt@hRps@fKfy@tEby@rw@h_QzErg@xMz_ApRjz@tW~r@bTfe@jaCzrE"},{"ref":"A 23","mode":"driving","weight":6602.984,"distance":214426.297,"geometry":"{fdklApfjwLfUr[zN~Rt\\d`@nUdV|SzQnb@lWxg@fWjz@rWx]zFnLjA|c@jClk@?~f@wCjW{CvVuEb{Aw_@hl@wNtg@aJrm@sFdt@gD|p@fApv@tEht@tI~l@vJ~l@tIbn@hF|g@jBvj@Q~g@{Fl^mGjl@uMfeBok@bUqF|k@eL~n@mGrVw@xXq@xn@tBtj@rGvx@bPdm@xMbnArWfn@pKrdAvMlu@lGvi@bChnE`Hrz@bGxw@~Nnm@bT`q@t[hl@la@j_A|z@boBjlBnd@pc@t_A~`A~]h]vr@nz@hq@r{@`g@xo@l]bg@nP`VrKrOn]zi@d\\fc@`c@fg@dc@|^dd@b[pn@bZfUtIpc@rOlm@rSfs@xUpq@fUrj@xQxWbIvmCft@~cAnSr]bHha@fJpPjE|PfFzKpDjK`EnOzGbMjGvOvIjl@nZf\\lT~YzYb`@ph@nUx]vWz`@nIjMhKzOlAhB`M~QnHtJnE~FtO~Qx@`AjGrGdGfGvH~GpKzIpK~H|JzGdGtDbNhHfOfHxPpGl[jKllArXpm@xRfo@vYxeGt{Dzv@ni@`j@h\\zy@nZffAnTxaAtZzn@~[dp@bh@fhCp{Chw@dv@nw@fo@f`Azk@xhAve@lM~ExLtEbNvEbGlBbJ|CxRrFfRpF|QlEd[pHt@Prh@nM`[dI~QxEhQhFzNhElOzEbUjI~NnFfQ`HdN`GlR~IvQdJnNxHdRtKjuClbBjKrFvNjGnMdGbPhGfOrFfMhEpMdElN`E`MbD`OpDpLtCbVpEhVfEzU|CxUbCdJ~@|MfA`@B`RfAhPl@lNd@nORvNBrO?h_@[l|@eBn^[nO?xNDnFLbNh@`P|@vHh@nS~BbOpBxNhCbO`DbNhDfMvDhz@vZjj@z[|yAteAfi@n]zk@tZ~f@zQbq@dPn}@xM``A~DteDKny@xFnq@xJht@`R|s@rUnk@xXdj@d[b^dUp_@zUtn@~[`n@lVzLdDlwBtk@viCfs@js@lX|]vSjNdJ~j@`c@fi@pj@xc@fo@h]rm@pZbr@dX`s@`e@zmAr[nq@zWrb@`Zp_@d`@z_@hp@xc@nm@`Wbb@|Kh[hIt\\~C~_@hBp_B|@j[Nb^p@jk@rFfr@~Otq@pV`l@nZzk@zb@xcBpyArj@lc@~l@ra@ro@v\\tn@`Xxr@rUlhCps@dp@zTnn@lXnnAns@dy@ni@vj@|Yrl@lUdm@dSn~Chf@paAdQrz@|Urw@f]zt@fc@pr@`i@rw@rv@ld@hk@vb@jp@da@pv@p\\vv@f[by@`tAdiE`Xfo@tUpe@dVh_@p[p_@zc@pa@va@|Vvb@zRrj@nL`s@nIps@lCpg@\\~zAbAj`AvE`y@rNxq@tShn@v[zzDfgChpDp_CtnAjv@`pArr@xmAvm@d`Apd@`iAhd@ta@`OzUpI|dDhdAldC`|@rrEvmB~h@|WbGxCjMnGdbAbb@dq@vV~lAf_@tbArYfv@zR`fAjVfkC`e@js@jLfhBfRngEv_@t`ApObx@tSbp@bVlm@~Z~p@hb@bi@dc@li@fh@ve@pm@rb@rn@vp@ntAhh@vvA~d@feBro@z{Bt`AvrCjWnr@xMl\\nzFlpNdp@f~Atw@jaBb~@|fBjFhJt}EjjIxz@bhB~p@~fB`}DztLzUrx@rSrx@nWfqAji@|lCzH`a@`q@|kCv^v~@~n@znAtw@jiAzkAxlAvmApw@xdAhd@jbAjWnBf@jjA`OxbApDfkA_Av_AsJrcF}p@fo@_GvReBtf@{Chb@gCnMj@`}@|DdgA`KpeA|YzaAja@xv@|b@lz@rp@xw@p|@|n@f~@dp@fqApf@|pAvlDloMdlA`eDd{@f|Al`AnpAp}TltTl{@f`Af~@|mAxv@pvAxl@`rAhh@dwAd`@|qA`yA~sF`uA|eFfpBhlHzc@`vA`i@psArTrc@baApfBjO~Vlq@|~@z^ta@dfJbaKto@nu@bW~YrzApeBzw@`bAru@faA`u@pfA|l@rfAdo@xkAvm@fqAp`@bcAthAdeD~Rhr@h]`tAbZ~wA~Zt`BlVj}AzPxzAts@x`I~RtwAj[vuAjh@xzA~k@jkAtp@r_Ahd@ff@dQbRnaAvu@lcAzf@bYpIxk@bQb]fKjmAt^vjArd@`y@t_@~OpJdThNvn@xc@dVdSvGhFbUnSp^t]~TnUlxA`uApl@td@lLbJx[jS`YbPvOrHvi@nVrM`Fp]tLfVjH~PjEnQ~D`d@`KreA`MndAlElgA_@lcBwIhiAuDfdA@tdAbGblAvLvaAhHrd@Ktd@iBrhA{T|{@}b@nx@en@zu@eu@nu@on@xbAwe@fcA_TpdAuBxbAfJba@pMtOnFlPbFj_Abi@tcAdn@z}@p_@l_@zHj\\|D`d@|Avj@o@hPaA|OyAh^wGzl@eP|VyKz_@aUz]gYbo@iv@~kB}|CzJwQtn@mz@nZq]hLkNvYaZj]k[xR{P`[uUv[qSx^yTj^wPj`@_O|`@aM`PwCvKqB~f@eJpdA_JdgAc@`p@`DnXxC`x@dLf}@hVrt@dWnKrDpjDdvAzvC~jAh`At\\zn@lNva@tHrb@fFnh@dEnk@fCh~CvHj_CfFjf@rBp_ExI~_@`@fg@aAhj@iHn`@eIb_@sLrd@}RpdHqyD`dAoi@j_Au_@fuAub@feEcoA~kAu[r]eExb@qAfVbArJLdd@bFd{A`[rTbG~cA|T`~@pPfSxCnJdAhJ`Anb@hEbcAhF|hA`Ep[x@|VU`g@}Afx@{J|s@oPbRiFlsEazAde@mNb`@yGjWqC|l@aCpgBcEtq@_Ddg@yHfZcHnFuAbi@qRb`@kQpeBeu@fCgAhdSc~I|W}M`N}FrOqFpI_C|IeAvcBCrWlDrj@pJ~{@nL~MbBd\\|D~YlD~eArPx@ThCt@|zA~c@pbAh]lP|Hz\\~Sxe@ld@fj@~j@pTtTnVtThUhQn[~O`XxIt[nFfZfB~UOx]cElJgBzKqDhWmJtZqRjYkWnSiXfNwSbQg\\bWyh@~]ov@zPi\\`RyZvP_VrOkQjLsKbM}JnM_InJ{E~OoGhToFvNiBrZwB`RHlm@hH`WtHbS|JnVnP`ZhZjT~[fTjd@rRvl@hfAzfExPvk@fPx`@nT|b@n~@tiArb@dc@`v@`v@jwApwA`T~T~]nVhc@`VzX|Ize@vFtR~@rRQ`[gBnX_Ff_@_Mt^mPtoFanCfzAaj@|nAgU|q@uH|oNkoAdhA}NneA}VncAm_@l`Awc@laGkuD`[aRvRmL~JgGf@Yt`Aga@tiA}ZtmAgOhxFyi@zNyAjbFmd@ruBiR`^cEncA{MbxA{SngAsT`bBab@hcBk^zpAkSz`AeChdArDdfGrn@viAdI`fAJfmAsJxdAyVv{@q^|vE}lBhpA__@|rAmSjvAmKffLeh@fkAeJbfAeKbdA}ObrE{|@fzAqYj\\}FhScDpTaDpUuDtpAgMh`A}HtK}@trHiQrdW{l@ljAwGhfAuSjjFs_B``AkTr_AmN|jA{IxfAsBjhAr@fdDvPnqEvXfiAdKhcAvThsAro@~iSzcMxw@lc@vbLpwFfgAdt@rv@~u@xr@t`Arr@|jAbl@h~@pOrSxe@|h@`l@~d@xv@x_@~YdJ`Z`InWdEvFn@t[lCr[bAz}CJpoCq@huAf@ft@bEh_@tFzo@zNxNhFnDnAze@jQld@pThfJniG`cAdm@p`Ajb@xl@~Rpe@zLht@hOl~JfgB~mBx^hlDpj@nmAdOpwH~~@lnAjRhmAdZlkAf`@~zHnkDpdN~kFbrDnsAxxHdsCfaBln@lZfLtt@zXdmAda@rl@|TvUfKpKdFl~@~f@~v@xi@te@dg@jh@`t@~^vm@|[vt@pa@jvApIx[njAr|Ff[ruAha@hvAzb@bjAzk@xnAf_Ab~A|eAvrAb{@fw@xfApz@zeFndD`mAz{@tc@p^th@zd@beAxhAviApmA`rFh_HzzAvlBv~C`zDduCdsD`|B|sCroB~aCtr@tx@du@bw@f_@h\\jh@vd@df@rb@|s@ji@j}Bh|Arg@n\\xwAdaArhApr@liCdbBveAfs@tDdCptB~eAbw@z_@tk@bWn_B~o@zcBbo@lnApi@hjAxl@hjAhs@|nAxz@jiAn~@t_Ab|@xq@bv@h\\p_@bOhQtR`VhP`U`e@~o@|RtYvIpMpSvZvl@~fAlRn^|^`y@ll@xpAxrBnuE`lBtnExl@dmA|l@~bA~t@t~@`_Alz@`gA|r@pkB~fArC`Bf~@xt@t|@h`Ahr@peAxo@hnAls@rqAvq@~bAdcApjAntCxiCfw@`|@zx@nkApr@dqAzl@dtAfiB|~DxItR~BbFvpB`nEvk@t|Ane@veBl[lfB|SrmBpLhjBnKhlBlKffAfN~{@tUj_Ap]ndAna@v|@tf@hy@zi@tq@z}Kt`MnUlWbYv^ng@dp@|v@buAdi@~zAby@nsC|tKvk_@hZjwAbXrkBfNx|AtvA`lS~PzzB|Gnl@|M~x@z\\fsAfi@`mAzoAv|A~xBnzBfdG|cGfd@``@jc@x]ns@be@n~@de@dxAxe@xeC~k@|aAxWzx@pXbv@h\\zv@l`@~kC``BlcAbk@x_A|a@taAlW`cAbRzlAjLdgArBrECf`AaB|Yo@vrByG~k@~@na@pCxd@lIjk@bRbf@nV~WhTnWjVvc@td@z[xe@f`@taA|Lh\\jKd`@dPxbA`Ev_@bEpl@|@xn@Stb@oBbn@}Hf|@sM~t@cQx`AmHjf@cDdd@OdMUhOAtIDrHN|HRpHVrI`@tGh@|Hp@lHz@zHz@pHdAhHpAfIhAhGtArGfBfHhB`HlBnGxBxG`CtGjCtGbC~FnC`GvCxFpChF|CpFlDfFxCtEfErFzD|EhEvEvDxDlDhDpEvDnElDdE|CjFjD|ExCfFrCjEtBbFtBlFxBlFdBfFzAhFtAvFlAfF~@lEj@rFp@|Gn@rFX|FPdFD|E@jGKlGWvF_@vMmArG{@dEi@`H{@xFy@lFs@nFq@bGu@rFi@nFk@nGk@dF]`G_@pFWrFQlGMvFErF@dGJrFRnFTvFZrF^fFf@vFp@pFt@xEn@tF~@lFz@lFdAvFdA~FhAnGnAbNrCxPhDxf@`Jpc@nF`s@vCzkCjEnu@hL`p@f[bf@v`@hd@tm@rZlr@jOth@jUfqAftBtfMxRjjAvKho@nFvY~E~UrHbYxPtk@nr@lgBfPd]`b@ln@RXnbApnA`N`Ozj@zf@~w@pe@bq@h\\~u@bZrgArVr|@xI|dAvAvsLmOfbAtAtv@tHdt@fP~jAba@p~@~h@xlC~vBpu@je@p|@`a@hy@~Vlg@lKbb@fH`|@xF``DjGljAjLneAhQvs@nTvBn@~n@zVrj@bXvi@fZl|@tn@vp@tm@nSrUxZ|\\|q@|~@r|AvfCd`@xi@fPtR~MvNtR`RvP`O`L|IvJjHrMjIjMlI`ZfOpUnKtNxFvLfE|LrDtLhDvP|DbTdEt_@|Fx]fCff@tBla@MjbAsD`mAkB`eAhBp`A~HdgA|QzjAd\\t^rNzh@xUpn@d]tvA~w@ljAfp@f~Ab}@p`Arc@je@|Lrj@lH~iAlK`zGdm@l[~Erf@~Lx}@n`@h{@pj@hj@`a@plEnyCrx@~h@pgAlx@nZdTlUpLf_BdfAb}@`o@hVhQzg@~d@pZf`@|Y`c@tn@bgAn^fn@vr@pgAlTd\\hSjVfSfThZrXfv@pe@rx@tZtd@pJlW`Dtw@xD|pA~A`eBrBrhArBjOv@jcAbOt_Al]tq@vh@vVtVjZ~YlpA|vAvg@hm@nRzWdSjY`p@lo@taAhx@~_Avp@ra@t\\hUxVzZj_@nUl^hTte@vS~h@vQts@~L|o@|XzsBjDdRxDjQjEtPdFnQlFpP`GdPlGtO|G|NrH|NvHjNpIxMnI|LhJxLtJfLjKtKjKxJvKjJlKdI`IxFlQtLvSbNzRlMpNnJtQjLhO~J|T`Ofd@~Y`n@|`@dwAv~@|iAru@fZnRtRlM`StMxMpIpSnNbFlDfFpDbLrIzKzIbLzJxKrKbKjKjJpKtIpKjJ`MnJfNpIpMzHzMpHhNhH`OdHbOfGdOhGzOlFzOxE~N~EnP~E~QbE~P|DhRrD|QvFb[pKnm@tNxy@nKzm@|Hhd@lIbf@hAfGfK~l@|Gj`@zFv[fF~ZxCzQvCzQrCtSbCbStBpSbB|Q|ApTjAvRx@fRn@vT^~SN`T@hSEbOGzLm@jf@y@ph@s@ng@yJlzGYnR]hVe@`[[vTY`S[tS_@nT]jSi@fSi@hRw@zS_AlRgAjSkA`RwAbScBnSiBdSmBbR_C~R}B|QwB~OmArIcCbQgCpQmCpRqCnRkCbR_C~QeCfRwBnRiBdRcBnQ{AlRsAzR_ApRw@rRk@dR_@fRS`SEnRBhRL|R\\vRd@pRr@fWhAdVbAdRbCnYhBdQfCrT~BlQfCxQlDpSxCnPvD`QfD|OzD|OhFlShFnQpH`VfO|c@lp@xjBlG~QhF|PtExO`E|OdErQnDlP|DdSfDtShC`QnChTrBjQvAhOvApPjAhPbAhOv@nNfBb^l@jMnDrt@`Fjt@nBtUjEja@bElZlEfXpGz\\vG~X|HlZvIbZbLl\\jK|WxLvYdLnV|o@xsAzu@|{A`Pb^~Mf\\`JhX`HdVnBfJzI~a@pElXhDlY|BhUjBfW`AtXb@rWLnXUnUq@lYwAxY}B|YuBlSmD|VwEfYmv@l}DgK`l@eFd^yCfX}BdYoAzWw@tYYlW?hP\\nZt@vRx@pQfAhPlBtTnCrV|CpTpE|V|CfN`GvVpG`WxyCzoKxg@hbBfTzi@`Unj@zl@zeAbcFp}Gt`@lj@`LdQrLpS|JdRnKbVzKpYxGbSfFtQpHd[fEdUdElXrCnUlBxSzAvTjAtYd@~SV~[YrY[pMe@jNkBx\\aCt[_Dd\\sIxu@kuBjsQY~B{J||@oKxfAmIdcAmDji@_Dzn@qB`i@qAba@aAlb@q@d`@[|b@a@l{BjFzjChMf}BbTr_Cn\\bcCbi@rlClf@vlBxx@rmCzJf[rv@~mC~R~s@`b@dyBlNxfAzGni@~Fxo@zMp~ApP~bCfNxkArCvTpC~QhIrf@pGz]`DzPrHl[vEjQdJdZ`JnYzQdm@zmAtuC~Nn`@lMrd@|Kvd@vHzg@`H~j@fEni@fB|l@Z|n@yBnsD|@fr@pBfg@bHtr@~F|c@jJbo@pKla@jL|b@zZ`}@zOhb@~Z`t@nG`NxF|LpEfL~B~GhDnJbFlObF|OhDxLhF|S`DbOrCnOlBfNvBpQdB`OlAjNh@dLh@rMlAtSz@|Rd@lU`@~Qh@`\\`@z]h@v]n@`_@j@xSn@dSbAbRfAzPhAnMfB|Q`ChRjClQhDtRfHp\\dE|PlGbUhQtk@lEpMjDrKhD`K|BdHzBpHzCvJbDrJlDtK|DtM~DtNbEzO|C|LjClLxCdOdBvJfAxFhAvHjAdIfApHjAxKbArJ`A|LbAxLt@lOZtIh@zLp@~OTzKHbMBxJ?pJIdUUbSSpMg@hWqD|aBc@dVa@fYOnSKhVChT?pMDlKB`IJfLb@xPx@zTbA|Vf@zLh@jK`ArPlAtQxAzRxA|QlCrW~B|TxD~YnCnQdDrUrBrMfC|NdF~UzGb\\rD`PhBrHrBtIrDxMdElOhFpPlIjXnFxO|CzIjD~IdFxMhFtMrHlQpEzJbE|I|DnIfE|IrDjHrEjI`EvHnGdLxEtInLzRnU~^dXlb@p\\xg@tSz[jd@bs@t]vi@d_@rk@xUx^xTh]rf@dv@lc@fp@lLrPjKzNhNxRbIvKhXp^|q@n}@b~CtnDb`C~lCzBfCjVfYjMpOzRzWlMjRjJfOvE`IlErHjJ|PjFhKrElJhF~KrFlM~EnLhFzM`H~QpF|O`GvR~DtM|EtQnFfTnDbOxDdRrCjOnGb\\hlD|`S~Jbl@lGn^pDrRtEzVvEvXtDnTpE|WnD|RhFdX|XzvAlIla@dx@lxDzXzqAxTleAbSr_A|Rj`ApJpd@bHd\\`FfVxGd]dEdUpC|OtDfTvBpOxC~SbDlVlDx[dBhQxAjPpA|PvBn[`AjQt@lSh@tQj@zS\\jVLt]LpqAKjJ_@xSc@bNc@~Me@hLw@pOuAdVy@pOuAvPqC|\\kEr`@cBhOgC`RaDpToEvYkChOmEzTqEfTaDvN_Jd_@_Lba@iJ~[_HhT_HvSi^xfAoLl_@uDjMiDzLqCdKyCtMaCnL{BdLsBzL{AnJgBdM{AlLeA|I}@hKy@zLw@hKe@pHw@|Lq@~RoAx^uE`~A_IxnCaInmC_F~dBYjMGxBStQMrNElMC|RDxPT|OX~NZhNj@pMjArSjAxRrA~PnAlN|AfQlC~RbEtWfHdc@hLpi@`Iz\\tWnfAzEpRlRxw@|vAt{F|Ix_@xFdWdEvUjCrQrB`PpBzT`BxVn@jPX|OPpSO~T[lSq@bSgBfe@mDru@iWdvF{@~W{@f\\OdSQdQ@rS@lIj@jTRxK~AtYzAzShB|Q`DxSpF|YbEzQbFvRhF~PvJrWzG|OrHzNjIzNpIzNdJ~MtG|JzLvOrUlYneA`nAbhAbqAxf@tl@tOpRvKzNhKpNhMhShNrWrHrOnHlQ~ElNvFnQpFtR|DtRxCxPtNlkAzAtzAkKtxD}C~cAI~h@dAvt@nm@dcS^~OR|MFzPKnPQ~KWzIY~I_@jIq@vIo@nIy@xJgAfKeIno@gVfgBcW|kB}BlQkAzJuAtMu@vI_ArKq@tIg@~I]pH]`JYzJMzIEpMBnJB`ERzO^xMTdGz@dNdAfPdCxYfF~h@dRhiBf\\p}CjIdv@zMhoA`Fjg@~Mf`B|BpyAyHhqAoRfkAu`@hdA_tFxzKugFv|Jyl@rrAca@dtA{RdnAqItpAw@lzAvCt|Atm@pwQbRtdGlCrv@x@bRl@zKvAnRrA`QlBpQ~BlQfA~HtCpPtBdLhDhOtEzQnExOzE`OpGlQtE|L|CtHbHtOvHjPpY`m@hm@vnAzqAlnC`|@rhBfm@dnA|f@~cApb@t|@rlAvcCtItOxXlf@|u@jlAbaB`yBn{@rhArg@vp@xOlSlTj[zI`OxI|PdEnIfDbIxEtLbC~HdEdOvDtP`BhIlClQbC|Rz@lJhA~RXtHPbIDbHDzHCxHIdGUvIWjFg@|Ko@pLw@pKs@bG_F|^{aAzyF{DvUsCtRyJjy@yJblA{K~kA{NrhAkZzbB_jCjzLeVd}AgNzuA_\\vbFcK|lA_NfcAkc@jxCiIzhA{AnmAxCpvAnHzoD`Cd}Ab@vlAaAz`Cm@bnImB|{@uBx`A_OxgBsQh{AofAlrGcVjwAgXziAiHtZge@daBkbB|nF}Lbe@kEnQwE~SmE`UgCdOwCdSuBnQuCdZwAzRq@hK{@hP]rKWhKUlRI`S?pRPrOf@lQh@`Od@nKz@jMfAnOhBnRfBtOtIpu@pIls@`Hli@lG`h@~DvZzCtYpIdv@nCvShEjYpClPbDrQvChOzGpYvEjQnFrSpFfRzDzLdHbTfM|\\bJlWtGtSpHzVnHzW`Kfb@dGpWpFlXtE~WfDnTnC~SpBdTrMb_BzC~ZpCz[nB|SdC`StDfVrEfVjEpRlJj]tFvSbH`VdFvPhFlPxFfQvIdVhMvZjH|SpJdU~IhU~GfQdGrPjFfQtDrObDfPxEbWxDlWlSn{Av]pwCfCpRdEhZvDhXhCxRpBpQtAdQ~@hQh@pRVdTBfh@Kne@O`]Ej]JbSXhPb@pMt@hR^hIp@`LfAjPdBfRlDn]nDv[vDr\\hCrRhCbSnAfJrAxIjm@vpEpCnZrDd_@lBfTxA|SzA`UrAnVl@bN\\bJh@tMXrOTpSLn[JfUKjNQfIcA~R_BfVmC|[oAlLyBzPmE|YeE|U{D`RmDzOmHhZoUvz@yS|s@sItZex@fpCoLza@eBfGcOhh@oLbc@mFzTiHx[aGbZuDjUwBzNsCxVyBpWw@bMcAbUk@vTSxZFx[d@bYt@tRhA`WxHleAtQnrB`Jlv@t`@v~C|@jJjAtMd@`K\\lJTzQ?pPS~Oa@rOo@bQgAnVoAhQ}@hLu@jJkFze@wcA~iKoRbvBuNnyByM~aDoQrjEeChm@yH~jBmBxv@aA~`@o@|bBzDhoBvHj~AluAp`VxDpnANxu@q@vk@yBjk@yE|o@uG`m@gQvfAgoCb~MeX~xAoOfgAmLhgA_e@fhGiYzqD{KfsAuH`pAm@vm@fCzn@rFdj@lJ~d@tNre@rc@vaAnN`\\pF~MxEnMxEpNnDxMpCdMrC~MpB~NzB~PtAlRt@jOh@`TBvSK`Pq@zQy@dP{@zPuCp_@}Bl\\mNltBkJ~uAcUthDsFxeAyAj_A|Af~@`D|p@bF~e@`Hhe@xP`{@rv@~_Djh@bbCjYx{Az~AtrJ~Mzo@rRro@h_@d|@|Xfe@t[bb@zmDlzDpd@ll@lPzS~t@xlAxyC~|FvhAbxBpe@zaAvFvLzv@pwArgBdlDlRfe@tPph@xK|h@hGda@nEvh@rBvk@`@xyAhAf_BtJ|pA`YjvAfkA~aFdVzoAzDla@jChc@~@t`@Chf@oAlb@cD|c@aLneAsTnqBwChc@y@jUS|Zb@hW\\hO~@tPrC~Z|DzYvDxRdK`e@`yBvzIj^hgBnQplAnEdZpBzMj|@jcGdFp]jEbZnWxqBAzPbBxd@`@|f@B~d@y`@|}IkAfeBnAjpA|Yx_JpAxt@wAvu@kIp}@}QdjAk_Kf~d@u~@hhEkU~~AoE`hApBndAvz@hiKtHb|A?niBoDxhAmLv_ByTvpAkUriAqvJrf]wT~eAYpAuNbaAea@ryDkUxrD_Bzk@U||AjAd_C`DdvAlO`{@ri@hbBf`AnuB","duration":7068.156,"driving_side":"right","duration_typical":7068.156,"weight_typical":6602.984,"name":"","speedLimitSign":"vienna","maneuver":{"type":"fork","instruction":"Keep left to take exit 30 onto A 23 toward Guarda Sul/Covilhã/Portalegre.","modifier":"slight left","bearing_after":224,"bearing_before":231,"location":[-7.214713,40.56947]},"speedLimitUnit":"km/h","destinations":"A 23, IP 2: Guarda Sul, Covilhã, Portalegre","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Lisboa"},{"type":"text","text":"/"},{"type":"text","text":"Santarém"}],"type":"fork","modifier":"left","text":"Lisboa / Santarém"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 1"}],"type":"fork","modifier":"left","text":"A 1"},"distanceAlongGeometry":214426.297},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Lisboa"},{"type":"text","text":"/"},{"type":"text","text":"Santarém"}],"type":"fork","modifier":"left","text":"Lisboa / Santarém"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 1"}],"type":"fork","modifier":"left","text":"A 1"},"distanceAlongGeometry":3218.688}],"exits":"30","voiceInstructions":[{"ssmlAnnouncement":"Continue for 133 miles.","announcement":"Continue for 133 miles.","distanceAlongGeometry":214396.625},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 1.","announcement":"In 2 miles, Keep left to take A 1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 1.","announcement":"In a half mile, Keep left to take A 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 1 toward Lisboa, Santarém.","announcement":"Keep left to take A 1 toward Lisboa, Santarém.","distanceAlongGeometry":253.333}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[51,224,235],"duration":22.148,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":19.906,"geometry_index":31704,"location":[-7.214713,40.56947]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,185],"duration":2.375,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":2.195,"geometry_index":31714,"location":[-7.218032,40.56481]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,180],"duration":8.742,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":8.086,"geometry_index":31715,"location":[-7.218102,40.564219]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.217841,40.562098],"geometry_index":31719,"admin_index":14,"weight":11.602,"is_urban":false,"turn_weight":6,"duration":6.078,"bearings":[165,335,348],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[165,345],"duration":52.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":47.125,"geometry_index":31720,"location":[-7.217317,40.560624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[167,345],"duration":7.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":6.734,"geometry_index":31737,"location":[-7.216188,40.547654]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,357],"duration":14.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":12.828,"geometry_index":31740,"location":[-7.215814,40.545789]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[14,193],"duration":7.648,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.867,"geometry_index":31745,"location":[-7.216497,40.542249]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,189],"duration":42.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":39.656,"geometry_index":31747,"location":[-7.217092,40.540227]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,217],"duration":8.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.898,"geometry_index":31757,"location":[-7.220367,40.529078]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,217],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.633,"geometry_index":31758,"location":[-7.222117,40.527284]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[37,218],"duration":4.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.266,"geometry_index":31759,"location":[-7.222702,40.526684]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.223758,40.525649],"geometry_index":31760,"admin_index":14,"weight":32.336,"is_urban":false,"turn_weight":15,"duration":18.758,"bearings":[38,217,229],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.227957,40.522112],"geometry_index":31766,"admin_index":14,"weight":17.586,"is_urban":false,"turn_weight":0.5,"duration":18.477,"bearings":[37,45,225],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,200],"duration":16.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.289,"geometry_index":31773,"location":[-7.231528,40.518443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,197],"duration":16.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15,"geometry_index":31779,"location":[-7.233317,40.514416]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":2.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.922,"geometry_index":31782,"location":[-7.234659,40.510631]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,194],"duration":3.531,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.258,"geometry_index":31783,"location":[-7.234805,40.510141]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":6.461,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.977,"geometry_index":31785,"location":[-7.235087,40.509311]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[26,205],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.961,"geometry_index":31791,"location":[-7.235837,40.507862]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":3.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.102,"geometry_index":31796,"location":[-7.238208,40.505346]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.094,"geometry_index":31798,"location":[-7.23898,40.504782]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.125,"geometry_index":31799,"location":[-7.23925,40.504585]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,222],"duration":2.023,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.797,"geometry_index":31802,"location":[-7.239794,40.504169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,219],"duration":5.109,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.578,"geometry_index":31804,"location":[-7.240226,40.503798]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,208],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.516,"geometry_index":31811,"location":[-7.241149,40.502755]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,205],"duration":90.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":81.344,"geometry_index":31812,"location":[-7.24124,40.502624]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":1.758,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.578,"geometry_index":31840,"location":[-7.255849,40.479978]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,195],"duration":4.117,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.695,"geometry_index":31842,"location":[-7.256011,40.4795]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,195],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.656,"geometry_index":31844,"location":[-7.256406,40.478385]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[20,200],"duration":9.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.258,"geometry_index":31849,"location":[-7.257009,40.476917]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[27,207],"duration":11.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.453,"geometry_index":31856,"location":[-7.258118,40.47496]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,205],"duration":16.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.547,"geometry_index":31857,"location":[-7.259709,40.472554]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,188],"duration":1.672,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.5,"geometry_index":31872,"location":[-7.261244,40.468457]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,185],"duration":80.719,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":70.609,"geometry_index":31875,"location":[-7.261314,40.468022]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[18,204,208],"duration":15.312,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.391,"geometry_index":31910,"location":[-7.266709,40.447446]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.269216,40.443286],"geometry_index":31917,"admin_index":14,"weight":7.688,"is_urban":false,"turn_weight":1,"duration":7.438,"bearings":[8,16,196],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,196],"duration":13.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.094,"geometry_index":31918,"location":[-7.269931,40.441359]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,209],"duration":39.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":35.758,"geometry_index":31921,"location":[-7.271506,40.437806]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[16,195],"duration":14.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.047,"geometry_index":31936,"location":[-7.280996,40.429738]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[2,187],"duration":142.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":128.383,"geometry_index":31942,"location":[-7.281358,40.425785]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,189],"duration":8.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.453,"geometry_index":31982,"location":[-7.306455,40.392388]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":30.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.656,"geometry_index":31985,"location":[-7.306709,40.390065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":11.602,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.445,"geometry_index":31991,"location":[-7.310072,40.382042]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,208],"duration":25.57,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.992,"geometry_index":31992,"location":[-7.312129,40.379205]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199],"duration":34.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":31.336,"geometry_index":31998,"location":[-7.316044,40.372589]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.477,"geometry_index":32003,"location":[-7.32047,40.363375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,204],"duration":107.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":97.141,"geometry_index":32004,"location":[-7.320547,40.363245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,237],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.391,"geometry_index":32030,"location":[-7.339233,40.33769]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,236],"duration":41.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":37.023,"geometry_index":32031,"location":[-7.339704,40.337453]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,229],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.578,"geometry_index":32035,"location":[-7.352424,40.330725]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,229],"duration":51.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":46.711,"geometry_index":32036,"location":[-7.352605,40.330607]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[60,242],"duration":9.398,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.461,"geometry_index":32040,"location":[-7.368259,40.322246]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":6.664,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.82,"geometry_index":32043,"location":[-7.371419,40.321158]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,249],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.484,"geometry_index":32044,"location":[-7.37369,40.32048]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,245],"duration":6.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.273,"geometry_index":32045,"location":[-7.374235,40.320322]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[51,65,237],"duration":59.766,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":53.758,"geometry_index":32046,"location":[-7.37649,40.319521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[173,353],"duration":6.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":5.594,"geometry_index":32060,"location":[-7.382336,40.30362]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,184],"duration":160.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":140.414,"geometry_index":32064,"location":[-7.382161,40.301872]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":11.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.273,"geometry_index":32086,"location":[-7.425097,40.269081]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[64,244],"duration":27.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.758,"geometry_index":32087,"location":[-7.428792,40.267704]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[52,230,237],"duration":6.453,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.789,"geometry_index":32091,"location":[-7.436945,40.264283]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,228],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.367,"geometry_index":32092,"location":[-7.438602,40.263225]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,224],"duration":6.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.969,"geometry_index":32093,"location":[-7.438986,40.262963]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.440564,40.261646],"geometry_index":32095,"admin_index":14,"weight":28,"is_urban":false,"turn_weight":0.5,"duration":30.562,"bearings":[32,40,219],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.664,"geometry_index":32097,"location":[-7.447614,40.25512]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[41,221],"duration":36.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":33.039,"geometry_index":32098,"location":[-7.448046,40.254734]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,240],"duration":8.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.828,"geometry_index":32106,"location":[-7.457746,40.247828]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[60,243],"duration":64.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":57.867,"geometry_index":32107,"location":[-7.460405,40.246649]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[39,219],"duration":12.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.328,"geometry_index":32120,"location":[-7.480862,40.23991]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":2.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.664,"geometry_index":32124,"location":[-7.482851,40.237042]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.773,"geometry_index":32125,"location":[-7.483141,40.236325]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,197],"duration":16.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.938,"geometry_index":32126,"location":[-7.483337,40.235843]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.485399,40.231837],"geometry_index":32131,"admin_index":14,"weight":23.953,"is_urban":false,"turn_weight":15,"duration":9.688,"bearings":[29,210,215],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,218],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.57,"geometry_index":32136,"location":[-7.487247,40.229703]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,216],"duration":10.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.508,"geometry_index":32137,"location":[-7.487607,40.229351]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.489587,40.227191],"geometry_index":32139,"admin_index":14,"weight":9.133,"is_urban":false,"turn_weight":1,"duration":8.797,"bearings":[30,32,212],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,200],"duration":6.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.156,"geometry_index":32144,"location":[-7.490895,40.225146]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[14,194],"duration":88.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":79.641,"geometry_index":32149,"location":[-7.491575,40.223467]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,199],"duration":1.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.953,"geometry_index":32171,"location":[-7.488349,40.201203]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,197],"duration":27.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":24.5,"geometry_index":32172,"location":[-7.488469,40.200936]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,348],"duration":8.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":8.086,"geometry_index":32183,"location":[-7.490591,40.194191]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[139,148,327],"duration":14.43,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":13.32,"geometry_index":32187,"location":[-7.489338,40.192054]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.485926,40.18954],"geometry_index":32189,"admin_index":14,"weight":8.727,"is_urban":false,"turn_weight":1,"duration":8.375,"bearings":[130,300,312],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,319],"duration":10.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":9.281,"geometry_index":32193,"location":[-7.48394,40.187934]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,331],"duration":8.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":7.852,"geometry_index":32198,"location":[-7.482075,40.185794]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":0.641,"geometry_index":32203,"location":[-7.480885,40.183433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,348],"duration":13.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":12.766,"geometry_index":32204,"location":[-7.480828,40.183229]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,190],"duration":9.602,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.883,"geometry_index":32209,"location":[-7.480613,40.179128]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[19,199,208],"duration":12.398,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.461,"geometry_index":32212,"location":[-7.481584,40.176361]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.483069,40.173416],"geometry_index":32214,"admin_index":14,"weight":126.68,"is_urban":false,"turn_weight":1,"duration":132.297,"bearings":[11,21,201],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[4,183,191],"duration":9.82,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.562,"geometry_index":32240,"location":[-7.478477,40.140791]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,196],"duration":1.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.523,"geometry_index":32243,"location":[-7.479047,40.138535]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[16,194],"duration":10.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.383,"geometry_index":32244,"location":[-7.479177,40.138189]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,188],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.758,"geometry_index":32247,"location":[-7.479886,40.135752]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,188],"duration":14.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.93,"geometry_index":32248,"location":[-7.479921,40.135568]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[3,179],"duration":1.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.508,"geometry_index":32253,"location":[-7.480298,40.132089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[177,359],"duration":9.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":9.547,"geometry_index":32254,"location":[-7.480287,40.131706]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[164,346],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":1.242,"geometry_index":32257,"location":[-7.47977,40.129302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,344],"duration":42.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":40.625,"geometry_index":32258,"location":[-7.479653,40.128996]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[160,176,345],"duration":3.375,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":3.102,"geometry_index":32268,"location":[-7.477146,40.119648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,340],"duration":11.281,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":10.414,"geometry_index":32269,"location":[-7.476833,40.118974]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[157,338],"duration":68.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":63.109,"geometry_index":32272,"location":[-7.475636,40.116735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[0,190],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.766,"geometry_index":32279,"location":[-7.46943,40.103548]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,191],"duration":3.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.086,"geometry_index":32280,"location":[-7.469517,40.103154]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,190],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.047,"geometry_index":32281,"location":[-7.469702,40.102456]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[10,189],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.055,"geometry_index":32282,"location":[-7.469918,40.10148]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":2.305,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.07,"geometry_index":32283,"location":[-7.469968,40.10124]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[9,189],"duration":8.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.375,"geometry_index":32284,"location":[-7.470063,40.100773]},{"entry":[false,true],"classes":["tunnel","motorway"],"in":0,"bearings":[13,197],"duration":11.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.648,"geometry_index":32288,"location":[-7.47047,40.099107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,204],"duration":29.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":26.258,"geometry_index":32290,"location":[-7.471547,40.096555]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,342],"duration":14.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":13.102,"geometry_index":32305,"location":[-7.474702,40.090405]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,307],"duration":64.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":59.477,"geometry_index":32312,"location":[-7.471942,40.087903]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[42,218],"duration":2.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.664,"geometry_index":32339,"location":[-7.477682,40.077481]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[38,217],"duration":4.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.219,"geometry_index":32340,"location":[-7.478261,40.076911]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.479142,40.07603],"geometry_index":32341,"admin_index":14,"weight":21.617,"is_urban":false,"turn_weight":15,"duration":7.352,"bearings":[37,217,229],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,219],"duration":1.773,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.586,"geometry_index":32342,"location":[-7.480559,40.074616]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,210],"duration":6.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.211,"geometry_index":32343,"location":[-7.480911,40.074279]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,189],"duration":109.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":95.953,"geometry_index":32346,"location":[-7.481831,40.072788]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,333],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":1.188,"geometry_index":32364,"location":[-7.471568,40.045275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":26.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":23.789,"geometry_index":32365,"location":[-7.471353,40.044959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,353],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":0.844,"geometry_index":32371,"location":[-7.469268,40.037253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,352],"duration":13.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":11.805,"geometry_index":32372,"location":[-7.469223,40.036999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[173,353],"duration":8.648,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":7.781,"geometry_index":32373,"location":[-7.468624,40.033361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[171,351],"duration":19.477,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":17.516,"geometry_index":32375,"location":[-7.468217,40.030966]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[167,336,345],"duration":127.125,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":114.406,"geometry_index":32379,"location":[-7.466738,40.025699]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.460701,39.989625],"geometry_index":32398,"admin_index":14,"weight":23.719,"is_urban":false,"turn_weight":15,"duration":9.695,"bearings":[167,173,347],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[169,350],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":1.195,"geometry_index":32402,"location":[-7.459986,39.987025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[172,349],"duration":8.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":7.922,"geometry_index":32403,"location":[-7.459895,39.986664]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[174,353],"duration":17.883,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":16.086,"geometry_index":32405,"location":[-7.459508,39.984312]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[177,357],"duration":217.281,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":195.555,"geometry_index":32407,"location":[-7.459184,39.979186]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,204],"duration":8.055,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.422,"geometry_index":32432,"location":[-7.47608,39.921368]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[11,188,356],"duration":0.484,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.43,"geometry_index":32436,"location":[-7.477044,39.919218]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[8,187],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.602,"geometry_index":32437,"location":[-7.477068,39.919094]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.477139,39.918635],"geometry_index":32438,"admin_index":14,"weight":104.906,"is_urban":false,"turn_weight":15,"duration":114.898,"bearings":[7,183],"out":1,"in":0,"turn_duration":15,"classes":["toll","motorway"],"entry":[false,true]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[12,191,200],"duration":16.273,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.219,"geometry_index":32457,"location":[-7.486994,39.890227]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.48795,39.886198],"geometry_index":32459,"admin_index":14,"weight":109.469,"is_urban":false,"turn_weight":1,"duration":123.969,"bearings":[0,9,189],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.688,"geometry_index":32468,"location":[-7.501285,39.855166]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[20,200],"duration":3.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.375,"geometry_index":32469,"location":[-7.501497,39.854727]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.501911,39.853868],"geometry_index":32470,"admin_index":14,"weight":23.797,"is_urban":false,"turn_weight":15,"duration":9.797,"bearings":[20,199,201],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.503005,39.851523],"geometry_index":32473,"admin_index":14,"weight":23.094,"is_urban":false,"turn_weight":0.5,"duration":25.109,"bearings":[13,22,204],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[63,244],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.406,"geometry_index":32481,"location":[-7.508943,39.846602]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,249],"duration":71.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":66.242,"geometry_index":32482,"location":[-7.509404,39.846433]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,215],"duration":13.562,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.211,"geometry_index":32494,"location":[-7.527566,39.833128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,222],"duration":19.188,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.258,"geometry_index":32497,"location":[-7.53061,39.830143]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[38,42,223],"duration":61.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":53.578,"geometry_index":32498,"location":[-7.535223,39.826254]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":3.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.703,"geometry_index":32506,"location":[-7.549624,39.813812]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[35,215],"duration":94.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":82.555,"geometry_index":32507,"location":[-7.550228,39.81315]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[40,220,224],"duration":4.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.453,"geometry_index":32528,"location":[-7.567501,39.788317]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,224],"duration":4.469,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.023,"geometry_index":32531,"location":[-7.568684,39.787275]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,226],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.602,"geometry_index":32533,"location":[-7.569821,39.786389]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,226],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.859,"geometry_index":32534,"location":[-7.570248,39.78607]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.570481,39.785898],"geometry_index":32535,"admin_index":14,"weight":22.938,"is_urban":false,"turn_weight":0.5,"duration":24.938,"bearings":[38,46,226],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,236],"duration":93.656,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":84.297,"geometry_index":32541,"location":[-7.578251,39.781435]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234,244],"duration":10.25,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.211,"geometry_index":32561,"location":[-7.602938,39.761249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.969,"geometry_index":32562,"location":[-7.606009,39.759549]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.606324,39.759376],"geometry_index":32563,"admin_index":14,"weight":0.852,"is_urban":false,"turn_weight":0.5,"duration":0.398,"bearings":[37,54,234],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,234],"duration":93.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":84.094,"geometry_index":32564,"location":[-7.606438,39.759312]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":3.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.445,"geometry_index":32579,"location":[-7.63397,39.745147]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":217.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":196.094,"geometry_index":32581,"location":[-7.634869,39.744369]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,206],"duration":25.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.031,"geometry_index":32609,"location":[-7.693405,39.710343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,178],"duration":14.625,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.164,"geometry_index":32616,"location":[-7.695637,39.703548]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[2,186,199],"duration":11.477,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.32,"geometry_index":32620,"location":[-7.695455,39.699501]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.696718,39.696608],"geometry_index":32625,"admin_index":14,"weight":2.148,"is_urban":false,"turn_weight":0.5,"duration":1.844,"bearings":[25,33,216],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[36,218],"duration":9.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.453,"geometry_index":32626,"location":[-7.697092,39.696216]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[57,238],"duration":1.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.453,"geometry_index":32629,"location":[-7.699383,39.694634]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[58,244],"duration":47.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":42.953,"geometry_index":32630,"location":[-7.699852,39.694411]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[23,200],"duration":25.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":23.234,"geometry_index":32684,"location":[-7.714395,39.692173]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[13,192],"duration":7.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.805,"geometry_index":32735,"location":[-7.714898,39.685503]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[4,182],"duration":28.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":26.008,"geometry_index":32738,"location":[-7.715271,39.683448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,252],"duration":21.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.414,"geometry_index":32746,"location":[-7.720131,39.677252]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[72,251],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.273,"geometry_index":32747,"location":[-7.727422,39.675376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[71,251],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.562,"geometry_index":32748,"location":[-7.728628,39.675059]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[-7.73133,39.674184],"geometry_index":32753,"admin_index":14,"weight":27.852,"is_urban":false,"turn_weight":15,"duration":29.305,"bearings":[63,237,251],"out":1,"in":0,"turn_duration":15.028,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.735529,39.671433],"geometry_index":32758,"admin_index":14,"weight":7.367,"is_urban":false,"turn_weight":0.75,"duration":7.367,"bearings":[30,42,219],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,204],"duration":107.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":96.445,"geometry_index":32761,"location":[-7.737041,39.669578]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,204],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.648,"geometry_index":32785,"location":[-7.745294,39.63876]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,206],"duration":12.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.102,"geometry_index":32786,"location":[-7.745696,39.638062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":14.664,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.203,"geometry_index":32790,"location":[-7.748004,39.635271]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,225],"duration":24.984,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.469,"geometry_index":32793,"location":[-7.751678,39.632513]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[4,6,184],"duration":127.297,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":111.367,"geometry_index":32812,"location":[-7.755399,39.626661]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[31,205,214],"duration":12.836,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.203,"geometry_index":32840,"location":[-7.768496,39.59489]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,211],"duration":1.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.484,"geometry_index":32843,"location":[-7.770621,39.591997]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[31,216],"duration":11.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.016,"geometry_index":32844,"location":[-7.770914,39.591624]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.773785,39.589335],"geometry_index":32848,"admin_index":14,"weight":51.922,"is_urban":false,"turn_weight":1,"duration":58.203,"bearings":[39,49,229],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[38,217,225],"duration":15.461,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.508,"geometry_index":32867,"location":[-7.780696,39.575163]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.784096,39.572135],"geometry_index":32872,"admin_index":14,"weight":60.062,"is_urban":false,"turn_weight":1,"duration":67.531,"bearings":[34,45,217],"out":2,"in":1,"turn_duration":0.033,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[29,209,220],"duration":9.859,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.609,"geometry_index":32911,"location":[-7.799733,39.560316]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.801296,39.558152],"geometry_index":32913,"admin_index":14,"weight":63.836,"is_urban":false,"turn_weight":0.75,"duration":72.117,"bearings":[23,29,209],"out":2,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":12.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.273,"geometry_index":32973,"location":[-7.822161,39.549365]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[93,273],"duration":84.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":73.945,"geometry_index":32974,"location":[-7.826696,39.549554]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[82,263],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.68,"geometry_index":33053,"location":[-7.853142,39.547526]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,262],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.078,"geometry_index":33054,"location":[-7.853372,39.547503]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.855084,39.547302],"geometry_index":33056,"admin_index":14,"weight":46.539,"is_urban":false,"turn_weight":15,"duration":35.062,"bearings":[80,259,260],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,248],"duration":116.188,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":101.656,"geometry_index":33075,"location":[-7.865047,39.542943]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,258],"duration":7.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.359,"geometry_index":33128,"location":[-7.901258,39.533004]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[92,275],"duration":99.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":86.648,"geometry_index":33134,"location":[-7.903592,39.532847]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,243],"duration":6.602,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.773,"geometry_index":33161,"location":[-7.940701,39.53249]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[63,244,251],"duration":11.781,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.305,"geometry_index":33162,"location":[-7.942989,39.5316]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[74,255],"duration":1.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.633,"geometry_index":33165,"location":[-7.946941,39.530472]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[75,258],"duration":12.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.055,"geometry_index":33166,"location":[-7.947621,39.53033]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.952043,39.529683],"geometry_index":33169,"admin_index":14,"weight":61.562,"is_urban":false,"turn_weight":0.5,"duration":69.805,"bearings":[70,80,256],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[56,234],"duration":12.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.719,"geometry_index":33200,"location":[-7.975451,39.523504]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[83,261],"duration":90.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":78.984,"geometry_index":33217,"location":[-7.979556,39.522157]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.009189,39.516452],"geometry_index":33320,"admin_index":14,"weight":39.578,"is_urban":false,"turn_weight":15,"duration":28.102,"bearings":[51,231,237],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.016348,39.511375],"geometry_index":33334,"admin_index":14,"weight":5.055,"is_urban":false,"turn_weight":0.5,"duration":5.211,"bearings":[44,47,226],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.086,"geometry_index":33337,"location":[-8.017672,39.510379]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,224],"duration":91.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":80.195,"geometry_index":33338,"location":[-8.017989,39.510134]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[69,248],"duration":8.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.641,"geometry_index":33380,"location":[-8.047462,39.496158]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[68,248],"duration":31.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.375,"geometry_index":33381,"location":[-8.050429,39.495243]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[84,265],"duration":7.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.688,"geometry_index":33402,"location":[-8.061223,39.492428]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[90,273],"duration":79.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":73.125,"geometry_index":33407,"location":[-8.064042,39.492356]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":3.453,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.281,"geometry_index":33477,"location":[-8.0935,39.495098]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,246],"duration":12.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.742,"geometry_index":33479,"location":[-8.094722,39.494677]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,247],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.578,"geometry_index":33480,"location":[-8.098765,39.49327]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":15.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.633,"geometry_index":33481,"location":[-8.09929,39.493095]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[93,97,277],"duration":77.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":69.602,"geometry_index":33495,"location":[-8.104708,39.492777]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,275],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.562,"geometry_index":33539,"location":[-8.128997,39.485799]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[87,265],"duration":55.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":48.383,"geometry_index":33542,"location":[-8.131633,39.485848]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[90,268],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.586,"geometry_index":33571,"location":[-8.151205,39.486464]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[85,262],"duration":10.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.531,"geometry_index":33574,"location":[-8.151809,39.486436]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[77,257,265],"duration":7.914,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.117,"geometry_index":33580,"location":[-8.155261,39.48587]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.157798,39.485402],"geometry_index":33581,"admin_index":14,"weight":48.289,"is_urban":false,"turn_weight":1,"duration":51.141,"bearings":[68,77,256],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.173852,39.48951],"geometry_index":33590,"admin_index":14,"weight":35.438,"is_urban":false,"turn_weight":15,"duration":22.102,"bearings":[128,308,315],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[128,305],"duration":100.758,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":93.18,"geometry_index":33591,"location":[-8.17996,39.493233]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[53,233],"duration":42.977,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":39.75,"geometry_index":33622,"location":[-8.213545,39.4889]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.289,"geometry_index":33632,"location":[-8.22509,39.481059]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[43,226,234],"duration":12.344,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.414,"geometry_index":33633,"location":[-8.225417,39.48079]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.228948,39.479298],"geometry_index":33647,"admin_index":14,"weight":4.43,"is_urban":false,"turn_weight":1,"duration":3.719,"bearings":[75,81,265],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[96,277],"duration":17.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.859,"geometry_index":33655,"location":[-8.230147,39.4793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[108,287],"duration":54.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":48.922,"geometry_index":33662,"location":[-8.235791,39.480674]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[99,281],"duration":42.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":38.289,"geometry_index":33672,"location":[-8.255917,39.485327]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.272208,39.486275],"geometry_index":33682,"admin_index":14,"weight":31.055,"is_urban":false,"turn_weight":15,"duration":17.859,"bearings":[91,270,276],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.278545,39.486353],"geometry_index":33684,"admin_index":14,"weight":23.328,"is_urban":false,"turn_weight":0.5,"duration":25.375,"bearings":[89,94,274],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[109,289],"duration":108.789,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":100.633,"geometry_index":33688,"location":[-8.287159,39.48811]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[56,240,244],"duration":21.32,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":20.242,"geometry_index":33763,"location":[-8.322852,39.48622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[75,254],"duration":28.484,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.047,"geometry_index":33775,"location":[-8.330005,39.484122]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,254],"duration":9.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.242,"geometry_index":33803,"location":[-8.339765,39.482965]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[74,258],"duration":29.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":27.852,"geometry_index":33804,"location":[-8.343121,39.482223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[117,296],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.43,"geometry_index":33831,"location":[-8.353221,39.483272]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[116,297,306],"duration":9.82,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.078,"geometry_index":33832,"location":[-8.353664,39.483442]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.356546,39.484573],"geometry_index":33834,"admin_index":14,"weight":80.031,"is_urban":false,"turn_weight":0.5,"duration":88.375,"bearings":[113,117,297],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":9.492,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.539,"geometry_index":33874,"location":[-8.386602,39.486705]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.977,"geometry_index":33875,"location":[-8.38986,39.487001]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[97,277],"duration":7.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.781,"geometry_index":33876,"location":[-8.390601,39.487068]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[95,274],"duration":123.609,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":111.242,"geometry_index":33878,"location":[-8.393222,39.48728]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[101,281],"duration":25.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.648,"geometry_index":33896,"location":[-8.435258,39.490448]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[55,237],"duration":4.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.859,"geometry_index":33905,"location":[-8.442867,39.489374]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[-8.444052,39.488874],"geometry_index":33910,"admin_index":14,"weight":24.188,"is_urban":false,"turn_weight":15,"duration":9.945,"bearings":[67,249,260],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.447214,39.488678],"geometry_index":33921,"admin_index":14,"weight":2.516,"is_urban":false,"turn_weight":1,"duration":1.648,"bearings":[83,98,281],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.447735,39.488753],"geometry_index":33922,"admin_index":14,"weight":6.758,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.328,"bearings":[101,280,294],"out":1,"in":0,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.450085,39.489063],"geometry_index":33924,"admin_index":14,"weight":4.992,"is_urban":false,"turn_weight":1,"duration":4.32,"bearings":[84,100,280],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[100,280],"duration":11.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.625,"geometry_index":33925,"location":[-8.451477,39.489245]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,273],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.773,"geometry_index":33927,"location":[-8.455325,39.489721]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[83,257],"duration":73.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":69.539,"geometry_index":33930,"location":[-8.458166,39.489638]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":21.031,"toll_collection":{"name":"Entroncamento (A23)","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":21.031,"geometry_index":33944,"location":[-8.479909,39.480242]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[52,232,239],"duration":7.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.203,"geometry_index":33947,"location":[-8.485552,39.476622]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[52,233],"duration":3.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.906,"geometry_index":33948,"location":[-8.48749,39.475442]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[53,234],"duration":6.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.148,"geometry_index":33949,"location":[-8.48856,39.474825]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[51,232],"duration":18.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.945,"geometry_index":33951,"location":[-8.490197,39.473807]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,259],"duration":8.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.516,"geometry_index":33956,"location":[-8.495463,39.471201]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[89,268],"duration":84.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":82.18,"geometry_index":33959,"location":[-8.4983,39.471022]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.328,"geometry_index":33985,"location":[-8.52649,39.466116]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[73,253],"duration":0.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.719,"geometry_index":33986,"location":[-8.526925,39.466012]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.527163,39.465955],"geometry_index":33987,"admin_index":14,"weight":27.383,"is_urban":false,"turn_weight":15,"duration":12.711,"bearings":[73,253,258],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,253],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.445,"geometry_index":33988,"location":[-8.531329,39.464973]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[73,253],"duration":7.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.734,"geometry_index":33989,"location":[-8.531818,39.464858]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.534375,39.464365],"geometry_index":33992,"admin_index":14,"weight":98.68,"is_urban":false,"turn_weight":0.5,"duration":106.164,"bearings":[75,90,264],"out":2,"in":1,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[112,292],"duration":125.906,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":113.32,"geometry_index":34004,"location":[-8.57381,39.471026]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[95,271,283],"duration":16.516,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":15.25,"geometry_index":34022,"location":[-8.61988,39.479923]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.624829,39.479815],"geometry_index":34025,"admin_index":14,"weight":15.141,"is_urban":false,"turn_weight":0.75,"duration":15.203,"bearings":[75,86,250],"out":2,"in":1,"turn_duration":0.056,"classes":["toll","motorway"],"entry":[false,false,true]},{"bearings":[61,234],"entry":[false,true],"classes":["toll","motorway"],"in":0,"turn_weight":15,"toll_collection":{"name":"Torres Novas","type":"toll_booth"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34027,"location":[-8.627379,39.47887]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 50 miles.","announcement":"Continue for 50 miles.","distanceAlongGeometry":80960.484},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 1.","announcement":"In 2 miles, Keep left to stay on A 1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 1.","announcement":"In a half mile, Keep left to stay on A 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 1, E 01.","announcement":"Keep left to stay on A 1, E 01.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.629275,39.477826],"geometry_index":34028,"admin_index":14,"weight":7.352,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":7.742,"bearings":[54,238,249],"out":1,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,239],"duration":3.656,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":3.469,"geometry_index":34029,"location":[-8.630845,39.477065]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[59,234],"duration":29.359,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":14,"out":1,"weight":27.891,"geometry_index":34030,"location":[-8.631505,39.476753]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.62932,39.473341],"geometry_index":34040,"admin_index":14,"weight":21.227,"is_urban":false,"turn_weight":11.75,"duration":9.992,"bearings":[166,332,344],"out":0,"in":1,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[179,357],"duration":56.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":52.133,"geometry_index":34044,"location":[-8.628788,39.470564]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[6,183],"duration":215.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":193.766,"geometry_index":34056,"location":[-8.631314,39.454808]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":4.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.125,"geometry_index":34098,"location":[-8.639601,39.395748]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.639553,39.394453],"geometry_index":34100,"admin_index":14,"weight":11.297,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.57,"bearings":[174,184,356],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.638749,39.391102],"geometry_index":34104,"admin_index":14,"weight":7.969,"is_urban":false,"turn_weight":1,"duration":7.766,"bearings":[162,336,345],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,336],"duration":135.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":0,"weight":122.312,"geometry_index":34106,"location":[-8.637625,39.38896]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,225],"duration":8.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.266,"geometry_index":34137,"location":[-8.642829,39.353586]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,225],"duration":84.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":76.25,"geometry_index":34138,"location":[-8.644936,39.351934]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,212],"duration":4.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.141,"geometry_index":34158,"location":[-8.65726,39.33001]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,211],"duration":37.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":33.406,"geometry_index":34159,"location":[-8.658159,39.328891]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,211],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.859,"geometry_index":34163,"location":[-8.664978,39.319537]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":24.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22,"geometry_index":34164,"location":[-8.665158,39.319309]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.359,"geometry_index":34170,"location":[-8.670426,39.313612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,222],"duration":44.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":40.156,"geometry_index":34171,"location":[-8.670795,39.313297]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,212],"duration":0.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.82,"geometry_index":34180,"location":[-8.679917,39.302822]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,213],"duration":12.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":11.297,"geometry_index":34181,"location":[-8.680096,39.302598]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,221],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.883,"geometry_index":34184,"location":[-8.682944,39.299672]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,222],"duration":25.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.648,"geometry_index":34185,"location":[-8.683186,39.29946]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,204],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.562,"geometry_index":34193,"location":[-8.688505,39.293488]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,201],"duration":4.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.117,"geometry_index":34194,"location":[-8.688764,39.293036]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[21,199],"duration":1.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.32,"geometry_index":34195,"location":[-8.689374,39.291826]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":22.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":20.297,"geometry_index":34196,"location":[-8.689547,39.291436]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,199],"duration":6.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.484,"geometry_index":34201,"location":[-8.691502,39.285033]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,211],"duration":42.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":38.367,"geometry_index":34203,"location":[-8.692333,39.283427]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[66,244],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.258,"geometry_index":34216,"location":[-8.704761,39.276571]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[64,242],"duration":33.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":30.852,"geometry_index":34217,"location":[-8.705197,39.276406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[65,244],"duration":5.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.328,"geometry_index":34224,"location":[-8.716049,39.272177]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[62,241],"duration":1.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.547,"geometry_index":34226,"location":[-8.717872,39.271465]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[61,241],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.18,"geometry_index":34227,"location":[-8.718388,39.271245]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.719452,39.27078],"geometry_index":34228,"admin_index":14,"weight":17.008,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.93,"bearings":[61,238,249],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,231],"duration":1.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.523,"geometry_index":34233,"location":[-8.72475,39.267839]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,229],"duration":7.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.562,"geometry_index":34234,"location":[-8.725202,39.267552]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.727346,39.266034],"geometry_index":34236,"admin_index":14,"weight":14.836,"is_urban":false,"turn_weight":1,"duration":14.586,"bearings":[30,47,223],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,217],"duration":7.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.688,"geometry_index":34241,"location":[-8.730806,39.263026]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,215],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.352,"geometry_index":34243,"location":[-8.732315,39.261448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,213],"duration":6.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.055,"geometry_index":34244,"location":[-8.732603,39.261128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,211],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.523,"geometry_index":34247,"location":[-8.733808,39.259662]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.734098,39.259294],"geometry_index":34248,"admin_index":14,"weight":2.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.617,"bearings":[31,209,220],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,208],"duration":9.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.703,"geometry_index":34249,"location":[-8.734545,39.258669]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.736066,39.256346],"geometry_index":34253,"admin_index":14,"weight":6.93,"is_urban":false,"turn_weight":0.75,"duration":6.703,"bearings":[8,26,204],"out":2,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[24,203],"duration":2.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.922,"geometry_index":34255,"location":[-8.73703,39.254653]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[23,203],"duration":33.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":29.742,"geometry_index":34256,"location":[-8.737321,39.254125]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,210],"duration":21.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.758,"geometry_index":34262,"location":[-8.742058,39.245647]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[57,241],"duration":148.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":133.273,"geometry_index":34270,"location":[-8.747409,39.241303]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227],"duration":4.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.375,"geometry_index":34314,"location":[-8.783,39.209061]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,229],"duration":2.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.352,"geometry_index":34315,"location":[-8.784378,39.208076]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.891,"geometry_index":34316,"location":[-8.78514,39.207564]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.786425,39.206741],"geometry_index":34317,"admin_index":14,"weight":8.531,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.484,"bearings":[50,231,241],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.789352,39.205032],"geometry_index":34320,"admin_index":14,"weight":9.633,"is_urban":false,"turn_weight":0.5,"duration":10.164,"bearings":[42,54,236],"out":2,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,238],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.07,"geometry_index":34322,"location":[-8.792378,39.203476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[58,240],"duration":44.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":40.484,"geometry_index":34323,"location":[-8.793077,39.203138]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":0.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.633,"geometry_index":34329,"location":[-8.807703,39.198017]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[67,247],"duration":56.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":50.781,"geometry_index":34330,"location":[-8.807941,39.197938]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,217],"duration":1.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.781,"geometry_index":34339,"location":[-8.824123,39.188388]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[37,216],"duration":83.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":75.328,"geometry_index":34340,"location":[-8.824556,39.187945]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[55,234],"duration":1.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.125,"geometry_index":34350,"location":[-8.846148,39.171983]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[54,233],"duration":142.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":131.383,"geometry_index":34351,"location":[-8.84651,39.171777]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[28,209],"duration":6.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.141,"geometry_index":34375,"location":[-8.88408,39.14535]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,213],"duration":2.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.75,"geometry_index":34376,"location":[-8.885195,39.143764]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,217],"duration":2.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.656,"geometry_index":34377,"location":[-8.885765,39.14309]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.886367,39.142468],"geometry_index":34378,"admin_index":14,"weight":6.406,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.75,"bearings":[37,222,228],"out":1,"in":0,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,228],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.406,"geometry_index":34380,"location":[-8.888035,39.141149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[48,227],"duration":10.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.828,"geometry_index":34381,"location":[-8.888431,39.140868]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.891024,39.138862],"geometry_index":34384,"admin_index":14,"weight":1.844,"is_urban":false,"turn_weight":1,"duration":0.914,"bearings":[37,43,222],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,220],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.32,"geometry_index":34385,"location":[-8.891234,39.138683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,220],"duration":8.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.5,"geometry_index":34386,"location":[-8.89155,39.138392]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,213],"duration":13.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":13.125,"geometry_index":34390,"location":[-8.893474,39.136417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[30,212],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.844,"geometry_index":34393,"location":[-8.895989,39.133128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,216],"duration":5.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":5.102,"geometry_index":34394,"location":[-8.896366,39.132663]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[36,220],"duration":2.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2,"geometry_index":34395,"location":[-8.897504,39.131446]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[40,223],"duration":24.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":22.992,"geometry_index":34396,"location":[-8.898002,39.130992]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[42,222,227],"duration":21.445,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":19.828,"geometry_index":34401,"location":[-8.904213,39.126248]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.909443,39.122104],"geometry_index":34405,"admin_index":14,"weight":5.242,"is_urban":false,"turn_weight":1,"duration":4.594,"bearings":[48,53,233],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,228],"duration":15.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":14.039,"geometry_index":34407,"location":[-8.910822,39.121242]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[52,238],"duration":175.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":153.93,"geometry_index":34410,"location":[-8.915219,39.118062]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[9,191],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.656,"geometry_index":34452,"location":[-8.933241,39.074108]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,193],"duration":94.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":82.836,"geometry_index":34453,"location":[-8.933292,39.073902]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,212],"duration":8.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.125,"geometry_index":34476,"location":[-8.945945,39.050177]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[29,209],"duration":72.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":67.391,"geometry_index":34478,"location":[-8.947418,39.048232]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[18,193],"duration":1.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.688,"geometry_index":34490,"location":[-8.960896,39.031352]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[13,193],"duration":8.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.922,"geometry_index":34491,"location":[-8.961032,39.030898]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[12,193],"duration":7.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.164,"geometry_index":34493,"location":[-8.961625,39.028741]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[15,197],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.688,"geometry_index":34496,"location":[-8.962227,39.026846]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[17,199],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.32,"geometry_index":34497,"location":[-8.9624,39.02641]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-8.962548,39.026072],"geometry_index":34498,"admin_index":14,"weight":2.547,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.555,"bearings":[19,199,217],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[19,200],"duration":6.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.586,"geometry_index":34499,"location":[-8.962823,39.025435]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.963693,39.023826],"geometry_index":34502,"admin_index":14,"weight":22.742,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":22.758,"bearings":[25,203,213],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.966075,39.01731],"geometry_index":34508,"admin_index":14,"weight":7.578,"is_urban":false,"turn_weight":1.3,"duration":6.148,"bearings":[7,185,358],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":7.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.102,"geometry_index":34510,"location":[-8.966234,39.015679]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,184],"duration":3.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.219,"geometry_index":34513,"location":[-8.966402,39.013572]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":8.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.938,"geometry_index":34514,"location":[-8.966468,39.012772]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.966663,39.010515],"geometry_index":34515,"admin_index":14,"weight":5.781,"is_urban":false,"turn_weight":1,"duration":4.672,"bearings":[4,184,353],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[3,183],"duration":4.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.57,"geometry_index":34517,"location":[-8.96676,39.009296]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,184],"duration":6.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.328,"geometry_index":34519,"location":[-8.966854,39.008128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.967004,39.006516],"geometry_index":34520,"admin_index":14,"weight":15.461,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.484,"bearings":[4,182,189],"out":1,"in":0,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true,false],"classes":["toll","motorway"],"in":0,"bearings":[4,181,359],"duration":2.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.055,"geometry_index":34524,"location":[-8.967323,39.002476]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,184],"duration":6.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.648,"geometry_index":34525,"location":[-8.967334,39.001934]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[4,185],"duration":100.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":98.078,"geometry_index":34526,"location":[-8.967485,39.000199]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,207],"duration":7.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.328,"geometry_index":34536,"location":[-8.977678,38.975234]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[27,210],"duration":3.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.586,"geometry_index":34537,"location":[-8.978858,38.973431]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.979499,38.972574],"geometry_index":34538,"admin_index":14,"weight":8.797,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.273,"bearings":[30,217,227],"out":1,"in":0,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.981485,38.970767],"geometry_index":34540,"admin_index":14,"weight":2.969,"is_urban":false,"turn_weight":0.5,"duration":2.625,"bearings":[37,44,222],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,218],"duration":4.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.023,"geometry_index":34541,"location":[-8.982056,38.970282]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[34,212],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.516,"geometry_index":34543,"location":[-8.982856,38.969406]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[32,206],"duration":17.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":16.508,"geometry_index":34544,"location":[-8.983136,38.969053]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[8,191],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.547,"geometry_index":34550,"location":[-8.984617,38.964726]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[11,194],"duration":7.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.773,"geometry_index":34551,"location":[-8.984724,38.964304]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.985546,38.96253],"geometry_index":34554,"admin_index":14,"weight":5.562,"is_urban":false,"turn_weight":0.5,"duration":5.336,"bearings":[20,24,205],"out":2,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,218],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.445,"geometry_index":34557,"location":[-8.986396,38.961348]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,222],"duration":7.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":7.375,"geometry_index":34558,"location":[-8.986698,38.961044]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[47,225],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.117,"geometry_index":34560,"location":[-8.988462,38.959624]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[45,227],"duration":13.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":12.992,"geometry_index":34561,"location":[-8.988728,38.959417]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[31,208],"duration":18.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.57,"geometry_index":34565,"location":[-8.992105,38.956308]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[1,181],"duration":26.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":24.906,"geometry_index":34571,"location":[-8.993465,38.951781]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[35,218],"duration":1.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.43,"geometry_index":34578,"location":[-8.995893,38.945454]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[38,222],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.516,"geometry_index":34579,"location":[-8.996203,38.945149]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[42,224],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.922,"geometry_index":34580,"location":[-8.996785,38.944652]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[44,226],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":0.672,"geometry_index":34581,"location":[-8.997726,38.943895]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.997896,38.943768],"geometry_index":34582,"admin_index":14,"weight":5.25,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.531,"bearings":[46,226,241],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.999167,38.942788],"geometry_index":34584,"admin_index":14,"weight":4.328,"is_urban":false,"turn_weight":0.5,"duration":4.047,"bearings":[30,45,223],"out":2,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,214],"duration":52.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":49.914,"geometry_index":34586,"location":[-9.000014,38.942018]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,211],"duration":6.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":6.094,"geometry_index":34597,"location":[-9.009217,38.930948]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,202],"duration":9.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.906,"geometry_index":34599,"location":[-9.010189,38.929517]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":4.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.266,"geometry_index":34600,"location":[-9.011329,38.92733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[22,202],"duration":45.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":44.25,"geometry_index":34601,"location":[-9.011862,38.926299]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,230],"duration":1.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.859,"geometry_index":34608,"location":[-9.021366,38.917547]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,229],"duration":10.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.703,"geometry_index":34609,"location":[-9.021844,38.917235]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[49,230],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.805,"geometry_index":34610,"location":[-9.024547,38.915402]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,229],"duration":52.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":52.672,"geometry_index":34611,"location":[-9.025017,38.915091]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[50,231],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.242,"geometry_index":34614,"location":[-9.038312,38.906353]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[51,228],"duration":17.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":17.727,"geometry_index":34615,"location":[-9.038866,38.906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,213],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.547,"geometry_index":34619,"location":[-9.042887,38.902912]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[33,214],"duration":24.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":25.547,"geometry_index":34620,"location":[-9.043308,38.902398]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":2.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.648,"geometry_index":34624,"location":[-9.047069,38.896711]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[25,205],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.578,"geometry_index":34625,"location":[-9.047434,38.896112]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.047792,38.895524],"geometry_index":34626,"admin_index":14,"weight":6.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.992,"bearings":[25,206,227],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[26,206],"duration":3.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":3.164,"geometry_index":34627,"location":[-9.048611,38.894204]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.049039,38.893527],"geometry_index":34628,"admin_index":14,"weight":7.234,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.062,"bearings":[26,206,222],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.050174,38.891983],"geometry_index":34631,"admin_index":14,"weight":8.914,"is_urban":false,"turn_weight":1,"duration":7.727,"bearings":[18,33,213],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[39,221],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.555,"geometry_index":34633,"location":[-9.051559,38.890462]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[41,223],"duration":2.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.578,"geometry_index":34634,"location":[-9.05184,38.890214]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[43,223],"duration":4.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":4.547,"geometry_index":34635,"location":[-9.052313,38.889816]},{"bearings":[43,223],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34636,"location":[-9.053145,38.889117]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E01","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 01"}],"type":"fork","modifier":"left","text":"A 1 / E 01"},"distanceAlongGeometry":80990.148}],"destinations":"A 1: Lisboa, Santarém","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 1 toward Lisboa/Santarém.","modifier":"slight left","bearing_after":238,"bearing_before":234,"location":[-8.629275,39.477826]},"speedLimitSign":"vienna","name":"Autoestrada do Norte","weight_typical":2444.562,"duration_typical":2621.219,"duration":2621.219,"distance":80990.148,"driving_side":"right","weight":2444.562,"mode":"driving","ref":"A 1; E 01; E 80","geometry":"ccphjAt`umOpn@baBnRfh@zQx`@~L`MpMnEvMgBzI_FfUy_@do@arApMiSdMaO~g@m[bd@_K`u@cK`e@cEhk@_Bfn@]|x@zCbqAxKh}@hKj}@bKxoA|ItrAvH~bBfN`zBhVn~Bd^zvAdPxdA`HnkApDzkAlAnaBeD~dA}FpiAgK|lAoQp_Bu[ttBal@lfD_bArnAqWfz@mMv~@kI~|@mExt@m@lrAhAtk@fCrf@rExrAzP|bAnTbt@fRd~A|h@vjCrbAnfAn[jnAhXx{Djn@jvAtWpuAt^jdBzm@fhFh`C|y@xYp_AlTx`AnQpm@nG|}@bGlhB`FhlAnEdmAxKtlA~Rd_FngAh`BfWzy@fHbj@\\j`@Zpn@{Bdw@uFbs@_HtgAuVl[{Hdo@iSttA}p@xj@e^hjA}z@fmEcyDt~AseAftAuq@|p@kUvc@_Mr`AoQbgAuM`rAuFblBaAjlBJz{AwCzxDqPzAGbx@~@vw@|Gfu@nP|}@r[|p@j^zo@fg@jc@la@vc@ji@~g@lv@njAxrB`m@t_Ab`@pj@nl@pu@pdAtlA`cBfkBbrAxbBffBtbCh~@fqAlwBznCpm@dq@zt@`o@bt@zk@`mA|u@||@zd@zv@zZhhAn^fs@|PvbAfQv`AlLx|Ep^`p@tHdj@bKdq@|Otp@vUlq@h[dl@~[lcAxo@|dAdw@liHlfFdy@hh@jtBllArmB~jAfMfJ|_Ajr@`y@xo@bgAf~@bkAhiA`h@`j@vj@lo@tR`VbqC`hDxiA~jAd}@px@luA`fA~UxObn@ja@jiArp@neArm@beA~o@~LdJh|@`r@hiAjjAfn@pr@fLbNlTzWhdAflAfq@~r@xq@zm@xs@nk@vy@xj@zn@b\\~T~Lf[dOrjAbe@jWxIlf@zQnxAd\\x~Dbq@zk@nLpa@nIbv@dWfl@vZf|@rn@zw@zs@ve@nk@r`@`j@pb@fu@zT|d@vQh`@zRjn@fUtx@f[nuAp[dtAlg@xwBlUr`AhIfZ|IbZp`@nrAps@rxBf]~eAxl@hyB~p@rjCdh@`pB~Rft@nWt{@vLf_@`\\naAjWtq@vf@xkArk@dpApX|i@np@nnA|Pf[fi@v|@rs@fgAbRlVrm@zx@pT`Xr]pd@`eAhgAbq@lp@no@zk@~R~Pnf@l`@l[dVtVtQ~UbQ`f@|Zzk@z]bYrPtVpMnq@~^hMbGnzAbs@~_@dQf~@z`@`{@|`@hsAdm@rkCjlAzaBnu@vqAdq@dp@jc@b_@`Z~a@xb@ld@~i@zVf]hd@dx@|V|g@r_@x~@zLx_@tXleAxPj|@hNn}@dOdfA~Llz@xI~l@fLrq@zPv`AxQlw@lQpk@hQlj@dT`l@jSfg@`Wnk@xd@`{@x_@`l@rj@fv@`f@|i@vl@rl@bc@v`@fg@d]dHzElk@xYnp@n\\po@vXt{@hZp~@~[lz@vX`fAr^js@zYtqAzi@dt@b^pmAjp@js@|b@zoAbx@`vBrzAdpB~_BpiAjdAxo@zn@x`AdcAdv@t{@vnAf|AxmBfnCp|@buA~^rn@lr@hoAfRp]xb@d{@vr@d{A|v@hhBhh@xrAbTtj@ls@`vBj^hjAv|@~`Dxz@ltDfzAzpHlVleA|CzMdPrr@dv@vlCbu@jzBp`At`CddAnxB`xAvjC``AjvAr}AjuBzuA|`BtZ`Z`wCjlCnjCv}BrpCzuCpvAxhBhgAp~ArbA`dB`x@nzAbkAtlCn}BfbGfhArfCzKrUfh@zfAxpAhuB|{@|gAdmBb}B~xAbsBrs@brAz}@xjBdaB|uDxw@lxAt_Ah{AfiAxuA`bBnpBntA~fBv}@z|Arw@veBdm@vbBp[xgArs@xsBzy@hkBx|@n~Av}@xnAvuAlzArhAt~@|qA`y@bbBtdAbi@rb@ze@rd@t_@jd@vp@zaApPvW|^tj@b]jh@h~@~kAdJbLdQvRdGxGta@`d@vf@be@xg@fc@~w@ln@~y@dk@pxAp`A`\\pV`kAbfAj[b^ft@f~@pr@fgAvkAzlBxvAvnBbZ`^`aAtjAhxAd|Afq@vaAjt@fzAl[ho@lXzd@jf@tv@nlBxfCzp@hrAjl@d{Ale@liBlk@hgB|o@t{A`{@rfB~Pzd@zUzs@rU`fAnXj~ArR~w@p^fgArm@`nAvu@nbAxaA~}@b}@be@tmA~`@bpApN~tAtEb`BxAjuBuDz|BkL~mAaQzgAoWnaAi\\bA]ffAgg@`zAc{@pq@i_@z~@k\\x_AwOjw@qFbhANz|@bHp{@rSttAp`@teBve@djAxXdxAzXtrApQzuBnNnnCvNjf@bGzKdB`^`Hl_AlYdcArf@tl@|c@pj@bi@|s@v|@nq@vx@pw@`r@p}@ji@lu@lYrfBtd@bwCxu@tv@bPbbA~M~jBjJfcAtElo@tHd~@fRzt@nYlt@x`@zx@bn@x`Ar}@lv@pv@~r@lh@pdArq@lnAvw@reCb_BftAdfAd|A|vA`uErbFzz@x{@f_Avy@vu@vg@v~@~i@ddAtg@hcA|]hcAxZj[nGhj@vKnzAhWvUnEdVjEngAvWfZxIbTfHxf@dPdMvEpgAff@xLjGxr@~Zt^jQta@dPfrB`n@lhBpZjcAtIbp@~Dxs@|BzvAfFzRn@|Vv@~p@bC`lCdKld@`Bve@~Ax_@pAdg@hBvcBjHhm@dAzo@zBnmAfExmArFz`@TlkBlH`xAdHdbAbI~fCjZ`bCf`@xzClr@fcDjbAdbIrwCdfEvlB`sC`uAnqCzxAtoBvhApt@`g@d}@d|@vq@|}@h]tb@nSxSfa@d\\`UnP|m@j\\f]lNl^lLb`@dHpa@nFb}ArPjYtEpa@fJtk@xTr^hQlGzCtUfNvi@~_@~QzQ`w@x_At_@ll@|KrOzh@px@vw@jgA~cAt{@tYlSld@fXj[rNp]|LzcA~Sr`AfG`s@\\jgAx@tfAtHhhAbUj_Ad_@hu@fa@|\\bXl\\pY`RjR`^jc@hn@xy@|FrI~a@~l@fYl`@rUxYnXbYhj@zd@zRpMph@n\\|PfKf{EdtChy@bh@ft@nk@dl@`o@jfBlsBjl@rl@lj@`c@rj@z`@xl@zYtgCffAl_Ah`@xh@lT|p@n]ft@xj@dt@~y@vfCl`Dp`CfdDnrApoBnRz\\pqB|gDlRj\\xi@n}@`aGrjKftFxsJ`Ura@pVda@n}@lyA|y@|hA~n@vs@b_@hYjh@nb@t|@jk@pdBj~@xuCxzAld@xUvc@jUnqAdr@hi@vYd]hR~\\hThc@h]b}@~r@|_@pa@nNpPzWp\\tj@~r@dN~P"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 8 miles.","announcement":"Continue for 8 miles.","distanceAlongGeometry":12030.932},{"ssmlAnnouncement":"In 1 mile, Take exit 1.","announcement":"In 1 mile, Take exit 1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 1.","announcement":"In a half mile, Take exit 1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 1 onto A 36 toward A 12. Then Keep left to take E 01.","announcement":"Take exit 1 onto A 36 toward A 12. Then Keep left to take E 01.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[false,true,true,true],"classes":["toll","motorway"],"in":0,"bearings":[43,205,227,246],"duration":10.688,"turn_duration":0.071,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":10.883,"geometry_index":34637,"location":[-9.053433,38.888874]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[46,227],"duration":8.914,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":9.133,"geometry_index":34641,"location":[-9.05465,38.887659]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.056106,38.886965],"geometry_index":34643,"admin_index":14,"weight":2.922,"is_urban":false,"turn_weight":1.5,"duration":1.469,"bearings":[20,32,48,69,230],"out":4,"in":3,"turn_duration":0.083,"classes":["motorway"],"entry":[false,false,false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[50,227],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":1.289,"geometry_index":34644,"location":[-9.056389,38.886779]},{"entry":[false,false,true],"classes":["motorway"],"in":1,"bearings":[1,47,227],"duration":1.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":2,"weight":1.508,"geometry_index":34645,"location":[-9.05663,38.886603]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[47,228],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.711,"geometry_index":34646,"location":[-9.056916,38.886393]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,226],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2,"geometry_index":34647,"location":[-9.057438,38.886025]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,224],"duration":30.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":31.344,"geometry_index":34648,"location":[-9.057811,38.88574]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,208],"duration":1.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.047,"geometry_index":34654,"location":[-9.063277,38.879722]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[28,210],"duration":32.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":33.781,"geometry_index":34655,"location":[-9.063576,38.879276]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,212],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":2.445,"geometry_index":34659,"location":[-9.068896,38.871793]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[32,217],"duration":87.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":91.68,"geometry_index":34660,"location":[-9.069303,38.871294]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[29,210],"duration":8.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":14,"out":1,"weight":8.414,"geometry_index":34681,"location":[-9.085191,38.853834]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.086492,38.852068],"geometry_index":34682,"admin_index":14,"weight":26.352,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.102,"bearings":[30,210,217],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.09058,38.846601],"geometry_index":34684,"admin_index":14,"weight":9.016,"is_urban":true,"turn_weight":0.5,"duration":7.93,"bearings":[21,30,210],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[30,208],"duration":76.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":82.656,"geometry_index":34685,"location":[-9.092097,38.844548]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[12,192,351],"duration":10.445,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":11.203,"geometry_index":34693,"location":[-9.099509,38.822378]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[12,192],"duration":21.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":23.547,"geometry_index":34694,"location":[-9.100144,38.819956]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[11,192],"duration":17.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":18.984,"geometry_index":34697,"location":[-9.101471,38.814867]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[17,198],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":3.594,"geometry_index":34705,"location":[-9.102748,38.810807]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[18,199],"duration":6.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":7.203,"geometry_index":34706,"location":[-9.103064,38.810036]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[20,201,234],"duration":3.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":3.461,"geometry_index":34708,"location":[-9.103719,38.808587]},{"entry":[false,true,false],"classes":["motorway"],"in":0,"bearings":[21,202,348],"duration":29.195,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":32.109,"geometry_index":34709,"location":[-9.104069,38.807891]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,205],"duration":12.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":13.547,"geometry_index":34715,"location":[-9.107729,38.801746]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[25,205],"duration":17.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":19.984,"geometry_index":34716,"location":[-9.109175,38.799383]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[26,206],"duration":11.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"weight":12.961,"geometry_index":34718,"location":[-9.111061,38.796298]},{"bearings":[25,206],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":14,"out":1,"geometry_index":34720,"location":[-9.112257,38.794344]}],"bannerInstructions":[{"secondary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A12","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 12"}],"type":"off ramp","modifier":"right","text":"A 12"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"Exit 1 A 36"},"distanceAlongGeometry":12070.932},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["straight","slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A12","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 12"}],"type":"off ramp","modifier":"right","text":"A 12"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"1"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A36","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 36"}],"type":"off ramp","modifier":"right","text":"Exit 1 A 36"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 1/E 01/E 80/Autoestrada do Norte.","modifier":"slight left","bearing_after":205,"bearing_before":223,"location":[-9.053433,38.888874]},"speedLimitSign":"vienna","name":"Autoestrada do Norte","weight_typical":469.398,"duration_typical":438.867,"duration":438.867,"distance":12070.932,"driving_side":"right","weight":469.398,"mode":"driving","ref":"A 1; E 01; E 80","geometry":"syqdiApnqgPrUfLfGnDnFxEpd@nq@tZve@tNfs@rJtP~I`NbLzP~Ur_@xPhVtk@~u@tl@~s@nr@vq@ft@|o@`_Cj~A|s@pe@zZtQjy@lj@zQ~L~xDtaClkEjoCd^lXlk@vj@l~@fjAfg@z_A|l@vqArj@xeBjn@jbBr]nv@xg@rw@nm@lq@dn@`i@t{@lh@npAde@x`Brg@zbD`bAdc@nNfe@jPta@~Ol`@~Qdb@tTlZpQ~^bVjmBhpAdeD|{BnnDpaCh_Cx}A~fCt}A~~@hc@n}@tZziAtXleOxiC~sIvyArpCjd@dj@|JjvCtf@|yFz`ApSdDpm@zJxbAfQr`@nHb`@dIzQ~DfXfGxX~GpW`HtWpHdo@vR~aAv\\pVdJnj@zTlSnIzRtIfXzLfXnMvqChxAnqCzxAtrCjyAlkArm@jsBffArqBdeAnFpCpj@vY"},{"ref":"E 01","mode":"driving","weight":8.062,"distance":110.29,"geometry":"}yw~hAxeekPnd@t`@jChCnAnAtDdE","duration":7.023,"driving_side":"right","duration_typical":7.023,"weight_typical":8.062,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 1 onto A 36 toward A 12.","modifier":"slight right","bearing_after":215,"bearing_before":206,"location":[-9.112685,38.793647]},"speedLimitUnit":"km/h","destinations":"A 36, A 12, IC 17, IP 7, A 2: CRIL, Eixo N-S, Sul, Parque das Nações","bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Moscavide"}],"type":"fork","modifier":"left","text":"Moscavide"},"distanceAlongGeometry":110.29}],"exits":"1","voiceInstructions":[{"ssmlAnnouncement":"Keep left to take E 01 toward Moscavide.","announcement":"Keep left to take E 01 toward Moscavide.","distanceAlongGeometry":82.29}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-9.112685,38.793647],"geometry_index":34721,"admin_index":14,"weight":5.953,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":5.195,"bearings":[26,206,215],"out":2,"in":0,"turn_duration":0.014,"classes":["motorway"],"entry":[false,true,true]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":false}],"bearings":[35,219],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"geometry_index":34722,"location":[-9.113224,38.793047]}]},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep right toward Moscavide.","announcement":"In a half mile, Keep right toward Moscavide.","distanceAlongGeometry":1079.798},{"ssmlAnnouncement":"Keep right toward Moscavide.","announcement":"Keep right toward Moscavide.","distanceAlongGeometry":130.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-9.113432,38.792846],"geometry_index":34725,"admin_index":14,"weight":2.383,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.086,"bearings":[39,225,239],"out":1,"in":0,"turn_duration":0.01,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[48,232],"duration":8.125,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":9.344,"geometry_index":34728,"location":[-9.113751,38.792612]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[46,226],"duration":8.016,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":9.219,"geometry_index":34735,"location":[-9.115034,38.791726]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[24,199],"duration":3.227,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":3.711,"geometry_index":34742,"location":[-9.116059,38.790688]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[19,197],"duration":3.859,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":1,"weight":4.531,"geometry_index":34743,"location":[-9.116259,38.790246]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-9.116393,38.789718],"geometry_index":34747,"admin_index":14,"weight":3.57,"is_urban":true,"turn_weight":0.75,"duration":2.453,"bearings":[6,172,358],"out":1,"in":0,"turn_duration":0.052,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[152,345],"duration":7.945,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":9.336,"geometry_index":34749,"location":[-9.116301,38.789386]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,281],"duration":18.461,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":21.688,"geometry_index":34759,"location":[-9.115164,38.788738]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":2.734,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":3.219,"geometry_index":34783,"location":[-9.111867,38.787787]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,310],"duration":2.18,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"weight":2.562,"geometry_index":34784,"location":[-9.111389,38.78747]},{"bearings":[127,311],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34785,"location":[-9.111021,38.787218]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Moscavide"}],"type":"fork","modifier":"right","text":"Moscavide"},"distanceAlongGeometry":1107.798}],"destinations":"A 12, IC 2: Moscavide, Sacavém, Sul (Ponte Vasco da Gama)","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E 01 toward Moscavide.","modifier":"slight left","bearing_after":225,"bearing_before":219,"location":[-9.113432,38.792846]},"speedLimitSign":"vienna","name":"","weight_typical":73.969,"duration_typical":62.836,"duration":62.836,"distance":1107.798,"driving_side":"right","weight":73.969,"mode":"driving","ref":"E 01","geometry":"{gv~hAntfkPpD~EtCjEjCpEvDdHtDjHdDzFhDbGhFtI`J|M`N~R`N`S~GpJjGzGpGrFdF~D|F`DvGzCrZnKpFnBlEx@bFv@zJh@|KiAxFmBlHcElDwC|DuEfDkFzC}GnBsGfByHr@mGReDPcDBiEC_GQqFc@qIYgHOyEQkEKiFEuGLmId@uHp@{Fv@uFnAeGnBgGlBqFjC}FxCwFnCeFrDiGbDsFfFuIjGmKbHqLxR{\\vN_VdIaPbMoY"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take IC 2.","announcement":"In a quarter mile, Keep left to take IC 2.","distanceAlongGeometry":420.639},{"ssmlAnnouncement":"Keep left to take IC 2, A 30 toward Lisboa, Moscavide.","announcement":"Keep left to take IC 2, A 30 toward Lisboa, Moscavide.","distanceAlongGeometry":196}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[117,126,304],"duration":21.812,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":14,"out":1,"weight":25.625,"geometry_index":34787,"location":[-9.110324,38.786829]},{"bearings":[163,341],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34804,"location":[-9.106928,38.784323]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Lisboa"},{"type":"text","text":"/"},{"type":"text","text":"Moscavide"}],"type":"fork","modifier":"left","text":"Lisboa / Moscavide"},"distanceAlongGeometry":448.639}],"destinations":"Moscavide, Lisboa, Sacavém, Alverca","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right toward Moscavide.","modifier":"slight right","bearing_after":126,"bearing_before":124,"location":[-9.110324,38.786829]},"speedLimitSign":"vienna","name":"","weight_typical":27.562,"duration_typical":23.43,"duration":23.43,"distance":448.639,"driving_side":"right","weight":27.562,"mode":"driving","geometry":"yoj~hAfr`kPfQ{^xG_PvUgk@xSkg@fKoUtBsDxCmE|C_EhCuC~BaC|D{C`EsCdEcC`FeCbEuAjHaCfJ{CpOuE"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2160.255},{"ssmlAnnouncement":"In a half mile, Keep left toward Centro.","announcement":"In a half mile, Keep left toward Centro.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left toward Centro, Zona Portuária.","announcement":"Keep left toward Centro, Zona Portuária.","distanceAlongGeometry":129.778}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[147,163,343],"duration":15.555,"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"turn_duration":0.071,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":true,"admin_index":14,"out":0,"weight":18.578,"geometry_index":34805,"location":[-9.106821,38.784058]},{"entry":[true,false,false],"in":1,"bearings":[174,344,353],"duration":3.148,"turn_weight":11.75,"turn_duration":0.014,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":15.508,"geometry_index":34821,"location":[-9.10546,38.781594]},{"entry":[true,false],"in":1,"bearings":[174,354],"duration":9.68,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":11.617,"geometry_index":34822,"location":[-9.105377,38.780993]},{"entry":[false,true,true],"in":0,"bearings":[6,177,197],"duration":8.398,"turn_duration":0.036,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":9.828,"geometry_index":34827,"location":[-9.105407,38.779143]},{"entry":[false,true],"in":0,"bearings":[3,182],"duration":5.461,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":6.414,"geometry_index":34832,"location":[-9.105496,38.777855]},{"entry":[false,true],"in":0,"bearings":[1,181],"duration":8.711,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":10.234,"geometry_index":34835,"location":[-9.105526,38.777011]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[1,181],"duration":4.875,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":5.852,"geometry_index":34838,"location":[-9.105549,38.775666]},{"mapbox_streets_v8":{"class":"trunk"},"location":[-9.105546,38.774914],"geometry_index":34840,"admin_index":14,"weight":7.648,"is_urban":true,"turn_weight":5,"duration":2.227,"bearings":[174,182,358],"out":0,"in":2,"turn_duration":0.022,"classes":["tunnel"],"entry":[true,true,false]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[171,354],"duration":5.57,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":6.688,"geometry_index":34841,"location":[-9.105509,38.77465]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[159,341],"duration":8.117,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":9.539,"geometry_index":34843,"location":[-9.105244,38.773949]},{"entry":[true,false],"in":1,"bearings":[176,344],"duration":19.625,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":23.062,"geometry_index":34846,"location":[-9.104858,38.773049]},{"entry":[true,false,false],"in":2,"bearings":[176,341,356],"duration":11.102,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":14.039,"geometry_index":34847,"location":[-9.104679,38.771]},{"entry":[true,false],"in":1,"bearings":[175,355],"duration":26.961,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":31.008,"geometry_index":34849,"location":[-9.104547,38.769649]},{"entry":[true,false],"in":1,"bearings":[175,355],"duration":9.25,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":10.633,"geometry_index":34850,"location":[-9.104223,38.766493]},{"entry":[true,false,false],"in":2,"bearings":[176,344,355],"duration":2.812,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":3.727,"geometry_index":34852,"location":[-9.104086,38.76516]},{"bearings":[177,282,356],"entry":[true,false,false],"in":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34853,"location":[-9.104052,38.764813]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Centro"},{"type":"text","text":"/"},{"type":"text","text":"Zona Portuária"}],"type":"fork","modifier":"left","text":"Centro / Zona Portuária"},"distanceAlongGeometry":2188.255}],"destinations":"Lisboa, Moscavide","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take IC 2/A 30 toward Lisboa/Moscavide.","modifier":"slight left","bearing_after":147,"bearing_before":163,"location":[-9.106821,38.784058]},"speedLimitSign":"vienna","name":"","weight_typical":184.789,"duration_typical":141.859,"duration":141.859,"distance":2188.255,"driving_side":"right","weight":184.789,"mode":"driving","ref":"IC 2; A 30","geometry":"sbe~hAhwyjPlNuKvEgCdCgBhEcDbK}HpDqC~DmCzEuCzFwCjGkCbG{BnEsAbFoAdH}AhFy@fc@gLpd@eDbOeAjSoAtRBnSj@|e@`DrK]dWvA`S~@vOf@zEN~ENrUZbVN|UNfe@FzUTnUTnW[nOiAvKoA`^aMjU}IbDkAv[yI`_CeJbe@qBhm@uCfdEgSbg@eCdj@kCtTcA~AE"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep left to stay on Avenida Infante Dom Henrique.","announcement":"In a half mile, Keep left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":765.402},{"ssmlAnnouncement":"Keep left to stay on Avenida Infante Dom Henrique.","announcement":"Keep left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":154.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[175,182,357],"duration":14.266,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":16.375,"geometry_index":34854,"location":[-9.104049,38.764765]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[176,356],"duration":3.961,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":4.555,"geometry_index":34856,"location":[-9.103886,38.763174]},{"entry":[true,false],"in":1,"bearings":[175,356],"duration":15.383,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":17.305,"geometry_index":34857,"location":[-9.103837,38.762679]},{"entry":[false,true,false],"in":0,"bearings":[1,175,346],"duration":6.047,"turn_weight":1,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":7.773,"geometry_index":34860,"location":[-9.103652,38.760571]},{"entry":[true,true,false],"in":2,"bearings":[176,265,355],"duration":2.039,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":2.281,"geometry_index":34863,"location":[-9.103566,38.759745]},{"entry":[true,true,false],"in":2,"bearings":[175,266,356],"duration":0.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":0.297,"geometry_index":34864,"location":[-9.103538,38.759466]},{"entry":[true,false,false],"in":2,"bearings":[175,266,355],"duration":8.578,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":9.648,"geometry_index":34865,"location":[-9.103534,38.759433]},{"entry":[true,false],"in":1,"bearings":[175,355],"duration":3.531,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":3.977,"geometry_index":34866,"location":[-9.103415,38.758263]},{"bearings":[177,266,355],"entry":[true,true,false],"in":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34867,"location":[-9.103361,38.757783]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"fork","modifier":"left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":789.736}],"destinations":"Centro, Zona Portuária","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left toward Centro/Zona Portuária.","modifier":"slight left","bearing_after":175,"bearing_before":177,"location":[-9.104049,38.764765]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":62.961,"duration_typical":54.758,"duration":54.758,"distance":789.736,"driving_side":"right","weight":62.961,"mode":"driving","geometry":"yl_}hA`jtjP|lAcGnTaA|]aBtuAaIrWy@lSHfBIrb@wBvKi@lPw@`AGbhAmF~\\kBrDM"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Enter the roundabout and take the 2nd exit toward Zona Portuária.","announcement":"In a half mile, Enter the roundabout and take the 2nd exit toward Zona Portuária.","distanceAlongGeometry":848.407},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit toward Zona Portuária, Santa Apolónia.","announcement":"Enter the roundabout and take the 2nd exit toward Zona Portuária, Santa Apolónia.","distanceAlongGeometry":186.556}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[172,183,357],"duration":10.695,"turn_duration":0.028,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":11.734,"geometry_index":34868,"location":[-9.103354,38.757693]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[176,356],"duration":7.875,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":8.664,"geometry_index":34870,"location":[-9.103183,38.756267]},{"entry":[true,false],"in":1,"bearings":[176,356],"duration":12.742,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":0,"weight":14.016,"geometry_index":34871,"location":[-9.103089,38.755323]},{"entry":[false,false,true],"in":1,"bearings":[1,16,195],"duration":8.211,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":10.023,"geometry_index":34876,"location":[-9.103226,38.753685]},{"entry":[false,true,false],"in":0,"bearings":[20,201,294],"duration":4.273,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":4.695,"geometry_index":34879,"location":[-9.103565,38.752843]},{"entry":[false,true,true],"in":0,"bearings":[21,201,283],"duration":6.758,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":7.422,"geometry_index":34880,"location":[-9.103773,38.752416]},{"entry":[false,true,true],"in":0,"bearings":[21,202,228],"duration":3.156,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":3.469,"geometry_index":34881,"location":[-9.103961,38.752036]},{"entry":[false,false,true,false],"in":0,"bearings":[22,108,204,289],"duration":2.57,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":0.617,"geometry_index":34883,"location":[-9.104082,38.751802]},{"entry":[false,false,true,true],"in":0,"bearings":[24,130,204,290],"duration":0.688,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":0.75,"geometry_index":34884,"location":[-9.104105,38.751761]},{"entry":[false,false,true,false],"in":0,"bearings":[24,99,204,289],"duration":2.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"weight":2.672,"geometry_index":34885,"location":[-9.104136,38.751706]},{"entry":[false,true,false],"in":0,"bearings":[24,199,341],"duration":15.547,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":17.07,"geometry_index":34886,"location":[-9.104252,38.751501]},{"entry":[false,true,true],"in":0,"bearings":[21,213,349],"duration":1.891,"turn_duration":0.015,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":1,"weight":2.062,"geometry_index":34891,"location":[-9.104684,38.750433]},{"bearings":[33,131,247],"entry":[false,false,true],"in":0,"turn_duration":0.067,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":14,"out":2,"geometry_index":34893,"location":[-9.104768,38.750333]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Zona Portuária"},{"type":"text","text":"/"},{"type":"text","text":"Santa Apolónia"}],"degrees":194,"driving_side":"right","type":"roundabout","modifier":"right","text":"Zona Portuária / Santa Apolónia"},"distanceAlongGeometry":872.74}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Avenida Infante Dom Henrique.","modifier":"slight left","bearing_after":172,"bearing_before":177,"location":[-9.103354,38.757693]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":87.312,"duration_typical":80.656,"duration":80.656,"distance":872.74,"driving_side":"right","weight":87.312,"mode":"driving","geometry":"yrq|hAr~rjPvWqCj_AcE~y@{Dt\\sAvS?zRnAzNzAdOxDpWfGjWfJtBt@tY~KvVvJpDvA`HxCpAl@lB|@xKfFr\\lLnHxApQnD|Aj@bEzBpBpAtAtA|@zA|@fCr@|H"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout toward Zona Portuária, Santa Apolónia.","announcement":"Exit the roundabout toward Zona Portuária, Santa Apolónia.","distanceAlongGeometry":74}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[69,131,264],"duration":3.906,"turn_weight":5.75,"turn_duration":0.02,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":2,"weight":10.023,"geometry_index":34896,"location":[-9.105041,38.750245]},{"entry":[false,true],"in":0,"bearings":[81,214],"duration":3.891,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":1,"weight":4.273,"geometry_index":34898,"location":[-9.105342,38.750215]},{"entry":[false,true,true],"in":0,"bearings":[31,164,259],"duration":8.93,"turn_duration":0.671,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":1,"weight":9.086,"geometry_index":34900,"location":[-9.105505,38.750016]},{"bearings":[110,265,319],"entry":[true,false,false],"in":2,"turn_duration":0.178,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":34903,"location":[-9.105305,38.749729]}],"destinations":"Zona Portuária, Santa Apolónia","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Zona Portuária"},{"type":"text","text":"/"},{"type":"text","text":"Santa Apolónia"}],"degrees":194,"driving_side":"right","type":"roundabout","modifier":"right","text":"Zona Portuária / Santa Apolónia"},"distanceAlongGeometry":99.493}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":2,"instruction":"Enter the roundabout and take the 2nd exit toward Zona Portuária/Santa Apolónia.","modifier":"slight right","bearing_after":264,"bearing_before":249,"location":[-9.105041,38.750245]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":24.586,"duration_typical":18,"duration":18,"distance":99.493,"driving_side":"right","weight":24.586,"mode":"driving","geometry":"iac|hA`hvjPUtHpAbHhDzEbFhBdFWjEmCjCiFh@wC"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Enter the roundabout and take the 1st exit onto Rua do Mar.","announcement":"In a half mile, Enter the roundabout and take the 1st exit onto Rua do Mar.","distanceAlongGeometry":924.812},{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit onto Rua do Mar.","announcement":"Enter the roundabout and take the 1st exit onto Rua do Mar.","distanceAlongGeometry":183.333}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[80,170,290],"duration":1.398,"turn_weight":5,"turn_duration":0.371,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":1,"weight":6.133,"geometry_index":34904,"location":[-9.105229,38.749708]},{"entry":[false,true,false],"in":2,"bearings":[79,169,350],"duration":3.398,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":1,"weight":3.633,"geometry_index":34905,"location":[-9.105202,38.749584]},{"entry":[false,true],"in":0,"bearings":[5,181],"duration":24.906,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":1,"weight":26.773,"geometry_index":34907,"location":[-9.105172,38.749178]},{"entry":[true,false],"in":1,"bearings":[160,343],"duration":4.773,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":0,"weight":5.133,"geometry_index":34911,"location":[-9.104571,38.746196]},{"entry":[true,true,false],"in":2,"bearings":[149,227,331],"duration":1.242,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":14,"out":0,"weight":1.312,"geometry_index":34913,"location":[-9.104264,38.745668]},{"entry":[true,false,false],"in":2,"bearings":[143,256,329],"duration":27.664,"turn_weight":1,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":0,"weight":30.016,"geometry_index":34914,"location":[-9.104159,38.745534]},{"entry":[true,false,false],"in":2,"bearings":[108,220,288],"duration":4.039,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":0,"weight":4.227,"geometry_index":34926,"location":[-9.101692,38.744299]},{"entry":[true,true,true,false],"in":3,"bearings":[21,110,200,289],"duration":3.867,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.953,"geometry_index":34928,"location":[-9.101283,38.744191]},{"entry":[false,true,false,false],"in":3,"bearings":[18,110,199,290],"duration":14.281,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":14.633,"geometry_index":34930,"location":[-9.101121,38.744145]},{"entry":[true,false,false],"in":2,"bearings":[131,282,295],"duration":0.766,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":0,"weight":0.766,"geometry_index":34933,"location":[-9.099883,38.743771]},{"bearings":[39,153,221,311],"entry":[false,true,false,false],"in":3,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34935,"location":[-9.099829,38.743735]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua do Mar"}],"degrees":80,"driving_side":"right","type":"roundabout","modifier":"right","text":"Rua do Mar"},"distanceAlongGeometry":943.812}],"destinations":"Zona Portuária, Santa Apolónia","speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout toward Zona Portuária/Santa Apolónia.","modifier":"right","bearing_after":170,"bearing_before":110,"location":[-9.105229,38.749708]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":98.141,"duration_typical":89.844,"duration":89.844,"distance":943.812,"driving_side":"right","weight":98.141,"mode":"driving","geometry":"w_b|hAxsvjPvFu@nKeBzKh@zp@l@xg@_Ere@wI`x@gUnPiGnN{IjGqEtKkKpAuAdAmAtAgBnTyZr@iAn@iAn@mA`A}BhFcPrLcm@|Fk^tCuQ`A{EjAsGNo@|Jei@`Ha]jAcD|@_BHKn@}@|@{@t@m@bA]tAO`AF~@R"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Rua do Mar.","announcement":"Exit the roundabout onto Rua do Mar.","distanceAlongGeometry":71.778}],"intersections":[{"entry":[false,true,false],"in":2,"bearings":[20,199,350],"duration":3.914,"turn_weight":5.75,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":14,"out":1,"weight":9.719,"geometry_index":34942,"location":[-9.099736,38.743511]},{"entry":[false,true,false],"in":0,"bearings":[18,200,291],"duration":3.352,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.008,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":14,"out":1,"weight":3.43,"geometry_index":34944,"location":[-9.099893,38.743142]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[20,201],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":14,"out":1,"geometry_index":34945,"location":[-9.100048,38.742812]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua do Mar"}],"degrees":80,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Rua do Mar"},"distanceAlongGeometry":122.526}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":1,"instruction":"Enter the roundabout and take the 1st exit onto Rua do Mar.","modifier":"slight right","bearing_after":199,"bearing_before":170,"location":[-9.099736,38.743511]},"speedLimitSign":"vienna","name":"Rua do Mar","weight_typical":16.664,"duration_typical":10.695,"duration":10.695,"distance":122.526,"driving_side":"right","weight":16.664,"mode":"driving","geometry":"m|u{hAn|kjPdNvEzF`BrStHbI`DzIjD"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4292.599},{"ssmlAnnouncement":"In a half mile, Bear left onto Avenida Infante Dom Henrique.","announcement":"In a half mile, Bear left onto Avenida Infante Dom Henrique.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Bear left. Then Bear left to stay on Avenida Infante Dom Henrique.","announcement":"Bear left. Then Bear left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":158.333}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[21,190,202],"duration":3.32,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.398,"geometry_index":34947,"location":[-9.100215,38.742476]},{"entry":[false,true,true],"in":0,"bearings":[22,199,289],"duration":0.891,"turn_weight":5,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":5.883,"geometry_index":34948,"location":[-9.100367,38.742184]},{"entry":[false,false,true,false],"in":0,"bearings":[19,110,206,290],"duration":14.984,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":15.352,"geometry_index":34949,"location":[-9.100411,38.742086]},{"entry":[false,true,true],"in":0,"bearings":[26,206,283],"duration":28.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":29.141,"geometry_index":34952,"location":[-9.101514,38.740432]},{"entry":[false,false,true,false],"in":0,"bearings":[21,110,199,289],"duration":1.312,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.328,"geometry_index":34956,"location":[-9.102981,38.737913]},{"entry":[false,false,true,true],"in":0,"bearings":[19,172,200,283],"duration":21.312,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":23.844,"geometry_index":34957,"location":[-9.103035,38.73779]},{"entry":[false,true,true,true],"in":0,"bearings":[12,68,194,251],"duration":1.898,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.938,"geometry_index":34961,"location":[-9.103706,38.735899]},{"entry":[false,true,false],"in":0,"bearings":[14,191,307],"duration":30.414,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":30.391,"geometry_index":34963,"location":[-9.103764,38.735713]},{"entry":[false,true,true],"in":0,"bearings":[24,202,297],"duration":8.727,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":8.703,"geometry_index":34969,"location":[-9.104744,38.732553]},{"entry":[false,true,true],"in":0,"bearings":[25,209,298],"duration":2.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.898,"geometry_index":34971,"location":[-9.105208,38.731691]},{"entry":[false,false,true,false],"in":0,"bearings":[29,118,209,296],"duration":21.422,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":21.398,"geometry_index":34972,"location":[-9.105366,38.731466]},{"entry":[false,true,false],"in":0,"bearings":[30,211,253],"duration":2.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.969,"geometry_index":34974,"location":[-9.106574,38.72979]},{"entry":[false,true,true,true],"in":0,"bearings":[32,121,213,301],"duration":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.023,"geometry_index":34976,"location":[-9.106745,38.729571]},{"entry":[false,false,true,false],"in":0,"bearings":[33,127,214,303],"duration":30.648,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":31.406,"geometry_index":34977,"location":[-9.106828,38.729472]},{"entry":[false,true,true],"in":0,"bearings":[46,222,304],"duration":1.703,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.719,"geometry_index":34983,"location":[-9.109924,38.726826]},{"entry":[false,true,false],"in":0,"bearings":[42,217,303],"duration":19.055,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":19.508,"geometry_index":34985,"location":[-9.110033,38.72673]},{"entry":[false,true,true],"in":0,"bearings":[34,216,306],"duration":2.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.461,"geometry_index":34988,"location":[-9.111259,38.725369]},{"entry":[false,true,true],"in":0,"bearings":[36,215,303],"duration":4,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":4.078,"geometry_index":34989,"location":[-9.111328,38.725294]},{"entry":[false,true,true],"in":0,"bearings":[35,214,303],"duration":2.062,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.094,"geometry_index":34990,"location":[-9.11147,38.725138]},{"entry":[false,false,true,true],"in":0,"bearings":[34,125,214,306],"duration":1.055,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.07,"geometry_index":34992,"location":[-9.111578,38.725013]},{"entry":[false,true,true,false],"in":0,"bearings":[34,127,215,304],"duration":1.617,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.148,"geometry_index":34993,"location":[-9.111637,38.724945]},{"entry":[false,true,false],"in":0,"bearings":[35,214,344],"duration":18.648,"turn_weight":0.75,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":19.844,"geometry_index":34995,"location":[-9.111749,38.724821]},{"entry":[false,true,true],"in":0,"bearings":[34,214,300],"duration":16.102,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":16.5,"geometry_index":34997,"location":[-9.113273,38.723048]},{"entry":[false,true,true],"in":0,"bearings":[34,214,237],"duration":1.047,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.062,"geometry_index":35000,"location":[-9.114793,38.721285]},{"entry":[false,true],"in":0,"bearings":[34,214],"duration":32.703,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":33.516,"geometry_index":35001,"location":[-9.114887,38.721177]},{"entry":[false,false,true,true],"in":0,"bearings":[35,153,213,306],"duration":1.219,"turn_weight":2,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.258,"geometry_index":35003,"location":[-9.116288,38.719549]},{"entry":[false,true,true,false],"in":0,"bearings":[33,99,215,304],"duration":16.539,"turn_weight":1.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":18.438,"geometry_index":35004,"location":[-9.116346,38.719479]},{"entry":[false,true],"in":0,"bearings":[40,222],"duration":8.305,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":8.516,"geometry_index":35008,"location":[-9.11775,38.71803]},{"entry":[false,false,true],"in":1,"bearings":[30,42,221],"duration":4.594,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":4.688,"geometry_index":35009,"location":[-9.118668,38.717221]},{"entry":[false,true],"in":0,"bearings":[41,221],"duration":1.273,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":1.305,"geometry_index":35011,"location":[-9.119126,38.716806]},{"entry":[false,false,true],"in":0,"bearings":[41,131,220],"duration":18.07,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":16.453,"geometry_index":35012,"location":[-9.119252,38.716692]},{"entry":[false,true,true],"in":0,"bearings":[40,219,239],"duration":10.672,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":10.93,"geometry_index":35013,"location":[-9.120839,38.715227]},{"entry":[false,false,true,true],"in":1,"bearings":[14,39,160,220],"duration":12.008,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":14.297,"geometry_index":35014,"location":[-9.121397,38.714692]},{"entry":[false,false,true],"in":0,"bearings":[40,135,220],"duration":6.406,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":4.508,"geometry_index":35015,"location":[-9.121843,38.714281]},{"entry":[false,true],"in":0,"bearings":[40,220],"duration":5.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":5.531,"geometry_index":35016,"location":[-9.122005,38.714132]},{"entry":[false,true],"in":0,"bearings":[40,221],"duration":19.203,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":19.68,"geometry_index":35017,"location":[-9.122207,38.713946]},{"entry":[false,false,true,false],"in":0,"bearings":[41,130,226,308],"duration":17.609,"turn_duration":2.01,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":15.992,"geometry_index":35020,"location":[-9.122929,38.713291]},{"entry":[false,true,false],"in":0,"bearings":[46,246,334],"duration":2.023,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.047,"geometry_index":35023,"location":[-9.123555,38.712795]},{"entry":[true,false,false,true],"in":1,"bearings":[13,66,214,233],"duration":7.094,"turn_weight":2,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":9.227,"geometry_index":35024,"location":[-9.12366,38.712758]},{"entry":[false,false,true],"in":1,"bearings":[34,42,218],"duration":7.555,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":7.719,"geometry_index":35027,"location":[-9.124049,38.712474]},{"entry":[false,true,true],"in":0,"bearings":[47,235,276],"duration":10.984,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":11.242,"geometry_index":35031,"location":[-9.124402,38.71217]},{"entry":[false,true,true],"in":0,"bearings":[48,68,239],"duration":3.18,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.242,"geometry_index":35033,"location":[-9.124972,38.711812]},{"entry":[false,true,false],"in":0,"bearings":[59,240,328],"duration":26.219,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":26.859,"geometry_index":35034,"location":[-9.125259,38.711675]},{"bearings":[58,206,266,325],"entry":[false,false,true,false],"in":0,"turn_weight":2,"turn_duration":0.045,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"geometry_index":35037,"location":[-9.127064,38.710853]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":4317.599},{"sub":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":804.672}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Rua do Mar.","modifier":"straight","bearing_after":202,"bearing_before":201,"location":[-9.100215,38.742476]},"speedLimitSign":"vienna","name":"Rua do Mar","weight_typical":473.789,"duration_typical":450.133,"duration":450.133,"distance":4317.599,"driving_side":"right","weight":473.789,"mode":"driving","geometry":"w{s{hAlzljPfQnHbEvApDzAtn@ta@bq@j^ldBh}@za@~QxQjHhA^tFjB|R`H`VfHrj@|Mp^tGtEbA|Cn@b]lFb}@vOlk@~Jdd@~JxCdAxQzI|o@nX|CnB`MzHl`Adm@hf@h\\bAp@pJbHdEdDtTvQ~BfC~CzCpi@hl@jG|IvrAjlBzAlBbBjBhTxSjBdBj{@rs@tChCvHzG~ArAxCbCfCtBxApA|ClCpTnQfxAvkAzD`D~HpGh}AjpAvEzDf{AdnAnHjGjCrBvBtB`c@h^n`@da@fPpQpq@jx@lUvWnBzBbFzFpzAdbBl`@za@tXzZhHbIrJrKbLtMfPzQpIpJ`LjPlM|NnBxDhApErApD~AtCbK`MjGlGlBpB`D`FbA~AxH|PpKtPpG|PbSbl@tSvl@pI|TJrE"},{"voiceInstructions":[{"ssmlAnnouncement":"Bear left to stay on Avenida Infante Dom Henrique.","announcement":"Bear left to stay on Avenida Infante Dom Henrique.","distanceAlongGeometry":111.687}],"intersections":[{"entry":[false,false,true,false],"in":0,"bearings":[86,145,221,320],"duration":3.625,"turn_duration":0.542,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.164,"geometry_index":35038,"location":[-9.12717,38.710847]},{"entry":[false,true,true],"in":0,"bearings":[41,63,230],"duration":3.227,"turn_duration":0.012,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":3.297,"geometry_index":35039,"location":[-9.127351,38.710683]},{"entry":[false,true,true],"in":0,"bearings":[50,228,317],"duration":12.156,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":12.438,"geometry_index":35041,"location":[-9.127567,38.710541]},{"bearings":[47,214,243],"entry":[false,false,true],"in":0,"turn_weight":1.5,"turn_duration":0.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"geometry_index":35043,"location":[-9.128339,38.70999]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida Infante Dom Henrique"}],"type":"turn","modifier":"slight left","text":"Avenida Infante Dom Henrique"},"distanceAlongGeometry":160.781}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left onto Avenida Infante Dom Henrique.","modifier":"slight left","bearing_after":230,"bearing_before":266,"location":[-9.12717,38.710847]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":24.273,"duration_typical":22.812,"duration":22.812,"distance":160.781,"driving_side":"right","weight":24.273,"mode":"driving","geometry":"}bvyhAboalPfIhJ|AnC|D~GnWta@|HpLlDrL"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1282.828},{"ssmlAnnouncement":"In a half mile, Turn left onto Cais do Sodré.","announcement":"In a half mile, Turn left onto Cais do Sodré.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Turn left onto Cais do Sodré. Then Turn right toward Chiado.","announcement":"Turn left onto Cais do Sodré. Then Turn right toward Chiado.","distanceAlongGeometry":152.083}],"intersections":[{"entry":[false,false,true,false],"in":0,"bearings":[63,138,196,318],"duration":4.602,"turn_duration":2.625,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":2.031,"geometry_index":35044,"location":[-9.128557,38.709903]},{"entry":[false,true,true,true],"in":0,"bearings":[16,77,228,317],"duration":7.156,"turn_duration":0.063,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":7.273,"geometry_index":35045,"location":[-9.128591,38.709812]},{"entry":[false,true,true],"in":0,"bearings":[51,139,234],"duration":17.797,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":18.234,"geometry_index":35048,"location":[-9.129176,38.709418]},{"entry":[false,true,false],"in":0,"bearings":[59,241,332],"duration":2.039,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":2.086,"geometry_index":35053,"location":[-9.13081,38.708607]},{"entry":[false,false,true,false],"in":0,"bearings":[61,149,240,329],"duration":23.148,"turn_duration":2.021,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":21.656,"geometry_index":35054,"location":[-9.130939,38.708551]},{"entry":[false,false,true,false],"in":0,"bearings":[60,151,240,331],"duration":14.852,"turn_duration":2.021,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":13.156,"geometry_index":35057,"location":[-9.132284,38.707952]},{"entry":[false,false,true,true,true],"in":0,"bearings":[72,151,184,252,342],"duration":3.969,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":5.562,"geometry_index":35062,"location":[-9.133124,38.707621]},{"entry":[false,false,true,false],"in":0,"bearings":[72,158,251,338],"duration":3.641,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.664,"geometry_index":35063,"location":[-9.133365,38.707561]},{"entry":[false,false,true],"in":0,"bearings":[71,162,253],"duration":2.352,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":2.398,"geometry_index":35064,"location":[-9.133468,38.707534]},{"entry":[false,false,true],"in":0,"bearings":[73,113,253],"duration":8.289,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":8.484,"geometry_index":35065,"location":[-9.133606,38.707501]},{"entry":[false,true,true],"in":0,"bearings":[73,99,252],"duration":20.773,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":21.273,"geometry_index":35067,"location":[-9.134109,38.707379]},{"mapbox_streets_v8":{"class":"primary"},"location":[-9.135188,38.707113],"geometry_index":35068,"admin_index":14,"weight":9.125,"is_urban":false,"traffic_signal":true,"turn_duration":2.007,"turn_weight":5,"duration":6.031,"bearings":[72,163,253,344],"out":2,"in":0,"entry":[false,false,true,false]},{"entry":[false,true,true],"in":0,"bearings":[73,253,344],"duration":15.469,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":15.844,"geometry_index":35069,"location":[-9.1354,38.707062]},{"entry":[false,false,true,false],"in":0,"bearings":[73,162,253,344],"duration":17.258,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":15.625,"geometry_index":35072,"location":[-9.136201,38.706869]},{"entry":[false,true,true],"in":0,"bearings":[73,253,344],"duration":5.938,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":11.078,"geometry_index":35075,"location":[-9.136995,38.706677]},{"entry":[false,false,true,false],"in":0,"bearings":[73,163,253,344],"duration":11.109,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":9.336,"geometry_index":35076,"location":[-9.137305,38.706604]},{"entry":[false,true],"in":0,"bearings":[73,253],"duration":10.625,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":10.891,"geometry_index":35077,"location":[-9.137775,38.706489]},{"entry":[false,true,false],"in":0,"bearings":[73,252,344],"duration":5.867,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":6,"geometry_index":35078,"location":[-9.138462,38.706324]},{"entry":[false,false,true,false],"in":0,"bearings":[72,163,253,344],"duration":1.805,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":1.844,"geometry_index":35079,"location":[-9.138745,38.706254]},{"entry":[false,true,true],"in":0,"bearings":[73,253,344],"duration":12.32,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":12.625,"geometry_index":35080,"location":[-9.138829,38.706234]},{"entry":[false,false,true,false],"in":0,"bearings":[73,165,253,344],"duration":17.438,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":17.867,"geometry_index":35081,"location":[-9.139539,38.706062]},{"entry":[false,false,true,false],"in":0,"bearings":[73,162,260,344],"duration":21.609,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":2,"weight":22.141,"geometry_index":35082,"location":[-9.140554,38.705817]},{"entry":[false,false,false,true],"in":1,"bearings":[72,148,251,342],"duration":12.391,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":12.992,"geometry_index":35099,"location":[-9.141466,38.706131]},{"bearings":[75,163,251,330],"entry":[false,false,false,true],"in":1,"turn_duration":0.052,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"geometry_index":35101,"location":[-9.141658,38.7066]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Cais do Sodré"}],"type":"turn","modifier":"left","text":"Cais do Sodré"},"distanceAlongGeometry":1307.828},{"sub":{"components":[{"type":"text","text":"Chiado"},{"type":"text","text":"/"},{"type":"text","text":"Príncipe Real"}],"type":"turn","modifier":"right","text":"Chiado / Príncipe Real"},"primary":{"components":[{"type":"text","text":"Cais do Sodré"}],"type":"turn","modifier":"left","text":"Cais do Sodré"},"distanceAlongGeometry":804.672}],"speedLimitUnit":"km/h","maneuver":{"type":"continue","instruction":"Bear left to stay on Avenida Infante Dom Henrique.","modifier":"slight left","bearing_after":196,"bearing_before":243,"location":[-9.128557,38.709903]},"speedLimitSign":"vienna","name":"Avenida Infante Dom Henrique","weight_typical":250.602,"duration_typical":247.875,"duration":247.875,"distance":1307.828,"driving_side":"right","weight":250.602,"mode":"driving","geometry":"}gtyhAxedlPtDbAvK`QlGzKlBrD~HlPdD|H|BpFn[p{@`BrEnB`GzWxv@jG|QdChHzKh[nAlDp@`C`@dBtAnJvB`Nt@lE`ArG`DbTpAhIrOlbAdBfLPfAjG~a@bBxKlCfQ~@lGpD|UpCjRdFj\\hI|i@jCtPf@fDvIjk@hNl~@\\bCV`CLvB?hCCtBEhBSdBUdBi@lC{@nCiApCeA`BqA`BiAlAeBrAqAr@y@`@_Bj@iYrI[L_@PY^"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right toward Chiado, Príncipe Real.","announcement":"Turn right toward Chiado, Príncipe Real.","distanceAlongGeometry":133.333}],"intersections":[{"entry":[false,false,false,true],"in":1,"bearings":[25,150,252,276],"duration":6.711,"turn_weight":5,"turn_duration":1.086,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"weight":10.906,"geometry_index":35104,"location":[-9.14169,38.706643]},{"entry":[false,true],"in":0,"bearings":[85,260],"duration":12.148,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":12.758,"geometry_index":35110,"location":[-9.141964,38.70665]},{"entry":[false,true,false],"in":0,"bearings":[71,253,344],"duration":9.906,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":1,"weight":10.398,"geometry_index":35112,"location":[-9.142558,38.706521]},{"bearings":[73,163,214,256,344],"entry":[false,false,false,true,false],"in":0,"turn_weight":7,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":false,"admin_index":14,"out":3,"geometry_index":35113,"location":[-9.143037,38.706406]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Chiado"},{"type":"text","text":"/"},{"type":"text","text":"Príncipe Real"}],"type":"turn","modifier":"right","text":"Chiado / Príncipe Real"},"distanceAlongGeometry":140.691}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Cais do Sodré.","modifier":"left","bearing_after":276,"bearing_before":330,"location":[-9.14169,38.706643]},"speedLimitSign":"vienna","name":"Cais do Sodré","weight_typical":46.297,"duration_typical":35.758,"duration":35.758,"distance":140.691,"driving_side":"right","weight":46.297,"mode":"driving","geometry":"e|myhArz}lPQXQd@Yt@O`BF`Bv@hFbAdN|D|TdF|\\BdCbAnFBV"},{"voiceInstructions":[{"ssmlAnnouncement":"In 900 feet, You will arrive at your destination.","announcement":"In 900 feet, You will arrive at your destination.","distanceAlongGeometry":213.913},{"ssmlAnnouncement":"You have arrived at your destination.","announcement":"You have arrived at your destination.","distanceAlongGeometry":68.056}],"intersections":[{"entry":[false,false,true],"in":0,"bearings":[76,170,342],"duration":11.539,"turn_weight":1.5,"turn_duration":1.723,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":2,"weight":11.812,"geometry_index":35116,"location":[-9.143236,38.706368]},{"entry":[false,false,true],"in":1,"bearings":[24,160,306],"duration":5.805,"turn_weight":0.75,"turn_duration":0.241,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":2,"weight":6.594,"geometry_index":35118,"location":[-9.14335,38.706625]},{"entry":[true,false,true],"in":1,"bearings":[3,126,267],"duration":4.727,"turn_weight":6,"turn_duration":0.326,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":0,"weight":10.617,"geometry_index":35123,"location":[-9.143499,38.706711]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.143492,38.706811],"geometry_index":35124,"admin_index":14,"weight":14.023,"is_urban":false,"traffic_signal":true,"turn_duration":2.008,"turn_weight":1,"duration":14.406,"bearings":[5,90,183,270],"out":0,"in":2,"entry":[true,false,false,false]},{"entry":[true,false],"in":1,"bearings":[6,185],"duration":1.922,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":0,"weight":2.516,"geometry_index":35126,"location":[-9.14346,38.707086]},{"entry":[true,false],"in":1,"bearings":[4,186],"duration":6.945,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":false,"admin_index":14,"out":0,"weight":7.789,"geometry_index":35127,"location":[-9.14345,38.707161]},{"entry":[true,false],"in":1,"bearings":[5,184],"duration":2.641,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"weight":3.336,"geometry_index":35128,"location":[-9.143426,38.707402]},{"entry":[true,false],"in":1,"bearings":[7,185],"duration":6.172,"turn_weight":0.5,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"weight":7.133,"geometry_index":35129,"location":[-9.143414,38.707502]},{"entry":[true,false,false,false],"in":2,"bearings":[6,113,187,296],"duration":16.305,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"weight":18.508,"geometry_index":35131,"location":[-9.14338,38.707712]},{"bearings":[6,186,279],"entry":[true,false,false],"in":1,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":14,"out":0,"geometry_index":35134,"location":[-9.143273,38.708559]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"You will arrive at your destination"}],"type":"arrive","modifier":"straight","text":"You will arrive at your destination"},"distanceAlongGeometry":281.44},{"primary":{"components":[{"type":"text","text":"You have arrived at your destination"}],"type":"arrive","modifier":"straight","text":"You have arrived at your destination"},"distanceAlongGeometry":68.056}],"destinations":"Chiado, Príncipe Real, Rato","speedLimitUnit":"km/h","maneuver":{"type":"end of road","instruction":"Turn right toward Chiado/Príncipe Real/Rato.","modifier":"right","bearing_after":3,"bearing_before":256,"location":[-9.143236,38.706368]},"speedLimitSign":"vienna","name":"Rua do Alecrim","weight_typical":87.219,"duration_typical":74.555,"duration":74.555,"distance":281.44,"driving_side":"right","weight":87.219,"mode":"driving","geometry":"_kmyhAf{`mPuCt@kJlDaAh@w@`A]x@Kj@GvAgEMsBKqLs@uCSaNo@gEWsD[oFg@oAIkOaAaa@iCkCQyIk@"},{"voiceInstructions":[],"intersections":[{"bearings":[186],"entry":[true],"in":0,"admin_index":14,"geometry_index":35136,"location":[-9.143242,38.708802]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"You have arrived at your destination.","bearing_after":0,"bearing_before":6,"location":[-9.143242,38.708802]},"speedLimitSign":"vienna","name":"Rua do Alecrim","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"ccryhAr{`mP??"}],"weight":106998.812,"duration":98702.414,"duration_typical":98702.414,"weight_typical":91908.414,"annotation":{"maxspeed":[{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"none":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"none":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true}],"congestion_numeric":[null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,1,1,1,1,1,1,1,1,1,12,12,12,12,12,12,12,12,12,12,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,24,24,24,24,24,24,24,24,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,46,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,6,6,9,22,22,22,22,22,22,22,22,22,22,22,22,19,19,19,19,19,19,9,9,9,8,8,8,8,8,8,8,null,null,null,null,null,null,null,14,14,14,14,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,9,null,null,9,9,9,9,9,9,9,9,null,null,null,null,null,null,null,4,4,4,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,9,9,9,6,6,6,6,6,6,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,null,null,null,null,null,null,null,null,null,null,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null,22,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,0,0,0,0,0,33,33,33,33,33,33,33,33,30,30,51,51,33,33,17,17,17,17,22,33,33,33,33,33,33,33,33,33,33,33,33,33,33,30,30,30,30,40,40,40,25,25,46,46,46,46,46,46,46,16,16,16,16,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,41,41,41,41,41,41,41,61,61,61,61,61,61,61,35,35,35,35,35,17,22,null,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,35,35,30,30,30,33,25,25,25,25,25,25,null,32,12,12,12,null,12,12,19,19,19,19,19,19,19,19,19,null,null,20,12,12,14,14,14,null,14,14,14,14,14,17,0,0,0,0,0,0,0,null,0,0,0,0,0,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,22,22,22,22,22,22,22,22,22,6,6,6,6,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,12,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,43,43,43,43,43,43,43,43,43,43,43,null,null,43,43,43,43,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,14,0,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,33,33,33,33,33,33,35,35,35,35,35,35,35,35,35,35,35,null,null,33,33,33,0,0,0,0,17,17,17,17,17,17,17,17,27,27,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,null,null,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,29,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,null,33,33,33,33,33,33,33,33,30,37,37,37,37,37,37,37,58,64,64,null,70,70,70,70,70,70,70,70,70,70,70,70,70,67,66,66,66,66,66,17,35,35,37,37,30,30,30,0,0,0,0,0,22,22,22,22,22,22,22,22,22,17,27,27,27,27,33,20,20,20,20,8,8,8,8,8,8,8,8,8,8,8,8,8,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,null,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,37,37,37,37,37,null,null,69,69,69,69,69,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,30,30,30,30,30,null,0,0,0,0,0,0,0,0,0,0,null,14,14,14,14,14,null,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,16,16,16,16,16,16,16,16,16,16,16,16,16,37,37,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,24,24,24,24,24,24,29,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,8,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,null,null,30,30,19,19,19,19,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,27,27,27,27,27,27,27,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,null,6,6,6,6,6,6,6,null,0,0,0,0,0,null,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,22,22,22,22,11,11,11,null,11,11,11,null,0,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,22,22,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,null,30,30,30,30,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,32,32,null,30,30,30,22,64,30,30,30,30,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,null,0,0,0,0,0,0,0,0,0,null,0,0,0,null,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,30,27,27,30,30,17,17,17,17,17,17,17,17,17,17,17,null,0,0,0,null,17,17,17,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,29,29,29,29,29,25,25,25,25,25,0,0,0,0,0,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,25,25,25,25,25,25,25,27,27,30,30,30,30,30,30,null,27,27,27,27,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29,29,29,29,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,22,22,22,25,25,25,25,25,25,25,25,25,25,25,25,25,null,25,25,25,25,25,25,25,25,25,25,25,25,25,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,35,35,35,35,35,null,null,null,null,32,32,32,32,32,32,32,32,32,35,35,35,37,37,37,37,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,32,32,32,32,32,32,32,32,32,32,32,79,79,8,8,8,null,null,null,35,35,35,32,32,32,32,32,32,32,32,32,38,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,null,33,33,33,33,33,33,33,33,33,33,45,45,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,50,50,50,50,50,50,50,50,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,50,50,50,50,50,50,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,41,41,41,41,41,41,41,41,41,41,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,43,43,43,43,43,43,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,59,59,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,33,33,33,33,33,33,32,32,32,32,32,null,38,38,38,38,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,30,30,30,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,41,41,41,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,19,19,19,19,19,19,19,19,19,null,24,24,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,null,0,0,0,0,null,null,null,null,null,22,22,22,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,8,8,null,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,null,null,null,null,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,6,6,6,6,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,30,30,30,30,30,30,30,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,25,25,25,25,25,25,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,0,0,0,0,0,null,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,16,16,16,16,6,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,20,20,20,20,20,29,29,null,32,32,32,32,32,32,32,32,32,33,null,null,null,35,35,35,35,35,35,35,35,35,35,35,35,null,33,33,33,33,33,33,33,null,35,35,35,35,35,35,35,35,35,35,null,38,38,38,38,38,38,38,null,38,38,38,38,38,38,null,0,0,0,0,null,null,8,8,35,35,35,35,35,null,38,38,38,38,38,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,null,8,8,8,null,17,17,17,17,17,17,24,24,null,29,29,29,30,30,null,null,null,0,0,0,0,0,null,0,0,0,0,0,null,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,29,29,29,29,29,29,29,29,29,29,29,29,29,29,null,33,33,33,33,33,30,30,30,30,27,27,27,27,0,29,29,29,29,29,29,29,0,29,null,29,29,29,29,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,25,25,25,25,25,25,25,25,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,null,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,null,25,25,25,29,0,0,null,0,0,0,27,27,27,27,27,27,27,27,27,null,25,25,25,25,25,25,25,25,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,54,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,14,17,17,17,17,17,17,17,null,25,25,25,25,25,25,25,38,38,38,38,38,30,30,30,30,30,30,30,30,30,30,30,30,30,30,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,null,50,14,20,20,35,35,35,35,35,35,35,35,35,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,null,null,11,11,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,8,8,8,8,8,8,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,19,19,19,19,19,19,37,37,37,37,37,37,37,37,37,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,29,29,27,27,27,27,27,27,27,27,27,27,27,27,null,43,43,null,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,0,0,0,0,0,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,12,16,16,16,16,16,null,12,30,30,30,30,30,0,0,0,0,50,50,50,50,50,50,0,33,33,33,33,33,33,33,33,33,33,33,33,33,27,27,27,27,null,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,30,30,41,41,25,6,19,19,32,16,27,25,25,25,null,30,30,29,29,29,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,null,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,25,25,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,27,27,null,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,30,30,30,30,30,30,30,30,30,30,30,30,25,25,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,null,null,null,0,0,null,null,null,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,0,0,0,0,0,0,0,0,77,77,77,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,27,27,27,27,27,27,27,27,17,17,17,17,8,8,8,8,8,8,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,null,27,27,27,27,27,27,27,30,30,30,30,30,0,33,33,33,33,33,33,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,30,22,22,22,22,22,22,0,37,37,20,20,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,12,12,12,12,12,null,14,14,14,14,22,22,32,null,6,6,6,null,0,0,null,14,14,14,null,6,6,6,6,6,25,25,25,46,46,46,40,38,38,38,38,38,38,38,27,27,27,27,27,27,25,25,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,35,35,35,35,33,33,33,33,33,33,33,33,40,40,40,40,40,40,40,40,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,8,null,null,null,null,8,8,8,null,null,null,null,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,null,16,16,16,16,16,16,16,null,null,null,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,12,12,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,50,50,null,12,27,27,27,27,27,27,27,27,27,27,27,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,6,6,6,6,14,14,14,14,14,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,null,35,35,0,0,0,0,0,0,0,32,32,32,0,0,0,0,null,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,17,17,17,17,17,17,17,17,17,17,40,40,40,40,40,40,40,40,29,29,29,29,29,29,null,27,27,27,27,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,null,6,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,33,33,33,null,25,16,16,16,16,16,null,8,8,8,8,8,8,8,24,24,24,24,24,24,16,16,16,16,16,16,24,24,24,24,8,8,8,null,8,8,8,8,8,8,8,8,8,8,8,8,19,19,19,19,19,19,19,19,19,19,19,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,null,6,6,null,null,38,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,50,50,50,50,50,50,50,46,46,46,46,46,46,46,null,46,46,46,46,46,46,46,46,46,46,46,null,43,43,43,43,43,43,43,43,43,43,43,43,43,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,41,41,41,41,41,41,41,41,41,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,null,null,46,46,46,46,46,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,0,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,58,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,11,11,11,11,11,11,11,11,11,11,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,33,33,33,33,33,33,33,33,33,33,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,null,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,67,67,67,67,67,67,67,67,67,64,64,64,64,64,64,64,64,64,64,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,59,59,59,59,59,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,41,41,41,41,41,41,41,41,41,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,20,20,20,20,38,38,38,38,38,38,null,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,30,30,30,30,30,30,41,37,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,38,38,38,38,38,38,38,38,38,38,38,38,38,0,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,40,40,40,40,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,0,0,0,0,0,0,0,0,0,0,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,null,null,null,null,null,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,59,59,59,59,59,59,59,59,59,59,59,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,59,59,59,59,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,6,6,6,6,6,6,6,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,14,14,14,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,24,24,24,24,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,6,6,6,6,6,6,6,6,11,11,11,11,11,11,14,14,14,14,14,14,14,14,14,14,17,17,17,17,20,20,20,24,24,24,24,24,24,24,24,24,33,33,33,33,33,33,33,40,40,40,40,40,40,40,40,38,38,38,38,38,38,38,38,38,38,38,null,43,43,43,null,38,38,38,38,38,38,38,38,38,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,51,51,51,51,51,51,51,51,51,51,null,null,38,38,null,null,43,43,43,43,43,43,43,43,46,46,46,46,46,46,46,46,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,3,3,3,3,3,3,3,3,3,6,6,6,6,38,38,38,38,38,38,38,38,38,38,38,null,null,null,null,null,null,null,43,43,43,null,46,48,48,45,45,35,56,56,56,56,56,12,12,12,12,19,19,19,19,19,19,19,19,19,45,45,45,45,45,45,45,45,45,41,41,41,41,41,41,41,41,27,27,27,27,27,27,27,27,27,32,32,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,24,24,24,24,24,24,24,24,43,43,43,43,43,43,43,19,38,37,37,29,35,43,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,38,35,35,35,35,43,43,43,43,43,43,43,37,37,37,37,37,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,35,35,33,33,33,41,41,41,41,41,null,37,37,37,37,37,37,37,37,37,null,0,0,12,12,12,12,12,29,29,29,32,32,32,32,37,37,37,29,29,29,29,29,8,8,8,29,29,29,29,29,29,29,null,null,null,null,null,null,43,43,43,43,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,30,30,30,30,30,24,24,24,24,24,24,24,33,32,0,0,0,0,0,0,0,0,17,0,0,11,11,11,11,11,11,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,24,24,24,24,24,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,25,25,25,25,25,25,25,25,25,20,20,20,20,20,24,24,24,24,24,24,24,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,17,17,17,17,11,11,11,11,11,11,11,null,24,24,24,24,24,24,24,24,0,0,0,0,30,30,30,30,30,30,30,30,30,30,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,0,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,1,1,1,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,50,50,50,50,51,51,51,51,51,51,37,37,37,37,12,46,46,50,50,50,50,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,30,45,45,45,45,45,null,45,45,45,45,45,45,45,45,45,43,43,43,43,43,43,43,43,43,43,43,41,43,43,43,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,38,38,38,38,38,38,38,38,38,38,38,38,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,27,27,27,27,27,27,27,27,27,27,27,27,27,27,null,54,54,54,54,54,54,54,54,54,30,30,32,32,32,32,32,32,32,32,32,32,32,32,32,32,30,30,30,30,30,30,30,30,30,30,30,30,null,null,null,22,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22,25,25,25,25,25,25,25,25,25,25,22,22,22,25,25,25,25,25,35,27,27,27,27,27,27,27,27,27,25,22,22,22,27,27,27,27,25,24,24,24,24,24,24,24,24,24,24,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,35,35,35,35,41,4,4,4,4,4,9,32,32,27,27,27,27,27,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,16,11,11,11,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,19,6,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,12,12,null,0,0,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,null,null,1,1,1,null,0,null,33,null,null,0,null,null,8,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,12,12,12,null,null,null,null,16,16,16,16,16,20,20,20,20,20,20,20,0,0,0,0,0,0,0,8,8,8,8,8,8,8,27,27,6,6,6,6,6,6,30,30,30,30,30,0,0,0,0,29,29,29,29,29,32,19,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,29,29,29,29,29,29,29,29,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,12,12,12,12,12,12,12,12,12,12,12,38,38,38,38,0,0,0,0,24,24,24,24,24,1,1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,16,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,null,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,null,null,null,null,null,null,null,20,20,20,20,20,20,20,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,80,80,80,80,80,80,80,80,80,80,80,80,80,80,59,59,59,59,59,59,59,59,59,59,59,59,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,24,24,24,24,24,24,24,24,24,24,24,24,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,14,14,14,14,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,null,null,12,12,12,20,20,20,6,6,6,6,6,6,6,6,6,22,22,22,22,22,22,22,22,22,22,null,17,17,17,null,20,20,20,20,20,20,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,17,17,17,17,17,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,6,null,null,35,35,35,35,35,35,30,30,33,33,33,33,33,33,33,33,33,33,33,33,33,33,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,25,25,25,25,25,25,25,25,25,25,25,25,25,20,20,20,20,25,25,25,25,25,25,25,25,25,25,25,30,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,null,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,null,6,6,6,null,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,16,16,16,16,6,6,null,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,12,12,12,12,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,6,6,6,6,6,6,6,6,6,6,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,6,6,6,6,6,6,6,null,null,27,27,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,37,37,37,37,22,22,40,40,40,40,40,40,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,0,0,0,6,6,6,6,null,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,0,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,12,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,12,12,12,12,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,64,64,64,64,64,64,64,64,64,64,64,64,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,0,0,0,0,0,0,0,0,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,20,37,37,37,37,37,37,37,37,37,null,0,0,0,0,0,0,38,38,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,0,0,0,0,0,0,0,22,6,6,6,6,6,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,17,17,17,null,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,8,8,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,12,12,12,12,12,12,12,6,6,6,6,6,6,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,38,38,38,38,38,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,null,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,27,32,32,32,32,32,null,0,0,0,0,0,0,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,null,null,null,null,6,null,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,12,12,12,12,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,43,43,43,43,43,43,43,43,43,43,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,43,43,43,43,null,43,43,43,43,43,43,43,43,43,null,46,46,46,46,46,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,40,40,41,41,41,41,41,41,41,41,41,41,41,41,null,43,43,43,43,43,43,43,66,66,66,66,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,16,16,16,16,16,16,null,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,12,0,0,0,0,0,0,null,29,29,29,29,29,null,null,null,null,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,19,null,null,null,null,35,35,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,14,14,null,4,4,1,1,1,6,0,0,4,20,20,null,null,null,null,null,null,null,null,45,45,45,null,null,null,null,null,null,null,null,9,9,9,9,9,4,4,4,4,0,33,33,33,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,11,11,11,11,11,4,4,4,4,null,null,0,0,0,0,0,0,3,3,9,9,9,9,9,1,1,1,1,1,1,1,null,null,4,4,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,null,null,null,null,null,null,11,11,11,11,11,11,11,11,11,11,22,22,22,11,11,11,11,null,null,null,null,null,null,4,4,null,null,9,9,null,null,null,null,null,9,9,9,9,9,6,6,6,6,6,6,6,6,6,17,17,17,17,17,6,6,6,6,6,6,6,6,14,14,25,20,20,19,19,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,null,null,null,null,null,null,null,null,null,null],"speed":[5,6.7,5.3,5.3,5.2,6.8,6.9,6.9,6.9,7,6.9,6.9,6.9,6.9,6.9,6.9,7,7,7,7,7,7,7.1,7.2,7.6,7.4,7.5,7.5,7.5,7.5,7.5,7.5,5.9,5.9,5.8,5.8,5.8,5.9,5.7,5.7,5.8,5.7,5.6,5.8,5.8,5.8,6,5.8,5.7,5.7,6.1,6,6.2,6,6.5,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.5,6.5,7.7,7.7,7.7,7.8,7.8,7.8,7.8,5.5,5.5,5.5,5.5,3.1,3.1,3.1,3.1,3.1,2.9,5.8,6,6,6.1,6.1,6.1,6.1,6.1,6.2,7.6,7.6,7.5,7.6,6.9,7,7,7,7,7,7,7,7,6.8,6.8,6.6,6.7,6.7,6.8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,5.6,3.8,3.6,3.6,3.6,3.6,3.2,3.5,5.5,4.9,5.6,5.6,5.6,6.3,7.1,7.3,7.3,7.3,7.3,7.2,7.2,7.2,7.1,7.2,7,7,7,6.8,6.9,6.9,6.9,6.9,5.3,6.7,5.2,5.4,5.6,5.4,5.4,5.3,6.6,5.8,6.3,6.3,6.4,7.7,6.4,6.5,6.7,6.4,6.4,6.3,6.3,6.3,6.9,6.4,6,6.4,5.3,4.7,5.3,5.2,5.2,5.5,5.5,5.9,3.9,3.9,3.9,3.9,3.9,3.9,3.6,4.1,3.9,4,4.3,3.9,3.9,3.9,3.9,3.9,4.1,3.8,4.9,4.9,4.9,6.1,6.9,6,6,6.1,6.1,6.1,5.8,5.8,6.7,5.8,7.2,7,7.1,6.1,6.1,6.1,6.1,4.4,4.4,4.4,4.4,5.3,4.5,4.5,4.2,5.5,6.3,6.7,5.7,5,6.4,6.4,6.4,6.4,7.5,8.3,8.3,8.6,8.6,8.8,8.8,8.1,8,7.6,7.6,7.8,7.8,7.8,7.8,7.8,7.8,3.3,3.3,3.3,3.3,3.4,3.4,3.6,8,8.7,7.4,8.4,8.4,7.9,8.7,8.1,8.3,8.1,8.1,8.3,8.3,8.3,7.6,8.7,8.1,8,8,4.5,4.2,4.4,6.2,7.5,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.6,6,6.9,6.3,6.9,6.9,6.9,7.5,7.5,7.4,4.6,4.7,4.7,4.7,5.1,4.8,7.4,8.4,7.5,8.4,8.4,8.1,8.3,8.3,8.4,8.4,8.4,8.2,8.2,8.3,8.3,8.3,8.3,7.7,5.3,5.3,5.3,5.3,5.3,5.3,5.3,5.5,5.9,5.7,6.9,8.5,9.4,11.1,8.9,8.9,8.4,6.7,6.1,6.1,6.1,6.1,5.8,6,6,6.9,4.2,4.2,4.2,4.2,4.3,8.3,8,8,8,8,7.9,12.3,12.3,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,16.4,16.4,16.4,16.4,22.4,18.8,18.8,18.8,20,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.2,21.7,21.4,21.5,21.5,21.6,21.6,21.4,21.4,21.4,21.4,23.3,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.3,22.3,22.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.5,22.5,22.5,17.5,17.5,20.9,20.9,20.9,20.8,20.8,20.8,20.8,20.9,20.8,20.8,20.8,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,19.1,19.1,19.1,19.1,19.1,19.1,19.1,18.6,18.6,18.6,18.6,18.6,18.6,18.6,14.7,14.7,14.7,14.7,14.9,18.3,19.3,16.2,16.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,16.4,19.1,19.2,22.7,22.6,22.2,24.3,25.3,25.3,25.3,25.3,25.3,25.3,24.8,25.4,25.9,25.9,25.8,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,26.7,26.7,26.1,26.1,26.1,27,26.9,26.9,26.3,28.1,28.1,28.1,28.1,28.1,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.9,25.5,25.5,25.5,24.6,24.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,22.4,22.5,23.1,22.5,24.4,24.8,21.2,21.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,24.1,22.3,24.5,24.6,26.6,27.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29,29,28.8,28.8,28.1,28.1,28.1,27.9,27.4,25.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.7,27.7,27.7,27.7,27.7,27.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29.2,29.1,28.6,28.6,28.6,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29.2,29.2,29.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.9,28.8,28.3,28.3,28.3,28.4,28.6,28.6,28.6,28.5,28.5,28.5,28.5,28.5,28.5,28.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28,28,28,28.1,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.1,28,28,28,28,28,28,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.7,28.5,28.7,28.7,28.4,29.9,28.3,28.3,28.3,28.3,28.4,28.4,28.4,33.3,33.3,33.3,33.3,33.2,33.2,33.2,33.3,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.2,27.2,27.1,28,26.7,26.9,25,25,25.3,25.3,25.3,25.3,25.3,25.2,25.3,25.3,25.3,25.3,25.3,25.2,23.9,23.9,23.9,23.9,24.1,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.3,23.3,23.2,23.3,23.3,23.3,20.5,20.5,20.8,20.5,20.5,20.5,20.5,20.5,20.6,27.8,27.8,29.1,29.2,29.2,29.2,22.3,22.3,22.3,5,27.7,22.2,22.2,22.2,22.2,22.2,22.5,22.3,22.3,22.3,22.3,22.3,21.2,22.8,22.8,22.6,22.9,22.8,22.8,22.8,22.8,22.5,22.8,22.9,22.9,22.7,22.7,22.7,22.7,22.9,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.5,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.2,22.8,22.8,23.1,23,23,23,23,23,23,23.1,23.1,23.1,23.1,23.1,22.9,23,23,22.9,23,23,23,23,23,23,23,23,23,22.9,23.9,27.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,22.2,22.2,22.2,22.2,22.3,22.3,22.2,22.2,22.2,22.2,22.2,28.6,27.1,28.6,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,26.7,26.7,27.5,27.5,27.5,27.5,27.5,28.6,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30,30,30,30,30,30,30,30,30,30,28.3,28.3,28.3,28.1,28.7,28.4,28.4,28.4,28.4,28.4,29.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.3,29.2,29.2,29.2,29.2,29.2,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,31.6,30.9,30.8,30.8,30.8,30.8,30.6,30.5,30.5,30.5,30.5,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.2,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.6,31.8,31.8,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.9,31.4,31.4,31.4,31.4,31.4,31.5,31.2,31.3,31.4,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.4,31.4,31.4,31.5,29.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.2,33,32.9,32.9,33.3,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,27.7,27.7,27.7,28.3,28,28.1,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.5,28.3,28.3,28.3,28.5,27.6,27.6,28.1,28,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.2,29.2,29.2,29.2,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.2,29,28.1,28.1,28.3,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,29,28.7,28.8,29.8,28.8,29.2,28.9,29.2,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,30.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.5,29.5,29.5,28.6,29.5,29.5,29.5,29.5,29.5,29.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.2,28.3,29.2,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.1,28.1,27.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,29.7,29.9,30,30,28.6,30.3,30.3,30.3,27.9,28.3,28.3,27.7,28.1,28.1,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.1,28.1,28.1,28,28.1,28,28.1,28.1,28.1,28.1,28.1,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29,28.9,29.1,28.5,27.9,28,28,28.7,28.1,28.1,28.1,28,28.3,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,28.6,28.9,28.9,28.9,28.9,29.1,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,26.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.2,26.3,26.3,26.3,26.3,26.3,27.1,26.9,26.9,27.1,26.6,27,27,27,27.3,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.2,27.2,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,23.7,23.6,23.6,23.6,23.2,21.3,21.1,21.1,21.2,21.4,21.1,21.1,21.2,21.1,21.1,21.1,21.2,21.1,21.1,21.2,22.2,22.2,22.2,22.2,22.3,22.1,22.3,20,21.7,21.7,21.6,21.7,21.7,21.7,21.7,21.7,21.5,21.3,21.4,21.4,21.4,21.4,21.4,21.4,22.1,22.3,22.3,21.8,21.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,18.9,22.5,22.5,22.5,22.5,22.5,23,22.8,22.8,23.1,23.1,22.2,22.2,22.2,23,22.8,22.8,22.8,22.9,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.4,22.2,22.2,22.2,22.2,22.2,23,22.5,22.5,22.5,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,22.9,22.8,23,23.5,23.7,23.7,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,27.4,27.2,27.2,27.5,27.2,27.2,27.1,28.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,27.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,22.2,21.9,22.2,22.2,22.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,28.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,27.8,27.8,27.8,27.6,27.7,27.8,27.5,27.5,27.5,27.7,28.1,28,28,28,28.2,28.2,28,28,28.8,28.5,28.5,29,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,27.8,28.1,28.1,28.2,27.9,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29,27.5,27.5,27.6,27.5,27.5,22.2,22.2,22.2,22.3,22.3,27.6,27.6,27.7,27.8,27.8,27.7,28.2,28,28,28,28,28,28,28,28,27.7,28.1,28.1,28.1,28.1,28.6,27.8,27.8,27.9,27.9,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.2,27.5,27.5,27.5,27.5,27.5,28,28.6,27.8,27.8,27.8,27.8,27.9,27.4,27.5,27.5,28,27.8,27.9,27.8,27.8,27.8,27.7,27.7,27.7,27.9,28.1,28.1,28,28,28,28,28,27.6,28.3,28.3,28.3,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,29.5,29.4,29.4,29.4,29.4,30.1,29.5,29.5,29.5,29.4,29.4,28.6,28.3,28.3,28.3,28.3,28.3,28.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.1,28,28,28.2,28.3,28.3,28.7,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.8,29.2,29.2,29.4,29.4,29.4,29.4,29.6,29.6,29,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.3,28.9,28.9,28.9,28.9,28.9,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.5,28.5,28.5,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.7,28.4,28.8,28.8,28.8,29.3,29,29.3,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.7,28.9,28.9,28.9,28.7,28.9,28.6,33.2,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,26.2,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,23.6,23.6,23.5,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.3,23,23.1,23.7,23.7,23.5,23.9,23.9,23.9,24,23.9,23.9,23.9,23.9,23.9,23.9,25,25,25,25,25,25,24.9,24.9,24.9,24.9,21.3,21.3,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,25.2,25.6,25.6,25.6,25.6,25.6,26.7,26.7,26.7,26.7,26.7,27.5,27.5,27.4,27.5,27.3,27.3,27.5,28.1,28.1,28.1,28.1,28,28.1,28.1,28.1,28.1,28.1,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,28.1,29.1,28.4,28.4,28.4,28.4,29.1,28.8,28.9,28.9,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.2,28.9,28.9,28.1,28.1,28.6,28.6,28,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.7,28.2,28.2,28.2,28.7,29,28.6,28.6,28.6,28.6,28.6,29,28.8,28.8,28.8,29,29,29,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,28.4,28.5,28.5,27.5,27.2,27.2,27.2,27.2,27.4,27.2,27.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,23.7,23,23,23,23,23,23.1,23.1,22.4,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,23.5,23.7,22.3,22.2,22.2,22.2,22.2,22.1,21.6,22.8,22.8,22.8,22.6,22.4,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,25.8,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.4,13.4,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,15.3,29,29,28.9,28.9,28.9,28.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,29.1,29.1,28.6,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,29,29.2,29.2,29.2,29.2,29.2,29.2,28.1,28.6,28.6,28.6,28.6,28.6,28.6,27.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.9,28.3,28.3,28.3,28.3,28.1,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.8,28.1,28.1,28.1,28.1,28.3,28.3,27.6,27.2,28.7,28.7,28.7,26.4,27.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.8,27.8,27.8,27.8,27.8,27.6,27.6,27.6,27.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,26.1,26.1,29.5,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.4,29.2,29.2,29.2,29.2,29.2,29.5,28.9,28.9,28.9,29.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,25.6,27,28.1,28.1,27.2,27.8,26.7,28.5,28.4,28.6,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,28.6,28.6,28.6,28.6,26.7,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36.4,27.8,27.8,25.2,26,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.2,28.6,28.6,28.6,28.6,28.7,28.9,28.9,28.9,28.9,29.1,27.2,28.3,27.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.1,28,28,28,28.7,28,28,28,27.7,28,28,27.5,27.2,27.2,27.3,25.6,25.8,27.5,27.5,27.5,27.5,28.3,28.3,28.3,28.3,28.4,28.7,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.8,26.9,26.9,26.9,26.9,26.9,26.9,27,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.9,26.9,26.9,26.9,26.9,26.9,27.1,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,28.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,27.2,27.2,27.2,29.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29.1,29.1,29.1,29.5,28.4,28.6,28.3,28.2,28.9,28.9,28.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.4,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.8,23.4,22.4,23.7,23.7,24.3,24.1,24.9,24.4,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,26.5,26.9,26.9,26.9,28.2,28.3,28.3,28.6,28.9,28.9,28.9,28.9,28.5,28.7,28.7,26.5,27.6,26.8,27,27,27,27,27,25.7,25.7,27.5,27.5,27.5,27.5,27.5,28.1,28.2,28.2,28.2,28.1,28.1,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.2,27.2,27.5,28,27.9,27.6,28,27.4,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.8,28.3,36.2,36.2,36.2,27.6,27.8,27.4,28.7,28.7,28.7,6,28.7,28.7,28.7,28,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.2,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,25.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,24.9,26,27,26.9,26.9,26.5,26.8,26.8,27,27,26.9,25.7,27.2,27.2,27.2,27.2,25.2,27,27,27,26.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.1,27.5,27.5,27.5,27.5,27.5,27.8,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,26.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,22.4,22.5,22.5,22.5,22.5,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,24.2,24.2,24.7,24.7,24.7,24.7,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,26.7,26.7,26.7,26.7,26.7,26,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.3,27.5,27.5,27.5,27.1,27.7,27.8,27.8,27.8,28,28.1,28.1,28.1,27.9,27.9,27.9,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,27.3,27.7,27.7,27.8,27.8,27.8,27.8,27.8,26.3,27.7,27.7,27.7,27.7,28.1,27.2,27.2,27.5,27.5,27.5,27.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,29.4,29.3,29.3,29.2,27.8,27.9,29.1,27.7,27.1,28.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.6,27.8,27.8,27.8,27.8,27.8,28.1,28.3,28.3,28.5,29.2,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.9,28,28,28,28.6,28.9,28.9,28.9,29.2,29.4,29.4,29.1,29.2,29.2,29.2,29.2,29.2,29.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,26.6,26.6,26.6,27.2,27.5,27.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.9,27.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.8,27.1,27.1,27.1,27.3,27.3,27.3,27.3,27.3,26.8,26.9,26.9,26.9,26.9,23.9,23,26.9,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.2,26.9,26.9,26.9,27.4,27.5,27.5,27.5,27.5,26.7,27,28.1,27.9,28.5,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.1,28.1,28.1,28.3,28,28,28,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,22,23.9,23.9,23.9,23.9,23.9,23.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.2,25.5,25.6,25.9,25.3,25.3,26,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.6,23.1,23.1,23.1,23.1,23,23,23,23,23.1,23.1,22,22,24.8,24.8,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.1,27.1,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28,29.4,29.4,29.4,29.4,29.4,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.4,28.4,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28,28,28,28,28.4,28.9,28.4,28.4,28.5,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.7,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.2,29.5,29.8,29.6,29.6,29.5,29.5,29.5,29.3,29.3,30,30,30,30,30.5,30,30,30,30.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.9,28.1,28.1,28.1,27.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.8,29.8,28.3,28.4,28.4,28.9,28.1,28.7,28.7,28.7,28.6,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,25.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.9,28.9,28.9,28.9,28.9,29.6,28.3,28.1,28.1,28.1,28.2,27.8,28.1,28.2,28.2,26.7,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.8,28.9,28.9,29.3,29.3,28.3,28.3,28.3,27.5,27.8,27.8,27.8,27.8,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,28.9,28.9,28.9,27.6,27.8,27.2,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.4,25.4,23.6,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.5,21.9,21.9,22.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.1,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23,23,20.8,22.6,22.7,22.8,37.1,22.8,24.2,24.2,23.5,25.2,24.7,24.7,24.5,25.4,25.2,25.2,25.3,25.3,25.3,25.3,25.4,25.5,25.5,25.6,25.6,25.5,26,26.2,25.4,25.8,26,25.7,25.7,26,26,25.8,25.8,25.8,25.8,25.8,25.4,25.6,25.6,25.6,25.4,25.5,25.5,25.5,24.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,26.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,24.2,21.1,21.1,21.1,21.1,21.1,21.1,17.2,17.2,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,14.3,13.9,13.9,13.9,13.9,13.9,13.9,9.7,10.8,10,10,10.3,10.3,11,11,11.2,11.1,23,23,23,23,23.9,23.9,23.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.7,22.7,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,25.3,25.9,26.6,26.6,26.1,27.1,26.7,26.7,26.7,26.7,26.1,26.1,24.9,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25,24.8,24.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.4,25.4,25.5,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,23.4,23.6,23.6,23.6,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,24.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.9,21.4,21.4,21.4,21.4,21.5,21.5,21.6,18.6,18.5,18.7,18.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.6,19.6,19.6,23,23,23,23,23,23,23,23,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.1,24.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.9,26.7,26.7,26.7,26.7,26.4,26.4,26.4,26.4,26,26,26,26.1,26.1,26.1,26.1,26.1,27,27,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.6,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,26.5,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.8,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.8,28,27.7,27.6,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.4,27.2,27.2,27.2,27.2,27.2,26.6,27,27,27,27,27,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.3,29.7,29.2,29.2,29.2,25.8,25.8,28.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28.4,28.4,28.4,28.4,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27,27.7,27.2,27.2,27.2,27.2,27.2,27.2,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.1,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.3,23.6,23.3,23.3,23.3,23.3,23.5,23.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.6,23.6,23.6,23.6,23.6,23.6,25.4,26.8,26.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.6,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,27.9,27.9,26.4,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.9,27.8,27.8,27.8,27.8,27.8,27.8,22.2,22.2,22.2,22.2,22.2,30.1,29.9,29.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,31.5,30,30,30,30.5,29.1,29.1,29.2,29.2,29.2,26.9,27.7,28,28.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.1,29.1,29.1,29.1,26.1,26.1,26.1,26.1,23.7,28.9,27.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28,28,28,28,28,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.8,29.7,29.7,29.7,29.7,29.8,29.8,29.8,29.4,29.4,28.8,28.7,28.4,28.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.6,28.6,28.5,28.5,27.2,27.5,27.8,27.8,28.9,28.5,28.6,28.6,28.6,27.7,29.2,29.2,29.2,29.2,29.2,29,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,27.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27,28.1,28.1,28.1,28.1,28.1,27.6,27.2,27.5,27.5,26.8,26.5,26.6,26.6,26.6,26.6,26.7,25.6,25.6,24.1,23.4,23.4,24.1,24,23.5,25.4,25.3,25.5,26.1,26.1,26.1,26.1,26.1,26.4,26.6,26.6,26.1,27.1,26.4,26.8,27.3,27.4,27.4,32.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28,28.3,28.1,28,27.9,28.4,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.4,28.4,27.7,29.2,29.3,29.3,29.2,29.2,29.2,29.2,29.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28.3,28.4,28.4,28.4,28.4,27.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.6,28.3,28.4,28.4,28.3,28.3,28.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,26.9,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.8,28.1,28.1,27.9,28,27.6,27.6,27.9,28.7,28.7,28.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.4,29.5,29.5,29.5,28.8,28.5,28.9,28.9,28.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.4,28.4,28.4,29.1,29.1,28.6,29.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,18.3,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.4,27.4,30.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,28,28,28,28,28,28,27,28.2,28,28,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.3,27.9,27.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,30.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.3,28.3,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.1,26.2,27,26.6,26.8,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28.2,24.7,24.7,24.7,24.7,24.7,24.7,24.7,28.1,28.4,28.4,28.4,28.1,27.8,27.7,27.7,27.5,27.6,27.6,27.6,27.6,27.6,27.4,27.4,28.9,24,28.2,28.2,28.3,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.4,28,28,28,27.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.2,29.2,29.2,22.2,22.2,22.3,21.9,21.9,21.9,21.9,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.3,19.5,20,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,19.4,20.7,24.7,24.7,24.7,24.7,24.7,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,27.7,27.7,26.9,27,27,27,27,27,27,27,27,27.8,27,27,27,27,27,27,27,26.6,24.3,24.1,27.1,26.7,26.9,26.9,26.9,26.9,26.2,26.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.4,26.9,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27,27,27,26.9,26.2,26.4,26.4,26.4,23.9,23.9,23.9,23.9,23.9,23.9,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,22.3,26,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.2,26,26,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.9,27.2,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,27.5,27.5,27.5,26.5,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,26.9,26.9,26.9,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,29.1,29.1,29.1,29.2,25.1,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,27,27,27.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,27.2,27.2,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.7,24.7,24.7,24.7,24.7,24,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,24.4,24.4,24.4,23.2,22.9,24.5,24.5,24.5,24.2,24.2,24.2,24.2,24.2,24.1,24.1,24.1,24.2,24.2,24.2,24.2,25.3,25.5,25.5,26,25.5,24.6,26.7,26.4,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,26.2,24.7,24.7,24.7,24.7,24.7,24.7,25.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.7,24.7,24.7,24.7,24.9,23.1,23.1,23.1,23.1,23.1,23.1,22.3,22.5,22.5,22.5,22.5,22.4,22.4,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.4,22.4,22.5,21.9,22.2,27.8,27.8,27.9,20.5,21,22.8,19.2,19.1,19.1,19.8,18,18,15.3,15.3,15.3,12.6,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,11.1,10.1,10.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,13.3,13.3,13.3,23.9,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,26,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,26.4,26.4,26.4,26.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.6,27.8,28.3,28.3,28.3,28.3,28.6,28.4,28.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.2,29.2,28.6,28.6,28.7,28.3,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,27.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,28.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,18.9,18.9,23.6,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.4,20.8,20.8,24.1,24.6,26.6,25.7,26,26,26.4,26.7,27.6,28,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,36.1,36.1,28.7,28.6,28.6,27.1,27.1,27.2,27.2,27.2,27.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,23.6,23.6,22.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.5,27.5,27.5,25,26.2,28.6,28.6,28.6,28.6,28.6,31.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,27.8,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29,28.3,28.3,28.1,27.8,27.8,27.9,27.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,28.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,11.4,11.4,11.4,11.4,11.4,11.4,13.1,4.4,4.4,4.4,4.4,4.4,4.4,17.3,17.3,17.3,17.3,17.3,17.3,17.3,17.2,19,13.8,13.8,13.8,13.9,13.9,13.9,15.2,15.2,20,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.4,20.4,20.6,20.2,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.4,20.4,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.6,20.5,20.5,20.6,15.4,15.6,15.6,18,18,18,18,18,18,18,18.2,20.9,20.6,20.6,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.6,20.6,20.6,20.6,20.6,20.4,20.6,20.6,20.6,20.6,20.6,20.6,20.5,20.5,20.4,21.1,18.6,18.6,18.6,18.6,17.3,17.3,16,17.5,16.3,16,15.5,15.5,15.6,15.6,15.1,15.1,15.7,14.7,15.5,17.8,17.6,17.6,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,13.6,19.4,19.4,14.8,14.8,14.3,14.3,14.3,14.7,14.3,14.4,13.9,13.9,13.9,13.9,13.3,14.3,7.1,7.1,7.2,7.2,7.8,7.8,6.4,6.4,6.5,6.5,6.5,8.9,8.9,9.8,9.8,14.3,14.4,14.4,14.4,15.3,15.3,15.3,15.3,15.3,15.3,15.2,15.2,7.3,7.3,7.3,7.2,7.2,7.2,7.2,7.2,10.4,10.4,10.4,14,14,18.9,18.7,18.6,18.6,18.6,18.6,18.6,18.6,18.6,18.4,19.7,18.6,18.6,18.6,18.6,15.9,13,13,13,6.7,6.7,6,6,6,6,7.2,6.6,6.6,6.6,6.6,6.8,6.8,6.8,6.8,6.8,18.1,18.1,18.4,18.4,17.8,17.8,18.3,18.4,18.3,18.3,18.6,18.4,18.4,18.4,21.3,21.3,20.7,20.7,20.6,20.6,20.6,20.8,20.8,20.6,20.6,20.6,20.6,20.6,20.6,18,18,18,18,18,17.8,17.8,18.8,17.6,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.8,13.8,16.9,16.9,16.9,16.9,15.3,15.3,15.3,15.3,15.3,15.3,15.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.6,23.9,23.9,23.9,23.9,23.9,23.9,24.3,23.9,23.9,23.9,23.9,23.9,22.2,22.2,22.2,21.7,21.7,22.2,23.9,23.9,23.9,23.9,23.9,23.9,26.7,26.7,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,26.2,26.2,26.2,26.2,26.2,25.3,25.3,25.4,25.4,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.2,26.4,26.4,26.4,26.4,26.2,26.2,26.2,25.7,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,26.4,26.6,26.6,26.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.5,29.5,27.7,28.1,28.1,28.1,28.1,28.4,28.4,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,22.5,22.5,22.5,22.5,22.5,23.5,28.9,28.9,28.9,28.9,28.9,28.9,28.1,28,29.5,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,30,29.5,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,28.9,28.9,28.9,28.9,29.4,28.9,28.9,25.2,22.5,20.8,20.8,20.8,20.8,20.8,20.8,22.1,22.2,22.2,24.2,24.2,16.3,22.6,25.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.4,27.2,27.2,27.2,27.2,27.6,27.8,27.8,28.4,28.3,28.3,28.3,28.6,28.9,28.9,28.3,28.3,28.3,28.3,27.6,28.9,28.9,28.9,28.9,28.9,28,28,28,28,28.1,28.1,28,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,28,28.1,28.1,28,27.7,27.7,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.9,36.1,36.1,36.1,36.1,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,27.2,27.3,27.3,27.3,27.3,27.3,27.5,27.5,27.5,27.5,27.3,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.7,27.7,27.7,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.7,26.9,26.4,26.4,26.4,26.4,26.2,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,27.2,26,23.8,27,27.1,27.8,27.8,27.8,27.7,27.7,27.5,27.8,28.3,28.3,28.4,28.9,28.9,28.9,28.9,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,27.8,27.8,27.8,27.8,27.8,28.1,28,27.8,28.6,28.6,28.6,28.6,28.6,28.2,28.5,26,24.3,24.5,25.5,25.5,25.5,24.8,26.5,27.2,27.2,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,26.9,26.9,26.8,26.8,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.1,27.3,26.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.6,26.9,27,26.9,26.9,26.9,26.9,26.9,26.9,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.9,26.9,26.9,26.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.4,25.4,25.4,25.5,25.3,25.1,24.5,23.6,23.6,23.9,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,18.4,18.4,18.4,18.4,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,16.1,16.1,16.1,16.1,17.5,17.5,17.5,17.5,17.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,28,28,28.4,28.4,28.6,28.6,28.6,28.6,28.1,28.1,28.1,27.6,27.6,27.9,28.6,28.6,28.6,28.6,27.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28,28,28,28,28,28,28,28,28,28,25,25,25,25,25,25,25,25,25,25,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26,26,25.9,25.9,25.9,25.9,25.6,25.9,25.9,25.9,26.1,26.1,26.1,26.1,26.4,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.6,27.6,28.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,24.2,24.2,23.4,24.2,24.2,24.2,24.2,21.9,21.9,21.9,21.9,21.9,19.4,19.4,19.3,19.3,16.7,16.7,16.7,16.7,16.7,14.2,14.2,14.2,14.2,14.2,14.2,14.5,14.3,13.9,13.9,14.1,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,15.3,18,18.1,22.7,22.7,22.8,22.8,22.8,22.8,22.8,22.8,22.8,25.8,25,25,25,25,25,25,25,25,25,27,27,27,27,27,27,27,27,27,27,27,27,26.4,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,26.2,26.3,26.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,26.4,26.4,26.4,25.3,26.1,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.3,26.9,26.9,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.3,28.1,28.3,27.7,27.7,27.7,27.7,29.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,31.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.3,26.4,26.4,25.8,25.1,25.2,25.2,25.3,24.7,24.7,24.5,25.9,25.8,26,26,26,27,27,27,27,27,27,26.9,26.9,27,27.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,24.7,24.8,24.7,22.2,22.2,22.2,19.4,6.1,6.1,6.2,8.4,18.9,18.8,25,24.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,30.5,30.5,30.6,30.6,30.6,30.7,30.6,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.9,30.9,30.9,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.7,30.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,28.6,27.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.8,27.9,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,25,25,25,25,25,25,25,25,25,25,25,25,29.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.3,28.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.8,29.1,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29,29,28.8,28.9,28.6,28.6,28.6,28.6,28.6,27.4,27.8,27.8,27.6,26.6,24.7,24.5,24.5,24.5,24.5,24.5,25.5,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.3,25.3,25.3,25.3,25.3,25.3,26.4,26.4,26.4,26.4,26.4,26.4,25,25,25,25,25.3,25.3,25.3,26.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.7,25,25,25,25,25,25,25,25,25,25,25,25,25,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,28.1,27.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.4,29.5,29.5,29.5,29.5,29.5,28.7,29.5,29.5,29.5,29.5,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.8,29.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,19.3,19.1,19.2,19.2,19.1,19.1,19.1,19.1,19.8,19.8,19.8,19.6,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.6,26.1,26,25.5,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.2,25.6,26.1,26.1,26.1,26.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.1,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.6,30.1,30,30,30,30,30,30,30.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,31.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.9,29.3,29.6,36.1,36.1,36.1,36.1,36.1,31,30,30,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.3,31.3,30.7,31.2,31.9,31.9,31.4,31.9,31.4,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.5,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,29.7,29.9,28.9,29.6,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.9,31.4,31,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,24.7,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,25.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.1,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35,30.4,31.7,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,32.2,31.8,32.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,30.8,31.1,32.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,36.3,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.4,31.4,31.4,31.4,31.9,31.9,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.3,30.8,30.9,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.1,18.3,18.3,18.3,18.1,18.1,18.1,18.1,18.1,18.1,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,16.9,15.7,15.7,16.9,16.9,16.9,17.9,15.6,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,28.9,28.9,28.9,28.9,30.5,30.5,30.5,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,32.4,32.5,32.5,32.5,32.4,32.2,32.2,32.2,32.2,32.2,31.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.6,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.7,32.2,32.2,32.2,32.2,32.2,31.9,31.9,31.9,32,32.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.4,31.8,32.2,32.5,32.5,32.5,32.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,32,32,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.1,32.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.6,32.2,32.2,32.2,32.2,32.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.4,31.4,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.1,32.2,32.2,32.2,32.5,32.5,32.5,32.5,31.8,32.2,32.2,32.2,32.2,32.2,32,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.3,31.3,31.2,31.2,31.7,31.7,31.6,31.7,31.7,32.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.4,36.1,36.1,36.1,36.1,36.1,31.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.8,31.7,31.7,31.6,31.6,31.9,31.9,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.8,31.9,32.3,32,32,32,32,32.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.7,31.7,31.7,31.7,31.7,31.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,20.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,32.3,32.3,32.3,32.3,32.3,31.4,31.4,31.4,31.4,31.8,31.7,31.7,31.7,31.7,31.7,31.7,30.2,30.7,30.7,30.4,30.4,30.3,30.3,30.3,31.9,31.9,31.9,31.9,32.5,30.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,31.9,31.9,31.9,31.9,31.9,31.9,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,32.8,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.4,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,33,33,33,33.1,32.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,35.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37.5,32.8,32.8,32.8,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,26.9,25,25,38.4,36.1,36.1,36.1,36.1,23.8,25,25,23.8,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,21.2,36,36,23,19.5,31.1,31.1,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,8,31.8,31.8,21.1,21.1,21.1,21.3,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,20.6,20.6,21.4,21.4,21.4,21.4,21.7,21.7,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.5,32.7,32.7,32.7,32.7,32,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33.1,33.1,33.2,30.3,30.3,30.3,30.3,32.2,32.2,32.2,31.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.3,36.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,35.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,31.6,29.6,29.6,29.6,29.6,29.6,29.6,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.3,24.3,28.9,30.3,30.3,31.6,31.6,31.6,31.6,31.6,31.6,32.1,32.3,32.6,32.6,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33,33.1,32.7,33,33,33,33,33,33,33,33,33,33,33,33,33,32.7,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32,32,32,32,32,32,32,32,32,32,32,32.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,44.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,47.9,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,24.9,19.3,32.2,32.2,32.2,31.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.3,33.7,33.3,33,33,33.2,33.2,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,32.5,32.5,32.5,31.8,31.8,31.8,47.4,31.5,31.5,30.2,31.7,31.7,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.2,30.5,30.2,30.2,30.2,30.2,30.2,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,31.7,31.7,31.7,31.6,31.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,35.9,35.9,35.9,32.9,32.9,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,28.3,30.6,28.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,45.2,30.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.6,27.6,27.6,27.6,22.5,26.6,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.4,25.4,25.4,25.4,25.4,25.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,22.7,22.9,22.5,22.5,22.5,22.5,21.6,21.6,21.6,21.6,21.6,21.6,21.6,21.6,25.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,27.2,27.6,27.6,27.6,27.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.4,25.9,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.7,25.2,25.2,26.7,26.1,26.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.9,27.9,27.9,27.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,32.3,32.3,32.3,31.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,19.5,19.5,19.5,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,33.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,32.6,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,35.9,20.4,33,33,33,33,33,33,33,33,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.7,32.7,32.7,32.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36,36,33,33,33,33,33,33,33,33,33,33,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.6,31.6,31.6,32.8,29.7,31.4,31.4,31.4,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,32.8,32.8,32.8,32.8,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,34.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.3,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,25,25,25,25,25,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,21.6,21.6,21.6,21.6,21.6,21.6,21.6,21.6,21.6,21.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.8,32.2,45.9,32.2,31.8,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.5,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.3,29.1,29.1,29.1,29.1,29.1,29.1,13.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.3,28.2,28.2,28.2,28.2,28.2,27.2,28.1,28.1,28.1,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,27.7,27.7,27.9,27.9,27.9,27.9,28.5,28.7,26.7,27.6,27.6,27.6,28.1,27.9,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,29.2,26.9,26.7,26.7,26.7,27.5,26.9,27,27,27,25,25.1,25.1,25.1,27.3,25.6,25.3,21.7,22.4,22.4,23.5,23.5,22.9,22.9,22.8,22.8,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.8,23.8,23.8,23.8,23.8,23.8,23.8,23.8,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,24.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.8,25.1,25.4,25.4,29.5,25.1,26.6,25.2,29.5,25.6,32.3,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.4,25.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,22.8,28.5,28.5,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28,28,28,28,28.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.4,27.5,27.5,27.5,23.9,23.9,20.6,20.6,20.6,8.6,8.6,8.6,8.6,8.7,8.5,11,11.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25,25,25,25,25,25,25,25,25,25,25,25,31.4,31.4,31.4,31.3,31.4,31.4,31.4,31.4,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.3,32.3,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,32.7,32,32,32,32,32,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.1,32.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,35.3,36.1,36.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,44.9,30.5,30.5,30.5,33.5,25,25,25,25,25,25,25,26.6,24.9,24.9,24.9,25.1,25,25,25,25,25,25,25,25,25,25,25,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,32,32,32,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,29.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,32.3,30.7,30.8,30.8,30.8,30.8,30.8,30.5,30.5,31.2,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.7,30.4,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.2,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36,36,31,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36.2,36,36,36,36,36,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.9,32.9,32.9,32.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.6,36,36,32,26.8,32,32,32,32,32,32,32,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.3,33,33,33,33,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,32.6,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.8,33,33,33,33,33,33,33,32.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,25,25,25,25,14.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,32.7,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.4,32.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.8,36.2,33,33,33,33,33,33,33,33,33,33,33,33,33,33,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,32.5,32.5,32.2,33,31.8,32.7,32.7,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,32.7,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32,33.3,33.3,33.3,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,33.3,33.3,33,33,33,33,33,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.6,32.6,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.8,32.8,32.7,32.5,32.5,32.5,32.5,32.5,32.5,32.6,32.6,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,37.3,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,31.9,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33.1,33.1,33.1,33,33.1,33.1,33.1,33.1,33.1,33.1,32.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,32,32,32,32,32,32,32,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,26.7,26.7,26.8,22.2,22.1,22.3,6.9,6.7,23.6,23.3,23.3,23.3,29.8,29.7,27.8,27.8,27.8,27.8,27.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27,27,27,27,27,27,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.8,27.8,27.8,27.8,35.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.1,29.1,29.1,29.1,29,29,27.2,30.1,18.6,18.6,18.6,18.6,18.6,18.6,19.2,19.2,19.2,19.2,19.2,27.5,20.6,20.6,20.6,25,25.3,24.9,24.9,26.2,20.3,20.1,20.2,20.3,20.3,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,19.7,21.4,21.4,13.9,13.9,13.9,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,22.5,22.7,22.5,22.5,21.1,21.1,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.5,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.1,16.9,16.9,16.9,16.8,16.8,16.8,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.2,14.2,13.9,13.9,13.9,13.9,17,17,17,17,17,17,17,17,17,17,17,18.1,18.1,18.1,18.1,18.1,18,18,21.1,21.1,21.1,15.7,20.9,21.1,21.1,21.7,21.7,21.1,22.5,22.5,22.5,22.5,22.5,22.2,22.2,22.2,22.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.8,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.1,24.1,22.2,22.2,22.2,22.2,22.2,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.4,22.4,22.6,22.6,22.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,20.6,19.2,19.2,19.2,19.2,19.2,19.2,18.9,19.3,19.4,19.4,19.5,20,20.2,21.4,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.3,21.9,23,21.4,21.4,21.4,21.3,19.8,19.8,19.8,19.7,19.7,19.7,19.7,20.3,20.3,20.3,20.3,20.3,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,23,23.6,22.1,22.7,22.7,24.2,24.2,24.2,24.2,24.2,20.3,23.2,23.2,23.8,23.8,23.9,23.9,23.9,23.9,23.9,21.9,22.5,22.5,23.9,23.9,23.9,23.9,23.9,23.1,23.1,23.1,22.5,22.5,22.5,22.5,22.1,22.3,22.3,23,22.8,22.8,22.8,22.8,22.8,22.8,22.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,19.1,19.1,19.1,19.1,19.1,19.1,25,25,25,25,25,18.6,18.6,18.6,18.6,18.6,18.6,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.6,17.6,17.6,17.6,17.6,17.6,15,15,15,15,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,16.4,21.4,21.4,21.4,21.4,21.4,21.4,21.3,20,20,20,20,20,20,20,20,17.5,17.5,17.5,22.8,22.8,22.8,22.7,22.8,24.2,24.2,24.2,24.2,24.2,24.2,24.2,25,23.9,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,25.6,18.6,18.6,23.6,23.7,23.7,23.6,23.6,23.6,30.5,30.5,30.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.7,24.1,24.1,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,22.2,22.2,22.2,22.2,22.2,27.2,27.2,27.2,26.8,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28,27.9,27.9,28.1,28.1,28.1,28.1,28.1,27.8,27.8,27.8,27.8,27.8,27.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,31.9,31.9,31.9,31.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,30.8,30.8,21.9,21.9,21.9,21.9,22,22.1,22,22,22,23,21.9,18,19.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.3,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,36.1,36.1,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,31.9,31.9,31.9,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.6,31.4,31.4,31.4,31.4,31.4,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.5,30.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.3,28.2,28.4,14.8,14.7,14.7,28.5,4.3,5.7,25,24.9,25.1,35.9,36.1,36.1,36.1,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.5,32.5,32.5,32.3,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.4,30.5,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.9,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.6,31.9,31.9,31.9,31.9,30.2,30.2,30.3,29.7,28.7,28.8,22.2,22.2,22.3,22.3,6.7,20.5,20.5,19.4,19.4,19.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,31.4,31.4,31.4,31.4,31.4,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,36.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.2,27.1,27.1,27.7,26.8,26.8,26.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.1,28.1,28.2,28.3,28.3,28.3,28.3,28.3,28,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,26.8,26.2,26.5,27.2,27.2,27.2,27.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,27.4,24.2,24.5,24.5,24.5,20,10.3,10.3,10.3,10.3,10.3,19.4,23.8,23.8,26.3,26.3,26.3,26.3,26.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.4,28.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,26.4,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,27.9,28,28,28,28,28.3,28.1,28.1,28,28,28,28,28,28,6,5.7,9.1,9.1,13.3,13.3,13.3,14.4,16.2,16,17.8,17.5,17.7,18.3,19.3,19.3,33.4,33.4,33.4,33.4,33.4,33.4,26.3,26.3,26.3,26.3,26.3,26.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,7.8,7.7,7.7,7.7,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,7.8,11.7,11.7,11.7,11.7,18.4,18.4,18.4,18.4,18.4,20.8,20.8,20.8,20.8,20.8,24.4,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,26.7,28,28,28,28,28,28,26.6,27.8,27.8,27.8,27.8,26.7,26.7,26.7,26.7,25,25,25,25,25,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.7,22.7,22.7,22.7,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,25.3,25.3,25.3,25.5,27,27,27,27,27,27.3,27.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,28,28,28,28,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.3,27.5,27.5,27.5,27.5,27.5,27.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,26.8,26.8,28.1,28.1,28.1,28.1,28.1,28.1,26.7,26.7,26.7,26.7,26.7,27.3,27.3,27.3,27.3,26.9,26.9,26.9,26.9,26.9,26.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,26.9,28,28,28,28,28,28,28,28,26.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.1,28.1,28.1,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,26.4,26.4,26.4,26.4,26.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.5,22.2,22.2,22.2,22.2,19.8,19.8,19.8,19.7,6.4,6.4,6.4,6.4,6.4,14.5,14.5,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,22.4,22.4,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,24.2,24.2,24.2,24.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,25.8,26.2,26.2,26.2,26.2,25.2,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.5,26.5,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.8,25.8,25.8,25.8,25.8,26.3,26.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.6,26.6,26.6,26.6,26.6,26.6,25.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.7,25.7,25.7,25,25,25,25,25,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.4,25.4,25.4,25.4,25.4,26,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,22.4,22.5,22.5,22.5,22.5,23.3,23.3,23.3,23.3,23,23,13.9,13.9,13.9,23.5,23.5,23.5,23.5,25,25,25,25,25,25,25,25,25,25,25,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27,27,27,27,27,27,27,27,27.6,27.8,27.8,27.8,26.6,27.6,26.8,28.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28,28,28,28,28,27.5,27.5,27.5,27.5,28,28,28,28,28,28,28,28,28,28,28,28,27.2,27.2,27.2,27.2,27.2,27.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,29,29,29,29,29,28.4,28.4,28.4,28.4,28.4,27.3,27.7,27.8,27.8,27.8,27.8,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,28.6,28.6,28.3,34,33.3,33.3,33.3,33.3,33.3,28.2,28.2,28.2,28.3,28.3,28.3,28.4,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.9,29.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.6,29.6,29.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.4,28.4,28.4,28.4,28.4,28.4,29.4,29.4,29.4,29.4,29.4,29.2,29.2,29.2,29.2,29,29,27.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.2,29.2,29.2,29.2,28.9,28.9,30.2,30.2,30,30,30,30,30,30,30,30,30,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.2,30.2,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,26.1,31.8,30,30,30,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.6,29.5,29.5,29.5,29.5,29.5,28.7,28.7,28.4,28.4,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.6,25.3,20.3,9.6,9.7,9.7,9.5,9.4,9.7,17.5,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.4,19.5,19.5,25,25,25,25,25,25,25,25,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,22.5,22.5,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.1,22.1,22.1,22.1,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.2,23.2,23.3,23.3,23.3,23.3,25.3,25.3,25.2,25.3,25.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.9,22.8,22.8,23.2,22.8,22.8,22.8,22.8,22.8,22.8,22.8,8.1,8.1,8.1,8.1,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.4,8.3,8.3,8.3,8.3,8,8,8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.2,29.2,29.2,29.2,29.5,29.2,29.2,29.2,29.2,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,27.2,27.2,27.2,27.2,27.3,27.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.2,28.6,28.6,28.6,28.6,28.9,28.9,30,30,30,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.9,30.8,30.8,30.8,28.1,28.1,28.1,28.1,28.3,28.3,28,28,28,28.8,28.8,28.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.2,29.2,29.2,29.2,29.2,28.5,29.2,29.2,29.2,29.8,30,30,30,30.1,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,31.4,31.4,31.4,31.4,31.4,29.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.3,29.3,20.9,20.9,20.9,20.9,20.8,20.8,20.8,20.5,24.2,24.2,26.6,26.6,26.6,26.6,26.6,26.6,27.4,27.4,27.5,27.5,27,27,26.9,26.9,26.9,26.9,26.9,26.9,25.9,25.9,25.9,25.9,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.2,30.2,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.1,30.6,30.6,30.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.3,29.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.6,30.3,30.3,30.3,31.1,31.1,31.1,31.5,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.6,30.4,30.4,30.4,29.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.5,28.5,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,28.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.3,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.7,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.8,28,28,28,28,28,28,29.2,29,29,28.9,28.9,28.9,28.9,28.9,28.9,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.6,29.1,29.1,29.1,29.1,29.1,30.6,31.2,30.4,30.4,30.4,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29,29,29.5,29.4,29.5,29.3,31.1,30.3,30,30,30,30.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31,30.5,30.5,30.5,30.3,30.2,30.2,30.2,29.7,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.3,29.3,28.9,28.6,28.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24,25.3,25.3,25.3,25.3,26,26,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,27.8,27.8,27.8,27.8,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.4,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.7,30.3,30.3,30.3,30.3,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31,31,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,29,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.1,28.8,28.8,28.8,28.8,28.8,28.8,28.8,28,28,28,28,28,29,29,29,29,29,29,28.8,28.8,28.8,28.8,28.8,28.8,28.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,32.7,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.7,30.8,30.8,32.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,30.7,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.1,29.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.7,29.7,29.7,29.7,29.7,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.5,31.1,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,28.7,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.3,29.3,29.3,29.3,30,30,30,30,30,29.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.2,30.2,30.2,30.2,30.2,29.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.9,29.9,29.9,29.9,29.9,30,30,30,30,30,30,30,30,30.1,30.2,30.2,30.2,30.1,32,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,30.1,29.8,29.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,8.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,13.3,28.6,28.6,28.6,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.8,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.5,29.6,29.6,29.9,29.9,29.9,29.9,28.8,28.8,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30,30,30,30,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.4,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,29.3,31.5,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.6,28.8,28.8,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.4,28.6,28.6,28.6,28.6,28.6,28.6,30.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,25,25,25,25,25,25,25,25,25.3,30.2,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.6,28.6,28.6,28.6,28.6,17.6,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.7,29.7,29.7,29.9,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.7,29.7,29.7,29.7,29.3,29.8,29.8,29.8,29.1,29.1,29.1,29.1,29.1,29.1,29.1,28.8,28.8,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.7,29.3,29.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.2,29.2,28.6,28.6,28.7,28.9,28.3,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.3,29.5,30,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,27.9,27.7,29.7,29.4,29.4,29.4,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30,30,30,30,29.9,29.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.7,29.7,29.7,29.9,30.5,30,30,30,29.7,30,30,30,30,30,30,30,30,30.3,30,30,30.4,29.6,29.8,29.8,30,30,30,30,30,30,30,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,29.6,29.6,29.9,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,30,30,30,30,30,29.7,29.7,29.7,29.1,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.8,31.6,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.7,31.7,31.7,31.7,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,31.1,31.3,31.1,31.1,31.1,30.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.2,30.7,30.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.1,30.3,30.3,30.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,29.7,29.7,29.7,29.7,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.8,30,29.6,29.6,29.7,29.7,29.7,29.8,29.8,29.8,29.8,29.5,30,30,30,29.5,29.7,29.9,29.9,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.2,30,30,30,30,30.1,30,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,25.7,27.2,27.2,27.2,27.2,26.1,24.9,24.9,24.9,24.9,24.9,22.6,22.6,22.6,21.4,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,28.5,24.4,24.4,24.4,24.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.7,28.6,28.2,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,28.4,28.7,28.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.3,33.3,33.3,33.3,33.1,33.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.2,31.2,32.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.6,31.6,33.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.5,31.7,32.5,32.5,32.5,31.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.7,32.5,32.5,32.5,32.5,32.7,31.9,31.9,31.9,31.9,31.9,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,29.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,29.7,29.7,29.7,29.7,29.7,29.9,29.8,29.8,29.8,29.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,28.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30,30,29.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,29.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.1,29.4,29.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.5,29.5,29.3,30,30,30,30,30,30,30,30,30,30.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.3,30,30,30,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.9,30.9,28.1,29.4,30,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,33.1,27.5,29.1,29.1,29.1,29.1,29.1,29.1,29.6,29.4,29.4,29.4,29.4,29.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.8,28.6,28.6,28.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.4,27.6,27.6,27.8,27.8,27.7,27.5,26.6,26.6,26.7,26.7,26.7,27.8,27.8,27.8,27.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.9,29.7,29.7,29.7,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.2,25.1,23.9,23.9,23.9,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.7,29.7,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,30,30,30,30,30,28,29.1,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.2,27.2,27.2,27.2,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,30.2,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.1,29.2,31.6,28.3,28.3,28.3,28.3,28.3,28.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.6,28.6,28.6,28.6,28.6,28.6,26.9,26.9,26.9,26.9,27.1,27.1,26.9,26.9,26.9,26.9,26.9,26.9,24.2,24.2,24.2,24.2,24.2,26.3,26.3,26.2,27.6,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,27.3,27.3,27.3,27.3,27.3,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.8,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.3,29.3,29.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,30.5,30.5,30.5,30.5,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,29.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.1,32,32,32,32,31.5,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.1,29.2,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,31.5,31.5,31.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.2,29.2,29.2,29.2,28.5,28.7,30,30,30.8,30.8,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29,29.2,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.3,28.6,28.6,28.9,28.9,28.9,28.9,28.9,29.4,29.4,29.4,29.4,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28,28,29.5,29.5,29.5,29.5,28.6,28.6,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.1,26.1,26.1,25.6,26.1,26.1,26.1,26.5,27.2,27.2,27.2,27.2,27.2,27.6,27.8,27.8,27.8,27.9,25,25,25,25,25,25,25,25,25,25,23.8,23.9,23.9,23.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.3,23.1,24.5,23.1,22.9,23,23,23,23,25.2,25.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.9,27.1,27,27.2,26.7,26.7,26.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.2,33.3,33.3,33.3,33.3,33.3,33.3,30.4,31.1,31.1,31.1,30.8,30.8,30.8,30.8,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.5,30.5,30.5,30.5,30.8,30,30,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,30.3,29.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.1,28.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.8,27.2,28.4,28.4,28.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31,31,28.6,29,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.6,30.7,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,29.5,28.4,28.4,28.4,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.1,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.9,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.6,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28,28,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,26.3,26.3,26.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.8,27.8,27.8,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,32.5,30.6,30.6,30.6,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,31,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.5,29.5,29.5,28.6,28.6,28.6,28.6,28.6,28.6,28.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,28.3,28.3,28.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.2,30.1,30.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28.1,29.2,29.2,29.2,29.2,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.1,28.1,28.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.8,29.2,29.5,29.8,28.6,28.6,28.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,25.8,25.8,25.8,16.1,16.1,16.1,20.6,18.2,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,17.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,30.3,30.3,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.9,32.2,32.2,32.2,32.2,31.2,31.9,31.9,31.9,31.9,31.9,31.9,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.1,32.5,32.5,32.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.6,31.3,32.5,32.5,32.5,32.5,32.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.5,31.4,31.4,31.4,31.4,31.4,31.3,31.5,31.5,30.8,30.8,30.8,30.8,30.8,31.1,31.1,30.5,30.3,30.3,30.3,30,30.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31,30.5,30.5,31.4,30.6,30.6,30.6,30.2,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.2,31.6,31.1,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.3,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.9,30.2,30.2,30.3,30.3,30.3,30.1,30.1,29.4,29.5,29.5,29.5,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,28.4,28.9,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.4,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.1,28.3,28.3,29,28.9,28.9,28.9,28.9,28.9,28.9,29.3,29.5,29.5,29.5,28.3,28.3,28.3,28.2,28.3,28.3,27.6,33.3,33.3,33.3,33.3,28.4,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.3,28.4,29,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.9,28.6,28.6,28.6,28.4,28.3,28.3,28.3,28.3,28,28.6,28.6,28.6,28.6,28.5,28.8,27.3,27.2,28.1,28.1,28.1,26.9,26.9,24.3,24.1,23.9,23.8,16.4,16.4,16.4,16.4,16.9,16.9,23.2,22.8,23.1,23,23.2,27,27,27,27,27,27,28.1,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.9,26.1,26.1,26.4,25.8,25.8,25.8,25.8,25.8,25.8,24.2,21.4,21.4,21.4,21.4,21.4,15.7,15.7,15.7,15.7,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.4,18.4,18.4,18.4,18.4,18.4,18.4,16.2,15.6,15.6,15.6,15.6,15.8,15.8,16.2,16.2,16.2,16.2,16.2,16.2,16.2,16.2,16.2,16.2,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,19.9,19.5,19.8,19.8,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.1,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,19.5,21.5,21.4,21.4,21.4,21.4,21.4,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,17.2,13.4,14.7,14.7,13,13,13,11.6,13.6,13.6,13.1,16.1,16.1,13.8,14.9,12.5,12.5,14,15.3,15.3,15.3,15.3,15.3,15.3,15.3,13.9,15.2,15.2,15.1,15,15,13.4,14.4,14.4,14.4,14.4,14.4,12,12,12,11.9,6.7,8.9,8.9,8.9,9.8,10.3,8.1,8.1,8.1,8.1,8.1,7.1,7.1,7,7,7,6.9,6.9,6.9,6.9,4.7,4.7,4.7,6.4,13.6,13.5,13.5,13.6,13.6,13.6,13.6,13.6,13.6,14.3,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.3,9.3,8.1,8.1,8.1,8.1,8.1,8.2,8.2,8,8,8,8,8,8,8,11.2,11.2,11.7,11.7,11.7,10.6,13.3,13.9,13.9,13.9,10.8,10.8,10.8,10.8,11.2,10.3,10.3,10.3,10.3,11.3,11.3,11.9,11.9,11.9,11.9,11.9,11.9,12,12,9.9,10,10,9.8,9.8,13.3,13,13,13,13,13,13,8.5,8.5,9.7,9.7,9.7,4.3,5.4,8.2,8.2,8.7,10.5,10.5,12.8,12.8,14.7,14.7,14.7,14,6.7,6.7,7.8,12.2,12.2,12.2,12.2,14.5,13.3,13.3,13.2,13.3,7.2,5,4.9,5,5,5,5,5,5,5,5,6.6,6.6,6.6,6.1,6.1,6.1,6.1,5.8,5.8,9.2,6.9,6.9,6.9,8,7.8,7.6,7.6,7.5,7.5,5.6,5.3,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,6.3,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,5.5,5.8,5.3,5.5,5.5,4.7,4.8,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,5.9,4.4,4.2,5.2,5.3,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.4,4.2,4.2,4.2,4.5,4.5,4.5,4.5,4.5,4.5,4.4,4.4,4.4,3.6,3.6,3.6,3.1,3.1,3.1,3.1,3.1,3.1,3.1,2.5,2.5,2.5,4.4,3.9,4.2,3.8,3.8,5.8,5.8,5.8,6.7,6.7],"distance":[110.1,98.2,48.5,1.4,25.7,16.6,48.7,13.3,77.6,10,11.1,4.9,20.8,18.8,49.2,12.8,9.6,9.2,9.3,9,4.1,14.2,9.5,4.9,51.3,23.8,14.4,8.4,0.3,4.5,2.4,12.1,14.7,4.4,7.8,32.2,71.8,17.1,5.1,4.6,12.9,12.8,3.9,61,32.7,32.6,16.4,27.8,12.2,4.4,12.5,16.7,5.1,14.7,8.5,10.4,36.6,10.5,81,23.7,4.2,15,24,64.2,7.3,0.2,16.5,4.6,17.5,30.3,15.3,19.7,0.5,24.8,3.8,3.7,3.2,3.9,3.2,22,2.5,2.5,9.6,14.8,6.7,6.1,49.8,111.8,3.8,4.1,87.9,33.2,3.4,5.8,10,12.1,14,9.7,15.4,7.4,7.7,8.4,5.8,3,3.9,7.1,27.5,14.7,12.1,6.1,11.2,6.2,5.3,7.2,7.2,5.6,7.3,4.4,73.7,13.8,10.3,9.1,11.5,8.4,4.5,10.8,75.3,2.6,2.7,9.5,11,9.4,13.5,5.2,6.5,9,12.8,11.6,18.9,18.6,8.2,2.8,20.2,18.7,25.6,9.9,13.1,21.9,7.2,7.8,21.8,5.1,16.8,22.9,17.1,1.2,11.9,19.3,6.3,9.5,3.7,14.1,9.3,2.7,4,7.8,43.3,1.2,2,25.3,4.1,38.4,27.8,23.6,23.7,16.8,4.3,39.2,3.8,11,9.1,3.6,85.2,12.9,4.7,5.2,7.2,10.7,3.2,8.9,4.3,13.6,8.8,28.5,4.5,8.5,4,23.4,3.3,11.2,11.1,22.4,25.9,4,7.3,8.8,8.2,10,8.5,11.9,4.5,4.3,16.3,13.5,34.5,89.6,9,8.9,3.4,12.9,10.3,2,16.4,1.9,86.1,2.1,5,7.1,5.6,4.4,5.7,2.3,4.1,5,6.6,20.7,6.9,5.2,2.7,1.5,21.1,2.9,18.4,4.4,2.7,2.8,5.9,58.9,31.8,12.3,75.6,57.4,14.8,10.7,5.9,3.6,4.7,5,8.6,10,1.1,9.8,10.6,9.3,10.8,4.1,8.3,15,3.8,10.5,2.7,114.2,42.4,3.8,4.2,4.8,7.3,26.8,8.5,5.8,1.9,1.6,5.7,2.1,53.3,19.7,57.1,46.3,4.8,13,14.1,2.5,13,14.2,12.4,12.5,9.1,12.3,11.3,4.6,11.8,14,3.6,35,35.4,9.2,15.1,3.9,50.7,17.5,17,27.9,14.9,4.3,9.1,23.6,7.1,2.7,45.2,37,12.7,43.1,30.4,3.1,39.6,15.7,3.9,3.9,10.9,21.2,19.7,1.7,18.5,2.1,38.1,4,7.1,20.8,6.8,8.7,4.1,4.5,6.4,13.4,6.7,4.2,2.5,25.4,139.4,6.6,5.4,91.2,13,0.3,21.3,3.8,6.9,13.9,24.8,2.4,6.8,60.7,3.3,11.3,14.4,13.1,15.1,26.9,41.7,20.6,64.5,8.7,24.1,35.1,72.7,69.3,17.4,9.1,28.6,50.3,47.5,43.1,63.6,97,30.3,36.5,32.5,61.6,168.2,243.8,42.1,78.1,38.7,44.7,19.8,34.4,16,29,56.1,22.6,43.7,47.5,45.4,63.6,35.5,38.1,88,14.4,70.6,67.1,36.1,54.8,48.6,26.4,50.3,28.5,29.1,29.8,37.4,44,43.2,22.5,0.4,26,25,27.6,44.2,54.2,90.9,102.8,153.3,23.6,89.6,110.2,242.4,81.1,72,65.2,95.2,160.7,109.4,52.5,25.7,26.2,33.4,17.5,17.1,16.7,16.7,37.6,20.4,21.5,22.9,26,23.1,25.7,33.8,18,24.1,41.8,26.1,26.3,40.8,48.5,34.5,37.5,26.1,25.1,21.1,34.6,5.2,50.9,51.4,32.1,27.7,37.4,57,24.1,17,18.6,23.7,17.9,16.8,25.6,13.2,18.5,13.7,12,10.3,12.8,16.1,15.1,11.7,10.9,15.1,15.1,15,14.4,13.6,12,13.1,13.6,16.3,19.2,13.8,11.3,11.2,11.5,13,24.8,26.1,58.8,71,8.5,31,92.2,26.2,124.5,37.5,53.3,127.5,113.6,202,90.6,322.4,362.5,10.8,82.4,73.9,50.6,228.7,26.4,298.3,231.6,7.2,84.5,72,107.5,680.5,185.6,87.9,129.1,93.4,138.6,154.3,40.9,184.8,68.3,170.2,221.4,373.5,47.7,359.5,158.2,112.9,96.6,360.8,37.4,264.4,280.5,316.3,344.6,45.2,288.5,229.8,25.3,147.4,297.2,88.1,47.8,33.6,110.7,38,27.5,19.7,18.2,36.1,29.9,34,17.3,20.3,42.1,20.1,22.1,60.3,9.6,60,147.4,228.1,68.1,27.1,21,26.7,10.6,13.2,12.1,16,9.8,11.3,19.7,24.4,15.3,19.7,34.6,31.3,44.1,26.7,62.3,26,29.6,35.8,24.6,23.4,14.1,25,19.8,18.5,26.2,14.9,46.1,307.9,77.9,111.8,51.3,61.8,40,14.4,88.2,18.8,134.3,13.3,17.4,11.3,23.3,27.7,49.6,58.7,34.9,46.8,45.1,61.3,30.7,29.8,38.4,36.9,56.8,373.3,381.3,167.3,34.6,19.7,76.1,86.4,145.9,105.5,47.9,48.7,49.5,36.7,32.3,30.6,38.3,42.3,42.9,34.5,41.8,31.2,33.8,33.1,28.7,33.3,34,36.6,32.9,33.3,70.5,431.3,575.2,47.7,32.9,31.8,41.3,32.7,35.9,33.7,34.2,27.3,26.4,30.5,31.1,26.2,28.3,36.5,25.9,27.6,41.3,33.3,51.6,76.4,82,373.5,39.1,35.2,41.2,33.4,29.2,28.3,22.9,33.1,37.5,20.6,21.2,62.4,35.1,185,69.6,66.5,58.5,9.4,99.6,92.8,131,68.7,86.4,33.7,34,26,36,29.4,18.1,9,9,28.1,20.6,8,31.4,47.6,28.4,62.6,55.3,35.6,38.8,327.2,48.9,57.8,50.1,49,18.2,68.6,53.1,65.8,58.7,50,332.2,224.4,171.4,193.9,768.4,79.7,61.7,67.9,70.7,68.1,114.6,100.5,63.5,68.2,61.8,63.4,71.4,79.2,84.6,66.8,111.7,314.4,69.2,249.4,27.3,194.1,173.9,191.2,64,94.2,63.9,72.4,7.4,37.1,37.5,35.1,50,24.9,37.6,35.9,34.8,33.8,37.6,35.3,35.8,37.4,69.6,216.1,170.9,56.2,172.5,332.5,46.3,158.1,65.2,124.9,42.5,34,36,220.6,56.6,45.9,32,333,130.2,227.3,254.8,43,39.5,31,25.1,24.4,22.6,26.6,24.9,20,26.2,30.2,35.4,37.5,38.9,30.2,27.2,29.7,35.6,33.6,33.6,38.9,39.5,33.5,32.9,32.9,32.3,41.5,54.9,74.7,73.3,122.7,27.2,71.1,363.5,229,35.9,212.8,375.2,154.7,97.7,54,56.4,54.2,50.2,44.2,60.7,39.4,50.8,35.9,45.8,119.6,56,60.6,32.3,61.9,49.3,44.8,17.2,27.5,57.3,63.4,64.1,38,53.6,9,45.2,69.2,25.8,42.8,77.1,101.2,48.2,17.4,54.1,56.8,387.4,174,150.2,65.2,56.8,68.4,75.8,77.9,63.8,12.8,62.2,17.5,53.2,0.6,66,105.4,143.3,130.4,361.7,149.8,170,304.6,65.1,201.5,125.6,146.2,70.9,67.1,65.5,75.4,51.7,29.9,15.4,53.5,143.6,563.5,198.7,94.4,160.9,196.9,73,375.5,352.5,32.6,436.8,363.8,515.3,94.2,86.7,73.3,23.1,32.4,10.2,34.4,29.2,31.7,31.3,27.1,28.9,25.6,17.5,10.2,19.5,26.2,24,27,24,21.6,23.5,24.6,22.5,30.3,15.9,29.2,166.6,89.5,60.6,198.9,413.3,75.1,33,24.7,41.4,353.2,155.5,232.8,28.9,21.9,100.3,66.1,52.1,107.9,312.3,56.5,87.2,23.1,62.6,55.6,0.2,72.9,13.9,84.8,78.2,125,44.1,29.4,41.9,131.3,27.1,80.6,147.6,49.3,132.2,119,53.6,14.1,270.8,296.4,35.5,10.9,7.9,287.3,30.7,28.6,32.5,36.5,45.5,37.2,58.3,48.2,43.5,36.6,37.7,27.5,44.6,82.3,69.5,34.5,37.3,75.6,71.7,71.4,70,75.6,67.5,73.1,73.7,78.2,70.8,70.7,41.5,34.1,71.8,70.6,58.8,73,71.9,51.5,21.8,100.9,92,104.9,54.5,47.4,20.4,179.8,200.6,115,70,96,103.8,94.9,95.3,57,55.3,116.2,32,188.2,84.3,89,76.6,108.5,448.7,150.5,278.4,257.2,22.9,92.5,129.5,60.5,50.1,104.7,42.8,117.9,95.7,86.9,90.7,97.3,69.1,80.5,67.5,239.1,74.5,33.4,61.4,223.2,110.7,40.8,44.6,45.5,60.4,65.5,91.1,64.8,125.5,100.4,93,123.3,28.9,28.8,46.8,128.8,727.2,65.9,191.9,119.6,65.4,127.8,60.3,107.7,90.8,44.1,94.1,14.2,154.4,151.1,122.2,186.9,186.8,396.2,175.4,0.3,173.9,23,218.9,240.6,430,0.4,87.5,83.5,92.9,63.4,47.2,138.5,46.6,82.2,79.6,126.7,59.6,146.9,60.4,71.8,166.8,166.5,31,84.7,25.2,43.8,73.2,114.4,142.8,91.8,233.5,486.6,563.4,107.9,380.6,459.1,292.3,64.5,604.5,254.2,413.6,52.7,92.2,109.8,26.8,15.1,65.5,80.4,70.4,110.7,103.4,185.6,185.6,17,468,360.4,187.9,181.8,99.5,151.2,58,49.5,159.9,34.7,383.7,505.2,190.5,189.8,223.9,93.1,89.3,246.5,264.8,109.3,84.8,71.9,41.7,24.3,46.8,64.4,57.6,72.6,164.3,37.1,284.8,200.1,351.6,177.6,176.3,183.7,173.9,173.5,171.1,318,73.1,29.9,159.7,153.6,200.1,206,85.3,62.4,412,432.3,323.6,315.6,167.2,169.5,3.3,141.9,103.6,63.1,111,117.8,232.1,25.8,166.4,131.4,98.5,387,56.5,67.1,23.9,49.8,57.4,75.5,71,66.5,200.5,108.1,59.2,60.8,36,35.4,37,35.1,38.8,44,77.3,51.4,38.9,22.6,22.6,86.4,61.8,62.8,59.7,170.2,68.4,50.7,34.5,36.1,5.1,39.1,38.7,52.1,42,54.5,50.7,44.1,69.9,58,64.2,314.3,54.4,55.3,54.1,55.8,57.2,63.3,71.7,112.1,143.4,51,26.9,130.7,48.1,183.8,73.1,262.3,123.4,71.3,41.3,29.7,22.3,89,149.6,31.4,125.7,157,151.1,151.7,152.1,156.8,105.4,140.2,234.9,219,99.6,109.7,86.3,74.7,170.7,188.4,90.1,237.5,178.5,128.9,162.8,190.8,41.4,34.8,24,155.3,149.6,55.2,98,44,188.1,113,181.5,112.7,112.3,123.5,352.9,174.3,215.6,128.6,93.4,239.5,174.2,120.4,109.7,168.7,96.9,189.8,229.4,234.9,259.3,214.1,31.3,130.3,157.9,107.8,45.2,41.4,99.7,44.5,26.6,2,86.1,174.6,182.2,17.8,33,126.4,197.8,112,71.3,202,34.9,39.3,80.2,27.2,47.4,20.2,76,75.1,77.7,70.1,105.2,57.3,55.9,56.4,59.6,62.2,66,79.2,48.3,134.4,144.4,386.2,472.5,7.1,427,276,407.5,513.5,250.5,43,510.5,182.9,104.7,109,53.2,56.4,99.2,94.2,68,34.8,32.3,59,70.8,74.2,71,69.2,76.8,64.8,67.2,413.9,934.2,56.6,94.6,46.2,61,45.2,61.1,41.8,63,98,57.5,59.8,66.1,66.1,120.5,77.1,154.3,159,320.8,141.4,139,175.7,236,16.3,88,51.7,33.8,42.4,158.9,230.4,35,131.4,446.9,42.4,162,104.4,73.4,88.3,87.3,131.4,131,21.2,63,43.7,49.3,85.7,58.3,62.3,55.6,53.1,50.8,62.5,65.2,50.3,177.9,113.1,97.1,38.2,23.2,20,20.4,17.6,94.2,39.5,222.6,147.6,136.6,193.7,157.6,82.9,32,60.3,372.9,333.2,101.3,94.7,87.9,137.2,13.4,169.9,81.1,79.9,118.4,41.3,44.2,45.2,48.9,49.2,37.7,87.1,63.4,60.8,70.4,71.4,63.9,49.2,96.9,63.1,21.3,47.6,10.4,89.5,68.9,44.3,91.4,108.4,172.9,169,109.9,112.1,52.1,39.9,94.2,5.7,144.2,105.8,56.8,57.5,62.6,71.2,87.9,49.2,34.5,511.3,33.4,90.1,142.5,130.1,147.8,37.1,27.1,82.4,42.5,63.4,21.2,134.2,33.3,208.5,105.5,105,91.9,90.1,98.4,46.9,45.7,50.2,29.4,359.2,86.9,356.6,126.1,81.2,58.1,71.5,68,65.2,36.6,41.3,114.6,122.7,214.8,433,269.1,42.2,35.9,197.8,137.9,151.6,126.1,15.3,44.5,22.3,193.7,119.9,164.4,79.3,71.9,78.3,75.8,54.6,66.8,106.1,85.4,90.9,28.8,91.1,380.2,1011.3,57.1,243,157.9,162.7,117.5,111.8,135.2,157.1,118.2,177.9,444.9,314.1,132.2,99.2,109.7,25.5,121.5,48.9,160.3,25.5,155.4,185.2,61.4,180.1,78.3,39.7,27.7,90.4,95.1,95.7,92,92.1,125.4,126.5,195.7,133.5,92,242,276.5,190,37.1,231.1,34.8,105,97.5,115.8,39.7,223.5,43.3,202.8,120.7,332.4,166.1,86.5,163.9,26.8,64.7,145.2,1111.8,30.3,17.2,50.8,890.2,30.8,1124.3,994.2,32.6,222.3,1137.8,56,324.2,181.1,283.4,39.2,241.9,228.2,44.6,180.9,220.9,91,114.5,122.7,113,177.3,50,27.2,113.9,23.1,40.9,26,171,31.8,198.5,248.6,15.7,230.6,54.9,189.7,526.1,3.9,491.5,43.8,170.6,73.6,18.8,156.8,18.3,31.8,45.4,158.2,20.4,166.2,126.2,21,54,44.9,35.6,67.4,88.3,25,76.4,55.9,31.1,47.9,64.6,61,94.6,69.7,81.1,92.4,39.9,420,49,357.9,82.1,499.7,192.1,51.7,59.8,69.9,49.2,57.2,50.8,51.9,51.6,61.2,56.9,57.6,75.4,54.8,61.1,75.7,87.5,287.4,77.1,160.4,37.9,246.1,20.2,125,115,78.2,81.3,101.7,54.1,62.1,65,72.6,82,97.6,72.9,53.1,134.5,330.4,145.7,87.6,207,59.7,74.5,147.3,286.5,34.9,227.5,16.6,257.5,359.5,154.7,61.4,191,198.3,36.7,307.1,189.2,152.9,141.2,206.6,166.6,107.4,111,60.5,56.6,112.8,194.9,189.9,5.3,356.8,140.6,151.8,25.8,322.4,95.4,330.1,76.2,61,124.5,63.4,28.7,72.7,55.6,53.7,36.7,2.9,50.2,70,258,52.3,33.5,35.5,130.8,120.3,36.4,214.8,36.1,256.6,102.4,107.4,35.8,126.1,114.5,117.5,100.6,13.1,117.9,358.7,12.1,367.1,122.2,21.5,141.2,64,87.5,56.3,36.9,7.9,66.6,35.8,99.3,63.1,43.9,90.7,104.7,93.8,14.6,171,157.6,137.2,272.6,23.7,217.7,428.2,13.6,57.2,385.5,112.1,282.7,139.4,67.2,13.8,119.8,10,43.2,183.8,143.1,29.7,24.5,66.5,43,184.9,115.3,13.2,23.6,167.5,48.2,36,155.6,50.1,12,32.5,130.8,65.2,65.8,175.1,59.9,101.4,107.3,84.6,58,6.7,147.1,185.7,38,281.3,314.4,165.8,13.2,158.2,67.6,46.7,207,207,163.3,111.4,26.4,86.4,35.8,50.1,97.2,63.5,7.6,62.4,72.1,23.9,53.3,78,105.6,92.9,84.6,57.8,23.5,64.8,62.6,31.1,325.4,104,221,171,26.2,57.8,184.1,187.7,52.2,83,258.8,167.3,130.4,50.9,178.9,131.5,55.3,29.2,264.8,93.4,59.2,42.9,93.7,98.4,135.5,92.2,10.5,43.9,151,302.4,207.4,20.3,99.9,16.3,160,31,42.7,71.1,92.4,167.7,47,48.2,47.2,39.9,109.1,122.8,116.4,94.2,41.5,42.7,51.6,22.9,132.6,9.5,153.9,28.3,133.4,327.1,47.5,248,142.7,109.4,44.6,154.3,151.1,47.8,84.4,125.8,41.3,274.1,34.1,23.2,9.6,180.5,48.8,16.8,24.5,234.1,265.3,270.1,77.1,362,19.9,496.3,295.5,52.6,94.3,31.6,26.1,235.5,253.2,236.9,250.6,38.2,396.1,54.6,155.7,58.9,40,7.9,9.9,142.8,54.9,33.6,102.5,51.1,79,75.8,82,110,0.5,198.3,127.9,76.9,92.9,123.7,91.8,291.8,13.3,84.5,125.8,24.7,45,202.1,11.7,148.4,113.9,124.1,84.7,31.2,57.9,180.2,251.3,18.1,162,338.4,380.4,57.4,52.5,321.4,192.9,58.2,252.3,210.9,134,42,203.2,23.4,150.6,162.7,42.2,76.3,89.6,13.5,84.1,93.4,49.3,75.1,95.7,89.6,47.3,25.1,362,73.6,51.6,83,90.2,58,267.6,268.6,57.6,167.7,58.9,213.7,44,59.2,59.4,53.1,32.8,423.1,40.9,27.1,55.3,213.5,163,33.8,34.4,1.9,47.7,14,33.9,419.4,332.4,146.2,299.5,191.2,34.8,58.4,234.9,39.6,185,61.3,50.3,26.8,130.8,51.9,30.4,85.9,62.5,393.8,60.2,59.8,132.7,113.4,155.5,52.3,80.6,118.5,6.4,185.9,103.7,125.4,299.9,102.9,384.3,29.4,18.4,59.8,371,28.1,53.4,126.4,164.8,155.3,37.4,27.9,81.3,36,23.7,344.6,24.7,108.3,62.8,46.3,145.5,52.9,52.8,34.7,244.8,194.5,61.1,58,11.9,407.7,515.1,496.7,248.4,12.2,236.2,111.1,34.7,17.5,329.7,604.7,392.7,298.4,195.3,340.8,46.5,112.9,347,120.3,43.6,103.7,222,115.7,40.9,108.1,131.1,103.5,119.6,40.2,105,112,52.3,122.3,91.7,153.2,23.4,156.7,42.3,12.4,21,129.1,496.7,143,79.2,236.6,20.4,194.7,14.2,206.2,77.3,9,86.1,74.2,19.9,77.8,65.9,89.6,63.6,72.6,138.7,87.9,35.4,184.5,235.8,18.7,224.8,137,18.1,343.6,170.3,170.3,184,48.6,131.2,131.2,118.7,62.6,0.9,63.6,140.9,71.7,71.3,32.3,104.5,102.8,78.6,340,16.4,78.7,152.9,188.6,63.1,10.7,12,187.8,169.6,119.1,41.1,182.6,29.9,58.9,34.9,66.3,72.1,18.2,59.9,85.1,83.2,74.2,187.5,35.1,156.3,98.4,40.1,66,56,36.8,11.9,50.1,18.2,38.5,85.4,137,67.8,129.2,24.8,395.1,13.8,49.8,84.4,454.9,145.5,396,143.2,354.4,73.9,31.4,177.3,58.5,157.8,310.6,130.7,310.6,85.3,32.4,91.7,6.9,123,411.7,161,201.3,100.2,32.6,62.5,140.1,169.2,120.3,117,184.9,29.8,158.6,209.9,189.9,60,118,77.3,36.2,238.9,488.2,142.3,431.8,282.6,28.2,198.4,44.4,291.2,58.2,6.6,31.6,41.7,53.5,50.8,45.6,32.7,33.3,26.6,43.9,52.6,54.4,47.7,23.4,48.8,54.2,40.6,50.4,54.3,54.7,91.3,11.8,73.3,46.6,5.3,37.5,120.8,31.4,67.3,29.4,36.1,87.4,76.2,29,18.3,51.6,53.4,30.2,49.6,46.7,59.7,42.3,43.3,47.8,39.2,62.6,42.2,38.3,144.7,34.8,105.9,78.7,108.5,25.8,21,27,197.5,36.2,28.3,92.4,64.5,29.7,28.7,28.7,32.2,49.4,43.8,21.7,12.7,36.1,52.1,26.7,183.3,282.1,280.9,66.5,93.9,82.2,18.3,62.8,72.2,98.6,162.9,102.4,463.1,26.6,36.4,291.1,147.3,483.3,535.2,238.8,130.9,7.8,121.6,377.9,177.2,187.8,74.9,173,42.7,26.6,27.3,86.9,34.1,64.3,157.3,28.6,87,504.5,363.7,58.4,33.8,30.4,262.9,189.8,19.3,180.5,80,51.4,43.9,152.1,72.6,124.7,51.6,74.5,49.5,67.6,39.4,116.1,22.2,16.6,34.9,23.5,22.2,26.3,30.8,24.3,28.6,32.3,26.9,28.2,30,26.9,26.3,35.7,33.8,38.6,41.9,69,38.9,26.6,64,135.9,131.5,155.4,30.8,142.2,44.9,52.7,179.6,173.5,151.5,118.4,71.7,266.7,72.9,27.5,128.8,91.8,247.5,45.9,64.1,179.9,43.7,72.4,97.6,72.2,110.2,33.4,88.9,90.9,45.1,404.9,177.1,180.3,48.9,49.5,37.9,34.7,36,35.9,30.6,31.6,37.6,41.2,33.2,33.9,119.5,39.7,43.3,53.4,36.8,36.4,58.8,49.3,157.8,273.5,189.6,29.1,283.9,91,92.1,32.7,46.8,51.5,44.4,49.2,45.5,68,53.2,38.8,37.7,30.3,42.6,50,47.7,41.1,48.3,50.3,52.5,53.5,41.9,43.4,49.4,51.1,51.4,41.4,47.7,47.3,49.8,50.5,184.4,144.2,153.8,29,85.1,115.2,85.7,51.6,48.1,62.1,95.7,88.1,48.6,63.7,92.9,500.7,175.3,25.5,294,301.5,136.4,73.8,185.7,211.2,29.2,42.1,24.1,354.2,129.5,498.4,300.9,138.2,82.7,28.9,62,33.3,73,28.8,14,19.9,36.1,22.3,59.2,38.5,106.4,128.8,42.1,23.3,58.7,36.5,130,74.3,62.3,58.1,27.3,48.2,43.7,46,40.1,99.7,26.9,30.6,73.4,69.1,60.9,56.8,79.4,94.3,86.1,99.7,79.8,86.9,103.4,97,8.1,18.3,27,300.3,116.3,186.1,181.4,61.3,98.4,113.6,121.6,100,24.4,147.3,76.8,42.6,12,73.6,31,30.4,33.2,40.5,45.2,22.8,38.2,7.8,95.9,46.6,40.6,108.4,63.1,50,50.9,106.2,41.8,10.6,13.5,88.2,279.3,1.6,186.7,146.8,47.8,93.5,31.1,30.2,39,32.8,54.5,45.3,39.4,28.9,30.7,31.9,26.8,34.7,37.9,62.7,53.2,50.8,46.8,45,36.5,37.9,45.8,43.3,48.7,96.5,63.5,11,44.2,62.3,18.7,363.3,499,500.7,96.9,22.8,174,112.7,93.1,544.1,272.4,65.2,71.2,102.8,82.6,67.2,55.5,44.5,45.4,43.5,41.5,58.7,71.9,79.4,64.5,55.7,71.6,71.5,102.3,26.6,194.1,21.5,72.2,69.2,60,58.3,49,42.8,35.6,36.6,38.3,18.6,57.4,52.4,62.9,64.6,64,69.4,79.6,92.7,73.6,87.8,41.1,44.5,70.4,65.5,72.6,98.7,26.9,7.9,7.8,11.4,9.4,9,7.6,9.5,8.8,13,13.7,16.8,13.7,16.2,12.7,12.6,10.9,31.3,10.8,68.2,115.3,15.1,368.5,239.3,49.8,212.5,149.5,282.9,123.9,127.4,174.3,93.9,103.1,48.8,44.8,122.3,125,54.1,97.5,193.3,147.5,24,170.4,179.9,41.6,130.3,79.2,26.7,38.1,61.7,80.4,51.7,49,49.5,49,112,81.6,52.8,52.6,97.1,23.5,30.5,29.6,43.1,5,36.7,37.2,26.4,44.3,97.6,69.9,71.7,37.5,208.3,30.8,104.5,104.6,235.2,219.4,54.7,125.6,34.1,142.2,76.5,74.1,29.4,65.9,84.6,22.6,89.4,86.1,86,76.8,65.3,64.8,23.7,23.3,6.1,263.6,29.5,139.7,57.5,19.4,93.6,145.8,79.7,132.2,166.7,97,92.4,129.7,107.4,89.8,81.4,119,117.7,42.8,22.1,73.3,73.8,73.5,106.8,12,274.1,17.6,12.8,21.4,95.7,74.4,41.1,36.5,160.3,45.4,25.7,29.5,52,56.9,24.9,66.3,80.3,94.8,72.1,45.4,46.2,34.4,110.1,80.5,332.7,18.2,20.2,18.1,32.3,32,66.6,56.1,98,59.7,35.4,41.9,60.7,228.5,211.8,90.6,105.6,91.1,109.7,24.3,9.2,7.1,72,83.8,65.7,85.3,84.5,70.9,70.3,53.2,52.7,32.4,28.2,63.8,130.7,252.7,367.4,39.2,32.1,34.7,107.1,87.1,18.3,32.9,111.6,111.1,44,122.7,88.6,88.6,95,83.5,40,104.1,154.1,86.2,99.4,92.1,73.4,141.5,36.6,70.9,92.5,220.8,46.1,74.3,40.1,64.3,81,89.4,48.4,5.2,21.8,114.6,40.7,94.3,113.5,48.9,133,40.5,265.5,153.6,99.1,79.5,52.2,53,70.2,124.5,124.7,40.7,221.9,241.3,268.2,7.7,40.6,123.5,80.6,210,230.7,2.5,86.9,139,42.6,37.3,81.4,76.8,35.5,39.3,133.3,111.2,157.1,138.6,120,48.1,87.7,83.5,35.1,61.9,78.4,168.1,262.7,26.8,216.3,429.8,234.7,233.3,41.2,33.3,16.4,104.8,113.4,270.6,85.5,91.6,83.9,54.8,53.1,47,95.9,78.8,45.9,15.3,110.1,89.5,87.2,29.1,96.6,119.9,17.2,290.2,31.4,98.2,37.7,92.7,27.1,33.7,72.6,41.6,28.1,30.8,76.5,76.6,104.2,25.8,70,54.6,111,156.9,247.4,70.4,86.9,52.6,37.6,33,56.9,54.8,53.7,29.9,76.6,53.7,55.1,54.7,106.4,24.9,42.7,75.9,71.6,53.7,53.2,32.7,28.7,28.3,35.3,72.5,72.1,84.7,98.8,248.3,125,85.9,9.1,50.4,31.4,54,20,25.1,50.8,65.1,52.4,46.8,62.1,82,84.3,86.4,89.9,158.4,28.4,120,97.1,74,62.2,72.1,75.5,87.4,133.5,147,53.3,36.4,219,46.5,20.4,83.1,129.4,60.5,455.9,244,247.6,176.1,293.2,102.8,205.5,167.1,117.4,104.7,44.8,133.3,102,105.5,34.5,54.6,168.3,9.8,36.9,132.1,217.7,230.9,95.8,281.1,118.1,62.3,337.9,34.9,160.1,140.3,58.2,250.7,326.3,110,12,40.2,32.8,404.2,107.7,93.3,398.4,255.7,53.5,123.6,17.7,56.9,12.8,27.9,24.1,152.8,53.4,30.6,132.7,51.6,49.3,49.4,99.1,93.3,92.1,153.4,124,24.1,26.5,294.1,462,38.8,24.5,112.3,12.1,136.3,287,150.3,257.7,103.6,125.4,84.4,38.7,101.3,61.8,13.8,57.2,107.4,107.4,85.4,37,58.7,27.7,117.3,69.4,92.9,64.2,57,70,38.7,31.8,106.6,39.6,73.9,73.6,93.2,98.5,74.2,121.8,88.5,106.9,94.5,12.9,40.5,236.1,35.3,66.3,40.7,49.3,60.4,154.8,162.8,67.9,60.4,95.3,94.4,69.2,38.8,51.1,57.4,71.1,48.2,28.4,72.7,72.8,76.5,88.7,82.4,76.9,103.9,103.8,39.9,106,76.2,23.1,35.7,109,45.8,49.2,71,51.2,0.3,20.3,159.6,26.4,44.4,133.5,13.8,152.5,98.2,71.3,144,71.2,70.9,50.7,33.3,28.6,33.4,79.7,29.1,56,83.3,102.7,75.5,38,35,90.4,87.3,94.4,108.6,96.2,114.8,397.7,52.2,54.3,65.2,31.9,30,125.1,143.9,78.8,65.5,121.1,85.7,77.7,62.6,39.6,4.9,23.6,41.6,86.7,70.5,52.9,53.5,53.4,29.9,23.8,36.5,51.7,71,53.4,66.4,85.6,153.3,53.1,76.1,90.6,14.6,64.5,29,49.5,70.2,30.5,37.6,26.1,129.4,27,51,34.1,125.8,103.6,133.9,126,33.6,256,269.7,119.6,46.5,62.9,53.2,190.8,78.1,90.8,75.9,44.6,91.8,149.1,136.4,92.9,287.4,207.2,294.3,174.1,79.6,50.5,200.4,123.3,58.9,61.3,77.6,75.1,69.6,85.7,23.7,68.7,74.7,50.6,54,83.4,120.2,120.7,23.7,36.1,66.5,255.5,100.8,65.4,127.6,109.8,141.3,97.1,44.9,54.6,48.4,59.2,30.9,28.9,91.4,81.2,60.8,40.2,100.4,91.2,95.7,91.6,76.3,29.1,89.8,105.5,78.6,69.8,61.8,83,59.5,40.8,197,19.6,143.3,42.6,1.5,311.9,187.5,163.6,251,53.9,3.1,86.8,196.2,163,124.6,50.1,128.6,134.2,104.6,127,98.7,124.8,74,74.2,65,37.7,43.9,77.2,103.8,119.7,162.9,32.2,151,211.5,237.5,161.3,81.5,63.1,145.8,88.4,55.2,89.9,64.5,35.9,60.8,55,90.8,69.8,54.7,53.1,90.7,52.7,55.9,108.4,187.9,62.7,287.7,213.4,24,2.3,13.9,13.9,163.7,108.3,90.3,95.8,15.8,149.2,204.2,145.9,30.7,183.2,104.4,91.7,32.3,74.9,80.5,140.6,21.6,42.9,57.9,53.4,49.9,25,38.4,66,70.7,37.9,44.7,24.9,19.6,73.5,51.9,92.1,86.9,92.1,70.2,70.5,68.7,84.1,22.5,74.2,74.3,55.3,50.8,71.3,50.6,98.9,24.1,6.3,27.7,13.9,41.1,67.4,93.2,106.9,153.5,206.6,28.5,27.6,87.3,71.5,55.3,36,85.4,59.2,59,34.5,75.7,61.8,54.2,37.9,24.2,5.4,38.6,17,38.1,62.9,24.1,65.6,86.7,81.6,82.3,100.5,99.6,91.5,257.6,444.2,216.6,143,71.3,34.2,71.2,75.3,61,119.3,36.1,30.3,33.9,12.7,36.7,6.4,76.2,94.6,95.9,100,95.1,116.3,94.4,89.8,82.8,90.8,97.3,24.1,2.6,70.9,52.7,93.6,111.5,89.7,107.8,88.2,71.3,89.7,87.2,110.8,27.8,60.4,107.8,125.6,126.1,56.9,63.4,24.6,140.6,181.2,124.6,205.6,146.3,142.4,106.3,110.2,68.5,88.3,89.7,59.5,118.6,74.5,63.2,51.4,83,53.6,51.4,54.6,54.3,63.1,84.6,81.7,57.5,24.8,43,52,46.3,50.9,24.1,26.7,36.7,49.1,30.2,32.4,47.8,51.9,64.3,78.4,76.9,79.4,56.8,42,35.8,61.7,14.3,192.4,143.9,0.3,212.6,181.6,39.8,15.1,70,160.4,74.1,54.7,53,108.2,87.7,96.1,65,61.2,109.5,106.6,106.5,87.3,111.1,92.5,53,182.2,40.6,109.2,151.8,19.2,52.5,93.4,109.6,73.3,54.6,107.7,91.4,136.7,44.1,90.7,111.6,108.3,91.9,90.1,91.5,90.8,91.1,89.3,90.2,55.2,37.6,71.1,165.4,292,198.7,12.3,82.8,125,4.7,31.6,181.3,161.5,66.4,31.3,16.6,40.8,161.9,112.8,169.6,64.8,123.8,12.1,15.3,153.8,215.3,103.9,75,88.6,89.6,57.8,100,161.4,146.8,73.5,16.7,95.7,89.3,111.2,81.1,116.3,6.3,39.6,88.1,55.2,31.3,45.4,95.4,111.6,265.8,158.4,50,128.7,134.2,90.6,88.4,52.1,34.5,6.3,34.8,143.4,108.8,123.3,54.9,37.2,89.3,91.8,80.7,59.5,70.4,74,18.8,53,125.1,72.1,89.3,107,68.3,19.7,74.4,71.8,107.8,69.7,72,55.5,70.6,70.2,56.4,56.5,33.8,53,87,55.4,70.6,70.9,73.7,89.3,67.6,92.5,43.4,47.8,106.2,107.4,195.3,57.9,51.8,107,54.5,59.9,64.2,49.2,78.4,119.7,101.3,100.9,71.9,206,151.5,73.5,74.7,87,58.8,41.7,148.8,143.4,142.9,115.3,190.3,144.1,124.9,123.3,35,56,125.1,125.1,161.3,108.6,106.8,144.6,91.4,105.2,90.1,107.5,127,15.6,32.1,60,123.2,108.8,85,23.3,88.9,198.7,121.7,115.8,64.9,69,28.1,32.4,29.6,79.9,60.7,52.9,53,54,40.9,6.6,23.8,22.1,48.9,38.6,17.1,2.5,40.4,3.9,80.5,62,25.1,53.7,48.4,90.5,58.1,55.1,51.8,54.3,69.5,45.6,34.3,19,10.4,58.4,44.9,237,150.2,80.1,123.4,41.1,65,48.4,33.2,87.5,158.9,72.3,68.3,53.7,34.2,21.3,33.6,39.2,51,486.8,204.2,47.5,84.9,51.9,55.7,50.1,52.2,89.7,53.3,34.2,68.9,53.8,36.4,87.5,69.7,68.3,37.7,54.7,87.6,53.2,52.5,52.4,37.9,51.6,21.6,14.3,34.4,54.2,87.5,54.6,70.9,13.3,122.2,99.6,56.1,71.2,53.9,34.6,35.9,54.5,35,37.2,32.3,2.2,36.7,35.7,28.2,25.7,36.3,54.7,43.6,35.2,74.6,101.6,172.7,143,16.4,146,178.7,17.7,17.6,89.6,222.3,76.1,82.6,8.7,87.6,104.6,163.3,121.3,63.6,62.6,48.5,154,128.9,24.6,501.3,186.1,194.5,114.2,32.3,390.1,61.3,27.6,70.5,59.4,51.3,55.3,122.9,112.6,27.7,5.8,53.3,33.5,41.4,12.1,71.4,60.1,59.2,110.8,125.5,124.4,42.1,38.6,48.8,31.6,32,32,32,10.4,14,7.6,22.4,9.7,22.3,9.7,32,32,32.1,35.4,76.7,109.5,100.3,85.6,137.3,146.3,47,92.4,36.5,20.7,22,70.3,95.4,128.7,69.3,68.1,52.2,54.8,28.6,28.4,67.8,104.6,24.8,89.7,44.4,40.3,53.7,54.4,40.9,51.8,38.6,43.3,26,66.5,64.6,99.2,136.8,167,69.7,68.1,69.4,143.4,34.3,54.9,54.4,68.7,62.1,14.6,49.9,140.6,86.2,76.8,71,66.2,53.6,40.7,47.1,90.6,141.2,128.7,14.9,70.6,67,39.9,40.8,49.2,52.3,41.8,52.4,54.6,52.3,49.4,51,44.9,46.8,60.8,35.1,71.1,112.5,114.5,254.4,64.1,72.1,70.9,65.9,47.7,54.5,65.4,57.3,79.9,79.8,106.1,81.2,182.5,182.6,312.3,113.5,92.3,48.4,49.7,61.8,52.1,39.9,40.5,83.4,25.1,28.3,22.4,95.3,60.9,34.2,243.1,351.9,114.7,1.3,51.1,55,33.7,33.8,28.4,28.4,35.8,35.8,53.8,34.8,54.9,35.6,35,36.4,60.4,47.1,59.8,18.7,46.9,36,40.9,65.7,20.2,21.3,0.8,48,53.5,59.3,48.2,59.6,36.8,34.3,31.6,11,23,34.1,38.7,35.9,69.9,41.6,57.8,29.8,54.2,18.7,35.6,34.8,23.6,7.7,22.4,22.4,27.9,18.6,40.7,72.9,9.1,80,108.8,161.8,35.2,41.7,67,12.2,100,216.3,48.8,57.8,50,25,15.1,50.4,35.3,40.3,34.7,31.8,23.4,90.9,30.8,52.4,91.5,53.8,53.8,40.7,54,49,36.1,36.5,38,33.6,40.2,36.4,39.9,14.8,35.5,54.6,83.7,53.9,41.6,48.4,36.1,35.5,76.9,5.6,139.8,125.5,47.3,41,30.1,37.1,41,42.2,10.7,91.7,143.5,133.4,76.2,8,81.9,42.5,64.7,54.2,58.6,53.8,66.7,71.6,46.9,6.4,53.6,54.4,59.1,48.9,53.8,58.4,48.7,58.8,38.9,8.4,59.5,71.5,71.9,103.1,94.4,81.4,18.9,44.7,46.9,54.8,58.4,38.1,54.3,49.3,36.2,36.8,22.4,13.7,35.6,36.8,36.4,36.2,35.1,42.1,52.4,54.9,49.8,35.3,42,61.1,24.4,5.3,198.8,100.6,76.6,19.4,11.9,59,72.9,44.6,74.8,90.6,59.3,122,66.5,8.1,46,57.2,42.2,35.3,49.5,58.2,47.4,43.5,18.1,92.2,36,67.6,55.5,105.4,38.8,48,39.6,46.4,39.6,53.9,51.5,46.9,68.4,130.1,27.4,53.7,35.3,35.6,32.5,54,52.6,40,39.8,40.2,63.9,60.5,81.8,79.6,105.8,107.8,108.7,116.5,69.3,68.8,53.3,75.2,99.5,34.2,35.3,39,47.3,52.7,41.3,46.6,86.4,87.3,104.7,57.3,46.3,69.8,68.4,70.9,141.1,137.9,98.8,76.1,47.3,40,50.9,47.5,60.6,58.2,67.1,112.1,156.6,98.8,36.8,36.9,19.4,19.2,45.4,34.5,53.3,68.2,33,183.1,0.1,17,4.7,26.6,180.9,96,108.1,65.8,57.7,66.2,83.6,73.1,118.7,11.1,12.3,111.6,69.8,120.4,29.7,29.7,33.6,52.2,27.4,25,26,198.9,13.6,92.6,55.7,75.4,94.5,101.9,75.4,90.9,73.2,33.5,47.9,57.5,1,59.5,110.1,98.4,153.2,46.4,65.2,81.7,130.2,144.7,238.9,96.6,113.8,99.6,110.9,81.1,76.8,131.8,89.7,70.1,78.6,67.6,82.9,93.5,68.4,77.2,31.9,110.2,132.9,61.1,92.3,36.5,156,115.3,19.2,23.7,35,141.1,180.9,67.6,45.9,40.2,35.8,30.4,32.1,137.5,140.6,137.7,53.8,41.5,49.3,41.1,33.3,57.1,42.8,13.1,36.8,48.9,35.1,38.4,52.8,62.6,45,30.6,32.9,33.2,25.2,30,36.6,35.8,37,55.2,44.1,33.5,35.6,45.9,48,43.2,39.8,42.1,64.9,37,40.9,91.3,90.1,85.8,58.6,48.7,47.1,48.5,49.1,54.2,9,50.9,193,53.8,52.7,42.6,56.5,46.7,49.9,40.6,42.4,32.2,33.2,35.7,36.4,35.8,36.9,41.2,47.5,109.9,33.4,44.1,36.4,36,35.4,30.5,37.4,40.1,36.2,31,40.4,68.2,70.9,36.4,89,70.3,37.8,77.1,84.9,45,52.8,46.8,35.5,35,36.4,35.3,74,93.2,162.7,47.9,44.9,49.4,69.1,68.9,55.6,34,48.3,29.7,42.8,23.8,27.7,167,41.7,51.3,41.8,49.8,35.1,38.3,42.4,49.8,107.4,0.2,14.5,1.8,47.6,92.5,38.5,1.3,56,56.5,78.5,31.5,13.3,161,45,25.8,19.1,109.6,30.1,95.2,60.4,63.9,42.1,26,57.8,128.8,9.9,133.4,39.4,18.5,5.2,35.1,21,37.2,31.1,40.5,28.9,29.4,32.8,66.6,37.2,89.2,96.7,88.5,157.4,50.1,17.7,82.5,198.5,73.4,88,73.7,72.6,68.7,34.2,41.7,49.1,54.9,25,83.5,17.8,14.4,43.6,32.5,84.3,27.9,37.5,50.1,47.2,46.7,43.1,39.5,37.6,131.2,44,70.2,29.4,0.9,73,90.4,88.6,58.3,49.1,73.3,37.6,123.7,38.3,76.1,39.4,157.8,309.7,100,72.8,1.9,248.2,61.8,36,39.3,39.3,43.2,68,34.4,42.2,56.8,87,68.5,89.6,118.8,82.3,55.7,76.5,0.1,71.3,77.7,88.6,85.3,90.2,196.7,249.2,87.5,87.6,19.5,56.6,22.2,51.9,63.7,49.2,145.1,73.9,61.2,16.9,41.7,50.1,52.6,61.6,193.8,56,12.5,74.8,45.3,61.8,55.1,45.9,58.7,70.9,40.4,73.3,27.8,104.4,93.9,50.1,41.2,12.3,42.6,40.1,49.5,39.4,40.8,36.3,25.1,41.7,48.3,31.5,33.8,24.4,72.3,46.4,43.3,36.4,39.6,20,63.1,54.2,36.7,42.6,32.3,47.9,37.9,36,40.2,25.9,27.8,36.3,41,41.3,23.2,24.2,20.5,21.4,22.8,24.5,25,25,25,25,16.8,24,23.9,23.9,20,20,20,177.2,20.5,83.9,97.5,137.3,58.8,2,64.5,27.1,64.2,53.3,36.6,51.7,59.1,124.4,56.5,65.7,43.3,18.2,20.5,33.7,29.2,39.2,53.3,36.6,35.3,72.8,49.1,17.4,75.6,38.2,58.3,84,8,46.6,52.7,34.9,19.4,20.3,32.8,34.7,35.3,30.8,17.4,16.4,42.7,34.9,36.8,89.3,36.5,36.8,38,33.5,49.4,39.9,33.5,31.9,29.6,23.9,30.5,35.5,51.4,47.9,58.5,71.8,6.1,212.6,92.3,20.1,49.3,22.7,26.8,103,6.2,27.1,19.3,66.9,79,21.5,2,41.1,108.9,91.1,64.4,39.2,33.6,34.3,33,47.8,39,38.5,42.9,33.4,59.2,44.2,41.9,41.4,55.6,34,83.2,72.2,73.6,72.5,72.5,65.4,65.3,51.2,40,34.1,32.3,31.4,24.8,37.7,21.3,29.1,37.1,69.4,63.5,19.9,44.9,32.9,33.6,37.5,39.1,35.8,32.5,44.4,36,32.9,35.7,36.3,35,34.2,42,41.8,66.6,7.7,80.4,77.9,41.7,102,25.9,63.4,47.7,28,27.7,44.7,38,31,78.3,52.8,53.8,57,54.2,76.5,52.2,29.4,78.5,50.6,21.7,46,55.1,40.4,67,31.7,1.1,35.1,50.3,41.5,38,112.3,101.7,58.5,17.5,32.1,58.5,47.9,41.2,29.4,37.3,50.1,10.1,158.6,14,71.2,59.2,14.2,33.1,41.2,39.6,34.9,46.6,44.9,42.7,37.2,106,96.3,48.7,6.3,34.4,37.8,26.2,42.2,22.4,27.4,22.4,35.7,32.8,33.8,34.3,18.7,18.6,20.2,18.6,28.9,32.8,25.8,3.9,5.9,11.8,7.2,19.8,25.1,29.1,20.4,17.2,23.5,30.9,43.2,77.7,78.6,106.7,72.8,35.2,37.9,44,36.1,33.8,28.1,23.8,24.9,23.4,25.9,22.4,24,23,27.4,21.7,24.2,21.6,28.2,27.4,23.1,23.8,25.4,18.7,24.6,33,35.4,40.8,29.9,33.2,58.7,35.2,51,70.1,74.8,80.1,23.8,58.6,48.3,26.7,31.3,31.2,57.3,28.5,28.4,47,41.1,10.2,70.8,144.1,73.3,75.1,68.4,72.9,111.5,106.4,118.8,142.5,143.1,196.8,97.7,43.6,82.2,11.8,177.4,138.4,142.3,146.1,70.8,90.2,54.1,104.1,93.5,89.4,70.7,47.5,42.3,65.1,54.5,76.4,70.5,48.9,42,98.9,58.6,59,64.6,69.9,58.6,84.6,94.5,107.1,158.4,72.8,88.3,142.1,120.1,112.4,106.9,52.1,48.1,72.6,58.7,70.3,72.4,71,107.7,119.8,55,58.3,53.6,66.2,59,72.1,52.3,63.8,51.3,48,41.2,40.7,59.4,69.4,48.3,48.9,94.9,58.6,45.3,146,108.1,48.3,98.2,7.7,70.1,59.5,73.2,149,120.4,71.5,145.5,86.2,145.1,138.2,96.4,50.1,53.3,40.1,27.5,27.1,53.3,35.4,37.1,37,34.3,35.7,36.6,24.7,22.6,53.7,36,71.5,131.3,127,106.7,87.5,52.7,70.2,81.9,40.4,35.3,47.4,53.4,35,41.5,39.6,30.5,71.1,48.4,41.2,48.9,53.7,39.5,49.4,53.3,70.7,59.5,48.1,55.1,58.9,48.9,52.7,78.5,53.5,53.3,69.6,27.5,47.4,54,54,66.6,67.1,98.1,37.8,77.1,174.7,25.9,72.7,25.9,31,48.8,42.7,29.1,58.7,48.5,58.7,47.4,54.9,34.9,54.3,74.1,66.2,52.7,41.3,64.8,36.5,62.5,28.7,91.9,102.7,91.8,90.1,50.8,51.6,76.2,40.4,47.6,42.9,42.8,71.4,70.6,63.4,35.3,83.7,51.2,102.7,58.6,83.4,58.9,209.2,88.2,76.2,91.4,93.3,32.3,130.9,53.6,55,53,67.8,120.1,87.2,68.9,128,25.1,26.5,97.2,41.3,46.9,50.1,119.9,15.4,51.8,30.5,44.7,33,63.4,43.2,46.5,52,29.5,81.1,65.2,84.3,84.8,70.6,40.7,53.5,60,54,74.3,71.6,55.5,85.2,87.7,68.6,61.6,70.1,70.5,69.1,84.3,96.4,220,73.2,24,87.2,90.2,52.2,46.8,37.2,95.3,87.2,90.4,51.5,55.2,46.5,96.4,136.1,149.3,89.9,108.7,177.5,175.2,334.8,39.3,64.6,38,40.7,44.6,43.2,48.7,37.8,47,74.6,63.9,62.2,51.7,66,33.2,40.4,35,33.7,29.9,34.6,23.7,43.2,40.6,53,53.9,53.1,39.3,47.4,36.7,53.7,65.7,41.6,70,34.5,53,100.8,87.7,73.4,128.9,21.9,44.4,64.8,105.8,56.9,66.1,110.8,47.1,69.3,87.9,74.9,47.6,52.7,52.3,57.7,71.1,49.4,37.5,34,54.4,44.8,60.1,70.3,78.6,34.1,98.9,105.6,121,63.4,8.4,53.9,36.4,56.3,56,56.2,53.8,66.1,127.4,132.8,191.9,180,252.6,241.8,66.3,55,73.1,75.1,12.7,9.1,53.1,55.1,85.6,89.3,41.9,71.9,67.3,53.5,37,35.6,25.1,70.3,50.1,41.3,35.6,37.5,53.5,102.4,91.1,163.2,9,85.3,155.2,12.5,101.7,88.3,56.4,123.3,91.4,10.3,58.6,70.9,48.8,41.4,83.4,53.8,54.6,53.7,59.8,53.4,66.8,40.4,47.8,54.9,54.5,53.2,53.7,88.7,90.3,90.2,57.8,74,9.4,47.5,43.9,88.7,108.8,65.1,67.5,79.4,55.7,78.4,121.6,57.7,54.2,70.9,69.9,110.3,106.4,94.7,75.2,18.8,67.7,69.5,87.7,87.8,77.9,68.7,13.9,46.9,26.6,21.1,41.6,50.2,58.4,54.1,52.8,74.4,45.8,76.4,78.3,102.6,110.2,121.7,54.2,54,72.7,60.4,55.6,64.5,89.1,79.2,71.7,179.6,107.4,90.4,35.8,36,67,38.1,24.1,40.1,33,35.1,39.7,83.8,161.1,105.3,34.4,29.2,47,35.7,33.4,50.5,73.4,95.4,88.3,107.2,215.1,107.4,122.7,214,76.2,37.6,37,72.8,83,73,96.2,94.4,138.1,143.3,53.8,72,72.7,97.6,81.9,84,87,87.6,64.5,52.9,41.6,24.8,42.8,48.6,40.5,85.5,58.7,54.1,85.3,106.9,35.5,307.6,89,106.6,126,130.6,193.3,27.1,83.4,85.3,91.4,67.9,43.7,54,48.2,50.9,36.5,38.7,53.6,48.9,26.1,66.4,32.4,63.1,48.8,105.9,115.5,35.1,48.8,54.4,62,146.9,148.8,205.2,20.6,248.1,215.3,70.5,91.2,48.3,54.5,52.9,0.7,72.8,141.6,153.6,163.3,116.5,24.7,103.9,125.4,183.8,155.4,93.9,65.9,76.9,54,35.5,70.6,53.6,45.1,45.7,33.6,141.5,141,278,26.1,139.4,217.3,81.5,122.5,141.9,33.5,14.3,33.9,135.7,395.4,283.6,209,200.6,195.5,107.3,104.2,36,40.9,58.7,110.2,123.8,43.8,84,111.6,185.8,1.7,7.4,35.8,56.9,84,220.9,358.1,620.7,141.2,210.7,76.4,78.8,60.8,88.4,86.8,78.9,91.6,49.6,50.5,43,61.4,72.4,85.9,90.3,108.1,142.7,252.8,89.4,112,48.7,36.2,77,84.8,102.3,79.2,80.6,112.2,170,25,42.2,28.6,31.9,34.5,24.1,24.3,30.1,25.6,22.9,35.5,50.2,54.7,61.3,48.9,20.6,25.1,41.9,31.2,25,23.5,63,28,27.6,38.3,38.5,39,55.3,65.3,70.7,52.3,82.8,192.2,213.5,31.6,314.6,46.9,58.8,61.1,79.5,40.7,43.9,62.6,125.4,109.7,61.6,45.2,27.8,89.6,114.5,160.4,102.2,180.8,130.9,132.8,118.7,53.8,69,108,130.1,9.1,165.5,98.6,59.5,52.4,70.3,74.7,183,7.3,78.7,90.9,106.8,83.3,77.4,53.4,66,112.4,192.2,181.1,24.9,78.1,96.8,83.2,57.6,145,499.2,566.6,12.7,266.2,279.3,72.4,58.7,67.1,68.4,35.9,153.4,124.4,56.9,63.8,26.7,50,103.4,80,34.4,151.6,182.5,382.4,170.4,12.6,387.5,569,288.3,142.8,140.3,53.7,39,183.7,30,55.3,127.7,125,161.2,39,171.4,18.5,172.5,121.9,121.2,2.5,122.6,59.2,67.4,88.6,89.6,107.4,112.9,124.8,13.1,153.6,164.5,128.4,174,130.3,277.6,411.4,17.1,18.6,91,176.3,151.4,213.2,9.1,24.6,193,215.6,14.1,84.6,296,50.7,110.7,142,222.2,293.3,107,45.4,47.4,196.8,69.7,70.6,10.7,31.1,32,47,26.1,125.2,162.2,100.5,125.2,39,97.4,102.3,18.6,18.3,14.9,32.1,68.2,35.7,40.7,8.5,13.2,32.7,68.1,51.7,52.8,53.4,47.3,49.8,50.4,77.9,72.5,64.9,58.1,62.5,71.4,87.2,33.1,113.9,48.2,73.2,121.2,153.8,186.6,100.2,30.6,30.6,47.4,40.8,34,53,39.1,49.4,49.4,43,43,42.9,43,42.9,42.9,43,43,42.8,43,43,42.9,43,43,42.9,42.9,43,42.9,43,43,49.2,156.1,22,36.3,105.1,37.5,93.3,182.4,117.3,42,162.9,179.6,179.6,196.2,278.9,279.4,142.9,302.4,160.9,161.8,159.2,190.8,18.1,356.2,103,70,130.3,180.5,175.3,31.2,72.2,190.2,2.8,140.3,195.2,174.9,43.1,112.6,182.2,234.2,296.8,198.6,162.5,175.2,133.7,101.9,38.3,102.5,103.8,59.3,53.7,42.7,72,81.9,39.8,56,35.3,69.3,75.1,107.2,69.6,58.5,52,53,42.2,45.5,31.2,43.2,36.6,88.5,84.5,82.6,175.5,137.8,93.6,28.6,39,230.3,97.9,94.1,111.5,43.4,82.3,53.7,78.7,55.2,69.5,114.3,63.8,68.7,8.2,34.5,52.5,56.6,52.5,38.1,56.9,74.4,59.5,52.2,77.2,77.2,69.2,70.4,133.2,96,272.6,81.3,80.5,68.9,66.2,77,61.8,65.7,63.7,71.4,75.6,50.4,62.2,61.5,38.4,97.3,77.6,120.6,150.3,117.4,89.6,73.6,91.4,90.5,89.7,93,92.7,90.7,91.3,139.1,115.5,59.5,68.9,72.5,73.7,71,58.3,88.7,130.5,71.9,59.5,49.9,65.3,129.1,107.1,125.4,213.2,213.7,169.5,115,74.4,74,74.3,74.2,74.4,74.2,74.2,74.3,74.3,74.3,74.2,61.3,333.6,33.3,364.7,35.5,64.7,211.6,70.2,51.2,46.3,89.3,76.2,117,232.3,109.5,93.4,140.4,141.7,89.2,91.8,103.3,78.9,25.9,36.8,113.9,125.3,127.8,207.2,206.6,87.4,59.6,23.3,76.6,40.1,38.6,68.9,52.8,35.5,53.4,75.1,5,135.4,180.1,190,59.3,68,38.7,165.9,69.8,145.9,74.7,177.6,36.5,36.4,100.7,18,98.2,106.5,179.3,131,182.1,138.2,250.7,170.1,313.3,147,152.4,23.6,102.8,389.6,291.2,146.2,100.3,143.9,25.7,104.7,20.4,53.8,54.5,51.5,44.3,54.8,60.4,55.4,57,54.3,42.8,44.5,49.3,39.6,39.4,57.8,48,55,74.2,71.4,48.4,27.4,73,72.1,33.1,29.8,31.6,42.5,47.3,47.2,86.7,75.3,77.7,68.2,53.9,78,84.4,71.5,28.2,48.1,50.1,55.1,105.3,49.1,69.2,83.3,44.9,103.1,29.1,84.2,46.1,18.4,5.7,54.3,143.7,9.8,16.9,4.4,141,105.2,77.5,113.9,81.8,160.3,141.8,67.2,88.9,88.1,178.4,179.9,99,94.8,58.7,47,37.1,86.7,52.7,52.4,55.5,55.9,69.5,67.6,37.8,51.8,55.9,53.3,85.8,73.4,107.5,120.6,79.1,130.4,168.1,1.3,63.5,89.9,335.4,104.8,26.5,192.3,300.4,130.7,125.9,8.7,8.9,7,78.5,239.6,255.2,23.3,21.3,200,55.7,106.6,140.3,185.8,60.4,106.5,81.5,54.2,173.3,119.3,119.5,181.9,184.9,64.1,162.2,109.2,164.8,50.6,100.7,37.9,142.7,120.1,56.4,64,54.8,12.6,22.8,69.9,35.3,31.7,24.2,4.3,37,49,50.5,42.9,33.4,50.8,61,18,55.1,25.8,21.6,13.5,45.9,47.6,43.3,68.8,44.9,78,35.5,54.2,48.9,38.4,99.1,124.9,58.5,67.4,56.1,73.9,1,36.4,67.4,0.5,21.2,53.9,68.1,54.1,106.2,97.4,9.7,47.7,106,30.5,42.8,68.7,31.9,35.6,40.7,33.7,38,38.5,154.3,47.5,47.6,72.6,55.9,35.9,57.4,64.9,31.5,53.3,32.4,38.6,55.3,104.9,92.5,88.4,108,136.5,41.3,90.2,56.3,106.8,70.2,37.2,69,0.7,74.8,76.8,33,50,55.3,54.2,53.7,23.5,48.7,50.1,33.4,21.1,2.2,74.2,13.4,2.3,53,36.7,16.2,1.9,37.8,57.6,310.1,96.1,76,52.2,34.7,38,55.4,105.4,76.6,51.5,20.2,5.7,59.4,57.4,69.9,75,94.1,43.9,132.1,62.9,64.8,32.6,56.3,60.5,68.6,92.3,139.4,147.4,88.1,2.8,129,143.7,279,156.8,107.3,218.2,19,93.6,54.1,82.1,37.9,209.6,22.2,66.9,31.1,11.3,12.1,11.4,13.2,16.2,30.6,153.4,21.9,16.7,14.4,12.2,12.3,12.9,18.6,16.2,18.1,11.3,10.9,20.3,32.4,77,44.2,25.4,22.9,61,26.9,54.1,18,8.2,58.5,63.7,118.1,84.5,95.7,78.4,99.1,66.8,40.8,22.6,49.3,51.5,32.4,79.6,67.2,38.9,46.3,46.9,6.1,34.7,49.1,34,21.1,24.9,26.1,38.2,34.7,36.7,38,67.9,53.6,37.1,89.5,100.5,7.7,10.8,75.9,127.7,126.8,141.4,143,158.1,128.1,149.3,480.4,14.5,31.5,30.7,62.8,66.1,29.8,34.1,34.4,24.8,59.2,106.8,79.3,42.6,84.2,158.8,101.7,144.8,10.7,34.8,185.1,191.6,278.1,40,225.4,194,196.5,72.1,71.4,145.1,54.4,65.7,18.6,63.5,67.9,26,74.4,106.1,135.8,199,62.9,99.7,40.8,132.3,44.7,43.3,32.8,128.4,16,13.7,17.4,81.4,122.6,51.3,49.4,34.3,22.6,17.3,24.9,23.4,18.6,19.2,18.7,20.3,25,25.8,24.3,23.9,30.9,25.8,20.5,24.9,30.3,43,26.1,30.5,7.4,31.5,28,22.4,25.4,10.1,9.7,54.8,28.8,11.8,85,70.5,45.6,37.3,67,87.3,61.7,53.7,37.9,40.4,78,26,35.3,102.1,124.3,82.8,36.4,54.7,52.9,57.8,112.9,50.7,48.3,72.5,63.8,54.8,27.2,76,75.7,104,102.8,37.2,243.2,16.6,102.8,107,105.3,17.6,133.5,38,139.6,143.4,65,71.6,150.3,84.7,95,92.9,110.4,83.4,93.8,147.7,24.4,110.4,22.2,53.4,36.5,172.6,170.9,53.9,155,30,129.9,55.1,77.6,38.5,39.4,23.5,25.2,30.8,30.8,30.7,30.7,30.8,30.8,30.8,30.8,30.7,30.7,30.8,30.8,30.8,30.7,30.2,30.9,30.9,31,30.7,30.7,45.8,55.7,81.3,48,80,57.7,58,58,56.9,47.7,47,75.6,109.2,73.6,130.9,110.3,144.9,56.5,20.1,70.3,40.4,37.7,62.7,15,25.8,55.1,27.8,67.2,36.2,72.2,70.1,53.9,52.8,34.3,105.9,105.2,89.4,140.2,242.1,163.5,162.9,82.5,4.1,113.5,77.4,110.9,95.3,74.1,67.6,150.1,124.4,157.4,106.8,108.1,14.7,145.7,146.3,40.6,49.6,71.7,90.2,189.9,162.8,142.7,182.9,120.2,40.8,139,93.9,14,87.8,95.8,140.4,85.6,88.3,111.8,126.4,103.8,233.6,130.7,103.1,103.5,81.1,72.6,60.1,64.2,71.4,52.3,59.8,78.8,75.2,81,37,34.9,51.8,51.5,47.8,48.5,68.5,15.2,33,22.9,27.1,18.9,9.7,30.5,30.7,30.6,30.7,30.6,30.7,30.6,30.6,30.6,30.7,30.6,30.7,30.6,30.6,34.8,35.3,69.9,107.4,56,112.4,52.2,67.5,101,67.4,58.2,154.5,126.5,133.9,213.2,199,50.4,81.1,6,75.5,42.7,26.9,44.9,46,52.2,16.6,45.3,37.5,7.7,20.8,41,31.7,53.2,42.9,38.1,40.3,29.3,36.5,39.7,42.9,43.8,51.3,40.6,51.1,63.3,35.7,19.1,74.3,53.6,57.9,61.2,96,106.4,89.8,47.8,59.5,34.9,41.7,50.4,47.1,47.3,56.3,44.5,55.7,29.5,59.6,42.9,37.7,49.8,5.9,61.4,16.8,22,66.4,68.4,53,40,36.7,66.3,52.1,46.7,58,41,43,49.8,31.5,86.6,79.9,138.2,246,181.1,191.9,311.1,186.5,173.8,5.7,26.3,146.2,191.8,24.9,8.3,98.4,95.3,84.9,87.4,67.1,52.2,62.6,48.5,34.4,32.7,38.2,41.1,52,51.6,97.2,25.9,21.6,23.4,14,6.5,8,7.9,7.9,7.8,11.6,13.3,15.3,13.6,18.1,30.7,42.8,9.5,8.4,8.1,7.7,9.3,8.3,7.7,6.8,8.4,10.8,16.9,139.7,123.9,94.1,19.4,153.2,65,136.8,88.4,70.5,68.3,94.6,124.2,148.2,34.3,175.3,172,96.4,48.1,0.8,70.9,53.9,73.1,76.7,83.8,78.2,34,37.1,70.5,107.9,71.3,32,54.8,45.1,86.6,86.3,41.1,91.8,78.4,95.6,64.1,69.1,93.9,63.8,66.5,42.6,50.6,92.4,56.7,77.9,73.2,71.8,69.3,98.9,142.4,51.1,41.8,94.5,95.5,117.7,120.7,233.7,132.8,140.5,201.3,74.7,109.9,91.8,103.8,14.2,92.7,94.5,106.5,113.5,94.3,106.7,149.6,60.7,54.7,17.3,108.1,24.6,28.8,27.9,95.6,209.2,42.7,53.8,61.1,141.1,93.1,97.1,67.7,131.6,152.5,100.2,54,66.9,61.6,57.8,55,52.2,58.2,60.8,135.4,137.6,58.4,139.7,183.4,169.1,16.1,85.3,88.4,94.9,93.2,82.8,145.1,127.1,141.3,140.8,305.2,505.8,196.9,196.7,174.5,175.3,24.7,55.3,91.1,89.4,179.5,106.9,102.8,59.8,89,83.9,60.1,71,84.6,76.8,54.7,37.8,16.8,195.8,84.1,114.4,101.7,96,125.7,126.1,88.6,198.3,106.9,126.5,108.4,161.7,241.8,164.9,197.9,103.5,90.6,63.5,112.5,158.2,7.9,103.4,60,168.9,238.2,93.5,141.2,236.7,303.7,71.5,177.5,19,177.7,187.1,363.6,359.7,130.1,107,127.9,76.4,99.9,107.1,61.5,65.2,108.1,106.9,95.6,119.6,116.8,117.1,108.3,127.8,55.8,68.8,68.4,113.4,64.6,112.8,44.5,78.1,71.9,75.9,91.1,35,88.4,73.3,70.9,128.7,98.3,96.3,66.8,93.1,108.9,102.5,178.2,114.4,106.6,89.7,99.5,73.3,182.2,358.2,129.8,27.6,66.4,22.4,19.1,35,70.7,18.8,57.1,63.3,27.6,43,113.1,178.2,180.9,162.2,90.6,81.1,108.5,108,94.1,89.2,83.6,93.5,102.7,96.9,99.5,69.9,53.7,60.5,70.8,82.4,73.5,51.5,97.3,99.5,74.3,97.4,67.4,143.2,160.3,91.9,157,183.6,71.8,74.1,199.3,195.6,167.2,136.1,258.1,121.8,11.7,125.5,270.5,323.8,405.4,127.8,92.3,14.7,71.5,82.6,130.8,0.8,73.5,103.8,73.6,69.6,92.5,154.5,94.9,75,83.5,110.3,180.4,82.5,112.8,31.9,86.4,90.5,54.4,142.6,124.4,106.5,124,118.2,162.4,180.1,198.5,65.2,160.2,170.2,141.5,157.3,45.7,122.3,123.9,171.7,145.1,54.5,123.6,194.6,228.8,178.8,162.8,185.3,147.9,190.1,40,136.2,45.6,108.7,146,147,72.4,69.9,69.1,65.9,146.5,105.7,107.7,99.6,96.2,31.9,101,76.4,57.9,45.7,131,56.1,44.2,53.9,58.3,69.2,74.3,92.2,16.8,84,116.2,187.1,141.8,141.8,129.3,126.8,145.4,150.7,185.1,182.5,111.2,69.7,187.7,105.6,100.1,147.5,89.2,78.8,71.3,89.5,215.1,79.3,97.2,140.2,59.8,83.8,76,79,78.6,88.2,97.4,99.6,113.7,131.2,133.3,92.6,108.9,109.7,107.5,86.9,94,85.7,95.3,90.1,90.8,109.3,119.2,149.2,72.3,88.5,141.6,132.6,72.5,75.2,121.6,94.3,84.4,90.9,86.9,113.2,122.3,2.4,90.6,120.4,148.6,193.8,216.4,14.2,161.5,27,230.4,131.2,251.6,194,185.5,102,96,177.1,78.9,62.3,95.5,157.3,95.3,111.4,106.2,144.5,121.4,107,95.4,100,110.2,167.8,23.3,62.3,89.6,56.3,33.8,120.9,119.1,74.7,89.6,123.7,124.8,82.6,57.7,66.6,52.3,54.1,88.5,76,88.3,107.2,105.6,65.9,70.6,123.9,88.6,87.7,77.4,82.7,88.7,88.4,88.1,59.1,88.2,107.1,117.4,70.3,71.2,58.7,82.8,123.8,123.7,124.2,142,93.9,70.3,66,52.8,58.7,66.1,70.5,56.9,14,88.3,59.7,87.7,82.5,77.7,46.5,41.5,70.8,82.6,91.9,103.7,104.6,77.4,83.9,41.2,65.1,54,93.3,72.9,106.4,51.1,67,88.5,52.4,60.8,56,60.1,71.5,49.7,39.7,74,36.5,71.3,84.3,75.1,83,70.8,85.2,94.8,50.7,47.6,63.4,80.5,73.4,75.4,176.6,90.4,34.3,65.7,73,81.9,76.5,42.3,52.6,90.1,23.4,19.6,14,13.1,15,20.3,51.1,10.6,5.6,6.4,7.6,12.9,9.9,5.7,26.5,25.2,24,19.3,16.8,7.2,21.9,61.6,24.9,30.1,42.6,27.9,36.8,17.2,12.3,19.1,17.6,29.8,48.5,63.1,60.9,32.8,50.4,40.4,16.8,31.3,24.5,21.5,47,47.2,43.7,93,26.7,54.4,24.8,26.9,30.2,45.1,40.6,43.2,19.4,17.2,68.3,73.1,40.8,14.1,54.8,50.4,52.5,58.1,101.8,18.3,52.8,46.3,46.5,5.6,28.3,32,35.2,10,55.7,22.9,30.6,29.6,48.3,47.3,21.4,28.8,76.9,64.2,41.2,41.8,68.3,54.6,30.1,26,68.7,55,55.5,121.1,97.5,54.1,41.9,28,23.1,59.5,18.1,75.1,20.6,31.9,28.7,33.5,31,22.8,52,49.4,23.4,6.3,79.7,19.3,30.5,26,23.8,134.7,24.4,69,52,15.4,22.4,69.3,39.6,137,25.3,31,66.4,53.7,38.9,39.2,52.1,103.4,43.5,28.9,17.4,85.5,85.2,45.8,42.4,26.2,237,25.7,17,44.9,24.8,20.5,13,113.4,29.4,57.6,27.4,60.9,0.9,36.5,20.2,38.5,10.6,13.7,12.3,17.3,6.9,24.8,17.5,9.6,30.4,79.2,22.5,18.1,55,56.8,20.6,32.7,70.7,74.4,25.2,12.1,36.2,46.9,80.9,89.4,44.4,52,13.8,34.1,8.7,26.9,28.3,8.5,17.8,10.2,18,53.5,17.3,41.4,41.2,78.2,27.9,7.7,9.2,15.3,10.1,5.3,9.2,4,4,4.4,4.6,4.5,4.5,4.6,2.3,3.7,7.8,29.5,38.6,30,20.8,27.1,43,46.5,24.5,25.7,18.8,152.8,8.5,16.4,10.5,24.3,6.6,5.6,5.5,5.6,5.6,5.5,8.6,21.8,8.2,19.3,25.9,24.4,17.1,109.1,40.8,48.5,36,56.2,71.1,22.2,23.8,8.5,15.8,19.5,14.8,16.7,32.7,24.6,24.1,30.8,14,20.4,6.9,5.3,5.2,5.2,5.4,5.5,5.4,5.5,5.3,4.8,4.6,4.8,4.7,4.7,4.4,15.3,38.4,15.7,15.6,5.8,31.9,44.2,22.5,39.4,31.4,17.6,37.5,90.4,74,24.5,47,23.5,36,40.5,18.6,6.6,8.5,14.9,24.3,33.1,39.9,33,9.9,8.2,15.8,24.2,23.1,25.5,33.6,19.7,9.3,7.8,11.5,11.7,8.9,9.2,12.6,17,8.2,8.6,7.7,167.2,14.6,10.7,8.4,12.8,11.4,88.7,15.5,13,15.9,19,73.5,125.6,39.1,198.3,378.7,391.1,682.1,181.3,652.2,32.4,467.3,180.4,162.4,106.3,145.9,51.6,20.3,192.9,56,83.2,70.6,126.7,75.4,153.2,33,12.2,8.3,183,259.5,56.1,74.7,74.6,107.6,76.6,14.3,24.7,58.4,16.9,85.6,66.9,45.6,103.7,44.2,89.4,33.4,18.8,51.7,24,21.4,108.1,33.2,52.1,64.3,45.2,75.6,69.5,145,8.8,14.5,147.9,106.3,35.5,218.3,122,119.2,98.2,100,45.5,58.7,24.1,34.5,43.9,43,36.4,62.1,86,67.1,32,15,29,45.5,6.9,45.2,26.4,96,79.1,45.2,43.2,67.7,68.6,67.2,58.8,76.1,72.5,105,119.3,40.2,119.4,29.7,128.3,146.4,238.2,204.6,198,27.3,23.4,30.4,29,38.9,44.6,47.7,76.2,76.2,154.9,166.7,277.8,198.8,72.3,69.5,232.1,45.3,99.7,21.4,80.9,45.1,72.2,44,38.4,50.9,66.5,118.3,212.7,94.8,76.6,92.7,79.4,61,61.5,49.2,94.5,119.5,19.6,116.1,104.8,105.8,268.8,159.4,87.1,72.3,115.6,193.8,133.6,107.2,72.1,44.3,174.5,126,159.9,11.8,2.3,71.7,27.8,14.7,78.5,44.1,51.8,36.3,97.8,39.1,78.4,154.9,47.6,39.1,91.6,76.4,158.2,209.9,226.6,389.2,194.1,205.5,109.3,147.6,74.8,53.8,46.5,41,28.5,120,95.7,51,51.2,172.2,163.5,82.4,79.3,38.8,23.5,92.9,196,11.5,152.1,156.4,172.9,32.2,173.5,31.7,193.2,193.6,255.7,258.4,398.1,153.2,152.4,121.9,92.2,93.8,38.5,33.6,88.9,70.8,67.6,111.7,69,75.1,75,139,96.1,94.1,100.7,95.3,164.4,123.1,160.3,96.5,96,138.6,147,63.6,30.3,63.5,116.5,115.6,199.8,95.7,57.6,127.5,121.1,75.3,215.9,65.4,11.2,34.5,132.8,7.5,26.7,80.5,65.3,63,44,19.4,56.5,41.8,40.1,109.7,118.5,113.6,0.8,5.6,25.3,30.1,120.7,29.4,55.9,103.8,97.8,97.6,88.7,91.1,218.2,122.8,100.3,44.6,104.4,103.5,113.2,105.8,105.6,105.7,105.5,32.6,186.8,169.2,178.9,44.3,23.7,179,189.3,24.3,332.8,412,128.4,26.2,375.6,665.9,29,600.6,281.5,404.8,26.6,165.1,163,183.7,115.8,185.4,122.2,122.4,66,171.7,136.5,184.5,39.3,168.4,148.3,156.3,218.8,145.4,103.1,219.4,110.5,132.3,199.5,223.2,133.1,174.7,229.8,76.7,167.7,68.6,135.6,154.9,149.6,80.5,194.3,163.1,121,128.2,157.3,124.9,126.9,147.2,36,70.6,90.2,97.2,98.7,64.3,57.7,80.4,78.4,87.1,97.8,80.1,87.8,90.3,106.6,151.3,29.7,85,75.8,75.4,81.6,37.9,4.1,68.4,111.6,64.1,109.8,91.7,69,57,68.7,71.8,109,75.3,69.2,98,98.3,112.2,103.7,62,59.6,27,41.2,48.7,58,59.2,53.8,55.9,87,109.4,71.5,75.9,33.4,53.7,129.6,76.1,93.4,91.2,96,96.5,205.1,30.8,189.3,94.6,189,167.4,79.4,242.8,45.3,138,197.6,216.3,175.8,27.8,173.7,84.2,125.4,182.4,139.1,189.1,269,44.5,91.8,188.7,284.7,10.3,21.4,175.4,44.2,81.4,182.5,98.6,1.7,100.9,33.7,42.1,124.5,126,32.4,129.9,81.8,64.3,218.5,30.4,54.9,74.6,69,88.9,96.4,119.7,124.6,120.2,102.5,128,26.6,71.6,127.6,87.7,89.2,147.9,90,245.6,27.4,139.9,211.5,148,326.5,103.6,19.8,32.2,40.3,9,91.4,246.5,50.9,61.9,30.7,151.4,88,181.3,76.8,92,37.7,43,41.3,82.5,63.2,69.5,40.2,27.7,61.7,53.1,37.8,29,50.4,48.1,53.2,54,62.6,43.2,57.3,61.6,120.8,109.4,202.3,28.4,430.5,261.7,247.3,346.7,328.1,261.4,5.7,225.5,172,100.4,14.7,85.2,202.2,225.7,107.6,106.5,64.1,59.3,52.7,54.1,54.2,56.8,67.4,56.6,41.8,43.4,73.1,17.4,41.1,45.3,51.7,42.2,33.8,64.5,75.7,72,66.4,42.9,143.6,143,90.4,50.3,32.2,111.2,77.7,35,49.7,64.4,59.6,43.6,35.9,55.7,50,48.8,52.2,50.6,42.7,66.5,61.8,56,51,50.8,47.4,50.6,48.5,45.3,84.7,20.5,148.6,182.4,116.8,70.8,59.1,61.1,62.7,64.2,85,70.2,47.7,65.8,57.1,42.5,46.3,52,28.9,46.5,51.3,53.7,50.1,77.3,62.7,50.2,45.6,60.3,54.4,41.5,61.3,47.6,46.1,3.3,30.9,39.1,37.5,48.7,53.6,27.3,42,42.4,50.1,50.9,30.5,38,37.9,37,34.5,48.8,47.9,36.8,44,45.3,158.8,47.8,41.2,42.8,46.4,33.9,39.6,44.8,47.8,38.2,44.4,40.4,27.5,41.6,44.7,33.1,34.4,36.2,41.9,53,30.7,24.3,35.2,38.1,47.3,52.5,33.1,62.8,78.7,10,116.9,62.8,59.5,47.7,80.3,40.6,11.6,45.3,45.3,113.9,50.2,21.6,77.7,57.1,16.2,48.5,22.5,44.3,59.6,61.3,23.4,25.8,50,60.7,60.8,48.5,17.2,32,45.4,40.3,9.2,36.6,38.6,52.1,55.5,89.6,31.3,81.5,66.8,69.8,80.3,84.4,202.4,18.1,45.1,19.5,43.6,47.4,46.3,59.4,61.6,28.7,33.4,48.6,48.4,51.1,75,81.9,71.3,26.3,49.4,44.4,31.8,33.4,39.1,40.8,38,38.8,50.7,58.8,59.2,35.8,36.3,73.7,74.4,164.4,75.2,141.8,104.5,103,75.6,63.1,35.9,31.2,71.6,46.4,58.7,52.2,59.9,47.5,47.2,24.1,14.5,15.7,55.4,54,69.8,68.8,72.6,70.3,30.3,30.5,82.6,46,49.6,58.3,173.5,159.8,53.4,115.5,48.7,73.6,76.3,73.6,19.9,14.6,36.3,89.5,89.7,21.9,114.6,173.3,82.6,66,103.1,57.8,53.2,34.2,50.1,34.8,48.7,41.9,16.6,17.9,72.3,66.6,38.6,37.7,22.8,52,1,42.6,46.6,40.2,53.4,62.4,67.9,29.6,28.9,44.8,66.5,56,38,18.8,35.1,34.8,73.2,24.3,37.4,43.8,61.8,19.2,46.9,26.2,33.4,39.6,45.1,56.7,42.7,58.8,28.7,53.9,15.7,19.8,21,24.8,21.6,2.1,24.6,26.3,23.7,22.5,22.2,46,73.5,63.1,42,44.1,42,29.1,39.7,29.7,34.6,38.7,33.5,43.8,77.7,75.9,71.9,91.4,72.1,27.1,33.4,30.2,47.8,49.7,42.2,33.5,54.8,35.4,33.7,15.3,20.8,35.5,38.4,38.7,31.1,39.8,25.7,28.4,38.9,31.2,35.2,55.4,36.7,34.6,17.8,16.4,38.7,30.5,29.2,37.5,37.7,30.7,38.8,42.9,38.7,72.2,72.4,93.6,51.4,66,32.3,34.4,37.7,35.5,38.7,35.1,39.6,38.4,27.9,25.5,28.9,28.3,27.2,23.4,19.5,27.4,46.3,41.8,27.3,50.3,37.7,37.4,45,60.9,8.2,40.4,111,56.2,12.5,58.2,33.7,46,42.7,12,36,39,33.5,19.4,33.6,19.5,8.8,44.6,31.7,30.1,29,43,43.4,47.1,28.2,15.3,44.8,29,27.9,17.7,28.4,42,35,25.1,29.9,51.8,26.3,25.5,63,31.5,53.4,10.4,11.3,46.6,44.3,8.1,15,55.1,52,14,10.6,19.7,33.5,15.1,65.3,18.9,63.3,66,40.7,54,33.3,35.8,27.2,29.2,41.4,9.9,20.4,22.3,22.5,15.9,20.4,31,29.6,36.7,34.3,35.7,52.7,86.5,87.8,52.8,60.1,29,20.3,53.6,121,121.4,257.6,41.6,19.6,59.8,125.6,78.8,74.1,33,14.7,51.6,50.5,30.6,19.1,75.1,65,165.7,154.2,141.6,125.5,106.4,117,197.5,92,157.1,88.9,63.5,67.2,72.4,93.8,57.8,62.8,43.4,58.5,66.7,43.1,55.3,58.6,51,21.7,26.8,54.5,41.8,45,44.9,36.5,70.9,27.9,31.3,45.6,54.3,63.2,72.5,91.9,102.9,64.7,62.8,89.4,105.4,111.7,66.9,57.2,126.3,110.4,105.5,41.6,9.1,69.7,69.2,48.5,39.2,60.6,128.6,128.5,101.3,43.2,103.5,108.9,84.9,70.7,79.5,39.4,48.7,297.9,33,144.5,22.4,210.7,35.8,33.1,66.3,48,57.1,59.8,51.4,61.2,68.8,55,98.1,99.6,94.3,65.7,68.9,105.6,112.8,70.6,62.5,9.7,36.4,57.4,42.3,67.1,50,57.1,10.7,39.9,37.6,29.3,41.8,60.1,87.4,74.7,87,85.5,65.2,52.9,60.3,44.4,15.9,25.4,51.4,49.6,76.3,143.7,77.3,99.8,149.2,83.8,1.8,118.3,189.1,260.1,208.5,104,262.7,132.7,62.7,127.5,111.1,90,121,73.3,69.2,120.7,79.5,80.9,34.1,101.8,58.8,48,47.8,54.1,56.5,33,80,36.2,28.5,40,155.2,87.3,52.4,60.9,74.2,99.8,115.9,174.8,104.1,14.5,31.8,117.2,56.2,84.9,293.4,183.1,143.6,52.4,54,54.2,45.9,46.8,46.9,39.3,48.3,44.9,47.9,39.5,44,36.9,51.1,37.4,59.1,314.8,292.6,54.8,66.6,47.3,98.6,53.1,58.8,88.1,74.1,80.5,79.2,59.6,59.8,112.6,69.9,18.5,49.2,165.3,288.3,582.4,104.4,47.5,24.6,33.4,34.6,54.1,43.3,38.4,26.5,25.3,26.7,44.9,42.6,39.6,33.8,39.9,38.3,50.5,52,53.4,51.4,57.7,30.5,27.4,33.9,40.9,36.1,32,25.6,39.5,38.1,63.5,173,104.1,386.4,14.1,241.5,125.4,34.5,15,125.9,82.8,78.4,9.2,68.5,216.7,70.9,129.7,5.8,91.7,58.6,64.5,45.1,42.7,95.2,87,83.6,29.4,65.5,78.8,253.9,95.8,142.2,5.2,97.2,85.3,73.4,73.1,75.3,123.3,286.6,89.7,238.2,129.6,143.1,106.2,98.7,121.8,309.5,334.2,288.2,295.9,165.6,94.6,85.9,150.8,119.1,113.5,124.2,151.6,232.6,92.7,69,40,59.1,53,52,71.9,83,63.9,80.4,75,86.3,65.1,88.9,95.8,224.2,58.5,82.8,81.1,76.4,77.1,63.9,65.1,89,62.2,69,88.6,87.6,1178.5,84.1,78,60.6,75.8,124.4,219.2,71,75.6,79.5,265.4,129.8,86.5,129.8,136,102.3,111.2,123.9,88.1,123.1,29.6,68.5,66.5,70.4,69.6,46.1,71.8,60.2,55.3,41.7,66.3,71.4,140.3,95.4,211.9,74.7,87.5,141.4,138.3,192.5,120.6,24.3,65.9,291.4,138.2,148.5,139.4,93.7,78,85.1,126.5,88.5,6.2,149.2,108.9,109.2,110.8,110.3,197.8,207,315.3,207.8,87.4,88.8,130.1,92.4,114.2,104.8,39.5,73.6,79.3,90.7,7.9,123.7,66.2,13.5,184.5,17,57.2,39.1,454,300.2,112.7,171.9,169.2,56.2,111.2,131.7,135.7,37.4,84.8,303,121.2,121.1,153.1,142.4,84.6,86.5,135.4,84.2,91.9,146.4,153.9,167.1,293.2,82.6,80.5,78.4,79.5,77.8,67.5,54.4,33.5,71.6,67.8,85.4,86.7,80.7,75.2,77.6,76.9,104.5,96.6,93.6,80.8,91.6,91,71.5,75.3,54.8,64.1,42.4,52.4,62.2,67.5,9.3,85.9,87.5,98.3,97.6,223.4,59.2,23.7,248.8,108.6,108.4,166.7,175.5,137.2,137.9,234.2,248.6,252.8,168.6,171.8,214.4,208.1,205.3,283.8,283.8,280.5,420.8,1.2,197.8,204,29.7,8.7,266.3,176.4,172.4,164.3,165.4,43,43.2,85,171.9,125.7,140.6,116.8,122.6,241.5,78.4,75.8,88.8,86.8,79.7,79.8,82.2,109.5,187.5,101.4,71.4,71.4,56,58.6,115.2,78.7,76.6,66.8,21.4,41.7,100.8,85.1,79.2,58.5,57.7,57.1,33.3,61,64.6,76.4,57,74.7,79.5,27.1,63.8,76.5,66.5,26.9,98.5,111.1,89.1,39.1,33.8,71.8,60.9,105.8,103.8,112.8,83.3,77.2,107,75,134.7,46,16.9,100.4,100.7,72.9,54.5,128.8,103,93.1,84.4,369.8,215.3,84.7,83.5,31.3,64.2,62.3,124.8,193.1,206.8,125,125.3,118.5,167.5,154.3,118.1,115.2,91.1,164.8,154.4,154.8,133.4,102.2,83.8,93.6,103,110.3,90.8,134.8,78,76.2,46.5,45.7,41.7,62.1,101,82.6,119.3,63.4,61.9,122,57.9,93.8,12.1,14.9,46.4,120.3,32.5,44.8,118.9,61.4,70.8,96.1,94.3,112.7,94.7,104.1,96.1,100.6,352.3,153.9,108.7,100.8,27.8,178.9,64.1,64,159,81.2,96.1,62.4,40.3,200.3,8.3,77.1,128.7,77.9,142.9,80.6,68.8,124.6,53.8,16.6,202,385.5,57.7,156.7,93,72.1,67.9,48.4,48.5,38.2,75,72.9,38.3,55,52.4,109.8,111.5,127.4,138.1,220.3,94.4,55.4,74,76.3,61.5,50.4,46.4,55.8,58.3,78.1,80.4,64.8,43.7,16.5,44.8,49.8,53.4,24.1,41.4,41.8,70.9,52.8,58.4,43.6,68.4,75.9,69.1,54.8,95.5,194.4,137.8,129,72.2,61.1,111.1,90.5,64.2,35.4,16.8,7.5,10.4,104.8,42.1,49.2,43.5,46.4,42.4,42.9,41.3,41.3,48.2,48,66.2,72.2,59.7,42.5,260.8,122.7,95.1,208.1,45,45.8,55.3,29.7,26.5,34.2,75.2,89.2,70.5,50.3,135,49.9,47.1,49.1,48.4,53.6,168.4,55.8,61.8,61.8,68.7,95.7,39.5,40.2,67.4,48.5,30,60.4,35.2,34.4,211.6,39.8,50.5,51.7,68.6,72.1,205.1,45.1,43.8,57.3,56.1,52.1,65.4,54.6,163.9,70.1,40.9,42.2,62.2,64.1,50.6,51.1,71.9,73.8,52.2,59.5,49.5,49.9,163.4,61.5,48.2,48.3,49.8,47.2,72.7,210.1,175.2,52.8,51.2,53.3,62.8,60.1,77.5,70,103.6,74.7,26.3,734.4,38.1,41.4,54.1,76.3,59.4,48.7,58.3,69.5,103.4,347.7,62.3,75.5,68.1,64.7,49.5,87.8,98.8,549.8,95.9,105.8,56.8,64.2,123.3,94.4,105.3,41.9,53.9,57,107.7,73.6,90.1,89.4,89.6,85.5,75,75.1,51,47.8,83.4,80,82.2,82.3,82.5,37.7,65.1,84.2,123.4,24.5,56.6,80.3,212,43.2,47.2,89.1,79.7,106.4,96.5,53.2,55.4,66.2,12.6,30.3,53.2,49.1,44.9,55.3,49.9,62.3,82.5,13.7,66.1,36.8,36.7,35.2,33.7,49.2,63.6,78.1,472.6,79.4,80.2,98.2,70.5,68,60.6,61.8,64.4,65.6,56.4,56,120.9,135.5,133.1,74.9,41.7,38.5,56.4,47.1,53.3,43.2,42.5,52.8,49.6,40.5,25.2,29.4,27.6,34.6,182.9,91.5,48.1,32.3,53.4,47.8,48.5,55,55.6,36.7,77.3,28.2,181.7,74.8,82.2,54.1,89.7,112.6,72.2,71.2,90.6,9.8,77.5,73.3,195.7,53.1,53.3,51.9,50.5,49.7,42.6,54.3,12.5,41.8,204,47.3,35.5,46.7,37.4,52.4,61.4,65.2,60.1,56.2,54.9,26,96.5,58.7,56.6,226.2,392.1,127.3,78.4,69.3,104.7,59.3,263.3,94.7,72.7,109.2,74.5,78.1,52.5,113.3,116.1,24.3,125.5,69.8,82.9,81.1,96.1,75.3,80.2,329.8,371.7,30.3,17.1,334.7,35.4,64.3,52.2,91.5,55.4,58.1,47.7,48.7,6.8,60.6,65.6,53.5,67.2,54.7,54.7,176,64.1,63.6,66.4,63.9,64.4,84.4,82.7,72.1,79.5,90.1,226.8,70.2,62.1,79.6,92.1,79.7,76.1,357.6,77.6,75.2,68.1,89.4,91,47.3,101.3,97.2,60.9,47.7,9.5,69.7,64,99,700.2,156.4,79,91.3,92.2,749,83.4,108.9,113.9,67.5,102.5,88.2,118.2,103.8,113,78.7,71.9,103.2,94.7,72.9,84.6,67.6,72.8,112.5,216.9,73.7,88.6,152.6,269.4,31.3,21.2,30.1,23.8,571.7,103.4,113.3,115.1,225.7,177,48.2,122.2,143.4,0,211.7,165.8,79.7,225.3,590.4,200,43.1,48.2,136.4,255.7,386.2,107.6,99.6,141.5,15.3,252.2,194.7,194,505.4,114.9,108.2,130.3,813.3,159.8,114.5,76.6,91.7,105.2,83,92,76.8,70.5,82.1,9.8,128,87.4,81.9,90.6,91.1,303.4,183.7,126.4,111.2,143.2,304.5,70.5,84.1,115.6,80.7,80.9,61.6,55.2,68.8,44.2,35.2,231.6,81.5,83.9,73.2,84.5,14.1,56.6,101.3,77.5,64.3,101.9,97,72.5,75,103.8,67.4,87.4,66.5,59.9,79.9,155.2,56.4,60.6,95.1,108.9,61.3,190.4,73.5,66.6,82.7,67.5,29.6,33.9,52.1,70.8,11.9,47,44.5,58.4,59.6,81.2,42.4,59,53,53.7,47.3,54.4,53,71.4,226.6,235.3,50.4,51.5,50.6,38.2,38.8,60.7,47.6,63.4,58.4,67,56.1,52.2,35.7,64.4,56.7,54,61.3,48.3,29.9,29.9,60.6,61,42,62,66.7,53.9,60.3,32.7,53.6,428.6,192.6,45,130.5,54.6,82.1,80.3,80.3,47.1,69.1,60.1,74.1,47,60.7,70,78.9,81.6,257.6,104.9,103.3,62.6,32.9,36.2,69.2,93.4,58.5,268.4,96.6,97.8,207,148.4,85.7,132,217.8,294.2,50.7,75.3,70.8,88.7,69.6,89.9,73.2,67.8,59.5,150,245.5,71.2,51.4,80.5,56.8,37.4,34.3,53.7,53.3,58.8,59,80.9,92.1,110.8,49.2,49.7,78.3,78.8,62.8,67.9,64,63.6,147.1,80.2,78.3,78.4,79.9,78.4,78.7,76.4,68,63.4,60.5,88.1,101,93,52.9,63.9,8.7,0.2,55.8,43.2,23.5,66.6,72.1,72.1,144,148.5,22,78.5,47.6,46.6,61.7,55.1,43.1,66.7,59,71.6,79.9,69.2,45.7,69.9,115,229.7,120.9,137,73.5,89.6,65.3,62.7,63.1,63.5,62.8,62.7,91.6,80.3,52.5,0.4,30.4,79.5,76.7,70.1,83.1,26.5,0.5,17.3,91.4,186.6,8.8,43.7,53.8,50.1,10.8,45.9,261.7,59.7,54,37.3,35.7,40.3,52.7,57,30.9,56.1,28.2,62.8,46.4,130.2,80.8,57.2,52.2,44.1,20,46.2,50.3,52.1,50.8,50.3,46.6,61.3,40.7,51.8,45.2,38.6,16.5,37.2,34.9,42.3,40.1,45.4,45.6,43.9,48,53.2,40.8,13.4,46.3,61.4,49.2,55.8,53.6,53,65.8,54.3,62.3,58,40.3,51.9,53.9,53.5,54.7,395.5,107.8,64.6,79.1,61.4,60.8,62.4,42.6,53.7,59.2,81.7,45.8,61.8,63.6,65.3,49.6,46.8,67,319.2,13.4,96,52.5,49.9,67.9,44.5,52.6,310.1,136.3,450.7,53.6,50.2,52.7,52.8,42.6,44.6,78.8,19.8,57.5,100,76.2,178.7,75,72.9,67.3,68.8,69.7,75.9,75.2,208.5,93.1,76.1,46.3,43,42.8,53.9,79.3,201.6,75,66.6,60.5,55,78.6,42.5,75.9,71.8,46.4,16.7,39.5,61.8,53.9,194,100.2,44.5,84.8,47.1,69.3,280.6,51.1,566.7,79.4,105.3,12.8,347.5,117.8,66.5,80,113.2,37.3,106.1,76.8,295.9,94,77.5,47.9,90.4,196.5,60.7,62.8,61.2,75.1,56.3,77.4,168.8,130.3,67,63.2,43.4,39,58.9,48.1,39.3,51.4,44.7,42,48.1,44.8,506.2,85.8,55.6,69.2,57.8,67.8,49.3,89,340,49.2,37.9,70.1,80.8,62.1,56.3,229.4,52.3,81.8,113.1,104.6,78.2,68.8,111.6,112.8,631.9,99.6,94,94.9,77.3,97.5,53.9,83.7,387.1,90.4,42.3,44.7,34.3,56.9,56.1,66.9,59.3,62.7,225.7,76,42.7,49.3,46.5,63.8,55.1,35.7,44.6,51.5,49.9,56.2,56.2,63.9,47.8,46.4,544.5,93.9,72.7,66.9,69.2,50.6,57.2,52.8,189.1,30.6,463.6,12.9,503.2,76.3,53.7,50.9,67.1,61.9,57.5,66.2,64.4,329.3,73.6,74.8,50.1,79,58.6,418.1,45.9,265.2,308.3,82.4,57.9,64.1,0.5,66.8,60.8,54.3,51.8,55.4,50.4,73.6,57.2,79.9,86.7,359.6,89.2,58.5,48.1,46.3,80.8,74.8,44.4,54.8,68.9,59.9,59.8,68.9,72.9,52.4,39.2,60.4,45.7,70.5,54.9,328.6,21.7,247.8,89.1,68.3,56,55.8,82.6,62.7,72.7,90.2,64.1,63.9,61.7,69.8,69.4,67.2,47.8,53.6,43.9,243.4,673.4,91.6,63.6,60.5,63.5,63.9,76.8,51.7,54.7,55.5,49.8,62.2,52.2,40.3,34.9,55.1,62,60.8,55.4,45.3,56.7,32.1,34.1,60.6,55,84,160.7,62.5,51.8,52.1,62,58.3,38.9,39.3,52.9,53.1,72.8,64.2,45.7,63.8,64.9,65.3,53.7,55.1,61.6,200.7,184.6,672.3,71.9,40.2,38.8,54.3,52.3,60.5,49.6,45.7,42.4,50.5,74.7,42.3,44.2,49.3,45,45.9,55.3,54.8,72,50.6,49.5,62.4,101.8,114.5,74.6,59.9,53.4,63,76.6,63.6,51.8,117.2,346.2,609.5,68.5,281.9,322.9,186.1,163.3,77.3,77.5,513.8,373.7,209.9,80.6,68.9,8.7,56.7,62.6,124.9,70.4,64.9,51.6,51.5,63.3,63.1,39.4,158.5,8.7,79.7,509,134.2,20.7,40.8,45.3,86.3,53,52.7,52.8,53.5,97.4,70.7,67.7,67.8,66.1,68.1,64.9,187.9,57.4,65.5,82.5,539.7,333,32.7,157.8,120,97.2,140.3,78.3,212.1,107.7,66.9,74.8,57,66.3,54.6,52.2,64.8,44.7,51.7,64.7,72.1,47,545.9,77.4,54.7,51.7,45.2,59.6,57.1,78.5,76.8,74.5,31.2,183.5,61.7,81,86.8,39.2,32.2,38.8,67.7,61,57.6,62.4,52.2,58.6,90.6,281.4,456.8,139.1,65.8,105.1,87,81,113.4,511.7,55.7,41.9,687.1,682.1,13.1,223.8,117,109.8,91.7,91.8,75.7,79,95.3,123.2,70.8,58.1,57.5,78.2,85,79.1,310.5,100.9,77.1,74.4,95.8,68,15.7,38.2,67.4,1,72.3,109.1,67.5,62.7,86.1,71.2,87.4,83.3,86.1,97.5,97,100.6,83.7,89.3,125.8,356.2,151.6,93.7,96.4,120.6,598.9,521.5,864.3,94.8,66.4,62.3,112,59.2,65.4,108,85.9,118.6,523.7,148.6,135.7,82.6,142.3,195,184.2,114.3,139.5,89,164.9,117.1,176,112.9,110.2,88.4,104.9,136.8,469.9,429.1,38.8,138.2,67,66.2,196.6,116.1,115.7,137.5,4.8,136.5,101,103,104.9,128.7,120.1,42.7,27.1,95.3,87.5,144.6,94.4,65.4,156.6,81.9,85.4,223.8,1009.2,20.3,109.5,113,83.3,79.7,75.6,85.7,65.4,94.3,77.4,113.9,81.5,81.8,454.3,8.6,74.3,74.8,99.6,111.4,154.9,276.9,128.8,67.6,63.1,464.7,155.6,150.7,129,508.1,108,127.5,177.9,14.3,108.6,73.4,375,162.8,84.9,74.4,52.1,43.5,40,41.9,66.9,110.7,84.7,83.7,155.1,100.8,142.1,71.8,157.4,87.4,460.8,171.5,122.6,163.7,328.5,327.2,108.7,82,125.6,126.1,90,120.1,112.3,160.4,146.6,131.9,128.4,120.5,128.7,124.8,124.2,446.9,169.3,86.2,32.9,51.7,48.2,84.2,61.4,65.9,99.6,231.5,89.9,37.5,140.2,77.1,69.4,110.8,75.2,75.6,86.2,84.8,96.3,13.6,59.3,92.2,152,87.7,91.8,92.8,129.1,143.7,441.2,79.7,100.4,125.3,124.2,110.7,109.5,109.5,2,144.4,130.9,196.1,275.5,174.1,136.9,118.6,83.8,91.5,80.3,108.5,402.5,126.2,102.8,116.3,57.2,55.4,105.7,101.1,92.6,95.8,117.1,57.5,58,54.7,80.7,77.1,150.8,16.8,126.6,70.8,64.8,60.6,74.4,77,80.1,80.6,72.6,80.2,94.6,103.9,208,112.1,112.1,88.6,100.9,91.1,76.8,35.1,63,147.2,56.4,36.6,37.7,504.9,227.8,100.7,100.7,377.3,141,115.9,121.9,90,89.8,85.1,84.4,76.7,106.5,40.2,52.2,61.5,30.7,43.2,67.9,40.7,14.2,14.5,17.5,19.3,16,44.6,18.6,8.7,11.7,9,11.5,14,17.2,18.1,14.4,14.6,13.7,14.4,21.3,21.1,18,44.7,45.3,103.4,1.1,31,17,18.3,18.3,21.7,21.1,18,20.8,21.2,24.8,18.4,18.9,25.3,64.1,28.1,43.4,12.8,21,22.8,29.5,163.6,31.2,37.8,51.2,81.8,45.2,64.5,61,44.4,88.1,105.3,85.9,65.9,86,101,49.8,58.4,61.7,0.6,53.8,63.2,61.8,63.8,59.7,102,131.6,80.5,79,85.1,146.9,123.2,75,110,100.8,119.7,124.6,11.3,132.5,120.8,124.4,121.2,118.6,902,48.4,53.9,62.6,55.1,62.9,39.5,41.1,84.2,81.6,88.2,86.8,60.2,64.8,46.6,55.2,49.9,45,51.7,99.9,58.7,66.6,52,133.2,535.4,61.8,104.4,120.2,109.8,88.9,67.5,51,11.6,39.9,53.7,55,57.7,55.6,59.1,38.3,40.6,7.3,36.1,58.1,72.7,177.2,95.6,134.7,64.3,72.7,33.7,76.5,80.7,62.4,60.8,73,121.3,89.1,56.3,52,44,56.6,70.4,102.2,86.1,73.6,123.5,56.1,78.9,13,29.5,32.8,171,123.7,134.8,224.1,115.9,196.5,148.2,175,152.4,69.7,28.3,66.7,14.1,156.6,156.4,124.3,99.5,120.7,96.5,36.4,29.4,178.6,185.9,100.1,457.1,411,305.2,321.3,252.8,217,7.4,247.6,257.3,74.2,544.3,337.7,67.1,210.6,214.7,267.7,440.2,244.6,213.8,239.5,394.3,239,77.1,112.5,130.4,190.5,154.6,173.3,200.8,103.3,252.2,276.8,336,267.9,324.5,184.9,129.7,170.5,122.8,82.5,86.7,37.5,8.5,54.8,89.3,206.6,370,41.2,250.6,357.4,320.2,312.1,277.1,157.5,331.8,279.7,332,369.4,459,176.8,151.2,127.7,129.3,146.9,34.4,60.3,257.4,140,188,3.3,165.3,223.3,174,233.8,218.6,262.8,228.1,228,181.5,165.8,232.4,228.9,197.9,280.3,233.6,237.8,266.1,295.2,268.7,236,24.6,255.6,176.2,234.7,263.7,94.7,79.3,182.7,85.2,37.3,82.6,118,36,47.8,81.3,211.6,179,187.2,156.6,172.3,143.6,141.3,179.8,132.7,117.9,12,101.6,159.4,281.5,234.5,137.1,9.1,164.5,117.5,170.4,148.4,73,53.1,72,87.8,116.9,112.5,147.5,238.2,252,23.7,198.1,192.4,139.3,131.9,220,316.5,138.5,136.2,23,33.8,114.1,109.6,143,122,84.6,132.8,112.3,162,163.9,208.2,28.5,224.5,330,880.4,11.6,629.5,129.9,163.9,11.9,156.3,156.3,167.1,141.6,136.5,136.6,113.9,101.5,167.3,15,116.3,117.4,83,82.9,26.9,77.2,75.5,100.5,59.8,143.1,140.7,151.4,145.5,149.7,187.4,214.5,243.4,124.5,180,172.1,178.4,334.3,253.8,210.7,181.5,174,17.1,32.7,256,197.3,210.2,249.3,241.7,159.4,11,223,238.7,194.2,173.1,106.2,148,276.2,227,43.3,195.9,255.5,299.6,259.2,157,88,151.7,165.2,188.6,183.2,109.5,30.6,253.2,74.2,129,332.9,240.5,467,475.3,277.8,376.4,11.2,434.3,24.5,170.5,51.2,177.6,185.9,165.7,208.1,158.9,173.9,132.5,225.7,222.4,229.6,189.5,377.3,23.3,49.8,124.9,90.9,59.8,179,201.2,144.3,65.6,122.7,214.2,141.7,269.9,223.7,74.5,423.1,271.1,86.2,102.8,107.3,181.4,206.1,168.6,388,57,255.6,205.1,94.4,76.9,76.5,130.1,161.1,131.4,147.8,142.8,133.3,138.6,161.8,443,68.5,195.6,237.8,226.2,206.2,266.5,233.5,177.6,106,128.3,103.2,122.4,111.4,154,132.2,275.2,248.2,127.2,154.5,148.2,95.9,229,321.9,1,219.5,16.7,173.5,192.3,99.6,138.8,344.5,178,122.3,89.2,107.7,116.1,144.3,140.4,145.7,196.5,947.3,55.2,45.1,131.1,149.1,115.9,114.8,152,133.1,155.1,143.8,48.5,18.7,59.2,90.4,132.7,26.6,57.8,114.9,40.5,48.8,174.2,232.7,2340.9,358.7,77,220.9,204.2,127.7,199.2,279.1,125,162.5,241.1,202.6,230.7,106.7,336.2,297.1,148.1,114.7,96,153.8,107.1,647.8,228.2,29.1,4.8,203.4,239.6,256.9,202.8,27.8,169.9,128.4,137.1,133.4,90.4,181.8,141.9,117.2,114.5,161.4,380,250.4,120.7,181,122,174.3,112.1,113.9,174.7,111.6,165.3,411.4,106.9,133.8,119.8,167.9,126.7,145.4,299.2,11.5,112,38.2,101.1,267.4,148.1,65.7,177.3,103.8,247,88.7,88.8,111.8,110.7,235.3,215.4,36,376.9,70.1,253,344,258.6,241.8,32.5,2,267.4,330.1,311.3,221.2,205.4,121.1,139.3,140,173.8,229.4,10.6,114.7,208.4,177,202.6,160.6,203.3,84.4,12.6,17.9,17,18.7,5.7,9.5,15,14.6,14,16.6,12.4,11.9,14.7,16.3,13.5,15.2,19.7,17.2,13.6,17.9,14.8,12.8,18.3,14.6,17,14.4,16.1,14.9,37.2,30.7,50.2,17.7,40.4,78.2,66.1,49.1,92.7,63,71.4,49.6,60.4,37.3,37.9,56.8,59.9,82.3,84.5,55.5,294.2,87.1,46.1,49.8,51.3,52.7,72.3,32.6,56.9,59.8,62.1,57.9,28.4,29.6,28.3,51.6,50.3,40.3,36.1,37.7,28.9,49.6,40.6,38.5,52.6,46,17.1,54.3,50.5,57.2,32.4,28.9,109.4,118.1,144.6,78,175.4,18.7,27.4,58.1,60.5,3.8,188.9,105.6,53.7,126.4,27.8,43.1,48.4,4,10.8,32.4,65.9,41.9,202.2,185.7,154.9,151,254.1,183.6,126.8,177.8,260.2,264.3,117.1,104,87,84.7,211.6,180.7,198.9,39.7,0.7,138.4,102.9,91.9,3.8,115.4,114.7,120.8,128.7,79.3,75.5,93.2,126.9,106.2,203.9,176.1,24.3,2.5,59.4,39.7,2.8,39.5,76.6,77.5,51,72.1,36.5,31.9,61.7,40.9,90.9,77.3,62.3,31.6,4,100.9,68.2,69.2,101.6,74.3,73.5,78.7,37,38.6,151.7,253.9,249,213.1,208.2,137.3,104.3,147.4,397.8,178.1,7.5,132.1,109.8,139.3,188.1,31.1,87.2,92.2,129.1,79.2,89.3,94.2,104.9,116.5,115.8,234.7,249.6,235.2,131.7,130.7,182.2,144.9,97.6,56.6,2.3,100.3,139.7,220.9,616.9,335.9,167.1,104.9,55.5,113.8,107.3,96.6,111.7,95.2,93.8,88.4,73,75.6,85.5,75.4,65.7,56.6,75.9,86.3,38.5,71.5,70,64.2,94.7,79.3,73.9,145.8,74.7,214.3,66.5,41.7,43.8,53,34,44.4,47.6,105.7,92.7,87.5,86.6,263.9,114.3,116.7,131.9,103.8,89.2,139,115.8,109,197.7,203.1,252.4,311.2,135.7,146.8,192.2,962.4,126.9,165,89.6,145.4,60.8,148.8,169.6,150.9,1,125,153,84.2,72.2,88.1,52.7,322.3,40.5,92.4,140.4,176.5,220.9,211.6,217.7,684.7,104.1,102.2,117.4,107.3,71,73.6,118.8,103,147.5,354.2,58.1,10.8,41.3,82.3,83.6,98.2,90.4,96,88.5,101.7,75.9,71.9,65.2,65,101.4,107.5,65.6,7.8,74.8,69.8,101.6,286.6,72.4,69.1,58,58.7,105.5,144.9,554.7,2043.7,115.2,110.6,147.1,85.4,110.1,109.1,136.2,90,115.2,112.8,135.8,131.3,131.4,612.6,50.4,21.2,137.6,257.8,133,132.1,137,129.1,774.5,104.3,21.2,179.1,182,111.3,11.1,118.9,109.5,122.8,152.3,158.3,162.6,356.1,136.6,140.5,134.8,142.2,150.8,194.3,181.9,188.3,125.1,360.1,153.6,152.1,216.1,535.4,123.7,174.4,103.3,105.8,110,110.9,114.9,114.6,238.7,157.8,214.7,301.6,101.3,115.4,128.1,132.2,74.1,114.6,123.8,151.9,79.3,89.5,142.1,123.5,98.7,13.5,101.1,107.7,165.6,82.7,23.6,26.3,39.1,26,60.9,73.3,59.4,77.9,90.1,45,45.1,66.8,51.9,50.7,49.3,51.6,48.8,45,50.3,54.1,54.6,47.9,45.2,47.9,1094.2,65.3,48.5,46.8,33.2,92.3,89,41.3,40.4,56,113.1,166.3,173.9,72.3,93,71.7,79.5,86.5,60.1,51.6,78.9,80.6,92.8,95.1,65.1,55.5,53.2,66.9,42,52.7,40.1,53.7,53.6,65.7,53.5,52.9,43.6,47.6,42,52.3,55.8,53.8,65.1,80.5,66.1,53.1,44,46.5,45.6,49.6,39.7,40.4,39.9,42.2,94.1,94.8,49.3,45.2,44.7,45,37.9,37.4,36.5,1.4,39.1,41.5,42,39.4,37.2,61.4,54,62.6,57.1,51.5,56.9,101.7,205.7,207.9,52.8,54.2,50.4,49.8,53.4,52.8,66.9,62.3,94.6,46.7,47.4,40.2,41,39.2,41,71.3,71.8,125,65.3,62.5,55.9,63.9,78.8,45.6,53.3,38.8,36.5,40.7,38.8,54.2,53.3,76.4,219.7,71.3,73.2,54,53.5,46.9,47.8,52.1,49.3,34.5,35.7,122.8,124.4,72,81.5,41.7,41.4,66.8,66.4,99.2,120.4,65.7,66.8,78.7,81.7,53.9,55.5,514.6,45.9,46.4,92.9,44.9,47.4,48.9,45.9,66.7,66.4,79.9,280.6,278.5,86.8,86.2,88.9,84.9,67.8,65,96,114.7,73.6,502.6,61.2,59.6,104.7,106.7,59.3,60.2,60.4,59.6,437.6,436.8,54.3,31.3,73,39.4,40.3,39.1,40.7,53,41.4,44.2,45.8,47.7,45.1,66.7,65.9,66.9,65.2,62.9,70.5,62.4,34.3,33.1,55.9,53.3,7.5,51,59.9,64.9,31.4,1,35.6,113.2,1.1,18.9,519.4,118.6,13.9,0.9,99.9,49.1,0.9,172.7,181.1,388,230.4,60.6,110.2,112.1,88.4,122.3,115.8,109.7,73.3,111.4,96.8,53.8,0.6,13,56.8,0.7,42.1,351.6,23.6,99.6,51.9,66.2,63.8,40.6,141.8,131,102,91.6,89.5,20.3,71.7,49.6,54.4,50.4,52.4,26.9,35.4,67.9,142.2,78.8,19.2,104.4,102.4,100,62.2,73.2,123.9,118.6,93.7,137.8,0.3,39.1,1.7,120.3,32.5,29.9,28.4,159,19.9,21.7,20.4,19.1,23.8,26.7,74.4,30.9,19.7,14.6,15.1,14.5,18.2,18.3,15,16.3,17.3,14.7,15.1,11.4,11.4,10.6,15.4,19.8,32.3,33.7,33.4,54.9,46.1,36.2,38.9,32.4,35.8,28,22.2,17.5,17.1,15.4,18.1,12.5,16.2,12.1,14.2,16.3,16.9,14.7,14.2,14.4,16.4,14.7,15.4,40.3,13.9,14.5,9.9,15.1,11.1,11.9,12.9,13.2,71.4,47.1,64.8,65.5,52.1,60.3,84.4,118.6,31.2,84.6,66,78.1,68.9,28.9,139.3,755.4,117.2,68.1,69.5,68.1,70.7,47.2,49.1,50.3,53.3,159.1,169.3,95.3,49.5,57.9,58,55.7,49.5,83.5,75.4,73.8,92.9,59.2,55.4,54.3,102.4,154,433.5,104.4,89.7,103.6,104.4,78.5,80.7,153.4,64.7,78.4,153.8,96.3,99.1,92.2,87.7,403.2,5.5,68.2,181.6,90.7,50.6,80,70.5,83.9,77.6,153.7,166,94.8,106.5,134.9,135.8,164.9,166.6,185.7,184.3,178.9,52.5,126.5,163.2,223.2,223.4,125.5,129.3,159.8,130.8,130.9,26,267.5,339.1,256.2,216.4,266.4,179.5,141.1,156.3,92.1,76.6,78.6,64.1,104.4,69.3,46.7,51.7,94.3,91.4,55.2,75.3,103.8,119.3,63.5,106.2,66.3,75.3,118.9,91.9,80.1,198.9,120.5,36.5,177.7,76.4,71.8,94.6,102.3,92.7,129.3,109.9,50,135.5,79.7,79.7,134.6,94.1,111.7,80.8,81.1,79,79.7,108.5,106.9,65.7,71.5,128.9,79.9,28.4,52.5,236,0.1,106,114.3,107.5,38.4,80.2,48.4,44.1,49.3,446.4,485,558,213,210.8,133.6,128.8,125.4,116.6,94.3,94.9,192.2,62.3,71,69.9,69.1,69.4,54.8,54.7,65.5,64.7,164.4,69.7,71.5,124.5,110.9,68.5,76.3,90.2,68.8,79.6,43.7,44.6,42.5,44.1,66.8,16.4,77.9,79.2,51.3,93.5,53.3,59,62.6,59.1,58.4,64.7,58.1,56.4,65.8,66.6,69.8,73.9,89.4,86.8,86.5,76.6,85.3,83.6,79.5,71.6,73.1,74.8,101.9,102.4,480.3,124.3,126.3,121.1,119.9,86,87,116.4,111,224.8,105.4,33.2,127.5,137.7,133.2,264.5,266.3,61.9,37,18,18.6,20.4,20.7,20.5,20.5,41.3,38.9,20.7,25.5,25.7,26.9,26.4,24.8,26.7,26.2,15.6,7,163,65.7,55,22.2,19,18,16.7,16.4,12.2,10.9,16.9,13.4,2.4,24.1,26.5,103.8,51.8,12.9,13,12.9,12.8,13.2,13,13.1,12.7,13.2,12.9,13,13.2,12.9,13.1,12.8,13.1,13,12.8,13.1,13,13,13.1,25.9,26.1,104.1,25.9,20.9,5.3,12.9,12.9,12.9,13,12.9,12.8,17.2,13.9,15.4,14.7,14.2,14.3,15.1,11.2,11.4,13.5,13.8,14.1,14.1,15.5,10.8,11.8,10.5,18.6,35.3,33.4,42.6,22.8,27.7,25.7,25.7,51.4,51.9,51.9,207.8,153.6,316.3,58.9,55.1,0.5,22.4,12.8,12.9,12.6,13,13,12.6,12.9,12.9,13.1,12.8,12.9,13,25.8,177.8,68.9,32.5,99.7,51.8,26.1,25.8,12.9,12.8,13,12.9,12.9,12.9,12.1,11.5,10.2,45.9,26.4,25.4,52.2,52.1,102.7,104.4,103.3,104.4,51.8,25.7,25.6,26.1,25.8,25.7,25.7,26,25.6,25.9,25.7,25.3,25.8,25.8,25.6,25.9,25.5,25.5,26.2,26,51.7,51.9,64.7,19.7,96,103.6,52.2,51.5,51.6,51.9,51.8,51.9,51.7,51.7,46.5,56.5,103.5,104.4,51.7,51.7,25.8,26,12.8,13,12.9,13,13,13,13.1,13.1,12.4,13,13.5,12.9,13,12.9,12.8,13.3,12.9,12.8,13.2,13,13,13.2,13,13,13.3,12.9,12.9,13,13,12.9,13,12.9,12.8,13.5,13.4,12.9,12.8,13.3,13.1,12.9,12.7,26.3,26.2,51.2,59.8,40.1,22.4,13.2,13.2,12.4,13,13,12.8,12.9,25.9,25.4,31.4,23.8,25.2,26.4,25.5,25.5,26.2,25.8,51.7,103.5,25.2,26.2,25.5,25.8,25.8,26.3,51.4,206.7,27.2,73.5,2.4,51.4,51.4,25.6,25.5,25.7,51.8,25.6,26.4,33.3,1.3,42.8,25.7,25.6,52.1,50.8,51.7,51.8,51.3,51.8,54.8,92.2,115.1,207.3,207.1,103.1,51.8,310.4,51.6,51.8,51.4,52.1,51.3,52.3,51,51.8,52,51.3,41.9,9.8,207.4,206.4,206.2,103.8,103.5,103.8,103.4,103.5,103.5,103.3,25.8,25.9,25.8,25.4,25.8,26.3,25.3,25.8,25.8,26.1,25.6,25.9,25.6,26.2,25.6,25.6,25.9,25.8,25.7,25.3,26,24.5,27,26,25.8,25.7,25.8,25.8,26.1,26.3,26,25.7,25.5,26.2,25.8,25.5,26,26.3,25.3,26.1,25.6,25.7,25.9,25.9,26,25.7,26.1,25.2,26.4,25.8,25.1,25.8,26.2,26.6,24.9,21.5,4.2,26.1,48.5,37.1,40.7,53.6,52.2,26,26.2,25.9,27.8,24.6,25.9,26.2,26.6,25.7,26,26.3,26.5,25.9,26.6,26.3,27.3,27.9,26.4,33.3,22.6,25.9,26.2,25.8,26.2,25.7,25.9,25.9,25.8,25.9,24.6,25.9,25.9,26.3,25.6,207.3,51.7,25.9,26,25.7,25.8,26,25.9,25.8,25.7,26,28.2,108.1,206.6,104.2,103.2,206.1,52.4,25.7,25.8,26.1,25.9,25.2,26.9,26.2,25.9,25.7,26,25.8,26.2,25.8,26.1,25.9,26.1,27.3,26,25.9,25.9,25.8,26.3,25.9,25.5,26.2,26.1,26,25.8,25.6,26,26,26.3,27.4,27.5,27.8,25.8,25.9,105.3,90.4,13.1,52,26.1,25.7,308.2,17,106.2,103.7,52.6,51.4,25.6,25.8,26.1,25.6,25.7,25.9,25.5,25.8,25.8,25.5,26.1,25.9,25.5,26.1,25.5,25.9,25.6,25.8,25.5,25.7,26.1,25.9,25.6,25.9,25.6,26.1,25.5,26.2,25.9,25.9,25.8,103.8,51.7,78.2,90,52,51.8,19.2,20.1,25.8,19.6,31.7,26.4,51.7,51.9,51.9,26.1,25.8,25.9,25.9,26.1,25.9,25.8,25.8,25.8,25.9,26,25.9,27.1,27.1,26,26.5,26.3,26.1,26.1,26.2,52.3,52.6,52.2,51.6,52.1,52.5,51.5,52.7,52,52.1,52.3,52.6,51.7,104.2,104.2,104,103.7,104,51.9,12.2,39.8,51.9,52,103.6,109.2,151.3,214.8,51,51.8,25.9,26.2,25.4,26.4,26.5,151,29.5,26.5,26,26,26.1,26.2,25.9,25.9,26.2,26.1,25.9,26,25.9,25.9,26.1,26,26.2,26.1,26,26.1,25.7,26.3,25.7,26.9,25.8,26.1,28.1,28.2,29.7,26,25.9,26,25.9,26,26.1,25.7,26.8,26.4,26.5,26.3,26.5,26.9,26.9,53.3,53.1,55.8,211.7,105.9,26.4,26.4,26.9,26.6,27.7,27.7,27.4,27.3,28.4,26.4,26,26.3,26,26.1,26.8,26.3,27.3,25.5,26.6,26.3,27,26.7,17.3,22.7,26.7,26.6,27.9,29.1,28.3,26.2,22.2,3.7,26,26.1,26.2,25.9,26.6,25.9,26.2,26.4,26.3,26.3,13.1,13.1,26.7,26.2,26.6,26.2,27.1,26.8,26.6,27.6,28.4,26.4,28.8,26,26,26,26.3,25.9,26.2,25.9,26.2,26.2,26,26.4,28,20.8,30.3,26.2,25.8,26.4,26.1,26,26.1,26.3,26.2,26.2,26.3,26.6,26.3,26.6,26.1,26.6,26,26.7,26.3,26.6,27.7,27.6,29.9,26.5,25.9,52.4,104.2,30.2,179.3,104.6,25.9,209.9,210.8,367.9,24.7,2.3,62.7,10.9,236.9,102.4,196.5,3,42.4,27.7,27.8,24.6,24.6,28.8,28.8,26.3,26.5,42.7,998.9,32,26.3,26.1,25.7,25.7,26.4,27.4,27.1,27.2,27.2,27.2,23.4,23.6,26.2,26.2,26.4,26.3,26.8,26.8,52.5,106.7,103.2,24.7,82.2,8.1,96.5,485.1,104.5,46.9,160.5,52.3,26.1,29.1,25.9,26.1,26.2,25.8,26.1,26.1,26.2,26.1,26.1,25.6,26,26.2,26.2,25.9,25.8,415.3,26,25.4,25.9,25.6,26.1,25.9,25.8,26.1,26.1,25.7,25.8,25.8,26.2,25.6,25.8,26.2,25.6,25.9,25.9,25.6,26,26,17.9,8,26.5,25.3,25.7,25.6,20.6,31.3,26.7,24.8,25.7,26,25.9,26.1,25.9,25.9,26,25.9,25.5,26,26,25.8,25.9,26.1,25.7,25.9,26.1,25.6,25.9,26.2,25.8,25.7,26.3,26.3,26.2,25.9,26.1,208.3,103.9,104.3,26.1,26.2,25.9,26.2,26.1,26.3,25.9,26.1,26.1,26.1,26.2,26,26,26.1,26,26.2,26.2,25.9,25.9,26.4,26.5,25.7,25.9,26.3,26.3,26.1,26.2,25.9,26,25.8,5.2,20.6,26.3,26.3,26.1,26.1,26,26.1,26.5,26.5,25.8,26,208.5,170.3,59.1,111.7,104.2,34.3,24.1,4.3,74.1,1.5,42.9,47.7,3.7,104.5,109,151.5,208.6,52.8,52.4,53.9,52.4,52.5,51.9,52.4,51.9,52.1,52.4,52.3,52.4,52,52.2,52.4,52.1,52.3,52.2,52.4,52.1,52.5,53.7,52.4,53.9,55.6,51.8,103.8,97.2,51.4,51.2,51.6,51.4,25.9,25.6,25.8,26,25.9,22.1,3.5,25.8,26,25.8,25.9,26.4,26,25.6,26.1,25.8,25.6,25.7,25.9,25.6,26,26.2,26,11.4,15.1,26.1,25.8,26,25.7,26.2,26.5,25.4,26,27.3,26.1,27.7,28.1,25.8,25.7,25.9,25.6,25.7,25.7,25.7,25.6,25.8,25.6,26,26,25.9,25.8,26.3,103.7,103.6,51.9,51.8,51.5,51.4,55.8,34.7,25.8,25.7,25.7,25.4,26,26,26.1,25.2,26,26.1,25.9,25.6,26.2,25.9,26,26.1,25.9,25.9,25.9,25.8,25.9,52,51.7,51.9,26.1,26.1,25.7,25.7,26.3,26,25.8,26.2,25.5,26.1,26.1,26.6,429,416.4,422.4,416,52.2,25.9,26.3,26.3,25.9,25.8,26.2,26,26.2,25.9,26.6,25.8,25.9,26.5,35.8,29.4,26.4,26,26.5,25.5,25.9,26.3,25.8,26.3,27.4,26.3,28,28.6,26,25.9,25.9,26.2,25.9,25.9,25.9,25.7,26.3,25.9,25.9,25.9,26.1,26.1,25.8,26.2,25.8,26,26.1,25.8,9,17.3,25.8,25.8,26.3,25.8,26,26,26,26.1,25.9,26.1,26.1,26.2,26.1,26.1,25.9,26.1,2081.5,55,143.1,130.4,311.2,585.1,208.9,338.6,29,75.7,122.8,111.9,104.1,52,26.1,26,26.1,26.3,26.8,26.8,26,27.6,29.3,26,25.9,26.2,26.1,26.1,26.2,26,26.1,26.1,26.2,26,26.1,26.3,25.8,26.2,26,26.1,26.2,25.9,26,26.2,26.1,26.1,26.2,26.2,52.2,52.5,103.5,30.1,75.5,104.1,26.3,26.2,27.6,26.1,27.7,29,25.6,26.1,26.1,25.4,26.3,26,25.7,25.7,26,26,25.9,25.5,25.9,25.9,26,25.9,26,25.9,26.1,26.2,26,25.9,26.3,26.3,26.1,26.1,25.8,26.2,25.6,25.9,25.9,52.7,103.9,51.8,38.5,14.3,51.9,53.7,32.6,77.9,182.4,55.7,104.4,104.2,74.8,56,0.1,102.4,497.3,52.3,52.2,26,26,26.1,25.9,26.2,26.1,26.5,25.7,26.1,26.1,25.3,26.4,25.9,26.2,26,26,25.9,26.4,26.2,26,26.2,26.1,26.1,26.2,26.2,26,26,26.3,26.1,26.2,26.1,26.2,26.1,26.1,26.2,26.3,26.2,26.2,26.1,26.2,26,26.3,26.1,26.2,26,26.9,26.8,27.1,27,27.9,27.8,26.1,25.9,26.1,26,26.1,26,26.1,26.2,25.9,25.8,26.3,26.3,51.9,52.6,51.6,52.3,52.8,51.8,52.8,51.7,51.6,52.6,52.4,26.1,26.4,25.6,26.5,26.8,25.4,26.7,25.8,26.3,26.5,26.2,25.6,26.7,25.9,26.1,26.1,26.6,25.9,26.5,26.1,26.2,26.1,26.3,25.9,26.7,25.7,26.4,26.4,25.9,26.6,25.9,26,26.2,26.5,26.2,25.9,26.3,26.5,26.3,25.9,25.7,26.5,26.1,26,25.7,26.6,26.3,26.1,23.7,28.4,26.6,26.2,25.9,26.3,26.1,26.2,25.8,26.2,26.4,26.1,26.2,25.9,26.1,25.9,26.4,25.9,26.2,26.2,26.1,52.2,428,104.1,52.1,113.5,22.6,100,52.3,66.1,53,52.5,52.7,55.4,56.1,104.2,104.2,52,52.1,52.2,52.8,52,52.4,52.7,51.5,52.4,51.8,51.9,51.9,104.1,103.7,103.9,110.3,124.4,104.3,51.9,51.7,51.9,52.1,52.4,104.4,104.1,12,587.6,417.1,208.3,208.6,103.9,52,52.6,26.2,26.1,26.1,25.7,25.9,26.8,25.9,25.9,25.8,25.5,27.2,25,26.1,26.2,26.2,25.8,26,26,26.3,26.1,26.1,25.8,25.8,26.5,26.1,26.2,25.7,26.3,26,51.7,52.2,52,104.4,51.8,52.9,51.4,26.4,25.9,52.6,53,43,47.7,52.1,39,52.9,52.4,51.6,51.9,52.6,51,53.8,52.2,51.9,52,51.7,26.5,26.7,27.3,25.8,26.6,26.1,26.1,25.9,26,26.2,26.2,26,26,26.2,26.1,25.9,28.1,25.4,26.1,29.7,25.8,26.1,26.1,26.1,26.1,51.9,52.4,52.3,52.3,52.2,52.6,52.1,52.2,94,108.1,209.1,103.8,104.4,104.1,232.2,3.3,104.6,104.6,51.6,53.5,52.6,51.8,55.6,52.2,51.9,38.6,52.3,52,52.1,52.2,52.1,52,52,52.1,52.1,52,52.1,52.1,52.1,52.2,52.2,51.8,52.3,52.1,52.2,52.2,51.7,52.3,52.1,51.8,52.5,51.9,52.2,78.2,52,52.1,51.5,52.6,395.6,308.1,112.4,199.6,885.4,52,52.3,26,26,26,26,26,26.6,51.4,52.1,52.2,53.6,51.9,52.4,52,52.1,53.6,55.2,51.9,51.8,17.9,34.1,51.1,52.6,51.9,52.2,51.8,51.9,52.5,51.1,53.2,52,51.2,52.6,51.9,51.6,52.8,51.8,52.6,51.9,208.3,45.2,74.7,52.9,52.7,179.6,108.2,125.7,80.6,44.5,54.5,52.4,52.4,52.5,57.8,46.4,52.9,52.3,52.3,52.3,60.2,29.1,33.1,26.3,26.2,25.6,26.3,26.2,28,10.2,40.5,25.6,26,26.5,26.1,25.9,26.1,26.4,25.5,26.2,26.4,26.2,25.8,25.9,26.5,26.1,26,26.3,25.7,26.3,26,25.8,26.2,26.1,25.8,51.8,26.1,26.2,25.9,25.9,26.1,26,26,26.6,25.8,25.6,26.5,25.9,25.9,26,26.4,26.4,26,26,26,26,25.4,52.6,157.2,365.1,482.7,25.9,25.9,26,26.4,26.3,26.3,26,26.1,26.3,26,26.2,26.2,25.9,26.3,26.3,26.1,26.2,26.2,26.1,26.2,26.3,25.9,25.8,26.2,6,20.1,26.3,26.2,26,26.1,26,26.5,27.1,26.2,26.2,26,27.8,21.2,21.3,25.8,26.3,26,25.9,25.8,26,25.9,26,26,25.9,26,25.7,26,25.8,25.9,25.8,25.8,25.7,26.3,25.8,26.5,25.7,25.9,26.3,25.6,25.5,26.8,26.1,26,26.2,25.8,26,25.8,25.8,21.8,4,52.3,51.9,130.6,130.8,287.6,76.8,52.1,26.4,22.2,68.4,26.1,25.8,25.8,26.1,26.1,25.6,25.8,26.2,26.3,25.9,26,25.8,26,26.1,26.4,25.9,25.9,25.9,26.1,25.9,26.3,25.9,25.9,26.3,25.7,25.7,26.7,25.3,26,26.1,25.9,25.9,26,26.1,20.5,5.9,104.1,156.4,52,26,26,25.9,25.9,25.6,25.5,26.2,26.2,25.4,26,25.9,25.7,25.8,26.2,26.1,26,25.9,25.8,25.8,25.5,26.1,26.1,26.4,25.8,25.7,25.9,25.9,25.6,25.9,25.9,25.9,26,25.9,25.7,26.2,26.2,25.7,25.8,25.8,25.6,26.5,25.8,51.4,25.8,26,25.9,3.5,22.3,26,25.8,25.8,26.1,26.1,26,25.8,26.2,26,26.1,26,25.8,25.9,25.9,26.4,25.7,25.6,26.3,26,25.9,25.9,26.4,26.2,26.1,32.5,19.7,25.6,26.1,26.1,26.3,26,26.1,25.8,25.9,25.9,26,26.5,26.5,6.9,19,25.9,30.8,20.5,11.6,14,37.2,207.3,349,55.8,49.3,26.1,26.1,26.1,26,26,26.3,26,26.2,26.1,30.3,25.8,26.3,26,26.3,25.7,26.1,26,26,26.9,26,25.9,26.5,25.8,26,26.1,26.7,25.7,26.9,26,25.9,25.9,26.2,26.1,52.1,624.6,352.5,52,26.1,26,25.9,26.4,26.3,26,26.1,26.1,26.2,26,26.5,25.8,25.8,26.2,26.2,26,25.9,26.1,26.4,26,26.4,25.6,26.2,26.2,26.4,34,18.1,26.4,26.1,26.1,26,26.2,26,25.9,26.4,26.3,25.6,26,26.6,25.5,26.6,25.6,26.6,26.3,25.7,26.4,25.8,26.2,26.3,26.5,25.7,26.3,26.2,25.9,26.6,26.1,26.1,26.4,25.9,55.6,1845.5,469.1,833.2,300.4,11.3,51.8,51.8,52.5,155.5,78,73.6,95.9,65.1,104.2,52.2,52.4,51.9,51.8,52.3,52.2,51.3,52.1,52.5,52.1,52,53.4,52.7,52.6,341.4,208.9,128.2,338.2,340.2,156.7,104.6,104.6,156.9,156.6,312.8,75.6,28.6,104.5,104.3,52.4,52.3,25.8,25.9,25.9,26,26.3,25.5,17.7,8.5,26.1,26.3,26.1,26.3,26.2,26.1,26.2,26.2,18.9,7.3,26.9,26.9,26.2,27,27,27.2,27.3,25.9,26.1,26.3,25.9,26.1,25.8,25.9,25.9,26.3,26.3,25.4,26.1,26.2,25.8,25.8,26.2,26.2,25.9,26,26.2,26.1,26.2,26.2,25.9,25.9,25.8,26.7,26,26,25.8,26.1,26.3,26.3,52.1,158.4,608.8,374.8,375.7,15,208.8,208.2,105.3,85,136,209.5,208.4,52.9,52.2,51.9,52.4,52.2,77.3,30.6,322.9,25.7,1.1,51.7,26.5,25.5,26,26.3,26.1,26.1,26.2,26,26.1,26,26.3,175.5,269,406.1,25.3,26.2,26,26.4,26.1,26.4,26.3,26.1,26.2,26.2,26.7,25.8,26.2,26.3,26.5,24.5,1.4,26.6,21.8,27.3,26.2,26.5,26.5,25.8,26.6,26.1,13.1,13.9,26.3,25.8,10.3,1.7,39.4,25.6,26.5,6.2,19.8,25.8,12.9,12.9,13,13.1,12.9,13,12.9,12.9,13,12.8,13.2,13.1,13.1,13,52.3,65.1,39.6,52,52.4,13.1,13,13,13,13,18.6,7.9,13,13.1,13.2,13,19.1,20.3,13.3,13.1,13,13.2,13,13.2,13.1,13.2,13,13.4,13,13.2,13.1,13.2,13.1,13,13.1,13.3,13.2,13.2,13,13,13.4,13.3,13.1,13,13,13.1,13.2,13.1,13.2,13.1,13.2,13.2,13.1,13.1,11.4,13,11.5,1.7,13.2,13.3,26.1,26.1,26.1,188.7,12.8,101.5,153.6,25.5,25.5,30.1,19.2,21.4,17.4,24.1,19.1,52.2,30.4,47,36.7,24.8,51.2,51.7,52.1,102.4,53.2,51.6,51.7,51.6,51.7,51.7,51.8,51.7,51.9,51.8,54.7,50.3,50.2,51.9,51.8,51.6,51.6,51.4,51.9,51.9,51.8,51.8,51.5,51.7,51.3,52.1,52.3,51.7,51.7,52.1,50.9,67.8,36.2,51.3,51.4,52.6,50.4,52.7,51.2,51.4,52.5,50.9,52.3,50.9,51.6,52.2,51.8,52.3,51.5,52.6,426.8,5.3,407.7,103.7,51.8,51.8,51.7,51.7,51.9,51.6,51.3,51.2,51.9,51,52.9,50.8,18.7,21.1,5.6,46.1,51.4,51.8,51.9,51.8,51.7,51.8,55.3,47.6,52.9,51.2,50.3,53.1,52.1,52.1,52.3,51.5,22,29.8,52.5,52,52.4,51,49,3.1,51.7,52,51.9,56.9,101.1,52,51.8,52.4,60.9,54.1,51.5,51.8,52.2,51.3,53.6,0.1,45.8,52,26,26.1,25.6,25.6,51.8,51.6,52,51.6,51.6,51.7,53.6,53,51.4,51.8,52.1,51.5,51.6,52.5,51.1,51.7,103.5,103.5,104.1,51.7,51.8,51.5,51.7,51.2,51.8,56.2,52.2,51.7,52,52.4,25.9,26,26,25.8,17,9.2,26.1,23.7,2.1,25.6,26.4,25,52.1,51.9,52,42.8,8.9,51.9,41.8,5,57,52,51.5,52.2,52.7,51.1,51.6,52.3,51.4,52.2,52.1,53.6,52.5,52.2,52.1,52.2,25.7,26.2,26.3,26.3,48.8,48.8,52.3,52,52,28.2,23.1,53.4,52.2,52.2,52.3,130.5,104.3,104.6,49.4,52.1,52.1,52.1,52.2,52,52.3,52.2,52.1,51.8,52.4,52.3,70.5,56.6,70.9,66.7,31.1,215.3,42.3,115.2,104.9,51.8,60.1,33,19.1,25.5,26.4,52,25.7,25.7,26,26,26.6,26.7,52.2,52.2,53.4,51.1,51.9,54.6,53,51.4,58.5,22.1,77,103.4,124.3,108,26.1,26.1,25.9,26.2,26.2,27,25.6,26.6,25.7,25.8,25.7,25.9,25.5,26.2,25.7,24.9,26.4,27,23.1,3.3,23,26.2,26.3,26,26,25.6,26.9,26.1,26.9,25.8,25.6,26.1,26.4,17.9,8,25.8,26.5,26.4,25.6,26.2,26.7,26,26.2,25.9,26,25.9,26.2,25.8,26.2,26.4,25.1,26.2,25.9,25.4,25.9,27,25.9,26,25.9,26.6,25.7,26.4,26.1,25.8,26.5,26,21.1,4.5,27,24.8,26.4,25.9,26.5,25.9,25.9,51.6,51.5,8.4,43.5,51.8,57.1,47.8,52.7,52.4,26.1,26.1,26.4,26.2,26.2,26.1,26,26,26,26.6,26.7,25.8,25.8,26,26.1,26.4,26.4,25.7,25.8,26,26,26.7,26.5,26.4,26.4,25.5,25.6,25.5,26.1,26.1,52.3,25.1,26.5,25.8,25.7,26,26,26.4,25.6,25.5,26.1,26.1,26.1,26.2,25.7,25.5,26.1,25.7,25.8,51.5,51.7,51.8,51.1,51.4,51.3,417.8,74.6,339.4,423.4,106.1,106.3,52.1,52.3,52.2,52.4,52,51.7,51.6,51.9,52,51.5,51.4,52.3,52.7,51.6,51.6,52.1,52.4,51.9,52.5,14.9,8.1,29.3,52.3,7.6,5.9,38,52.6,52.6,26.2,25.8,52.3,51.5,54.3,53,42.9,62.9,53.3,53.5,20.8,21.5,64.3,53.2,53.2,52.7,53.2,52.3,53.1,53.3,53.1,52.6,52.9,53.4,52.8,53,53.3,52.7,52.9,53.8,52.7,53.3,53.3,52.9,53.7,54.3,53.8,53.7,53.4,54,53.8,53.8,53.8,54.2,53.6,53.7,52.4,52.2,52.4,53.4,52.3,53.1,52.7,52.8,52.4,52.2,51.9,51.2,51.7,51.7,51.7,103.4,85.1,123.7,52.1,52.2,52.2,400.1,16.3,209.5,209.1,59.7,149.2,52.6,52.6,51.8,52.6,52.5,52.6,52.1,51.8,51.9,51.8,52.1,52.2,51.8,51.7,51.8,52.2,52.2,52.1,52,51.7,51.7,51.9,52.3,52.1,52.3,52.3,51.8,52.1,52.2,52.2,50.9,52.3,52.1,52.1,102.2,33.1,62.8,300,100.1,51.5,103.4,51.4,51.5,51.7,51.7,51.7,51.8,51.7,51.4,51.8,51.8,14.9,37,51.6,51.1,51.9,51.6,51.7,25.4,25.9,51.6,51.6,51.3,51.5,51.7,51.8,51.7,51.5,52.7,52.2,53.3,52.7,52.7,53,53.1,52.5,52.5,52.7,52.9,52.6,104.5,207.1,621.5,97.8,24.1,59.6,21.2,51,51,51,50,50,51.3,38.2,64.4,51.7,50.9,51.9,51.8,50.7,50.2,50,50.9,51,52.2,52.1,50.1,51,50.1,50.1,50.3,50.1,50.2,49.9,50,50.2,50.3,50.3,50.2,50.2,100.8,34.3,66.3,206.2,63.2,117.4,23.2,202.7,202.1,51.3,50.1,52.6,51,51.2,21,34.2,50.9,51.9,51.6,50.6,52.6,51.6,51.7,50.9,50.9,51.2,50.9,50.6,50.8,50.9,50.6,50.9,50.8,50.5,51.6,51.5,51.7,50.8,51.5,51.7,50.8,51.9,51.4,51,48.5,52.3,53.2,53.1,39.2,13.2,52.5,52.8,52.9,53,52.9,53,53.1,210.3,209.5,210.4,416.6,207.7,208.5,194.8,13.6,208.7,209.7,52.4,52.5,52.1,52.1,51.9,52.6,104.2,52.5,52.6,52.2,52.2,52.2,52,52.1,52.4,52.1,52.9,52.7,52.8,52.8,52.4,52.7,52.1,52.7,52.6,52.3,52.2,52.8,52.1,52.6,52.6,52.2,52.5,52.2,52.9,52.5,52.4,52.4,52.4,52.5,52.3,36.2,15.9,52.7,53.2,52.6,52.5,52.8,52.7,52.7,105.5,105.1,284.3,136.2,105.6,52.3,49,56.3,52.7,52.4,52.5,52.5,52.6,52.3,52.7,52.2,51.9,52.4,51.9,52.3,52.2,52.3,52,51.9,52.3,52.2,52.1,52.2,33.4,6.3,12.3,52.2,52.3,52.3,51.7,52.3,52.3,107.2,49.2,52.2,51.9,52.6,52,51.8,52.4,52.4,51.7,52.3,52.6,50.8,2.1,103,208.3,174.2,33.8,104.3,52,52.2,52.4,52.1,52.4,52.6,52.6,52.6,52.4,53.3,52.3,52.6,52.5,52.7,52.5,52.6,52.7,52.3,52.3,53.1,52.7,52.8,105.4,52.2,52.4,52.4,52.5,52.3,52.4,52.1,52.6,52.1,53,52.4,52.4,52.6,52.4,52.4,52.5,52.5,52.5,52.4,52.4,52.2,52.3,106,212,106.2,106.2,53.3,53.1,53.2,52.7,16.1,37.5,51.4,52.3,52.3,51.9,31,21.4,52.3,52.2,52.2,52.7,52,52.2,51.9,52.4,51.9,51.6,26.8,77.3,103.7,102.8,105.3,208.4,208,52.2,52.2,52.7,52.2,52.9,52.3,52.3,52.7,52.9,52.4,52.6,52.8,52.6,52.6,25.7,26.7,52.8,52.5,52.6,52.4,52.6,52.7,52.1,52,52.6,52.6,52.6,52.6,52.3,53,52.4,52.6,52.4,52.4,52.9,104.1,209.2,104.5,105.4,52.5,52.5,52.5,52.6,52.4,52.5,52.7,52.7,52.1,52.6,52.5,52.6,52.9,52.4,52.4,52.5,52.6,52.8,53.1,52.7,52.7,52.2,52.3,52.9,52.5,52.2,52.6,52.5,52.4,52.2,52.5,52.9,52.5,52.6,52.2,52.6,52.1,53.1,420.9,210.6,105.3,34.8,17.7,52.8,52.4,52.4,52.8,52.5,52.6,52.5,52.6,52.9,52.6,52.8,52.6,53.1,53,52.3,52.7,52.7,52.3,52.8,52.9,52.6,52.7,52.6,52.9,52.8,52.6,200.3,196.7,209.3,105.4,52.9,52.4,106.9,105.2,52.5,52.7,51.9,52.6,52.3,53,52.3,52.6,52,52.3,52.6,17.4,35.2,52.5,52.4,52.8,52.8,52.5,52.6,52.5,52.5,52.9,52.3,51.8,53.3,52.2,52.7,52.3,52.3,52.9,52.2,52.5,52.6,52.6,52.5,52.6,52.4,52.5,52.7,52,53,52.3,52.4,53.1,13.2,39.1,3,49.9,19,33.5,52.4,52.5,52.5,52.4,52.7,52.7,105.3,209.6,165.1,84.4,52.5,52.8,52.3,52.4,52.8,52.5,52.2,52.5,52.5,52.9,52.3,52.7,52.3,51.8,53.4,52.2,52.5,52.8,52.2,52.4,52.9,52.8,52.9,52.5,52.7,105.2,105.8,106.4,108.4,53.4,53.8,53.5,53.6,53.7,53.7,53.7,53.6,53.9,53.5,54.6,54.5,55,54.5,54.9,54.9,55.6,52,51.4,51.3,51.3,50.6,50.3,50.7,50.9,51,51.1,51,50.9,50.7,50.7,51,89.4,12.9,203.6,50.9,50.9,50.9,50.8,51.1,50.9,51,50.9,51,50.2,48,51,50.8,50.4,50.9,12,13.2,50.6,10.3,6.2,7.6,4.8,23.3,18.5,31.9,51.4,52.1,51.5,51.3,51.5,8.6,43.4,51.5,51.6,51.3,52.7,50.3,51.7,51,52,51.2,51.5,51,51.3,51.4,51.3,51.7,51.9,51.3,51.5,51.5,51.6,52.3,51.8,51.6,51.7,18.4,33.3,51.6,51.4,51.8,51.4,51.6,51.8,51.7,51.2,51.5,51.4,46.8,46.9,51.5,51.7,51.5,51.1,51.6,51.9,20.7,83,52.3,51.7,51.8,51.9,52.1,52,51.9,52.1,52.7,51.6,51.7,26.6,25.7,52.1,52.3,51.4,45.9,36.1,2.1,45.2,51.8,51.9,52.3,52.1,65.1,49.8,53.7,52.4,52,52.1,31.5,21.1,52.1,51.8,51.8,51.8,51.7,52,57.3,46.8,51.8,51.9,51.9,51.8,51.5,52,52.1,52.1,52.7,52.1,52,52,52.1,104.9,209.4,207.7,208.5,208.9,210.4,209.2,209.3,209.8,209.3,208.1,207.4,103.1,52.2,52,51.8,51.6,52,52,51.6,52.1,51.9,51.8,51.6,52.1,51.8,52.8,51.9,52.1,52.3,52.3,52.4,52.3,52.7,52.5,50.7,52.3,51.7,51.9,51.5,29.5,22.6,52.3,51.7,52.3,51.9,52,51.8,51.9,52,52.3,52.2,52.1,52.5,52.8,51.9,52.3,52.2,52.2,52.2,51.9,39.1,12.6,52.4,52.2,52.1,52.1,52.2,51.7,52.4,51.6,51.5,52.2,51.8,51.6,51.7,52.9,52,51.7,52.1,52.3,52,52.4,52.2,51.6,52,52.1,52,52.2,52.1,52.2,51.9,51.5,52.4,52,52.1,52.1,52.1,52.1,52.2,104.1,52.9,51.9,51.9,52.3,52.1,52.3,52.2,52.4,52.5,51.9,52.3,52.5,51.9,52.2,52.3,52.1,52.3,52.4,52.4,52.3,52.1,52.3,52.2,52.3,52.7,51.8,52.2,52.3,52.2,52.1,52.6,52.3,52.2,52.4,51.7,52.1,52.2,52,52.1,52.3,16.8,35.5,51.5,52.4,52.7,51.9,51.9,52,51.9,52.5,52.4,52.1,52.3,52.4,52,51.9,52.5,52.5,51.4,51.5,51.7,51.7,52.1,52.1,52.1,52.1,51.7,52.6,51.8,52.4,52.2,52.2,51.8,51.8,52,52.1,52.4,52.3,52.2,52.2,51.8,51.9,52.7,52.1,51.8,52.5,51.1,53.7,51.9,51.6,51.7,52.1,52.8,52.3,52.2,52.3,52.3,52.6,52.6,52.1,52.1,30.2,22.6,53.3,54.2,54.2,54.4,54.4,53.7,55.1,59.3,48.5,54,54.1,54.4,55,55,54,54.2,53.7,53.7,51.2,51.9,52,51.5,52.3,52,52.1,52.2,51.8,52.3,104.2,104.1,104.1,103.3,104.5,104.6,104.3,104.2,103.6,104.9,103.4,104,103.3,103.3,103.8,51.6,51.5,52.4,52.6,51.8,51.9,51.7,52.3,52.1,26.4,25.8,52,52.2,51.6,52.2,51.6,51.8,52,51.9,52,52.1,105.2,46.3,57,103.5,51.8,51.8,52.5,52.2,52.6,52.7,52.3,52.5,52.5,52.8,51.7,52.3,52.5,50.7,50.7,53.7,53.7,52.1,52.4,52.4,51.8,52,51.5,52,52.1,52.1,52.1,52.1,52.1,52.3,52.4,104.2,59.9,44.6,208.3,207.4,52.4,52.5,52.5,52.6,52.4,52.6,52.6,52.8,52.3,52.6,52.9,52.2,52.4,52.2,52.4,52.4,52.4,51.6,52.4,52.3,52.6,51.8,52.3,52.5,52.3,52.8,52.3,52.5,52.6,52.8,52.3,52.3,52.8,51.7,52.7,52.1,52.2,52,52.2,51.9,52,51.9,51.9,51.7,52.6,52.6,52.1,52,52.1,52.2,104.4,104.4,104.2,104.3,104.4,104.2,417.7,418.2,218.2,199.3,105.1,105.1,208.3,209.4,104,104.5,187.2,1.9,19.5,104.5,52.7,52.9,28.5,49.5,52.2,52.3,52.4,52.5,73.1,57.7,52,52.2,47.5,51.9,52.6,52,52,52.8,51.9,195.3,208.9,417.2,91.1,115.5,8.2,409.4,419.9,419.2,52.3,52.3,52.2,52.2,52.3,52.7,4.3,47.8,52.1,52.2,52.1,52.4,52.2,52.2,52.4,52.4,51.7,51.9,52.3,52.2,52.3,52.8,51.7,52.5,50.1,53.7,53.6,52.6,52.7,105.4,105.4,52.7,52.7,52.7,52.8,100,5.8,52.6,52.6,52.7,52.5,52.8,52.9,52.7,52.8,52.8,32.7,23.8,48.6,52.6,53.3,52.5,52.6,52.7,52.8,52.8,52.9,52.9,209.5,209.5,453.2,174.7,52.3,52.3,52.1,52.2,52.4,52.6,52.4,52.5,52,52.4,52.8,52.3,52.6,52.2,52.1,52.2,52,55,57.2,57,57.3,114.1,53.4,52,53,55.9,56.9,56.9,58.4,58.5,58.5,58.5,44.5,13.4,117,57.8,57.7,57.3,57.9,57.8,57.5,58.3,56.6,57.5,56.8,57.7,52.6,52.8,51.9,52,52.3,52.4,52.2,52.3,52.4,52.4,52.1,52.9,51.6,52.6,52.1,52.7,51.9,52.3,52.4,52.3,52.5,52.2,52.3,52.3,52.5,52.5,52.5,52.6,104.1,52,52.2,52.2,52.3,52.3,52.3,52.3,52.4,52.1,51.8,52,52.2,52,52.2,52.3,52.5,52.1,52.1,52.6,52.8,104,104.8,104.7,104.7,104.9,104.7,105,103.8,1.8,107,41.4,8,52.4,29,28.8,77.5,92.6,106.9,45,45.3,53.1,1.8,47.5,25.6,25.8,18.1,33.7,25.7,25.5,25.3,25.4,30.7,30.6,25.5,25.4,50.9,53.3,51.7,116.1,103.3,103.7,103.5,51.6,51.8,51.5,51.5,51.7,51.8,51.9,51.5,51.7,51.7,51.8,51.9,51.5,51.7,51.9,51.5,51.6,52,51.7,51.3,52,51.9,51.7,51.8,51.7,51.8,52.1,51.5,52,52.2,51.3,51.5,51.5,51.8,51.6,51.4,51.6,43.4,60.2,52,51.4,51.8,51.7,51.3,51.4,51.4,51.4,15,38.3,51.3,52.1,51.9,52,51.6,51.9,51.7,51.8,51.9,51.3,58.7,48.1,48.1,49.7,44.8,52.5,51.7,51.5,51.9,52.2,51.5,52,51.9,51.9,51.8,11.3,39.4,1.5,23.1,28.1,51.6,50.8,50.8,52.1,51.9,74.4,55.2,51.6,51.5,51.2,41.6,47.8,52.7,52.8,52,103.6,103.8,51.7,51.7,51.9,51.9,51.6,51.9,51.6,51.7,51.6,51.6,51.8,52,52.1,51.8,51.5,51.6,51.8,52,51.8,51.8,52,51.5,51.8,52.5,63.7,195.3,52.1,51.5,25.7,26,26,26.1,25.6,25.2,26.3,14.1,12.1,25.9,26.2,25.8,25.8,26,25.8,25.4,26.8,25.7,25.8,26.1,26.2,25.6,26.1,26.3,25.5,26.1,25.5,26.1,26.1,25.9,25.9,25.9,25.9,25.8,25.9,25.9,25.7,26.2,26,25.8,25.9,25.9,49.7,49.8,107,103.1,103.5,51.7,51.8,51.7,51.9,51.9,51.8,51.9,52,51.9,51.9,51.9,119.2,102.4,102.3,103.3,52.1,52.1,51.9,51.9,51.8,51.9,51.8,51.8,103.6,103.8,76.7,104.7,103.6,103.5,207.2,85.6,4.9,2.9,5,97.3,208.9,26.1,26.2,30.2,0.5,21.5,26,52.1,26.6,17.4,34.2,26,26.1,25.8,25.4,25.9,11.7,13.9,12.4,13.3,25.8,26.6,25.7,19.2,6.7,25.9,26.2,3.4,8.4,13.2,25.6,26.4,26.1,26.2,25.7,26.1,26,26.1,26,16.6,9.6,11.2,14.8,19.7,6.2,11.1,14.7,24.6,14.3,27.3,9.6,36.1,31.6,37.8,8.1,26.4,1.7,17,26.1,26,26.1,21.1,1.5,3.5,26,25.8,25.8,26.8,26.1,26,26.3,25.9,26.5,25.7,26.2,26.1,26,25.9,26,2.2,50.3,104.1,49.5,49.6,45.4,40.5,18.4,3.7,1.8,467.1,0.4,43,12.9,6.5,18.4,41.4,31.8,30.5,65,0.2,30,0.5,27,0.4,17.2,0.2,29,25.6,26.3,26.6,25.5,8.4,17.9,26.1,26.8,15.6,35.7,26.2,2.5,23.4,26.2,26,26.2,25.9,26.1,39.4,11,40.8,104.1,46.4,181.2,85,207.9,95.6,106.7,201.7,207.3,101.6,54.6,52.4,26.2,26.3,25.8,25.7,26.1,26.2,26.2,26.1,24.8,24.8,27.8,27.6,26,26.1,26.1,26.2,26.4,52.3,23.5,48.1,25.9,25.9,26.1,25.7,25.9,26.1,35.9,28.2,26.2,25.8,26.3,26.1,26,26.3,25.7,26.2,26.3,25.8,26.4,26.3,26.1,25.9,8.4,42.4,27.7,25.5,25.5,26.3,26.5,26.3,26.3,26.2,26.3,43.9,46.6,46.7,52,51.6,51.9,51.5,51.7,52.4,54.1,19.8,253.3,202.3,52,52,52.2,50.9,50.8,51.8,51.8,51.9,25.9,27.5,75.4,65.6,217.6,54.2,51.9,52.4,51.5,100.4,3.7,104,104.8,103.4,104.6,104.7,51.4,52.6,61.8,42.1,58.5,45.9,52.3,52.1,52.4,52.3,52.5,52.2,52.2,52.7,51.9,52.5,52.3,52.1,104.7,55,69.3,201.5,175.5,234.1,11.8,80.8,62.6,1.1,26.8,5.3,23.6,1.2,31,1.3,55.6,52.4,37.5,24,29,97.9,6.4,104.5,39.8,45.1,2.1,137.3,62.3,52,51.8,52.5,25.6,26,25.8,25.9,25.9,25.9,25.8,26,25.9,25.9,25.6,25.7,26.2,25.9,26,25.9,25.9,25.9,26.1,26,25.8,25.9,25.9,25.9,25.9,26,25.9,26,26.1,26,26,26,26,26,25.9,25.9,33.9,26.1,26.1,26.2,52.5,52.3,13.1,54.5,29.5,31.9,28.6,52.7,52.4,26.1,26.2,26.6,26.3,26.4,26.6,26.4,26.7,26.3,26.1,26.2,26.8,25.8,25.6,26.1,25.8,26.2,26.4,26.2,77.9,26.1,26.1,51.6,25.8,26.2,25.9,25.8,26.3,26.1,26.2,25.6,26.3,25.4,26.3,25.8,19.4,1.5,32.3,17.4,7.1,26.6,25.6,26.1,25.9,26.2,26.1,25.3,26,26.1,25.7,25.8,26.2,26.2,25.8,25.8,26.2,26,25.8,25.9,52.8,105.2,52.8,52.7,27.3,27.2,27.4,27.3,27,26.3,28.4,25.7,27.6,27.5,59.2,40.2,48.8,50.3,40.7,37.3,60.1,36.5,28.6,52.9,50.6,51.3,212.2,65.3,102.3,94.3,46.8,46.2,65.4,60,4.5,103.7,45.7,45,90.2,45.1,45.2,45.2,45.5,103.6,104.3,180.3,69.4,111.6,41.5,49,90.4,64.3,64.4,39.1,39.1,26,25.8,25.9,25.8,51.6,51.4,32.9,32.6,65.3,38.7,38.6,38.6,38.5,51.7,51.6,52,51.8,32.5,32.3,32.5,32.3,53.1,54.2,13.5,21.5,46.4,38.9,141.3,46.5,52,52,54.7,54.6,76.5,76.1,152.5,140.9,69.5,71.9,62,62.8,55.3,76.9,76.7,78.6,90.5,57,0.1,33.9,252.7,53.1,56.2,43,49.8,44.5,63.5,46.2,77.7,51.7,51.6,52,51.9,103.9,51.6,51.7,77.8,78.3,51.3,51.2,78.5,78.4,90,471.9,135.7,98,112.2,112.2,40.7,47.2,16.9,40.4,31,13.9,48.8,62.2,37.8,27.2,36.5,31.6,34.1,59.5,49.2,23.2,21.9,44.3,49.4,76.8,72.2,72.5,72.6,51.8,24.5,76.4,103.6,77.7,78.2,103.1,103.9,730.8,70.7,809.6,407.1,202.5,204.9,143,143.2,89.2,103.4,88,87.8,95.5,95.2,91,33.8,57.4,77,77.4,72.1,71.9,61.2,61.2,42.6,42.6,45.2,45.4,78,78.1,166.7,103.4,103.4,90.7,129.1,104,91.2,83.7,48.4,48.3,71.5,76.2,54.8,45.1,45,78.8,38.6,38.8,127.2,6.4,38.6,44.4,44,45.8,45.5,38.6,38.9,77.8,77.9,75.4,40.2,40.1,52.4,52.5,52.6,68.6,36.7,36.8,143.3,151,52.6,98.7,235.7,116.7,58.9,59,49.8,67.4,46.3,46.4,47.4,47.4,98.9,90.6,213.2,142.8,225.6,101.9,65.4,74.1,70.2,90.7,35.1,35.6,34.9,35.1,35.4,35.4,18.4,16.2,34.8,35.3,27.7,8,58.9,35.2,35,70.5,35.1,34.8,48.5,35.3,35.3,35.1,35.4,64.4,64.4,19,45.3,64.4,138.3,68.6,68.6,58.4,29.2,29.2,52.5,52.5,32.2,32.1,32.4,32.2,53.1,51.6,38.6,38.5,25.1,24.9,38.9,38.6,52.9,30,29.7,59.5,32.3,45.2,52.7,52.2,52.3,122.1,53.6,26.7,26.6,5.9,50.7,56.4,27.6,40.7,33.9,34.1,42.1,42.1,66.4,41.3,41.3,39,39.1,38.3,38.4,54.6,54.4,51.4,57.5,43.3,43.3,42,43.5,42,41.9,32.5,32.4,46.9,46.6,64.6,64.6,16.9,60.1,58.6,58.5,58.6,58.3,64.7,64.6,77.5,38.9,38.9,64.8,65,91,91.2,71.2,71.2,136.5,64.9,64.9,116.1,121.6,124.6,104.6,104.3,150.9,75.6,75.3,74.9,74.7,74.8,74.9,77,84.5,84.8,84.3,129.9,51.6,104.4,103.9,849.3,26.7,89.6,84.1,38.8,34.2,25.9,26.1,38.3,38.4,65.2,32.6,32.6,25.8,25.8,53.1,51.4,25.7,25.7,38.9,38.9,38.8,38.8,42.5,42.5,75.3,34.8,34.6,53.5,53.7,35.1,35.5,64.9,38.5,53.1,64.1,43.9,46,48.4,48.5,45.3,45.3,45.1,45.1,51.8,52,91,25.3,52.4,39.8,37.5,91.1,65.4,69,38.9,39.1,84.6,84.3,166.1,2.7,168.6,84.4,84.3,65.2,65.1,65.1,32.7,32.6,64.5,32.2,32,42.3,42.3,83.2,20.2,48.7,42.5,39.1,39,78.1,39,39.1,58.9,90.2,37.1,53.1,77.4,5.1,108.5,101.7,202.3,196.3,159.5,452.1,214.5,306.4,297.7,354.1,189.6,176.8,95.4,148.1,67.2,54,78.8,51.6,39.1,77.9,29.5,37.4,34.9,48.7,41.7,43.3,127.4,63.7,63.9,63.9,64.2,70.7,35.4,35.5,84.2,84.3,53.1,53.3,52.5,52.6,68,68,67.9,68.2,100.7,98.7,200.2,200.7,50.2,50.1,50.3,50.3,49,49.1,50.6,51,46.1,46.3,56.8,58.2,47.3,47.5,66,58.1,19.8,86.5,76.6,68.5,69.1,722,16.7,175.1,95,107.1,121.7,59.9,59.7,57.4,57.7,62.8,62.9,52.6,52.5,52.8,52.8,57.8,58,58.1,58.3,42.5,42.6,51.3,51.4,40.2,40.2,40.7,40.9,44.6,45,90.4,89.1,44.7,44.3,409.2,131.5,29.7,80.7,81,106.1,106.4,106,106.4,67.9,67.9,61.7,61.7,55.4,55.7,89.1,88.7,92,92.9,121.7,118.5,115.5,105.9,116.8,58.1,8.6,1.4,48.3,100.2,50.5,1.3,48.9,201.9,199.5,0.9,202.1,245.7,58.2,1,61.7,62.8,67.1,19.1,292,0.7,99.8,41.9,41.9,41.3,41.6,38,38,38.3,35.5,79,39.8,38.8,42.7,44.4,63.4,32,32.3,66.8,66.5,60.6,42.6,56.8,28.6,28.5,39.5,39.6,44.6,45,89.9,57.5,57.9,58.1,65.7,15.8,65.9,75.3,146.9,33.9,272,577.6,119,54.6,54.6,55.1,55.3,55.3,27.6,27.8,52.2,43.2,9.1,28.7,28.6,57.8,50.9,50.9,29,28.9,28.8,28.7,58.9,58.4,42.4,81.1,33.1,32.9,32.8,26,7.1,66,33.4,33.5,35.1,35.4,41.3,58.9,58.9,66.5,66.6,158,79.1,79.1,59.7,59.3,62.2,61.9,32.5,32.4,32.3,32.4,70.2,35.1,35,39,38.9,61.9,77.5,48.6,48.4,42.3,42.3,77.1,77.5,126.9,70.1,70.9,72.8,36.1,36.6,74.7,74.5,98.4,101.5,93.2,46.6,46.5,141.9,148.5,143.5,71.8,71.9,60.4,60.8,81.7,40.9,40.9,147.2,68.9,69.6,8.6,27.3,142.4,45.8,72.4,81.9,82.2,43.3,43.5,98.2,112.1,56.5,79.9,51.1,50.9,76,76.4,44.7,45.1,91.3,178.7,264.2,94.2,50.7,50.7,256.1,259.8,54.2,54.9,35.7,35.7,35.7,35.9,34.1,34.5,68.8,41.8,42,40.6,41.5,30.4,24.6,25.3,51.7,48.3,48.6,52.9,39.5,40.4,33.2,33.7,35.8,35.6,851.1,95.8,50.8,50.6,56,56.9,48.6,3,51.9,56.9,56.9,46.8,5.3,52.2,32.2,32.4,64.2,50.6,50.9,50.3,50.4,78.9,79,67.5,68.1,257.8,8.7,61.6,61.7,58.4,58.8,36,37.4,74.6,59.4,59.6,55.8,56.2,55.5,39.2,16,37.8,5.3,170.5,81.3,73.7,56.7,285.8,13.7,52.9,53.1,54.9,54.4,48.3,47.8,53.2,52.7,67.1,65,36.3,36.8,72.7,69.1,66.6,80.8,80.8,39.4,39.8,38.7,39.5,57.3,57.8,56.5,56.8,59,59.1,59.1,59.7,441.1,220.5,55.4,55.2,55.2,55.4,49.9,49.4,99.5,199.9,396.9,24.2,69.3,33.5,33.8,140.1,49.4,56.4,30.2,28.2,57.4,54.3,54.2,48.8,55.9,61.1,54.8,52.8,54.3,27.7,27.4,55.2,55.5,26.9,27.1,53.2,27.3,27.2,51.5,55.8,105.4,106,320.9,159.5,160,187.1,39.7,39.7,41.1,62.2,82.3,92.9,42.6,42.2,43,42.8,49.7,48.9,53.1,5.1,59.2,61.3,61.5,70.9,67.8,62.1,65.3,66.2,78,94.4,83.7,25.7,240.5,112.2,52.5,52.5,43.3,35.7,38.7,38.4,74.3,67.9,40.7,39.7,19.7,19.9,35.4,39.2,40.3,39.8,39.9,53.4,55,52,52.4,31.8,31.7,61.4,63,31.8,31.3,104,12.2,44.8,57.5,56.2,55.8,59.6,59.5,68,34.3,34.1,51,50.8,101.5,186,550.8,550.6,95.4,47.3,47.2,45.3,45.6,45.4,45.1,62.6,62.8,109.4,54.6,54.5,113,28.6,28,56.6,59.2,59.5,58.6,58.9,39.2,88.1,89.2,47.7,48.1,49,48.9,46,46.7,46.4,46.6,44.8,44.3,44.5,44,89.4,44.3,43.7,32.3,78.2,36.6,23.6,51.6,50.6,46.5,41.7,46.5,46.5,148.7,302.2,70.4,38,38,55.4,55.4,39.8,39.7,38,38.3,43.2,43.5,77.8,40.4,40.6,40.9,39.1,38.3,38.3,79.8,260.1,129,37.2,92.8,59.4,59.8,35,34.9,71.9,55,53.4,68.6,33.6,33.5,50.3,50.2,50.6,48.8,3.4,39.6,53,48.2,44.7,68.5,68.4,129.6,96.5,51.8,75.2,49,278.2,112.9,197.2,96.4,101.8,3.4,8.9,1.2,58.1,62.4,124.5,127.8,59.9,57.7,51.8,44.3,37.7,31.4,28.9,37.9,60.1,49.1,45,57.5,53,53.4,51.1,64.5,50.4,40.8,63.2,53.9,52.7,32.5,28.5,1.7,71.7,76.5,45.6,36.6,50.9,46.9,69.6,47.4,44.5,51.1,51.6,63.9,65,39.8,43.1,41.6,35.8,60.9,63,38.4,39.4,32,29.9,59.7,63.7,54.1,43.5,49.8,45,77.5,30.1,45,9.4,44.9,61.9,51.6,75.6,49.4,65,41,45.8,9.2,58.7,50,73.8,0.9,146.4,2.8,77.5,75.2,39.4,25.6,25.5,25.6,25.6,50.8,51.1,39.6,20,5.7,25.8,28.8,28.9,42.8,42.9,45.6,30.8,30.6,43.8,43.6,56,72.7,57.5,50,49.2,50,145.3,67.2,62,41.4,39.8,39.5,39.4,68.2,36.7,37,38.6,38.5,38.5,38.2,40.3,24.5,24.4,48.1,48.2,102.9,51.4,51.5,205.7,200.2,65,27.3,35.8,26,16.8,34.7,43.3,28.9,81.6,32.4,32.2,34.9,34.7,46,45.5,51.4,51,103.1,32.6,44.8,60.5,108.7,45.9,112.7,58.4,45.9,51.1,51.6,76.8,52,51.6,51.2,95.4,36.4,176.5,62,61.7,129.4,38.2,38.1,90.7,76.5,46.8,46.5,74.8,33.9,33.8,93.6,92.8,184.6,107.6,107,78.2,78.6,78.2,78.7,40.8,40.5,40.6,40.4,81.3,81.5,35.1,34.7,70.8,41.1,40.9,82.9,79.2,39.1,39.4,39.8,40.2,39.4,40.2,41.3,40.9,42.1,41.8,39.4,39.7,39.7,40.7,56.3,54.8,53.8,25.4,26.5,54.6,53.2,99.8,66.8,69.2,45.7,90.4,289.7,137.3,64.2,62.8,143.7,148,141.9,142.3,43.6,43.5,85.3,218.7,68.1,57.9,38.2,0.5,54.9,47.3,28.9,21.6,46.7,29,29.1,32.3,27.7,30.8,30.6,50.8,16.2,24.2,23.4,18.6,47.4,25,25,41.8,31.2,31.2,50.6,25.2,37.1,30.8,60.7,36.4,24.6,13.9,27.3,36.8,37.6,25.1,26,26.5,24.9,25.4,24.4,24.7,25.5,28.6,35,39.3,38.8,25.3,27.1,25.6,25.6,38,38.1,38,51,163.9,62,64.3,63.4,31.8,31.8,36.7,26.4,18.4,18.5,28.6,23.8,24.9,39.2,28.6,27.9,26,26.9,25.7,25.9,25.9,26,25.7,26.3,25.6,50.2,25.5,38.6,47.4,32.4,32.8,29.7,28.1,13.9,41.8,89.8,256.7,25.5,303.2,63.8,64,329.7,57.4,57.3,51.1,50.8,51.7,51.7,51.1,51.9,51.4,51.4,103.2,108.4,206.6,38.6,38.5,25.9,25.7,26.1,25.5,26,25.9,19.1,19.5,38.3,20.9,20.4,20.8,20.6,39.9,40.1,39.2,38.9,25.7,25.6,25.9,25.7,26.4,37,19.7,19.5,19.4,19.3,38.6,34.2,38.2,38,37.3,37.4,35.9,36.2,39.7,39.5,45.2,39.5,90.3,97,192.8,175.6,55.7,40.7,37.7,25.1,25.1,50.9,51.5,51.1,43.9,52.8,52.6,46.2,46.9,43.9,44.2,49.9,49.1,25.8,25.5,41.2,24.5,24.6,40.5,63,37.1,19.2,18.3,52.6,38.1,38.1,46.2,38,20.6,42.7,38.1,26.6,23.6,39.2,38.5,38.1,38.2,50.1,38.6,38.6,38,38.4,34.1,36.4,38.4,39.2,37.9,38.1,39,37.8,38.4,25.8,25.9,37.3,25.4,25.6,38.7,25.3,25.4,38.5,38.8,44.9,26.6,25,24.5,50.3,37.3,25.2,25.2,22.5,22.4,37,37.5,25.5,25.3,48.5,51.2,1194.7,26.3,614,357.9,196,51.3,51.1,39.9,40,58.6,58.4,53.2,53.3,51.1,51.3,81.7,28.1,27.8,26.2,17.9,45.1,45.5,38.3,24.1,32.6,33,65.6,39.7,38.7,76.5,38.9,34.1,37.5,29.1,64.8,50.4,50.4,26.9,66.4,39,39.1,100.9,548.7,223.5,117.1,51.4,52.9,77.7,26,26,39.1,52.9,78.4,78.7,52.6,52.4,50.9,52.5,52.4,77,47.9,91.8,38.8,29.4,37.6,37.7,39.1,39,81,75.9,65.7,39.6,39.7,77.4,78,38.5,44.6,76.6,76.2,243.2,117.9,52.4,66.2,39.3,39.3,39.6,39.3,39.1,38.9,78.1,73.9,77.8,39.2,39.2,40,40.2,39.3,39.5,79,38.8,38.7,77.5,111,111.2,217.1,447.1,110.8,105.3,53.4,52.8,105.5,65.1,52.6,104.5,267.2,18.7,18.6,211.3,103.6,130.2,104.2,50.8,25.9,51.7,51.9,38.7,38.6,51.1,26.3,26.2,49.6,23.2,23.1,32.4,32.3,38.9,38.9,52.6,39.3,38,52.4,26.1,26.1,36.3,69.4,37,51.1,38.5,39.2,39,39,42.3,42,49.8,51.4,90.8,49.1,49.2,80.1,59,59.4,103.4,24.4,25.3,50.1,111.2,207.9,205.9,37.4,37.6,26.3,26.1,26.3,51.5,51.6,102,63.9,64,77.4,50,64,32,32.1,63.7,63.9,52.1,40.6,40.3,57.7,66.9,25,31.1,70.1,52.5,65.9,59.9,56.7,54.5,27.6,18.3,49.6,40.7,50.1,40.2,40.1,42.2,44,26.1,26.2,50.9,50.8,127,127.2,122,51,63.2,51.6,27.2,27.2,58.7,58.5,51.6,51.9,77.6,52.9,109.9,52.1,53.2,51.3,52.9,73,2.9,44.3,50.4,51.2,51,52,263.5,201.1,0.9,35.4,44.4,78.2,0.8,22.3,433.9,135.2,128.5,80.2,52.2,54.1,75.9,52.3,52.2,52,52.2,52.3,52.3,78.1,39,38.9,77.7,77.5,52.5,77.7,128,2.9,1976.5,100.8,54,53.7,39.2,39.4,77.7,77.8,38.7,38.7,142.9,71.8,71.6,52.7,52,52.1,77.4,40.2,64.7,25.7,27,26.5,37.6,51.8,52.6,32.7,32.1,53.4,278.1,30.8,120.1,275,49.7,270.9,7.2,8.7,26.5,39.2,21.3,21.2,48.8,39.3,39,38.6,38.6,52.9,25.7,39.3,39.3,27.2,38.8,52.1,77.9,156.7,156.4,164.5,119.9,95.1,45.3,103.6,79.4,38.4,38.3,78,78.5,40.7,40.7,46.2,45.8,78.6,38.3,38.5,78.6,39,39.1,39.2,39.4,77.2,38.1,38.1,77.4,38.4,28.7,66.3,45.4,20.6,89.3,69.8,123.9,309.1,114.1,101.7,102.8,82.3,41,41.4,51.9,51.6,129.1,38.6,38.5,64.4,25.8,25.8,63.6,32.7,32.7,76.8,38.7,38.5,37.9,37.8,51.9,50.9,50.9,38.7,38.5,13.7,64,90.1,76.5,38.5,38.6,38.9,38.6,65.2,76.2,90.8,39.8,39.5,39.1,38.8,52.2,52,103.4,208,266.7,78.3,91.9,34.7,105.9,105.4,76.4,89.2,39.3,50.3,86.3,35.9,48,24.1,24.2,39.1,25.6,25.7,40,51,62.2,47.4,58.1,26,26,10.8,0.6,40.5,52.3,25.5,25.3,33.8,39,38.5,0.9,38.8,77.8,28.7,36.7,40.3,39.4,75.4,129.6,119.7,122.9,59.3,28.9,29,38.2,38.5,25.9,25.8,39.3,25.6,25.8,25.7,25.8,25.9,38.4,39.2,25.6,25.4,39,38.9,26.2,26.1,37.9,39.7,39.1,39.3,38.8,39.7,39.7,39.1,26.4,26.3,25.9,25.8,26.2,26,26.1,26,52.4,25.6,62.9,38.9,30,29.4,29.2,32.2,38.1,39.1,39.2,39.6,39.3,39.4,39.3,25.8,37,38.9,26.2,25.9,39.8,22.4,22.1,30.1,29.8,65.7,63.9,59,128.2,121,253.2,59.8,60.1,66,31.9,31.8,43.4,34.9,39.2,38,37.2,37.2,35.6,36.4,37.3,38.4,36.1,36.7,40.9,41.6,20.6,20.6,38.8,19,19.2,25,37.6,73.8,23.3,24.3,49.7,67.4,54.2,37.9,19.9,19.7,27.5,38.1,35.8,10,26.2,39.5,39.5,39,38.3,62.4,51.6,52.7,195.2,207.6,411.2,404.5,206.4,80.9,25.4,98.7,39.7,41.5,78.6,52.1,23.3,23.6,38.6,38.6,43.2,26.3,26.2,51.8,46,41.3,25.8,25.8,43.9,26.1,24.8,40.4,23.3,23.3,44.7,44.8,40.4,38.8,39.6,39.4,38.8,50.7,40,43.9,46.9,48.6,26.1,26.3,32.1,32.1,33.5,33.5,27.4,24.9,39.7,37.5,66,53.5,53.4,103.6,128.3,235.4,128.2,75.2,72.8,39.2,43.3,79.7,65.5,61.4,102.2,32.3,32,52.8,13.8,64.1,32.3,32.4,37.9,52.2,38.7,40,50.2,39.5,25.8,25.8,52.3,89.7,90.3,83.9,41.9,41.8,169.2,55,45.5,19.5,14.9,22.6,42.3,25.7,24.7,84.8,53.5,55.1,52,53.2,99.7,51.7,41,114.7,43.4,48.8,88.2,93.3,70.4,89.1,66.2,65.4,109,197.2,203.5,190.1,220,1246.1,13.1,200.8,199.5,98.7,99.6,68.9,129.9,112.8,87.3,62,136.8,121.8,115.2,71.2,70.4,108.7,57.2,56,56.6,49.7,89.7,72.8,11.8,163,162.4,181.2,130.9,127.8,112.8,79.7,45.3,27.5,107.4,2.1,48.3,42.9,34,37.5,43.6,52.5,47.2,51.2,55.2,16.1,44.1,49.7,4.5,103,108.2,71.9,74.7,80.5,48.4,35.6,33.3,86.3,88.5,26.1,59.6,54.2,81.2,67.2,48.1,74,57,51.8,67.4,24.7,28.1,404.6,76.6,80.7,80.6,85.3,52.7,112.3,65.8,96.6,70,53.9,43.6,119.9,47.9,99.5,97.9,50,50,100.1,81.1,84.9,68,73.8,68.8,78.7,59.8,81.7,70.1,35.6,294,41.9,68.1,45.9,56.2,124.6,167.7,103.5,73.6,80.5,81.7,144,149.1,107.4,60.3,41.3,56.6,100.9,98.2,100.6,185.7,68,67.6,62.3,51.9,39.6,33.6,90.8,98.9,100.1,74,25.5,64.6,93.4,93.8,160.2,199.1,39.6,155.9,70.7,68.1,60.8,73.6,80.7,73.6,72.6,150,76.7,72,58.4,65.3,78,99.8,81.8,116.4,118.2,61.3,70.7,103.4,36.6,135.9,88.5,73.7,121.1,77.4,104.4,104.6,22.4,184.1,77.4,35.2,136.9,51.9,100.3,99.7,160.1,540.4,79.4,103.3,85,92.1,108.9,63.9,67.6,70.6,29.6,37.9,64.9,64.1,91.3,40.2,50.4,50.2,39.6,61.7,18.1,36.8,44,55.6,41.8,158.5,159.2,143,45.6,109.2,118.2,136.4,411.3,315.2,159.6,170.9,148.6,149,157.4,157.5,161,38.9,63.7,61,1.3,136.6,99.7,100.2,100.3,100.2,99.8,100.8,99.5,99.4,100.7,200.3,99.7,99.8,99.4,101.1,99.9,47.6,52.2,49.7,218.7,150.4,154.5,160.4,187.8,159,156.8,149.6,150.2,139.4,159.3,146.3,146,145.1,728.6,162.5,146,140.2,139.8,171.2,163.4,721.6,192.9,203.1,129.8,2.8,141.4,145.1,134.8,152.9,156.3,156,158.4,517,408.9,283.9,741.8,79,283.5,186.8,168.7,165.6,38.7,136.2,162.1,168.7,162.4,163.4,173.1,162.8,569.9,180.3,191.4,160.4,164.9,173.4,144.5,143,146.6,71.2,73.6,74.9,76.9,140.7,134.7,34.9,1485.7,175.6,180.4,181.4,230.1,156.6,140.5,1000.3,149.2,145.5,140.9,140.1,145.6,146.7,131.9,173.9,166.9,378.3,71.4,97.5,122.8,147.9,138.3,111.7,25.2,138.3,136.5,124.4,129.9,284.5,140.7,145.1,128.9,133.7,120.6,137.4,127.2,134.8,117.7,341.9,112.9,110.1,108.7,112.7,139.4,149.6,147.1,130.8,597.7,217.1,166.4,190.9,118.2,131.1,198.5,213.4,155.2,151.2,174,408.1,248.8,361.4,349.2,32.2,236.7,35.5,108.6,112,34.5,173,14.3,772.1,135.4,134.1,109.4,13.8,79.6,102.1,113.9,99.1,108.6,80.3,75,84,80,85.7,117.1,97.9,123.2,480.6,108.8,81,85.9,101.1,65.5,72.5,31.2,111,83.9,95.1,44.1,46.3,44.6,45.7,77.4,52.1,51,100.7,101.4,88.3,127.3,242.9,90.9,91.1,115,66.2,103.4,146.1,107,89.1,105.3,98.3,108.7,124.3,108.4,98.8,108.5,144.3,90.2,80,102.9,133.7,280.6,24.6,29.6,80.9,803.8,172.7,212.5,55.9,125,116.2,126.5,112.8,126.1,113.6,120.6,108.3,90.4,137.4,88.6,98,90.8,102.4,103.9,117.3,96.1,92.7,114.2,13.2,134.5,83.8,301,233.9,180.7,59,57.8,125.3,132,98.2,95.3,100.3,110.6,124.1,134.1,440.5,163.9,172.5,112.6,24.6,32.9,184,131.3,134.2,196.7,251,126.6,52.4,72.4,59.4,102.7,82.1,62.7,68.1,63.3,68.9,51.1,59.1,15.8,63.8,60.1,54.4,48.4,51.3,40.3,6.2,48.3,65.8,48.5,50.4,99.2,99.6,94.8,136.9,146.6,84,105.2,100.5,75.4,65.3,73.3,46.2,28.6,78.8,72.4,80.2,78.5,66.6,89.6,53,79,77,65.3,53.9,50.3,48.3,55,104.2,104.8,105.8,116.3,50.4,170.3,107,114.3,90,84,84.6,89.7,79.1,42.2,50.3,56,54.4,42,45.4,36.9,35.1,71.6,45.8,40.1,102,143,141.3,84.2,108.9,54.4,44.1,76.8,51.5,52,54.6,56.1,36,39.7,48.9,40.8,48.8,45.9,49,66.7,27.1,51.2,56.1,37.8,38.5,42.3,63.5,52.9,52.4,115.7,51.8,128.4,50.2,160.7,53,51.2,107.3,53.6,52.4,53.3,65.1,53.1,51.3,53.2,64.4,78.8,52.2,53.3,58,60.4,71.7,76.8,55.2,0.1,150.5,91.2,66.4,64,75.6,68.9,73.7,75.2,38.2,62.7,64.1,45.6,42.5,84.2,57.8,57.9,52.5,59.2,71.8,113.8,76,59.2,32,24.3,0.2,52.9,79.9,128.6,214.8,74.7,30,63.8,141.1,152.8,122.4,92.6,84.7,77.4,131.5,130.8,151,152.1,216.6,103.9,77.1,74.9,47.7,46.8,44.2,67.6,103.7,111.2,136.4,151.7,171.8,211.5,211.6,165.2,184.5,48.1,86,150,72,123.6,130.8,30.9,428.6,98.3,69.5,74.5,25.4,9.4,57.9,59.4,6.9,43.5,40.3,59.8,70.4,2.7,134.9,144.6,91,51.2,92.2,117.1,222.7,1,362.5,376.6,310.3,158.6,52.6,92.1,159,206.8,201.5,95.9,452.1,234.6,142.2,141.8,153.8,130.6,139.4,115.3,67.9,146.3,151.1,529.1,310,73.7,66.5,163.9,147.9,106.3,62.4,124.6,109.2,47.2,129,128.5,141.1,115.8,128.5,138.3,139.4,147.3,141.5,147.9,131.6,143.6,257.1,238.6,270.2,136.1,156.3,157.6,130,149.3,66.9,73.9,162.6,363.3,138.8,224.2,57.8,67.4,66.2,71.8,60.3,70.5,133.7,74.2,75.9,72.8,60,79.5,74.4,122.4,74.8,109,31.5,93.8,74.1,85.9,208.5,175.4,203,178.4,188.9,137.3,154.1,168.5,181.5,179.4,188.5,307.1,162,60.5,56.7,105.3,102.8,6.4,150.9,99.2,8.3,71.6,106.5,105.8,90.4,90.5,74.2,115.3,28.8,194,782.4,52,705.3,269.7,212.6,205.8,198.1,503.4,1815.6,1414.4,174,64.4,122.6,244.3,248.7,89.5,137.6,192.1,868.9,235.8,211.6,227.6,211,219.7,196.1,514.3,208.6,175.1,196.8,112.2,128.8,217.7,71.6,50.8,63,229.4,185.6,245.7,208.3,238.7,234.1,1.6,239.9,325.1,301.7,1123.4,81.2,22.9,113.8,174,8.3,203.4,98.8,98.5,71,189.7,81.7,166.6,210.2,178.9,34.2,29.4,244.7,219.9,208.9,981,192.8,168.5,178.1,165.8,161.5,114.7,163.3,688.4,126,150.1,155.7,147.6,2.6,203.8,166.2,189.5,165.6,161.6,190.5,120.8,128.4,63.1,46.4,30.6,15.8,109.9,162,162.4,300.2,216.2,55.9,264.4,360.4,110.9,214.1,746.1,257.9,225.3,99.2,116.9,117.9,107.1,126.8,357.7,110.2,57.6,49.4,97.2,115,109.5,130.8,115.8,119.6,105.1,12.8,428.3,144.5,138,166.6,159.8,148.2,472,158.7,175.3,160.8,184.8,164.7,103.9,105.9,136.4,116.9,116.7,574.1,172.5,174.6,181.8,102.6,72.9,57.1,67.3,30.7,94.5,66,534.7,59.8,130.6,163.9,158,145.8,141.7,122.7,129.8,126,126.4,126.6,110.8,109.4,385.6,275.7,129.9,115,13.7,108.8,155.7,160.8,170,119.8,126.2,124.9,143.4,133.5,123,109,207.9,408.1,73.6,238.8,52.1,1972.8,9.9,26.6,124.6,163.8,159.7,169.8,207,469.9,173.4,155.5,179.7,152.4,163.5,171.5,155.1,171.7,338.5,12.4,152.9,193.1,222.8,210.2,508.8,162.5,198.9,176.4,173.6,107.5,144,203.8,96.3,199.3,44.7,119.2,195.8,240.6,59,57.4,156.3,369,881,182.8,175.8,182.5,173.6,140.5,129.9,123.4,140.5,132.2,103,46.9,189.4,194.8,197.1,61.7,173,224.6,127.8,159.1,136.4,115.7,104.2,148.2,145.6,171.3,406.2,192.5,2.7,129.8,125,117,124.1,117.2,109.6,121.4,126.9,114.7,123,63.9,49.9,128.2,77.5,51.3,106.9,122,128.2,114.8,100.8,121.6,104.3,115.7,105.4,77.5,39.6,121,89.8,95.1,93.8,102.5,177.8,6.3,46.9,133.9,184.7,182.7,341.6,8.1,163.8,132.9,107,97.1,94,89.3,72.2,76.9,128.8,92.2,22.3,99,103.6,117.2,205.3,341.9,153.4,161.4,120.5,126.9,126.4,123.7,151.3,108,133.6,121.7,331.3,448.5,160,260.1,192.5,85,84.4,192.4,290.3,564.9,302.2,278.8,163.6,161.6,161.5,463.4,462.8,39.4,200.1,62.4,172.5,19.4,78.4,69.9,82.7,168.4,95.5,7.7,9.2,262.6,195.9,503.3,170.5,149.1,96.2,138.8,247.4,74.4,140.5,49.3,59.2,56.7,70.9,70.8,62,131.4,52.1,101.5,88.4,176,181.2,362.6,180.6,184.8,57.1,72.1,74.3,94.5,105.8,105.4,50.9,105.7,88,87,97,101.2,31,51.7,114.8,123.3,82.7,35,92,161.6,91,123.5,63.7,42.6,94.9,64,32.5,93.9,64.2,34.1,35.1,125.3,101.4,46.4,25.5,34.8,483.3,4.4,204.1,92.1,100.6,57.6,61.6,106.4,91.3,139.5,318.8,268.6,268,116.9,41.3,72.3,94.7,86.4,58.1,42,39.4,1.9,21.9,2,16.4,51.9,85.7,63,64.1,70,81,70.8,174.4,65.9,288.6,73.5,47.4,206.6,94.1,251.6,15.4,23.3,91.2,26.5,5.3,63.1,60.5,76.6,94,315.5,164.6,336.5,213.5,145.5,292.9,99.9,89.9,76.9,66.7,62.1,74.3,61.8,62.8,87.3,229.4,65.9,9.1,36.4,247.7,71.8,125.2,32,44.9,49.7,60.7,74.4,63.6,69.5,129.6,46.6,228.3,236.1,23.2,94.7,154.3,22.8,40.2,55.7,46.2,74.2,81.5,74.8,78,57,289.2,104.1,234.4,106.7,65.8,47.6,99.1,33.4,33.5,58.8,30.4,30.4,32.2,32.4,27.3,31.5,30.3,18,21.8,18.3,21.6,15.7,30.7,25.2,29,28.2,15.6,15.1,18.7,19,21.3,18.9,21.7,17.5,9,9.1,12.4,14.6,13.7,13.8,18.2,17.7,31.6,53.9,76,26.2,34.9,33.5,32,46.1,45.9,45.6,5.4,44.9,35.9,64.5,73.3,100.2,14.9,41.2,154.6,140.9,90.3,214.5,128.8,48.4,44.7,85.1,79,84.1,65.7,73.5,58.4,55.4,126.5,142.8,10.1,103.6,135.7,97.5,379.2,20.8,48.8,68.2,57,55.5,56.4,48,50.8,71.3,78.7,103.1,27.7,94.4,36,46,43.4,80.6,142.2,96,73.7,46.3,62.7,21.6,47.5,47.7,45.1,56.2,58.7,76.8,63.9,65.7,59.7,65.9,74.1,64.8,42.1,68,38.3,31,35.1,49.4,42.9,55.9,42.8,49.2,64.8,83.5,126.7,54.6,54.1,48.5,32,22.3,50,48.1,51.6,38.5,42.4,36.9,64.6,117.5,42.1,50,54.3,37.6,45.1,44.8,53.1,43.1,147.4,56.7,41.5,67.5,32.3,31.6,52.4,36.5,32.6,46.2,57.1,35.3,49.3,49.1,23.6,32.2,36.6,35.8,34.6,30.1,56.4,35.7,42.5,36.3,57.9,45.3,52.5,38.9,46.7,61.2,17.1,41.4,44.1,7.6,47,45.7,26.2,46.2,65.9,31,26.9,28.4,35.4,53,34.6,46.4,13.5,56.4,47.3,32.8,4.9,71.6,82.9,220,356.2,21.3,24.5,55,23.6,24.6,24,24.8,7.8,16.3,24,49.3,23.6,62.5,38.5,38.8,33.8,65.7,87,110,9.7,121.6,34,78.2,82.5,58.1,28.8,53.8,61.9,5.6,55.4,94.3,38.8,163.4,16.5,82.7,82.7,42.1,107.3,232.9,317.4,41,61,37.9,51.9,65.8,37.9,40.6,33,48.6,63.1,63.8,71.2,56.7,74.9,72.8,121.7,61.9,40.3,113.6,24.2,303.7,83.4,92.8,72.5,58.7,1.8,51.5,71,84.7,102.9,43.7,69.2,144.7,147.2,66.7,21,285,307.4,72.1,36.2,58.3,59.5,99.2,136.2,169.2,106,132.3,72.8,41.8,104.3,53.8,53.9,106.3,12.2,40.4,256.2,66.4,75.5,170.5,115.3,81.6,81.3,54.7,48.3,75.9,56.8,55.5,94,37.3,35,40.2,69.8,56.4,42.9,83.4,94.4,98.7,296.2,89.1,157.9,67.7,65.8,53.5,27.9,21.8,18.8,12.9,29.6,11.8,6.3,20.3,25,17.6,12.8,12.8,15.7,19.1,18.2,2,23.5,21.9,22.3,20.5,13.5,17.6,25,21.4,19.9,28,18.3,15.2,17.3,21.4,21.2,18.8,19.3,20.7,16.7,15,23.6,18.4,22.9,20.9,13.4,22.8,16,63.4,38,18.6,22.1,17.8,26.9,64.7,65.4,39.9,114.7,173,117.6,129,252.3,366.3,228.7,247.3,35,95.3,169.7,196.5,197.2,88.7,193,195.8,157.1,157.9,105.9,96.4,167.2,33.5,76.9,188.5,103.2,130.2,177.7,387,317.9,292.8,44.6,185.5,202,168.1,8.4,52,8,5.1,857.1,76.4,103.1,20.9,31.5,130.1,3.1,158,103.8,15.2,88.1,106.3,171.8,62.7,121.6,22.1,64.7,76.8,116.6,160.5,177.5,79.3,1.3,49.4,263.4,305.9,573.5,315.5,191.4,72,96.2,117.9,138.9,8.7,163,194,204.9,612.4,420.6,4.9,1.8,4.9,278,182.9,330.9,223.7,321.8,274.2,7,118.7,191,185.4,150.8,121.8,162.1,153.5,136.3,202.9,194.7,117.7,147.9,284.7,120.8,313.9,262.8,141.1,0.5,447.5,177.9,10,75.8,75.4,16.1,222.8,88.5,84.7,256.4,399.9,21.9,271.1,206.3,303.2,256.1,205.3,152,109.5,113.2,77.8,79.2,90.4,171.9,224.6,156.7,74.2,78.5,62,107.4,118.8,122.2,159.5,167.2,129.2,133.7,156.1,519.6,266.7,366.5,218.4,251.3,155,155.5,46.1,43.8,97.9,195.8,362.7,90.6,89.2,88.3,92.1,246.8,116,119.6,107,67.7,39.1,9,86.1,63.5,74,42.7,105.2,75.3,27.2,90.7,104.7,102.6,91.4,168.6,99.9,101.8,162.7,142.9,149.7,56.5,66.6,81.7,204.9,591,209.8,1.2,142.1,278.8,212.3,243.6,234.2,254.4,249.2,159.3,153.5,336.9,291.7,384.8,334.4,317.8,190.2,70.3,221.5,199.2,190.5,187.8,227.9,109.8,111,99.7,369.7,230.8,252.3,138.6,106.5,348.1,122.8,525.4,245.2,221,282,110,96.9,71.4,210.7,86.2,95.3,192.1,203.2,265.4,118.9,62.9,119,294.3,126.9,163.9,45.8,268.6,296.4,370.5,336.2,357.3,343.6,283.5,1233.6,757.4,9.1,381.5,202,264.7,182.4,179.2,118.2,106.7,228.1,194.9,189.6,167.5,38.5,123.5,117.2,194.6,605.8,1573.9,106.6,86.4,115.6,38.6,39.9,52.9,55,229.2,142.7,215.2,262.5,179.9,178.8,181,82.3,36.9,29.9,28.9,38.7,37.8,77.8,38.2,89.6,146.9,89.3,96.1,142.6,48.1,326.4,413.4,167.5,141.7,133.1,163.9,245.4,220.4,1824.9,480.4,29.8,140.7,678.2,473.8,193.9,104.3,93.3,121.3,81.5,81.2,139,119.2,7.4,77.9,188.7,138.9,107,272.2,298.1,1.5,916.4,192.7,201,82.1,83,51.5,55,104.6,109.1,56.7,52.6,45,49.2,73.7,61.2,59.9,28.6,98.1,98.2,116,80.1,70,69.7,89.2,90.4,194.1,85.2,84.2,83.2,80.8,87.3,84.6,154.1,5807.8,20.5,75.7,668.9,71.4,733.2,1382,61,79.3,108.7,87.5,87.2,85.7,75.4,118.1,171.4,167.2,88.5,84.6,83.3,92.4,121.6,76,30.4,84,80.2,45.7,104.6,83.6,17.5,234.5,7,212.1,91.3,389.2,85.8,82.7,108.2,199.8,29.4,90.4,297.8,301.6,466.2,470.2,280.7,554.9,491.5,142.1,231.1,698.7,952.9,63.4,154.8,910,55.8,120.5,81.4,35.4,39.3,49.5,51.3,56,71.8,108.9,89.4,79.4,51.6,66.7,73.4,74,80.5,43,91.7,177.3,104.3,42.3,42.5,96.6,55.5,81.9,82,164.6,122.9,118.4,46.9,55.2,68.1,99,98.1,201.3,629.5,1286.4,966.2,1103.8,807.3,5.9,413.4,1.9,463.2,54.6,544.2,163.5,143.5,123.2,100.3,148.1,667.9,165.6,175.4,418.3,114.5,102.7,116.5,93,98.9,101.2,102.1,62.2,198.6,38.1,89.1,221.2,445.2,407.6,244.6,224.9,145.8,123.4,123,136.9,147.7,522.7,134.4,104,96,107,116.1,117.8,125.4,123.8,134,111,100.2,95.8,113.9,843.1,2249.9,1338.8,154.1,116.9,122.5,145.1,272.6,9.7,144.1,29,23.3,118.9,27.9,48.6,75.7,79.7,124.1,85.2,78.6,73.8,77,144.3,68.8,6.3,622.1,122.7,100.1,81,106.9,69.6,81,70.2,96.2,128.7,96.1,210.9,493.4,298.2,887.9,78.9,865.7,219.8,1184,473,466.5,110,144.8,106.8,2256.9,290.7,208.1,166.1,143.4,144.6,145.4,142.9,140.1,213.3,87.8,125,86.6,79.3,47.8,46.8,47.8,48.1,81.1,80.7,80.9,39.5,39.1,34.4,62.1,62,65.8,30.9,9.1,7,80.7,96.5,98.5,88.2,89.7,70.4,77.4,56.2,64,41,47.7,94.8,59.6,36.1,81.5,172.1,427.6,152,134.3,120.5,117.4,123,130.5,131.8,78.4,81.1,141.2,155,180.4,413.6,413.8,1470.9,114.1,80.4,81.6,164.2,37.2,303.4,7.5,2.3,7.6,5.6,166.9,60.8,168.4,95.6,179.8,667.3,1950.3,893.1,714.4,167.3,93.9,114.2,109.9,78.2,107.1,111.2,170.9,156.6,67,127.5,64.3,19.5,9.9,118.8,94.5,43.5,85.5,109.4,65.2,76.5,76.6,105.3,49.9,49.2,41.3,46.9,155,106.7,72.2,68.4,65.3,133.4,132.6,153.6,237.4,295.8,2793.4,164.6,1364.8,546.5,714.1,73.8,626.1,697.6,140.4,59.1,55,125.6,102.6,109.1,1.5,146.9,156.9,74.7,101.7,104.6,250.6,109.2,121.3,205.4,278.3,213.3,327.6,243.7,242.7,279.9,114.4,132.6,107.5,113.9,116.5,124.3,166.2,273.5,221.8,104.4,107.4,111.3,123,280.3,202.9,170.2,172,364.4,170.3,185.2,87.2,82.8,85.9,102.6,88.8,105.4,101.1,108.3,179.3,195.5,192.6,183.9,105.9,119,198.7,132.4,125.8,229.2,260.9,197.1,198.8,83.5,133.5,93.7,101.1,100.5,41.3,69.1,47.8,46.4,53.9,58,191.1,168.7,139.2,65.5,79.8,137.8,154.6,137.8,132.4,142.7,121.3,127.6,108.1,139.2,91.5,154.1,130.7,86,90.1,138.7,68.8,77.4,157.7,149,117.9,130.6,165,144.6,144.5,81.1,65.7,140.4,74,83.1,101.6,72.6,96.5,154.5,92,13.5,22,197.4,118.6,497.7,197,55.9,25,187,13.4,78.1,35.2,139.6,36.4,99.3,90.1,134.7,209.8,206.9,90.3,106.7,37.8,50.6,1.5,97.9,165,186.8,137.5,156.5,160,186.7,296.1,85.2,118.1,82.1,82.4,74.2,89.5,78.5,101.3,48.7,58.8,75.8,88,90.2,72.4,56.7,83.3,114.9,77.3,144.7,135.3,159.5,117.1,75.1,53.5,119.1,85.6,57.9,72.2,95.8,135.9,51.9,63.3,72.8,67.2,59.2,47.5,57,59.8,70.4,2.6,48.9,64.1,59.3,99.8,115.3,68.1,116.7,82.9,75.4,74.3,70.4,71.9,62.1,43.3,77.8,63,57.7,78.4,74.2,91.9,67.3,47.3,51,66.1,49.2,62.6,33.2,55.7,92.6,50.4,46.7,35.2,51.4,47.7,52.2,76.8,79.3,64.9,68,99.9,104.8,58.3,44.1,61.5,40.8,28.7,63.6,78,348.3,130.6,68.1,41.1,43.8,72.2,73.9,119.9,63.3,54.3,45.7,54.2,57.8,38.3,50,126.1,104,46.2,42.2,49.3,88.7,51.7,65.3,91.1,61.1,75.6,104.2,72.1,68.4,75.5,87.3,112,123,114,129.2,143.2,125.2,123.8,125.9,121.2,123.4,144.6,95.9,27.7,126,136.7,128.6,137,130.8,119.6,80.1,61.7,101.5,108.6,53.5,26.4,38.8,27.3,26.4,36.5,18.6,89.4,63.8,43.7,49,39.3,36.6,27.7,26.5,38.5,26.1,25.7,26.3,25.2,26.2,26.4,39.9,32.2,32,39.8,39.1,51.7,38.7,39.4,38.2,26.4,39,39.6,25.4,25.7,31.8,33.2,39.3,39.1,39.3,35.7,39.8,63.8,66.2,24.4,26.4,32.4,34.1,27.5,36.8,39,39,37.6,38.8,38.7,27.7,38.7,39.7,39.2,49.6,38,44.1,40.8,34.7,24.3,3.3,9.8,29.4,18,19,38.5,26.3,28.1,25.2,25.9,38.2,107.8,104.9,473.9,62.4,20.8,24.9,27.6,25.1,26.5,18.5,20,39.1,39,25.6,26.1,26.4,30.2,21.2,20,47,38.1,26.7,29.8,34.2,25.5,25.9,38.1,29.6,75.5,16.8,23.9,24.3,24.9,19.5,20.3,28.9,29,27.8,29.6,33.6,30.9,34.1,35.3,27.5,24.7,26.9,34.6,95.8,13.9,51,39.1,25.4,33.5,32.2,26.4,25.4,25.9,26,23.8,24.7,27.3,24.5,26.3,26.1,31,17.1,82.4,51.6,39.1,40.3,37.5,91.8,93.8,93.6,38.7,85.8,65,73.3,87.3,94.8,119.8,119.6,127.3,466.1,98.9,131.2,159,64.8,89.7,195.8,209.8,139,58.4,63.7,49,39.1,27.6,66.5,54.1,55.7,89.1,183.1,180.6,96.3,101.8,318.5,102.2,67,67.1,64,67.4,65.8,61.1,81.9,63.7,82.9,78.7,84.6,169.6,93.7,87.3,77.8,74.1,67.9,171.3,109.9,102.7,91.6,2.2,58.1,71.7,81.2,81.7,100.1,88,66.5,75.5,64,65.3,65,65.5,74.8,85.4,63.6,15.8,62.3,23.6,47.4,33.1,10.2,46.1,42.6,71.4,163.8,72.2,111.9,44.2,49.8,73.7,75.9,82.2,148.9,8.2,146.5,42,53.4,32.7,29.6,48.9,64.5,64.5,81.3,77.9,83.1,102.6,78,92.8,79.8,90.4,107.9,94.4,96.8,103.7,117.4,88.3,66.1,81.2,103.8,89.4,74.3,78.5,65.2,77.7,117.8,50.7,95.8,99.8,388,0.8,90.5,57.9,36.5,105.5,120.5,54.3,164.3,103.6,103.3,302.2,72.3,67.1,42.9,41.8,51.6,47.8,62.5,60.1,116.5,91.9,78.5,56.7,40.3,50.8,194.2,101.4,80.6,86,83,192.2,64.9,63,57.6,51.4,61.4,125,134.1,76.3,53.9,55.9,112.3,72.8,98.1,62.1,66.9,83.7,120,93.6,91.8,100.9,125.7,179.5,120.9,49.2,41.9,33.9,159.6,101.6,105.7,92.1,117.8,105.2,92.2,72.8,68.9,59.9,168.2,95,80,73.4,58.3,115,261.7,90.6,247.7,200,119.2,118.4,117.3,107.7,89.8,106.3,137.2,129.6,237.2,92.8,87,84.1,36.4,75,90.1,51.5,69.2,105.7,83.1,96.3,96.8,96.6,102.5,101.6,102.9,94.2,106.8,96.6,93.9,219.1,192.8,117.1,109.1,110.1,130,122.4,159.3,179.2,209.6,230.5,277.5,130.3,36.4,55.9,142.3,186.8,169.6,79,62.8,146.6,58.6,77.2,78.8,70.5,119.3,110.3,104.4,102.1,128.2,180.5,117.6,93.6,99.4,99.5,85.1,92,89.6,181.4,85.5,91.8,102.8,207.6,115.6,94.8,146.6,103.7,90.4,135.7,156.5,54.3,88.2,104.8,107.5,96.9,105.2,125.6,117.4,113.5,226.7,107.7,6.6,54.5,98.9,80.6,48.4,23.6,28.5,14.6,74.7,34.6,37,46.8,35.3,14.3,16.6,26.6,12.3,104.3,22.2,19.1,37.8,50.1,55.6,94,26.6,38.8,45.9,36.3,50.2,53.7,1.3,47.5,37.9,51.5,22.4,41.5,37,28.3,21.3,30.8,36.6,36.1,32.1,33.2,35.5,29.7,29.1,38.2,34.9,28.3,25.4,36.6,37,37.5,18.5,28.2,39.7,38.4,35.3,22.7,22.6,27.6,21.9,24.7,34.6,36.4,23.7,30.7,25,29.2,28.9,31.5,33.6,32.7,30.9,20.1,30.4,24.1,29.9,29.4,28,28.3,28.6,33.1,22.3,18.4,23.1,37.1,57.9,45.9,35.6,26.5,26.7,34.5,32.2,31.7,24.5,29.3,31.1,25.2,29.7,29.8,32.7,18.4,29.6,24,29.9,30.2,30,27.7,35.9,29.6,24.5,31.2,31.7,32.1,28.2,38.2,37.4,32,34.3,38.2,32.6,26.5,22.9,32.8,33,22.4,32.2,30.5,31.8,34,37.3,29.7,26.8,28.1,31.9,28.7,18.7,21.5,29.9,19.5,24.8,20.4,22.9,37.2,29.7,20.8,32.9,28.2,27.6,23,4.8,17.8,31.2,30,14.8,19.1,20.1,19.9,17.6,26.6,21.9,24,24,21,14.3,23,31,35.4,29.1,21.9,13.1,16,15.7,17.2,18.1,19,15.8,23.7,23.7,24.4,29.8,18.3,17.4,35.7,30.9,53,50.6,34.2,34.1,27.3,24.7,32.3,31.8,25.4,24.9,33.2,34.7,32.1,32.8,34.3,30.9,37.5,50.2,32.3,7.4,38.9,43.1,18.9,12.7,37.6,27.5,5.4,30.4,50.1,51.2,67.3,50.8,34.4,38.8,36.8,23.6,29.1,30.8,22.9,28.2,31.5,35.1,31.7,35,34.4,35.3,47.8,87.1,34.5,33.5,37.8,30.6,33.9,34,30.5,19.9,9,27.3,33.4,6,22.7,53.8,13.9,31.7,1.8,59.5,61.1,17.1,69.6,61.3,71.3,44.1,42.7,27.3,57.8,43.4,31.4,42.4,38.4,35.6,30.3,26.4,22.9,19.1,29.5,19.8,22.7,15.8,6.5,24.4,25.5,21.5,19.7,19.7,24.1,18.4,24.1,34.9,43,14.4,20.9,23,27.5,16,17.9,18.5,18.1,20.2,17,17.3,17.9,24.6,20,19.7,30.6,19.1,20.6,25,27.4,17.3,16.9,25.5,36.7,22.9,23.7,26.1,25.6,31.5,19.5,21.6,19,26.6,17.2,25,17.5,19.4,22.5,30.8,26.2,11.3,13.8,21.6,23.6,25.8,28.6,47.6,45.4,44.9,45.3,46.6,54.7,55.4,29.4,29.2,39.7,41.1,40.4,49,47.1,48.9,52.7,55.6,58.6,56.9,55.1,39.5,50.1,39.9,43.8,36.9,18.4,30.9,28.1,42.6,31.3,36.1,44.2,46.5,44.3,44.1,34.1,46.5,57.5,40.6,10.2,23.8,62.4,35.1,20.5,27.4,33.7,39.3,33.2,43.9,34.8,35.4,42.1,31.5,34.9,35.2,24.9,29.2,28,20.6,19.9,37.2,36.8,32.8,10.5,44.6,42.5,17.4,31.1,25.3,26.7,46.2,46.7,59.5,37.4,50.2,47.6,64.4,63.2,68.8,52.3,15.6,41.1,24.7,24.4,24.4,29,25.1,23.7,39.4,4,25.8,28.5,29.6,23.4,24.4,23.7,26.7,15.5,6.2,19.2,54,58.2,68.4,12.5,67.4,59.2,54,46.2,54.6,50.4,63.2,52.9,62.9,55.2,42.3,57.6,46.7,52.6,57.9,75.8,60.9,65,41.5,19.8,61.5,81.1,44.3,63.4,41.6,41.4,126.4,46.3,99.2,74.5,125.8,113.5,118.6,84.2,65.9,75.3,69.9,93.1,70.6,36.2,100.9,80,80.1,86.4,106.3,73.1,43.3,12.2,31.5,2.5,40.6,44.4,104.2,51.7,76.2,75.4,36.1,29.9,55.2,58.4,57.4,79.8,84.9,54.5,62.9,54.7,115.4,73.5,74.2,1.6,71.1,85.9,77.4,153.3,111.2,77.6,38.4,34.7,67.5,16.8,159,106.4,126.1,105.5,83.4,53.1,54,128.1,8.2,33.7,92.5,67.1,56.8,51.7,53.1,91.7,52.5,45.9,52,41.3,36.2,53.8,67.3,52.1,27.3,34.7,31.1,66.2,50.1,88,10.7,47.3,67.1,54.7,44.4,33.1,59.3,81.4,55.5,57.4,55.4,58.1,77,69.1,142.6,31.4,97.8,143.6,128.2,129.8,24.7,51.9,36.9,67.7,61.6,102.1,96.8,110.3,96.6,64,59.5,62.5,75.7,48.5,12.3,67.3,72.1,72.1,100,46,98.1,69.7,80.2,69.9,72.4,45.6,45.4,48.2,47.5,36.1,74,81.4,88.6,105.1,74.6,145,90.4,18.1,82.4,42.8,75.4,61.9,73.6,58.3,57.1,51.6,108.8,37.1,35.9,54.4,88.4,120.6,31.4,25.4,29.6,24.7,41.3,43.9,38.8,36,35.8,32.8,108.2,110.5,66.4,58.3,65,51.4,110.4,85,95.2,51.2,66.1,57.2,54.4,53.1,27.5,43.4,49.9,65.7,63.2,41.7,20.3,76.8,32,9.7,75.5,50.3,50.8,64.8,38.9,33.2,35.7,33.7,33,9.4,24.3,18.9,23.4,13.9,13.8,31,29.6,53.7,66.9,41.4,41.1,45.5,38.7,38.5,57.1,43,29,23.9,30.5,22.8,32,32.9,37.6,22.4,38.2,33.9,34.9,38.5,38.1,30.4,74.4,42.7,38.5,39.5,37.2,50.4,78.1,40.5,40.2,50.2,80.6,58.6,47.7,41.4,48.2,6.5,54.8,8.8,46.8,50.1,48.7,43.6,77.2,84.8,88.4,71.6,56.5,55.2,48,47.2,67.4,68.6,63.1,64.5,66.5,69.4,42.5,60.3,75.7,98.7,78,75.5,78.2,61.1,93.5,96.9,67.4,75.3,65.3,58.2,48.5,75.4,34.1,32.4,34,42.1,30.9,47.6,47.4,49.4,42.9,42.1,37.4,34.9,34.3,30.1,31.9,41.9,40.1,64,117,53.1,60.4,168.4,106.1,132.8,48.4,51.3,51.8,32.7,80,83.9,75.5,109.7,3.8,67.7,74.7,52.9,24.4,22.8,41.1,24.5,24.9,33.6,53.7,46.6,24.5,30.7,35.3,40.6,40.9,35.8,31.6,38.9,45.6,52,42.4,34.9,34.2,31.6,40.3,40,40.1,18.4,16.8,50.5,38.4,44,4,44,49.6,100.2,149.5,89.8,88,118,115.2,50.1,37.9,38.9,38,47.7,80.9,36,39.8,45.3,109.3,43.7,37.3,35.7,29.2,39.3,43.4,41.4,26.3,32.3,42.4,27.6,37.9,38.2,65.9,43.6,7.8,45.5,34.2,9.1,40.9,50.5,29.1,31.1,19.2,51.4,32.7,31.7,31.3,38.8,50.9,37.7,38.3,35.4,39.1,35.7,39.1,33.8,48.2,24.5,22,40.7,5.7,44,60.7,66.7,54.7,35.8,85.1,86.8,12.2,33.2,43.4,33,28.8,69.5,18.7,46.2,51.1,75.3,51.2,8.7,24.7,26.5,15.4,14.6,28.3,32.7,27.3,30.1,27.7,32.5,25.7,42,37.3,28.4,28.6,26.6,37.7,28,30.2,36.6,31.5,46.6,40.2,51.8,36.1,49.1,43.8,50,68.3,32.5,42.2,39.2,44.2,32.7,37.6,35.6,41.8,29.3,22.6,36.5,15.1,12.8,23.2,19,22.6,42.2,31.8,43.3,61.2,29.5,30,32.1,30.2,28.8,32.2,26.1,88.2,27.2,20.4,43.8,41.2,41.1,39.2,55,59.3,43.1,37.7,40.8,41.7,43.2,54.2,42.6,54.1,49.2,68.9,55.3,56.7,24.9,48.2,71.9,40.6,53.5,91.8,50.2,26.9,35.7,48.5,125.9,125.2,113.4,128.9,56.1,113.8,37.2,6.7,40.6,42.2,32.8,40.8,39.5,31.6,80.6,29.6,25.4,21,43.6,27.6,33.6,35.1,44.2,42.6,34.4,40.7,40.5,39.4,42.8,49.5,53,50.6,44.2,34.5,34.3,11.7,48.7,42.3,35,53.1,36.8,43.7,41.7,33.6,11.2,5.2,24.7,26.8,55.5,40,23.1,33.5,37.8,40.2,50.3,43.6,32.8,34.1,47.5,38.3,37.9,63.2,57.4,7.6,40.2,17.6,22.6,4.8,73.3,33.5,32,33.8,37.4,44.6,38.5,32.8,44.1,41.5,44.4,38.7,40.4,42.6,41.6,45.2,32.2,31.6,36.6,39.4,24.5,22.1,22.8,23.7,24.8,35,27.4,25.2,33.9,21.8,16,23.8,18.5,16.3,16.6,16.4,18.7,16.4,15.6,15.5,13.5,16.9,16.1,32,34.4,27.3,30.9,19.6,21.5,17.8,13.7,17,18.8,17.8,19.2,14.1,18.8,21.9,16.7,17.7,16.2,15.9,16.3,16.5,20,20.2,14.8,10.2,11.9,14.2,14.1,9.7,10.5,21.2,22.5,21.6,19.4,20,15.7,19.7,15.6,17.9,23.5,24.2,22.9,15.2,12.5,16.4,21.4,14.8,18.4,17.1,18.9,15.8,17.4,18.3,23.4,23.3,26.8,30.5,25,24.5,13.6,30.6,16.2,21.6,24.2,21.8,18.8,22.4,27.9,29.1,24.7,15.8,16,17.4,12.9,15.1,16.5,16.5,18.4,19.6,23.4,25.8,24.9,22.9,18.5,18.1,17.6,18.7,20.7,17.8,19.5,14.2,16.7,17.2,18.1,7,30.2,52.9,23.3,23,15.3,96.7,36.2,26.5,37.8,33.2,26.3,36.9,34.7,26.6,34.3,20.8,28.8,15.4,41.9,24.1,23.6,22,20.9,36.3,24.8,15,25.5,77.2,25.6,49.8,47.3,58,46.2,39.6,58.8,46.5,39.8,32,41.7,34.6,31.9,32.1,26.5,28.4,32.4,27.2,16.7,37.7,40,38.4,29,50.8,37.8,35.8,27.5,31,26.1,33.7,28.6,32.7,32.8,44,33.6,20.1,24.9,20.2,17.8,23.1,20.1,16,22.3,27,22.8,28.9,24.2,27.6,28.6,24.9,26.3,27.3,31.7,32.7,39.5,25,28.1,22.9,34.4,30.9,27.9,32.8,25.7,18.5,29.8,33.9,30.1,26.5,25.8,23.2,25.6,24.4,32.6,23.7,33.7,23.2,17.5,18.3,38.6,52.4,43.2,30.8,30.5,32.2,51.3,31.1,25.2,33,31.9,32.2,32.8,29,31.5,25.2,23.3,17,20.5,29.3,29.8,27.4,22.4,21.4,30.6,31.5,26,28.2,25.8,21.4,24.1,34.1,19.6,27.1,29.1,30,34.2,29.3,20.9,22.1,22,28.4,20.6,21.3,24.4,36.3,17,14.9,16,19.8,26,20.8,33,29.6,27.2,27.7,40.7,30.4,27.6,22.9,11.1,19.7,25.3,21.4,22.7,31.6,35.9,34.2,25.1,27.8,29,40.6,36.7,32.8,21,81.5,69.6,46.4,40.1,63,35.2,21.8,49.6,22.5,42.6,37.4,28.7,26.5,27.4,30.9,27,11.6,32.7,34.5,34,25.4,22.5,32.6,42.2,48.6,46.8,70.9,55.9,52.9,9.7,27.6,19.1,44.5,58.9,16.6,10.7,33,54.4,53.6,54,37.5,72.7,200.1,115.6,128.6,75.7,16.2,32.1,35.3,34.1,29.2,35.8,48.9,64,27.6,29.6,24.9,24,25.7,27.1,26.5,30.2,36,27.5,28,23.8,27.7,26.5,33.7,27.2,33.4,26,32.6,35,29.9,28.6,22.6,22.2,17.7,16.9,14.6,25.9,28.2,18,37.5,34.5,39.4,37.9,35.1,34.9,21.7,43.6,47.8,48.8,54.3,59,18.8,58.7,32.2,52.5,11.8,18.9,61.5,56.5,55.5,68.2,49.7,42,43.9,27,30.5,68.2,29.7,49.4,19.6,27.7,38.7,76.1,33,35.5,29.5,21.5,27.3,54.3,48.1,35.2,30.7,23.2,58.2,48.8,48.7,34.2,45.6,27.3,36.7,35.1,59.2,43.2,56,17.9,70.5,118.1,40.6,26.8,27.3,41.1,26.7,16.2,20,16.3,25.2,24.3,26.6,23.4,23.6,20.4,18.9,21.5,31.6,30.4,28.8,31.6,29.9,31.4,25.1,18.3,44,27,26.6,30.7,55.5,45,45.4,27.7,37,44.5,45.7,37.7,38.2,39.1,34.4,30,21.5,33,34.7,34.5,42.9,65.1,52.9,51.2,21.6,19.4,45,23,16,44.2,44.2,21.2,25.8,52.9,30.4,30.4,23.8,16.2,15.3,22.3,29.9,19.8,25.2,48.9,57.1,21.7,26.6,22.4,20.4,28.4,25.3,26.1,18.7,28.9,29.7,30.8,66.5,32.6,27.4,33.3,37.3,26.6,37.1,45.2,47.5,47.7,53,35.5,36.8,19.6,37.1,29.2,32.4,23,39.8,35.9,41.7,43.9,62.5,39.7,50.2,72.1,37.9,30.5,23.9,31.2,33.6,29.3,28.8,23.6,21.9,24,20.6,26.4,33.8,34.4,30.4,25,23.4,23.2,22,21.2,22,29.1,21.9,21.5,25.2,26.4,25.4,30.3,37,24.8,29.1,26,43.2,27.7,32,47.8,22.9,26.1,28,9.3,6.8,16.9,13.3,15.1,8.5,8.9,20.7,34.7,26.9,22.6,19.5,23,24.4,30.6,12.2,14.6,30,19.2,21.1,7.2,27.5,45,13.4,13.4,31.6,48.6,30.2,33.8,42.8,52.6,58.7,46.2,70,63.5,33.2,41.5,26,30.9,45.9,37.6,38.1,79.1,50.7,33.4,45.3,32.7,23.1,33.9,35,33.6,42.5,22.8,27,27.3,23.5,30.7,31.2,31.5,14.5,11.8,23.4,29.5,22.2,37.5,14.4,27.1,36.3,28,32.4,40.6,33.8,23.6,24.2,23.4,18.3,18.7,22.9,62.2,44.2,31.8,22.5,26,21.3,28.9,37.4,44,44.8,22,43,30.8,27.9,6.3,33.9,46.5,5.7,49.1,24.5,23.7,22.5,21.6,27.6,26.3,24.8,15.5,25.9,21.7,21.5,17.7,23.5,21.2,26.3,27,26.5,48.6,25.1,21.6,15.5,15.3,16.6,18.5,26.6,16,6.4,16.7,20.1,12.9,15.2,23.8,23.6,27.9,40.2,37.8,27.1,20.7,15.3,17.3,11.8,15.8,40.6,50.2,44.3,52.4,42.6,28,26.2,28.9,29.2,31.5,32.2,35.2,32.7,41.3,30,31.9,22.9,20.7,27.3,13.4,16.5,30.7,24.4,30.2,39.9,30.6,32.9,33.3,25.3,30.5,16.4,11.2,23.7,25.5,34.7,30.5,33.6,33.9,33.4,31.7,37,27.2,30.4,51,44.6,29.5,28.6,32.6,34.2,17.7,17.7,37.7,39,29.2,13.2,21.3,27.7,27.4,13.5,23.6,26.2,20.1,16,21.1,25.2,26.8,20.7,24.4,23.2,29.4,32.1,21,23.6,26.1,19.4,20.3,70.8,35.9,38.7,50.1,34.6,34,28.7,30.7,31.5,33.3,24.9,23.5,22.5,35.1,32,32.8,29.1,33.1,38.3,33.5,52.5,28.5,32.4,29.2,70.2,32.2,32,32.2,44.1,44.2,90.3,60.2,59.8,59.1,60,66.1,52.5,148.4,371.5,179.4,170.5,53.8,163.4,21,2382.5,71.7,41.4,45.1,52.4,59.9,79.4,75.6,187,336.5,526.6,97.2,89.5,66.9,68.3,107,105.6,52.2,52.2,36.6,37.3,75.8,38.9,41.6,20.9,22.8,28.2,18.2,40.6,40.7,16.3,27,92.6,69.3,69,46.3,46.2,55.9,54,73.9,74.3,74.8,74.2,161.1,107.4,143.5,149.3,131.1,563.7,143.9,119.8,118,124,44.4,47.3,40.1,86.3,86.4,43.9,40.9,88.4,103.4,10.3,39.9,50.7,46.2,44.5,43.4,43.9,43.4,43.8,71.2,72.8,50.5,50.8,100.8,45.2,45.2,43.4,45.1,79.2,80.9,96.7,10.4,73,10.3,63.9,9.6,48.2,6.3,61,63.3,64.4,62.5,26,36.7,19.9,49.6,64,64.9,59.8,65.5,67.3,24.8,44.1,65.1,111.6,116.2,5.8,56.8,25.5,87.5,89.1,65.3,111.3,34.7,39.9,42,24.4,48.6,67.6,68.8,56.5,890.9,46,50.8,29.9,19.7,59.4,50.6,25.1,19.2,70.4,26.2,42.3,35.6,40.4,38.1,48.7,60.6,85.2,62.8,46.9,44,50.8,35.5,50.6,51.3,44.9,55.8,50.1,48.9,1.9,42.3,35.6,38.1,69.7,69.7,190,148.3,70.8,74.8,66.8,98.4,70.2,52.8,54.3,98,244.3,104.5,96.6,87.3,103.7,75.1,82.6,68.6,48.7,103.2,149.4,130.2,58.8,56.2,43.4,62.9,123.7,81,87.8,175.9,73.7,42.3,45,43.4,51,50.9,51.2,45.2,79,47.5,91.3,50.6,49.1,47.5,29.1,36.5,39,7.1,47,54.7,68.9,85.1,23.5,45.6,46,63.4,66.4,30.2,44.8,37.2,50.8,44.8,57.9,109.5,88.7,68.6,85.9,32,34.7,53.8,35.5,21.9,17.9,29.9,37.9,67.3,29.9,39.2,38.9,32.3,34.5,20.9,13.2,21.3,13.9,150.9,43.7,46.8,9.2,37,46.1,104,35.3,33.6,41.3,34,39.4,43.7,31.1,45.4,43.4,136.7,49.6,46.3,25.2,35.3,30.8,15.9,33.2,33.8,34.7,28.4,78.8,150.2,107.6,52,73.8,60.7,52.9,73.2,32,10.5,23,49.1,29.1,32.7,38.9,34.7,29.7,54.9,33.4,35.6,31.1,37.1,46.8,41.2,33.1,32.4,71.6,31.9,47.4,49.7,55.3,60.8,43.8,46.5,51.7,56.4,52.7,33.3,29.5,38.2,32.7,33.9,31.4,35.1,47.7,29.3,27.9,27.7,37.1,30,29,50.3,32.8,41.7,43.5,33.8,34.2,47.2,61.7,194.4,58.9,55.3,34.4,52.6,65.1,52.7,66.2,36.9,45.1,74.1,67.2,56.5,99.9,196,113.2,113.3,69.2,55.5,61.3,40.2,17.1,25.3,72.3,53.6,51.7,37.7,45.3,42.1,45.7,63.3,48.7,50.4,101.2,98.4,101.6,67,70.5,63.2,26.4,31,38.4,43.4,57.3,94.1,78.5,80.3,76.1,87.2,61.8,129.2,102.9,86.6,50.9,61.4,43.2,62.1,98.3,1921.9,229,224.5,100.4,84,68.8,113.5,107.2,56.9,99.2,60.2,67.6,57,64.8,256.9,55.4,51.3,42.5,46.2,34,53.9,79.5,25.9,45.1,40.9,40.9,36.4,22.9,59.2,56.4,118.5,79.6,86.7,74.4,73.6,54.9,61.2,47.6,53,69.8,77.5,81.6,68.7,31.8,35.5,63.7,82.8,62.1,31.1,92.8,106.1,1.7,17.3,341.4,160,162.1,136.8,149.7,246.4,195.4,198.2,92.1,51.2,66.3,44.4,42.6,87,51.9,52.6,49.3,48,93.4,2,41.7,71.9,29.4,90.1,66.2,67.1,44.4,47.5,64,43.3,42.9,41.1,86.4,64.3,38.2,41.6,78.2,52.7,51.5,204.1,87.3,99.8,119.4,104,7.1,182.6,111.3,92.6,154.2,100,99.4,127.7,147.4,101.2,106.5,96,97.5,104.5,72.9,84.1,92,81,129,155.5,122.9,208.4,71,70.2,76.4,79.5,72.5,42.6,66.4,78.7,67.8,104.4,105.3,95.9,31.6,69,56.7,7.7,8.7,75.6,69.9,60.1,36.6,53.3,27.1,8.8,33.3,41,45.3,46,49.2,42.8,49.4,223.6,61.5,26,104.4,54.3,92.1,49.6,40.7,36,32.6,25.8,40.6,20.7,26.8,37.9,47.4,30,15.4,29.1,30.7,24.1,20.7,23.7,6.1,12.7,21.5,27.7,25.6,22.6,18.4,21.2,25.9,21.8,18.5,14.9,18,25,27.6,18.1,22.4,17.8,18.1,19.3,18.5,16.5,18.8,28.3,42.6,20.4,18.3,18.8,18,18.6,24.1,23.4,88.8,84.6,39.5,48.5,112.8,165.9,214.2,62.9,37.3,118,115.1,81.2,84.8,114.2,117.3,86.9,47.8,25.7,46,72.9,15.3,39.2,44.6,94.5,92.1,115.9,110.7,17,20.1,32.4,69.9,8.1,14.7,12.7,11.7,9,17,44,15.1,6.7,8.5,10.7,12.3,34,11.7,13.4,16.3,17.2,31.9,52.9,78.1,84.9,23.4,54.4,65,87,68.5,40.8,46,71.2,73.1,69.6,63.2,79.9,14.5,101.7,52.3,69.6,68.2,74,58.4,70.9,59,50.7,65.1,62.8,56.8,95.5,59.8,168.2,99,102.4,86.1,83.7,81.2,76.9,77.2,81.7,83.6,84.4,58.4,66.6,115.4,68.2,66.9,81.6,104.1,84,51.9,48.2,87.8,5.8,187.1,129.4,64.8,28.3,49.8,60.1,65.8,178.7,49.3,165,70.8,64.6,35.6,32.3,66.4,59.7,64.5,57.3,44.5,43.7,42.2,53.7,62.6,65.5,61.7,48.6,51.7,44.9,37.5,49.9,46.3,80.3,51,74.2,46.8,36.6,69.3,39.5,45.2,47.8,51.4,59.2,67.6,84.1,106.3,58.6,71.5,33.7,49.1,36.8,49.7,36.6,48,56.6,61.8,52.7,54.5,74.6,77.7,68.6,92.8,65.8,93.1,103.6,92.3,94.1,95.5,96.3,88.4,86.7,52.3,87,17.8,185.2,179.3,209.6,184.8,262.2,132.8,519.8,436,535.7,26.5,121.1,193.8,156.2,54.5,6.7,62.8,56.3,114.7,107.6,149,49.2,55.3,64.2,66,45.6,50.2,105.3,167.3,196.1,75,78.9,220.8,235.1,109.4,102.2,103.8,78.5,48.5,46,60.5,76.1,7.9,71.7,65.1,57.4,79,81.8,159.1,144.4,176.4,83.1,37.4,47.1,139.6,59.2,135.7,109.6,94.9,96,43.6,38.1,78.3,172.2,101.7,103.1,108,104.7,215.6,229.1,73.5,398.7,149,106.1,49.6,84.2,6.9,89,53.1,87.7,18.9,32.1,58.2,66.7,38.8,91.7,45,52.3,55.3,55.9,82.5,39.7,34.2,37.3,58.8,78.4,76.9,78.1,75.6,92.5,79,85.8,90.4,71.9,81,93.7,145.9,33.4,149.6,120.3,121.3,245.6,321.5,33.1,417.9,211.6,100.7,109.4,100.9,76.7,78.2,56.1,49.4,52.7,60.2,64.9,59.6,65.5,86.1,39.3,44.6,50.3,54.9,115.2,58.5,70.1,68.1,92.4,65.6,65.6,53.3,50.9,24.5,23.1,56.5,33.1,19.2,57.4,126.2,82.1,166.8,52.6,27.6,26.1,18.8,19.5,30.6,29.3,26.8,26.9,17,20.4,27.9,19.8,29.5,35.2,24.1,22.4,37.6,42.1,44.5,35.7,34.5,31.4,30.5,29.1,34.6,33.9,20.3,16.9,17,19.8,32.8,15.7,19.1,27.2,28.2,31.6,18.6,37,60.3,183.7,97.5,43.7,34.8,32,30.8,38.3,41.3,37.2,41.4,24.4,30,40.5,35.9,20.2,19.2,31.5,33.9,64.5,61.1,15.1,100.6,103.7,56.6,61.7,58.1,59.6,37.9,43.1,41.5,39.7,48.6,36.9,30.2,76.1,86,61.3,71.6,59.5,64.8,53.3,47.5,54.9,53.4,43,83.7,22.1,143.9,76,67.5,82,77.4,62.2,76.1,72.3,46.9,61.7,49.8,73.3,70.4,76.4,63.9,71.5,69.4,42.8,45.3,52.9,45,60.6,141.6,140.8,69.1,68.2,103.5,86,70.3,67.5,85.7,63.1,76.5,71.8,43.7,59.1,58.9,66.3,44.4,18.3,66.6,72.4,42.3,38,56.9,68,90.9,104.7,62.7,143,108.1,61.1,143.8,126.3,133.7,25.3,14.9,110.8,137.3,62.2,142.2,84.3,158.3,110.8,157.2,131.2,108.9,100.5,130.3,191.9,145.3,111.3,125.4,119.8,64.5,12.5,44,96.6,102.9,100.8,83.1,79.8,37.7,13,7.5,68.3,58.1,51,48.9,51.8,62.9,50.5,52.8,67.3,74.9,80.3,74.3,28.4,23.9,55.2,51.4,164.5,119.1,198.4,125.4,129.7,135.7,134.7,150.9,183.1,194.3,184.1,156.4,148,151.4,149.1,146,121.3,156.4,138.2,129.9,135.8,6.3,122,136.7,94.1,98.8,114.4,113.9,102.8,123.5,74.4,23.3,91.6,115.3,87.8,93.9,98.5,99.8,79.5,101.4,87.6,74.2,64.2,58.8,57.7,62.4,85.8,88.4,72.8,83.6,72.4,89.4,92,92.2,80.2,69.2,49.9,53,56.3,81.9,42.2,43.1,30.4,45.4,54.1,55.4,52,34.1,42.2,47.6,53.2,52.8,62.7,56.5,65.7,84.3,70.4,81.5,74.9,69.3,84.5,86,88.3,81.8,80.2,80.8,78.5,78.3,88.5,73.7,99.7,72.2,76.2,56.1,63.9,70,72.6,98.1,86.8,50.3,39.5,13.4,33.5,30.9,51.5,65.6,57.9,58.2,66.4,77.2,75.6,66.1,58.9,54,72.9,70,43.9,60.8,53.7,69.4,63.6,30.4,23.3,67.3,64.4,61.6,67.5,35.1,36.2,90,79.9,69.3,51.2,51.4,55.6,66.4,60.8,27.5,32.2,53.3,49.1,50.8,68.8,62.7,37.8,56.8,15.6,55.7,53.1,52,39.5,47.7,78,87.4,76.3,125.9,261,34.6,35.1,44.4,48.5,60.4,55.6,91,58.1,58.8,58,65.7,52.9,44.3,58.1,69.4,69.9,53.3,70.7,148.2,93.2,52.2,54.7,72.6,17.2,49.2,63.9,56.2,63.9,55,56.9,67.4,43.2,46.8,21.9,36.3,32.8,15,45.7,38.9,57.8,45.4,48.6,62.8,39.7,53.5,58.1,59.8,31.1,31.2,63.4,55,57.4,46.7,62.8,50.9,67.1,28.6,45.5,64.4,43.6,72.2,70.8,64.3,32.8,57.5,74.1,86.5,19.1,71.5,41.1,41.2,52.7,60,128.9,97.5,65.3,23.4,42.6,18.1,59.4,28.7,38.3,37.9,39.8,35.6,32.3,71.8,94.4,22.1,64.7,28.7,39.3,34.1,47.2,75.8,11.1,38.2,25.2,44.8,42.7,50.3,102.5,70.4,36.9,24.2,55.9,21.6,40,36.1,46.1,47.6,42.7,51.7,62.4,38.4,41,35.2,29.2,74.1,95.6,78.9,111.4,94.1,29.9,59.7,62.9,25.3,86.2,56.5,56.9,127.8,77.4,96.4,76.6,69.2,57.8,78.4,20.9,52.4,68.8,36.3,34.6,79,57.8,38.3,75.9,67.1,37.6,57.3,30,40.6,58.2,51.3,51.5,62,116.4,94.8,88.9,80.6,74.9,53.3,59,71.3,79,74.6,141.6,83.2,54.9,42.7,54.1,44.8,58.8,49.2,63.2,38.4,47.2,53.9,56.3,52.2,54.3,70.9,79.2,68.3,73.1,54.8,62.3,48.6,44.1,54.6,52,62.4,61.8,77.2,59.2,54.4,52,49,58.8,57.2,36.7,37.2,46,52.6,68.3,76.1,98.9,67.2,63.6,53,41.1,32.1,43.6,68.8,46.3,65.2,68.1,39.6,18.6,25,37.7,55.7,28.9,48.4,48.5,58.9,53.9,51.2,74.1,75.3,60.1,45.8,65,35.6,44.8,44.7,48.7,61.5,56.9,57.8,59.7,64.5,91.9,103,85.9,80.9,57.1,79.9,111.5,141.4,110,149.2,113.3,88.6,96.6,73.1,63.6,91.4,65.5,65.4,66,93.1,79.7,60.4,88.8,82.1,101,81,68.6,96.6,61.3,55.4,50,84,89.8,97.5,102.6,85.4,87.1,49.5,56.6,98,321.4,202.3,70.9,88,96.5,50,58.7,54.1,77.2,75.6,57.2,59.9,80.4,89.1,74.9,72.2,79.4,76.7,111.2,95.6,118.9,109.3,69.7,61.3,55.7,66.2,31.9,41.8,90.9,54.5,80,84.7,15.3,97.1,113.6,117,86.4,105.9,50.6,74.3,81.9,63.1,55,71.7,72.1,76.7,88.8,42,68.5,81.1,62.5,84.3,80.4,70.4,117.6,86.1,81,74.9,105.8,104,77.8,73.3,52.2,98.5,38.9,76.9,51.8,40.8,56.3,98.6,88.2,130.9,32.9,42.8,41.7,40.8,28.5,14.3,18.5,37.7,46.9,47.2,46,54.3,51.9,45.4,37.7,87.7,96.5,29.4,88.5,50.3,68.3,52.3,53,66.3,27.9,47.2,47.3,45.6,58.1,61.5,44.5,39,27.3,38.9,40.1,61.9,58,50.9,44.5,31.7,37.3,76,56.2,59.6,60.9,42.2,62,45.5,120.8,77.1,66.6,215.2,11,94.5,108,118.2,108.7,92.4,97.6,103.1,108,87.4,105.3,88.8,70,89,105.4,87.3,72.8,60.3,75.8,58.6,55,67,70.6,64.3,80.7,68.8,52.9,82.9,67,58.1,72.3,41.8,52.3,53.6,60.6,55.7,57.5,61.1,61.7,44.9,58.6,75,49.2,30.7,34.8,49.4,56.5,86.6,107.1,53.3,44.7,55.3,48.1,49.4,49.4,66.8,57.3,45.8,62.3,75.2,71.9,69.6,82.4,63.1,122.5,84.5,100,77.8,89.1,105.8,69.8,65,78.2,65.3,157.6,107.8,93.1,69.9,94.3,89,107.9,118,102,96.2,100.5,78.3,72.4,71.4,104.5,74.7,48.8,72.5,58.7,56.8,79.5,83.1,84.5,98.2,106.9,112.3,94.8,47.5,41.8,46.4,46.5,49.7,62.5,55.1,48.7,47.3,40.2,38,47.3,54.1,219.6,32.4,56,38.8,30,31.6,32.5,36.1,49.2,62.3,45.7,61.4,62.5,83.8,45,32.5,36.9,43.2,41.6,33.4,37.1,49.9,36,43,40.4,47.6,56.4,21.7,28.7,30.3,129.7,44,35.1,35.3,53.4,39.2,33.7,36.1,42.9,80,86.3,54.7,42.8,46.5,36.6,48.8,35.5,44.6,39.5,36.5,49.4,37.6,50.4,39.4,40.7,30.8,35.5,32.3,36.3,52.3,44.5,39.9,51.5,50,35.1,51.2,52.6,34.7,33.9,34.9,47.3,77.6,163.2,60.3,57,58.4,55.2,56.7,51.8,46.1,53.5,48.1,38,59.6,63,45.5,50.7,54.7,54.3,47.9,47.5,67.8,48.2,66.3,21.2,25.9,49.8,26.9,63.5,53.6,21.3,29.2,38,37.3,41.8,46.3,34.1,30.8,32.1,39.1,33.6,33.7,25.8,37.5,46.4,44.7,79.7,72.5,50,33.7,33.2,34.2,33.8,33.8,34.5,44.9,57.3,47,43.4,30.9,34.3,37.2,46.3,35.6,51.7,23.4,33.7,37.5,105.3,78.7,38.9,33.4,48.1,51.4,33,48.6,88.5,12.4,77.3,52.1,47.8,38,47.4,33.7,37.3,56.2,48.7,81.3,94.5,97.1,130.6,123.9,94.7,101.8,96.5,8.2,125.3,28.6,37,25.8,25.8,26.3,29,40.6,31.7,36.3,35.2,29.3,26.8,26.9,33.4,33.9,36.2,38.5,41.8,27.5,75.6,95,49.4,37.8,39.5,31.4,46.3,49,55.9,31.7,42.1,45,52.6,50.6,61.8,59,69.1,49.8,37.9,51.8,47.3,51.3,47.4,35.5,41.6,45.2,29.3,53.8,82.2,66.7,55.3,35.5,58,38.4,47.8,40.3,48.7,35.2,58.9,31.5,2.6,48.3,51,49.2,36.8,46.5,49.5,46.5,57.2,49.9,121.3,78.5,70.4,47.5,51.1,64.1,43.9,47.2,39,22.6,33,45.3,38,80.7,102.6,83.4,78.3,88.4,201.1,96.4,108.8,59.5,68,60.1,37.7,52.5,50.2,39.9,52.8,79.7,78.1,70.6,63.3,57.8,53.2,25.9,30.2,45.2,35.1,24,57,36.6,19.5,38.2,10.1,21,37,41.3,36.1,49.2,33.5,28.3,42.7,68.7,77.9,68.9,63.2,42.2,45,39.5,64.8,59.8,39.4,50.3,44.9,40.9,45.5,66.1,56.1,49.4,45.8,56,53.5,51.2,47.6,36.1,36.2,46.6,55,79.6,68.8,60.1,50.2,53.2,64.3,38.8,27.5,68.3,53.3,92.4,56.1,57.3,56.4,44.3,75.6,49.8,50.1,50.1,64.9,35.6,36.1,42,72.5,43,51.9,89.2,78.2,33.9,27.3,28,33.8,31.4,36.1,56.3,31.9,27,34.9,35.8,26.5,25.5,27.2,23.7,29.8,31.9,18.4,39.8,19.6,21.2,42.2,28.1,16.5,37.6,48.1,45.6,37,28.7,27.1,25.6,32.7,52.8,35.8,29.5,36.3,34.8,26.2,9.3,14.3,17.7,33.9,31.4,30.1,15.3,18.5,35,44.4,32.4,46.1,45.4,32.5,36.3,60,44,123.4,51.9,46.9,40.1,29.7,53.7,35.9,63.1,37.2,49.9,46.8,32.7,34.9,53.3,99.7,66,52.3,66.5,65,50.7,33.3,50.4,45.6,46.3,57.5,52.2,48.5,67.5,72,108.6,76.5,61.5,57.8,58.1,66.1,66.3,55.4,57.6,71.6,145.7,75,63.4,59.3,52.8,51.3,54.4,39.7,43.8,36.9,53.5,27.9,21.8,27.2,50.9,50.9,31.8,15.3,34.5,35.9,47.3,69.5,70,67,74.8,40.6,41.5,73.4,50.7,51.7,60.8,42.1,30.4,49.4,63.3,54.3,64,39.6,56.3,58.5,61.7,58,44.1,47.3,72.4,52.1,65.8,55.6,62.1,63.8,66.9,41.2,45.1,54.5,62,83.7,77.8,75.7,60.5,8.2,58.9,56.9,21,31.9,6.1,43.2,71.8,48.9,49.5,33.3,158.5,79.8,98.4,77.2,70.9,82.5,35.2,9.6,31.6,96,34.4,49,43.1,43.3,43.1,41.5,84,41.1,43.4,47.8,56.4,54.7,32.5,49.9,65.3,76.5,77.3,77.4,78.8,100.5,50.9,43.2,41.1,50.1,49.5,53.2,50.8,63.1,53.9,51.4,66.6,60.9,43.9,39.8,43.9,91,60.9,64.8,125.8,130.7,37.8,24,27.1,35.5,42.3,23.1,38.7,48.1,51.8,22.8,19.2,16.9,26.6,40.2,34.7,48.9,63.4,53,44.8,49.5,32.2,73.6,100.5,12.1,113,77,90,33.1,64.9,37.6,37.1,25.6,43.5,122.4,80.2,37.2,91.1,44.4,67.6,118.5,19,52.5,62.3,66.6,59.4,29.7,24.9,37.4,26.8,20.9,27.2,29.7,47.8,33,33,35.3,37.3,27.4,35.4,33.3,30.5,35.2,34.3,53.2,0.2,25.6,52.5,99.7,90.6,54.5,33.1,21.7,29.5,29.4,27.6,51.1,77.6,46.4,54.4,26.6,39.2,52.4,22.3,33,39.2,74.1,27.4,27.3,32,10.1,45.3,40.1,43,43.1,40.5,37,49.5,28.4,22.9,22.9,54.3,109.5,21.4,43.2,34.5,40.2,45.6,64.7,33.4,53.1,62.7,99.7,7.1,104.2,81.7,102,40.5,75.3,89.2,88.7,58,75.5,85.5,75.2,113.2,95.7,118.4,156.4,31.4,53,115.3,101.6,55.7,66.4,84.3,81.2,79.2,82.1,171.2,28.1,111.1,48,141.2,151.4,111.5,33.8,68.8,126.9,120.6,171.3,164.8,49.6,93.9,83.6,180.4,195.8,141.4,79.5,77,137.8,66.9,66.7,68.1,50.5,69,50,75.3,61,68.3,50.9,75.8,40.3,102.5,115.7,123.7,76.3,71.2,85.6,47,31.6,34.6,37.7,43.2,42.5,34.3,48.4,61.3,58.4,99.3,68.7,156.7,60.8,52.2,143.6,89.3,257.4,72.6,45.3,125.1,97.6,73.1,72.6,70.4,73.3,140.9,68.7,72.9,76.1,85.2,12.2,16.1,52.2,98.6,31.8,24.1,18.8,25.2,30.3,32.8,33.5,30.9,24.9,20.9,26,35.7,28.4,30.4,25.7,27.4,14.5,15,22.6,21.8,28.8,33.8,32.3,32.2,28.9,36.3,36.5,23,23.2,27,33.3,30.4,34.6,30,57.3,33.3,41,65.1,25.2,28.3,20.6,23,13.3,19.3,19.8,21.2,27.9,34.6,23,29.8,33.4,36.8,26.9,23.6,7.3,26.1,27.8,68.3,24,29.2,34.2,30.1,25.2,40.2,27.6,23.1,34,42.9,50.4,64.7,24.4,139.3,65.8,94.8,43.5,28.7,51.2,115.9,250.2,107.2,98.7,249.1,1.9,390.4,319,124.6,120.7,10.4,571.3,148.9,62.5,38.1,91,158.4,89.8,2.7,146.2,80.4,77,59.9,53.4,121.4,48.8,75.7,128.6,25.4,42.1,51,50.2,68.3,79.9,111.6,114.5,82.7,101.7,68.1,84.3,35.2,51.2,51.5,35.1,56.4,43.6,33,34.3,34.7,34.5,32,33.6,34.8,39.7,78.2,33.6,52.1,48.9,35.7,35,33,33.3,34.4,43.9,54.5,38.9,32,32.4,35.7,50.7,53.1,48.4,35.1,47.7,57.3,65.7,33.9,119.7,153.2,51.5,60.9,57.9,62.1,67.2,64.2,65.4,177.7,91.7,98.7,104.3,158.3,103.7,83.8,88.2,151.8,59.9,75.2,37.3,17.7,28.4,23.7,34.9,43,36.5,31.2,38.5,48.9,50.7,35.1,67.4,34.6,34.7,39.5,37.7,44.4,65.2,50.5,25,28.5,31.5,38.1,47.9,42.5,28.7,31.3,53.7,47.7,35.6,32.1,36.9,32.8,33.9,50.8,51.6,34.5,50.6,34.1,35.4,37,43.9,38.6,51,51.7,82.3,53,34.8,67.1,35.1,34.9,34,34.5,50,36.4,30.1,37.4,48.7,49.1,51.8,261.9,30.1,62.4,119.2,141.9,117.1,171.2,103.7,56,65.9,57.7,35.9,71.5,98.4,43.2,77.5,56.7,80.6,76.1,81.9,112.2,66,50.2,52.1,82.9,66.4,154.1,101.6,120.6,83.2,66.4,91.9,98.2,92.1,163.9,83.1,86.3,37.8,80.3,88.7,67.4,53.5,109.4,58.5,171.3,321.3,66,39.4,67.7,68,66.1,51.1,51.5,85.2,67.5,154.1,86.3,118.7,54,90.7,116.7,54.1,42.2,53.3,29.4,20.3,50.6,23.9,29.7,32.8,16.5,16.9,17.4,16.3,37.5,28.9,37.8,16.3,44,59,23.6,42.9,36.5,29.6,20.6,51,34,35.7,51.3,85.4,49.1,51,52.7,52,44.7,23.1,33.7,35.6,33.2,28.5,22.5,32.7,34.5,52.9,67.3,67.8,49.7,35.6,67.9,84,85.4,389.8,52.7,43.2,43.2,51.2,69.2,82.9,52.7,54.8,30.4,68,68.9,67.7,201.5,89.3,84.3,93.4,60.6,68.5,100.4,67.6,69.8,86.3,153.2,85.5,93.8,123,79,113.3,83.3,86.8,65.8,49.4,39.3,67.1,36.4,47.5,52.6,68.5,58.8,81.9,64.9,50.6,84.5,80.8,76.5,8.3,50.7,86,106.2,132.8,89.4,137.8,51.9,48.6,68.8,86.7,56.4,59.8,52.7,53,48.3,77.2,60.9,44.4,41,42.1,63.6,30,51.9,36.4,48.1,68.3,86.8,61.5,34.8,22.8,40.2,38.2,38,36.2,50.4,56.9,44.8,37.4,31.1,51.1,41.3,45.2,50.4,32.7,35,35.3,34.5,51.7,32.3,35,50,53,65.7,49.6,52,51.5,32.6,34.8,33.1,35.6,32.8,34.4,43.8,46.1,22.7,80.7,83.3,63.7,13.6,26.4,42.8,40.7,40.8,42,43.4,62,86.6,102.2,87.4,225.7,63.6,61.5,40.6,43.5,40.9,41.7,40.9,43.1,41.2,43,39.6,45.7,39.1,42.5,41.8,41.8,44.5,57.5,84.2,51.5,31.9,23.2,41.9,38.9,44.2,62.8,41.2,61.6,63,79.7,69.4,13.7,39.5,35.5,34.1,38.6,40,39.1,37.1,26.3,42.8,40.9,39.9,42.3,42.7,41.6,28.6,34,41.4,38.3,42.2,58.1,43.8,37.8,43,81.8,83,82.6,82.4,44.3,41.1,60.4,42.9,60.5,41.6,42.5,47.3,64.9,56.2,65.1,117.5,142.9,84.6,81.7,80.9,105.7,62.6,40.6,61.1,62,124.9,107,120.6,147.7,134.2,168.5,93.7,103.9,123.4,103,82.3,84.6,185.7,84.6,81.9,143.3,125.8,81.1,65.7,69,96,101.5,115.4,31.6,103.7,135.6,61.4,27.2,36.8,24.7,37.5,28.2,34.6,40.3,48.5,30.2,31.7,32.3,25.7,27,33.1,40.1,42,39.5,62.3,24.2,81.4,42.1,62,62.6,48.6,31,35.1,33.9,34.1,32.3,23.8,38.8,25.3,32.8,33.9,29.6,39.4,36.2,34.3,43.7,38,35.7,37.2,37.7,37.4,35.6,35.1,26.1,36.4,32,37.5,30.3,26.1,19.3,31.7,21.9,17.1,18.5,33.5,34.7,42.5,55.6,37,36.1,20.4,16.8,21.8,40.9,30.3,36.9,37.5,37.4,36,39.1,36.9,54.2,37,39.5,35.2,54.6,90.6,79.9,99.3,85.4,66.5,70,74,75.5,65.2,83.7,76.3,89.9,97.2,101.8,107.9,87.1,104,55.6,35.8,7.7,178.8,93.6,175.4,130.1,28.4,30.5,35.5,39,35.7,38.2,35.6,34.1,36.8,57.1,37.3,36.7,38.1,34.4,36.3,38.7,54.8,36.5,30.7,25,34.6,27.7,31.1,37.7,34.6,30.4,18.4,7.6,19.3,32.6,53.1,22.4,21.3,35.9,36.9,35.7,36.8,37.1,36.7,45.7,85.9,53,124.7,133,72.5,97.4,60,80.9,50.2,20.8,41.4,23.6,31,51.3,46.2,33.3,33.8,38.1,54.4,46.6,79.2,61.9,56.2,54.2,38.3,37.9,37.1,27.7,18.5,24.5,52.3,41.3,40.5,47.7,77.7,69.3,73.7,75,75.4,95.5,77.4,0.7,70.1,57.5,73.3,83.3,98.2,107.5,74.1,72.5,237.3,67.4,32.8,56.7,82,68.1,64.9,36.5,33.5,27.5,35.7,32.3,37.5,35.2,95.3,98.6,83.9,93.5,54.8,54.3,55.4,37.6,34.5,36.2,31.9,31.5,33.9,34,35.9,41.7,70.8,101.9,214.9,66.8,72.7,75.4,54.7,35.6,38.7,32.5,39,39.9,35.6,37.5,31,41.2,42.9,32.6,73.8,57.3,109.6,76.7,52.2,53.4,57.3,56.3,54.1,33.3,32.6,29,34.4,37.1,57.6,53.7,55,44.6,48.5,53.8,55.8,53.8,36.3,30.5,42.2,36.2,38.8,35.8,35.7,37.7,36.1,33.9,22.9,39.2,24.8,28,35.8,30.9,90.4,121.8,128.2,89.9,111.7,119.2,120.6,45.2,27.9,26.5,110.2,83.9,57.3,50.6,37.3,36.4,37.9,37.4,33.5,44.9,36.3,94.4,100.8,91.8,100,101.1,92.5,92.4,88,84.9,57.1,137.4,97,2.9,106,56.9,157.4,115.3,74.1,73.6,71.4,75.5,54,36.7,41.4,34.8,39.4,35,55.9,54.8,17.5,7.3,49,38.5,21.9,33,100.7,62.8,90.2,75.6,40.7,47.2,130.7,134.8,270.7,17.5,10.8,32,37.9,36.7,36.9,38.9,37.5,32.7,39.1,52.9,38.2,71,77.4,71.6,54.2,54.2,55.5,39.3,34.7,37.1,54.7,55.1,67.3,96,101.2,82.1,56.4,90.1,56.2,62.6,48.7,71.5,63.8,48,53.4,89.5,60.1,60.5,63.7,72.6,56.9,47,50.3,32.9,57.8,53.8,38.9,40.3,60.5,54.4,46.3,59.4,66.7,53,79.9,89.7,72,58.7,93.2,95.9,89.9,171.5,57.3,64.9,181.2,212.1,81.8,55.3,57.2,35,17.6,12.7,31.9,42.2,62.3,70.7,100.4,67.9,70.1,77.8,126.2,95.3,71.1,74.4,68.7,59,69.1,75.8,72.7,74.4,72.1,87.1,68.7,71.9,82.1,75.8,71,89.2,57.3,54.7,72.9,95.7,100.7,51.4,63.9,86.6,78.1,90.7,79.1,5.4,83.8,99.7,136,102,82.4,83.3,74.9,84.1,94.3,108.4,15.1,44,34.7,59.4,51.8,60.5,32.8,49.1,36.8,58.8,71.1,30.5,51.7,37.7,62.2,39.8,48.8,51.7,49.6,44.9,59.8,59.6,38.8,67,69.9,46.6,86.9,83.7,50.8,48.2,36.5,16.3,27.3,39.7,49.2,44.4,41.6,52.5,47.4,38.1,45.6,41.6,51.3,49.5,35.3,44.8,38.5,41.8,42.1,50.3,34.5,33.9,40.5,62.2,17.2,49.4,48.1,51.9,51,57.9,77.8,44.2,48,64.3,70.1,67.7,66.9,65,36.8,57.2,31.1,24.5,18.6,58,131.8,79.1,147.8,90.4,55.2,53.4,96.5,69.1,67.3,63.2,60.7,68.7,65.6,103.6,57.2,57.1,51.9,51.5,58.3,56.7,98,92.1,47.7,45.1,80.4,52.4,79.4,68.5,66.6,65.1,70.4,22.7,78.4,84.9,54.3,54,57.1,76.5,60.8,49.4,69.3,43.8,57.7,66.6,29.9,37.2,52.6,60.6,41,48.8,53.8,49.1,50.8,67.1,49.9,66.8,66.4,68.2,83.9,96.6,70.4,101.7,69.9,82.8,69.3,102.6,114,81.3,102.2,104.4,133.1,119.5,119.2,63.8,61.5,58.4,50.9,47,56.2,66.7,51.4,56.6,78.1,70.5,96.9,67.3,51.6,48.5,20.8,19.8,22.4,95.8,68.4,38,39.2,35.3,31.4,32.2,35.4,49.2,35.9,61.4,31.1,85.6,29.8,55.4,53.2,10.5,6.9,22.9,55.3,45.5,40,34.7,79.2,48.9,66.7,85.6,39,29.2,49.4,36.6,32.1,34,34.8,48,37.5,41.1,44.6,33.7,35.1,32.9,34.7,34,33.8,52,49.7,51.9,51.7,51.5,50,51.7,52.1,33.9,34.4,46.5,22.4,33.1,33.1,30.9,20.5,49.9,34,34.7,25.8,42,43.8,38.7,34.2,50.3,52.9,50.9,48.2,34.2,24,9.8,48.8,26.4,38.4,72,83.4,70.3,68.1,82.8,9,80.2,106.7,82,111.3,121.9,79.9,22.5,34.1,50.4,87.6,73.5,78.4,82.4,31.7,16.1,36.7,83.5,1.3,60.1,93.3,49.6,32.2,36,35.8,32.6,32.2,35.6,34.2,55.2,58.9,97.2,93.3,70.2,78.7,34.6,30.7,33.7,25.6,26.4,31.8,51.6,66.8,52.2,24.9,22,19.4,20.6,0.3,7.9,22.8,26.4,21.5,32,39,23,26,89.4,8.4,38.2,32.5,28.6,27,30.4,20.8,22.6,29.1,28.5,27.6,39.6,35.9,49.3,33.6,31.4,10.3,0.4,23.6,36.6,59.6,16,54.5,56,117.9,55.6,67.8,90.3,81.4,50.4,74.6,75,32,35.6,34.9,31.3,33.9,34,37,31.2,34.8,50.1,34.6,32.9,34.1,35.1,33.3,34,33,35.1,40.1,31,13,33.6,51,33.6,33.9,35.3,33.9,33.2,34.3,31.4,10,29.9,30.7,32.8,36.3,30.8,49.7,36.2,49.4,34.7,68.3,85.1,66.5,84.8,68.6,83.9,101.2,86.5,116.4,68.7,67.3,52.4,30.7,25.5,43.8,85.5,50.2,50.5,34.1,34.5,33.3,32.5,14.2,20.3,20.4,5.6,24.2,32.1,16.9,17.9,15.5,22.9,14.4,20.4,29.7,49.4,51.2,34.4,32.8,31.8,26.6,26.9,32,37.3,33.3,33.1,33.8,34.4,33.9,32.9,49.7,71.5,48.7,33.6,32.2,35,33.8,70.9,53.8,77.6,66.9,70.3,83.2,67.4,104.6,85.1,99.7,129.5,59.2,115.1,116.3,136.9,99.7,60.9,74.3,58.4,76.1,66.1,108.6,101.8,139.2,73.6,5.4,122.3,173.3,75.5,51.6,103.2,100.2,83.5,103.2,100.8,117.2,81.5,87.6,134.4,108.6,63,111,65.6,96.5,70.9,85.1,45.7,37,35.7,35.8,51.5,84.8,78.7,111.9,102.3,84.6,70.3,65.2,54.1,61.5,49.2,107.9,54.5,57.4,46.6,60.3,59.2,44.2,92.7,248.3,107.2,72.3,41.4,42.5,78.6,58.4,92.3,82.7,102.6,112.6,101.2,89.8,100.9,98.3,157.2,113.5,137.8,130.6,127.8,110.9,121,147.1,117.5,42,48.5,25.3,43.6,34,44.4,40.8,69,65.3,81.3,160.1,140.2,101.2,91.7,104.6,83,104.3,90.7,58.8,16.2,44,124.4,132.6,92.9,154.5,83.2,109.1,119.4,1.1,102.2,160.4,81.8,89.5,107.3,163.6,128.8,120.9,152.6,130,119.8,86.3,38.3,12.1,113.3,81.3,64.9,73.6,40.2,40.6,37,44.6,29.8,56.6,33.9,230.7,120.8,110.4,129.2,176.3,58.1,131.9,165.4,100.8,184,159.7,92.8,97.1,82.8,56.2,41.8,9.2,54.5,35.1,320.6,93.4,58.4,79.8,76.5,53.6,130.2,69.8,87.2,120.9,69.9,114.6,99.7,79.9,101.4,6.9,8.4,110.3,54.5,31.3,54.7,82.5,85.9,77.3,158.1,46.8,11.7,53.3,49.5,48.2,39.1,48.3,36.9,33.9,34.5,36,86.6,93.7,97.9,86.9,70.2,52.4,52.6,49.6,22.3,26,39.5,33.1,42.5,49.2,61.5,74.6,75.1,129.9,116.5,123.3,73.1,77.2,182,46.6,112.1,159.3,16.8,33.3,90.2,152.3,117.8,115.7,142.7,6.1,20.9,54.1,20.4,87.3,49.4,110.2,75.9,133,56.4,50.5,47.2,39.4,50,39.5,18.5,29.5,49.7,53.1,50.1,54.5,13.4,34.6,53.5,52.3,40.7,42.9,46.4,42.1,52.5,80.1,72.2,53.5,68.5,67.6,72.8,75.1,64.1,44.6,82.4,51.3,44.2,76.8,60.9,88,83.5,93.9,59.6,79.9,93.5,71.9,49.3,78.4,80.3,64.7,63.2,19.2,11.9,33.1,57.9,75.5,64.6,42.2,48.8,37.6,43.3,43.4,38.9,50.4,31.1,81.2,64.6,46.2,47.8,247,112.6,36.1,116.6,111.5,144.3,65.1,66.6,59,60.7,71.6,66.2,76.8,72.8,47.3,2.3,73,79,36.2,37.9,61.7,56.5,65.2,67.7,53.9,52.8,55.7,59.6,43.3,42,96,98,52.5,49,73.7,90.4,53.7,51.9,55.5,53.3,46.6,45.3,54.2,51.1,41,41.9,46.4,49.4,85.5,61.5,59.5,150.4,76.1,74.6,19.2,29,13.6,69.4,43.5,37.8,55.3,48.2,63.9,64.9,10,106.6,24.8,54.3,46.4,147.5,84.6,121.3,52.9,48.1,63.7,33.2,52.8,31.2,8.6,20.7,19.1,23.4,32.9,27.9,39,1.9,36,44.8,84.7,51.9,54.1,28.9,30.1,57.7,19.5,33.7,50.3,37.2,69.4,52.2,50.6,32.1,53.6,73.7,43.3,6.4,11.9,36.6,17.5,46.6,22.4,11.3,78,25.1,54.3,72.2,35.8,62.7,18.9,17.1,57.6,83.5,47.7,38.5,76.7,8.1,35.4,33.3,83.3,65.4,38.4,28.4,103.9,115.5,217.8,70.5,5.4,47.6,47.9,59.8,34.3,41.6,40.9,32.2,51.8,41.6,35.5,109.7,124,71.6,7.6,49.5,151.5,129.1,78.1,40.8,36.9,44.3,33.6,9.7,30.4,35.7,60.1,91.2,26.1,25.2,55.8,48.5,55.8,48.8,49.4,89.9,93.8,105.4,49.7,52,52.5,54.5,91.2,64.1,56.4,123,53.7,40.8,134.8,247.8,311.5,95.7,142.1,85.9,90.8,96.6,130.9,217.3,214.4,249.7,260.1,21.6,76,100,117.5,119.4,17.6,56.2,50.4,50.6,141.1,87.2,89.2,60.6,69.1,82.2,84.1,43.2,7.7,50.8,44.3,59.7,56.3,48.5,31,26.8,35.5,39.7,18.7,18.6,42.5,66,66.3,71.7,37.6,40.6,34.1,35.7,45.3,60.8,65.2,167.2,148.5,90,47.1,70.2,43.6,53.8,50.6,40.5,92.1,134.1,68.9,66,60.7,56.8,38.6,40.1,70,75.1,78.9,12.3,296.5,58.1,59.1,117.1,63.9,140.9,144.5,287.5,255.5,244.4,187.5,158.9,378.7,141.4,16.3,8,140.7,302.9,97.7,115.1,216.3,300.4,147,152.2,281.8,148.5,135,583.6,37.1,344.2,15.4,30.3,501.4,145.2,145.3,214.9,215.7,89.2,97.3,112.4,70.2,416.5,74.6,266.3,265.1,434.2,4.6,459.3,1091.1,23.6,75.4,57.7,11.1,244.7,90.3,184.6,45.8,339.7,172.9,160.8,67.7,66,64.8,63.7,184.5,182.2,335.2,152.8,7.2,95.7,21,64.1,163.8,111.9,51.9,28.8,45.3,191.6,95.2,96.1,59.9,59.6,55.5,57.3,70.1,37.7,35.4,34.8,31.6,42.6,37.3,34.3,30.5,141.8,0.5,176.1,91,72.7,59.9,61.4,32,33.6,69.8,69.9,139.4,105.4,69.7,70.9,107.1,72.2,73,73.1,108.6,74.6,63.1,45.5,189.4,75.6,93.7,87.7,38.8,38.4,44.3,42.3,13.9,37.1,39.8,34.7,60.5,44.1,39.3,72.5,55.3,66.4,166.5,120.3,93.5,2.3,49.4,33.6,38.5,23.7,22.1,23.4,15.7,39.9,49.5,47.5,48.6,61.1,92.3,120.9,58.8,149.8,135.5,179.8,27.3,50.8,115,21.4,63.8,149.2,80.1,74.6,46.5,70.4,47.5,42.8,42.7,51.2,15,34.3,43.5,47.6,36.8,62.3,55.9,67.4,54,73.3,149,187.3,123.9,126.3,161.4,106.7,58.9,90.3,29.2,23.3,31,89,73.8,24.8,97.1,209.4,22.2,126.2,130.7,254,501.2,1016.6,198.9,211.5,420.7,41.9,67.5,121.9,226.4,348.7,27.7,129.6,181.8,158.1,93.9,65.8,45,18.6,63,59.5,42.4,56.6,123.8,29.9,57.9,76.1,40.7,54.8,61.5,76.5,65.1,33.3,48.8,47.1,127.2,112,81.1,53.3,56.7,102.3,87.2,93.5,63,82.8,72.9,48.9,87.9,46.2,45.8,75.6,56.7,47.6,99.9,0.3,112.5,132.2,125.1,325.5,326.3,208.7,209.3,457.2,609.2,32.5,197,379.3,143.6,157.3,92.9,244.4,88.9,146.2,43.4,131.7,124.2,88,178,109.9,81.7,72.9,76.1,105.7,72,79,81.3,80.4,172.2,153,184.3,183.7,166,158.6,122.4,122,121.2,116,119.6,108.3,216.6,204.1,212.6,326.1,358.4,15.7,360.7,64.6,177,282.9,104.6,106.1,87.1,108.3,101.2,111,71.6,42.4,81.7,46.7,57.1,11.3,113.4,90.7,99.7,221.8,226.2,100,93,63.2,74.5,90.9,79.3,86.1,83.7,109.5,99.7,79.3,115.3,96.8,97.5,129.7,140.3,122.5,112.1,128.7,152.9,56,82.4,60.7,69.5,119.3,125.7,111.2,105.8,195.5,209.7,416.5,191.8,81.9,70.2,55.2,80,64,41.7,48.5,94.7,65.2,65.5,35.5,83.9,88.6,39.2,43.1,90.9,80.1,79.9,85.3,68.6,94.2,104.1,86.1,73,118.1,81.1,63.2,54.6,65.2,65.9,77.4,93.7,71.3,66.6,72.1,82.5,63,103.7,119.9,211.1,153.1,162.8,54.1,57.5,66.4,55.8,33.2,43.9,73,46.5,59.8,159.6,118.2,112.7,41.9,106.5,65.3,78.4,105.1,34.7,37.9,91.4,106.1,89.3,95.4,173.5,349.6,190.2,200.7,370.4,139.7,137.5,99.6,105.7,99.9,113.3,69.6,69.8,202,105.3,73.2,88.4,85.4,103.9,70.4,67.2,134.6,257.8,50.5,56.1,77.3,79.1,48.1,57.7,96.1,107.9,88.2,123.4,94.8,97.2,79.6,64.6,34.3,75.2,114.5,317.1,82.7,74.7,63.4,10.5,79.4,71,78.1,57.3,75.7,63.9,59.8,62.6,78.4,134.5,208.1,161.1,112.9,85.6,57.2,110.2,77.4,94.5,81.3,53.1,56.7,51.4,74.1,80.1,170.7,316.1,552.7,165.3,113.6,124.8,132.8,138.8,96.2,172.5,165.6,114.9,85.1,66.8,66.1,110.9,52.6,65.9,112,76.8,99.8,99.6,94,40.5,150,147,265.2,67.6,103.3,150.1,149.8,141.5,99.3,92.5,98.1,46.3,60.9,61.9,32.8,88.7,45.3,73.6,83.4,74.6,69.8,43.6,43.6,64.2,69.1,122.6,94.1,89.5,180.5,119.1,190.3,158,351,257.4,264.8,228.1,80.9,31.8,37.8,126.3,53.3,53.6,92.5,69.4,98.6,60.7,62.1,51.7,100.4,73.7,95.2,77.9,102.4,156.3,168.1,124.1,89.3,73.3,87.4,7.6,59.1,63.3,80.1,78.9,54.7,63.5,128.2,110.6,98.3,59.2,18.6,40.9,49.4,58.4,91.7,150,157.8,69.5,82.3,104.8,34.4,41.6,102.2,72.4,64.7,85,64.6,63.2,64,60.6,55.5,69,64.6,54.9,81.8,78.5,73.7,78.2,89.4,79.8,89.8,83.7,79.3,76.5,100,94.4,131.1,134.8,134.2,119,155.7,88.2,79.5,109,73,135.6,134.9,94.9,103.8,226.4,138.9,157.5,74.3,85.3,116.8,77.9,77.6,133.5,72.5,68.5,149.1,211.7,115.3,84.9,83.1,86.4,88.1,87.5,84.1,74.2,97.7,54.6,57.6,75,60.5,69.2,72.3,89.1,68.6,64,109,91,1.8,106.4,110.3,152.3,164.8,160.3,101.4,75.5,83.1,150,79.3,89.1,74.2,104.1,163.3,133.5,166.9,158.5,167.6,193.5,191.3,122,107.3,93.1,49.2,88.8,70.6,70.3,94.7,95.3,77.2,62,152,146.4,61.2,58.1,48.5,58,91.4,79.1,70.9,108.6,88,83,107.1,70.6,76.2,143.8,69.5,80,104.2,197,197.7,142,145.8,98.1,93.6,83,58.6,100.7,93.3,54.1,60.5,47.8,55.7,53,13.8,70.6,61.5,93.2,79.3,57.4,54.1,62.2,76.4,101.1,76.5,69.8,74,141.8,296.2,163.5,156.3,120.1,118.3,116,101.6,9,76.1,76.2,98,79,76.2,127.9,121.1,159.3,137.9,179.1,137,86.7,71.1,70.8,94.8,44.7,48.3,96.9,95.9,61.6,67,104.2,53,49.6,56.5,49.9,50.1,50.6,65.1,68.4,72.2,81.6,93.5,66.9,112.4,179.6,173.7,160.7,145.7,83.1,77.1,75.2,57.7,62.3,55.3,57.1,50.8,73.4,61.7,66,51,51,113.1,93.6,47,86.5,83.7,82.4,52.8,71.6,123.2,168,132.5,34.5,120,78.5,69.6,67,61.7,92.6,55.6,57.8,100,53.8,91.1,223.6,120.5,125.2,123.5,116.3,119.4,101.7,102,77.1,72.4,77.5,66.4,69.2,74.1,80.7,118.6,116.4,131.2,130.5,96.3,102.4,90.9,123.8,126.4,79.1,73.5,70.9,62,91.5,108.2,154.7,25,186.4,92.5,95.2,159.8,118.3,99.2,109.4,120.8,108.6,190.5,184.7,207.3,166.8,160.5,101.1,142.6,121.6,30.8,124.2,117.4,161.3,88.5,81.6,102,79.4,105.3,99.2,73.8,158.4,185.5,256.1,444.6,226.9,132.1,104,140.6,93.1,62.4,54.2,54.3,49.9,108.3,107.5,124.1,185.1,173.6,242.4,98.4,80.6,116.1,398.7,111.3,106.9,26.8,62.7,65.2,100.3,116.2,248.8,89.4,58.2,85.8,79.9,65.6,48.4,41.7,242.4,30.5,23.8,33.1,106.3,104.3,99.6,56.2,64.2,61.7,288.3,154.2,170.4,84.9,100.6,77.2,18.1,58.3,79.4,93.2,57.3,63.9,61.1,96.4,16.1,55,54,126,93.5,85.5,103.9,78.4,95.2,95,50.5,169.2,120.5,77.5,61.9,46.2,92.9,36.3,41.9,74.2,17.3,286.6,27,73,279.2,271.4,74.7,77.9,84.3,85.2,86.9,122.8,140.3,66.8,63.2,56.8,65.8,54.5,46.9,83.1,117,103.2,93.3,60,84.7,25.9,70.1,64.8,87.1,128.9,203.7,38.5,62.4,53.6,61.2,39.8,39.5,48.5,7.5,32.5,17.3,21.4,47.1,58.5,35.3,60.9,59.2,50.2,58,55.6,125.8,102.8,90.5,45.8,99.7,43.6,67.8,52.6,59.1,113.2,99.2,117.9,66.7,60,130.4,120.5,18.8,102.2,112.1,105.4,65.8,62.1,58.1,54.9,238.8,85.6,73.7,65.7,45.3,69.1,43.7,40.8,63.9,62.1,45.3,43.6,78.6,73.3,62.4,59.5,49.3,54.2,53.3,65.7,48,50.2,61.7,60,65.2,61.1,70.5,60.5,63.9,77.3,63,55,61.2,54.5,78,61.7,66.8,70.6,60,77.2,70.3,84.9,90.3,96.5,79.6,83.4,83.1,80.2,27.1,74.9,38.7,155.8,94.9,65.6,61.1,64.2,74.9,92.8,86.1,64.1,61.8,49.6,83.3,72.8,73.3,46.6,62.2,77.2,59.9,58.1,111.2,123.8,37.4,71.9,70.4,44.3,46.9,82.8,57.8,56.8,82.7,80,63.7,587.6,8.1,323.2,167.7,108.5,546.2,236.5,219.4,260,209.8,167.4,276.3,103.2,526.6,330.4,196.8,140.2,353.4,33.3,519.5,158.8,37.5,27.5,37.2,81.2,46,52.5,59.6,71.8,92.7,5.1,74.9,37.6,56.7,62.1,123.9,98.1,92.7,56.4,49.9,82.9,61.8,68.4,124.1,58.5,62.7,75.1,19.8,113.7,12.4,74.5,70.2,85.9,79.3,81.1,79.3,189,107.8,92.4,69.6,85.2,50.9,48.9,55.7,58.8,85.6,92.6,176,172.3,377.3,342.9,84.6,26.1,217.2,128.6,274.1,189.6,604,323.8,283.5,1408.2,890.8,442.2,439.6,245.8,121.1,112.7,211.8,104,102.3,123.7,258.1,103.4,22.2,76.9,1.3,236.5,128.2,103,221.5,213.6,613.5,29.9,395.9,430,508,20.3,211,366.8,273.1,97.4,424.8,420.9,419.4,253.4,161,259.2,124.7,103.7,106.5,82.4,118.6,101.1,53.1,58.7,18.8,118.5,56.1,51,60.4,65.8,42.3,22.1,75.6,54.9,98.9,66.3,58.8,47.4,32.4,36.2,47.9,55.3,85.3,88.8,70.4,79.3,89.5,79.7,3.5,54.5,70.1,93.4,232.2,76.4,312.1,621.7,628.4,326.6,299.8,193.7,143.6,163.9,125.5,115,119.7,108.6,30.3,391.6,521.6,355,208.3,14.3,56.5,417.1,96.5,115.6,105.4,68.5,103,55.8,45.6,126.9,118.3,229.9,259.9,283.6,257,191.3,196.6,41.8,66.9,56.6,121.1,90.3,47.2,73.4,72.7,79.8,102.3,119.9,108.2,144.4,142.3,53.2,216.7,151.4,142.7,196.7,102.2,96.4,192.4,170.8,375.3,353.6,212.6,248.1,235,114.7,103.1,111,93.9,100.6,87.2,85.5,69.5,60,111.8,132.2,143.3,75.9,73.4,120.2,84.6,86.4,218.1,99.2,90.8,119.7,122.2,63.7,71.5,70.5,64.6,71.4,130.8,92.7,75.1,93.5,126.5,104.2,118,124.1,130.6,85.3,86.4,95.5,119.8,95.4,97.7,142.8,95.2,89.3,80.9,75.7,69.8,25.9,104,203.5,96.7,33.3,57.3,151,112.9,128,106.7,155.9,86.2,76.4,78.1,71.7,152.7,291.1,85.8,128.9,88.5,101,139.5,117.3,90.5,103.6,105.3,93.4,88.7,123.2,139.8,180,227.7,69,35.9,27.7,12.7,71.3,76.1,67,58.7,110.4,108.6,57.3,74.7,52.1,101.1,78.6,37.5,103.6,90,149.4,156.5,68,92.1,59.7,71.2,78.2,77.1,15.2,65.7,86.9,87.8,67.7,88.7,82,198.3,380.5,419.5,425.2,572.9,3.9,550.5,150.2,142.2,137.3,70.3,60,61.4,55.3,92.6,75,71.2,64.3,88.3,117.9,111.2,85,43.8,43.8,82.3,69.2,73.1,63.1,99.4,87.8,373.4,546.2,555.4,559.8,472.7,26.1,335.1,819.8,287.6,99.1,67.4,43.2,41,51,58.7,20.7,0.3,36.8,70.2,100.9,341,2.8,350.9,290.9,151.3,71.6,55.2,69.4,61.6,56.5,92.4,60.3,63.6,47.4,46.7,49.8,65,57.2,68.6,55.4,161.3,190.7,68.4,131.4,53.4,72.7,57.5,52.5,57,65.3,101.1,78.9,49.1,62.2,68.6,51.9,57.2,41.5,46.4,46.2,39.2,20.5,106.3,105.9,150.9,148.4,278.1,145.1,136.6,177.5,57.5,140.7,77,73,68.9,61.5,56.4,78.6,84.8,158.3,140.2,148.3,84,83.2,69.8,91.3,50.9,58.7,106.3,55.8,48.4,98.5,116.1,550.1,86.9,174.1,162.1,132.1,45.5,41,35.3,39.8,38.9,34.6,45.7,42,66.9,51.6,45.4,50.9,55.2,58.3,87.1,92.8,75.9,68.4,63.5,68.2,64.7,60.6,51.1,42,35,37.6,60.6,51.4,65.2,70.4,87.1,90.1,48.2,42.1,39.5,58,58.8,50.2,47.4,122.2,136.6,135.2,83.8,81.3,63.7,53.9,60.5,85.1,93.6,142.6,215.4,229.5,191.2,133.7,73.5,55.2,60.4,62.5,47,41.3,38.5,35.3,84.3,159.4,215.7,71.3,53.4,50.4,75.7,69.3,66.4,46.7,40.1,4.3,62.6,83.2,72.1,59.2,56.2,53.7,73.5,42.9,48.1,102.5,67.2,68.4,55.2,43.5,43.9,53.3,27.5,31.4,49.3,51.4,43.8,51,76.7,87.8,25.5,116.3,58,53.8,77.8,55.6,50.8,52.4,78.7,61,60.1,56.7,61.8,70.7,59.9,62.2,65,75.9,45.3,48.7,29.1,47.8,43.8,53.5,56.7,49.9,41.4,47.6,54,50.5,113.2,96,184.3,176.8,104.8,38.4,45.5,40.4,54.8,56.5,59.1,54.3,46.7,34.8,14.9,12.9,51.8,43.1,64.2,98,67.3,67.9,41.1,63.6,49.2,17.9,56.5,34.2,33.2,48.6,55,176.2,179.8,223.8,252.4,46.9,48.8,53,69.4,117.4,423.4,342.6,145.1,72.1,74.1,59.1,21.2,50,69.4,63.3,157.6,333.8,346.1,2,249.4,256.3,193.7,234.5,8.8,72.1,62.5,35,44.1,66.7,66.3,57.6,58.7,47.5,53,63.6,12.8,191.2,171.9,331.7,11.2,359.5,359.6,620.4,295.2,279.5,66.8,55.9,51,53.4,63.2,59.6,70.1,54.2,65.3,61.6,58.5,69.7,64.1,62.3,47.7,38.7,61.5,73.4,58.7,62.5,263.3,201.9,40.5,29.8,56.4,64.8,52.9,45.9,38.9,45,47.3,43.5,63.8,58.5,144.3,276.4,245.8,133.2,125.4,146.9,73.2,67.3,87.2,172.9,335.8,317.5,105.7,61.3,14.5,8.6,43.4,299.8,38.6,296.2,166.4,148.8,407.6,154.9,143.7,116.8,87.9,106.2,113.4,126.8,114.7,128,102.6,113.9,8.8,97.6,91.6,192.8,211.2,149.8,155.1,84,64.7,52.9,76.5,69.6,65.9,67.8,52.9,65.1,44.2,48.2,72.7,24,87.4,53.6,7.5,31.7,76,70.7,76.1,52.9,52.3,38.9,71.4,70.9,73.3,61.4,93.8,70.5,68.1,87.3,57.2,98.3,90.6,277.5,373.2,184.7,158.7,23.3,68.3,66.8,139,257.6,198.1,270.1,182.9,219,92.4,90.8,97.5,94.6,147.7,107.7,102,109.3,109.2,181.6,169.3,176.3,187.2,240.7,245.1,71.5,186.2,18.4,104.3,49.5,75.6,90.5,43.2,24.8,45.1,127.5,119.7,108.8,71.6,187.7,116.2,147.8,110.3,122.2,189.7,82.6,146.1,106.7,134.8,47.8,108,89.3,84.8,72,58.9,83.3,131,88,78.8,130,77.9,104.1,107,68.6,109.4,77.1,109.1,84.5,102.9,49.5,59.4,103.2,129.6,86.2,83.7,69.7,75.1,62.5,74.6,71.4,31.3,32.4,71.1,68.3,79.5,98.8,41,65.5,38.2,65,48.1,43,89.6,46.4,162.2,517.6,338.1,92.7,103.6,74.6,70.6,117.1,131.8,43.1,57.1,42.9,57.7,54.5,118.5,59.3,121.1,125.1,381.8,495.8,476.2,557,863.4,82,72,86.2,90.8,134,121.2,55.1,67.9,46.9,39.3,38.2,73.7,159.6,95.1,90.7,91.2,93.9,95.4,80.2,211.6,67.8,84.8,76.6,94.9,519.6,89.3,95.5,207.2,494.8,68.6,56.7,54.8,60.6,453.8,74,63.6,76.6,84.6,236.6,131.3,84.6,82,89.6,86.1,225,81.7,71.5,36.5,36.2,32.9,32.9,21.9,17,64.8,73.4,117.9,212.3,151.9,285.1,68,572.6,101.4,92.4,84.5,85.2,709.2,121.2,45,142.8,86.4,84.5,94.2,103.7,466.2,72.2,77.3,855.8,100.3,92.3,84.3,86.1,80.2,89.2,79.7,85.6,471.9,84.7,80.7,81.2,72.9,70.3,88.3,93.6,133.8,106.4,107.9,97.5,84.8,89.9,128.9,351.4,143.5,78.2,79.6,78.8,75.9,496.3,77,85.1,78.5,85.8,1211.3,160.3,202.7,37.9,225.2,195.4,94.2,96.4,87.4,88.8,81.7,75,842.3,83,93.9,105.8,89.5,75.8,87.3,81.4,546.3,94.1,90.9,81.4,77.6,492.9,76,86.9,89.6,83.2,846.1,96.9,91.1,93.7,90.3,91.1,84,87.8,223.1,65.8,70.7,82.1,70.1,104,95.5,95.7,94.9,81,82.8,85.1,333.9,89.2,89.2,907.9,77.8,85.1,72.2,82.5,79.5,1322.5,1.4,81.1,83.9,89.3,122.3,169.6,83,75.6,82.1,84.4,365.1,39.2,100.3,94.2,95.2,33.2,65.7,82.4,87.1,87.1,78.9,81.8,79.5,786.2,56.3,91.7,87.5,83,64,368.9,55.4,39.2,69.3,50.9,45.2,71.4,79.7,110.9,55.9,24.3,66,79.2,71.5,43.9,43.3,169.9,83.5,74,83.7,95,89,99.4,96,83.5,83.2,84.5,73.1,77.9,73.8,57.1,83.3,191.8,40.7,82,86.2,42.2,46,85.3,78.7,105.4,84.7,144.8,85.9,125.6,97.6,76.4,369.4,106.8,103.5,87.6,97.3,93.2,140.4,248.6,83.2,145.8,68.8,122.4,121.5,97.3,76.7,44.1,31.9,79.5,71.4,84.3,77.6,76.4,92.3,42.2,68.9,87.3,98.1,94.9,81.8,46.3,264.3,126,55.9,63,32.4,33.4,24.2,23.5,31.8,27.6,33.2,88.9,59.7,60.3,81.5,57.9,63.6,27,31.7,6.2,35.9,23.2,15.9,39.3,4.2,19,18.4,21.2,26.8,26.1,24.4,16.5,29.8,31.5,33.8,53.3,142.3,87.1,93.3,533.3,115,86.4,111.2,130.2,124.8,93.9,103.8,323.7,125.1,119.9,131.2,141.6,27.4,26.2,28.4,15.2,21,36.7,35.8,34.9,51.8,3.1,76.7,51.9,35,34.1,29.6,30.7,41.8,30.3,34.7,29.2,37.7,36.7,30.6,38.3,299.8,24.3,30.3,28.1,32.5,30.7,26.8,27.3,28.7,26,29.5,25,42.2,42.3,41.3,41,20.2,26.7,1.9,34.1,30.9,27.6,29.4,28,29.6,57.6,109.5,56.1,29.4,28.2,13.3,27,30.5,17.5,36.9,29.1,28.8,29.5,27.9,26.6,112.1,86.6,188.2,85.8,88.3,75.7,92.3,113.1,116.2,296.9,104.7,91.4,98.4,99.1,86.7,85.9,63,65.8,93.6,89.6,25.7,222.9,257.1,99.5,61.8,31.3,92.4,95.7,92.6,83.1,84.9,83.7,126.6,85.3,65.6,65.3,74.1,101,89,65,52.3,53.3,59,172,50.5,55.5,79.7,94.2,95.7,88.5,93.6,217.5,92.1,94.4,95.6,91.5,97.2,255,92.5,91.3,158.5,118.6,86.1,86.7,86.7,289.1,121.1,110.7,108.8,107.9,108.1,125.9,89.8,92.4,96.9,92.1,93.6,313.3,79.2,66.1,60.2,67.4,80.7,69.9,69.2,79.8,93.8,93.8,72.3,163.9,116.8,105.5,94.8,92.8,382.3,360.8,160.6,160.5,154,126.8,141.3,65.5,43.2,310.2,251.7,405.8,82.1,15.9,28,128.9,95,145.6,125.9,102,130.5,255.1,95,189.3,359.9,119.1,105.6,92.9,91.1,101.1,89.7,94.1,93.5,90.6,146.1,140,154.4,190.4,232.2,82.3,47.9,810.4,156.2,167.5,180.4,20.2,599.8,178.1,167,684.2,88.2,86.5,119.9,207,49.5,211.1,103.4,138.1,142.9,172.9,159.9,134.3,124.5,6.5,136,121,135.8,116.4,412.8,86.7,35.4,71,63.2,25.9,110.8,129.6,130.9,127.9,110.8,125.5,131.3,121.1,142,131.7,702.8,264.2,166,160.8,1566.4,139.4,155.6,155.1,139.2,140.7,127.2,369.6,349.3,456.5,135.3,137.2,63,183.5,43.7,125,73.8,827.5,114.1,56.5,214.6,136.3,132.6,136.9,127.1,135.2,139.4,110.2,261.3,78.4,127.6,130.3,141.8,134.9,128.9,447.4,125.8,128.3,144.9,131.2,124.7,85.2,41.6,139.9,133.4,48.7,83.5,56.2,146.1,144.3,112.5,34.2,43.1,98.6,49.6,18.5,48.3,70,49.7,197.7,96,28.3,58.3,51.9,32.6,82.6,27.8,57.5,43.3,33.2,34,68,127.2,124.1,129.1,179.4,132.6,123.4,124.6,138.6,119.6,67,67.3,134.4,119.1,120.8,122.5,116.6,131.8,124.8,124,121.8,63.9,31.4,32.6,128.1,138.2,120.4,59.4,52.9,66.1,78,30.9,30.4,57.1,85,46,65.8,65.6,114.1,289.6,33.1,117.3,64.2,31.7,60.2,66.4,42.9,58.7,58.4,64,60.8,63.3,63.5,31,23.2,72.9,124.8,128.6,87.6,45.9,103.2,115.4,101,23.5,327.8,289.6,123.2,87.8,63.3,64.2,74.4,79.5,284,228.9,70.3,343.3,58.8,71.7,78.2,61.3,60.1,72.3,581.3,135.9,123,161.2,369.5,142.6,55.2,63.9,41.5,20.7,67,168.6,40,126.5,114.9,36.6,20.7,20.4,63.8,121.7,132,50.9,42.6,71.5,103.2,97.3,35.5,398.2,71.2,60.2,43.8,82,186.5,90.5,72.8,50.1,13.9,79.6,64.1,197,8.2,1244.9,48.8,29,31.3,19.6,19.7,179.5,44.4,79.3,110.2,27.1,52.6,48.6,128.8,3.3,8,171.4,127.2,33.9,60.4,85.9,97.6,48.5,51.2,46.9,55.8,47.1,52.1,48.7,41,55.5,20.8,24.2,46,56.1,57.5,50.2,39.2,51.3,71.4,93.6,51.1,50.9,44.5,38.8,29.4,29.9,29.2,22.5,32.5,39.3,28.4,49.5,33.9,83.7,44.8,39.4,48.2,60.9,54.9,63.4,71.5,300.5,68.8,55.4,62.1,152.2,80.4,123.5,198.3,48,63.9,71.9,48.4,70.1,35.1,35,50.2,46.4,60.5,61.3,470.9,172.8,145.6,91.7,891.8,132.2,129.7,129.8,126.9,523.1,56.4,39.6,24.2,2.5,126,138.3,141.9,447.9,28.5,408.2,212.9,56,123.7,161.2,132.5,182.8,183.7,148.5,117.5,123.6,473.3,133.9,126.5,140.3,128.5,116.5,412.8,151.3,152,156.6,755.9,136.7,127.8,125.2,385.4,166.6,53.4,36.8,39.1,40.9,146.8,117.1,22.8,548.5,1379.4,134.9,130.1,439.5,119.5,117,136.1,128,130.7,295.3,376.6,133.3,125.2,164.2,1314.1,112.8,821.1,147.8,124.3,128.7,138.6,118.1,40.8,89.8,95.6,109,50.5,50.1,44.4,14,51.4,51.1,283,257.5,153.7,95.2,58.5,89.8,29.8,10.4,73.7,72.9,736.3,136.6,126.4,86.1,71.2,97.6,697.6,202.4,314.4,141.6,563.5,144,144.3,143.5,610.3,923.5,339.3,594.5,186.7,52.1,102,146.9,86.6,43.8,24.5,125.5,115.6,88.2,103.4,85.6,89.8,134.4,43.7,372,128.7,134.1,121,135.3,173.2,170.6,131.8,151.7,469.4,162,78.4,90.5,160.6,171.1,585.6,222.1,382.6,363.8,301.9,269,121.2,123.4,70,90,85.1,110.7,258.8,82.9,182.2,148.9,281.5,144.9,11.6,230.9,109.6,86.1,184.5,191.4,153,148.1,152,164.3,158.4,142.4,117.8,68.6,38.2,47.1,43.2,95.4,50.9,27.6,52.8,127.9,55.3,97.7,138.2,358.8,344.3,134.6,123.9,129.8,140.2,146.7,217,9.3,134.6,141.6,133,139.1,146.7,129.7,159.6,327.1,130.5,147,145.2,142.4,323.9,33.1,12.1,348.4,151.1,156.5,150.4,156,148.9,151.3,100.1,87.8,97,109.6,104.6,106.6,103.2,961.9,52.2,63.7,98.7,154.4,146.7,228.2,1593.5,130.4,155.4,131.3,908.1,172.7,64.3,83.8,127,130.8,193,275.4,586.7,80.4,77.3,107.1,124.6,167.5,247.9,124,108.9,106.1,109.5,284.2,136.1,124.9,123.4,124.1,139.9,128.7,11.8,116.2,48.1,206.5,80.2,61.8,68.8,83.3,76.7,53.3,54.1,83.4,74,108.9,47.2,50.6,97.8,46.2,63.4,65.6,48.9,64.9,85.8,78.4,95.8,56.6,51.7,19.5,22.4,14.6,13.2,13.7,13.1,14.7,12,13.8,13.3,13.9,13.5,13.4,14.7,12.2,12.7,13.9,13.8,13.2,13.8,13.9,14.3,13.2,13.6,13.7,12.9,13.6,13.8,12.6,15.3,14.1,14.6,12.9,12.2,14,13.8,12.9,15.1,14,14.4,12.4,13.7,14.2,14,13.5,13.5,14.2,13.2,11.6,13.8,16,13.7,14.1,12.8,12.4,14.9,15.1,13.8,26.5,15.6,11.2,16.3,14.1,13.5,13.5,14.7,13.7,13.5,15.2,12.9,14.4,13.5,13.6,15.1,13.8,13.5,14.6,13.6,13.4,13.9,13.6,13.1,13.9,13.7,12.3,14,13.5,13.5,14.2,14.6,15.5,27.7,32.5,72.5,66,92.9,251.1,98.8,95.5,83.7,92.3,85.9,64.2,119.6,658.6,109.2,70.1,39,33.9,39.7,69,170,51.6,90.1,1.6,162.3,34.7,95.4,114.5,97.9,104.8,133.3,110.8,124.6,778.2,119.9,100,97.7,143.2,127,301.5,110.5,119.2,108.9,74.1,63.8,109.3,287.1,135.6,128,98.5,7,91.6,85,84.8,127.5,109.3,47.9,64.4,126.1,250,83.3,40.9,34.4,43.7,38.6,27.7,24.5,29.7,29.3,53.2,43.6,30,25.9,26,25.5,32.6,38.6,59.2,55.2,70.1,61.3,120.3,139.1,124.9,117.5,131.2,141,60.3,80.9,94.3,174.7,150.4,189.9,127.1,71,78.7,134.7,508.1,51.6,73.1,121,122.9,90.2,423.1,117.7,151.4,57,44.1,197.3,128.8,48.6,89.5,67,69,130.4,85.8,135.7,55.3,48.4,46.4,60,111.7,109.5,69,44,101.3,146,181.9,131.2,29.3,123.8,122.5,106.9,53.4,61.3,188.7,96.5,48.7,51,109.8,142.5,134.4,73.9,51.5,66.6,58.9,65.3,68.5,79.7,71.7,167,28,27.3,26.8,28.4,27.5,27.7,27.4,27,27.8,27.4,27.7,26.7,27.7,27.6,28.1,27.4,27.6,26.2,20.8,37.9,42.4,40.6,31.9,38,33.4,44.8,76,95.9,179.9,153.1,55.4,40.3,41,30.1,42.4,14.7,15,27.6,27.3,28.5,28.7,27.5,26.6,25.7,28,29.3,27.4,27,27,27.6,27.6,26.6,27.5,26.7,25.1,27.1,28.9,27,28.6,27.9,41,67.6,85.5,68.1,54.2,56.9,12.1,66.8,48.5,41.9,40.6,27.3,27.2,29.6,28.6,29,26.6,30.1,27.4,26.7,30,28.9,28.9,27.9,22.1,19.1,54.1,57.2,55.7,389.9,26.8,32,38.6,29.9,27.6,28.5,29.6,28,27.9,26.6,28.9,26.9,28.3,26.5,28.1,28.7,28.3,27,28.4,26.9,24.3,15.2,26,26.5,28,28,27.4,27.1,27.4,27.7,27,26,27.1,27.7,27.1,27.2,26.4,26.5,27.6,26.8,26.5,27.4,27.2,26.9,33.5,32.1,26.6,37.1,25.7,30.6,26.3,27,29.8,25.5,26.9,25,25.5,31,28.5,36,58.4,172.3,30.1,27.9,25.9,25.7,27.8,25.9,29.7,29.9,26,30.3,26.1,22.9,24.6,24.2,22.7,21.5,43.1,19.9,74.3,74.4,31.8,48.5,39.3,36.5,43.8,38.9,41.7,41.9,46.7,40.7,44.2,39.9,145.5,160.8,52.4,48.3,39.9,35.7,16.7,51.8,36.9,37.5,31.4,33.9,35.5,33.8,35.1,30.9,36.4,37.2,37.6,28.9,34.2,38,279.6,65.7,44.7,35.7,36.6,34.5,36.8,33.6,23.7,37.9,27.2,25.7,24.2,30.4,33.4,30.9,34.9,22.7,35.6,36.4,615.8,154.6,70,71.5,127.1,565.7,84.7,34.1,37.2,33.9,38.8,43.1,31.8,28.7,42.3,32.5,36.6,32,29.2,30.3,36.9,29,39.8,36.6,20.1,21.2,41.4,40.1,41.1,77.6,845.9,5.7,87.7,101.1,95.5,59,66.4,58.1,47.1,48.8,45.7,49.4,170.9,192.6,175.3,180.6,189,208.5,166.3,221.3,44.2,220.1,81,179.1,102.4,60.5,68.6,133.9,184,109,31,27.3,57.4,45.1,26.2,42.6,28,42.3,41.4,71.8,250.2,54.2,57.7,56.7,58.8,62.6,59.4,63.4,65.9,248.1,70.4,55.7,72.9,52.7,69.1,52.4,54.8,98.6,57.1,88.3,25.7,23.7,21.6,14.3,18.4,25.9,26.5,21.2,31.6,23.9,24.1,21.8,26.4,22.8,21.5,18.3,20.2,28.8,27.6,30.9,26.2,40,42.4,42.3,44.2,28.7,27.8,26.6,24.9,20.3,26.7,27.5,26.5,28.6,43.9,27,33.9,69.5,23.1,19.8,19,14.5,14.8,18.4,18.4,19.9,22.8,24,25.7,21,20.1,23.8,17.1,11.5,14,14.6,13.8,18.1,16.4,19.5,19.3,22.8,14.8,19.2,23.5,17.7,19.5,16.2,15.9,30.5,27.6,20.1,33.5,136.3,31.9,36.1,28.2,32,29.3,20,17.1,13.8,18.2,24.6,30.2,33.1,19.2,17.2,24.5,26,27.8,26.5,34.7,31,38.5,26.7,32.4,21.1,23.2,34.1,43,25.5,14.5,16,22.7,25.1,27.4,39.6,26.6,17.4,17.9,24,24,30.6,20.1,18.6,17.9,18.7,16.3,18.5,17.2,23.6,19.1,36.3,59.5,66.2,77,54.1,97.8,80.2,84,59.7,56.9,103.6,93.8,34,31,38.6,25.1,62.6,124.9,372.3,301.6,9.1,55.1,34.2,49.2,37.1,30.1,18.3,17.5,31.9,21.5,19.6,22.1,24.1,22.3,24.3,30.7,26.9,30.7,22.8,28.5,32.1,24.3,28.3,24,42.7,934.8,65.6,45.8,28.7,34.9,37.4,31.2,36.3,29.1,36.9,129.4,50.8,274.5,122.9,104.3,95.8,96.6,55.6,43.2,34.4,44.3,32.5,24.6,30.9,23.8,30.1,33.5,40.7,25.8,24.4,25.1,39.8,25.5,28.2,25.8,28.8,32.2,42.2,113.5,15.6,28.7,20.9,20.7,18.4,23,32.2,23,24.9,41.9,47.6,23.1,27.3,30.9,38.6,23.7,32.2,31.5,23.4,48.4,52.3,44.7,33.4,32.7,113.4,50.6,22.2,21.3,18.6,22,19.9,19.4,20.1,16.6,20.4,19.1,15.5,17.3,19.4,17.2,13.3,19.4,27.6,44,131.2,198.4,196.7,140.7,19.9,5.2,25.7,21.5,19.9,27.4,24.4,23.4,22,21.1,20.2,28.6,27.6,25.2,21.6,25.7,28.6,35.6,52.4,63.1,44.8,107.7,29.5,85.5,380.9,49.2,36,33.2,26.7,24.4,30.7,33.2,24,23.3,28.3,30.3,28.1,27.8,52.9,75.7,342.5,34.5,40.4,27.7,25,28.4,14.3,29.5,17.7,37,29.2,26.7,30,39.4,28.1,30,27.9,39.8,28.2,27.7,28.6,28.8,28.7,22.5,33.8,54.3,166.1,172.3,94.7,40.1,31.5,30.6,37.9,43.4,28.6,30.5,24.6,28.9,30.2,29.1,25.9,108.8,126.1,256.2,95.3,57.7,74,889.4,23.4,20.6,24.6,24,17.9,15,15.2,14.4,15,14.7,16.6,17.3,69.1,149.1,155.8,26.3,16.9,20.7,15.1,17.7,15,15.3,13.2,15.3,16.4,15,20,15.8,8.4,23.2,20.4,11.3,21.2,24,37.6,59.2,150.1,224.1,78,113.6,56.9,136.3,124.7,114.5,110.4,112.6,714.8,668.6,141,131.9,114.5,113.8,125.7,129.1,829.6,361.3,76.8,26.5,17.9,27.3,25.2,26.3,26.3,14.3,25.5,19.3,24.4,28.5,25.9,25.2,29.6,22.5,16,28.1,29.5,79.1,137.2,246.3,181.4,136.5,118.5,105.9,228.9,29.8,71.1,144.5,242.3,147.8,99.6,41.1,54.6,29.3,31.3,18.2,16.7,22.4,15.6,24.9,26.3,15.2,26.6,28.4,16,27.8,13.4,14,12.5,13.6,13.5,11.3,14.8,10.2,18,18.8,17.5,11.6,45.6,364.9,33,28.3,82.9,108.1,108.3,105.1,145.7,657.9,135.9,122.5,317.3,109.3,97.5,220.6,103.2,108,120.7,243.7,129.7,106.9,178.5,460.7,84,90.7,146.9,131.1,399.5,128.3,112.3,41.5,151.2,374.3,58,27.8,31.3,32.4,23.5,29,26.3,38.3,27.7,17.2,24,17.5,16.9,26.8,27.6,26.8,22.9,25.5,22.2,17.3,20,23,27.5,23.6,77.4,74.5,60.5,58.4,39.7,37.7,78.1,29.6,38,25.3,27.2,23.9,39.8,28,31.3,29.7,21.8,33.3,48.4,39,32.3,37,38.2,53,36.7,37.5,36.4,31,29.9,29.8,134.7,39.5,40.5,29.4,28.6,33.5,34.1,29.2,46.5,31.6,35.6,27.6,27.3,28.6,37.2,45.9,33.3,36.8,36.4,29.7,28.3,28.3,25,25.4,35.4,35.1,132.3,216.7,28,39.1,36.3,28.3,26.3,25.4,25.4,27,29.2,56.7,52.9,41.4,41.7,27.7,23.8,20.2,26.7,14.3,18.1,24.3,27,43.1,40.7,42,28,28.7,16.1,15.6,299.9,38.7,45.4,29.8,29.2,30.8,32.6,21,15.4,20.3,22.9,28.3,39.2,30.6,21.1,14.2,27.7,32.4,40.6,19,25.5,38.7,33.4,28.3,25.1,41.1,91.4,81.7,42.5,224.1,53.7,12.7,63.6,55.2,32.8,43,39.9,32.4,22.8,33.8,34.4,19.7,30.6,30,38.3,39.6,36,27.2,33.3,98.4,162.3,78.7,227.6,16,20.7,16.7,15.8,26,24.1,23.4,22.9,25.1,32.5,25.6,18.6,16,55,556.6,167.4,170.7,225.6,281.8,64.1,149.5,77,46.9,137.4,154.7,132.3,1025.4,109.9,75.4,61.5,61.4,68.4,65.2,103.8,706.9,131.6,103.6,102.3,370.8,250.3,118,112.8,64.3,66.2,60.9,56.1,60,112.6,48.5,24.7,23.3,24.6,22.6,21.1,22.2,22.9,25.7,27.1,22.7,29.1,28.5,23.5,26.1,23.8,24.8,45.5,41.1,163.8,121.3,236.5,98.3,88.6,87.1,69.2,55.1,55.1,88.5,242.4,194.8,135.9,538.7,72.3,75.5,101.9,70,70.3,404.2,91.5,42.3,143.9,444.9,212.1,114.8,23.4,157.2,302.4,63,65.2,62,49.3,58.6,61.8,124.9,132.4,114.6,128.8,340.4,118.6,48.5,50.5,46.5,54,48.9,51.7,99.6,162.1,50.7,30.9,38.4,33.5,22.5,24.6,39.3,38.5,29.1,56.6,525.3,153.9,111.7,39.1,21.4,374.4,43.9,39,163.8,24.5,52.3,55,52.2,486.3,140.7,112,487.5,74.1,75.5,88,108.7,1805.8,299.1,137.9,101.1,95.8,552.5,129.2,146.4,101.9,135.2,118.9,110.1,1489,105.1,3.8,95.1,263.7,250.3,62,129.1,176.3,120.2,87.6,156.2,200.1,159.3,66.5,57.4,31.6,27.4,26.6,21.7,60,142.9,38.1,33.5,82.9,68.1,97.7,68.4,79,84.2,103.4,147.3,112.3,112.3,144.7,149.7,179.3,221.6,231.1,158.3,124.9,136.5,137,175.5,125.2,133.9,141.1,176.5,218.5,312.2,145.8,107.4,114.4,110.8,95.8,148.7,79.8,71.2,151.3,124.5,98.3,179.1,265.7,133.2,145.7,342.5,159.3,160.2,191.8,451.9,111.3,118.7,119.9,83.8,112.7,188,138,140.4,141.1,411.5,176.5,105.7,76.8,59.5,84.8,100.7,93.6,133.5,52.5,90.3,167.3,89.1,157.5,447.9,196.2,167.1,94.1,68.3,119.6,130,148.4,194.3,194.8,165.6,332,5.1,101.8,101.8,99.6,118.8,98.9,103.2,80.3,87.7,105.6,208.6,121.1,84.2,110.5,163.7,232.3,202.1,258.3,159.8,292,108,116.6,113,158.3,122,106.7,137.6,96.3,123.2,118.6,397.5,88.4,78.7,92.4,93.9,97.9,89.8,139.3,146.6,619.9,118.2,234.7,223.2,29.7,135.6,123.4,155.2,169.9,94.2,102.6,47.3,349.4,169.4,136.3,182.4,47.1,96.4,149.1,141,142,29.3,130,168.2,110.2,31.5,51.3,163,114.7,111.2,112.3,120.8,94.2,43.7,55,144.6,45.9,74.9,164.5,348.5,82.1,63.2,103.7,89.2,127.4,124.8,92.3,84.3,98,65.3,56.7,74.3,88.9,129.4,128,181.5,98.9,41.8,42.2,129.7,192.1,111.7,187.4,212.1,172.3,81.6,94.4,50.7,105.3,82.3,127.4,137.3,74.7,140.7,50.4,113.6,136.8,47,115.1,51.7,75.2,159.8,112.3,106.3,43.4,84.1,59.9,49.4,48,79.6,90.5,52.5,46.7,100.2,27.9,178.1,63.9,122,116.7,163.2,272.2,191.5,162.8,101,68.3,79.6,89.2,59.6,103.1,70.8,105.5,51.5,107.4,90.4,90.5,102.3,85.7,66.3,73.7,96.2,84.7,69.7,68.3,72.7,66.3,74.9,106.8,85.3,108.8,91.4,103,79.4,82.9,18.9,87.4,97.1,93.5,114.5,120,111.7,133.9,100.4,158.7,104,155.6,105.7,164.2,246.9,242,163.7,109.2,150.3,129.1,191.7,279.4,161.7,87,143.8,54.3,104.8,157.1,176.2,137.1,71.1,189,118,249.2,272.1,452.4,105.8,22.4,77.5,219,195.7,213.7,208.1,249.8,167.3,234.7,205.5,61.9,333.8,303.9,332.7,213.7,184.3,184.4,162.1,238,423,228.3,38.7,123.5,218.9,148.1,262.4,226.7,148.2,186.3,307.3,159.6,171.9,178.5,236,209.3,171.2,174.1,160.5,112.7,186.6,182.7,171.8,157,199.5,157.9,168.1,201.1,89.8,86.5,77.9,128,46.3,82.9,78.4,155.1,26.9,42.3,19,80.3,88.2,88.3,120.8,121.6,183.4,61.2,167.3,66.4,129,135.6,204.3,219.8,64.6,157.4,204.7,128.5,157.9,83.8,69.2,104.1,270.7,145.4,150.9,162.2,164.5,154.9,178.7,61.4,83.7,106.1,139.5,86.1,114.6,137.3,134.9,147.5,122.5,147.8,146.1,153.5,173,211,225,142.9,134.1,125.2,4,138.6,182.2,100.5,120.8,117.8,100.9,130.3,110.9,111.6,159.5,190.6,138.6,162.8,151.2,212.9,256.5,71,23.4,56.7,120.4,133.3,96,97.1,127.2,120.3,123,125.9,103.6,191.8,281.4,101.9,121.4,193,121.9,87.3,115.6,102.8,106,122,145.7,125.2,108.9,142.3,161.8,274.2,181,205.7,494.5,135.9,140.3,112.7,128.2,135.4,129,127.6,51.9,79.2,166.4,41.5,42.2,133.6,50.8,39.7,74.8,27,140.2,27.2,100,61.9,66.2,215.4,191.6,122.7,87.9,94.2,156.9,35.4,42.7,89.3,251.8,66.8,69.1,58.6,71.7,179.9,82.6,87.2,140.1,140.7,60.4,193.6,159.1,120.5,245.2,237.9,286.5,307.1,613.2,385.9,289.4,289.1,225.2,110.3,139.5,125.6,73.2,46.5,73.2,46.1,93,58,59,60.3,62.5,169.4,47.8,63.5,85.2,61.8,16.4,45.6,88.8,42.8,134.3,85.7,32.6,109.1,142.4,148.9,55.3,75.3,55,57.7,126.1,117.5,92.7,128.9,128.4,134.1,123.1,107.7,63.7,64,43.3,74.9,117.2,20.4,89.1,65.8,54.8,58.1,93.3,40.8,84.5,36.2,443.4,118.5,113.1,104.4,244.8,102.7,92.1,90.7,89.7,262.7,123.7,80.2,98.5,112.6,125.1,329.4,325.1,215.6,54,310.6,53.4,115.4,715.5,676.6,62,63.3,167.7,146.7,112.5,67.8,88.6,125.9,201.1,297.3,73.8,72.4,163.2,84,60,61.1,77.1,132.1,75.7,36.8,60.4,106.1,36.8,44.3,16.5,16.4,96.8,72.9,77.7,32.1,28.6,34.1,61,45.3,110.2,109.7,115.6,116.6,263.6,108.4,56,120.2,38.8,377.6,415.6,65.8,99.7,153.8,115,141,162.3,161.6,94.4,107,108.4,102.3,122.4,154.5,183.1,306.4,67.9,72.3,66.1,65.1,69.6,55.2,65.4,226.6,343,361.3,263.7,275.5,124.7,117.7,138.1,943.2,620.3,264.5,78.7,275.2,456.2,37.3,84.6,123.4,61.3,60.7,34.6,46.4,47.7,45.5,45.9,90.1,126.3,44.7,83.3,39.2,38.3,49,49.2,289.3,289.2,291.5,150.7,229.7,226.2,14.8,86,81.5,9.9,5.6,13.3,13.9,12.1,12,16.4,16.5,14.3,14.7,19.8,28.6,38.6,38.6,22.7,19.4,18.5,15.3,15.8,17,52.2,14.3,11.7,12.9,21.3,23.2,14.8,18.8,11.7,14.1,13.8,15.2,13.5,14.8,12.1,7.2,7.2,8.8,11.1,10.6,14.8,12.9,9.5,8.9,10.2,12,14.5,13.6,11.3,11.1,12.3,13,12.2,13.4,13.8,12.8,15.3,14,19.6,22.9,24.8,54.5,42.5,29.8,44.6,54.9,28.4,73.5,67.2,38.2,10.2,12.3,12.2,10,9.1,12.6,12.5,12.4,13.9,11.5,17.7,21.1,30.9,32.7,13.4,8.7,13.3,25.6,11.8,12.3,13.9,15.5,16.1,15.4,12.2,13.1,16.9,13.3,67.1,67.3,28.9,36.4,35.1,36.6,69.7,22.5,43.2,35.9,29.9,12.2,12.5,40.3,41.2,40.9,68.1,40.8,40.1,43.6,29.6,22.9,58.7,42.7,9.7,53.3,228.7,68,82.8,352.4,71.7,77.2,38.7,5.4,139.3,38.4,55.2,155.1,43.9,36.4,5.8,63.7,22.8,31.1,3.7,130.7,53.6,10,44.6,114.9,105.4,53,37,35.6,28.5,30,45.2,46.1,7,50.9,45.3,10.6,17.5,5,6.7,24.9,56,17.3,34,5.5,12.2,7.3,6,5.3,6.9,14.1,13.5,13.5,13.4,13.5,12.8,13,12.8,7,14,22.7,23,88.8,73.2,70.4,106.2,33.3,31.4,17.5,28.4,5.9,5.2,6.5,54.4,4.4,4.1,4.4,6.5,27.2,68.5,45.8,27.3,10.2,12.7,2.3,62.3,44.8,8.3,5.4,0.8,3.7,4.4,3.6,4,4.8,3.7,3.7,28.6,14.7,39.1,19.3,20.8,35.1,11.5,10.7,97.7,99.3,200.4,67.5,35.9,4.4,14.4,37.7,43,80.5,57.5,12.2,9.1,54.6,113.1,80.9,68.3,9.1,36.7,94.1,10.1,28.5,133.1,81,4.3,24.2,13.2,46.6,9.2,11.2,98.6,21.3,212.9,7,7.3,47.7,7.5,130,10.3,21.3,6.5,10.3,9.1,6.2,10.7,46.2,191.5,12.6,21.4,202.5,14.5,197.8,20.5,9.3,8.4,77.6,76.3,40.1,120.3,52.7,8.2,16.8,213.5,76.8,60,21.7,27.1,31.1,40.4,24.7,33.6,33.9,10.2,10,9,8.5,29.1,19,7.8,13.4,5.6,30.4,33.3,29.2,72.2,73.5,35.9,9.2,24.1,8.1,16.4,65,25.9,21.3,10.5,33.9,23.3,10,30.1,16.6,12.6,98.3,10.7,12.8,89.4,30.2,15,45.5,8.8,6.3,4.8,16.7,21.9,9.5,12.5,30.7,15.1,98.3,19.2,3.3,50.9,18.7,26.5,12.3,33.4,28.1,42.8,62.4,25.8,7.7,64.5,92.3,6,5.8,5.3,6,5.1,4.6,4.6,4.6,6.6,7.1,7.5,5.8,6.2,5.4,6.7,5.1,3.6,5.6,49.2,1.7,1.9,2,1.5,1.9,2.8,4.4,4.2,10.7,21.4,32.3,43.5,5.8,11.1,1.1,8.7,21.6,4.1,4.2,3.1,2,3.8,11.2,6.4,24.3,8.4,26.9,11.2,10.1,13.5,4.4,29.3,61,7.8,19.4],"duration":[22.087,16.805,9.226,0.255,4.933,4.553,7.015,1.913,11.232,1.44,1.588,0.716,3.031,2.743,7.104,1.844,1.377,1.317,1.325,1.296,0.589,2.077,1.396,0.674,8.8,3.2,1.918,1.121,0.039,0.587,0.321,1.615,2.52,0.745,3.332,5.525,12.343,2.914,0.9,0.815,2.236,2.236,0.693,12.437,5.587,5.576,2.743,4.807,2.141,0.774,2.065,2.789,0.826,4.455,1.309,1.712,6.015,1.721,13.298,3.906,0.684,2.455,3.92,10.488,3.135,0.031,2.164,0.596,2.275,3.911,1.975,2.539,0.061,4.546,0.692,0.668,0.584,1.314,1.041,7.184,0.82,0.797,3.284,2.594,1.142,1.008,8.212,18.337,0.629,0.671,14.407,5.4,0.453,0.753,1.34,1.608,2.035,1.393,2.205,1.063,1.106,1.213,0.821,0.441,0.549,1.086,4.05,2.25,1.798,0.902,1.672,0.92,0.775,1.071,1.039,0.815,1.049,0.636,10.651,1.995,1.479,1.323,2.09,2.224,1.249,3.003,20.797,0.713,0.838,2.788,1.988,1.906,2.414,0.935,1.159,3.409,1.807,1.599,2.61,2.568,1.126,0.386,2.823,2.606,3.608,1.392,1.879,3.15,1.034,1.159,3.17,0.737,2.435,3.325,3.231,0.198,2.294,3.6,1.137,1.77,0.7,2.673,1.416,0.477,0.662,1.238,6.73,0.167,0.332,3.939,0.633,5.955,4.39,3.763,3.763,2.668,0.633,6.111,2.626,1.729,1.724,0.765,18.105,2.514,0.897,0.988,1.31,1.836,0.825,2.268,1.095,3.5,2.264,7.29,1.293,2.064,1.035,5.921,0.778,2.855,2.836,5.73,6.614,1.028,1.808,2.322,1.679,2.036,1.706,1.971,0.662,2.708,2.728,2.212,5.651,14.727,1.581,1.521,2.514,2.248,1.468,0.318,2.304,0.327,14.072,0.346,0.818,1.626,1.286,1,1.283,0.45,2.9,1.144,1.597,3.799,1.115,0.802,0.489,0.313,3.311,0.456,2.908,0.682,0.36,0.368,0.709,6.852,3.716,1.394,8.557,7.083,1.862,1.415,0.778,0.46,0.607,0.644,1.101,1.291,0.139,3.026,3.207,2.823,3.276,3.2,2.421,4.174,0.487,1.2,0.381,13.68,5.061,2.48,0.501,0.607,0.89,3.296,1.049,0.714,0.239,0.184,0.765,0.255,6.579,2.462,7.103,10.357,3.125,2.932,2.298,0.334,2.144,2.316,2.038,2.047,1.488,2.013,1.863,2.818,1.971,2.037,0.583,5.04,5.143,1.344,2.021,0.52,6.808,3.831,3.608,5.939,3.174,2.847,1.925,3.207,0.847,0.367,5.4,4.447,1.568,5.224,3.677,0.368,4.72,1.872,0.499,0.48,1.327,2.571,2.383,0.214,2.421,0.39,7.197,0.78,1.343,3.913,1.271,1.628,2.758,0.779,1.158,1.971,0.808,0.457,0.233,2.857,15.706,0.787,0.826,14.954,2.116,0.049,3.499,2.662,1.153,2.298,3.619,0.569,1.6,14.575,0.785,2.661,2.351,1.651,1.883,3.342,5.188,2.614,5.286,0.711,1.793,2.534,5.241,5.001,1.252,0.656,2.063,3.616,2.91,2.621,3.879,5.919,1.35,1.938,1.727,3.27,8.4,12.033,2.075,3.859,1.908,2.208,0.975,1.698,0.789,1.339,2.618,1.061,2.033,2.194,2.099,2.97,1.657,1.782,4.11,0.615,3.406,3.226,1.73,2.634,2.335,1.269,2.418,1.374,1.345,1.337,1.679,1.982,1.95,1.012,0.019,1.171,1.128,1.243,1.964,2.403,4.032,5.906,8.743,1.153,4.294,5.278,11.647,3.893,3.46,3.129,4.581,7.728,5.255,2.521,1.712,1.711,2.183,1.145,1.122,1.092,1.089,2.461,1.33,1.405,1.502,1.699,1.51,1.681,2.212,0.941,1.257,2.183,1.365,1.374,2.136,2.536,1.849,2.016,1.401,1.348,1.134,1.862,0.277,3.478,3.487,2.182,1.877,2.513,3.128,1.252,1.078,1.149,1.374,1.04,0.977,1.482,0.77,1.072,0.796,0.694,0.601,0.742,0.933,0.876,0.679,0.634,0.879,0.874,0.869,0.836,0.792,0.694,0.761,0.791,0.944,1.117,0.802,0.655,0.649,0.669,0.755,1.44,1.516,3.413,4.118,0.523,1.617,4.8,1.163,5.511,1.689,2.193,5.044,4.498,7.997,3.585,12.758,14.341,0.435,3.244,2.851,1.949,8.865,0.975,10.738,8.339,0.256,3.045,2.592,3.868,24.497,6.68,3.165,4.657,3.371,5.208,5.786,1.57,7.072,2.617,6.33,8.221,13.861,1.819,12.811,5.642,4.021,3.445,12.862,1.373,9.612,10.199,11.498,12.53,1.642,10.491,8.355,0.978,5.77,11.638,3.448,1.948,1.366,4.691,1.605,1.165,0.832,0.772,1.53,1.265,1.44,0.733,0.858,1.783,0.85,0.937,2.554,0.408,2.542,6.241,10.268,3.067,1.216,0.947,1.2,0.478,0.595,0.545,0.719,0.441,0.506,0.888,1.096,0.691,0.885,1.556,1.41,1.983,1.205,2.807,1.175,1.336,1.613,1.107,1.059,0.634,1.205,0.936,0.876,1.24,0.705,2.182,14.579,3.684,5.295,2.429,2.762,1.778,0.622,3.911,0.788,5.42,0.631,0.795,0.439,0.895,1.057,1.902,2.244,1.335,1.79,1.729,2.344,1.177,1.138,1.472,1.412,2.173,14.303,14.612,6.396,1.432,0.889,3.116,3.518,5.482,3.816,1.611,1.638,1.666,1.233,1.088,1.029,1.287,1.424,1.444,1.157,1.406,1.052,1.137,1.113,0.964,1.12,1.145,1.231,1.107,1.121,2.372,14.508,19.35,1.602,1.107,1.07,1.389,1.1,1.207,1.133,1.153,0.917,0.887,1.026,1.046,0.884,0.949,1.229,0.871,0.929,1.391,1.122,1.743,2.574,2.828,12.793,1.344,1.204,1.412,1.141,1,0.967,0.789,1.143,1.291,0.717,0.737,2.219,1.248,6.584,2.495,2.424,2.26,0.356,3.587,3.338,4.716,2.472,3.109,1.214,1.225,0.936,1.296,1.056,0.654,0.324,0.324,1.014,0.745,0.287,1.136,1.715,1,2.188,1.933,1.247,1.356,11.438,1.711,2.02,1.752,1.715,0.629,2.444,1.892,2.344,2.09,1.782,11.832,7.984,6.042,6.788,26.861,2.787,2.157,2.373,2.471,2.381,4.005,3.515,2.22,2.384,2.158,2.218,2.497,2.768,2.958,2.335,3.903,10.991,2.388,8.537,0.935,6.781,6.082,6.683,2.194,3.255,2.208,2.499,0.276,1.282,1.297,1.215,1.73,0.86,1.303,1.244,1.204,1.173,1.3,1.222,1.241,1.297,2.409,7.485,5.917,1.938,5.913,11.401,1.562,5.632,2.317,4.454,1.512,1.212,1.282,7.863,2.032,1.592,1.129,11.749,4.592,8.012,8.902,1.503,1.381,1.085,0.879,0.856,0.79,0.933,0.874,0.699,0.962,1.098,1.285,1.364,1.412,1.1,0.987,1.081,1.295,1.222,1.222,1.414,1.436,1.216,1.197,1.194,1.174,1.51,1.997,2.716,2.663,4.463,0.979,2.536,12.961,8.162,1.246,7.373,12.991,5.356,3.378,1.867,1.951,1.872,1.736,1.531,2.098,1.363,1.757,1.241,1.586,4.14,1.938,2.098,1.152,2.206,1.756,1.598,0.612,0.982,2.042,2.226,2.238,1.327,1.872,0.315,1.579,2.414,0.9,1.503,2.69,3.531,1.702,0.583,1.909,2.005,13.663,6.149,5.297,2.302,2.001,2.077,2.276,2.338,1.913,0.387,1.874,0.529,1.599,0.017,1.985,3.797,5.162,4.696,13.024,5.396,6.123,10.977,2.34,7.236,4.525,5.267,2.557,2.423,2.364,2.787,1.899,1.126,0.551,2.004,5.344,22.531,7.949,3.729,6.359,7.793,2.888,14.835,13.965,1.29,17.264,14.4,20.401,3.731,3.442,3.09,0.967,1.355,0.429,1.423,1.252,1.357,1.339,1.157,1.236,1.098,0.747,0.452,0.827,1.112,1.016,1.147,1.018,0.917,0.995,1.047,0.953,1.284,0.675,1.241,7.156,3.836,2.614,8.529,17.7,3.214,1.615,1.206,1.995,17.192,7.57,11.335,1.432,1.071,4.865,2.383,1.872,3.703,10.707,1.936,2.991,1.034,2.814,2.497,0.045,2.628,0.627,3.819,3.52,5.623,1.982,1.305,1.881,5.902,1.216,3.626,6.634,2.321,5.795,5.224,2.371,0.615,11.897,13.021,1.562,0.476,0.351,12.6,1.342,1.248,1.429,1.603,2.001,1.64,2.546,2.113,1.909,1.606,1.652,1.207,1.955,3.61,3.048,1.513,1.637,3.319,3.148,3.134,3.071,3.318,2.963,3.212,3.236,3.431,3.106,3.105,1.822,1.499,3.155,3.101,2.582,3.204,3.161,2.263,0.966,4.381,3.989,4.547,2.363,2.053,0.885,7.792,8.692,4.986,3.036,4.165,4.502,4.119,4.13,2.472,2.385,5.094,1.404,8.162,3.665,3.865,3.321,4.709,19.468,6.531,12.058,11.173,0.991,4.015,5.614,2.654,2.174,4.549,1.865,5.115,4.151,3.772,3.936,4.221,2.997,3.493,2.932,10.373,3.253,1.398,2.264,8.284,4.109,1.515,1.656,1.689,2.243,2.431,3.38,2.404,4.66,3.726,3.453,4.577,1.004,0.987,1.605,4.415,24.932,2.26,6.579,4.103,2.242,4.381,2.069,3.691,3.114,1.511,3.227,0.485,5.296,5.178,4.192,6.406,6.406,13.583,6.015,0.008,5.963,0.79,7.505,8.247,14.744,0.012,3.002,2.864,3.183,2.175,1.619,6.233,2.101,3.7,3.58,5.69,2.68,6.612,2.717,3.232,7.509,7.515,1.083,3.123,0.901,1.545,2.584,4.096,5.085,3.273,8.323,17.344,20.081,3.848,13.565,16.365,10.408,2.443,22.669,9.243,15.034,1.915,3.353,3.99,0.935,0.504,2.185,2.679,2.349,3.689,3.446,6.188,6.19,0.566,15.605,12.016,6.263,6.061,3.319,5.038,1.936,1.646,5.32,1.157,12.792,16.841,6.353,6.328,7.462,3.105,2.975,8.219,8.833,3.863,2.991,2.548,1.482,0.847,1.649,2.268,2.029,2.56,5.787,1.269,9.322,6.547,11.508,5.814,5.77,6.014,5.693,5.679,5.598,10.409,2.395,1.019,5.479,5.267,6.865,7.063,2.926,2.126,14.126,14.823,11.092,10.821,5.733,5.81,0.115,4.862,3.555,2.163,3.804,4.038,7.96,0.814,5.384,4.265,3.195,12.582,1.837,2.217,0.784,1.631,1.882,2.477,2.322,2.176,6.564,3.41,1.869,1.921,1.138,1.116,1.171,1.108,1.225,1.391,2.443,1.622,1.228,0.726,0.715,2.729,1.955,1.983,1.887,5.378,2.163,1.601,1.085,1.133,0.161,1.246,1.233,1.659,1.337,1.736,1.614,1.405,2.227,1.847,2.044,10.009,1.735,1.758,1.725,1.775,1.824,2.017,2.283,3.533,4.524,1.606,0.845,4.168,1.532,5.86,2.33,8.347,3.926,2.29,1.318,0.947,0.709,2.827,4.767,1.001,4.003,5.001,4.813,4.834,4.847,4.993,3.359,4.467,7.483,6.977,3.171,3.495,2.751,2.377,5.44,6.001,2.87,7.566,5.687,4.106,5.185,6.078,1.319,1.11,0.764,4.948,4.765,1.758,3.124,1.4,5.993,3.6,5.785,3.591,3.575,3.936,11.243,5.554,6.871,4.097,2.976,7.63,5.549,3.835,3.496,5.376,3.086,6.046,7.309,7.484,8.264,6.818,0.995,4.152,5.03,3.433,1.434,1.43,3.414,1.523,0.912,0.066,2.951,5.985,6.244,0.61,1.129,4.34,6.787,3.841,2.449,6.926,1.066,1.193,2.437,0.817,1.618,0.69,2.602,2.571,2.664,2.404,3.606,1.966,1.916,1.934,2.044,2.131,2.263,2.716,1.655,4.609,4.951,13.24,16.199,0.244,14.64,9.465,13.969,17.608,8.586,1.474,17.505,6.269,3.59,3.739,1.823,1.932,3.401,3.229,2.335,1.191,1.106,2.025,2.426,2.545,2.432,2.373,2.633,2.223,2.304,14.19,32.031,1.939,3.246,1.583,2.091,1.549,2.094,1.435,2.158,3.362,1.971,2.048,2.267,2.266,4.133,2.643,5.29,5.451,11.001,4.845,4.767,6.022,8.091,0.595,3.178,1.863,1.224,1.504,5.667,8.198,1.248,4.683,15.932,1.512,5.776,3.719,2.617,3.15,3.112,4.683,4.671,0.755,2.247,1.557,1.756,3.057,2.077,2.221,1.983,1.894,1.803,2.223,2.319,1.772,6.275,3.991,3.428,1.341,0.86,0.723,0.727,0.629,3.384,1.42,8.018,5.312,4.921,6.974,5.675,2.985,1.153,2.17,13.424,11.992,3.473,3.247,3.011,4.703,0.455,5.77,2.755,2.717,4.023,1.4,1.502,1.538,1.66,1.672,1.279,2.956,2.151,2.065,2.392,2.421,2.17,1.671,3.284,2.14,0.722,1.63,0.365,3.183,2.449,1.568,3.206,3.792,6.046,5.07,3.294,3.363,1.564,1.196,2.825,0.17,4.325,3.174,1.702,1.726,1.879,2.135,2.636,1.477,1.034,15.336,1.001,2.702,4.273,3.899,4.428,1.281,0.944,2.866,1.426,2.202,0.751,4.639,1.142,6.248,3.169,3.152,2.757,2.707,2.952,1.408,1.374,1.5,0.976,12.083,2.922,11.999,4.245,2.731,1.956,2.408,2.289,2.192,1.233,1.389,3.858,4.128,7.229,14.706,9.135,1.431,1.219,6.92,4.679,5.144,4.282,0.518,1.509,0.747,6.769,4.188,5.749,2.769,2.513,2.739,2.649,1.906,2.334,3.71,2.984,3.176,1.007,3.185,13.287,35.336,2.012,8.493,5.518,5.686,4.106,3.91,4.724,5.49,4.13,6.218,15.547,10.972,4.616,3.471,3.834,0.928,4.306,1.729,5.493,0.857,5.328,6.349,2.107,6.163,2.683,1.359,0.95,3.099,3.262,3.28,3.153,3.159,4.299,4.336,6.709,4.575,3.154,8.298,9.477,6.514,1.326,8.234,1.248,3.562,3.288,3.894,1.338,7.518,1.456,6.822,4.06,11.181,5.597,2.915,5.807,0.907,2.167,4.833,37.067,1.059,0.568,1.679,29.393,1.105,39.673,35.08,1.176,7.924,40.551,1.996,11.555,6.453,10.099,1.396,8.621,8.132,1.589,6.445,7.873,3.242,4.08,4.371,4.027,6.309,1.782,0.975,4.055,0.823,1.461,0.934,6.095,1.134,7.074,8.859,0.558,8.217,1.941,6.508,18.04,0.134,16.857,1.503,5.85,2.537,0.651,5.383,0.649,1.141,1.622,5.65,0.713,5.917,4.491,0.748,1.925,1.61,1.255,2.374,3.113,0.884,2.698,1.971,1.096,1.694,2.279,2.152,3.34,2.459,2.861,3.264,1.409,14.823,1.728,12.635,2.896,17.638,6.782,1.825,2.108,2.468,1.737,2.02,1.793,1.832,1.822,2.158,2.008,2.033,2.664,1.932,2.159,2.671,3.088,10.129,2.649,5.511,1.303,8.427,0.693,4.282,3.941,2.681,2.786,3.482,1.855,2.152,2.236,2.495,2.811,3.345,2.5,1.82,4.609,11.326,4.994,3.017,7.242,2.063,2.576,5.101,9.922,1.2,6.82,0.5,9.266,12.94,5.568,2.209,6.875,7.14,1.318,11.053,6.812,5.502,5.081,7.439,5.997,3.867,3.994,2.18,2.037,4.059,7.016,6.838,0.191,12.844,5.063,5.472,0.965,12.215,3.617,12.508,2.89,2.311,4.717,2.403,1.099,2.757,2.111,2.039,1.394,0.111,1.877,2.596,9.578,1.93,1.27,1.315,4.845,4.454,1.336,7.971,1.34,9.526,3.801,3.987,1.328,4.684,4.249,4.36,3.734,0.488,4.378,13.313,0.45,13.627,4.536,0.797,5.241,2.377,3.254,2.096,1.371,0.294,2.456,1.32,3.651,2.381,1.647,3.406,3.93,3.517,0.548,6.415,5.913,5.148,10.229,0.89,8.169,16.066,0.525,2.124,14.306,4.159,10.49,5.173,2.495,0.511,4.462,0.375,1.821,7.793,6.068,1.259,1.059,3.133,2.035,8.765,5.447,0.616,1.115,7.932,2.274,1.707,7.388,2.369,0.568,1.534,6.187,3.079,2.968,7.877,2.692,4.56,4.815,3.825,2.61,0.332,6.794,8.575,1.754,12.987,14.511,7.653,0.606,7.305,3.139,2.197,9.673,9.672,7.632,5.206,1.231,4.036,1.639,2.25,4.366,2.908,0.354,2.699,3.119,1.035,2.31,3.385,4.577,4.028,3.669,2.509,1.016,2.813,2.715,1.641,14.468,4.625,9.827,7.603,1.167,2.516,8.086,8.246,2.259,3.596,11.655,7.536,5.874,2.212,7.86,5.779,2.43,1.273,11.63,4.1,2.602,1.883,4.117,4.32,5.952,4.051,0.461,1.956,6.793,13.609,9.33,0.913,4.5,0.711,7.12,1.381,1.899,3.099,4.009,7.27,2.038,2.088,2.047,1.728,4.731,5.322,5.047,4.085,1.799,1.865,2.262,0.998,5.633,0.403,6.501,1.198,5.652,13.854,2.011,10.505,6.041,4.631,1.89,6.531,6.396,2.025,3.571,5.323,1.513,10.065,1.249,0.866,0.352,6.627,1.8,0.6,0.881,8.428,9.551,9.726,2.777,13.034,0.717,17.868,10.639,1.889,3.384,1.129,0.952,8.563,9.209,8.619,9.114,1.39,14.407,1.982,5.658,2.141,1.808,0.36,0.447,6.437,2.475,1.172,3.511,1.748,2.712,2.601,2.812,3.776,0.015,6.804,4.389,2.64,3.193,4.247,3.146,10.001,0.458,2.895,4.311,0.865,1.604,7.203,0.418,5.288,4.06,4.422,3.019,1.113,2.063,6.421,8.958,0.643,5.776,12.058,13.56,2.044,1.87,11.456,6.874,2.076,8.99,7.519,4.775,1.496,7.244,0.833,5.368,5.797,1.505,2.719,3.193,0.482,2.996,3.332,1.755,2.677,3.412,3.191,1.686,0.893,12.898,2.621,1.842,2.962,3.216,2.096,9.631,9.665,2.088,6.048,2.124,7.789,1.597,2.148,2.146,1.897,1.169,15.084,1.461,0.959,1.964,7.628,5.81,1.177,1.205,0.066,1.646,0.5,1.206,14.951,11.851,5.213,10.677,6.818,1.238,2.082,8.376,1.433,6.583,2.185,1.782,0.982,4.669,1.854,1.081,3.053,2.227,14.026,2.145,2.129,4.731,4.041,5.54,1.864,2.872,4.219,0.23,6.625,3.693,4.47,10.683,3.665,13.689,1.048,0.636,2.173,13.5,1.019,1.944,4.602,7.432,7,1.685,1.252,3.654,1.303,0.857,12.42,0.89,3.898,2.268,1.648,5.204,1.892,1.886,1.241,8.739,6.94,2.182,2.07,0.428,14.532,18.364,17.706,8.851,0.428,8.497,3.995,1.246,0.626,11.755,21.557,13.999,10.64,6.963,12.147,1.659,4.024,12.372,4.288,1.554,3.698,7.915,4.126,1.456,3.856,4.674,3.689,4.265,1.431,3.744,3.993,1.854,4.451,3.339,5.577,0.851,5.709,1.512,0.432,0.777,4.65,17.885,5.147,2.844,8.637,0.741,7.078,0.509,7.416,2.772,0.324,3.096,2.683,0.719,2.809,2.376,3.215,2.263,2.584,4.951,3.139,1.263,6.58,8.411,0.677,7.937,4.839,0.642,15.461,7.665,7.666,8.281,2.186,5.905,5.904,5.343,2.817,0.039,2.863,6.341,3.224,3.21,1.097,3.547,3.492,2.671,11.551,0.543,2.671,5.191,6.402,2.15,0.364,0.419,6.628,5.982,4.203,1.449,6.445,1.059,2.08,1.235,2.338,2.546,0.642,2.114,3.006,2.937,2.62,6.619,1.239,5.519,3.459,1.426,2.353,1.995,1.313,0.421,1.767,0.636,1.39,3.046,4.874,2.415,4.606,0.885,14.083,0.493,1.774,3.01,15.597,4.988,13.577,4.91,12.152,2.536,1.053,6.068,2.011,5.368,10.552,4.441,10.552,2.887,1.097,3.158,0.236,4.217,14.111,5.519,6.902,3.434,1.117,2.144,4.806,5.805,4.126,4.013,6.343,1.028,5.44,7.2,6.514,2.055,4.047,2.653,1.234,8.272,16.899,4.926,14.95,9.784,0.96,6.869,1.538,10.085,2.014,0.228,1.094,1.443,1.851,1.756,1.578,1.128,1.154,0.926,1.536,1.842,1.906,1.67,0.819,1.709,1.894,1.421,1.763,1.896,1.916,3.193,0.415,2.552,1.643,0.185,1.303,4.188,1.081,2.319,1.004,1.278,3.092,2.696,1.023,0.649,1.823,1.886,1.064,1.752,1.649,2.109,1.494,1.529,1.687,1.386,2.209,1.489,1.349,5.103,1.218,3.665,2.725,3.753,0.9,0.734,0.943,5.94,1.084,0.849,2.772,1.935,0.889,0.862,0.861,0.963,1.481,1.314,0.65,0.381,1.379,2.128,1.093,7.497,11.537,11.486,2.721,3.841,3.363,0.749,2.568,2.951,4.034,6.659,4.344,19.628,1.13,1.525,12.187,6.166,20.234,22.409,9.995,5.483,0.323,5.095,15.835,7.417,7.863,3.139,7.233,1.784,1.113,1.178,3.773,1.475,2.719,6.649,1.214,3.644,21.111,15.221,2.428,1.415,1.272,11.012,7.951,0.807,7.557,3.2,2.059,1.756,6.087,2.908,4.99,2.067,2.99,1.983,2.72,1.872,5.444,1.029,0.753,1.592,1.072,1.013,1.196,1.405,1.107,1.306,1.47,1.226,1.289,1.365,1.228,1.197,1.629,1.539,1.759,1.912,3.143,1.771,1.07,2.504,5.31,5.138,6.065,1.2,5.331,1.685,1.977,6.738,6.507,5.51,4.308,2.625,9.709,2.667,1.007,4.698,3.279,8.818,1.633,2.302,6.416,1.559,2.578,3.477,2.574,3.928,1.165,3.2,3.272,1.623,14.573,6.375,6.492,1.759,1.782,1.362,1.251,1.294,1.292,1.104,1.137,1.355,1.48,1.197,1.221,4.284,1.412,1.488,1.889,1.298,1.279,2.071,1.703,5.469,9.466,6.561,1.004,9.828,3.149,3.188,1.133,1.62,1.781,1.535,1.706,1.573,2.354,1.84,1.344,1.306,1.047,1.473,1.731,1.651,1.422,1.671,1.741,1.819,1.849,1.452,1.502,1.708,1.767,1.78,1.433,1.652,1.634,1.726,1.746,6.381,4.938,5.28,1.014,2.978,4.019,2.999,1.803,1.681,2.172,3.344,3.08,1.698,2.228,3.251,17.506,6.129,0.874,10.185,10.446,4.857,2.629,6.494,7.382,1.044,1.468,0.862,12.38,4.528,17.419,10.519,4.831,2.891,1.011,2.161,1.164,2.547,1.023,0.495,0.706,1.279,0.769,2.069,1.343,3.72,4.503,1.47,0.804,2.05,1.265,4.516,2.562,2.15,2.004,0.953,1.719,1.558,1.636,1.432,3.551,0.958,1.09,2.617,2.461,2.17,2.026,2.83,3.36,3.067,3.549,2.841,3.091,3.649,3.416,0.292,0.642,0.981,11.021,4.275,6.841,6.664,2.241,3.614,4.174,4.672,3.837,0.933,5.639,2.939,1.631,0.462,3.098,1.374,1.323,1.446,1.764,1.967,0.989,1.657,0.367,4.421,2.152,1.872,4.997,2.912,2.308,2.347,4.895,1.928,0.45,0.58,3.96,12.561,0.071,8.397,6.601,2.16,4.339,1.368,1.323,1.707,1.449,2.438,2.037,1.771,1.298,1.382,1.432,1.205,1.559,1.707,2.819,2.392,2.283,2.104,2.019,1.642,1.709,2.062,1.949,2.192,4.342,2.858,0.495,1.989,2.811,0.841,19.236,26.417,26.508,5.131,1.205,9.212,5.965,4.931,28.805,14.421,3.45,3.768,5.445,4.373,3.558,2.152,1.766,1.779,1.706,1.625,2.3,2.815,3.111,2.523,2.182,2.802,2.798,4.005,1.043,7.598,0.775,2.599,2.489,2.159,2.1,1.762,1.539,1.282,1.318,1.379,0.666,2.067,1.887,2.263,2.325,2.303,2.499,2.862,3.338,2.649,3.158,1.481,1.6,2.533,2.36,2.615,3.557,2.058,0.588,0.581,0.855,0.704,0.672,0.569,0.707,0.659,0.974,8.384,1.103,0.899,1.061,0.829,0.83,0.714,2.053,0.71,2.389,3.98,0.522,12.757,8.286,1.73,7.223,5.078,9.612,4.208,4.331,5.921,3.192,3.5,1.713,1.551,4.236,4.327,1.873,3.376,6.693,5.107,0.83,5.899,6.229,1.443,4.509,2.745,0.924,1.315,2.118,2.761,1.773,1.713,1.745,1.731,3.951,2.879,1.859,1.852,3.419,0.823,1.058,1.025,1.496,0.181,1.271,1.29,0.937,1.539,3.388,2.428,2.477,1.296,7.2,1.063,3.581,3.586,8.064,7.523,1.875,4.309,1.212,4.973,2.675,2.594,1.027,2.304,2.958,0.812,3.124,3.011,3.004,2.684,2.28,2.267,0.826,0.781,0.213,9.306,1.043,4.933,2.047,0.657,3.177,4.952,2.708,4.487,5.661,3.294,3.135,4.405,3.647,3.049,2.763,4.042,3.998,1.454,0.792,2.609,2.627,2.616,3.802,0.424,9.671,0.636,0.473,0.764,3.338,2.593,1.561,1.31,5.538,1.571,0.887,1.02,1.8,1.969,0.862,2.29,2.778,3.281,2.493,1.571,1.598,1.236,3.97,2.9,11.986,0.656,0.73,0.657,1.168,1.164,2.5,2.104,3.676,2.24,1.326,1.571,2.276,8.57,7.95,3.267,3.802,3.279,3.951,0.937,0.353,0.242,2.496,2.904,2.275,2.952,2.927,2.454,2.431,1.843,1.825,1.121,0.96,2.186,4.481,8.669,12.599,1.344,1.087,1.204,3.706,3.017,0.611,1.147,3.903,3.882,1.54,4.288,3.096,3.096,3.323,2.918,1.412,3.672,5.434,3.041,3.509,3.249,2.588,4.991,1.292,2.503,3.26,7.79,1.622,2.614,1.565,2.375,2.902,3.179,1.788,0.186,0.816,4.02,1.433,3.299,3.971,1.713,4.648,1.413,9.284,5.37,3.464,2.778,1.827,1.854,2.452,4.355,4.357,1.476,7.754,8.434,9.372,0.27,1.521,3.419,2.23,5.816,6.386,0.069,2.406,3.856,1.184,1.024,2.933,2.762,1.416,1.51,4.604,3.843,5.438,4.798,4.154,1.666,3.033,2.891,1.247,2.163,2.738,5.876,9.18,0.935,7.487,14.877,8.123,8.074,1.419,1.225,0.582,3.818,3.932,9.37,2.958,3.174,2.905,1.896,1.838,1.694,3.424,2.813,1.64,0.534,3.927,3.195,3.107,1.055,3.45,4.284,0.624,10.674,1.154,3.6,1.471,3.6,1.003,1.225,2.641,1.513,1,1.089,2.698,2.703,3.671,0.9,2.468,1.929,3.915,5.536,8.728,2.482,3.067,1.858,1.323,1.176,2.045,1.971,1.931,1.073,2.762,1.938,1.985,1.973,3.834,0.9,1.584,2.821,2.659,1.992,1.977,1.214,1.065,1.071,1.339,2.749,2.733,3.208,3.747,9.408,4.738,3.258,0.354,1.871,1.166,2.004,0.743,0.932,1.88,2.388,1.922,1.715,2.282,3.013,3.094,3.172,3.304,5.818,0.979,4.28,3.459,2.638,2.217,2.572,2.692,3.117,4.761,5.239,1.889,1.339,8.048,1.707,0.686,2.903,4.521,2.114,15.935,8.525,8.655,6.152,10.249,3.591,7.183,5.84,4.099,3.66,1.564,4.571,3.501,3.62,1.166,1.944,5.872,0.35,1.306,4.575,7.539,7.997,3.49,10.22,4.296,2.264,12.287,1.269,5.814,5.095,2.115,9.114,11.862,3.997,0.439,1.582,1.391,17.121,4.564,3.954,16.877,10.834,2.266,5.19,0.754,2.533,0.544,1.172,1.014,6.331,2.164,1.254,5.38,2.085,1.997,1.994,4.011,3.771,3.726,6.201,5.015,0.909,0.984,10.922,17.154,1.377,0.865,3.97,0.424,4.72,9.944,5.206,8.931,3.635,4.369,2.936,1.463,3.673,2.321,0.512,2.119,3.985,3.984,3.169,1.438,2.278,1.007,4.261,2.518,3.376,2.33,2.04,2.487,1.372,1.132,3.793,1.411,2.605,2.586,3.259,3.445,2.593,4.261,3.093,3.742,3.304,0.476,1.491,8.582,1.267,2.376,1.476,1.764,2.223,5.314,5.585,2.327,2.075,3.268,3.238,2.375,1.331,1.751,1.97,2.439,1.653,1.008,2.515,2.519,2.646,3.072,2.851,2.684,3.603,3.599,1.412,2.931,2.108,0.637,1.296,3.924,1.673,1.713,2.477,1.787,0.035,0.71,5.569,0.921,1.584,4.694,0.489,5.383,3.466,2.519,5.087,2.514,2.503,1.791,1.225,1.031,1.202,2.873,1.05,2.015,3.001,3.698,2.718,1.369,1.261,3.253,3.145,3.397,3.913,3.463,4.132,14.322,1.881,1.953,2.35,1.252,1.104,4.592,5.283,2.893,2.401,4.446,3.153,2.86,2.305,1.455,0.182,0.939,1.528,3.183,2.591,1.943,1.963,1.963,1.096,0.876,1.34,1.897,2.608,1.964,2.437,3.144,5.629,1.949,2.802,3.333,0.587,2.478,1.084,1.84,2.614,1.15,1.409,0.974,4.788,1.002,1.893,1.33,4.616,3.802,4.916,4.629,1.33,9.498,10.006,4.434,1.763,2.286,1.934,6.938,2.84,3.301,2.759,1.619,3.34,5.422,4.959,3.378,10.447,7.533,10.699,6.331,2.895,1.835,7.285,4.484,2.142,2.227,2.823,2.73,2.531,3.114,0.909,2.497,2.711,1.839,1.96,3.03,4.32,4.303,0.846,1.285,2.374,9.109,3.593,2.333,4.548,3.915,5.04,3.463,1.601,1.945,1.726,2.109,1.124,1.076,3.54,3.143,2.353,1.558,3.886,3.529,3.706,3.546,2.954,1.128,3.469,4.08,3.53,3.101,2.745,3.69,2.642,1.852,8.865,0.885,6.449,1.918,0.064,14.04,8.435,7.364,11.291,2.231,0.128,3.513,7.943,6.596,5.045,1.956,4.925,5.138,4.004,4.866,3.778,4.78,2.835,2.841,2.487,1.455,1.643,2.891,3.889,4.487,6.101,1.238,5.848,8.188,9.196,6.245,3.156,2.441,5.643,3.423,2.139,3.478,2.499,1.379,2.355,2.129,3.516,2.702,2.118,2.057,3.51,2.042,2.165,4.197,7.276,2.424,11.141,8.263,0.9,0.08,0.497,0.495,5.834,3.857,3.217,3.415,0.555,5.268,7.067,5.049,1.065,6.341,3.611,3.174,1.141,2.728,2.924,5.112,0.8,1.569,2.081,1.92,1.795,0.9,1.367,2.352,2.518,1.358,1.601,0.89,0.686,2.646,1.867,3.313,3.128,3.318,2.527,2.537,2.472,3.029,0.809,2.67,2.674,1.992,1.828,2.57,1.823,3.563,0.864,0.235,1.009,0.507,1.494,2.451,3.394,3.889,5.584,7.518,1.055,1.015,3.149,2.574,1.993,1.297,3.073,2.134,2.123,1.313,2.729,2.231,1.957,1.364,0.864,0.198,1.418,0.618,1.383,2.289,0.873,2.313,3.061,2.879,2.907,3.545,3.513,3.231,9.091,15.674,7.646,5.04,2.513,1.172,2.431,2.575,2.092,4.292,1.296,1.038,1.224,0.468,1.288,0.222,2.639,3.277,3.32,3.463,3.293,4.028,3.268,3.112,2.866,3.144,3.368,0.823,0.089,2.481,1.84,3.271,3.899,3.135,3.768,3.084,2.49,3.135,3.05,3.871,0.972,2.112,3.767,4.389,4.409,1.988,2.214,0.857,4.866,6.271,4.313,7.112,5.065,4.926,3.681,3.811,2.373,3.056,3.104,2.058,4.104,2.578,2.189,1.78,2.87,1.855,1.813,1.928,1.917,2.223,2.986,2.882,2.028,0.9,1.549,1.867,1.664,1.832,0.864,0.96,1.296,1.739,1.059,1.115,1.656,1.797,2.223,2.717,2.665,2.752,1.954,1.437,1.227,2.11,0.49,6.597,4.937,0.009,7.289,6.226,1.366,0.529,2.4,5.502,2.54,1.874,1.818,3.71,3.007,3.295,2.23,2.098,3.754,3.657,3.649,2.995,3.809,3.171,1.817,6.309,1.407,3.783,5.255,0.677,1.855,3.295,3.87,2.585,1.928,3.8,3.225,4.828,1.554,3.203,3.937,3.824,3.243,3.181,3.228,3.204,3.217,3.151,3.184,1.95,1.326,2.51,5.838,10.304,7.013,0.411,2.958,4.465,0.168,1.127,6.274,5.588,2.295,1.073,0.57,1.391,5.555,3.868,5.812,2.224,4.241,0.415,0.515,5.425,7.6,3.666,2.649,3.124,3.165,2.038,3.53,5.696,5.18,2.595,0.589,3.379,3.207,3.993,3.047,4.365,0.238,1.462,3.2,2,1.104,1.604,3.372,3.942,9.383,5.59,1.767,4.543,4.735,3.201,3.119,1.838,1.237,0.224,1.195,4.916,3.731,4.225,1.881,1.275,3.061,3.149,2.765,2.039,2.416,2.535,0.646,1.817,4.289,2.47,3.062,3.668,2.34,0.677,2.552,2.461,3.694,2.391,2.466,1.903,2.421,2.407,1.935,1.934,1.236,1.873,3.07,1.955,2.492,2.503,2.599,3.151,2.386,3.265,1.53,1.689,3.745,3.791,6.891,2.043,1.828,3.779,1.923,2.112,2.265,1.737,2.766,4.225,3.574,3.562,2.537,7.269,5.345,2.595,2.635,3.072,2.075,1.527,5.15,4.965,4.946,3.994,6.588,4.987,4.325,4.268,1.21,1.941,4.33,4.331,5.585,3.759,3.695,5.005,3.159,3.642,3.115,3.718,4.395,0.539,1.118,2.138,4.389,3.877,3.03,0.83,3.166,7.081,4.333,4.128,2.311,2.46,1.004,1.164,1.093,2.948,2.241,1.941,1.944,1.98,1.501,0.239,0.898,0.822,1.82,1.438,0.634,0.131,1.756,0.144,2.89,2.222,0.906,1.935,1.745,3.258,2.097,1.983,1.865,1.958,2.503,1.656,1.262,0.706,0.388,2.172,1.644,8.625,5.462,2.914,4.49,1.537,2.412,1.747,1.188,3.07,5.604,2.547,2.411,1.892,1.205,0.751,1.185,1.381,1.815,17.351,7.281,1.675,3.032,1.854,1.993,1.896,1.978,3.397,2.021,1.293,2.611,2.038,1.381,3.313,2.641,2.587,1.431,2.07,3.318,2.017,1.988,1.984,1.436,1.954,0.821,0.646,1.442,2.268,3.664,2.286,2.97,0.556,3.668,2.987,1.684,2.137,1.619,1.038,1.078,1.635,1.05,1.116,0.971,0.067,1.101,1.07,0.848,0.772,1.089,1.64,1.311,1.058,2.242,3.06,6.776,5.596,0.633,5.782,7.076,0.682,0.687,3.5,8.694,2.982,3.239,0.347,3.429,4.096,6.394,4.748,2.491,2.45,1.894,6.01,5.048,0.973,19.828,7.361,7.691,4.518,1.278,15.43,2.423,1.091,2.789,2.349,2.028,2.189,4.86,4.471,1.084,0.251,2.311,1.454,1.797,0.525,3.101,2.607,2.571,4.801,5.435,5.671,1.913,1.554,1.965,1.252,1.268,1.266,1.268,0.409,0.554,0.303,0.884,0.384,0.883,0.384,1.266,1.268,1.27,1.371,2.969,4.24,3.885,3.324,5.315,5.672,1.819,3.581,1.348,0.767,0.821,2.609,3.54,4.772,2.57,2.527,1.938,2.03,1.06,1.055,2.521,3.884,0.891,3.165,1.565,1.425,1.895,1.917,1.444,1.828,1.362,1.529,0.927,2.259,2.195,3.367,4.645,5.67,2.423,2.332,2.38,4.914,1.174,1.881,1.863,2.355,2.128,0.537,1.758,4.961,3.003,2.66,2.461,2.293,1.854,1.411,1.632,3.135,4.89,4.459,0.516,2.446,2.319,1.381,1.415,1.704,1.81,1.446,1.816,1.892,1.811,1.707,1.769,1.552,1.623,2.104,1.215,2.461,3.896,3.966,8.808,2.218,2.497,2.455,2.282,1.651,1.886,2.264,1.985,2.767,2.762,3.675,2.916,6.44,6.444,11.018,4.007,3.256,1.709,1.756,2.183,1.863,1.423,1.444,2.974,0.895,0.998,0.783,3.358,2.148,1.2,8.498,12.298,3.443,0.039,1.534,1.65,1.01,1.015,0.851,0.853,1.076,1.072,1.616,1.044,1.647,1.069,1.048,1.094,1.812,1.415,1.792,0.64,1.407,1.083,1.227,1.974,0.608,0.639,0.023,1.44,1.607,1.779,1.447,1.791,1.103,1.03,1.141,0.33,0.689,1.024,1.158,1.076,2.097,1.246,1.74,1.01,1.816,0.655,1.201,1.18,0.798,0.264,0.764,0.764,0.952,0.618,1.357,2.427,0.3,2.669,3.629,5.401,1.156,1.253,2.01,0.367,3,6.492,1.465,1.733,1.5,0.75,0.454,1.511,1.059,1.206,1.247,1.132,0.832,3.24,1.112,1.867,3.263,1.917,1.917,1.451,1.924,1.746,1.288,1.301,1.355,1.198,1.434,1.299,1.422,0.526,1.268,1.945,2.987,1.922,1.486,1.725,1.287,1.269,2.743,0.199,4.982,4.476,1.684,1.463,1.072,1.324,1.46,1.505,0.382,3.265,5.111,4.751,2.71,0.285,2.918,1.515,2.307,1.935,2.089,1.916,2.38,2.552,1.672,0.231,1.91,1.937,2.109,1.741,1.919,2.08,1.737,2.094,1.386,0.303,2.117,2.55,2.562,3.673,3.362,2.9,0.675,1.593,1.671,1.956,2.081,1.359,1.936,1.76,1.289,1.314,0.796,0.488,1.267,1.313,1.295,1.288,1.251,1.501,1.863,1.957,1.772,1.257,1.498,2.175,0.847,0.177,7.023,3.545,2.702,0.671,0.424,2.076,2.542,1.554,2.628,3.181,2.076,4.264,2.328,0.281,1.606,1.999,1.474,1.23,1.729,2.032,1.654,1.519,0.633,3.216,1.271,2.591,2.126,4.036,1.488,1.837,1.517,1.778,1.52,2.063,1.972,1.797,2.623,4.984,1.048,2.056,1.352,1.362,1.243,2.067,2.014,1.531,1.525,1.539,2.445,2.316,3.131,3.076,4.085,3.963,3.994,4.28,2.546,2.526,1.958,2.764,3.657,1.254,1.297,1.435,1.738,1.936,1.518,1.71,3.174,3.207,3.849,2.105,1.701,2.565,2.513,2.603,5.185,5.068,3.633,2.798,1.739,1.473,1.87,1.748,2.229,2.136,2.468,3.898,5.42,3.416,1.275,1.276,0.657,0.684,1.616,1.227,1.897,2.424,1.188,6.522,0.002,0.603,0.178,0.918,6.259,3.319,3.74,2.276,2.001,2.298,2.902,2.531,4.115,0.397,0.419,3.943,2.465,4.251,1.101,1.07,1.209,1.883,0.986,0.91,0.945,5.966,0.406,2.778,1.669,2.26,2.834,3.057,2.262,2.725,2.195,1.006,1.436,1.725,0.028,1.784,3.3,3.441,5.354,1.621,2.259,2.828,4.505,5.008,8.268,3.342,3.941,3.447,3.837,2.808,2.657,4.561,3.107,2.424,2.723,2.338,2.871,3.234,2.369,2.669,1.106,3.833,4.598,2.111,3.194,1.266,5.405,4.182,0.69,0.873,1.368,5.524,7.079,2.647,1.796,1.574,1.403,1.188,1.257,5.383,5.502,5.389,2.109,1.622,1.932,1.606,1.306,2.234,1.675,0.514,1.442,1.913,1.377,1.504,2.068,2.451,1.769,1.204,1.397,1.424,1.081,1.288,1.568,1.537,1.588,2.372,1.891,1.438,1.58,2.093,2.19,1.935,1.705,1.807,2.778,1.587,1.752,3.912,3.863,3.675,2.511,2.088,2.017,2.079,2.102,2.322,0.387,2.183,8.27,2.308,2.259,1.826,2.418,2.005,2.137,1.738,1.82,1.38,1.422,1.533,1.558,1.536,1.581,1.767,2.036,4.707,1.431,1.89,1.562,1.543,1.519,1.305,1.605,1.718,1.551,1.329,1.732,2.922,3.04,1.559,3.813,3.016,1.617,3.306,3.638,1.929,2.266,2.004,1.521,1.503,1.559,1.513,3.17,3.998,6.97,2.057,1.924,2.117,2.961,2.952,2.383,1.458,2.073,1.269,1.838,1.028,1.187,7.151,1.787,2.2,1.788,2.134,1.502,1.643,1.816,2.131,4.603,0.006,0.63,0.088,2.107,4.083,1.691,0.036,2.459,2.345,3.248,1.34,0.545,6.513,1.82,1.052,0.752,4.345,1.193,3.758,2.387,2.519,1.683,1.028,2.27,5.048,0.389,5.206,1.543,0.712,0.198,1.385,0.813,1.433,1.229,1.577,1.12,1.132,1.273,2.582,1.445,3.456,3.748,3.481,6.154,1.962,0.689,3.248,7.771,2.873,3.443,2.96,2.613,2.469,1.233,1.498,1.768,1.974,0.9,3,0.636,0.521,1.572,1.172,3.035,1.072,1.389,1.863,1.751,1.735,1.601,1.467,1.396,4.868,1.633,2.52,1.062,0.031,2.629,3.257,3.193,2.1,1.768,2.639,1.357,4.464,1.368,2.736,1.418,5.674,11.15,3.6,2.62,0.069,8.934,2.223,1.299,1.414,1.413,1.557,2.447,1.237,1.519,2.046,3.129,2.467,3.226,4.273,2.966,2.003,2.755,0.003,2.565,2.796,3.19,3.07,3.249,6.953,9.161,3.218,3.22,0.717,2.08,0.815,1.909,2.341,1.808,5.329,2.717,2.249,0.619,1.533,1.839,1.936,2.26,7.348,2.126,0.474,2.834,1.719,2.341,2.091,1.741,2.226,2.688,1.531,2.781,1.051,3.951,3.556,1.898,1.562,0.468,1.615,1.516,1.878,1.492,1.544,1.374,1.016,1.646,1.907,1.246,1.332,0.965,2.864,1.835,1.717,1.44,1.582,0.827,2.99,2.571,1.739,2.018,1.53,2.274,2.202,2.095,2.256,1.456,1.561,2.042,2.303,2.35,1.306,1.361,1.154,1.206,1.284,1.375,1.406,1.41,1.405,1.404,1.177,1.728,1.731,1.725,1.437,1.443,1.439,18.241,1.895,8.372,9.728,13.367,5.723,0.202,5.847,2.43,5.76,2.324,1.592,2.247,2.567,5.211,2.365,2.764,1.897,0.802,0.897,1.482,1.28,1.72,2.34,1.606,1.55,3.196,2.152,0.767,3.328,1.678,2.568,3.686,0.353,2.045,2.314,1.536,0.85,0.889,1.441,1.526,1.548,1.353,0.767,0.72,1.877,1.529,1.619,3.921,1.601,1.619,1.666,1.471,2.169,1.755,1.471,1.398,1.299,1.051,1.339,1.558,2.256,2.102,2.567,3.154,0.268,9.335,4.052,0.884,2.162,0.997,1.177,4.522,0.273,1.068,0.744,2.538,2.963,0.824,0.074,1.54,4.078,3.411,2.408,1.505,1.29,1.376,1.322,1.916,1.562,1.546,1.717,1.34,2.369,1.77,1.677,1.659,2.227,1.392,3.359,2.919,2.978,2.928,2.932,2.647,2.64,2.07,1.615,1.381,1.303,1.27,1.002,1.525,0.863,1.176,1.499,2.808,2.566,0.783,1.762,1.291,1.315,1.468,1.526,1.404,1.27,1.739,1.41,1.287,1.398,1.417,1.373,1.335,1.64,1.632,2.597,0.33,3.402,3.3,1.768,4.477,1.133,2.782,2.093,1.229,1.214,1.962,1.668,1.361,3.437,2.317,2.362,2.499,2.379,3.356,2.294,1.29,3.443,2.22,0.891,1.379,1.654,1.211,2.009,0.95,0.034,1.053,1.507,1.246,1.139,3.369,3.049,1.756,0.523,1.152,2.732,2.243,1.924,1.376,1.736,2.333,0.467,8.543,0.752,3.813,3.171,0.727,1.675,2.09,2.004,1.767,2.363,2.273,2.165,1.886,5.37,4.88,2.47,0.319,1.756,1.93,1.146,1.83,0.974,1.189,0.971,1.549,1.421,1.468,1.472,0.804,0.796,0.868,0.797,1.238,1.409,1.104,0.167,0.258,0.475,0.285,0.782,0.992,1.151,0.804,0.68,0.93,1.222,1.709,3.071,3.105,4.218,2.882,1.394,1.499,1.741,1.428,1.341,1.113,0.944,0.988,0.924,1.026,0.885,0.95,0.911,1.083,0.861,0.956,0.857,1.115,1.084,0.915,0.941,1.002,0.74,0.976,1.303,1.401,1.615,1.113,1.247,2.198,1.32,1.911,2.68,2.837,3.037,0.902,2.261,1.855,1.024,1.201,1.199,2.199,1.091,1.09,1.744,1.521,0.367,2.523,5.136,2.61,2.679,2.437,2.599,3.972,3.795,4.231,5.079,5.1,7.014,3.482,1.553,2.93,0.428,6.583,5.139,5.279,5.425,2.629,3.347,2.008,3.863,3.471,3.315,2.626,1.765,1.568,2.418,2.021,2.837,2.614,1.818,1.557,3.669,2.178,2.187,2.398,2.594,2.177,3.141,3.505,3.975,5.881,2.701,3.277,5.273,4.457,4.172,3.968,1.934,1.786,2.694,2.18,2.606,2.69,2.632,4,4.446,2.04,2.166,1.989,2.455,2.19,2.676,1.942,2.368,1.904,1.783,1.527,1.512,2.206,2.582,1.798,1.817,3.546,2.171,1.681,5.417,4.008,1.793,3.641,0.3,2.558,2.169,2.663,5.416,4.379,2.598,5.29,3.136,5.275,5.025,3.504,1.824,1.938,1.457,1,0.984,1.94,1.285,1.35,1.347,1.246,1.3,1.329,0.899,0.82,1.954,1.31,2.597,4.774,4.619,3.878,3.183,1.913,2.554,2.976,1.471,1.284,1.724,1.941,1.273,1.506,1.44,1.068,2.134,1.451,1.236,1.465,1.61,1.185,1.482,1.597,2.122,1.785,1.442,1.652,1.765,1.465,1.581,2.354,1.605,1.6,2.088,0.953,1.721,1.964,1.966,2.419,2.439,3.564,1.367,2.771,6.257,0.943,2.629,0.926,1.107,1.745,1.522,1.038,2.089,1.728,2.093,1.688,1.955,1.245,1.934,2.638,2.36,1.879,1.472,2.307,1.302,2.226,1.023,3.274,3.663,3.269,3.213,1.808,1.841,2.714,1.441,1.696,1.529,1.523,2.544,2.517,2.259,1.285,3.077,1.884,3.777,2.155,3.066,2.213,7.76,3.272,2.824,3.391,3.462,1.152,4.486,1.837,1.881,1.819,2.323,4.116,2.985,2.361,4.386,0.857,0.891,3.324,1.416,1.604,1.947,4.64,0.56,1.864,1.098,1.61,1.188,2.281,1.555,1.675,1.87,1.061,2.918,2.348,3.032,3.055,2.538,1.469,1.925,2.158,1.948,2.672,2.581,1.999,3.067,3.158,2.468,2.218,2.523,2.538,2.49,3.034,3.472,7.922,2.636,0.855,3.073,3.181,1.839,1.647,1.318,3.432,3.139,3.254,1.854,1.987,1.675,3.469,4.899,5.377,3.236,3.913,6.39,6.306,12.055,1.414,2.326,1.369,1.462,1.607,1.558,1.753,1.358,1.693,2.687,2.298,2.24,1.863,2.376,1.196,1.454,1.26,1.215,1.077,1.248,0.854,1.564,1.449,1.888,1.919,1.893,1.399,1.69,1.308,1.911,2.344,1.481,2.495,1.23,1.889,3.592,3.124,2.614,4.595,0.793,1.583,2.308,3.769,2.028,2.355,3.947,1.68,2.467,3.133,2.669,1.695,1.88,1.862,2.057,2.531,1.761,1.339,1.21,1.94,1.595,2.141,2.506,2.799,1.199,3.39,3.624,4.149,2.173,0.288,1.847,1.249,1.931,1.919,1.926,1.846,2.266,4.369,4.554,6.578,6.172,8.66,8.293,2.272,1.888,2.503,2.571,0.473,0.328,1.971,2.023,3.147,3.282,1.537,2.643,2.431,1.93,1.333,1.284,0.904,2.531,1.805,1.486,1.282,1.35,1.926,3.689,3.283,5.875,0.325,3.066,5.575,0.479,3.982,3.455,2.206,4.824,3.572,0.407,2.291,2.775,1.913,1.62,3.265,2.104,2.138,2.104,2.338,2.092,2.613,1.581,1.867,2.149,2.13,2.081,2.101,3.471,3.532,3.526,2.262,2.897,0.385,2.014,1.89,3.809,4.668,2.796,2.871,3.385,2.395,3.36,5.212,2.475,2.323,3.035,2.997,4.727,4.559,4.059,3.224,0.805,2.866,2.943,3.711,3.712,3.301,2.907,0.547,1.75,0.996,0.784,1.545,1.865,2.171,2.009,1.962,2.765,1.689,2.75,2.82,3.695,3.967,4.384,1.951,1.945,2.616,2.176,1.999,2.322,3.208,2.853,2.58,6.466,3.869,3.254,1.291,1.296,2.413,1.369,0.869,1.443,1.19,1.264,1.43,3.017,5.798,3.792,1.239,1.053,1.69,1.322,1.203,1.821,2.643,3.433,3.181,3.858,7.747,3.864,4.421,7.706,2.745,1.354,1.345,2.645,3.018,2.656,3.497,3.43,5.023,5.209,1.956,2.618,2.644,3.549,2.976,3.056,3.161,3.185,2.346,1.921,1.512,0.918,1.588,1.806,1.504,3.187,2.183,2.008,3.171,3.971,1.285,11.3,3.268,3.914,4.629,4.798,7.1,0.992,3.004,3.072,3.294,2.444,1.576,1.946,1.735,1.836,1.315,1.394,1.928,1.765,0.933,2.38,1.164,2.387,1.763,3.78,4.115,1.25,1.735,1.939,2.208,5.233,5.3,7.311,0.74,8.934,7.751,2.539,3.284,1.74,1.96,2.392,0.032,3.278,6.377,6.916,5.441,3.9,0.842,3.497,4.218,6.187,5.23,3.161,2.216,2.591,1.816,1.195,2.377,1.803,1.515,1.54,1.064,4.715,4.693,9.258,0.859,4.784,7.457,2.796,4.198,4.875,1.269,0.514,1.211,4.754,13.821,9.918,7.307,7.014,6.832,3.753,3.643,1.223,1.406,2.014,3.781,4.25,1.683,3.217,4.272,7.111,0.104,0.258,1.309,1.971,2.91,7.645,12.396,21.484,4.885,7.294,2.643,2.727,2.105,3.059,3.006,2.731,3.17,1.718,1.748,1.486,2.125,2.509,2.971,3.127,3.741,4.939,8.751,3.093,3.876,1.688,1.25,2.666,2.937,3.538,2.741,2.791,3.883,5.885,0.865,1.503,1.02,1.136,1.23,0.861,0.866,1.07,0.915,0.815,1.266,1.792,1.942,2.181,1.737,0.733,0.913,1.48,1.099,0.884,0.828,2.224,0.989,0.973,1.35,1.36,1.363,1.894,2.235,2.422,1.791,2.836,6.589,7.303,1.098,10.576,1.578,1.975,2.055,2.672,1.369,1.476,2.146,4.259,3.826,2.146,1.588,0.979,3.015,3.854,5.398,3.438,6.086,4.402,4.469,3.996,1.809,2.322,3.634,4.378,0.314,5.841,3.481,2.1,1.85,2.48,2.637,6.458,0.242,2.751,3.175,3.731,2.912,2.703,1.866,2.306,3.931,6.716,6.329,0.873,2.678,3.318,2.85,1.975,4.971,17.109,19.42,0.459,9.212,9.667,2.506,2.031,2.325,2.367,1.246,5.365,4.351,1.994,2.235,0.982,1.818,3.723,2.873,1.194,5.313,6.377,13.361,5.951,0.455,13.286,19.509,9.887,4.895,4.812,1.852,1.363,6.432,1.049,1.923,4.416,4.325,5.577,1.37,5.92,0.664,5.917,4.18,4.159,0.084,4.206,2.03,2.31,3.038,3.075,3.68,3.875,4.28,0.463,5.47,5.859,4.575,6.195,4.645,9.887,14.66,0.631,0.663,3.239,6.282,5.392,7.592,0.328,0.908,7.024,7.849,0.525,3.188,11.11,1.901,4.159,5.33,8.324,11.474,4.186,1.883,2.026,8.431,2.904,2.945,0.455,1.227,1.266,1.84,1.002,4.793,6.21,3.847,4.791,1.479,3.658,3.842,0.713,0.676,0.563,1.199,2.498,1.303,1.488,0.284,0.431,1.069,2.228,1.691,1.728,1.747,1.545,1.631,1.65,2.548,2.374,2.124,1.902,2.043,2.338,2.855,1.082,3.727,1.576,2.396,3.966,5.032,6.1,3.276,0.999,1.004,1.551,1.335,1.11,1.735,1.282,1.616,1.617,1.407,1.405,1.406,1.406,1.403,1.407,1.406,1.406,1.403,1.407,1.404,1.407,1.406,1.406,1.405,1.404,1.408,1.404,1.406,1.407,1.611,5.109,0.783,1.283,3.742,1.342,3.348,6.432,4.178,1.496,5.81,6.402,6.401,6.996,9.943,9.958,5.096,10.78,5.738,5.767,5.676,6.801,0.641,12.564,3.635,2.467,4.592,6.524,6.008,1.067,2.464,6.518,0.095,4.808,6.688,5.994,1.549,4.055,6.559,8.435,10.686,7.15,5.848,6.301,4.783,3.645,1.354,3.614,3.663,2.091,1.892,1.533,2.617,2.976,1.446,2.035,1.283,2.522,2.728,3.898,2.528,2.125,1.89,1.926,1.535,1.654,1.15,1.568,1.334,3.214,3.074,3.003,6.379,5.008,3.403,1.076,1.377,8.123,3.454,3.323,3.933,1.533,3.044,1.97,2.889,2.027,2.554,4.195,2.346,2.522,0.319,1.285,1.876,2.019,1.876,1.358,2.028,2.654,2.119,1.86,2.751,2.754,2.467,2.508,4.748,3.423,9.715,2.897,2.869,2.455,2.363,2.744,2.2,2.343,2.27,2.544,2.694,1.8,2.214,2.193,1.368,3.469,2.767,4.296,5.36,4.182,3.195,2.624,3.26,3.223,3.198,3.317,3.304,3.234,3.255,4.955,4.118,2.122,2.457,2.582,2.627,2.531,2.076,3.163,4.653,2.563,2.119,1.778,2.327,4.604,3.819,4.47,7.598,7.616,6.043,4.098,2.652,2.636,2.648,2.645,2.648,2.646,2.646,2.648,2.646,2.648,2.646,2.183,11.889,1.199,12.99,1.268,2.316,7.575,2.566,1.855,1.656,3.111,2.682,4.083,8.128,3.826,3.264,4.908,4.949,3.119,3.207,3.609,2.757,0.918,1.239,3.834,4.215,4.304,6.974,6.954,2.942,2.005,0.805,2.604,1.36,1.312,2.339,1.793,1.207,1.811,2.552,0.17,4.599,6.119,6.456,2.012,2.311,1.324,5.639,2.373,4.948,2.533,6.181,1.281,1.26,3.482,0.635,3.367,3.653,6.146,4.493,6.245,4.737,8.596,5.833,10.745,5.039,5.226,0.838,3.557,13.487,10.081,5.06,3.472,4.982,0.908,3.635,0.708,1.862,1.889,1.783,1.533,1.896,2.093,1.917,1.972,1.882,1.483,1.539,1.707,1.371,1.366,2,1.663,1.902,2.569,2.473,1.675,0.953,2.575,2.542,1.164,1.026,1.085,1.495,1.634,1.633,3.002,2.605,2.69,2.359,1.866,2.701,2.921,2.476,0.975,1.788,1.837,2.023,3.869,1.803,2.538,3.059,2.455,3.743,1.057,3.049,1.657,0.662,0.207,1.953,5.169,0.357,0.616,0.145,4.861,3.603,2.657,3.905,2.801,5.493,4.858,2.305,3.05,3.02,6.118,6.168,3.395,3.253,2.014,1.609,1.275,2.973,1.806,1.799,1.902,1.918,2.383,2.317,1.299,1.776,1.918,1.826,2.943,2.516,3.688,4.136,2.71,4.47,5.759,0.045,2.176,3.08,12.061,3.742,0.947,6.856,10.709,4.66,4.489,0.32,0.318,0.25,2.797,8.543,9.098,0.832,0.757,7.129,1.989,3.792,4.998,6.621,2.139,3.836,2.951,1.951,6.244,4.293,4.305,6.549,6.66,2.309,5.841,3.932,5.92,1.82,3.637,1.498,5.581,4.695,2.205,2.501,2.143,0.492,0.902,2.733,1.381,1.241,0.949,0.141,1.33,1.723,1.78,1.51,1.176,1.789,2.157,0.639,1.948,0.914,0.765,0.494,1.618,1.68,1.528,2.428,1.584,2.75,1.253,1.915,1.724,1.355,3.496,4.407,2.063,2.379,1.979,2.606,0.035,1.287,2.383,0.046,0.763,1.94,2.449,1.943,3.822,3.503,0.399,1.818,3.934,1.15,1.596,2.587,1.2,1.34,1.531,1.266,1.427,1.448,5.791,1.783,1.699,2.583,1.99,1.276,2.045,2.311,1.126,1.9,1.155,1.375,1.972,3.74,3.299,3.15,3.852,4.866,1.473,3.215,1.996,4.315,2.835,1.503,2.791,0.026,3.026,3.1,1.176,1.757,1.946,1.908,1.906,0.848,1.758,1.806,1.213,0.796,0.077,2.693,0.486,0.086,1.933,1.34,0.559,0.08,1.341,2.046,10.941,3.42,2.708,1.857,1.236,1.35,1.975,3.842,2.785,1.879,0.74,0.207,2.157,2.082,2.538,2.724,3.419,1.6,4.729,2.246,2.312,1.176,1.929,2.074,2.352,3.162,4.78,5.052,3.021,0.096,4.426,4.925,9.567,5.383,3.692,7.47,0.65,4.231,2.441,3.709,1.732,9.563,1.012,3.051,1.645,0.595,0.631,0.594,0.685,0.846,1.597,8.008,1.139,0.875,0.751,0.639,0.639,0.672,0.974,0.844,0.943,0.589,0.57,1.059,1.689,4.018,2.302,1.323,1.198,3.181,1.4,2.777,0.9,0.368,2.634,2.869,5.318,3.802,4.306,3.53,4.462,3.01,1.833,1.166,2.39,2.089,1.31,3.225,2.721,1.577,1.726,1.735,0.225,1.287,1.819,1.259,0.784,0.924,0.967,1.415,1.285,1.361,1.408,2.524,1.992,1.379,3.324,3.734,0.277,0.391,2.82,4.737,4.704,5.244,5.305,5.867,4.753,5.537,17.814,0.52,1.167,1.139,2.329,2.452,1.1,1.264,1.273,0.928,2.441,4.428,2.952,1.596,3.128,5.892,3.785,5.381,0.408,1.299,6.732,6.972,10.114,1.455,8.202,7.057,7.149,2.622,2.599,5.28,1.963,2.4,0.691,2.291,2.472,0.946,2.705,3.859,4.94,7.24,2.287,3.629,1.484,4.811,1.627,1.616,1.215,4.75,0.594,0.52,0.659,3.079,4.637,2.181,2.071,1.436,0.947,0.724,1.044,1.048,0.837,0.866,0.838,0.914,1.124,1.159,1.093,1.073,1.386,1.162,0.921,0.957,1.16,1.648,1,1.17,0.282,1.21,1.074,0.858,0.974,0.389,0.383,2.108,1.109,0.456,3.215,2.665,1.731,1.414,2.541,3.308,2.336,2.037,1.436,1.529,2.956,0.981,1.335,3.862,4.699,3.08,1.336,2.03,1.963,2.144,4.19,1.88,1.791,2.689,2.368,2.033,1.011,2.82,2.807,3.859,3.812,1.383,9.034,0.616,3.756,3.89,3.828,0.687,4.936,1.412,5.183,5.328,2.411,2.658,5.583,3.145,3.528,3.439,4.094,3.117,3.484,5.485,0.941,4.178,0.841,2.017,1.384,6.544,6.476,2.044,5.873,1.136,4.927,2.239,3.139,1.555,1.593,0.952,1.02,1.245,1.243,1.244,1.242,1.244,1.246,1.243,1.247,1.242,1.243,1.245,1.244,1.246,1.243,1.222,1.25,1.247,1.255,1.241,1.243,1.849,2.254,3.289,1.941,3.102,2.232,2.246,2.246,2.202,1.845,1.819,2.928,4.225,2.847,5.064,4.269,5.605,2.19,0.774,2.711,1.391,1.295,2.155,0.514,1.048,2.176,1.098,2.655,1.429,2.857,2.771,2.134,2.089,1.356,4.188,4.163,3.534,5.549,9.574,6.488,6.054,3.059,0.167,4.17,2.845,4.073,3.505,2.722,2.482,5.519,4.568,5.785,3.923,3.973,0.545,5.352,5.374,1.49,1.823,2.632,3.315,6.979,5.982,5.243,6.72,4.417,1.497,5.115,3.451,0.546,3.368,3.679,5.377,3.279,3.385,4.281,4.843,3.977,8.952,5.007,3.948,3.962,3.106,2.78,2.303,2.458,2.734,2.001,2.291,3.019,2.88,3.102,1.414,1.338,1.984,1.971,1.833,1.858,2.623,0.647,1.333,0.924,1.096,0.763,0.404,1.377,1.38,1.379,1.379,1.379,1.38,1.377,1.381,1.378,1.379,1.378,1.381,1.379,1.378,1.566,1.591,3.144,4.418,2.293,4.602,2.261,2.949,4.141,2.751,2.373,6.392,5.233,5.539,8.822,8.235,2.094,3.369,0.248,3.126,1.764,1.116,1.855,1.828,2.048,0.651,1.742,1.471,0.311,0.787,1.553,1.213,2.034,1.644,1.455,1.543,1.128,1.393,1.516,1.64,1.781,2.075,1.644,2.073,2.558,1.446,0.744,2.905,2.096,2.262,2.393,3.754,4.162,3.507,1.871,2.327,1.364,1.631,1.972,1.842,1.934,2.281,1.799,2.257,1.186,2.581,1.858,1.635,2.157,0.257,2.66,0.775,0.98,2.951,3.045,2.358,1.785,1.637,2.942,2.317,2.071,2.578,1.818,1.913,2.208,1.398,3.881,3.561,6.133,11.216,8.145,6.912,11.195,6.695,8.473,0.277,1.156,7.617,10.018,1.305,0.418,5.462,5.282,5.549,5.709,4.385,4.165,4.994,3.87,2.746,2.613,3.055,3.293,4.172,4.134,8.73,2.558,2.141,2.928,1.741,0.803,0.988,0.993,0.977,0.963,1.441,1.656,1.9,1.692,2.249,3.808,5.32,1.177,1.038,1.005,0.965,1.153,1.028,0.959,0.842,1.051,1.34,2.097,10.542,9.295,7.055,0.819,6.56,2.783,5.861,3.792,3.021,2.926,4.056,5.323,6.35,1.316,6.309,6.19,3.469,1.732,0.028,2.551,1.941,2.632,2.759,3.014,2.818,1.225,1.338,2.543,3.894,2.703,1.21,2.079,1.71,3.034,3.02,1.434,3.207,2.734,3.343,2.239,2.414,3.282,2.23,2.321,1.489,1.768,3.231,1.98,2.723,2.558,2.509,2.419,3.457,4.978,1.784,1.461,3.302,3.338,4.114,4.216,8.167,4.641,4.911,7.034,2.61,3.841,3.209,3.627,0.494,3.24,3.304,3.726,3.968,3.297,3.729,5.23,2.133,1.922,0.605,3.889,0.877,1.015,0.988,3.374,7.324,1.502,1.887,2.078,4.793,3.16,3.3,2.3,4.466,5.179,3.406,1.834,2.27,2.091,1.964,1.87,1.772,1.978,2.065,4.641,4.719,2.042,4.878,6.396,5.973,0.56,2.928,3.034,3.255,3.197,2.838,4.976,4.36,4.843,4.829,10.464,17.347,6.753,6.744,5.982,6.011,0.865,1.933,3.182,3.128,6.274,3.739,3.594,2.092,3.112,2.933,2.1,2.484,2.959,2.683,1.914,1.319,0.582,6.713,2.881,3.925,3.487,3.29,4.308,4.327,3.036,6.8,3.664,4.337,3.72,5.542,8.291,5.656,7.22,2.884,2.508,1.758,3.116,4.382,0.217,2.863,1.662,4.677,6.598,2.591,3.91,6.555,8.413,1.978,4.918,0.658,6.734,7.09,13.776,13.631,4.932,4.053,4.845,2.895,3.789,4.058,2.329,2.472,4.095,4.05,3.625,4.534,4.425,4.44,4.104,4.843,2.112,2.609,2.596,4.301,3.42,5.959,1.892,3.346,3.082,3.254,3.902,1.501,3.788,3.143,3.038,5.519,4.211,4.127,2.865,3.99,4.665,4.393,7.639,4.905,4.568,3.842,4.266,3.142,7.801,17.191,6.24,1.145,2.699,0.849,0.744,1.342,2.719,0.72,2.137,2.291,0.988,1.518,3.989,6.287,6.382,5.684,3.167,2.836,3.791,3.775,3.288,3.116,2.925,3.266,3.592,3.384,3.479,2.442,1.88,2.113,2.474,2.88,2.57,1.801,3.401,3.478,2.597,3.402,2.356,5.005,5.605,3.212,5.487,6.418,2.513,2.591,5.528,5.416,5.843,4.754,9.018,4.491,0.431,4.607,9.935,11.893,14.891,3.537,2.554,0.406,1.982,2.288,3.623,0.022,2.037,2.876,2.038,1.927,2.564,4.279,2.629,2.077,2.315,3.054,4.984,3.497,4.771,1.45,3.892,4.073,2.451,6.414,5.597,4.788,5.581,5.316,7.308,8.103,8.93,2.93,7.206,7.657,6.367,7.076,2.045,4.402,4.46,6.18,5.222,1.964,4.449,7.006,8.236,6.436,5.862,6.66,5.127,6.578,1.386,4.74,1.578,3.765,5.056,5.089,2.505,2.422,2.391,2.283,5.071,3.66,3.729,3.448,3.334,1.104,3.489,2.638,2.13,1.663,4.772,2.259,1.686,1.887,2.037,2.419,2.595,3.225,0.537,2.852,3.945,6.354,4.815,4.817,4.391,4.307,4.935,5.118,6.287,6.197,3.776,2.367,6.375,3.585,3.401,5.007,3.03,2.676,2.421,3.038,7.306,2.693,3.3,4.761,2.034,2.843,2.58,2.685,2.668,2.996,3.308,3.381,3.863,4.454,4.527,3.145,3.699,3.723,3.65,2.951,3.194,2.91,3.237,3.059,3.083,3.712,4.049,5.068,2.453,3.004,4.808,4.504,2.464,2.555,4.129,3.201,2.908,3.116,2.978,3.879,4.194,0.081,3.104,4.127,5.095,6.652,7.782,0.515,5.717,0.953,8.156,4.629,8.881,6.849,6.547,3.599,3.387,6.254,2.734,2.156,3.309,5.442,3.301,3.855,3.679,5.003,4.2,3.705,3.297,3.453,3.897,5.924,0.836,2.246,3.227,2.016,1.248,4.144,4.083,2.562,3.073,4.241,4.279,2.833,1.979,2.283,1.795,1.854,3.032,2.609,3.027,3.675,3.619,2.261,2.423,4.247,3.037,3.007,2.656,2.836,3.04,3.032,3.021,2.024,3.027,3.67,4.026,2.411,2.443,2.013,2.837,4.245,4.242,4.259,4.869,3.22,2.41,2.264,1.811,2.011,2.266,2.418,1.95,0.483,3.025,2.049,3.006,2.831,2.662,1.594,1.426,2.428,2.829,3.153,3.619,3.651,2.629,2.849,1.399,2.21,1.836,3.17,2.473,3.615,1.737,2.275,3.005,1.779,2.064,1.996,2.061,2.45,1.705,1.361,2.536,1.254,2.444,2.891,2.573,2.846,2.427,3.033,3.377,1.803,1.695,2.238,2.839,2.592,2.66,6.233,3.191,1.209,2.317,2.578,2.891,2.699,1.494,1.854,3.181,2.066,1.714,1.229,1.143,1.315,1.773,3.948,2.413,1.254,1.441,1.705,2.921,2.213,4.333,1.532,1.453,1.386,1.114,0.968,0.413,1.277,3.234,1.801,2.173,3.083,2.016,2.646,1.243,0.817,1.257,0.882,1.447,2.348,3.071,2.962,1.59,2.447,1.955,0.818,1.549,1.192,1.045,2.287,2.294,2.122,4.523,1.295,2.644,1.209,1.305,1.471,2.193,1.974,2.1,0.941,0.847,3.344,3.551,2.028,0.697,2.693,2.479,2.612,2.861,5.011,0.903,2.592,2.28,2.287,0.272,1.393,1.566,1.727,0.488,2.713,1.112,1.491,1.437,2.384,2.301,1.042,1.401,3.744,3.124,2.004,2.031,3.328,2.656,1.464,1.271,3.345,2.677,2.701,5.895,4.744,2.627,2.051,1.364,1.127,3.88,1.156,4.822,1.151,1.773,1.591,1.862,1.718,1.266,2.885,2.713,1.148,0.314,3.877,0.939,1.483,1.267,1.162,6.554,1.192,3.358,2.532,0.752,1.087,3.377,1.928,6.673,1.263,1.514,3.232,2.617,1.896,1.913,2.568,5.024,2.112,1.407,0.844,4.184,4.149,2.225,2.061,1.275,11.521,1.25,0.83,2.186,1.217,0.973,0.704,6.085,1.576,3.086,1.595,3.521,0.059,2.09,1.242,2.4,0.707,0.882,0.785,1.113,0.452,1.641,1.12,0.654,1.963,4.452,1.277,1.03,3.086,3.185,1.155,1.848,3.977,4.179,1.421,0.676,2.036,2.637,4.551,5.06,2.499,2.932,1.024,1.8,0.449,1.841,1.912,0.613,1.244,0.715,1.234,3.747,1.206,2.997,2.974,5.637,2.012,0.595,0.668,2.18,1.44,0.747,1.275,0.552,0.514,0.919,0.714,1.28,0.689,0.713,0.482,0.417,0.856,3.01,2.713,2.078,1.442,1.88,2.837,3.04,1.604,1.683,1.229,9.985,0.563,1.074,1.451,3.321,0.911,0.801,0.774,0.783,0.779,0.77,0.83,2.091,0.783,1.391,1.859,1.289,0.914,5.864,2.193,2.604,1.937,3.018,3.823,1.194,1.289,0.44,0.852,1.049,0.798,0.901,2.049,1.893,1.855,2.378,2.068,3.031,1.274,0.88,0.871,0.87,1.375,0.833,0.82,0.831,0.816,4.468,0.679,0.695,0.692,0.688,0.344,0.848,2.088,0.857,0.873,0.328,1.746,2.42,1.248,2.152,1.691,0.953,2.041,4.914,3.484,1.152,2.278,1.135,1.76,1.965,0.905,0.324,0.412,0.721,1.184,1.61,1.94,1.607,0.479,0.478,0.876,1.341,1.28,1.416,1.913,1.107,0.498,0.443,0.854,0.842,0.635,0.664,0.906,1.218,0.594,0.637,0.558,9.904,0.863,0.628,0.497,0.864,0.744,5.798,1.012,0.855,1.038,1.238,3.107,5.254,1.634,8.303,15.856,16.369,28.557,7.59,27.305,1.371,19.553,7.548,6.793,4.451,6.09,2.156,0.838,8.078,2.347,3.479,2.949,5.297,3.417,6.906,1.484,0.561,0.384,8.234,10.863,2.347,3.126,3.123,4.502,3.206,0.537,0.926,2.251,0.651,3.31,2.588,1.766,4.008,1.709,3.456,1.285,0.72,1.978,0.916,0.817,4.277,1.309,2.055,2.534,1.789,2.991,2.746,5.735,0.348,0.574,5.668,4.061,1.35,8.273,4.626,4.516,3.754,3.816,1.737,2.309,0.93,1.33,1.696,1.658,1.412,2.408,3.335,2.599,1.241,0.592,1.102,1.713,0.26,1.71,1.003,3.637,2.999,1.714,1.639,2.566,2.603,2.551,2.097,2.711,2.584,3.741,4.255,1.433,4.255,1.057,4.575,5.22,8.488,7.295,7.056,0.974,0.833,1.082,1.036,1.387,1.588,1.701,2.714,2.586,5.26,6.012,9.894,7.084,2.575,2.474,8.183,1.594,3.529,0.764,2.884,1.607,2.574,1.568,1.369,1.813,2.371,4.217,7.581,3.251,2.626,3.176,2.722,2.09,2.108,1.687,3.238,4.095,0.705,4.355,3.93,3.966,10.084,5.978,3.259,2.704,5.163,8.609,5.934,4.764,3.203,1.885,6.04,4.36,5.533,0.408,0.077,2.483,0.995,0.523,2.658,1.483,1.743,1.22,3.289,1.317,2.687,5.309,1.631,1.342,3.138,2.62,5.423,7.195,7.768,13.34,6.654,7.046,3.746,5.059,2.562,1.845,1.595,1.402,0.974,4.104,3.303,1.747,1.758,5.861,5.553,2.794,2.692,1.317,0.799,3.154,6.651,0.394,5.166,5.311,5.873,1.076,5.875,1.086,6.687,6.704,8.851,8.944,13.781,5.302,5.278,4.219,3.192,3.249,1.333,1.163,3.076,2.45,2.342,3.867,2.386,2.601,2.597,4.811,3.328,3.257,3.486,3.301,5.691,4.259,5.552,3.339,3.321,4.798,5.089,2.202,1.051,2.198,4.037,4.002,6.918,3.316,1.994,4.396,4.188,2.61,7.481,2.267,0.381,1.194,4.587,0.297,1.186,3.865,3.14,3.028,2.112,0.933,2.714,1.891,1.801,4.949,4.922,4.699,0.073,0.248,1,1.152,4.62,1.123,2.145,3.977,3.744,3.741,3.395,3.491,8.356,4.705,3.842,1.707,4.002,3.965,4.347,4.054,4.043,4.052,4.039,1.238,6.862,6.213,6.568,1.627,0.884,6.443,6.805,0.855,11.744,14.538,4.531,0.918,12.994,23.041,1.023,21.199,9.939,14.286,0.963,5.718,5.648,6.361,4.011,6.404,4.371,4.368,2.353,6.138,4.866,6.576,1.404,6.06,5.336,5.624,7.877,5.232,3.711,7.885,4.067,4.866,7.136,7.95,4.74,6.238,8.29,2.768,4.66,1.899,3.756,4.29,4.145,2.229,5.38,4.518,3.352,3.549,4.358,3.459,3.513,4.077,0.997,1.957,2.497,2.692,2.733,1.781,1.598,2.229,2.17,2.413,2.708,2.218,2.432,2.5,2.955,4.188,0.965,2.356,2.103,2.086,2.262,1.375,0.147,2.466,4.018,2.309,3.957,3.301,2.487,2.119,2.529,2.646,3.993,2.763,2.536,3.595,3.604,4.094,3.765,2.254,2.162,1.015,1.48,1.752,2.088,2.13,1.939,2.013,3.138,3.941,2.577,2.736,1.188,1.893,4.577,2.69,3.297,3.221,3.389,3.407,7.243,1.105,6.818,3.403,6.806,6.03,2.862,8.748,1.688,5.229,7.494,8.2,6.664,1.061,6.517,3.159,4.705,6.843,5.219,7.095,10.094,1.668,3.449,7.088,10.476,0.396,0.905,6.494,1.633,2.932,6.564,3.542,0.069,3.645,1.225,1.512,4.404,4.455,1.141,4.505,2.833,2.229,7.568,1.068,1.919,2.609,2.412,3.105,3.373,4.182,4.357,4.201,3.583,4.476,0.963,2.58,4.591,3.158,3.21,5.324,3.207,8.768,0.982,4.889,7.387,5.169,11.408,3.617,0.705,1.129,1.549,0.369,3.723,9.671,2.001,2.426,1.24,5.723,3.237,6.65,2.749,3.281,1.345,1.531,1.47,2.937,2.25,2.475,1.429,0.986,2.195,1.888,1.346,1.045,1.777,1.697,1.881,1.904,2.211,1.525,2.024,2.172,4.267,3.859,7.141,1.008,14.758,8.976,8.479,11.888,11.248,8.962,0.195,7.734,5.889,3.438,0.514,2.924,6.934,7.741,3.692,3.652,2.198,2.032,1.81,1.855,1.86,1.946,2.312,1.941,1.433,1.488,2.502,0.625,1.574,1.732,1.979,1.613,1.295,2.47,2.893,2.753,2.542,1.637,5.346,5.311,3.383,1.875,1.164,4.047,2.826,1.273,1.807,2.343,2.166,1.588,1.303,2.027,1.819,1.801,1.91,1.893,1.553,2.415,2.246,2.037,1.852,1.849,1.724,1.836,1.764,1.646,3.078,0.771,5.529,6.754,4.358,2.627,2.197,2.269,2.329,2.385,3.208,2.631,1.786,2.468,2.14,1.592,1.736,1.948,1.083,1.743,1.923,2.013,1.877,2.897,2.354,1.865,1.693,2.241,1.882,1.421,2.099,1.631,1.58,0.113,1.058,1.343,1.284,1.67,1.836,0.937,1.438,1.455,1.719,1.742,1.046,1.303,1.299,1.27,1.183,1.672,1.643,1.261,1.509,1.552,5.445,1.639,1.413,1.465,1.591,1.225,1.443,1.632,1.738,1.392,1.614,1.473,0.999,1.515,1.628,1.204,1.252,1.317,1.523,1.928,1.119,0.882,1.282,1.384,1.721,1.911,1.204,2.283,2.865,0.361,4.25,2.28,2.161,1.733,2.921,1.615,0.459,1.783,1.779,4.51,2.007,0.881,3.296,2.421,0.678,2.057,0.951,1.876,2.521,2.591,0.989,1.095,2.111,3.309,3.31,2.643,0.937,1.752,2.482,2.202,0.502,2,2.106,2.849,3.027,4.897,1.707,4.457,4.143,4.324,4.981,5.236,11.574,1.039,2.576,1.115,2.497,1.853,1.81,2.323,2.41,1.122,1.307,1.899,1.896,1.997,2.933,3.204,2.786,1.029,1.936,1.736,1.247,1.307,1.529,1.6,1.486,1.52,1.985,2.3,2.321,1.398,1.421,2.889,2.912,6.418,2.943,5.548,4.089,4.03,2.959,2.467,1.404,1.223,2.802,1.815,2.301,2.042,2.345,1.857,1.849,0.943,0.518,0.562,1.948,1.899,2.455,2.408,2.542,2.46,1.075,1.084,2.938,1.671,1.795,2.088,6.059,5.583,1.867,4.037,1.781,2.52,2.612,2.518,0.682,0.501,1.245,3.066,3.073,0.782,4.085,6.179,2.944,2.353,3.676,2.061,1.897,1.219,1.788,1.39,1.948,1.679,0.663,0.719,2.893,2.665,1.544,1.508,0.912,2.012,0.041,1.649,1.801,1.555,2.067,2.414,2.628,1.145,1.11,1.732,2.572,2.162,1.469,0.736,1.358,1.347,2.831,0.93,1.443,1.68,2.364,0.729,1.859,1.037,1.319,1.569,1.784,2.24,1.689,2.329,1.133,2.132,0.568,0.712,0.756,0.893,0.779,0.075,0.886,0.946,0.853,0.813,0.797,1.657,2.649,2.27,1.513,1.589,1.513,1.047,1.429,1.072,1.243,1.395,1.206,1.579,2.795,2.735,2.591,3.315,2.613,0.943,1.226,1.111,1.755,1.826,1.551,1.23,2.015,1.301,1.238,0.56,0.779,1.277,1.38,1.394,1.117,1.433,0.922,1.022,1.399,1.123,1.266,1.992,1.321,1.242,0.642,0.611,1.389,1.1,1.048,1.35,1.357,1.106,1.396,1.544,1.392,2.597,2.604,3.371,1.855,2.403,1.173,1.253,1.371,1.294,1.408,1.274,1.443,1.396,1.017,0.928,1.052,1.029,0.99,0.851,0.708,0.998,1.683,1.52,0.995,1.83,1.372,1.361,1.637,2.215,0.301,1.515,4.161,2.108,0.467,2.19,1.264,1.73,1.604,0.45,1.353,1.464,1.258,0.726,1.388,0.806,0.373,1.842,1.305,1.241,1.198,1.979,1.978,2.147,1.284,0.696,2.308,1.499,1.445,0.921,1.719,2.513,2.095,1.504,1.789,3.65,1.849,1.798,4.443,2.217,3.76,0.738,0.793,3.356,3.197,0.595,1.101,3.99,3.743,1.006,0.761,1.419,2.412,1.091,4.261,1.06,3.488,2.905,1.792,2.372,1.464,1.571,1.195,1.285,1.82,0.434,0.791,0.891,0.901,0.637,0.815,1.238,1.184,1.468,1.371,1.426,1.955,3.209,3.256,1.96,2.231,1.076,0.752,1.987,4.489,4.506,9.555,1.542,0.742,2.244,4.665,2.926,2.752,1.224,0.546,1.916,1.873,1.138,0.708,2.783,2.41,6.116,5.666,5.202,4.61,3.908,4.297,7.255,3.38,5.77,3.264,2.331,2.469,2.658,3.445,2.124,2.305,1.595,2.148,2.451,1.582,2.02,2.236,1.94,0.826,1.038,2.089,1.603,1.723,1.721,1.399,2.721,1.068,1.201,1.682,1.995,2.32,2.66,3.377,3.779,2.378,2.306,3.283,3.872,4.102,2.457,2.094,4.806,4.18,3.993,1.643,0.372,2.552,2.538,1.779,1.44,2.223,4.723,4.718,3.72,1.61,3.805,4.002,3.122,2.598,2.924,1.391,1.808,11.071,1.229,5.293,0.824,7.738,1.317,1.213,2.435,1.764,2.097,2.196,1.89,2.249,2.526,2.019,3.604,3.659,3.463,2.412,2.533,3.879,4.143,2.592,2.289,0.355,1.297,2.031,1.527,2.422,1.803,2.061,0.359,1.308,1.229,0.959,1.369,1.969,2.861,2.445,2.849,2.797,2.131,1.733,1.973,1.451,0.519,0.818,1.69,1.625,2.497,4.704,2.529,3.266,4.882,2.743,0.058,3.873,6.189,8.513,6.824,3.403,8.598,4.344,2.052,4.174,3.635,2.946,3.961,2.398,2.554,4.571,3.007,3.135,1.359,4.038,2.331,1.898,1.945,2.19,2.305,1.277,3.098,1.399,1.096,1.535,5.759,3.233,1.943,2.259,2.749,3.701,4.316,6.493,3.859,0.529,1.121,4.134,1.984,2.996,10.354,6.46,5.069,1.852,1.903,1.915,1.619,1.653,1.657,1.386,1.704,1.587,1.691,1.394,1.553,1.302,1.806,1.321,2.084,11.114,10.331,1.933,2.35,1.669,3.482,1.874,2.077,3.107,2.618,2.84,2.797,2.102,2.111,3.975,2.467,0.654,1.734,5.838,10.182,20.557,3.689,1.674,0.867,1.175,1.221,1.908,1.525,1.355,0.934,0.89,0.944,1.581,1.504,1.397,1.191,1.41,1.351,1.778,1.835,1.886,1.812,2.037,1.073,0.966,1.196,1.445,1.273,1.128,0.901,1.393,1.344,2.243,6.102,3.67,15.62,0.566,9.789,5.645,1.555,0.676,6.48,13.543,12.822,1.473,8.16,11.514,3.76,5.218,0.24,2.539,1.625,1.786,1.25,1.183,2.638,2.437,2.315,0.815,1.819,2.184,7.028,2.653,3.938,0.142,2.693,2.362,2.031,2.026,2.084,3.413,7.936,2.484,6.599,3.593,4.824,3.572,3.322,4.101,10.306,11.133,9.6,9.865,5.52,3.155,2.864,5.029,3.972,3.783,4.141,5.054,7.754,3.093,2.298,1.335,1.971,1.766,1.734,2.397,2.767,2.133,2.681,2.503,2.879,2.17,2.966,3.202,7.473,1.95,2.761,2.702,2.547,2.57,2.131,2.17,2.964,2.074,2.299,2.953,2.921,39.282,2.802,2.6,2.02,2.527,4.146,7.306,2.368,2.519,2.649,8.849,4.325,2.883,4.327,4.534,3.412,3.704,4.129,2.939,4.104,0.988,2.242,2.18,2.305,2.279,1.509,2.351,1.971,1.56,1.154,1.838,1.977,3.888,2.643,5.868,2.07,2.421,3.917,3.832,5.333,3.341,0.672,1.845,8.071,3.828,4.112,3.862,2.595,2.16,2.358,3.502,2.452,0.172,4.13,3.018,3.025,3.068,3.057,5.477,5.734,8.731,5.756,2.421,2.46,3.601,2.56,3.164,2.9,1.094,2.04,2.194,2.514,0.221,4.076,2.167,0.441,6.039,0.557,1.865,1.275,14.994,9.649,3.624,5.529,5.441,1.806,3.576,4.236,4.362,1.211,2.751,9.829,3.929,3.928,4.966,4.619,2.743,2.808,4.389,2.732,2.983,4.747,4.992,5.419,9.51,2.684,2.611,2.539,2.578,2.52,2.188,1.746,1.076,2.302,2.179,2.743,2.787,2.594,2.418,2.494,2.47,3.359,3.106,3.006,2.598,2.944,2.924,2.299,2.418,1.763,2.061,1.375,1.714,2.034,2.209,0.305,2.811,2.861,3.218,3.195,7.311,1.932,0.785,6.891,3.008,3.004,4.616,4.86,3.8,3.82,6.487,6.884,7.002,4.669,4.759,5.938,5.762,5.686,7.862,7.858,7.767,11.65,0.033,5.477,5.646,1.039,0.318,9.415,6.226,6.084,5.799,5.837,1.518,1.525,3,6.066,4.436,4.961,4.122,4.328,8.519,2.767,2.677,3.131,3.063,2.813,2.818,2.901,3.863,6.618,3.577,2.519,2.521,1.977,2.068,4.06,2.775,2.703,2.357,0.761,1.496,3.78,3.189,2.968,2.198,2.167,2.144,1.252,2.303,2.428,2.868,2.142,2.803,2.986,1.014,2.395,2.871,2.496,1.011,3.696,4.172,3.346,1.468,1.271,2.69,2.285,3.967,3.892,4.227,3.124,2.892,4.013,2.811,5.048,1.729,0.634,4.024,4.029,2.915,2.177,5.152,4.12,3.725,3.375,14.79,8.61,3.386,3.343,1.072,2.12,2.056,4.122,6.376,6.831,4.128,4.138,3.913,5.531,5.098,3.9,3.804,3.009,5.442,5.099,5.111,4.406,3.377,2.765,3.093,3.4,3.642,3.001,4.45,2.577,2.514,1.643,1.607,1.425,2.089,3.401,2.776,4.017,2.132,2.085,4.102,2.033,3.253,0.416,0.504,1.558,4.045,1.093,1.507,4.002,2.065,2.383,3.231,3.174,3.791,3.187,3.501,3.235,3.383,11.855,5.178,3.654,3.391,0.938,6.151,2.199,2.195,5.449,2.787,3.294,2.139,1.382,6.941,0.285,2.657,4.465,2.699,4.996,2.82,2.406,4.361,1.88,0.605,7.278,13.89,2.088,5.894,3.762,2.948,2.778,1.978,1.984,1.562,2.936,2.791,1.465,2.104,2.005,4.206,4.268,4.876,5.463,8.706,3.735,2.188,2.928,3.017,2.334,1.914,1.759,2.119,2.211,2.964,3.211,2.586,1.746,0.656,1.782,1.968,2.114,0.92,1.535,1.552,2.633,1.959,2.168,1.618,2.537,2.819,2.565,2.032,3.544,7.217,5.017,4.692,2.627,2.217,4.037,3.283,2.332,1.283,0.61,0.272,0.363,4.222,1.687,1.967,1.741,1.858,1.7,1.714,1.655,1.654,1.926,1.921,2.652,2.889,2.264,1.592,9.781,4.602,3.565,7.804,1.687,1.718,2.076,1.112,0.995,1.281,2.822,3.345,2.643,1.885,5.063,1.873,1.766,1.841,1.814,2.013,6.313,2.092,2.319,2.318,2.576,3.589,1.48,1.508,2.529,1.819,1.122,2.266,1.32,1.29,7.937,1.491,1.896,1.939,2.572,2.703,7.69,1.693,1.64,2.15,2.106,1.95,2.456,2.045,6.149,2.626,1.536,1.581,2.335,2.402,1.898,1.916,2.698,2.767,1.957,2.233,1.854,1.873,6.129,2.304,1.809,1.812,1.868,1.769,2.726,7.879,6.573,1.979,1.922,1.997,2.354,2.256,2.905,2.625,3.887,2.8,0.956,26.424,1.302,1.406,1.837,2.591,2.018,1.656,1.978,2.361,3.511,11.809,2.115,2.566,2.313,2.197,1.679,2.982,3.358,18.671,3.257,3.592,1.93,2.18,4.187,3.207,3.577,1.424,1.83,1.936,3.655,2.501,3.059,3.039,3.043,2.901,2.55,2.55,1.731,1.746,2.831,2.712,2.789,2.793,2.798,1.314,2.208,2.856,4.189,0.833,1.921,2.731,7.348,1.496,1.634,3.085,2.762,3.684,3.343,1.841,1.918,2.318,0.437,1.029,1.475,1.361,1.245,1.533,1.382,1.727,2.284,0.381,1.831,1.017,1.015,0.976,0.933,1.364,1.759,2.164,13.088,2.198,2.221,2.719,1.952,1.884,1.677,1.712,1.783,1.817,1.562,1.55,3.348,3.753,3.684,2.075,1.155,1.065,1.561,1.306,1.476,1.195,1.178,1.463,1.371,1.123,0.698,0.814,0.763,0.959,5.064,2.534,1.333,0.894,1.479,1.324,1.343,1.522,1.538,1.017,2.141,1.461,9.496,3.902,4.289,2.824,4.687,5.885,3.77,3.6,4.614,0.492,3.955,3.727,9.922,2.692,2.704,2.633,2.56,2.52,2.162,2.754,0.634,2.129,7.813,1.82,1.393,1.803,1.447,2.028,2.375,2.518,2.327,2.174,2.176,1.018,3.714,2.249,2.166,8.664,13.72,4.448,2.739,2.42,3.659,2.074,9.199,3.311,2.538,3.816,2.604,2.73,1.835,3.959,4.055,0.849,4.393,2.433,2.867,2.805,3.326,2.603,2.773,11.431,12.875,1.044,0.588,11.596,1.211,2.207,1.789,3.138,1.901,1.99,1.636,1.671,0.236,1.679,1.817,1.481,1.86,1.515,1.516,4.874,1.775,1.761,1.839,1.77,1.785,2.336,2.291,1.997,2.203,2.495,6.28,1.946,1.719,2.207,2.549,2.208,2.107,9.902,2.151,2.082,1.887,2.475,2.52,1.309,2.806,2.692,1.687,1.322,0.261,1.93,1.772,2.744,19.389,4.34,2.186,2.53,2.551,20.745,2.309,3.016,3.153,1.869,2.839,2.442,3.275,2.873,3.131,2.18,1.991,2.859,2.622,2.017,2.345,1.872,2.016,3.115,6.007,2.041,2.454,4.225,7.461,0.868,0.693,0.982,0.793,19.054,3.445,3.774,3.838,7.523,5.899,1.57,3.385,3.97,0.001,5.864,4.593,2.208,6.239,16.354,5.54,1.193,1.33,4.469,8.366,12.634,3.518,3.258,4.73,0.513,8.411,6.489,6.468,16.846,3.829,3.607,4.343,27.108,5.325,3.819,2.553,3.057,3.505,2.765,3.068,2.559,2.349,2.738,0.313,4.265,2.914,2.731,3.018,3.037,10.115,6.124,4.213,3.707,4.772,10.151,2.35,2.803,3.853,2.691,2.697,2.052,1.841,2.301,1.528,1.189,6.415,2.259,2.324,2.03,2.342,0.453,1.887,3.381,2.552,2.105,3.332,3.173,2.373,2.454,3.4,2.204,2.861,2.176,1.962,2.614,5.083,1.846,1.985,3.112,3.565,2.006,6.233,2.405,2.178,2.708,2.21,0.968,1.111,1.707,2.321,0.404,1.568,1.486,1.947,1.988,2.705,1.416,1.965,1.77,1.789,1.579,1.814,1.765,2.383,7.557,7.853,1.679,1.717,1.688,1.275,1.292,2.027,1.585,2.116,1.948,2.233,1.87,1.741,1.19,2.147,1.891,1.801,2.047,1.61,0.998,0.998,2.019,2.036,1.402,2.067,2.225,1.797,2.011,1.091,1.789,14.281,6.418,1.486,4.649,1.946,2.928,2.863,2.861,1.681,2.461,2.143,2.641,1.677,2.161,2.496,2.812,2.911,9.182,3.736,3.684,2.233,1.171,1.291,2.465,3.331,2.085,9.568,3.442,3.488,7.377,5.291,3.055,4.594,7.542,10.189,1.756,2.608,2.452,3.072,1.934,2.491,2.027,1.878,1.647,4.155,6.799,1.97,1.424,2.229,1.572,1.038,0.949,1.487,1.478,1.627,1.634,2.24,2.549,3.069,1.362,1.375,2.168,2.182,1.74,1.88,1.772,1.76,4.074,2.22,2.171,2.169,2.214,2.169,2.181,2.116,1.882,1.756,1.676,2.439,2.796,2.576,1.463,1.771,0.241,0.007,1.544,1.196,0.651,1.844,1.996,1.998,3.987,4.114,0.609,2.174,1.317,1.29,1.711,1.525,1.193,1.847,1.634,1.982,2.213,1.917,1.265,1.935,3.187,6.359,3.349,3.795,2.035,2.48,1.808,1.737,1.746,1.76,1.738,1.738,2.537,2.222,1.454,0.012,0.84,2.202,2.125,1.94,2.302,0.734,0.014,0.48,2.52,5.964,0.292,1.402,1.686,1.57,0.344,1.446,8.348,1.912,1.719,1.189,1.137,1.286,1.679,1.817,0.985,1.786,0.898,2.001,1.479,4.148,2.575,1.822,1.666,1.405,0.674,1.632,1.776,1.839,1.793,1.777,1.643,2.166,1.437,1.828,1.594,1.363,0.582,1.311,1.231,1.488,1.416,1.599,1.608,1.551,1.691,1.877,1.438,0.434,1.473,1.955,1.566,1.775,1.706,1.705,2.099,1.728,1.987,1.847,1.286,1.654,1.716,1.705,1.742,12.602,3.435,2.06,2.522,1.956,1.934,1.991,1.358,1.709,1.887,2.602,1.462,1.968,2.026,2.08,1.583,1.49,2.136,10.17,0.406,2.954,1.616,1.534,2.088,1.371,1.618,9.543,4.195,13.869,1.649,1.546,1.622,1.625,1.31,1.374,2.426,0.615,1.85,3.261,2.473,5.793,2.434,2.364,2.18,2.23,2.261,2.462,2.44,6.76,3.018,2.47,1.501,1.394,1.388,1.747,2.572,6.536,2.432,2.16,1.963,1.784,2.548,1.378,2.46,2.329,1.506,0.541,1.279,2.001,1.747,6.249,3.225,1.433,2.729,1.52,2.226,9.021,1.699,19.076,2.656,3.657,0.434,11.676,3.914,2.2,2.642,3.742,1.23,3.504,2.536,9.776,3.103,2.561,1.581,2.987,6.488,2.006,2.074,2.019,2.48,1.862,2.556,5.574,4.305,2.213,2.087,1.433,1.286,1.947,1.589,1.296,1.697,1.478,1.387,1.586,1.481,16.717,2.834,1.836,2.285,1.908,2.241,1.626,2.942,11.229,1.624,1.251,2.317,2.668,2.052,1.859,7.575,1.729,2.702,3.734,3.456,2.582,2.275,3.685,3.726,20.867,3.289,3.105,3.135,2.553,3.219,1.779,2.766,12.794,2.985,1.397,1.479,1.133,1.877,1.855,2.211,1.956,2.072,7.455,2.508,1.411,1.628,1.538,2.106,1.821,1.178,1.474,1.702,1.647,1.855,1.857,2.111,1.581,1.532,17.984,3.101,2.399,2.209,2.287,1.67,1.892,1.744,6.245,0.995,14.781,0.414,15.628,2.367,1.667,1.579,2.082,1.921,1.785,2.056,1.999,10.219,2.286,2.323,1.552,2.454,1.817,12.977,1.426,8.297,10.12,2.698,1.61,1.776,0.013,1.849,1.682,1.504,1.433,1.536,1.394,2.04,1.582,2.213,2.403,9.96,2.47,1.62,1.333,1.281,2.24,2.071,1.228,1.519,1.909,1.657,1.656,1.91,2.019,1.45,1.085,1.673,1.267,1.952,1.52,9.1,0.879,9.912,3.564,2.732,2.24,2.231,3.304,2.507,2.907,3.61,2.564,2.553,2.468,2.794,2.775,2.689,1.912,2.129,1.75,6.74,18.646,2.535,1.763,1.674,1.759,1.77,2.126,1.432,1.516,1.537,1.377,1.723,1.447,1.114,0.969,1.525,1.718,1.683,1.533,1.256,1.568,0.889,0.945,1.678,1.524,2.325,4.45,1.731,1.434,1.444,1.715,1.616,1.076,1.09,1.463,1.473,2.016,1.776,1.265,1.768,1.796,1.808,1.488,1.526,1.705,5.558,5.112,18.616,1.991,1.112,1.076,1.503,1.446,1.676,1.373,1.266,1.172,1.401,2.067,1.171,1.224,1.365,1.245,1.27,1.53,1.518,1.993,1.401,1.369,1.729,2.818,3.17,2.063,1.661,1.476,1.746,2.119,1.761,1.433,3.244,9.58,20.921,1.902,7.796,8.941,5.155,4.523,2.141,2.148,14.23,10.349,5.814,2.233,1.91,0.239,1.572,1.733,3.46,1.949,1.796,1.431,1.427,1.753,1.746,1.093,4.389,0.257,2.617,16.074,4.16,0.642,1.266,1.406,2.68,1.646,1.635,1.639,1.66,3.025,2.195,2.101,2.105,2.051,2.116,2.013,5.836,1.816,2.035,2.598,16.765,10.44,1.024,4.941,3.754,3.045,4.389,2.454,6.638,3.37,2.094,2.342,1.782,2.075,1.711,1.633,2.03,1.398,1.618,2.024,2.258,1.472,17.088,2.422,1.714,1.617,1.414,1.867,1.786,2.458,2.404,2.332,0.978,5.744,1.93,2.535,2.716,1.227,1.008,1.214,2.119,1.911,1.803,1.954,1.633,1.835,2.836,8.808,14.3,4.352,2.061,3.288,2.726,2.534,3.551,16.015,1.761,1.316,22.288,21.929,0.402,7.068,3.695,3.467,2.896,2.898,2.391,2.497,3.008,3.894,2.236,1.834,1.815,2.472,2.684,2.498,9.805,3.187,2.434,2.352,3.025,2.149,0.496,1.058,1.866,0.027,2.003,3.02,1.869,1.738,2.384,1.972,2.42,2.305,2.385,2.699,2.688,2.787,2.318,2.471,3.484,9.863,4.199,2.596,2.668,3.34,16.583,14.442,23.942,2.625,1.839,1.725,3.101,1.639,1.812,2.99,2.379,3.283,14.504,4.113,3.758,2.289,3.94,5.4,5.101,3.165,3.863,2.466,4.564,3.243,4.874,3.126,3.052,2.449,2.904,3.789,13.014,11.882,1.242,3.826,1.856,1.831,5.446,3.213,3.203,3.806,0.133,3.779,2.796,2.852,2.906,3.561,3.327,1.422,0.883,3.128,2.863,4.731,3.091,2.14,5.124,2.68,2.794,7.325,33.025,0.637,3.033,3.131,2.305,2.207,2.094,2.374,1.811,2.611,2.146,3.153,2.257,2.267,12.582,0.238,2.057,2.073,2.759,3.085,4.288,7.671,3.567,1.872,1.748,12.869,4.308,4.174,3.573,14.072,2.999,3.533,4.93,0.396,3.02,2.023,12.078,5.234,2.715,2.373,1.658,1.389,1.275,1.337,2.131,3.529,2.698,2.665,4.942,3.21,4.529,2.288,5.013,2.785,14.68,5.462,3.905,5.218,10.464,10.425,3.462,2.615,4,4.018,2.868,3.828,3.577,5.111,4.673,4.203,4.089,3.841,4.099,3.977,3.958,14.24,5.397,2.744,1.05,1.651,1.537,2.688,1.957,2.099,3.17,7.269,2.816,1.211,4.47,2.455,2.213,3.532,2.398,2.407,2.75,2.701,3.07,0.445,1.641,2.555,4.209,2.427,2.544,2.568,3.574,3.98,12.217,2.207,2.78,3.469,3.44,3.066,3.032,3.033,0.055,3.999,3.623,5.432,7.629,4.821,3.791,3.283,2.32,2.536,2.222,3.005,11.146,3.496,2.847,3.22,1.584,1.535,2.928,2.797,2.565,2.651,3.243,1.593,1.607,1.514,2.233,2.135,4.176,0.527,3.506,1.962,1.795,1.679,2.06,2.132,2.217,2.233,2.009,2.222,2.62,2.877,5.761,3.103,3.104,2.455,2.792,2.525,2.126,0.973,1.744,4.073,1.801,1.188,1.223,16.386,7.251,3.205,3.208,12.018,4.491,3.693,3.882,2.866,2.858,2.713,2.688,2.443,3.39,1.284,1.653,1.977,1.693,2.358,3.709,2.251,0.784,0.806,0.965,1.069,0.883,2.639,1.104,0.515,0.691,0.532,0.677,0.832,1.018,1.068,0.855,0.859,0.81,0.853,1.356,1.343,1.065,2.637,2.673,5.793,0.07,1.377,0.756,0.813,0.812,0.964,0.938,0.799,0.921,0.944,1.099,0.82,0.84,1.121,2.847,1.251,1.926,0.57,0.741,0.79,1.022,5.668,1.02,1.24,1.677,2.679,1.482,2.113,1.689,1.228,2.44,2.913,2.379,1.826,2.38,2.795,1.379,1.617,1.708,0.016,1.49,1.75,1.71,1.768,1.651,2.825,3.643,2.229,2.185,2.382,4.066,3.41,2.076,3.047,2.789,3.313,3.451,0.313,3.668,3.346,3.446,3.355,3.284,24.979,1.338,1.495,1.733,1.526,1.739,1.094,1.14,2.33,2.261,2.44,2.405,1.666,1.794,1.292,1.527,1.383,1.245,1.434,2.766,1.625,1.862,1.602,4.097,16.461,1.903,3.227,3.727,3.405,2.757,2.092,1.581,0.371,1.229,1.653,1.693,1.774,1.714,1.819,1.178,1.248,0.219,1.118,1.804,2.256,5.497,3.004,4.184,1.996,2.259,1.045,2.374,2.506,1.939,1.886,2.269,3.764,2.766,1.75,1.642,1.39,1.779,2.183,3.174,2.671,2.286,3.878,1.76,2.474,0.406,0.914,1.027,5.355,3.872,4.217,7.016,3.627,6.152,4.64,5.476,4.772,2.18,0.875,2.098,0.438,4.828,4.815,3.824,3.064,4.842,3.867,1.458,1.177,7.146,7.437,4.002,18.286,16.443,12.207,12.856,10.109,8.681,0.298,9.903,10.296,2.965,21.769,13.505,2.68,6.609,6.715,8.253,13.544,7.528,6.579,7.371,12.133,7.357,2.371,3.461,4.015,5.861,4.757,5.334,6.179,3.187,7.761,8.518,10.342,8.243,9.987,5.691,3.991,5.249,3.78,2.539,2.668,1.155,0.264,1.709,2.77,6.411,11.482,1.278,7.784,11.088,9.936,9.684,8.598,4.888,10.297,8.678,10.305,11.467,14.246,5.489,4.694,3.964,4.014,4.559,1.067,1.879,7.128,3.876,5.206,0.092,4.577,6.185,4.819,6.475,6.051,7.279,6.316,6.314,5.028,4.591,6.435,6.339,5.482,7.762,6.47,6.584,7.37,8.175,7.441,6.537,0.777,7.932,5.467,7.284,8.18,2.949,2.469,5.678,2.648,1.16,2.587,3.669,1.12,1.481,2.525,6.566,5.553,5.811,4.859,5.348,4.454,4.386,5.581,4.116,3.66,0.371,3.153,4.948,8.734,7.278,4.253,0.281,5.15,3.677,5.336,4.644,2.285,1.664,2.254,2.76,3.663,3.523,4.621,7.589,8.027,0.758,5.485,5.328,3.857,3.654,6.092,8.766,3.834,3.773,0.637,0.956,3.159,3.035,3.96,3.376,2.342,3.679,3.108,4.486,4.537,5.765,0.883,6.216,9.14,24.382,0.321,17.432,3.597,4.54,0.331,4.329,4.327,4.629,3.919,3.782,3.783,3.152,2.811,4.633,0.469,3.612,3.645,2.579,2.578,0.84,2.397,2.342,3.12,1.856,4.441,4.366,4.696,4.518,4.644,5.815,6.655,7.554,3.864,5.585,5.342,5.535,10.374,7.877,6.539,5.633,5.4,0.531,1.023,7.955,6.125,6.528,7.739,7.503,4.955,0.341,6.921,7.406,6.027,5.373,3.296,4.591,8.574,7.044,1.344,6.077,7.928,9.298,8.042,4.872,2.729,4.707,5.127,5.854,5.682,3.399,0.961,7.013,2.053,3.573,9.22,6.66,12.932,13.164,7.693,10.424,0.311,12.027,0.746,5.246,1.577,5.464,5.724,5.097,6.403,4.892,5.352,4.075,6.946,6.844,7.065,5.834,11.608,0.703,1.551,3.886,2.824,1.841,5.502,6.189,4.436,2.066,3.808,6.649,4.396,8.374,6.937,2.328,13.136,7.511,2.387,2.847,2.971,5.025,5.708,4.668,10.745,1.581,7.078,5.679,2.614,2.13,2.121,3.602,4.461,3.639,4.095,3.954,3.69,3.841,4.481,12.268,1.903,5.416,6.586,6.265,5.71,7.381,6.465,4.92,2.933,3.555,2.858,3.388,3.086,4.264,3.663,7.62,6.874,3.524,4.279,4.104,2.654,6.344,8.914,0.028,6.077,0.464,5.438,6.02,3.118,4.343,10.785,5.572,3.827,2.793,3.372,3.635,4.517,4.396,4.558,6.152,29.654,1.721,1.408,4.172,4.771,3.695,3.658,4.842,4.243,4.939,4.583,1.563,0.621,1.903,2.907,4.267,0.851,1.849,3.682,1.299,1.549,5.501,7.359,73.938,11.33,2.371,6.975,6.45,4.032,6.291,8.815,3.949,5.129,7.614,6.4,7.284,3.371,10.618,9.383,4.677,3.623,3.03,4.858,3.382,20.458,7.208,0.898,0.133,5.628,6.632,7.111,5.613,0.891,5.467,4.127,4.411,4.288,2.907,5.842,4.563,3.676,3.582,5.054,11.895,7.838,3.779,5.663,3.819,5.457,3.51,3.562,5.469,3.496,5.173,12.877,3.347,4.189,3.749,5.256,3.967,4.553,9.366,0.382,3.537,1.204,3.197,8.455,4.647,2.059,5.539,3.257,7.736,2.779,2.781,3.501,3.466,7.37,6.743,1.098,11.801,2.172,7.916,10.765,8.092,7.567,1,0.063,8.3,10.246,9.663,6.863,6.377,3.759,4.325,4.344,5.394,7.123,0.328,3.643,6.585,5.59,6.401,5.074,6.423,2.652,0.625,0.856,0.818,0.897,0.277,0.452,0.723,0.699,0.675,0.798,0.593,0.573,0.705,0.782,0.651,0.728,0.946,0.826,0.652,0.862,0.709,0.618,0.876,0.704,0.815,0.692,0.772,0.716,1.788,1.473,2.412,0.851,16.136,2.167,1.832,1.362,2.565,1.745,1.977,1.373,1.672,1.031,1.05,1.573,1.656,2.279,2.339,1.536,8.143,2.418,1.276,1.376,1.419,1.458,2.002,0.902,1.573,1.655,1.716,1.602,0.883,0.917,0.881,1.6,1.564,1.251,1.122,1.17,0.926,1.537,1.256,1.194,1.629,1.427,0.543,1.728,1.612,1.82,1.02,0.913,3.451,3.727,4.565,2.461,5.534,0.621,0.891,1.89,1.995,0.125,6.232,3.487,1.774,3.969,0.871,1.35,1.516,0.125,0.352,1.015,2.064,1.311,6.329,5.815,4.848,4.728,7.956,5.748,3.969,5.567,8.148,8.272,3.664,3.256,2.722,2.655,6.622,5.657,6.229,1.273,0.021,3.833,2.849,2.546,0.104,3.198,3.177,3.346,3.563,2.198,2.091,2.58,3.517,2.94,5.648,4.876,0.674,0.069,1.65,1.232,0.082,1.196,2.321,2.345,1.544,2.182,1.105,0.964,1.868,1.237,2.751,2.339,1.888,0.955,0.122,2.808,1.887,1.914,2.813,2.057,2.034,2.179,1.025,1.068,4.201,7.032,6.893,5.899,5.766,3.801,2.887,4.083,11.013,4.932,0.208,3.659,3.041,3.856,5.207,0.861,2.668,2.815,3.938,2.416,2.724,2.876,3.201,3.554,3.535,7.159,7.618,7.176,4.017,3.989,5.557,4.422,2.979,1.727,0.075,3.035,4.226,6.683,18.665,10.163,5.055,3.171,1.68,3.444,3.246,2.922,3.381,2.878,2.84,2.675,2.208,2.287,2.587,2.282,1.987,1.711,2.299,2.609,1.167,2.148,2.232,2.027,2.992,2.506,2.334,4.607,2.363,6.606,2.046,1.284,1.348,1.63,1.046,1.367,1.465,3.252,2.854,2.7,2.665,8.121,3.515,3.593,4.058,3.194,2.745,4.277,3.563,3.354,6.082,6.25,7.765,9.575,4.175,4.517,5.914,29.613,3.903,5.076,2.758,4.475,1.875,4.127,4.695,4.177,0.028,3.46,4.235,2.627,2.245,2.742,1.634,10.002,1.262,2.842,4.321,5.431,6.797,6.512,6.698,21.069,3.204,3.145,3.612,3.3,2.187,2.263,3.596,3.117,4.466,10.722,1.761,0.336,1.239,2.468,2.509,2.946,2.714,2.879,2.656,3.052,2.276,2.16,1.956,1.951,3.045,3.228,1.969,0.25,2.322,2.165,3.154,8.894,2.248,2.146,1.8,1.822,3.274,4.497,17.217,63.429,3.575,3.434,4.564,2.652,3.418,3.384,4.227,2.794,3.578,3.5,4.216,4.073,4.078,19.013,1.57,0.602,4.272,8.003,4.127,4.1,4.252,4.009,24.039,3.237,0.66,4.979,5.038,3.082,0.308,3.293,3.034,3.401,4.217,4.383,4.502,9.863,3.781,3.892,3.734,3.936,4.177,5.379,5.038,5.214,3.464,9.972,4.253,4.214,5.984,14.826,3.426,4.83,2.86,2.929,3.048,3.072,3.182,3.173,6.609,4.372,5.945,8.352,2.804,3.194,3.549,3.663,2.051,3.174,3.43,4.207,2.197,2.48,3.937,3.42,2.735,0.359,3.089,3.281,5.049,2.512,0.716,0.797,1.186,0.787,1.846,2.22,1.798,2.358,2.73,1.362,1.366,2.022,1.579,1.534,1.489,1.561,1.476,1.362,1.522,1.636,1.65,1.449,1.368,1.449,33.095,1.976,1.468,1.413,1.004,2.781,2.756,1.271,1.244,1.722,3.481,5.116,5.353,2.224,2.861,2.206,2.447,2.66,1.67,1.429,2.182,2.231,2.567,2.634,1.803,1.538,1.471,1.854,1.163,1.459,1.109,1.487,1.485,1.817,1.481,1.465,1.209,1.316,1.164,1.449,1.543,1.49,1.803,2.229,1.829,1.47,1.219,1.288,1.263,1.373,1.118,1.12,1.105,1.169,2.605,2.624,1.367,1.252,1.238,1.245,1.05,1.036,1.012,0.038,1.084,1.149,1.163,1.092,1.03,1.7,1.496,1.733,1.581,1.426,1.577,2.817,5.695,5.757,1.464,1.499,1.397,1.38,1.479,1.46,1.854,1.726,2.619,1.295,1.313,1.113,1.136,1.086,1.135,1.973,1.99,3.462,1.808,1.731,1.548,1.768,2.182,1.265,1.476,1.074,1.011,1.129,1.074,1.501,1.474,2.117,6.083,1.976,2.026,1.496,1.482,1.298,1.323,1.445,1.366,0.955,0.988,3.4,3.444,1.995,2.257,1.157,1.145,1.849,1.839,2.749,3.333,1.82,1.849,2.182,2.261,1.493,1.537,14.251,1.273,1.282,2.575,1.243,1.311,1.356,1.27,1.849,1.838,2.214,7.768,7.713,2.404,2.387,2.462,2.352,1.877,1.801,2.66,3.177,2.044,13.921,1.695,1.65,2.9,2.957,1.641,1.668,1.673,1.649,12.122,12.096,1.505,0.859,2.02,1.091,1.117,1.082,1.125,1.469,1.146,1.222,1.269,1.322,1.246,1.848,1.823,1.851,1.807,1.74,1.951,1.729,0.949,0.917,1.551,1.477,0.208,1.411,1.655,1.797,0.867,0.039,1.425,4.536,0.027,0.525,14.387,3.286,0.384,0.039,3.999,1.962,0.039,6.906,7.242,15.518,9.213,1.679,3.052,3.107,2.449,3.386,3.208,3.041,2.031,3.084,2.681,1.504,0.027,0.361,1.576,0.027,2.16,11.303,0.759,3.107,1.608,2.054,1.975,1.263,4.404,4.07,3.166,2.845,2.779,0.621,2.245,1.553,1.702,1.579,1.64,0.842,1.106,2.128,4.451,2.465,0.602,3.267,3.207,3.129,1.949,2.298,3.874,3.713,2.929,4.313,0.031,1.231,0.054,5.715,1.54,1.421,1.328,7.344,0.919,1.004,0.941,0.884,1.097,1.233,3.439,1.424,0.911,0.674,0.7,0.667,0.841,0.848,0.689,0.754,0.801,0.676,0.699,0.527,0.525,0.49,0.713,0.911,1.492,1.636,1.621,2.566,2.155,1.691,1.818,1.487,1.649,1.361,1.078,0.85,0.83,0.753,0.876,0.611,0.786,0.588,0.693,0.792,0.819,0.714,0.694,0.698,0.795,0.717,0.751,1.957,0.674,0.708,0.478,0.736,0.538,0.58,0.628,0.639,3.47,1.491,2.029,2.051,1.631,1.889,2.643,3.712,0.961,2.584,2.018,2.385,2.104,0.906,4.203,22.87,3.544,2.059,2.104,2.06,2.137,1.428,1.484,1.522,1.614,4.814,5.126,2.884,1.496,1.754,1.755,1.68,1.496,2.512,2.496,2.432,3.067,1.954,1.725,1.684,3.177,4.949,13.949,2.895,2.486,2.873,2.89,2.174,2.236,4.248,1.792,2.171,4.256,2.668,2.745,2.552,2.429,11.164,0.152,1.89,5.638,2.812,1.568,2.482,2.187,2.602,2.408,4.768,5.152,2.942,3.303,4.188,4.211,5.117,5.17,5.762,5.717,5.552,1.63,3.923,5.065,6.925,6.931,3.897,4.012,4.956,4.06,4.062,0.807,8.308,10.519,7.952,6.714,8.265,5.571,4.378,4.852,2.856,2.379,2.439,1.988,3.238,2.15,1.45,1.605,2.925,2.836,1.714,2.336,3.22,3.703,1.969,3.297,2.058,2.337,3.69,2.85,2.487,6.169,3.741,1.134,5.888,2.527,2.37,3.127,3.38,3.061,4.274,3.629,1.654,4.176,2.453,2.455,4.141,2.895,3.438,2.488,2.495,2.431,2.454,3.339,3.292,2.02,2.202,3.967,2.46,0.872,1.629,6.534,0.003,2.934,3.161,2.991,1.06,2.216,1.337,1.217,1.358,12.37,13.427,15.452,5.899,5.835,3.702,3.565,3.471,3.229,2.612,2.626,5.321,1.727,1.964,1.936,1.913,1.922,1.518,1.516,1.814,1.79,4.552,1.931,1.978,3.447,3.071,1.898,2.112,2.498,1.904,2.205,1.21,1.237,1.175,1.222,1.848,0.456,2.155,2.195,1.421,2.588,1.477,1.634,1.733,1.636,1.618,1.791,1.61,1.56,1.824,1.844,1.933,2.045,2.476,2.404,2.395,2.122,2.361,2.316,2.201,1.983,2.025,2.069,2.824,2.835,13.3,3.441,3.497,3.355,3.319,2.381,2.409,3.223,3.076,6.225,2.917,0.925,3.532,3.812,3.687,7.324,7.373,1.713,1.026,0.497,0.517,0.564,0.574,0.565,0.568,1.144,1.077,0.575,0.705,0.713,0.742,0.732,0.688,0.739,0.727,0.441,0.283,6.238,2.514,2.106,0.849,0.726,0.688,0.64,0.629,0.468,0.417,0.645,0.512,0.066,0.82,0.9,3.525,1.759,0.44,0.44,0.439,0.436,0.449,0.442,0.444,0.433,0.447,0.439,0.441,0.448,0.438,0.444,0.435,0.446,0.442,0.435,0.445,0.441,0.442,0.445,0.881,0.884,3.538,0.878,0.71,0.168,0.436,0.437,0.433,0.441,0.435,0.431,0.702,0.571,0.63,0.6,0.579,0.588,0.617,0.456,0.466,0.554,0.563,0.577,0.574,0.635,0.44,0.484,0.429,0.76,1.453,1.371,1.473,0.762,0.912,0.813,0.813,1.628,1.639,1.642,6.571,4.785,9.809,1.805,1.689,0.014,0.689,0.396,0.396,0.389,0.4,0.399,0.39,0.397,0.398,0.402,0.395,0.397,0.402,0.795,5.407,2.086,0.992,3.021,1.568,0.791,0.782,0.391,0.389,0.394,0.392,0.391,0.391,0.367,0.348,0.308,1.402,0.799,0.766,1.578,1.576,3.108,3.156,3.124,3.156,1.567,0.778,0.773,0.789,0.782,0.775,0.778,0.785,0.775,0.784,0.777,0.763,0.781,0.781,0.775,0.784,0.769,0.773,0.792,0.785,1.563,1.57,1.959,0.617,2.931,3.161,1.591,1.573,1.576,1.584,1.581,1.582,1.578,1.579,1.417,1.726,3.159,3.184,1.577,1.578,0.79,0.791,0.393,0.395,0.394,0.397,0.396,0.398,0.399,0.4,0.378,0.398,0.413,0.393,0.396,0.392,0.391,0.406,0.394,0.391,0.403,0.396,0.398,0.403,0.395,0.397,0.407,0.394,0.394,0.397,0.395,0.397,0.395,0.393,0.393,0.41,0.408,0.396,0.39,0.404,0.401,0.392,0.389,0.803,0.799,1.562,1.824,1.254,0.698,0.413,0.413,0.389,0.407,0.405,0.403,0.403,0.811,0.792,0.98,0.751,0.799,0.834,0.805,0.806,0.825,0.817,1.631,3.272,0.795,0.828,0.805,0.815,0.815,0.831,1.625,6.527,0.861,2.305,15.062,1.61,1.611,0.801,0.801,0.803,1.625,0.801,0.827,1.043,0.027,1.19,0.71,0.71,1.44,1.407,1.433,1.434,1.421,1.435,1.518,2.553,3.187,5.742,5.735,2.857,1.434,8.586,1.429,1.435,1.422,1.443,1.422,1.448,1.413,1.432,1.441,1.421,1.159,0.272,5.742,5.717,5.709,2.874,2.866,2.874,2.864,2.866,2.866,2.861,0.714,0.716,0.713,0.705,0.713,0.73,0.699,0.714,0.716,0.723,0.707,0.718,0.708,0.727,0.709,0.708,0.718,0.715,0.712,0.699,0.722,0.678,0.748,0.718,0.716,0.712,0.713,0.714,0.724,0.728,0.721,0.709,0.707,0.727,0.714,0.707,0.721,0.728,0.702,0.723,0.708,0.713,0.718,0.718,0.72,0.711,0.724,0.696,0.734,0.713,0.696,0.715,0.726,0.736,0.69,0.595,0.119,0.724,1.345,1.2,1.294,1.704,1.662,0.826,0.835,0.822,0.886,0.788,0.812,0.82,0.832,0.804,0.814,0.825,0.829,0.81,0.831,0.824,0.854,0.872,0.828,1.042,0.709,0.809,0.821,0.808,0.82,0.804,0.809,0.811,0.81,0.811,0.768,0.811,0.812,0.823,0.799,6.491,1.618,0.812,0.812,0.805,0.807,0.815,0.808,0.809,0.804,0.815,0.88,3.385,6.467,3.261,3.229,6.453,1.638,0.806,0.807,0.816,0.811,0.791,0.842,0.819,0.81,0.804,0.816,0.805,0.823,0.805,0.817,0.812,0.815,0.855,0.816,0.81,0.81,0.809,0.822,0.81,0.798,0.821,0.818,0.811,0.808,0.801,0.815,0.813,0.822,0.858,0.86,0.87,0.81,0.81,3.295,2.831,0.409,1.628,0.817,0.806,9.648,0.543,3.297,3.218,1.632,1.595,0.794,0.8,0.809,0.795,0.799,0.801,0.792,0.799,0.802,0.791,0.81,0.804,0.79,0.811,0.79,0.803,0.796,0.8,0.792,0.795,0.812,0.803,0.795,0.804,0.794,0.811,0.792,0.812,0.805,0.802,0.8,3.222,1.606,2.425,2.793,1.615,1.606,0.596,0.623,0.802,0.607,0.985,0.819,1.604,1.61,1.609,0.813,0.798,0.805,0.805,0.809,0.802,0.802,0.8,0.802,0.804,0.804,0.806,0.842,0.84,0.806,0.825,0.814,0.812,0.81,0.812,1.622,1.635,1.62,1.599,1.619,1.628,1.6,1.633,1.614,1.617,1.624,1.632,1.605,3.233,3.232,3.228,3.219,3.225,1.61,0.38,1.234,1.611,1.613,3.216,3.387,4.687,6.61,1.569,1.594,0.796,0.807,0.781,0.813,0.814,4.688,0.816,0.734,0.72,0.718,0.724,0.725,0.719,0.717,0.724,0.725,0.717,0.719,0.717,0.718,0.722,0.72,0.725,0.723,0.722,0.723,0.71,0.728,0.712,0.744,0.714,0.724,0.777,0.783,0.82,0.721,0.717,0.72,0.716,0.721,0.721,0.714,0.74,0.733,0.731,0.73,0.732,0.746,0.744,1.477,1.469,1.546,5.862,2.931,0.733,0.731,0.744,0.738,0.765,0.766,0.759,0.757,0.786,0.73,0.719,0.73,0.72,0.723,0.741,0.731,0.756,0.705,0.737,0.727,0.749,0.738,0.481,0.648,0.738,0.737,0.772,0.806,0.783,0.727,0.615,0.103,0.717,0.724,0.726,0.716,0.737,0.718,0.726,0.731,0.728,0.727,0.364,0.363,0.738,0.728,0.735,0.727,0.75,0.742,0.736,0.764,0.788,0.73,0.796,0.722,0.718,0.72,0.728,0.718,0.724,0.719,0.724,0.726,0.719,0.731,0.778,0.582,0.839,0.728,0.715,0.729,0.723,0.719,0.725,0.728,0.724,0.728,0.726,0.737,0.73,0.736,0.722,0.736,0.722,0.739,0.728,0.735,0.767,0.765,0.829,0.732,0.718,1.451,2.886,0.835,4.966,2.899,0.715,5.816,5.839,10.193,0.681,0.065,2.52,0.566,7.36,3.179,6.102,0.094,1.3,0.838,0.84,0.743,0.743,0.871,0.87,0.795,0.799,1.293,30.738,0.949,0.782,0.778,0.764,0.765,0.783,0.814,0.808,0.809,0.808,0.807,0.698,0.7,0.78,0.78,0.783,0.782,0.796,0.798,1.561,3.172,3.07,0.742,2.441,0.25,2.923,14.682,3.159,1.414,4.855,1.584,0.788,0.879,0.786,0.788,0.792,0.782,0.788,0.79,0.792,0.789,0.79,0.774,0.787,0.792,0.793,0.783,0.781,12.563,0.787,0.768,0.782,0.776,0.788,0.783,0.782,0.789,0.79,0.779,0.778,0.782,0.791,0.775,0.779,0.793,0.773,0.783,0.784,0.774,0.787,0.786,0.542,0.243,0.801,0.765,0.777,0.775,0.622,0.955,0.806,0.75,0.778,0.788,0.784,0.789,0.782,0.786,0.784,0.784,0.774,0.784,0.787,0.78,0.785,0.789,0.779,0.785,0.788,0.775,0.784,0.792,0.779,0.78,0.794,0.796,0.794,0.784,0.788,6.301,3.145,3.154,0.792,0.794,0.782,0.792,0.792,0.794,0.785,0.788,0.79,0.791,0.791,0.787,0.788,0.788,0.789,0.791,0.793,0.784,0.783,0.801,0.801,0.779,0.781,0.795,0.796,0.791,0.792,0.783,0.786,0.781,0.156,0.626,0.795,0.796,0.789,0.79,0.788,0.789,0.801,0.802,0.783,0.786,6.307,5.152,1.816,3.435,3.203,1.053,0.758,0.136,2.328,0.05,1.361,1.514,0.125,3.293,3.434,4.187,5.778,1.462,1.451,1.493,1.452,1.452,1.437,1.452,1.438,1.443,1.451,1.45,1.451,1.442,1.445,1.45,1.444,1.448,1.447,1.451,1.441,1.454,1.489,1.451,1.492,1.54,1.434,2.877,2.69,1.424,1.42,1.427,1.425,0.718,0.707,0.714,0.719,0.719,0.611,0.098,0.713,0.721,0.713,0.719,0.731,0.721,0.707,0.724,0.713,0.71,0.711,0.718,0.71,0.721,0.724,0.721,0.314,0.42,0.723,0.713,0.72,0.713,0.726,0.732,0.704,0.721,0.755,0.724,0.767,0.778,0.714,0.711,0.718,0.71,0.711,0.712,0.71,0.711,0.712,0.71,0.72,0.72,0.716,0.715,0.729,2.87,2.871,1.436,1.436,1.427,1.422,1.545,0.969,0.715,0.712,0.71,0.705,0.721,0.719,0.723,0.699,0.718,0.725,0.716,0.708,0.728,0.716,0.719,0.723,0.718,0.717,0.717,0.716,0.717,1.438,1.433,1.436,0.723,0.724,0.712,0.71,0.729,0.72,0.716,0.726,0.706,0.721,0.724,0.735,11.882,11.532,11.698,11.523,1.444,0.719,0.726,0.73,0.718,0.713,0.726,0.72,0.727,0.716,0.736,0.716,0.717,0.734,0.991,0.822,0.73,0.72,0.735,0.706,0.718,0.728,0.716,0.728,0.76,0.726,0.776,0.792,0.721,0.719,0.715,0.726,0.72,0.715,0.718,0.713,0.728,0.719,0.717,0.716,0.725,0.721,0.715,0.725,0.716,0.72,0.724,0.715,0.249,0.543,0.776,0.774,0.788,0.774,0.781,0.777,0.78,0.785,0.775,0.783,0.785,0.784,0.784,0.782,0.778,0.781,62.446,1.651,4.293,3.92,9.337,17.557,6.267,10.16,0.871,2.27,3.684,3.365,3.123,1.56,0.782,0.78,0.785,0.788,0.805,0.803,0.779,0.83,0.878,0.778,0.779,0.785,0.782,0.785,0.786,0.78,0.782,0.785,0.784,0.782,0.782,0.789,0.775,0.784,0.782,0.782,0.786,0.777,0.778,0.787,0.783,0.783,0.787,0.786,1.567,1.574,3.103,0.905,2.264,3.124,0.788,0.785,0.829,0.782,0.831,0.87,0.77,0.782,0.784,0.762,0.788,0.779,0.771,0.772,0.779,0.778,0.779,0.765,0.777,0.777,0.78,0.778,0.78,0.777,0.783,0.783,0.78,0.779,0.788,0.789,0.784,0.781,0.776,0.785,0.767,0.776,0.779,1.58,3.115,1.555,1.154,0.431,1.555,1.613,1.078,2.551,6.051,1.842,3.45,3.445,2.474,1.574,0.005,2.844,13.77,1.448,1.446,0.719,0.719,0.724,0.718,0.726,0.723,0.733,0.71,0.725,0.721,0.701,0.732,0.718,0.725,0.72,0.719,0.718,0.732,0.723,0.722,0.724,0.724,0.723,0.725,0.726,0.721,0.72,0.727,0.725,0.724,0.724,0.725,0.722,0.725,0.725,0.728,0.726,0.725,0.722,0.725,0.72,0.729,0.724,0.725,0.721,0.745,0.742,0.75,0.747,0.773,0.769,0.722,0.717,0.725,0.72,0.723,0.718,0.724,0.724,0.718,0.716,0.728,0.727,1.437,1.457,1.43,1.449,1.461,1.435,1.461,1.433,1.428,1.457,1.45,0.723,0.73,0.709,0.735,0.74,0.705,0.738,0.716,0.728,0.733,0.727,0.708,0.74,0.718,0.723,0.722,0.737,0.715,0.735,0.722,0.726,0.724,0.727,0.717,0.741,0.711,0.731,0.719,0.718,0.735,0.717,0.721,0.726,0.735,0.725,0.718,0.727,0.733,0.729,0.718,0.713,0.732,0.724,0.718,0.713,0.738,0.729,0.721,0.659,0.804,0.738,0.724,0.719,0.727,0.724,0.725,0.716,0.725,0.729,0.724,0.726,0.717,0.721,0.717,0.733,0.717,0.725,0.725,0.723,1.446,11.854,2.885,1.442,3.143,0.727,2.769,1.449,1.83,1.466,1.454,1.46,1.535,1.553,2.883,2.887,1.44,1.441,1.447,1.46,1.44,1.452,1.458,1.428,1.45,1.434,1.439,1.437,2.882,2.87,2.876,3.056,3.45,2.888,1.437,1.432,1.436,1.443,1.449,2.891,2.882,0.332,16.275,11.551,5.771,5.777,2.877,1.438,1.459,0.724,0.724,0.723,0.71,0.719,0.741,0.719,0.715,0.717,0.706,0.752,0.692,0.724,0.725,0.726,0.716,0.72,0.721,0.726,0.725,0.722,0.714,0.716,0.734,0.722,0.727,0.709,0.729,0.719,1.432,1.446,1.441,2.891,1.435,1.463,1.426,0.731,0.718,1.455,1.467,1.191,1.329,1.443,1.08,1.465,1.451,1.43,1.437,1.458,1.412,1.489,1.447,1.436,1.44,1.432,0.734,0.74,0.755,0.716,0.735,0.723,0.725,0.718,0.718,0.726,0.725,0.72,0.721,0.725,0.724,0.716,0.778,0.704,0.723,0.822,0.714,0.723,0.723,0.723,0.723,1.436,1.452,1.448,1.45,1.444,1.458,1.443,1.444,2.603,2.994,5.791,2.877,2.89,2.884,6.429,0.094,2.896,2.896,1.43,1.481,1.455,1.436,1.538,1.446,1.437,1.071,1.448,1.439,1.444,1.444,1.443,1.443,1.44,1.442,1.443,1.441,1.442,1.442,1.442,1.448,1.443,1.437,1.447,1.443,1.445,1.445,1.433,1.449,1.443,1.433,1.456,1.437,1.446,2.163,1.442,1.441,1.427,1.456,10.955,8.54,3.111,5.527,24.52,1.439,1.447,0.721,0.719,0.721,0.721,0.721,0.735,1.425,1.443,1.445,1.484,1.437,1.452,1.439,1.442,1.486,1.528,1.438,1.435,0.494,0.944,1.416,1.457,1.435,1.447,1.435,1.436,1.454,1.415,1.473,1.44,1.419,1.457,1.436,1.431,1.461,1.437,1.454,1.438,5.769,1.253,2.078,1.677,1.662,5.668,3.419,3.971,2.529,1.394,1.706,1.641,1.639,1.642,1.81,1.454,1.654,1.636,1.637,1.639,1.884,0.941,1.037,0.827,0.819,0.804,0.825,0.821,0.879,0.32,1.121,0.708,0.72,0.734,0.722,0.718,0.722,0.732,0.706,0.725,0.73,0.726,0.715,0.717,0.734,0.723,0.721,0.727,0.712,0.729,0.72,0.714,0.724,0.724,0.714,1.433,0.725,0.725,0.717,0.717,0.722,0.72,0.72,0.736,0.715,0.709,0.734,0.717,0.717,0.722,0.73,0.731,0.719,0.72,0.721,0.72,0.703,1.458,4.352,10.112,13.367,0.716,0.719,0.72,0.73,0.729,0.729,0.72,0.721,0.729,0.718,0.727,0.726,0.718,0.727,0.728,0.723,0.724,0.726,0.724,0.724,0.73,0.715,0.715,0.728,0.165,0.556,0.729,0.725,0.72,0.723,0.72,0.734,0.75,0.726,0.726,0.72,0.768,0.589,0.589,0.717,0.727,0.72,0.719,0.714,0.721,0.717,0.719,0.719,0.719,0.72,0.711,0.72,0.714,0.716,0.716,0.714,0.713,0.729,0.713,0.734,0.713,0.716,0.728,0.709,0.707,0.743,0.722,0.719,0.727,0.714,0.721,0.714,0.715,0.604,0.11,1.449,1.435,3.617,3.622,7.966,2.126,1.443,0.732,0.614,1.901,0.722,0.714,0.715,0.722,0.723,0.709,0.712,0.726,0.727,0.718,0.719,0.715,0.719,0.721,0.732,0.716,0.716,0.717,0.722,0.717,0.729,0.717,0.716,0.729,0.711,0.713,0.737,0.702,0.721,0.721,0.717,0.717,0.72,0.724,0.567,0.161,2.882,4.33,1.441,0.718,0.721,0.717,0.716,0.709,0.708,0.725,0.724,0.705,0.718,0.717,0.713,0.713,0.727,0.72,0.72,0.719,0.714,0.712,0.708,0.721,0.722,0.732,0.713,0.712,0.717,0.717,0.709,0.717,0.716,0.718,0.719,0.718,0.711,0.725,0.726,0.713,0.714,0.713,0.711,0.733,0.714,1.424,0.713,0.721,0.719,0.099,0.617,0.718,0.714,0.714,0.723,0.723,0.717,0.715,0.724,0.721,0.721,0.722,0.712,0.717,0.718,0.729,0.712,0.708,0.727,0.721,0.717,0.715,0.731,0.727,0.723,0.9,0.552,0.708,0.721,0.721,0.727,0.719,0.721,0.714,0.718,0.716,0.719,0.734,0.732,0.192,0.529,0.721,0.856,0.63,0.353,0.425,1.135,6.318,10.64,1.554,1.364,0.724,0.723,0.722,0.72,0.721,0.728,0.719,0.725,0.724,0.84,0.715,0.727,0.722,0.727,0.712,0.722,0.719,0.72,0.745,0.72,0.718,0.734,0.715,0.72,0.721,0.74,0.712,0.744,0.721,0.716,0.717,0.727,0.721,1.443,17.298,9.76,1.439,0.725,0.718,0.718,0.731,0.727,0.721,0.723,0.722,0.726,0.718,0.733,0.716,0.714,0.725,0.726,0.721,0.717,0.723,0.73,0.719,0.733,0.709,0.726,0.724,0.73,0.941,0.522,0.73,0.723,0.722,0.721,0.726,0.719,0.718,0.73,0.728,0.709,0.722,0.737,0.706,0.736,0.708,0.737,0.728,0.713,0.729,0.715,0.726,0.729,0.733,0.711,0.73,0.724,0.718,0.737,0.722,0.722,0.73,0.72,1.538,51.108,12.991,23.075,8.317,0.315,1.434,1.434,1.456,4.304,2.162,2.039,2.673,1.803,2.887,1.446,1.45,1.438,1.434,1.448,1.445,1.42,1.445,1.453,1.443,1.442,1.479,1.459,1.456,9.454,5.785,3.552,9.365,9.424,4.339,2.896,2.898,4.345,4.336,8.664,2.094,0.792,2.893,2.889,1.45,1.449,0.715,0.716,0.719,0.718,0.728,0.707,0.49,0.242,0.723,0.727,0.725,0.726,0.726,0.723,0.726,0.725,0.524,0.201,0.744,0.745,0.726,0.748,0.746,0.754,0.756,0.716,0.723,0.727,0.719,0.723,0.712,0.719,0.717,0.727,0.728,0.705,0.722,0.724,0.715,0.715,0.726,0.724,0.717,0.719,0.726,0.724,0.726,0.724,0.718,0.717,0.713,0.741,0.72,0.721,0.714,0.722,0.728,0.729,1.444,4.385,16.858,10.38,10.403,0.417,5.778,5.764,2.914,2.352,3.788,5.804,5.773,1.465,1.444,1.44,1.45,1.447,2.14,1.082,10.57,0.898,0.037,1.692,0.865,0.837,0.85,0.859,0.856,0.853,0.858,0.853,0.853,0.853,0.859,5.747,8.805,13.292,0.827,0.858,0.853,0.862,0.856,0.864,0.861,0.853,0.858,0.859,0.874,0.845,0.855,0.863,0.866,0.803,0.031,0.883,0.795,0.991,0.957,0.965,0.963,0.94,0.966,0.951,0.473,0.502,0.955,0.933,0.373,0.074,1.492,0.96,0.997,0.233,0.741,0.968,0.488,0.483,0.488,0.489,0.485,0.488,0.485,0.484,0.485,0.481,0.496,0.492,0.493,0.487,1.963,2.442,1.533,2.017,2.03,0.506,0.504,0.504,0.507,0.504,0.72,0.31,0.515,0.515,0.518,0.515,0.751,0.802,0.528,0.517,0.516,0.521,0.515,0.522,0.519,0.521,0.515,0.529,0.517,0.52,0.519,0.521,0.52,0.514,0.518,0.524,0.523,0.537,0.523,0.528,0.538,0.537,0.53,0.528,0.526,0.528,0.532,0.531,0.531,0.531,0.532,0.533,0.531,0.532,0.458,0.529,0.461,0.069,0.535,0.536,1.055,1.055,1.056,7.626,0.587,4.426,6.835,1.134,1.138,1.339,0.887,0.987,0.806,1.111,0.882,2.414,1.403,2.17,1.463,0.948,1.942,1.96,1.978,3.879,2.014,1.955,1.961,1.953,1.959,1.961,1.962,1.959,1.965,1.964,2.071,1.906,1.903,1.966,1.964,1.956,1.955,1.948,1.967,1.965,1.964,1.961,1.954,1.957,1.947,1.971,1.982,1.958,1.962,1.973,1.927,2.572,1.465,2.052,2.056,2.106,2.017,2.108,2.046,2.055,2.103,2.035,2.093,2.035,2.063,2.09,2.071,2.093,2.061,2.103,17.072,0.215,16.304,4.149,2.072,2.07,2.069,2.067,2.076,2.066,2.051,2.048,2.072,2.041,2.116,2.031,0.749,0.844,0.223,1.844,2.057,2.072,2.077,2.071,2.066,2.075,2.212,1.774,1.96,1.902,1.866,1.971,1.935,1.932,1.939,1.912,0.816,1.09,1.91,1.888,1.903,1.854,1.78,0.113,1.881,1.889,1.885,2.068,3.672,1.892,1.881,1.903,2.214,1.974,1.867,1.882,1.897,1.863,1.944,0.004,1.665,1.894,0.947,0.948,0.932,0.93,1.882,1.875,1.889,1.876,1.877,1.879,1.949,1.934,1.87,1.883,1.894,1.875,1.876,1.909,1.858,1.883,3.765,3.763,3.786,1.88,1.886,1.873,1.878,1.865,1.884,2.044,1.897,1.879,1.894,1.904,0.945,0.943,0.946,0.94,0.617,0.331,0.943,0.871,0.075,0.93,0.957,0.909,2.06,2.035,2.039,1.676,0.347,2.041,1.644,0.195,2.221,2.011,1.992,2.015,2.038,1.979,1.999,2.022,1.991,2.02,2.015,2.078,2.03,2.021,2.017,2.021,0.995,1.013,1.017,1.018,1.888,1.89,2.024,2.016,2.012,1.089,0.894,2.07,2.019,2.019,2.025,5.052,4.039,4.05,1.91,2.017,2.016,2.019,2.018,2.013,2.026,2.021,2.017,2.004,2.03,2.022,2.73,2.207,2.814,2.647,1.164,8.234,1.59,4.46,4.061,2.006,2.324,1.276,0.742,0.987,1.022,2.013,0.996,0.996,1.004,1.009,1.03,1.03,2.022,2.023,2.067,1.977,2.012,2.113,2.053,1.989,2.265,0.856,2.98,4.004,4.814,4.074,0.976,0.98,0.974,0.982,0.981,1.015,0.961,0.996,0.964,0.967,0.966,0.969,0.957,0.984,0.964,0.935,0.991,1.013,0.867,0.121,0.832,0.937,0.942,0.933,0.927,0.911,0.957,0.931,0.957,0.921,0.912,0.929,0.941,0.635,0.288,0.922,0.946,0.945,0.911,0.932,0.951,0.927,0.933,0.924,0.926,0.924,0.933,0.921,0.935,0.938,0.896,0.932,0.923,0.907,0.923,0.961,0.922,0.929,0.921,0.95,0.913,0.944,0.927,0.922,0.944,0.926,0.75,0.162,0.963,0.881,0.943,0.922,0.945,0.923,0.923,1.837,1.837,0.299,1.549,1.846,2.036,1.482,1.637,1.626,0.809,0.81,0.819,0.815,0.814,0.809,0.805,0.807,0.807,0.828,0.827,0.802,0.801,0.807,0.809,0.819,0.819,0.8,0.799,0.809,0.806,0.827,0.825,0.818,0.82,0.792,0.792,0.792,0.811,0.811,1.623,0.779,0.821,0.801,0.799,0.806,0.806,0.821,0.793,0.793,0.808,0.811,0.811,0.812,0.796,0.794,0.809,0.798,0.8,1.599,1.605,1.605,1.587,1.594,1.592,12.968,2.315,10.532,13.141,3.295,3.296,1.62,1.621,1.62,1.627,1.614,1.604,1.602,1.61,1.613,1.597,1.597,1.624,1.634,1.603,1.602,1.617,1.625,1.611,1.628,0.463,0.25,0.906,1.619,0.237,0.188,1.187,1.632,1.631,0.811,0.802,1.623,1.596,1.683,1.644,1.333,3.235,2.732,2.746,1.064,1.109,3.307,2.734,2.738,2.709,2.733,2.689,2.735,2.736,2.732,2.704,2.722,2.746,2.716,2.722,2.744,2.711,2.72,2.768,2.71,2.739,2.742,2.717,2.762,2.794,2.767,2.761,2.743,2.777,2.768,2.767,2.769,2.786,2.754,2.762,2.697,2.684,2.696,2.744,2.689,2.733,2.708,2.716,2.694,2.687,2.665,2.636,2.655,2.658,2.661,5.317,4.376,6.362,2.68,2.681,2.684,20.579,0.838,10.772,10.755,3.066,7.674,2.706,2.707,2.66,2.709,2.699,2.705,2.676,2.664,2.67,2.661,2.681,2.684,2.664,2.661,2.663,2.684,2.685,2.677,2.673,2.658,2.663,2.668,2.687,2.682,2.691,2.69,2.661,2.682,2.681,2.684,2.62,2.689,2.679,2.679,5.254,1.706,3.225,9.074,3.057,1.569,3.156,1.571,1.571,1.577,1.578,1.576,1.581,1.578,1.569,1.581,1.587,0.456,1.129,1.572,1.556,1.582,1.572,1.576,0.774,0.792,1.572,1.574,1.564,1.572,1.578,1.58,1.576,1.571,1.607,1.592,1.627,1.607,1.608,1.617,1.618,1.603,1.599,1.61,1.611,1.605,3.187,6.317,18.958,2.983,0.73,1.868,0.652,1.57,1.57,1.571,1.54,1.54,1.579,1.177,2.021,1.606,1.58,1.611,1.606,1.575,1.557,1.553,1.579,1.585,1.619,1.618,1.556,1.582,1.555,1.557,1.559,1.557,1.558,1.548,1.552,1.559,1.564,1.559,1.559,1.56,3.128,1.065,2.056,6.403,1.96,3.633,0.754,6.512,6.492,1.649,1.611,1.688,1.64,1.645,0.676,1.08,1.584,1.613,1.606,1.57,1.635,1.601,1.605,1.579,1.581,1.59,1.579,1.571,1.578,1.578,1.571,1.581,1.575,1.57,1.602,1.599,1.605,1.575,1.599,1.604,1.578,1.61,1.597,1.582,1.507,1.624,1.65,1.648,1.217,0.385,1.453,1.463,1.464,1.468,1.465,1.468,1.469,5.825,5.801,5.826,11.538,5.752,5.773,5.395,0.376,5.778,5.808,1.452,1.453,1.442,1.443,1.437,1.458,2.884,1.455,1.456,1.445,1.446,1.445,1.442,1.443,1.45,1.444,1.464,1.461,1.461,1.461,1.452,1.461,1.442,1.458,1.459,1.447,1.445,1.463,1.443,1.455,1.458,1.444,1.456,1.445,1.464,1.455,1.451,1.45,1.451,1.453,1.449,1.004,0.441,1.458,1.474,1.455,1.454,1.462,1.462,1.459,2.92,2.912,7.872,3.772,2.924,1.448,1.359,1.557,1.461,1.451,1.452,1.454,1.456,1.449,1.461,1.443,1.437,1.453,1.437,1.448,1.446,1.447,1.441,1.438,1.448,1.444,1.444,1.453,0.93,0.309,0.379,1.581,1.582,1.583,1.567,1.582,1.584,3.247,2.533,2.683,2.672,2.7,2.676,2.663,2.697,2.69,2.661,2.686,2.703,2.616,0.107,5.292,10.71,8.954,0.937,2.887,1.442,1.444,1.452,1.442,1.453,1.455,1.457,1.458,1.45,1.476,1.448,1.457,1.455,1.46,1.455,1.456,1.458,1.45,1.448,1.469,1.461,1.462,2.917,1.448,1.45,1.451,1.453,1.449,1.452,1.442,1.455,1.442,1.468,1.452,1.452,1.456,1.451,1.452,1.454,1.454,1.454,1.452,1.45,1.445,1.447,2.935,5.871,2.941,2.942,1.474,1.473,1.473,1.458,0.448,1.148,1.568,1.593,1.591,1.582,0.942,0.675,1.595,1.594,1.595,1.608,1.588,1.595,1.585,1.599,1.584,1.576,0.818,2.148,2.869,2.845,2.915,5.769,5.762,1.444,1.446,1.46,1.445,1.465,1.447,1.449,1.46,1.464,1.449,1.459,1.461,1.456,1.457,0.711,0.742,1.459,1.454,1.457,1.452,1.456,1.46,1.441,1.441,1.456,1.458,1.454,1.458,1.449,1.467,1.451,1.455,1.451,1.454,1.464,2.882,5.793,2.896,2.916,1.455,1.455,1.452,1.457,1.451,1.456,1.457,1.46,1.443,1.457,1.454,1.458,1.463,1.451,1.453,1.453,1.456,1.463,1.469,1.458,1.461,1.446,1.449,1.465,1.452,1.447,1.455,1.454,1.451,1.447,1.453,1.464,1.456,1.455,1.446,1.458,1.442,1.469,11.658,5.83,2.917,0.965,0.488,1.463,1.451,1.451,1.463,1.452,1.457,1.455,1.457,1.464,1.457,1.462,1.456,1.47,1.469,1.447,1.46,1.459,1.45,1.461,1.464,1.457,1.46,1.458,1.463,1.463,1.456,5.547,5.446,5.795,2.918,1.467,1.45,2.961,2.913,1.453,1.458,1.437,1.457,1.45,1.466,1.449,1.456,1.442,1.447,1.457,0.48,0.974,1.454,1.452,1.462,1.463,1.454,1.456,1.454,1.453,1.463,1.448,1.434,1.476,1.446,1.457,1.45,1.448,1.464,1.445,1.455,1.456,1.455,1.455,1.456,1.453,1.454,1.458,1.441,1.466,1.449,1.452,1.469,0.366,1.081,0.083,1.383,0.527,1.019,1.588,1.586,1.59,1.587,1.595,1.593,3.186,6.342,4.998,2.343,1.453,1.461,1.45,1.452,1.46,1.454,1.448,1.453,1.455,1.463,1.45,1.457,1.45,1.433,1.48,1.446,1.452,1.462,1.446,1.452,1.464,1.462,1.466,1.454,1.46,2.913,2.931,2.944,3.004,1.477,1.49,1.482,1.484,1.488,1.486,1.489,1.485,1.491,1.483,1.513,1.508,1.524,1.509,1.52,1.52,1.539,1.442,1.422,1.421,1.42,1.401,1.393,1.405,1.41,1.412,1.416,1.411,1.411,1.404,1.406,1.411,2.477,0.356,5.637,1.411,1.41,1.409,1.407,1.413,1.41,1.414,1.41,1.411,1.39,1.33,1.412,1.406,1.396,1.41,0.332,0.359,1.6,0.326,0.191,0.254,0.154,0.743,0.587,0.996,1.595,1.613,1.596,1.592,1.593,0.268,1.332,1.571,1.572,1.565,1.609,1.533,1.577,1.557,1.587,1.56,1.572,1.556,1.567,1.567,1.566,1.577,1.582,1.565,1.571,1.572,1.576,1.594,1.582,1.573,1.58,0.559,1.017,1.576,1.566,1.583,1.568,1.575,1.579,1.579,1.562,1.573,1.569,1.427,1.43,1.572,1.577,1.573,1.559,1.572,1.586,0.631,2.531,1.597,1.579,1.58,1.583,1.589,1.588,1.584,1.589,1.608,1.575,1.577,0.813,0.783,1.591,1.593,1.571,1.399,1.109,0.061,1.366,1.565,1.567,1.578,1.576,1.966,1.551,1.488,1.45,1.442,1.442,0.871,0.584,1.445,1.434,1.435,1.433,1.433,1.44,1.586,1.295,1.437,1.437,1.436,1.436,1.426,1.441,1.441,1.444,1.459,1.442,1.44,1.441,1.441,2.906,5.799,5.751,5.773,5.785,5.827,5.792,5.796,5.81,5.796,5.764,5.744,2.854,1.444,1.441,1.435,1.428,1.44,1.44,1.428,1.445,1.436,1.435,1.43,1.442,1.434,1.462,1.437,1.445,1.448,1.448,1.45,1.448,1.459,1.453,1.404,1.449,1.433,1.436,1.425,0.82,0.625,1.446,1.434,1.446,1.437,1.44,1.436,1.436,1.441,1.448,1.446,1.442,1.454,1.461,1.439,1.447,1.445,1.445,1.447,1.437,1.085,0.347,1.453,1.445,1.442,1.444,1.445,1.432,1.452,1.428,1.425,1.445,1.436,1.428,1.432,1.464,1.44,1.433,1.442,1.449,1.44,1.452,1.445,1.43,1.44,1.442,1.44,1.447,1.443,1.443,1.438,1.426,1.452,1.44,1.443,1.441,1.444,1.442,1.444,2.885,1.465,1.435,1.439,1.449,1.442,1.448,1.447,1.448,1.456,1.437,1.449,1.453,1.438,1.446,1.446,1.442,1.449,1.451,1.452,1.448,1.442,1.449,1.446,1.447,1.46,1.434,1.446,1.449,1.445,1.443,1.456,1.447,1.447,1.45,1.433,1.442,1.446,1.439,1.445,1.448,0.465,0.982,1.426,1.451,1.459,1.438,1.436,1.44,1.438,1.452,1.451,1.444,1.449,1.45,1.441,1.437,1.453,1.453,1.424,1.428,1.43,1.432,1.443,1.444,1.442,1.444,1.43,1.456,1.437,1.448,1.445,1.447,1.435,1.435,1.439,1.443,1.45,1.45,1.445,1.447,1.432,1.44,1.457,1.443,1.436,1.452,1.417,1.486,1.436,1.431,1.431,1.443,1.462,1.448,1.444,1.448,1.449,1.456,1.458,1.441,1.444,0.836,0.693,1.61,1.638,1.64,1.644,1.646,1.622,1.668,1.792,1.35,1.496,1.499,1.506,1.524,1.522,1.497,1.5,1.488,1.487,1.416,1.437,1.44,1.428,1.448,1.441,1.443,1.444,1.434,1.448,2.887,2.882,2.882,2.86,2.896,2.895,2.889,2.886,2.867,2.905,2.866,2.878,2.863,2.859,2.875,1.427,1.427,1.452,1.455,1.434,1.437,1.433,1.448,1.442,0.733,0.712,1.442,1.445,1.429,1.445,1.431,1.432,1.439,1.439,1.439,1.443,2.913,1.283,1.577,2.867,1.434,1.434,1.453,1.446,1.457,1.46,1.448,1.452,1.456,1.461,1.432,1.448,1.452,1.405,1.403,1.487,1.487,1.443,1.451,1.452,1.436,1.438,1.426,1.442,1.443,1.442,1.443,1.442,1.443,1.449,1.451,2.886,1.658,1.236,5.767,5.743,1.451,1.456,1.453,1.457,1.451,1.455,1.457,1.462,1.449,1.458,1.464,1.446,1.449,1.447,1.451,1.451,1.452,1.428,1.451,1.449,1.454,1.437,1.449,1.452,1.448,1.462,1.45,1.452,1.457,1.463,1.447,1.448,1.463,1.433,1.459,1.442,1.445,1.441,1.445,1.438,1.439,1.437,1.437,1.432,1.459,1.456,1.441,1.442,1.443,1.445,2.89,2.892,2.887,2.888,2.889,2.887,11.568,11.58,6.041,5.52,2.909,2.911,5.768,5.799,2.88,2.894,5.185,0.067,0.595,3.187,1.611,1.612,0.869,1.495,1.565,1.568,1.571,1.575,2.194,1.728,1.561,1.566,1.425,1.557,1.577,1.56,1.56,1.584,1.556,5.86,6.265,12.516,2.732,3.449,0.245,12.168,12.496,12.469,1.555,1.554,1.555,1.551,1.557,1.565,0.128,1.423,1.55,1.552,1.551,1.558,1.552,1.555,1.556,1.558,1.539,1.544,1.556,1.552,1.554,1.571,1.538,1.562,1.489,1.599,1.594,1.564,1.567,3.136,3.136,1.566,1.568,1.566,1.571,2.975,0.172,1.578,1.567,1.57,1.564,1.573,1.575,1.569,1.571,1.574,0.975,0.738,1.346,1.455,1.476,1.453,1.458,1.461,1.462,1.462,1.463,1.465,5.802,5.802,12.549,4.837,1.447,1.448,1.444,1.445,1.451,1.456,1.454,1.453,1.439,1.452,1.462,1.448,1.455,1.447,1.442,1.445,1.441,1.522,1.585,1.579,1.585,3.159,1.481,1.44,1.467,1.546,1.576,1.576,1.618,1.619,1.621,1.619,1.232,0.373,3.239,1.599,1.599,1.587,1.602,1.6,1.593,1.616,1.566,1.593,1.572,1.598,1.457,1.46,1.438,1.44,1.45,1.449,1.446,1.449,1.451,1.449,1.444,1.464,1.431,1.455,1.444,1.457,1.438,1.449,1.451,1.448,1.452,1.448,1.446,1.45,1.453,1.452,1.456,1.455,2.884,1.44,1.444,1.447,1.449,1.447,1.448,1.449,1.452,1.443,1.434,1.44,1.444,1.441,1.443,1.45,1.452,1.442,1.443,1.458,1.46,2.881,2.901,2.901,2.9,2.903,2.901,2.907,2.875,0.049,2.96,1.143,0.323,2.098,1.159,1.154,3.105,2.566,2.963,1.248,1.255,1.473,0.049,16.316,0.707,0.716,0.5,1.578,1.188,1.178,1.17,1.174,1.418,1.414,1.176,1.175,2.35,1.706,1.649,3.697,3.294,3.304,3.297,1.645,1.648,1.641,1.643,1.647,1.649,1.652,1.643,1.647,1.648,1.649,1.652,1.641,1.649,1.652,1.643,1.643,1.656,1.647,1.635,1.657,1.654,1.647,1.65,1.647,1.65,1.661,1.639,1.658,1.664,1.634,1.639,1.643,1.649,1.645,1.639,1.643,1.384,1.919,1.655,1.639,1.649,1.65,1.632,1.639,1.637,1.638,0.48,1.207,1.621,1.642,1.639,1.642,1.628,1.638,1.63,1.634,1.64,1.619,1.85,1.514,1.507,1.555,1.405,1.643,1.619,1.613,1.626,1.633,1.615,1.629,1.626,1.625,1.624,0.344,1.223,0.031,0.719,0.882,1.622,1.637,1.619,1.658,1.653,2.37,1.758,1.646,1.641,1.631,1.324,1.519,1.665,1.667,1.641,3.274,3.278,1.634,1.633,1.638,1.639,1.633,1.639,1.629,1.633,1.631,1.629,1.636,1.641,1.646,1.638,1.627,1.629,1.637,1.642,1.636,1.635,1.642,1.629,1.636,1.658,2.011,6.175,1.647,1.626,0.812,0.822,0.82,0.823,0.809,0.797,0.83,0.445,0.406,0.826,0.833,0.822,0.823,0.829,0.822,0.811,0.854,0.817,0.819,0.828,0.831,0.814,0.832,0.837,0.814,0.832,0.813,0.831,0.832,0.826,0.825,0.824,0.826,0.823,0.826,0.823,0.82,0.835,0.829,0.824,0.824,0.826,1.586,1.586,3.41,3.287,3.301,1.656,1.651,1.648,1.652,1.653,1.65,1.655,1.655,1.653,1.654,1.655,3.799,3.261,3.261,3.29,1.659,1.66,1.653,1.654,1.652,1.653,1.65,1.651,3.3,3.307,2.442,3.336,3.301,3.3,6.6,2.727,0.157,0.098,0.173,3.338,7.166,0.895,0.901,1.035,0.035,0.737,0.894,1.787,0.912,0.596,1.171,0.89,0.897,0.884,0.871,0.888,0.413,0.491,0.436,0.474,0.914,0.94,0.914,0.677,0.246,0.922,0.935,0.119,0.281,0.465,0.888,0.913,0.902,0.906,0.888,0.905,0.9,0.903,0.9,0.574,0.333,0.393,0.541,0.713,0.219,0.402,0.526,0.884,0.5,0.953,0.359,1.307,1.14,1.369,0.289,0.945,0.065,0.64,0.982,0.978,0.982,0.795,0.057,0.132,0.976,0.969,0.968,1.007,0.978,0.978,0.986,0.974,0.994,0.967,0.982,0.979,0.976,0.975,0.975,0.074,1.875,3.902,1.855,1.856,1.652,1.508,0.681,0.137,0.065,18.68,0.015,1.713,0.51,0.238,0.719,1.641,1.482,1.363,2.903,0.006,1.279,0.022,1.177,0.016,0.753,0.006,1.227,1.085,1.11,1.128,1.08,0.352,0.758,1.103,1.136,0.66,1.511,1.108,0.104,0.994,1.109,1.099,1.105,1.099,1.104,1.666,0.466,1.724,4.354,1.938,7.578,3.554,8.701,4.004,4.463,8.548,8.785,4.308,2.309,2.219,1.111,1.112,1.092,1.091,1.103,1.112,1.11,1.105,1.048,1.053,1.173,1.169,1.103,1.105,1.106,1.108,1.12,2.215,0.991,2.019,1.084,1.087,1.095,1.076,1.089,1.093,1.503,1.198,1.108,1.094,1.113,1.105,1.1,1.116,1.088,1.109,1.115,1.093,1.118,1.11,1.107,1.096,0.354,1.785,1.157,1.067,1.068,1.103,1.108,1.101,1.103,1.096,1.099,1.84,1.945,1.982,2.201,2.185,2.198,2.183,2.188,2.218,2.294,0.816,10.602,8.473,2.174,2.178,2.187,2.131,2.125,2.17,2.168,2.172,1.086,1.153,3.159,2.649,8.705,2.171,2.076,2.097,2.059,4.017,0.148,4.163,4.193,4.136,4.184,4.192,2.056,2.105,2.471,1.684,2.343,1.816,2.045,2.04,2.052,2.044,2.053,2.046,2.04,2.061,2.032,2.056,2.045,2.04,4.094,2.154,2.721,7.892,6.887,9.066,0.469,3.189,2.467,0.039,1.066,0.199,0.938,0.039,1.215,0.039,2.171,2.043,1.463,0.936,1.144,3.831,0.251,4.093,1.566,1.762,0.075,4.98,2.266,1.889,1.886,1.907,0.932,0.944,0.942,0.94,0.943,0.941,0.939,0.946,0.94,0.943,0.93,0.937,0.952,0.94,0.948,0.939,0.943,0.943,0.948,0.944,0.94,0.941,0.942,0.943,0.94,0.945,0.943,0.944,0.95,0.945,0.947,0.948,0.943,0.946,0.943,0.941,1.236,0.948,0.95,0.952,1.908,1.901,0.478,2,1.09,1.167,1.027,1.899,1.884,0.942,0.944,0.957,0.946,0.948,0.958,0.951,0.961,0.947,0.941,0.944,0.966,0.928,0.919,0.939,0.93,0.942,0.95,0.946,2.803,0.94,0.941,1.857,0.929,0.943,0.932,0.931,0.945,0.94,0.942,0.923,0.947,0.913,0.946,0.929,0.698,0.066,1.136,0.611,0.246,0.93,0.895,0.912,0.907,0.916,0.915,0.884,0.911,0.914,0.9,0.904,0.915,0.92,0.902,0.904,0.914,0.912,0.905,0.905,1.843,3.676,1.843,1.842,0.953,0.952,0.954,0.954,0.946,0.918,0.99,0.9,0.963,0.961,2.067,1.404,1.705,1.766,1.422,1.305,2.102,1.275,1.023,1.887,1.807,1.83,7.34,2.139,3.348,3.083,1.533,1.513,2.138,1.966,0.147,3.394,1.495,1.47,2.952,1.476,1.481,1.477,1.491,3.388,3.414,5.902,2.27,3.651,1.357,1.606,2.958,2.107,2.109,1.279,1.28,0.85,0.844,0.848,0.845,1.689,1.683,1.076,1.067,2.14,1.265,1.265,1.265,1.259,1.692,1.689,1.702,1.699,1.063,1.058,1.063,1.057,1.738,1.774,0.444,0.703,1.522,1.275,4.687,1.535,1.716,1.718,1.806,1.802,2.5,2.468,4.945,4.57,2.253,2.333,2.008,2.037,1.795,2.491,2.487,2.549,2.934,1.847,0.004,1.1,8.2,1.72,1.826,1.393,1.615,1.444,2.062,1.497,2.52,1.679,1.674,1.688,1.681,3.372,1.672,1.678,2.523,2.54,1.666,1.661,2.546,2.544,2.919,15.308,4.617,3.561,4.076,4.074,1.706,1.977,0.82,1.96,1.501,1.618,5.678,7.241,4.393,3.137,4.297,2.879,3.059,2.707,2.211,1.042,0.987,1.994,2.221,3.452,2.39,2.395,2.394,1.712,0.81,2.523,3.42,2.566,2.585,3.405,3.43,24.137,2.336,26.737,13.446,6.689,6.766,4.725,4.727,2.946,3.417,2.905,2.899,3.153,3.145,3.007,1.113,1.898,2.544,2.558,2.382,2.373,2.024,2.019,1.409,1.408,1.491,1.501,2.578,2.58,5.508,3.416,3.415,2.974,4.22,3.403,2.982,2.736,1.584,1.581,2.358,2.495,1.791,1.477,1.472,2.58,1.262,1.269,4.165,0.209,1.263,1.451,1.441,1.498,1.489,1.266,1.271,2.547,2.55,2.467,1.316,1.31,1.715,1.719,1.72,2.246,1.203,1.203,4.688,4.943,1.721,3.95,9.434,4.671,2.356,2.361,1.992,2.696,1.854,1.856,1.895,1.898,3.958,2.91,6.799,4.552,7.199,3.244,2.085,2.359,2.234,2.886,1.116,1.103,1.084,1.09,1.098,1.099,0.571,0.504,1.08,1.097,0.858,0.25,1.828,1.092,1.087,2.187,1.089,1.081,1.506,1.094,1.096,1.089,1.1,2,1.998,0.589,1.408,1.998,4.289,2.13,2.127,1.814,0.904,0.906,1.63,1.628,1,0.996,1.006,0.997,1.648,1.6,1.198,1.195,0.778,0.774,1.205,1.2,1.64,0.929,0.924,1.844,0.992,1.424,1.665,1.649,1.648,3.855,1.691,0.844,0.839,0.185,1.605,1.783,0.873,1.287,1.075,1.079,1.336,1.328,2.097,1.307,1.303,1.233,1.234,1.21,1.213,1.724,1.718,1.622,1.817,1.366,1.368,1.328,1.374,1.325,1.323,1.029,1.008,1.456,1.449,2.006,2.009,0.527,1.866,1.82,1.813,1.818,1.811,2.006,2.006,2.405,1.207,1.206,2.013,2.015,2.826,2.828,2.211,2.209,4.234,2.015,2.014,3.602,3.775,3.867,3.244,3.237,4.684,2.346,2.336,2.323,2.319,2.32,2.325,2.388,2.624,2.63,2.618,4.029,1.601,3.241,3.223,26.355,0.84,2.778,2.613,1.202,1.063,0.803,0.809,1.19,1.192,2.022,1.014,1.01,0.802,0.802,1.648,1.593,0.798,0.799,1.207,1.207,1.205,1.203,1.319,1.321,2.337,1.079,1.074,1.659,1.668,1.091,1.1,2.014,1.211,1.649,1.988,1.365,1.427,1.503,1.506,1.406,1.407,1.399,1.4,1.609,1.616,2.826,0.777,1.625,1.231,1.16,2.522,1.812,1.911,1.077,1.086,2.341,2.337,4.599,0.076,4.669,2.338,2.336,1.805,1.804,1.803,0.906,0.902,1.785,0.892,0.887,1.173,1.169,2.306,0.609,1.513,1.32,1.215,1.21,2.423,1.213,1.213,1.829,2.801,1.153,1.64,2.395,0.156,3.416,3.184,6.329,6.141,4.992,14.173,6.73,9.676,9.399,11.188,5.992,5.578,3.012,4.672,2.121,1.703,2.487,1.627,1.233,2.459,0.931,1.179,1.104,1.517,1.299,1.217,3.529,1.764,1.769,1.77,1.775,1.96,0.98,0.981,2.332,2.335,1.47,1.477,1.451,1.459,1.881,1.883,1.882,1.887,2.789,2.731,5.544,5.557,1.39,1.388,1.39,1.393,1.358,1.359,1.402,1.411,1.278,1.282,1.571,1.613,1.31,1.313,1.828,1.61,0.555,2.397,2.12,1.898,1.915,19.997,0.473,4.847,2.63,4.821,5.477,2.693,2.69,2.583,2.598,2.826,2.829,2.366,2.365,2.375,2.375,2.605,2.606,2.618,2.625,1.912,1.919,2.308,2.315,1.809,1.807,1.831,1.845,2.004,2.025,4.07,4.01,2.015,1.224,11.333,3.642,0.841,2.235,2.244,2.937,2.945,2.935,2.945,1.879,1.881,1.708,1.708,1.534,1.542,2.468,2.454,2.547,2.574,3.37,3.279,3.199,2.932,3.234,1.607,0.24,0.031,1.581,3.278,1.652,0.039,1.957,8.074,7.98,0.035,8.081,9.826,2.328,0.039,2.475,2.518,2.687,0.762,11.678,0.029,3.992,1.677,1.675,1.653,1.665,1.519,1.52,1.53,1.421,2.535,1.269,1.234,1.361,1.412,2.02,1.018,1.03,2.125,2.119,1.929,1.341,1.761,0.888,0.885,1.224,1.231,1.383,1.394,2.788,1.785,1.794,1.804,2.039,0.496,2.045,2.337,4.56,1.051,8.44,17.923,3.691,1.695,1.693,1.711,1.716,1.713,0.858,0.861,1.621,1.34,0.283,0.891,0.888,1.793,1.578,1.581,0.9,0.898,0.891,0.892,1.827,1.813,1.318,2.516,1.027,1.022,1.018,0.806,0.22,2.047,1.039,1.04,1.086,1.1,1.283,1.826,1.829,2.064,2.067,4.905,2.453,2.455,1.855,1.84,1.929,1.923,1.006,1.005,1.005,1.004,2.178,1.089,1.087,1.209,1.209,1.92,2.406,1.507,1.501,1.313,1.314,2.394,2.404,3.94,2.174,2.2,2.261,1.12,1.134,2.318,2.315,3.053,3.15,2.893,1.445,1.445,4.402,4.609,4.454,2.229,2.23,1.877,1.885,2.535,1.27,1.271,4.568,2.139,2.158,0.268,0.84,4.481,1.434,2.268,2.567,2.575,1.374,1.376,3.101,3.54,1.785,2.524,1.612,1.61,2.399,2.411,1.414,1.422,2.884,5.644,8.343,2.975,1.602,1.602,8.087,8.207,1.71,1.734,1.127,1.126,1.129,1.134,1.077,1.09,2.171,1.32,1.326,1.284,1.309,0.949,0.682,0.703,1.431,1.337,1.346,1.465,1.095,1.119,0.919,0.934,0.99,0.987,23.57,2.652,1.408,1.401,1.551,1.574,1.348,0.081,1.438,1.575,1.576,1.296,0.147,1.445,0.889,0.897,2.054,1.611,1.621,1.605,1.605,2.514,2.517,2.152,2.169,8.218,0.293,1.946,1.948,1.846,1.858,1.135,1.184,2.355,1.877,1.882,1.762,1.777,1.751,1.24,0.505,1.19,0.169,5.489,2.611,2.371,1.821,9.187,0.438,1.655,1.661,1.719,1.704,1.511,1.496,1.664,1.652,2.098,2.035,1.137,1.152,2.274,2.165,2.083,2.531,2.53,1.231,1.246,1.211,1.237,1.794,1.808,1.769,1.78,1.844,1.85,1.849,1.871,13.807,6.9,1.736,1.726,1.728,1.734,1.563,1.546,3.116,6.256,12.423,0.75,2.171,1.049,1.056,4.385,1.548,1.764,0.944,0.883,1.798,1.7,1.697,1.526,1.751,1.911,1.715,1.654,1.7,0.865,0.859,1.727,1.737,0.841,0.849,1.664,0.856,0.85,1.614,1.744,3.3,3.318,10.044,4.992,5.009,5.855,1.243,1.243,1.286,1.949,2.574,2.91,1.331,1.321,1.347,1.34,1.556,1.53,1.662,0.159,1.853,1.916,1.926,2.217,2.119,1.943,2.045,2.071,2.441,2.954,2.617,0.813,7.532,3.513,1.643,1.645,1.355,1.118,1.212,1.205,2.327,2.125,1.273,1.242,0.619,0.624,1.109,1.227,1.262,1.244,1.25,1.671,1.724,1.628,1.64,0.998,0.99,1.924,1.971,0.997,0.98,3.256,0.383,1.402,1.8,1.757,1.747,1.868,1.86,2.128,1.075,1.068,1.596,1.59,3.175,5.824,17.241,17.235,2.985,1.481,1.479,1.415,1.428,1.421,1.414,1.957,1.966,3.425,1.711,1.705,3.539,0.893,0.878,1.773,1.852,1.864,1.832,1.845,1.226,2.76,2.79,1.496,1.505,1.533,1.53,1.441,1.461,1.453,1.457,1.404,1.387,1.393,1.376,2.801,1.384,1.369,1.01,2.441,1.184,0.754,1.643,1.609,1.48,1.33,1.479,1.48,4.736,9.562,2.223,1.198,1.201,1.747,1.75,1.255,1.253,1.2,1.211,1.364,1.373,2.457,1.273,1.284,1.289,1.236,1.209,1.21,2.519,8.21,4.073,1.176,2.578,1.646,1.656,0.969,0.966,1.991,1.524,1.48,1.9,0.93,0.93,1.392,1.392,1.403,1.352,0.092,1.098,1.469,1.334,1.24,1.898,1.893,3.602,3.174,1.691,2.457,1.6,9.196,3.728,6.513,3.183,3.362,0.115,0.301,0.037,1.903,2.043,4.074,4.184,1.96,1.888,1.696,1.448,1.235,1.029,0.944,1.243,1.966,1.606,1.474,1.881,1.735,1.749,1.672,2.11,1.651,1.334,2.067,1.765,1.726,1.062,0.934,0.055,2.347,2.503,1.495,1.196,1.666,1.535,2.281,1.549,1.458,1.673,1.689,2.091,2.129,1.302,1.412,1.362,1.172,1.992,2.062,1.259,1.29,1.048,0.979,1.954,2.083,1.773,1.421,1.632,1.472,2.537,0.985,1.473,0.293,1.461,2.008,1.678,2.454,1.606,2.113,1.344,1.504,0.293,1.631,1.386,2.049,0.025,4.055,0.076,2.146,2.084,1.089,0.709,0.707,0.709,0.71,1.406,1.416,1.095,0.555,0.157,0.714,0.8,0.799,1.186,1.191,1.498,1.004,1,1.429,1.423,1.833,2.379,1.884,1.635,1.611,1.636,4.755,2.2,2.027,1.355,1.299,1.283,1.278,2.211,1.191,1.2,1.253,1.247,1.25,1.239,1.307,0.796,0.789,1.561,1.564,3.339,1.667,1.671,6.671,6.497,2.108,0.883,1.164,0.844,0.555,1.136,1.415,0.949,2.679,1.058,1.057,1.141,1.137,1.506,1.492,1.68,1.671,3.377,1.067,1.467,1.981,3.605,1.492,3.657,1.896,1.489,1.657,1.676,2.491,1.687,1.673,1.664,3.094,1.148,5.725,2.008,2.003,4.196,1.24,1.234,2.942,2.483,1.518,1.508,2.424,1.101,1.094,3.038,3.008,5.987,3.489,3.473,2.534,2.549,2.537,2.55,1.324,1.313,1.318,1.308,2.637,2.645,1.138,1.125,2.295,1.333,1.326,2.689,2.568,1.268,1.28,1.29,1.304,1.278,1.303,1.339,1.326,1.365,1.358,1.277,1.288,1.286,1.32,1.826,1.778,1.746,0.824,0.859,1.771,1.724,3.236,2.168,2.242,1.483,2.933,9.492,3.8,1.78,1.737,3.979,4.097,3.93,3.938,1.208,1.206,2.361,6.055,1.886,1.602,1.062,0.013,1.526,1.537,0.938,0.698,1.516,0.942,0.942,1.049,0.899,0.998,0.993,1.647,0.526,0.785,0.759,0.603,1.319,0.691,0.691,1.158,0.862,0.863,1.398,0.697,1.03,0.855,1.686,1.009,0.682,0.387,0.755,1.018,1.042,0.697,0.718,0.734,0.691,0.703,0.675,0.686,0.704,0.794,0.97,1.088,1.072,0.702,0.75,0.71,0.709,1.053,1.054,1.054,1.411,4.538,1.719,1.78,1.755,0.882,0.879,1.017,0.732,0.509,0.511,0.792,0.661,0.688,1.086,0.792,0.772,0.72,0.745,0.712,0.717,0.719,0.718,0.714,0.727,0.71,1.391,0.691,1.07,1.312,0.897,0.907,0.822,0.78,0.385,1.157,2.485,7.108,0.691,8.397,1.767,1.772,9.128,1.589,1.589,1.414,1.408,1.431,1.432,1.414,1.437,1.423,1.424,2.857,3.003,5.722,1.068,1.066,0.717,0.713,0.721,0.705,0.722,0.717,0.528,0.541,1.061,0.577,0.566,0.576,0.571,1.103,1.112,1.084,1.078,0.713,0.709,0.716,0.713,0.731,1.025,0.545,0.539,0.539,0.534,1.068,0.947,1.058,1.054,1.033,1.034,0.994,1.004,1.098,1.096,1.252,1.094,2.501,2.684,5.339,4.863,1.544,1.125,1.045,0.695,0.696,1.408,1.427,1.415,1.215,1.462,1.458,1.278,1.298,1.217,1.222,1.382,1.361,0.713,0.707,1.139,0.681,0.68,1.121,1.744,1.029,0.53,0.507,1.458,1.056,1.054,1.28,1.05,0.572,1.182,1.056,0.737,0.654,1.084,1.066,1.056,1.057,1.387,1.07,1.069,1.052,1.062,0.945,1.009,1.063,1.084,1.05,1.056,1.08,1.045,1.064,0.714,0.717,1.032,0.705,0.707,1.072,0.701,0.705,1.066,1.073,1.242,0.739,0.692,0.677,1.394,1.032,0.699,0.697,0.622,0.622,1.025,1.037,0.706,0.701,1.343,1.42,33.081,0.729,17.002,9.911,5.429,1.419,1.417,1.103,1.108,1.622,1.617,1.473,1.476,1.416,1.419,2.264,0.775,0.771,0.724,0.557,1.353,1.364,1.147,0.724,0.979,0.988,1.969,1.19,1.16,2.294,1.165,1.024,1.125,0.873,1.942,1.512,1.513,0.826,2.023,1.19,1.191,3.074,16.739,6.819,3.571,1.569,1.612,2.372,0.794,0.793,1.191,1.614,2.393,2.401,1.605,1.597,1.554,1.602,1.599,2.348,1.461,2.803,1.183,0.897,1.146,1.15,1.194,1.19,2.471,2.315,2.006,1.206,1.21,2.364,2.379,1.174,1.36,2.338,2.324,7.419,3.595,1.599,2.019,1.2,1.198,1.207,1.202,1.192,1.186,2.384,2.252,2.375,1.196,1.196,1.218,1.227,1.199,1.204,2.412,1.183,1.18,2.363,3.387,3.391,6.623,13.642,3.379,3.214,1.627,1.612,3.217,1.987,1.603,3.191,8.151,0.568,0.586,6.447,3.16,3.971,3.181,1.549,0.792,1.579,1.584,1.18,1.176,1.56,0.802,0.801,1.512,0.707,0.706,0.99,0.983,1.187,1.187,1.605,1.2,1.16,1.598,0.797,0.797,1.108,2.086,1.129,1.559,1.174,1.198,1.188,1.19,1.292,1.282,1.521,1.567,2.771,1.497,1.503,2.444,1.801,1.81,3.156,0.746,0.77,1.529,3.391,6.343,6.285,1.139,1.148,0.802,0.797,0.801,1.572,1.575,3.113,1.95,1.952,2.362,1.524,1.954,0.976,0.979,1.945,1.948,1.592,1.238,1.23,1.759,2.041,0.762,0.95,2.138,1.602,2.009,1.828,1.73,1.657,0.839,0.555,1.512,1.249,1.542,1.235,1.233,1.297,1.361,0.804,0.804,1.566,1.563,3.908,3.913,3.753,1.568,1.946,1.585,0.838,0.837,1.805,1.8,1.589,1.596,2.386,1.627,3.381,1.604,1.636,1.577,1.629,2.244,0.091,1.361,1.551,1.576,1.568,1.599,8.106,6.186,0.027,0.983,1.231,2.449,0.031,0.698,13.576,4.232,4.019,2.511,1.633,1.693,3.921,2.69,2.684,2.676,2.683,2.689,2.692,4.019,2.004,2.002,3.992,3.988,2.701,3.995,6.586,0.146,101.653,5.183,2.778,2.76,2.019,2.023,3.997,4.002,1.99,1.99,7.351,3.694,3.681,2.712,2.674,2.679,3.98,2.067,3.329,1.323,1.389,1.363,1.931,2.665,2.707,1.683,1.649,2.748,14.299,1.594,3.655,8.324,1.503,8.198,0.252,0.268,0.813,1.208,0.654,0.651,1.501,1.209,1.197,1.187,1.186,1.626,0.801,1.209,1.209,0.836,1.194,1.603,2.396,4.823,4.814,5.063,3.688,2.928,1.393,3.189,2.444,1.181,1.179,2.399,2.418,1.253,1.251,1.422,1.41,2.418,1.168,1.183,2.415,1.201,1.203,1.205,1.21,2.375,1.171,1.171,2.381,1.181,0.883,2.038,1.398,0.645,2.759,2.148,3.815,9.511,3.511,3.098,3.109,2.49,1.24,1.253,1.569,1.562,3.904,1.168,1.164,1.947,0.782,0.78,1.923,0.99,0.988,2.325,1.169,1.167,1.145,1.144,1.568,1.542,1.54,1.169,1.166,0.414,1.936,2.726,2.314,1.165,1.166,1.178,1.168,1.97,2.306,2.747,1.204,1.193,1.183,1.174,1.579,1.572,3.128,6.294,8.065,2.369,2.781,1.059,3.206,3.19,2.311,2.701,1.19,1.521,2.612,1.098,1.441,0.724,0.725,1.174,0.768,0.769,1.202,1.529,1.867,1.422,2.328,1.038,1.042,0.431,0.039,1.124,1.448,0.705,0.7,0.938,1.08,1.064,0.025,1.076,2.153,0.795,1.018,1.116,1.092,2.088,3.589,3.313,3.404,1.642,0.802,0.803,1.058,1.067,0.717,0.715,1.088,0.719,0.714,0.711,0.717,0.715,1.064,1.086,0.709,0.704,1.079,1.076,0.726,0.722,1.049,1.1,1.083,1.088,1.074,1.1,1.099,1.081,0.73,0.73,0.718,0.715,0.724,0.721,0.723,0.719,1.452,0.709,1.74,1.076,0.831,0.813,0.81,0.893,1.055,1.082,1.084,1.096,1.089,1.091,1.087,0.715,1.026,1.077,0.725,0.718,1.101,0.619,0.613,0.833,0.824,1.82,1.769,1.633,3.55,4.841,10.131,2.393,2.405,2.642,1.274,1.275,1.737,1.396,1.569,1.521,1.488,1.488,1.427,1.455,1.492,1.535,1.447,1.466,1.639,1.664,0.825,0.823,1.553,0.758,0.767,1.003,1.506,2.254,0.713,0.743,1.519,2.063,1.65,1.158,0.607,0.6,0.84,1.161,1.093,0.305,0.798,1.207,1.204,1.19,1.168,1.905,1.572,1.608,5.956,6.335,12.543,12.341,6.297,2.47,0.762,3.01,1.213,1.264,2.399,1.587,0.712,0.72,1.178,1.175,1.319,0.802,0.798,1.581,1.403,1.259,0.789,0.785,1.339,0.795,0.758,1.232,0.711,0.709,1.364,1.369,1.231,1.181,1.208,1.204,1.183,1.546,1.221,1.339,1.429,1.483,0.797,0.801,0.98,0.977,1.024,1.019,0.837,0.759,1.211,1.143,2.013,1.634,1.629,3.157,3.916,7.326,3.983,2.333,2.261,1.218,1.342,2.476,2.033,1.907,3.121,0.983,0.977,1.607,0.426,1.955,0.986,0.989,1.155,1.594,1.181,1.218,1.533,1.203,0.789,0.788,1.595,2.738,2.755,2.559,1.277,1.277,5.164,1.678,1.388,0.594,0.454,0.692,1.292,0.793,0.762,2.686,1.689,1.739,1.645,1.678,3.15,1.633,1.296,3.625,1.371,1.54,2.449,2.584,1.948,2.467,1.833,1.811,3.018,5.461,5.636,5.265,6.092,34.507,0.362,5.56,5.524,2.735,2.758,1.908,3.597,3.123,2.417,1.716,3.79,3.372,3.192,1.97,1.949,3.013,1.583,1.55,1.567,1.377,2.484,2.016,0.326,4.514,4.497,5.016,3.625,3.539,3.125,2.206,1.256,0.746,2.965,0.068,1.461,1.301,1.028,1.136,1.318,1.591,1.428,1.55,1.668,0.49,1.332,1.506,0.135,3.146,3.299,2.193,2.282,2.456,1.479,1.085,1.018,2.634,2.701,0.796,1.821,1.652,2.481,2.049,1.471,2.282,1.754,1.593,2.075,0.76,0.864,12.448,2.355,2.483,2.481,2.622,1.622,3.456,2.023,2.973,2.159,1.644,1.33,3.658,1.462,3.034,2.988,1.525,1.526,3.053,2.474,2.59,2.077,2.249,2.101,2.4,1.823,2.494,2.14,1.084,8.97,1.279,2.078,1.399,1.717,3.799,5.119,3.157,2.244,2.458,2.491,4.394,4.549,3.278,1.839,1.259,1.729,3.077,2.995,3.071,5.666,2.072,2.064,1.902,1.583,1.209,1.023,2.772,3.015,3.056,2.255,0.778,1.971,2.852,2.862,4.887,6.073,1.208,4.756,2.157,2.079,1.855,2.245,2.461,2.247,2.213,4.577,2.34,2.197,1.783,1.991,2.381,3.046,2.495,3.55,3.606,1.872,2.157,3.185,1.125,4.177,2.72,2.267,3.725,2.382,3.209,3.217,0.691,5.615,2.364,1.072,4.177,1.583,3.062,3.041,4.883,16.49,2.422,3.15,2.595,2.807,3.324,1.776,1.872,1.954,0.821,1.049,1.8,1.774,2.528,1.115,1.395,1.392,1.096,1.71,0.501,1.019,1.22,1.539,1.158,4.39,4.408,3.963,1.262,3.024,3.282,3.777,11.39,8.735,4.419,4.734,4.113,4.127,4.358,4.36,4.458,1.079,1.762,1.691,0.035,3.784,2.76,2.773,2.779,2.774,2.763,2.79,2.757,2.75,2.789,5.548,2.763,2.766,2.754,2.8,2.767,1.32,1.445,1.378,6.065,4.163,4.279,4.442,5.201,4.402,4.343,4.142,4.16,3.86,4.413,4.05,4.043,4.018,20.176,4.499,4.043,3.882,3.872,4.742,4.525,19.98,5.344,5.625,3.592,0.079,3.915,4.018,3.733,4.235,4.328,4.318,4.388,14.315,11.324,7.862,22.644,2.194,7.853,5.171,4.673,4.587,1.07,3.771,4.489,4.673,4.497,4.526,4.794,4.508,15.78,4.995,5.299,4.444,4.567,4.801,4,3.962,4.06,1.971,2.038,2.074,2.131,3.896,3.729,0.965,41.145,4.862,4.995,5.026,6.372,4.337,3.891,27.701,4.131,4.03,3.9,3.88,4.033,4.063,3.653,4.815,4.621,10.475,2.181,2.951,3.719,4.476,4.186,3.381,0.784,4.182,4.129,3.763,3.932,8.608,4.256,4.388,3.902,4.042,3.651,4.156,3.848,4.078,3.562,10.342,3.416,3.331,3.288,3.411,4.217,4.526,4.451,3.958,18.081,6.569,5.033,5.777,3.575,3.967,6.003,6.457,4.694,4.576,5.271,12.342,7.66,11.116,10.74,1,7.168,1.117,3.319,3.424,1.063,4.791,0.396,21.38,3.749,3.713,3.029,0.382,2.204,2.827,3.153,2.746,3.005,2.225,2.076,2.326,2.215,2.373,3.243,2.711,3.41,13.309,3.012,2.245,2.379,2.797,1.814,2.009,0.864,3.074,2.323,2.632,1.223,1.283,1.235,1.263,2.144,1.443,1.411,2.789,2.806,2.446,3.525,6.725,2.518,2.521,3.185,1.833,2.864,4.046,2.964,2.466,2.915,2.723,3.01,3.442,3.004,2.735,3.004,3.996,2.498,2.214,2.85,3.701,7.771,0.68,0.939,2.473,24.522,5.27,6.481,1.699,3.78,3.518,3.827,3.411,3.817,3.434,3.65,3.276,2.735,4.154,2.681,2.964,2.749,3.097,3.143,3.549,2.906,2.804,3.455,0.399,4.07,2.536,9.104,7.076,5.466,1.785,1.749,3.79,3.994,2.971,2.882,3.036,3.345,3.756,4.056,13.326,4.956,5.22,3.405,0.77,0.986,5.519,3.937,4.055,5.445,6.951,3.506,1.449,2.004,1.644,2.845,2.274,1.735,1.887,1.752,1.908,1.416,1.634,0.438,1.766,1.665,1.507,1.339,1.422,1.115,0.172,1.337,1.821,1.345,1.395,2.746,2.759,2.625,3.79,4.399,2.523,3.157,3.042,2.285,1.976,2.22,1.399,0.872,2.407,2.213,2.446,2.394,2.033,2.734,1.618,2.409,2.347,1.994,1.644,1.535,1.474,1.675,3.18,3.197,3.228,3.547,1.538,5.195,3.266,3.486,2.746,2.564,2.58,2.737,2.411,1.289,1.534,1.708,1.66,1.299,1.396,1.134,1.081,2.201,1.41,1.233,3.137,4.399,4.344,2.588,3.368,1.669,1.367,2.364,1.586,1.6,1.681,1.725,1.108,1.222,1.505,1.256,1.502,1.411,1.509,2.053,0.835,1.575,1.726,1.162,1.186,1.302,1.953,1.63,1.61,3.56,1.596,3.952,1.545,5.009,1.643,1.59,3.331,1.662,1.627,1.655,2.019,1.649,1.591,1.652,2,2.444,1.621,1.653,1.8,1.875,2.225,2.384,1.714,0.003,4.671,2.832,2.06,1.987,2.345,2.138,2.288,2.333,1.184,1.946,1.99,1.414,1.32,2.614,1.792,1.796,1.632,1.835,2.228,3.531,2.36,1.837,0.991,0.746,0.014,1.654,2.499,4.02,6.718,2.323,0.931,1.981,4.379,4.74,3.8,2.873,2.627,2.401,4.083,4.057,4.688,4.717,6.722,3.226,2.392,2.322,1.482,1.451,1.371,2.1,3.218,3.448,4.233,4.708,5.332,6.564,6.567,5.125,5.725,1.492,2.668,4.656,2.215,3.765,3.985,0.945,13.193,3.025,2.141,2.292,0.782,0.289,1.796,1.82,0.215,1.211,1.115,1.656,1.948,0.075,3.735,4.001,2.519,1.419,2.55,3.242,6.165,0.027,11.163,11.587,9.549,4.881,1.616,2.835,4.893,6.362,6.201,2.953,13.911,7.22,4.373,4.363,4.734,4.019,4.29,3.546,2.089,4.504,4.65,16.281,9.538,2.268,2.049,5,4.513,3.243,1.902,3.802,3.332,1.439,3.938,3.918,4.305,3.534,3.92,4.219,4.255,4.494,4.317,4.512,4.014,4.382,7.844,7.278,8.245,4.151,4.768,4.809,3.966,4.553,2.043,2.254,4.96,11.085,4.235,6.84,1.763,2.058,2.02,2.195,1.878,2.169,4.115,2.281,2.335,2.24,1.848,2.444,2.289,3.765,2.303,3.354,0.969,2.602,2.052,2.38,5.773,4.855,5.621,4.942,5.229,3.801,4.267,4.668,5.025,4.967,5.219,8.504,4.486,1.676,1.568,2.916,2.848,0.176,4.179,2.746,0.223,2.203,3.247,3.225,2.759,2.76,2.262,3.516,0.906,5.969,24.072,1.629,21.704,8.298,6.545,6.333,6.097,15.49,55.874,43.529,5.355,1.982,3.73,7.391,7.522,2.708,4.17,5.811,26.291,7.137,6.402,6.886,6.385,6.653,5.93,15.557,6.324,5.296,5.953,3.391,3.895,6.582,2.167,1.57,1.743,6.355,5.138,6.805,5.769,6.611,6.485,0.042,6.645,9.005,8.355,31.112,2.247,0.637,3.481,5.31,0.254,6.207,3.014,3.007,2.204,5.839,2.514,5.125,6.469,5.505,1.052,0.905,7.528,6.766,6.429,30.186,5.934,5.183,5.481,5.102,4.97,3.528,5.023,21.183,3.877,4.619,4.792,4.544,0.101,6.271,5.111,5.832,5.093,4.973,5.862,3.716,3.949,1.941,1.426,0.942,0.488,3.38,4.983,4.995,9.235,6.653,1.713,8.069,10.998,3.452,6.644,23.159,8.004,6.995,3.079,3.627,3.66,3.325,3.933,11.105,3.418,1.788,1.535,2.692,3.184,3.034,3.62,3.209,3.313,2.908,0.357,11.86,4.002,3.821,4.613,4.424,4.106,13.069,4.396,4.856,4.451,5.118,4.562,2.877,2.933,3.776,3.237,3.231,15.901,4.777,4.835,5.035,2.839,2.019,1.583,1.862,0.852,2.912,2.032,16.446,1.859,4.017,5.044,4.859,4.486,4.359,3.776,3.992,3.875,3.888,3.897,3.407,3.365,11.864,8.482,3.997,3.535,0.421,3.367,4.792,4.947,5.229,3.684,3.884,3.842,4.412,4.106,3.784,3.355,6.459,12.665,2.305,7.41,1.616,61.224,0.306,0.816,3.449,4.536,4.424,4.701,5.732,13.013,4.8,4.306,4.977,4.22,4.528,4.748,4.297,4.754,9.374,0.342,4.236,5.347,6.171,5.819,14.09,4.502,5.508,4.884,4.808,2.976,3.987,5.646,3.019,6.24,1.397,3.73,6.128,7.531,1.848,1.795,4.828,11.354,27.104,5.624,5.409,5.613,5.341,4.322,3.999,3.795,4.325,4.065,3.168,1.452,5.828,5.995,6.065,1.898,5.326,6.911,3.932,4.897,4.197,3.562,3.207,4.56,4.479,5.272,12.501,5.925,0.089,3.996,3.846,3.597,3.82,3.604,3.372,3.735,3.903,3.53,3.783,1.968,1.536,3.942,2.384,1.579,3.289,3.752,3.945,3.532,3.101,3.74,3.207,3.56,3.243,2.384,1.227,3.726,2.764,2.926,2.889,3.155,5.472,0.196,1.298,3.708,5.116,5.06,9.458,0.225,4.538,3.678,2.963,2.691,2.602,2.474,2,2.13,3.566,2.554,0.617,2.743,2.868,3.246,5.684,9.469,4.248,4.468,3.338,3.514,3.501,3.426,4.188,2.991,3.7,3.37,9.176,12.42,4.432,7.203,5.331,2.354,2.337,5.327,8.04,15.642,8.37,7.721,4.532,4.474,4.472,12.834,12.815,1.09,5.542,1.728,6.473,0.726,2.926,3.148,3.734,7.559,13.824,1.152,0.387,11.27,8.398,21.559,5.726,5.012,3.471,4.994,8.901,2.676,5.056,1.855,2.221,2.124,2.662,2.653,2.324,4.928,1.954,3.81,3.311,6.598,6.795,13.596,6.513,6.654,2.059,2.596,2.676,3.402,3.812,3.796,1.862,3.845,3.2,3.165,3.531,3.681,1.127,1.891,4.279,4.572,3.067,1.302,3.409,5.994,3.435,4.627,2.388,1.602,3.566,2.406,1.217,3.529,2.411,1.281,1.263,4.505,3.651,1.67,0.719,0.964,13.385,0.123,5.653,2.551,2.788,1.594,1.708,2.947,2.529,3.864,11.479,9.674,9.65,4.211,1.488,2.604,3.41,2.966,1.99,1.441,1.352,0.066,0.758,0.07,0.547,2.799,4.605,3.391,3.443,3.768,4.352,3.719,9.095,3.437,15.055,3.832,1.727,10.044,4.576,12.235,0.613,0.922,3.655,1.064,0.199,3.112,3.008,3.797,4.64,15.579,7.701,15.728,9.984,6.801,13.695,4.67,4.2,3.598,3.115,2.907,3.471,2.889,2.937,4.08,10.726,3.348,0.426,1.699,17.863,5.17,9.013,1.603,2.214,2.454,2.991,3.67,3.135,3.429,6.394,2.295,11.242,10.496,1.023,4.207,6.859,1.081,1.904,2.711,2.249,3.612,3.966,3.64,3.798,2.777,14.075,5.155,11.566,5.267,3.248,2.348,4.89,1.645,1.654,3.658,1.886,1.887,1.993,2.009,1.696,1.953,1.875,1.117,1.293,1.086,1.282,0.928,1.826,1.495,2.044,1.986,1.095,1.061,1.319,1.334,1.5,1.331,1.528,1.262,0.65,0.656,0.888,0.865,0.808,0.812,1.073,1.043,1.866,3.18,4.482,1.551,2.056,1.975,1.771,2.556,2.538,2.529,0.298,2.492,1.992,3.063,3.472,4.746,0.949,1.969,7.364,6.68,4.174,9.907,6.117,2.158,1.986,3.779,3.506,3.734,2.962,3.306,2.629,2.493,5.298,5.971,0.419,4.338,5.685,4.082,15.879,0.867,2.051,2.842,2.358,2.3,2.334,1.987,2.1,2.953,3.258,4.265,1.206,4.04,1.542,1.961,1.851,3.457,6.101,4.113,3.108,1.939,2.627,0.906,1.99,1.999,1.889,2.356,2.46,3.193,2.651,2.977,2.685,2.965,3.332,2.918,1.68,2.721,1.533,1.238,1.406,1.974,1.718,2.236,1.711,1.97,2.591,3.341,5.07,2.184,2.165,1.943,1.279,0.893,2,1.923,2.064,1.541,1.695,1.476,2.587,4.698,1.686,1.999,2.175,1.501,1.807,1.79,2.124,1.727,5.897,2.267,1.662,2.7,1.291,1.264,2.098,1.46,1.304,1.848,2.285,1.519,2.113,2.102,1.009,1.379,1.567,1.534,1.478,1.29,2.415,1.528,1.822,1.552,2.604,2.018,2.337,1.727,2.081,2.721,0.761,1.85,1.97,0.337,2.084,2.024,1.285,2.245,3.205,1.51,1.308,1.379,1.723,2.58,1.812,2.423,0.703,2.945,2.466,1.71,0.262,3.711,4.27,11.313,18.309,1.074,1.215,2.57,1.12,1.163,1.143,1.174,0.372,0.768,1.139,2.334,1.113,2.959,1.819,1.84,1.597,3.109,4.114,5.211,0.464,5.559,1.477,3.661,3.861,2.717,1.355,2.741,3.132,0.283,2.808,4.783,1.97,8.286,0.837,4.072,4.075,2.071,5.287,10.902,14.848,1.918,2.851,1.773,2.426,3.077,1.775,1.899,1.543,2.274,2.953,2.981,3.329,2.656,3.501,3.404,5.293,2.625,1.824,4.994,1.064,12.587,3.449,3.843,3.001,2.427,0.09,2.223,3.059,3.561,4.32,1.828,2.903,6.065,6.169,2.794,0.978,12.658,13.654,3.024,1.511,2.438,2.49,4.15,5.908,7.332,4.591,5.9,3.234,1.855,4.633,2.437,2.421,4.778,0.548,1.777,11.257,2.919,3.32,7.481,5.055,3.58,3.817,2.553,2.254,3.548,2.653,2.593,4.39,1.975,1.825,2.1,3.644,2.946,2.242,3.358,3.767,3.941,11.84,3.572,8.521,3.644,3.538,2.877,1.502,1.173,1.072,0.737,1.69,0.673,0.36,1.161,1.431,1.008,0.73,0.732,0.901,1.094,1.039,0.113,1.339,1.25,1.273,1.166,0.767,1.006,1.658,1.422,1.324,1.862,1.118,0.926,1.06,1.304,1.292,1.147,1.18,1.262,1.023,0.91,1.44,1.125,1.401,1.275,0.816,1.393,0.766,2.966,1.778,0.868,1.034,0.837,1.262,3.235,3.271,1.999,5.737,8.652,5.887,6.452,12.618,20.93,13.065,14.126,1.542,4.183,7.45,8.648,8.648,3.68,7.988,8.101,6.502,6.538,4.38,3.99,6.687,1.406,3.419,8.381,4.592,5.787,7.894,17.196,14.125,13.008,1.742,9.978,10.87,7.132,0.353,2.19,0.339,0.215,36.294,2.514,3.385,0.688,1.08,4.461,0.105,5.418,3.559,0.522,3.022,3.644,5.891,2.146,4.162,0.719,2.706,3.193,4.822,6.638,7.342,3.281,0.054,2.043,10.898,12.658,23.728,13.056,7.919,2.978,3.982,4.878,5.75,0.409,7.337,8.729,9.223,27.556,15.463,0.18,0.065,0.184,10.212,6.721,12.157,8.218,11.821,10.074,0.259,4.361,7.015,6.81,5.54,4.477,5.955,5.637,5.009,7.454,7.154,4.323,5.432,10.46,4.439,11.529,9.658,5.184,0.017,16.443,6.539,0.365,2.714,2.7,0.578,7.94,3.152,3.019,9.133,14.252,0.785,9.761,7.428,10.918,9.218,7.393,5.66,4.066,4.198,2.889,2.942,3.354,6.38,8.372,5.818,2.757,2.904,2.291,3.987,4.411,4.534,5.918,6.206,4.798,4.959,5.796,19.281,9.901,13.603,7.637,8.784,5.416,5.435,1.611,1.529,3.423,6.846,12.683,3.167,3.119,3.088,3.22,6.856,3.214,3.312,2.964,1.875,1.086,0.247,2.387,1.759,2.048,1.183,2.914,2.083,0.755,2.51,2.9,2.842,2.529,4.669,2.767,2.818,4.507,3.955,4.147,1.565,1.842,2.265,5.674,16.364,5.81,0.034,3.933,7.723,5.877,6.747,6.486,7.043,6.901,4.411,4.249,9.33,8.078,10.657,9.259,8.799,5.268,1.946,6.134,5.516,5.277,5.2,6.309,3.042,3.071,2.76,10.235,6.39,7.91,4.341,3.334,10.906,3.828,16.305,7.609,6.857,8.752,3.413,3.007,2.203,6.539,2.676,2.958,5.963,6.306,8.239,3.69,1.957,3.731,9.21,3.972,5.132,1.29,7.437,8.209,10.259,9.31,9.892,9.515,7.851,34.161,20.974,0.253,10.563,5.595,7.328,5.053,4.963,3.272,2.954,6.317,5.395,5.252,4.638,1.066,3.426,3.25,6.151,19.135,49.711,3.367,2.727,3.652,1.217,1.263,1.67,1.735,7.241,4.504,6.796,8.289,5.682,5.646,5.715,2.633,1.176,0.951,0.922,1.231,1.204,2.48,1.216,2.855,4.679,2.846,3.06,4.543,1.526,10.308,13.054,5.289,4.473,4.202,5.177,7.748,6.96,57.626,15.17,0.949,4.57,22,21.611,8.838,4.763,4.26,5.516,3.691,3.693,6.328,5.428,0.32,3.555,10.487,7.157,2.965,7.537,8.252,0.043,25.373,5.335,5.564,2.273,2.297,1.426,1.524,2.894,3.023,1.571,1.454,1.247,1.362,2.042,1.955,1.892,0.903,3.096,3.101,3.665,2.53,2.232,2.202,2.816,2.855,6.131,2.689,2.658,2.63,2.55,2.759,2.67,4.867,183.403,0.648,2.398,20.949,2.241,22.958,43.27,1.909,2.482,3.403,2.739,2.728,2.684,2.361,3.698,5.365,5.234,2.771,2.649,2.605,2.896,3.805,2.379,0.84,2.327,2.221,1.266,2.896,2.315,0.486,6.491,0.195,5.872,2.529,10.78,2.375,2.289,2.997,5.533,0.815,2.492,9.429,9.448,14.598,14.723,8.789,17.375,15.396,4.451,7.237,21.87,29.833,1.985,4.847,28.486,1.748,3.771,2.549,1.106,1.231,1.55,1.608,1.751,2.246,3.411,2.803,2.483,1.611,2.087,2.296,2.312,2.54,1.345,2.868,5.551,3.265,1.324,1.332,3.024,1.737,2.564,2.567,5.151,3.848,3.708,1.468,1.729,2.13,3.098,3.072,6.3,19.706,40.27,30.245,34.554,25.273,0.188,11.466,0.052,12.824,1.513,17.043,5.12,4.491,3.856,3.142,4.634,20.909,5.186,5.49,13.097,3.584,3.213,3.648,2.911,3.096,3.169,3.191,1.956,6.219,1.191,2.828,6.126,12.328,11.287,6.773,6.228,4.039,3.418,3.405,3.792,4.088,14.475,3.722,2.878,2.66,2.962,3.216,3.262,3.472,3.428,3.711,3.073,2.775,2.652,3.152,23.347,62.301,37.083,4.268,3.237,3.392,4.019,7.55,0.267,3.991,0.803,0.637,3.813,0.889,1.548,2.412,2.542,3.953,2.387,2.179,2.044,2.132,3.998,1.905,0.176,17.229,3.398,2.773,2.244,2.96,1.927,2.246,1.944,2.664,3.564,2.663,5.842,13.665,8.261,24.597,2.188,28.348,7.198,37.735,15.068,14.862,3.504,4.613,3.401,71.898,9.263,6.627,5.292,4.57,4.607,4.63,4.554,4.462,6.795,2.797,3.984,2.759,2.527,1.522,1.491,1.521,1.535,2.582,2.571,2.578,1.26,1.244,1.097,1.978,1.974,2.096,0.983,0.291,0.223,2.698,3.218,3.283,2.942,2.99,2.348,2.582,1.873,2.136,1.368,1.589,3.163,1.987,1.199,2.639,5.532,13.743,4.888,4.315,3.876,3.773,3.953,4.195,4.235,2.523,2.607,4.537,4.981,5.8,13.293,13.301,47.275,3.669,2.57,2.895,5.789,2.512,20.613,0.512,0.078,1.801,0.98,6.68,2.45,6.738,2.66,4.979,18.476,54.002,27.484,21.618,5.061,2.843,3.453,3.325,2.367,3.241,3.364,5.168,4.739,2.027,3.854,1.947,0.588,0.309,3.656,2.91,1.34,2.645,3.429,2.04,2.393,2.4,3.296,1.561,1.541,1.298,1.47,4.852,3.341,2.26,2.141,2.043,4.176,4.15,4.811,7.43,9.262,87.446,5.151,42.727,17.109,22.352,2.316,19.961,22.851,18.889,1.635,1.518,3.481,2.844,3.022,0.042,4.068,4.342,2.067,2.814,3.228,7.705,3.357,3.734,6.319,8.56,6.563,10.079,7.499,7.466,8.611,3.522,4.08,3.307,3.502,3.584,3.824,5.113,8.417,6.822,3.213,3.302,3.425,3.784,8.623,6.255,5.237,5.293,11.212,5.241,5.679,2.661,2.526,2.621,3.13,2.709,3.216,3.085,3.274,5.425,5.914,5.828,5.561,3.204,3.599,6.013,4.004,3.805,6.935,7.891,5.965,6.014,2.525,4.062,2.891,3.114,3.091,1.273,2.126,1.473,1.429,1.658,1.786,5.882,5.192,4.285,2.015,2.462,4.239,4.759,4.239,4.073,4.393,3.733,3.925,3.327,4.284,2.813,4.743,4.021,2.648,2.77,4.268,2.118,2.381,4.853,4.586,3.626,4.02,5.075,4.449,4.446,2.496,2.033,4.32,2.276,2.557,3.126,2.236,2.969,4.756,2.829,0.416,0.676,6.188,3.714,15.585,6.175,1.851,0.825,6.176,0.453,2.727,1.223,6.286,1.639,4.457,4.047,20.269,10.213,10.072,4.654,5.497,1.943,1.401,0.042,2.712,4.57,5.171,3.809,4.333,4.433,5.171,8.199,2.359,3.27,2.275,2.281,2.056,2.477,2.173,2.806,1.59,1.873,2.413,2.802,2.873,2.306,1.816,2.629,3.629,2.439,4.57,4.268,5.037,3.698,2.371,1.672,3.848,2.749,1.86,2.32,3.076,4.367,1.667,2.047,2.344,2.163,1.907,1.559,1.577,1.655,1.95,0.07,1.356,1.775,1.642,2.761,3.193,1.885,3.241,2.297,2.089,2.057,1.951,1.99,1.721,1.198,2.155,1.747,1.597,2.173,2.054,2.547,1.863,1.31,1.411,1.832,1.362,1.735,0.919,1.542,2.565,1.395,1.294,0.974,1.425,1.32,1.446,2.129,2.196,1.797,1.885,2.768,2.902,1.617,1.221,1.704,1.131,0.795,1.76,2.162,9.637,3.618,1.888,1.14,1.213,2.001,2.05,3.322,1.749,1.496,1.472,1.725,1.841,1.219,1.593,4.014,3.31,1.47,1.344,1.571,2.823,1.656,2.188,3.004,2.014,2.516,3.445,2.381,2.262,2.494,2.885,3.698,4.063,3.766,4.268,4.73,4.138,4.087,4.16,4.003,4.078,4.775,3.168,0.914,4.162,4.518,4.245,4.526,4.32,3.953,2.645,2.037,3.353,3.587,1.767,0.873,1.281,0.902,0.873,1.205,0.612,2.953,2.108,1.445,1.617,1.298,1.21,0.916,0.876,1.269,0.863,0.848,0.87,0.833,0.865,0.872,1.316,1.065,1.058,1.312,1.293,1.708,1.279,1.3,1.261,0.874,1.286,1.309,0.84,0.846,1.052,1.098,1.295,1.292,1.298,1.18,1.313,2.109,2.185,0.808,0.87,1.072,1.124,0.909,1.215,1.288,1.288,1.243,1.38,1.35,0.967,1.353,1.385,1.37,1.732,1.329,1.537,1.425,1.213,0.849,0.112,0.341,1.023,0.646,0.686,1.388,0.944,1.012,0.908,0.934,1.374,3.881,4.074,17.961,2.363,0.786,0.943,1.047,0.95,1.006,0.701,0.755,1.482,1.477,0.972,0.985,1.002,1.145,0.803,0.748,1.764,1.431,1.004,1.119,1.281,0.956,0.974,1.429,1.112,2.835,0.617,0.882,0.899,0.898,0.727,0.756,1.079,1.078,1.033,1.096,1.25,1.148,1.265,1.309,1.021,0.919,0.996,1.286,3.557,0.523,1.873,1.438,0.931,1.231,1.187,0.968,0.935,0.952,0.955,0.877,0.907,1.005,0.902,0.964,0.96,1.141,0.617,2.998,1.877,1.423,1.464,1.366,3.339,3.414,3.407,1.405,3.124,2.316,2.602,3.102,3.348,4.23,4.221,4.496,16.458,3.527,4.815,5.843,2.377,3.295,7.193,7.703,5.105,2.145,2.337,1.836,1.461,1.051,2.512,2.013,2.047,3.271,6.727,6.394,3.401,3.589,11.24,3.607,2.365,2.368,2.257,2.378,2.323,2.156,2.679,2.085,2.715,2.575,2.769,5.553,3.067,2.857,2.546,2.426,2.222,5.607,3.598,3.362,2.997,0.074,1.901,2.346,2.66,2.674,3.276,3.234,2.447,2.774,2.353,2.398,2.389,2.408,2.751,3.14,2.335,0.582,2.284,0.868,1.739,1.215,0.373,1.686,1.758,2.92,6.693,2.945,5.622,4.303,4.856,7.187,7.397,7.977,7.702,0.367,6.145,1.622,2.027,1.242,1.123,1.858,2.212,2.209,2.79,2.67,2.848,3.516,2.673,3.181,2.737,3.1,3.696,3.237,3.318,3.555,4.025,3.026,2.268,2.783,3.558,3.064,2.545,2.691,2.235,2.663,4.038,1.766,2.653,2.764,10.747,0.024,2.507,1.602,1.018,2.92,3.335,1.505,4.547,2.869,2.86,8.367,2.484,2.3,1.47,1.432,1.768,1.637,2.14,2.059,3.993,3.147,2.695,1.941,1.381,1.74,6.648,3.531,2.712,2.895,2.793,6.465,2.184,2.12,1.937,1.733,2.063,4.206,4.514,2.569,1.813,1.879,3.78,2.448,3.304,2.089,2.25,2.818,4.035,3.151,3.087,3.398,4.228,6.039,4.069,1.656,1.413,1.142,5.497,3.482,3.627,3.155,4.041,3.605,3.161,2.495,2.535,2.117,5.659,3.198,2.692,2.467,1.961,3.872,8.805,3.047,8.337,6.732,4.015,3.987,3.938,3.69,3.08,3.644,4.706,4.44,8.134,3.182,2.982,2.883,1.249,2.573,3.088,1.766,2.372,3.624,2.851,3.303,3.32,3.309,3.516,3.484,3.528,3.226,3.664,3.31,3.22,7.512,6.681,4.053,4.133,3.671,4.329,4.14,5.36,6.03,7.053,7.755,9.337,4.385,1.258,1.991,5.071,6.657,6.046,2.817,2.238,5.224,2.088,2.754,2.807,2.512,4.253,3.931,3.72,3.64,4.571,6.432,4.189,3.337,3.541,3.548,3.031,3.281,3.191,6.467,3.045,3.274,3.665,7.398,4.12,3.379,5.225,3.693,3.225,4.835,5.579,1.934,3.146,3.734,3.833,3.455,3.751,4.478,4.186,4.044,8.084,3.852,0.238,1.945,3.532,2.879,1.711,0.838,1.014,0.519,2.663,1.234,1.321,1.67,1.258,2.398,2.914,2.915,1.343,7.862,1.664,1.44,2.639,3.102,3.477,5.289,1.516,2.195,2.508,1.891,2.6,1.609,0.041,1.422,1.134,1.545,0.671,1.581,1.405,1.076,0.809,1.175,1.391,1.368,1.218,1.257,1.346,1.126,1.102,1.448,1.322,1.069,0.963,1.387,1.402,1.424,0.701,1.066,1.508,1.453,1.338,0.86,0.855,1.048,0.828,0.937,1.31,1.381,0.896,1.164,0.948,1.105,1.098,1.191,1.273,1.241,1.169,0.763,1.151,0.912,1.133,1.114,1.063,1.071,1.084,1.254,0.845,0.698,0.875,1.407,2.194,1.738,1.35,1.003,1.011,1.306,1.221,1.203,0.928,1.109,1.178,0.955,1.126,1.131,1.236,0.697,1.123,0.908,1.132,1.145,1.14,1.049,1.36,1.121,0.929,1.183,1.199,1.217,1.068,1.45,1.415,1.214,1.299,1.449,1.233,1.006,0.868,1.239,1.252,0.85,1.218,1.156,1.205,1.287,1.415,1.123,1.018,1.064,1.208,1.088,0.709,0.816,1.133,0.74,0.939,0.771,0.87,1.407,1.127,0.79,1.246,1.069,1.046,0.871,0.181,0.674,1.184,1.135,0.563,0.722,0.761,0.756,0.666,1.009,0.829,0.91,0.91,0.794,0.543,0.868,1.176,1.34,1.102,0.831,0.497,0.607,0.595,0.651,0.687,0.717,0.6,0.897,0.9,0.923,1.132,0.692,0.533,1.069,0.928,1.59,1.519,1.025,1.024,0.818,0.742,0.969,0.954,0.762,0.746,0.996,1.043,0.962,0.983,1.029,0.929,1.123,1.507,0.969,0.222,1.166,1.294,0.566,0.382,1.126,0.825,0.164,0.912,1.501,1.537,2.02,1.524,1.031,1.164,1.103,0.708,0.875,0.922,0.689,0.844,0.946,1.053,0.952,1.048,1.033,1.06,1.435,2.614,1.034,1.006,1.133,0.918,1.016,1.022,0.914,0.599,1.165,3.53,4.319,0.768,2.932,6.925,1.791,4.083,0.234,7.662,7.874,2.212,8.975,7.865,9.145,5.663,5.483,2.338,4.961,3.726,2.686,2.339,2.09,1.939,1.652,1.442,1.097,0.918,1.413,0.952,1.089,0.656,0.262,0.99,1.03,0.872,0.794,0.798,0.974,0.745,0.976,1.411,1.744,0.582,0.843,0.934,1.113,0.645,0.725,0.747,0.735,0.816,0.689,0.698,0.725,0.995,0.809,0.801,1.238,0.77,0.835,1.01,1.111,0.701,0.682,1.032,1.487,0.926,0.957,1.059,0.869,1.061,0.657,0.727,0.642,0.895,0.578,0.841,0.589,0.655,0.757,1.035,0.884,0.381,0.465,0.725,0.794,0.867,0.965,1.6,1.527,1.511,1.524,1.568,1.841,1.865,0.989,0.983,1.337,1.385,1.359,1.648,1.583,1.647,1.775,1.868,1.972,1.916,1.854,1.33,1.686,1.34,1.475,1.241,0.622,1.039,0.946,1.433,1.052,1.213,1.488,1.566,1.491,1.482,1.147,1.565,1.936,1.432,0.355,0.824,2.162,1.217,0.711,0.949,1.164,1.36,1.149,1.515,1.205,1.224,1.456,1.087,1.207,1.216,0.938,1.042,1,0.736,0.709,1.332,1.314,1.234,0.377,1.605,1.533,0.625,1.165,0.944,1,1.727,1.867,2.377,1.493,2.005,1.899,2.746,2.677,2.907,2.214,0.661,1.744,1.044,1.038,1.03,1.23,1.067,1.005,1.67,0.177,1.134,1.254,1.302,1.037,1.061,1.029,1.155,0.674,0.268,0.833,2.344,2.302,2.703,0.495,2.648,2.218,1.999,1.711,2.024,1.868,2.318,1.94,2.115,1.857,1.423,1.935,1.57,1.767,1.945,2.549,2.047,2.185,1.396,0.667,2.069,2.727,1.494,2.132,1.402,1.393,4.253,1.557,3.341,2.506,4.233,3.821,3.99,2.836,2.218,2.533,2.354,3.133,2.375,1.219,3.427,2.718,2.724,2.934,3.613,2.484,1.431,0.404,1.039,0.084,1.341,1.468,3.441,1.71,2.516,2.493,1.191,0.989,1.822,1.931,1.894,2.639,2.803,1.767,2.041,1.771,3.466,2.203,2.228,0.047,2.135,2.578,2.762,5.469,3.969,2.769,1.351,1.224,2.382,0.59,5.609,3.751,4.443,3.72,2.94,1.873,1.904,4.518,0.322,1.224,3.363,2.442,2.067,1.88,1.93,3.266,1.869,1.634,1.851,1.47,1.292,1.914,2.514,1.947,0.971,1.233,1.107,2.358,1.783,3.134,0.411,1.77,2.517,2.048,1.663,1.216,2.176,2.985,2.037,2.131,2.057,2.154,2.861,2.562,5.359,1.143,3.558,5.227,4.669,4.722,0.9,1.911,1.347,2.473,2.237,3.711,3.518,4.009,3.511,2.327,2.235,2.231,2.701,1.733,0.437,2.402,2.569,2.572,3.566,1.711,3.463,2.459,2.83,2.466,2.553,1.61,1.601,1.702,1.676,1.275,2.61,2.871,3.127,3.708,2.633,5.115,3.193,0.637,2.902,1.508,2.693,2.205,2.62,2.076,1.993,1.802,3.8,1.295,1.254,1.899,3.089,4.34,1.132,0.913,1.064,0.89,1.486,1.579,1.396,1.296,1.291,1.179,3.894,3.977,2.389,2.101,2.339,1.849,4.06,3.125,3.502,1.864,2.402,2.081,1.979,1.933,1.002,1.579,1.813,2.391,2.299,1.517,0.742,2.859,1.187,0.361,2.807,1.869,1.886,2.407,1.446,1.232,1.326,1.253,1.225,0.367,0.881,0.688,0.853,0.502,0.502,1.129,1.076,1.954,2.431,1.504,1.497,1.652,1.409,1.399,2.075,1.567,1.052,0.869,1.111,0.828,1.165,1.195,1.367,0.814,1.391,1.232,1.268,1.399,1.389,1.105,2.703,1.552,1.402,1.434,1.355,1.831,2.841,1.472,1.461,1.828,2.927,2.133,1.733,1.506,1.755,0.234,1.993,0.323,1.7,1.821,1.773,1.583,2.807,3.084,3.214,2.606,2.053,2.008,1.745,1.717,2.45,2.493,2.296,2.346,2.417,2.523,1.546,2.192,2.752,3.589,2.835,2.746,2.844,2.22,3.401,3.525,2.45,2.736,2.375,2.119,1.763,2.74,1.239,1.179,1.236,1.53,1.126,1.731,1.723,1.796,1.562,1.528,1.363,1.268,1.245,1.096,1.161,1.524,1.458,2.328,4.252,1.933,2.193,6.124,3.858,4.831,1.757,1.551,1.553,0.982,2.399,2.516,2.267,3.29,0.115,2.031,2.238,1.588,0.731,0.684,1.234,0.737,0.747,1.006,1.613,1.396,0.735,0.921,1.059,1.219,1.226,1.077,0.948,1.165,1.369,1.561,1.272,1.045,1.025,0.947,1.205,1.198,1.202,0.55,0.505,1.519,1.152,1.323,0.122,1.319,1.489,3.008,5.671,3.404,3.34,4.473,4.37,1.957,1.484,1.524,1.484,1.867,3.164,1.408,1.557,1.772,4.273,1.712,1.458,1.395,1.143,1.538,1.698,1.621,1.028,1.261,1.66,1.079,1.482,1.497,2.578,1.704,0.303,1.779,1.34,0.355,1.602,1.973,1.141,1.216,0.752,2.077,1.321,1.281,1.266,1.569,2.059,1.523,1.549,1.432,1.579,1.453,1.774,1.525,2.172,1.107,1.108,2.055,0.282,2.234,9.506,10.455,8.564,5.6,13.305,6.04,0.847,1.364,1.777,1.348,1.181,2.842,0.766,1.891,2.091,3.08,2.094,0.359,1.008,1.085,0.632,0.595,1.157,1.341,1.114,1.233,1.134,1.328,1.055,1.718,1.526,1.162,1.171,1.089,1.542,1.144,1.235,1.499,1.291,1.904,1.645,2.119,1.478,2.01,1.789,2.046,2.797,1.33,1.727,1.603,1.807,1.337,1.541,1.456,1.71,1.198,0.926,1.493,0.617,0.523,0.95,0.779,0.925,1.726,1.299,1.773,2.501,1.21,1.223,1.314,1.235,1.178,1.319,1.064,3.609,1.112,0.834,1.794,1.684,1.682,1.604,2.248,2.426,1.762,1.543,1.671,1.705,1.765,2.219,1.742,2.213,2.013,2.817,2.263,2.527,1.113,2.142,3.191,1.803,2.378,4.078,2.229,1.198,1.583,2.156,5.207,5.177,4.686,5.328,2.152,4.362,1.426,0.256,1.554,1.618,1.256,1.561,1.514,1.21,3.086,1.133,0.973,0.804,1.671,1.055,1.289,1.344,1.692,1.632,1.315,1.559,1.55,1.508,1.639,1.897,1.93,1.84,1.613,1.269,1.259,0.429,1.793,1.554,1.287,1.954,1.355,1.605,1.534,1.236,0.412,0.188,0.907,0.986,2.039,1.469,0.848,1.23,1.387,1.479,1.847,1.601,1.206,1.251,1.747,1.407,1.392,2.318,2.108,0.28,1.475,0.647,0.832,0.176,2.693,1.231,1.175,1.241,1.373,1.639,1.413,1.205,1.62,1.525,1.632,1.42,1.483,1.565,1.528,1.662,1.183,1.161,1.342,1.446,0.902,0.813,0.835,0.873,0.911,1.285,1.008,1.069,1.436,0.926,0.679,1.007,0.786,0.687,0.704,0.697,0.79,0.695,0.66,0.657,0.573,0.715,0.682,1.356,1.457,1.154,1.309,0.832,0.909,0.753,0.583,0.718,0.796,0.755,0.813,0.597,0.797,0.925,0.706,0.751,0.687,0.672,0.69,0.702,0.845,0.857,0.626,0.433,0.502,0.601,0.597,0.412,0.443,0.898,0.953,0.916,0.821,0.846,0.667,0.836,0.658,0.76,0.995,1.022,0.971,0.645,0.528,0.694,0.906,0.626,0.78,0.725,0.801,0.668,0.735,0.776,0.991,0.985,1.136,1.291,1.062,1.034,0.578,1.296,0.684,0.82,0.919,0.823,0.716,0.847,1.057,1.105,0.935,0.599,0.609,0.658,0.488,0.572,0.625,0.627,0.699,0.74,0.887,0.98,0.943,0.867,0.701,0.688,0.667,0.71,0.781,0.678,0.737,0.539,0.632,0.65,0.687,0.266,1.143,2.005,0.897,0.862,0.574,3.637,1.363,0.995,1.418,1.248,0.988,1.375,1.263,0.966,1.248,0.756,1.046,0.56,1.522,0.876,0.859,0.799,0.761,1.319,0.901,0.456,0.765,2.318,0.768,1.492,1.419,1.74,1.386,1.188,1.765,1.394,1.196,0.96,1.252,1.036,0.958,0.962,0.797,0.852,0.971,0.819,0.499,1.132,1.2,1.153,0.869,1.524,1.136,1.072,0.824,0.93,0.786,1.011,0.857,0.981,0.985,1.321,1.008,0.602,0.747,0.604,0.535,0.694,0.601,0.481,0.669,0.81,0.684,0.868,0.726,0.828,0.858,0.748,0.787,0.819,0.952,0.982,1.184,0.749,0.844,0.686,1.033,0.926,0.838,0.984,0.772,0.553,0.894,1.019,0.901,0.796,0.775,0.695,0.768,0.732,0.977,0.713,1.011,0.696,0.525,0.548,1.158,1.575,1.295,0.923,0.917,0.966,1.537,0.936,0.754,0.991,0.956,0.966,0.984,0.872,0.944,0.756,0.7,0.511,0.613,0.88,0.895,0.821,0.672,0.642,0.918,0.945,0.781,0.844,0.774,0.642,0.724,1.023,0.588,0.812,0.875,0.901,1.025,0.88,0.625,0.665,0.659,0.851,0.619,0.64,0.732,1.09,0.51,0.448,0.48,0.592,0.779,0.624,0.991,0.887,0.818,0.83,1.222,0.912,0.827,0.687,0.333,0.591,0.759,0.643,0.679,0.948,1.079,1.023,0.754,0.836,0.869,1.219,1.101,0.983,0.63,2.447,2.089,1.392,1.201,1.891,1.056,0.655,1.487,0.675,1.277,1.122,0.86,0.795,0.823,0.93,1.064,0.452,1.265,1.337,1.316,0.986,0.869,1.266,1.634,1.88,1.813,2.749,2.163,2.064,0.372,1.07,0.73,1.703,2.251,0.636,0.422,1.265,2.082,2.05,2.069,1.436,2.779,7.833,4.524,5.033,2.961,0.635,1.255,1.384,1.332,1.145,1.401,1.913,2.504,1.082,1.158,0.975,0.939,1.008,1.057,1.038,1.185,1.408,1.076,1.095,0.933,1.084,1.037,1.317,1.067,1.304,1.018,1.278,1.368,1.171,1.121,0.886,0.869,0.693,0.659,0.571,1.014,1.103,0.708,1.464,1.351,1.541,1.484,1.376,1.367,0.821,1.655,1.813,1.849,2.058,2.241,0.71,2.227,1.212,1.982,0.446,0.711,2.302,2.12,2.079,2.556,1.862,1.575,1.647,1.046,1.183,2.641,1.152,1.915,0.745,1.052,1.473,2.881,1.251,1.346,1.115,0.815,1.038,2.057,1.819,1.335,1.165,0.878,2.205,1.85,1.845,1.294,1.73,1.035,1.388,1.333,2.244,1.636,2.124,0.678,2.673,4.477,1.541,1.015,1.032,1.559,1.01,0.617,0.756,0.618,0.955,0.922,1.005,0.888,0.897,0.771,0.718,0.815,1.195,1.154,1.092,1.196,1.132,1.19,0.955,0.691,1.67,1.022,1.006,1.165,2.104,1.704,1.722,1.049,1.4,1.688,1.732,1.426,1.448,1.481,1.304,1.139,0.815,1.249,1.314,1.307,1.629,2.465,2.003,1.944,0.817,0.735,1.705,0.872,0.606,1.675,1.676,0.802,0.977,2.004,1.153,1.154,0.901,0.613,0.581,0.844,1.132,0.75,0.958,1.853,2.161,0.821,1.012,0.847,0.772,1.079,0.957,0.988,0.711,1.096,1.124,1.166,2.522,1.232,1.04,1.264,1.41,1.01,1.406,1.711,1.8,1.808,2.009,1.345,1.395,0.743,1.405,1.108,1.228,0.87,1.508,1.361,1.583,1.66,2.369,1.507,1.902,2.73,1.438,1.157,0.904,1.181,1.274,1.109,1.092,0.896,0.831,0.909,0.782,0.999,1.278,1.307,1.148,0.951,0.887,0.878,0.833,0.804,0.832,1.105,0.829,0.814,0.956,1.002,0.96,1.15,1.401,0.942,1.103,0.984,1.638,1.05,1.21,1.813,0.867,0.988,1.062,0.352,0.256,0.636,0.504,0.567,0.321,0.334,0.846,1.333,1.029,0.866,0.749,0.881,0.935,1.171,0.469,0.559,1.151,0.736,0.81,0.274,1.055,1.723,0.516,0.513,1.208,1.866,1.192,1.315,1.66,2.104,2.35,1.846,2.801,2.539,1.299,1.623,1.018,1.206,1.798,1.471,1.49,3.091,1.984,1.305,1.77,1.28,0.905,1.324,1.367,1.316,1.667,0.892,1.057,1.069,0.923,1.201,1.221,1.237,0.564,0.465,0.92,1.162,0.875,1.476,0.555,1.062,1.421,1.096,1.269,1.589,1.323,0.926,0.948,0.918,0.714,0.732,0.9,2.433,1.732,1.247,0.881,1.016,0.834,1.133,1.462,1.727,1.774,0.872,1.7,1.219,1.105,0.252,1.357,1.863,0.226,1.97,0.982,0.947,0.9,0.865,1.109,1.053,0.994,0.62,1.038,0.866,0.862,0.709,0.938,0.848,1.051,1.08,1.06,1.941,1.004,0.866,0.62,0.611,0.662,0.743,1.063,0.637,0.257,0.67,0.803,0.514,0.607,0.955,0.944,1.114,1.609,1.512,1.084,0.826,0.612,0.69,0.474,0.631,1.624,2.007,1.772,2.098,1.702,1.122,1.044,1.157,1.167,1.259,1.29,1.405,1.31,1.651,1.201,1.273,0.916,0.828,1.095,0.533,0.662,1.228,0.973,1.209,1.595,1.226,1.317,1.332,1.009,1.22,0.656,0.449,0.949,1.018,1.389,1.221,1.345,1.356,1.334,1.269,1.658,1.209,1.349,2.26,1.979,1.268,1.227,1.397,1.466,0.771,0.768,2.72,2.807,2.107,0.559,0.907,1.182,1.164,0.539,0.948,1.046,0.807,0.64,0.843,1.009,1.075,0.829,0.976,0.928,1.138,1.246,0.815,0.915,1.011,0.752,0.783,2.746,1.314,1.408,1.823,1.26,1.234,1.045,1.116,1.147,1.212,0.905,0.857,0.817,1.276,1.165,1.195,1.057,1.204,1.394,1.22,1.908,1.037,1.18,1.06,2.556,1.171,1.162,1.175,1.604,1.64,3.347,2.233,2.219,2.194,2.223,2.455,1.947,5.383,13.366,6.452,6.135,2.023,5.93,0.781,82.492,2.61,1.508,1.643,1.905,2.182,2.892,2.752,6.667,11.996,18.775,3.465,3.191,2.435,2.486,3.891,3.844,1.875,1.863,1.308,1.334,2.704,1.392,1.484,0.748,0.814,1.006,0.65,1.452,1.495,0.6,0.993,3.401,2.549,2.533,1.635,1.63,1.974,1.905,2.609,2.621,2.64,2.621,5.684,3.79,5.272,5.485,4.813,20.703,5.285,4.398,4.336,4.552,1.522,1.623,1.374,2.957,2.959,1.505,1.401,3.028,3.544,0.352,1.398,1.721,1.567,1.512,1.476,1.49,1.475,1.486,2.42,2.472,1.715,1.724,3.426,1.535,1.537,1.475,1.532,2.738,2.8,3.343,0.362,2.523,0.357,2.203,0.331,1.665,0.217,2.157,2.234,2.269,2.204,0.917,1.366,0.719,1.786,2.301,2.332,2.151,2.365,2.429,0.894,1.589,2.344,4.016,4.186,0.209,2.045,0.915,3.154,3.206,2.352,3.89,1.214,1.396,1.484,0.719,1.456,2.029,2.063,1.694,26.719,1.629,1.798,1.057,0.699,2.099,1.788,0.883,0.677,2.438,0.907,1.461,1.231,1.4,1.318,1.684,2.098,2.947,2.174,1.623,1.523,1.552,1.062,1.521,1.54,1.346,1.674,1.504,1.467,0.056,1.271,1.069,1.142,2.091,2.093,5.7,4.45,2.124,2.244,2.004,2.953,2.107,1.585,1.63,2.942,8.14,3.481,3.218,2.91,3.453,2.502,2.752,2.288,1.622,3.44,4.98,4.339,1.96,1.874,1.446,2.097,4.123,2.699,2.927,5.863,2.458,1.436,1.528,1.476,1.732,1.729,1.739,1.536,2.684,1.617,3.101,1.721,1.671,1.614,0.989,1.239,1.352,0.248,1.625,1.895,2.386,2.947,0.805,1.579,1.592,2.192,2.298,1.045,1.548,1.288,1.757,1.552,2.047,3.758,3.042,2.354,2.947,1.098,1.191,1.842,1.218,0.753,0.612,1.029,1.3,2.309,1.026,1.346,1.336,1.109,1.183,0.718,0.444,0.72,0.477,5.035,1.46,1.564,0.308,1.235,1.545,3.467,1.176,1.122,1.375,1.135,1.314,1.456,1.036,1.516,1.448,4.555,1.654,1.545,0.886,1.244,1.086,0.561,1.173,1.19,1.178,0.965,2.679,5.105,3.659,1.781,2.525,2.079,1.811,2.526,1.107,0.39,0.793,1.7,1.006,1.132,1.347,1.199,1.029,1.898,1.158,1.23,1.077,1.282,1.621,1.426,1.144,1.122,2.477,1.084,1.593,1.674,1.859,2.046,1.473,1.565,1.739,1.898,1.773,1.12,0.99,1.287,1.098,1.14,1.056,1.181,1.605,0.987,0.94,0.93,1.25,1.008,0.975,1.691,1.106,1.401,1.462,1.137,1.152,1.587,2.074,6.607,2.004,1.881,1.166,1.79,2.21,1.792,2.248,1.255,1.526,2.514,2.28,1.913,3.384,6.725,3.882,3.887,2.373,1.922,2.125,1.332,0.566,0.843,2.409,1.787,1.726,1.255,1.512,1.402,1.526,2.11,1.605,1.665,3.339,3.311,3.417,2.254,2.368,2.128,0.886,1.045,1.291,1.458,1.929,3.164,2.64,2.703,2.56,2.935,2.078,4.348,3.462,2.884,1.697,2.048,1.438,2.073,3.274,64.069,7.635,7.484,3.345,2.799,2.294,3.783,3.574,1.897,3.307,2.008,2.252,1.901,2.16,8.564,1.846,1.712,1.416,1.541,1.125,1.782,2.557,0.832,1.45,1.314,1.313,1.172,0.734,1.904,1.813,3.807,2.558,2.788,2.39,2.367,1.765,1.965,1.532,1.702,2.243,2.492,2.624,2.208,1.021,1.14,2.048,2.662,1.994,0.999,2.983,3.412,0.063,0.547,11.377,5.333,5.406,4.559,4.989,8.868,7.033,7.137,3.312,1.845,2.384,1.597,1.533,3.134,1.866,1.892,1.775,1.729,3.362,0.069,1.503,2.586,0.992,3.058,2.242,2.279,1.504,1.613,2.232,1.51,1.512,1.449,3.008,2.175,1.284,1.403,2.633,1.773,1.735,6.872,2.869,3.269,3.915,3.408,0.233,5.977,3.642,3.03,5.045,3.275,3.253,4.18,4.824,3.311,3.486,3.143,3.191,3.421,2.384,2.753,3.012,2.65,4.224,5.09,4.022,6.822,2.321,2.297,2.502,2.601,2.37,1.396,2.173,2.575,2.218,3.781,4.156,4.734,3.289,7.119,5.842,0.82,0.922,7.82,4.028,2.255,1.375,1.997,1.02,0.33,1.25,1.538,1.699,1.726,1.848,1.608,1.852,8.393,2.328,1.346,5.352,2.18,3.69,1.985,1.63,1.444,1.304,1.034,1.624,0.845,1.086,1.534,1.922,1.215,0.622,1.175,1.243,0.974,0.838,1.051,0.269,0.556,0.947,1.216,1.124,0.992,0.805,0.932,1.135,0.959,0.811,0.675,0.815,1.128,1.25,0.756,0.941,0.744,0.76,0.805,0.777,0.691,0.788,1.186,1.783,0.854,0.767,0.786,0.754,0.813,1.041,1,3.803,3.624,1.69,1.937,4.454,6.57,8.469,2.499,1.484,4.671,4.555,3.214,3.353,4.523,4.643,3.44,1.889,1.031,2.03,3.204,0.656,1.722,1.957,4.147,4.043,5.088,4.858,0.747,2.488,4.015,8.649,0.992,1.778,1.521,1.4,1.081,2.029,5.277,1.804,0.8,1.018,1.287,1.468,4.075,1.413,1.612,1.973,2.08,4.006,6.579,9.692,3.059,0.841,1.96,2.343,3.132,2.468,1.467,1.656,2.564,2.633,2.508,2.274,2.877,0.539,3.612,1.845,2.455,2.406,2.611,2.06,2.501,2.083,1.789,2.298,2.213,2.004,3.295,2.053,5.765,3.397,3.51,2.951,2.872,2.783,2.636,2.647,2.801,2.868,2.894,2,2.285,3.957,2.336,2.296,2.798,3.566,2.881,1.779,1.653,3.012,0.203,6.434,4.434,2.218,0.961,1.707,2.056,2.254,6.124,1.745,5.819,2.498,2.279,1.255,1.139,2.342,2.105,2.272,2.022,1.634,1.605,1.549,1.97,2.289,2.398,2.197,1.734,1.843,1.602,1.335,1.781,1.649,2.863,1.818,2.645,1.667,1.299,2.422,1.381,1.581,1.671,1.796,2.07,2.363,2.94,3.716,2.047,2.499,1.152,1.666,1.252,1.685,1.244,1.629,1.924,2.096,1.79,1.852,2.532,2.64,2.33,3.149,2.236,3.16,3.519,3.133,3.196,3.243,3.268,3.003,2.944,1.776,2.956,0.609,6.482,6.267,7.33,6.46,9.095,4.597,17.341,14.538,17.862,0.825,3.634,5.812,4.689,1.633,0.2,1.885,1.691,3.441,3.228,4.471,1.476,1.658,1.928,1.979,1.369,1.505,3.16,5.021,5.882,2.251,2.369,6.623,7.63,3.547,3.315,3.366,2.547,1.573,1.492,1.96,2.468,0.259,2.322,2.107,1.859,2.562,2.654,5.159,5.143,6.284,2.961,1.331,1.672,4.936,2.113,4.847,3.915,3.29,3.329,1.514,1.289,2.634,5.796,3.422,3.469,3.637,3.523,7.254,7.71,2.492,13.675,5.112,3.637,1.7,2.891,0.251,3.05,1.824,3.009,0.633,1.069,1.942,2.223,1.289,2.976,1.462,1.697,1.795,1.814,2.679,1.283,1.099,1.197,1.887,2.52,2.469,2.509,2.43,2.974,2.539,2.76,2.905,2.311,2.602,3.013,4.692,1.102,4.764,3.831,3.866,7.824,10.238,1.109,14.327,7.256,3.45,3.752,3.458,2.631,2.679,1.924,1.694,1.808,2.063,2.226,2.041,2.247,2.952,1.347,1.527,1.725,1.883,3.951,2.007,2.402,2.335,3.174,2.253,2.252,1.822,1.741,1.186,1.104,2.708,1.585,0.923,2.757,6.062,3.992,6.91,2.173,1.037,0.979,0.706,0.733,1.147,1.101,0.978,0.983,0.617,0.742,1.034,0.732,1.095,1.305,0.895,0.834,1.393,1.563,1.723,1.378,1.335,1.212,1.088,1.034,1.23,1.206,0.722,0.601,0.606,0.706,1.167,0.559,0.682,0.968,1.004,1.126,0.663,1.317,2.148,6.361,3.374,1.512,1.204,1.107,1.068,1.325,1.429,1.285,1.433,0.844,1.039,1.4,1.243,0.7,0.664,1.087,1.173,2.135,2.022,0.499,3.323,3.428,1.872,2.039,1.92,1.967,1.254,1.425,1.371,1.314,1.617,1.207,0.988,2.531,2.812,2.007,2.343,1.947,2.119,1.744,1.556,1.796,1.747,1.409,2.739,0.742,4.711,2.486,2.211,2.684,2.532,2.035,2.491,2.367,1.537,2.019,1.627,2.4,2.304,2.5,2.094,2.34,2.269,1.404,1.481,1.732,1.474,1.982,4.634,4.496,2.202,2.173,3.296,2.74,2.24,2.15,2.731,2.011,2.437,2.287,1.394,1.882,1.875,2.116,1.414,0.608,2.273,2.324,1.359,1.221,1.83,2.185,2.92,3.364,2.117,4.723,3.567,2.016,4.625,4.061,4.299,0.805,0.484,3.499,4.335,1.967,4.491,2.662,5,3.499,4.984,4.141,3.44,3.172,4.116,6.059,4.586,3.513,3.96,3.782,2.039,0.41,1.414,3.107,3.306,3.241,2.672,2.566,1.21,0.418,0.241,2.197,1.868,1.64,1.571,1.665,2.023,1.623,1.699,2.201,2.433,2.605,2.413,0.93,0.788,1.817,1.691,5.5,3.573,5.951,3.761,3.892,4.07,4.041,4.526,5.492,5.829,5.522,4.693,4.44,4.542,4.471,4.38,3.639,4.693,4.145,3.895,4.075,0.187,3.659,4.103,2.824,2.962,3.433,3.416,3.082,3.706,2.23,0.7,2.747,3.458,2.635,2.818,2.953,2.994,2.386,3.041,2.627,2.226,1.927,1.766,1.731,1.874,2.575,2.651,2.187,2.508,2.173,2.681,2.762,2.768,2.405,2.078,1.496,1.593,1.689,2.457,1.265,1.369,0.961,1.432,1.709,1.748,1.643,1.076,1.334,1.502,1.68,1.667,1.98,1.785,2.074,2.662,2.222,2.573,2.365,2.189,2.669,2.715,2.79,2.583,2.532,2.55,2.478,2.473,2.796,2.326,3.15,2.279,2.406,1.771,2.019,2.209,2.294,3.097,2.741,1.589,1.234,0.43,1.077,0.994,1.653,2.109,1.86,1.87,2.132,2.482,2.43,2.122,1.894,1.736,2.34,2.25,1.411,1.954,1.842,2.356,2.164,1.032,0.792,2.285,2.187,2.092,2.295,1.19,1.23,3.059,2.713,2.353,1.739,1.746,1.889,2.255,2.064,0.977,1.126,1.862,1.718,1.778,2.405,2.194,1.322,1.992,0.547,1.991,1.878,1.835,1.355,1.638,2.674,2.997,2.619,4.318,9.031,1.244,1.265,1.6,1.748,2.173,2.004,3.274,2.094,2.116,2.089,2.364,1.905,1.596,2.092,2.498,2.519,1.921,2.544,5.438,3.198,1.79,1.878,2.49,0.589,1.685,2.188,1.926,2.188,1.884,1.951,2.308,1.48,1.601,0.758,1.22,1.1,0.516,1.537,1.306,1.944,1.523,1.634,2.111,1.383,1.815,1.975,2.03,1.053,1.06,2.153,1.866,1.948,1.586,2.133,1.726,2.279,0.971,1.543,2.186,1.481,2.45,2.303,2.086,1.063,1.864,2.405,2.803,0.619,2.32,1.332,1.336,1.709,1.947,4.181,3.16,2.118,0.758,1.381,0.589,1.925,0.93,1.243,1.228,1.291,1.154,1.048,2.329,3.06,0.718,2.1,0.93,1.273,1.108,1.529,2.458,0.36,1.239,0.816,1.454,1.384,1.63,3.324,2.285,1.197,0.784,1.813,0.701,1.298,1.168,1.496,1.544,1.384,1.678,2.024,1.243,1.331,1.142,0.946,2.403,3.099,2.559,3.611,3.054,0.969,1.935,2.273,0.91,3.103,2.033,2.045,4.601,2.786,3.468,2.759,2.49,1.814,2.434,0.649,1.625,2.134,1.127,1.073,2.453,1.793,1.19,2.356,2.083,1.165,1.779,0.93,1.261,1.805,1.592,1.598,1.922,3.614,2.941,2.76,2.502,2.325,1.652,1.831,2.213,2.452,2.316,4.393,2.584,1.704,1.322,1.68,1.391,1.824,1.526,1.962,1.193,1.466,1.672,1.746,1.622,1.684,2.201,2.457,2.121,2.267,1.701,1.934,1.507,1.37,1.694,1.613,1.937,1.917,2.397,1.838,1.688,1.614,1.522,1.825,1.774,1.139,1.155,1.427,1.634,2.119,2.361,3.069,2.087,1.972,1.646,1.273,0.998,1.353,2.133,1.438,2.022,2.115,1.228,0.579,0.775,1.171,1.727,0.898,1.503,1.504,1.827,1.674,1.59,2.298,2.336,1.867,1.42,2.017,1.106,1.391,1.385,1.513,1.908,1.764,1.795,1.851,2.002,2.853,3.196,2.665,2.513,1.771,2.479,3.461,4.388,3.414,4.629,3.517,2.751,2.999,2.268,1.973,2.836,2.032,2.03,2.05,2.888,2.475,1.872,2.756,2.549,3.134,2.515,2.128,3.486,2.207,1.994,1.8,3.028,3.232,3.509,3.695,3.074,3.137,1.784,2.037,3.535,11.572,7.285,2.552,3.165,3.477,1.799,2.112,1.948,2.78,2.723,2.058,2.157,2.895,3.207,2.696,2.6,2.858,2.761,4.005,3.439,4.281,3.936,2.51,2.205,2.005,2.385,1.147,1.507,3.272,1.96,2.882,3.049,0.549,3.498,4.09,4.212,3.111,3.813,1.82,2.676,2.948,2.271,1.982,2.579,2.596,2.759,3.197,1.515,2.465,2.92,2.25,3.036,2.892,2.535,4.235,3.098,2.916,2.698,3.81,3.743,2.802,2.64,1.876,3.548,1.403,2.766,1.866,1.469,2.026,3.552,3.173,4.716,1.184,1.541,1.498,1.469,1.027,0.515,0.601,1.243,1.549,1.557,1.52,1.791,1.712,1.498,1.246,2.893,3.187,0.984,3.156,1.793,2.438,1.864,1.891,2.365,0.975,1.628,1.63,1.581,2.009,2.13,1.538,1.35,0.947,1.372,1.385,2.144,2.007,1.762,1.539,1.098,1.29,2.629,1.947,2.064,2.106,1.462,2.146,1.574,4.181,2.669,2.303,6.476,0.33,2.833,3.241,3.548,3.261,2.772,2.926,3.093,3.241,2.621,3.16,2.663,2.101,2.67,3.163,2.62,2.184,1.809,2.275,1.756,1.652,2.008,2.119,1.929,2.422,2.063,1.587,2.487,2.01,1.743,2.17,1.254,1.568,1.608,1.819,1.672,1.724,1.832,1.852,1.347,1.757,2.25,1.477,0.92,1.045,1.483,1.695,2.597,3.214,1.598,1.341,1.659,1.443,1.482,1.482,2.005,1.719,1.374,1.871,2.254,2.156,2.09,2.472,1.893,3.673,2.537,2.999,2.333,2.672,3.175,2.095,1.949,2.346,1.959,4.729,3.234,2.795,2.094,2.83,2.672,3.234,3.541,3.061,2.886,3.014,2.349,2.173,2.142,3.135,2.242,1.462,2.177,1.761,1.702,2.387,2.493,2.535,2.944,3.207,3.371,2.843,1.425,1.253,1.393,1.396,1.49,1.876,1.652,1.46,1.419,1.207,1.14,1.419,1.624,6.587,0.974,1.678,1.166,0.899,0.949,0.973,1.084,1.477,1.868,1.371,1.843,1.873,2.517,1.348,0.976,1.107,1.297,1.248,1.001,1.111,1.497,1.082,1.291,1.21,1.427,1.694,0.65,0.861,0.91,3.889,1.32,1.053,1.062,1.6,1.177,1.012,1.081,1.288,2.402,2.588,1.642,1.284,1.395,1.098,1.463,1.065,1.339,1.184,1.206,1.603,1.218,1.635,1.278,1.319,1,1.15,1.049,1.178,1.696,1.442,1.296,1.67,1.622,1.138,1.659,1.706,1.148,1.098,1.133,1.536,2.518,5.297,1.961,1.816,1.86,1.756,1.808,1.65,1.468,1.704,1.533,1.211,1.898,2.007,1.448,1.617,1.741,1.731,1.523,1.513,2.16,1.536,2.112,0.674,0.827,1.586,0.855,2.024,1.707,0.678,0.932,1.21,1.188,1.329,1.477,1.084,0.984,1.022,1.246,1.07,1.074,0.82,1.196,1.478,1.421,2.541,2.308,1.594,1.073,1.058,1.087,1.077,1.078,1.1,1.429,1.824,1.498,1.383,0.984,1.093,1.185,1.476,1.132,1.649,0.744,1.094,1.194,3.354,2.506,1.239,1.065,1.533,1.635,1.051,1.547,2.82,0.395,2.46,1.661,1.522,1.21,1.509,1.074,1.189,1.79,1.55,2.589,3.01,3.093,4.16,3.947,3.016,3.242,3.072,0.266,3.76,0.856,1.111,0.775,0.773,0.789,0.872,1.217,0.951,1.088,1.056,0.88,0.803,0.807,1.003,1.017,1.088,1.154,1.255,0.823,2.27,2.851,1.481,1.133,1.185,0.945,1.389,1.47,1.676,0.95,1.265,1.351,1.576,1.52,1.853,1.771,2.074,1.493,1.139,1.554,1.418,1.541,1.422,1.064,1.249,1.356,0.877,1.616,2.465,2.001,1.658,1.067,1.738,1.153,1.434,1.21,1.46,1.056,1.769,0.944,0.078,1.448,1.532,1.475,1.104,1.396,1.486,1.395,1.717,1.495,3.641,2.353,2.113,1.425,1.534,1.924,1.316,1.417,1.171,0.677,0.992,1.358,1.14,2.421,3.079,2.503,2.348,2.652,6.033,2.893,3.265,1.786,2.039,1.804,1.131,1.575,1.507,1.197,1.585,2.391,2.341,2.12,1.899,1.733,1.595,0.777,0.905,1.357,1.054,0.72,1.71,1.098,0.585,1.146,0.353,0.715,1.258,1.403,1.227,1.67,1.14,0.962,1.45,2.333,2.648,2.34,2.15,1.432,1.531,1.34,2.202,2.031,1.341,1.668,1.468,1.339,1.491,2.162,1.837,1.615,1.499,1.833,1.752,1.676,1.558,1.18,1.186,1.526,1.798,2.607,2.251,1.967,1.643,1.741,2.102,1.271,0.9,2.235,1.746,3.024,1.834,1.874,1.848,1.449,2.475,1.629,1.64,1.639,2.126,1.163,1.184,1.372,2.374,1.407,1.697,2.92,2.559,1.11,0.893,0.915,1.106,1.028,1.183,1.843,1.043,0.882,1.142,1.173,0.866,0.835,0.89,0.777,0.975,1.043,0.604,1.303,0.641,0.694,1.381,0.945,0.568,1.286,1.65,1.562,1.269,0.984,0.93,0.877,1.123,1.781,1.229,1.013,1.249,1.197,0.898,0.305,0.468,0.58,1.118,1.032,0.991,0.505,0.612,1.155,1.466,1.071,1.522,1.499,1.072,1.198,1.98,1.456,4.074,1.713,1.548,1.325,0.981,1.771,1.186,2.084,1.231,1.616,1.519,1.06,1.131,1.731,3.232,2.14,1.695,2.159,2.107,1.643,1.082,1.633,1.479,1.503,1.862,1.694,1.574,2.189,2.334,3.522,2.482,1.993,1.873,1.885,2.143,2.152,1.797,1.867,2.323,4.725,2.43,2.058,1.923,1.713,1.662,1.765,1.289,1.42,1.197,1.734,0.906,0.706,0.881,1.651,1.652,1.031,0.495,1.119,1.166,1.534,2.255,2.27,2.171,2.425,1.319,1.344,2.379,1.645,1.679,1.971,1.366,0.984,1.602,2.053,1.772,2.076,1.285,1.824,1.899,2.001,1.882,1.432,1.532,2.375,1.719,2.173,1.834,2.052,2.104,2.211,1.361,1.488,1.801,2.045,2.762,2.568,2.5,2.086,0.281,2,1.938,0.711,1.086,0.218,1.43,2.388,1.629,1.647,1.102,5.386,2.713,3.342,2.624,2.409,2.806,1.196,0.328,1.078,3.066,1.095,1.561,1.373,1.379,1.373,1.321,2.676,1.309,1.384,1.523,1.797,1.74,1.036,1.589,2.081,2.438,2.462,2.464,2.513,3.199,1.622,1.378,1.309,1.596,1.578,1.692,1.619,2.012,1.716,1.639,2.121,1.939,1.398,1.268,1.4,2.899,1.938,2.065,4.01,4.163,1.204,0.765,0.863,1.13,1.347,0.738,1.233,1.531,1.65,0.726,0.61,0.541,0.845,1.281,1.105,1.558,2.022,1.688,1.428,1.576,1.025,2.344,3.202,0.411,3.7,2.518,2.946,1.094,2.151,1.243,1.232,0.859,1.439,4.045,2.427,1.118,2.734,1.332,2.026,3.558,0.569,1.574,1.871,1.999,1.78,0.894,0.745,1.123,0.802,0.629,0.816,0.889,1.435,0.989,0.99,1.059,1.121,0.823,1.06,1.001,0.914,1.056,1.03,1.595,0.007,0.767,1.576,2.992,2.72,1.861,1.132,0.75,1.039,1.031,1.003,1.863,2.822,1.689,1.982,0.969,1.422,2.215,0.935,1.385,1.643,3.106,1.147,1.147,1.339,0.422,1.79,1.582,1.694,1.7,1.562,1.422,1.85,1.044,0.843,0.845,1.998,4.027,0.779,1.557,1.241,1.451,1.64,2.332,1.205,1.912,2.259,3.602,0.256,3.749,2.94,3.673,1.367,2.558,3.028,3.014,1.969,2.562,2.906,2.551,3.847,3.248,4.022,5.311,1.031,1.818,3.917,3.45,1.894,2.254,2.862,2.759,2.691,2.787,5.816,0.945,3.674,1.586,4.668,5.002,3.695,1.1,2.191,4.039,3.842,5.453,5.248,1.58,2.991,2.663,5.744,6.236,4.504,2.531,2.505,4.472,2.169,2.164,2.21,1.637,2.236,1.624,2.442,1.979,2.217,1.648,2.46,1.306,3.326,3.752,4.013,2.474,2.31,2.777,1.525,1.023,1.125,1.221,1.402,1.376,1.113,1.57,1.99,1.894,3.22,2.227,5.083,1.972,1.692,4.66,2.894,8.348,2.356,1.47,4.057,3.165,2.37,2.358,2.282,2.377,4.572,2.228,2.365,2.468,2.764,0.394,0.518,1.685,3.443,1.109,0.842,0.66,0.879,1.057,1.147,1.17,1.082,0.87,0.73,0.906,1.249,0.991,1.061,0.888,0.948,0.496,0.513,0.775,0.746,0.986,1.159,1.105,1.104,0.989,1.245,1.3,0.794,0.806,0.935,1.154,1.054,1.199,1.041,1.985,1.141,1.422,2.256,0.876,0.98,0.713,0.799,0.461,0.697,0.705,0.755,0.995,1.238,0.797,1.031,1.15,1.27,0.929,0.815,0.254,0.909,0.965,2.373,0.835,1.016,1.188,1.032,0.861,1.379,0.945,0.79,1.167,1.469,1.726,2.217,0.82,4.813,2.307,3.281,1.509,0.993,1.771,4.011,8.337,3.569,3.561,8.962,0.072,14.048,11.482,4.486,4.342,0.328,18.368,4.787,2.01,1.149,2.732,4.752,2.696,0.081,4.388,2.41,2.312,1.797,1.603,3.642,1.465,2.272,3.86,0.76,1.265,1.53,1.504,2.05,2.399,3.347,3.437,2.48,3.052,2.042,2.531,1.055,1.536,1.722,1.159,1.862,1.44,1.091,1.133,1.146,1.138,1.058,1.109,1.151,1.309,2.585,1.107,1.72,1.618,1.179,1.155,1.089,1.1,1.136,1.45,1.8,1.286,1.056,1.071,1.177,1.676,1.752,1.601,1.159,1.574,1.891,2.17,1.12,3.953,5.061,1.7,2.013,1.911,2.049,2.221,2.109,2.138,5.817,3,3.231,3.414,5.182,3.392,2.742,2.889,4.966,1.961,2.461,1.22,0.579,0.914,0.79,1.153,1.419,1.206,1.03,1.271,1.614,1.676,1.158,2.228,1.141,1.147,1.304,1.245,1.466,2.153,1.667,0.827,0.942,1.029,1.234,1.555,1.379,0.928,1.016,1.743,1.545,1.155,1.043,1.195,1.063,1.1,1.648,1.673,1.118,1.64,1.107,1.148,1.199,1.425,1.25,1.657,1.674,2.67,1.718,1.129,2.177,1.139,1.129,1.104,1.12,1.623,1.177,0.978,1.212,1.579,1.592,1.682,8.493,0.975,2.068,3.937,4.687,3.867,5.654,3.425,1.848,2.177,1.905,1.186,2.361,3.248,1.426,2.546,1.854,2.639,2.492,2.681,3.674,2.16,1.642,1.706,2.713,2.176,5.043,3.327,3.948,2.726,2.172,3.01,3.215,3.013,5.368,2.718,2.821,1.237,2.626,2.9,2.204,1.751,3.577,1.921,5.606,10.516,2.16,1.292,2.214,2.225,2.164,1.67,1.687,2.787,2.211,5.043,2.827,3.885,1.786,2.97,3.819,1.771,1.382,1.745,0.962,0.666,1.655,0.782,0.971,1.074,0.543,0.553,0.57,0.532,1.229,0.945,1.237,0.546,1.414,1.897,0.759,1.377,1.175,0.952,0.662,1.638,1.093,1.149,1.649,2.744,1.578,1.638,1.692,1.674,1.434,0.743,1.083,1.144,1.067,0.918,0.723,1.052,1.108,1.7,2.164,2.177,1.599,1.145,2.182,2.698,2.745,12.529,1.692,1.41,1.401,1.66,2.243,2.692,1.709,1.778,0.984,2.207,2.236,2.197,6.536,3.22,3.037,3.361,2.182,2.469,3.613,2.434,2.516,3.105,5.515,3.08,3.378,4.429,2.841,4.081,2.997,3.129,2.367,1.779,1.415,2.417,1.308,1.712,1.894,2.464,2.119,2.947,2.337,1.821,3.044,2.908,2.756,0.299,1.824,3.097,3.825,4.781,3.219,4.962,1.871,1.747,2.48,3.119,2.032,2.154,1.896,1.909,1.739,2.779,2.192,1.599,1.314,1.34,2.026,0.957,1.652,1.16,1.533,2.175,2.762,1.958,1.111,0.726,1.28,1.215,1.212,1.153,1.603,1.814,1.421,1.183,0.982,1.614,1.304,1.428,1.593,1.031,1.106,1.114,1.09,1.633,1.022,1.104,1.579,1.674,2.078,1.568,1.641,1.627,1.031,1.098,1.046,1.125,1.034,1.088,1.385,1.454,0.719,2.625,2.7,2.065,0.43,0.793,1.284,1.22,1.224,1.259,1.304,1.859,2.596,3.067,2.62,6.77,1.908,1.844,1.217,1.305,1.228,1.25,1.226,1.294,1.235,1.291,1.187,1.369,1.174,1.398,1.368,1.37,1.457,1.88,2.759,1.684,1.044,0.759,1.372,1.275,1.448,2.057,1.347,2.019,2.063,2.606,2.273,0.446,1.289,1.193,1.116,1.264,1.311,1.279,1.214,0.863,1.402,1.337,1.307,1.383,1.397,1.362,0.936,1.114,1.356,1.253,1.381,1.903,1.431,1.259,1.407,2.677,2.715,2.703,2.695,1.451,1.345,1.975,1.406,1.98,1.361,1.389,1.548,2.123,1.839,2.133,3.845,4.676,2.769,2.671,2.648,3.458,2.05,1.33,1.999,2.028,4.085,3.502,3.948,4.831,4.394,5.512,3.068,3.397,4.039,3.37,2.693,2.77,6.077,2.769,2.677,4.692,4.116,2.653,2.149,2.257,3.143,3.322,3.775,1.034,3.406,4.529,2.05,0.906,1.225,0.824,1.252,0.94,1.155,1.344,1.618,1.008,1.057,1.076,0.858,0.9,1.103,1.338,1.401,1.316,2.077,0.833,2.768,1.434,2.107,2.102,1.604,1.023,1.158,1.122,1.125,1.065,0.789,1.28,0.836,1.082,1.119,0.978,1.303,1.195,1.131,1.445,1.254,1.179,1.229,1.246,1.234,1.177,1.157,0.864,1.202,1.055,1.238,1.003,0.86,0.637,1.049,0.722,0.564,0.612,1.108,1.146,1.404,1.834,1.223,1.192,0.674,0.554,0.721,1.352,0.999,1.221,1.237,1.236,1.187,1.293,1.22,1.79,1.221,1.305,1.161,1.805,2.99,2.64,3.28,2.819,2.196,2.312,2.446,2.492,2.154,2.765,2.52,2.968,3.209,3.364,3.563,2.876,3.436,1.835,1.188,0.265,5.797,3.036,5.688,4.218,0.922,0.987,1.152,1.263,1.193,1.251,1.165,1.118,1.206,1.869,1.22,1.203,1.248,1.126,1.187,1.268,1.793,1.195,1.007,0.819,1.133,0.908,1.019,1.234,1.133,0.995,0.6,0.251,0.632,1.082,1.723,0.726,0.693,1.163,1.197,1.16,1.192,1.203,1.193,1.482,2.788,1.719,4.046,4.203,2.44,3.279,2.02,2.721,1.69,0.701,1.374,0.78,1.024,1.695,1.525,1.101,1.116,1.256,1.796,1.539,2.615,2.043,1.856,1.787,1.265,1.253,1.224,0.915,0.563,0.734,1.572,1.24,1.214,1.432,2.331,2.08,2.212,2.249,2.264,2.866,2.323,0.02,2.103,1.726,2.2,2.499,3.196,3.486,2.405,2.354,7.699,2.214,1.073,1.856,2.683,2.23,2.121,1.197,1.095,0.898,1.169,1.057,1.228,1.151,3.121,3.225,2.746,3.06,1.792,1.777,1.815,1.228,1.131,1.185,1.041,1.032,1.11,1.112,1.174,1.364,2.318,3.336,7.03,2.188,2.376,2.467,1.79,1.185,1.265,1.066,1.276,1.305,1.164,1.229,1.012,1.35,1.403,1.067,2.413,1.875,3.586,2.512,1.707,1.747,1.877,1.839,1.773,1.089,1.067,0.971,1.124,1.217,1.884,1.757,1.802,1.46,1.587,1.76,1.827,1.761,1.189,0.996,1.381,1.185,1.269,1.174,1.169,1.235,1.18,1.11,0.749,1.284,0.81,0.917,1.172,1.011,2.959,3.988,4.197,2.94,3.657,3.902,3.946,1.477,0.914,0.894,3.636,2.77,1.892,1.671,1.23,1.203,1.252,1.232,1.106,1.482,1.199,3.39,3.632,3.306,3.599,3.64,3.33,3.327,3.17,3.056,2.056,4.948,3.493,0.103,3.816,2.049,5.203,3.804,2.447,2.43,2.358,2.492,1.78,1.21,1.356,1.138,1.29,1.142,1.83,1.793,0.555,0.241,1.633,1.282,0.729,1.099,3.353,2.092,3.006,2.519,1.357,1.597,4.403,4.539,9.117,0.609,0.375,1.077,1.276,1.236,1.243,1.308,1.262,1.1,1.313,1.78,1.286,2.39,2.603,2.408,1.825,1.825,1.868,1.322,1.167,1.249,1.81,1.803,2.205,3.144,3.312,2.69,1.846,2.951,1.841,2.048,1.594,2.343,2.089,1.57,1.749,2.932,1.959,1.96,2.069,2.353,1.845,1.525,1.631,1.069,1.874,1.744,1.264,1.305,1.963,1.766,1.501,1.925,2.164,1.719,2.592,2.908,2.338,1.905,3.021,3.111,2.917,5.563,1.859,2.106,5.878,6.879,2.653,1.792,1.857,1.133,0.586,0.437,1.055,1.392,2.059,2.338,3.318,2.243,2.316,2.571,4.172,3.146,2.57,2.677,2.472,2.125,2.487,2.731,2.618,2.677,2.598,3.136,2.471,2.592,2.953,2.731,2.556,3.212,2.064,1.969,2.625,3.445,3.624,1.852,2.303,3.115,2.813,3.265,2.85,0.195,3.017,3.588,4.898,3.672,2.965,3,2.697,3.028,3.397,3.902,0.524,1.466,1.157,1.978,1.729,2.015,1.094,1.638,1.227,1.961,2.368,1.016,1.724,1.257,2.073,1.328,1.625,1.724,1.652,1.496,1.996,1.987,1.29,2.237,2.329,1.554,2.895,2.791,1.692,1.609,1.215,0.543,0.909,1.324,1.639,1.479,1.386,1.747,1.579,1.269,1.52,1.386,1.708,1.648,1.175,1.493,1.283,1.392,1.401,1.677,1.148,1.175,1.381,2.119,0.586,1.648,1.599,1.729,1.701,1.925,2.648,1.448,1.568,2.104,2.293,2.217,2.189,2.127,1.203,1.872,1.017,0.799,0.61,1.899,4.31,2.575,4.791,2.934,1.79,1.731,3.13,2.24,2.182,2.051,1.968,2.228,2.128,3.362,1.853,1.852,1.684,1.671,1.89,1.84,3.176,2.988,1.546,1.464,2.607,1.702,2.633,2.266,2.204,2.153,2.33,0.766,2.542,2.754,1.762,1.751,1.85,2.483,1.971,1.601,2.25,1.419,1.873,2.161,0.969,1.207,1.705,1.965,1.33,1.583,1.743,1.592,1.648,2.178,1.615,2.169,2.152,2.213,2.722,3.133,2.282,3.299,2.265,2.687,2.247,3.326,3.699,2.637,3.313,3.387,4.318,3.875,3.865,2.07,1.994,1.895,1.65,1.523,1.825,2.161,1.668,1.836,2.534,2.287,3.141,2.182,1.674,1.575,0.672,0.664,0.748,3.2,2.283,1.269,1.327,1.176,1.046,1.074,1.181,1.639,1.196,2.046,1.031,2.829,0.987,1.833,1.766,0.328,0.247,0.751,1.809,1.491,1.309,1.139,2.591,1.601,2.183,2.806,1.297,0.971,1.646,1.222,1.067,1.133,1.162,1.6,1.249,1.369,1.486,1.123,1.17,1.097,1.154,1.135,1.123,1.733,1.656,1.729,1.725,1.714,1.667,1.723,1.736,1.129,1.145,1.552,0.746,1.103,1.103,1.031,0.682,1.664,1.133,1.157,0.86,1.401,1.461,1.291,1.14,1.676,1.763,1.701,1.603,1.14,0.797,0.33,1.639,0.867,1.268,2.378,2.753,2.321,2.249,2.733,0.299,2.646,3.526,2.706,3.675,4.025,2.64,0.694,1.022,1.512,2.626,2.207,2.351,2.47,0.952,0.477,1.324,3.007,0.046,2.166,3.362,1.788,1.161,1.295,1.226,1.107,1.092,1.207,1.164,1.873,2,3.299,3.168,2.384,2.674,1.174,1.041,1.144,0.869,0.898,1.079,1.751,2.27,1.77,0.848,0.744,0.659,0.701,0.031,0.269,0.775,0.9,0.73,1.089,1.329,0.783,0.884,3.078,0.281,1.354,1.132,0.999,0.942,1.063,0.725,0.789,1.018,0.994,0.963,1.381,1.254,1.723,1.173,1.096,0.359,0.031,0.823,1.283,2.09,0.531,1.816,1.865,3.927,1.853,2.259,3.008,2.712,1.679,2.486,2.497,1.078,1.196,1.177,1.051,1.139,1.145,1.245,1.048,1.172,1.686,1.163,1.109,1.145,1.181,1.123,1.143,1.11,1.18,1.348,1.031,0.441,1.141,1.731,1.14,1.153,1.199,1.15,1.128,1.166,1.065,0.336,1.014,1.04,1.114,1.23,1.045,1.688,1.228,1.677,1.175,2.301,2.862,2.238,2.857,2.308,2.823,3.406,2.912,3.919,2.313,2.264,1.762,1.034,0.859,1.475,2.876,1.69,1.7,1.148,1.161,1.122,1.094,0.477,0.689,0.694,0.189,0.819,1.072,0.566,0.601,0.519,0.794,0.503,0.695,1.024,1.694,1.755,1.179,1.123,1.089,0.912,0.924,1.094,1.28,1.14,1.134,1.16,1.18,1.162,1.125,1.705,2.448,1.672,1.149,1.104,1.201,1.157,2.431,1.841,2.66,2.294,2.407,2.834,2.291,3.553,2.89,3.388,4.4,2.012,3.843,3.876,4.56,3.321,2.029,2.477,1.946,2.533,2.203,3.619,3.393,4.637,2.228,0.162,3.67,5.199,2.264,1.549,3.096,3.006,2.504,3.096,3.026,3.516,2.442,2.629,4.033,3.257,1.89,3.331,1.968,2.895,2.126,2.554,1.371,1.109,1.071,1.073,1.546,2.542,2.363,3.357,3.067,2.539,2.393,2.214,1.839,2.088,1.671,3.664,1.85,1.949,1.585,2.048,2.009,1.502,3.148,8.282,3.574,2.41,1.378,1.418,2.62,1.947,3.076,2.755,3.422,3.752,3.373,2.995,3.361,3.277,5.239,3.784,4.591,4.354,4.26,3.695,4.034,4.901,3.918,1.401,1.616,0.844,1.453,1.131,1.482,1.36,2.3,2.174,2.71,5.338,4.672,3.374,3.055,3.488,2.765,3.476,3.023,1.961,0.539,1.467,4.15,4.421,3.098,5.154,2.776,3.638,3.588,0.033,3.069,4.81,2.454,2.685,3.221,4.906,3.865,3.627,4.578,3.9,3.593,2.588,1.151,0.414,3.812,2.737,2.186,2.476,1.355,1.365,1.245,1.501,1.003,1.907,1.14,7.845,4.101,3.749,4.387,5.991,1.973,4.479,5.615,3.426,6.25,5.422,3.154,3.298,2.813,1.906,1.42,0.305,1.842,1.181,10.789,3.143,1.965,2.687,2.573,1.803,4.363,2.327,2.91,4.032,2.328,3.823,3.324,2.665,3.381,0.234,0.29,3.679,1.817,1.044,1.822,2.752,2.862,2.578,5.269,1.562,0.39,1.776,1.652,1.628,1.315,1.624,1.244,1.138,1.161,1.211,2.912,3.152,3.296,2.923,2.361,1.764,1.769,1.669,0.748,0.874,1.329,1.114,1.429,1.657,2.066,2.51,2.526,4.371,3.916,4.15,2.46,2.596,6.122,1.566,3.771,5.361,0.564,1.119,3.038,5.122,3.966,3.891,4.802,0.206,0.703,1.819,0.703,3.024,1.71,3.813,2.633,4.602,1.952,1.748,1.635,1.347,1.702,1.325,0.623,0.99,1.67,1.786,1.68,1.833,0.451,1.161,1.802,1.759,1.369,1.442,1.561,1.419,1.765,2.694,2.43,1.798,2.304,2.274,2.451,2.527,2.156,1.499,2.77,1.727,1.488,2.583,2.046,2.96,2.81,3.159,2.004,2.69,3.144,2.419,1.659,2.639,2.702,2.176,2.126,0.641,0.421,1.134,1.985,2.592,2.216,1.446,1.674,1.289,1.487,1.489,1.335,1.727,1.055,2.813,2.242,1.578,1.625,8.391,3.826,1.229,3.964,3.788,4.899,2.211,2.26,2.004,2.061,2.431,2.247,2.605,2.475,1.426,0.068,2.192,2.37,1.086,1.137,1.85,1.695,1.958,2.031,1.617,1.585,1.67,1.79,1.297,1.259,2.883,2.94,1.574,1.471,2.209,2.715,1.61,1.558,1.663,1.6,1.398,1.36,1.626,1.534,1.229,1.257,1.393,1.48,2.567,1.846,1.784,4.513,2.282,2.238,0.576,0.867,0.493,2.381,1.491,1.295,1.895,1.653,2.192,2.228,0.342,3.703,0.859,1.878,1.607,5.109,2.93,4.199,1.832,1.664,2.208,1.149,1.827,1.081,0.313,0.723,0.668,0.817,1.151,0.976,1.361,0.063,1.298,1.61,3.047,1.868,1.947,1.038,1.082,2.077,0.712,1.213,1.811,1.338,2.497,1.878,1.82,1.156,1.93,2.652,1.56,0.231,0.425,1.318,0.632,1.672,0.806,0.404,2.818,0.901,1.956,2.6,1.289,2.257,0.762,0.684,2.304,3.34,1.906,1.54,3.071,0.323,1.398,1.14,2.776,2.179,1.281,0.946,3.462,3.847,7.26,2.35,0.19,1.601,1.613,2.01,1.157,1.398,1.378,1.082,1.745,1.398,1.194,3.694,4.172,2.41,0.256,1.665,5.311,4.509,2.726,1.422,1.289,2.516,1.188,0.343,1.072,1.263,2.123,3.221,0.937,0.881,1.954,1.697,1.952,1.709,1.73,3.03,3.157,3.548,1.66,1.738,1.767,1.833,3.064,2.157,1.895,4.135,1.806,1.408,4.589,8.416,10.579,3.251,4.827,2.919,3.082,3.283,4.446,7.379,7.283,8.481,8.835,0.75,2.557,3.366,3.959,4.017,0.602,1.889,1.694,1.698,4.863,2.991,3.062,2.079,2.37,2.818,2.887,1.5,0.266,1.832,1.578,2.125,2.004,1.727,1.107,0.953,1.264,1.414,0.666,0.648,1.451,2.252,2.298,2.481,1.299,1.404,1.177,1.233,1.568,2.084,2.237,5.732,5.092,3.088,1.613,2.408,1.494,1.845,1.738,1.386,3.161,4.598,2.362,2.264,2.079,1.949,1.322,1.375,2.401,2.574,2.707,0.433,10.071,1.971,2.007,3.978,2.171,4.783,4.907,9.763,8.678,8.389,6.431,5.564,13.247,4.93,0.563,0.3,4.831,10.395,3.366,3.947,7.416,10.299,5.039,5.219,9.661,5.092,4.629,20.01,1.266,11.687,0.523,1.049,17.365,5.03,5.032,7.435,7.467,3.086,3.368,3.891,2.429,14.414,2.582,9.218,9.171,13.034,0.14,13.78,32.735,0.709,2.703,2.086,0.382,8.321,3.069,6.274,2.085,15.286,7.784,7.235,3.049,2.97,2.915,2.868,8.301,8.198,15.088,6.876,0.325,4.304,0.945,2.889,7.372,5.034,2.333,1.297,2.04,8.638,4.284,4.324,2.694,2.681,2.498,2.578,3.15,1.699,1.59,1.565,1.425,1.915,1.677,1.543,1.372,6.381,0.025,7.922,4.091,3.272,2.695,2.761,1.439,1.512,2.327,2.308,4.6,3.481,2.301,2.341,3.536,2.382,2.41,2.416,3.585,2.461,2.084,1.5,6.274,2.495,3.09,2.897,1.278,1.27,1.462,1.394,0.461,1.237,1.324,1.156,2.018,1.474,1.315,2.608,1.992,2.389,5.994,4.332,3.362,0.085,1.776,1.154,1.299,0.796,0.742,0.788,0.524,1.33,1.646,1.602,1.624,2.036,3.082,4.033,1.963,4.997,4.532,5.988,0.898,1.696,3.835,0.703,2.156,5.012,2.691,2.489,1.551,2.347,1.584,1.427,1.426,1.706,0.502,1.115,1.41,1.543,1.192,2.022,1.814,2.187,1.751,2.376,4.835,6.075,4.021,4.097,5.233,3.461,1.93,3.053,0.986,0.8,1.05,3.023,2.504,0.843,3.298,7.109,0.753,4.288,4.436,8.099,15.967,32.383,6.337,6.736,13.403,1.335,2.152,3.882,7.214,11.106,0.883,4.13,5.789,5.037,2.991,2.096,1.436,0.602,2.067,1.928,1.376,1.834,4.014,0.97,1.877,2.47,1.318,1.777,1.993,2.509,2.113,1.082,1.617,1.413,3.815,3.361,2.433,1.601,1.701,3.068,2.616,2.805,1.89,2.482,2.188,1.469,2.636,1.387,1.374,2.267,1.7,1.429,2.999,0.007,3.377,3.965,3.755,9.765,9.789,6.258,6.281,13.714,18.277,1.094,6.566,12.644,4.786,5.243,3.096,8.254,2.993,4.923,1.492,4.391,4.143,2.934,5.36,3.297,2.453,2.185,2.282,3.171,2.161,2.37,2.439,2.411,5.166,4.589,5.528,5.511,4.981,4.757,3.673,3.659,3.636,3.478,3.588,3.25,6.497,6.123,6.377,9.78,10.751,0.472,10.821,2.07,5.593,8.939,3.304,3.351,2.751,3.421,3.196,3.509,2.26,1.34,2.582,1.474,1.852,0.379,3.647,2.918,3.208,7.072,7.203,3.186,2.962,2.012,2.373,2.894,2.526,2.742,2.667,3.489,3.174,2.528,3.647,3.056,3.08,4.096,4.429,3.871,3.557,4.065,4.826,1.768,2.604,1.918,2.193,3.769,3.97,3.509,3.343,6.173,6.622,13.152,6.059,2.586,2.214,1.743,2.526,2.022,1.318,1.529,2.992,2.058,2.068,1.123,2.755,2.9,1.281,1.412,2.976,2.619,2.617,2.793,2.246,3.082,3.407,2.82,2.353,3.793,2.607,2.03,1.754,2.097,2.116,2.489,3.01,2.305,2.139,2.318,2.65,2.024,3.334,3.852,6.785,4.918,5.234,1.739,1.846,2.135,1.793,1.068,1.411,2.345,1.495,1.922,5.128,3.799,3.62,1.336,3.36,2.06,2.473,3.318,1.795,1.947,4.7,5.46,4.593,4.904,8.92,17.982,9.778,10.322,19.052,7.182,7.069,5.125,5.438,5.137,5.828,3.579,3.587,10.389,5.414,3.767,4.543,4.395,5.339,3.622,3.457,6.924,13.259,2.594,2.889,3.974,4.067,2.472,2.971,4.942,5.548,4.534,6.345,4.876,5.002,4.091,3.322,1.764,3.865,5.89,16.309,4.25,3.846,3.258,0.542,4.083,3.648,4.017,2.95,3.893,3.285,3.075,3.221,4.03,6.919,10.698,8.287,5.807,4.4,2.942,5.667,3.981,4.864,4.18,2.727,2.92,2.64,3.812,4.116,8.783,16.256,28.421,8.504,5.843,6.414,6.832,7.136,4.949,8.871,8.518,5.909,4.373,3.436,3.4,5.705,2.703,3.388,3.602,2.453,3.231,3.198,3.02,1.32,4.775,4.683,8.447,2.16,3.292,4.779,4.771,4.509,3.163,2.946,3.125,1.475,1.941,1.97,1.046,2.825,1.442,2.347,2.655,2.376,2.223,1.39,1.387,2.046,2.203,3.903,2.998,2.853,5.75,3.795,6.061,5.032,11.183,8.2,8.432,7.266,2.58,1.039,1.215,4.06,1.712,1.724,2.971,2.232,3.168,1.952,1.995,1.663,3.225,2.369,3.062,2.501,3.293,5.022,5.404,3.99,2.869,2.357,2.809,0.244,1.901,2.037,2.577,2.538,1.758,2.043,4.121,3.56,3.159,1.905,0.617,1.335,1.611,1.883,2.944,4.82,5.068,2.232,2.644,3.366,1.106,1.335,3.075,2.172,1.942,2.548,1.939,1.894,1.922,1.816,1.665,2.07,1.938,1.647,2.456,2.354,2.21,2.347,2.681,2.396,2.694,2.509,2.38,2.295,2.997,2.832,3.935,4.043,4.025,3.569,4.671,2.647,2.383,3.271,2.189,4.067,4.048,2.848,3.113,6.791,4.167,4.725,2.231,2.556,3.505,2.337,2.327,4.004,2.174,2.057,4.472,6.351,3.458,2.547,2.492,2.591,2.643,2.626,2.524,2.225,2.93,1.638,1.729,2.248,1.816,2.076,2.17,2.671,2.058,1.92,3.27,2.729,0.055,3.191,3.31,4.566,4.945,4.808,3.043,2.264,2.492,4.5,2.381,2.672,2.228,3.123,4.897,4.004,5.008,4.754,5.027,5.805,5.739,3.661,3.216,2.794,1.475,2.664,2.118,2.11,2.841,2.86,2.315,1.86,4.947,4.748,1.985,1.884,1.574,1.881,2.964,2.568,2.299,3.521,2.663,2.491,3.213,2.118,2.287,4.315,2.085,2.399,3.126,5.911,5.931,4.26,4.374,2.944,2.808,2.489,1.757,3.023,2.797,1.623,1.815,1.435,1.67,1.59,0.416,2.116,1.847,2.795,2.379,1.723,1.624,1.866,2.289,3.035,2.294,2.096,2.22,4.253,8.884,4.906,4.69,3.601,3.549,3.483,3.047,0.27,2.281,2.512,3.206,2.582,2.493,4.169,3.927,5.165,4.472,5.81,4.44,2.812,2.306,2.297,3.076,1.448,1.566,3.144,3.109,1.996,2.174,3.379,1.718,1.607,1.835,1.616,1.625,1.641,2.111,2.22,2.339,2.649,3.03,2.17,3.644,5.827,5.631,5.213,4.724,2.695,2.5,2.438,1.873,2.02,1.792,1.851,1.649,2.38,2.002,2.138,1.656,1.653,3.67,3.033,1.524,2.808,2.714,2.672,1.712,2.321,3.994,5.45,4.297,1.117,3.972,2.593,2.3,2.214,2.04,3.057,1.838,1.908,3.305,1.776,3.012,7.14,3.84,3.988,3.934,3.704,3.803,3.241,3.247,2.458,2.307,2.469,2.113,2.204,2.361,2.572,3.779,3.706,4.181,4.155,3.068,3.261,2.895,3.946,4.026,2.518,2.344,2.258,1.975,2.913,3.449,4.927,0.828,6.098,3.027,3.115,5.23,3.872,3.245,3.579,3.954,3.555,6.233,6.044,6.782,5.458,5.253,3.31,4.664,3.98,1.023,4.104,3.878,5.33,3.017,2.769,3.465,2.698,3.573,3.372,2.505,5.377,6.301,8.696,15.1,7.705,4.485,3.531,4.776,3.162,1.879,1.626,1.628,1.497,3.247,3.226,3.72,5.55,5.206,8.077,3.278,2.684,3.914,13.416,3.746,3.596,0.898,2.106,2.193,3.372,3.91,8.366,3.009,1.957,2.883,2.687,2.208,1.628,1.43,8.141,1.016,0.805,1.117,3.572,3.509,3.348,1.913,2.157,2.076,9.691,5.227,5.684,2.831,3.352,2.636,0.609,1.946,2.656,3.108,1.91,2.128,2.037,3.215,0.561,1.852,1.816,4.238,3.144,2.876,3.497,2.637,3.199,3.198,1.697,5.691,4.054,2.607,2.081,1.553,3.125,1.227,1.398,2.473,0.575,9.553,0.898,2.43,9.781,9.492,2.61,2.723,2.948,2.98,3.04,4.293,4.903,2.335,2.207,1.986,2.299,1.903,1.64,2.903,4.151,3.642,3.289,2.119,2.988,1.016,2.575,2.379,3.201,4.736,7.813,1.542,2.5,2.149,2.455,1.596,1.765,2.147,0.334,1.516,0.713,0.886,1.951,2.423,1.461,2.52,2.45,2.077,2.402,2.302,5.206,4.256,3.749,1.609,4.082,1.787,2.775,2.153,2.155,4.076,3.572,4.244,2.4,2.161,4.695,4.34,0.664,3.375,3.7,3.483,2.171,2.052,1.919,1.813,7.887,2.825,2.435,2.17,1.494,2.285,1.441,1.348,2.111,2.049,1.499,1.439,2.594,2.422,2.061,1.966,1.628,1.788,1.761,2.169,1.584,1.658,2.04,1.979,2.154,2.018,2.328,1.999,2.109,2.552,2.082,1.818,2.019,1.802,2.577,2.037,2.204,2.333,1.98,2.55,2.322,2.803,2.985,3.186,2.629,2.754,2.743,2.648,0.945,2.625,1.375,5.288,3.222,2.229,2.073,2.183,2.543,3.151,2.923,2.175,2.098,1.684,2.831,2.469,2.492,1.641,2.17,2.69,2.026,1.958,3.741,4.169,1.261,2.42,2.371,1.492,1.58,2.787,1.945,1.725,2.482,2.398,1.912,17.626,0.245,9.695,5.03,3.255,16.384,7.094,6.584,7.799,6.292,5.021,8.288,3.098,15.795,9.913,5.905,4.204,10.594,0.998,15.583,4.762,1.126,0.829,1.124,2.659,1.492,1.703,1.936,2.327,3.007,0.167,2.43,1.281,1.821,1.996,3.983,3.153,2.978,1.811,1.604,2.664,1.984,2.201,3.987,1.881,2.012,2.415,0.632,3.642,0.383,2.373,2.237,2.736,2.528,2.583,2.525,6.022,3.433,2.943,2.219,2.715,1.622,1.558,1.78,1.874,2.726,2.95,5.608,5.49,12.022,10.924,2.695,0.844,6.852,4.061,8.654,5.987,19.075,10.226,8.954,44.47,28.133,13.965,13.881,7.764,3.825,3.558,6.688,3.288,3.23,3.91,8.156,3.268,0.664,2.308,0.038,7.095,3.847,3.088,6.647,6.407,18.867,0.945,12.181,13.233,15.633,0.648,6.493,11.286,8.405,2.996,13.072,12.949,12.907,7.798,4.953,7.974,3.839,3.189,3.279,2.533,3.652,3.109,1.634,1.807,0.624,3.878,1.837,1.668,1.977,2.153,1.386,0.695,2.426,1.764,3.175,2.131,1.889,1.52,1.041,1.161,1.539,1.679,2.559,2.666,2.112,2.379,2.685,2.391,0.106,1.635,2.101,2.803,6.966,2.293,9.363,18.651,18.851,9.798,8.993,5.811,4.308,4.919,3.765,3.448,3.593,3.256,0.93,12.043,16.046,10.918,6.407,0.445,1.769,13.062,3.025,3.619,3.3,2.147,3.205,1.729,1.417,3.937,3.674,7.136,8.065,8.804,7.978,5.939,6.101,1.296,2.077,1.766,3.644,2.71,1.417,2.202,2.182,2.395,3.072,3.598,3.488,4.643,4.574,1.781,6.845,4.78,4.505,6.213,3.225,3.046,6.075,5.393,11.848,11.168,6.711,7.835,7.421,3.623,3.255,3.506,2.966,3.176,2.753,2.7,2.195,1.894,3.532,4.173,4.526,2.395,2.32,3.795,2.672,2.726,6.889,3.132,2.866,3.779,3.86,2.012,2.257,2.226,2.04,2.255,4.129,2.927,2.373,2.953,3.992,3.293,3.726,3.916,4.124,2.695,2.728,3.016,3.782,3.015,3.084,4.508,3.227,3.007,2.72,2.547,2.351,0.867,3.494,6.841,3.251,1.117,1.868,4.894,3.663,4.151,3.461,5.055,2.794,2.479,2.531,2.327,4.95,9.441,2.783,4.18,2.871,3.273,4.526,3.804,2.933,3.36,3.415,3.03,2.877,3.994,4.533,5.837,7.386,2.235,1.167,0.906,0.445,2.398,2.561,2.253,1.972,3.715,3.653,1.924,2.512,1.753,3.4,2.644,1.261,3.337,2.894,4.804,5.033,2.185,2.962,1.919,2.289,2.512,2.479,0.492,1.973,2.604,2.635,2.03,2.663,2.458,5.95,11.414,12.586,12.753,17.186,0.118,16.513,4.507,4.265,4.523,2.3,1.964,2.009,1.81,3.029,2.454,2.33,2.105,2.906,3.927,3.705,2.891,1.358,1.361,2.553,2.148,2.269,1.958,3.083,2.726,11.59,16.951,17.234,17.374,14.67,0.875,10.677,26.117,9.16,3.157,2.148,1.376,1.307,1.624,1.871,0.65,0.007,1.106,2.106,3.027,10.235,0.086,10.533,9.454,4.909,2.321,1.79,2.249,2,1.832,2.996,1.954,2.066,1.537,1.512,1.616,2.11,1.853,2.227,1.794,5.231,6.185,2.352,4.464,1.817,2.376,1.865,1.7,1.848,2.118,3.279,2.559,1.59,2.019,2.224,1.68,1.855,1.346,1.503,1.499,1.271,0.684,3.45,3.435,4.893,4.812,9.018,4.707,4.431,5.754,1.864,4.566,2.496,2.369,2.233,1.996,1.898,2.551,2.748,5.136,4.545,4.809,2.727,2.698,2.261,2.963,1.649,1.904,3.55,1.859,1.615,3.283,3.869,18.332,2.898,5.703,5.303,4.322,1.487,1.343,1.155,1.302,1.273,1.132,1.494,1.376,2.187,1.69,1.483,1.668,1.805,1.908,2.886,3.066,2.506,2.261,2.097,2.251,2.139,2.002,1.686,1.389,1.156,1.241,2.024,1.698,2.152,2.327,2.877,2.976,1.591,1.39,1.305,1.915,1.942,1.658,1.564,4.038,4.511,4.462,2.769,2.684,2.104,1.78,2,2.809,3.092,4.71,7.112,7.58,6.314,4.416,2.427,1.825,1.995,2.064,1.549,1.366,1.272,1.163,2.785,5.265,7.122,2.357,1.762,1.663,2.5,2.289,2.193,1.542,1.325,0.142,2.067,2.747,2.381,1.954,1.858,1.772,2.428,1.416,1.589,3.388,2.219,2.256,1.824,1.436,1.451,1.762,0.908,1.035,1.628,1.698,1.449,1.682,2.535,2.898,0.844,3.489,1.742,1.612,2.336,1.668,1.523,1.573,2.361,1.829,1.805,1.703,1.854,2.121,1.796,1.866,1.951,2.277,1.36,1.462,1.02,1.642,1.501,1.837,1.944,1.712,1.419,1.635,1.853,1.703,3.775,3.198,6.143,5.893,3.493,1.281,1.515,1.347,1.825,1.882,1.971,1.809,1.559,1.159,0.5,0.445,1.744,1.449,2.161,3.297,2.262,2.286,1.381,2.141,1.654,0.602,1.911,1.152,1.118,1.636,1.851,5.934,6.055,7.609,8.565,1.591,1.664,1.766,2.314,3.912,14.114,11.419,4.837,2.404,2.468,1.971,0.703,1.502,2.081,1.898,4.729,10.013,10.382,0.06,7.483,7.688,5.809,7.035,0.273,2.424,2.081,1.167,1.472,2.221,2.211,1.921,1.955,1.586,1.765,2.122,0.391,5.733,5.157,9.951,0.336,10.784,10.787,18.61,8.856,8.387,2.003,1.676,1.53,1.604,1.894,1.788,2.103,1.625,1.96,1.848,1.757,2.088,1.924,1.87,1.431,1.16,1.845,2.202,1.76,1.877,7.896,6.057,1.391,1.005,1.896,2.181,1.779,1.545,1.311,1.512,1.594,1.461,2.149,1.966,4.855,9.299,8.271,4.483,4.218,4.942,2.463,2.266,2.933,5.818,11.297,10.686,3.563,2.055,0.469,0.312,1.477,10,1.271,9.691,5.443,4.869,13.337,5.069,4.703,4.008,2.638,3.187,3.402,3.803,3.442,3.84,3.079,3.416,0.266,2.928,2.748,5.785,6.336,4.494,4.651,2.522,1.941,1.586,2.295,2.09,1.978,2.034,1.588,1.952,1.327,1.446,2.18,0.719,2.609,1.617,0.281,1.087,2.608,2.426,2.614,1.813,1.796,1.313,2.427,2.409,2.491,2.088,3.186,2.312,2.228,2.854,1.871,3.216,2.965,9.081,12.215,6.047,5.191,0.764,2.234,2.188,4.55,8.428,6.485,8.838,5.986,7.17,3.024,2.971,3.193,3.096,4.832,3.525,3.34,3.576,3.575,5.941,5.54,5.772,6.127,7.876,8.022,2.341,6.086,0.609,3.646,1.731,2.645,3.165,1.511,0.864,1.57,4.458,4.183,3.804,2.501,6.56,4.062,5.163,3.856,4.27,6.631,2.886,5.128,3.728,4.71,1.67,3.775,3.118,2.964,2.515,2.057,3.007,4.716,3.166,2.837,4.68,2.724,3.637,3.741,2.494,3.976,2.803,3.966,3.072,3.742,1.801,2.16,3.752,4.712,3.136,3.041,2.536,2.728,2.276,2.712,2.6,1.142,1.172,2.57,2.488,2.864,3.563,1.492,2.462,1.437,2.436,1.806,1.61,3.248,1.669,5.834,18.648,11.93,3.278,3.659,2.636,2.496,4.135,4.655,1.503,1.96,1.469,1.979,1.868,4.061,2.032,3.65,3.752,11.458,14.886,14.281,16.709,25.901,2.461,2.162,2.585,2.725,4.019,3.637,1.653,2.036,1.409,1.177,1.147,2.211,4.788,2.853,2.723,2.736,2.816,2.862,2.407,6.347,2.035,2.544,2.297,2.847,15.59,2.678,2.866,6.109,16.645,2.307,1.908,1.938,2.141,16.02,2.611,2.247,2.704,2.989,8.351,4.973,3.206,3.105,3.397,3.259,8.524,3.096,2.709,1.383,1.369,1.246,1.248,0.836,0.68,2.707,3.067,4.938,7.577,5.414,9.885,2.354,19.817,3.508,3.2,2.924,2.947,24.549,4.192,1.558,4.825,2.912,2.844,3.173,3.491,15.265,2.362,2.53,28.009,3.282,3.019,2.761,2.815,2.624,2.922,2.607,2.801,15.446,2.771,2.642,2.655,2.387,2.299,2.892,3.061,4.381,3.48,3.532,3.192,2.772,2.943,4.22,11.484,4.784,2.606,2.653,2.628,2.53,16.544,2.566,2.836,2.617,2.858,40.377,5.336,7.241,1.312,6.75,5.86,2.827,2.891,2.621,2.664,2.452,2.248,25.268,2.492,2.816,3.173,2.686,2.272,2.62,2.442,16.389,2.822,2.729,2.439,2.33,14.787,2.279,2.608,2.688,2.495,25.384,2.905,2.733,2.811,2.709,2.734,2.521,2.632,6.692,1.975,2.122,2.462,2.103,3.12,2.865,2.872,2.846,2.431,2.485,2.551,10.018,2.676,2.676,27.236,2.333,2.555,2.164,2.475,2.386,39.675,0.043,2.432,2.518,2.678,3.668,5.089,2.491,2.266,2.465,2.531,10.953,1.242,3.01,2.826,2.854,0.997,1.971,2.471,2.614,2.61,2.369,2.453,2.386,23.582,1.689,2.749,2.626,2.489,1.92,11.072,2.066,1.437,2.548,1.869,1.66,2.621,2.929,4.073,2.053,0.891,2.375,2.909,2.629,1.614,1.59,6.077,2.974,2.637,2.982,3.385,3.171,3.541,3.422,2.974,2.965,3.011,2.603,2.777,2.63,2.036,2.966,6.835,1.451,2.917,3.068,1.499,1.659,3.04,2.804,3.757,3.017,4.811,2.841,4.149,3.225,2.522,12.203,3.527,3.418,2.894,3.212,3.079,4.64,8.539,2.844,4.609,2.448,4.322,4.29,3.434,2.71,1.558,1.151,2.86,2.572,3.03,2.792,2.748,3.322,1.474,2.407,3.05,3.426,3.318,2.857,1.719,9.819,4.681,2.085,2.333,1.198,1.244,0.898,0.875,1.182,1.027,1.235,3.678,2.465,2.493,3.371,2.391,2.419,1.026,1.211,0.226,1.301,0.84,0.595,1.425,0.174,0.689,0.668,0.771,0.973,0.95,0.888,0.578,0.948,1.005,1.076,1.7,4.532,2.777,2.972,16.993,3.663,2.752,3.546,4.149,3.975,2.991,3.308,10.312,3.986,3.823,4.179,4.51,0.873,0.835,0.906,0.484,0.666,1.172,1.14,1.11,1.658,0.099,2.46,1.658,1.286,1.25,1.083,1.127,1.534,1.169,1.342,1.127,1.456,1.417,1.184,1.478,11.609,0.827,1.027,0.954,1.104,1.043,0.909,0.926,0.974,0.883,1.005,0.848,1.431,1.439,1.402,1.393,0.693,0.913,0.065,1.178,1.049,0.935,0.998,0.953,1.006,1.955,3.719,1.906,0.998,0.956,0.454,0.917,1.036,0.593,1.254,0.989,0.977,1.003,0.947,0.902,3.808,2.941,6.39,2.916,2.998,2.571,3.133,3.841,3.945,10.082,3.557,3.102,3.342,3.367,2.609,2.576,1.892,1.972,2.807,2.689,0.771,7.437,8.256,3.194,1.987,1.007,2.97,3.076,2.978,2.673,2.731,2.689,4.071,2.745,2.107,2.102,2.38,3.248,2.862,2.089,1.714,1.746,1.931,5.635,1.656,1.817,2.562,3.026,3.078,2.845,3.008,6.993,2.96,3.036,3.071,2.941,3.126,8.196,2.973,2.937,5.095,3.812,2.767,2.789,2.787,9.292,3.893,3.557,3.5,3.466,3.475,4.049,2.886,2.971,3.115,2.962,3.007,10.072,2.547,2.125,1.936,2.166,2.594,2.247,2.223,2.566,2.989,2.989,2.302,5.267,3.753,3.392,3.045,2.984,12.285,11.602,5.094,5.069,4.866,4.006,4.463,2.07,1.383,9.881,8.019,12.928,2.616,0.531,0.871,3.997,2.949,4.52,3.906,3.166,4.049,7.916,2.949,5.873,11.167,3.697,3.275,2.885,2.825,3.138,2.783,2.919,2.904,2.811,4.531,4.345,4.792,5.907,7.206,2.554,1.539,25.359,4.888,5.239,5.646,0.641,19.108,5.674,5.319,21.797,2.815,2.758,3.826,6.663,1.695,6.969,3.135,4.143,4.284,5.189,4.798,4.028,3.735,0.194,4.08,3.631,4.075,3.492,12.385,2.599,1.126,2.256,2.007,0.823,3.325,3.889,3.927,3.838,3.323,3.765,3.939,3.634,4.26,3.953,21.085,7.927,4.979,4.823,46.995,4.184,4.667,4.652,4.179,4.219,3.818,11.088,11.742,15.653,4.641,4.704,2.158,6.452,1.523,4.17,2.462,26.861,3.701,1.852,6.959,4.418,4.298,4.438,4.123,4.382,4.52,3.574,8.703,2.61,4.253,4.342,4.727,4.496,4.293,14.912,4.19,4.276,4.831,4.371,4.156,2.84,1.4,4.714,4.495,1.641,2.883,1.922,4.913,4.853,3.786,1.147,1.45,3.358,1.684,0.628,1.639,2.377,1.695,6.916,3.358,0.988,2.02,1.799,1.129,2.86,0.944,1.956,1.473,1.129,1.154,2.332,4.363,4.255,4.424,6.155,4.546,4.23,4.273,4.754,4.1,2.298,2.307,4.611,4.082,4.145,4.198,3.999,4.519,4.282,4.252,4.175,2.192,1.063,1.116,4.395,4.737,4.129,2.034,1.815,2.268,2.673,1.062,1.043,1.955,2.91,1.577,2.253,2.245,4.101,10.33,1.146,3.977,2.179,1.072,2.107,2.326,1.5,2.056,2.042,1.922,1.829,1.902,1.905,0.934,0.688,2.186,3.745,3.858,2.63,1.377,3.101,3.465,3.035,0.838,11.56,10.129,4.304,3.069,2.212,2.244,2.6,2.778,9.928,7.999,2.457,11.998,2.055,2.508,2.732,2.141,2.102,2.527,20.317,4.751,4.299,5.631,12.917,4.984,1.929,2.233,1.451,0.812,2.561,6.451,1.563,4.864,4.399,1.404,0.781,0.748,2.345,4.475,4.85,1.872,1.547,2.572,3.716,3.501,1.273,15.924,2.847,2.408,1.754,3.28,7.455,3.621,2.912,2.004,0.554,3.378,2.702,8.237,0.341,54.004,2.119,1.255,1.36,0.85,0.855,7.784,1.906,3.437,4.5,1.172,2.304,2.12,5.589,0.146,0.348,6.788,5.04,1.285,2.291,3.257,3.701,1.837,1.943,1.779,2.116,1.782,1.976,1.848,1.554,2.105,0.79,0.916,1.802,2.195,2.253,1.967,1.535,2.008,2.794,3.586,1.956,1.948,1.705,1.485,1.125,1.147,1.118,0.862,1.241,1.505,1.088,1.894,1.3,3.204,1.717,1.507,1.845,2.332,2.101,2.43,2.737,11.509,2.632,2.121,2.381,5.827,2.883,4.563,7.351,1.774,2.391,2.693,1.814,2.378,1.194,1.187,1.704,1.576,2.055,2.08,15.993,5.868,4.943,3.113,30.285,4.488,4.406,4.407,4.308,17.766,1.913,1.359,0.726,0.074,3.78,4.152,4.258,13.44,0.938,13.117,6.849,1.8,4.029,5.229,4.295,5.927,5.71,4.607,3.646,3.839,14.687,4.154,3.928,4.353,3.988,3.614,12.812,4.694,4.72,4.858,23.46,4.241,3.965,3.888,11.961,5.461,1.75,1.207,1.278,1.328,4.893,3.904,0.72,17.163,43.176,4.222,4.073,13.757,3.741,3.663,4.259,4.007,4.091,9.244,11.787,4.172,3.92,5.14,41.135,3.53,25.702,4.626,3.892,4.029,4.339,3.696,1.277,2.81,2.992,3.476,1.593,1.583,1.404,0.482,1.734,16.532,8.49,7.725,4.612,2.857,1.755,2.692,0.897,0.311,2.21,2.187,22.09,4.1,3.792,2.582,2.138,2.926,20.93,6.073,11.225,5.045,19.148,4.889,4.903,4.875,20.727,31.369,11.525,20.193,6.339,1.875,3.75,5.199,3.055,1.546,0.807,4.108,3.785,2.884,3.385,2.803,2.938,4.399,1.523,11.956,4.137,4.311,3.889,4.348,5.569,5.481,4.238,4.874,15.087,5.209,2.517,2.908,5.159,5.496,19.188,7.341,12.639,12.014,9.97,8.884,4.005,4.073,2.314,3.086,2.554,3.321,7.763,2.486,5.468,4.467,8.444,4.347,0.348,6.925,3.289,2.585,5.535,5.741,4.59,4.442,4.561,4.927,4.753,4.271,3.535,2.216,1.226,1.518,1.392,3.076,1.781,0.953,1.591,3.838,1.66,2.933,4.147,10.769,10.328,4.037,3.717,3.894,4.204,4.401,6.511,0.277,4.037,4.249,3.989,4.172,4.4,3.892,4.785,9.813,3.914,4.408,4.357,4.272,10.254,1.078,0.398,11.1,4.811,4.985,4.791,4.969,4.743,4.82,3.187,2.798,3.089,3.492,3.329,3.397,3.287,30.639,1.725,2.104,3.201,5.008,4.758,7.402,51.681,4.231,5.039,4.26,29.451,5.601,2.086,2.717,4.122,4.241,6.259,8.932,19.031,2.605,2.508,3.474,4.042,5.433,8.04,4.021,3.531,3.441,3.553,9.217,4.413,4.053,4.003,4.023,4.538,4.173,0.383,3.771,1.557,6.696,2.6,2.069,2.296,2.777,2.56,1.776,1.844,2.941,2.609,3.841,1.609,1.733,3.355,1.583,2.173,2.25,1.677,2.225,2.941,2.69,3.284,1.938,1.775,0.667,0.768,0.502,0.452,0.468,0.451,0.501,0.413,0.474,0.454,0.478,0.464,0.458,0.506,0.415,0.437,0.478,0.471,0.451,0.475,0.478,0.488,0.452,0.468,0.468,0.442,0.466,0.476,0.43,0.523,0.485,0.499,0.445,0.415,0.483,0.472,0.443,0.516,0.48,0.493,0.426,0.468,0.488,0.478,0.463,0.464,0.487,0.453,0.398,0.471,0.55,0.467,0.485,0.439,0.424,0.512,0.516,0.476,0.908,0.534,0.383,0.56,0.485,0.461,0.464,0.503,0.47,0.463,0.523,0.441,0.495,0.463,0.466,0.516,0.473,0.466,0.5,0.467,0.459,0.475,0.468,0.447,0.479,0.469,0.422,0.479,0.463,0.466,0.484,0.501,0.532,0.949,1.116,2.37,2.155,3.038,8.143,3.203,3.1,2.713,2.992,2.789,2.081,3.878,21.57,3.633,2.337,1.303,1.132,1.325,2.302,20.131,1.547,2.705,0.048,4.871,1.063,2.864,3.437,2.937,3.143,4,3.322,3.738,23.343,3.594,3.002,2.929,4.296,3.81,9.042,3.315,3.575,3.268,2.22,1.915,3.278,8.612,4.068,3.841,2.954,0.209,2.746,2.945,2.831,4.256,3.649,1.6,2.142,4.201,8.321,2.826,1.376,1.156,1.472,1.297,0.931,0.826,0.999,0.987,1.787,1.47,1.007,0.873,0.875,0.856,1.098,1.298,1.993,1.857,2.378,2.063,4.045,4.68,4.201,3.955,4.413,4.741,2.031,2.721,3.172,5.876,5.059,6.387,4.277,2.388,2.65,4.53,17.093,1.734,2.461,4.069,4.136,3.034,14.233,3.96,5.093,1.916,1.552,6.829,4.458,1.695,2.88,2.155,2.216,4.194,2.839,4.482,1.828,1.597,1.532,1.983,3.69,3.615,2.278,1.456,3.345,4.822,6.006,4.334,0.967,4.088,4.048,3.532,1.762,2.139,6.533,3.34,1.686,1.766,3.834,4.932,4.653,2.559,1.781,2.307,2.039,2.26,2.371,2.758,2.481,5.781,0.97,0.944,0.928,0.985,0.952,0.956,0.949,0.937,0.962,0.946,0.959,0.926,0.958,0.957,0.973,0.947,0.954,0.907,0.723,1.31,1.468,1.404,1.104,1.316,1.156,1.553,2.631,3.442,6.415,5.077,1.831,1.33,1.355,0.994,1.399,0.486,0.496,0.91,0.904,0.941,0.947,0.908,0.879,0.848,0.924,0.968,0.907,0.89,0.894,0.912,0.909,0.88,0.908,0.882,0.829,0.894,0.955,0.892,0.943,0.92,1.355,2.235,2.823,2.25,1.791,1.878,0.398,2.207,1.603,1.384,1.34,0.902,0.901,0.977,0.945,0.958,0.878,0.993,0.907,0.88,0.99,0.954,0.956,0.921,0.731,0.63,1.788,1.888,1.84,12.883,0.956,1.143,1.376,1.066,0.984,1.014,1.054,0.999,0.995,0.949,1.028,0.96,1.008,0.945,1.001,1.023,1.01,0.961,1.012,0.96,0.866,0.543,0.925,0.948,0.998,0.998,0.977,0.964,0.979,0.984,0.963,0.927,0.969,0.987,0.966,0.967,0.943,0.945,0.983,0.955,0.945,0.976,0.969,0.961,1.192,1.145,0.949,1.324,0.915,1.093,0.938,0.96,1.064,0.91,0.957,0.894,0.909,1.103,1.018,1.282,2.082,6.141,1.073,0.993,0.926,0.914,0.993,0.922,1.058,1.066,0.926,1.082,0.929,0.817,0.877,0.861,0.81,0.767,1.538,0.758,2.823,2.826,1.14,1.713,1.384,1.289,1.545,1.375,1.469,1.478,1.648,1.437,1.56,1.409,5.134,5.673,1.851,1.702,1.41,1.26,0.588,1.703,1.206,1.228,1.029,1.108,1.161,1.109,1.147,1.012,1.192,1.216,1.233,0.944,1.122,1.244,9.151,2.148,1.463,1.169,1.199,1.128,1.204,1.1,0.778,1.237,0.893,0.841,0.789,0.995,1.094,1.011,1.142,0.744,1.167,1.191,20.155,5.059,2.291,2.341,4.16,18.516,2.77,1.117,1.219,1.108,1.27,1.411,1.04,0.941,1.385,1.062,1.199,1.047,1.054,1.092,1.33,1.042,1.436,1.319,0.602,0.637,1.242,1.202,1.232,2.329,25.381,0.17,2.63,3.034,2.865,1.77,1.991,1.744,1.413,1.465,1.37,1.482,5.129,5.778,5.259,5.42,5.669,6.256,4.99,6.641,1.326,6.602,2.639,5.816,3.326,1.859,2.241,4.377,6.015,3.526,0.996,0.879,1.847,1.449,0.841,1.371,0.899,1.361,1.33,2.308,8.041,1.74,1.856,1.824,1.889,2.011,1.91,2.037,2.117,7.973,2.266,1.789,2.341,1.694,2.223,1.682,1.762,3.171,1.834,2.839,0.81,0.748,0.683,0.451,0.582,0.818,0.837,0.67,0.997,0.755,0.762,0.689,0.833,0.72,0.681,0.577,0.639,0.967,0.928,1.039,0.88,1.346,1.428,1.423,1.485,0.965,0.937,0.893,0.837,0.684,0.897,0.925,0.892,0.964,1.475,0.908,1.141,2.339,0.776,0.667,0.642,0.486,0.499,0.617,0.619,0.671,0.766,0.809,0.862,0.709,0.674,0.802,0.576,0.385,0.471,0.492,0.462,0.609,0.552,0.656,0.651,0.766,0.497,0.646,0.791,0.597,0.653,0.546,0.534,1.026,0.931,0.674,1.126,4.585,1.074,1.215,0.948,1.078,0.985,0.673,0.575,0.465,0.613,0.826,1.017,1.114,0.646,0.577,0.824,0.876,0.934,0.891,1.169,1.042,1.296,0.897,1.091,0.71,0.779,1.147,1.447,0.858,0.487,0.54,0.763,0.845,0.922,1.329,0.898,0.583,0.602,0.809,0.808,1.029,0.675,0.625,0.602,0.629,0.549,0.623,0.586,0.794,0.641,1.224,2.001,2.227,2.587,1.821,3.289,2.699,2.824,2.007,1.916,3.485,3.079,1.115,1.016,1.242,0.754,1.877,3.748,11.17,9.048,0.272,1.653,1.028,1.476,1.111,0.905,0.55,0.525,0.957,0.643,0.59,0.663,0.721,0.671,0.727,0.921,0.807,0.921,0.685,0.855,0.963,0.727,0.85,0.719,1.284,28.042,1.968,1.375,0.862,1.047,1.121,0.937,1.086,0.873,1.11,3.879,1.526,8.727,3.914,3.323,3.051,3.078,1.771,1.379,1.094,1.413,1.033,0.785,0.985,0.756,0.959,1.067,1.299,0.822,0.777,0.799,1.266,0.813,0.9,0.813,0.908,1.014,1.33,3.577,0.469,0.86,0.627,0.621,0.553,0.689,0.967,0.69,0.746,1.258,1.428,0.693,0.818,0.929,1.156,0.712,0.965,0.944,0.703,1.451,1.569,1.34,1.002,0.981,3.401,1.52,0.666,0.639,0.559,0.658,0.597,0.582,0.604,0.498,0.61,0.575,0.466,0.518,0.58,0.516,0.399,0.582,0.829,1.318,3.936,5.954,5.9,4.222,0.595,0.157,0.771,0.645,0.595,0.822,0.734,0.699,0.661,0.633,0.605,0.86,0.827,0.755,0.65,0.769,0.858,1.069,1.572,1.894,1.344,3.23,0.887,2.566,12.366,1.664,1.17,1.076,0.869,0.79,0.997,1.077,0.78,0.757,0.918,0.982,0.913,0.902,1.717,2.457,11.015,1.11,1.297,0.892,0.804,0.911,0.461,0.948,0.567,1.191,0.937,0.858,0.964,1.266,0.905,0.963,0.899,1.279,0.904,0.892,0.919,0.926,0.922,0.725,1.086,1.744,5.337,5.54,3.044,1.288,1.012,0.985,1.215,1.397,0.918,0.979,0.791,0.93,0.972,0.934,0.834,3.494,4.054,8.234,3.147,1.908,2.445,28.848,0.76,0.667,0.797,0.781,0.581,0.487,0.493,0.466,0.488,0.476,0.537,0.561,2.241,4.838,5.053,0.853,0.547,0.673,0.489,0.575,0.485,0.496,0.43,0.496,0.532,0.486,0.649,0.513,0.283,0.789,0.694,0.395,0.738,0.839,1.313,2.066,5.241,7.914,2.575,3.717,1.863,4.463,4.082,3.748,3.615,3.686,23.397,22.101,4.592,4.279,3.712,3.692,4.077,4.185,26.907,11.718,2.493,0.859,0.58,0.884,0.819,0.851,0.854,0.464,0.828,0.625,0.789,0.926,0.838,0.819,0.959,0.732,0.518,0.912,0.958,2.563,4.449,7.988,5.884,4.428,3.846,3.433,7.426,0.967,2.306,4.688,7.859,4.795,3.23,1.391,1.914,1.025,1.092,0.634,0.585,0.782,0.544,0.867,0.921,0.53,0.927,0.991,0.561,0.971,0.49,0.501,0.451,0.488,0.485,0.405,0.533,0.367,0.62,0.651,0.607,0.399,1.579,12.62,1.141,0.849,2.489,3.243,3.249,3.153,4.371,19.736,4.077,3.674,9.519,3.278,2.926,6.616,3.096,3.24,3.62,7.311,3.89,3.206,5.356,15.106,2.75,3.003,4.85,4.331,13.191,4.236,3.71,1.371,4.993,12.362,1.915,0.92,1.033,1.071,0.776,0.958,0.867,1.265,0.917,0.566,0.794,0.576,0.561,0.883,0.911,0.888,0.755,0.84,0.733,0.572,0.662,0.761,0.906,0.781,2.556,2.46,1.999,1.929,1.308,1.245,2.581,0.978,1.254,0.836,0.898,0.792,1.314,0.924,1.035,0.981,0.718,1.101,1.597,1.288,1.069,1.221,1.26,1.751,1.215,1.238,1.201,1.024,0.989,0.984,4.448,1.303,1.338,0.973,0.944,1.107,1.125,0.964,1.534,1.045,1.177,0.91,0.901,0.947,1.228,1.515,1.079,1.183,1.17,0.957,0.909,0.911,0.804,0.817,1.136,1.13,4.253,6.971,0.952,1.304,1.209,0.943,0.876,0.848,0.847,0.9,0.972,1.89,1.764,1.378,1.392,0.922,0.795,0.671,0.89,0.476,0.606,0.807,0.902,1.434,1.357,1.4,0.935,0.957,0.536,0.519,9.727,1.254,1.471,0.968,0.947,0.997,1.058,0.679,0.499,0.659,0.742,0.917,1.271,0.992,0.686,0.458,0.9,1.051,1.315,0.616,0.827,1.257,1.083,0.915,0.815,1.334,2.963,2.648,1.5,7.926,1.895,0.43,2.121,1.839,1.095,1.431,1.332,1.079,0.761,1.125,1.148,0.656,1.022,1,1.275,1.32,1.199,0.908,1.111,3.28,5.407,2.624,7.588,0.534,0.688,0.557,0.527,0.866,0.805,0.78,0.764,0.835,1.085,0.852,0.621,0.531,1.834,18.554,5.58,5.69,7.52,9.491,2.195,4.972,2.56,1.57,4.58,5.158,4.409,34.185,3.662,2.512,2.053,2.046,2.279,2.173,3.462,23.567,4.387,3.453,3.408,12.362,8.344,4.247,4.056,2.314,2.383,2.191,2.017,2.158,4.05,1.747,0.885,0.839,0.884,0.812,0.759,0.806,0.823,0.924,0.976,0.816,1.044,1.026,0.844,0.938,0.857,0.892,1.649,1.485,5.846,4.319,8.114,3.371,3.039,2.986,2.374,1.836,1.836,2.948,8.082,6.491,4.532,17.956,2.41,2.514,3.397,2.333,2.343,13.474,3.051,1.409,4.794,14.828,7.202,3.906,0.804,5.352,10.271,2.139,2.217,2.106,1.674,2.085,2.203,4.446,4.374,3.785,4.255,11.244,3.919,1.602,1.669,1.535,1.786,1.616,1.705,3.293,5.354,1.673,1.022,1.269,1.106,0.743,0.812,1.301,1.27,0.961,1.872,17.352,5.085,3.687,1.359,0.734,12.71,1.477,1.361,5.718,0.858,1.595,1.648,1.568,14.589,4.22,3.359,14.625,2.224,2.263,2.64,3.262,54.173,8.973,4.136,3.033,2.873,16.574,3.876,4.393,3.059,4.055,3.568,3.302,44.669,3.151,0.114,2.853,7.91,7.511,1.858,5.028,6.83,4.658,5.499,9.706,12.414,7.744,3.656,3.226,1.775,1.543,1.499,1.216,3.377,8.034,2.144,1.887,4.659,2.188,3.113,2.176,2.517,2.681,3.294,4.694,3.577,3.579,4.61,4.768,5.713,7.057,7.362,5.043,3.981,4.348,4.363,5.594,3.987,4.265,4.496,5.621,6.964,9.944,4.644,3.421,3.646,3.529,3.054,4.735,2.542,2.267,4.82,3.968,3.13,5.705,8.465,4.245,4.638,10.913,5.075,5.104,6.108,14.398,3.545,3.782,3.821,2.668,3.589,5.991,4.396,4.472,4.494,13.112,5.623,3.365,2.447,1.889,2.697,3.342,3.092,4.408,1.732,2.735,5.03,2.672,4.724,13.436,5.886,5.013,2.824,2.047,3.589,3.901,4.449,5.831,5.844,4.966,9.959,0.153,3.053,3.055,2.987,3.565,2.966,3.096,2.409,2.631,3.169,6.258,3.633,2.524,3.315,4.911,6.97,6.061,8.078,4.961,9.063,3.351,3.618,3.508,4.913,3.787,3.311,4.27,2.988,3.825,3.68,12.335,2.744,2.443,2.867,2.914,3.04,2.789,4.321,4.602,19.238,3.67,7.284,6.925,0.953,4.245,3.862,4.86,5.319,2.948,3.212,1.508,11.029,5.351,4.302,5.761,1.486,3.043,4.707,4.454,4.483,0.914,3.995,5.173,3.387,0.977,1.592,5.059,3.558,3.45,3.484,3.749,2.924,1.355,1.734,4.578,1.469,2.304,5.058,10.723,2.525,1.945,3.276,2.818,4.022,3.942,2.917,2.664,3.096,2.06,1.794,2.346,2.807,4.088,4.043,5.732,3.124,1.359,1.343,4.131,6.117,3.559,5.967,6.756,5.487,2.601,3.008,1.625,3.344,2.642,4.057,4.372,2.378,4.48,1.609,3.612,4.348,1.548,3.738,1.677,2.441,5.184,3.617,3.422,1.422,2.772,1.974,1.629,1.602,2.616,2.938,1.703,1.516,3.25,0.923,5.783,2.078,3.918,3.751,5.24,8.747,6.151,5.231,3.274,2.215,2.579,2.894,1.932,3.345,2.294,3.42,1.547,3.222,2.712,2.713,3.07,2.571,1.989,2.211,2.884,2.543,2.091,2.047,2.182,1.99,2.246,3.203,2.56,3.265,2.741,3.089,2.383,2.488,0.567,2.621,2.913,2.805,3.434,3.602,3.35,4.016,3.011,4.761,3.12,4.669,3.169,4.926,7.407,7.259,4.911,3.276,4.509,3.874,5.75,8.38,4.859,2.609,4.32,1.636,3.139,4.709,5.721,4.444,2.305,6.132,3.829,8.084,8.829,14.677,3.433,0.711,2.47,6.975,6.233,6.808,6.629,7.956,5.328,7.478,6.545,1.977,10.73,9.768,10.692,6.869,5.926,5.925,5.212,7.651,13.595,7.336,1.25,3.969,7.037,4.76,8.434,7.288,4.764,5.988,9.877,5.133,5.524,5.738,7.587,6.729,5.502,5.596,5.158,3.623,5.998,5.873,5.523,5.046,6.415,5.076,5.403,6.461,2.891,2.797,2.559,4.193,1.477,2.712,2.563,5.069,0.911,1.391,0.617,2.605,2.865,2.866,3.92,3.942,5.951,1.945,5.367,2.102,4.144,4.358,6.564,7.061,2.076,5.211,6.765,4.248,5.22,2.519,2.075,3.123,8.118,4.361,4.526,4.867,4.933,4.648,5.362,1.841,2.51,3.185,4.182,2.585,3.438,4.117,4.049,4.424,3.677,4.435,4.383,4.604,5.191,6.33,6.749,4.287,4.024,3.757,0.119,4.157,5.467,3.016,3.624,3.532,3.029,3.907,3.328,3.347,4.785,5.717,4.158,4.885,4.537,6.384,7.695,2.131,0.75,1.84,3.906,4.321,3.116,3.146,4.125,3.9,3.989,4.083,3.36,6.219,9.124,3.307,3.935,6.259,3.953,2.831,3.75,3.331,3.439,3.955,4.726,4.057,3.529,4.611,5.295,8.972,5.922,6.734,16.181,4.445,4.593,3.686,4.195,4.433,4.221,4.176,1.734,2.619,5.506,1.368,1.392,4.404,1.688,1.32,2.554,0.913,4.751,0.922,3.023,1.857,1.986,6.46,5.749,3.68,2.978,3.169,5.277,1.193,1.437,3.141,8.727,2.299,2.372,2.005,2.456,6.172,2.853,2.992,4.806,4.83,2.075,6.648,5.456,4.131,8.406,8.158,9.823,10.528,21.024,13.233,9.922,9.912,7.711,3.773,4.887,4.39,2.622,1.646,2.589,1.594,3.217,2.006,2.042,2.088,2.16,5.862,1.633,2.153,2.886,2.094,0.59,1.61,3.136,1.516,4.739,3.026,1.18,3.277,4.273,4.469,1.661,2.656,1.939,2.037,4.447,4.142,3.271,4.506,4.487,4.688,4.3,3.766,2.225,2.239,1.5,2.648,4.133,0.703,3.185,2.346,1.976,2.07,3.326,1.453,3.015,1.29,15.808,4.223,4.033,3.724,8.727,3.658,3.283,3.226,3.188,9.375,4.375,2.829,3.475,3.973,4.415,11.623,11.471,7.605,1.906,10.977,1.852,4.032,24.999,23.641,2.188,2.234,5.916,5.177,3.97,2.422,3.098,4.402,7.03,10.392,2.586,2.516,5.992,3.086,2.145,2.173,2.745,4.913,2.813,1.516,2.508,4.438,1.547,2.773,1.01,0.998,5.908,4.317,4.597,1.466,1.258,1.484,2.648,1.953,4.09,4.068,4.289,4.327,9.782,4.022,1.992,4.159,1.344,13.069,14.382,2.328,3.52,5.43,4.061,4.975,5.732,5.705,3.33,3.778,3.827,3.612,4.322,5.455,6.464,10.814,2.399,2.551,2.334,2.299,2.454,1.95,2.309,8.016,12.228,12.872,7.929,8.268,3.739,3.533,4.142,28.301,18.61,7.936,2.361,10.443,17.288,1.414,3.204,4.68,2.326,2.301,1.314,1.76,1.807,1.726,1.742,3.344,4.834,1.713,3.156,1.524,1.485,1.893,1.907,11.194,11.191,12.039,7.04,10.726,10.575,0.691,4.023,5.193,0.625,0.359,0.844,0.769,0.665,0.655,0.893,0.9,0.781,0.804,1.078,1.561,2.108,2.104,1.234,1.053,1.01,0.831,0.859,0.924,3.227,0.918,0.752,0.828,1.361,1.522,0.929,1.165,0.725,0.87,0.858,0.937,0.835,0.915,0.746,0.451,0.444,0.5,0.634,0.602,0.845,0.738,0.542,0.508,0.581,0.689,0.828,0.777,0.644,0.635,0.697,0.744,0.694,0.77,0.785,0.731,0.872,0.798,1.123,1.303,1.42,2.734,2.18,1.504,2.246,2.874,1.48,3.842,3.508,1.989,0.533,0.646,0.632,0.526,0.474,0.655,0.656,0.648,0.723,0.602,0.92,1.104,1.617,1.749,0.688,0.448,0.684,1.317,0.604,0.634,0.713,0.797,0.828,0.794,0.624,0.676,0.867,0.682,3.451,3.147,1.353,1.707,1.642,1.712,3.265,1.345,2.515,2.084,1.738,0.713,0.725,2.342,2.393,2.377,3.963,2.371,2.334,2.541,2.225,1.567,4.003,3.275,0.745,4.097,19.625,5.015,6.086,26.961,4.455,4.795,2.812,0.367,11.186,3.078,3.961,10.132,2.871,2.379,0.407,4.152,1.486,2.039,0.285,8.577,3.531,0.672,3.006,7.687,7.875,3.67,2.559,2.463,1.977,2.073,3.78,3.849,0.582,4.273,6.757,1.197,1.958,2.57,0.687,2.437,6.977,2.157,4.214,0.692,1.511,1.038,0.853,0.821,0.976,2.013,1.965,1.939,1.941,1.949,3.421,2.766,2.741,1.272,1.402,1.697,1.699,6.535,5.381,5.177,7.813,2.452,2.321,1.239,3.03,0.624,0.546,0.696,5.754,0.457,0.442,0.456,0.697,2.869,7.248,4.847,2.945,1.098,3.585,0.281,7.718,5.538,1.024,0.676,0.093,0.502,0.538,0.449,0.498,0.602,0.459,0.457,2.603,1.309,3.352,1.655,1.775,3.319,0.891,0.782,7.038,7.161,18.492,6.227,3.317,0.401,1.31,3.679,4.194,7.837,5.603,1.096,0.802,4.6,9.473,6.776,5.722,0.762,3.079,7.886,0.84,2.907,13.321,8.098,0.45,2.455,1,3.579,0.709,0.857,7.552,1.632,16.32,0.848,0.856,4.929,0.767,13.361,2.406,3.997,0.808,1.258,1.054,0.593,1.024,3.643,15.009,0.865,1.457,13.778,1.046,29.626,3.077,1.216,0.696,6.337,6.23,3.277,8.305,3.979,0.619,1.273,18.074,10.671,12.007,6.406,5.398,6.197,8.066,4.94,8.745,6.817,2.05,2.026,1.411,1.274,4.406,3.144,1.295,2.191,0.926,5.256,5.725,3.179,10.436,10.61,5.172,1.201,3.628,1.079,2.144,8.703,3.452,3.804,4.602,3.639,2.469,1.049,3.187,1.756,1.335,10.388,1.131,2.039,16.049,4.751,2.346,9.136,1.37,0.983,0.753,2.607,3.968,3.644,2.352,5.566,2.722,20.777,6.031,0.704,10.803,3.961,7.618,2.588,7.051,5.937,11.108,10.625,5.871,1.804,12.319,17.437,1.356,1.307,1.187,1.35,1.155,1.039,1.029,1.035,1.485,1.597,1.703,1.299,1.405,1.201,1.52,1.147,0.799,1.299,11.094,0.452,0.465,0.479,1.419,0.427,0.609,0.961,0.946,2.349,4.85,7.298,9.907,3.623,3.074,0.295,4.532,7.004,1.565,1.367,0.976,0.654,1.242,4.725,4.621,9.786,1.922,6.945,2.641,2.643,3.528,0.788,5.039,10.481,1.182,2.911]},"incidents":[{"id":"11793474579685072","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-01T12:20:09Z","end_time":"2023-12-31T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"B1 Leipziger Strasse: Bauarbeiten um Friedrichstrasse","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der B1 Leipziger Strasse in Richtung Westen um Friedrichstrasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":12,"south":52.510349,"west":13.389899,"north":52.510356,"east":13.390075,"congestion":{"value":101},"geometry_index_start":31,"geometry_index_end":32,"affected_road_names":["Leipziger Straße/B 1"],"affected_road_names_de":["Leipziger Straße/B 1"]},{"id":"3738638213969184","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-03-19T23:00:00Z","end_time":"2023-12-31T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"B1: Bauarbeiten zwischen Platz Des Volksaufstandes Von 1953 und Potsdamer Platz","long_description":"Fahrbahnverengung von auf eine Fahrspur wegen Bauarbeiten auf der B1 in beiden Richtungen zwischen Platz Des Volksaufstandes Von 1953 und Potsdamer Platz.","impact":"low","alertc_codes":[743],"traffic_codes":{"incident_primary_code":743},"lanes_blocked":[],"length":506,"south":52.509593,"west":13.37679,"north":52.510009,"east":13.384216,"congestion":{"value":101},"geometry_index_start":51,"geometry_index_end":83,"affected_road_names":["Leipziger Straße/B 1","Leipziger Platz/B 1"],"affected_road_names_de":["Leipziger Straße/B 1","Leipziger Platz/B 1"]},{"id":"14680289252185248","type":"disabled_vehicle","creation_time":"2023-10-25T09:17:15Z","start_time":"2023-10-25T07:44:41Z","end_time":"2023-10-25T13:37:54Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: abgestellte Fahrzeug zwischen A9 und 4 L85","long_description":"Abgestellte Fahrzeug auf der A9 in Richtung Süden zwischen A9 und 4 L85. Auf dem Seitenstreifen. Fahren Sie mit extremer Vorsicht.","impact":"minor","sub_type":"CONGESTION","alertc_codes":[211,111],"traffic_codes":{"incident_primary_code":211},"lanes_blocked":[],"length":10644,"south":52.158176,"west":12.781396,"north":52.215812,"east":12.899682,"congestion":{"value":101},"geometry_index_start":1069,"geometry_index_end":1160,"affected_road_names":["A 9/E 51"],"affected_road_names_de":["A 9/E 51"]},{"id":"8070726696213233","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-07T11:17:47Z","end_time":"2023-12-15T11:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten zwischen 15 und 17","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A9 in beiden Richtungen zwischen 15 A14 20,Schkeuditzer Kreuz und 17 B181 Anschlussstelle Leipzig-West.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":9451,"south":51.351638,"west":12.180443,"north":51.433712,"east":12.201517,"congestion":{"value":101},"geometry_index_start":1919,"geometry_index_end":2013,"affected_road_names":["A 9/E 51","A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 51","A 9/E 49/E 51"]},{"id":"6933437896913765","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-07T06:42:16Z","end_time":"2023-12-22T14:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Bauarbeiten von A9 nach 18 L187","long_description":"Fahrspurverengung wegen Bauarbeiten auf der A9 in Richtung Süden von A9 nach 18 L187.","impact":"minor","sub_type":"LANE_RESTRICTION","alertc_codes":[701,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":16128,"south":51.28934,"west":12.134837,"north":51.423274,"east":12.195495,"congestion":{"value":101},"geometry_index_start":1936,"geometry_index_end":2080,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"1694045142279175","type":"road_hazard","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-18T12:01:19Z","end_time":"2023-10-27T11:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Straßenmarkierungsarbeiten zwischen 20 und 21B","long_description":"Seitenstreifen gesperrt wegen Straßenmarkierungsarbeiten auf der A9 in Richtung Süden zwischen 20 B91 Anschlussstelle Weissenfels und 21B L198 Eisenberger Strasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[706,504],"traffic_codes":{"incident_primary_code":706},"lanes_blocked":[],"length":16184,"south":51.040397,"west":11.940981,"north":51.177051,"east":12.003101,"congestion":{"value":101},"geometry_index_start":2215,"geometry_index_end":2344,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"12511815438130840","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-19T05:00:00Z","end_time":"2023-11-17T17:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Fahrspur gesperrt zwischen A9 und 24 A4 56A","long_description":"Fahrspur gesperrt wegen Abschnitte mit Asphaltierungsarbeiten auf der A9 in beiden Richtungen zwischen A9 und 24 A4 56A.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[500,704],"traffic_codes":{"incident_primary_code":500},"lanes_blocked":[],"length":10945,"south":50.880104,"west":11.833704,"north":50.970691,"east":11.862039,"congestion":{"value":101},"geometry_index_start":2431,"geometry_index_end":2535,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"4071827464197091","type":"lane_restriction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-02T12:26:35Z","end_time":"2023-11-01T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A9: Fahrspur gesperrt zwischen A9 und 24 A4 56A","long_description":"Fahrspur gesperrt wegen Abschnitte mit Asphaltierungsarbeiten auf der A9 in beiden Richtungen zwischen A9 und 24 A4 56A.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[500,704],"traffic_codes":{"incident_primary_code":500},"lanes_blocked":[],"length":3516,"south":50.87989,"west":11.841493,"north":50.9113,"east":11.84659,"congestion":{"value":101},"geometry_index_start":2507,"geometry_index_end":2535,"affected_road_names":["A 9/E 49/E 51"],"affected_road_names_de":["A 9/E 49/E 51"]},{"id":"8031298247430740","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-18T04:00:00Z","end_time":"2023-11-01T17:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Brückeninstandhaltungsarbeiten zwischen 45 A71 12 und 47B L1056","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Brückeninstandhaltungsarbeiten und Abschnitte mit Asphaltierungsarbeiten auf der A4 in beiden Richtungen zwischen 45 A71 12 und 47B L1056.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[707,704,515],"traffic_codes":{"incident_primary_code":707},"lanes_blocked":[],"length":13451,"south":50.894462,"west":10.955423,"north":50.92646,"east":11.138545,"congestion":{"value":101},"geometry_index_start":3199,"geometry_index_end":3319,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"16260311406674045","type":"disabled_vehicle","creation_time":"2023-10-25T09:17:15Z","start_time":"2023-10-25T07:19:45Z","end_time":"2023-10-25T13:13:08Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: abgestellte Fahrzeug zwischen 41B L1026 und 41A L1025","long_description":"Abgestellte Fahrzeug auf der A4 in Richtung Westen zwischen 41B L1026 und 41A L1025. Auf dem Seitenstreifen. Fahren Sie mit extremer Vorsicht.","impact":"minor","sub_type":"CONGESTION","alertc_codes":[211,111],"traffic_codes":{"incident_primary_code":211},"lanes_blocked":[],"length":4911,"south":50.906188,"west":10.548242,"north":50.92004,"east":10.6119,"congestion":{"value":101},"geometry_index_start":3616,"geometry_index_end":3683,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"16418187651594055","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-06T22:00:00Z","end_time":"2023-11-21T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Abschnitte mit Asphaltierungsarbeiten zwischen 37 B400 und 39 B19","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Abschnitte mit Asphaltierungsarbeiten auf der A4 in beiden Richtungen zwischen 37 B400 und 39 B19.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[704,515],"traffic_codes":{"incident_primary_code":704},"lanes_blocked":[],"length":10961,"south":51.005447,"west":10.11717,"north":51.017345,"east":10.267592,"congestion":{"value":101},"geometry_index_start":3995,"geometry_index_end":4148,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"1304540888974597","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-17T05:16:49Z","end_time":"2024-04-28T21:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen A4 und 37 B400","long_description":"Bauarbeiten auf der A4 in beiden Richtungen zwischen A4 und 37 B400.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":9279,"south":51.00576,"west":10.117588,"north":51.017345,"east":10.244636,"congestion":{"value":101},"geometry_index_start":4021,"geometry_index_end":4146,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"4605627051740019","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-11T22:00:00Z","end_time":"2023-11-30T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen 38 L3251 Eisenacher Strasse und 37 B400","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A4 in Richtung Westen zwischen 38 L3251 Eisenacher Strasse und 37 B400.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":4638,"south":51.007286,"west":10.117986,"north":51.017345,"east":10.181569,"congestion":{"value":101},"geometry_index_start":4091,"geometry_index_end":4144,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"8552995970245167","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-17T06:00:00Z","end_time":"2023-12-31T14:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen 35 L3248 und 37 B400","long_description":"Fahrspurverengung wegen Bauarbeiten auf der A4 in beiden Richtungen zwischen 35 L3248 und 37 B400.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":10922,"south":50.957355,"west":10.013813,"north":51.016906,"east":10.118174,"congestion":{"value":101},"geometry_index_start":4143,"geometry_index_end":4319,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"15894253910569590","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-28T22:00:00Z","end_time":"2024-01-30T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten zwischen 33 B62 und 32 B27 Anschlussstelle Bad Hersfeld","long_description":"Fahrspurverengung wegen Bauarbeiten auf der A4 in Richtung Westen zwischen 33 B62 und 32 B27 Anschlussstelle Bad Hersfeld.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":11250,"south":50.85361,"west":9.722569,"north":50.894489,"east":9.855323,"congestion":{"value":101},"geometry_index_start":4560,"geometry_index_end":4742,"affected_road_names":["A 4/E 40"],"affected_road_names_de":["A 4/E 40"]},{"id":"1993788692500850","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-10T10:43:44Z","end_time":"2023-11-26T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A4: Bauarbeiten nahe Kirchheimer Dreieck A7 86,87,Anschlussstelle Kirchheim","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A4 in Richtung Westen nahe Kirchheimer Dreieck A7 86,87,Anschlussstelle Kirchheim.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":20,"south":50.832118,"west":9.576452,"north":50.832283,"east":9.576582,"congestion":{"value":101},"geometry_index_start":4939,"geometry_index_end":4940,"affected_road_names":["E 40"],"affected_road_names_de":["E 40"]},{"id":"619736488739910","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-10-11T05:02:03Z","end_time":"2023-11-26T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A7: Bauarbeiten nahe 86,87,Anschlussstelle Kirchheim A4 Kirchheimer Dreieck","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A7 in Richtung Süden nahe 86,87,Anschlussstelle Kirchheim A4 Kirchheimer Dreieck.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":2,"south":50.829055,"west":9.574076,"north":50.829074,"east":9.574088,"congestion":{"value":101},"geometry_index_start":4944,"geometry_index_end":4945,"affected_road_names":["E 40"],"affected_road_names_de":["E 40"]},{"id":"11215079429708365","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-18T06:00:00Z","end_time":"2023-10-27T18:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A5: Bauarbeiten zwischen A7 88 und 2 B62","long_description":"Temporäre Breitenbeschränkung und Abschleppspur gesperrt wegen Bauarbeiten auf der A5 in Richtung Süden zwischen A7 88 und 2 B62.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,639,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":18650,"south":50.749824,"west":9.299573,"north":50.80809,"east":9.530817,"congestion":{"value":101},"geometry_index_start":5037,"geometry_index_end":5372,"affected_road_names":["A 5/E 40"],"affected_road_names_de":["A 5/E 40"]},{"id":"3722603253572537","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-08-21T05:00:00Z","end_time":"2023-11-10T06:00:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A5: Bauarbeiten in Altenburg","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A5 in beiden Richtungen in Altenburg.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":27531,"south":50.643344,"west":8.988188,"north":50.747631,"east":9.297691,"congestion":{"value":101},"geometry_index_start":5375,"geometry_index_end":5768,"affected_road_names":["A 5/E 40"],"affected_road_names_de":["A 5/E 40"]},{"id":"15705690200548383","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-09-21T11:09:56Z","end_time":"2023-12-06T14:30:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A5: Bauarbeiten nahe 11,Gambacher Kreuz A45 35,Gambacher Kreuz","long_description":"Fahrspurverengung wegen Bauarbeiten und Abschnitte mit Asphaltierungsarbeiten auf der A5 in Richtung Süden nahe 11,Gambacher Kreuz A45 35,Gambacher Kreuz.","impact":"low","sub_type":"CONSTRUCTION","alertc_codes":[701,704,518],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":19,"south":50.463134,"west":8.720842,"north":50.463294,"east":8.720922,"congestion":{"value":101},"geometry_index_start":6053,"geometry_index_end":6054,"affected_road_names":["A 5/E 451"],"affected_road_names_de":["A 5/E 451"]},{"id":"13245284980538074","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-26T12:40:00Z","end_time":"2023-11-30T14:30:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A67: Bauarbeiten zwischen 2 B486 und 3 A60 30,Rüsselsheimer Dreieck","long_description":"Temporäre Breitenbeschränkung wegen Bauarbeiten auf der A67 in Richtung Süden zwischen 2 B486 und 3 A60 30,Rüsselsheimer Dreieck.","impact":"low","alertc_codes":[701,1851],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1346,"south":49.978237,"west":8.464899,"north":49.990093,"east":8.467987,"congestion":{"value":101},"geometry_index_start":6858,"geometry_index_end":6866,"affected_road_names":["A 67/E 35/E 42","A 67/E 35"],"affected_road_names_de":["A 67/E 35/E 42","A 67/E 35"]},{"id":"13170675045106851","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-06-13T22:00:00Z","end_time":"2023-12-31T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Abschnitte mit Asphaltierungsarbeiten zwischen A6 und 16B","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Abschnitte mit Asphaltierungsarbeiten auf der A6 in beiden Richtungen zwischen A6 und 16B K13 Ludwigshafener Strasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[704,515],"traffic_codes":{"incident_primary_code":704},"lanes_blocked":[],"length":6667,"south":49.452388,"west":7.821276,"north":49.473091,"east":7.907007,"congestion":{"value":101},"geometry_index_start":8050,"geometry_index_end":8099,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"7747550916350189","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-10T08:45:07Z","end_time":"2023-12-15T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Bauarbeiten nahe 15 B270 Anschlussstelle Kaiserslautern-West","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A6 in beiden Richtungen nahe 15 B270 Anschlussstelle Kaiserslautern-West.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":14,"south":49.446502,"west":7.697447,"north":49.446544,"east":7.69763,"congestion":{"value":101},"geometry_index_start":8208,"geometry_index_end":8210,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"3885770694222663","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2023-07-09T22:00:00Z","end_time":"2023-12-01T22:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Bauarbeiten zwischen 15 B270 Anschlussstelle Kaiserslautern-West und 13 L363","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A6 in beiden Richtungen zwischen 15 B270 Anschlussstelle Kaiserslautern-West und 13 L363.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":882,"south":49.439994,"west":7.647759,"north":49.442581,"east":7.659265,"congestion":{"value":101},"geometry_index_start":8237,"geometry_index_end":8247,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"3321313322543589","type":"construction","creation_time":"2023-10-25T09:10:32Z","start_time":"2020-07-01T12:18:12Z","end_time":"2025-05-31T21:59:00Z","iso_3166_1_alpha2":"DE","iso_3166_1_alpha3":"DEU","description":"A6: Bauarbeiten zwischen 5 L126 und 4 L107 Provinzialstrasse","long_description":"Fahrbahnverengung von auf zwei Fahrspuren wegen Bauarbeiten auf der A6 in beiden Richtungen zwischen 5 L126 und 4 L107 Provinzialstrasse.","impact":"low","sub_type":"LANE_RESTRICTION","alertc_codes":[701,515],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":7638,"south":49.204429,"west":7.050837,"north":49.259918,"east":7.103932,"congestion":{"value":101},"geometry_index_start":8723,"geometry_index_end":8857,"affected_road_names":["A 6/E 50"],"affected_road_names_de":["A 6/E 50"]},{"id":"3079822411114516","type":"construction","creation_time":"2023-10-25T09:10:29Z","start_time":"2023-10-25T07:00:00Z","end_time":"2023-10-25T13:00:00Z","iso_3166_1_alpha2":"FR","iso_3166_1_alpha3":"FRA","description":"A320: travail de maintenance entre 42 D31 E et D603 Rue Nationale","long_description":"Travail de maintenance sur A320 Direction ouest entre 42 D31 E et D603 Rue Nationale.","impact":"low","alertc_codes":[703],"traffic_codes":{"incident_primary_code":703},"lanes_blocked":[],"length":5768,"south":49.144138,"west":6.819635,"north":49.172134,"east":6.883303,"congestion":{"value":101},"geometry_index_start":9149,"geometry_index_end":9219,"affected_road_names":["A 320/E 50"],"affected_road_names_fr":["A 320/E 50"]},{"id":"10411750007125237","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-24T23:04:12Z","end_time":"2023-10-25T11:04:12Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción entre 69,145 AP-8 70,71 y 133 GI-632","long_description":"Obras de construcción en la Hacia el oeste AP-1 entre 69,145 AP-8 70,71 y 133 GI-632.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1921,"south":43.127689,"west":-2.427878,"north":43.144569,"east":-2.425008,"congestion":{"value":101},"geometry_index_start":24889,"geometry_index_end":24911,"affected_road_names":["AP-1/E 05/E 80/Eibar-Gasteiz autobidea","AP-1/E 05/E 80/Iparraldeko autobidea"],"affected_road_names_unknown":["AP-1/E 05/E 80/Eibar-Gasteiz autobidea","AP-1/E 05/E 80/Iparraldeko autobidea"]},{"id":"51937864075633","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T07:13:00Z","end_time":"2023-10-25T10:13:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción en 5 BU-535","long_description":"Obras de construcción en la Hacia el sur AP-1 en 5 BU-535.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":13,"south":42.702838,"west":-2.966865,"north":42.702877,"east":-2.966716,"congestion":{"value":101},"geometry_index_start":25967,"geometry_index_end":25968,"affected_road_names":["AP-1/E 05/E 80/Autopista del Norte"],"affected_road_names_unknown":["AP-1/E 05/E 80/Autopista del Norte"]},{"id":"16869780136304791","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-24T21:31:00Z","end_time":"2023-10-25T18:31:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción en Lugar De Santa Cruz","long_description":"Obras de construcción en la Hacia el oeste A-62 en Lugar De Santa Cruz.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":27,"south":41.711879,"west":-4.702873,"north":41.712066,"east":-4.702665,"congestion":{"value":101},"geometry_index_start":29146,"geometry_index_end":29148,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"14716208523825844","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T07:11:00Z","end_time":"2023-10-25T10:11:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción en 148","long_description":"Obras de construcción en la Hacia el oeste A-62 en 148.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":21,"south":41.507923,"west":-4.969357,"north":41.507972,"east":-4.969115,"congestion":{"value":101},"geometry_index_start":29548,"geometry_index_end":29549,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"7510661461306568","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-23T07:09:00Z","end_time":"2023-10-28T07:09:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 155,156 N-122 y 163","long_description":"Obras de construcción en la Hacia el oeste A-62 entre 155,156 N-122 y 163.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":6644,"south":41.458965,"west":-5.078851,"north":41.497493,"east":-5.022029,"congestion":{"value":101},"geometry_index_start":29635,"geometry_index_end":29689,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"9678083122641995","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:07:00Z","end_time":"2023-10-25T12:07:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 275 CV-107 y 282 DSA-307","long_description":"Obras de construcción en la Hacia el oeste A-62 entre 275 CV-107 y 282 DSA-307.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1049,"south":40.845039,"west":-6.066675,"north":40.847618,"east":-6.054899,"congestion":{"value":101},"geometry_index_start":30748,"geometry_index_end":30761,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"2429546510794495","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:07:00Z","end_time":"2023-10-25T12:07:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre A-62 y 325","long_description":"Obras de construcción en la Hacia el oeste A-62 entre A-62 y 325.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1013,"south":40.625965,"west":-6.499186,"north":40.633785,"east":-6.493387,"congestion":{"value":101},"geometry_index_start":31140,"geometry_index_end":31157,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]}],"admins":[{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"DEU","iso_3166_1":"DE"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"PRT","iso_3166_1":"PT"}],"via_waypoints":[]},{"notifications":[{"details":{"actual_value":"PT,ES","message":"Crossing the border of the countries of PT and ES."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":3532,"geometry_index_start":3530},{"details":{"actual_value":"ES,FR","message":"Crossing the border of the countries of ES and FR."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":12210,"geometry_index_start":12209},{"details":{"actual_value":"FR,IT","message":"Crossing the border of the countries of FR and IT."},"subtype":"countryBorderCrossing","type":"alert","geometry_index_end":22888,"geometry_index_start":22883}],"summary":"Rua do Alecrim, Rua das Taipas, Rua da Conceição da Glória, Praça da Alegria, Avenida da Liberdade, Praça Marquês de Pombal (Rotunda), Avenida Fontes Pereira de Melo, Avenida da República (Túnel), Campo Grande, Avenida Marechal Craveiro Lopes/2ª Circular, A 23, E 80, A-62, BU-30, A-1, Carretera de Madrid a Irún, E 05, N-622, AP-1, A 620, A 9, A 7, A 8, E 25, A26/A7, A7, Piazza Gian Antonio Maggi, Via Spezia, Piazza Serafino Belfanti, Viale Liguria, Piazzale Lodi, Viale Umbria, Piazza Michele Cappelli, Piazzale Dateo","distance":2146113.75,"steps":[{"voiceInstructions":[{"ssmlAnnouncement":"Drive north on Rua do Alecrim for a half mile.","announcement":"Drive north on Rua do Alecrim for a half mile.","distanceAlongGeometry":627.083},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Rua das Taipas.","announcement":"In a quarter mile, Bear right onto Rua das Taipas.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Rua das Taipas.","announcement":"Bear right onto Rua das Taipas.","distanceAlongGeometry":87.111}],"intersections":[{"entry":[true],"bearings":[6],"duration":10.915,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":11.734,"geometry_index":0,"location":[-9.143242,38.708802]},{"entry":[true,false,false],"in":1,"bearings":[6,186,270],"duration":8.107,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":9.41,"geometry_index":2,"location":[-9.143161,38.709453]},{"entry":[true,false,true],"in":1,"bearings":[6,186,275],"duration":13.136,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":14.942,"geometry_index":3,"location":[-9.14311,38.709854]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.143041,38.710404],"geometry_index":5,"admin_index":0,"weight":8.295,"is_urban":true,"traffic_signal":true,"turn_duration":2,"turn_weight":5.5,"duration":4.541,"bearings":[12,186],"out":0,"in":1,"entry":[true,false]},{"entry":[true,true,false,false],"in":2,"bearings":[11,68,192,237],"duration":4.161,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":6.069,"geometry_index":6,"location":[-9.143012,38.71051]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.14298,38.710644],"geometry_index":10,"admin_index":0,"weight":4.14,"is_urban":true,"traffic_signal":true,"turn_duration":2.022,"turn_weight":1.5,"duration":4.422,"bearings":[8,124,191,315],"out":0,"in":2,"entry":[true,false,false,true]},{"mapbox_streets_v8":{"class":"secondary"},"location":[-9.142963,38.710736],"geometry_index":11,"admin_index":0,"weight":4.168,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":1,"duration":4.899,"bearings":[8,103,188,284],"out":0,"in":2,"entry":[true,false,false,false]},{"entry":[true,false,true],"in":1,"bearings":[1,188,227],"duration":17.133,"turn_weight":0.5,"turn_duration":0.033,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":0,"weight":19.738,"geometry_index":12,"location":[-9.142944,38.710842]},{"entry":[false,false,true],"in":0,"bearings":[181,265,359],"duration":12.622,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":14.675,"geometry_index":14,"location":[-9.142929,38.711526]},{"entry":[true,false,true],"in":1,"bearings":[92,173,347],"duration":1.38,"turn_weight":0.5,"turn_duration":0.03,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":2.019,"geometry_index":16,"location":[-9.142976,38.712031]},{"entry":[false,false,false,true],"in":1,"bearings":[76,167,260,346],"duration":9.471,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"weight":11.631,"geometry_index":17,"location":[-9.142992,38.712084]},{"entry":[false,false,true],"in":0,"bearings":[166,267,346],"duration":11.482,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":13.409,"geometry_index":18,"location":[-9.143108,38.712452]},{"entry":[false,false,false,true],"in":1,"bearings":[79,166,259,343],"duration":2.271,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.588,"geometry_index":20,"location":[-9.143247,38.712896]},{"entry":[true,false,true],"in":1,"bearings":[79,163,333],"duration":5.178,"turn_weight":5.5,"turn_duration":0.036,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":11.414,"geometry_index":21,"location":[-9.14328,38.712978]},{"entry":[false,false,true],"in":0,"bearings":[153,253,331],"duration":7.735,"turn_weight":0.5,"turn_duration":0.021,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.371,"geometry_index":23,"location":[-9.143383,38.713135]},{"entry":[false,false,false,true],"in":1,"bearings":[83,151,265,331],"duration":4.635,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"weight":6.323,"geometry_index":25,"location":[-9.143549,38.713373]},{"entry":[false,false,true],"in":0,"bearings":[151,252,333],"duration":8.237,"turn_weight":0.5,"turn_duration":0.008,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":9.963,"geometry_index":26,"location":[-9.143651,38.713518]},{"entry":[false,false,true],"in":0,"bearings":[153,252,334],"duration":8.75,"turn_weight":0.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":2,"weight":10.554,"geometry_index":27,"location":[-9.14382,38.713774]},{"bearings":[15,154,251,339],"entry":[false,false,false,true],"in":1,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"secondary"},"is_urban":true,"admin_index":0,"out":3,"geometry_index":28,"location":[-9.143989,38.71405]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua das Taipas"}],"type":"turn","modifier":"slight right","text":"Rua das Taipas"},"distanceAlongGeometry":627.083}],"speedLimitUnit":"km/h","maneuver":{"type":"depart","instruction":"Drive north on Rua do Alecrim.","bearing_after":6,"bearing_before":0,"location":[-9.143242,38.708802]},"speedLimitSign":"vienna","name":"Rua do Alecrim","weight_typical":179.245,"duration_typical":145.001,"duration":145.001,"distance":627.083,"driving_side":"right","weight":179.245,"mode":"driving","geometry":"ccryhAr{`mPee@wCoAIaXeBgBKc^}BsEy@MCq@K_BYkBUwDa@sEe@aRMuVO}LHsPrAiB^_VfFkB`@kWrFcD`AgBdAqEfCmAt@mKtGaHjE_OpIgPpI}J~D"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Bear right onto Rua da Conceição da Glória.","announcement":"In a quarter mile, Bear right onto Rua da Conceição da Glória.","distanceAlongGeometry":353.695},{"ssmlAnnouncement":"Bear right.","announcement":"Bear right.","distanceAlongGeometry":40}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[21,159,336],"duration":1.315,"turn_weight":6.5,"turn_duration":0.115,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":7.88,"geometry_index":29,"location":[-9.144085,38.714241]},{"entry":[true,false,false,false],"in":2,"bearings":[23,158,201,339],"duration":16.208,"turn_weight":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":20.63,"geometry_index":31,"location":[-9.14406,38.714291]},{"entry":[false,false,true],"in":1,"bearings":[148,203,346],"duration":22.901,"turn_weight":1.5,"turn_duration":0.301,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"weight":28.055,"geometry_index":32,"location":[-9.143695,38.714965]},{"entry":[false,true],"in":0,"bearings":[142,314],"duration":11.8,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":14.865,"geometry_index":35,"location":[-9.14425,38.715866]},{"entry":[false,true],"in":0,"bearings":[134,314],"duration":14.2,"turn_weight":1,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"weight":17.685,"geometry_index":36,"location":[-9.144739,38.716234]},{"bearings":[134,280],"entry":[false,true],"in":0,"turn_weight":1.5,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":38,"location":[-9.145335,38.716677]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Rua da Conceição da Glória"}],"type":"turn","modifier":"slight right","text":"Rua da Conceição da Glória"},"distanceAlongGeometry":363.695}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Rua das Taipas.","modifier":"slight right","bearing_after":21,"bearing_before":339,"location":[-9.144085,38.714241]},"speedLimitSign":"vienna","name":"Rua das Taipas","weight_typical":98.535,"duration_typical":73.024,"duration":73.024,"distance":363.695,"driving_side":"right","weight":98.535,"mode":"driving","geometry":"aw|yhAhpbmP_@ScA]ci@yU{@_@{q@z]qBxC_Vp]sWb`@aBbCgBbV"},{"voiceInstructions":[{"ssmlAnnouncement":"In 400 feet, Turn left onto Praça da Alegria.","announcement":"In 400 feet, Turn left onto Praça da Alegria.","distanceAlongGeometry":117.459},{"ssmlAnnouncement":"Turn left onto Praça da Alegria. Then Turn right to stay on Praça da Alegria.","announcement":"Turn left onto Praça da Alegria. Then Turn right to stay on Praça da Alegria.","distanceAlongGeometry":70.833}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[100,280,324],"duration":6.731,"turn_weight":6.5,"turn_duration":0.131,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":2,"weight":14.42,"geometry_index":39,"location":[-9.145705,38.716729]},{"entry":[true,false],"in":1,"bearings":[65,144],"duration":8.4,"turn_weight":2,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":12.08,"geometry_index":40,"location":[-9.145931,38.716969]},{"bearings":[66,132,245,313],"entry":[true,true,false,true],"in":2,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":41,"location":[-9.145492,38.717129]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Praça da Alegria"}],"type":"turn","modifier":"right","text":"Praça da Alegria"},"primary":{"components":[{"type":"text","text":"Praça da Alegria"}],"type":"turn","modifier":"left","text":"Praça da Alegria"},"distanceAlongGeometry":127.459}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Rua da Conceição da Glória.","modifier":"slight right","bearing_after":324,"bearing_before":280,"location":[-9.145705,38.716729]},"speedLimitSign":"vienna","name":"Rua da Conceição da Glória","weight_typical":42.54,"duration_typical":26.838,"duration":26.838,"distance":127.459,"driving_side":"right","weight":42.54,"mode":"driving","geometry":"qrazhApuemP_NbM_ImZaKga@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right to stay on Praça da Alegria. Then Stay straight to take the ramp.","announcement":"Turn right to stay on Praça da Alegria. Then Stay straight to take the ramp.","distanceAlongGeometry":70.833}],"intersections":[{"entry":[true,false,false,true],"in":2,"bearings":[62,131,246,312],"duration":13.725,"turn_weight":10,"turn_duration":7.039,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":3,"weight":18.023,"geometry_index":42,"location":[-9.144944,38.717322]},{"entry":[true,false,false],"in":1,"bearings":[58,132,313],"duration":5.681,"turn_weight":2,"turn_duration":4.001,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"weight":4.016,"geometry_index":43,"location":[-9.14517,38.717479]},{"bearings":[55,146,238,322],"entry":[true,false,false,false],"in":2,"turn_weight":2,"turn_duration":0.022,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":44,"location":[-9.145097,38.717514]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Stay straight to take the ramp"}],"type":"turn","modifier":"straight","text":"Stay straight to take the ramp"},"primary":{"components":[{"type":"text","text":"Praça da Alegria"}],"type":"turn","modifier":"right","text":"Praça da Alegria"},"distanceAlongGeometry":102.346}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Praça da Alegria.","modifier":"left","bearing_after":312,"bearing_before":66,"location":[-9.144944,38.717322]},"speedLimitSign":"vienna","name":"Praça da Alegria","weight_typical":43.911,"duration_typical":35.988,"duration":35.988,"distance":102.346,"driving_side":"right","weight":43.911,"mode":"driving","geometry":"swbzhA~edmPyHbMeAqCy@uBsAuCoBmCkCuBgDeAiDc@kCR_Dr@"},{"voiceInstructions":[{"ssmlAnnouncement":"Stay straight to take the ramp. Then Turn left onto Avenida da Liberdade.","announcement":"Stay straight to take the ramp. Then Turn left onto Avenida da Liberdade.","distanceAlongGeometry":40.484}],"intersections":[{"bearings":[56,169,318],"entry":[true,false,true],"in":1,"turn_weight":2,"turn_duration":0.576,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":52,"location":[-9.144816,38.71803]}],"bannerInstructions":[{"sub":{"components":[{"type":"text","text":"Avenida da Liberdade"}],"type":"turn","modifier":"left","text":"Avenida da Liberdade"},"primary":{"components":[{"type":"text","text":"Stay straight to take the ramp"}],"type":"turn","modifier":"straight","text":"Stay straight to take the ramp"},"distanceAlongGeometry":40.484}],"speedLimitUnit":"km/h","maneuver":{"type":"continue","instruction":"Turn right to stay on Praça da Alegria.","modifier":"right","bearing_after":56,"bearing_before":349,"location":[-9.144816,38.71803]},"speedLimitSign":"vienna","name":"Praça da Alegria","weight_typical":12.8,"duration_typical":9.576,"duration":9.576,"distance":40.484,"driving_side":"right","weight":12.8,"mode":"driving","geometry":"{cdzhA~}cmPoJsTi@mA"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn left onto Avenida da Liberdade.","announcement":"Turn left onto Avenida da Liberdade.","distanceAlongGeometry":42.546}],"intersections":[{"entry":[false,true,false,false,false],"in":3,"bearings":[38,84,134,236,338],"duration":3.942,"turn_weight":7.5,"turn_duration":0.042,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":12.18,"geometry_index":54,"location":[-9.144431,38.718235]},{"entry":[true,false,false],"in":2,"bearings":[56,187,264],"duration":2.085,"turn_weight":0.75,"turn_duration":0.165,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":3.054,"geometry_index":55,"location":[-9.144281,38.718248]},{"bearings":[56,146,236,325],"entry":[true,false,false,false],"in":2,"turn_weight":1.5,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"tertiary_link"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":56,"location":[-9.144206,38.718288]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida da Liberdade"}],"type":"turn","modifier":"left","text":"Avenida da Liberdade"},"distanceAlongGeometry":42.546}],"speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Stay straight to take the ramp.","modifier":"straight","bearing_after":84,"bearing_before":56,"location":[-9.144431,38.718235]},"speedLimitSign":"vienna","name":"","weight_typical":23.07,"duration_typical":13.326,"duration":13.326,"distance":42.546,"driving_side":"right","weight":23.07,"mode":"driving","geometry":"updzhA|ecmPYkHoAuCyEyK"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":868.655},{"ssmlAnnouncement":"In a quarter mile, Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit.","announcement":"In a quarter mile, Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit.","announcement":"Enter the roundabout and take the 1st exit.","distanceAlongGeometry":114}],"intersections":[{"entry":[true,true,false,true],"in":2,"bearings":[52,146,236,326],"duration":6.728,"turn_weight":33,"turn_duration":5.395,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":34.6,"geometry_index":57,"location":[-9.144001,38.718397]},{"entry":[false,false,true,true],"in":1,"bearings":[56,146,237,326],"duration":2.167,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.592,"geometry_index":58,"location":[-9.144064,38.71847]},{"entry":[false,false,false,true],"in":1,"bearings":[56,146,237,326],"duration":27.927,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":31.104,"geometry_index":59,"location":[-9.144184,38.718607]},{"entry":[true,false,false,false,true],"in":2,"bearings":[3,59,146,239,326],"duration":6.927,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":4,"weight":6.027,"geometry_index":61,"location":[-9.145587,38.72021]},{"entry":[false,false,true,true],"in":1,"bearings":[96,146,196,326],"duration":26.707,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":33.707,"geometry_index":63,"location":[-9.145852,38.720514]},{"entry":[false,false,false,true],"in":1,"bearings":[56,146,238,327],"duration":4.707,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.308,"geometry_index":64,"location":[-9.147011,38.721836]},{"entry":[true,false,false,true],"in":1,"bearings":[55,147,237,325],"duration":1.584,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.917,"geometry_index":65,"location":[-9.147125,38.721971]},{"entry":[false,false,true,true],"in":1,"bearings":[56,145,237,325],"duration":2.347,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.867,"geometry_index":66,"location":[-9.147192,38.722046]},{"entry":[false,false,false,true],"in":1,"bearings":[58,145,238,326],"duration":25.948,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":29.326,"geometry_index":67,"location":[-9.14728,38.722144]},{"entry":[false,false,false,true],"in":1,"bearings":[56,146,237,326],"duration":4.147,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":5.071,"geometry_index":68,"location":[-9.148144,38.723134]},{"entry":[true,false,false,true],"in":1,"bearings":[56,146,235,326],"duration":1.316,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.104,"geometry_index":70,"location":[-9.148292,38.723304]},{"entry":[false,false,true,true],"in":1,"bearings":[56,146,237,326],"duration":3.607,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":5.91,"geometry_index":71,"location":[-9.148346,38.723366]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-9.148456,38.723492],"geometry_index":72,"admin_index":0,"weight":25.682,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"traffic_signal":true,"turn_duration":2.007,"duration":22.972,"bearings":[56,146,238,326],"out":3,"in":1,"entry":[false,false,false,true]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[146,326],"duration":5.718,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.004,"geometry_index":73,"location":[-9.149101,38.724229]},{"entry":[false,true,true],"in":0,"bearings":[146,319,353],"duration":4.197,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.106,"geometry_index":74,"location":[-9.149276,38.724429]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[-9.149445,38.724582],"geometry_index":75,"admin_index":0,"weight":4.205,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.052,"turn_weight":2,"duration":1.852,"bearings":[51,139,244,306,349],"out":4,"in":1,"entry":[true,false,false,false,true]},{"bearings":[61,169,239,340],"entry":[false,false,false,true],"in":1,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"geometry_index":77,"location":[-9.149469,38.72468]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit"}],"degrees":140,"driving_side":"right","type":"roundabout","modifier":"right","text":"Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit"},"distanceAlongGeometry":887.655}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Avenida da Liberdade.","modifier":"left","bearing_after":326,"bearing_before":56,"location":[-9.144001,38.718397]},"speedLimitSign":"vienna","name":"Avenida da Liberdade","weight_typical":211.749,"duration_typical":155.595,"duration":155.595,"distance":887.655,"driving_side":"right","weight":211.749,"mode":"driving","geometry":"yzdzhA`kbmPqC|BqGnFq`Ahx@sa@j]kGfFsIhHsqAlgAmGbFuCdCcEnD{|@~t@k@d@gH`G{BjB{FzEam@hg@oK|IqHpI{B@gAl@aAf@}B`AuAf@wAPwAJ_CB_CO"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout. Then Bear right toward A1 NORTE.","announcement":"Exit the roundabout. Then Bear right toward A1 NORTE.","distanceAlongGeometry":48.44}],"intersections":[{"bearings":[21,179,221],"entry":[true,false,false],"in":1,"turn_weight":5.75,"turn_duration":0.03,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":84,"location":[-9.149551,38.725035]}],"rotary_name":"Praça Marquês de Pombal (Rotunda)","bannerInstructions":[{"sub":{"components":[{"type":"text","text":"A1 NORTE"},{"type":"text","text":"/"},{"type":"text","text":"aeroporto"}],"type":"turn","modifier":"slight right","text":"A1 NORTE / aeroporto"},"primary":{"components":[{"type":"text","text":"Exit the roundabout"}],"degrees":140,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Exit the roundabout"},"distanceAlongGeometry":58.107}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":1,"instruction":"Enter Praça Marquês de Pombal (Rotunda) and take the 1st exit.","modifier":"slight right","bearing_after":21,"bearing_before":359,"location":[-9.149551,38.725035]},"speedLimitSign":"vienna","name":"","weight_typical":17.376,"duration_typical":9.521,"duration":9.521,"distance":58.107,"driving_side":"right","weight":17.376,"mode":"driving","geometry":"uyqzhA|emmPqA}@uAq@yAe@{AY}AK_B?}AJ{AXyAd@wAp@qA|@"},{"voiceInstructions":[{"ssmlAnnouncement":"Bear right toward A1 NORTE, aeroporto.","announcement":"Bear right toward A1 NORTE, aeroporto.","distanceAlongGeometry":35.839}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[159,314,348],"duration":7.573,"turn_weight":5,"turn_duration":0.013,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":14.261,"geometry_index":95,"location":[-9.149551,38.725528]},{"entry":[true,false,false,false],"in":2,"bearings":[14,121,180,300],"duration":2.558,"turn_duration":2.018,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":0.661,"geometry_index":102,"location":[-9.149602,38.725899]},{"bearings":[21,120,194,298],"entry":[true,false,false,false],"in":2,"turn_duration":0.011,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":103,"location":[-9.149594,38.725924]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"A1 NORTE"},{"type":"text","text":"/"},{"type":"text","text":"aeroporto"}],"type":"turn","modifier":"slight right","text":"A1 NORTE / aeroporto"},"distanceAlongGeometry":54.839}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout.","modifier":"straight","bearing_after":348,"bearing_before":339,"location":[-9.149551,38.725528]},"speedLimitSign":"vienna","name":"","weight_typical":17.128,"duration_typical":11.941,"duration":11.941,"distance":54.839,"driving_side":"right","weight":17.128,"mode":"driving","geometry":"oxrzhA|emmPcDp@}AZaBR}AJoBFsAE_BIq@OqAc@wAo@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1.5 miles.","announcement":"Continue for 1.5 miles.","distanceAlongGeometry":2257.03},{"ssmlAnnouncement":"In a quarter mile, Bear left onto Avenida da República (Túnel).","announcement":"In a quarter mile, Bear left onto Avenida da República (Túnel).","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear left.","announcement":"Bear left.","distanceAlongGeometry":76}],"intersections":[{"entry":[true,true,false,false,true],"in":3,"bearings":[13,35,120,201,291],"duration":1.739,"turn_weight":5,"turn_duration":0.018,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":7.109,"geometry_index":105,"location":[-9.149552,38.726009]},{"entry":[true,false,false,false],"in":2,"bearings":[27,117,215,296],"duration":24.729,"turn_duration":2.033,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":27.802,"geometry_index":106,"location":[-9.149477,38.726092]},{"entry":[true,true,false],"in":2,"bearings":[24,55,205],"duration":3.934,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":4.793,"geometry_index":109,"location":[-9.148743,38.727263]},{"entry":[true,false,false],"in":1,"bearings":[23,204,220],"duration":3.896,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":5.749,"geometry_index":110,"location":[-9.148628,38.727465]},{"entry":[true,false,false],"in":2,"bearings":[25,175,203],"duration":5.823,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":7.124,"geometry_index":111,"location":[-9.148501,38.727693]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,205,301],"duration":19.188,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":21.032,"geometry_index":112,"location":[-9.148301,38.728032]},{"entry":[true,false,false,false],"in":2,"bearings":[25,115,206,296],"duration":3.404,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.696,"geometry_index":114,"location":[-9.147676,38.729029]},{"entry":[true,true,false],"in":2,"bearings":[26,113,205],"duration":10.928,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":13.364,"geometry_index":115,"location":[-9.147626,38.729112]},{"entry":[true,false,false],"in":2,"bearings":[26,115,206],"duration":1.385,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.673,"geometry_index":117,"location":[-9.147128,38.729917]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,206,296],"duration":9.95,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.166,"geometry_index":118,"location":[-9.147075,38.730002]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,206,296],"duration":3.633,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.977,"geometry_index":119,"location":[-9.146675,38.730651]},{"entry":[true,true,false,false],"in":2,"bearings":[24,115,206,296],"duration":13.487,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.497,"geometry_index":120,"location":[-9.146608,38.730759]},{"entry":[true,true,false],"in":2,"bearings":[26,76,205],"duration":2.019,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.45,"geometry_index":123,"location":[-9.146115,38.731582]},{"entry":[true,false,false],"in":2,"bearings":[24,99,206],"duration":1.354,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":1.633,"geometry_index":124,"location":[-9.146038,38.731707]},{"entry":[true,false,false,false],"in":2,"bearings":[26,117,204,294],"duration":15.074,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":16.007,"geometry_index":125,"location":[-9.145993,38.731785]},{"entry":[true,true,false],"in":2,"bearings":[25,68,206],"duration":2.965,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.608,"geometry_index":126,"location":[-9.145505,38.732581]},{"entry":[true,false,false,false],"in":2,"bearings":[25,115,205,296],"duration":5.128,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":3.809,"geometry_index":127,"location":[-9.145417,38.732728]},{"entry":[true,false,false],"in":2,"bearings":[26,175,205],"duration":7.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":8.82,"geometry_index":128,"location":[-9.145325,38.732883]},{"mapbox_streets_v8":{"class":"primary"},"location":[-9.145092,38.73323],"geometry_index":130,"admin_index":0,"weight":7.005,"is_urban":true,"traffic_signal":true,"turn_duration":2.009,"turn_weight":5,"duration":3.645,"bearings":[34,103,210,294],"out":0,"in":2,"entry":[true,false,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[36,108,214,296],"duration":2.299,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":2.806,"geometry_index":131,"location":[-9.145029,38.733303]},{"entry":[true,true,false,false],"in":2,"bearings":[40,89,216,291],"duration":9.5,"turn_weight":1,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":0,"weight":12.626,"geometry_index":132,"location":[-9.144933,38.733406]},{"entry":[false,true],"in":0,"bearings":[184,339],"duration":5.564,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.815,"geometry_index":139,"location":[-9.144673,38.733856]},{"entry":[false,false,true,true],"in":1,"bearings":[106,157,260,336],"duration":2.621,"turn_weight":1,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":4.185,"geometry_index":142,"location":[-9.144818,38.73414]},{"entry":[false,false,false,true],"in":1,"bearings":[89,156,262,349],"duration":2.017,"turn_duration":0.017,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.45,"geometry_index":144,"location":[-9.14488,38.73425]},{"entry":[false,false,false,true],"in":1,"bearings":[92,169,258,349],"duration":17.407,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":26.315,"geometry_index":145,"location":[-9.144903,38.734339]},{"entry":[true,false,false,true],"in":1,"bearings":[89,169,267,349],"duration":1.103,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.342,"geometry_index":148,"location":[-9.145092,38.735105]},{"entry":[false,false,false,true],"in":1,"bearings":[89,169,267,349],"duration":1.103,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.342,"geometry_index":149,"location":[-9.145107,38.735166]},{"entry":[false,false,false,true],"in":1,"bearings":[89,169,267,349],"duration":4.233,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":5.177,"geometry_index":150,"location":[-9.145123,38.73523]},{"entry":[true,false,true],"in":1,"bearings":[32,169,349],"duration":10.519,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":12.877,"geometry_index":151,"location":[-9.145182,38.735469]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,260,349],"duration":3.735,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.117,"geometry_index":152,"location":[-9.145341,38.736111]},{"entry":[true,false,false,true],"in":1,"bearings":[83,169,263,349],"duration":2.107,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":2.573,"geometry_index":153,"location":[-9.145367,38.736216]},{"entry":[false,false,false,true],"in":1,"bearings":[83,169,263,349],"duration":12.757,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":15.619,"geometry_index":154,"location":[-9.145396,38.736338]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":4.557,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.124,"geometry_index":155,"location":[-9.145577,38.737089]},{"entry":[false,false,true,true],"in":1,"bearings":[79,169,259,349],"duration":2.407,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":3.94,"geometry_index":156,"location":[-9.145614,38.737243]},{"entry":[false,false,false,true],"in":1,"bearings":[80,169,260,349],"duration":12.54,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":15.353,"geometry_index":157,"location":[-9.145652,38.737402]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":2.674,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":0.817,"geometry_index":159,"location":[-9.14585,38.73823]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":0.674,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":0.817,"geometry_index":160,"location":[-9.14586,38.738272]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,259,349],"duration":5.74,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":7.023,"geometry_index":161,"location":[-9.145871,38.738318]},{"entry":[false,true],"in":0,"bearings":[170,349],"duration":8.133,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.963,"geometry_index":163,"location":[-9.145962,38.738698]},{"entry":[true,false,false,true],"in":1,"bearings":[79,169,258,350],"duration":1.49,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.816,"geometry_index":165,"location":[-9.146096,38.739238]},{"entry":[false,false,true,true],"in":1,"bearings":[79,170,259,349],"duration":0.992,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":1.192,"geometry_index":166,"location":[-9.146124,38.739358]},{"entry":[false,false,false,true],"in":1,"bearings":[79,169,258,354],"duration":4.874,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":3,"weight":5.959,"geometry_index":167,"location":[-9.146147,38.739448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-9.146182,38.739894],"geometry_index":169,"admin_index":0,"weight":19.871,"is_urban":true,"mapbox_streets_v8":{"class":"primary"},"turn_duration":0.026,"turn_weight":5,"duration":12.166,"bearings":[24,178,352],"out":2,"in":1,"entry":[true,false,true]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[169,347],"duration":5.52,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.762,"geometry_index":171,"location":[-9.146486,38.741174]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[167,349],"duration":2.864,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.508,"geometry_index":172,"location":[-9.146662,38.741783]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[169,349],"duration":5.5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.737,"geometry_index":173,"location":[-9.146737,38.742095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"in":0,"bearings":[169,349],"duration":4.664,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":5.713,"geometry_index":174,"location":[-9.146856,38.742579]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[169,349],"duration":4.971,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.09,"geometry_index":175,"location":[-9.146976,38.743079]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"location":[-9.147104,38.74359],"geometry_index":176,"admin_index":0,"weight":7.144,"is_urban":true,"mapbox_streets_v8":{"class":"primary_link"},"duration":9.775,"bearings":[20,169,344],"out":0,"in":1,"turn_duration":0.055,"classes":["tunnel"],"entry":[true,false,true]},{"entry":[false,true],"in":0,"bearings":[167,350],"duration":13.5,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":9.922,"geometry_index":178,"location":[-9.147097,38.744054]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[170,343],"duration":4.5,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":1,"weight":3.308,"geometry_index":179,"location":[-9.147245,38.744715]},{"mapbox_streets_v8":{"class":"primary"},"location":[-9.147326,38.744926],"geometry_index":180,"admin_index":0,"weight":7.348,"is_urban":true,"turn_weight":6,"duration":1.114,"bearings":[153,163,177,353],"out":3,"in":1,"turn_duration":0.014,"classes":["tunnel"],"entry":[false,false,false,true]},{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false}],"bearings":[173,348],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":181,"location":[-9.147341,38.745026]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Avenida da República (Túnel)"}],"type":"turn","modifier":"slight left","text":"Avenida da República (Túnel)"},"distanceAlongGeometry":2276.03},{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Avenida da República (Túnel)"}],"type":"turn","modifier":"slight left","text":"Avenida da República (Túnel)"},"distanceAlongGeometry":402.336}],"destinations":"A1 NORTE, aeroporto, Saldanha","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right toward A1 NORTE/aeroporto/Saldanha.","modifier":"slight right","bearing_after":35,"bearing_before":21,"location":[-9.149552,38.726009]},"speedLimitSign":"vienna","name":"Avenida Fontes Pereira de Melo","weight_typical":391.493,"duration_typical":325.998,"duration":325.998,"distance":2276.03,"driving_side":"right","weight":391.493,"mode":"driving","geometry":"qvszhA~emmPeDuCe[mQqH{Dmb@qTsKeFgM}FeToKch@_YeTaLeDcBok@qZyDqBiDiBqg@_XwEeCsUeLaNgHwLkGyFyC{CyAwp@o]eHoDuHwDgM{GmFuDqC}BmE_EoDcEgEaEiBqAgBg@oB[iBC_BVyA`@sGtCiEhBqCxAiA`@qDl@eCb@yb@xG{Fz@yB\\_C^}MtBcg@|HqEr@sFx@}m@hJsHhA}HjAon@jJgC^sAR{ATgC`@oRrCwZzE_En@oFv@sDl@cKn@wNTiLfAuaAvOae@~IoRtCg]lFg^nF}^~FwJmDgP~Cih@fHeL`DgE\\{@LyNrC"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1465.79},{"ssmlAnnouncement":"In a quarter mile, Bear right toward Norte.","announcement":"In a quarter mile, Bear right toward Norte.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right toward Norte, Aeroporto. Then Turn right to take the ramp toward A1 Norte.","announcement":"Bear right toward Norte, Aeroporto. Then Turn right to take the ramp toward A1 Norte.","distanceAlongGeometry":134.583}],"intersections":[{"entry":[true,false,true,true],"in":1,"bearings":[84,167,335,352],"duration":7.068,"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid":false,"active":false}],"turn_duration":0.048,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":2,"weight":5.16,"geometry_index":183,"location":[-9.147422,38.745309]},{"entry":[false,false,true],"in":0,"bearings":[155,173,347],"duration":21.447,"turn_weight":5.75,"turn_duration":0.014,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":32.005,"geometry_index":184,"location":[-9.147614,38.745624]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[170,350],"duration":11.463,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":19.042,"geometry_index":186,"location":[-9.148164,38.747882]},{"entry":[false,true],"in":0,"bearings":[172,347],"duration":11.274,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":18.81,"geometry_index":194,"location":[-9.148244,38.748957]},{"entry":[false,true],"in":0,"bearings":[159,339],"duration":5.684,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":6.963,"geometry_index":199,"location":[-9.148702,38.749961]},{"entry":[false,true],"in":0,"bearings":[159,337],"duration":7.484,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":9.168,"geometry_index":200,"location":[-9.148956,38.750467]},{"entry":[true,false,true],"in":1,"bearings":[6,157,338],"duration":4.071,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":4.979,"geometry_index":201,"location":[-9.14931,38.751123]},{"entry":[false,false,true],"in":1,"bearings":[107,159,337],"duration":13.822,"turn_weight":1,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":17.905,"geometry_index":203,"location":[-9.149459,38.751418]},{"entry":[false,true],"in":0,"bearings":[157,338],"duration":14.1,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":17.272,"geometry_index":204,"location":[-9.149866,38.752184]},{"entry":[false,true,true],"in":0,"bearings":[158,337,346],"duration":19.162,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":23.448,"geometry_index":205,"location":[-9.150275,38.752969]},{"entry":[false,true],"classes":["tunnel"],"in":0,"bearings":[157,339],"duration":3.027,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":3.708,"geometry_index":206,"location":[-9.151261,38.754766]},{"entry":[false,true],"in":0,"bearings":[159,336],"duration":18.54,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"weight":22.248,"geometry_index":207,"location":[-9.151417,38.755079]},{"entry":[false,false,true],"in":1,"bearings":[142,153,326],"duration":4.557,"turn_weight":1,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":6.435,"geometry_index":211,"location":[-9.152393,38.756763]},{"bearings":[146,321],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":212,"location":[-9.152645,38.757058]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Norte"},{"type":"text","text":"/"},{"type":"text","text":"Aeroporto"}],"type":"turn","modifier":"slight right","text":"Norte / Aeroporto"},"distanceAlongGeometry":1497.123},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Norte"},{"type":"text","text":"/"},{"type":"text","text":"Aeroporto"}],"type":"turn","modifier":"slight right","text":"Norte / Aeroporto"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left onto Avenida da República (Túnel).","modifier":"slight left","bearing_after":347,"bearing_before":347,"location":[-9.147422,38.745309]},"speedLimitSign":"vienna","name":"Avenida da República (Túnel)","weight_typical":201.219,"duration_typical":153.43,"duration":153.43,"distance":1497.123,"driving_side":"right","weight":201.219,"mode":"driving","geometry":"yly{hAz`imPuR~J}YvFeqBrYoH`A}El@}CXmDJqTeAmBA{BJoJdA{JpB{Ab@}Bx@kKfEu^zNs^zN_h@bUyInDsFxB{n@lXap@pXioBr|@qRvHgR~Ism@rXmHdD}\\dRmQvN_k@bm@"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right to take the ramp toward A1 Norte, Aeroporto.","announcement":"Turn right to take the ramp toward A1 Norte, Aeroporto.","distanceAlongGeometry":126.667}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-9.153383,38.757762],"geometry_index":213,"admin_index":0,"weight":7.906,"is_urban":true,"mapbox_streets_v8":{"class":"primary_link"},"traffic_signal":true,"turn_duration":2.019,"duration":12.999,"bearings":[61,141,231,315,336],"out":4,"in":1,"entry":[false,false,false,true,true]},{"entry":[false,false,true],"in":1,"bearings":[131,149,319],"duration":9.114,"turn_weight":5.5,"turn_duration":0.036,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":2,"weight":16.394,"geometry_index":217,"location":[-9.153728,38.758237]},{"bearings":[140,323],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":0,"out":1,"geometry_index":219,"location":[-9.154161,38.758629]}],"bannerInstructions":[{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"A1 Norte"},{"type":"text","text":"/"},{"type":"text","text":"Aeroporto"}],"type":"turn","modifier":"right","text":"A1 Norte / Aeroporto"},"distanceAlongGeometry":195.938}],"destinations":"Norte, Aeroporto, Alameda das Linhas de Torres, Lumiar","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right toward Norte/Aeroporto/Alameda das Linhas de Torres/Lumiar.","modifier":"slight right","bearing_after":319,"bearing_before":321,"location":[-9.153383,38.757762]},"speedLimitSign":"vienna","name":"Campo Grande","weight_typical":38.762,"duration_typical":34.165,"duration":34.165,"distance":195.938,"driving_side":"right","weight":38.762,"mode":"driving","geometry":"cwq|hAlutmPeBT_CpAiRhOeB~@qQxS}DfEiRtQ_OjL"},{"voiceInstructions":[{"ssmlAnnouncement":"In 1 mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","announcement":"In 1 mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","distanceAlongGeometry":1892.574},{"ssmlAnnouncement":"In a half mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","announcement":"In a half mile, Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular toward Norte, Oeste.","announcement":"Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular toward Norte, Oeste.","distanceAlongGeometry":213.333}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[147,327,359],"duration":4.51,"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"turn_duration":0.063,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":2,"weight":5.336,"geometry_index":221,"location":[-9.154674,38.759194]},{"entry":[true,false,false],"in":1,"bearings":[43,180,277],"duration":6.154,"turn_duration":2.131,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":4.828,"geometry_index":223,"location":[-9.154676,38.759382]},{"entry":[true,false,false],"in":1,"bearings":[69,223,248],"duration":8.576,"turn_weight":0.75,"turn_duration":0.042,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":10.99,"geometry_index":225,"location":[-9.154525,38.759509]},{"entry":[true,true,false,true],"in":2,"bearings":[68,153,249,336],"duration":9.329,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":11.172,"geometry_index":226,"location":[-9.153836,38.759712]},{"entry":[true,false,false],"in":2,"bearings":[59,168,240],"duration":12.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":0,"out":0,"weight":14.523,"geometry_index":230,"location":[-9.15306,38.759999]},{"entry":[true,false,false],"in":1,"bearings":[67,231,246],"duration":8.973,"turn_weight":14,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":24.518,"geometry_index":232,"location":[-9.152085,38.760522]},{"entry":[true,true,false],"in":2,"bearings":[65,84,247],"duration":19.681,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":22.611,"geometry_index":233,"location":[-9.151109,38.760845]},{"entry":[true,false,false],"in":2,"bearings":[71,229,248],"duration":4.993,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":5.732,"geometry_index":235,"location":[-9.148859,38.761605]},{"entry":[true,false],"in":1,"bearings":[72,251],"duration":2.314,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.661,"geometry_index":236,"location":[-9.148265,38.76176]},{"entry":[true,false],"in":1,"bearings":[74,252],"duration":29.769,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":34.235,"geometry_index":237,"location":[-9.147969,38.761834]},{"entry":[true,false,false],"in":2,"bearings":[77,234,256],"duration":13.282,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":14.934,"geometry_index":239,"location":[-9.145568,38.762324]},{"entry":[true,true,false],"in":2,"bearings":[83,93,261],"duration":12.518,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":14.074,"geometry_index":242,"location":[-9.142245,38.762887]},{"entry":[true,false,false],"in":2,"bearings":[90,258,267],"duration":8.095,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":9.097,"geometry_index":246,"location":[-9.139055,38.763108]},{"entry":[true,false],"in":1,"bearings":[91,272],"duration":8.585,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":9.658,"geometry_index":248,"location":[-9.137378,38.763082]},{"bearings":[91,271],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"geometry_index":249,"location":[-9.13559,38.763048]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"type":"text","text":"Norte"},{"type":"text","text":"/"},{"type":"text","text":"Oeste"}],"type":"fork","modifier":"left","text":"Norte / Oeste"},"distanceAlongGeometry":1912.574}],"destinations":"A1 Norte, Aeroporto","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn right to take the ramp toward A1 Norte/Aeroporto.","modifier":"slight right","bearing_after":359,"bearing_before":327,"location":[-9.154674,38.759194]},"speedLimitSign":"vienna","name":"Avenida Marechal Craveiro Lopes/2ª Circular","weight_typical":193.965,"duration_typical":157.675,"duration":157.675,"distance":1912.574,"driving_side":"right","weight":193.965,"mode":"driving","geometry":"spt|hAbfwmPiDp@mEm@kB}AqCoEuKaj@sFiWeAaE}AwEeDkJ}Occ@wNyWeS_|@sPyn@{\\y{AuHcd@sCoQiGad@iU_pBgYarCeD{^wBw[iJw|BEuDq@om@WmTAqj@t@g|@bAwnB~@_nB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 60 miles.","announcement":"Continue for 60 miles.","distanceAlongGeometry":96682.352},{"ssmlAnnouncement":"In 2 miles, Take exit 7.","announcement":"In 2 miles, Take exit 7.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 7.","announcement":"In a half mile, Take exit 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 7 onto A 23 toward Abrantes, Torres Novas.","announcement":"Take exit 7 onto A 23 toward Abrantes, Torres Novas.","distanceAlongGeometry":266.667}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[88,101,271],"duration":4.951,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":5.548,"geometry_index":250,"location":[-9.133814,38.763016]},{"entry":[true,false],"in":1,"bearings":[85,268],"duration":3.107,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.495,"geometry_index":251,"location":[-9.132658,38.763045]},{"entry":[true,false],"in":1,"bearings":[80,262],"duration":2.037,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.292,"geometry_index":253,"location":[-9.131933,38.763109]},{"entry":[true,false],"in":1,"bearings":[75,260],"duration":3.107,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.495,"geometry_index":254,"location":[-9.131441,38.763179]},{"entry":[true,false],"in":1,"bearings":[69,254],"duration":4.044,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":4.549,"geometry_index":256,"location":[-9.130741,38.763331]},{"entry":[true,false],"in":1,"bearings":[62,244],"duration":3.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.995,"geometry_index":258,"location":[-9.129872,38.763623]},{"entry":[true,false],"in":1,"bearings":[54,238],"duration":13.97,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":15.716,"geometry_index":260,"location":[-9.129141,38.763953]},{"entry":[true,true,false],"in":2,"bearings":[38,51,220],"duration":25.426,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":28.581,"geometry_index":265,"location":[-9.12701,38.765579]},{"entry":[true,false],"in":1,"bearings":[12,196],"duration":2.132,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":2.398,"geometry_index":272,"location":[-9.124348,38.769457]},{"entry":[true,false],"in":1,"bearings":[11,192],"duration":21.168,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":23.814,"geometry_index":273,"location":[-9.124236,38.769853]},{"entry":[true,false,false],"in":2,"bearings":[5,180,187],"duration":6.6,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":8.568,"geometry_index":282,"location":[-9.12333,38.773754]},{"entry":[true,false],"in":1,"bearings":[5,185],"duration":11.025,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":12.679,"geometry_index":283,"location":[-9.123216,38.774801]},{"entry":[true,false],"in":1,"bearings":[6,186],"duration":4.5,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":5.175,"geometry_index":286,"location":[-9.123028,38.776558]},{"entry":[true,true,false],"in":2,"bearings":[5,96,186],"duration":1.226,"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":false},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":1.402,"geometry_index":287,"location":[-9.122938,38.777277]},{"entry":[true,false,false],"in":2,"bearings":[5,94,185],"duration":3.722,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":4.271,"geometry_index":288,"location":[-9.122917,38.777465]},{"entry":[true,false],"in":1,"bearings":[5,185],"duration":2.857,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":3.286,"geometry_index":290,"location":[-9.122856,38.778044]},{"entry":[true,true,false],"in":2,"bearings":[5,39,185],"duration":7.208,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":0,"weight":8.28,"geometry_index":291,"location":[-9.122804,38.778488]},{"entry":[true,false,true],"in":1,"bearings":[13,182,358],"duration":14.737,"turn_duration":0.024,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":0,"out":2,"weight":16.92,"geometry_index":293,"location":[-9.122687,38.779651]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.122538,38.782172],"geometry_index":300,"admin_index":0,"weight":7.694,"is_urban":true,"turn_weight":6,"duration":1.48,"bearings":[15,158,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,195],"duration":7.091,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.155,"geometry_index":301,"location":[-9.122459,38.78241]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,214],"duration":7.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":8.594,"geometry_index":306,"location":[-9.121794,38.783448]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[-9.12075,38.784365],"geometry_index":311,"admin_index":0,"weight":21.509,"is_urban":true,"turn_weight":0.75,"duration":18.059,"bearings":[43,207,222],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":8.743,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":10.273,"geometry_index":315,"location":[-9.118041,38.786701]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":0.669,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.786,"geometry_index":318,"location":[-9.116805,38.787885]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[-9.116711,38.787979],"geometry_index":319,"admin_index":0,"weight":8.021,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":6.845,"bearings":[36,46,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,215],"duration":1.87,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":2.197,"geometry_index":321,"location":[-9.115727,38.789048]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":9.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":11.231,"geometry_index":322,"location":[-9.115477,38.789346]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.946,"geometry_index":328,"location":[-9.11411,38.791128]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,209],"duration":15.081,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":17.343,"geometry_index":329,"location":[-9.114005,38.791278]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[-9.112439,38.793783],"geometry_index":334,"admin_index":0,"weight":3.023,"is_urban":true,"turn_weight":1,"duration":1.778,"bearings":[26,189,205],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":0.45,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":0.517,"geometry_index":335,"location":[-9.112223,38.794135]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":25.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":29.04,"geometry_index":336,"location":[-9.112172,38.794221]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":10.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":12.277,"geometry_index":339,"location":[-9.109048,38.799336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,205],"duration":37.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":41.704,"geometry_index":340,"location":[-9.107602,38.801699]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,199],"duration":3.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":3.666,"geometry_index":348,"location":[-9.102928,38.810011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,198],"duration":13.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":15.028,"geometry_index":349,"location":[-9.102613,38.810785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,192],"duration":3.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":4.031,"geometry_index":357,"location":[-9.101331,38.814849]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,193],"duration":24.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":26.058,"geometry_index":358,"location":[-9.101015,38.815941]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,191],"duration":74.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":79.916,"geometry_index":359,"location":[-9.09916,38.823058]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,209],"duration":6.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":0,"out":0,"weight":7.353,"geometry_index":366,"location":[-9.091977,38.844495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.090652,38.846263],"geometry_index":367,"admin_index":0,"weight":29.286,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.898,"bearings":[30,48,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.086048,38.852469],"geometry_index":369,"admin_index":0,"weight":9.338,"is_urban":false,"turn_weight":0.75,"duration":8.186,"bearings":[30,201,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,209],"duration":84.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":88.518,"geometry_index":371,"location":[-9.084701,38.854291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,217],"duration":2.21,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.32,"geometry_index":391,"location":[-9.069122,38.871255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,211],"duration":33.968,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.818,"geometry_index":392,"location":[-9.068753,38.871727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,210],"duration":2.052,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.103,"geometry_index":395,"location":[-9.063414,38.879215]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":30.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.695,"geometry_index":396,"location":[-9.063101,38.879665]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":6.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.081,"geometry_index":402,"location":[-9.057679,38.885598]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,89,234],"duration":4.386,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.488,"geometry_index":405,"location":[-9.056381,38.886374]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.055527,38.886828],"geometry_index":406,"admin_index":0,"weight":23.051,"is_urban":false,"turn_weight":15,"duration":7.931,"bearings":[38,51,63,76,170,236],"out":0,"in":5,"turn_duration":0.077,"classes":["toll","motorway"],"entry":[true,true,true,true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,229],"duration":5.105,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.233,"geometry_index":408,"location":[-9.054545,38.887582]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.053826,38.887996],"geometry_index":410,"admin_index":0,"weight":4.025,"is_urban":false,"turn_weight":1.5,"duration":2.54,"bearings":[38,213,224,237],"out":0,"in":3,"turn_duration":0.077,"classes":["toll","motorway"],"entry":[true,false,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":11.463,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.75,"geometry_index":411,"location":[-9.053455,38.888362]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":1.757,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.801,"geometry_index":412,"location":[-9.051728,38.890071]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":10.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.392,"geometry_index":413,"location":[-9.051439,38.890359]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.049638,38.892398],"geometry_index":416,"admin_index":0,"weight":7.858,"is_urban":false,"turn_weight":1,"duration":6.717,"bearings":[28,191,212],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-9.048652,38.89386],"geometry_index":417,"admin_index":0,"weight":6.97,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.822,"bearings":[25,51,208],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.047729,38.895376],"geometry_index":419,"admin_index":0,"weight":4.142,"is_urban":false,"turn_weight":1,"duration":3.084,"bearings":[26,196,206],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":27.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":28.68,"geometry_index":420,"location":[-9.047297,38.896073]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,213],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.298,"geometry_index":424,"location":[-9.043155,38.902342]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,214],"duration":16.892,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.315,"geometry_index":425,"location":[-9.042757,38.902807]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":2.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.257,"geometry_index":429,"location":[-9.038762,38.905885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":52.235,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":52.235,"geometry_index":430,"location":[-9.0382,38.90625]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,228],"duration":1.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.807,"geometry_index":433,"location":[-9.024895,38.915003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,230],"duration":10.697,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.43,"geometry_index":434,"location":[-9.024434,38.915301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,229],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.806,"geometry_index":435,"location":[-9.021705,38.917134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":44.827,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":42.586,"geometry_index":436,"location":[-9.021244,38.917452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,202],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.979,"geometry_index":443,"location":[-9.011684,38.926272]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,201],"duration":9.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.085,"geometry_index":444,"location":[-9.011189,38.927284]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":6.116,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.811,"geometry_index":445,"location":[-9.01003,38.929464]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,208],"duration":44.144,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":41.937,"geometry_index":447,"location":[-9.00916,38.93088]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-9.001176,38.940308],"geometry_index":455,"admin_index":0,"weight":3.131,"is_urban":false,"turn_weight":0.5,"duration":2.776,"bearings":[28,199,208],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,208],"duration":21.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.158,"geometry_index":456,"location":[-9.000738,38.940945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,221],"duration":1.62,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.539,"geometry_index":462,"location":[-8.996104,38.945091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":26.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.633,"geometry_index":463,"location":[-8.995781,38.945407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,181],"duration":18.282,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.368,"geometry_index":470,"location":[-8.993325,38.951792]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,208],"duration":15.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.942,"geometry_index":476,"location":[-8.99198,38.956261]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,225],"duration":1.11,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.055,"geometry_index":480,"location":[-8.988646,38.959341]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":7.472,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.098,"geometry_index":481,"location":[-8.988364,38.959543]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,222],"duration":1.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.578,"geometry_index":483,"location":[-8.986597,38.960956]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,218],"duration":12.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.89,"geometry_index":484,"location":[-8.98625,38.961297]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[11,194],"duration":1.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.71,"geometry_index":488,"location":[-8.984515,38.964326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,191],"duration":18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.1,"geometry_index":489,"location":[-8.984402,38.964793]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,210],"duration":4.046,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.844,"geometry_index":496,"location":[-8.982696,38.969325]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,219],"duration":2.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.457,"geometry_index":498,"location":[-8.981888,38.970178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,224],"duration":3.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.752,"geometry_index":499,"location":[-8.981294,38.970651]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.980403,38.971399],"geometry_index":500,"admin_index":0,"weight":10.323,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.891,"bearings":[38,62,223],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.978356,38.973852],"geometry_index":503,"admin_index":0,"weight":5.693,"is_urban":false,"turn_weight":0.5,"duration":5.489,"bearings":[26,193,208],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":100.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":97.597,"geometry_index":504,"location":[-8.97751,38.975174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":7.067,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.067,"geometry_index":516,"location":[-8.96722,39.000751]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,184],"duration":3.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.667,"geometry_index":517,"location":[-8.967048,39.002653]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.966947,39.003642],"geometry_index":518,"admin_index":0,"weight":13.653,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.672,"bearings":[3,185],"out":0,"in":1,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,186],"duration":3.147,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.203,"geometry_index":520,"location":[-8.966662,39.00725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":2.751,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.82,"geometry_index":521,"location":[-8.966598,39.008074]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,182],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.054,"geometry_index":522,"location":[-8.966561,39.008797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,184],"duration":2.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.402,"geometry_index":523,"location":[-8.966518,39.009327]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":4.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.108,"geometry_index":524,"location":[-8.96647,39.009947]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.966384,39.011007],"geometry_index":525,"admin_index":0,"weight":6.741,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.596,"bearings":[3,8,184],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,183],"duration":3.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.098,"geometry_index":526,"location":[-8.96627,39.012712]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,184],"duration":7.546,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.735,"geometry_index":527,"location":[-8.966207,39.013512]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.96605,39.015465],"geometry_index":528,"admin_index":0,"weight":49.05,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":49.057,"bearings":[4,13,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.961199,39.029568],"geometry_index":551,"admin_index":0,"weight":6.333,"is_urban":false,"turn_weight":1.1,"duration":5.375,"bearings":[12,184,192],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,193],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.739,"geometry_index":553,"location":[-8.960805,39.030979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,194],"duration":72.36,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":66.933,"geometry_index":554,"location":[-8.960656,39.031437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":8.149,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.13,"geometry_index":566,"location":[-8.947235,39.048187]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,212],"duration":94.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":83.035,"geometry_index":568,"location":[-8.945771,39.050111]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[11,193],"duration":0.655,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.573,"geometry_index":591,"location":[-8.933094,39.073892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,191],"duration":175.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":153.641,"geometry_index":592,"location":[-8.933049,39.074066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,239],"duration":15.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.094,"geometry_index":633,"location":[-8.915116,39.117923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,228],"duration":1.29,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.193,"geometry_index":637,"location":[-8.910699,39.12111]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[52,61,230],"duration":15.154,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.01,"geometry_index":638,"location":[-8.910321,39.121356]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.906286,39.124126],"geometry_index":642,"admin_index":0,"weight":33.351,"is_urban":false,"turn_weight":1,"duration":34.073,"bearings":[40,215,220],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,223],"duration":2.089,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.985,"geometry_index":648,"location":[-8.897864,39.130911]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,219],"duration":5.513,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.238,"geometry_index":649,"location":[-8.897383,39.131365]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,217],"duration":1.865,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.772,"geometry_index":650,"location":[-8.896193,39.132578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,211],"duration":10.178,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.669,"geometry_index":651,"location":[-8.895851,39.133016]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":9.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.11,"geometry_index":653,"location":[-8.894047,39.135437]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,217],"duration":2.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.518,"geometry_index":656,"location":[-8.892121,39.137603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,219],"duration":0.753,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.715,"geometry_index":657,"location":[-8.89153,39.138163]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.33,"geometry_index":658,"location":[-8.891365,39.13832]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":0.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.581,"geometry_index":659,"location":[-8.89105,39.13861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.890913,39.138735],"geometry_index":660,"admin_index":0,"weight":9.727,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.248,"bearings":[44,53,220],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.888371,39.1407],"geometry_index":663,"admin_index":0,"weight":1.311,"is_urban":false,"turn_weight":1,"duration":0.348,"bearings":[45,213,227],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,225],"duration":1.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.412,"geometry_index":664,"location":[-8.888291,39.140761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,230],"duration":9.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.958,"geometry_index":665,"location":[-8.88789,39.141025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,217],"duration":149.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":138.475,"geometry_index":668,"location":[-8.885603,39.142999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.186,"geometry_index":694,"location":[-8.846465,39.171637]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":82.611,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":74.349,"geometry_index":695,"location":[-8.846078,39.171854]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,216],"duration":2.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.819,"geometry_index":705,"location":[-8.824373,39.187872]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,218],"duration":56.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.827,"geometry_index":706,"location":[-8.823913,39.188326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":0.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.7,"geometry_index":715,"location":[-8.807884,39.19781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":38.757,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":34.881,"geometry_index":716,"location":[-8.807624,39.197897]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,242],"duration":6.26,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.634,"geometry_index":721,"location":[-8.794915,39.202147]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":2.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.073,"geometry_index":722,"location":[-8.792979,39.203007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":4.897,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.407,"geometry_index":723,"location":[-8.792275,39.203341]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.790797,39.20407],"geometry_index":724,"admin_index":0,"weight":11.232,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.501,"bearings":[56,68,238],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.786891,39.206253],"geometry_index":727,"admin_index":0,"weight":8.519,"is_urban":false,"turn_weight":0.5,"duration":8.932,"bearings":[51,224,233],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,229],"duration":153,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":137.7,"geometry_index":731,"location":[-8.784248,39.207962]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,240],"duration":21.921,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.729,"geometry_index":755,"location":[-8.747251,39.241218]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,210],"duration":33.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":30.094,"geometry_index":763,"location":[-8.741863,39.245589]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.756,"geometry_index":769,"location":[-8.737112,39.254092]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":5.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.438,"geometry_index":770,"location":[-8.736848,39.254571]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":2.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.416,"geometry_index":771,"location":[-8.736018,39.256036]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,204],"duration":1.354,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.253,"geometry_index":772,"location":[-8.73565,39.256663]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.73544,39.256995],"geometry_index":773,"admin_index":0,"weight":3.418,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.715,"bearings":[25,41,206],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":5.384,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.98,"geometry_index":775,"location":[-8.734841,39.257923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.252,"geometry_index":777,"location":[-8.733887,39.259254]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":3.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.759,"geometry_index":778,"location":[-8.733645,39.259574]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.732892,39.260498],"geometry_index":780,"admin_index":0,"weight":4.487,"is_urban":false,"turn_weight":0.75,"duration":3.952,"bearings":[33,197,213],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,215],"duration":7.593,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.213,"geometry_index":782,"location":[-8.732128,39.261382]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,218],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.126,"geometry_index":784,"location":[-8.730522,39.263053]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":6.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.008,"geometry_index":785,"location":[-8.730017,39.263539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-8.728529,39.264861],"geometry_index":787,"admin_index":0,"weight":3.48,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.672,"bearings":[44,52,221],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":8.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.202,"geometry_index":788,"location":[-8.727601,39.265607]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,228],"duration":1.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.41,"geometry_index":791,"location":[-8.725302,39.267271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,232],"duration":23.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.852,"geometry_index":792,"location":[-8.724873,39.267535]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.71801,39.271232],"geometry_index":798,"admin_index":0,"weight":6.962,"is_urban":false,"turn_weight":1,"duration":6.285,"bearings":[62,222,240],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":33.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":30.825,"geometry_index":801,"location":[-8.715979,39.272038]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":1.479,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.368,"geometry_index":808,"location":[-8.705153,39.276275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":42.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":38.288,"geometry_index":809,"location":[-8.704676,39.276461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,212],"duration":5.959,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.363,"geometry_index":822,"location":[-8.692152,39.283348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,199],"duration":23.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.332,"geometry_index":824,"location":[-8.691326,39.284951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":1.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.215,"geometry_index":829,"location":[-8.689339,39.291446]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,199],"duration":4.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.377,"geometry_index":830,"location":[-8.689179,39.291805]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,202],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.52,"geometry_index":831,"location":[-8.688521,39.293096]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,205],"duration":24.386,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.948,"geometry_index":832,"location":[-8.688264,39.293525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.926,"geometry_index":840,"location":[-8.683146,39.299262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":13.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.917,"geometry_index":841,"location":[-8.682898,39.299477]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,214],"duration":0.853,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.767,"geometry_index":844,"location":[-8.679929,39.302494]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,211],"duration":44.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":39.922,"geometry_index":845,"location":[-8.679768,39.3027]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":1.466,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.319,"geometry_index":853,"location":[-8.670624,39.313206]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":24.362,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.926,"geometry_index":854,"location":[-8.670273,39.313513]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,209],"duration":0.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.853,"geometry_index":860,"location":[-8.66498,39.319233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,210],"duration":37.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":33.64,"geometry_index":861,"location":[-8.664804,39.319467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":4.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.113,"geometry_index":865,"location":[-8.657985,39.328805]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,212],"duration":84.569,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.112,"geometry_index":866,"location":[-8.657087,39.329918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":8.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.29,"geometry_index":886,"location":[-8.644812,39.351817]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,225],"duration":136.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":122.85,"geometry_index":887,"location":[-8.642672,39.353483]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,335],"duration":4.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":3.618,"geometry_index":918,"location":[-8.637404,39.389028]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.638038,39.390125],"geometry_index":920,"admin_index":0,"weight":13.376,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.886,"bearings":[158,334,353],"out":1,"in":0,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,true,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.639277,39.394037],"geometry_index":926,"admin_index":0,"weight":8.355,"is_urban":false,"turn_weight":1,"duration":8.183,"bearings":[156,173,357],"out":2,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,181],"duration":282.616,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":261.42,"geometry_index":928,"location":[-8.639335,39.396295]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,347],"duration":2.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":2.095,"geometry_index":984,"location":[-8.628946,39.472781]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[167,344],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":5.7,"geometry_index":985,"location":[-8.629125,39.473379]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[159,337],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":987,"location":[-8.62981,39.474956]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Abrantes"},{"type":"text","text":"/"},{"type":"text","text":"Torres Novas"}],"type":"off ramp","modifier":"right","text":"Abrantes / Torres Novas"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"7"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A23","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 23"}],"type":"off ramp","modifier":"right","text":"Exit 7 A 23"},"distanceAlongGeometry":96709.016},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Abrantes"},{"type":"text","text":"/"},{"type":"text","text":"Torres Novas"}],"type":"off ramp","modifier":"right","text":"Abrantes / Torres Novas"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"7"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A23","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 23"}],"type":"off ramp","modifier":"right","text":"Exit 7 A 23"},"distanceAlongGeometry":3218.688}],"destinations":"Norte, Oeste, Sul (Ponte Vasco da Gama), Aeroporto (Chegadas)","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on Avenida Marechal Craveiro Lopes/2ª Circular toward Norte/Oeste/Sul (Ponte Vasco da Gama)/Aeroporto (Chegadas).","modifier":"slight left","bearing_after":88,"bearing_before":91,"location":[-9.133814,38.763016]},"speedLimitSign":"vienna","name":"Avenida Marechal Craveiro Lopes/2ª Circular","weight_typical":3119.265,"duration_typical":3220.108,"duration":3220.108,"distance":96709.016,"driving_side":"right","weight":3119.265,"mode":"driving","geometry":"o_||hAjnnlPy@ggAw@wXgAqRkCw]mCiTaDmUoGe[wHcYeIsWmIaT}KaVkKeRoReZgOqRqg@ek@uy@ey@cYyTkWmQ_a@aUc`@sQsa@iNm^}JwW_Faa@mGqt@cLkb@uGmXcEwToDoNyBcFw@uKaBie@cEm`AcFoO{@gy@oDab@kC}k@sDwJi@mPy@wQ_AwZgBiw@oEkOYgr@x@q\\AuSOuFOqRuAiIq@oQyD{M}CkBu@s^wNqKiHqHyFwF_FeHoHuFqGkG{HoNeQqOcReRwUoq@_z@uq@wy@sXy[_Yq[{YoZcTeT{D{Dud@qb@c\\}XsQsNaKcIyUoQwJeH{PwL{ZuS_ReLkHqE{RkLyXyOqNwHcO{HenAao@_UoLkDeB_sFysCun@e\\_[gPurCkyAyqCwyAgrCexAcXkMkX}Leg@aT{j@wTkVaJobA_]ko@uRqWoHsWcH}X}GiXiGaR_Eg`@_I{`@yHkbAmQgcAwRy{L}rBsoCce@_tIuyA}dOuiCsiAsX{|@mZi_A}`@mfCm}AomByqAw`EomCcaEgpC}pAo|@}^uU_ZwPmc@yUo_@wQgc@yPgd@_P}c@oNccDcbA}_Bui@}oA}d@wz@yg@mm@kh@em@eq@kf@qu@m]ev@en@{aBwj@cfBem@grAkh@qaA{~@wjAin@sm@o\\aVokE{oC{xDuaCslAcy@c[qRis@}c@s~Ba~Aut@cm@ir@or@uk@ks@eh@{w@{N_V}IiRuTye@k[kt@sOyOo]qk@oNgWkIuS{UeVyiB}jB_QaQsa@ua@wdAkz@aVoQkzAs|@iQwImkA}m@qj@_Z_zDyrBcdBa~@m|@gk@gi@wb@a\\{W{o@us@uy@shAa}@uxAwUu`@yUcb@gtFysJgaGyjKqj@}}@sQy[qqBqiD{Ry[irAmoBw`CmdDegC}`Dst@oz@gu@qk@kq@y]wj@yUg~@}]ggCmgAgm@mXgi@}[wf@ac@cl@kl@efBisBql@mo@}t@_l@qy@kh@q~E_xCqRmLyf@kZkTsOch@oc@}XeYwn@{x@ezAssBw^yb@wReSs\\mYc]mWiu@cc@y_A}^yhA}U{gA}HohAu@ar@K}~@{GcdAeTc]qLm[cNsc@}WqXaUcbA}y@uw@ggAcj@cv@sKsPw_@ql@qv@{_AiTuTyi@ub@ix@oc@er@gW_e@_Ke\\aF}vAuOm_@cGy_@sIy^iKo]yL_m@w[wTiOe_@k[cTcUq\\cd@wm@uv@_y@sy@q_Aoo@w]ySsqA{s@cqCezAisCytAyfEekB{bI}wC_cDicAyzCcs@qcCoa@ufCaZ{aA}Hum@sDan@wCw^uA{uBwIy|@iE{cDgIs{@qFor@_Cel@iAc`@uAwe@_BgaAkDqiBcF_q@}BayByH_aAmDap@mDcbAgIkgAmPm_@_Iqh@{MghAy^EA{n@sWi}@ma@uWeLk`@qQs\\{NyMuF}KmEgi@}QuJuCu[eKifAiVsUwEgWwEgVeEw\\gG{n@uKig@}Js[iHk{@cVccAy]acAcg@s~@{i@gu@kg@}~@oy@kz@i{@cuEsbF}|AuwAotAkfA{eCi_BuoAuy@scAup@sr@yh@qu@mt@_aAy}@ey@kn@}u@wa@ku@wYa_AqRwo@wH{cAwEsjBiJwaA}M{u@{OcwCyu@}eBkd@}t@gYs|@wh@aw@sq@wp@}w@et@a}@ek@wi@}l@cd@sdAwi@eaAmYw^cH{IyAyg@yE{nC{NquBmNkrAoQmwAuXajAyXseBse@stAq`@_}@aTk}@cH_iAO{w@rFyaAhPi_Ap\\_r@r_@czAb{@_`Avc@eD|AicAb]ggAhWumA|Pu{BfLcuBrDu_ByA{tAsE}mAaNemAy`@_|@kd@eaAk}@}s@i`Aim@mmA_^{eA_Saw@yW_~AgV_iAeh@uyAe{@yfB{o@o{Awj@weBue@_jBak@o|AeZap@wWma@{kBuhCke@{u@kNsVue@__Ayu@{wAor@kcAc[}]a{@__A_}AqgBqvAqnBokAmlByr@ugAcu@c_Ak[a]yjAkiAkZkTo|AacAyx@uk@kv@al@}g@yc@af@oe@_b@}c@yHiIcQuRyFqGq}@elA{^ui@k[_f@yB_DoOaXmq@ybAuc@}f@gc@eb@uj@{b@qaBgeAarAgy@ehAi|@muAczAq|@imAs|@e~Amy@qjBms@msBs[{gAkm@ccBax@ofB_~@i}AguA_hBabBmpB}hAmuAe_AwzAww@exA}`BquD_~@_kB}s@wrAkyAosBkmBk}Bs{@qgAkpAstB_f@ybAqLeWeiA_hCq}BobGmkAemCgx@yzAi|@y}AinAyeBwwAulBcqCquCuiCe{BowC_oCk[w[etA}{Ak}AauBk_AmuA}wAqjC{cA_xBm`Am`Cut@iyBav@olCyOqq@mDgOeVydAgzAypH{z@utDy{@waDo]giAwt@_xB{S_k@ql@k{Asr@q`B}s@m{A{^cu@kU{b@mHyM_[ek@_n@ieAw|@iuAmnBuoCafCkyC}`A{bAwp@_p@yhAwcAqpB_`B{xBe}AyeCw{AabC}lAegCoeAm{FwtB}aBct@wuAm|@wDaC}oAikAgqAe_BacAyeBsl@qsAeu@qbCge@azBkdA}bHgk@u`CmOmc@w\\o|@qWui@sd@qv@mXu_@}d@sj@ua@y`@qa@_]so@{c@_qAop@}bB}u@wkCelAmtAun@kz@}_@}~@ua@}\\oOqzA{r@ef@_VwScLg]mQwZ_Rui@y\\og@y\\_ScNoU_Pgb@a]q`@g[uToRgo@_k@ew@kw@k]q^e_@kb@mq@sx@sm@_y@uT{Zmq@udA{^cm@oOyYg|@o}A_Xwi@wk@{nAm`@ubAw_@kbA{`@wkA{DqMuWe{@yRes@wh@ipBsp@okCqm@azBk]qfA{r@iwB}\\_gAuM{b@sJy\\wUy~@yf@iwBeYyuAw[ouAeUix@}Sko@cRec@kS_e@sd@iu@y`@kk@gg@il@ex@ws@m|@uo@{m@q[it@aVsd@}I_l@iMs~D_q@mxAs\\gi@iRmU_IuoAch@yYaOuNaIgn@k\\sx@qj@ms@kj@op@yl@er@ot@odAyjAkNkQmLoN}r@ay@klAykAgz@uq@{KaIwfAaq@mgAcn@mhAop@ufAys@srAucAq|@ww@siA}jAorCsiDeR}Tyj@oo@if@yg@slAokAifA}aA}y@op@oaAqo@sM_JgnB{kAosBilAgy@ci@shH{dFqdAcw@mdAep@km@k]sq@wZ{q@{Usr@aQaj@uJuo@kHe}Ek_@c_AyKybAyP_s@{PqgA}]uu@_[w}@wd@qkAsu@ss@qj@mt@{q@ul@mm@owBenCa~@spAcgBwdCaqAuaBacBwlB}eAilAsj@es@aa@ek@wl@g`AqjAsrB}i@gy@ub@_h@qd@mc@wp@_g@mr@__@m~@o\\ut@{Oqz@qH{n@_A{GKc}DrQwzAzCmlBWklB~@{rAtFmgApLiaAfSsc@lLoq@lUmuAfr@_`BbfAunEnyD}gA|y@ek@x\\we@vVy\\zNgO`Iem@pSy[`J{gAbUcs@fHg[jCihAjDybAw@_aAwGy`B{Ts~EagA{lA}RunAoKkkAuFaiBoEs}@uF}m@gHg`AiPo~@sUky@_YqgFi`CseBao@euA}]iwA{Wq{Dsn@cnAuW_fAo[kjCmaAg~Aei@gu@eSmbA}SitA_Reh@_Emp@qDimAc@mt@z@g~@xEs_AtIgz@nLqnAvWegDxaAcsBpj@c`Bh\\ylA|QyhApIgdAxFeaBbEskAa@ekA}DyeAwHkuAyPm~Bc]izB_VqbBcN_sAqHcoAwJ{}@kIy}@uK}qAeMe{@mCyk@Tkl@lBge@|D_v@hLkd@dJaw@jToi@lTaWdL"},{"ref":"A 23","mode":"driving","weight":6564.19,"distance":213618.828,"geometry":"ygkhjAhovmOw\\pEmJlBqTrAkUgBiSgHkNeKiL}NyJoM{|@odC{k@u|AwNow@aEac@w@ep@sBe_C`@shBpEgcAbPc_Cl`@a~Dv@aItOy`AbTsgAdvJwh]hV}hAbTiqAxN{}AjE_lAa@wiBkGk}Aoz@qhKmBwcAhCofAjTk~Ah~@agEf~Jq`e@`SgiAdJm~@vBsv@{@_v@{X_`JmCmoAhB{dBb^a~Il@mu@eCcpAyTkgBqG}f@gFc]wAcK{[kwB}`@emCoEoZ_QskAy\\}hBk{BkyI}Lsi@cH_c@eCiXsAaRu@oTUuf@n@e]`Fop@x[ctCzBwVjCy\\bB{j@\\a^u@}d@gDkl@aEm`@gUypAmjAscFiXkuAuKaoAaBw_Bc@stAyBwo@cFqh@yGke@{K_h@gPqh@wR_f@kgAczBoc@yz@kbBmaDs\\mq@idEsdIau@ykAcQiUsd@_n@{nDkwDk[ua@wXke@q]mx@cRgo@_Ngo@o~AuqJsZy~A}g@}`Ccw@o`DmP{y@cHce@sEie@gDup@qAq{@xAm`AzEgcAhTm`DxHiiAlTm_D|Bi]jByY`AgUb@sMToPFeRI_Q_@iJg@{IwCo[iDuT{CkR_EgQyE{PgGcQsFcO}Rad@sd@{dAsMwb@sIac@sFsg@aCao@f@cf@D{DrLwiB`b@coFfe@}dGlL_gArOigAbXmyAboCg}M`QgeA~G}o@vEcp@`Csl@x@yl@[}t@{D{nAesA{aVwI}}A{DynBtAcxB|@_cArH}eBnC_o@bKm`CpUioFxMuxB~PquB|w@u|H`MekA~Eeg@`C{Wt@mL|@yQp@kRf@{Kd@aQJuICaLKmOWwMq@sN_AqMkA{K_c@kdDiIyu@iIecA}Eoj@qEyl@mAyQw@eMs@}M_@_M_@{NSmJK{OAuRDwKNgMb@}Pd@cMv@gNr@yKvAoPpAcLnCmRpDoUhDoQxEwUnDiOlFkTjJy]tGqU~Vi}@n[sfAv_@orArIiZtSct@bKs^pJ}^lRcz@rCwOxCyRtCgTpBiPrBgTxAwQbAyNt@eM`@mKNuH@cRKw_@UyYo@{Vu@{WmBq^uDgm@uCe^uHcy@qm@coE{AiJiCmQmEs\\wCaWmC{UqDq]}CgZ}Bq_@cAuT_AsW_@}VCkPFmTR}i@H{r@?kUq@i`@y@aT_BaR}B_TaC}QeFe]cCiP}BgSkBeP]eDqRa_BwGkk@uCoUaGkb@gGcc@cDwScEsViDwOuEqRuFqQcJcWgVal@}IwSqLs[uHqScKsZ{IsX_G}RqF{RcHeWsFkSkEkRoDwQaDkRgCsQyByTeDk`@qHkz@wK_tAuSc}Am\\ivAqbA_zC_a@kbBeVw~Agk@yuE{H}p@oCcXyA_P_BaUgAwRs@uRa@cPOqWHgURiRj@mRj@mO`A{PnAoRdBaSfBmQtBgPzB}NtDoTjDiP|F}V~CiMbIqXd]wcAndA_tDbf@}`Bdb@cgBpVwvAngAwrGzRy{AxNeiBp@w\\bDu`B~AenILg`Cc@ymAgCg|AcIgrDeCutAzAklAfHahAdc@{xCtMecAvLkmAx\\_bFjMeuAxU}|AtiC_{LvZkdBtM{bAlI_y@zFos@`Hcu@hH{n@dDgVxIqd@x_AyrFjBiOnA_Lp@gIb@wG\\oHj@oL`@kJPwMD{JAyFCsGGoGOwFi@iM{@uNeA{LeAsHsDgWeCoMcDeN{DyNoDcL_EgLcFiL_EcIaGwK_EgHiD_GuEaH}Q}WoOcSu_@gg@wr@i~@wy@wfAga@gi@wYsa@qTq]ke@wv@oGiLgHsMsQ}\\{Uif@s|@miBueByoD_fBqpDwcCwfF{F}MaGiOkFcPwEcPkEaPmEyQyB{KeAsF{@sEiB{K_CmQsB_RaBqQo@}Iu@cMaAeP}@iU_aAkj[oDa}A^cyAxKi{ArWgvAbYe|@bQgd@zUel@`wHkaOvfDqxGv`@{eAlTelAxIqsA}AozA}LeoAuFqj@kNktA_PczAyNkvAoNiqAsNquAeDg]aBoRmAwQg@kI_@iK[yKOeJCkCGoFEyKFsKLwJ`@wM\\sKz@wOv@_Kp@eI`AiJv@sHz@kHnAmKdCcRzl@}nErBsNtCcTdAqJfAeKbAkMx@iM\\aF^mH`@mLH}FHeGLuJBaLAqKWuNUiLo]qmLaOiaFwAmn@Rag@lDakAdJirDqAa{AcJ{cAyXwqAme@oiA}o@a`AcfE_}Ems@_~@ag@yy@_a@_nAsUosAoD{hBrG_wAbDuu@fHk_BvN}zCbAaWj@kQ^eONqIH}JBcJAsIE}KQcK_@uL{@wQk@wIa@_Gu@uHu@cH_AwIiBeNmBmLgAwGkCqMkAqGqByIwIy^aMoh@gO}l@iGkWiUk_A_Muf@aa@kaBgEqQmOom@_Y_mAiNuu@}CqSyCyTeB}OkB}UoAoPiA}SaAsTi@wO]}LYePG}QC}K@qKJeRPoONoL?Y\\kOj@mRt\\ohLxA{d@fAa]~@sUv@uN`AyPt@qK~@cKpAyJpB}OvBoOtAuIpB}K~CwO~D{Q~EaR~EmQtGoTxLe^rG{RdJoXdKk[zIuXrHmWrIoZvGiWvEuSbDuNzD_RxCwOzBwLzAcJrAuIdBkL~AsKpCeSbDqXxB}RpBiSpByU~AaUjAeSrBs`@|@{W~@m[PuNJmJ_@_w@?w_@IoUMuN[{K{@o^m@oMi@sLo@qLoAeRoBiXmAqO{AePeCcT}BwRaCoP{A_LqCcS_D{QqC}O{CyPoDcRsG_\\cF_ViLsi@mK}g@wS}bAeVqiAwQa{@gIg`@{EaUqx@ayDiEsSqEoTiFeWkEsTcGm[sDoR{DqSaEeVg_@}vB}Xw~Am[ygBsq@ozD{Oa~@wd@_kCiQ_cAwEoWuCqOwCkPqCuNmFmXkCmLkEeR}CkLqEiPmF_RsF}PiFwO{FwOeGmOiFmMmIcRkIaQkIgPqGsLiGmKaJsOuFmIwIeM{GyJsFmH_FsGsMwOsv@s|@ca@{d@_PmQyS{Uqr@uw@ge@}h@m\\s_@}[g_@_PiRuPkSuQ_U{OaSkOaScOqRcOiSwNiSwKmO}QyWwc@up@imAalBsa@_o@ySy[oPmW{Vi`@qSw[}K{PaSuZwVi`@mTe]_MqS{DyG}Se_@mNgX_MsWwGeOeKkV_FaMgGsPiGmPiHoT{FcRqGkTiEaPkDwMgDcNkE_RkHe]sHqa@aGs_@yEy\\iEg^kDi]mBaUgByV_BuVkAeR}@uUwAc^o@iSSmMEiPJiQBsXD{SV{ZXqTdAug@pA}b@h@{Tb@c\\h@kZTwTLuRAyTSeTQkJ]_Ks@_Pm@mO{@uPoAmQwB{SwBeSaCcPkEkU}DkSsDiP{EcRqJq\\_Rsl@}Sin@mJsYmGgTyDaNkEmP{DaQiEaS{CmQmB_LiC{QqBwPqA_NsAcRu@wMm@uLk@ePc@wOWeOm@}b@w@ik@m@y_@_@wQg@aRa@yLq@oMs@cMeA_T}AcTuByQkBkP{BiQsCuO}CoNoE{QoEoOyHkVoEaNyEqMgFaNaFcL}EgJ}Mm[kR}c@kMq[wLk[aIqUgGoSuIm[aHw[yE{VeDcTuCiTcBoQiCeXmAePeCin@{@ch@@sz@~BkaCUil@_B_e@yCok@uJyx@mHid@yJie@g`@gmAem@u{Ac`@wu@}Qam@uNge@eIkYmHsYaFkW{Lor@kFy[mFia@cF}b@sGep@iE{i@_Hg~@mEcr@}OogB{Gcj@{Fuc@qGsc@qGw`@aJ_g@gJ{d@qTs_AiPov@oe@{yAwJwZyx@omCie@wmBei@whCq]ubC}Tk`CyLo{BeGyiC^{uB\\gd@r@ya@~@mc@lAw`@nBoh@jDqq@dDyg@~Cea@zDcd@fKodAtHeq@h{BcrRHs@lH}q@~Daf@fAyQj@mNd@wM^mOR{[Oa[i@uUgAqYcBmU_BkPuDsZiDcUsEsVqHy[yGcV_IsU_J}U{JqUyKcToZeg@g]_f@arBqoCwv@mdAc[{b@wVw]iVc_@c_@_r@wQub@_W{p@af@m|AkzCetKiJi^gGcYqDsRcDcTkC}SkBiRyAwRcAmSq@qQ[aRKkTNyS^uSl@{RfAcSfBsVvCmXdH}e@rLwo@dk@wuCfIyc@vFq_@xDm\\lC}ZrA}Wx@qVZ}YIo]u@{[y@iToAuRsBeW{BeSkCmReFgYmIg_@}K}]oKkZ_Nu\\oNa[ex@{`Bgu@m_BkK{U_JqTkIoTeJuXiJs[qHaZsHc]_Gi[sEqZ{Dg[cDk\\iCs[wDqo@wCuk@s@qMyAsZ]gHa@eHk@aIm@sIm@eIo@yHo@_Iw@{Iq@{G{@cIaAcIoA}JgAwHiAqHeAgHyAkIsA}HyA{HyAmHcB}HcBoH_BwGqB}HgBiHmB_HuBgHyBqHuB}G}BmH}B{G{BuGcCiH_CwGcCyGaGkP}F_PuCyHaC}GyBiGaC_HyBeGeCiH{BaHwBwG{BcHwBaHaCsHqB_HuBqHoB_HkBiHoB_IcBcH_BgH_BuH_B{HyAyHwAmHsAyHoAoHoA{HiA}HeAkHeAqI_A}HwAwMmDm`@iCe`@aBe_@{@c[k@q^C{[JaXb@sYbAe]`Bu]nB{ZpCq[te@wrD~LsdAlJudA`Dmj@jBce@pBc|@|AwhApBkpAvJezGjAgv@r@um@Zi]Lm]I_UWoRa@wSu@eScAaSmBeZiBqTcCaUkDiZsEa[oGy_@{Mqw@iNix@mQicAgIoe@aQ}aAgL}p@kOsz@wG_\\yC_NmFiTuEuPuFcQ_GwQwFcOyFuNiDwHsKcU}GaN{HoNwH}LyIyMkIqLuJeMmJ_L_K}KcLoL_LiKoHgGaJkHwHgG{ViQq^mVcaH{pEqeDs{B}~@_}@iWa^u\\eo@ae@sxAcd@}tCsLyr@sQas@eTkm@kXyh@sSa\\cXi]eSoSyc@{]yaAiu@u~@{w@yd@mi@}P{NeQaTs_@gc@kaBolBmHiIej@ik@q{@yj@waA}_@o[uIa_@{DuRw@wlAkB_`BoBcvA{Aqv@oE_V}CaVuEsToFgr@eXat@kd@{X_VaTwUil@sw@aeB}uC{Xad@}t@_eAii@of@eDgDaP{Ma~@}m@kfBijAwh@g^ypBsqA}i@ma@o_DgxBa~@{n@k{@_k@q^sOu_@uPo\\mKe_@iF{p@oGo`@uD{gCsTe|@aHcsAcM_k@iI_b@yJu`A{c@u_Bk}@yiAyo@qo@c_@ouA}u@sc@_Tgd@{PqlA{]{gAqTaaAuFefAoBqlC`Fsd@X{GDwX[cPcAsP{AuQgC_PcCoL{BqLsCiI{BiHoBiLiD_N{EeMaFoMmF}M}GaYsOgMcI_OaK}O{L}KiJkLsKmJmJgKuK_KsLuHeJuKqNqI_Ms_Au|Aac@wr@es@k`AuZa\\uSiU_r@ko@{{@qn@yc@oWcj@mXst@_YgBq@ew@uU}eAwQ_lAeLy~CwGm{@oGeb@_G_g@wKgx@wUy|@aa@mt@se@ylCawBa`Agi@_kAab@{u@kPov@kIsbA}BgtLpPodAiC}z@mJofAqTct@aWor@q\\ij@_^}RiO{c@m^qh@ok@yLiOsJuMcIaLQWcIsLaKiPqLuS_NoWeIqOmEcKiHkPaGaOkGiPwGwQ_F}OuIwY{HwYeDuNaFaUsDwQoGa]kM_u@gO_`A{jB_eL{DiU_FcYgDoQeDcQcEcQ{EmQgB{FeCeHoCmHcCgGgC_GeCuFiD}G{CiF}CmFcDgFeDaFcEsFgIaKaEsEgEiE_FuEmDcDoEuDqFaE_LoH_FwCkKqFuG{CiFsBuE_BuFiBmFyAeFmAoEaAaF}@uF_AqFs@gFc@wFe@oF[}FSoFSwFGoGIoGAgN?eMAwMAuNEuNM_HK_EMgOc@mNs@uMaAcNsAwNeBcNkBsM}BgMyBiHwAwTmE{UyEiM}BcM_CyHeAiM_By`AcD}gBpPwx@tDsi@_Dwe@qOkW{KkUcPuS}QwRmV{MgTmOy[aLo^_Ju_@wDgWyBmTkCgk@p@cv@~F{p@bFeWtZ}eBvDwYhE{d@nDu}@\\}g@uAmo@iB_\\sF{l@cPsdAeMkd@aKg[gb@k_AuZah@oc@we@qSgT{`@{Ui[cRaUgIye@oOy}@qOkr@c@mjBbGkb@pBk`AzAoILycAqBshAeKeeAmRs`A{Xk_Aw`@gcAcj@elC}`Bsv@ia@{u@m\\{y@eYehEecAsxAsf@i{@gb@ou@wf@q_@yYwh@cf@_g@ae@u{Ei{EgwBmyB_nA}zAsj@olAk\\yrAwMex@oGyk@cQwzBcwAwkSuF_s@sHiu@_Jsr@uJcl@eZqxA{nMs_d@{h@{}Aqv@auAws@y}@cQaTkc@ig@ojKatL}i@sp@_g@yt@wc@q{@}]ybAyUs}@cOk{@qLkeAiKklBqLgjBeSgnBqZogBkd@yhBwj@y}AuUwg@qHeO{pAqtCoMgYa|AueD{{@snBsq@{qAmx@}kAcw@s_AiuCuiCecA}eAyr@_cAqs@moAgo@goAyr@igAa{@ocA{}@iw@ECypBmlAmfA}o@g_Aky@uu@g{@mn@q_Acl@ylAklBuoEsrBsuE}s@ecBaYck@qO_ZgSk]wFcKwPmY_c@kr@wRoYid@un@yQgViUgYwZe^yLoNko@wt@c`Awz@ojAq`AinA_y@ejA_t@gkAqm@onAqh@qz@w\\ck@mSo_Bqp@}l@eXio@_ZwCsAirBieAwmAyw@qgCcaBahAss@kxAibAis@yd@oqBqrAcs@ii@ag@ec@wh@wd@_^a[wu@{w@er@kw@umBqcCq~@ohA_bA}nAkqComD{}Cm{DsvAseB{}GyqIcc@od@meA_fAcj@gf@ac@}_@clAa|@meFmcDygAcy@y{@kw@idAssAe`Au|Amj@olAgc@ckAia@{sA{[auA_jAg`GsI_]o`@}sAg\\yu@__@wp@cj@or@gf@{h@mv@cn@uL_Hcp@i\\_oBir@ulBos@uZgLozAyj@uxHysC}qDmsAa~EiiBceGe`Cm{HukDskAab@mnAeZunA_RusGmx@gqBaT}q@yJ}}@oOkc@{HwKwBsxBy_@qkCge@_oBi]efB_[apAkW}j@_O}e@kPul@wVyZsOcy@og@y|@_l@miH}{Ewa@{S_j@uTuXoIqDiA}f@yJga@yFcs@}DuuAo@ooCn@m{CAeOe@yIYeZ{BoVeDa`@_Io_@qMkv@gb@{k@}a@ge@}g@mNmRik@_~@_s@clAmr@cbAex@wv@ciAgv@cbLguFix@sc@wiSqeMauA}n@adAkViiAgMqqEgTmdDgRgiAs@agAdDwfAvHgdAhO}aArTshFz_B}cAzRqlAlH_dWnj@{rH~PuTjBkx@|G_lAzNyEv@{TxCc\\fFkcCtb@oqEf{@scApO{fArNqjAdImeLjh@cwAdKu}AxW_eAl[yxE|mB_}@jXacAzW}kAfLkdA?kiAgJ{fGwl@eeAyE{aAjBuqAnQwaBx`@icBfa@ihArUgxAxWge@bFc{@|IkuBjUg|AxO{eCnSkNlA{wFzk@cnAdPajA|Y{~@j`@E@wNfHmSlLo[jSc`GjtDuaAvd@ibAb^{cAvVqgAtOocPfyAsoA`Va{Afh@opFfpCa_@pPs\\`KgZzFeYlByS@mOo@we@eHyYaI}`@{Tc]{W_`AiaA}|Ae}AoEyD{a@ab@c_AqhAuSkb@qOc_@uPqk@ofAweEuRwn@sSkd@yYia@}VyV{MkJmVcN}QwGeLiDqV}DaSmA{Ue@{UdBkRrBmU~FeT|I{Q`KyPvLyd@~e@qLlRaSt\\_n@tpA{\\rr@cKpQ_I|MeKxNoNvPoO|N}MzJ_RtKkVzJ_Bl@uPlD_Q|C{Ov@eTRuLOeMmAyZeFwSyH_OwGkMiHiCsB}_@c^yX_]qOgUi_@ke@a\\_ZaEyCqYqQiImDmJwD}~@w]ixAo`@aLgCcQiCcWwDe^oCmdAwHg}@eKcd@gHqTmEuDs@uB_@kcB}IgMJyMrAiNxD_LhEkLdGwdTviJkwAf_As^xTe`@nRgOrFsZ|Huc@rGqv@jEwaBjDuh@hBw\\lCcgAdXmrE~yA_RzEgu@xQ}w@~I}i@nBqVF}Wo@uhAoEgcAcGum@_GaJkAyRqCa~@aPu`@mKcb@iJmTiFg|Aq[y`@{Emf@wC{aAnJmlA|[udEboAgvAnc@gaAl^idAlg@{bHl}Dyc@jRk_@pL{_@|Hmi@`Gaf@tA{`@WefAuBgyByFmdDwH_aC_GalAkEis@qGuY}Dql@{Kc_@}J{h@oO{WgK{bFytBk}Aok@uOwFyo@oUu}@mV{v@}LsJyAu`AmGofAb@gfA|Iug@~IuKjBoPvC}aAd`@}~@te@}^jVyUhR}VrSiVdUu_@~_@me@rg@gq@t}@{BbD}qBniD}[v`@mT`Uu]rXs^jSa_@xPe`@|Lk`@nFm`@~D_fAPkb@qFsa@qJg}@e^{cAun@s_Aui@{PuFwPqFmKiDcUoHcdA}IcdAdC}dAfScdArd@ux@po@qs@ns@yw@~n@o{@lb@igA~Ukc@hBad@H{`A_FolAsMkeA{FidAu@{iAfCgbBtIwgAb@idAyCwdA_Mgc@_HmK_CqMcDcRcFuR}FaW_JeNkFa[yMwOwHeRyJod@kXci@}^mKqIqNiLmKeJsYmXaUmUuZyYcUyUic@{b@gYaVkk@{c@go@gb@wkAap@oiAee@cnA}_@}^iLki@sPwXwI}aAwe@y`Aes@{Q}Qod@od@kq@u{@el@{kAsf@izAiZouAoS_vAit@g`I{Pe|AmVs}AgYgaBe[_xA{\\ktAqSir@ggAkbDgb@ggAgn@{rA}m@ylAmn@ieAcv@qfAys@}`Amx@cdAgyAgcBeXa[sr@ix@slIgfJ_u@}y@_r@}_AmOkWkuAmiCaj@qsAsc@cuAmuB}vHwuA}fFotAufFk_@{qAah@gxAym@asAsw@ouAo|@soAs{@qaAo|TavTuaAynA_|@izAcjAsbD{nDsnMue@qrAgo@{qAeq@g`Acx@}|@uz@}r@go@u^qGsDgbA}^{fAs[}gAiM}~@}DoKe@whAnGwUzBcm@|F{@H}bFrp@m_AhJgkAtBq~@iCklAkOqdAeWi@MqdAic@wlA{v@glAmkAgw@whAms@qzA_HuOaXcr@qWw_AyNmw@cIy`@og@{mC_Ica@mOuo@wSgx@wU{y@o}DqvL_p@egBk|@khBw{EafIsFqJg_AokBou@{`Bcr@e~Ai{FooNwMi\\kWkr@o`AorCqo@s{Bae@oeBsh@kwAeq@euA_c@co@af@_n@yi@qh@oi@qc@iq@qb@}m@g[qp@iVox@{SeaAsOqgEy_@chBeRes@iLakC_e@}eAkVav@yRsbAsYylAc_@}p@uV_bA_b@gNoH}GuCog@aWerEenB}bCa|@afD{cAex@uYciAud@u~@kc@}nAym@ajAyo@{CeBinAqu@qlD{|Bi_EijCco@}\\_q@mTw{@gNsdAoCuxAeBah@m@wt@cDgp@aIeg@mKub@oRcb@uWwb@y`@s[y^yUy]{Tee@uWgo@oh@ibBik@efBs[}y@i]cw@ga@ov@ib@kp@ee@am@aw@aw@it@gj@{t@{b@ky@{]_{@gXaaA}Pa_Dwe@ml@kP{k@mUui@yX{y@ai@cnAit@cn@yX}p@{TohCit@}p@{Tyo@uWgo@w\\_m@ea@ej@oc@uw@sr@wj@gf@_m@}b@ml@s[ar@qVws@kPim@kFk^eAi[MayA]ig@}BkZyCa\\oIa_@iJml@uWuo@cb@ka@oa@kX_]kZwe@wZkp@ce@unAcYas@oZwq@e\\cm@{d@mo@qg@wh@qk@gd@yPuLa[mSsr@yX}lC}q@_dCis@sk@uRqYmNaUuMga@wVuYmRwn@q^{i@gX]Qgt@_Vmu@aRsr@{Ka{@{FseDc@}~@sDky@{Ksr@{Ogf@oQ{k@}Ymg@w\\{yAueAok@oYuUkKwToIoc@{M{NqDaKoB}IsAcW{DuN}A{NkAcUiA{MWeMCcJCiQNwKJo_@J_TNaPLuM?mOGsNY_O[cOo@gNi@yIq@oR_B}OwAmOgB}QoCcPoCePyCaNwC_NuCgMkDeN}DgN{DsUuHeXoKaS_IqSkJuSqK_cDkiBqKeFmL{F_QsHkTgJcVyIqQ}GcOyEqP{E_SoF_RqE{UqF}LkC_~@uQqAY{Z_HkReEcSmFwOiE}NmE{GaCoMwEqKuDuHuC{LcF}aAid@q_A{k@cw@_m@ov@mu@ejCs|Cyo@qh@go@y]_dAa[ceAwSyx@kY{k@w\\mu@ai@cfGc|Dkp@oZun@eSikAkYge@mM{KsEmIaEuK{FuFkDuIgFoJ}GiRkOmLaL_JeJcKoLYa@wL}OoKgOwGqJqKsPgFcIgC}DuMcTgIuMkU}^m`@oi@_[c[w\\{Tem@cYwRiKsM{FwMaF_JcDuL}DsPaFaPcE{W}FgJsBqSeEcIaBeMeC}WsFo[oHqlC}r@kY}Ise@oOqrAkc@{[_Lwr@uUae@qPwIoDcn@oYmb@wYsd@c`@ga@we@c\\{b@w\\ai@eLsPgQyUi]ai@gf@qm@ar@s{@es@q{@oJqLerAauAwe@wc@qoB{iBo_Aiz@ql@gb@wp@a\\ao@uUwx@qN_}@aGgnEcHyi@cCku@mGwlAqOif@mJopAiXyj@sLax@yOik@oGin@qBaGSci@j@_n@hG_n@~NkSvFceBrk@{l@zLm^lG}g@zFwj@P}g@kBen@iF_m@sI_m@yJit@sIot@sFyp@aAau@bDan@|Ewn@rM","duration":7012.291,"driving_side":"right","duration_typical":7012.291,"weight_typical":6564.19,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 7 onto A 23 toward Abrantes/Torres Novas/Alcanena.","modifier":"slight right","bearing_after":350,"bearing_before":337,"location":[-8.630021,39.475341]},"speedLimitUnit":"km/h","destinations":"A 23: Abrantes, Torres Novas, Alcanena","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Vilar Formoso"}],"type":"fork","modifier":"left","text":"Vilar Formoso"},"distanceAlongGeometry":213618.828}],"exits":"7","voiceInstructions":[{"ssmlAnnouncement":"Continue for 133 miles.","announcement":"Continue for 133 miles.","distanceAlongGeometry":213589.156},{"ssmlAnnouncement":"In 2 miles, Keep left to take E 80.","announcement":"In 2 miles, Keep left to take E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take E 80.","announcement":"In a half mile, Keep left to take E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take E 80 toward Vilar Formoso.","announcement":"Keep left to take E 80 toward Vilar Formoso.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-8.630021,39.475341],"geometry_index":988,"admin_index":0,"weight":5.683,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":5.999,"bearings":[157,334,350],"out":2,"in":0,"turn_duration":0.017,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,175],"duration":9.106,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":8.65,"geometry_index":991,"location":[-8.630223,39.476345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.629341,39.477676],"geometry_index":996,"admin_index":0,"weight":25.303,"is_urban":false,"turn_weight":11.75,"duration":14.288,"bearings":[59,223,244],"out":0,"in":1,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.627205,39.478666],"geometry_index":997,"admin_index":0,"weight":32.497,"is_urban":false,"toll_collection":{"name":"Torres Novas","type":"toll_booth"},"turn_weight":15,"duration":18.417,"bearings":[58,239],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.623438,39.479761],"geometry_index":1001,"admin_index":0,"weight":30.223,"is_urban":false,"turn_weight":15,"duration":16.465,"bearings":[88,90,267],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.618605,39.479697],"geometry_index":1004,"admin_index":0,"weight":110.687,"is_urban":false,"turn_weight":0.5,"duration":122.438,"bearings":[100,263,277],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":107.07,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":99.04,"geometry_index":1021,"location":[-8.57387,39.47092]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,266],"duration":6.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.025,"geometry_index":1032,"location":[-8.534065,39.464236]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":1.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.451,"geometry_index":1034,"location":[-8.531756,39.464722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.579,"geometry_index":1035,"location":[-8.531274,39.464838]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[73,83,254],"duration":5.996,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.839,"geometry_index":1036,"location":[-8.53108,39.464882]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.529154,39.465344],"geometry_index":1037,"admin_index":0,"weight":7.225,"is_urban":false,"turn_weight":0.5,"duration":6.904,"bearings":[73,244,253],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.376,"geometry_index":1038,"location":[-8.526879,39.465887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.55,"geometry_index":1039,"location":[-8.526439,39.465991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,250],"duration":77.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":73.691,"geometry_index":1041,"location":[-8.523518,39.466756]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,268],"duration":8.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.08,"geometry_index":1063,"location":[-8.498266,39.470895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,257],"duration":15.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.31,"geometry_index":1066,"location":[-8.495451,39.471088]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.490922,39.473185],"geometry_index":1071,"admin_index":0,"weight":18.533,"is_urban":false,"turn_weight":15,"duration":3.553,"bearings":[52,61,233],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":9.589,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.589,"geometry_index":1072,"location":[-8.489965,39.473769]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":2.927,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.927,"geometry_index":1073,"location":[-8.487366,39.475359]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":25.254,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.233,"geometry_index":1074,"location":[-8.486559,39.475833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":72.9,"toll_collection":{"name":"Entroncamento (A23)","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":69.255,"geometry_index":1077,"location":[-8.479763,39.480145]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,257],"duration":8.142,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.531,"geometry_index":1091,"location":[-8.458137,39.489516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,273],"duration":10.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.959,"geometry_index":1094,"location":[-8.455326,39.489596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":3.499,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.237,"geometry_index":1096,"location":[-8.451651,39.489145]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.450462,39.488988],"geometry_index":1097,"admin_index":0,"weight":7.459,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.071,"bearings":[100,110,280],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.447895,39.488645],"geometry_index":1098,"admin_index":0,"weight":2.685,"is_urban":false,"turn_weight":1,"duration":1.829,"bearings":[100,267,280],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-8.44741,39.488582],"geometry_index":1099,"admin_index":0,"weight":7.792,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.443,"bearings":[99,111,280],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.444705,39.488579],"geometry_index":1108,"admin_index":0,"weight":5.44,"is_urban":false,"turn_weight":0.75,"duration":5.098,"bearings":[72,246,258],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,239],"duration":131.94,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":118.746,"geometry_index":1114,"location":[-8.442922,39.489201]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,272],"duration":7.874,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.08,"geometry_index":1140,"location":[-8.393409,39.487153]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":2.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.018,"geometry_index":1142,"location":[-8.390674,39.486968]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":5.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.37,"geometry_index":1143,"location":[-8.389906,39.486896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":88.272,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":79.439,"geometry_index":1144,"location":[-8.387835,39.486702]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[117,124,297],"duration":10.971,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.142,"geometry_index":1192,"location":[-8.357186,39.484684]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.33,"geometry_index":1195,"location":[-8.353707,39.48332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":8.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.377,"geometry_index":1196,"location":[-8.35327,39.48315]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.350457,39.482129],"geometry_index":1200,"admin_index":0,"weight":20.404,"is_urban":false,"turn_weight":0.5,"duration":20.974,"bearings":[110,289,293],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,258],"duration":9.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.35,"geometry_index":1219,"location":[-8.343068,39.4821]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":28.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.517,"geometry_index":1220,"location":[-8.339738,39.482845]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.329715,39.484049],"geometry_index":1246,"admin_index":0,"weight":33.499,"is_urban":false,"turn_weight":15,"duration":19.492,"bearings":[75,79,256],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":110.034,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":101.764,"geometry_index":1258,"location":[-8.323269,39.485883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":23.846,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":21.461,"geometry_index":1309,"location":[-8.287212,39.488008]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[94,99,274],"duration":19.144,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.212,"geometry_index":1313,"location":[-8.27914,39.486252]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.272214,39.486122],"geometry_index":1315,"admin_index":0,"weight":23.757,"is_urban":false,"turn_weight":0.5,"duration":26.587,"bearings":[90,267,271],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,273],"duration":70.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.425,"geometry_index":1321,"location":[-8.261916,39.486384]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,286],"duration":17.159,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.443,"geometry_index":1336,"location":[-8.235842,39.480562]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,277],"duration":4.858,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.494,"geometry_index":1344,"location":[-8.230199,39.479178]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.228588,39.479215],"geometry_index":1353,"admin_index":0,"weight":26.335,"is_urban":false,"turn_weight":15,"duration":12.277,"bearings":[78,80,261],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,225],"duration":1.385,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.281,"geometry_index":1368,"location":[-8.225275,39.480732]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,223],"duration":6.964,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.442,"geometry_index":1369,"location":[-8.224953,39.480996]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.223296,39.482347],"geometry_index":1371,"admin_index":0,"weight":34.663,"is_urban":false,"turn_weight":1,"duration":36.401,"bearings":[43,218,223],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":98.444,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":91.061,"geometry_index":1382,"location":[-8.21345,39.488799]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[123,128,302],"duration":32.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.756,"geometry_index":1408,"location":[-8.180797,39.493543]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.171844,39.488184],"geometry_index":1410,"admin_index":0,"weight":38.502,"is_urban":false,"turn_weight":0.5,"duration":42.231,"bearings":[128,306,308],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[76,84,257],"duration":9.003,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.084,"geometry_index":1418,"location":[-8.158807,39.485083]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.155951,39.485608],"geometry_index":1420,"admin_index":0,"weight":12.294,"is_urban":false,"turn_weight":1,"duration":12.569,"bearings":[76,251,257],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":1.712,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.542,"geometry_index":1427,"location":[-8.15179,39.486313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,267],"duration":57.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":50.05,"geometry_index":1431,"location":[-8.151216,39.486341]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":7.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.562,"geometry_index":1463,"location":[-8.131508,39.485721]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":85.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.68,"geometry_index":1466,"location":[-8.128891,39.485668]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.103759,39.492559],"geometry_index":1482,"admin_index":0,"weight":27.68,"is_urban":false,"turn_weight":15,"duration":13.354,"bearings":[97,99,277],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,248],"duration":1.728,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.642,"geometry_index":1504,"location":[-8.099279,39.492965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":11.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.586,"geometry_index":1505,"location":[-8.09877,39.493137]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":5.288,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.016,"geometry_index":1510,"location":[-8.095316,39.494336]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":79.14,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":73.205,"geometry_index":1512,"location":[-8.093445,39.494981]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,273],"duration":7.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.409,"geometry_index":1581,"location":[-8.063956,39.492232]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,266],"duration":31.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.981,"geometry_index":1587,"location":[-8.061215,39.492304]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":8.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.694,"geometry_index":1612,"location":[-8.050373,39.495127]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":91.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":79.905,"geometry_index":1613,"location":[-8.047396,39.496048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.05,"geometry_index":1670,"location":[-8.018,39.509951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":1.087,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.951,"geometry_index":1671,"location":[-8.017675,39.510203]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":4.811,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.21,"geometry_index":1672,"location":[-8.017412,39.510407]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[47,51,226],"duration":29.917,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":26.16,"geometry_index":1674,"location":[-8.01622,39.511298]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-8.008728,39.51658],"geometry_index":1688,"admin_index":0,"weight":75.957,"is_urban":false,"turn_weight":0.5,"duration":86.244,"bearings":[54,227,232],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":12.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.693,"geometry_index":1771,"location":[-7.979549,39.522035]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,232],"duration":77.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":68.239,"geometry_index":1786,"location":[-7.975443,39.523363]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.952605,39.529446],"geometry_index":1822,"admin_index":0,"weight":27.02,"is_urban":false,"turn_weight":15,"duration":13.744,"bearings":[77,82,256],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,258],"duration":1.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.731,"geometry_index":1827,"location":[-7.94763,39.530203]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,255],"duration":12.167,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.646,"geometry_index":1828,"location":[-7.94694,39.530345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.942947,39.531447],"geometry_index":1834,"admin_index":0,"weight":6.406,"is_urban":false,"turn_weight":0.5,"duration":6.758,"bearings":[68,244,247],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":98.73,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":86.389,"geometry_index":1836,"location":[-7.940605,39.53234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,275],"duration":6.796,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.947,"geometry_index":1864,"location":[-7.903608,39.532721]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,257],"duration":118.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":103.921,"geometry_index":1870,"location":[-7.901272,39.532874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,247],"duration":35.691,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":32.1,"geometry_index":1927,"location":[-7.864901,39.542835]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[82,258,261],"duration":2.218,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.989,"geometry_index":1946,"location":[-7.854045,39.547291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":0.686,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.617,"geometry_index":1947,"location":[-7.85333,39.547367]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":74.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":64.808,"geometry_index":1948,"location":[-7.853097,39.547393]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,273],"duration":12.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.242,"geometry_index":2035,"location":[-7.826704,39.549432]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,273],"duration":58.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":51.1,"geometry_index":2036,"location":[-7.822173,39.549244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":5.267,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.608,"geometry_index":2079,"location":[-7.803741,39.554619]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[29,32,210],"duration":21.319,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":18.648,"geometry_index":2083,"location":[-7.802791,39.555839]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.799433,39.560481],"geometry_index":2084,"admin_index":0,"weight":57.57,"is_urban":false,"turn_weight":0.75,"duration":64.945,"bearings":[30,206,209],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[34,49,221],"duration":13.496,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.782,"geometry_index":2101,"location":[-7.784043,39.571834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.78112,39.574508],"geometry_index":2105,"admin_index":0,"weight":59.199,"is_urban":false,"turn_weight":1,"duration":66.533,"bearings":[40,206,221],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[48,53,229],"duration":10.819,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.45,"geometry_index":2125,"location":[-7.773105,39.589611]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,216],"duration":0.432,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.378,"geometry_index":2128,"location":[-7.77076,39.591565]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.770676,39.591648],"geometry_index":2129,"admin_index":0,"weight":2.166,"is_urban":false,"turn_weight":1,"duration":1.356,"bearings":[34,194,218],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,214],"duration":147.888,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":129.402,"geometry_index":2130,"location":[-7.770438,39.591921]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.755263,39.626181],"geometry_index":2163,"admin_index":0,"weight":43.403,"is_urban":false,"turn_weight":15,"duration":31.567,"bearings":[1,8,179],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,228],"duration":9.881,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.887,"geometry_index":2190,"location":[-7.75023,39.633343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":12.377,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.14,"geometry_index":2193,"location":[-7.747891,39.635198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,207],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.668,"geometry_index":2197,"location":[-7.745607,39.637908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,204],"duration":111.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":100.278,"geometry_index":2198,"location":[-7.7452,39.638598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":5.22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.698,"geometry_index":2224,"location":[-7.736154,39.670532]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,219],"duration":6.81,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.129,"geometry_index":2226,"location":[-7.734939,39.671787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-7.733004,39.673177],"geometry_index":2234,"admin_index":0,"weight":8.582,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.554,"bearings":[51,61,232],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.730055,39.674519],"geometry_index":2244,"admin_index":0,"weight":8.806,"is_urban":false,"turn_weight":0.75,"duration":8.959,"bearings":[67,237,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":19.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.646,"geometry_index":2249,"location":[-7.727017,39.675348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":30.749,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.674,"geometry_index":2250,"location":[-7.720265,39.677074]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,182],"duration":8.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.251,"geometry_index":2303,"location":[-7.715107,39.683488]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,192],"duration":43.233,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":38.91,"geometry_index":2312,"location":[-7.714715,39.685577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,272],"duration":8.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.58,"geometry_index":2335,"location":[-7.708931,39.694569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,289],"duration":18.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":16.706,"geometry_index":2338,"location":[-7.706099,39.693884]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,244],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.333,"geometry_index":2347,"location":[-7.699722,39.694307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,241],"duration":3.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.271,"geometry_index":2348,"location":[-7.69927,39.6945]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.69824,39.695064],"geometry_index":2349,"admin_index":0,"weight":19.726,"is_urban":false,"turn_weight":15,"duration":5.28,"bearings":[49,61,235],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,219],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.423,"geometry_index":2351,"location":[-7.696963,39.696091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,218],"duration":4.206,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.785,"geometry_index":2352,"location":[-7.696623,39.69642]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.695951,39.697415],"geometry_index":2354,"admin_index":0,"weight":20.519,"is_urban":false,"turn_weight":0.5,"duration":22.273,"bearings":[20,193,207],"out":0,"in":2,"turn_duration":0.03,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,359],"duration":44.807,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":39.206,"geometry_index":2361,"location":[-7.695473,39.703547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,199],"duration":196.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":172.35,"geometry_index":2372,"location":[-7.690267,39.715258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":4.228,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.805,"geometry_index":2397,"location":[-7.63455,39.744436]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":81.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":72.915,"geometry_index":2399,"location":[-7.633568,39.745308]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,239],"duration":2.198,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.979,"geometry_index":2413,"location":[-7.609644,39.757362]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[52,61,234],"duration":9.235,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.293,"geometry_index":2414,"location":[-7.608992,39.757725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.273,"geometry_index":2416,"location":[-7.60634,39.759188]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":9.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.382,"geometry_index":2417,"location":[-7.60592,39.75942]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.603253,39.760909],"geometry_index":2418,"admin_index":0,"weight":86.009,"is_urban":false,"turn_weight":0.5,"duration":95.018,"bearings":[55,220,234],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":19.47,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.523,"geometry_index":2438,"location":[-7.57817,39.781345]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[49,53,231],"duration":7.492,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.725,"geometry_index":2442,"location":[-7.571995,39.784724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":1.597,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.437,"geometry_index":2446,"location":[-7.57007,39.786032]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":4.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.951,"geometry_index":2447,"location":[-7.569646,39.786348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,224],"duration":3.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.382,"geometry_index":2449,"location":[-7.568511,39.787246]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.567592,39.788047],"geometry_index":2451,"admin_index":0,"weight":83.817,"is_urban":false,"turn_weight":0.5,"duration":95.227,"bearings":[41,215,221],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":3.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.81,"geometry_index":2474,"location":[-7.550099,39.813076]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":61.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":54.139,"geometry_index":2475,"location":[-7.549495,39.813744]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.535209,39.826081],"geometry_index":2484,"admin_index":0,"weight":36.291,"is_urban":false,"turn_weight":15,"duration":23.664,"bearings":[42,48,222],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,222],"duration":10.887,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.778,"geometry_index":2485,"location":[-7.529788,39.830671]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,215],"duration":72.13,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":66.72,"geometry_index":2488,"location":[-7.527424,39.833066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,249],"duration":1.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.427,"geometry_index":2500,"location":[-7.509295,39.84634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":21.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.229,"geometry_index":2501,"location":[-7.508815,39.84651]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[25,44,207],"duration":10.892,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.783,"geometry_index":2508,"location":[-7.503391,39.85045]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.502101,39.853028],"geometry_index":2510,"admin_index":0,"weight":7.239,"is_urban":false,"turn_weight":0.5,"duration":7.495,"bearings":[20,184,199],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":1.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.734,"geometry_index":2511,"location":[-7.501261,39.854783]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":120.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":105.245,"geometry_index":2512,"location":[-7.501049,39.855226]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[8,15,189],"duration":17.361,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.175,"geometry_index":2522,"location":[-7.487866,39.885597]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.486858,39.890033],"geometry_index":2527,"admin_index":0,"weight":82.459,"is_urban":false,"turn_weight":1,"duration":90.517,"bearings":[12,182,193],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.47702,39.915628],"geometry_index":2548,"admin_index":0,"weight":24.24,"is_urban":false,"turn_weight":15,"duration":9.996,"bearings":[0,3,180],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,183],"duration":0.623,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.57,"geometry_index":2550,"location":[-7.477,39.91839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,183],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.539,"geometry_index":2551,"location":[-7.476987,39.918563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,186],"duration":36.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":33.855,"geometry_index":2552,"location":[-7.476925,39.918998]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,210],"duration":189.798,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":170.818,"geometry_index":2564,"location":[-7.469268,39.927351]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,357],"duration":18.407,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":16.566,"geometry_index":2581,"location":[-7.458987,39.979191]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[1,173,353],"duration":8.396,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":2,"weight":7.55,"geometry_index":2583,"location":[-7.459329,39.984464]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":1.358,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.223,"geometry_index":2586,"location":[-7.459754,39.986723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,349],"duration":9.622,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.659,"geometry_index":2587,"location":[-7.459831,39.987073]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.460518,39.989657],"geometry_index":2589,"admin_index":0,"weight":115.76,"is_urban":false,"turn_weight":0.5,"duration":128.073,"bearings":[160,168,348],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.46653,40.025701],"geometry_index":2608,"admin_index":0,"weight":30.911,"is_urban":false,"turn_weight":15,"duration":17.686,"bearings":[165,345,355],"out":1,"in":0,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":10.325,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.286,"geometry_index":2612,"location":[-7.467951,40.030519]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,352],"duration":13.179,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":11.86,"geometry_index":2614,"location":[-7.468484,40.033375]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":0.96,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.864,"geometry_index":2616,"location":[-7.469081,40.037025]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":30.274,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":27.247,"geometry_index":2617,"location":[-7.46912,40.037271]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,333],"duration":1.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.346,"geometry_index":2623,"location":[-7.471227,40.044997]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,331],"duration":110.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":96.66,"geometry_index":2624,"location":[-7.471442,40.045324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,190],"duration":6.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.924,"geometry_index":2641,"location":[-7.481701,40.072762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,212],"duration":5.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.811,"geometry_index":2644,"location":[-7.480792,40.074216]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,218],"duration":7.615,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.026,"geometry_index":2645,"location":[-7.479731,40.075256]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[34,210,217],"duration":0.517,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.457,"geometry_index":2646,"location":[-7.478224,40.076759]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,214],"duration":2.808,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.598,"geometry_index":2647,"location":[-7.478131,40.076863]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,218],"duration":67.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":61.989,"geometry_index":2648,"location":[-7.47757,40.077421]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[127,307],"duration":14.017,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.615,"geometry_index":2674,"location":[-7.471868,40.087974]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,345],"duration":11.245,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":10.12,"geometry_index":2683,"location":[-7.474605,40.09043]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,200],"duration":2.8,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.512,"geometry_index":2692,"location":[-7.474513,40.092881]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,209],"duration":12.835,"turn_duration":0.013,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.54,"geometry_index":2695,"location":[-7.474166,40.093436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,215],"duration":2.695,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.402,"geometry_index":2700,"location":[-7.471786,40.095623]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,208],"duration":1.725,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.529,"geometry_index":2702,"location":[-7.471412,40.096145]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[20,201],"duration":13.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.922,"geometry_index":2704,"location":[-7.471233,40.096493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,196],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.225,"geometry_index":2706,"location":[-7.470205,40.098945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":1.915,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.718,"geometry_index":2708,"location":[-7.470068,40.099444]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,190],"duration":7.831,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.026,"geometry_index":2709,"location":[-7.469976,40.09983]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,186],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.32,"geometry_index":2711,"location":[-7.469748,40.10144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,189],"duration":2.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.554,"geometry_index":2712,"location":[-7.469553,40.102436]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,191],"duration":1.66,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.528,"geometry_index":2713,"location":[-7.469405,40.10303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,193],"duration":0.727,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.666,"geometry_index":2714,"location":[-7.469302,40.103375]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[5,192],"duration":68.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":63.27,"geometry_index":2716,"location":[-7.46926,40.103525]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[158,331],"duration":50.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":47.504,"geometry_index":2723,"location":[-7.475262,40.117107]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[162,345],"duration":1.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.17,"geometry_index":2735,"location":[-7.479541,40.128996]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[165,345],"duration":9.476,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.238,"geometry_index":2736,"location":[-7.479651,40.1293]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[176,360],"duration":1.482,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":1.445,"geometry_index":2739,"location":[-7.480184,40.131766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[3,180],"duration":12.974,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.649,"geometry_index":2740,"location":[-7.480188,40.132143]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,187],"duration":0.72,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.702,"geometry_index":2744,"location":[-7.479802,40.13556]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":1.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.239,"geometry_index":2745,"location":[-7.479764,40.135737]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[12,15,190],"duration":8.515,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.293,"geometry_index":2746,"location":[-7.479691,40.136054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,194],"duration":1.337,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.304,"geometry_index":2749,"location":[-7.479038,40.138164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,195],"duration":5.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.827,"geometry_index":2750,"location":[-7.478921,40.138507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,193],"duration":132.863,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":126.195,"geometry_index":2751,"location":[-7.478464,40.139999]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.48229,40.174633],"geometry_index":2778,"admin_index":0,"weight":21.789,"is_urban":false,"turn_weight":15,"duration":7.359,"bearings":[20,30,202],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.481454,40.17641],"geometry_index":2780,"admin_index":0,"weight":10.831,"is_urban":false,"turn_weight":1,"duration":10.649,"bearings":[19,189,200],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,191],"duration":16.046,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.843,"geometry_index":2783,"location":[-7.480496,40.179088]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,349],"duration":0.788,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":0.729,"geometry_index":2788,"location":[-7.480685,40.18326]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,348],"duration":9.413,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":8.707,"geometry_index":2789,"location":[-7.480739,40.183463]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,331],"duration":9.815,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":9.079,"geometry_index":2792,"location":[-7.481965,40.185837]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[142,321],"duration":7.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.076,"geometry_index":2797,"location":[-7.483861,40.187992]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[136,311,327],"duration":13.112,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":12.104,"geometry_index":2800,"location":[-7.485596,40.189473]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.488864,40.191775],"geometry_index":2802,"admin_index":0,"weight":33.739,"is_urban":false,"turn_weight":1,"duration":36.386,"bearings":[130,138,322],"out":2,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,207],"duration":1.212,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.091,"geometry_index":2815,"location":[-7.488435,40.200616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,198],"duration":1.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.028,"geometry_index":2816,"location":[-7.488312,40.200902]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,198],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.106,"geometry_index":2817,"location":[-7.488191,40.201186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,198],"duration":85.313,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":76.782,"geometry_index":2819,"location":[-7.487954,40.201739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,191],"duration":6.784,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.275,"geometry_index":2840,"location":[-7.491463,40.223433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,200],"duration":7.093,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.562,"geometry_index":2846,"location":[-7.490782,40.225114]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[30,35,207],"duration":11.882,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.982,"geometry_index":2850,"location":[-7.489794,40.226738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.487527,40.229281],"geometry_index":2857,"admin_index":0,"weight":2.633,"is_urban":false,"turn_weight":1,"duration":1.773,"bearings":[38,210,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,218],"duration":2.651,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.452,"geometry_index":2858,"location":[-7.487162,40.229635]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,217],"duration":22.614,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":20.919,"geometry_index":2859,"location":[-7.486588,40.230216]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":2.058,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.903,"geometry_index":2865,"location":[-7.483142,40.235804]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":2.683,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.481,"geometry_index":2866,"location":[-7.482929,40.236315]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":11.61,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.74,"geometry_index":2867,"location":[-7.482647,40.236993]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":61.296,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":55.166,"geometry_index":2871,"location":[-7.480717,40.239831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,242],"duration":8.411,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.569,"geometry_index":2884,"location":[-7.460351,40.246551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,240],"duration":36.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":32.921,"geometry_index":2885,"location":[-7.457737,40.247707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":1.896,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.707,"geometry_index":2893,"location":[-7.447959,40.254627]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":28.607,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":25.746,"geometry_index":2894,"location":[-7.44751,40.25503]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[40,52,219],"duration":8.419,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.56,"geometry_index":2896,"location":[-7.440845,40.261194]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.438863,40.262874],"geometry_index":2898,"admin_index":0,"weight":1.911,"is_urban":false,"turn_weight":0.5,"duration":1.578,"bearings":[49,215,224],"out":0,"in":2,"turn_duration":0.01,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,229],"duration":32.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":28.321,"geometry_index":2899,"location":[-7.438473,40.263137]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":11.487,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.052,"geometry_index":2903,"location":[-7.428536,40.267689]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":160.35,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":140.307,"geometry_index":2904,"location":[-7.424825,40.269077]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":5.899,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.31,"geometry_index":2927,"location":[-7.381966,40.3019]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[173,353],"duration":57.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":51.894,"geometry_index":2930,"location":[-7.382145,40.303644]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.376976,40.319175],"geometry_index":2945,"admin_index":0,"weight":22.788,"is_urban":false,"turn_weight":15,"duration":8.66,"bearings":[57,62,235],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,250],"duration":1.782,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.604,"geometry_index":2948,"location":[-7.374219,40.320222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":8.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.71,"geometry_index":2949,"location":[-7.373678,40.320384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,249],"duration":7.854,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.049,"geometry_index":2951,"location":[-7.370846,40.321192]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,243],"duration":51.348,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":46.213,"geometry_index":2954,"location":[-7.368209,40.322151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":0.663,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.597,"geometry_index":2958,"location":[-7.35259,40.330497]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,229],"duration":41.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":37.487,"geometry_index":2959,"location":[-7.352405,40.330619]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,236],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.364,"geometry_index":2963,"location":[-7.339636,40.337374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,237],"duration":110.116,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":99.104,"geometry_index":2964,"location":[-7.339167,40.33761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,205],"duration":0.542,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.487,"geometry_index":2990,"location":[-7.320417,40.363222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,202],"duration":43.661,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":39.295,"geometry_index":2991,"location":[-7.320342,40.363365]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":9.724,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":8.745,"geometry_index":2998,"location":[-7.314487,40.375296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,206],"duration":16.491,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.836,"geometry_index":3000,"location":[-7.312957,40.377776]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":30.758,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":27.682,"geometry_index":3003,"location":[-7.310019,40.3819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,182],"duration":8.22,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.397,"geometry_index":3009,"location":[-7.306601,40.390068]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,189],"duration":146.675,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":132.008,"geometry_index":3012,"location":[-7.306335,40.392373]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,187],"duration":13.837,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.453,"geometry_index":3054,"location":[-7.281235,40.425793]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":38.937,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":35.043,"geometry_index":3060,"location":[-7.28087,40.429737]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,210],"duration":13.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.985,"geometry_index":3075,"location":[-7.271374,40.437782]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,195],"duration":10.64,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.575,"geometry_index":3078,"location":[-7.269819,40.441328]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[24,30,199],"duration":15.01,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.5,"geometry_index":3080,"location":[-7.268667,40.44417]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.266208,40.44824],"geometry_index":3088,"admin_index":0,"weight":58.024,"is_urban":false,"turn_weight":1,"duration":63.384,"bearings":[15,193,198],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,180],"duration":1.79,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.604,"geometry_index":3112,"location":[-7.261208,40.464133]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,359],"duration":29.973,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":26.969,"geometry_index":3114,"location":[-7.261214,40.464604]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[26,205],"duration":13.187,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.868,"geometry_index":3141,"location":[-7.259451,40.472256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,206],"duration":7.936,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.142,"geometry_index":3142,"location":[-7.257749,40.47488]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,200],"duration":7.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.89,"geometry_index":3148,"location":[-7.256858,40.476593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":3.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.45,"geometry_index":3154,"location":[-7.256223,40.478345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,193],"duration":1.874,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.68,"geometry_index":3155,"location":[-7.255924,40.479353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":94.707,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":85.23,"geometry_index":3157,"location":[-7.255767,40.47984]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,205],"duration":0.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.519,"geometry_index":3186,"location":[-7.241167,40.502529]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":4.218,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.796,"geometry_index":3187,"location":[-7.241081,40.502652]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,216],"duration":2.009,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.8,"geometry_index":3191,"location":[-7.240351,40.503531]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,221],"duration":3.172,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.848,"geometry_index":3194,"location":[-7.239939,40.503914]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,225],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.149,"geometry_index":3197,"location":[-7.239223,40.504474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.691,"geometry_index":3198,"location":[-7.238941,40.504675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":2.064,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.841,"geometry_index":3199,"location":[-7.238779,40.504791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":1.125,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.994,"geometry_index":3201,"location":[-7.238346,40.505094]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[47,227],"duration":14.2,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.78,"geometry_index":3202,"location":[-7.238111,40.505258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,203],"duration":6.202,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.737,"geometry_index":3207,"location":[-7.235702,40.507814]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,197],"duration":2.744,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.539,"geometry_index":3213,"location":[-7.234976,40.509277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":2.074,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.912,"geometry_index":3215,"location":[-7.234751,40.509948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,193],"duration":16.153,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.936,"geometry_index":3217,"location":[-7.234594,40.510457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,197],"duration":15.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":14.584,"geometry_index":3223,"location":[-7.233198,40.514388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,201],"duration":17.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.928,"geometry_index":3229,"location":[-7.231412,40.518414]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[44,53,225],"duration":16.854,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.571,"geometry_index":3236,"location":[-7.227881,40.522038]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.223942,40.525279],"geometry_index":3242,"admin_index":0,"weight":6.406,"is_urban":false,"turn_weight":0.5,"duration":6.409,"bearings":[38,207,222],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,218],"duration":2.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.646,"geometry_index":3243,"location":[-7.222565,40.52661]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":8.311,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.687,"geometry_index":3244,"location":[-7.221977,40.52723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":44.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":41.53,"geometry_index":3245,"location":[-7.220267,40.529031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,189],"duration":7.506,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.755,"geometry_index":3255,"location":[-7.216936,40.540388]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":12.694,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.419,"geometry_index":3257,"location":[-7.216348,40.542321]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[183,359],"duration":8.622,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"weight":7.738,"geometry_index":3262,"location":[-7.215658,40.54553]},{"bearings":[165,344],"entry":[false,true],"classes":["motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":1,"geometry_index":3265,"location":[-7.216069,40.547708]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 95 miles.","announcement":"Continue for 95 miles.","distanceAlongGeometry":152246.281},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 80.","announcement":"In 2 miles, Keep left to stay on E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":226.667}],"intersections":[{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-7.216971,40.56003],"geometry_index":3281,"admin_index":0,"weight":25.151,"is_urban":false,"turn_weight":15,"duration":10.997,"bearings":[167,345,358],"out":1,"in":0,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[false,false,true],"classes":["toll","motorway"],"in":1,"bearings":[153,172,355],"duration":5.608,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":2,"weight":5.18,"geometry_index":3286,"location":[-7.217886,40.562761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,180],"duration":2.4,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":2.22,"geometry_index":3288,"location":[-7.217963,40.564141]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,185],"duration":3.024,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":2.797,"geometry_index":3289,"location":[-7.2179,40.564731]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,189],"duration":25.992,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":0,"out":0,"weight":23.393,"geometry_index":3290,"location":[-7.217749,40.565477]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-7.212698,40.57051],"geometry_index":3298,"admin_index":0,"weight":13.808,"is_urban":false,"turn_weight":11,"duration":3.139,"bearings":[51,218,232],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":21.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":19.467,"geometry_index":3299,"location":[-7.211738,40.571099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,262],"duration":40.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":36.747,"geometry_index":3305,"location":[-7.20385,40.573183]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,258],"duration":1.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.462,"geometry_index":3316,"location":[-7.188634,40.576588]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":314.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":283.122,"geometry_index":3317,"location":[-7.18804,40.576674]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":14.07,"toll_collection":{"name":"Pórtico do Nó Pinhel / Pínzio","type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":12.663,"geometry_index":3380,"location":[-7.075488,40.605395]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,277],"duration":6.378,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.723,"geometry_index":3384,"location":[-7.069967,40.605065]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":1.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.173,"geometry_index":3385,"location":[-7.067746,40.604874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":5.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.966,"geometry_index":3386,"location":[-7.067303,40.604839]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[96,265,276],"duration":5.678,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.104,"geometry_index":3387,"location":[-7.065369,40.604673]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,276],"duration":81.972,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":71.726,"geometry_index":3388,"location":[-7.063273,40.604496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":6.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.102,"geometry_index":3399,"location":[-7.033228,40.604495]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":3.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":2.684,"geometry_index":3400,"location":[-7.030702,40.604248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":81.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":71.546,"geometry_index":3401,"location":[-7.029622,40.604154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,278],"duration":50,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":45,"geometry_index":3424,"location":[-7.002751,40.610426]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.985362,40.60776],"geometry_index":3428,"admin_index":0,"weight":29.504,"is_urban":false,"turn_weight":15,"duration":16.123,"bearings":[100,108,280],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.979804,40.606944],"geometry_index":3433,"admin_index":0,"weight":8.21,"is_urban":false,"turn_weight":0.5,"duration":8.575,"bearings":[105,275,283],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,287],"duration":48.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":42.088,"geometry_index":3435,"location":[-6.976887,40.606292]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,267],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":5.25,"geometry_index":3441,"location":[-6.960241,40.604228]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,269],"duration":8.767,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":7.671,"geometry_index":3443,"location":[-6.958114,40.60428]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.954997,40.604291],"geometry_index":3444,"admin_index":0,"weight":10.304,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.782,"bearings":[90,108,270],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.950854,40.604276],"geometry_index":3445,"admin_index":0,"weight":10.82,"is_urban":false,"turn_weight":1,"duration":11.231,"bearings":[91,252,270],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,267],"duration":1.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":0.913,"geometry_index":3447,"location":[-6.947095,40.604277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,264],"duration":33.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":29.304,"geometry_index":3448,"location":[-6.946734,40.604308]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,269],"duration":36.099,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":31.586,"geometry_index":3459,"location":[-6.935569,40.607135]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,246],"duration":19.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":17.411,"geometry_index":3466,"location":[-6.923414,40.610018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":3.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.268,"geometry_index":3469,"location":[-6.916388,40.61115]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":3.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3.209,"geometry_index":3470,"location":[-6.915099,40.611333]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,259],"duration":53.083,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":46.447,"geometry_index":3471,"location":[-6.913833,40.611521]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,269],"duration":7.573,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.627,"geometry_index":3483,"location":[-6.895859,40.613224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":13.075,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":11.441,"geometry_index":3486,"location":[-6.893251,40.612932]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,260],"duration":1.683,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":1.472,"geometry_index":3490,"location":[-6.88875,40.612728]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,257],"duration":60.63,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":53.051,"geometry_index":3491,"location":[-6.888176,40.612825]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":15.63,"toll_collection":{"type":"toll_gantry"},"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.676,"geometry_index":3500,"location":[-6.86502,40.616705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,262],"duration":32.19,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":28.971,"geometry_index":3501,"location":[-6.858913,40.617327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":4.8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":4.44,"geometry_index":3504,"location":[-6.846344,40.618669]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[86,94,266],"duration":15.007,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":13.875,"geometry_index":3506,"location":[-6.844457,40.618786]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.839138,40.618635],"geometry_index":3516,"admin_index":0,"weight":8.765,"is_urban":false,"turn_weight":0.5,"duration":8.708,"bearings":[98,267,278],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":6.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.144,"geometry_index":3519,"location":[-6.836092,40.618234]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[110,286],"duration":11.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":10.542,"geometry_index":3522,"location":[-6.833874,40.61779]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[112,290],"duration":16.049,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":15.246,"geometry_index":3523,"location":[-6.830136,40.616753]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,292],"duration":9.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":9.333,"geometry_index":3524,"location":[-6.824906,40.615142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[112,294],"duration":6.88,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":6.518,"geometry_index":3526,"location":[-6.821722,40.614117]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,303],"duration":3.711,"turn_weight":3775.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":0,"out":0,"weight":3779.08,"geometry_index":3530,"location":[-6.819647,40.613223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,309],"duration":1.341,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.274,"geometry_index":3532,"location":[-6.818721,40.612664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,310],"duration":8.982,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.533,"geometry_index":3533,"location":[-6.818379,40.612443]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,323],"duration":9.701,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.208,"geometry_index":3536,"location":[-6.816364,40.610722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[159,336],"duration":3.323,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.157,"geometry_index":3539,"location":[-6.814775,40.608524]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,341],"duration":36.034,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.332,"geometry_index":3541,"location":[-6.814389,40.607714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[145,325],"duration":2.665,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.466,"geometry_index":3554,"location":[-6.810757,40.598886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[140,320],"duration":2.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.144,"geometry_index":3556,"location":[-6.810216,40.59833]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[138,320],"duration":10.171,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.153,"geometry_index":3557,"location":[-6.809727,40.597885]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,310],"duration":3.243,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.919,"geometry_index":3560,"location":[-6.80723,40.596087]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,304],"duration":0.072,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.064,"geometry_index":3561,"location":[-6.806339,40.595624]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[123,303],"duration":14.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.022,"geometry_index":3562,"location":[-6.806321,40.595615]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[101,106,287],"duration":0.308,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.252,"geometry_index":3567,"location":[-6.801832,40.594067]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[101,281],"duration":28.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.543,"geometry_index":3568,"location":[-6.801741,40.594053]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.792205,40.593297],"geometry_index":3578,"admin_index":1,"weight":11.89,"is_urban":false,"turn_weight":0.75,"duration":12.385,"bearings":[101,275,280],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[112,289],"duration":33.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.4,"geometry_index":3584,"location":[-6.788108,40.592408]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,293],"duration":2.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.89,"geometry_index":3595,"location":[-6.778014,40.588124]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,293],"duration":15.239,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.334,"geometry_index":3596,"location":[-6.777327,40.587905]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,271],"duration":0.634,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.554,"geometry_index":3602,"location":[-6.772247,40.587342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,270],"duration":8.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.536,"geometry_index":3603,"location":[-6.772023,40.587342]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":163.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":143.457,"geometry_index":3604,"location":[-6.768996,40.587383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,272],"duration":4.744,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.151,"geometry_index":3636,"location":[-6.71154,40.590288]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-6.709882,40.590197],"geometry_index":3638,"admin_index":1,"weight":11.864,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.578,"bearings":[95,274],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,262],"duration":1.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.225,"geometry_index":3643,"location":[-6.705136,40.590222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,258],"duration":11.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.741,"geometry_index":3644,"location":[-6.704652,40.5903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":6.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.25,"geometry_index":3649,"location":[-6.700985,40.59139]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,244],"duration":76.86,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":67.253,"geometry_index":3651,"location":[-6.698875,40.592194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,265],"duration":3.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.471,"geometry_index":3678,"location":[-6.669228,40.590154]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,263],"duration":44.626,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.049,"geometry_index":3679,"location":[-6.667832,40.590275]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,260],"duration":11.562,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.109,"geometry_index":3685,"location":[-6.652507,40.59227]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,260],"duration":1.808,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.574,"geometry_index":3686,"location":[-6.648579,40.592801]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":94.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":83.037,"geometry_index":3687,"location":[-6.647985,40.592873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,299],"duration":1.405,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.23,"geometry_index":3710,"location":[-6.614754,40.593541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,298],"duration":128.13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":112.113,"geometry_index":3711,"location":[-6.614325,40.593365]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,287],"duration":22.899,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.021,"geometry_index":3742,"location":[-6.569179,40.577783]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":58.999,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.082,"geometry_index":3753,"location":[-6.56152,40.577937]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,247],"duration":0.747,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.691,"geometry_index":3764,"location":[-6.539572,40.583765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":46.834,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":44.492,"geometry_index":3765,"location":[-6.539339,40.583851]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,234],"duration":1.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.602,"geometry_index":3774,"location":[-6.525509,40.590185]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":10.114,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.861,"geometry_index":3775,"location":[-6.525077,40.590448]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":7.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.662,"geometry_index":3777,"location":[-6.522436,40.592186]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":19.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.566,"geometry_index":3778,"location":[-6.520427,40.593543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,217],"duration":23.708,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.502,"geometry_index":3785,"location":[-6.515557,40.597061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":27.822,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.424,"geometry_index":3797,"location":[-6.513063,40.603026]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[174,354,358],"duration":1.289,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.205,"geometry_index":3807,"location":[-6.513524,40.610355]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":29.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":27.307,"geometry_index":3808,"location":[-6.513569,40.610683]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.511697,40.618059],"geometry_index":3824,"admin_index":1,"weight":26.213,"is_urban":false,"turn_weight":0.75,"duration":29.107,"bearings":[34,204,213],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,242],"duration":0.733,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.643,"geometry_index":3839,"location":[-6.503127,40.6237]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":96.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":84.408,"geometry_index":3840,"location":[-6.502892,40.62379]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[50,63,230],"duration":32.578,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.498,"geometry_index":3883,"location":[-6.477413,40.638899]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.468667,40.644392],"geometry_index":3888,"admin_index":1,"weight":104.42,"is_urban":false,"turn_weight":1,"duration":118.202,"bearings":[54,227,232],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":30.919,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.037,"geometry_index":3939,"location":[-6.436821,40.66327]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,204],"duration":32.914,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.783,"geometry_index":3945,"location":[-6.431416,40.670507]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,194],"duration":2.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.049,"geometry_index":3955,"location":[-6.42822,40.679103]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,196],"duration":60.778,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.182,"geometry_index":3956,"location":[-6.428003,40.679685]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":31.307,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.158,"geometry_index":3971,"location":[-6.417163,40.694286]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,254],"duration":2.651,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.379,"geometry_index":3987,"location":[-6.407756,40.698809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,257],"duration":2.213,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.992,"geometry_index":3988,"location":[-6.406829,40.69897]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":55.864,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":50.277,"geometry_index":3989,"location":[-6.406049,40.699095]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":27.128,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.408,"geometry_index":4008,"location":[-6.391829,40.708707]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,208],"duration":58.388,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":51.082,"geometry_index":4013,"location":[-6.387687,40.716193]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,226],"duration":0.866,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.758,"geometry_index":4022,"location":[-6.372587,40.727581]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,228],"duration":98.679,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":86.344,"geometry_index":4023,"location":[-6.372361,40.727737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,247],"duration":2.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.479,"geometry_index":4036,"location":[-6.345354,40.746081]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,250],"duration":7.7,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.738,"geometry_index":4037,"location":[-6.344402,40.746339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":2.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.443,"geometry_index":4039,"location":[-6.341765,40.746886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,254],"duration":18.667,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.334,"geometry_index":4040,"location":[-6.340818,40.74709]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,231],"duration":4.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.004,"geometry_index":4048,"location":[-6.33508,40.749542]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,228],"duration":99.39,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":86.967,"geometry_index":4049,"location":[-6.333871,40.750353]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":0.528,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.463,"geometry_index":4064,"location":[-6.302269,40.76798]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,247],"duration":31.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.367,"geometry_index":4065,"location":[-6.302094,40.768037]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":32.188,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.951,"geometry_index":4075,"location":[-6.291186,40.770007]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":108.778,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":97.883,"geometry_index":4088,"location":[-6.280707,40.773591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,242],"duration":16.522,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.85,"geometry_index":4115,"location":[-6.244972,40.784871]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,241],"duration":0.958,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.861,"geometry_index":4119,"location":[-6.239875,40.78708]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":13.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.09,"geometry_index":4120,"location":[-6.239575,40.787203]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,247],"duration":235.143,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":205.742,"geometry_index":4125,"location":[-6.235253,40.788744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,274],"duration":1.833,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.604,"geometry_index":4181,"location":[-6.15815,40.808906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":9.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.312,"geometry_index":4182,"location":[-6.157498,40.808874]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[89,93,272],"duration":28.372,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.807,"geometry_index":4184,"location":[-6.154117,40.808744]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-6.143286,40.810654],"geometry_index":4195,"admin_index":1,"weight":53.803,"is_urban":false,"turn_weight":1,"duration":60.365,"bearings":[65,238,246],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":25.065,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.914,"geometry_index":4208,"location":[-6.122254,40.81853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":46.725,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.867,"geometry_index":4213,"location":[-6.114498,40.822777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.748,"geometry_index":4217,"location":[-6.100466,40.830758]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":125.28,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":109.619,"geometry_index":4218,"location":[-6.100201,40.830903]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":18.102,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.285,"geometry_index":4241,"location":[-6.056081,40.847419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,244],"duration":0.708,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.637,"geometry_index":4250,"location":[-6.049539,40.848588]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,240],"duration":15.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.619,"geometry_index":4251,"location":[-6.049307,40.84869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":113.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":99.545,"geometry_index":4258,"location":[-6.045149,40.851539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":0.626,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.547,"geometry_index":4275,"location":[-6.007275,40.865736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":43.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":38.373,"geometry_index":4276,"location":[-6.007059,40.865812]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,245],"duration":0.838,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.754,"geometry_index":4279,"location":[-5.992651,40.870934]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,244],"duration":19.768,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.791,"geometry_index":4280,"location":[-5.992365,40.871038]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,245],"duration":30.351,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.297,"geometry_index":4281,"location":[-5.985753,40.873385]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":211.615,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":185.146,"geometry_index":4288,"location":[-5.975409,40.877991]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.787,"geometry_index":4307,"location":[-5.903661,40.901365]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":46.638,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":40.809,"geometry_index":4308,"location":[-5.903358,40.901459]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,256],"duration":9.196,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.271,"geometry_index":4317,"location":[-5.887462,40.906172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,268],"duration":9.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.566,"geometry_index":4322,"location":[-5.884049,40.906554]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":9.442,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.262,"geometry_index":4325,"location":[-5.88036,40.906535]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,261],"duration":6.632,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.803,"geometry_index":4330,"location":[-5.876814,40.906686]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,255],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.369,"geometry_index":4333,"location":[-5.874374,40.907089]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,251],"duration":39.409,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.482,"geometry_index":4334,"location":[-5.874224,40.907127]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,222],"duration":1.222,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.068,"geometry_index":4349,"location":[-5.862741,40.913747]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,224],"duration":4.876,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.268,"geometry_index":4350,"location":[-5.862431,40.913986]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,228],"duration":10.571,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.25,"geometry_index":4352,"location":[-5.861127,40.91489]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.857944,40.916509],"geometry_index":4357,"admin_index":1,"weight":152.266,"is_urban":false,"turn_weight":0.75,"duration":173.167,"bearings":[61,235,241],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":0.42,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.379,"geometry_index":4379,"location":[-5.794368,40.935797]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[79,84,258],"duration":25.615,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.406,"geometry_index":4380,"location":[-5.794206,40.935823]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,275],"duration":0.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.297,"geometry_index":4391,"location":[-5.785299,40.935616]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.785186,40.935609],"geometry_index":4392,"admin_index":1,"weight":6.545,"is_urban":false,"turn_weight":0.75,"duration":6.645,"bearings":[92,270,275],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,266],"duration":1.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.242,"geometry_index":4395,"location":[-5.782869,40.935649]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,262],"duration":38.726,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.885,"geometry_index":4396,"location":[-5.782384,40.935698]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":1.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.992,"geometry_index":4410,"location":[-5.771502,40.941387]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":2.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.355,"geometry_index":4411,"location":[-5.771269,40.94164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":0.958,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.838,"geometry_index":4412,"location":[-5.770739,40.942204]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":126.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":113.906,"geometry_index":4413,"location":[-5.770539,40.942418]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,245],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.475,"geometry_index":4467,"location":[-5.730671,40.95551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,249],"duration":34.419,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.697,"geometry_index":4468,"location":[-5.73051,40.955557]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[99,277],"duration":1.337,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.236,"geometry_index":4479,"location":[-5.718636,40.956832]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,279],"duration":9.741,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.01,"geometry_index":4480,"location":[-5.718174,40.956774]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[106,114,286],"duration":9.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.766,"geometry_index":4483,"location":[-5.714999,40.956164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,271],"duration":8.947,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.5,"geometry_index":4488,"location":[-5.711917,40.955762]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,252],"duration":1.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.266,"geometry_index":4494,"location":[-5.708935,40.956172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,248],"duration":15.435,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.664,"geometry_index":4495,"location":[-5.708528,40.956294]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.705356,40.958192],"geometry_index":4500,"admin_index":1,"weight":1.496,"is_urban":false,"turn_weight":0.75,"duration":0.809,"bearings":[38,215,223],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":8.718,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.281,"geometry_index":4501,"location":[-5.705234,40.958311]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,220],"duration":3.134,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.057,"geometry_index":4502,"location":[-5.703699,40.959697]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[34,39,218],"duration":11.584,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.271,"geometry_index":4503,"location":[-5.703165,40.960221]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,209],"duration":1.174,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.145,"geometry_index":4506,"location":[-5.701354,40.962429]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":17.157,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.729,"geometry_index":4507,"location":[-5.701198,40.962668]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.699282,40.966422],"geometry_index":4512,"admin_index":1,"weight":12.023,"is_urban":false,"turn_weight":0.5,"duration":11.826,"bearings":[21,196,200],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":47.14,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":45.961,"geometry_index":4518,"location":[-5.697462,40.969223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":0.917,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.916,"geometry_index":4529,"location":[-5.689963,40.980285]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":6.327,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.17,"geometry_index":4530,"location":[-5.689846,40.980507]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[-5.689028,40.981946],"geometry_index":4532,"admin_index":1,"weight":13.838,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.199,"bearings":[26,30,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.686403,40.985033],"geometry_index":4537,"admin_index":1,"weight":19.104,"is_urban":false,"turn_weight":1,"duration":18.112,"bearings":[44,214,221],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[43,224],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":4543,"location":[-5.681931,40.988303]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":152286.281},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":3218.688}],"destinations":"Vilar Formoso","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take E 80 toward Vilar Formoso.","modifier":"slight left","bearing_after":345,"bearing_before":347,"location":[-7.216971,40.56003]},"speedLimitSign":"vienna","name":"","weight_typical":4431.441,"duration_typical":4923.897,"duration":4923.897,"distance":152286.281,"driving_side":"right","weight":8207.003,"mode":"driving","ref":"E 80","geometry":"{xqjlAtsnwLeV`Gc^bJih@hNax@fR_QlByk@zCmh@A{c@}Bsm@mHsz@yV}h@qWga@qXuTwQk`@gb@q_@qg@m\\}j@u|@gfByc@_{@ek@_gAwT_q@qRex@cNs_AsFef@_U_qEcb@amJcEcz@{Hc|@wL{w@yRo{@oXow@eXat@kZqv@cUmz@eQe_AwHqy@kDcd@ee@wkGwJ_|@}M_{@oPor@eT_v@aj@alBe]wpA_Ryz@uKmx@iHsy@odBo~\\a@yHkHky@sMqy@sQar@gWst@kYwm@ukIo}N_c@}p@}a@gn@}{BuoDe\\mo@oYom@}Wso@qVyx@gRm}@oSe_AqWedAwYcs@q_@ip@s_@{c@w_@y_@scBuzAsd@wg@g_@uj@}[wq@wUyw@cQq~@gIg_AmCscAmGepRcC{}@mEs`AkIk`AgHuu@{lAu|IwGqv@kCey@^}`AtEiaApaA_iKvHg|@rEg_An@a{@gAacAsJknAgQ_dAaPqx@}xDg}P_Lks@{H_w@kF}}@y@o_@k@ka@h@q}@fDugAlNmnD|JyiCdAuZjI{wB`J_bCfpA}c[bBi_A`Ayy@}Cq`A_Jsx@}jAu~IwEev@wDqw@O{w@rB{w@zMkxClN{|CzDobApFwqA^{bAiCa_AyF}gAmHmlAsI{nAmM_aBaHuaAoIg_AyN}s@{Qcr@mWas@oZes@qYqp@iwCy{GeY_t@aQ{s@}Oc|@kHmu@_D_}@_Ao|@hBe`AjDws@t`BepPzP_cCfFmt@xj@esI`IajAvFkcAzFg|@|I}}@jMwnApJov@d\\y}BvkByhMhLa{@jHy~@nEmcAhAmkAgJyxH{A_iBK}YUyaE\\}aG|@uzD_Agn@}@qUqAuUsEwg@oJ{r@gNyp@eViu@oaA_mCqTev@aOm{@}Fwy@sBe|@{@ycBxAkjDg@u_AqDcx@}Lqv@_Lyk@q_CwpHuSk{@sImk@wHyk@kq@{|ImJqoAwJcnAyEeeAg@u_ApY}}Jc@ueAyCww@iMy|@_Neq@os@kkCcP_t@wLabAsDmaAUgf@XkZ`Fm_AjIefAxPstB|@_w@c@k~@{Dik@aE{b@aMyz@yMol@gl@_sBsV_w@kPat@gK{p@gJay@k_AexRof@wvJ{e@u|Jij@okJq[stG_KmnCqBer@wBwaAm@oY[_e@Kqh@X{c@ZoWv@mi@x@{f@dAa^pBqi@b@aHlGesAjFkt@fHys@lFwh@vFoe@pKky@x_AshFtcB{eInj@ciCpS{{@lEoStKu^nO{b@fSsh@jJ}RpV}d@xLkTde@kr@dc@}h@d`@s_@`u@gm@r_@_Wtq@a\\x[gMxT{HfHeCd`@gLnp@wLno@}IlmAeNtu@}Kz[iFtZsGnw@{Vjm@kW~t@_d@pf@o_@dXaVdVcTpJuKxZq]tf@sn@lf@kv@f`@at@|[uv@Pc@hDgIdVus@zT{v@z[{vAnP{hAZuDdKgoA~C{j@tD}zAlAmfB~BurAd@{XdCu|@nBcd@vBkZhDwg@pFqp@jG{g@`Le{@hKcq@`Lkr@d@}BbMom@jNcn@lR_s@tUiv@``@ueApYar@p_@{}@rS{h@jc@{iAn^aoAlNoo@tL}i@|Ei[pIkr@vHocAnCgv@jA_e@`@akA?_MqAe|D_B{tDkAeoD_AskCcA}_Cw@i}Bu@scCq@gqA_@cpA]_lAs@qmAu@wlBqAoeAcBahA}Bc~@{C}dAwNg_D_MafCiSaeEgNkoCkRm{DwHueBcCmp@mByq@i@aLmEstBuFchC}NarGoJ_nE}A{_Ac@ix@Bkk@n@qt@zBygAx@y]rDmzAn@kl@Kyu@qAor@wDot@{Cg]aF_d@wGgc@oNou@_P_q@yRmr@}Z}eAiU}{@{N}n@wHia@}Fs_@{Gmk@gEmd@yCil@mBiq@M}r@`Byx@~Bgd@jEao@jIex@~T}dBfXmsBv^mqCn\\cmCdKg~@vKqgAlJwoATwCfHgnAdGa~ApCirAdAueBi@miA_BgnAkCaaAqFgvAgKwiBoMorBaf@_dHaMukBsOyuBe[avEe`@otFoCcd@yo@klJm^aoFsNs`CkE_bA{Bgn@oBss@gEwiBcAa}A[k~A~@y|DnAqfEl@kiBTkj@|A_n@|@q^vCec@rC{]rCeZ~Eu^bHq`@pLuk@~L{d@|FaR~IyYtw@q_CxiAkgDrPse@lJcTnZmq@`Vma@zQ}XnNuQv[i_@vYc\\|\\y^bYk[|Ym^zYmb@pUi_@~Uoe@tRqc@zQwf@dLy`@lLce@lKye@jKwk@tl@mdEto@wqE`cBulLp@yEpz@_aG|y@a|F|v@uqFb[awBz[y|BlNegA|Ci^~Bud@zAsh@d@uj@}@ao@yCws@oB}Y_DuZwH{m@aL{p@ik@ajDu`@y`Cqn@sqDc@cCal@mlDk_AcsFe|@ckFm[gjB_Lsl@yM{o@uIu_@kDqMeMoe@oRsn@gRcn@sj@{}AyaBsvEkyByhGqb@ikA_T}f@qTqe@mO_ZuMeW}|A{kCysAq|BiaAmbBk_Ac`B}Rg[cR_YoMiO{M_PwSgSeLwJkXsSca@sVkTiKch@eScb@aMmp@sQwa@}HqYsEy`@cGi\\_Es[_Cc[sB}`@iBs`@c@cZ[sVPk[l@mVv@}x@`FmaBdLmfBvLoSxAk^hCw}@rGa[hB}YXsZK_UeAuZgC__@kFc\\uHaUoGqS_IsPyGeU{KyQuKgh@_^}]iYe[cXm_@__@aXsYyXo\\{ToYgXa`@yWaa@iW}b@yT{a@cP}\\wPq^mXip@iOeb@aO_d@i]}iAsDuM{Tuw@sSeo@kPqb@gMmY_Rq\\iVc^qWyZkUaTwSkQcUuNy[kQ{e@mRib@mNcw@gUeXyJgUeJk_@}QoZmRi[iUqXqVm`@gb@}^cf@aXec@kMoVcN{X_Tuh@_Rwj@qPgp@aI{_@eH}b@cJos@kY_uCgTwtBeJa|@{CsX}Dw[wGi^}Hu`@gMwf@oPcg@}Mw^oZap@kn@kiAmfA{oBe|C_xFaq@{mAu`@st@}]gs@kReb@sPk]iSee@iWip@gXcs@uf@qxAgb@}sAka@}oAwMi^oOy`@aQu^kRg^oOuW_OqUcR}Woc@mi@cj@kl@gZm\\}Wo[eWu]wT{]mMyU{KyTeLeVqMy[{Pge@oO_j@oN{j@oKki@aKgs@{Hat@aJqcAsIi|@eIai@{Jsf@uKid@aJgZgOsb@sRgd@kMcWmOmXmNuToO{S}MwPaOkP{RwRsUiS_}@uq@_oAw`A_oA_aAs_A_u@soFyaEou@}h@wq@gb@uWkOmZgPiu@e_@yZwNa\\wMcn@aVag@yPai@gPas@gR}lAeXcjAeUaqA}V}~@qSkc@qLeo@gR_m@kSce@mQyg@{TofAgi@c]_RetCepB{bAex@u`C{lBofAu{@}fAi|@mp@kh@wq@kl@kX{VaUmVeQcSmRqViTyYcR{XoXac@wTkc@cQ}\\wVgk@{]y`AgP}h@uLad@{Jeb@uJye@wLmq@}Fyb@mG{f@aI}x@yFwo@kUyeCaSmtBmEgg@kJgq@mLyl@gMeg@uJ_\\yMs_@sO{_@kS}a@iVya@ec@ul@_\\e^oYsWw`@{Y_\\kR_a@}RupA}j@{zCcsA}oDi~AkqDe_Bqs@_\\_a@cS_YgQ}ZwUyZyYuNwN_RmU_[qc@{_@am@ioB_zCm_IqxLu~ByoDwHcMexDo~FwwE}iHewEyiHiqEsaHksCemEe^wj@{`@ms@mUef@sU_m@yR}j@qSgt@oHq[uHw]cOoz@kPcmAyOuuAwKez@sK_n@oMyq@cQoq@_Xa{@mOia@eSie@wS_c@sXsh@uq@qjA}p@glAyr@msA{xDqbImB_E{aEutIunCuzFgrC{`G}yBgvEoaAasBaZqo@sZeu@wSqi@sUgu@qVo|@wLgg@qB}IeNsr@yMox@cKos@yFof@oIy`A_Faq@eN{rBoNsjByIoaAeMwiA}Do[yK_y@oPubA_Jwh@iLml@uKyg@eW_hAuYchAgOyg@mPkh@{T}q@}Vmr@kSai@wTgi@_gAqhCgx@{lBgi@kvAqb@knA{Vkw@eW}{@{YehAgVwcAiSa`AiUimAeW}}AsOegAgL{~@uOwxAyIg_Au`@irEyS{nBoH}r@aKow@{J_r@uNg}@y\\mmBkVkhAk[arA_\\wlAsf@{bBiPse@_c@iqAmx@wbCiZ{`AuFwQmPyi@qQcp@cReu@iT_|@{R_~@q[geBqNkz@{OaiAiQyvA_LkbAsJi_A{Ie{@mP}{AoPawAmRotA}QaiAaXguAsS}}@sPms@wWq_Aq`@ipA}Tqo@}Q{g@}Tgk@qTyh@oUwg@_h@efAii@yaAw`@sq@sd@it@euAmvBq^qk@k_@ao@qj@icAcY{j@sYmm@aj@esAue@urAk]egA_Omg@mOmm@cRqt@yQ{x@iUymA_Na}@uPclAaM{iAgMatAwWehDoYipDkUe{C}c@q_Gie@grG_Nk|ByImnCwDkcAwA}iAsBapCNukBlA_qBhF}zC~@wg@pC_fBpBikBo@mqA?O{CetAcGgmAwFax@eHcu@}Iaw@eFy_@uNs|@uWeqAm\\uuAuHa[cn@uaCsm@ubCyz@ifDubAm|D}{@cmDwx@u{Cc]emAa`@qpAqLe_@cNoa@q\\m_AeTsl@u`@oaA{d@{iA}[mr@okCuwFmWgj@ibA_vBa|BkzEmlDmoH_dCeiFaHqOad@{~@se@_gA_c@kfAce@ykAgn@qeBsh@_aBco@uxB}nAcjE}qAwqE{`Dw{Ki_DywKqpAgnEgnAoiE{Va{@cScw@}H}_@gMot@cLy|@UaBeG_x@mDst@mBa`AOy}@Imi@uAex@a@oXgBkb@uEml@sHkp@yPiaAkLce@gQcp@kEoMoLw[oUmi@wSo`@aSo[yUc^iv@iaAcVg\\ySwZgi@e}@yd@q}@yXwq@y]odA{XccA}YmrAgx@anDgc@{mBww@yjDucBe}GybBsxG_eBi|GiT{{@}`AsyD}wA_xFao@mfCwCoLe{Bk{IeeBs}Gw|AohGoE{PuqCg|Kwu@ymCs{@}nCg]caA}e@ooAyfAusCKWc^u~@{\\w|@wmAgbDw`@yiA{]wfAyWm}@ut@qkCqYclAk\\gwAmr@meDyzAiiHq|AknHk{DibRuiHgi]g{@ecEocAq~Eq~Bo|Kwg@caCoy@g|DwhA_qF{D}QyOcu@ufAkhFuoA_dGoc@uuBod@qyBsQo{@}Ni}@{Gye@}Fci@aFec@qC_b@}Ee}@iC_p@_@}]g@{f@FykAdA{pBPi\\Goy@_B}z@yCqx@}@iOiDqk@cHot@wImu@kAkHeT{qA}Sg_AsMkh@qOcj@{a@kmAmVwj@qRsa@s\\gp@gR_ZiSs[wc@{o@{k@qp@yu@i{@iZq]s\\cb@}MkRoVg_@_`@gp@eZqk@mQqa@wPe`@_Na_@yUqu@cFePiMwe@kf@ekBk|By~Ig}BeaJu|Bc_Ji|B_aJcX}dAm`A}yDub@mrBkg@woCwm@ytD{f@uyCij@sfDqbB{eKiQeeAc]ctBsy@eaFysBmhMaAcGoJis@oGyt@s@cIuD_f@uBwh@{Bc|@a@m_@?ia@F{q@zBgs@hAs_@nHovApGgrAvAqh@LaFXkc@]m}@kA_m@aBi]{Fax@gHut@yLsz@{Hsa@eMkk@}Ool@gVwt@_\\ww@wZwm@sWsc@mXka@cY{^{h@oj@qtAspAyNqMgb@c`@kLoKoY_Xe_@i]we@id@_a@{d@me@{o@c`@cq@c]os@qRye@sTsp@_Nod@{Nip@eLum@eIii@kI}u@uDsf@_Dii@gB_h@Yul@Lgy@tA{n@nBwj@vCar@fCal@lBgn@`Bym@^}k@Cod@Ukd@cAwq@mAke@iCif@{Bwb@yEgl@_Geo@_Jor@sLex@mGs[iH__@eMck@gN}i@aTqs@aTsm@_LuZ}Soh@wXml@_]io@qwA{fCkQg]{R}`@mSqc@ySif@a_@ybAy]{gAwWidA}AaIqXmpAwUo{AsHaj@_Hqm@kKevAqFgfAgCcsADgqA`Asp@lAq_@vEqfArB{[bJydApN_jAlJst@nGwe@pFac@xDil@zAue@Jy`@BwGiAii@aBy_@uC}^eFyc@oGw`@sFmXmTkr@qPqa@}S{c@sUq]ac@{k@mFsFsuA}~Aw_@k`@abAe{@o`@_Xmd@_[}MwHue@sV_^kPmq@wWeu@iXi{@u[ml@gVaU_LsWiNaa@kVuYcSeUuQgG_F}^u[a~@az@yaAuz@ub@g[og@{\\}h@sZgh@wWmg@cVahCclAmwDofB{LiFeeAsf@wRoJgbAqj@k]qVsb@}^sd@wf@aUgXqXi_@mY{c@_p@ybAm_Ae{AcSgYyQaW{SkXeh@wk@wN{M"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 55 miles.","announcement":"Continue for 55 miles.","distanceAlongGeometry":87986.07},{"ssmlAnnouncement":"In 1 mile, Keep right to take A-62.","announcement":"In 1 mile, Keep right to take A-62.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take A-62.","announcement":"In a half mile, Keep right to take A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A-62 toward Valladolid, Burgos.","announcement":"Keep right to take A-62 toward Valladolid, Burgos.","distanceAlongGeometry":211.111}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[-5.680571,40.989548],"geometry_index":4546,"admin_index":1,"weight":30.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":32.042,"bearings":[34,42,215],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,233],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.049,"geometry_index":4558,"location":[-5.674226,40.996314]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,243],"duration":0.769,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.73,"geometry_index":4560,"location":[-5.67264,40.997018]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,246],"duration":3.427,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.256,"geometry_index":4561,"location":[-5.672399,40.997098]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"location":[-5.671312,40.997435],"geometry_index":4562,"admin_index":1,"weight":10.424,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.98,"bearings":[72,77,248],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":5.314,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.049,"geometry_index":4564,"location":[-5.667683,40.998311]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":16.407,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.588,"geometry_index":4565,"location":[-5.665925,40.998733]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.66051,40.999901],"geometry_index":4569,"admin_index":1,"weight":11.012,"is_urban":false,"turn_weight":0.75,"duration":10.532,"bearings":[80,255,259],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,266],"duration":0.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.928,"geometry_index":4572,"location":[-5.656874,41.000184]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.877,"geometry_index":4573,"location":[-5.656547,41.000207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":1.107,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.08,"geometry_index":4574,"location":[-5.656234,41.000224]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":7.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.594,"geometry_index":4575,"location":[-5.655853,41.000243]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":1.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.537,"geometry_index":4576,"location":[-5.653186,41.000372]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":35.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.471,"geometry_index":4577,"location":[-5.652634,41.000401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,274],"duration":1.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.984,"geometry_index":4588,"location":[-5.640313,40.999669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,271],"duration":20.709,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.674,"geometry_index":4589,"location":[-5.639959,40.999665]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[86,89,268],"duration":0.705,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.652,"geometry_index":4592,"location":[-5.632773,40.999858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,266],"duration":12.24,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.629,"geometry_index":4593,"location":[-5.632534,40.999871]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[85,89,265],"duration":15.289,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.125,"geometry_index":4596,"location":[-5.628296,41.000125]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.622264,41.000544],"geometry_index":4599,"admin_index":1,"weight":90.986,"is_urban":false,"turn_weight":0.75,"duration":100.281,"bearings":[84,260,265],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,233],"duration":12.326,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.07,"geometry_index":4622,"location":[-5.590025,41.011227]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":1.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.07,"geometry_index":4625,"location":[-5.586807,41.013482]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,225],"duration":79.299,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":69.387,"geometry_index":4626,"location":[-5.586508,41.013711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,227],"duration":101.711,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":88.98,"geometry_index":4643,"location":[-5.56971,41.031239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":5.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.979,"geometry_index":4673,"location":[-5.548221,41.053328]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-5.5467,41.054328],"geometry_index":4674,"admin_index":1,"weight":22.412,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.91,"bearings":[50,229],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,213],"duration":7.221,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.48,"geometry_index":4684,"location":[-5.540828,41.059412]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,211],"duration":154.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":135.02,"geometry_index":4686,"location":[-5.539477,41.061109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":0.459,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.4,"geometry_index":4741,"location":[-5.503338,41.089983]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[8,11,187],"duration":0.338,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.289,"geometry_index":4742,"location":[-5.503316,41.090109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,188],"duration":12.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.213,"geometry_index":4743,"location":[-5.503298,41.0902]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.50243,41.093619],"geometry_index":4747,"admin_index":1,"weight":121.355,"is_urban":false,"turn_weight":1,"duration":137.557,"bearings":[16,190,194],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,191],"duration":30.383,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.578,"geometry_index":4794,"location":[-5.489201,41.132303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":91.346,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":79.92,"geometry_index":4805,"location":[-5.484342,41.139873]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,229],"duration":30.832,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.959,"geometry_index":4831,"location":[-5.455834,41.153766]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,236],"duration":110.943,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":97.066,"geometry_index":4840,"location":[-5.446562,41.159772]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,262],"duration":119,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":104.117,"geometry_index":4875,"location":[-5.408033,41.165959]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,221],"duration":0.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.545,"geometry_index":4918,"location":[-5.369987,41.177868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,226],"duration":83.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":73.389,"geometry_index":4919,"location":[-5.369826,41.177987]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.682,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.596,"geometry_index":4949,"location":[-5.348346,41.195374]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":3.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.809,"geometry_index":4950,"location":[-5.348155,41.19549]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.347213,41.196022],"geometry_index":4952,"admin_index":1,"weight":107.822,"is_urban":false,"turn_weight":0.75,"duration":122.387,"bearings":[53,222,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":17.441,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.68,"geometry_index":4985,"location":[-5.318513,41.221356]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,198],"duration":1.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.256,"geometry_index":4988,"location":[-5.316699,41.226032]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,201],"duration":8.475,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.416,"geometry_index":4989,"location":[-5.316517,41.226396]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,207],"duration":3.219,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.809,"geometry_index":4992,"location":[-5.315178,41.228559]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,210],"duration":3.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.471,"geometry_index":4994,"location":[-5.314588,41.229331]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,213],"duration":13.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.393,"geometry_index":4995,"location":[-5.313809,41.230222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":301.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":271.674,"geometry_index":5001,"location":[-5.310432,41.233165]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,201],"duration":9.602,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.621,"geometry_index":5090,"location":[-5.230731,41.299616]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.244,"geometry_index":5093,"location":[-5.229699,41.302176]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":59.416,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.475,"geometry_index":5094,"location":[-5.229564,41.302553]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,230],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.043,"geometry_index":5115,"location":[-5.217601,41.316664]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,231],"duration":26.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.885,"geometry_index":5116,"location":[-5.216944,41.317057]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[72,75,256],"duration":26.785,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.416,"geometry_index":5126,"location":[-5.207905,41.320087]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.198985,41.323425],"geometry_index":5136,"admin_index":1,"weight":78.719,"is_urban":false,"turn_weight":0.75,"duration":89.131,"bearings":[48,227,231],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":25.303,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.135,"geometry_index":5161,"location":[-5.179836,41.343648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,218],"duration":9.42,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.223,"geometry_index":5167,"location":[-5.173036,41.348498]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,209],"duration":29.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.479,"geometry_index":5170,"location":[-5.171154,41.350737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":1.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.975,"geometry_index":5180,"location":[-5.168025,41.358561]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":2.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.979,"geometry_index":5181,"location":[-5.167957,41.358858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,190],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.773,"geometry_index":5182,"location":[-5.167816,41.35947]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[10,23,190],"duration":0.17,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.146,"geometry_index":5183,"location":[-5.16776,41.359712]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,190],"duration":12.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.682,"geometry_index":5184,"location":[-5.167749,41.359757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.166746,41.363021],"geometry_index":5188,"admin_index":1,"weight":36.838,"is_urban":false,"turn_weight":1,"duration":40.977,"bearings":[16,189,196],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,213],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.969,"geometry_index":5200,"location":[-5.159626,41.373316]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,214],"duration":223.662,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":195.705,"geometry_index":5201,"location":[-5.159157,41.373841]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":3.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.375,"geometry_index":5231,"location":[-5.134375,41.408013]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[37,42,216],"duration":0.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.383,"geometry_index":5232,"location":[-5.133852,41.408558]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":9.186,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.037,"geometry_index":5233,"location":[-5.133759,41.408652]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.254,"geometry_index":5235,"location":[-5.13173,41.410572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,219],"duration":10.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.809,"geometry_index":5236,"location":[-5.131407,41.410869]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.12896,41.412872],"geometry_index":5239,"admin_index":1,"weight":34.074,"is_urban":false,"turn_weight":1,"duration":37.809,"bearings":[44,220,223],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.971,"geometry_index":5245,"location":[-5.118891,41.419984]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":142.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":124.898,"geometry_index":5246,"location":[-5.118597,41.420181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,191],"duration":2.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.986,"geometry_index":5275,"location":[-5.08931,41.447245]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,194],"duration":2.303,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.016,"geometry_index":5276,"location":[-5.089112,41.44786]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[16,18,192],"duration":15.188,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.281,"geometry_index":5278,"location":[-5.088933,41.448484]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.086768,41.452343],"geometry_index":5284,"admin_index":1,"weight":126.033,"is_urban":false,"turn_weight":1,"duration":142.902,"bearings":[30,204,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[51,53,231],"duration":26.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.137,"geometry_index":5307,"location":[-5.046337,41.479303]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,241],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.703,"geometry_index":5313,"location":[-5.038339,41.483724]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,243],"duration":18.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.605,"geometry_index":5314,"location":[-5.037702,41.483972]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.031416,41.486065],"geometry_index":5319,"admin_index":1,"weight":6.008,"is_urban":false,"turn_weight":1,"duration":5.57,"bearings":[66,241,247],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[66,69,246],"duration":31.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.213,"geometry_index":5320,"location":[-5.029554,41.486681]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.022284,41.492954],"geometry_index":5338,"admin_index":1,"weight":1.711,"is_urban":false,"turn_weight":0.75,"duration":1.045,"bearings":[4,177,185],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":7.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.75,"geometry_index":5339,"location":[-5.022255,41.493242]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":2.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.059,"geometry_index":5341,"location":[-5.022041,41.495261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.732,"geometry_index":5342,"location":[-5.021971,41.495869]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,184],"duration":5.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.801,"geometry_index":5343,"location":[-5.021952,41.49608]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.902,"geometry_index":5344,"location":[-5.021798,41.497511]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":7.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.18,"geometry_index":5345,"location":[-5.021776,41.497771]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":0.49,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.467,"geometry_index":5347,"location":[-5.021557,41.499856]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[5,185],"duration":2.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.021,"geometry_index":5348,"location":[-5.021542,41.499989]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.311,"geometry_index":5349,"location":[-5.021478,41.500573]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[5,13,184],"duration":0.408,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.381,"geometry_index":5350,"location":[-5.021469,41.50066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":14.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.332,"geometry_index":5351,"location":[-5.021458,41.500763]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.021063,41.504533],"geometry_index":5354,"admin_index":1,"weight":25.93,"is_urban":false,"turn_weight":0.75,"duration":26.514,"bearings":[6,180,184],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":3.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.719,"geometry_index":5366,"location":[-5.018363,41.509339]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[34,39,215],"duration":15.773,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.967,"geometry_index":5368,"location":[-5.017777,41.509987]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-5.013299,41.512512],"geometry_index":5380,"admin_index":1,"weight":7.592,"is_urban":false,"turn_weight":1,"duration":6.947,"bearings":[74,246,250],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[79,254,258],"entry":[true,false,false],"classes":["motorway"],"in":1,"turn_weight":1,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":5381,"location":[-5.01085,41.513035]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Valladolid"},{"type":"text","text":"/"},{"type":"text","text":" Burgos"}],"type":"fork","modifier":"right","text":"Valladolid / Burgos"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"right","text":"A-62"},"distanceAlongGeometry":88026.07},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Valladolid"},{"type":"text","text":"/"},{"type":"text","text":" Burgos"}],"type":"fork","modifier":"right","text":"Valladolid / Burgos"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"right","text":"A-62"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":34,"bearing_before":35,"location":[-5.680571,40.989548]},"speedLimitSign":"vienna","name":"","weight_typical":2610.237,"duration_typical":2923.606,"duration":2923.606,"distance":88026.07,"driving_side":"right","weight":2610.24,"mode":"driving","ref":"E 80","geometry":"wuxdmAtzuyIk^m[cf@q^od@i[_u@qa@gz@ie@wZeS{YkUmi@kh@yF{GcYm^qe@ku@a_@ww@iZgv@uO{j@_DaNaT}bAcXggBs\\qyBkY{lByo@qkEqHij@gGim@kEgk@yGacA}CgmA}B}oAm@mSa@qRe@yVaGueDy@oa@cAgh@cAms@a@_w@l@w|@`A}d@~C}gApRivDbHmuAnFciApBoq@xAkt@FcUWchAiAqmA_HmhHY}M_Fs`CoCmgAkCy}@kOclFK{DmH_eC}Fk`B{G_oAeKsnAsEuc@uGyf@{Fmd@gKkn@}N}w@w@sDg_@ccBqYmiAg[uoAcv@wzCeiBejHqgBggHqe@mjB}Ret@uWw|@q[yaA_Wkv@m]m|@k[{u@ae@waAap@ujAai@y|@yp@s~@iMuQkt@{z@}{@i~@yp@mm@sjAg_AaqA{}@odBcgAazA}_Ao|A}bAur@qh@sv@yo@iq@en@en@go@ao@os@k`AwmAge@uo@ef@us@}zAu`Can@c`Auh@_x@ke@{p@wXc^e\\qa@g_@ub@ka@oc@wy@ww@oy@ss@kh@s`@ku@ah@{l@c_@kaAyj@_aAuh@ux@ic@oy@od@ci@_[_d@gXe`@uVs^cWkb@e[_d@{]ea@a^am@qj@ek@el@us@sy@yn@kx@{p@_`Aom@{`AyuA{aCo}@a~AoJkQsTq]ee@ku@kT{[iWu^}h@}p@qs@kw@kb@i`@ma@s^mc@{^cf@y]}aAst@alA}{@wx@ao@ka@_\\cVySge@}b@{a@ua@gg@ki@iRsTue@wm@ij@ay@gTi^iRm\\kTga@yTod@kX_m@kNm]wPqc@cMy]wPwg@sMmc@gSyt@{Owo@_Rey@g\\uaB}]knB}`@w|Bib@y{BkXcpAgMai@kUq|@yT{u@{Ssn@gT}j@mSmd@yQa`@mO{YsSs^wSc\\eToZeUuYao@st@o\\a[uYiVwl@kd@io@c`@yXeNuWyLgp@}Vyd@qNsg@wMam@yMajAgRsdBcTgoAiMmlAyL{Fk@uDc@m|@gK}eAaPma@oH{m@mNot@aSei@qQon@iVso@sZyu@sa@gy@sh@qx@mm@qjAa`AyiAodAchCg~BycAoz@ia@m\\k`@eYoc@mZ{q@wb@qd@aVs]qQc\\{N}]eNwk@gS}p@_Ro`@cJmf@eI}]sFuEs@e^cEgZkCi`@aCk_@}Acr@uA{w@Yqb@N}i@h@gv@pBcu@|B{oAnFsnArEynBlGenBxCmv@Dyk@m@ie@y@upA_Fwg@wDge@kEsy@kKap@aLwn@mMiw@mUaXaJys@qYwo@a[uZuPuV_OuZmRe\\cUqeA_|@s~@{_AsZy]ib@ij@kc@co@sb@es@cWwd@mWag@u\\ms@kO}\\e[mu@__@qcA}a@wmA{p@uzBmq@_dC{f@{mBsd@skBag@epBg_@}vAuj@gmBw[u`A}Two@i[ux@wYwq@yq@ixAi\\cm@mXyg@oe@uy@k~@uzA}}@wvAmw@wpAch@oz@yc@uw@gb@kv@md@waAcSud@{Tii@{Vov@gRql@sPim@mMsh@yNyp@wKmj@aIqf@iNs`AmIes@}Hmz@oGi}@wFmaAgDi_AqB{{@aC{|@}AkvAeDs~CaAiy@{@os@{@eo@mBwt@kGocBoEw{@gFkv@wKiuA{Iwz@mJgw@iUcjBuMwbAiGyc@_c@iaDsLogAqKcdAwNodBgIk`Bi@uNcBmc@iCipAw@oz@Sk`AhBatB~BqvAnDqcBfDgbBlDubBdAwcAn@ojAUgx@y@c|@yA{z@uDu_AgGq|@uIkaAgJeu@cLwv@gN_t@sPyw@sLyc@sO{i@qR_l@sQeg@eQob@qS}d@eVef@sU}b@g`@cn@gX}`@u[sb@kk@gr@ia@{d@ql@{m@ub@kc@s`@s^{iAgeAkcAaeAwd@}f@yj@ap@sMcPmFaImWy_@{e@uu@ah@w}@_m@khAgm@egAwX}e@e\\ah@eZid@{Y{`@wb@aj@k\\{_@si@cl@}w@mv@{mAufA}gAmaAwk@mh@eg@wf@oe@ge@}]{_@mk@er@gS{V{Ug[kXq]mg@at@mZse@ka@up@iSu^eRm\\yk@kiAuIyPgF}J}DcIiZwo@yjAeeC{xAm_DiuAoyCwyBmzEyn@atA{|@amBwk@}nAey@{fBo_@_v@m^cr@el@scA_Yce@mYw`@uRoXoOsRw]}`@sa@}b@c`@i_@ed@c`@uRgP}l@mb@mUsOyXuOa]_RuWiNur@kZkq@gV{u@qV}kAg\\yoAk\\ypAq]qh@wN{v@wRyiCgq@oiA}[}mAea@wUkJmr@k[}g@iYyi@_\\yZ}SmS}Nuv@uo@yXqVcWoWam@gq@w\\uc@_Zm`@e^si@gV_]sUo`@}~@u~Ao|@m{A}b@}q@ux@kmAsx@ydAks@ez@wm@}p@ykAsmAgtFgzFeiCcnC_lAsmAwa@{c@g^}`@cUgWcW}YgW}\\u^{f@gc@wq@qZmi@gd@i}@kQi`@sZku@s_@qeAek@{hB_v@skCud@eyA}Sil@mRag@gQyb@oUgg@sYqm@kT}_@}Ysf@wPoVyJsNs^ig@ic@ei@s[k^qd@uf@wmCglCuq@wv@c]yb@eLmOqU_]}^gl@k_@mq@{b@sz@ij@mgAi^cs@_i@s~@qc@yq@{TsZkV_[{b@qh@e_@g_@aWmWiWqUyvBofBy_Aix@wYyWae@ic@qj@em@s_@se@kd@cj@e^mg@_f@gu@ckAclBa[ye@iY}d@yp@_aAig@op@gi@cp@in@}r@{x@{x@u_Ak}@wgD{|Cw}AuwAstAioA__DiuCapA{jAek@ef@}h@_d@}r@sd@eq@g_@kReJqVeKa[qM{c@aPk^{LwzAq`@qVmGsy@eSo_AeVysAm^o[oKgXkJwc@iSuUgMcOwJwZuS_^aX_YsWwUiVqeAqjA}aA}gA}{AmcB_s@{w@ej@ap@oXe^o^mg@e\\{i@kXsf@qWah@k\\uw@kVqo@mR_j@{Nqf@aMwc@oMik@{Nys@uVoxAsWkjBqGkm@cb@qkCsPyaA{Oeu@sRmv@cVuw@}Ke]qHuRmY_u@{Rsa@mZil@aW}b@aZyd@we@{n@oRsVmRsSe[m[cf@qb@mXkTqb@{Zyb@{XwbB{cAikEkfCymBugAk~Aq~@ir@yd@qt@sk@sy@ks@sq@{v@_\\o`@qVy\\e^eh@yVk`@mv@msAin@}kAic@k|@im@ymA{o@{nAeq@akA}b@cp@qz@gjAg}@{`Amo@yk@su@am@{c@wYiD{Bqj@e\\we@iW{l@gWgh@yRoc@iNsp@{Qgv@yPu|Bg^en@{IqQgCge@yGcNoByAUkt@mLso@oLucAwUi`@_LsQeF{o@{SgT}Hsa@cP}w@u\\sw@ia@_q@y^al@{^}q@qe@op@mf@ccCgrB{mA}cAy_@i\\egD{qCkB}A}mDuxCg{CehC__BqsAuaB{uAweByvAwr@yi@ow@wl@sx@ki@_x@cg@a~@qg@w_Aag@_nAsj@ixAym@k`Bkm@cbBon@ooAqf@szAyn@wf@uTsh@oW_f@{Wse@mWun@i`@yf@q[cc@gZ_g@y]{q@wi@{|@iv@qKaKaa@u_@{DyD}a@ua@atAc{AqQeS{|@}gA_c@ql@iZma@oc@mm@qeAe_B_|@}sA}t@alA}nCmpEqmAgrBiKkQ{`FehIikDyyF{mAkrBenAmsBgzBerDo{BarD{r@{dAor@_bAc@o@un@sx@oi@qo@iVkXyXgYqb@cb@}e@qb@ok@ud@kWoR{`@uWgh@o\\eY{Oct@k^qm@}War@yVy^sMa_@cKgf@_MibAmTcbAcSuIyAme@kKcTcE{PaDcu@iSqt@{Xm]gPgf@aW{WsP}e@e]aJqGyVwT}YmXaT_UwNeQuV_Z{]ue@a`AivAg`AmxAefA}~Asv@kjAoE{GgjCm|DotAorBio@oaA_[{g@{_DsgGsiAozBwdA{qB{fJmpQ{oDacH{wAurCgc@{z@whCk`Fi`@qx@y]cv@{\\uz@sRai@}Wa{@oNyf@_[umAud@wqB{YuqAc[}sAcIy^oe@ksBm\\exAiOyn@iMma@gSch@{Rob@gVub@_NoSqTqYoRqSkVwU_XaR}RwLgVmLsWiJsYmHgOoCwYiDwYmB_Qy@we@}BmvAmH_e@kCeLe@mxAsHgOk@{`BeIm_@oBiG]oc@_CmDQmEU}fAiF}fBgJwz@cE}TcB}W_CaYyEee@cM}UwI}WeMkTqLyR{MoQeNef@_b@AAmi@ad@aOaMmWqUsTmRiRkS}FyGiFmH{Via@}HoNaJsRoHwPuIqUuOch@{Hs`@_Iid@u_@axCaFoq@_GklAqCoq@_Bcy@u@wo@Qaw@\\sa@pAguArCobAjDaw@tMs|AvLulA`d@y{Cfi@_aCxXsaA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 40 miles.","announcement":"Continue for 40 miles.","distanceAlongGeometry":64151.039},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A-62.","announcement":"In 2 miles, Keep left to stay on A-62.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A-62.","announcement":"In a half mile, Keep left to stay on A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A-62, E 80 toward Burgos.","announcement":"Keep left to stay on A-62, E 80 toward Burgos.","distanceAlongGeometry":280}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[-4.993082,41.51108],"geometry_index":5396,"admin_index":1,"weight":23.633,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":24.887,"bearings":[120,124,297],"out":1,"in":2,"turn_duration":0.011,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[119,304],"duration":4.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.021,"geometry_index":5407,"location":[-4.986957,41.506953]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,292],"duration":25.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.4,"geometry_index":5410,"location":[-4.985577,41.50647]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.976334,41.506423],"geometry_index":5421,"admin_index":1,"weight":20.803,"is_urban":false,"turn_weight":0.75,"duration":22.926,"bearings":[77,253,256],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.968062,41.508033],"geometry_index":5425,"admin_index":1,"weight":7.301,"is_urban":false,"turn_weight":1,"duration":7.207,"bearings":[74,253,255],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":47.1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":41.213,"geometry_index":5428,"location":[-4.96575,41.508523]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.486,"geometry_index":5439,"location":[-4.94866,41.514122]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,62,239],"duration":0.4,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.342,"geometry_index":5440,"location":[-4.948477,41.514205]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":32.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.074,"geometry_index":5441,"location":[-4.94836,41.514263]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":64.967,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":56.84,"geometry_index":5445,"location":[-4.937597,41.518677]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":1.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.016,"geometry_index":5450,"location":[-4.920402,41.525531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[62,242],"duration":25.822,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.59,"geometry_index":5451,"location":[-4.920099,41.52565]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":54.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":47.336,"geometry_index":5454,"location":[-4.911693,41.529039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.373,"geometry_index":5462,"location":[-4.896778,41.538651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":21.967,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.215,"geometry_index":5463,"location":[-4.896668,41.538736]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,224],"duration":74.797,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":65.441,"geometry_index":5464,"location":[-4.891065,41.54307]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,224],"duration":0.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.426,"geometry_index":5471,"location":[-4.871832,41.557968]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,221],"duration":18.666,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.326,"geometry_index":5472,"location":[-4.871713,41.558071]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,228],"duration":20.121,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.6,"geometry_index":5477,"location":[-4.867098,41.561463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.268,"geometry_index":5479,"location":[-4.861649,41.565106]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[47,52,228],"duration":0.395,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.336,"geometry_index":5480,"location":[-4.861565,41.565163]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":11.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.301,"geometry_index":5481,"location":[-4.861472,41.565227]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.858507,41.567286],"geometry_index":5482,"admin_index":1,"weight":22.551,"is_urban":false,"turn_weight":1,"duration":23.965,"bearings":[47,222,227],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[43,48,226],"duration":18.055,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.229,"geometry_index":5486,"location":[-4.852134,41.571728]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.84782,41.575479],"geometry_index":5489,"admin_index":1,"weight":45.623,"is_urban":false,"turn_weight":1,"duration":49.602,"bearings":[40,215,220],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":5.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.812,"geometry_index":5509,"location":[-4.834944,41.585008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,218],"duration":7.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.982,"geometry_index":5512,"location":[-4.833753,41.586125]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,201],"duration":8.393,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.527,"geometry_index":5517,"location":[-4.832535,41.587831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,195],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.535,"geometry_index":5521,"location":[-4.831804,41.589886]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,197],"duration":13.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.92,"geometry_index":5522,"location":[-4.831744,41.590031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.52,"geometry_index":5532,"location":[-4.829071,41.592839]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[53,221,233],"duration":1.682,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.496,"geometry_index":5533,"location":[-4.828904,41.592932]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":8.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.396,"geometry_index":5534,"location":[-4.828445,41.593187]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[49,52,232],"duration":1.514,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.381,"geometry_index":5538,"location":[-4.826129,41.594498]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":15.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.369,"geometry_index":5539,"location":[-4.825708,41.594769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.572,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.529,"geometry_index":5541,"location":[-4.821321,41.597547]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":46.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":43.26,"geometry_index":5542,"location":[-4.821163,41.59764]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":7.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.936,"geometry_index":5550,"location":[-4.808521,41.605793]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.806526,41.60705],"geometry_index":5553,"admin_index":1,"weight":12.906,"is_urban":false,"turn_weight":1,"duration":12.553,"bearings":[51,227,232],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":20.334,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.824,"geometry_index":5557,"location":[-4.802874,41.609033]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[57,63,237],"duration":24.055,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.035,"geometry_index":5561,"location":[-4.796725,41.612014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,210],"duration":2.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.564,"geometry_index":5572,"location":[-4.790915,41.616194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,201],"duration":8.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.713,"geometry_index":5574,"location":[-4.790576,41.616803]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[4,7,190],"duration":20.994,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.016,"geometry_index":5576,"location":[-4.789887,41.618906]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,215],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.506,"geometry_index":5591,"location":[-4.78768,41.624207]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":18.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.6,"geometry_index":5592,"location":[-4.787359,41.624513]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.782502,41.627978],"geometry_index":5598,"admin_index":1,"weight":22.154,"is_urban":false,"turn_weight":1,"duration":20.154,"bearings":[53,227,231],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":2.346,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.404,"geometry_index":5609,"location":[-4.777424,41.631839]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[21,30,205],"duration":17.656,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.07,"geometry_index":5611,"location":[-4.77706,41.632415]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.774892,41.636834],"geometry_index":5616,"admin_index":1,"weight":19.6,"is_urban":false,"turn_weight":0.75,"duration":18.396,"bearings":[26,196,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[41,49,225],"duration":0.342,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.326,"geometry_index":5625,"location":[-4.770451,41.641164]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":33.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.621,"geometry_index":5626,"location":[-4.77038,41.641224]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[8,18,192],"duration":14.527,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.867,"geometry_index":5643,"location":[-4.765122,41.648754]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,183],"duration":6.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.174,"geometry_index":5652,"location":[-4.765008,41.652477]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,193],"duration":25.975,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.975,"geometry_index":5658,"location":[-4.764753,41.654026]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[17,201],"duration":3.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.736,"geometry_index":5670,"location":[-4.760766,41.660264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,197],"duration":14.061,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.709,"geometry_index":5671,"location":[-4.760386,41.661198]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.760187,41.664886],"geometry_index":5677,"admin_index":1,"weight":71.857,"is_urban":false,"turn_weight":0.75,"duration":72.955,"bearings":[165,173,349],"out":2,"in":1,"turn_duration":0.024,"classes":["motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,259],"duration":26.695,"turn_duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.326,"geometry_index":5725,"location":[-4.745158,41.676187]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,231],"duration":12.689,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.047,"geometry_index":5737,"location":[-4.737087,41.680314]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[56,61,237],"duration":10.719,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.164,"geometry_index":5740,"location":[-4.733236,41.682328]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,223],"duration":1.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.584,"geometry_index":5745,"location":[-4.730305,41.684153]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,219],"duration":6.869,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.525,"geometry_index":5747,"location":[-4.729918,41.684492]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.728559,41.68606],"geometry_index":5750,"admin_index":1,"weight":82.289,"is_urban":false,"turn_weight":0.75,"duration":88.176,"bearings":[25,206,210],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.709295,41.7049],"geometry_index":5793,"admin_index":1,"weight":9.047,"is_urban":false,"turn_weight":0.75,"duration":9.238,"bearings":[20,187,201],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,214],"duration":19.023,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.113,"geometry_index":5800,"location":[-4.707808,41.707084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,220],"duration":59.205,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.268,"geometry_index":5808,"location":[-4.703389,41.711133]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,219],"duration":24.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.42,"geometry_index":5826,"location":[-4.689699,41.723567]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[62,73,242],"duration":28.84,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.229,"geometry_index":5838,"location":[-4.682984,41.727922]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.674993,41.732948],"geometry_index":5853,"admin_index":1,"weight":30.309,"is_urban":false,"turn_weight":1,"duration":32.586,"bearings":[38,206,219],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,229],"duration":35.16,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.506,"geometry_index":5864,"location":[-4.66659,41.739172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,234],"duration":1.982,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.826,"geometry_index":5877,"location":[-4.656617,41.745158]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[54,61,235],"duration":28.852,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.67,"geometry_index":5878,"location":[-4.656013,41.745479]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.646992,41.75017],"geometry_index":5887,"admin_index":1,"weight":21.258,"is_urban":false,"turn_weight":1,"duration":22.527,"bearings":[56,232,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":27.803,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.016,"geometry_index":5892,"location":[-4.640107,41.753701]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":37.818,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.02,"geometry_index":5907,"location":[-4.632604,41.758862]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,212],"duration":0.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.297,"geometry_index":5918,"location":[-4.624387,41.768381]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,212],"duration":146.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":132.191,"geometry_index":5919,"location":[-4.624317,41.768463]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":0.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.135,"geometry_index":5965,"location":[-4.588296,41.802965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":0.574,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.51,"geometry_index":5966,"location":[-4.588259,41.803003]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":38.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.35,"geometry_index":5967,"location":[-4.588139,41.80313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,193],"duration":77.467,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":67.777,"geometry_index":5984,"location":[-4.582059,41.812288]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":3.51,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.07,"geometry_index":6018,"location":[-4.569765,41.833471]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[28,34,208],"duration":70.566,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":61.74,"geometry_index":6021,"location":[-4.569111,41.8344]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.556816,41.851462],"geometry_index":6040,"admin_index":1,"weight":1.297,"is_urban":false,"turn_weight":1,"duration":0.359,"bearings":[26,199,206],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,206],"duration":2.139,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.873,"geometry_index":6042,"location":[-4.556765,41.851541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,202],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.951,"geometry_index":6045,"location":[-4.556469,41.852058]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,199],"duration":20.01,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.986,"geometry_index":6046,"location":[-4.556344,41.852329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,242],"duration":3.336,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.996,"geometry_index":6064,"location":[-4.55275,41.856682]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,246],"duration":2.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.223,"geometry_index":6067,"location":[-4.551673,41.857046]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,240],"duration":33.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.539,"geometry_index":6070,"location":[-4.550906,41.857343]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":0.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.811,"geometry_index":6090,"location":[-4.545143,41.865256]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,207],"duration":0.699,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.611,"geometry_index":6091,"location":[-4.544998,41.865469]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,206],"duration":16.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.16,"geometry_index":6092,"location":[-4.544889,41.865633]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":1.754,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.561,"geometry_index":6101,"location":[-4.542369,41.869673]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[25,205],"duration":20.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.527,"geometry_index":6102,"location":[-4.5421,41.870106]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[177,358],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.9,"geometry_index":6119,"location":[-4.540803,41.875525]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":20.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":18.543,"geometry_index":6120,"location":[-4.540816,41.875796]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":23.561,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.205,"geometry_index":6139,"location":[-4.53838,41.881128]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":0.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.449,"geometry_index":6149,"location":[-4.532611,41.886122]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,220],"duration":19.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.686,"geometry_index":6150,"location":[-4.532492,41.886226]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,240],"duration":0.643,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.555,"geometry_index":6168,"location":[-4.527869,41.890146]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":3.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.793,"geometry_index":6169,"location":[-4.527662,41.890225]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,241],"duration":37.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.918,"geometry_index":6170,"location":[-4.526669,41.890639]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,212],"duration":15.203,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.283,"geometry_index":6195,"location":[-4.5186,41.899009]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,201],"duration":0.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.352,"geometry_index":6208,"location":[-4.516248,41.903201]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,202],"duration":11.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.395,"geometry_index":6209,"location":[-4.516187,41.903313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,201],"duration":11.668,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.484,"geometry_index":6215,"location":[-4.514542,41.90655]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,200],"duration":6.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.686,"geometry_index":6220,"location":[-4.513077,41.909435]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,201],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.854,"geometry_index":6223,"location":[-4.512286,41.910996]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[20,23,201],"duration":0.793,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.715,"geometry_index":6224,"location":[-4.512032,41.911495]},{"bearings":[21,200],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":6225,"location":[-4.511936,41.911687]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos"}],"type":"fork","modifier":"left","text":"Burgos"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"}],"type":"fork","modifier":"left","text":"A-62"},"distanceAlongGeometry":64184.371}],"destinations":"A-62, E-80: Valladolid, Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A-62 toward Valladolid/ Burgos.","modifier":"slight right","bearing_after":124,"bearing_before":117,"location":[-4.993082,41.51108]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":1926.199,"duration_typical":2092.57,"duration":2092.57,"distance":64184.371,"driving_side":"right","weight":1926.199,"mode":"driving","ref":"A-62; E 80","geometry":"oisdnArbwoHfb@oeA~Qqb@~Qo\\tTm_@n]ia@^c@py@u_AxVm\\rQ}ZfM{WfOm_@~IqYpHkZrHi_@bEoX~Fcj@`Eqi@bDwu@xCww@ZwqAe@il@{Amk@uE_eA}IenAkEi`@cY}qCkWu|BkWkvBwX_|BuXgwBAE{CaWwk@czEeXgyB}Xc|BcRwlAiTk_AsUmw@eWqt@ks@_mB_q@mfB{r@ikBqKwZeDmJsBiFoYit@ui@ycB{bC}iIyiAszDgsEetOazBctHehA}tDc@{AwQqn@mF}QuqAgkE{qAcoEgm@_pB_wA}vEyZg|@mTmg@mTie@sf@kx@gbBk_CkhBefCydEi~FiD{E{mGe}IkpIgrLkpBgqCq{@mlAo{@qmAwwBuzCuvAapB{uCybEmEmFe`@oi@kjAeaBySa[qj@}{@af@wy@}dBayCw|BoyDqBgD_CyDu_CixDkz@ouA_lBc|Civ@moA}t@giA}r@s~@mjAktAajBswBoXs[q`@uf@{Z}`@i[{d@o[gi@eVac@wSwa@cUmf@gVih@ql@yoAe^cs@uM_VeSg\\oTi]eP}T}\\gb@eUcYkc@kf@sdAuiAau@}x@wMyN_\\g^aYkZcV{S_RsNsQ{K_UwM{V_Ko\\gJuVmGer@qPaWmGaHwBaMmE{PgH}OkIeYoQ_U{RyLkLaMgO{RgXeTy]oH}OyDmI}Nu[eSgc@ad@ebAcJoQqLyU}OiYw|BcbE{n@anAyD{Hai@_fAyh@ueA}w@u|AylBifDq|AyjCenAguBinA_vB{EkIoJiP}`@mr@c`@}v@a_@qt@q\\mr@al@{vAgPkb@aKwW}|AccEiz@wvB_Tuj@kc@{jAwOca@sLmZqNk[}Xuh@qV{_@qYw^kTkUkTaT{ZsUg_@}WuRuJkQoHqaA}Z{_AcN_k@eCeWoAoZaCoZqDg[gGe^eJsVaJkGmCoHoCaEyBkU}Lg\\_TiNiKaOcMcQ_PcRaS}NaQym@ey@ir@wcAm^wl@ao@oiA_Vie@}g@qgAig@{eAqI_QgNgTeTw[aN{P_SgT_ReRkOsMyZaVyM}HyFgDe[oP}c@sQatBcr@u|@s^qb@gR}W{Mcz@yd@ae@o[ma@a^}a@mf@qL{OsQqXSYy`@an@md@mq@wBmCsTqX{K{NoU_WoV_W{VqV}g@mc@eKyIac@k[kYuQwWyOwb@mUqj@aWoSeI}a@aOa]eKoZyHs`@wHo`@kEyPcA}R{@eS_@a\\Fs[p@{o@|AqSJcM[_Ye@gNw@{OwAeNsBaMsBmH_BqX_HsWgIiPkGsR{I_[ePkRyLuiA_y@oa@{XglAcv@s_@mSiVsL_LsEky@wVqf@_J}f@wFk\\yAu^i@}j@jA_m@`Gi^dGee@dLcl@fPi|@`Xk_@hMwVrHeQzEuN~BoRhDmLjAeYvAoY\\_Ws@qTmBwZmEqZmH_WeIkV{KmSeLsSyLmWgTcWkWcUwXuSa\\uNiWiKuT{Mo]_K}Z{Jg`@gJqc@oFu`@{Da`@iCk^yAs_@i@kf@d@gi@rBwf@lDuf@zGem@xGop@bEqi@bCwn@^c]X{Zi@}y@_Dis@G}AuFot@{I{i@yI{g@mPct@iLs`@{Ly]}Oc_@wOi]mW{c@sVia@yt@qnAiZcj@w[ym@g]at@}j@cpAur@oiB}V_o@kYcm@iT}_@ySi\\sTyYaLmNcGwGg^k^o`@c[g`@mXwX}Nuz@s`@_|@ia@y_@_TyO}IoZoSeQqLmV_Rud@o_@aa@m^w\\y[yGoFk_@k^cm@gl@oUkU{h@oj@wc@if@kg@wj@ia@ae@ei@io@wi@wq@qZka@q[gc@iVa^iTs\\{Uu_@uXee@oLaS_Wee@kR}^w\\mp@kP}[}PqZqQwX_Q}UwTgWwS_TeXuUuOkLyNiJaSmLwS_K}LcFcRkHuYyMcZgPaKsGuKoHcN_KuVkToWgWoNiO_NuO{Xy[cl@{p@sm@or@wp@su@u]ca@cHwHuu@i{@gu@o{@eaA}fA{g@cl@yMkOib@ge@yb@uf@u[__@mr@mw@caA_hAibAmiAg_AsfAgw@y{@oYi\\uZi]il@mq@o_@ib@wUkXac@gf@yPuQqi@yo@s[uc@uR{[uSu`@eR{b@aOg_@kLc^aRqn@iOoh@mOyh@s^unA_Nyd@yJmZaG_PsIwSiRua@qVsd@}NsUsQiW}PsSuUeX{^y`@yo@es@yT{VmWiXyiAgnAwWk[iLqOkLqQ}Xeb@}[kk@{r@_mAcx@otAcg@c|@ia@}s@et@{mAia@mr@u]wn@gXqf@_Ugc@uNeXkUcf@iV}d@{Usf@_Tgd@ya@s~@qh@qkAaZcq@aSwd@oYao@wc@wbAm`@}}@}Z_v@eZss@c]yy@i^k}@}j@atA_c@efAot@ogBkp@m_Bup@_`Bea@yaA}`@q`AgW}n@cUij@yc@ufAiUgi@}Og]mRm_@sO_YoQkYaNeR_NgQmTgWqQ}Q_ScRse@ka@{OqM}RgPw_@i[kj@ad@{e@u`@se@a`@ux@yp@ii@oc@cyAimAqwAgkAqdBewAch@cb@cDkCs_@{Zs`A_w@en@og@cFcEku@um@i|@ks@cy@}p@qn@sg@ip@ki@uv@sn@gaAow@q^yY_g@s_@uo@of@am@{d@yr@wh@um@ie@sk@wd@us@uk@{v@_m@maAku@so@kf@whAiz@yUuRwI{HiKmKwJqLcVy[qv@agAqt@aeA}{@cnAubA}vAs{@cnA}r@abAq|@ynAij@{v@yi@iw@we@is@of@iu@seAw_Bwz@uqAgx@gnAup@ybAim@ev@k\\a_@ka@ea@kAiA}FoF}^_]c^gXmc@i]qh@}`@{e@i_@km@ie@eg@m_@sRoNqOkJk\\ePuv@_^ic@sSkk@}VwT_I}XwHeZwGa\\iH{e@mK{n@_M{n@eMuh@}Jmt@}N}a@eIwOcD{VyG}UyImM_GgQaJk_@oSkY{PwpAks@kh@_ZqYoPgi@{Z}`@qUq`@cUmY}Pk`@}T}`@yUk`@kU_f@gYyu@cc@ka@sU_a@kVgq@_`@in@c_@}r@}b@qRoL_bAsm@sz@sh@yz@yh@oVoOOIaa@aWyg@k\\ip@qa@ma@{Wol@e_@_p@eb@u[sSiXgQse@e[kd@iZe|AwbAqhAgu@onAsx@qpAcz@}rA{{@cYcRk[qRkyBowA}xB{uAwEeCiAq@sAs@oGkDmHoDkMsF}OyFiVuGy]mHi[_GkSmFkOwEwPuHyPkJmNaKgLgKyNkNoHoJqLuPyK_R_JmQgGmN{CkIkFmPmDuLgG}UcFuTkFuUmEmQiEaOyDmLkHqPcK_UsKsQeL}PcTeWqN_N{ToPsJeGuPiI_QqH{YwJc[mJ}b@_NeXyJsXaNmQyJsq@qa@sq@y`@ki@s[qd@mXiLaHgIyEeRwKej@uZka@oTaa@aTiYcOuXyN_YyNyYcO{OsIaZyOcFmCoa@oUyWaP}XiOcQwH}PkGaPuDwQyCgMyAaNu@aRAiP\\gJZwZtBuXhBiTdAwUl@}OXkPJmRMgQo@_SyAoQsB{QmCuQiDiQsE{P_F{QmGiPaH_PuH{X{OcW}PmIsGaP_NuK_KsNuN}EqF_NsOm[{_@mc@uh@o[s`@a\\o`@og@en@mg@mm@aa@mf@eb@yg@oWk[oEmFmRkUeUsXcNcOuG}GqKgJ}PwMeWgRcPaMeG}EqMiLyJkKyIuKoImLuJ}OgHwN{JgUmHmSsHmU}C}K{Xa}@mG}OsHgPmFeK{IaOuLsPyM}OsMsMeO{L}OwKoPcJuX}Leb@mQkYsMsOaJsPuKqOsKkOsNcPgP_T{Vwo@gv@kg@sl@}i@wo@k\\u^eS{PyQsNwO_LaMoIgNaImImEsUqLu[kNeQgHiYiL{XcLgZyLICuYoLq\\}M_FyB_a@aPyYyLmc@mQkYqL{a@sPyj@iUaZoLwk@wUik@wUsl@gVqQiHwX{Kuj@gUc[iMe^{N_K_E_XqK}b@}Pw\\gNc^yN}_@oOif@iT_k@gT"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":74781.188},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on A-62.","announcement":"In 1 mile, Keep left to stay on A-62.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A-62.","announcement":"In a half mile, Keep left to stay on A-62.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A-62, E 80.","announcement":"Keep left to stay on A-62, E 80.","distanceAlongGeometry":190}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[19,30,200],"duration":9.545,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.809,"geometry_index":6232,"location":[-4.510006,41.915496]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[14,192],"duration":15.119,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.363,"geometry_index":6237,"location":[-4.509073,41.918012]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":2.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.27,"geometry_index":6249,"location":[-4.506683,41.921722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,222],"duration":36.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.23,"geometry_index":6251,"location":[-4.506112,41.922218]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,190],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.324,"geometry_index":6279,"location":[-4.498417,41.929916]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":15.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.91,"geometry_index":6280,"location":[-4.498347,41.93027]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.473,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.455,"geometry_index":6291,"location":[-4.497006,41.934282]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,204],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.771,"geometry_index":6292,"location":[-4.496934,41.9344]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[30,211],"duration":5.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.746,"geometry_index":6293,"location":[-4.496601,41.934812]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,218],"duration":0.994,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.969,"geometry_index":6296,"location":[-4.495457,41.936039]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,220],"duration":8.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.816,"geometry_index":6297,"location":[-4.495228,41.936239]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,238],"duration":9.93,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.412,"geometry_index":6304,"location":[-4.493064,41.937659]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":0.807,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.768,"geometry_index":6309,"location":[-4.489945,41.939031]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":125.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":116.045,"geometry_index":6310,"location":[-4.489697,41.939144]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":0.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.66,"geometry_index":6368,"location":[-4.45729,41.96215]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,184],"duration":9.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.67,"geometry_index":6369,"location":[-4.457271,41.962349]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,190],"duration":2.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.369,"geometry_index":6374,"location":[-4.456886,41.96493]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[13,191],"duration":69.545,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":62.592,"geometry_index":6375,"location":[-4.456699,41.965623]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[57,63,239],"duration":14.623,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.506,"geometry_index":6417,"location":[-4.439103,41.97836]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,223],"duration":2.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.42,"geometry_index":6424,"location":[-4.435088,41.980904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,220],"duration":4.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.178,"geometry_index":6425,"location":[-4.434492,41.981436]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.43349,41.982422],"geometry_index":6427,"admin_index":1,"weight":4.301,"is_urban":false,"turn_weight":1,"duration":3.674,"bearings":[36,206,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":0.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.484,"geometry_index":6430,"location":[-4.432715,41.983223]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":82.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":72.562,"geometry_index":6431,"location":[-4.432599,41.983343]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.404339,41.990979],"geometry_index":6477,"admin_index":1,"weight":78.346,"is_urban":false,"turn_weight":0.75,"duration":88.701,"bearings":[64,235,245],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,244],"duration":25.582,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.367,"geometry_index":6516,"location":[-4.372299,42.002726]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":119.068,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":104.18,"geometry_index":6526,"location":[-4.364094,42.006061]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":3.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.182,"geometry_index":6577,"location":[-4.329473,42.026068]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":0.197,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.176,"geometry_index":6581,"location":[-4.32839,42.026604]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,239],"duration":19.611,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.643,"geometry_index":6582,"location":[-4.328324,42.026634]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,261],"duration":2.566,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.301,"geometry_index":6597,"location":[-4.321638,42.028609]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,265],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.1,"geometry_index":6599,"location":[-4.320722,42.028673]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,266],"duration":8.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.268,"geometry_index":6600,"location":[-4.317464,42.028863]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.332,"geometry_index":6602,"location":[-4.314569,42.029036]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[85,89,265],"duration":0.613,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.535,"geometry_index":6603,"location":[-4.31404,42.029067]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":20.279,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.252,"geometry_index":6604,"location":[-4.313818,42.02908]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.306418,42.029518],"geometry_index":6613,"admin_index":1,"weight":11.105,"is_urban":false,"turn_weight":1,"duration":11.248,"bearings":[85,256,265],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,246],"duration":0.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.209,"geometry_index":6620,"location":[-4.302455,42.030263]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[65,70,246],"duration":17.887,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.08,"geometry_index":6621,"location":[-4.302372,42.03029]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.296489,42.032315],"geometry_index":6625,"admin_index":1,"weight":36.5,"is_urban":false,"turn_weight":1,"duration":40.578,"bearings":[65,241,245],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":0.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.85,"geometry_index":6637,"location":[-4.284122,42.036565]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":5.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.535,"geometry_index":6638,"location":[-4.283821,42.036668]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-4.282238,42.037208],"geometry_index":6639,"admin_index":1,"weight":17.051,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":19.508,"bearings":[64,245],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":2.496,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.176,"geometry_index":6650,"location":[-4.275478,42.038879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":45.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":39.977,"geometry_index":6651,"location":[-4.274588,42.039065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":1.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.117,"geometry_index":6674,"location":[-4.259595,42.044197]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[37,44,218],"duration":33.002,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.861,"geometry_index":6676,"location":[-4.2593,42.044467]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.250812,42.051017],"geometry_index":6694,"admin_index":1,"weight":75.053,"is_urban":false,"turn_weight":1,"duration":84.641,"bearings":[49,225,229],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[52,55,234],"duration":20.564,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.975,"geometry_index":6746,"location":[-4.227059,42.065512]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.221045,42.068877],"geometry_index":6755,"admin_index":1,"weight":13.064,"is_urban":false,"turn_weight":1,"duration":13.807,"bearings":[53,229,234],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":23.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.156,"geometry_index":6764,"location":[-4.217488,42.07107]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":38.541,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.68,"geometry_index":6778,"location":[-4.21247,42.075564]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,360],"duration":4.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":4.072,"geometry_index":6799,"location":[-4.209725,42.0856]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":21.799,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":19.619,"geometry_index":6800,"location":[-4.209738,42.086831]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.208285,42.092554],"geometry_index":6815,"admin_index":1,"weight":22.359,"is_urban":false,"turn_weight":0.75,"duration":24.018,"bearings":[32,206,211],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,218],"duration":3.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.092,"geometry_index":6834,"location":[-4.202655,42.097515]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,228],"duration":1.783,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.605,"geometry_index":6838,"location":[-4.20176,42.098167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,234],"duration":24.357,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.305,"geometry_index":6840,"location":[-4.201233,42.098458]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":107.441,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":93.994,"geometry_index":6847,"location":[-4.193248,42.101539]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,256],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.545,"geometry_index":6912,"location":[-4.159022,42.116737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,257],"duration":12.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.834,"geometry_index":6913,"location":[-4.158406,42.116845]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,248],"duration":23.922,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.904,"geometry_index":6920,"location":[-4.154107,42.117674]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[59,239],"duration":115.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":101.023,"geometry_index":6937,"location":[-4.147027,42.121536]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":1.084,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.947,"geometry_index":6965,"location":[-4.109578,42.138502]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[48,51,231],"duration":0.451,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.375,"geometry_index":6966,"location":[-4.109255,42.138696]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,228],"duration":97.135,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":84.992,"geometry_index":6967,"location":[-4.109138,42.138775]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-4.082571,42.155638],"geometry_index":7031,"admin_index":1,"weight":41.26,"is_urban":false,"turn_weight":0.5,"duration":45.309,"bearings":[42,220,224],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":1.486,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.338,"geometry_index":7053,"location":[-4.074398,42.165109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,202],"duration":37.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.006,"geometry_index":7054,"location":[-4.074188,42.165485]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":26.076,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.811,"geometry_index":7087,"location":[-4.06486,42.173602]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,241],"duration":136.844,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":119.732,"geometry_index":7104,"location":[-4.055754,42.176966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,222],"duration":0.213,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.17,"geometry_index":7153,"location":[-4.021934,42.199923]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,221],"duration":25.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.617,"geometry_index":7154,"location":[-4.021883,42.199966]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,221],"duration":32.615,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":28.52,"geometry_index":7168,"location":[-4.015488,42.205329]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[31,37,214],"duration":100.51,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":87.926,"geometry_index":7177,"location":[-4.007623,42.212216]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[49,53,229],"duration":1.25,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.088,"geometry_index":7235,"location":[-3.984351,42.234109]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":24.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.076,"geometry_index":7236,"location":[-3.984005,42.234332]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.977275,42.238674],"geometry_index":7242,"admin_index":1,"weight":46.354,"is_urban":false,"turn_weight":0.75,"duration":52.139,"bearings":[48,224,229],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[53,61,233],"duration":38.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.479,"geometry_index":7261,"location":[-3.962257,42.247874]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.950652,42.254406],"geometry_index":7276,"admin_index":1,"weight":21.303,"is_urban":false,"turn_weight":1,"duration":23.223,"bearings":[53,224,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[36,44,217],"duration":62.342,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":54.543,"geometry_index":7287,"location":[-3.944306,42.258671]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.924723,42.266593],"geometry_index":7326,"admin_index":1,"weight":58.744,"is_urban":false,"turn_weight":0.75,"duration":66.301,"bearings":[71,251,254],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":24.357,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.914,"geometry_index":7350,"location":[-3.901416,42.273178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,233],"duration":86.936,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":76.047,"geometry_index":7367,"location":[-3.89305,42.275329]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,237],"duration":22.219,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.426,"geometry_index":7411,"location":[-3.861657,42.286347]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":33.318,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.137,"geometry_index":7416,"location":[-3.854589,42.289888]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.843452,42.295507],"geometry_index":7426,"admin_index":1,"weight":13.844,"is_urban":false,"turn_weight":1,"duration":14.289,"bearings":[56,228,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[55,59,236],"duration":12.457,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.193,"geometry_index":7431,"location":[-3.839048,42.297741]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.835348,42.29977],"geometry_index":7434,"admin_index":1,"weight":4.775,"is_urban":false,"turn_weight":1,"duration":4.217,"bearings":[46,225,229],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":4.576,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.117,"geometry_index":7435,"location":[-3.834242,42.300568]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":2.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.506,"geometry_index":7436,"location":[-3.833049,42.301417]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,226],"duration":9.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.322,"geometry_index":7437,"location":[-3.832336,42.301928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,252],"duration":2.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.516,"geometry_index":7445,"location":[-3.829659,42.303158]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,263],"duration":16.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.068,"geometry_index":7449,"location":[-3.828703,42.303295]},{"bearings":[31,215],"entry":[true,false],"classes":["motorway"],"in":1,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7466,"location":[-3.823623,42.304961]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-62","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-62"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"A-62 / E 80"},"distanceAlongGeometry":74821.188}],"destinations":"A-62: Burgos","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A-62/E 80/Autovía de Castilla toward Burgos.","modifier":"slight left","bearing_after":19,"bearing_before":20,"location":[-4.510006,41.915496]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":2174.609,"duration_typical":2442.074,"duration":2442.074,"distance":74821.188,"driving_side":"right","weight":2174.609,"mode":"driving","ref":"A-62; E 80","geometry":"oei}nAjrgrGkx@cYgUcGs]oIqVwEmVyEoZiHg\\qJkT_IyMgGkNaG{OmI}OyJqV_Q_P}LkOuMoNgNiPaQyQ}SeKwMiOcT{KeQwKqReKmRiJkReJoRgJ{SuOo]mP}]cVad@iL{QsMiR_QuUmNuPuOcQgPaPwRsPsMsKuTqO_UeN}V{MgTwJuQ_H}QkG}RwFiSwEgQgDiT{CcUkCa[sCif@mE_S{BuWqDkUaFgQkE{OsEwT{HcVoJ_ToKiNkHkFoCwXySoRkNcYaVa^a`@oKiMqMoPaKkPyJqNyOwW{O_Z{GoOwFqOaMa[gLc]sPuh@}Rco@{S}m@aFoNeFwNaJ}TcHaPaRoa@mXoi@wTkc@cYgi@a_@}s@sWoj@uR{c@}N{^aNe^yKk\\sIyWmLc`@wOcj@{Kka@aOsl@wSqy@o_@mzA}X_hAu_@ctAqSer@{U_w@eX_z@sOkd@eOec@aM_]sY_w@o[_x@uRye@{Zis@i^iw@oPo]ur@qvA{Vud@eN{UiPuXwZye@mXs^gWgZgNePaSoSwOeOiWgUwWcTo[kUuX}QoYaPod@_U{[kN_X_Kkt@aTss@_Puu@mJ}f@gEmi@yBqn@kBmKe@c{@}DoWoBgVkBq[iD{W}Dij@uJaU}EkX}Ge[mJ{QaGaZgLySoImYsMm]cR_YePcVoOaQyLcTaPgJcHuSeQwTiSuRaRcQ_R{M{N}MaPa\\{a@}SgZqR{Y}R{[cRc\\_Qy\\kVoh@{Tki@uSij@uMi`@gMab@gKs^{L{e@{Ocn@wN{n@_XkiAcQqs@gKca@cEiOkE_PyO_h@yGySmLs\\kKiXaOk^q]qu@mSk^{Tq`@s_@}i@aXy^g`@gd@i]w^i^{]_ViUkNwMuJkJoFgFe^k]cc@}c@m[g_@aT}WmTq[}Rq[sJ_RwJwRaIyQuKyW{H_TgMe`@iHwV{G_XuHo]kCoNcEsVyDaXcEm\\eCcXmBoUyBo\\mAmYgAw^eAyh@s@cd@g@{o@[gr@y@k`Am@{p@mAet@kAed@{Aag@mBme@oCmh@uC_f@{Ccb@gGit@eGim@cDiY_Mu`A_J_m@iHuc@gUaoAqp@}sCiSyx@_Ve~@}Scz@uOom@eXyeAaa@e~AgM}f@mTyz@}Tm|@iW_cAqNoj@c@cB_Pkn@mOyl@gT{y@kOkl@oKgb@yXifAgb@kbB_I{ZkQiq@cU{w@sUsv@sQkm@mPck@mTax@sHgYqN{h@gRqs@oMaf@wLad@}Rwt@kSyu@}L}d@uOgl@iSeu@cMge@iOek@kPan@u[_mAeQsn@iPmk@s]}jAwQ{l@kRqo@uYoaAmRko@yZibAqKw[uPmf@kGyQ{]q}@sU_j@_]ay@}Skg@{[uv@c`@o_Akk@ctA{m@gyAep@i~AaWim@}[uv@{Qmc@gXgo@i\\ow@ca@iaAk]gy@mSae@cO{[_Sia@mXmj@sNsZgXsm@gQmb@}Oy`@uYwu@qQef@wPwb@yO}_@_Rka@wUog@mVqg@oLeUqMsVkLyRc^_i@}U{]yh@}v@aZec@ib@un@o]ch@_V_^}^}i@{]qh@s^qi@iXca@{OyU{PiX{KoSwLqV{EiKqD}HqHgQiGaPaImU{@cCkH}UgM_c@{Kia@yH{WaNeg@oLgc@uFsV}EkUuEyWgDeTaDwVyDc\\aDc\\sA{RmBm\\{@iWcA}_@{JsjEqHg_Dg@uS}@a`@Y{LgCgeAiBkv@qD{_BgA}f@cAy_@[{MwBk|@mAqm@yAmk@aBcm@qCek@aGqm@mEs[gCcPuFeZoK{d@u@eDi`@u_Bei@kyBsY_mAmWseAoOao@sIw]Mk@_XugA}`@uaBoWmfAkYukA_Z}mA}Qyu@mWcfAs`@eaBgWeeAmEyQw`@}aBqBiHkHo[gHc\\kGa[aGy[_Gk]{G}c@uHcl@sKs{@{Jov@wMceAsJsv@}`@w_D{MgeA{OynAiKyy@eJwu@aLi|@{LkaAcEeZmIai@oEyUgIk]mJgZwHqS_IqQgKySyKyReNcU_P}VmVy_@oO}UqNgS{OaToImKaEgFyIeJaSmSal@wj@s\\y[uYiXqQaQ_NuNqKaM_HsJeNcTgVua@eVgb@}U_b@k\\el@{Xef@{Sk_@gZkh@sZai@gPoYmIcOeNgVwKcS}KsTwKmTqJeTmJ_TmHwQcNq^cJqWeHaU_IaXaIkY{Smv@iOej@}Lee@kW{_AgVc}@gSyu@}Oel@aScu@mM}d@kIeW}J}VcG}MkG_MyHkNeMyRqKwNaJkKkNeOoXaXkViUm_@}]yg@_f@ga@u_@e^y\\{b@ea@w\\m[{NqNsP_QwN{PmNoRyLsRqLkSsR_^sYui@}Sq`@oUuc@kRc`@sQq_@wG_OkGmM}JmSw_@mx@{Qm`@}v@gaByTog@sWuk@aT}e@}MwZmH{OuRqc@sRmb@oHaP{LyUMWePeYe]}i@cPuV}OmVqJaNaPcVa\\_c@cX}]i^{e@w\\ud@cPmSgViXuNoNuP}NeLiIyLmHiRqJsRoJa[aM}[mNyTaJmYwLoTcJcZ_Mma@wPma@iP{d@iPuNiEeTkFqPcDeO}Bg[sCs^eA_UYmj@@ag@Fsl@Xk`A^}kAXgqAv@gd@WoTc@wT}@eUwBoLyA{M{B_SmEgPeE_NyEyPoGoRaJeReKgRwLkOkLqJuHeNcMePePaT_XmPkUgNiT}MwUeN}VsOaYyLiTwLiQsKyNsKuKsGaGwQiOaa@q[wPaNsPkO_O}O{FkHaKsNmHwLkJePuI}QoF_MaHyQqK_]cPel@uh@slBwo@e_CsXkbAwd@{bBsW__A_Wu~@yU_{@_Wa~@aU_y@iu@wmCmi@unBiRuq@{V}}@cY{cAgYedAsV_}@}Um{@gRqq@qHeW}GoTwFkPkIkTuJ_UqKiVaKcUqKcVwJiVqIuUgI{W}HuXqGkWaG}YaFsXeEkYyDiZaGag@sGkg@wEaZqF}X{FaXwH{XoIiWqPub@kKaUgKwS}IiP}OqW{MeSyNyR{NqQ{L_N{OaPgQuPuWoVmT_SyTaUcOiQmMuQsMkTuHeNkI}P{GoPqFqOcIeXoFmSmEwSwCyP{B}PoBmQwEoe@iEue@sI}bAgEsg@aDi]mD}X_EyWcKkg@mMmb@aLi[sH_QyEoJmFgJmLaScNkSuM{QgMmQwNcTaMqSmKaTaKeVkJ{VqIyVaZm{@e\\eaAq_@_iAoqBgcGm[k_Ae_@ugAe^meA{\\{bAmVmt@}Xqy@iPuf@qN_b@sS{m@gi@{~Au^}fAiZ{|@}]ieAsb@yoAghDe_KkeAs~C_Tem@uf@yqAy[_{@q`@adAol@{|Aia@{eA_g@kpAiPi_@iLiVyF}KcKeS}CiFmNaVsTu]sL_RoIuK{LuPcGiHcOiQgVmXyNeOoPwOoZyW{a@s\\sb@i\\{j@ic@ea@c\\gPsNqPqOkOkOeH{H_GmGeMsNwLeOkFcGgFkHqHqJoKsOmMmRoGkKqKiQ_NqVoPo[sMmYkF_LmDgIwHiRgL_ZaOeb@gIeXuLib@_M}d@sGeXmXoiAcQ}s@gSiz@oQau@uLsc@eNee@}Muc@yKo[yLk]gPkc@iQuc@_Pm_@uJuTsPe^oKeTkMyVkOyYwLsS{R}\\sKqQgNyS}LmRsu@_eAyJkMoUsXw^ua@iVcWu_@o_@yg@af@eh@if@ah@mf@q\\m[_SeRyN_Ne`@g^cRwP}UwSiXgS}PwLuPsKyc@yUeQiIMG}YuM{}@sa@oVcLkOsH}OeIsO_J}OkJoP}JkOiKeGmD}GgF_W{QcPkMsNuLeN}LaOcNiN{MmNmNmN{NgMmNgUqWuMyPqMoPcLmOyR{XqQmXwMsTsKoQiKaR_Rk]uPa]{JeT}IeSeMyYkLcZgJuVgLc\\_O{b@_HyTsFgSaMyd@aJq^uHq\\mH{\\qKug@wLsh@iJy`@eGmWsKeb@iKe`@}HgY_L_`@mYa`AoMu`@_Mg_@aN}_@uXqu@sMq]yOk`@aUki@uOq_@ePg]mUyg@oKuTcVge@kd@q|@e_@at@qZil@k]yp@e]gp@sg@gbAmj@cfASa@q[{m@me@w}@uVmf@qWcg@sd@i}@sWog@kRy^yQu\\mSs]oOyViPqV}L_QsT_ZuSoXiOmRoR}Vkd@ul@q^md@ol@}v@im@mw@i_@ie@i_A_mAs~@alAml@{v@o`AymAsZg`@ml@sv@s`AcnAcl@av@uAeBoNiQmWg]_TkXkLeOg]oc@u\\_c@kUsYi[s`@uNoQoR{UyWa\\e\\ia@ua@qg@kYo^cWwZ{|CswDky@icAwb@yh@ec@ai@yj@_r@c\\k_@eUmU_VeT{GeF{FiEwOyKuOaKyOqIwOgIiPiHoa@sO{QiFiP_E{ZaG_[aEuZ{C_[eC}YeCcRmBgQyBsQyCwPoD}PcEeQgFsQsG}OkGwOmHwPoIeXcP{OyKuMsJ{N{LyNiMmFqFeN{NeM}NwLkOsLkP{IyMwNoUyKuRwWie@iXef@sUya@og@m}@}^qp@sRq]w^yo@wj@ebAgXif@gaAoeBs]on@{b@mv@yWef@eLaS}b@iv@y~@eaBsUcb@cz@}zAqd@wx@w]wn@}LsTcKwQu|AuoCehAqpBcc@cw@_b@_u@gTo`@sWid@gp@qlAkUa`@}o@{jAuc@ex@ke@sz@wd@wx@g^yo@mf@_~@cUyc@gRm_@oQs_@g[cp@}Ou\\ag@}dA}]}t@mQi_@oXel@iYkm@{GsNyWcj@kg@weA{V_i@cV_h@wVki@w[gr@ea@g|@e\\is@eKmTmJiSi_@_y@c`@yy@kw@ycB{Xgm@gfAq~BwUyf@_Q{]{JuQwLeTy`@eo@mS}YcTwXeTsVcPoQgNoNgUyTkVuTcv@{s@qXoXmQqRaO_QuMmPwL_PmQmWyJuN{Rc[gYih@iQe^mPk^}No_@aKoW{Kq\\aKm[qIuX_Loc@mK}d@{FyX}E_X{EoXiEcXqGef@mG_m@cFak@oBe[iBiZmBqc@mD}x@{Am`@oB_d@uBub@{E}q@kCmY{D}^yHum@{H{f@yL{q@aNoo@eR{y@oRm{@s[cwAy\\i{A}WakAwk@_iC}UueA}e@qwBuVshAc^i~AwIg`@yEeV{Mst@_FsZqFw^qLs_AyJsdAiBqVeDsd@qD}n@{As]mBor@yAqm@gAwYgB__@gCm_@aFug@mCkTmJmn@wGc]_EuP}FoVyKa`@kI}WaIeToJ_WwKqUiNaZ_W_d@_N_T{PiXeMwS_LoQ}I{OeKmSsNsZoJgUkJqVaIwUwGaUqHcXkIy]mGg[yGia@aGib@wFwd@cKoz@wK}|@{Kg~@mNykAqP{{AkK_dAeHiq@mHgn@mLe|@wNc_AuGo_@kOsx@eEkSkQgz@_Kgc@oGaXcIuZwI{\\wJk]wLua@eSym@y~@anCw`@giAod@wqAss@ioByNg`@{n@o}AoPgb@eZou@}iAeuCyt@ijBcf@mlAw^a~@kTgi@kVam@sh@arAerBucF?Ay`@qaAaWon@{Skh@oVwm@iOi_@aa@cbAo`@m`Ag_@s~@gv@ekBwe@sgAy_@mq@{p@cdAat@qiA}^qk@mWmc@sHcOuGaN_KwZ{DoMoDkOkDaQkD_VoAeLaAwKcAeM{@sRYkLsBa}@g@{R_AgR{AaSyBeT_EuTqCeNsBkIyBcH{DoLoHuQcL_UkJ}PkJmKoJiK_HmGaK}HsJuGcJeFeQeHkYiJuUcGgXsGyGoBeRyGmQsI"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":5854.386},{"ssmlAnnouncement":"In 1 mile, Take exit 4.","announcement":"In 1 mile, Take exit 4.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take exit 4.","announcement":"In a half mile, Take exit 4.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 4 onto BU-30 toward Burgos (oeste), León.","announcement":"Take exit 4 onto BU-30 toward Burgos (oeste), León.","distanceAlongGeometry":200}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[27,42,203],"duration":15.201,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":13.674,"geometry_index":7476,"location":[-3.822247,42.307741]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,250],"duration":1.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.619,"geometry_index":7492,"location":[-3.818185,42.310401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":15.861,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.273,"geometry_index":7494,"location":[-3.817584,42.310509]},{"bearings":[114,297],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7509,"location":[-3.812144,42.309738]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Burgos (oeste)"},{"type":"text","text":"/"},{"type":"text","text":"León"}],"type":"off ramp","modifier":"right","text":"Burgos (oeste) / León"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"4"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"BU-30","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"BU-30"}],"type":"off ramp","modifier":"right","text":"Exit 4 BU-30"},"distanceAlongGeometry":5884.386}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A-62/E 80/Autovía de Castilla.","modifier":"slight left","bearing_after":27,"bearing_before":23,"location":[-3.822247,42.307741]},"speedLimitSign":"vienna","name":"Autovía de Castilla","weight_typical":171.52,"duration_typical":190.588,"duration":190.588,"distance":5884.386,"driving_side":"right","weight":171.52,"mode":"driving","ref":"A-62; E 80","geometry":"yhguoAlihhFmGyDoNaJeHgFcKoI{I{I}M{NwHiJyNsTeHyLgKoSuHmQoFyNkHuTsFcTyFqWeEsVoC{UgAuMwB}Vw@kSWoR[aZTyXd@{Q|@gPhAiPdA{LfBgNtAiKvD_WnH_`@fM{g@pJq]tJub@tHk`@lHad@bIkj@`QurAjJ{w@nGqk@rCmYnHgu@lHmx@~OmxB|IarAjCgf@vC}s@tBcb@tDwcAbAi_@vBix@fDapArCc|@pDieA~A{`@vC{s@bEo`AbCme@pDms@dF}_A~D{r@nJuvApGs`AlEmm@VgDlHe`AlHu|@lEaf@rIsaAvL_wAvFoq@|G_}@dRuiChSagDxDiw@fFy_AjJw}BfCar@fCcs@lBck@pDksAvCcoAhBu~@`BwaAj@au@\\oy@NuqAa@wlAe@ot@gAk_AqB}jAgA}b@"},{"ref":"BU-30","mode":"driving","weight":193.207,"distance":5027.815,"geometry":"_d_uoA|xadFc@uj@s@sa@{Aoa@sAa_@c@aMa@cLW_HSwG^mK`@cDfA}DxAcDvBsC`CiBdB_AlBc@zBOhBElAHpATdCx@jBvAtBdC|AbCjAhD`AdDh@xE`@pF`@bKDxLKlVg@~Xo@rK_@jGcAjMmBlPeC`RmCjNuC`LuFbOcDxHaDdGuEvG_CdDmEzEsKvJaJxF{I|DgGrB{G~AsCn@cGd@uHZgHC{FWuHs@kHoAya@gJgQaEsKsBwG}@oM_A}EFmFPyIx@uGtAqF~AcDfAcDxAaD~AeEfC}DfCuD~CyDlDuCrCqDbEwDdE{FrG{LrNeL~L_ExDsFdFaFnDcGrEwDjCkJ`GiNbJ{K~GeKpHoM|ImUbSoLhKgMlM}GnHqUn[kQ|Sck@hr@w\\r`@ee@hg@a^f]oWvUwWlT_XfSeVpPcu@pd@}cArl@ogBneA}i@|\\ys@ve@g{BjcBklBpdBueA`jAgbA~iA_lBhgC}i@~w@or@|iAyn@fiAse@t|@cYdf@uXbi@e[`m@_b@fw@aa@nv@wXzf@","duration":206.701,"driving_side":"right","duration_typical":206.701,"weight_typical":193.207,"name":"Circunvalación de Burgos","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 4 onto BU-30 toward Burgos (oeste)/León/Polígono industrial de Villalonquejar.","modifier":"slight right","bearing_after":88,"bearing_before":85,"location":[-3.753375,42.303568]},"speedLimitUnit":"km/h","destinations":"BU-30, N-120, A-231: Burgos (oeste), León, Polígono industrial de Villalonquejar","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Vitoria"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"A-1"},"distanceAlongGeometry":5027.815}],"exits":"4","voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4994.481},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on BU-30.","announcement":"In 1 mile, Keep right to stay on BU-30.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on BU-30.","announcement":"In a half mile, Keep right to stay on BU-30.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on BU-30 toward Vitoria.","announcement":"Keep right to stay on BU-30 toward Vitoria.","distanceAlongGeometry":253.333}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[84,88,265],"duration":11.67,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":10.494,"geometry_index":7568,"location":[-3.753375,42.303568]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":4.143,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":3.729,"geometry_index":7571,"location":[-3.75157,42.303658]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":1.154,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":1.039,"geometry_index":7573,"location":[-3.750832,42.303718]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,264],"duration":21.527,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":19.375,"geometry_index":7574,"location":[-3.750622,42.303735]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[98,280],"duration":10.584,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":9.525,"geometry_index":7601,"location":[-3.75172,42.302911]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[123,307],"duration":5.188,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":4.67,"geometry_index":7608,"location":[-3.753381,42.303352]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[145,333],"duration":46.893,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":41.031,"geometry_index":7614,"location":[-3.75419,42.303991]},{"bearings":[137,142,320],"entry":[false,false,true],"classes":["motorway"],"in":0,"turn_weight":11,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"geometry_index":7663,"location":[-3.758152,42.311998]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 10 miles.","announcement":"Continue for 10 miles.","distanceAlongGeometry":15314.256},{"ssmlAnnouncement":"In 2 miles, Keep right to take exit 24.","announcement":"In 2 miles, Keep right to take exit 24.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 24.","announcement":"In a half mile, Keep right to take exit 24.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 24 onto A-1 toward Villafría, Vitoria. Then Keep left to take A-1.","announcement":"Keep right to take exit 24 onto A-1 toward Villafría, Vitoria. Then Keep left to take A-1.","distanceAlongGeometry":323.333}],"intersections":[{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[131,313,318],"duration":12.252,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":2,"weight":11.016,"geometry_index":7692,"location":[-3.782408,42.334694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[143,323],"duration":4.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":3.74,"geometry_index":7697,"location":[-3.785392,42.337223]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,329],"duration":0.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":0.742,"geometry_index":7701,"location":[-3.786259,42.338161]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[149,330],"duration":13.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":11.9,"geometry_index":7702,"location":[-3.786414,42.338349]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[154,334],"duration":9.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":8.621,"geometry_index":7707,"location":[-3.788585,42.341487]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[155,337],"duration":3.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.891,"geometry_index":7709,"location":[-3.790041,42.34373]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[159,343],"duration":5.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":5.133,"geometry_index":7711,"location":[-3.790458,42.344501]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[167,348],"duration":15.85,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.662,"geometry_index":7713,"location":[-3.79082,42.345461]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.791144,42.348289],"geometry_index":7720,"admin_index":1,"weight":1.742,"is_urban":false,"turn_weight":0.75,"duration":1.08,"bearings":[1,175,180],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,181],"duration":2.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.877,"geometry_index":7721,"location":[-3.791138,42.34854]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[181,359],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":7.227,"geometry_index":7723,"location":[-3.79113,42.349017]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[180,359],"duration":15.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":14.207,"geometry_index":7727,"location":[-3.79115,42.35085]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":1.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.84,"geometry_index":7738,"location":[-3.790321,42.354808]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":25.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.215,"geometry_index":7740,"location":[-3.790076,42.355297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":36.654,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":33.906,"geometry_index":7762,"location":[-3.7845,42.360291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,249],"duration":105.381,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":102.748,"geometry_index":7772,"location":[-3.773144,42.365694]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,274],"duration":8.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":8.301,"geometry_index":7801,"location":[-3.738955,42.378419]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":15.787,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.787,"geometry_index":7802,"location":[-3.73594,42.378208]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,256],"duration":2.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.234,"geometry_index":7807,"location":[-3.730183,42.378573]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,255],"duration":33.619,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.453,"geometry_index":7808,"location":[-3.729406,42.378723]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,257],"duration":49.355,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":48.113,"geometry_index":7818,"location":[-3.718333,42.380915]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[74,77,254],"duration":0.375,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.348,"geometry_index":7859,"location":[-3.701579,42.384669]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,254],"duration":13.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.488,"geometry_index":7860,"location":[-3.701446,42.384698]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,262],"duration":6.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.934,"geometry_index":7881,"location":[-3.696597,42.385314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,262],"duration":4.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.605,"geometry_index":7883,"location":[-3.69423,42.385541]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,263],"duration":0.793,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.732,"geometry_index":7887,"location":[-3.692448,42.385711]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,262],"duration":10.404,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.363,"geometry_index":7888,"location":[-3.692158,42.38574]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.688674,42.386046],"geometry_index":7897,"admin_index":1,"weight":1.213,"is_urban":false,"turn_weight":1,"duration":0.242,"bearings":[87,262,266],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,267],"duration":10.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.508,"geometry_index":7898,"location":[-3.688588,42.386049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":17.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.957,"geometry_index":7915,"location":[-3.684809,42.385725]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.678721,42.384256],"geometry_index":7925,"admin_index":1,"weight":4.676,"is_urban":false,"turn_weight":1,"duration":4.092,"bearings":[107,286,287],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,287],"duration":12.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.465,"geometry_index":7926,"location":[-3.677347,42.383945]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,294],"duration":1.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.371,"geometry_index":7935,"location":[-3.673176,42.382753]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[113,295],"duration":18.67,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":16.803,"geometry_index":7936,"location":[-3.672693,42.382587]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,304],"duration":16.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.891,"geometry_index":7944,"location":[-3.667151,42.380194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,310],"duration":0.916,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.848,"geometry_index":7950,"location":[-3.662608,42.37757]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[130,144,310],"duration":16.24,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.422,"geometry_index":7951,"location":[-3.662357,42.377415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,287],"duration":10.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.496,"geometry_index":7962,"location":[-3.657396,42.375254]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":3.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.377,"geometry_index":7968,"location":[-3.653602,42.374803]},{"bearings":[96,275,277],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7970,"location":[-3.652369,42.37469]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Villafría"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Villafría / Vitoria"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"Exit 24 A-1"},"distanceAlongGeometry":15347.589},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Villafría"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Villafría / Vitoria"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"24"},{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"}],"type":"fork","modifier":"right","text":"Exit 24 A-1"},"distanceAlongGeometry":3218.688}],"destinations":"A-1, A-73, N-120: Vitoria, Santander, aeropuerto, Logroño","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on BU-30 toward Vitoria.","modifier":"slight right","bearing_after":318,"bearing_before":311,"location":[-3.782408,42.334694]},"speedLimitSign":"vienna","name":"","weight_typical":500.803,"duration_typical":525.605,"duration":525.605,"distance":15347.589,"driving_side":"right","weight":500.803,"mode":"driving","ref":"BU-30","geometry":"k}{voAnozeF{S~Wmk@j|@ou@h|@i_@z_@}D|DqLvLwQdQoKxIyLlJwJtHwq@rf@gr@fb@gj@|[qc@nUiMjHmtAxv@wu@db@wUdLmXzKwb@xMgWxFwCp@aZ~Em]|D}ZpAq]d@uWv@i^FuNKcEEuVIeCAmf@^_]J}g@A_MJi[YuZ_AeXmBuTmBmNoBkKiBcZqEg\\kHi]iK_OmFwM{EyNmG{X_NyTcM{MwI}JoGyNsKoJmHqO{LaOeNgHcHgGeGsFyF{McOgKwLcOoRmKeO_IuLsIyM_IoMgHgMyMiWyKwTk\\_v@yOo]{W{i@m]st@uo@inAus@}oAmg@ojAc_@_bAog@ciBam@_{CaD{Py]_lBkYchAsTmw@iQ}i@wn@c~Aww@g{Amp@oiAgm@idAoo@_vAsV}l@qSan@cb@kxA{p@idCqRem@_V}o@}l@esAk\\iq@iVqf@ua@adAyd@erAw\\onAmTscA}Oe}@oG}j@aO_xAwJczAoDcgBEawAnBmhAdLm{DdB_w@QarA_HqoBiLyzAcBkOkHqo@yQe|AqSsbBc`@wjDab@waDuDu\\sC{XmByTkC{T{BcUmFkj@iIihAoHuvAeGycBmE_kAaAmUoGms@sEoe@mHoi@{Eg_@_Hce@kHid@yH__@_Nyj@wMgf@aIuXkCeJiCgJmCmJkCcJ}CoKyBcIqC}JkCkJiCmJcCcJiCeK_CmJ_CuJ}BwJwBwJuBuJqByJqB_KkBaKkBaKgBkKyAsJaBeK{AeK{AiKsAkKy@iG]mCmAcKeA_KmA{KcAoK_AiK_AwKy@mKy@qKs@mKq@}Km@qKm@wKk@sKi@wKg@wKi@qKg@mKg@iLiA}WsC_n@cDov@aHm{AmAiY{Bke@mAuX{@_Ty@cQyBkd@qBad@{Bih@iBob@i@uM_@qK[_KWqLSuLEkDEuEGsK?{NDcNNiSN{KZgLVaKb@uLf@}Kh@eKt@aLnBwXz@aKhAaLhAcKnAoKtAkKtAwJ~AsKbBcKfBoKpKeo@pKap@bH}c@~K{v@x\\a`ClR{tA|G_d@~Gac@bIkd@xE{VbF_WlLcj@lHq\\dGoXl@eCjIe]zKqg@dX{~@vPsg@rNqc@jQsg@xPqf@pO{`@jXuq@xN_\\ne@seAzUmi@pPc\\rNcYrt@suAtHuNpa@mw@lOyZdNkZzLm]|IiX`HyUjFiS~FmW`EiSjEyUdF__@dAqHrFah@rDki@vB{d@nDu_AnBqh@JgCtEygA`EwhAtEeoA"},{"voiceInstructions":[{"ssmlAnnouncement":"Keep left to take A-1, Autovía del Norte toward Villafría.","announcement":"Keep left to take A-1, Autovía del Norte toward Villafría.","distanceAlongGeometry":233.333}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true},{"indications":["right"],"valid_indication":"right","valid":true,"active":true}],"location":[-3.649906,42.374486],"geometry_index":7972,"admin_index":1,"weight":2.064,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.127,"bearings":[94,99,276],"out":1,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,279],"duration":8.471,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":8.26,"geometry_index":7973,"location":[-3.649308,42.374419]},{"bearings":[108,287],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":7981,"location":[-3.646931,42.374073]}],"exits":"24","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Villafría"}],"type":"fork","modifier":"left","text":"Villafría"},"distanceAlongGeometry":330.595}],"destinations":"A-1, E-5, AP-1, N-I: Villafría, Vitoria, Burgos, C/Vitoria","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 24 onto A-1 toward Villafría/Vitoria.","modifier":"slight right","bearing_after":99,"bearing_before":96,"location":[-3.649906,42.374486]},"speedLimitSign":"vienna","name":"","weight_typical":13.754,"duration_typical":14.027,"duration":14.027,"distance":330.595,"driving_side":"right","weight":13.754,"mode":"driving","geometry":"ktiyoAbvw}EdCkd@p@aM|@aUv@iPxAyTrAiQfBgR`C_SrBwNh@yDfBcL|BqLlGwW"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":4546.67},{"ssmlAnnouncement":"In 1 mile, Keep right to take exit 251.","announcement":"In 1 mile, Keep right to take exit 251.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take exit 251.","announcement":"In a half mile, Keep right to take exit 251.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take exit 251 onto N-I toward Villafría Rubena, Vitoria.","announcement":"Keep right to take exit 251 onto N-I toward Villafría Rubena, Vitoria.","distanceAlongGeometry":204.444}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[115,120,295],"duration":15.441,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":15.422,"geometry_index":7985,"location":[-3.646015,42.373802]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[118,300],"duration":6.172,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":6.172,"geometry_index":7996,"location":[-3.642089,42.37206]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[111,294],"duration":7.564,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":7.564,"geometry_index":7999,"location":[-3.640249,42.371411]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,285],"duration":0.873,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.873,"geometry_index":8003,"location":[-3.637855,42.370826]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,285],"duration":12.873,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":12.551,"geometry_index":8004,"location":[-3.637572,42.370769]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,272],"duration":8.98,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":8.758,"geometry_index":8011,"location":[-3.6333,42.370404]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-3.630362,42.37055],"geometry_index":8016,"admin_index":1,"weight":5.355,"is_urban":false,"turn_weight":0.5,"duration":5.135,"bearings":[83,259,266],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"location":[-3.628653,42.370721],"geometry_index":8019,"admin_index":1,"weight":13.783,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"yield_sign":true,"out":0,"in":1,"classes":["motorway"],"duration":14.508,"bearings":[82,262],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.623878,42.371455],"geometry_index":8030,"admin_index":1,"weight":18.193,"is_urban":false,"turn_weight":11,"duration":7.789,"bearings":[66,240,249],"out":0,"in":1,"turn_duration":0.011,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,245],"duration":46.189,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":42.725,"geometry_index":8032,"location":[-3.621345,42.372301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[87,268],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.023,"geometry_index":8069,"location":[-3.605105,42.373172]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,267],"duration":1.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.174,"geometry_index":8070,"location":[-3.604318,42.373204]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":3.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.172,"geometry_index":8071,"location":[-3.603871,42.373244]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[79,261],"duration":2.666,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.465,"geometry_index":8074,"location":[-3.602664,42.373368]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.828,"geometry_index":8076,"location":[-3.601745,42.373509]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,251],"duration":3.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.17,"geometry_index":8080,"location":[-3.599614,42.373948]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,248],"duration":6.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.465,"geometry_index":8082,"location":[-3.598498,42.37427]},{"bearings":[55,242],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":8086,"location":[-3.596352,42.375069]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Villafría Rubena"},{"type":"text","text":"/"},{"type":"text","text":"Vitoria"}],"type":"fork","modifier":"right","text":"Villafría Rubena / Vitoria"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"251"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-I","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-I"}],"type":"fork","modifier":"right","text":"Exit 251 N-I"},"distanceAlongGeometry":4573.337}],"destinations":"Villafría","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A-1/Autovía del Norte toward Villafría.","modifier":"slight left","bearing_after":115,"bearing_before":115,"location":[-3.646015,42.373802]},"speedLimitSign":"vienna","name":"Autovía del Norte","weight_typical":165.773,"duration_typical":162.992,"duration":162.992,"distance":4573.337,"driving_side":"right","weight":165.773,"mode":"driving","ref":"A-1","geometry":"sihyoA|bp}ExDsOzF_TfFyOlIkUnK_Y`FcMlEiLpJiVdJiWlLq^hN}b@bIiX|K{b@nPyt@tIqd@vGc`@vG{d@jGah@pBuPvBwVfD{a@xBg_@`Bo\\jC}v@b@gZl@m~@B{[o@_m@_A}`@eCum@q@c[aA{T}Cqq@uBka@eAaSaDos@mB_c@yBic@wAkWwCg`@wDm_@aFu^oAcHqAaH_EsLsf@mvBgL{e@kJcb@{H{^aH}]eF{Y}Gid@yEm^wCqXoBsQiBkSwBoX_BwUu@iMy@wPcAgTc@yLk@wQs@wZ[wRMkUOe\\Fab@RsT\\eUh@mVzA}d@pAc_@x@eZfB{]xBih@dCyn@bBeg@^aRd@gXn@s`@JyPNic@S{^_Aep@oA}ZiAwYcA{QiBy\\iFwo@o@uGyCuZqBgUiE{^wKkr@uCaRmNuq@{Jy`@iIo\\{Ky_@{M_e@mTai@}Og`@sQ}`@sPe[_Tw]yIeO"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Enter Carretera de Madrid a Irún and take the 2nd exit.","announcement":"In a quarter mile, Enter Carretera de Madrid a Irún and take the 2nd exit.","distanceAlongGeometry":419.066},{"ssmlAnnouncement":"Enter the roundabout and take the 2nd exit.","announcement":"Enter the roundabout and take the 2nd exit.","distanceAlongGeometry":160}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[44,47,228],"duration":1.461,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":1,"weight":1.297,"geometry_index":8092,"location":[-3.593402,42.376772]},{"entry":[true,false],"in":1,"bearings":[47,227],"duration":5.92,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":5.328,"geometry_index":8093,"location":[-3.593237,42.376884]},{"entry":[true,false],"in":1,"bearings":[46,227],"duration":23.439,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":21.096,"geometry_index":8095,"location":[-3.592579,42.377336]},{"bearings":[46,226],"entry":[true,false],"in":1,"yield_sign":true,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":8102,"location":[-3.590022,42.379173]}],"exits":"251","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Enter Carretera de Madrid a Irún and take the 2nd exit"}],"degrees":115,"driving_side":"right","type":"roundabout","modifier":"right","text":"Enter Carretera de Madrid a Irún and take the 2nd exit"},"distanceAlongGeometry":445.733}],"destinations":"N-I, E-5 AP-1: Villafría Rubena, Vitoria","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take exit 251 onto N-I toward Villafría Rubena/Vitoria.","modifier":"slight right","bearing_after":47,"bearing_before":48,"location":[-3.593402,42.376772]},"speedLimitSign":"vienna","name":"","weight_typical":32.041,"duration_typical":35.621,"duration":35.621,"distance":445.733,"driving_side":"right","weight":32.041,"mode":"driving","geometry":"gcnyoArjizE_FiIaOuVeKmPiNyT}]}j@uWq`@wLwQaIkL{KeQeFeIqD{F{I_Ns@_BcA}B}@mC"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto E 05, E 80.","announcement":"Exit the roundabout onto E 05, E 80.","distanceAlongGeometry":41.953}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[104,233,300],"duration":3.795,"turn_weight":11,"turn_duration":0.194,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":1,"out":0,"weight":14.24,"geometry_index":8107,"location":[-3.589474,42.379527]},{"entry":[true,true,false],"in":2,"bearings":[83,146,284],"duration":3.449,"turn_duration":0.09,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":1,"out":0,"weight":3.023,"geometry_index":8110,"location":[-3.589189,42.379475]},{"bearings":[62,199,260],"entry":[true,false,false],"in":2,"turn_duration":0.071,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":false,"admin_index":1,"out":0,"geometry_index":8113,"location":[-3.588852,42.379514]}],"rotary_name":"Carretera de Madrid a Irún","destinations":"E 05","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"degrees":115,"driving_side":"right","type":"roundabout","modifier":"right","text":"E 05"},"distanceAlongGeometry":68.62}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":2,"instruction":"Enter Carretera de Madrid a Irún and take the 2nd exit.","modifier":"right","bearing_after":104,"bearing_before":53,"location":[-3.589474,42.379527]},"speedLimitSign":"vienna","name":"","weight_typical":18.883,"duration_typical":9.115,"duration":9.115,"distance":68.62,"driving_side":"right","weight":18.883,"mode":"driving","geometry":"mosyoAbuazEt@eE`@mDNeEAeG[mEo@mEcAqF_AcB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 57 miles.","announcement":"Continue for 57 miles.","distanceAlongGeometry":92425.008},{"ssmlAnnouncement":"In 1 mile, Keep left to take A-1.","announcement":"In 1 mile, Keep left to take A-1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A-1.","announcement":"In a half mile, Keep left to take A-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A-1, E 05.","announcement":"Keep left to take A-1, E 05.","distanceAlongGeometry":200}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[45,97,242],"duration":1.646,"turn_duration":0.072,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":1,"weight":1.418,"geometry_index":8115,"location":[-3.588681,42.37958]},{"entry":[true,false],"in":1,"bearings":[105,277],"duration":2.025,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":1.822,"geometry_index":8116,"location":[-3.588508,42.379565]},{"entry":[true,false,true],"in":1,"bearings":[120,285,329],"duration":0.201,"turn_duration":0.02,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.162,"geometry_index":8117,"location":[-3.588297,42.379523]},{"entry":[true,false],"in":1,"bearings":[122,300],"duration":0.967,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.869,"geometry_index":8118,"location":[-3.588276,42.379514]},{"entry":[true,false],"in":1,"bearings":[121,302],"duration":1.303,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":1.172,"geometry_index":8120,"location":[-3.588164,42.379463]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":2.299,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":2.068,"geometry_index":8122,"location":[-3.587992,42.379386]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":4.416,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":3.973,"geometry_index":8123,"location":[-3.58768,42.379248]},{"entry":[true,false],"in":1,"bearings":[121,301],"duration":0.4,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.354,"geometry_index":8124,"location":[-3.587003,42.37895]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-3.586943,42.378923],"geometry_index":8125,"admin_index":1,"weight":7.711,"is_urban":false,"turn_weight":0.75,"duration":7.742,"bearings":[118,124,301],"out":1,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[false,true,false]},{"entry":[true,true,true,false],"classes":["motorway"],"in":3,"bearings":[122,132,256,302],"duration":5.854,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":5.252,"geometry_index":8127,"location":[-3.58576,42.378359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,302],"duration":5.152,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":4.637,"geometry_index":8128,"location":[-3.5848,42.377908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,300],"duration":1.039,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":0.936,"geometry_index":8129,"location":[-3.584035,42.377582]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,302],"duration":12,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":0,"weight":10.801,"geometry_index":8130,"location":[-3.583898,42.377519]},{"entry":[false,true],"bearings":[74,281],"duration":45.199,"classes":["motorway"],"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":1,"out":1,"weight":40.68,"geometry_index":8144,"location":[-3.58405,42.376551]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.582745,42.381096],"geometry_index":8167,"admin_index":1,"weight":17.539,"is_urban":false,"turn_weight":11,"duration":7.275,"bearings":[7,184,191],"out":0,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":1.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.574,"geometry_index":8171,"location":[-3.582537,42.383066]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,184],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.119,"geometry_index":8172,"location":[-3.582493,42.383528]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,200],"duration":0.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.818,"geometry_index":8181,"location":[-3.581675,42.386181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,202],"duration":93.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":82.246,"geometry_index":8182,"location":[-3.581548,42.386409]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[68,75,247],"duration":0.721,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.625,"geometry_index":8241,"location":[-3.556026,42.403125]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,248],"duration":34.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.609,"geometry_index":8242,"location":[-3.555786,42.403196]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.543616,42.405255],"geometry_index":8264,"admin_index":1,"weight":93.793,"is_urban":false,"turn_weight":1,"duration":106.07,"bearings":[66,239,248],"out":0,"in":2,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,259],"duration":8.939,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.822,"geometry_index":8329,"location":[-3.510713,42.424902]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,252],"duration":23.9,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":20.895,"geometry_index":8334,"location":[-3.507183,42.4255]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,207],"duration":37.439,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":32.76,"geometry_index":8352,"location":[-3.500155,42.430148]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":30.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.381,"geometry_index":8379,"location":[-3.49369,42.439976]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.318,"geometry_index":8396,"location":[-3.485032,42.446337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,244],"duration":16.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":14.699,"geometry_index":8401,"location":[-3.482553,42.447369]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.184,"geometry_index":8412,"location":[-3.477053,42.45029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,229],"duration":42.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.908,"geometry_index":8413,"location":[-3.476988,42.450332]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[64,246],"duration":41.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":36.408,"geometry_index":8441,"location":[-3.460775,42.453339]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,197],"duration":2.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.885,"geometry_index":8464,"location":[-3.450049,42.462531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,196],"duration":2.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.539,"geometry_index":8465,"location":[-3.449836,42.463086]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[14,18,195],"duration":25.641,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":23.059,"geometry_index":8466,"location":[-3.449562,42.463838]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,220],"duration":338.02,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":304.209,"geometry_index":8484,"location":[-3.445082,42.470668]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,38,214],"duration":27.158,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":24.436,"geometry_index":8662,"location":[-3.336983,42.523797]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.330364,42.529116],"geometry_index":8675,"admin_index":1,"weight":12.193,"is_urban":false,"turn_weight":1,"duration":12.119,"bearings":[54,228,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,246],"duration":3.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.176,"geometry_index":8682,"location":[-3.326543,42.530744]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,250],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.902,"geometry_index":8685,"location":[-3.325384,42.53109]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[73,79,250],"duration":0.174,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.152,"geometry_index":8686,"location":[-3.325056,42.531176]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":12.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.914,"geometry_index":8687,"location":[-3.324993,42.53119]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,263],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.91,"geometry_index":8695,"location":[-3.320355,42.531912]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":13.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.719,"geometry_index":8696,"location":[-3.320001,42.531942]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.315385,42.532589],"geometry_index":8704,"admin_index":1,"weight":206.957,"is_urban":false,"turn_weight":1,"duration":235.404,"bearings":[67,249,252],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[49,53,228],"duration":25.537,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":22.338,"geometry_index":8816,"location":[-3.248469,42.581702]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,234],"duration":264.469,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":231.395,"geometry_index":8825,"location":[-3.240268,42.586385]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[96,106,277],"duration":25.02,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":21.875,"geometry_index":8981,"location":[-3.15138,42.624864]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,272],"duration":68.988,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":60.346,"geometry_index":8996,"location":[-3.14249,42.623409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,258],"duration":0.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.539,"geometry_index":9029,"location":[-3.117678,42.621953]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[76,86,258],"duration":13.301,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":11.951,"geometry_index":9030,"location":[-3.117461,42.621988]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,235],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.08,"geometry_index":9041,"location":[-3.113148,42.623423]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,233],"duration":8.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.92,"geometry_index":9042,"location":[-3.112798,42.623619]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.110626,42.625361],"geometry_index":9047,"admin_index":1,"weight":4.746,"is_urban":false,"turn_weight":0.75,"duration":4.463,"bearings":[33,208,215],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,207],"duration":0.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.734,"geometry_index":9050,"location":[-3.109818,42.626383]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":19.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":17.947,"geometry_index":9051,"location":[-3.109708,42.626578]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":7.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.703,"geometry_index":9061,"location":[-3.108832,42.631554]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[14,191],"duration":5.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":5.344,"geometry_index":9065,"location":[-3.108485,42.633425]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,194],"duration":35.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":30.961,"geometry_index":9066,"location":[-3.108021,42.634819]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[47,230],"duration":8.842,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.738,"geometry_index":9090,"location":[-3.098248,42.639259]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,227],"duration":14.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":12.689,"geometry_index":9091,"location":[-3.09599,42.640814]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[46,224],"duration":5.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.57,"geometry_index":9098,"location":[-3.092524,42.643672]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[65,245],"duration":3.324,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.902,"geometry_index":9102,"location":[-3.091058,42.644433]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,258],"duration":51.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":44.873,"geometry_index":9104,"location":[-3.089969,42.644686]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[84,92,266],"duration":30.604,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":26.76,"geometry_index":9132,"location":[-3.073879,42.650631]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.063323,42.652848],"geometry_index":9148,"admin_index":1,"weight":6.416,"is_urban":false,"turn_weight":1,"duration":6.209,"bearings":[56,227,237],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":2.389,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.09,"geometry_index":9150,"location":[-3.061468,42.653784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,237],"duration":55.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":48.625,"geometry_index":9151,"location":[-3.060727,42.654142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,256],"duration":1.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.709,"geometry_index":9173,"location":[-3.041122,42.658734]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,253],"duration":20.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":18.098,"geometry_index":9174,"location":[-3.04045,42.658887]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-3.034341,42.662208],"geometry_index":9186,"admin_index":1,"weight":164.301,"is_urban":false,"turn_weight":1,"duration":186.662,"bearings":[33,213,219],"out":0,"in":2,"turn_duration":0.033,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,230],"duration":5.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.979,"geometry_index":9244,"location":[-2.978071,42.697928]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,232],"duration":4.162,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.85,"geometry_index":9245,"location":[-2.976443,42.698868]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,234],"duration":1.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.947,"geometry_index":9248,"location":[-2.975186,42.699521]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,236],"duration":21.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":19.861,"geometry_index":9249,"location":[-2.974871,42.699676]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,248],"duration":1.221,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.129,"geometry_index":9260,"location":[-2.967654,42.702454]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,250],"duration":29.867,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":27.609,"geometry_index":9261,"location":[-2.967211,42.70257]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":8.529,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":7.883,"geometry_index":9271,"location":[-2.956343,42.704303]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[85,89,264],"duration":0.732,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.66,"geometry_index":9273,"location":[-2.953203,42.704551]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,265],"duration":27.826,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":25.74,"geometry_index":9274,"location":[-2.952937,42.704568]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.942464,42.704928],"geometry_index":9282,"admin_index":1,"weight":37.031,"is_urban":false,"turn_weight":1,"duration":37.936,"bearings":[89,265,269],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,276],"duration":2.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":2.113,"geometry_index":9291,"location":[-2.928076,42.704333]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,277],"duration":5.76,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.615,"geometry_index":9292,"location":[-2.927293,42.704262]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":3.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.941,"geometry_index":9294,"location":[-2.925262,42.704065]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.953,"geometry_index":9295,"location":[-2.924192,42.703965]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[97,277],"duration":10.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.596,"geometry_index":9296,"location":[-2.923476,42.703897]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,274],"duration":3.701,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.609,"geometry_index":9301,"location":[-2.919548,42.703615]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[91,271],"duration":0.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.656,"geometry_index":9303,"location":[-2.918204,42.703591]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,271],"duration":2.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.252,"geometry_index":9304,"location":[-2.917955,42.703589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[90,269],"duration":0.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.723,"geometry_index":9305,"location":[-2.917126,42.703599]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[87,92,270],"duration":0.25,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.221,"geometry_index":9306,"location":[-2.916862,42.7036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[86,267],"duration":30.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.023,"geometry_index":9307,"location":[-2.916772,42.703604]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.905499,42.705153],"geometry_index":9321,"admin_index":2,"weight":57.217,"is_urban":false,"turn_weight":1,"duration":60.793,"bearings":[70,244,251],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":0.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.678,"geometry_index":9346,"location":[-2.883484,42.707008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[103,283],"duration":22.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.869,"geometry_index":9347,"location":[-2.883228,42.706963]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,250],"duration":2.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.25,"geometry_index":9358,"location":[-2.874925,42.707314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,245],"duration":2.268,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.039,"geometry_index":9359,"location":[-2.874092,42.707594]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,240],"duration":1.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.529,"geometry_index":9361,"location":[-2.873368,42.707896]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[55,237],"duration":20.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.736,"geometry_index":9362,"location":[-2.872846,42.708141]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,208],"duration":2.275,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.049,"geometry_index":9372,"location":[-2.868097,42.712319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,208],"duration":0.873,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.787,"geometry_index":9373,"location":[-2.867715,42.712852]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":2.307,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.076,"geometry_index":9374,"location":[-2.867599,42.713056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":37.643,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":33.879,"geometry_index":9375,"location":[-2.867286,42.713607]},{"entry":[true,false,true],"classes":["motorway"],"in":1,"bearings":[3,178,353],"duration":14.248,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":2,"weight":12.801,"geometry_index":9404,"location":[-2.86624,42.723135]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":5.143,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.629,"geometry_index":9410,"location":[-2.867919,42.726521]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[157,337],"duration":15.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":13.627,"geometry_index":9411,"location":[-2.868577,42.727684]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.870957,42.731091],"geometry_index":9422,"admin_index":2,"weight":16.006,"is_urban":false,"turn_weight":0.75,"duration":16.965,"bearings":[158,164,353],"out":2,"in":1,"turn_duration":0.014,"classes":["motorway"],"entry":[false,false,true]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.87055,42.735405],"geometry_index":9432,"admin_index":2,"weight":16.836,"is_urban":false,"turn_weight":1,"duration":17.607,"bearings":[23,196,203],"out":0,"in":1,"turn_duration":0.011,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,219],"duration":59.518,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":53.566,"geometry_index":9437,"location":[-2.867212,42.739389]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,247],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.9,"geometry_index":9456,"location":[-2.848559,42.74714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,249],"duration":32.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":29.34,"geometry_index":9457,"location":[-2.848213,42.74724]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,243],"duration":1.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.109,"geometry_index":9462,"location":[-2.837321,42.750865]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":38.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":34.904,"geometry_index":9463,"location":[-2.836928,42.751023]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":1.08,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.973,"geometry_index":9478,"location":[-2.8254,42.757337]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[33,37,217],"duration":0.779,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.678,"geometry_index":9479,"location":[-2.82516,42.757573]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":11.65,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":10.486,"geometry_index":9480,"location":[-2.825008,42.757745]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,201],"duration":1.291,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":1.162,"geometry_index":9486,"location":[-2.82306,42.7606]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,199],"duration":5.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":4.799,"geometry_index":9487,"location":[-2.822911,42.760922]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[11,194],"duration":0.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":0.58,"geometry_index":9489,"location":[-2.822431,42.762285]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,191],"duration":10.967,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":9.869,"geometry_index":9490,"location":[-2.822388,42.762451]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.822122,42.765392],"geometry_index":9494,"admin_index":1,"weight":21.35,"is_urban":false,"turn_weight":0.5,"duration":23.186,"bearings":[175,180,359],"out":2,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":2.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":2.211,"geometry_index":9499,"location":[-2.822878,42.771612]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":11.166,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.051,"geometry_index":9500,"location":[-2.822967,42.772269]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[174,354],"duration":11.232,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":10.109,"geometry_index":9502,"location":[-2.823391,42.775263]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,359],"duration":2.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":1.963,"geometry_index":9505,"location":[-2.823686,42.778285]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[179,359],"duration":6.924,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":1,"weight":6.059,"geometry_index":9506,"location":[-2.823704,42.778854]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,182],"duration":7.928,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":6.936,"geometry_index":9509,"location":[-2.823697,42.780646]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,183],"duration":3.957,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":3.455,"geometry_index":9512,"location":[-2.823578,42.7827]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[6,184],"duration":17.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":1,"out":0,"weight":15.26,"geometry_index":9514,"location":[-2.823484,42.783716]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,188],"duration":3.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.27,"geometry_index":9516,"location":[-2.822762,42.788165]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[10,189],"duration":53.947,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":48.547,"geometry_index":9517,"location":[-2.822543,42.789129]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[52,53,231],"duration":1.146,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.055,"geometry_index":9537,"location":[-2.812395,42.802838]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":69.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":64.502,"geometry_index":9538,"location":[-2.812035,42.803048]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.792752,42.813068],"geometry_index":9559,"admin_index":2,"weight":24.219,"is_urban":false,"turn_weight":1,"duration":25.119,"bearings":[57,232,236],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"bearings":[58,240],"entry":[true,false],"classes":["motorway"],"in":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9562,"location":[-2.784732,42.81653]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-blue","display_ref":"A-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"type":"fork","modifier":"left","text":"A-1 / E 05"},"distanceAlongGeometry":92451.672}],"destinations":"E 05","speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto E 05/E 80.","modifier":"slight right","bearing_after":97,"bearing_before":62,"location":[-3.588681,42.37958]},"speedLimitSign":"vienna","name":"","weight_typical":2679.836,"duration_typical":2979.414,"duration":2979.414,"distance":92451.672,"driving_side":"right","weight":2679.836,"mode":"driving","ref":"E 05; E 80","geometry":"wrsyoApc`zE\\yIrAeLPi@`BuEBIvCqI@ErGoRrQii@t@wB~Nu^fRgi@d[_{@jSyn@|BqGlBmFvBcFfCwCvCeCdCeA|EqAnDBdDf@pDtAxCjBbDjEtBlF`B~HFnEBbB_@hG_AhFoA~C{BtDuEdDkCr@aGXkGe@_EcAmEiB}EcD{]eVmRgLiMiHme@gTsJ{DmSwGu_@cK{OuD{QyC_BWkT{@{T{Bm\\kBmb@gBkc@oA{[wA}YuB}QsBwMkBwP}CsKuBkNkDsScG_RmGyR{HgM}FmJ}EsJaFqOgJaNeJkQqM{MsKaQ{O}PeQiSgUgQmUiLmPqWib@gNaXiPu]eM}ZyH{ScMm^}Qsk@{Vcw@iK}ZqRki@cKwW}G}PkN_[qHcPiPm[yP}ZcUm_@_Te[gNgRqYu^aKaMsJaLmX{ZeXiZeWiYqg@qk@oUiXe\\w`@yK}MkNsQ_Yq_@aTuZqRuYqUk_@sYif@}Zel@_Rc_@kN_[_KaUqJmU}Mc]_Na_@_O_c@iMeb@uJc]cKc`@kLue@{Msm@mC_NsCsNaGi\\_G__@qGkc@qG{d@cFsc@cDu]uEej@oCm_@}Bm_@kD_n@{Cqq@sDez@oCks@sBe_@uAmTsBiYiEcd@iD}XoFq^{E_YeFkW{EmSwGoWgGaTuI_YqCuHuFsOiJ}UiMyYcJsQiI}NgSw]}Us^yXsa@mZuc@eTi[iV}_@_Tc]iTo_@iL}SqMiWaMaW_[kr@cV_l@g]y|@wz@m{Bu`@gdAub@igAoUsj@mPu`@{Xqo@mc@m`Aa^kt@iSy^aKoQiMaTcOeVuQiWqUmZ}Y{]e_@a`@g_@m]e[gX_i@ob@}a@k\\kVwSyLuKwP_QqR{TiOeRmMoQwLuQuPaZuJ{QoNqYoOg_@M]mQch@gKq^qJ}^wJof@wG_a@kDaWoE}_@yDqa@gBeUiEgn@kGo{@eEge@iFic@eHie@gDuSyFwXaIc]}J{^oKq]gNy_@_LuXyNeZeNgXgQcZqYsb@oR}UoQ{RuJ{JaMcLuVoSmWmR_ZyQs\\oPm\\oNu`@aM{LaDkMsCiLeCcWiEue@sGqn@_Ki[gGeTqFoY{IqVuJmVyKqQyJ{TcNmN}JqQ{MkUoSyLoLuLyLyOeRyPwTuQsWki@m{@yDeGwSg\\u^qk@wSa\\wL{P_O}T{k@uz@ga@ok@ql@my@ki@kt@ka@ei@_[kb@}SyZeLwQ}JcQaHwMyIsPwLcXgE}JgLeYuM}_@gTit@}Lqe@k@}BaS_v@cKm^{Nsc@uL_\\{JgUcJaSwKeT_LmScQgZyf@iy@cMeUsAaCcF{ImVwg@{Nu]oKeZmKy[mIc[iL}f@oFwXgHec@yGgg@cG}o@_Ckb@cBub@k@o[Mcc@Ci_@j@so@x@os@\\y~@g@es@eAgZ_Bk^_Cq_@}Dmb@oFge@mIyi@eIy`@uHe\\oNsi@mPif@iYev@wS{e@m^sv@wN_YmJuQ{U}`@m`@ym@yQqW{OsTa]sb@cZg]mTuU_`@a^_\\iXuWmRuZsSy[oRmb@}S_[aNqZmLa^eLua@iL_n@cP_TiFof@aMaVoGiRoFwOcFcc@qOoQgHuXmMqRsJ}L}GoMuH{KmHqUkOeWoRaf@qa@a^m]oXyZuV{Y_SgXeRuXaYod@yRi]gSqa@yRic@yN{]yI_VwI}ViMi`@}K}^cQyk@gMec@_Lg`@yLm_@iNe`@uOo_@}Pe^{Rw^cNaUuXwb@}Zke@gQgY{IkOcLsT_Oo[mKgVaJsUyGmRgJkZoIc[{Kgf@_FaYqI_h@yE}_@}BgTsAgO{Cw`@yFoy@uEwm@sEuj@iDi`@sCyXeFga@mEi[{E}ZaHq`@oImb@gOwp@sYsiAu_@eyAoOcp@kI{_@sI_c@eLer@_G}b@uCsUyEcg@gDmc@eDkb@qBk`@sAci@wAek@u@{j@_AsjA}@_`AkBqfBuB}oA}CckAiCgr@kDqs@}Cah@kCsa@eFoq@oEai@uFaj@oH}q@iHqk@iMoaAwHyh@aMqy@{Oq`AsO{|@{Lgp@qP_z@wNuq@}XqnA{YsmAoU{{@yOgl@aVcy@uSer@c[u`A}\\waAa`@_eAo`@edAaWen@w\\ax@aWkl@}[ms@_w@_cB}x@ieBi`@wx@eYem@}Tih@sLgZgLi[qJiY}Nid@qLkc@iLme@mIo_@_H}^yIsi@qMq~@cKix@yI_t@eLa{@oGkd@_Fg[iGs\\iFmXiGmXyG_ZsNwi@aJyZsJcZgJsWwN{_@sOu^aOc\\{Og[yTga@kLyRgMaSiR}W}L}PiUmYy\\o`@kUgWi]c^aWuVkTsSm_@s\\aa@w\\mXcTo`@uYy_@_Xq`@aWeb@uVsa@kUa_@iScj@eXkt@_^sr@{[}x@y_@mf@uUmc@aTs[uO_b@sS}b@qTgi@aYmZ_Pkf@qXs\\wRaYqPaXsPwb@aX{a@aYs`@_XwQoMqNcKgXcSoZcUaX{Sq]uXe|@ut@cm@sh@aZqXmT{S_V{Uk]o_@_Yw[{j@ir@gX{]c^wg@mZed@iRa[}Rk]uXgj@}JiTsLeXqUml@aSgk@cOag@oHeX}F_U}Juc@gCgLyG_[qGe^kDoS[}B{L{}@kF{a@uCyZuBmWmByYaDig@wBae@gBua@{@cUaDi`AuAy^{Bsc@{Cwe@kDw^eCqU{CcUoHqf@iGaZcP}q@iNce@kPse@qQib@aNoZuJcQgMuTic@cr@s\\{g@ce@et@kUi_@mTy_@aRi]gRc_@uVki@{X_q@oYwv@oSen@iTkr@kUsu@k[qfAq`@{pA_Wqx@q[e`Ag^uaAmPeb@iPu`@qTgg@aWij@{Yql@mUyb@gWod@_^el@}DsG{EoHg\\qg@ob@{l@_Xc^k]_c@kf@wj@}]w_@wTyUc]q\\wf@se@q]o[gc@s`@g`@w]yYqWu]s[uU_Uq[qZsUcWUW{OeQmOuQiReVuSsXwXe`@_Tw\\cZqf@cPgZcOkZeR{_@{S{b@sPs_@i]gv@mZer@u]sv@yV}i@oY_m@kQm^uWkf@qZwj@uVmb@oVu`@ua@qn@si@{u@s[ma@_f@ck@mRoT_]{^i`@o`@wc@gb@ui@ue@iuAoiAsp@yg@{q@ki@or@uj@}m@cg@yh@ac@qQyOgKcI_T_Rmf@sb@wa@a_@cUeT_c@wa@ga@ua@ac@id@if@mi@mVaYob@gg@y\\kb@uYy^ei@ws@c\\ke@w\\cf@_d@mq@od@mt@}Wgd@e\\sk@q_@qr@}]}p@_^as@_OkZsWyi@ed@eaA{J}TqS{d@}vAyaDio@kzAuh@sjA{h@uhAq]at@w^qs@w\\mo@sTca@{R}\\eVo`@g]gi@kQkX{OaUgPySwi@{o@{MkOwTwT_d@ob@cV_Tc\\yWi^eYc[oTa]aVaq@ce@m^sWeLwIiQiNgOoMsM}LeJyI{J{JiIuIaWwX{P{SsRoWqJ{LyPcXuTq^uJyPwKiSkMmWqOq]cNe]oOsa@iJmXqHyU_L{_@iJq]iMog@kPut@aZesAeXmjAsOam@}Rar@uRwm@{Som@wOma@mMoZcQm`@qMkXsOc[gUgb@aX{d@cQ_XgL}PuTc[qXc^gVyYsR{TqTaVkUgVst@ou@ic@sc@gY{ZuTcWiLiOkOaT{M_ScRsZsKcS}HmO}GuNsJySaJmTuGyP_FgNkGoQ{Moc@yGqVcGsWkF_VuEgUyHgc@aJaj@eOqeA}Lyw@ePceAePw~@mKkh@yGyZ{Is^wPko@a[wdAia@}lAcY_y@g]mbA_Ouc@{R}m@gEiN}L{c@_G{TiLyd@_EyQeQky@sMmu@mHge@{E_^iKsx@sA{QcEa`@wC{c@w@yLuEsv@mBu^iAaYkAqj@yAcs@}@wy@q@qdCYkx@s@if@_CouAgDo{@QcEiBo^yBya@eDmb@eCy_@qGik@kCiZsQcqAyLkw@eR{eAkMwv@oCkQgEoZsDeZcD_[gBuVaBqUoAeXcBei@CcKMa_@GqXfAgg@n@oPv@gUnB_b@dCsXnAyQzI_r@dRugAnLgr@vBuOxJcs@lCwVh@kLtG{w@tAa_@l@o^h@ss@We^c@yb@iDqfAeC_u@y@iYWm\\EcXbA{x@|@e[xBoc@vEwk@lAwN~Hio@lPydAlVu{AdKio@`Gab@jKo{@jHct@nAsN|Gy`A~Bag@`AcO|DsbAjA}q@P_v@?}u@Qq`@iAep@{Bqw@_Dqr@yCwe@sMuyAeAqLcCuT{Dm[mAsK_Kim@wFyW{D_RCKsIg[wCyLmPse@uQsb@gK{TwWye@cR{X_RgVcY_\\{RyQgSeQaWyQqRoLeK{EqW{L}UiJ}c@aMu^uHo^gEsc@yBy_@]_c@`Aee@lAwRTcQR}]qBcZqFwg@eJcvA_\\}e@cOm[iLw_@gPw^}ZeUkZ}N{XuGyO_FqNaDgLsDqOwEyWaDmXmBgYg@eUU}WRs`AU{_@_AcZkCeYiCySmIcd@kKe_@cM{[gOiYe`BclCso@y}@aOuRuNgRyd@ak@i`@oe@yRmUiF{H}GiKiP}ZgNu`@aEuPkHsZmEmg@u@g[Fal@xC}q@vC_f@nAud@Eqi@iCkm@sHqn@}O_n@iQ_d@wUy]mUqXqS}P{McIwf@_V}o@_[iS{MeLeKaZiZgWi_@wTac@aQii@yFkWsC}KeIij@kFwq@cBae@wDgqBm@cPyBgaAwCut@{A{_@}Csi@aG_x@aImx@yH}p@}H{i@kIsh@uLio@uJuc@wMif@wGyTcGeRoN_`@wY}u@w^_|@kUim@eQcl@wMkj@aJsf@kK{s@yHwt@mHuiAmE}u@sGicAmIwy@kM_y@{Pwx@kScv@eVmu@aVwx@oT}y@yNuz@yIor@_Hgt@wFo|@qDct@sFm}@}Gkq@qH_i@eKgl@kKce@kLce@cMm]kLu[}Nc^mMqX_Qw\\_Yad@uMqQaYy\\_Zi\\sc@g_@o[uVgYoO}YcOsd@}Qoj@yOso@{Owp@gOkn@mVsb@mPwg@cZ_c@}Z{e@gb@{d@yj@{Vy^qTg^{Skb@sSmf@uTqm@wUmy@wXidAeTiv@{YqaAu[c_Ao[s{@s\\iu@{g@qdAqh@s~@e\\em@yk@aeAid@w{@kh@}`Aqg@gcAsa@sy@k^ou@{m@ssAqi@eiAwk@{rA{@mBoh@spAkj@ctAko@cdB}b@olAwj@q}Aaj@__Bsk@scBel@{~Amm@{aB}z@msBi|@mxBe|@ipBes@_|Akl@_pAup@uoAgm@yjAim@qiAcgAapByh@abAwy@wdBwNq]_Qwa@aFgLuHuReVim@{Vcs@}Ren@aRan@oLka@eK{`@kNgi@yJ}b@cK{c@yIcb@wJ}f@gFuZcEcUcJ{h@_Lyw@{Ko{@uLshAwKkjAeIogAeJoyAiHuyAaGg~AqE_pA}GgrBa@sOyBky@oBw}@eC{rAiBooAeBc{AoA{jBe@yeAYgaBG_c@dAqwDrAmcBdAcnAhEweCrA}u@rEmkBjEu_BnGigBlC}o@`GapAfC{l@fE{aAfCwk@hEo`AbCkq@vBi|@x@e_@r@cc@b@ok@Jof@BqNSyr@AoOGsDo@c]{@ut@iAel@oA}e@_Cem@uC_o@sCgj@wCyc@mIehA}C_^}Fel@kKa_AqQwqAiOeaAcQmdAeQ_aAqRsdA}Pm~@yPs`AsLeq@}Ioj@_G}d@mGug@mHws@aGmq@oFuz@wCeu@kBkn@mAet@Woa@Sqi@Xuh@jA}x@nBat@fDkw@~Fc_AbFko@`Hqt@nPubBxA_OtIg`AvCcf@rBed@nAsh@Rmb@_@{o@eBqp@kDem@yGes@eImm@qNax@oPas@iL{^qDkLiNs_@uMg[}LyWsO_Z{LsSk[ge@{VyZ_\\_]cViVsjA}{@_UyNi`@{VwKgFma@qRkMwF}JgDgRiDaPgAaNW{WxA{PpCaLdCia@~HoQbCqRzA}Nb@oNAoNm@gKm@gNuAkOeC}f@uHs[yE}j@gKiq@wKgv@sMyPcCkJgAwL{@}FU}FCuIVgJNoP|AeLdCwIrBqIlCiQjHilCjoAugAbh@o`@lRsYrOiNjJiMnK{LlM_R`RoI`I}NdL_OxIkObHo^bKaRfBsPpAgYPyd@Gu_@Vi[c@gTcBeR_CuPgDwp@yQ_c@gTe}@wk@mu@yk@yn@qk@qo@gt@mVi[wQeWgTu[kPmW_Yug@mU}d@yP{]uUcj@}Qof@{M}_@mNib@{Moc@}Siu@iQaq@wWcgAkXulAcUydAcm@apC}{AgeHgEsTsgA_cFgv@slDa[osAi[gpAii@kpB{HqWkb@uvAoWcy@cWyv@kSgl@sZmz@eX}s@eWso@_`@o}@wY{m@s[sm@q\\qj@o_@yi@q[ia@iZ{[}EaFwM_NwIoHcZ_Wa[cUaYqRc[iQwWoMik@gVcSiH{e@oMim@oNkIuAou@kI}ZeBg\\uAcgAKc_@^ip@|Bcp@fEol@fEusEx\\ah@pDifCtRyr@xEigAnHsx@tD}y@fBqb@b@{TTgx@F{_@k@u}@qAuk@cB_Tw@gU{@gh@_CsuC_Tm~BcWg{@uLeIiAe~@yN_j@oKehAoUmi@mMwu@sRwjAq]mu@sWkr@oYqj@eZwWoPoR}Mka@_\\y[yZ}\\y^}Xu]qWg_@q]_k@a\\km@m`BybDcLoUq_AsmBeVej@mZq_A{o@yyBml@cqB_[wbAsPwi@mJcXgSii@yTkg@qR}`@aQe\\aw@wrA_g@ey@qg@o}@aU{c@iSeb@kRmb@[q@gf@kfAoh@qrAoJyVy{@ulCaoCwnIglCkqHkyCogIa|@}`CgtBcvF"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 6 miles.","announcement":"Continue for 6 miles.","distanceAlongGeometry":8926.244},{"ssmlAnnouncement":"In 2 miles, Take exit 352.","announcement":"In 2 miles, Take exit 352.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 352.","announcement":"In a half mile, Take exit 352.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 352 onto N-622, AP-68 toward Bilbao. Then Keep left to stay on E 05.","announcement":"Take exit 352 onto N-622, AP-68 toward Bilbao. Then Keep left to stay on E 05.","distanceAlongGeometry":313.333}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[54,62,237],"duration":20.066,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":18.539,"geometry_index":9566,"location":[-2.768541,42.824113]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,234],"duration":55.641,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.447,"geometry_index":9571,"location":[-2.762277,42.827222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[4,185],"duration":25.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.26,"geometry_index":9594,"location":[-2.751453,42.839572]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,203],"duration":21.232,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.162,"geometry_index":9606,"location":[-2.750171,42.846261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,191],"duration":2.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.213,"geometry_index":9616,"location":[-2.74709,42.851301]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.078,"geometry_index":9617,"location":[-2.746971,42.851887]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[9,187],"duration":6.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.242,"geometry_index":9618,"location":[-2.746873,42.852439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,198],"duration":20.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.607,"geometry_index":9623,"location":[-2.746354,42.854082]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,222],"duration":30.539,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.99,"geometry_index":9631,"location":[-2.74227,42.858527]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[56,235],"duration":68.027,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":64.619,"geometry_index":9643,"location":[-2.734651,42.864392]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[40,220],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.723,"geometry_index":9671,"location":[-2.716552,42.875289]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[41,52,220],"duration":21.9,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.799,"geometry_index":9672,"location":[-2.716378,42.875441]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,240],"duration":0.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.732,"geometry_index":9682,"location":[-2.710767,42.878838]},{"bearings":[61,234,240],"entry":[true,false,false],"classes":["motorway"],"in":2,"turn_weight":1,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9683,"location":[-2.710544,42.878932]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"off ramp","modifier":"right","text":"Bilbao"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"352"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"}],"type":"off ramp","modifier":"right","text":"Exit 352 N-622 / AP-68"},"distanceAlongGeometry":8966.244},{"sub":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Bilbao"},"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"off ramp","modifier":"right","text":"Bilbao"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"352"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"}],"type":"off ramp","modifier":"right","text":"Exit 352 N-622 / AP-68"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A-1/E 05/E 80.","modifier":"slight left","bearing_after":54,"bearing_before":57,"location":[-2.768541,42.824113]},"speedLimitSign":"vienna","name":"","weight_typical":290.721,"duration_typical":307.07,"duration":307.07,"distance":8966.244,"driving_side":"right","weight":290.721,"mode":"driving","ref":"A-1; E 05; E 80","geometry":"azwtpAxh~gDgVgj@qh@{wAgo@gdBam@o{Aeb@s`Asg@idAg^mq@{^qo@{d@eu@qd@mq@}e@{o@mf@an@ol@_q@uk@kl@u^i\\gc@k]gf@k\\ch@wY{c@aT}]mNa[qKi_@uKgb@qJ{TgEsXiEu^yDmQ{AwM{@ud@eBs[i@kYE_iAc@}h@mA{d@yCc]_Eu[aGsWwGaWuHaSsH_k@}Wka@gWey@sn@_f@w^qXqQeYuOuRuI_V{JoZuJeZ}Hia@oHsc@mFoa@cE_YwDiUwD_YcHwNgEsKqDob@ePyYeOi]mTq[qU}[{Yo]c_@s]{b@qaA_rAsg@}i@ex@gy@w^c`@a[i]k^cd@g[cb@}Tc\\}Yae@k^go@qSk`@iWij@eWen@eOg_@wNoa@{Kw[iLm_@_V}z@aO_m@gNio@_Pqw@qVunAeN{o@gMmi@qYodAwNoc@mRqf@kU_h@wNqXcPgYsXcc@mXe`@qa@qe@_j@qh@}n@}h@{n@yg@yi@cc@we@eb@_]i]a^q_@qMuOoH{IcSgW_SaY}[mf@mWic@}X}g@oR}`@qX{m@aSch@mRei@iGqR{D}LeF}P_J_[eHkX{Sc_AuLcp@aJmp@wHmq@mFyq@aCma@wBqj@{@ih@Y}p@B_f@`@yZ|Bq{@"},{"ref":"E 05; E 80","mode":"driving","weight":19.76,"distance":261.158,"geometry":"y{expAbhycDpA{RbIknA|AeVnBgs@p@gV","duration":20.811,"driving_side":"right","duration_typical":20.811,"weight_typical":19.76,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 352 onto N-622/AP-68/AP-1 toward Bilbao.","modifier":"slight right","bearing_after":100,"bearing_before":95,"location":[-2.700434,42.880461]},"speedLimitUnit":"km/h","destinations":"N-622, AP-68, AP-1: Bilbao, Vitoria-Gasteiz, aireportua, Donostia-San Sebastián","bannerInstructions":[{"sub":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"fork","modifier":"right","text":"AP-68 / AP-1"},"primary":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Bilbao"},"distanceAlongGeometry":261.158}],"exits":"352","voiceInstructions":[{"ssmlAnnouncement":"Keep left to stay on E 05, E 80 toward Bilbao. Then Keep right to stay on E 05.","announcement":"Keep left to stay on E 05, E 80 toward Bilbao. Then Keep right to stay on E 05.","distanceAlongGeometry":242.5}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[96,100,275],"duration":2.09,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":1.977,"geometry_index":9698,"location":[-2.700434,42.880461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,280],"duration":8.4,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":7.98,"geometry_index":9699,"location":[-2.700116,42.88042]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[100,280],"duration":2.48,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":2.355,"geometry_index":9700,"location":[-2.698846,42.880258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,280],"duration":5.439,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.168,"geometry_index":9701,"location":[-2.698475,42.880211]},{"bearings":[95,275],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9702,"location":[-2.697639,42.880155]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Keep right to stay on E 05, E 80 toward Bilbao.","announcement":"Keep right to stay on E 05, E 80 toward Bilbao.","distanceAlongGeometry":186.667}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[90,118,275],"duration":25.65,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":24.982,"geometry_index":9703,"location":[-2.697267,42.88013]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.695778,42.880144],"geometry_index":9707,"admin_index":2,"weight":6.723,"is_urban":false,"turn_weight":0.5,"duration":6.404,"bearings":[85,248,268],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,265],"duration":6.08,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.928,"geometry_index":9708,"location":[-2.695298,42.880176]},{"bearings":[79,261],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9710,"location":[-2.694376,42.880276]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"right","text":"Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"fork","modifier":"right","text":"AP-68 / AP-1"},"distanceAlongGeometry":260.134}],"destinations":"Bilbao, aeroportua, Donostia, San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 05/E 80 toward Bilbao.","modifier":"slight left","bearing_after":90,"bearing_before":95,"location":[-2.697267,42.88013]},"speedLimitSign":"vienna","name":"","weight_typical":41.143,"duration_typical":41.734,"duration":41.734,"distance":260.134,"driving_side":"right","weight":41.143,"mode":"driving","ref":"E 05; E 80","geometry":"cgexpAdbscD?eYDoPKwOUs_@_A_]cB{]cBwYqAoP"},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Keep left to take N-622.","announcement":"In a quarter mile, Keep left to take N-622.","distanceAlongGeometry":399.599},{"ssmlAnnouncement":"Keep left to take N-622, AP-68 toward Bilbao.","announcement":"Keep left to take N-622, AP-68 toward Bilbao.","distanceAlongGeometry":171.111}],"intersections":[{"mapbox_streets_v8":{"class":"motorway_link"},"geometry_index":9711,"admin_index":2,"weight":33.67,"is_urban":false,"location":[-2.694096,42.880317],"stop_sign":true,"out":1,"in":2,"classes":["motorway"],"turn_duration":0.019,"duration":34.553,"bearings":[77,95,259],"entry":[true,true,false]},{"bearings":[144,165,344],"entry":[false,false,true],"in":0,"turn_weight":0.75,"turn_duration":0.026,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"geometry_index":9734,"location":[-2.694383,42.879629]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Bilbao"}],"type":"fork","modifier":"left","text":"Bilbao"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"N-622","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N-622"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-68","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-68"}],"type":"fork","modifier":"left","text":"N-622 / AP-68"},"distanceAlongGeometry":426.266}],"destinations":"AP-68, AP-1: Bilbao, aeroportua, Donostia, San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 05/E 80 toward Bilbao.","modifier":"slight right","bearing_after":95,"bearing_before":79,"location":[-2.694096,42.880317]},"speedLimitSign":"vienna","name":"","weight_typical":54.115,"duration_typical":55.311,"duration":55.311,"distance":426.266,"driving_side":"right","weight":54.115,"mode":"driving","ref":"E 05; E 80","geometry":"yrexpA~{lcDFwI^eG~@uHjAsF|AgFlBsD~BwCrE{C|DcAlD[lFv@pDbBlDbDnClD~A`F|@fFTrFKpIcArG_C~GyApCoC|CwDrC{SbGwr@dPgQjD"},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Take exit 6.","announcement":"In a half mile, Take exit 6.","distanceAlongGeometry":1142.722},{"ssmlAnnouncement":"Take exit 6 onto AP-1 toward Etxabarri-Ibiña, Donostia/San Sebastián.","announcement":"Take exit 6 onto AP-1 toward Etxabarri-Ibiña, Donostia/San Sebastián.","distanceAlongGeometry":195.556}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[11,168,347],"duration":12.26,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":11.629,"geometry_index":9737,"location":[-2.694874,42.881083]},{"entry":[false,false,true],"in":1,"bearings":[142,164,348],"duration":1.375,"turn_weight":0.5,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":1.797,"geometry_index":9740,"location":[-2.695247,42.882116]},{"entry":[false,true],"bearings":[168,348],"duration":16.758,"in":0,"yield_sign":true,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":15.92,"geometry_index":9741,"location":[-2.695274,42.882209]},{"entry":[false,false,true],"in":0,"bearings":[165,169,350],"duration":4.65,"turn_weight":6,"turn_duration":0.01,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":2,"weight":10.408,"geometry_index":9743,"location":[-2.695663,42.883386]},{"bearings":[167,347],"entry":[false,true],"in":0,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":9745,"location":[-2.695968,42.884405]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Etxabarri-Ibiña"},{"type":"text","text":"/"},{"type":"text","text":"Donostia/San Sebastián"}],"type":"off ramp","modifier":"right","text":"Etxabarri-Ibiña / Donostia/San Sebastián"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"6"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"off ramp","modifier":"right","text":"Exit 6 AP-1"},"distanceAlongGeometry":1168.389}],"destinations":"N-622, AP-68, AP-1: Bilbao, Aireportua, Donostia/San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take N-622/AP-68/AP-1 toward Bilbao.","modifier":"slight left","bearing_after":347,"bearing_before":348,"location":[-2.694874,42.881083]},"speedLimitSign":"vienna","name":"","weight_typical":68.91,"duration_typical":66.562,"duration":66.562,"distance":1168.389,"driving_side":"right","weight":68.91,"mode":"driving","ref":"N-622; E 05; E 80","geometry":"ubgxpArlncDoLfCcLtC}d@jMyDt@}^bHsh@dNyIpA{s@nOkGrAg|@vSau@dTuo@bTm_@~MuXnKwf@lSih@vUs^nQki@dYu]jR"},{"ref":"E 05; E 80","mode":"driving","weight":71.91,"distance":1189.964,"geometry":"qrzxpAlyvcDir@r]sh@j_@ei@b`@}^xYo[tY{WzWqTdTgz@jy@{[x[eOdOyhAjhA}hAhgAg|@xy@","duration":77.033,"driving_side":"right","duration_typical":77.033,"weight_typical":71.91,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 6 onto AP-1 toward Etxabarri-Ibiña/Donostia/San Sebastián.","modifier":"slight right","bearing_after":336,"bearing_before":335,"location":[-2.699175,42.891065]},"speedLimitUnit":"km/h","destinations":"AP-1, N-624: Etxabarri-Ibiña, Donostia/San Sebastián, Foronda","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Etxabarri-Ibiña"},{"type":"text","text":"/"},{"type":"text","text":"Donostia/San Sebastián"}],"type":"fork","modifier":"right","text":"Etxabarri-Ibiña / Donostia/San Sebastián"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"}],"type":"fork","modifier":"right","text":"AP-1"},"distanceAlongGeometry":1189.964}],"exits":"6","voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 05.","announcement":"In a half mile, Keep right to stay on E 05.","distanceAlongGeometry":1163.297},{"ssmlAnnouncement":"Keep right to stay on E 05, E 80 toward Etxabarri-Ibiña, Donostia/San Sebastián.","announcement":"Keep right to stay on E 05, E 80 toward Etxabarri-Ibiña, Donostia/San Sebastián.","distanceAlongGeometry":222.222}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[155,334,336],"duration":18.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":16.65,"geometry_index":9756,"location":[-2.699175,42.891065]},{"entry":[false,true],"in":0,"bearings":[146,324],"duration":2.475,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":2.352,"geometry_index":9761,"location":[-2.701569,42.894194]},{"entry":[false,true,true],"in":0,"bearings":[144,324,331],"duration":6.514,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":6.182,"geometry_index":9762,"location":[-2.701967,42.894592]},{"entry":[false,true],"in":0,"bearings":[144,324],"duration":18,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":17.1,"geometry_index":9763,"location":[-2.702306,42.894937]},{"entry":[false,true],"in":0,"bearings":[144,324],"duration":8.229,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":7.611,"geometry_index":9764,"location":[-2.70324,42.895885]},{"entry":[false,true],"in":0,"bearings":[144,324],"duration":4.629,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"weight":4.281,"geometry_index":9765,"location":[-2.703701,42.896347]},{"bearings":[144,324],"entry":[false,true],"in":0,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":9766,"location":[-2.70396,42.896606]}]},{"voiceInstructions":[{"ssmlAnnouncement":"In a half mile, Keep left to take AP-1.","announcement":"In a half mile, Keep left to take AP-1.","distanceAlongGeometry":1105.683},{"ssmlAnnouncement":"Keep left to take AP-1, E 05.","announcement":"Keep left to take AP-1, E 05.","distanceAlongGeometry":160}],"intersections":[{"entry":[false,true,true],"in":0,"bearings":[145,322,325],"duration":21.129,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":2,"weight":19.539,"geometry_index":9769,"location":[-2.707232,42.89995]},{"entry":[true,false],"in":1,"bearings":[15,191],"duration":17.48,"mapbox_streets_v8":{"class":"trunk_link"},"is_urban":false,"admin_index":2,"out":0,"weight":16.168,"geometry_index":9783,"location":[-2.7092,42.9039]},{"bearings":[44,223,229],"entry":[true,false,false],"classes":["motorway"],"in":1,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":9794,"location":[-2.706257,42.906728]}],"bannerInstructions":[{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight","right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"}],"type":"fork","modifier":"left","text":"AP-1 / E 05"},"distanceAlongGeometry":1132.349}],"destinations":"AP-1, A-3604: Etxabarri-Ibiña, Donostia/San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 05/E 80 toward Etxabarri-Ibiña/Donostia/San Sebastián.","modifier":"slight right","bearing_after":325,"bearing_before":325,"location":[-2.707232,42.89995]},"speedLimitSign":"vienna","name":"","weight_typical":45.615,"duration_typical":48.518,"duration":48.518,"distance":1132.349,"driving_side":"right","weight":45.615,"mode":"driving","ref":"E 05; E 80","geometry":"{}kypA~pfdDy|ArxAmIrGcIzEmKdFiKpDqJhCsIbBiOdBiOz@mKMyIUgL_AmLgB_B_@iJ}B_L_EoIuDyMsGmKsHaLaKcOmPeNkRqRg\\i_@wo@mQeVeOuT{KkOyNmSwPwRaKqKqGcHaS{R"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 27 miles.","announcement":"Continue for 27 miles.","distanceAlongGeometry":43571.539},{"ssmlAnnouncement":"In 1 mile, Keep left to take AP-1.","announcement":"In 1 mile, Keep left to take AP-1.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take AP-1.","announcement":"In a half mile, Keep left to take AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take AP-1, AP-8 toward Elgoibar, Donostia/San Sebastián.","announcement":"Keep left to take AP-1, AP-8 toward Elgoibar, Donostia/San Sebastián.","distanceAlongGeometry":204.444}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.70434,42.908381],"geometry_index":9801,"admin_index":2,"weight":33.396,"is_urban":false,"turn_weight":15,"duration":19.914,"bearings":[30,37,216],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway_link"},"location":[-2.702212,42.91098],"geometry_index":9805,"admin_index":2,"weight":4.232,"is_urban":false,"turn_weight":0.5,"duration":4.061,"bearings":[28,201,213],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.701843,42.911502],"geometry_index":9807,"admin_index":2,"weight":9.566,"is_urban":false,"turn_weight":6,"duration":3.865,"bearings":[34,207,218],"out":0,"in":1,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":1.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.041,"geometry_index":9809,"location":[-2.7011,42.912281]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,215],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.602,"geometry_index":9810,"location":[-2.700889,42.912502]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,219],"duration":1.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.938,"geometry_index":9813,"location":[-2.70032,42.91303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":0.338,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.312,"geometry_index":9814,"location":[-2.700103,42.913214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":0.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.797,"geometry_index":9815,"location":[-2.700033,42.913274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,221],"duration":2.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.438,"geometry_index":9816,"location":[-2.699847,42.913432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,224],"duration":1.537,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.383,"geometry_index":9818,"location":[-2.699337,42.913819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,226],"duration":6.229,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.605,"geometry_index":9819,"location":[-2.699029,42.91404]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":11.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.561,"geometry_index":9822,"location":[-2.698021,42.914686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":1.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.961,"geometry_index":9823,"location":[-2.697162,42.915165]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.697079,42.915209],"geometry_index":9824,"admin_index":2,"weight":15.961,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":1.066,"bearings":[54,234],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":15.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.68,"geometry_index":9825,"location":[-2.696999,42.915252]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,235],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.111,"geometry_index":9826,"location":[-2.695859,42.915839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":3.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.992,"geometry_index":9828,"location":[-2.695472,42.915999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":40.252,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":36.227,"geometry_index":9830,"location":[-2.694422,42.916407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":3.771,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.395,"geometry_index":9843,"location":[-2.680309,42.917953]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":27.635,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.871,"geometry_index":9845,"location":[-2.678964,42.91804]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":59.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":53.846,"geometry_index":9854,"location":[-2.66925,42.919325]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.713,"geometry_index":9869,"location":[-2.649252,42.924856]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[71,75,252],"duration":11.729,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.83,"geometry_index":9870,"location":[-2.64862,42.925008]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.644658,42.926175],"geometry_index":9875,"admin_index":2,"weight":3.754,"is_urban":false,"turn_weight":1,"duration":3,"bearings":[62,229,245],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,242],"duration":3.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.201,"geometry_index":9876,"location":[-2.643723,42.926539]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":3.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.393,"geometry_index":9878,"location":[-2.642668,42.926989]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,236],"duration":7.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.602,"geometry_index":9880,"location":[-2.64157,42.927519]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":0.408,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.367,"geometry_index":9883,"location":[-2.639478,42.928708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,230],"duration":2.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.359,"geometry_index":9884,"location":[-2.639369,42.928774]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":1.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.904,"geometry_index":9885,"location":[-2.638688,42.92923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,227],"duration":29.592,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.633,"geometry_index":9886,"location":[-2.63843,42.929408]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[20,204],"duration":23.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":20.736,"geometry_index":9898,"location":[-2.63281,42.935486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,194],"duration":91.979,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":82.781,"geometry_index":9901,"location":[-2.630614,42.941003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,224],"duration":3.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.992,"geometry_index":9938,"location":[-2.611965,42.960778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,219],"duration":22.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.443,"geometry_index":9940,"location":[-2.611196,42.961443]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[35,213],"duration":112.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":98.689,"geometry_index":9949,"location":[-2.606885,42.966655]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,205],"duration":23.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":21.33,"geometry_index":9966,"location":[-2.580207,42.990234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,216],"duration":19.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.572,"geometry_index":9975,"location":[-2.575694,42.995651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":6.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.803,"geometry_index":9985,"location":[-2.572864,43.000623]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,204],"duration":16.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.713,"geometry_index":9988,"location":[-2.571991,43.00227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,232],"duration":3.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.424,"geometry_index":9998,"location":[-2.568215,43.005695]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,239],"duration":16.018,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.416,"geometry_index":10001,"location":[-2.567056,43.006238]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,248],"duration":31.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.6,"geometry_index":10005,"location":[-2.561585,43.007951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,214],"duration":13.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.959,"geometry_index":10015,"location":[-2.552967,43.013711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,239],"duration":53.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":48.107,"geometry_index":10025,"location":[-2.549428,43.016233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":7.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.301,"geometry_index":10067,"location":[-2.530019,43.018541]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":12.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.867,"geometry_index":10071,"location":[-2.527929,43.02005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,223],"duration":6.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.764,"geometry_index":10075,"location":[-2.524703,43.022662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,239],"duration":5.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.428,"geometry_index":10080,"location":[-2.522923,43.023654]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[70,73,250],"duration":1.057,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.986,"geometry_index":10083,"location":[-2.520981,43.024271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":27.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.127,"geometry_index":10084,"location":[-2.520608,43.024369]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.512587,43.029108],"geometry_index":10099,"admin_index":2,"weight":18.607,"is_urban":false,"turn_weight":1,"duration":18.557,"bearings":[44,221,227],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[1,184],"duration":12.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.518,"geometry_index":10113,"location":[-2.509727,43.033511]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,355],"duration":1.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.535,"geometry_index":10118,"location":[-2.510219,43.036692]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,359],"duration":13.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":12.561,"geometry_index":10119,"location":[-2.510272,43.037123]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.055,"geometry_index":10130,"location":[-2.50931,43.040541]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[31,208],"duration":10.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.652,"geometry_index":10131,"location":[-2.509119,43.040799]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,229],"duration":11.361,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.793,"geometry_index":10136,"location":[-2.506752,43.042858]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":13.732,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.047,"geometry_index":10143,"location":[-2.503059,43.044334]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":45.271,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":43.008,"geometry_index":10151,"location":[-2.498832,43.04633]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[43,217],"duration":23.9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.303,"geometry_index":10166,"location":[-2.488658,43.055651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":11.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.002,"geometry_index":10171,"location":[-2.48186,43.059722]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":1.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.52,"geometry_index":10177,"location":[-2.478725,43.061537]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[38,62,223],"duration":1.225,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.17,"geometry_index":10178,"location":[-2.47835,43.061831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":15.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.885,"geometry_index":10179,"location":[-2.478083,43.062081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,199],"duration":38.443,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":36.496,"geometry_index":10185,"location":[-2.475612,43.065736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,243],"duration":3.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.225,"geometry_index":10201,"location":[-2.470749,43.071121]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[72,79,248],"duration":10.006,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.496,"geometry_index":10203,"location":[-2.469998,43.071352]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.466638,43.07209],"geometry_index":10208,"admin_index":2,"weight":17.207,"is_urban":false,"turn_weight":0.75,"duration":17.814,"bearings":[65,241,248],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[68,249],"duration":0.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.693,"geometry_index":10221,"location":[-2.461152,43.074354]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[68,248],"duration":34.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":31.58,"geometry_index":10222,"location":[-2.460863,43.074438]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":0.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.719,"geometry_index":10227,"location":[-2.448238,43.078704]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":6.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.836,"geometry_index":10228,"location":[-2.448048,43.078839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,224],"duration":28.088,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.98,"geometry_index":10229,"location":[-2.446539,43.079986]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[49,232],"duration":12.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.23,"geometry_index":10251,"location":[-2.438737,43.084073]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,211],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.996,"geometry_index":10256,"location":[-2.436021,43.086413]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":1.225,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.133,"geometry_index":10260,"location":[-2.435408,43.087391]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[17,24,203],"duration":0.527,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.461,"geometry_index":10261,"location":[-2.435245,43.087669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":5.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.045,"geometry_index":10262,"location":[-2.435193,43.087791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,192],"duration":11.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.572,"geometry_index":10266,"location":[-2.434727,43.089119]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.434716,43.092042],"geometry_index":10277,"admin_index":2,"weight":6.375,"is_urban":false,"turn_weight":1,"duration":5.83,"bearings":[169,174,354],"out":2,"in":1,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,180],"duration":30.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.797,"geometry_index":10280,"location":[-2.434797,43.093505]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,346],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":1.354,"geometry_index":10294,"location":[-2.43411,43.100908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,346],"duration":20.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":19.324,"geometry_index":10295,"location":[-2.43423,43.101254]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,188],"duration":0.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.529,"geometry_index":10307,"location":[-2.434594,43.106436]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,187],"duration":55.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":53.664,"geometry_index":10308,"location":[-2.434573,43.106567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[190,358],"duration":26.193,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":25.539,"geometry_index":10316,"location":[-2.427966,43.118812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":11.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.84,"geometry_index":10327,"location":[-2.42763,43.125583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,208],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.738,"geometry_index":10333,"location":[-2.425857,43.128094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,205],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.93,"geometry_index":10334,"location":[-2.425594,43.128504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,201],"duration":10.584,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.055,"geometry_index":10336,"location":[-2.425352,43.128968]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":0.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.684,"geometry_index":10343,"location":[-2.424886,43.131571]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.424899,43.131753],"geometry_index":10345,"admin_index":2,"weight":15.107,"is_urban":false,"turn_weight":1,"duration":14.875,"bearings":[172,177,354],"out":2,"in":1,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[179,357],"duration":47.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":44.033,"geometry_index":10350,"location":[-2.425549,43.135268]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":15.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":14.256,"geometry_index":10355,"location":[-2.428015,43.146279]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,181],"duration":83.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":74.865,"geometry_index":10362,"location":[-2.428501,43.150003]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":0.748,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.674,"geometry_index":10363,"location":[-2.425082,43.171236]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,187],"duration":5.963,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.367,"geometry_index":10364,"location":[-2.425052,43.171424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,186],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.832,"geometry_index":10365,"location":[-2.424824,43.172892]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[2,186],"duration":25.689,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":23.762,"geometry_index":10366,"location":[-2.424756,43.17338]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[161,333],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.979,"geometry_index":10370,"location":[-2.426471,43.179793]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,336],"duration":11.436,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.578,"geometry_index":10371,"location":[-2.427308,43.181009]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":5.541,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.125,"geometry_index":10377,"location":[-2.428503,43.183771]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,179],"duration":2.717,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.514,"geometry_index":10381,"location":[-2.428618,43.185174]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,359],"duration":4.342,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":4.016,"geometry_index":10383,"location":[-2.428614,43.185862]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,354],"duration":11.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":10.48,"geometry_index":10386,"location":[-2.428689,43.186965]},{"bearings":[151,324],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"geometry_index":10394,"location":[-2.429791,43.189702]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Elgoibar"},{"type":"text","text":"/"},{"type":"text","text":"Donostia/San Sebastián"}],"type":"fork","modifier":"left","text":"Elgoibar / Donostia/San Sebastián"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":43598.207}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take AP-1/E 05/E 80.","modifier":"slight left","bearing_after":30,"bearing_before":36,"location":[-2.70434,42.908381]},"speedLimitSign":"vienna","name":"","weight_typical":1456.402,"duration_typical":1538.586,"duration":1538.586,"distance":43598.207,"driving_side":"right","weight":1456.402,"mode":"driving","ref":"AP-1; E 05; E 80","geometry":"yl|ypAf|`dD_d@u\\k]uW}o@wd@cm@{g@gPoKkNqIuRcQ_\\i[yLeLeE{DmNgPkJmKoJqLwBkC{HsJqSyYsBaDyLgRyPyXsK{R}HiP}\\ut@wAeDuA_Duc@gfA}D_MaCeIkSsq@cD_NeWseA{QagAgKcv@iIqx@{Fwt@oCkg@eC_p@sAmv@eAe{@]ss@wBmsEoCo~AMkFeA_d@gBan@}@_[uFk|A}IibBkJs{AyGwz@oKsrAwK_iAmKcbA{@iHuLicAiOmjAeVwaB}Wk_BqSwhAsV_oAka@}jBkTg}@oZmnAog@u}B}TsiAsTslAkRgjAcOubAqSwtAoHof@gKeo@cKkm@sTggAwNko@eJm_@wUmy@cMy`@_Mc_@yKsZiS_h@i]ex@iWih@uRg_@cCyEo[qi@cJcOs_@ij@iTgYw@eAyf@mn@}i@cl@e[aZ{RiQmk@_e@}l@ob@k]{TqZiQal@{Z{iBqs@{hB_h@acCuj@usAkZwhAoXsvAa]kwAi]qvDw~@m`A_YmXwJmYyKeMyFca@yRag@}Zg^uWsOeMsMeLo[wZoc@gg@cRgV_NuRqZ{e@kPeZ{Qc^eNkZaR{d@cTcm@{Tyr@cUsx@qRwt@c\\qpAkNqg@qNkf@aE{LkS_k@kOy]eQ{]oKmRgMcTaSaYiUwYgRiToPsP_WsUmOmLiX_Tm{Bg~Ac_@iYyY}Ts`@w[oXoUgl@ij@}\\i\\ej@qk@oq@_r@}]o^ya@qa@kq@gx@w~AqrB_{AsoB}tVk}[}o@sx@kW{Y_U}Tef@qb@ca@e\\y`@mWqg@uXiv@}^ac@kSq_@wRi_@iVyd@m`@u_@}`@ma@ae@gb@af@ci@ei@c\\gZwRoNqO{JwO_J_QaJq\\yNw`@cPke@_Por@gVkx@_Zop@kVa[qNkXsNy^}SiU}OcRaPwQ}PePgP{NcQk[ob@o]sh@}NcYeMoWqJyTgKcZcIoVe[alAsOgr@sOyx@sl@yzCa[otAk]mmAgXis@oUsh@w^{o@cSiZy`@yh@q_@ka@_dA{aAqaAo|@gZkZkTsUuPoSaNwQmRmYiKkR{JuRoJkTqIkTqIuVsH_WqCoKmGyW{Gm_@aEyWcBgOaCcUyBeXaB{ZaA_[]sWAmZRq[b@aVz@wXrBgf@vDip@pDai@lEkn@xBs]dCeb@pCqi@z@oWx@kYp@cl@Kac@gAkf@sAs[iBuZiDq_@eDuZaHqd@uEyVyFiXsGeWiGyTsFiQqIkVmJwV}Qma@yBeEmSo_@qTea@yUm`@}Yaa@_V}[qj@_w@_aAkoA}_@qe@wSuYgOeXkPa]sIuQqH}QeGkQsKi_@kIy\\qNgz@cEiVwCeQqIoc@oGuXiKs^cJaYmIkTkJmScMyVaP{WwMmRee@mq@mc@}o@g`@an@ea@yo@cf@ay@{Y}b@oOmR}LyMkR{QuNuLyZySoXiNyNmGoRgGaNgEeTuE_RwCcRoByR_A_YYoa@tAq_@fCog@rIg`A~L}YhB_XP_OEiWkAeR_BaZqEiRoEaQwE{OqF_NuFeOcHsO}IcO}Jk`@oZmZgXyV_[gTg^yU}b@mJqRmH{PiNy^qK{\\mJc_@wQez@iLkg@qQgu@iKs`@_Nya@aNm^uOy_@{Nu[_OeXgNkVsa@an@ieAo{Agd@ap@q_@oj@kq@y`AeTiYcRsUsVuX_\\k[m`@y\\eTaPeuAagAw|@gt@u`@c`@g[s\\kq@w_Akq@ogAug@w_Ama@{`AqmA_|Cy\\{z@gUsi@wLuVaMeUwUy`@yIwLkQmVsNuOyQaSgd@ia@kc@w[ig@iXoe@cRex@{Ysd@yKmg@yOoe@sOoTkIePmH}SqLUM_WmQaUsSkWaY{QsViQmZ_Ri_@gJ{UuKm[cHaWuA_FwJ}f@iHof@iL_dAcF_e@kGwc@_GwYgHqZqI{XoKqZaEoKoI}SqOe_@{IgUiMi_@yHkU{HwV{HyXoJsb@yHca@gDaQiuD{nRyKec@oOcg@mVyj@q^al@mG{JufAi}Aye@sn@y^sh@uF_IqJ_QeLkTcKwSw@iBwMo[mCuHyD{KeL{_@qKeb@wFmVqF_VkG_UaEuOwFmQoFsQ}J}XsFiNcKwUaJsR}^mp@o[id@}[__@uY}Xe]aXiHmEuQcKoOeIsOqHkPeIsFgB{Q_GiRyFoRcEiXeFoDi@iBYmXsC{Ki@iESwRa@eRDsRLuS`AmGVqh@rDoVnBkVx@qk@GqVyAaWyDmWiFsWqHis@uV{s@iRej@oHmj@cBkWNsVfAaWlBeX~Dmm@lNo]pIsTnF{D`A_[xG{]vGcUvCcW`CmUdBmW|Ayl@\\em@c@iWsAsXeCaWyCeGi@sq@aGsiAsQq}@mVueAmk@qkGgxEseAko@osAo_@crAgSg^t@e_@zCe|AtP}e@nCef@Ruf@cBkf@}Ek_@yGo^eIgU_IgViJuf@qVyHaFse@}ZkWwQgV}PeTqNsXmOsRcIkH_DeMmEqTaG_UmEek@qFeUy@yTCwOh@kBF_GPc]tCey@hLcx@tNgd@tD_d@f@is@xBe_AxHgoC`a@{xEjn@qpE`z@oe@fJye@vGkd@dEq^jB}Vp@aTJoh@c@anh@utEwJ{@wzAgMo]gC}}A{BalBtSwaBjl@aaB~k@_kAhs@q{@bc@k]nMkOtE{NjDac@vHkLfAcOvAqVrAsU`@kXVaXQ}PHmPHkk@jBcF^kKt@c]dCy\\`G{U|HoRvGi_@zQySbMgBfBiShSg[fYqVf[qR|["},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 27 miles.","announcement":"Continue for 27 miles.","distanceAlongGeometry":42683.871},{"ssmlAnnouncement":"In 2 miles, Keep right to stay on AP-1.","announcement":"In 2 miles, Keep right to stay on AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep right to stay on AP-1.","announcement":"In a half mile, Keep right to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on AP-1, AP-8 toward Hernani, Pasaia.","announcement":"Keep right to stay on AP-1, AP-8 toward Hernani, Pasaia.","distanceAlongGeometry":293.333}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[133,309,313],"duration":0.324,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":0.277,"geometry_index":10398,"location":[-2.431451,43.191169]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":1.012,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":0.938,"geometry_index":10399,"location":[-2.43153,43.191215]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,309],"duration":5.287,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":4.891,"geometry_index":10400,"location":[-2.431793,43.19137]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[129,310],"duration":4.051,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":3.746,"geometry_index":10403,"location":[-2.433182,43.192137]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[138,323],"duration":7.896,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":7.502,"geometry_index":10406,"location":[-2.434125,43.192813]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,352],"duration":3.244,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":1,"weight":3.082,"geometry_index":10411,"location":[-2.435115,43.194478]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,182],"duration":5.922,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.627,"geometry_index":10414,"location":[-2.435165,43.195209]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,203],"duration":4.68,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":4.445,"geometry_index":10420,"location":[-2.434687,43.196526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":5.283,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":2,"out":0,"weight":5.018,"geometry_index":10422,"location":[-2.434065,43.197345]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.433277,43.19841],"geometry_index":10428,"admin_index":2,"weight":50.02,"is_urban":false,"turn_weight":6,"duration":46.344,"bearings":[23,200,211],"out":0,"in":1,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":16.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.371,"geometry_index":10466,"location":[-2.422052,43.204964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":3.986,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.787,"geometry_index":10480,"location":[-2.418332,43.207498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,230],"duration":30.115,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.609,"geometry_index":10485,"location":[-2.417273,43.208005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,253],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.84,"geometry_index":10519,"location":[-2.412128,43.213023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,234],"duration":25.881,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.232,"geometry_index":10524,"location":[-2.41018,43.213777]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":0.588,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.572,"geometry_index":10545,"location":[-2.405472,43.21835]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":0.854,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.832,"geometry_index":10546,"location":[-2.405332,43.218432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,230],"duration":3.674,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.582,"geometry_index":10547,"location":[-2.405111,43.218568]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,222],"duration":11.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.543,"geometry_index":10551,"location":[-2.404229,43.219178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,186],"duration":7.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.98,"geometry_index":10562,"location":[-2.402791,43.221598]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,352],"duration":5.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":5.289,"geometry_index":10567,"location":[-2.402772,43.223369]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,355],"duration":8.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":8.391,"geometry_index":10571,"location":[-2.403004,43.224708]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,185],"duration":9.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.234,"geometry_index":10578,"location":[-2.402937,43.226842]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,348],"duration":1.002,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":0.928,"geometry_index":10584,"location":[-2.403066,43.229249]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,347],"duration":2.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":2.266,"geometry_index":10585,"location":[-2.403135,43.229487]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[165,342,351],"duration":17.113,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":1,"weight":15.809,"geometry_index":10589,"location":[-2.40334,43.230061]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,194],"duration":0.455,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.42,"geometry_index":10611,"location":[-2.404501,43.23393]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.404458,43.234032],"geometry_index":10612,"admin_index":2,"weight":12.482,"is_urban":false,"turn_weight":1,"duration":12.422,"bearings":[20,182,197],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":115.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":103.613,"geometry_index":10626,"location":[-2.401901,43.236295]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":9.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.943,"geometry_index":10717,"location":[-2.383562,43.258258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.557,"geometry_index":10724,"location":[-2.380853,43.259579]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,238],"duration":61.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":55.756,"geometry_index":10727,"location":[-2.379437,43.260211]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,223],"duration":10.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":9.791,"geometry_index":10773,"location":[-2.368817,43.27108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,218],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.926,"geometry_index":10781,"location":[-2.367168,43.273225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,222],"duration":5.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.326,"geometry_index":10782,"location":[-2.36695,43.273401]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,214],"duration":9.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.416,"geometry_index":10786,"location":[-2.365797,43.274368]},{"tunnel_name":"Istiña","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[27,202],"duration":8.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.9,"geometry_index":10792,"location":[-2.3648,43.276258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,220],"duration":19.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.568,"geometry_index":10796,"location":[-2.363385,43.2779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":13.557,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.541,"geometry_index":10805,"location":[-2.359618,43.281314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,208],"duration":30.912,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":28.594,"geometry_index":10813,"location":[-2.35741,43.284056]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":3.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.441,"geometry_index":10839,"location":[-2.349068,43.285382]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,275],"duration":5.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.357,"geometry_index":10843,"location":[-2.347925,43.285364]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,297],"duration":6.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.385,"geometry_index":10849,"location":[-2.346295,43.284942]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,291],"duration":6.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.461,"geometry_index":10854,"location":[-2.344423,43.284287]},{"tunnel_name":"Itziar","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[92,276],"duration":17.846,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.506,"geometry_index":10859,"location":[-2.342382,43.283964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,260],"duration":15.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.043,"geometry_index":10862,"location":[-2.336742,43.284336]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":1.525,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.412,"geometry_index":10869,"location":[-2.331967,43.284581]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[85,94,264],"duration":19.168,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.713,"geometry_index":10870,"location":[-2.331491,43.284617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,281],"duration":76.555,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":70.795,"geometry_index":10885,"location":[-2.325361,43.284356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,323],"duration":94.17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":87.107,"geometry_index":10957,"location":[-2.307863,43.271696]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":1.83,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.693,"geometry_index":11059,"location":[-2.27719,43.263015]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[62,69,242],"duration":0.301,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.271,"geometry_index":11062,"location":[-2.276518,43.263268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":13.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.539,"geometry_index":11063,"location":[-2.276427,43.263303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.199,"geometry_index":11077,"location":[-2.272696,43.26518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,227],"duration":5.604,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.324,"geometry_index":11078,"location":[-2.27239,43.265389]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.271157,43.266403],"geometry_index":11085,"admin_index":2,"weight":18.389,"is_urban":false,"turn_weight":0.5,"duration":18.854,"bearings":[35,208,218],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,225],"duration":4.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.172,"geometry_index":11109,"location":[-2.267907,43.269949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,236],"duration":5.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.637,"geometry_index":11114,"location":[-2.26682,43.270559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":5.736,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.449,"geometry_index":11123,"location":[-2.26515,43.271128]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":1.885,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.791,"geometry_index":11130,"location":[-2.263401,43.271376]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.107,"geometry_index":11132,"location":[-2.262855,43.271402]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":1.029,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.977,"geometry_index":11139,"location":[-2.26101,43.271474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,264],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.107,"geometry_index":11140,"location":[-2.260713,43.271498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,250],"duration":3.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.891,"geometry_index":11149,"location":[-2.25893,43.271837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,241],"duration":6.428,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.107,"geometry_index":11154,"location":[-2.258149,43.272117]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,225],"duration":3.857,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.664,"geometry_index":11162,"location":[-2.256684,43.272931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,213],"duration":30.943,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":29.396,"geometry_index":11168,"location":[-2.256006,43.273573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":4.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.949,"geometry_index":11208,"location":[-2.250695,43.27775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,274],"duration":81.502,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":75.387,"geometry_index":11212,"location":[-2.249508,43.277642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,264],"duration":6.014,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.562,"geometry_index":11268,"location":[-2.2258,43.285149]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,258],"duration":28.721,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.566,"geometry_index":11271,"location":[-2.223952,43.285393]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,303],"duration":0.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.328,"geometry_index":11290,"location":[-2.216081,43.283262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,303],"duration":16.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.301,"geometry_index":11291,"location":[-2.215991,43.283219]},{"tunnel_name":"Meaga","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[121,305],"duration":18.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.137,"geometry_index":11301,"location":[-2.211892,43.281484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,265],"duration":73.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":67.711,"geometry_index":11305,"location":[-2.20698,43.280608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":64.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":61.449,"geometry_index":11346,"location":[-2.183995,43.281864]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,246],"duration":2.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.832,"geometry_index":11397,"location":[-2.165193,43.279209]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,248],"duration":7.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.273,"geometry_index":11399,"location":[-2.164337,43.279461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,261],"duration":3.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.254,"geometry_index":11404,"location":[-2.162619,43.279757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,267],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3,"geometry_index":11406,"location":[-2.161824,43.279784]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[99,115,272],"duration":7.121,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.934,"geometry_index":11408,"location":[-2.1611,43.279769]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,279],"duration":14.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.543,"geometry_index":11409,"location":[-2.160138,43.279662]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.159098,43.279455],"geometry_index":11410,"admin_index":2,"weight":38.398,"is_urban":false,"toll_collection":{"name":"Zarautz","type":"toll_booth"},"turn_weight":15,"duration":24,"bearings":[101,285],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,272],"duration":10.377,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.117,"geometry_index":11412,"location":[-2.157391,43.279322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,278],"duration":13.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":13.355,"geometry_index":11415,"location":[-2.155013,43.279026]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.151401,43.278941],"geometry_index":11423,"admin_index":2,"weight":12.219,"is_urban":false,"turn_weight":0.75,"duration":11.785,"bearings":[85,262,267],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,242],"duration":5.127,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.996,"geometry_index":11430,"location":[-2.148099,43.279639]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":48.287,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":45.871,"geometry_index":11434,"location":[-2.146818,43.280357]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,277],"duration":20.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":19.379,"geometry_index":11465,"location":[-2.133314,43.283056]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,278],"duration":17.58,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.699,"geometry_index":11469,"location":[-2.126469,43.282331]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,276],"duration":29.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":26.973,"geometry_index":11482,"location":[-2.119267,43.282257]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.107738,43.282142],"geometry_index":11503,"admin_index":2,"weight":193.625,"is_urban":false,"turn_weight":0.75,"duration":208.535,"bearings":[67,239,251],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"bearings":[105,279],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":11589,"location":[-2.040834,43.292703]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Hernani"},{"type":"text","text":"/"},{"type":"text","text":"Pasaia"}],"type":"fork","modifier":"right","text":"Hernani / Pasaia"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":42710.539},{"sub":{"components":[{"active":false,"directions":["left"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["left","straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Hernani"},{"type":"text","text":"/"},{"type":"text","text":"Pasaia"}],"type":"fork","modifier":"right","text":"Hernani / Pasaia"},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"right","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"destinations":"AP-1, AP-8: Elgoibar, Donostia/San Sebastián","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take AP-1/AP-8 toward Elgoibar/Donostia/San Sebastián.","modifier":"slight left","bearing_after":309,"bearing_before":313,"location":[-2.431451,43.191169]},"speedLimitSign":"vienna","name":"Iparraldeko autobidea","weight_typical":1551.361,"duration_typical":1638.596,"duration":1638.596,"distance":42710.539,"driving_side":"right","weight":1551.35,"mode":"driving","ref":"AP-1; E 05; E 80","geometry":"awdkqAt|ksC{A|CuHlOmFrKa\\xu@mJjRaEfIeOdW_SnW_JlJcUzPqRxKkTtH_]`IyKjAiKr@qS[iFQuIaAeRkDoNyDiK}DiPcI}c@yYgMaKiE{D_MuJwJuHwKsHmPuJiCUgm@kZeIkEaLeJwM_M_NuOyL}RgIqQaIcTiHkTcFuRuGwUmFaQuEyOwHeQoJyPuIsKiLwMmJeLiOaTmM}SyHmPyFgP_G}QaF_SaEiSmC{LaDcPyE}TeFqVsHmZ_IeWuHuTqHoTeJoTuGyOsIeQkI{OqFmIuCoEaPkTwSkUsQaSqWcZcNyQaDqEqBcDoDkGuEmIiFmLuGsQwI{Y_IyYoF_RwE}NcGcO{DiImByC}BoD{FeIkFwF{H}FcJyFmJiF{HwC{F_BiIcBoKcAeMo@o[]sMScKm@uMaBkK{BuGwBoJ{DsFqCyHsFuJyI{GiHyHyKgGaKqHoQwEyMoDaNuCcPyBwPuCuZiAoL}Dgb@uAaKwAaK}EqY}FuVwIm[uFoOyLqYeQg\\iLmOmJiLuIiIuK_K_LoIyMqIwQsJec@kTuHkEwHeEyI{FaJeGcJeIiI}H{LkNoOwTkK}PgHwNcKoT{HyPcDwGoGyLqJoQ_HoLsJgO}D{EaGiHwNwOuJ_IgOmLyHoEiN}GkNaG{L}DoOiDmO}BeKu@aRiB{SM_WKgW`@oUz@kZhDuZzC}Q`BuHf@kLt@iWZwQJmP@eViA}Q}AkP}@}c@qAqb@M{\\dA}YtCgQjB{AX{MhCcJjBkKxCyCx@qFxAeZzJsTjKcSxIkDlBcFpCoSlK{IfEyAr@oCz@sK~DgIbCoI|B}DZsCTkH\\uJd@_JImF]iJ]wJ_B}IoBgCw@kEuAmGyBgMcGgH}DcH_GgG_F_F_FgFkFmIyJ{J}M_MqR{MsUkHqMoIcPyE}JyE}JiJ}RoIyRsJmTqKeUmKcRaJqMkFsG{F}FmHcHwIeGcLiG{MoFsMkDkLeBiNw@iKMwNj@sNlByPlDuP~C}KvBwMnAeKb@cJIsJg@}Iy@kQeEsP_HsMmIcKcIiKcKoOgTuZmg@mQ_YqOwTyZw_@yTcUwPkOcQmNaQuLqNgJe]yQqPgHeLkE}SyG}V{GsXiGmXuGiVwGwWsK{MiIuNyKoMiLiOuPcTiZqXkg@mJeR_KiO}MqPiHiHmHeGmImFcI_EsHqCuHuCeIcBeMkB{Im@uLOyLV}d@nAmMQmOcAgWcGwJiE}JaF}JcHoHyGoSkUeLuSyGeOcKy\\kGs[mFg`@yE{^uFi\\}Kmd@yMg`@uWmk@eN}YuBqEgL{VqN}[{Lc[iIkUiKe^qLg[cQ}g@sJ{XwHuToIcRgNqX{MyTaL}PwIwLqJeLuI_K_JsJiSiSmM}LeOeOeQaUaHoMqIyR_IiXmEeOiDkNuGgW}G_ToJeVkK{SuMuTsSsV}MiMiPiMuPsJiOmHyOgGoRaFiP}CeYqC_Sq@qXAqTNgOKwRuAqR_EaR{G}P_MiM{KyUo]_KuR{JgSoN{V}FyIcC{CyD}EyI_JmN_LaWoMu`@aRmWsPwOcPaByB_JsLwUu]cLgOkJ}KeLeKmK_HoJ}EiQaHc\\gLoZeLgR{Ika@qWiZ}SuVyUgPcSaHkHuQkRiWkYm]m`@qj@op@gToW{UmXsQaTqWkYiXwW{UySeQwNiWmRsT}NqUiNiOqJeSmMoOkKuR{OcS_SyR}WiNaV{FyKyGkPeEoM{C{N}C{PuB}RkAuRa@{REcVbAgVdCgWjC}OdF_VfEeQzG{WpDsRzCyR~AsPpAaWHeTWg]OqSAgSTmS^eIZqGzAwPnBsOnEkUnDiPbFgRzJ}]fFeRvGwWtGmYjCuNlA{GlF{_@fCoWlBuZrAs`@zAy{A_FkgBcRizCiAs|@o@ob@{@ie@cAig@eAyc@gBgp@aAsc@gAw\\sAwk@i@mi@IiZHq]Z_`@XyNf@wY\\uPh@sOVyHjBs_@|AkWt@uNxAySnB{WdCoYnCgWfDwZhDqVpCqRnCkR|C}SlFg[~Gu^bDoOnIo`@xCiM`H{XbGwTjFwQxL{`@vImXnRkj@tYcx@tDwJzHeTnJsWjKgYzGkSnGiSbEaMdIuTtJyUvJaTrGgMfHsM`JyNbGkJ|DoFrEgG`FkGpHmJpOoPfN{MjM}KnKiIhKqHlJyFdMqHfIsElHqDrI}DhGuClLeFxLyEvJiDfLcErKqDxJyCtKcDfKwC~NaE`R}EnNuDdOgE|LwDzLeEvNsFdK{EfJuExL{GtLyHbLsHbRkOnImHvIoIjJwJ|KiMvIwK|JeN~GsK|FaJfGgKdHwMnIePzHiPrJoSvJsSpJyRtJiSnHyNhIyO`Ri^~IiPfJ{PxJkQxNcWlRs\\dN{TxEaIlEgH`IkMvMwTlG}J|I}OdHgM~G_NxG}MdH{OxFgNnHqQlIcUrHgSfFmNrEsLzGeQtHmRdIuQfJwRdHqMtHuM|IcNhQyUlIaKlLqMdLyKrJyIhKcJ`KqIxLeKlKyI|LaL|HqIjKaMzFqHvE_HtF{ItGqLdFaKxEkKzFyNdDoJzF{PhMkc@pGuUpFcTnF_UzGqY`DgQfEwRfDmQjEa[hD}[hCkd@b@_VHg^o@_XKyD}Am[{D{`@}D}WiDyScFyR{FeTkH{TaImTwMkZqJiRwMyU_PoWcVsa@uMkU}NsYqRmc@wMq]yHoUyFyQgGuSwCoKqAwE{EyQkEmOeAuD_EsNwCgK{FyReE_NiEgM}EmNiFqNkF{MaFqL{G{OsIcRsMyWmI_P}K_RaLcReKeOwGuJ_GyIyF{GwEgGcEqEwLuMgDwCgEcE{HwG{LeKaL}IaGgE{G}EcEyC}F}DuGwEgRkMoLuIoKeIkIqG{DaDaGaFkGaGmGgGgFqFsFgG{HwJqGuI{D_GaGeJkHgMeHuNcGyMyDiJsD{JkD{JaCwHkBqGeBqGcCeJqBaJgBwIyDsSyA_KeAiHoCsTkAcNcAgN}@qOk@kN_@aO[}MWeREaDOgIQ}POcTWmUa@}S]qPo@qQm@}Lo@}K{@{JiAmMgAqJqBcOsAqHgCcOk@{CaAeFuB{IyBcJiCeJsBmGwCaJ{D_LaEoK}DaJ{EqJqH}NyFcJ_CiDmBqCoFcH_FoFqGuGoFeFcEiDoEgD}DqCoEmCeFsCwE}BuJyDsHaCsHwBqEiA}JeBsGoAuGcAkHkAcIoAoKmByEkAeHgByGgC}GyCuHqE{DoCaHyFeG_GwGqGaKwOkJkQmHeQwG_TuBiJ}AyJgAeImAeK}@yJi@kJ[gMM}K@_KNaL`@yLv@{Pj@gKz@cPpA}X\\{Qv@m]Xc]Yw\\k@}\\y@cZ}Am\\aBaYeBeVuBkXeDg\\sDe]iFk`@mFa]_Ge^yGs\\sHs]eIoZuHiUyK{YwMkZiMmTmI_N{MyRcM_Qca@wd@qD}DeFwF{VqXwA}AmX_[mXo]mMiQqOwUsPaZ}JiSgJkSwLuZyMw_@oIuY{HgYsJge@eGw\\aHef@eDaYcCyYoBcY}Ac[iA}`@a@eWc@sf@G}b@Y{Zq@kb@m@uRiAe_@a@}LeCgb@{Csf@eEsg@}Dka@oCs\\qBwa@i@yb@d@iW~@eWfDga@jFu_@jF_W~EiRnHaUrL}XjGgMvHaNpHuLn\\eg@lMgUbKiTlJ{VtAsDnGmUlI__@dHi^bDiNbFuR~GcUrHaS|HwQdYyo@hLuXtYe|@tXklAlFkuAaDaqAqEeo@oIkx@kDsX}Eyb@cImcA}Bcf@u@m_@q@av@Fax@Rcj@h@_j@tAas@lAsd@xBsh@bBy_@fC}g@tA}_@l@i_@@o_@Y{[aA}^wCgo@mCsf@mAa^q@k^Ss^b@c`@RkNf@sRzAyb@~@u_@VkUMiXa@cUyAiWyBiVsC{TgE}VcEkRyNen@oDiReBiJyE{YyAwMqA_Py@qOy@wTU{YXyPn@}U`Cg^zCoWfFwZvCuOzEcRtIuV`DmJzPw\\`Vi`@rTs[tO_XnQ}\\`LgVfKiVvGsQzFkQhIqZhJy^jEeUbFcZpDuWtCaYrBeUdAoNvA}Uz@mV|@q_@@k]AsP]aXs@eTy@}T}AaVqBgWeCsT{@{Hk@kFuDsWsCqQcAyEwQu{@eGoXo@sCgM{o@iDeX{BiS}AsPoBwR{AoWYyU[{YEyEb@me@tEc{@|K_`AbFcq@d@qw@~HqiA~Dmp@nAsWz@eUv@eVt@mXn@yf@LoYCw]Q{Zg@_]w@k[gCif@mEud@wCuScDgSeJaa@cI_Y_G}OuF{NwJmSmPyY{AkCkKoOeBsBkLgNaViViCiCqRmRs\\u^kMgSgLoSkHyOsKaZsF}RgEwQiGm]kEk]uBe\\q@cUQgZl@a[nB}_@|ImqAjBob@b@m^OqZqAy}@Suc@Ja\\`@u\\`Ag[nBke@vHcvAlOa}CxEacAhKqqBjF_lAjBsd@tAka@Fke@Mc\\}@me@}@}ZiBs]iAk]}@c]EmW^aY~@sXbD{]rGoc@nIm_@fHeYrFaUlGyX~Fs]hEu]nBgYzAcXZ_SNcc@gAck@c@gPIuDkCgf@gCq`@e@cGeCmZaF}g@uf@o`Dck@cqCiTacB_Po|@_i@upByYchAe^axB}Joi@c_@ejA_d@mpAyGoYqFu[mCqWuAmTiA}XUaXZq[vAk^|Bs^~Cwd@lB{d@Xgd@m@aXaBa`@iCmYwDqX_FkW}Nav@aImb@iHaf@cI}p@oHwt@yGqt@}KkhA}OmbAiLgl@gUibAcsAydEoNan@y\\yeBcYwaC{MaiAaYc}AiQeu@cg@qwAqn@cvAwWym@kKaZkKy_@oI_b@uEi[g@iDsFcn@iAmVwAk`@v@wp@xAml@lAw[xAq`@~@mf@Cw]a@c_@aBw{@Rud@nAcYjDc[jF}ZlIeZjTeo@bHmVbH{Z|DwZ`Ca[bAeZa@qf@yB}v@y@}]v@uk@fCo[|Fae@nLql@pB_K~Ioc@hG{d@nCeh@rEsz@rEez@vFqf@pGs_@lL{_@`Wkg@jUiYrWcT"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 9 miles.","announcement":"Continue for 9 miles.","distanceAlongGeometry":13982.947},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on AP-1.","announcement":"In 2 miles, Keep left to stay on AP-1.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on AP-1.","announcement":"In a half mile, Keep left to stay on AP-1.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on AP-1, AP-8.","announcement":"Keep left to stay on AP-1, AP-8.","distanceAlongGeometry":253.333}],"intersections":[{"lanes":[{"indications":["left"],"valid":false,"active":false},{"indications":["left","straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true}],"location":[-2.037748,43.29109],"geometry_index":11595,"admin_index":2,"weight":9.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.604,"bearings":[153,160,328],"out":1,"in":2,"turn_duration":0.015,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[166,349],"duration":25.752,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.105,"geometry_index":11600,"location":[-2.036952,43.288819]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[111,295],"duration":10.447,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.445,"geometry_index":11611,"location":[-2.031084,43.284634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,293],"duration":32.471,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":33.281,"geometry_index":11614,"location":[-2.027705,43.283626]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,289],"duration":14.814,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.188,"geometry_index":11630,"location":[-2.018552,43.279094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":6.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.707,"geometry_index":11637,"location":[-2.013827,43.277394]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-2.011725,43.276651],"geometry_index":11640,"admin_index":2,"weight":55.922,"is_urban":false,"turn_weight":1,"duration":53.609,"bearings":[110,286,295],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,244],"duration":1.412,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.445,"geometry_index":11659,"location":[-1.993589,43.277985]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,245],"duration":17.33,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":17.328,"geometry_index":11660,"location":[-1.993138,43.27814]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[85,265],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.195,"geometry_index":11668,"location":[-1.987315,43.279261]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,265],"duration":7.057,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.059,"geometry_index":11669,"location":[-1.986564,43.279313]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[96,276],"duration":1.318,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.352,"geometry_index":11672,"location":[-1.984123,43.279286]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[96,101,276],"duration":2.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.41,"geometry_index":11673,"location":[-1.983663,43.279253]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[98,278],"duration":23.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.332,"geometry_index":11675,"location":[-1.982851,43.279181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[105,286],"duration":9.701,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":10.18,"geometry_index":11682,"location":[-1.974897,43.277687]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[101,285],"duration":5.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.535,"geometry_index":11685,"location":[-1.971665,43.277034]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,281],"duration":11.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.012,"geometry_index":11686,"location":[-1.969911,43.276784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,254],"duration":8.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.922,"geometry_index":11692,"location":[-1.966014,43.277135]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,226],"duration":4.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.266,"geometry_index":11696,"location":[-1.963508,43.27816]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[36,41,223],"duration":0.441,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.438,"geometry_index":11698,"location":[-1.96253,43.278892]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":10.904,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":11.449,"geometry_index":11699,"location":[-1.962442,43.278981]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.960341,43.281356],"geometry_index":11705,"admin_index":2,"weight":3.652,"is_urban":false,"turn_weight":1,"duration":2.533,"bearings":[30,207,210],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[32,213],"duration":4.326,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.543,"geometry_index":11708,"location":[-1.959869,43.281915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,216],"duration":7.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.82,"geometry_index":11710,"location":[-1.958998,43.282846]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.957289,43.284245],"geometry_index":11716,"admin_index":2,"weight":3.469,"is_urban":false,"turn_weight":1,"duration":2.371,"bearings":[47,220,227],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,227],"duration":2.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.77,"geometry_index":11718,"location":[-1.956692,43.284648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,229],"duration":34.951,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":35.824,"geometry_index":11720,"location":[-1.956002,43.285088]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[77,258],"duration":12.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.547,"geometry_index":11735,"location":[-1.94466,43.288337]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[90,268],"duration":14.4,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.039,"geometry_index":11742,"location":[-1.940374,43.288803]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,275],"duration":12.99,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":12.664,"geometry_index":11746,"location":[-1.935491,43.288627]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[121,297],"duration":6.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.863,"geometry_index":11753,"location":[-1.930438,43.287489]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,305],"duration":1.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.383,"geometry_index":11756,"location":[-1.928693,43.286686]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":2.908,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.836,"geometry_index":11757,"location":[-1.928301,43.28648]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":0.27,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.242,"geometry_index":11759,"location":[-1.927504,43.286056]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":0.713,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.695,"geometry_index":11760,"location":[-1.927435,43.286019]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[126,306],"duration":2.209,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.156,"geometry_index":11761,"location":[-1.927241,43.285915]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[128,308],"duration":16.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.375,"geometry_index":11763,"location":[-1.926638,43.285577]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,289],"duration":8.395,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.957,"geometry_index":11771,"location":[-1.921711,43.283686]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[97,278],"duration":17.623,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":16.742,"geometry_index":11777,"location":[-1.918885,43.28324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,255],"duration":11.225,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":25.664,"geometry_index":11785,"location":[-1.912604,43.283601]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":52.822,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":51.5,"geometry_index":11790,"location":[-1.908757,43.284853]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,190],"duration":7.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.086,"geometry_index":11811,"location":[-1.901205,43.297432]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,210],"duration":4.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.355,"geometry_index":11815,"location":[-1.900061,43.299417]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"bearings":[42,223],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":11817,"location":[-1.899108,43.300252]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":14022.947},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""},{"active":false,"directions":["right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-1","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-1"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"black","name":"default","display_ref":"AP-8","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"AP-8"}],"type":"fork","modifier":"left","text":"AP-1 / AP-8"},"distanceAlongGeometry":3218.688}],"destinations":"AP-1, AP-8, E-5, E-70, E-80: Hernani, Pasaia, Irun, Baiona, Bordeaux","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on AP-1/AP-8/E 05/E 70 toward Hernani/Pasaia/Irun/Baiona.","modifier":"slight right","bearing_after":160,"bearing_before":148,"location":[-2.037748,43.29109]},"speedLimitSign":"vienna","name":"","weight_typical":508.963,"duration_typical":488.656,"duration":488.656,"distance":14022.947,"driving_side":"right","weight":508.957,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"c|gqqAf~j{Bv`@}OjP{E`SyEjGgAj}@{Ork@wNxb@qTr[iUnc@ie@rRa[`MsVbIyQpRwh@bRgs@~Psx@nNum@hSmhAfQcz@lWsmArK_a@fOqc@`Sse@|Uif@di@ww@`n@uy@rSy\\vPo\\rK_WlKoY`Ku\\bE{OdEgRfFaXhEiWvScrAxOo|@rHa`@nG{YvKmb@v]idAvKo[`Nsg@hPin@hNcj@xL}g@bPo~@tFk^bLw{@bMurAzHqnBhA_y@m@gqAcCmcAsDo}@_Fmw@cCmZiEgc@_Foc@oFs`@kG{`@}Lor@cOoq@aRau@_n@gbCuHe[{EqSaKag@yKyq@mK{s@gHus@cFil@cE}s@kBuo@gB}m@m@ap@`@gjA`Ag[`Aw[z@oXrAgX~Cun@|LcnApQ}|ArOgrAtKa_AtF_d@zQa{A~S{hBnMycAhDiZrNslBt@wk@[mh@iBao@aCa^_Ds\\kIso@oIck@cU_{@{Sqd@qI}MuPyWa[ic@qDoDyRoRcPsQgQaPa^yYcX_Sad@i\\sGyE}IwGkN}Lo^oZuY}YqJ_KmJoK{NkPcPaUsPoUyLkS{JoPiLyR{AiCsWye@kO{YiRsb@kRye@wNsb@mIgXiUo{@eNcm@cLem@uKcq@cKky@mHst@gJoaAoHm|@wJgkAmCqZ}Nu_B}Deh@yBuc@KyD_A{\\_@_w@As@NepAn@s~@|AwgA`EsvAjAci@tCoj@dEuf@~Eib@`Iqd@bQow@tUc|@dSyl@dN_a@xMg\\zKoWfN{[fJ}ShAiCnEcKnF_MrLuV|EaKrOq^nPmc@tRel@zR_q@bPov@dJuf@fHod@xFq^vIm|@vAiUvAwTVaG`Bo^tBwj@|@gr@Kar@Qia@kBkq@aDwo@}Gu|@{Hkr@eCiRkSenAkS_`A_S_o@iL}[_HqRsTqk@_[yp@}n@}bAym@qy@ey@{z@id@{_@co@ec@iV}MedAqa@il@aR{]_Gw[qEoi@{G{d@}Caa@a@cd@~A}a@Tid@Lob@e@m_@qFcd@qLa_@{OoVmOk^sWwYwYmXy_@yj@kt@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 3 miles.","announcement":"Continue for 3 miles.","distanceAlongGeometry":5522.24},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 05.","announcement":"In 1 mile, Keep left to stay on E 05.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 05.","announcement":"In a half mile, Keep left to stay on E 05.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 05, E 70.","announcement":"Keep left to stay on E 05, E 70.","distanceAlongGeometry":168.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false},{"indications":["right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[-1.898254,43.300953],"geometry_index":11818,"admin_index":2,"weight":16.449,"is_urban":false,"turn_weight":15,"duration":1.426,"bearings":[30,37,222],"out":0,"in":2,"turn_duration":0.045,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":7.818,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":8.211,"geometry_index":11819,"location":[-1.898022,43.301249]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":0.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":0.195,"geometry_index":11824,"location":[-1.896763,43.302943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,212],"duration":4.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":4.457,"geometry_index":11825,"location":[-1.896729,43.302982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":8.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":8.625,"geometry_index":11828,"location":[-1.895784,43.303736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,255],"duration":7.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":7.996,"geometry_index":11841,"location":[-1.893548,43.304558]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.891316,43.304986],"geometry_index":11847,"admin_index":2,"weight":6.457,"is_urban":true,"turn_weight":1,"duration":5.086,"bearings":[69,245,252],"out":0,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":16.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":2,"out":0,"weight":17.223,"geometry_index":11852,"location":[-1.889785,43.305572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":4.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":5.188,"geometry_index":11862,"location":[-1.88507,43.30746]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":3.74,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.93,"geometry_index":11868,"location":[-1.883349,43.307398]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.246,"geometry_index":11871,"location":[-1.882083,43.307164]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":6.922,"geometry_index":11872,"location":[-1.881699,43.307072]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.09,"geometry_index":11879,"location":[-1.879459,43.306827]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,267],"duration":14.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.23,"geometry_index":11880,"location":[-1.879113,43.306841]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,213],"duration":2.646,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.715,"geometry_index":11892,"location":[-1.874889,43.308813]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":59.684,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":59.676,"geometry_index":11895,"location":[-1.87448,43.309417]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[87,94,264],"duration":25.578,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":24.934,"geometry_index":11938,"location":[-1.857274,43.316725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,251],"duration":16.182,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":15.777,"geometry_index":11971,"location":[-1.849028,43.317468]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.843762,43.317117],"geometry_index":11992,"admin_index":2,"weight":5.008,"is_urban":false,"turn_weight":1,"duration":4.131,"bearings":[99,272,282],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":3.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.852,"geometry_index":11997,"location":[-1.842478,43.317035]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,259],"duration":3.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.512,"geometry_index":12002,"location":[-1.841245,43.317133]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,249],"duration":0.467,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.457,"geometry_index":12007,"location":[-1.84016,43.317385]},{"bearings":[65,247],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"geometry_index":12008,"location":[-1.840048,43.31742]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E05","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 05"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E70","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 70"}],"type":"fork","modifier":"left","text":"E 05 / E 70"},"distanceAlongGeometry":5562.24}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on AP-1/AP-8/E 05/E 70.","modifier":"slight left","bearing_after":30,"bearing_before":42,"location":[-1.898254,43.300953]},"speedLimitSign":"vienna","name":"","weight_typical":222.287,"duration_typical":201.963,"duration":201.963,"distance":5562.24,"driving_side":"right","weight":222.293,"mode":"driving","ref":"AP-1; AP-8; E 05; E 70; E 80","geometry":"qd{qqAzozrBoQoMuZuTch@_Z{RaNaDmCcKoImAcAkQiRyQqV}HeOgGcMyEkK{DaKiDgKiBuGkAiE_DkN[_BsBgK_C_NmBsMy@}HUwBcBcT}Bg]u@sIuBoVsD_[uG_YiD{Q{DaRiGuT_JsWcEmJ}F{MkYyh@_KyQaKmTaQea@sLa_@gJca@}Gka@wDgb@_AwZk@_UKqNTyO^kS`AeQz@sMtAsSlE{b@nDsUvD_W|Eu^vCk\\hAcR^mORaMLgQWaJ[sTkAuScBcToCsVwH{c@oGmVuFcRiO{_@wKqSiJwNuMoQwPmQoM_LqIeGkK{GyMoGwNyGaMiFqOeH{TeKcOsHuRqLuPoLaOwKqNoMkQsP}O_Q{R{UwRyX}NsVmKgS{IeQuKmWuNe^cJaYsKu_@_HcXkIm`@gGu_@iFw^{Esd@wDuh@mBoe@o@oe@k@ia@o@}c@s@oUwAk^{BkWaEc[}EqYiH}[iHqYeJc_@eI}\\qHkb@eD_YoCaa@e@uOYeSGe[BqMPiI^uLx@{NjAqTv@mNdAqPn@_Mn@mM`@oKPsNNwPFyKIgKGuHc@kLc@oIg@aIs@}IcAmL}AyNcBuMmD_TeDaQiCqMkDoOcDcNsDoPwCcOsD_SgDgTaCeRwAuNcAsNi@wN]{POkNCaPN}M`@kPbAgQfAeNlAiOhBkQzAqMhByM`AkGpA_LlBwOzAqMnAmMlAsNdAaQp@{N^mNLsRAgJAqIImMw@}RiA}Su@eJW}CiBaPiB{NoBuK{CgPeA_FaByHuDwN}FiU"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 24 miles.","announcement":"Continue for 24 miles.","distanceAlongGeometry":38839.867},{"ssmlAnnouncement":"In 2 miles, Take exit A64.","announcement":"In 2 miles, Take exit A64.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit A64.","announcement":"In a half mile, Take exit A64.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit A64 onto E 80 toward Toulouse, Pau.","announcement":"Take exit A64 onto E 80 toward Toulouse, Pau.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[63,68,244],"duration":31.178,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":30.379,"geometry_index":12011,"location":[-1.839282,43.317687]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.836409,43.318491],"geometry_index":12017,"admin_index":2,"weight":49.207,"is_urban":false,"toll_collection":{"type":"toll_booth"},"turn_weight":15,"duration":35.086,"bearings":[83,256],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[61,237,245],"duration":62.395,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":62.371,"geometry_index":12029,"location":[-1.829038,43.319712]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,255],"duration":0.609,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.602,"geometry_index":12076,"location":[-1.80689,43.327858]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":14.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":14.797,"geometry_index":12077,"location":[-1.8067,43.327899]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,237],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":4.012,"geometry_index":12089,"location":[-1.802575,43.329731]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":133.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":136.492,"geometry_index":12092,"location":[-1.801438,43.330156]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[73,80,255],"duration":0.561,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.539,"geometry_index":12192,"location":[-1.759315,43.338257]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":7.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":7.98,"geometry_index":12193,"location":[-1.759179,43.338288]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.756041,43.338985],"geometry_index":12200,"admin_index":2,"weight":2.289,"is_urban":false,"turn_weight":1.2,"duration":1.111,"bearings":[70,244,253],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":0.615,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.617,"geometry_index":12201,"location":[-1.755778,43.339054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,250],"duration":2.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":2.457,"geometry_index":12202,"location":[-1.755626,43.339094]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.168,"geometry_index":12203,"location":[-1.755118,43.339217]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,253],"duration":0.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":0.73,"geometry_index":12204,"location":[-1.754836,43.339278]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,254],"duration":1.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.527,"geometry_index":12205,"location":[-1.754659,43.339316]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,253],"duration":1.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":1.184,"geometry_index":12206,"location":[-1.754332,43.33939]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,252],"duration":3.549,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.547,"geometry_index":12207,"location":[-1.754062,43.339452]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":3.15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3.148,"geometry_index":12208,"location":[-1.753254,43.339637]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":2.756,"turn_weight":3775.554,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":2,"out":0,"weight":3778.309,"geometry_index":12209,"location":[-1.752588,43.339785]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[73,253],"duration":2.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.773,"geometry_index":12210,"location":[-1.752011,43.339917]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.751453,43.340041],"geometry_index":12211,"admin_index":3,"weight":31.848,"is_urban":false,"turn_weight":15,"duration":17.322,"bearings":[62,82,253],"out":0,"in":2,"turn_duration":0.041,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,237],"duration":2.625,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.535,"geometry_index":12214,"location":[-1.74968,43.34083]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":3.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.742,"geometry_index":12215,"location":[-1.749552,43.340897]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.749389,43.340984],"geometry_index":12216,"admin_index":3,"weight":18.512,"is_urban":false,"toll_collection":{"name":"Péage de Biriatou","type":"toll_booth"},"turn_weight":15,"duration":3.6,"bearings":[58,234],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":7.564,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.375,"geometry_index":12217,"location":[-1.749237,43.341053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,275],"duration":1.6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.559,"geometry_index":12223,"location":[-1.746806,43.341417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,276],"duration":171.893,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":163.297,"geometry_index":12225,"location":[-1.746265,43.34138]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[75,83,263],"duration":26.566,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":25.207,"geometry_index":12266,"location":[-1.701389,43.358581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":3.789,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.578,"geometry_index":12273,"location":[-1.692706,43.361828]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,231],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.129,"geometry_index":12275,"location":[-1.691633,43.362458]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":39.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":38.707,"geometry_index":12276,"location":[-1.691315,43.362668]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,234],"duration":2.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.113,"geometry_index":12283,"location":[-1.680564,43.370095]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[58,63,236],"duration":26.441,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":26.434,"geometry_index":12284,"location":[-1.679911,43.370418]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.671706,43.373519],"geometry_index":12290,"admin_index":3,"weight":91.164,"is_urban":false,"turn_weight":1,"duration":90.184,"bearings":[64,241,244],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":3.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.969,"geometry_index":12318,"location":[-1.644249,43.381833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,193],"duration":55.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":55.324,"geometry_index":12319,"location":[-1.643929,43.382866]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,184],"duration":1.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.984,"geometry_index":12332,"location":[-1.637099,43.396489]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,186],"duration":4.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.652,"geometry_index":12333,"location":[-1.637027,43.39702]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[15,18,190],"duration":33.844,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":32.988,"geometry_index":12335,"location":[-1.636765,43.398236]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.62934,43.405322],"geometry_index":12345,"admin_index":3,"weight":76.277,"is_urban":false,"turn_weight":0.5,"duration":79.773,"bearings":[55,231,234],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"tunnel_name":"Tranchée couverte de Guéthary","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[52,235],"duration":3.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.355,"geometry_index":12370,"location":[-1.604797,43.417046]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,232],"duration":9.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":9.453,"geometry_index":12371,"location":[-1.603817,43.417608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,221],"duration":3.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.047,"geometry_index":12374,"location":[-1.601028,43.419433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,215],"duration":0.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.219,"geometry_index":12376,"location":[-1.600286,43.420126]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[37,45,214],"duration":27.309,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":25.934,"geometry_index":12377,"location":[-1.600237,43.420178]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.5931,43.425325],"geometry_index":12388,"admin_index":3,"weight":46.18,"is_urban":false,"turn_weight":1,"duration":46.355,"bearings":[54,232,234],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,243],"duration":34.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":33.496,"geometry_index":12397,"location":[-1.584329,43.430258]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,244],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.723,"geometry_index":12402,"location":[-1.576626,43.432419]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,238],"duration":68.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":67.23,"geometry_index":12403,"location":[-1.576093,43.432659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":2.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.629,"geometry_index":12426,"location":[-1.562435,43.447265]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,239],"duration":4.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.465,"geometry_index":12428,"location":[-1.56165,43.447643]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,247],"duration":5.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.469,"geometry_index":12431,"location":[-1.560219,43.44815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,258],"duration":4.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.293,"geometry_index":12435,"location":[-1.55835,43.448553]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[88,100,262],"duration":5.336,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.324,"geometry_index":12436,"location":[-1.556832,43.448703]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,271],"duration":15.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.75,"geometry_index":12438,"location":[-1.555952,43.448718]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.553389,43.448399],"geometry_index":12440,"admin_index":3,"weight":36.645,"is_urban":false,"toll_collection":{"name":"Péage de La Négresse","type":"toll_booth"},"turn_weight":15,"duration":22.199,"bearings":[98,281],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.549761,43.448079],"geometry_index":12444,"admin_index":3,"weight":13.605,"is_urban":false,"turn_weight":0.5,"duration":13.461,"bearings":[102,275,282],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":126.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":123.266,"geometry_index":12446,"location":[-1.545713,43.447407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,276],"duration":2.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.746,"geometry_index":12491,"location":[-1.505063,43.461282]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-1.504009,43.461212],"geometry_index":12492,"admin_index":3,"weight":11.301,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.598,"bearings":[96,113,275],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.500046,43.460885],"geometry_index":12494,"admin_index":3,"weight":7.625,"is_urban":false,"turn_weight":0.5,"duration":7.332,"bearings":[95,269,277],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,269],"duration":3.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.301,"geometry_index":12497,"location":[-1.497536,43.460781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,264],"duration":1.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.703,"geometry_index":12499,"location":[-1.496369,43.460859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,259],"duration":38.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":37.664,"geometry_index":12500,"location":[-1.495775,43.460941]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":3.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.34,"geometry_index":12509,"location":[-1.483419,43.465315]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":32.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":31.453,"geometry_index":12510,"location":[-1.482428,43.465831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,260],"duration":3.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.305,"geometry_index":12515,"location":[-1.472483,43.469703]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":2.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.238,"geometry_index":12517,"location":[-1.471306,43.469805]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":2.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.168,"geometry_index":12518,"location":[-1.470501,43.469846]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":23.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":22.797,"geometry_index":12519,"location":[-1.46972,43.469877]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":0.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.641,"geometry_index":12531,"location":[-1.462417,43.472278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,227],"duration":15.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.637,"geometry_index":12532,"location":[-1.462256,43.472386]},{"bearings":[77,257],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"geometry_index":12549,"location":[-1.457591,43.474131]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Toulouse"},{"type":"text","text":"/"},{"type":"text","text":"Pau"}],"type":"off ramp","modifier":"right","text":"Toulouse / Pau"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"A64"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"off ramp","modifier":"right","text":"Exit A64 E 80"},"distanceAlongGeometry":38866.535}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 05/E 70.","modifier":"slight left","bearing_after":63,"bearing_before":64,"location":[-1.839282,43.317687]},"speedLimitSign":"vienna","name":"","weight_typical":1484.576,"duration_typical":1448.266,"duration":1448.266,"distance":38866.535,"driving_side":"right","weight":5260.125,"mode":"driving","ref":"E 05; E 70","geometry":"mz{rqAbjgoBiKi`@aLq`@wFo[eEcYeCyRwEge@kAuYmAsd@uHgz@sFgv@qIckAeJycAiAkKkCgWuEwb@eDySsD}RgGyVkGsSmGsR}FuNgHeOaHoMgHkLqGqJaMyO_K{KuSwRem@_k@iSaViQaVqRy[iS}c@yHeUaKs\\oJec@qJ{m@mHon@}Iit@gIqm@iJci@sL{j@GWuHu[aHaWmIiY{FgPiKkYuD_K}Q_f@mVap@aKc\\gIo[uH{\\eJuh@yCiViGgj@_Dsi@aAsd@a@ki@o@yg@Yq\\eB_c@qDya@cBaOqA{Jo@_FwEkXuEmToIqZuD_LqCmI_GoOoLeX_MmX_MkYmNw\\{Lw\\cIyWkLqc@aBuHsBkJeFyU{EuWuC_RwAeK}AiL}@_Io@mF}BcXeBaYiBkb@{@y[WsYMg]Vy^z@c`@xBug@dGmx@rDqf@`Dgg@t@mb@Ag\\_@_ZuAc]}BcWiBiQ{DiXmFe[}GiYaF}SgGyU{G{ZuDgTeEmUoCiT}CwZkCi]kA_[iAc\\c@{]Gwc@C_d@a@ab@mAuTuAkYiE{a@iHm^oGmZkMwa@iMo[{Tcc@_Qc\\wPy\\eJuQsJwVoUgr@kKe`@oGkWcDgPwDmS{DaWoDaXyCoW}B{VwAsSiB}Xu@uWy@c[]e]MsYAqSSaZ}@a`@{AcWoBqUwCiXaEoXwEsVgFmTsEyOoFqPoHiRgKiVcIqQ}IcTqJuUwJmYoIg[uHi^kCiQgCgTaBsP}Bs\\oAiYcAkReA_YyBe[sBg[sBqToEi`@}@oGeEkZkGke@aI_m@CUmFo]eDwWeEm[iCmOoAoHuFw^yBsPkAaJsCmS{B{OqJoq@gHsh@gGac@wF{a@oPgl@}U}m@{GsQeC_GmDeIiCoHcP{d@yCiQwAoUc@{Vd@gRz@c]VqJp@gU|FesBvGkuBxQkeGs@qwAeE}xAkCy_BjA}oA[ijAaL}qAaUakAaa@ucBgm@wgBul@_tAce@_s@_n@km@ygAqv@qk@}c@oq@yt@guAmkBuWqVo[qOsXgJuXuDio@eDydBsAkp@wDcp@_Nqi@{Vam@of@sh@{r@q^_v@m]imAy[{cCeOs~AkDqmAh@eoAvCatA|@e}Aw@yv@uCkz@iDyx@_H_l@qXkjB_Mum@gReu@cm@yrB}y@wuBa]{u@gRu_@cSka@cL{Rir@wgA{oBarCi|A}yBmpAsuBs~@afBqw@i`BaDeIeSyg@uXov@uU}x@q[{kAc\\ggA}Z}pAyz@igDmh@usBkSicAgLodAcIkoASogA~CykAhJujApN}jAxS}cAnPgfA`LqhAzFy_AhAi_@Wcr@sAwh@oFos@yGqn@uHui@mQqx@yUuy@e^}w@ub@qt@_aB}vB_{@qz@icAcs@yx@q^on@}Ucy@{Sq_A_Su_AuVq~@w\\{dDm~AgaA{f@ej@g\\arAm`Asj@wa@}z@sg@o]mNoe@uQwk@eKcu@}Jk|AyHe`@oC_e@cF_e@gHmr@qRyx@y\\ev@og@{j@we@ql@ao@mh@yr@_k@sy@i^{o@q_@ct@uf@}iAoy@_pB{f@_pAq^_`A}^yw@ka@ev@sk@edAw^sq@yQec@cTyj@uPch@{YegAg\\kmAeOud@_Q{a@eYgm@qr@qlA{bAugBoPc_@}O}c@yNkj@mLql@{c@ojCwO{z@cVg|@cYwr@cb@g|@_dA}qBqd@yq@oFqGaY}\\gPmOgBaBgo@wp@kr@_t@aZ}\\gYm^gRqX{RuZ_PwWuNaXgVye@_Wek@up@{~Awo@k|Ay`@s_Aac@y_AuM}UkfA}aBsk@{cA}_@eaAwWc_Ai@iCiQcz@wgAazGAGqSsfAkVkbA_Ni`@_i@whAo]ok@gZs`@oa@sc@ed@u_@cl@u_@ar@ob@qg@e[a^uYuf@kg@ms@av@oo@{l@ao@qc@qo@e]sx@m[_n@eVgg@oYkk@ua@mc@sa@ak@eq@g_@cl@_[yl@kEwKcR_e@oCaJaL__@qNym@aBsIqFaYcI{k@cFwh@KcCkH{}Ao@ep@PyD|EqfA~KswApDax@j@q|@hDcy@vF_q@~H_`A~^_{DdHeu@|HgiArAmq@I}o@oCu}@{Ha`AuKmw@eM{m@_Quk@eSii@uUcg@u\\{i@_\\ma@se@{i@gk@an@aa@kh@m`@aj@sZyf@iRw]y@yAc^mv@s_@uaAy\\ugAik@euBsRkm@eVqn@wYan@ca@sq@qe@mo@miAasA{`@_k@q]}k@c[}p@iR_h@yUku@kMcj@oKcm@oImp@oFkm@qEgr@{Ayq@OymAxEotFfB{kAhD{dAjC{`A~OcoElBqf@lDgrAh@mi@Ge^a@yVyBcp@cDcd@kIgo@eJwj@a[kdB_l@auCwk@cjC}Tcv@sT_q@gn@mdBej@crAg_@}|@qwCceHw`@cuAyY{rA}RouA}G}eAkCik@_Ag\\qAiq@}@yo@aA_s@k@cZw@}TmHecAeQieAsXwaAcEcLmGuNaLyUeHoNqRm]gb@qs@wEaI{HyNwHmNeHuNsGwNmEmKmEcLgFaOeEqMeEaOcEuOsFmVeDkQaDwRcCuQ_CqRsBcSkB_S{IkbAiDc\\cC_SiCeRaM}r@eF_VqEcRuEgQoEwPiGgTeHuU"},{"ref":"E 80","mode":"driving","weight":8271.895,"distance":286997.312,"geometry":"i_p|qAvdtwAsSuq@eJoZ}CeKuE{Mu@yBOa@eCyGqGeQiA{CuDeK{AiEum@mfBgNkc@mEsQqD}Q{CoRsBgRmAcOu@sMa@ePK{M?wM?iGrDgbCjC{m@hDs`@xBqNrCkQlDkP`FqQpJeYbIyQnGuLzH_MbJiMbJoKfJiJvEmExOsLxM{Izj@w[v`Bc~@|`@yThUeLdG_DrDmB|QsI|`@gQrVeL`YmNfXaN`N{HvR{LlXqQhSwNtQsNjV_TbL{KfVeVlUiWzUiYnYe`@lSqZnMsSvMqUlSk_@jRwb@nJ_VpJoX|GsTpK}_@hJ{b@zFwZ~E}Z~Jgq@xJun@jD}OfEgQjFiQjGqQfKsUxLeUdPeTtIuJbLwKlQwMrL}H`SkLnSwKpZoPl`Aei@`ToNnWuT~VmXlOmSjN{TtHeNnHiOfG{NhG}O~IiXrL{c@`EaQ~EaVfEyUxC_RfEuZhEe]`Fyd@lCa[nCm_@lCqg@fB}d@fBmm@bByk@lAsd@tAoh@rAkd@vAyg@rAyg@~@g[tCieAx@i[xA_b@rBce@nC{d@dDif@nCo\\zDmb@rFyg@bGaf@jGoe@hKuw@rGif@dGwd@bGwd@fHgi@`McaAbF{c@nEsd@zCm^|B}ZrA{SdBmZ`AkRzB}h@pB_g@@QnDay@~Ac[pCwc@nEck@tDi`@bGwj@jGcg@hEc[nGea@tGa`@fJkg@hJ{c@xH}\\rIk^~T_y@lUmu@bMy^`LkZlOq`@tO}_@r[yy@hMw[pI{UjMs_@`Lm]dIkX|Ig]tJe^nNml@jJ{c@tGk\\jK_m@tJeo@xKwy@|G{o@rE{e@lDwf@xC}d@zBwb@pDecAt@}\\zA{oAHsRGmSm@wf@qAah@sBkf@uB{^uEmm@cFaf@gCcSmEq[mE_ZcJof@cJsb@_Lae@ePkk@iI}WsGuQoO{a@mSck@aWcr@wQag@cOka@kJoWyJaXaKsXaKwXsSgk@ee@spAof@osAmOmb@}JiXeKuZ}E}OqFsRqDoOoEsTeDsRcCaQkAmJqB{SuA}RiAqTu@{VSqZF{UXuNn@cUnA{ThBwTJiArCoWvEq\\xFg]lEiV`c@{}BlLmn@nDySfHce@dGqd@vEqb@|CoZnDk`@vMadBtCg]vFqk@zCoX~Ggh@|F{`@nGk`@~Jog@`Lkh@fKoa@hP{l@tIuXbYy{@|Mca@~Lsb@tJgb@|Fk\\rDyWtB_SjD__@hA{TnA}e@Ng]Qg]_Ag\\iBo[yAuSkDm\\iCmRyCeR{CePqF{VwI_]gJuZgQ}i@sJyXsFmOcLcZeHwPoJgUuLcXaLcVuVgh@iYom@y]}t@kHyO{H}PuSmg@uFaOkG{PuGsS}GsTiJk[cJe\\y@yC{Mag@}Mkg@uNyh@}Vy_A{Nah@qSyw@_Vy|@aSst@__@}uAuMkf@oIa[aRor@}HwXqMy`@eKgXyKwWkIaQ{K_TiNgV{KsP_QgVaK}LyOoQkPwPsJiIqWuSqKwHgIkFiOaJiWiMuMiGyNgFiYkKyZkK_ZwKwWwKgQ{HkW}M{SsL}CqBkMkIq[yTsm@uc@eYaTsi@a`@kv@}f@sw@}d@{\\sRaWwOgFaDoSgN_KeHgNeKmYmUeKmImRaQoW{U}LkLc_@k^aScSub@wb@ub@gb@q\\{[qn@an@}lAmlAg[mZyT{ToWuW{[y[oScVeSkWyNkSgMaSeMgTkLsT}LkWmI{R_JqUgHeSqJiYyOmg@sLs`@aMya@eSkq@_Syp@{Ouh@gPcj@{ZidAqRyo@cPgi@eZ}bAwZidAswBskHac@oxAoZ_cAqMma@uIgXoSol@eSai@yNq]sMcZgRea@{Sca@kM{UmMwT}NqVa_@uj@cNyRqKwN{Vk[iNuPiOeQ{Yg[wJwJmZkYaQyOcPeNab@q]yQaOg\\mWo`@{Z}YyUyP}NcPuNuJ{JuOgPcJuKcTqXsOcUqLeSaHuLwH_O{KiToLcXuJuUkJyWgFcPuG{TaJo\\iBaIsD{PsJib@sO}s@iM_l@uRu}@yK{f@eWykAuMmm@eOer@cHqZkKab@aIoYiDsKm@kByFwPgNo^}O}^qPs\\iMqUgSg[kNyR_OgRcPeRqI}I{V{UgKyI_QyMuKuHaLqHgKeG{KmG{KmF_LiFcSiIsLiEgTgHu]sJy\\eIuZ}GgVaFmp@eN}VeGoT}F_MsDsSiHgYaMqX}NkKyG{IcHcKcIeGyFmGuGmF}FoH}IkI}KyHaL_FgIsFyJuGmMiG{MwFkNyFwO_F_PsEkPeFkTmEgT_FsZiC}QeCeRmD_ZmF{d@iFad@{DmZeEoZkHsb@kDsQyGeZyGoWiFgQ_FyOyIwVuFwNqGiO{KcVuLqUwGoLeNmTiNcScOqRwNqPgJuJqJeJqJcJkJwHyJwHgLcIaKwGcKiGiLkG}QsJaLqFqRuJkU{KeYaNoL{FcRiJaCkAkUcL}RuJwPkImFiCijCspAkGmD}EcCqOuIsMuIgNaKsMwLwJcK}NcRsKaPiGwK_JuQyGaPuG_RyDaMwEuQgGoY{C}RyB}PgC}ViBmYkAaUmAq\\q@ia@Ko^H{^^{_@~@_j@l@k[d@kc@Re\\KoZg@ud@y@kZM{CyAa^}Ay[uCsm@eGmkAkBy^sBcY]}EmK{yAeQmwAi@}Dm@iEiF_^}PkkAgG{b@_Jul@eBkMs@cFeOkvAcUexDwKmnD}Ps`GaHmyCeA_jAdAwzCbCwlA`FqjAtRyuCzIg~@lUoiBtO}bAn\\_fB``@_aBbBkHx`@{{Azw@}wCjd@uaBt]mrAp_B}aG~m@q|Bzu@igCz{@saCzaAk{Bp}@oeBlm@cfArkAcqBfe@o{@f`AgxBvw@ofCle@gtB|]ayBdU{|BhM_lCnC{tAdGo|HToZtAycBbDelExCapExAekBdD{kE~GgtFzKgbDtNubCfSubCzdAohKdu@qmHbTy~B`G_aApCsp@lAga@fA}f@f@_q@@yt@Wid@y@qh@mAob@qBij@aEsu@wFgv@eIgz@yJs~@gL_eAuFmk@iF}o@sAqUs@wO_Cmq@m@}^M{_@Jcf@b@{ZlAwe@DcBdBab@pCgb@xCs_@pEyb@zCuUpEg\\`Hia@rHm`@hIe^hIg\\fK}_@|IwYrKc\\nNua@tLs\\~Lu]pJmXpJiYrI{X|HaXnK_d@pEcUnFeZjGee@tCmXlDag@~Ai^r@cVXgt@U{^kAsa@uC{w@sAg]}Cqp@mEogAgB_l@cAg`@]gQs@cg@Uo\\KyV?wUDgn@p@_v@|@{p@fA{d@`B}f@dBu]pJgcBbSmbCjSg~Bn@aPpGwcBUalAqIylBgQa{AiYkwAg`@gtA_~Cg}Jc_BivEytAkdDyzAi_Du}@{gBay@sqBul@yqBkc@orBw_@gkCmQ_uBsIwpBwBacCfCgpBlDa}@nLw}Bxi@qfKlMgmEd@opEmG_aDaPybD{SsfCuYaeCy^o_CofAa~F{]{yBsMolA}HokAyBokAb@inAlFsmAxKyiAlQugAlW}fAx[ubAz`@{}@xd@ax@lh@or@`qBoyB`UgY`UwZvM_TzLqSdWwe@pN{ZxMqZ~IgVhIiU|HcVhIwXtQor@dWqiAdSe_Ajy@wwDdb@anBdIu[nN}q@xd@ccC`b@inCve@o_Ena@_`EnGs~ApA{`BcAst@cAw\\g@cO_LubB_Tq~A{Y}zAok@_lCa[coBcOg~AuI_gBeBmmBpD_sBlI{sAxIm}@zQssA~_@{lBzd@ciBdvB}{Hr@gCzc@klBbXiwA`PmjArLkmAbIqnAhEsmAnAcoAk@koAgCg{AiJueEiFkaBsMidC{Dsm@mF{q@iJqcAmI}w@uw@skG}IaqAkBenAdBelA`ImkAjPskAhUwcAjYw}@pe@}cAtg@cy@pmGqmJltAqjBhzAwdBbzFm~FxzAiaBly@sbAfOkQprCk_Edx@soAnzAyjCngEo}Hrm@qhAppAabCl{@wgBhcA}gChe@sdBfiByaI`Kwc@lJwc@xFwZnFu[nCoRzD{[lB_RbBoRvAqRlAaS|@}Rr@qRf@aS\\eSLqTD_QGkSQaS]_Sg@sRw@_SeA{RsBi\\_Do]uDa]gCoRuCiRiDkSeDuQ}F}XcFcT{EiRaFyPaH{TwLy]uGiQ}]o}@wI_VoJqYaGcSiDwMsHsZqCkMkC{MkIsd@uC{Pe@kDuAaK{AoNcBeOyA}NaBsRoBqZkAuUoAcb@c@}YS}WB{ZVkXl@wYfAqZlB_^xBuZlBmTpDo[`C}R`Fg\\lF{YpDyQrAeGfB_ItEcR~Ie\\xFwQnH_UzH_T|IcTnK{UfMyVrH_N|Re\\xNcT`OkSvOkSbOaSrY{a@hIwMvHsMvHoN~G_NhHqOdI{QrIoTbGgPtIkWpFwQnEqPxEwQjE{RhD_PfIac@lIcd@hHg_@bGgXpHeZhHuVfGcT~g@ooAneAwkC`Lu]|Ky_@rKua@jJsa@|Ksj@~EkY`C}NnAwH~Hsj@hHek@fP_tAtJgy@~Juy@vKey@tNgbA~QokA|RmkAfIyd@~Ime@vVaoAl`@giBpb@ugBlo@}bC|qA{oE`jCqoIbrAijE`o@ghC`SodA`RylAbNmiAxK_lA`IukA`N{vCvRgkDp_@wyDbc@svCdAgHpm@{{Cdj@myBnaAw~Cfx@csB`nAekCziA{qBpqAypBl_@gj@ncEqdGbq@abAru@kfAr_Bc~B|l@caAfj@ghA`h@ayAza@{aBjX_cBxO{dB|E_wAfAam@j@unA`@oh@bCutNiQ{jPaBgwBnAamAnFomAvRqpB~]{mBvg@wgBnp@k}Ap_BgpClnDm`GrbEieHv|AigDd~@}dCvv@gjCvo@umCph@otC`j@efEz\\}vD~[c_HfEev@zEi{@bJ{sAnI_fA|IqbA`TyoBrNshAzLo|@xLiv@j^usBdXurAdr@gyCpfCywJfd@kfBzaCwhJj{CogL||@wjCddB_|DtdCufErtCgqDnzG}~G~OkPhk@gl@p}@maAh}AmgBjNkQxr@y|@ty@qhArgA{~AhwBkkD|~AotC|~AigDdyAa}DjV{y@dV{aAhN}m@~Okz@jKgo@pIwl@nIsr@zF{k@r@cHlCk\\tIyqAzCwr@jCgcApAuaAFsp@yAw~FnFa_DnNwaCt[ovCf[ckBv`@{fB`l@qqBnx@qvBtmBetD~|H_lNfzE}_KxQ}]pRg_@vs@unAdd@gs@~|@uoAnnEc~FbcAwgB|{@spBjsAetElk@gaDnrAeoIhTmlAjv@oqDlKgd@rHi[tHwZff@}iBdJk[`m@}qBpNoe@t_AotCtc@atAtBqGfTop@@CrSso@dPah@~\\}fAb^glApT}u@`Tsv@pTqy@hXqfAjP{r@fMsi@rLai@zRc_ArOgw@~Nov@xd@clCfTgtAfKws@xJms@lQyuA|OsuA`OqvA|PkjBrGiv@dGov@~Gc~@fHqcAB_@fG_`A~Dgp@~C}i@|Cei@zFofAnFwfA~LuiCtJ{wBPiEzHkrBlq@ggPfl@umMn`@w}I~ZszD~YwfCf[osBdf@{bC|mCyjLjaFy_T`jCs{KdqAyrFxKqd@Rw@b\\}uAlz@{zDbLih@ba@q_Cz]c}B`OmhApYkaChVucChUuxCtPktCjRqeFnX_nIbRo|DpXsvDxXesCLiAvXm_Cd\\e~Bbb@agC~f@_hCjj@oeCpy@eeD|xAevFv`@sbBvq@uaDnh@gtCpbAauGf\\ajCrjAspKr_@uiD|}@gfIfq@}bGzVstBhOwjAb]c}BjR{fAns@gsDt~@c~DneA{vDfqCsxHvjDcvHzfDcsFdkF_~G|_Hy`IdfEi{GfvD_xHpoBq|E`dA}gC|gAmjC`eAaxBjtAqcCn|@iuA~zAmwB`QsVp_B_~BvlAomBtp@ikA|d@s_Ah_@i|@zkAa~CfiBclGxYiaAxiA_dDthBanEVo@ljDuaIbc@qxAbZg}AnOyxApFgtAx@oqAeKm}KeHeuHq@qrCpGayC~KclBxNi{AhXepBbd@e~Bll@cyBxf@exAdo@mzAhi@mfAjw@upAprAyeBhlB_lBznAehAtkAmjAzeA_rAh}@qwAbz@m{AldAmfCf{@quC~p@chD|Sw|AjJc|@|Kq{AbGsoAdIseEnEs{BbL}tBjRyuBfSqyA~[egB|a@igBxd@w{A~i@qzAv`BkoDpbE}jIrhBkzDp_A_uBtNw[rJ}SpiA}mCnxAcpDrxAqqDxr@uiBnV{v@b^q|AxUccBdImrAjCarAWkj@}DssAkJ{gAuOaiAcU{gAoXefAqt@uiCwp@ifC}l@kkCkTiiAq[ilBy`@a{Cs[ylDqAsNoS}nDww@}bSuIscDdDgbClRqpB|c@wxBdg@mwArp@{nA~{@whApR_TxbCmiCfeA{rAdo@i_A~k@uaA`k@mfAje@ocAdt@wnBpu@ijC`Tk|@jRk`AjMgq@~UgcBzZgaDDg@lS}|D~`@qwLxL}pCtCuk@zHubAfBsVhHyy@|Gmq@dYu`CbRopAxFc]dZibB|a@urBxKkb@nEyQd]ctAz^mmA|M}a@dK}]zFuPp]i`Ar\\o{@zGyOhm@{vAdo@quA`n@qwAvOo\\|n@wkBfz@ceD~Nwy@pF{]hTwiB`IqpAjHijBnDgkBu@_aAcBcaAiDs|@gFm`AqB_ZyAwQ}LgvAwM{tAu`@}bE{y@_tI_\\{dD{s@idHgE}b@sk@oaGom@atG{YopDqScjDkW{sFwCeu@cDyaAaPiyEiTkyGqLaoDsDkiAyNqgEwJiaDaBg~@C_a@Xs_@vDsdAlGez@hCmSzNmeAxVmhAvYuaAtx@_wB`w@ypBjo@}fBfTwn@~|@yrCli@akBrn@qpClZe`BbI}e@hH{d@v]ogCha@m{D`Q{{AjTypAh]_hAla@a`Art@mkArn@sq@h^oYxz@{k@hZoTfXiUte@ih@|U}\\fRu]rMmZbLuZlKu]nJi_@~U{eArReqA|Gkr@dEgj@`I}mApGugAjBqw@nA_x@Vsl@a@}l@aAc~@cBo~@oD{o@cEgs@{M_eBq`@ilE{Egq@oCmu@}A_jAdGgdBzDol@lFem@l|@soHh@oEb}@wjHr[amCzHyv@hEwo@lDop@Bg@tAyf@n@me@Eee@_@sd@q@{Vq@{WmDsq@u@kJ{Dgg@iE{c@wGog@yJcm@aQyu@ySwv@sm@qfBqNof@aKud@uFsc@cD_c@sAoYm@cYPa`@dBgb@zBwYr\\qrDvK_kAhL{`AbC}MxOa|@jU{z@`Qwf@bVsk@p[wp@BGx`@yl@nX}_@rZw]v\\yZv\\aW`}@om@dVkPjtAiz@tbCc}AxeAom@~PiI~N_Hru@qZfaAwZnXyGpL{CxKuBvs@oMlOqB`mAaPryAmQfk@yNbIeC|YmL|ZeN|RmMjQsMtQaNtOeNn^yc@|a@yk@zZ_p@jVwp@vUgw@lQky@rGah@|Gmn@xGwdAnGkqAzByd@lB}\\hDik@`Fwm@xT{mBrDiWz^sgB~BkKrM_g@bh@c~Ahm@muA`lBmdD~mBccChZi_@rkB}~Bpr@e_AvXsc@bT}_@z]u`AnMcb@~Kie@fM_t@`Fwf@xDyc@hDar@`Aqm@M{r@g@_l@cBwnAgE}jDTyt@nAon@bEyn@rE}g@tJgo@vN_o@lLab@xn@{mB|Ucs@~GkUhKy]tKuf@nHoa@n@qDvEaf@rB{b@PoRFiGUo\\iAyb@oBe^sH}{@mFgl@gEqh@qAu`@`@se@`Fci@vFg[dNyc@|Na[hRoZhVyVvE{ErWaShv@kn@pZ{ZxY_`@rm@ubA`v@srAjO{Sjb@{e@`g@ue@diA{cA`c@u_@zqA_jAf`A}`Apy@{dA|[{h@vi@ebAhb@w_A~gAcmCpxAgnDdm@cuAlV{h@rVif@hwAkzB|We\\vYo\\jm@yn@~RmSx]g[tr@aj@zlBwjAfw@_^nu@qWb|@oUds@{PhpDkn@jp@aMxl@gObw@g[pg@_Vj_BieAhl@k^bZkQfVcLrsAcf@ttBqm@lcAqUpp@{Inh@oCpm@qAl{@{C~r@uE|c@aIrfAs\\zx@eVj^yDvSs@jf@fCvx@bKx]`Cv_@?tU}A`QwCf^}KhXgO|TqPfVqUhRiV|U_e@xP_j@~Kso@fDmW~BaXdAoo@c@wm@yEmgAeBy`@s@_b@Vo]`BuZnCi_@bFk^dMei@pHuTrO}^zTu_@j]oc@rm@er@xFqGbx@eeAzV}\\~Vga@zV}b@vXkk@dHaOna@gcA`Qud@dJ{\\jJ_]dJs\\hLsi@vBiK`Ogu@dKwq@tOqkAzKejA~GmlAdD_s@|@cZhBar@tAgw@BgAv@i|@OytBsBegBkHu|CiLsnEeJmlCaD{`AwGkyBsIorCqe@ibOuHy`Cu@e^k@yXq@}_@c@cgAMe]Haa@Dm^r@{h@h@m[lD}lAbQ{bDn_A_fKrAg]fDol@xFmmAvBeqA|@opBcA{gAkBocAaGyyAwHanAcIa~@oDo[_D{YkXiwBc]_kBkJyg@mD}Qyy@inEqCiPcWwwAwVqaBsSi_BgPkxAcXymCcUslCil@e|Gk}AcwQsCoZ}v@{aJyAuPq`@crEgQs~BmD{n@oFuoAkAmwAb@qsB`Cmy@pFijAvHgcAtJubAbNmaAvRejApIyb@zI{`@|nB{{H`z@gsDdt@etDv]kjBfLqp@|q@gtDla@icCr_@ctBrk@}}Cvy@irDnSsx@fVmy@bfAscDz`@}gAje@sjAlmAcsCxd@wlA|S}k@|Rwi@pNgg@lLqe@`WgkAlScfApV_hBhHqz@bG_w@dMcdCzSc|EzMe`DfFimAhDsaAdBmqAKwoAiAqv@wCuz@{I{nBoZehGm@}Lm`@ylHw^otFmi@crE{y@u~EadB_`Jwa@_}B{]{gCcOspB}HoyBHiuCbFawBvVo}EtBaxAi@c}AgPutCgd@m|Cyf@ykBmO{d@eZkw@kf@klAuMi\\aK}W_Qee@_KqZaScp@_Jw\\yKgc@gQqw@aHg^wKsn@}Kas@gRkpA_QelAeRypAcNe`AyWajBqCmRaIej@gTizAoKot@wQ{oAcOmdAcZ_tBcZirBoNk~@yOq`AgT{kAqj@ssCkd@mzB}b@uyBgPs{@cDqQsMss@q[wkB}Wm`BuKqs@eMw{@yPclAsJes@mSk~AmSscBy[gpCiZ}iC{YihC{M{jAoKm|@yRecB{OayAsOm}AgJsdAoFyr@eFot@kH_mAmCef@kCkr@kDegAqCskAqAu}@u@abAKkQEwm@N}vAj@q{@fBwmAxDc`BtGcwBzGgsBrKy|CrLysDtEs`BbBy|@hAgvARsv@WeaAeCwjBuDgsA}FmsAmIiyAsN{wBcIcjAuOm{ByOe|ByR_pCuH_~@qLojAeQ}vAcJao@mSaoAoUinA{f@c~Bo_@u~AwKsd@_f@krBi[uvAg[k_B{Oa`AmCaPkQ{oAsP_vA{^aoDy[{tCaKox@}Mu`AiVk_BiW}bBuZspBoKwu@oK_z@{Hov@{Dwd@{Eku@iDww@wBmy@s@{v@Omc@Nik@rBwkAxCux@~D}u@jE}l@zH{z@rIey@jIqx@fPcjB`Fiu@xDuy@pCkeAd@}g@Tal@a@ow@kAwt@kDqaA}Eqz@iEwm@wE{h@_M}nAgSktBmHgy@mGez@mE}p@qD_r@gDcy@oBwn@yC_pAsAk{@_Aus@KgNqAk`AgA_bAm@ev@kA_|C?wl@@_d@Hwj@F_qAJgj@Fo{@KweAk@_xAgAayA}Cs~BgEmqBaGqcC{E_nBmGiuC{AmkAkBedCg@k}AAaeBb@mhBnCgqEzCepEz@}vAr@yqALe~@Qyu@sAahAyBkx@_GmoAuEar@cI}|@eMmhAuNobAaSiiAkQ}}@gY_sAg[uvAiXamAyYyqAka@yhB}`@qiBsi@{bCow@cmDed@}rBiP_v@qLum@{Lis@uJcu@iHss@yE{r@}Byi@{Ash@o@om@@{l@|@mp@zCy~@vEwv@lGyq@`KuaAzZopCv`@aoDf\\{tCpZ_mC~PgvAjTs`BjPyjAfTavAf\\wqBta@u~B~YkaBjWaxAh]mnB~]mqBf^mqBrZkcBpN_y@dMiv@lHif@hI{m@lJe{@pF}l@pH_fAjBa]nCsp@lB{p@~@uq@j@cu@Ka{B?u@i@_}BD_x@l@{v@pAcn@xBwn@tDet@bFou@vFan@vGmm@hGie@rH_g@`Hqb@|I}d@xNuq@zG_WnIo[rImZt@kBtg@qoAh}@aiBre@i`AxOke@fD{Jz_AgsC~H_XdIeWnHoU`Nig@`Lid@dIe]jHi^vIwd@zJml@zIen@vH}k@nFyb@pC_UhIgr@`Fuc@dFie@zFeq@xDck@hCqj@vAoj@p@up@Cuq@gBidAiCyl@cDyh@_C{X_L{bAqMw{@gSqbAgSsw@_Qcj@uWis@_Vwj@uIsRo_@iw@q_@{u@uq@cuAee@i`AoSab@_u@q{AyXwk@gMwXmCaGyTsf@o`@_aAa]i~@}Ssn@eSun@uXe~@so@{{Bu]gnAgb@svAoTgr@gDoKcYcy@iMo^s[q|@um@}yAcXcm@mKoUs^yu@sYuk@gVmd@cv@isAit@akAic@mo@il@ey@u`@_h@g`@mf@ul@ar@w_AubAkaAc_Aa`Auy@io@wg@qu@}j@ycAcr@o}A}}@muAgr@upAcj@}}@u]}rBes@ypBup@aeAs]szAcg@{zAcg@ipAmb@}dCgy@{o@kUeZcL}RqI}l@m[k\\gTcTuOmY}Uu]c[y`@{]oc@}^yd@u[o\\qRc_@yQec@{Pyn@}QcYoGc^uGkc@iHqg@eIeZqFoa@{Ied@}Mgc@{Pga@{Sc^gUiYoTks@ao@_^i\\}]y[m]yYoY}Ta]uUoXgPi`@iSg`@{PcYiKoZcJo_@sJ}b@wIaQ_Cgc@_Fc]gDwpAwJqiAkIw[cCc]mCsm@}F{XsCsYwEwSmE{\\{I{L}DaMwEgViK_VeMmNiIa]qUyEaEcVoSwBwB_J_JsG_Hec@ue@mRkUuh@{n@cZi`@mK{N{NqUoMsUcNcXaVsh@eT{h@mZwx@gqAelD_GaPigCi`HKWem@iaBie@_pA_oAmhD_Z_x@gEmLi^aaAcp@agBms@mnBi]g_Ak_@ycAih@cwAuw@}vBck@s|Aq[o|@uPyf@aXo~@aQcv@aJwe@kIwh@kH{l@oI{w@_Gon@_Ic|@iIkw@gBuNeCaSiGcc@sJuh@eIu_@gO{m@qMoc@cMm_@eXwr@ca@e}@mYml@oa@az@w[ep@mw@g`BcqBmbEinBc}Dox@uaBcrAwlCwoBi`E}}BywEmzB_rE[q@yrAmnC}Oa\\idBolDmpAijC}hAg}B_o@}pA}yAezCgzAyzCkdBqmDmi@sfAkDeHq\\}q@um@}nAe[go@_h@eeA{f@}bAuJaSmc@o}@_j@shAekAacCum@ynAqk@akAw`Cm}Eu|@_iBubAmrB}dAewBscAotBklBuyDakAmaCqjAq`CoT_d@cnC_uFg~BayEqm@wnAkHgOqQg_@cG{Lg]qp@ik@smAkKsSaVyf@y`@_y@{`@ky@ohAe}Bqi@sgAypAwkCwhBetDkyAizC{hBitDo{Ag}Cce@a`Aev@}}AsAoCgWgh@u@{Amt@{yAib@}{@yDaImEkJqc@w}@gn@{oAo^iu@mrAwmC_~AqaDe{Ai}Cg`@gx@ub@s~@_rAswCwx@obBao@oqAqt@_}Aw`@iy@kdA}uBgfAkyBenA_gC}a@uz@{]_t@g^is@gb@ay@{k@}hAyaB_bDet@}xA_t@ezAkdBemDgCiFogB{qDg`AkoB{IyQ_Po\\goAajCqC}FaG}KkL{UcNiY_^ct@i^it@md@}_Acz@odBe|@ghBs]ws@q^eu@gu@c|AmYol@sQ}^aSka@gw@u_B_f@gbAmj@uiAys@syAmr@awAqs@syA{a@c{@ajAa`C}a@oz@{u@e~AyBmE_[qn@aj@shAa^qu@i`@ax@yWui@aUge@{N{Yq\\sq@cWkh@{Rya@mVcg@{eAszBg`@cy@u]kt@m@oAoh@ygAkc@k~@oTcd@aWch@gv@m}AYk@_nAucCmBwDgL_UyzC{jGeGoLgKmTeq@wuAeg@_cAmYao@_BoDeScd@_v@yeBoGqNc_@ew@}c@}~@{k@ylAyHyO_Ps\\iLyU_Zqm@qYsl@_w@a_Bg]us@y^gv@ah@weAic@w}@wEsJaJ}Q_Rw^{l@mmAyC{FeKmSo^qu@am@omA{`@ex@aVse@mP{Y}[ei@_Vg^mXa^eP{RcReT_VsViYcXwX_Vk\\iVe[{Se]_Ssi@cXmTcJoRqHwf@oPk]gKwb@}Lkz@iVe|@yVskAs\\cr@uRoo@yQscBcf@uJqCsjAg\\o`AsXisAua@ocB{j@c_Co{@mfBss@ebBas@c_Aea@ieBuu@qRmI{o@iY{aB}q@iYwJwcAi`@e|Aul@gq@cWiu@yXwCgAif@mQmbAg_@sdAo`@}g@gR{]_Nc_Ag^aZmKkVaK{w@kZwbAe_@iiAob@ek@aTiw@gZm{@w[}`A}]of@kQyg@{QokA{`@o{Asg@u}@o[}j@{RmWyJij@}Sui@uSiJoDur@gXqx@e[kn@oUkr@yW{xAej@yn@}UopAcf@im@aUsk@mTm^eO{a@yQum@yY_k@qZcc@yVcm@__@_g@uZgi@k[cc@aVca@iT{r@w\\ys@u[eq@mZydA{g@_vBohAgxBuiAqf@kWm{@md@igAuk@ymBkcA}bA}h@sdA_j@}u@}`@{`@}SaVkMmNqHof@qWkUoLsSyJga@gPq[{JkVwGaSoEi_@{EwVqBaYeAoWQqU`@kc@jCc`@lEoaAvOsaAxQirAzVqhCne@_W~E{~A~Y}aBzZyn@nLaq@bMo_BpZ_d@dIe]jG{YtEeX|CyU`BsXbAwVQKAi\\oAaUoBeWgEuWwFeXoIsU}IyUsL}YoQkWgRkUiRyXeW}h@{f@ywAatAyv@ct@uWcVy`@a]oZcV_\\gU_BiAkXgPuScMsn@a\\mr@}\\cw@w_@ex@i`@{cAcg@ca@_Scv@c_@_k@yXmi@yWck@wXea@}Rwq@}\\s_@}Qq`@cSuTmLa[_Q{^uTi_@}W_`@{Zoc@i`@}VwV}[k]ud@yg@yWkZwa@ge@mk@wn@mVwVsd@ib@{c@}^{b@c[{d@yYck@e[uc@qTqx@e_@qk@kWwt@}\\kq@oZgn@aYyi@qV{e@mTw]oPkq@a]}]qRgP_KwXiPg^oUeXwQkZsTaWyRsa@w\\e^a[a]o[{\\q\\sYoZeXkZy`@_e@wXm]oUmZmY_a@gS{YeMiRiFiIiXac@}MoU}Uya@yZwk@qn@mpAg[or@a\\ev@cPq`@kHiQcp@g{Aae@_kAmA}CqRee@}Qyg@u`@qwAuSsi@{KoXmQk`@eCsFm^_v@wcAouBsRy`@wn@evAoC}GwOa`@}Tqi@ca@qaAmWmn@yi@{qA{Uek@e[au@}m@qzA{Poa@ic@}dAwSof@_l@urAcU_f@yVih@q\\{o@a`@cs@e^gn@ur@eiA}b@yo@ia@mk@ib@}j@mh@op@cu@s{@wa@}c@ad@wd@ue@ke@c|@ow@_}@iv@ez@{r@ei@{d@_Z_WopAcjAwd@mb@eh@qf@wi@ii@sN}Pi^e^yi@ij@qc@gd@qm@om@iNkMwWmVai@se@sh@oe@ql@}g@eZaWy[wXuv@{p@{s@wo@}nA}iAs~Aw|AoQiQq[c\\ih@{i@qSgT_uBa`Cst@iy@w\\y^eYyZyt@qv@}v@sw@ak@yj@yQ}PkXuWwl@mj@gm@}i@un@kj@e@a@qYuV}b@c_@y\\qXqm@qf@ww@}o@qtAukAgSoQqT_S}q@yn@eNuOoeAmbA{m@io@}o@{p@e[o\\sy@a{@oh@ii@aZsXeRiOqUcPsNyHkP}HoPmGyOuFo[aJoY}Gwb@mIcVaFqn@mM","duration":8755.188,"driving_side":"right","duration_typical":8755.188,"weight_typical":8271.898,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit A64 onto E 80 toward Toulouse/Pau/Bayonne-Mousserolles.","modifier":"slight right","bearing_after":61,"bearing_before":61,"location":[-1.452636,43.475461]},"speedLimitUnit":"km/h","destinations":"E 80, A 64: Toulouse, Pau, Bayonne-Mousserolles","bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Albi"},{"type":"text","text":"/"},{"type":"text","text":"Foix"}],"type":"fork","modifier":"right","text":"Albi / Foix"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"right","text":"E 80"},"distanceAlongGeometry":286997.312},{"sub":{"components":[{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active":false,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Albi"},{"type":"text","text":"/"},{"type":"text","text":"Foix"}],"type":"fork","modifier":"right","text":"Albi / Foix"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"right","text":"E 80"},"distanceAlongGeometry":1609.344}],"exits":"A64","voiceInstructions":[{"ssmlAnnouncement":"Continue for 178 miles.","announcement":"Continue for 178 miles.","distanceAlongGeometry":286967.656},{"ssmlAnnouncement":"In 1 mile, Keep right to stay on E 80.","announcement":"In 1 mile, Keep right to stay on E 80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to stay on E 80.","announcement":"In a half mile, Keep right to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to stay on E 80 toward Albi, Foix.","announcement":"Keep right to stay on E 80 toward Albi, Foix.","distanceAlongGeometry":200}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[59,61,241],"duration":6.285,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":1,"weight":6.277,"geometry_index":12560,"location":[-1.452636,43.475461]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":3.434,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":3.52,"geometry_index":12561,"location":[-1.451825,43.475791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":1.508,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":1.543,"geometry_index":12562,"location":[-1.451385,43.47597]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,241],"duration":2.344,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":2.402,"geometry_index":12563,"location":[-1.45119,43.476049]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,238],"duration":0.102,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.105,"geometry_index":12565,"location":[-1.450891,43.476183]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":1.172,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":1.203,"geometry_index":12566,"location":[-1.450874,43.476191]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":2.344,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":2.402,"geometry_index":12567,"location":[-1.450733,43.476258]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.668,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.688,"geometry_index":12568,"location":[-1.450442,43.476395]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.887,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.91,"geometry_index":12569,"location":[-1.450364,43.476432]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,237],"duration":0.449,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":0.461,"geometry_index":12570,"location":[-1.450169,43.476523]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,238],"duration":16.109,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":3,"out":0,"weight":16.512,"geometry_index":12571,"location":[-1.450068,43.476569]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.446118,43.477954],"geometry_index":12579,"admin_index":3,"weight":8.617,"is_urban":false,"turn_weight":6,"duration":2.562,"bearings":[85,252,260],"out":0,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[92,270],"duration":10.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.383,"geometry_index":12582,"location":[-1.445369,43.477977]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,277],"duration":13.973,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":14.312,"geometry_index":12585,"location":[-1.442386,43.477817]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[150,325],"duration":5.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.973,"geometry_index":12598,"location":[-1.438854,43.476112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,335],"duration":11.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":11.562,"geometry_index":12601,"location":[-1.438002,43.474904]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[157,336],"duration":34.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":33.258,"geometry_index":12605,"location":[-1.436352,43.472309]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[127,311],"duration":10.789,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":10.496,"geometry_index":12626,"location":[-1.430053,43.465359]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,291],"duration":123.402,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":117.211,"geometry_index":12633,"location":[-1.426814,43.464029]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[109,287],"duration":25.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.023,"geometry_index":12716,"location":[-1.385628,43.45222]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[124,304],"duration":113.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":101.883,"geometry_index":12729,"location":[-1.377584,43.449123]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[111,115,291],"duration":9.387,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.676,"geometry_index":12804,"location":[-1.338272,43.452531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[108,290],"duration":17.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.516,"geometry_index":12807,"location":[-1.33515,43.451651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":65.086,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":58.57,"geometry_index":12816,"location":[-1.329174,43.450584]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":48.48,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":43.617,"geometry_index":12870,"location":[-1.303362,43.453695]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,206],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.723,"geometry_index":12907,"location":[-1.28851,43.464084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,208],"duration":20.277,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":18.242,"geometry_index":12908,"location":[-1.288344,43.464314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[27,207],"duration":35.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":31.59,"geometry_index":12916,"location":[-1.284714,43.469273]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":2.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.84,"geometry_index":12935,"location":[-1.277054,43.477348]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,216],"duration":41.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":37.492,"geometry_index":12936,"location":[-1.276593,43.47781]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[61,241],"duration":14.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.844,"geometry_index":12959,"location":[-1.263223,43.484095]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.258413,43.486025],"geometry_index":12960,"admin_index":3,"weight":51.902,"is_urban":false,"turn_weight":15,"duration":57.176,"bearings":[61,241],"out":0,"in":1,"turn_duration":15,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":65.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":57.062,"geometry_index":12988,"location":[-1.244977,43.495272]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,193],"duration":1.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.047,"geometry_index":13046,"location":[-1.224399,43.508881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,192],"duration":14.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.637,"geometry_index":13047,"location":[-1.224286,43.509253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,214],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.559,"geometry_index":13058,"location":[-1.222492,43.512851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,217],"duration":3.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.039,"geometry_index":13059,"location":[-1.222353,43.512986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,226],"duration":49.613,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":44.645,"geometry_index":13064,"location":[-1.221471,43.513692]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":4.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.758,"geometry_index":13114,"location":[-1.207439,43.5222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":8.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.953,"geometry_index":13118,"location":[-1.206807,43.52328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,203],"duration":37.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":33.34,"geometry_index":13119,"location":[-1.205501,43.525509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,264],"duration":4.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.324,"geometry_index":13153,"location":[-1.193715,43.528623]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":3.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.66,"geometry_index":13156,"location":[-1.192011,43.52879]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.781,"geometry_index":13157,"location":[-1.190788,43.528921]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":0.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.328,"geometry_index":13159,"location":[-1.189861,43.529033]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":14.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":13.434,"geometry_index":13160,"location":[-1.18975,43.529048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":1.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.332,"geometry_index":13162,"location":[-1.186881,43.529538]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.186786,43.529559],"geometry_index":13163,"admin_index":3,"weight":16.5,"is_urban":false,"toll_collection":{"name":"Sames","type":"toll_booth"},"turn_weight":15,"duration":1.621,"bearings":[73,253],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.828,"geometry_index":13164,"location":[-1.186685,43.529582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":6.941,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.414,"geometry_index":13165,"location":[-1.186189,43.529699]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.184967,43.529986],"geometry_index":13166,"admin_index":3,"weight":3.297,"is_urban":false,"turn_weight":1,"duration":2.492,"bearings":[72,211,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.184393,43.530118],"geometry_index":13167,"admin_index":3,"weight":3.68,"is_urban":false,"turn_weight":1,"duration":2.906,"bearings":[72,215,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.183662,43.530294],"geometry_index":13168,"admin_index":3,"weight":1.57,"is_urban":false,"turn_weight":1,"duration":0.625,"bearings":[73,228,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":69.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":64.352,"geometry_index":13169,"location":[-1.183432,43.530345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,289],"duration":9.188,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":8.488,"geometry_index":13183,"location":[-1.157196,43.530326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,295],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.391,"geometry_index":13185,"location":[-1.15398,43.529325]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[117,121,295],"duration":16.223,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15,"geometry_index":13186,"location":[-1.15383,43.529275]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.148318,43.527226],"geometry_index":13189,"admin_index":3,"weight":101.844,"is_urban":false,"turn_weight":1,"duration":112.07,"bearings":[117,294,298],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.043,"geometry_index":13207,"location":[-1.110337,43.514085]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[92,94,272],"duration":21.805,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.617,"geometry_index":13208,"location":[-1.109897,43.514074]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-1.101656,43.513872],"geometry_index":13211,"admin_index":3,"weight":91.82,"is_urban":false,"turn_weight":1,"duration":100.918,"bearings":[92,270,272],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,266],"duration":52.762,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":47.477,"geometry_index":13241,"location":[-1.057209,43.511515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":3.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.328,"geometry_index":13283,"location":[-1.034829,43.508001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,268],"duration":8.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":7.242,"geometry_index":13286,"location":[-1.033423,43.508053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,273],"duration":4.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":4.008,"geometry_index":13291,"location":[-1.030244,43.508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":22.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.715,"geometry_index":13294,"location":[-1.028508,43.507864]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,269],"duration":114.332,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":100.012,"geometry_index":13300,"location":[-1.019647,43.506881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":116.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":104.434,"geometry_index":13319,"location":[-0.978772,43.519142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,318],"duration":25.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.254,"geometry_index":13341,"location":[-0.934672,43.518678]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[114,118,297],"duration":19.047,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":17.598,"geometry_index":13354,"location":[-0.927341,43.513852]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.920388,43.511645],"geometry_index":13358,"admin_index":3,"weight":1.719,"is_urban":false,"turn_weight":0.5,"duration":1.324,"bearings":[116,290,294],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,296],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.109,"geometry_index":13359,"location":[-0.919929,43.511482]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,293],"duration":37.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":34.551,"geometry_index":13360,"location":[-0.919114,43.511234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,267],"duration":1.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.148,"geometry_index":13367,"location":[-0.904585,43.508753]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,264],"duration":43.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":39.184,"geometry_index":13368,"location":[-0.904109,43.508787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,280],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.379,"geometry_index":13379,"location":[-0.887037,43.511166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,283],"duration":69.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":62.98,"geometry_index":13380,"location":[-0.886038,43.510993]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,260],"duration":7.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":6.371,"geometry_index":13398,"location":[-0.856258,43.506554]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,256],"duration":87.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":79.109,"geometry_index":13401,"location":[-0.853436,43.507021]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,324],"duration":6.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.684,"geometry_index":13415,"location":[-0.825436,43.494445]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,322],"duration":4.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.734,"geometry_index":13416,"location":[-0.823863,43.492976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,320],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.035,"geometry_index":13417,"location":[-0.822781,43.492041]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,321],"duration":38.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":34.992,"geometry_index":13418,"location":[-0.822487,43.491781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,311],"duration":3.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.555,"geometry_index":13422,"location":[-0.810786,43.483833]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,311],"duration":79.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":75.758,"geometry_index":13423,"location":[-0.809609,43.483087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,248],"duration":1.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.574,"geometry_index":13472,"location":[-0.780495,43.479313]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.961,"geometry_index":13473,"location":[-0.779893,43.479479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,251],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.77,"geometry_index":13475,"location":[-0.779521,43.479573]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[77,83,255],"duration":17.402,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":16.961,"geometry_index":13478,"location":[-0.778821,43.479712]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.77181,43.479457],"geometry_index":13495,"admin_index":3,"weight":3.195,"is_urban":false,"turn_weight":1,"duration":2.258,"bearings":[111,282,288],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,293],"duration":30.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":29.297,"geometry_index":13498,"location":[-0.770948,43.479207]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":1.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.492,"geometry_index":13529,"location":[-0.760783,43.47381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,291],"duration":23.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":22.273,"geometry_index":13530,"location":[-0.760189,43.473643]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,292],"duration":2.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.035,"geometry_index":13542,"location":[-0.751754,43.470139]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,289],"duration":16.82,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":15.539,"geometry_index":13545,"location":[-0.750921,43.469922]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,288],"duration":25.414,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.488,"geometry_index":13552,"location":[-0.744278,43.468503]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,297],"duration":117.312,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":108.508,"geometry_index":13560,"location":[-0.733844,43.465281]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,316],"duration":13.492,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.477,"geometry_index":13582,"location":[-0.687436,43.448986]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,316],"duration":3.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":3.469,"geometry_index":13583,"location":[-0.683251,43.445842]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,316],"duration":38.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":35.199,"geometry_index":13584,"location":[-0.682178,43.44504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,276],"duration":1.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.707,"geometry_index":13593,"location":[-0.669111,43.439192]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,274],"duration":3.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.906,"geometry_index":13594,"location":[-0.668374,43.439156]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,271],"duration":1.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.523,"geometry_index":13595,"location":[-0.667099,43.439134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":90.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":83.883,"geometry_index":13596,"location":[-0.666435,43.439117]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,313],"duration":76.629,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":70.867,"geometry_index":13607,"location":[-0.631865,43.432625]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.176,"geometry_index":13617,"location":[-0.603794,43.422916]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,115,279],"duration":25.742,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":23.805,"geometry_index":13618,"location":[-0.602829,43.422806]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.592535,43.420753],"geometry_index":13626,"admin_index":3,"weight":44.457,"is_urban":false,"turn_weight":1,"duration":46.988,"bearings":[113,287,290],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":74.52,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":70.785,"geometry_index":13631,"location":[-0.575257,43.414672]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,324],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.121,"geometry_index":13637,"location":[-0.552551,43.400491]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,323],"duration":2.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.891,"geometry_index":13638,"location":[-0.552273,43.400219]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.551549,43.39951],"geometry_index":13639,"admin_index":3,"weight":10.328,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.598,"bearings":[142,323],"out":0,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,321],"duration":1.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.043,"geometry_index":13641,"location":[-0.548815,43.397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":13.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":12.52,"geometry_index":13642,"location":[-0.548521,43.396754]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.544821,43.393824],"geometry_index":13645,"admin_index":3,"weight":211.227,"is_urban":false,"turn_weight":0.5,"duration":221.836,"bearings":[134,314,316],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":32.188,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":30.57,"geometry_index":13687,"location":[-0.461587,43.359052]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.344,"geometry_index":13697,"location":[-0.448865,43.354243]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[121,122,301],"duration":2.246,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.125,"geometry_index":13698,"location":[-0.448728,43.354184]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,301],"duration":40.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":38.57,"geometry_index":13699,"location":[-0.447936,43.353844]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.433004,43.348659],"geometry_index":13715,"admin_index":3,"weight":6.5,"is_urban":false,"turn_weight":1,"duration":5.66,"bearings":[109,289,290],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":5.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":5.359,"geometry_index":13717,"location":[-0.430796,43.348123]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,286],"duration":20.887,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":19.836,"geometry_index":13719,"location":[-0.428568,43.347639]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[100,103,281],"duration":0.047,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.027,"geometry_index":13726,"location":[-0.420183,43.346263]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":19.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":18.289,"geometry_index":13727,"location":[-0.420167,43.346261]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.412466,43.345404],"geometry_index":13734,"admin_index":3,"weight":5.156,"is_urban":false,"turn_weight":1,"duration":4.383,"bearings":[98,275,278],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,278],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.215,"geometry_index":13735,"location":[-0.410532,43.345217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":144.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":144.441,"geometry_index":13736,"location":[-0.410431,43.345208]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,295],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.531,"geometry_index":13748,"location":[-0.349473,43.331575]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,295],"duration":0.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":0.086,"geometry_index":13749,"location":[-0.348872,43.33137]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[-0.348844,43.33136],"geometry_index":13750,"admin_index":3,"weight":14.762,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.418,"bearings":[115,120,296],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.343786,43.329733],"geometry_index":13753,"admin_index":3,"weight":10.934,"is_urban":false,"turn_weight":1,"duration":9.715,"bearings":[110,280,294],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,289],"duration":151.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":147.797,"geometry_index":13755,"location":[-0.339711,43.328693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":18.48,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":17.086,"geometry_index":13779,"location":[-0.275141,43.315219]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[105,108,285],"duration":23.438,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":21.672,"geometry_index":13781,"location":[-0.267174,43.31369]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.257903,43.311761],"geometry_index":13785,"admin_index":3,"weight":170.941,"is_urban":false,"turn_weight":1,"duration":183.727,"bearings":[110,286,288],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,316],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.242,"geometry_index":13803,"location":[-0.199336,43.277153]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[136,142,316],"duration":17.398,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":16.52,"geometry_index":13804,"location":[-0.198958,43.276864]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.193937,43.27328],"geometry_index":13807,"admin_index":3,"weight":25.637,"is_urban":false,"turn_weight":1,"duration":25.953,"bearings":[129,308,312],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":3.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":2.941,"geometry_index":13811,"location":[-0.185071,43.269226]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,299],"duration":62.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":57.402,"geometry_index":13812,"location":[-0.18401,43.268797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":201.137,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":181.016,"geometry_index":13822,"location":[-0.159177,43.261923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[127,307],"duration":1.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":1.172,"geometry_index":13861,"location":[-0.08279,43.233544]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[127,130,307],"duration":31.27,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":28.137,"geometry_index":13862,"location":[-0.08233,43.233293]},{"mapbox_streets_v8":{"class":"motorway"},"location":[-0.07231,43.228219],"geometry_index":13867,"admin_index":3,"weight":18.391,"is_urban":false,"turn_weight":1,"duration":19.348,"bearings":[120,303,304],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,269],"duration":55.719,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":3,"out":0,"weight":50.125,"geometry_index":13873,"location":[-0.064959,43.226759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,257],"duration":68.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":61.422,"geometry_index":13885,"location":[-0.044103,43.232251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,319],"duration":1.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.238,"geometry_index":13895,"location":[-0.018363,43.230301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,322],"duration":48.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":43.227,"geometry_index":13896,"location":[-0.018027,43.229988]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,291],"duration":43.961,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.645,"geometry_index":13907,"location":[-0.003286,43.221344]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,278],"duration":4.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.598,"geometry_index":13914,"location":[0.014072,43.21936]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.015533,43.21915],"geometry_index":13916,"admin_index":4,"weight":17.121,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.527,"bearings":[102,130,281],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.021142,43.218008],"geometry_index":13921,"admin_index":4,"weight":11.629,"is_urban":false,"turn_weight":1,"duration":11.496,"bearings":[111,283,290],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,293],"duration":1.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.855,"geometry_index":13923,"location":[0.024582,43.217014]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,296],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.941,"geometry_index":13924,"location":[0.025148,43.216809]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,295],"duration":11.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.223,"geometry_index":13925,"location":[0.025449,43.216705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,298],"duration":0.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.922,"geometry_index":13929,"location":[0.02912,43.215278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,301],"duration":6.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.477,"geometry_index":13930,"location":[0.029403,43.215152]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,304],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.93,"geometry_index":13932,"location":[0.031416,43.214189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":14.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.652,"geometry_index":13933,"location":[0.031685,43.214047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,306],"duration":1.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.637,"geometry_index":13936,"location":[0.035893,43.211782]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,308],"duration":46.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.379,"geometry_index":13937,"location":[0.036365,43.211514]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.836,"geometry_index":13950,"location":[0.053238,43.209017]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":15.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.559,"geometry_index":13951,"location":[0.053538,43.209062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":34.688,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.672,"geometry_index":13954,"location":[0.059443,43.21006]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.641,"geometry_index":13957,"location":[0.072246,43.212312]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":50.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.594,"geometry_index":13958,"location":[0.072821,43.212412]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,263],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.047,"geometry_index":13964,"location":[0.091753,43.215095]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":29.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.168,"geometry_index":13965,"location":[0.092822,43.215177]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":3.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.312,"geometry_index":13968,"location":[0.10365,43.216008]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.10484,43.216098],"geometry_index":13969,"admin_index":4,"weight":16.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.965,"bearings":[84,100,264],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.110646,43.216539],"geometry_index":13971,"admin_index":4,"weight":9.859,"is_urban":false,"turn_weight":0.5,"duration":9.367,"bearings":[86,246,264],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,281],"duration":23.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.977,"geometry_index":13976,"location":[0.114785,43.21635]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,303],"duration":23.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.746,"geometry_index":13983,"location":[0.123885,43.212624]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,290],"duration":1.461,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.332,"geometry_index":13989,"location":[0.13325,43.20925]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,289],"duration":133.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":120.152,"geometry_index":13990,"location":[0.133856,43.209101]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,285],"duration":14.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.359,"geometry_index":14035,"location":[0.187697,43.197515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,262],"duration":4.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.285,"geometry_index":14046,"location":[0.194237,43.197256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":17.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.578,"geometry_index":14050,"location":[0.196301,43.197618]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,262],"duration":16.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.574,"geometry_index":14059,"location":[0.203286,43.199864]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,290],"duration":33.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.414,"geometry_index":14067,"location":[0.210607,43.198808]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,331],"duration":24.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.016,"geometry_index":14079,"location":[0.218018,43.193727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,334],"duration":1.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":14083,"location":[0.221495,43.18875]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,337],"duration":10.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.473,"geometry_index":14084,"location":[0.22166,43.188462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[168,345],"duration":3.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.418,"geometry_index":14089,"location":[0.222908,43.185647]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.223199,43.184598],"geometry_index":14091,"admin_index":4,"weight":12.566,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.594,"bearings":[171,206,349],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.224144,43.180766],"geometry_index":14096,"admin_index":4,"weight":8.574,"is_urban":false,"turn_weight":1,"duration":8.211,"bearings":[160,322,344],"out":0,"in":2,"turn_duration":0.024,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,326],"duration":25.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.633,"geometry_index":14102,"location":[0.225551,43.178709]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,278],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.473,"geometry_index":14112,"location":[0.234121,43.175609]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[99,106,278],"duration":9.941,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.188,"geometry_index":14113,"location":[0.234726,43.175547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,285],"duration":1.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.973,"geometry_index":14117,"location":[0.238436,43.174945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,288],"duration":4.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.371,"geometry_index":14118,"location":[0.238825,43.174855]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.240499,43.174345],"geometry_index":14119,"admin_index":4,"weight":1.035,"is_urban":false,"turn_weight":0.5,"duration":0.586,"bearings":[114,287,293],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,294],"duration":1.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.723,"geometry_index":14120,"location":[0.240697,43.174281]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,297],"duration":26.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.363,"geometry_index":14121,"location":[0.241337,43.174047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":2.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.887,"geometry_index":14125,"location":[0.249003,43.169127]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":70.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":63.691,"geometry_index":14126,"location":[0.24952,43.16869]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":4.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.379,"geometry_index":14152,"location":[0.273253,43.161883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,291],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.75,"geometry_index":14155,"location":[0.274933,43.161331]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,283],"duration":2.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.379,"geometry_index":14157,"location":[0.275647,43.161199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,272],"duration":26.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.969,"geometry_index":14159,"location":[0.276533,43.161132]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,323],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.496,"geometry_index":14174,"location":[0.284716,43.160212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,323],"duration":5.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.875,"geometry_index":14175,"location":[0.284826,43.160104]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,328],"duration":199.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":179.777,"geometry_index":14177,"location":[0.285905,43.158825]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[5,189],"duration":38.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":35.965,"geometry_index":14232,"location":[0.321757,43.112578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,279],"duration":15.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.105,"geometry_index":14254,"location":[0.330684,43.107148]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":0.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.543,"geometry_index":14262,"location":[0.335162,43.104734]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[138,146,321],"duration":12.77,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.789,"geometry_index":14263,"location":[0.335299,43.104609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,308],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.809,"geometry_index":14268,"location":[0.338734,43.102135]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,308],"duration":5.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.965,"geometry_index":14269,"location":[0.338991,43.101988]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.340686,43.101147],"geometry_index":14271,"admin_index":4,"weight":2.98,"is_urban":false,"turn_weight":0.5,"duration":2.781,"bearings":[117,291,303],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":3.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.93,"geometry_index":14273,"location":[0.341644,43.100786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.5,"geometry_index":14275,"location":[0.3428,43.100394]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,293],"duration":25.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.914,"geometry_index":14276,"location":[0.342997,43.100334]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[90,101,272],"duration":14.996,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.477,"geometry_index":14287,"location":[0.352344,43.099025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":8.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.379,"geometry_index":14290,"location":[0.358419,43.099241]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.361741,43.099454],"geometry_index":14291,"admin_index":4,"weight":56.855,"is_urban":false,"turn_weight":1,"duration":60.402,"bearings":[84,255,265],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[99,106,275],"duration":6.656,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.312,"geometry_index":14307,"location":[0.386194,43.100753]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,279],"duration":16.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.23,"geometry_index":14308,"location":[0.388816,43.100463]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.395072,43.099431],"geometry_index":14309,"admin_index":4,"weight":27.781,"is_urban":false,"turn_weight":1,"duration":28.98,"bearings":[97,277,283],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,258],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.082,"geometry_index":14319,"location":[0.406659,43.099624]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":12.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.266,"geometry_index":14320,"location":[0.407115,43.099712]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.738,"geometry_index":14324,"location":[0.411851,43.100862]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":8.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.867,"geometry_index":14325,"location":[0.412154,43.100949]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.664,"geometry_index":14326,"location":[0.415471,43.10189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":123.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":111.59,"geometry_index":14327,"location":[0.415748,43.101963]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[116,122,294],"duration":35.617,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.938,"geometry_index":14352,"location":[0.465286,43.106966]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.47865,43.102675],"geometry_index":14357,"admin_index":4,"weight":247.367,"is_urban":false,"turn_weight":1,"duration":266.352,"bearings":[111,277,290],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.867,"geometry_index":14423,"location":[0.590126,43.1026]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.591435,43.102907],"geometry_index":14424,"admin_index":4,"weight":6.93,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.301,"bearings":[72,100,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.789,"geometry_index":14426,"location":[0.594191,43.103546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":5.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.332,"geometry_index":14427,"location":[0.594502,43.103619]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.596654,43.10412],"geometry_index":14429,"admin_index":4,"weight":8.922,"is_urban":false,"turn_weight":1,"duration":8.348,"bearings":[72,229,252],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":37.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.34,"geometry_index":14432,"location":[0.599915,43.104878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.742,"geometry_index":14441,"location":[0.614211,43.108749]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":2.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.082,"geometry_index":14442,"location":[0.614508,43.108831]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.61535,43.109065],"geometry_index":14443,"admin_index":4,"weight":8.043,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.703,"bearings":[70,101,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.618649,43.109921],"geometry_index":14445,"admin_index":4,"weight":8.098,"is_urban":false,"turn_weight":1,"duration":7.68,"bearings":[72,221,251],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":67.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.449,"geometry_index":14448,"location":[0.621696,43.110636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":0.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.684,"geometry_index":14469,"location":[0.649116,43.115028]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,268],"duration":174.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":165.895,"geometry_index":14470,"location":[0.64941,43.115034]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,268],"duration":69.625,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.137,"geometry_index":14524,"location":[0.724726,43.124563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,267],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.762,"geometry_index":14556,"location":[0.755267,43.124929]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.756557,43.124976],"geometry_index":14558,"admin_index":4,"weight":12.156,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.805,"bearings":[87,107,267],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.761756,43.125073],"geometry_index":14562,"admin_index":4,"weight":8.051,"is_urban":false,"turn_weight":1,"duration":7.43,"bearings":[90,251,270],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":4.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.5,"geometry_index":14566,"location":[0.765052,43.125057]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":219.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":202.695,"geometry_index":14568,"location":[0.767152,43.125059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,290],"duration":60.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.582,"geometry_index":14632,"location":[0.861265,43.127417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":7.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.719,"geometry_index":14659,"location":[0.887493,43.123792]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,293],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.109,"geometry_index":14663,"location":[0.89012,43.123065]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,297],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.602,"geometry_index":14664,"location":[0.890504,43.122923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,298],"duration":0.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.207,"geometry_index":14666,"location":[0.891399,43.122585]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,304],"duration":13.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.496,"geometry_index":14667,"location":[0.891453,43.122558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":15.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.52,"geometry_index":14669,"location":[0.894439,43.12091]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.895484,43.120292],"geometry_index":14670,"admin_index":4,"weight":21.23,"is_urban":false,"toll_collection":{"name":"Péage de Lestelle","type":"toll_booth"},"turn_weight":15,"duration":6.734,"bearings":[121,309],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[121,182,301],"duration":0.895,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.82,"geometry_index":14671,"location":[0.896098,43.120023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":11.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.266,"geometry_index":14672,"location":[0.896288,43.119939]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.89866,43.118901],"geometry_index":14673,"admin_index":4,"weight":2.34,"is_urban":false,"turn_weight":1,"duration":1.469,"bearings":[119,286,301],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,299],"duration":1.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.199,"geometry_index":14674,"location":[0.89906,43.118741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.133,"geometry_index":14675,"location":[0.899447,43.118578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,300],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.871,"geometry_index":14676,"location":[0.899807,43.118426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,297],"duration":4.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.27,"geometry_index":14677,"location":[0.900452,43.118185]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.902033,43.117663],"geometry_index":14680,"admin_index":4,"weight":9.441,"is_urban":false,"turn_weight":1,"duration":9.133,"bearings":[111,270,292],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,286],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.867,"geometry_index":14685,"location":[0.905411,43.116851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,286],"duration":3.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.387,"geometry_index":14686,"location":[0.905763,43.116778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,285],"duration":1.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.477,"geometry_index":14688,"location":[0.90717,43.1165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,284],"duration":17.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.227,"geometry_index":14689,"location":[0.907783,43.116385]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":1.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.969,"geometry_index":14698,"location":[0.914802,43.116233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,258],"duration":17.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.867,"geometry_index":14699,"location":[0.915216,43.116297]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":0.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.91,"geometry_index":14706,"location":[0.921488,43.118437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":5.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.223,"geometry_index":14707,"location":[0.921802,43.118608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":4.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.062,"geometry_index":14709,"location":[0.923581,43.119649]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":13.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.23,"geometry_index":14710,"location":[0.924959,43.12046]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":0.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.371,"geometry_index":14715,"location":[0.929174,43.122904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":28.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":25.973,"geometry_index":14716,"location":[0.929303,43.122975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,241],"duration":2.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.137,"geometry_index":14725,"location":[0.93921,43.127243]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.527,"geometry_index":14726,"location":[0.94003,43.127587]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.94023,43.127671],"geometry_index":14727,"admin_index":4,"weight":12.621,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.664,"bearings":[58,75,240],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.944842,43.129925],"geometry_index":14732,"admin_index":4,"weight":7.82,"is_urban":false,"turn_weight":0.5,"duration":7.934,"bearings":[53,208,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,230],"duration":8.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.816,"geometry_index":14736,"location":[0.947393,43.131428]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,226],"duration":87.254,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":80.691,"geometry_index":14738,"location":[0.949959,43.133163]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":7.457,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.879,"geometry_index":14759,"location":[0.965969,43.1564]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,198],"duration":2.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.598,"geometry_index":14760,"location":[0.966901,43.158543]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":75.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":69.762,"geometry_index":14761,"location":[0.967259,43.159325]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[7,188],"duration":6.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.645,"geometry_index":14801,"location":[0.979263,43.179888]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[6,186],"duration":22.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.82,"geometry_index":14803,"location":[0.979535,43.181678]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,209],"duration":0.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.391,"geometry_index":14817,"location":[0.981577,43.188124]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.371,"geometry_index":14818,"location":[0.981674,43.188233]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,213],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.223,"geometry_index":14819,"location":[0.982002,43.188603]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.672,"geometry_index":14820,"location":[0.982062,43.188663]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[0.982238,43.188839],"geometry_index":14821,"admin_index":4,"weight":8.691,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.406,"bearings":[37,68,216],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[0.984658,43.190968],"geometry_index":14826,"admin_index":4,"weight":1.348,"is_urban":false,"turn_weight":0.5,"duration":0.922,"bearings":[43,196,222],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,223],"duration":7.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.223,"geometry_index":14827,"location":[0.984912,43.191167]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,235],"duration":10.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.102,"geometry_index":14832,"location":[0.987373,43.192603]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.738,"geometry_index":14834,"location":[0.991068,43.194358]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":29.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.562,"geometry_index":14835,"location":[0.991341,43.194486]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":0.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.637,"geometry_index":14841,"location":[1.002474,43.199737]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":3.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.008,"geometry_index":14842,"location":[1.002689,43.199837]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":55.941,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.73,"geometry_index":14843,"location":[1.003746,43.200338]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,256],"duration":0.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.602,"geometry_index":14861,"location":[1.023241,43.207784]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,254],"duration":2.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.184,"geometry_index":14862,"location":[1.023492,43.207836]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.024391,43.208036],"geometry_index":14864,"admin_index":4,"weight":13.09,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.176,"bearings":[69,86,252],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.029257,43.210053],"geometry_index":14871,"admin_index":4,"weight":7.559,"is_urban":false,"turn_weight":1,"duration":7.113,"bearings":[51,210,233],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":119.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":110.684,"geometry_index":14874,"location":[1.031716,43.211488]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.383,"geometry_index":14893,"location":[1.073262,43.235775]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":2.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.176,"geometry_index":14894,"location":[1.073409,43.235861]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.074224,43.236334],"geometry_index":14895,"admin_index":4,"weight":12.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.41,"bearings":[51,231],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.988,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.906,"geometry_index":14899,"location":[1.078485,43.238826]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":6.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.219,"geometry_index":14900,"location":[1.078806,43.239013]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":98.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":88.871,"geometry_index":14902,"location":[1.080984,43.240284]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.723,"geometry_index":14917,"location":[1.112936,43.258917]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":1.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.418,"geometry_index":14918,"location":[1.113196,43.259067]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":0.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.617,"geometry_index":14919,"location":[1.113712,43.259364]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.113934,43.259494],"geometry_index":14920,"admin_index":4,"weight":5.898,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.562,"bearings":[50,75,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.115985,43.260687],"geometry_index":14922,"admin_index":4,"weight":1.945,"is_urban":false,"turn_weight":1,"duration":1.07,"bearings":[51,200,232],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":7.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.992,"geometry_index":14923,"location":[1.116315,43.260885]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":58.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.223,"geometry_index":14926,"location":[1.118814,43.262337]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.195,"geometry_index":14935,"location":[1.137624,43.273308]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.914,"geometry_index":14936,"location":[1.137696,43.27335]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.138356,43.273738],"geometry_index":14937,"admin_index":4,"weight":0.141,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.156,"bearings":[51,231],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":7.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.051,"geometry_index":14938,"location":[1.138402,43.273765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.477,"geometry_index":14940,"location":[1.140831,43.275185]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":0.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.523,"geometry_index":14941,"location":[1.140992,43.275278]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":7.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.578,"geometry_index":14942,"location":[1.141174,43.275381]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":129.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":119.605,"geometry_index":14944,"location":[1.143472,43.276722]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":0.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.852,"geometry_index":14970,"location":[1.185343,43.301115]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":1.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.348,"geometry_index":14971,"location":[1.185644,43.301289]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.186116,43.301561],"geometry_index":14972,"admin_index":4,"weight":6.438,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":6.965,"bearings":[52,232],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,232],"duration":0.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.363,"geometry_index":14973,"location":[1.188341,43.302845]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,232],"duration":0.676,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.605,"geometry_index":14974,"location":[1.188468,43.302918]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,229],"duration":7.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.129,"geometry_index":14975,"location":[1.188675,43.303047]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":70.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":65.527,"geometry_index":14979,"location":[1.191165,43.3045]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.312,"geometry_index":14998,"location":[1.214131,43.317853]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":2.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.234,"geometry_index":14999,"location":[1.214234,43.317914]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.214995,43.318362],"geometry_index":15000,"admin_index":4,"weight":12.891,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.574,"bearings":[51,231],"out":0,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":7.082,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.707,"geometry_index":15005,"location":[1.219254,43.320831]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,232],"duration":33.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.609,"geometry_index":15009,"location":[1.221713,43.322262]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.301,"geometry_index":15021,"location":[1.233244,43.328953]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.09,"geometry_index":15022,"location":[1.233336,43.329008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,230],"duration":14.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.086,"geometry_index":15023,"location":[1.233688,43.32922]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.715,"geometry_index":15024,"location":[1.237974,43.331713]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,230],"duration":12,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.102,"geometry_index":15025,"location":[1.23819,43.331844]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":0.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.27,"geometry_index":15029,"location":[1.241778,43.333909]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,233],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.801,"geometry_index":15030,"location":[1.241866,43.333957]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.24246,43.33428],"geometry_index":15031,"admin_index":4,"weight":4.996,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.418,"bearings":[54,73,233],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":11.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.191,"geometry_index":15032,"location":[1.244105,43.33516]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.247521,43.337119],"geometry_index":15036,"admin_index":4,"weight":1.797,"is_urban":false,"turn_weight":1,"duration":0.879,"bearings":[51,199,232],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[52,231],"duration":7.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.832,"geometry_index":15037,"location":[1.24779,43.337276]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":17.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.91,"geometry_index":15041,"location":[1.250104,43.338618]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.555,"geometry_index":15046,"location":[1.255504,43.341745]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":0.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.906,"geometry_index":15047,"location":[1.25569,43.341853]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,231],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.551,"geometry_index":15048,"location":[1.255993,43.34203]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.256501,43.342334],"geometry_index":15049,"admin_index":4,"weight":8.039,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.469,"bearings":[51,70,231],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[51,213,232],"duration":8.898,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.434,"geometry_index":15053,"location":[1.259082,43.343844]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,231],"duration":53.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.895,"geometry_index":15056,"location":[1.261871,43.345492]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":0.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.664,"geometry_index":15080,"location":[1.270707,43.359585]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[16,196],"duration":56.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":53.715,"geometry_index":15081,"location":[1.27078,43.359772]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,201],"duration":5.531,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.094,"geometry_index":15093,"location":[1.278383,43.375619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":11.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.617,"geometry_index":15095,"location":[1.279104,43.37714]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":0.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.262,"geometry_index":15098,"location":[1.280634,43.380304]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":2.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.164,"geometry_index":15099,"location":[1.28067,43.38038]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.280965,43.381009],"geometry_index":15100,"admin_index":4,"weight":7.77,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.199,"bearings":[19,199],"out":0,"in":1,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,199],"duration":7.859,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.449,"geometry_index":15102,"location":[1.282017,43.383202]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[18,200],"duration":47.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.164,"geometry_index":15105,"location":[1.283065,43.385377]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,198],"duration":6.977,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.438,"geometry_index":15120,"location":[1.289268,43.398692]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,199],"duration":111.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":103.145,"geometry_index":15124,"location":[1.290211,43.40064]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":0.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.84,"geometry_index":15158,"location":[1.307797,43.431158]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[24,204],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.156,"geometry_index":15159,"location":[1.30795,43.431405]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.308343,43.432037],"geometry_index":15160,"admin_index":4,"weight":8.207,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.879,"bearings":[24,45,204],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[9,166,193],"duration":7.195,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.633,"geometry_index":15166,"location":[1.309458,43.434425]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[178,355],"duration":23.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.645,"geometry_index":15171,"location":[1.309652,43.436492]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,348],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.32,"geometry_index":15177,"location":[1.307912,43.443268]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[168,348],"duration":24.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":22.848,"geometry_index":15178,"location":[1.3078,43.443652]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,349],"duration":1.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":1.707,"geometry_index":15184,"location":[1.305876,43.450471]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[169,350],"duration":38.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":1,"weight":38.492,"geometry_index":15185,"location":[1.305742,43.450954]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[29,209],"duration":0.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.172,"geometry_index":15209,"location":[1.31209,43.462099]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[26,209],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.113,"geometry_index":15210,"location":[1.312127,43.462147]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.312629,43.462884],"geometry_index":15212,"admin_index":4,"weight":20.684,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.199,"bearings":[24,206],"out":0,"in":1,"turn_duration":0.021,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":12.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.379,"geometry_index":15218,"location":[1.315592,43.46793]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,203],"duration":5.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.656,"geometry_index":15222,"location":[1.317328,43.470901]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[1.318126,43.47226],"geometry_index":15224,"admin_index":4,"weight":40.07,"is_urban":false,"turn_weight":15,"duration":24.469,"bearings":[23,42,203],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.322936,43.4781],"geometry_index":15236,"admin_index":4,"weight":6.176,"is_urban":false,"turn_weight":0.5,"duration":5.559,"bearings":[39,189,219],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,218],"duration":93.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":93.23,"geometry_index":15238,"location":[1.324312,43.479367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.871,"geometry_index":15282,"location":[1.344741,43.50163]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":5.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.223,"geometry_index":15283,"location":[1.345034,43.50178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":4.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.418,"geometry_index":15284,"location":[1.34651,43.502566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":2.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.523,"geometry_index":15285,"location":[1.347726,43.503175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,235],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.34,"geometry_index":15287,"location":[1.348416,43.503527]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,237],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9,"geometry_index":15288,"location":[1.349069,43.50383]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":12.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.535,"geometry_index":15290,"location":[1.351168,43.5047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.602,"geometry_index":15292,"location":[1.35211,43.505201]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.352232,43.505268],"geometry_index":15293,"admin_index":4,"weight":23.758,"is_urban":false,"toll_collection":{"name":"Péage de Muret","type":"toll_booth"},"turn_weight":15,"duration":8.758,"bearings":[52,233],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":9.426,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.406,"geometry_index":15294,"location":[1.353112,43.505771]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":2.352,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.344,"geometry_index":15295,"location":[1.355008,43.506871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,231],"duration":5.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.266,"geometry_index":15296,"location":[1.355549,43.507185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,234],"duration":95.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":98.098,"geometry_index":15298,"location":[1.357087,43.508021]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":18.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.734,"geometry_index":15328,"location":[1.381961,43.52539]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,216],"duration":1.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.465,"geometry_index":15333,"location":[1.385424,43.529073]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.385711,43.529323],"geometry_index":15334,"admin_index":4,"weight":3.621,"is_urban":true,"turn_weight":0.75,"duration":2.691,"bearings":[36,204,220],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,216],"duration":10.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.57,"geometry_index":15335,"location":[1.38621,43.529824]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,216],"duration":1.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.375,"geometry_index":15338,"location":[1.388243,43.531839]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":2.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.254,"geometry_index":15339,"location":[1.388473,43.532084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.629,"geometry_index":15340,"location":[1.388848,43.53248]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":3.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.586,"geometry_index":15341,"location":[1.389466,43.533153]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[33,68,214],"duration":31.398,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":33.73,"geometry_index":15342,"location":[1.390082,43.533819]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[36,196,215],"duration":7.848,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.43,"geometry_index":15349,"location":[1.395811,43.53999]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":54.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":58.309,"geometry_index":15352,"location":[1.397256,43.541404]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[33,213],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.344,"geometry_index":15367,"location":[1.407198,43.551221]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.407712,43.551796],"geometry_index":15368,"admin_index":4,"weight":10.727,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":9.77,"bearings":[32,53,213],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.409537,43.553926],"geometry_index":15371,"admin_index":4,"weight":9.41,"is_urban":true,"turn_weight":0.5,"duration":8.117,"bearings":[33,175,212],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":5.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.176,"geometry_index":15373,"location":[1.41106,43.555619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,214],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.387,"geometry_index":15375,"location":[1.412145,43.556779]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.412412,43.557022],"geometry_index":15376,"admin_index":4,"weight":16.957,"is_urban":true,"turn_weight":0.5,"duration":14.984,"bearings":[35,206,219],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[37,217],"duration":15.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":16.531,"geometry_index":15380,"location":[1.415534,43.560134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[19,203],"duration":8.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":9.082,"geometry_index":15387,"location":[1.418433,43.563365]},{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"bearings":[12,192],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":15392,"location":[1.419178,43.565366]}]},{"voiceInstructions":[{"ssmlAnnouncement":"In a quarter mile, Take the ramp on the left toward Albi.","announcement":"In a quarter mile, Take the ramp on the left toward Albi.","distanceAlongGeometry":282.911},{"ssmlAnnouncement":"Take the ramp on the left toward Albi, Foix.","announcement":"Take the ramp on the left toward Albi, Foix.","distanceAlongGeometry":147.778}],"intersections":[{"lanes":[{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight left"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[1.419522,43.566497],"geometry_index":15394,"admin_index":4,"weight":3.129,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":2.789,"bearings":[7,15,192],"out":1,"in":2,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,false]},{"bearings":[11,195],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":15395,"location":[1.419712,43.567024]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Albi"},{"type":"text","text":"/"},{"type":"text","text":"Foix"}],"type":"turn","modifier":"slight left","text":"Albi / Foix"},"distanceAlongGeometry":312.911}],"destinations":"E 80: Albi, Foix, Périphérique extérieur, Montpellier, Toulouse-Centre, Empalot","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to stay on E 80 toward Albi/Foix.","modifier":"slight right","bearing_after":15,"bearing_before":12,"location":[1.419522,43.566497]},"speedLimitSign":"vienna","name":"","weight_typical":17.922,"duration_typical":15.938,"duration":15.938,"distance":312.911,"driving_side":"right","weight":17.922,"mode":"driving","ref":"E 80","geometry":"ayabrAcosuA}_@{Jm`@iHoNoCaIuBkGwCwFyDgEqEaDaFoEaJiDkLqGib@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 4 miles.","announcement":"Continue for 4 miles.","distanceAlongGeometry":6630.205},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 61.","announcement":"In 1 mile, Keep left to take A 61.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 61.","announcement":"In a half mile, Keep left to take A 61.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 61 toward Barcelone, Montpellier.","announcement":"Keep left to take A 61 toward Barcelone, Montpellier.","distanceAlongGeometry":190}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[69,104,251],"duration":5.91,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":6.629,"geometry_index":15405,"location":[1.421335,43.568733]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,249],"duration":7.855,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":8.836,"geometry_index":15406,"location":[1.421544,43.56879]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.421801,43.568907],"geometry_index":15407,"admin_index":4,"weight":11.352,"is_urban":true,"turn_weight":6.75,"duration":4.109,"bearings":[72,238,253],"out":0,"in":1,"turn_duration":0.018,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.07,"geometry_index":15408,"location":[1.422984,43.569188]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":6.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.66,"geometry_index":15409,"location":[1.423515,43.569314]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[72,252],"duration":11.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":13.012,"geometry_index":15410,"location":[1.42557,43.569802]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.429495,43.570331],"geometry_index":15417,"admin_index":4,"weight":7.57,"is_urban":true,"turn_weight":0.5,"duration":6.438,"bearings":[81,246,261],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[81,261],"duration":3.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.918,"geometry_index":15419,"location":[1.431638,43.570575]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[80,261],"duration":5.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.594,"geometry_index":15420,"location":[1.43283,43.570715]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,250],"duration":6.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.898,"geometry_index":15424,"location":[1.434475,43.570996]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,225],"duration":7.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.168,"geometry_index":15432,"location":[1.436173,43.571872]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":2.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.566,"geometry_index":15433,"location":[1.437896,43.573142]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,224],"duration":1.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.133,"geometry_index":15434,"location":[1.438404,43.57352]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.07,"geometry_index":15435,"location":[1.43863,43.573686]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[41,58,224],"duration":4.93,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.395,"geometry_index":15436,"location":[1.43903,43.573981]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[44,225],"duration":10.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.57,"geometry_index":15440,"location":[1.440087,43.574791]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[88,264],"duration":1.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.512,"geometry_index":15450,"location":[1.442825,43.5759]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.44325,43.575901],"geometry_index":15453,"admin_index":4,"weight":7.438,"is_urban":true,"turn_weight":0.5,"duration":6.18,"bearings":[98,246,271],"out":0,"in":2,"turn_duration":0.013,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":16.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":18.387,"geometry_index":15459,"location":[1.444986,43.575486]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,297],"duration":2.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.258,"geometry_index":15465,"location":[1.449348,43.573864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.450115,43.573579],"geometry_index":15466,"admin_index":4,"weight":20.031,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":17.812,"bearings":[117,148,297],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.455397,43.572283],"geometry_index":15481,"admin_index":4,"weight":1.789,"is_urban":true,"turn_weight":0.5,"duration":1.141,"bearings":[94,249,274],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[94,274],"duration":5.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.844,"geometry_index":15482,"location":[1.455743,43.572264]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[94,273],"duration":4.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.578,"geometry_index":15484,"location":[1.45769,43.572174]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[94,274],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.586,"geometry_index":15485,"location":[1.45927,43.572094]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,274],"duration":2.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.449,"geometry_index":15486,"location":[1.460009,43.572054]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[93,273],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.07,"geometry_index":15487,"location":[1.460696,43.572026]},{"entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[92,273],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.762,"geometry_index":15488,"location":[1.460999,43.572014]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[85,270],"duration":10.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":12.023,"geometry_index":15490,"location":[1.461742,43.572005]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[49,230],"duration":3.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.363,"geometry_index":15501,"location":[1.464841,43.572882]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.46575,43.573454],"geometry_index":15504,"admin_index":4,"weight":21.242,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":18.102,"bearings":[45,56,230],"out":0,"in":2,"turn_duration":0.024,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[120,300],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.395,"geometry_index":15525,"location":[1.470979,43.573765]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[125,300],"duration":23.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":27.227,"geometry_index":15526,"location":[1.471299,43.573633]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,311],"duration":3.09,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.609,"geometry_index":15533,"location":[1.477134,43.570225]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,309],"duration":0.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.16,"geometry_index":15534,"location":[1.477968,43.569727]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[129,311],"duration":6.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.09,"geometry_index":15535,"location":[1.478231,43.569563]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[130,311],"duration":16.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.523,"geometry_index":15537,"location":[1.479858,43.568579]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[139,318],"duration":4.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.75,"geometry_index":15544,"location":[1.484122,43.565567]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[138,146,318],"duration":11.777,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":13.539,"geometry_index":15546,"location":[1.485081,43.564784]},{"bearings":[140,320],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":15549,"location":[1.487778,43.562586]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Barcelone"},{"type":"text","text":"/"},{"type":"text","text":"Montpellier"}],"type":"fork","modifier":"left","text":"Barcelone / Montpellier"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 61","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 61"}],"type":"fork","modifier":"left","text":"A 61"},"distanceAlongGeometry":6653.538}],"destinations":"Albi, Foix, Périphérique Exterieur, Toulouse Centre","speedLimitUnit":"km/h","maneuver":{"type":"on ramp","instruction":"Take the ramp on the left toward Albi/Foix.","modifier":"slight left","bearing_after":69,"bearing_before":71,"location":[1.421335,43.568733]},"speedLimitSign":"vienna","name":"","weight_typical":310.172,"duration_typical":265.457,"duration":265.457,"distance":6653.538,"driving_side":"right","weight":310.172,"mode":"driving","ref":"A 620; E 80","geometry":"ydfbrAm`wuAqBaLiFaOqP}hA{Fe`@o]m_CaB{JaCyVcBwT_C{\\iDem@sEsq@{Ee|@cFc~@cGyeAwGoiAiDsj@_BkR}B}RiD{RoEmRqEcPsEyL{DsJqEoJkFaJwDsGoH}KknAujBsVw^kIcMmQ_X{OqSyLkQ}IwM_HkKiTy[sIuNwFkLiDeJeDwJ_EmOuCwNyBmPuAeP}@oVMuJ?gFJsFj@iNtA}QpBwOvCqQ~DoQpFmStNui@~Io\\tQcq@zNci@nNsh@rWqaAxP}n@|Je_@fIsZvKaa@pIg[`FcTtBiJrBgLlDcV|BmSbBsRtAcQ`A}Rj@gSj@uSb@cSd@sTlAuo@dB_hA~CwaBnAem@v@}i@V}QTo[C}Ps@eX{@cPeAuNyA_OsB}NyC}PwDcQmFgRyEkNwGyPcHgNkHcNgFeIcRo^gHmKcEiJcE_K}DuM{BaJmEuOiD}TwBkTiAkQo@gPOiN@cMV{Kd@eO|@oPdBuPvA{KfBuJpGkZ`GkR|@uCfG_SvXoq@|h@gdAjY}j@~\\_r@fo@gqAx[{o@zJ{Qb^cs@fImOdg@qbAhTca@pXwh@nY_h@hZ{f@l`@mm@dl@az@nOgTvLcPfSoWt[mb@hl@gx@zx@wfAda@qf@zHoJdH_IjJkIzJkH`HmEnLoGxLcFrQqGpq@}Udr@yU"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 86 miles.","announcement":"Continue for 86 miles.","distanceAlongGeometry":139130.781},{"ssmlAnnouncement":"In 1 mile, Keep left to take A 9.","announcement":"In 1 mile, Keep left to take A 9.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A 9.","announcement":"In a half mile, Keep left to take A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 9, E 15 toward Lyon, Montpellier.","announcement":"Keep left to take A 9, E 15 toward Lyon, Montpellier.","distanceAlongGeometry":210}],"intersections":[{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[155,170,342],"duration":1.172,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.312,"geometry_index":15559,"location":[1.48966,43.559401]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[162,335],"duration":10.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":12.07,"geometry_index":15560,"location":[1.489833,43.559138]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[160,340],"duration":16.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":18.566,"geometry_index":15564,"location":[1.491004,43.55657]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.493628,43.552887],"geometry_index":15574,"admin_index":4,"weight":1.301,"is_urban":true,"turn_weight":0.5,"duration":0.738,"bearings":[144,317,329],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[147,324],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":7.465,"geometry_index":15575,"location":[1.493762,43.552751]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[146,326],"duration":14.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":15.758,"geometry_index":15577,"location":[1.495011,43.551402]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[155,331],"duration":20.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":21.965,"geometry_index":15583,"location":[1.497581,43.548523]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[142,330],"duration":6.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":6.594,"geometry_index":15593,"location":[1.499528,43.545194]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,317],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.055,"geometry_index":15595,"location":[1.499893,43.544879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[131,311],"duration":3.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.461,"geometry_index":15596,"location":[1.500037,43.544789]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.500194,43.544691],"geometry_index":15597,"admin_index":4,"weight":21.109,"is_urban":true,"toll_collection":{"name":"Péage de Toulouse Sud Ouest","type":"toll_booth"},"turn_weight":15,"duration":5.684,"bearings":[129,311],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[117,309],"duration":4.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":5.293,"geometry_index":15598,"location":[1.500488,43.54452]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.501245,43.544287],"geometry_index":15600,"admin_index":4,"weight":20.539,"is_urban":false,"turn_weight":16.5,"duration":3.867,"bearings":[125,289,324],"out":0,"in":1,"turn_duration":0.02,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,318],"duration":122.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":122.027,"geometry_index":15604,"location":[1.502388,43.543552]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":35.512,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.727,"geometry_index":15627,"location":[1.527421,43.513305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[152,332],"duration":70.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.57,"geometry_index":15632,"location":[1.534079,43.504233]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":1.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.148,"geometry_index":15646,"location":[1.547632,43.486493]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":1.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.207,"geometry_index":15647,"location":[1.547886,43.4862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.548154,43.485891],"geometry_index":15648,"admin_index":4,"weight":12.191,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.199,"bearings":[147,182,328],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,326],"duration":4.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.371,"geometry_index":15652,"location":[1.551028,43.482732]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.5521,43.481623],"geometry_index":15654,"admin_index":4,"weight":7.121,"is_urban":false,"turn_weight":1,"duration":6.633,"bearings":[144,304,325],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,324],"duration":3.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.559,"geometry_index":15656,"location":[1.553667,43.480062]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,323],"duration":86.379,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":79.891,"geometry_index":15657,"location":[1.554598,43.479168]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,303],"duration":3.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.961,"geometry_index":15677,"location":[1.580264,43.462453]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.581331,43.461923],"geometry_index":15679,"admin_index":4,"weight":11.246,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.168,"bearings":[124,153,304],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.584459,43.460399],"geometry_index":15683,"admin_index":4,"weight":6.184,"is_urban":false,"turn_weight":1,"duration":5.477,"bearings":[123,283,304],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,305],"duration":53.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.379,"geometry_index":15685,"location":[1.586486,43.459409]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,318],"duration":1.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.906,"geometry_index":15703,"location":[1.604232,43.448067]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,318],"duration":14.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.133,"geometry_index":15704,"location":[1.604749,43.447646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":0.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.922,"geometry_index":15710,"location":[1.608429,43.444464]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":14.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.836,"geometry_index":15711,"location":[1.608668,43.444247]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.242,"geometry_index":15715,"location":[1.612105,43.441129]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":1.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.586,"geometry_index":15716,"location":[1.612416,43.440847]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.612808,43.440491],"geometry_index":15717,"admin_index":4,"weight":19.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":21.07,"bearings":[141,160,321],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.618261,43.435994],"geometry_index":15723,"admin_index":4,"weight":7.723,"is_urban":false,"turn_weight":1,"duration":7.273,"bearings":[135,293,316],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,313],"duration":32.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.219,"geometry_index":15726,"location":[1.620203,43.434637]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,302],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.379,"geometry_index":15734,"location":[1.629807,43.429371]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,302],"duration":6.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.148,"geometry_index":15735,"location":[1.630295,43.429151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":15.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.738,"geometry_index":15738,"location":[1.632482,43.428226]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":13,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.699,"geometry_index":15742,"location":[1.637431,43.42622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,299],"duration":17.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.156,"geometry_index":15745,"location":[1.641651,43.424526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.48,"geometry_index":15749,"location":[1.647317,43.422243]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[120,132,300],"duration":38.113,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":35.25,"geometry_index":15750,"location":[1.64783,43.422026]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.65975,43.416013],"geometry_index":15759,"admin_index":4,"weight":5.75,"is_urban":false,"turn_weight":1,"duration":5.141,"bearings":[129,296,309],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,310],"duration":1.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.418,"geometry_index":15761,"location":[1.661315,43.415071]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[131,222,310],"duration":1.668,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.535,"geometry_index":15763,"location":[1.66178,43.414786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,311],"duration":39.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.805,"geometry_index":15764,"location":[1.662281,43.414474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,315],"duration":46.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":42.707,"geometry_index":15771,"location":[1.673459,43.406591]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,304],"duration":1.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.711,"geometry_index":15782,"location":[1.687822,43.39867]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,303],"duration":3.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.629,"geometry_index":15784,"location":[1.688409,43.39839]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.689656,43.397791],"geometry_index":15785,"admin_index":4,"weight":4.664,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":4.93,"bearings":[123,130,303],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":9.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.828,"geometry_index":15787,"location":[1.691202,43.397048]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.694176,43.395696],"geometry_index":15790,"admin_index":4,"weight":5.363,"is_urban":false,"turn_weight":1,"duration":4.613,"bearings":[120,286,301],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,298],"duration":6.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.75,"geometry_index":15792,"location":[1.695777,43.395047]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,295],"duration":16.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.617,"geometry_index":15795,"location":[1.697938,43.394274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,287],"duration":2.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.035,"geometry_index":15801,"location":[1.703913,43.392662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":4.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.434,"geometry_index":15802,"location":[1.704684,43.392508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":2.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.672,"geometry_index":15804,"location":[1.706409,43.392196]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.707449,43.392034],"geometry_index":15806,"admin_index":4,"weight":22.637,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.852,"bearings":[100,117,282],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.716563,43.390906],"geometry_index":15814,"admin_index":4,"weight":10.582,"is_urban":false,"turn_weight":1,"duration":10.094,"bearings":[105,270,284],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,292],"duration":24.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.613,"geometry_index":15818,"location":[1.720362,43.389959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":2.801,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.574,"geometry_index":15827,"location":[1.727965,43.38621]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":30.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.363,"geometry_index":15828,"location":[1.728745,43.385698]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,311],"duration":82.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":73.945,"geometry_index":15834,"location":[1.737296,43.380134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":67.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.984,"geometry_index":15851,"location":[1.757974,43.369459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":12.047,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.137,"geometry_index":15870,"location":[1.776723,43.362815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":77.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":72.039,"geometry_index":15875,"location":[1.779846,43.361354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,292],"duration":2.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.879,"geometry_index":15898,"location":[1.802129,43.355317]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,294],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":15899,"location":[1.802813,43.355095]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,296],"duration":0.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.387,"geometry_index":15900,"location":[1.803437,43.354878]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.803569,43.354832],"geometry_index":15901,"admin_index":4,"weight":2.918,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":3.16,"bearings":[117,128,296],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,297],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.801,"geometry_index":15902,"location":[1.804583,43.354461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":14.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.797,"geometry_index":15903,"location":[1.804856,43.354355]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.809322,43.352184],"geometry_index":15909,"admin_index":4,"weight":4.125,"is_urban":false,"turn_weight":1,"duration":3.387,"bearings":[129,284,309],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,309],"duration":335.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":309.996,"geometry_index":15910,"location":[1.810494,43.351496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,307],"duration":13.801,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.086,"geometry_index":16001,"location":[1.934339,43.292682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,301],"duration":0.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.457,"geometry_index":16005,"location":[1.938938,43.29058]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.41,"geometry_index":16006,"location":[1.939096,43.290516]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.939942,43.290172],"geometry_index":16008,"admin_index":4,"weight":15.523,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.941,"bearings":[117,134,299],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.945669,43.288209],"geometry_index":16014,"admin_index":4,"weight":11.84,"is_urban":false,"turn_weight":1,"duration":11.43,"bearings":[111,273,293],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":59.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":55.254,"geometry_index":16018,"location":[1.950023,43.287093]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":28.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.781,"geometry_index":16035,"location":[1.973695,43.283707]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,300],"duration":3.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.992,"geometry_index":16045,"location":[1.984358,43.280229]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[1.985465,43.279725],"geometry_index":16047,"admin_index":4,"weight":25.637,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.734,"bearings":[123,138,302],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[1.994599,43.275236],"geometry_index":16053,"admin_index":4,"weight":12.723,"is_urban":false,"turn_weight":1,"duration":13.035,"bearings":[124,291,304],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":257.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":238.574,"geometry_index":16057,"location":[1.998951,43.273074]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,292],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.523,"geometry_index":16116,"location":[2.090994,43.238229]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":2.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.203,"geometry_index":16117,"location":[2.091206,43.238169]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.092085,43.23792],"geometry_index":16119,"admin_index":4,"weight":16.629,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":17.512,"bearings":[111,124,291],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.098533,43.236028],"geometry_index":16124,"admin_index":4,"weight":7.332,"is_urban":false,"turn_weight":0.5,"duration":7.012,"bearings":[115,279,294],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,298],"duration":20,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.492,"geometry_index":16128,"location":[2.101337,43.235026]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":2.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.863,"geometry_index":16135,"location":[2.108821,43.231531]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.109878,43.230966],"geometry_index":16136,"admin_index":4,"weight":22.645,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.855,"bearings":[126,139,306],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.118295,43.227899],"geometry_index":16147,"admin_index":4,"weight":11.551,"is_urban":false,"turn_weight":1,"duration":11.129,"bearings":[104,275,287],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,276],"duration":33.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.051,"geometry_index":16152,"location":[2.122667,43.227307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":0.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.633,"geometry_index":16163,"location":[2.13598,43.22837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":22.871,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":20.586,"geometry_index":16164,"location":[2.136247,43.228391]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,281],"duration":179.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":161.523,"geometry_index":16172,"location":[2.145287,43.228051]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":3.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.617,"geometry_index":16221,"location":[2.214837,43.219291]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.216344,43.219034],"geometry_index":16222,"admin_index":4,"weight":21.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":23.141,"bearings":[104,122,283],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.224854,43.21672],"geometry_index":16231,"admin_index":4,"weight":10.699,"is_urban":false,"turn_weight":1,"duration":10.496,"bearings":[119,255,297],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,303],"duration":14.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.117,"geometry_index":16234,"location":[2.228397,43.21518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,313],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.312,"geometry_index":16239,"location":[2.232778,43.212661]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[135,315],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.996,"geometry_index":16242,"location":[2.234137,43.211705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,315],"duration":132.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":122.57,"geometry_index":16243,"location":[2.234437,43.211484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,288],"duration":20.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.258,"geometry_index":16295,"location":[2.288439,43.197605]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":0.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.324,"geometry_index":16301,"location":[2.297219,43.196087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,282],"duration":4.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.453,"geometry_index":16302,"location":[2.29736,43.196065]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.299338,43.19572],"geometry_index":16304,"admin_index":4,"weight":10.438,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.715,"bearings":[104,122,283],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.303387,43.194887],"geometry_index":16308,"admin_index":4,"weight":12.617,"is_urban":false,"turn_weight":0.5,"duration":12.434,"bearings":[108,270,287],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":19.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.559,"geometry_index":16312,"location":[2.30799,43.193681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,277],"duration":2.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.18,"geometry_index":16320,"location":[2.315212,43.192307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,275],"duration":40.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":39.73,"geometry_index":16321,"location":[2.316059,43.192253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,258],"duration":3.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.879,"geometry_index":16342,"location":[2.331798,43.194528]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,264],"duration":2.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.91,"geometry_index":16345,"location":[2.333334,43.194662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,269],"duration":4.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.164,"geometry_index":16347,"location":[2.334482,43.194689]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,274],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.855,"geometry_index":16349,"location":[2.336119,43.194638]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,275],"duration":33.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.711,"geometry_index":16350,"location":[2.336468,43.194615]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,285],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.879,"geometry_index":16367,"location":[2.348726,43.191534]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,284],"duration":33.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.91,"geometry_index":16368,"location":[2.349078,43.19147]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,258],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.027,"geometry_index":16384,"location":[2.361824,43.19172]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,257],"duration":12.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.203,"geometry_index":16385,"location":[2.362238,43.191787]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[87,94,265],"duration":12.59,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.27,"geometry_index":16390,"location":[2.366847,43.192295]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.371363,43.192198],"geometry_index":16395,"admin_index":4,"weight":12.434,"is_urban":false,"turn_weight":1,"duration":11.734,"bearings":[98,263,277],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,286],"duration":5.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.914,"geometry_index":16400,"location":[2.37548,43.191553]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,290],"duration":117.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":111.168,"geometry_index":16402,"location":[2.377186,43.191113]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":0.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.391,"geometry_index":16455,"location":[2.415659,43.192202]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":2.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.953,"geometry_index":16456,"location":[2.415772,43.19227]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.416344,43.192615],"geometry_index":16457,"admin_index":4,"weight":11.09,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.684,"bearings":[52,68,230],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[59,210,234],"duration":9.703,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.207,"geometry_index":16461,"location":[2.419728,43.194516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,248],"duration":147.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":136.734,"geometry_index":16466,"location":[2.42358,43.195923]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,295],"duration":24.223,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.781,"geometry_index":16522,"location":[2.483793,43.179894]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":1.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.844,"geometry_index":16531,"location":[2.494032,43.177504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,279],"duration":110.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":102.535,"geometry_index":16532,"location":[2.494788,43.177416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,289],"duration":3.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.926,"geometry_index":16580,"location":[2.536025,43.178133]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.537221,43.177885],"geometry_index":16582,"admin_index":4,"weight":24.203,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.184,"bearings":[103,146,284],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.547125,43.178079],"geometry_index":16594,"admin_index":4,"weight":2.371,"is_urban":false,"turn_weight":1,"duration":1.504,"bearings":[74,217,256],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":8.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.859,"geometry_index":16595,"location":[2.547677,43.178198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":18.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.352,"geometry_index":16598,"location":[2.550842,43.178909]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.277,"geometry_index":16606,"location":[2.55798,43.180014]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,267],"duration":93.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":83.867,"geometry_index":16607,"location":[2.558508,43.180032]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":7.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.332,"geometry_index":16654,"location":[2.598426,43.175374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":36.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.973,"geometry_index":16657,"location":[2.600779,43.173873]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":9.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.848,"geometry_index":16677,"location":[2.61564,43.170174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":32.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.109,"geometry_index":16683,"location":[2.619896,43.170904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":59.379,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":53.434,"geometry_index":16694,"location":[2.633503,43.174298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,259],"duration":88.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":81.637,"geometry_index":16722,"location":[2.659667,43.174017]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":2.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.023,"geometry_index":16766,"location":[2.698129,43.171367]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,291],"duration":0.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.488,"geometry_index":16767,"location":[2.699038,43.171113]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.699231,43.171061],"geometry_index":16768,"admin_index":4,"weight":0.859,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.938,"bearings":[111,122,290],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,291],"duration":21.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.668,"geometry_index":16769,"location":[2.69958,43.170965]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.707684,43.169081],"geometry_index":16778,"admin_index":4,"weight":10.906,"is_urban":false,"turn_weight":1,"duration":10.715,"bearings":[104,270,285],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,281],"duration":58.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.02,"geometry_index":16782,"location":[2.71187,43.168406]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.484,"geometry_index":16802,"location":[2.73515,43.168093]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,263],"duration":3.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.543,"geometry_index":16803,"location":[2.735357,43.168112]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.736915,43.168267],"geometry_index":16804,"admin_index":4,"weight":0.441,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.5,"bearings":[81,96,262],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":5.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.316,"geometry_index":16805,"location":[2.737107,43.16829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":10.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.277,"geometry_index":16806,"location":[2.739435,43.168568]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[79,245,259],"duration":7.977,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.371,"geometry_index":16809,"location":[2.743386,43.169096]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":1.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.195,"geometry_index":16811,"location":[2.746518,43.16955]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":3.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.012,"geometry_index":16812,"location":[2.747021,43.169621]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":4.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.191,"geometry_index":16813,"location":[2.748279,43.169786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,261],"duration":3.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.902,"geometry_index":16815,"location":[2.750057,43.169997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":25.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.414,"geometry_index":16816,"location":[2.751308,43.170114]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,270],"duration":42.348,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.105,"geometry_index":16825,"location":[2.762547,43.170353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,270],"duration":69.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.18,"geometry_index":16831,"location":[2.781385,43.170261]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,284],"duration":8.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.977,"geometry_index":16854,"location":[2.807247,43.170449]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,288],"duration":45.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.551,"geometry_index":16858,"location":[2.810981,43.16953]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":19.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.648,"geometry_index":16874,"location":[2.830584,43.166878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,294],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.328,"geometry_index":16884,"location":[2.838143,43.165546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":8.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.934,"geometry_index":16885,"location":[2.838674,43.165358]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":3.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.184,"geometry_index":16889,"location":[2.841796,43.164108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.02,"geometry_index":16891,"location":[2.843038,43.163599]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.844182,43.163127],"geometry_index":16892,"admin_index":4,"weight":25.332,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":27.391,"bearings":[119,137,299],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.853728,43.159207],"geometry_index":16896,"admin_index":4,"weight":5.535,"is_urban":false,"turn_weight":1,"duration":4.91,"bearings":[119,283,299],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":6.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.82,"geometry_index":16898,"location":[2.855469,43.158496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":12.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.137,"geometry_index":16900,"location":[2.857701,43.157578]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":42.754,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.473,"geometry_index":16901,"location":[2.861965,43.155823]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,263],"duration":20.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.297,"geometry_index":16916,"location":[2.878048,43.151812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":29.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.953,"geometry_index":16927,"location":[2.885557,43.154196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":5.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.82,"geometry_index":16942,"location":[2.897062,43.15635]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,274],"duration":33.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":29.355,"geometry_index":16944,"location":[2.899231,43.156204]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":37.762,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.035,"geometry_index":16955,"location":[2.91253,43.158255]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,284],"duration":25.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.633,"geometry_index":16969,"location":[2.927528,43.15906]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":8.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.148,"geometry_index":16982,"location":[2.937785,43.159938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,265],"duration":17.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.062,"geometry_index":16986,"location":[2.941052,43.160377]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,300],"duration":9.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.734,"geometry_index":16996,"location":[2.947775,43.15918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,314],"duration":1.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.336,"geometry_index":17002,"location":[2.950926,43.157319]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[2.951335,43.157],"geometry_index":17003,"admin_index":4,"weight":9.773,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":10.887,"bearings":[132,141,317],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,300],"duration":19.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.398,"geometry_index":17008,"location":[2.954756,43.155008]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.96246,43.153513],"geometry_index":17016,"admin_index":4,"weight":12.441,"is_urban":false,"turn_weight":1,"duration":12.051,"bearings":[99,260,279],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":22.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.867,"geometry_index":17020,"location":[2.967052,43.152976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,280],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.434,"geometry_index":17024,"location":[2.975604,43.151962]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":2.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.844,"geometry_index":17025,"location":[2.976152,43.151886]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":2.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.484,"geometry_index":17026,"location":[2.977108,43.151747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,281],"duration":0.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.898,"geometry_index":17027,"location":[2.977938,43.151626]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[102,113,283],"duration":2.145,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.125,"geometry_index":17028,"location":[2.978238,43.151575]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.605,"geometry_index":17029,"location":[2.978948,43.151467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":3.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.105,"geometry_index":17030,"location":[2.979491,43.151381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":7.66,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.66,"geometry_index":17031,"location":[2.980554,43.151215]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,282],"duration":2.414,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":2.414,"geometry_index":17032,"location":[2.983166,43.150794]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,280],"duration":11.285,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":11.285,"geometry_index":17034,"location":[2.983955,43.150688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,225],"duration":4.367,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":4.367,"geometry_index":17043,"location":[2.987037,43.151529]},{"bearings":[12,199],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":17046,"location":[2.987632,43.152391]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Lyon"},{"type":"text","text":"/"},{"type":"text","text":"Montpellier"}],"type":"fork","modifier":"left","text":"Lyon / Montpellier"},"distanceAlongGeometry":139160.781}],"destinations":"A 61: Barcelone, Montpellier, Carcassonne, Foix","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 61 toward Barcelone/Montpellier/Carcassonne/Foix.","modifier":"slight left","bearing_after":155,"bearing_before":162,"location":[1.48966,43.559401]},"speedLimitSign":"vienna","name":"","weight_typical":4046.547,"duration_typical":4297.02,"duration":4297.02,"distance":139160.781,"driving_side":"right","weight":4046.547,"mode":"driving","ref":"E 80","geometry":"q}sarAwn|yAlOyI`^aM``@wMb`Aw[f^sN`HkCxQsHn[eOvWgMlKgGlY{QfV{QjWwRfQ{Ohk@}c@nGkG~YiWhx@wt@dj@sf@|d@wa@xc@q`@jWcUjP_NfSqNr\\wQfW}N~LkGnMqFrYaJzQiGbQ_HxTaLhSwL|R{NlHyHfI_LrD_HbEyHtIkQjGyUdEoWtJ{UtJ}QdIgMjKkN`OkOzr@op@b^a]p}@_{@|aBk}AtzC_tCrqBqhBx^c\\nqAuhAbfAu}@j}B{iBxpAyaArsAgbArw@}k@lg@k]~o@md@bfAor@~nBorAbnAuu@~xA__A||Bk|AjuCyqBtiBsmAjy@si@daDkvB~|DmjCfvBivAdd@kZhd@oZjpAm{@t}DojCnzC_qB`dAgr@`cAar@fnByrAbhAex@~cAat@r~@wr@~m@ae@nn@cf@b|@mr@ba@{[hQ{NhRwOfe@u`@p~@}w@hy@{t@hd@cb@~b@wa@h`@g_@nm@im@`r@sr@zv@ey@rE}Ett@{w@nbAifAtg@kk@bv@_|@`uAmbBvi@_s@jjA}_Bvt@aiAly@{sAxr@aoAjq@}pAxj@yjApa@i|@bb@aaAvpAyaD|o@kcB`dAsmCds@sjB`d@ulApJsUpTak@`Qmd@@Evr@uiBjXer@n_@acAj\\sy@ja@udAh`@s~@zc@sbAxb@q_AxYun@z_@_x@ha@ky@pd@s}@|p@mmAp{@u}A|i@g~@DI~l@oaAtl@__A~n@m`A|l@s{@nl@iz@ds@k`AhYi_@rWg\\hc@gj@rm@eu@zi@}o@fj@uo@dDuDpL}Mjb@kf@dZe]b_AkeAdcA{iArPmRfUoWdp@uu@nXc\\b_@wc@lgA}vAve@{n@`~@msAz_@ml@b_@em@xRw\\dZyg@r`AygB~gAy|BlYuo@|Usj@`o@i}A`e@koAxZy|@vLo]bAuCv[ibA|Yu_AtMeb@phA_uDxHkWhZwbAjm@crB|^ioApZicAjSat@|Mad@~{@svCjm@koBpLa_@~\\}eAnh@uzAdw@cwBhw@wnBxX}q@jb@abA~cA}|Bre@gbA~Uif@r_@{u@fY}i@tB_EbMaVnRi^bhBu`Dj}@iyAp_AyxAxiBgqCn_BuaClv@elAz@uAli@k|@jr@yjAt`AkdBx{@ehBvh@}jAfd@qgA~fAcsClf@mqArh@suAz]k_AxJ{V~Lk\\nBiFld@}lAh`@mdAbLeZfVgo@v]acAn]qdApSep@~R{q@vRkt@nMkg@`Mih@rNgn@tO{u@jMer@tVuvApMu{@xNwfArHeo@lJ{z@`G}n@pDka@pCs]fKqzAhHciAfFaaArDyv@hGyqA`HyoA`He_ArHgu@pJay@nNuaA|N}x@dOwu@rTe~@xO_l@bSyp@jUcq@vWer@z\\qw@r^qt@~a@kw@b_@kp@~^wo@bn@wfApmAiwB~eAqkBfn@yfAj}@c`Blh@{_Arm@mkAj`@ex@za@i}@be@ugA`d@ajAdd@kmAl`@miAz`@ekAbbAitCd`@eeA|Pmb@|q@y`Bf`@i{@ph@eiAthA}aCbb@g_AxRgd@dDyHzOs`@rp@{cBr\\g`A~Zs`An[ceAhOgj@dPem@nOsm@f_@__BxWcqArR_cA`]mlBr`@k}BzKen@fMon@|Ik`@~O}o@~Jo^pOsg@vPog@jRsh@v`@e`AzBgFjXqn@|Wqn@tRqd@p\\e|@jRak@`Pig@dQqn@tNuk@jLwi@lRe_AfOu}@xIgo@dIyq@hGco@vGc|@zMkmBxO{~BrJalA~LklAbMccAdOgaA`SwiArKmi@zLwi@pL_f@zAgGdVk~@rEaPhSop@fMo`@jOu`@j_@ubAz_@a|@nRu`@~i@ghAta@kv@fa@iv@fp@}mAf~AcxCf|AcxCllAaaCtkAkeCl{@slBjt@acBnf@wkApd@miAvy@otBfdAudCrn@gwAhs@s|AplAgfC|`AemBbdAcpBzhAutB|yAumCtqAw~B`vAigCxnAqcCfy@agBdp@eaBfEmK|Zkz@b^udAvr@e~B|c@qaBn_@s_B~EaUfJqb@hNyq@fZo|A`j@euCzc@q}Bhe@{yBv[mtApe@}hBnf@uaBjtA}bEhs@auBr^whAfR}l@p\\}hAxS}t@rc@}eBz`@aiBx[yaB~[coB`XyiBp\\qeCnHyl@~Eq_@fKyw@l`@qwC`Ne|@tM_z@`T}mA`Oev@zMmo@``@}cBpKgb@bJq^h]_oAxl@{lBh]ecAjb@ciAnl@qxAx`@m}@p_@mx@jYkl@fe@}}@dY_e@vf@gz@v^{m@f`@cn@n^qk@`CuDnYyd@tYae@fg@ww@hj@_{@~{@iuAx|@kyAvl@}bAzkA{|Bvd@{_A|a@g~@dZ}o@tV}p@nc@ujAzb@wnAhb@aqA~B{H|CcKpOwg@fd@acB~Sex@bPmq@|P{u@nQoz@zI{b@nL_o@fPq}@nNo|@nVacBnRwxAdL}aAbKccAvKalAvJkpAdJquAvNkrCtHwdBpU}lF~JkiB|HcnA|Goz@`Ges@|Ik{@`Gqi@zIwt@hMwcA|@qHzQ}kA`TcpAhNev@fSubArYkqAp\\}rAn^_sAva@gsAnPkh@rO_d@zMe_@`\\u|@ba@weAd\\_z@z}@g~Bzl@y{AlnAk~Cb_@s_Ajh@crAp_@k`A`\\{y@t|@c{Bbq@gdBb_@q_AjS{g@hhAmrC`hBwrEhU_l@xq@ueBxi@auAls@{hBlaAkdCly@wtBrw@iqBnr@}iBl\\q~@jg@}yA~e@c|Ala@evA`Twv@lMgf@vUa~@jl@g`Cdr@_rCpz@uiDll@a`Cld@ojB`\\cuAh]w{Ax[c|ArXgwA|Os}@fUavAvSkwAzEy\\~D_Zh^_nCv^usCn\\keCrf@{gDpf@uqCbd@exBjl@ygCxb@gaBhc@s{Apj@ohBxf@e{Avg@gzA|g@oyAfe@itA~g@g}Ad`@alAb^ckAfY_dAhXubAtPer@bTa~@pV{fAxd@g|BzRmcAvBgLxLyo@v@cE`]ojBjS}gAt]mgBhQc{@xQ_y@zNsn@~Omn@fNmi@nMwd@z^coA`\\_cAtg@gyAph@csA`[sv@f\\}v@|Pu`@hb@aaAj[mu@zZyw@zPmg@|Nwd@jYycAfNij@lO}s@nJ_f@tM{v@jIal@~Es^|J}~@bHey@nEqo@zCsl@pC}w@~BunAXyvAkA}iAwB}|@gCgq@}G{jA_O{lBeOsmBmH{hAqEa{@wBcn@i@uOmBmt@iAmx@]_|A|@oqAfC_rAtDa~@|Ey`AbHwaAlKcmArNqlAfIip@`QwpA|uAo_Kfz@kfGrAwJbHch@~`@}vC|a@ayCf_@}mCrd@efDfTaaBrNokAhKweAjI{bAzEyr@bFw{@|EekAbEmsArB_zANa|Ay@a`BiBkiAuGcuBkJqaCmFuuAkE}sAkCetAy@my@O}lAJyh@l@}m@p@mc@pB}{@zBcu@`Dqx@hCmd@jF_z@zEgs@l@yHfJogAdNk|Ad\\kuDbLsqAvFom@~J{gApKukAjKgkA`Oe}ArFai@|PkvAbJyo@bPcfAlL{o@hN}s@~VqiAlUo_ArNsh@d_@yoAf[a`Axb@qjA|Wsq@|h@skAhWai@lk@ggAxTg_@jXed@jQwX~N_UxLwQhXu_@v[wc@fe@so@d}@mnAhXu`@vYge@b\\ol@nX}h@vZuq@ja@ubAvWwu@bPgg@tM}e@fZikAfNqo@xMcs@pPwfAzJ{v@~JqaAnGww@lAkPbCya@xCkp@rBaq@rAiu@|AmhBjBedDzAwhDjBcbClBu|AxBadArDabAjEc{@dB{\\dD_g@nDse@dGsv@xGkp@jImu@rIcp@`Mk|@nRgiAnKuk@`L{k@bMwk@dl@ogCrm@wiCr`@uiBf\\o_BfBwIbXqaBtU{~AtIqp@bLqbALgAtLijAvWktCd_@ukEj@yGdNevAjEmc@|LekAzIgu@pQqsAtGae@dKiq@hR}iAhW_zApRmfAhLao@|QcgAnMa}@xG{j@|Fkl@fGet@bGq~@~Dc~@jB}s@rAm|@Puv@Mgo@gAeu@oBex@qD}w@wDoq@}Dsh@cGkq@iGsj@sImp@wJuq@aKen@qL}p@}Hmd@iKmn@wG}b@cF}_@kEu^uFkl@iDyb@_BuY{Aw`@oAqb@k@kb@Ikc@Vuo@lAst@l@yT`Cwj@pDok@|Emj@xCuYhFub@hH}e@~Hed@jJ}d@lQgv@tO}m@zL{f@hMah@rM_m@rOsy@dHia@~OqgAlKk~@~B_UxEyi@lEup@zCoh@|Bmn@nBws@vAcbAJi|@Q_o@_Bcz@}Byz@oCyl@iCqb@yCab@kGcx@mFsn@kF{l@eC{XsFwn@}F}w@oE{r@_Dgx@uCgiAeAc`AK}aAZ_h@tAip@`D{z@~Csn@hFgu@jFao@|Io|@tH{l@fJum@fO}z@jOst@lMyi@pQ{p@dOih@zP_i@zTwn@dc@yiArVco@pS_k@dLg]zM{d@vNaj@pNkn@xJ_h@dI{h@vHsl@rFoh@hFuq@jEmt@~Cor@~Bq}@|@ao@F{b@Ua~@y@kq@uBmy@wCqu@kEus@yFez@_Iuw@_Gkj@gI_q@wKcw@_Jao@{Img@iJ_i@cLql@kL{j@eJ{a@kNum@}Myh@uOak@cQ_l@_Sco@uN{c@oTan@yRqg@oTai@_Pg_@{Ne\\_P}\\eOi[uIiQgCaFqTwb@o{@khB_Xil@u\\qt@sBgFyVwt@cQwl@uP}o@mNon@{Kyk@aLcy@cGgg@mFaj@kEqj@iBe[aDur@mBu_ASoZEql@d@sh@nAmp@hCuq@nDeo@vEul@jI_`A~Io|@hLwkAxP}eBxb@_kE~Z}`D~MurAdMamA`LwbApLmaAzJgu@nK_t@|Jop@`Oq|@pNwx@vQq`AtPow@dMwl@`Raw@zTc~@pUg|@tPim@jD_MdWiz@pMka@pSin@hc@coAln@wdB`{@_{Bnq@yeBhw@utBbm@o~Atq@chB`g@}sAvV{q@tZc|@`Vot@|Rqn@t\\_jAxZojArZkqApXohAhCiKr[}aBdUgpAlUeuAj_@emCvOeqAdJw~@xDoa@tDse@nDgn@bCql@`B}aAJig@Ogf@u@kb@mCwv@}FgcAgH_z@cNsfAoJil@kL}l@iLyg@eOej@aR_m@a^cfA{[gbAmS_s@iRst@cNan@wKsk@sJ_l@qJeq@sHwl@eFcj@mFkr@_Fmy@yCat@}Aku@y@qr@DwfA`Akz@pByr@nBsd@nCug@`Ekj@pFum@jH{p@pG_g@|Jip@nM{s@rLwi@tWsiAnk@ezBxk@o}BrRuy@lHe]pK{k@nIgh@nImn@~CiZ|Geu@nD{g@jCan@jBai@bAcn@Jo_AgAa`A_Bul@mCal@uDoj@qFwp@{LciAmFoa@uUwcBaH{g@uKew@iHai@oT_bBkKi_A}F{p@yEoq@aDio@sBwn@mAik@c@_`@G}j@Zqo@hAkt@pB}s@jDyp@`Emn@nGku@`K}}@hS{aBnJew@xIkz@zD{e@rDmi@~Cms@xBaz@b@ar@Kks@w@sm@_Csu@oCiw@qH_xAyGkoAcGcnAeD}v@}Co`AoAur@a@uq@@ku@\\um@lBm{@lCor@rCug@`Doh@dE_h@lFuj@dHeo@dJap@fLmr@fJof@vKsi@xOyp@hSeu@dTir@hWat@jUkk@dRoa@jX_j@pSqa@xi@saAl]{l@|a@ms@~\\qn@hOc[dVam@jOaa@nQmj@hR_q@bNel@bPuw@pLcu@bHil@nGqq@vGk}@|Csv@zAmk@Rsg@Hib@s@ul@aA}f@uCgr@yBwe@gB{UqDsg@iI}v@iHyn@kL_{@uJgo@cYogBee@mlCmXizA{RyeAkXa`BgMox@yMk}@yLu|@oKo{@aI_v@sHyw@gDuh@aDkh@wDqx@MqCeCgv@mAco@o@el@QegA`@il@x@}o@bByu@vC{x@jEs}@tFe|@lG{`AdIsnA~HcjAdMkmBnEax@zC_x@zAmz@Fmr@g@o{@wBa}@kFufAaI}lAiFst@gGccAcCqo@kAuj@m@eh@E}c@f@oo@nAop@rB}i@tCof@xEqp@rFul@nJ_y@|Kc~@|LodAb_@e|C~Hws@tFao@lEgq@xCun@rB}q@x@qq@?ix@q@aj@o@kb@mAe]{Dmw@wHqhAyOutBqEmr@cBc\\iCyy@iAuj@[{j@P_h@l@ol@hBsp@dC_j@|D_m@hD_c@`G{j@jIep@|Lkv@t`@gzB|QgcAzNyw@fBaK~DyTjPq_ArK{o@bL}q@tL_v@fJgn@hLky@dLc}@vJgz@lJc{@vNiwA|KsmAjFmr@bEgj@lCoa@xKmhB`L_dCdGadBvBqw@pAsp@jCscBr@{_Ap@i_ABmfAIsjAs@uiAqA{lAuAggAyAqs@wBijAmCqbAiDafAwCcw@uCoq@e@}KuHk`Bm@_KkPopCyDyo@gLyaB}LibByKexAqNqiBmCm^iIsmAsEyr@qEiz@iFemAwAa`@sAm]kByr@sAys@{AupAi@saASgvAHmuC\\isCNcdC`@g~Dd@apGn@e_H\\a}CPudCBmZHkbCM{cCo@c}@o@_|@yBaaBcDmnAaEewA_GqaBgJmyBeFmoAaEmoAw@ce@o@wc@_@_z@Xkw@nBegAbAe`@`Cgj@jCug@jFwv@rGgu@bKm_ArLa{@dNk|@rUavA~D{W~b@yiCZmB~PwlAzNgeAvMwhAjMmnA|JwfAjG{y@fGy_AbG_dAnD}y@nCmr@hDesAvCw|ApB_wApD_lCP}LzAyq@|Bmr@`D{l@rFcw@dGcn@fIsp@xJqo@fOyw@tOcs@vJe`@nMye@lMic@vXw}@lVgx@nE}NhXu|@n\\ofArl@_nBtg@obBpdA{gDbxAgxEvQem@tXs}@`Nuc@hi@yeBtlBoiGlcAcfDbaBuoF~Suv@lNcm@`L}j@vJqo@fJwv@fEke@nCca@hC_n@zA_l@\\cl@Wyn@yAip@uBqg@QgEkDgj@mE_g@qHim@sJap@gOav@cNqj@aOmh@wPug@wSwk@o\\}y@ad@akAiM_`@}Js[oLsd@kOyq@gLoo@cIwj@oG{m@wEkn@aDkk@iBcp@q@mh@Fgs@vAg|@bC_y@hDadAxBoaAn@cm@Sqs@eAmm@cDau@iEyo@iG}r@wJqy@cV}mBaUglBq[emCsTimBee@iaEcTciBkJix@uGcp@wE{k@oCse@iB{i@eA{k@Jol@lAuk@jD{v@rFkp@jLuiArOcxArHc~@bEmn@lBcq@Vcj@Qkq@_Bcl@_Dgk@wFgr@gJev@aKcp@qJsl@wJwl@{Jqq@iHoi@iFwj@gFu}@qBgv@Acl@j@gm@bCio@xCee@nGiq@`Iqn@dJsk@~Gs]rLig@dK{[pF{PvM{\\lOu^dWqg@`Xed@h[wf@|RqXb}@m|A~L_VdTge@|K{XfMg`@pQko@jH_^lNsu@jJqq@dGgo@bFgn@`GceAhNibCbDek@fJk}AtFkaAnHaqAh^ckGfNydCvN_|B`@qFvCga@tGwz@pF{r@dBwQvEkk@jD}`@jImaAhYgbDnBaWbBgX`@sWF_Yw@kSkBqQmCmQ_FuTuH}TsJmR_OqTqRgQmQsJ{NiF}L_CoJy@mNMwP|@cJvB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 53 miles.","announcement":"Continue for 53 miles.","distanceAlongGeometry":84826.945},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on A 9.","announcement":"In 2 miles, Keep left to stay on A 9.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on A 9.","announcement":"In a half mile, Keep left to stay on A 9.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on A 9, E 15.","announcement":"Keep left to stay on A 9, E 15.","distanceAlongGeometry":232.222}],"intersections":[{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[168,346,359],"duration":15.844,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":1,"weight":15.824,"geometry_index":17051,"location":[2.987641,43.153507]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,206],"duration":7.523,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":4,"out":0,"weight":7.523,"geometry_index":17060,"location":[2.987623,43.156755]},{"mapbox_streets_v8":{"class":"motorway"},"location":[2.988724,43.158212],"geometry_index":17062,"admin_index":4,"weight":12.203,"is_urban":false,"turn_weight":7.2,"duration":5.016,"bearings":[32,204,213],"out":0,"in":1,"turn_duration":0.012,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":3.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.41,"geometry_index":17065,"location":[2.989635,43.159189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":7.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.352,"geometry_index":17068,"location":[2.990287,43.159838]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":2.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.727,"geometry_index":17071,"location":[2.991743,43.161213]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":5.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.902,"geometry_index":17072,"location":[2.992331,43.161694]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,223],"duration":7.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.039,"geometry_index":17075,"location":[2.993631,43.162673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,229],"duration":15.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.496,"geometry_index":17078,"location":[2.995519,43.163917]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":1.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.559,"geometry_index":17084,"location":[2.999661,43.165831]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.191,"geometry_index":17085,"location":[3.000084,43.165974]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.001546,43.166407],"geometry_index":17086,"admin_index":4,"weight":11.691,"is_urban":false,"turn_weight":1,"duration":10.438,"bearings":[67,232,248],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.609,"geometry_index":17089,"location":[3.004749,43.167367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":14.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.254,"geometry_index":17090,"location":[3.00493,43.16742]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,248],"duration":0.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.449,"geometry_index":17091,"location":[3.009508,43.168774]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,249],"duration":15.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.555,"geometry_index":17092,"location":[3.00966,43.168816]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.195,"geometry_index":17093,"location":[3.014805,43.170346]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,247],"duration":34.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.426,"geometry_index":17094,"location":[3.01521,43.170469]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.945,"geometry_index":17097,"location":[3.02743,43.174097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":1.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.621,"geometry_index":17098,"location":[3.028114,43.174302]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":2.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.172,"geometry_index":17099,"location":[3.028681,43.174477]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":2.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.496,"geometry_index":17100,"location":[3.029442,43.174711]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.030318,43.17498],"geometry_index":17102,"admin_index":4,"weight":9.07,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.309,"bearings":[66,72,247],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[63,222,243],"duration":9.387,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.133,"geometry_index":17105,"location":[3.03358,43.176087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":9.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.625,"geometry_index":17108,"location":[3.036763,43.177351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":1.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.617,"geometry_index":17110,"location":[3.039755,43.178688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,238],"duration":2.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.625,"geometry_index":17111,"location":[3.040312,43.178943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,235],"duration":1.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.078,"geometry_index":17112,"location":[3.04118,43.179381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":3.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.871,"geometry_index":17113,"location":[3.041544,43.179545]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.125,"geometry_index":17114,"location":[3.042522,43.180004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":6.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.566,"geometry_index":17115,"location":[3.043235,43.180338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,239],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.09,"geometry_index":17117,"location":[3.045513,43.181326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,240],"duration":13.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.941,"geometry_index":17118,"location":[3.045899,43.181487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,245],"duration":3.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.117,"geometry_index":17122,"location":[3.050778,43.183273]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":7.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.711,"geometry_index":17123,"location":[3.051937,43.183654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":3.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.008,"geometry_index":17125,"location":[3.054548,43.184535]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":10.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.805,"geometry_index":17126,"location":[3.055687,43.18495]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":17128,"location":[3.05938,43.186433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,239],"duration":27.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.848,"geometry_index":17129,"location":[3.059751,43.186593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":73.625,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.246,"geometry_index":17138,"location":[3.069546,43.191972]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,207],"duration":0.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.672,"geometry_index":17160,"location":[3.089199,43.210974]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,205],"duration":6.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.141,"geometry_index":17161,"location":[3.089318,43.211161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,200],"duration":2.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.16,"geometry_index":17164,"location":[3.090307,43.212961]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,200],"duration":1.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.422,"geometry_index":17165,"location":[3.090626,43.213599]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,199],"duration":1.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.363,"geometry_index":17166,"location":[3.09083,43.21402]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.091028,43.214426],"geometry_index":17168,"admin_index":4,"weight":14.746,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.41,"bearings":[17,66,200],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.093184,43.218895],"geometry_index":17174,"admin_index":4,"weight":6.836,"is_urban":false,"turn_weight":1,"duration":6.492,"bearings":[23,184,203],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,208],"duration":31.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":28.125,"geometry_index":17178,"location":[3.094304,43.220581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.77,"geometry_index":17191,"location":[3.1027,43.22711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":14.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.605,"geometry_index":17194,"location":[3.104869,43.227984]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":35.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.012,"geometry_index":17201,"location":[3.110363,43.229416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,259],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.824,"geometry_index":17209,"location":[3.124352,43.231097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":1.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.582,"geometry_index":17210,"location":[3.124682,43.231151]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":81.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":74.996,"geometry_index":17211,"location":[3.125344,43.231262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":1.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.25,"geometry_index":17234,"location":[3.151092,43.245369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":1.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.309,"geometry_index":17235,"location":[3.151424,43.245683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":9.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.465,"geometry_index":17236,"location":[3.15177,43.246009]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":13.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.18,"geometry_index":17237,"location":[3.15407,43.248158]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":3.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.41,"geometry_index":17239,"location":[3.157377,43.251244]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":10.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.188,"geometry_index":17240,"location":[3.158296,43.252094]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,220],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.535,"geometry_index":17242,"location":[3.160858,43.25439]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,221],"duration":30.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":27.973,"geometry_index":17243,"location":[3.161835,43.255206]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.23,"geometry_index":17250,"location":[3.171383,43.26212]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.359,"geometry_index":17251,"location":[3.171793,43.262425]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.434,"geometry_index":17252,"location":[3.172243,43.262769]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.172717,43.26313],"geometry_index":17253,"admin_index":4,"weight":12.695,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.742,"bearings":[42,69,224],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.176233,43.266214],"geometry_index":17258,"admin_index":4,"weight":7.27,"is_urban":false,"turn_weight":1,"duration":6.797,"bearings":[36,197,218],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":154.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":142.574,"geometry_index":17261,"location":[3.177804,43.267869]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,252],"duration":3.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.938,"geometry_index":17304,"location":[3.215504,43.302247]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.449,"geometry_index":17307,"location":[3.216745,43.302531]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":2.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.703,"geometry_index":17309,"location":[3.217342,43.302653]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.285,"geometry_index":17310,"location":[3.218475,43.302864]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.223,"geometry_index":17311,"location":[3.218595,43.302885]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.395,"geometry_index":17312,"location":[3.219111,43.302976]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.219706,43.303072],"geometry_index":17313,"admin_index":4,"weight":6.688,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.238,"bearings":[79,99,257],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.222535,43.303469],"geometry_index":17315,"admin_index":4,"weight":3.52,"is_urban":false,"turn_weight":0.5,"duration":3.273,"bearings":[80,239,259],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":4.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.316,"geometry_index":17317,"location":[3.223839,43.303635]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.23,"geometry_index":17319,"location":[3.225703,43.30386]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":42.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":38.887,"geometry_index":17320,"location":[3.225799,43.303871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,247],"duration":3.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.414,"geometry_index":17333,"location":[3.242192,43.307005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,246],"duration":14.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.801,"geometry_index":17334,"location":[3.24354,43.30745]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":3.723,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.445,"geometry_index":17339,"location":[3.24881,43.309583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,237],"duration":9.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.926,"geometry_index":17340,"location":[3.250057,43.310164]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":2.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.23,"geometry_index":17342,"location":[3.253126,43.311797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,231],"duration":26.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.059,"geometry_index":17343,"location":[3.253844,43.312222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":2.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.965,"geometry_index":17346,"location":[3.261741,43.317595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":17.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.77,"geometry_index":17348,"location":[3.262525,43.318171]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":3.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":4.211,"geometry_index":17350,"location":[3.267655,43.321824]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":10.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":11.508,"geometry_index":17351,"location":[3.268749,43.322609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":0.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.004,"geometry_index":17352,"location":[3.271762,43.324762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.07,"geometry_index":17353,"location":[3.27202,43.324945]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":9.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":10.449,"geometry_index":17354,"location":[3.272342,43.325174]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":20.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":21.523,"geometry_index":17355,"location":[3.275436,43.327381]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.28181,43.331927],"geometry_index":17356,"admin_index":4,"weight":19.598,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":18.684,"bearings":[46,58,226],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,230],"duration":14.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":14.496,"geometry_index":17360,"location":[3.287182,43.335519]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.291941,43.337756],"geometry_index":17365,"admin_index":4,"weight":6.398,"is_urban":false,"turn_weight":1,"duration":5.41,"bearings":[65,235,240],"out":0,"in":2,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,245],"duration":21.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":21.152,"geometry_index":17367,"location":[3.293892,43.338422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":96.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":89.25,"geometry_index":17375,"location":[3.302043,43.340474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,216],"duration":2.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.051,"geometry_index":17396,"location":[3.33531,43.352964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,216],"duration":9.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.336,"geometry_index":17397,"location":[3.335807,43.353468]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.059,"geometry_index":17400,"location":[3.337927,43.355484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":8.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.75,"geometry_index":17401,"location":[3.338212,43.355733]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,228],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.398,"geometry_index":17407,"location":[3.340911,43.357719]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,231],"duration":1.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.645,"geometry_index":17408,"location":[3.341068,43.357811]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.341683,43.358199],"geometry_index":17409,"admin_index":4,"weight":18.574,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":20.645,"bearings":[51,76,229],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.348815,43.361109],"geometry_index":17421,"admin_index":4,"weight":10.281,"is_urban":false,"turn_weight":1,"duration":10.32,"bearings":[71,229,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,259],"duration":92.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":83.277,"geometry_index":17427,"location":[3.352844,43.361881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":1.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.129,"geometry_index":17457,"location":[3.388967,43.367174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,237],"duration":44.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.758,"geometry_index":17458,"location":[3.389377,43.367369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,243],"duration":1.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.398,"geometry_index":17470,"location":[3.404168,43.374421]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,243],"duration":18.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.91,"geometry_index":17471,"location":[3.404691,43.374613]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,258],"duration":0.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.32,"geometry_index":17481,"location":[3.411917,43.376358]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.492,"geometry_index":17482,"location":[3.412049,43.376376]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.413094,43.376508],"geometry_index":17484,"admin_index":4,"weight":13.586,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.941,"bearings":[81,103,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.418625,43.376777],"geometry_index":17491,"admin_index":4,"weight":9.473,"is_urban":false,"turn_weight":0.5,"duration":9.211,"bearings":[91,249,270],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":38.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.551,"geometry_index":17495,"location":[3.422259,43.376679]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,256],"duration":2.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.289,"geometry_index":17507,"location":[3.437368,43.37717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":11.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.996,"geometry_index":17509,"location":[3.438285,43.377344]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.758,"geometry_index":17513,"location":[3.4427,43.378583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,245],"duration":1.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.652,"geometry_index":17514,"location":[3.44299,43.378682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,244],"duration":1.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.68,"geometry_index":17515,"location":[3.443619,43.378909]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,240],"duration":8.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.855,"geometry_index":17516,"location":[3.444241,43.379166]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,235],"duration":1.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.652,"geometry_index":17519,"location":[3.447086,43.380533]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,233],"duration":8.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.914,"geometry_index":17520,"location":[3.447646,43.380838]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":2.473,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.348,"geometry_index":17523,"location":[3.450242,43.382473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":1.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.469,"geometry_index":17524,"location":[3.45092,43.382982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,224],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":17525,"location":[3.451345,43.383299]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":6.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.984,"geometry_index":17526,"location":[3.451571,43.383478]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.309,"geometry_index":17528,"location":[3.453255,43.384832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":6.918,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.574,"geometry_index":17529,"location":[3.453898,43.385339]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":3.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.855,"geometry_index":17531,"location":[3.455726,43.386818]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":16.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.863,"geometry_index":17532,"location":[3.456515,43.38746]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.805,"geometry_index":17534,"location":[3.460987,43.391043]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,221],"duration":16.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":15.23,"geometry_index":17535,"location":[3.461202,43.391223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":1.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.258,"geometry_index":17542,"location":[3.46583,43.394479]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":1.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.402,"geometry_index":17543,"location":[3.466232,43.394726]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.466684,43.395005],"geometry_index":17544,"admin_index":4,"weight":14.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.617,"bearings":[50,65,230],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.471418,43.397938],"geometry_index":17548,"admin_index":4,"weight":8.996,"is_urban":false,"turn_weight":1,"duration":8.426,"bearings":[49,201,229],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":112.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":103.77,"geometry_index":17552,"location":[3.474278,43.399705]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":33.984,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.582,"geometry_index":17589,"location":[3.518958,43.41518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":45.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.551,"geometry_index":17601,"location":[3.532324,43.420321]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.707,"geometry_index":17616,"location":[3.551634,43.424348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,245],"duration":59.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":53.402,"geometry_index":17617,"location":[3.551902,43.424437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":72.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":66.957,"geometry_index":17643,"location":[3.566576,43.436591]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,257],"duration":5.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.785,"geometry_index":17674,"location":[3.586242,43.450158]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":0.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.152,"geometry_index":17677,"location":[3.588197,43.450416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,260],"duration":27.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":26.137,"geometry_index":17678,"location":[3.588259,43.450424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":1.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.441,"geometry_index":17688,"location":[3.598669,43.451824]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,252],"duration":6.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.469,"geometry_index":17689,"location":[3.599216,43.451952]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.031,"geometry_index":17693,"location":[3.601604,43.452653]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,245],"duration":69.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":64.449,"geometry_index":17694,"location":[3.601613,43.452656]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,254],"duration":1.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.031,"geometry_index":17725,"location":[3.624382,43.461866]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":5.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.688,"geometry_index":17726,"location":[3.624796,43.461962]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.707,"geometry_index":17729,"location":[3.62668,43.462452]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":1.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.445,"geometry_index":17730,"location":[3.627357,43.462661]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.627927,43.462837],"geometry_index":17731,"admin_index":4,"weight":14.594,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.234,"bearings":[65,84,247],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.63325,43.465252],"geometry_index":17737,"admin_index":4,"weight":9.41,"is_urban":false,"turn_weight":1,"duration":9.629,"bearings":[50,211,232],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,230],"duration":93.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":84.328,"geometry_index":17739,"location":[3.636,43.466936]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":0.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.918,"geometry_index":17768,"location":[3.665795,43.479558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":19.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.953,"geometry_index":17769,"location":[3.666163,43.479577]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":1.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.043,"geometry_index":17775,"location":[3.673635,43.479876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":3.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.668,"geometry_index":17776,"location":[3.67404,43.479889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,267],"duration":9.934,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.668,"geometry_index":17777,"location":[3.675456,43.479946]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.965,"geometry_index":17781,"location":[3.67918,43.480248]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":3.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.156,"geometry_index":17782,"location":[3.679547,43.480294]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.680729,43.48048],"geometry_index":17783,"admin_index":4,"weight":7.398,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":7.422,"bearings":[75,101,258],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,252],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.238,"geometry_index":17787,"location":[3.683354,43.481059]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.685452,43.481661],"geometry_index":17790,"admin_index":4,"weight":15.465,"is_urban":false,"turn_weight":0.5,"duration":14.973,"bearings":[68,221,247],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":31.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":31.188,"geometry_index":17793,"location":[3.688773,43.482663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,252],"duration":2.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.273,"geometry_index":17800,"location":[3.695943,43.484704]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":9.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.707,"geometry_index":17801,"location":[3.69678,43.484876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":2.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.984,"geometry_index":17803,"location":[3.700146,43.485489]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,257],"duration":3.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.348,"geometry_index":17804,"location":[3.700841,43.485604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":32.34,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":30.715,"geometry_index":17805,"location":[3.702071,43.485828]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":1.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.047,"geometry_index":17814,"location":[3.713062,43.48896]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,236],"duration":4.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.445,"geometry_index":17815,"location":[3.713407,43.489129]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":1.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.617,"geometry_index":17817,"location":[3.71482,43.489899]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,230],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.305,"geometry_index":17818,"location":[3.715316,43.490201]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.715702,43.490451],"geometry_index":17819,"admin_index":4,"weight":13.926,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":15.074,"bearings":[47,70,228],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.719511,43.49351],"geometry_index":17825,"admin_index":4,"weight":8.656,"is_urban":false,"turn_weight":1,"duration":8.285,"bearings":[37,187,217],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":139.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":125.777,"geometry_index":17826,"location":[3.721529,43.495432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,235],"duration":1.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.07,"geometry_index":17862,"location":[3.761703,43.523556]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":90.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":81.414,"geometry_index":17863,"location":[3.762095,43.52375]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,225],"duration":0.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.203,"geometry_index":17887,"location":[3.788378,43.541816]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":2.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.016,"geometry_index":17888,"location":[3.788445,43.541862]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[3.789059,43.542288],"geometry_index":17889,"admin_index":4,"weight":15.859,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":16.715,"bearings":[46,76,226],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":0.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.602,"geometry_index":17892,"location":[3.793754,43.545543]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":18.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.277,"geometry_index":17893,"location":[3.793935,43.545671]},{"mapbox_streets_v8":{"class":"motorway"},"location":[3.799511,43.549022],"geometry_index":17901,"admin_index":4,"weight":6.277,"is_urban":false,"turn_weight":1,"duration":5.562,"bearings":[60,234,239],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,246],"duration":1.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.355,"geometry_index":17905,"location":[3.801494,43.549741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":1.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":17906,"location":[3.80202,43.549891]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,250],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.824,"geometry_index":17907,"location":[3.802682,43.550065]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,251],"duration":1.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.801,"geometry_index":17908,"location":[3.803002,43.550143]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,254],"duration":19.262,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.809,"geometry_index":17909,"location":[3.803704,43.550287]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,267],"duration":20.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.582,"geometry_index":17921,"location":[3.81107,43.550849]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":3.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.391,"geometry_index":17931,"location":[3.818361,43.552588]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":3.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.938,"geometry_index":17934,"location":[3.819534,43.553165]},{"bearings":[49,234],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"geometry_index":17935,"location":[3.820511,43.553673]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 9","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 9"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E15","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 15"}],"type":"fork","modifier":"left","text":"A 9 / E 15"},"distanceAlongGeometry":84850.281}],"destinations":"Lyon, Montpellier, Béziers, Narbonne","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 9/E 15/E 80/La Languedocienne toward Lyon/Montpellier/Béziers/Narbonne.","modifier":"slight left","bearing_after":346,"bearing_before":348,"location":[2.987641,43.153507]},"speedLimitSign":"vienna","name":"La Languedocienne","weight_typical":2491.973,"duration_typical":2649.641,"duration":2649.641,"distance":84850.281,"driving_side":"right","weight":2491.973,"mode":"driving","ref":"A 9; E 15; E 80","geometry":"ee{hqAqfjuDaDh@aOdEom@xTmX|FaRbAePo@gQoCaT{Gka@kVe}@kr@{[mPeJwHsRoOg]u]qIwI_N{M_NcNm]y[s]e`@{W_\\a]wc@cOyS{Xsb@eRyWaX{b@oVec@e\\}l@qa@o{@uV{m@yQkg@mNkc@qLoa@qLgg@}GmYaZkzAgGoYaX_tAuYuwAiBiJssAc}GsAoHs~Aq`IuFiXkhAutF{Mer@oiC{qMyKwi@}Imb@sMqn@_Hg\\yFoX{e@qtB}W}fAkDkMaSgt@sZ{dAi^yjAix@o`CgYox@}Nya@kZgu@gIwUu[c|@{Sqk@eXsy@qc@wrAaIcWyd@i~AcRcs@{WmdAy\\awAyVmgAcZsqA}ZqoA}XefAyw@}pC{b@{sA_IeVmOwa@yZ{|@qf@}oAqUwk@eQ{a@}h@clA{m@mqA_{@oaBy}@}_BkU{_@cu@mkAa|@ypAy_A_pAsqAs_BOQwsAoyAar@cs@}XkX_ZiYi~@ky@sn@ij@wpBoeBcu@{q@{t@ss@w`AgaA_~@qbAisAivAwf@{c@kf@m`@_h@i_@on@g`@uJmFo^yQsl@iXkb@uP{f@}RiYwK}SeImCeAgJwCosAce@miA}`@ou@_[{a@sQwRiJgVmLs^kS_YgQoW}Pyf@o]eu@ao@kY{X_QqQik@yn@uf@uo@qa@cm@ub@ir@_]so@uSga@oSad@_Ykp@gQoe@_FwMsUot@_XibAqG_VuTe`AoNyu@gQufAaFw^gMugAeCgWcC{VkFcn@qGc`A{ImyAkUikEc^gzGsLioB_F{n@kBsS}Ekh@{@eJiQmbBuOslAiQwhAaU}nA{UojAwT{`AkUo{@_Uww@kUsu@oTsq@}JoXcKwXil@mxAcj@glAwk@miAoY}h@q]al@e|@erA{gAcxAmx@i`Ay}B_hC}iCmtCsRwSkSsTieCwnCy{B{cCacAyhAct@mx@ctAm{Aky@ubA_r@a|@iv@qcAUY{r@aeA}uA{yBwxBwnDw}@wvAys@}eAaRsXoTc[qUs\\cCaDee@eo@ak@oq@s[_`@wlA_rAoZiZuUuUgt@eo@{UaScn@yg@{pAq_AaoAey@mgAon@ufAej@yjA_k@{iA{g@yvC_pAsYwLuo@uWojAyf@ojAuh@qjAij@waAoh@_Q_KsT}Mg}@sj@uo@gc@{dAmx@yy@ir@_gAidAugAikAgrAe`Baq@_~@ye@qr@gSi\\gc@er@mk@gcA_j@geAga@a{@ui@}nAsPsa@wW}q@gf@orAik@ygB{d@saBqh@qwB_Pau@_Oyu@{Ngw@qMkw@uNy_AuGke@oC}RqCgReC_QmBiReLyeAi@oFuDg_@_Eed@eHi}@sNoqBoEyp@{Bu^qCad@oHmnAU_EoNseCwFy`AcL_cBqFqs@aLwuA_I}y@yM_rA}QsuAaNmcAqPkfA_Pa~@s[obB{O{t@yZgsAiSgw@eb@u{A_\\ydA_Vwt@yX{w@ic@}lA}b@qdAcaAgyBqY{k@kpC}|Ek}AcfCa_BogCcKsO{Vk_@oiA}gByxCuvEap@kcAqeCi{DmJcOiMcS}hCk`Ec{GkmK_vAmyB_|@szAul@ieAy]kr@uZis@iYor@wUon@cXyw@}d@ixAyRux@yTg_AsLgj@iF_XsHgc@sKql@iGs`@g_@uaCsOmfA{ZszBqeA}kHwMg~@qv@erFeLwx@o`A{|Gar@yxEeQedAgSilA_\\mxA{Rwu@{Wc|@gc@mmAoa@acAmr@{tAuy@qtAwl@qw@}j@as@aOeQma@ac@wi@}j@_a@y`@o^a^a~@y_A}i@el@_SoUqNyP_Zw`@mYy`@IMe^ui@{^sm@iFkJwDyHgWme@cLsUcD}GgNe]yYor@}W}u@wPgg@yOsj@{Ua_AiKic@yH__@cJyf@}DoTwFa^gEcY_Imm@sEcc@eGwm@mHi`AgEcv@{Bug@aCo{@}Ae{@{@{x@mAcoCk@qhBcBkrDEkLe@inA_BgwCwB_qBmBy{@cCg|@cEkbAuHivAgI}gAyGqu@qDy\\wLieAwOelAiQ_hAyNqz@cTwfAk]y{Awd@ebB_b@gsAyZi~@oQag@qLy\\eKsXeIiSkMy\\_{@guBuiB{zE{}@i|BuOk`@ig@{qAui@{uAc`@_hAoOue@oSeq@yO{l@_Ku_@cT}~@qNes@wLep@qG{a@wIak@yDoWiFoc@aKo|@wFel@kEuf@c@gGkC_^{Bia@{Bia@wA}c@iBuh@wAwo@aBw_A]e_ACav@Lad@r@a|@t@yy@jAeeAfA{eAjCa~BxAqhC^uvAQ}bBiAegAmBoeAgCmv@}D}x@qF}y@qFqs@oHst@mCyYmEo]oHmk@eKkp@iUioAm`@ydBeEcQeMif@aO{e@cW{v@yd@ikAoVsl@aR_b@ir@arAw`@av@cPcWy^ki@yRqYeJcMmMsQeeAsuAu^eg@uOqSwjAu|Acg@ip@mdD_nEoy@ogAgJmLgc@_o@k[kd@wRiZo\\wg@w]ym@ea@up@uWif@mNcXmPg[mYkj@wmAe_CeYyi@}r@opAeTe`@e`@au@yUwe@g`@ws@un@ujAe{@{cB}g@oaAus@ewA{g@ojAoR}d@}_@cfAy]mgAw[glAmYolAoSodA{L{o@_Jck@yNmcAwN_nAmGmg@iIox@}LmsAsn@ctGkR}aBaMe~@ySawAiWyaB}Gk]cRccAaXgsAqWonAwUkhAwXebA{X_dAi]ooAsq@_uByAoEiT}o@_\\a_A_]q`Ama@ujA{]ybAqx@q{Bas@{nBek@sfBmP_h@uWs_A{Tq}@iU_hAgNct@wKgm@gMiu@aGs_@aMux@kUyuAm^yaCqLkv@uKew@aKq{@sJo`AaHyz@wXgyCy]saEcJgz@oGok@yKyw@iQ_eAoPuu@qDwOsM{f@uUyu@}Umq@w|@q_Cg\\kx@wW}l@mW}g@_Wgd@ob@kp@a[oc@wb@sg@c^u^o]{[iNyKuXsSq]uU}_@iWcPkJ}]iSmk@i\\u`@cUs\\uS}^iVy[qTc]sXaVcSwTqRaQoOmXcXaQuPgW_Ycj@yk@ac@qd@_m@{n@ka@gc@smAsnAsLqMkiAanAycA_iAsWcYe]w`@sZe`@mXm^uUs\\iTm]uVmd@mOq[kSkd@eRqe@qY{|@_Xi~@_Mkj@yNwv@uFu^}Geg@oGok@iFij@m@oG_F{w@uFyw@O{BoEqx@yEe|@eImvAgG}fA{M{dCqHydAuH{{@{Dq_@}Gmk@yE}]_Gea@_FeZgJyh@aPkv@oG{WEQ_GkVQq@wP_p@iJo[cOef@{Pcg@s\\i{@_Umg@}MsYa`@iw@_d@cy@ak@mbAy[sm@}Vwh@iVkl@{JcXyM{_@cU_t@qT}w@kY{dAwJg_@wD_O}Oqn@kNil@iLcj@mMqp@_Kkl@sJmp@wKkw@kJkv@eXcwB_E{XcLqv@wJci@wDaSaLii@_Jsb@kOkn@yVy|@e\\ebAcUil@mYus@_`@iy@ma@ex@yeAuqBefAqqBk`@av@c`AygBy[kn@qc@k}@mb@{|@ae@gbAw}@cqBs_@e}@q]_z@kv@gmBcScg@cVcm@ke@}nAk\\ey@{V{r@eYu|@{Ue{@iQat@_N_o@cIwc@_Kym@cMc|@oJax@aJu`AiEyk@wFubA}Co{@}Bu~@e@_VoA}`A{Aq~@cBu{@y@iv@qAm_AyDa|CYiXqBowAiAcr@uFihBsDaq@gBgY{A}UsJ{hAmBiQiFyd@kIol@aNm}@oRqdAkMup@wB{J{UelAwN}r@_WmmAw_@}hBKi@cd@}zB{Osy@yG_^aO{|@qNm`AwIis@eTsmBcPwbBeFmj@_M{kAiXooCkOkrAmSc}AgXwyAwVyhAsYogAmRam@iNcb@gVum@qIqTgc@ecA{JcS{Q_^sNcWm]sl@uZif@ak@_v@sd@{i@o]s`@{SsTcwBc}BicAmfAofCkwC}Xu^{c@gm@}t@ggA{a@}q@c^mk@qL_TaHiM_X{e@m[qk@a`@ov@wl@slAyz@mfBoa@oz@qlAueC}qAukCeu@osAol@{~@o{@wkAym@{v@ir@{t@}mCadCelAkiAk`@q`@ke@gj@s`@gh@{h@yu@mf@ky@i^{o@ol@mpAu]q{@q[ky@}iAczCai@mvAij@}tAcKoWe}@wzBa|@oqBgl@wpAstAawCul@yjAqbAynB_w@g{AyaA{kBkh@saAs\\wk@{^cm@{d@yp@u`@og@u_@wc@ck@mm@ij@{j@wsA}rAi[k[o[k^uh@cm@an@{y@so@m`A}u@kmAoIoM{AeCsYke@wu@umAayA_`Csy@wtA_GiJaoAasBsa@es@}]cr@uQu`@wH{Q_JeUeKcYeKg[yM{b@}HoZaIg\\cIi^kH{_@{Ikh@{C_S_H{j@eBiQkEkc@wCub@}Bsa@kBia@eAe]yAcw@w@}g@g@aj@{@in@u@}d@}@ol@yBao@}Bof@qC_a@sFuj@qF}c@gK}q@kOiz@yMkj@q[unAeHeSyEaN{FgPkT_h@w^a|@kg@w_Aqi@}z@m_@og@{u@}w@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 33 miles.","announcement":"Continue for 33 miles.","distanceAlongGeometry":53047.344},{"ssmlAnnouncement":"In 2 miles, Take exit 25.","announcement":"In 2 miles, Take exit 25.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Take exit 25.","announcement":"In a half mile, Take exit 25.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take exit 25 onto A 54 toward Nîmes-Centre, Garons.","announcement":"Take exit 25 onto A 54 toward Nîmes-Centre, Garons.","distanceAlongGeometry":244.444}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[29,37,217],"duration":6.707,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.508,"geometry_index":17939,"location":[3.824065,43.556397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":45.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.949,"geometry_index":17941,"location":[3.825368,43.557968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":55.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":59.703,"geometry_index":17956,"location":[3.838615,43.565896]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.844,"geometry_index":17972,"location":[3.858699,43.570316]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,263],"duration":8.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.867,"geometry_index":17973,"location":[3.858998,43.570343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":2.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.887,"geometry_index":17977,"location":[3.862116,43.570456]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,271],"duration":2.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.672,"geometry_index":17979,"location":[3.863132,43.570441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.73,"geometry_index":17980,"location":[3.864071,43.570415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":7.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":8.02,"geometry_index":17981,"location":[3.864327,43.570407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,268],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.906,"geometry_index":17983,"location":[3.867173,43.570414]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":59.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":65.074,"geometry_index":17984,"location":[3.868453,43.570508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":0.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.629,"geometry_index":17996,"location":[3.886638,43.577934]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":17.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.477,"geometry_index":17997,"location":[3.886797,43.578018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.586,"geometry_index":17999,"location":[3.892031,43.580876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":12.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":14.254,"geometry_index":18000,"location":[3.892178,43.580959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":0.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":0.816,"geometry_index":18003,"location":[3.895825,43.582918]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":3.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":3.512,"geometry_index":18004,"location":[3.896034,43.58303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":2.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":2.586,"geometry_index":18005,"location":[3.896945,43.58352]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":30,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":33.75,"geometry_index":18006,"location":[3.897609,43.583878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,236],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.582,"geometry_index":18014,"location":[3.906548,43.588326]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":17.973,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":20.211,"geometry_index":18015,"location":[3.906978,43.58852]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,238],"duration":16.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":18.469,"geometry_index":18016,"location":[3.912492,43.591011]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":17.867,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":19.648,"geometry_index":18019,"location":[3.917661,43.593238]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":1.141,"geometry_index":18021,"location":[3.923175,43.595591]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,241],"duration":80.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":82.727,"geometry_index":18022,"location":[3.923504,43.595724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":34.02,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":32.312,"geometry_index":18039,"location":[3.946086,43.60846]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":2.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.344,"geometry_index":18048,"location":[3.950835,43.616644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":10.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.77,"geometry_index":18050,"location":[3.951344,43.617174]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.148,"geometry_index":18053,"location":[3.953752,43.619222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,223],"duration":23.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":22.375,"geometry_index":18054,"location":[3.95431,43.619662]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,226],"duration":1.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.383,"geometry_index":18061,"location":[3.96034,43.624025]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":54.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":51.762,"geometry_index":18062,"location":[3.960701,43.624298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,196],"duration":0.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.945,"geometry_index":18072,"location":[3.971027,43.636053]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,195],"duration":84.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":84.285,"geometry_index":18073,"location":[3.971116,43.636299]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":97.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":97.645,"geometry_index":18095,"location":[3.988492,43.651759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":9.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":8.973,"geometry_index":18112,"location":[4.010315,43.669217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,231],"duration":10.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.676,"geometry_index":18115,"location":[4.012646,43.670673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":3.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.871,"geometry_index":18119,"location":[4.015618,43.672214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,238],"duration":16.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.391,"geometry_index":18121,"location":[4.01674,43.672722]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.021774,43.67452],"geometry_index":18126,"admin_index":4,"weight":1.344,"is_urban":false,"turn_weight":1,"duration":0.375,"bearings":[65,224,248],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,245],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.793,"geometry_index":18127,"location":[4.021886,43.674558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,247],"duration":19.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.262,"geometry_index":18128,"location":[4.022434,43.674724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,251],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.836,"geometry_index":18130,"location":[4.024935,43.675366]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":57.215,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":54.348,"geometry_index":18131,"location":[4.02532,43.675483]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,247],"duration":8.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":7.961,"geometry_index":18135,"location":[4.035299,43.678571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":14.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.969,"geometry_index":18139,"location":[4.038163,43.67956]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":0.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.945,"geometry_index":18149,"location":[4.043753,43.682076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,236],"duration":13.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":12.117,"geometry_index":18150,"location":[4.044053,43.682222]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,235],"duration":67.289,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.223,"geometry_index":18154,"location":[4.048017,43.684275]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.633,"geometry_index":18181,"location":[4.071188,43.690812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":59.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":55.234,"geometry_index":18182,"location":[4.071419,43.690867]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,262],"duration":1.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.09,"geometry_index":18203,"location":[4.092433,43.696481]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":4.965,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.59,"geometry_index":18204,"location":[4.092863,43.696515]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":1.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.035,"geometry_index":18206,"location":[4.094619,43.696628]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,267],"duration":50.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":47.109,"geometry_index":18207,"location":[4.095029,43.696644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":0.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.766,"geometry_index":18230,"location":[4.113044,43.700462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":3.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.176,"geometry_index":18231,"location":[4.113284,43.700601]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.114269,43.701202],"geometry_index":18233,"admin_index":4,"weight":11.262,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":12.195,"bearings":[47,68,229],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[43,199,223],"duration":9.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.012,"geometry_index":18237,"location":[4.11755,43.703558]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,223],"duration":1.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.055,"geometry_index":18238,"location":[4.12004,43.7055]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":19.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.418,"geometry_index":18239,"location":[4.120326,43.70571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":0.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.41,"geometry_index":18246,"location":[4.126854,43.710118]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.742,"geometry_index":18247,"location":[4.127004,43.710209]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.127652,43.710601],"geometry_index":18248,"admin_index":4,"weight":24.359,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":26.352,"bearings":[48,72,230],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.135148,43.715187],"geometry_index":18253,"admin_index":4,"weight":10.262,"is_urban":false,"turn_weight":1,"duration":10.02,"bearings":[50,203,230],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":1.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.152,"geometry_index":18255,"location":[4.137915,43.716883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":36.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":34.016,"geometry_index":18256,"location":[4.138262,43.717095]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,246],"duration":6.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.57,"geometry_index":18265,"location":[4.149332,43.7227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":14.535,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":13.809,"geometry_index":18267,"location":[4.151584,43.723314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,262],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.254,"geometry_index":18272,"location":[4.156875,43.724156]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,264],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.918,"geometry_index":18273,"location":[4.157367,43.724193]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,267],"duration":17.039,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.184,"geometry_index":18275,"location":[4.158516,43.724254]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,269],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.203,"geometry_index":18279,"location":[4.164862,43.724352]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":23.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.211,"geometry_index":18280,"location":[4.165316,43.724362]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,259],"duration":2.207,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.152,"geometry_index":18287,"location":[4.173958,43.725113]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":1.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.457,"geometry_index":18288,"location":[4.174744,43.72523]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[76,87,258],"duration":6.887,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.695,"geometry_index":18289,"location":[4.175274,43.725309]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,256],"duration":4.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.16,"geometry_index":18290,"location":[4.177758,43.725751]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,254],"duration":3.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.184,"geometry_index":18291,"location":[4.179287,43.726066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":2.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.309,"geometry_index":18294,"location":[4.180444,43.726338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,251],"duration":4.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.387,"geometry_index":18295,"location":[4.181274,43.726546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":10.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.141,"geometry_index":18296,"location":[4.182856,43.726954]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.18636,43.728142],"geometry_index":18299,"admin_index":4,"weight":7.867,"is_urban":false,"turn_weight":0.75,"duration":7.332,"bearings":[56,235,243],"out":0,"in":2,"turn_duration":0.033,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,231],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.398,"geometry_index":18303,"location":[4.188605,43.729322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":47.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.031,"geometry_index":18304,"location":[4.188996,43.729583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,200],"duration":0.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.824,"geometry_index":18322,"location":[4.195535,43.738938]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":47.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.5,"geometry_index":18323,"location":[4.195646,43.73916]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,239],"duration":2.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.91,"geometry_index":18340,"location":[4.20779,43.748911]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,242],"duration":0.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.648,"geometry_index":18341,"location":[4.208464,43.749173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,244],"duration":2.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.465,"geometry_index":18342,"location":[4.208694,43.749254]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.209605,43.749551],"geometry_index":18343,"admin_index":4,"weight":0.348,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.375,"bearings":[67,101,246],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":11.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":10.48,"geometry_index":18344,"location":[4.20973,43.749589]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.213632,43.75053],"geometry_index":18349,"admin_index":4,"weight":13.512,"is_urban":false,"turn_weight":1,"duration":13.535,"bearings":[77,229,255],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,263],"duration":128.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":118.691,"geometry_index":18353,"location":[4.216855,43.750942]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,261],"duration":20.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":19.445,"geometry_index":18378,"location":[4.247512,43.748479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,240],"duration":17.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":16.223,"geometry_index":18386,"location":[4.252117,43.749742]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,227],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.371,"geometry_index":18392,"location":[4.255502,43.75157]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,218],"duration":63.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":60.777,"geometry_index":18396,"location":[4.257118,43.752898]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":83.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":79.688,"geometry_index":18406,"location":[4.265435,43.762311]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":6.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.156,"geometry_index":18423,"location":[4.27977,43.772084]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,228],"duration":19.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.391,"geometry_index":18426,"location":[4.281657,43.773225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,216],"duration":49.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":45.953,"geometry_index":18432,"location":[4.285702,43.776594]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,228],"duration":2.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.395,"geometry_index":18448,"location":[4.295491,43.785147]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,227],"duration":0.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.293,"geometry_index":18449,"location":[4.296063,43.785537]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.296119,43.785575],"geometry_index":18450,"admin_index":4,"weight":13.566,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":14.301,"bearings":[46,84,227],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,220],"duration":9.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.121,"geometry_index":18454,"location":[4.298124,43.787141]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.299329,43.78828],"geometry_index":18456,"admin_index":4,"weight":11.363,"is_urban":false,"turn_weight":1,"duration":10.914,"bearings":[36,199,217],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,216],"duration":64.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":62.543,"geometry_index":18459,"location":[4.301543,43.790453]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":23.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":24.367,"geometry_index":18481,"location":[4.315728,43.802063]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,256],"duration":47.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":51.516,"geometry_index":18485,"location":[4.320338,43.80295]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":29.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"weight":32.039,"geometry_index":18496,"location":[4.332383,43.80594]},{"bearings":[66,246],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":4,"out":0,"geometry_index":18502,"location":[4.339395,43.80832]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Nîmes-Centre"},{"type":"text","text":"/"},{"type":"text","text":"Garons"}],"type":"off ramp","modifier":"right","text":"Nîmes-Centre / Garons"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"25"},{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 54","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 54"}],"type":"off ramp","modifier":"right","text":"Exit 25 A 54"},"distanceAlongGeometry":53084.012},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"slight right","active":true,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"Nîmes-Centre"},{"type":"text","text":"/"},{"type":"text","text":"Garons"}],"type":"off ramp","modifier":"right","text":"Nîmes-Centre / Garons"},"primary":{"components":[{"type":"exit","text":"Exit"},{"type":"exit-number","text":"25"},{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 54","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 54"}],"type":"off ramp","modifier":"right","text":"Exit 25 A 54"},"distanceAlongGeometry":3218.688}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on A 9/E 15/E 80/La Languedocienne.","modifier":"slight left","bearing_after":29,"bearing_before":37,"location":[3.824065,43.556397]},"speedLimitSign":"vienna","name":"La Languedocienne","weight_typical":1989.98,"duration_typical":2025.402,"duration":2025.402,"distance":53084.012,"driving_side":"right","weight":1989.98,"mode":"driving","ref":"A 9; E 15; E 80","geometry":"yanarAa{khFgf@}\\}y@or@k^mZwj@}k@}UmZaRyUmZwa@}l@_gA{hAmpBkbAmeBme@_cAqa@}cA{[{aAcGsTqQqp@gX}jA}Hw^wKyg@eIo_@oYczAu\\ukBmSmtAid@}jDqF_b@{QqsA_e@umDyUwgBcOihAqJs|@aHox@eEum@qB}XsDu{@u@uQwAub@eByaAg@seABwTTyk@FuQr@uy@N_On@mqA}@m~A{D_oAmB{i@}F_y@qKckAaUsaBoWstA{Okq@mEcRcVyz@qX{y@sxBu`FepCoeGyu@}aBgD}HifAm`CijBudEeDeHesAy{CgIaR_[as@_FaLs]}w@kUoh@yGmO_|@mpB_o@y|AsZ}s@}z@g{Bg]{aA{W}u@oP_c@cK{YuzCswIqkAsoDmHaUet@k{BifCkzHwJg\\iGqSmkAqpDon@imBmsAwhEeo@c}Bu_AypDqWkw@{Qkj@s\\wy@qt@y{A{t@ckAgkAobBsh@gl@yi@yh@_f@w`@kg@g_@iHoE{k@i^o[{RqtAgl@yvA}g@awAkf@weAee@sr@m_@cj@{^qS}Pob@}]{N}LgP{Pia@ib@wr@w|@}h@mt@oZ{a@qg@ox@{hA_fBaN}RuNaTe^sh@{Wg`@mfAocBaPqUwdC{xDij@mp@cuBc}B{]i]iw@}s@_r@ye@idAwp@saAch@{`As]obBkg@kNqDwwAy_@sp@mV}o@eYu]uRs`Awi@aoA{_A{k@mg@{i@gl@}`@ke@cq@kz@mT{[eReZso@cgAkPyYg`@yw@kv@y_Biy@maBgq@csAg[_q@av@sxA}EgJuc@wq@cRgXoV}]gUs_@{Vaf@cbDwoGsx@kqAgWo^_`AuqAik@cp@eYk\\ar@}s@}pCkvC_dBogBo}B{aCwv@w}@ciAkyAobAm~AwHyLyl@ggAmb@sz@ac@a`Ae\\gw@gUel@yGgR}J_YyRck@qScp@gX{~@c[smAqXsmA{Kkk@kA_FkIga@kPa_AwUg{AiFaW}x@wxDcp@y}Coi@ekCmj@}iCaX}jAoL_f@mToz@y@qCuSet@aJo\\_Ke[yTwp@yTon@sQ}e@gQ}d@IUoUej@eIoScHwQqk@_tAw]ez@y]wz@eUyj@sLaYs_@abAcLuZ{Qcg@gQih@kOme@qM}a@_Nwd@oMwd@yLue@cM{f@qLwg@gKgf@sHq^iNiu@{S_oAoF}`@qGqd@oHyg@oFed@cNilAw_@usDwMopAoG_p@sYoiCwMkcAoEwZmBmMgEwXsKeo@yMut@aWisAaYisAaXypAcScaAeWkmAiIqa@{Jaf@ed@gwBil@esC}K_k@mRadAuJcl@qIyl@kJuy@uI{y@{Ekk@wDum@uBcc@cA{YkCay@uAur@_@sXgB_fA_AqeAw@gp@gAsv@oDozAyEgoAiCif@sCic@aFyk@wEif@kIav@}Lkz@cIwf@sIqe@_Lwg@iLkg@eJw]iWi_AkRil@}Mi_@}Vyn@qUci@sEoJuG_NgU{c@iNuWc`@up@ku@alA_d@}o@wUk\\kxBszCcL{Poa@um@an@o~@S[co@eeAoUg`@}nAm{Bwi@adAuDkHoWog@w\\im@ccAaqBiyAsrCs{AavCyDmHudAepBic@wz@gLuTwrCupFkc@c}@cf@}gAgW}o@aXov@aWcx@sPql@qZkpAoGsYuUwmAuN_}@cHuh@_Jes@{JoeAsLmaB_F{bAiAw]_Bon@YiW_Bo|Ao@{iBYcnBYctASk[cCa_BoDq}A_EqkAuBkj@oHw|AuF_}@mIyhAiFcp@}Cc`@sZgzCuRq~AkDcRiF}`@iCgR_L{r@oX{aB{Lus@mIs_@}p@udCkMw\\yMa\\oUej@aUie@iOmWaN{TqQmYmSuXg\\wa@sTkWyWcX{_@w]sa@yZac@kY_f@iX{i@mUqh@wQem@wQcd@gMeu@iUa^uLs]cNw[{M{L}Ea{@wb@cc@qWs\\cTel@ub@mh@_c@al@{j@gn@eq@sx@mcA_SgYy[og@oUw_@y_@{r@iVqf@_Wuj@c]e_A}e@}qAqYs|@kOci@aDkMqQ}w@kAyFwJwe@yH_b@_H}b@_QaoAgIcu@oGyq@kEgm@gE_t@sCkr@_Buo@s@ii@A}@g@{}@@_{@jAqy@dA_g@fC_s@`GwjAxEot@lFcv@l[kmEhUmfDvWqrDtNasB|M{jBbIijArJouAxFu~@rCwv@xAww@Tow@m@mr@cBct@qI}wA_Iex@cL{z@yIaf@uJ}f@uI__@kMsf@aGuREMsFwQeQ_g@iTmi@yVsi@kVae@}Ru\\kCoEi]wf@gXy\\aV}WuDcEuZyYkh@se@{f@ic@wvB_nBafD{uC{xAglAs\\{Ui]sVad@iYaIcF_fAsk@wt@ib@yl@ca@qs@oq@k]g]cZa_@_\\wf@kr@kqAoa@q`As`@ykAkx@yvCu[ohAw]_bA}\\oy@aT}f@yBuE{M}Xm^et@_Xye@uBuDklA}iBagAerAi`@u_@uQyQmDoDaGcG}sC}dCsS_Ssg@_c@gRcRyQeR}]q_@y^wb@eZu_@gSaXiRmX{Ymd@a[eh@m\\ml@u[yk@ub@av@kWwb@kAoBoTo]{i@wv@o\\ua@_CkCyW}Ykm@ko@sb@kc@ki@}i@yx@az@ixBuzB_tAcmAwy@ip@{i@eb@_~@ap@gd@i\\y]iXsWoUeVkU}TwUsU}X}TkZmWqa@kTs_@uS{a@gR{c@{Uyn@sOmg@cOsi@mJob@{Hw`@sHqc@}Ei]eH_k@uS}nBsQ{dBqMslAkXcbCkJsr@wIiq@cLqu@sDuVaLcu@kT}lAkWkrA_VciAgWiiAqMuk@c^ezAcc@shBsZ{mAyYwnAoKce@oa@mlB"},{"ref":"E 80","mode":"driving","weight":1436.652,"distance":40069.516,"geometry":"oe{prAsx}gGoCkUoFia@cHei@}BoQiBaRoB_\\_@wSI_SLqRl@uS`AyQjBuSxB{QnCcRhNc}@lMi|@|E{^bHak@bHsp@nHsw@xaA{bL`OmeBhCw[bDad@fBcZ~AgWlDew@fB{l@x@_c@h@oa@Jmf@?og@_BojDA_]Pm\\`@g]~@g]z@gSfBe\\jCo]hEub@rGcg@vDqVdGg\\zGc[dFuSrAqFvJo]`Okd@|KeYbPg_@hG_MjOgYjI}NnLsRvLkQjXy_@xY}_@po@e{@`QaU|b@qk@xJoMxT}ZfVo]n]ij@zRe]pMyUpMcWbW}i@nSgf@vQwe@dQmg@pT}r@pSms@rf@seB~Neg@tOof@fQ_g@|Qwe@lM_[rNs[`Qi^|Qs]hIcOHOjJeP|HoMrI}Mv\\_g@bMyP`NaQrN_QdUuXza@kb@rAuAzPePpIoHxHyGl^iZ`]cYtFsE~c@k^`c@o^f\\uYpZmYjQiQvQwRr]qa@nVk[hVg]rS}ZtSa]rPcZhOcYnQe^fLsVfP}_@xNk^jVwp@tdAk{CzHkThKmXtLyYbMcYjOc[|Pe\\zNiVbJuNjNiSdN{QnVkZhPsQdNmNdQ_PxQ{OtQmNbQcMvQgLpQoKhVeMpUmKrOoGfOqFl_@gM~f@sNvf@iM~}@wUvx@yTp\\wJ~\\oKvYaKvZaLxa@}Obb@mQrS{ItSyJp\\cPv\\uQz|@cf@t_G{gD~k@s\\`hAmn@n{BspA`iEmcCte@}Xjf@yYhe@gZrf@w\\t\\yVx[eWtXiUnXqU|FmFvg@}f@nX{XrS}TpSuU`QwSrP}StTgYbTqYzRcYjRmYnQuX`QkYz\\wl@bQy[lPm\\~O_]fO}\\tQsb@|Qse@bKiXjJoXhPig@bN{c@~Lsc@zKmb@lKuc@tJec@jFoVvEgVzK_n@`Kon@dJio@bIsm@dd@guD~A}LdL{x@xHkf@~Hsc@xHk`@pI{_@pKsc@jIq[xJs]xK_^`KmZfNo`@bK}WvK}W~LaY`NuYjX}i@fGgLxKqSzWcf@bn@mhA|e@u}@tQk_@vPa_@bQcb@~M}]tBuFxLy]dLy]nIeYbJw[fLed@nN{m@nGq[|FuZ`Nqx@~Jwt@tIot@dIcv@rHsu@fHet@tU}_CtK{hAhJ}cAtFer@nEsk@jD}h@`Dgh@fD{l@tE_cAvDieAhCmaAvBw`AjAqp@bDoaCt@wh@p@w]v@o\\fAc]|Ak^xB{\\bEeg@tDq\\jE{[rDeVxE{VbGkY~Hu\\|F{SrGyTfKwZxHwSjJ_UbLsV~LsVxM{UzSm\\~Y}b@`OaSfMgOlrAwcBxcAsqAln@yv@lf@sj@n]w^pWeW`XeVbXgUhc@e]lc@a[lf@}Zjg@uYvdBs~@ja@gUdZcQj_@iV~^{Wld@}_@zRcRrQeRhVoXvUaZnScYlRuYnUw`@fSk_@vLqVrL{WbLoXzJoW~Neb@nGqSdDqKjLw`@~GmW~Soz@xj@i`CfMsg@nNoh@fQql@jJ}YdKmYpJyWRi@dPea@vIkSjJuSjJaSfKySlWgf@rW{f@|wA_iClh@q~@nk@{_Abi@gt@t[o`@lZa]|b@mc@tb@_`@zhAw}@trAocA`g@g`@toBw|A`oAw`AhHuF`z@yo@tVyQhUkN|`Bw|@hLgHvKaJrIyGpCeCpJaKl`AcgA`w@mq@zd@aa@``@i_@bQmRzOiRpJyLnZuc@~K{QzJaRnQq^lHuOhHeQlLi\\rH{TlGqTnIy[xEoSbEsR~Fk[|Eg[bEsZtDm]|Cm]jBuYjAiYdCku@t@kw@@iQBmq@a@kxCoBwdNiHeld@?gAFieAn@sm@vA{k@zBwm@tC{j@lCi^`Dy_@jG}n@tIyp@rGgb@hOuz@xWuyApIog@|O_v@`GcZjKqd@lF{TfJ_^nIqZxG{Uj@qBp]kmAnTmu@nOoj@xEeQzHo\\tEmUhF_Zx@{EzCgTjDwXhE{_@lCc\\`Cec@jB_g@xAyi@jAig@~@i_@r@qYfBig@d@iI`B{VlC}V`E{YjDeQtE{QhJm[pH_TdIeTjNyZlLyT~MsS`MwRxIkMvOwT|Zmb@v^_h@hOmS`fAyvAdhAmyAnPqRns@cw@~_@sd@tj@{r@boAsbBdf@ur@zPgWhNcUfHsM|MqVlMyUzDgHzVyd@lJoQnKeSng@e_ArN}V|LuTlgAgtBtKgUdU{f@`DaHv]sw@h]q`Ahc@{sAh]{iAlRer@dBkGxm@mzBlWs~@n|@kaDlnA}mEvi@ipBvScu@xNmi@jWybA`Owq@xJyf@dL{p@lN__AfWqfBpr@s_FxVkgBhPgkAhk@aaE`}AmyKpp@kwE~hEwnZ~jBuvMfuB{_OhJ}o@twAi`KfyAyhKnUcaBjv@sqFb[sxBh\\wyBzYu_BzM}j@nO{m@hTer@~Ucq@|tBsfFjEcLpi@cwA","duration":1476.625,"driving_side":"right","duration_typical":1476.625,"weight_typical":1436.652,"name":"","speedLimitSign":"vienna","maneuver":{"type":"off ramp","instruction":"Take exit 25 onto A 54 toward Nîmes-Centre/Garons/Arles/Aix en Provence.","modifier":"slight right","bearing_after":74,"bearing_before":66,"location":[4.341146,43.808872]},"speedLimitUnit":"km/h","destinations":"A 54: Nîmes-Centre, Garons, Arles, Aix en Provence, Marseille","bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"N 113","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"N 113"},{"type":"delimiter","text":"/"},{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"N 113 / E 80"},"distanceAlongGeometry":40069.516}],"exits":"25","voiceInstructions":[{"ssmlAnnouncement":"Continue for 25 miles.","announcement":"Continue for 25 miles.","distanceAlongGeometry":40032.848},{"ssmlAnnouncement":"In 2 miles, Keep left to stay on E 80.","announcement":"In 2 miles, Keep left to stay on E 80.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":207.778}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["slight right"],"valid_indication":"slight right","valid":true,"active":true}],"location":[4.341146,43.808872],"geometry_index":18503,"admin_index":4,"weight":1.238,"is_urban":true,"mapbox_streets_v8":{"class":"motorway_link"},"duration":1.137,"bearings":[68,74,246],"out":1,"in":2,"turn_duration":0.013,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":1.727,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":1.898,"geometry_index":18504,"location":[4.341504,43.808944]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":49.273,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":true,"admin_index":4,"out":0,"weight":52.969,"geometry_index":18505,"location":[4.342053,43.809064]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.357937,43.807053],"geometry_index":18524,"admin_index":4,"weight":10.906,"is_urban":false,"turn_weight":6,"duration":4.691,"bearings":[102,280,282],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.367,"geometry_index":18525,"location":[4.359576,43.806796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,282],"duration":32.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":33.039,"geometry_index":18526,"location":[4.360036,43.806727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,284],"duration":1.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.898,"geometry_index":18544,"location":[4.372004,43.806088]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,287],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.91,"geometry_index":18545,"location":[4.372646,43.80595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":3.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.77,"geometry_index":18549,"location":[4.374272,43.80547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,301],"duration":3.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.125,"geometry_index":18552,"location":[4.375479,43.804983]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[4.376414,43.804502],"geometry_index":18554,"admin_index":4,"weight":13.074,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":13.418,"bearings":[129,145,306],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.379936,43.801893],"geometry_index":18562,"admin_index":4,"weight":4.73,"is_urban":false,"turn_weight":0.5,"duration":4.348,"bearings":[139,307,318],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[138,318],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.926,"geometry_index":18564,"location":[4.381002,43.801029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[137,318],"duration":3.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.969,"geometry_index":18565,"location":[4.381234,43.80084]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,317],"duration":41.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":40.23,"geometry_index":18567,"location":[4.382169,43.800119]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,320],"duration":4.285,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.055,"geometry_index":18595,"location":[4.396936,43.792169]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,324],"duration":0.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.191,"geometry_index":18597,"location":[4.397913,43.791256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,324],"duration":2.023,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.914,"geometry_index":18598,"location":[4.397956,43.791214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":4.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":4.707,"geometry_index":18600,"location":[4.398383,43.790759]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,328],"duration":9.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.129,"geometry_index":18603,"location":[4.399379,43.789618]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.401341,43.787417],"geometry_index":18608,"admin_index":4,"weight":39.445,"is_urban":false,"turn_weight":1,"duration":40.488,"bearings":[144,321,325],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,313],"duration":70.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":67.391,"geometry_index":18630,"location":[4.413311,43.780251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":2.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.789,"geometry_index":18663,"location":[4.424322,43.762272]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[155,160,335],"duration":12.293,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":11.977,"geometry_index":18664,"location":[4.424796,43.761552]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[155,325,335],"duration":19.902,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.898,"geometry_index":18666,"location":[4.426861,43.758391]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[152,248,333],"duration":9.695,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":9.188,"geometry_index":18670,"location":[4.43026,43.753296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,327],"duration":0.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.523,"geometry_index":18675,"location":[4.432222,43.750907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,326],"duration":62.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":58.113,"geometry_index":18676,"location":[4.432341,43.75078]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.582,"geometry_index":18710,"location":[4.452167,43.741139]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":4.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":3.996,"geometry_index":18711,"location":[4.45239,43.741091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,289],"duration":39.934,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":36.934,"geometry_index":18713,"location":[4.453946,43.740723]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":0.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":0.359,"geometry_index":18736,"location":[4.466358,43.734545]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,304],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.742,"geometry_index":18737,"location":[4.466481,43.734486]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,301],"duration":20.633,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":18.551,"geometry_index":18739,"location":[4.467467,43.734054]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,284],"duration":2.332,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":2.102,"geometry_index":18750,"location":[4.474984,43.732064]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,284],"duration":18.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":17.031,"geometry_index":18751,"location":[4.475835,43.731916]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,280],"duration":1.98,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":1.785,"geometry_index":18758,"location":[4.483047,43.730775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,279],"duration":50.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":44.238,"geometry_index":18759,"location":[4.483781,43.730691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,321],"duration":6.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":5.59,"geometry_index":18790,"location":[4.501872,43.726517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,319],"duration":57.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":50.715,"geometry_index":18791,"location":[4.503484,43.725182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,300],"duration":27.172,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":23.77,"geometry_index":18823,"location":[4.518812,43.710335]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,311],"duration":7.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":4,"out":0,"weight":6.816,"geometry_index":18841,"location":[4.529203,43.705808]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,312],"duration":43.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.711,"geometry_index":18842,"location":[4.531411,43.704385]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,329],"duration":5.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.121,"geometry_index":18853,"location":[4.540578,43.695327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,329],"duration":4.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.383,"geometry_index":18854,"location":[4.54163,43.694046]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[150,329],"duration":28.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.469,"geometry_index":18856,"location":[4.542534,43.692952]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.544394,43.690232],"geometry_index":18861,"admin_index":5,"weight":18.988,"is_urban":false,"toll_collection":{"name":"Péage d'Arles","type":"toll_booth"},"turn_weight":15,"duration":4.43,"bearings":[149,328],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[143,328],"duration":15.59,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.008,"geometry_index":18863,"location":[4.544602,43.689989]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.546756,43.68786],"geometry_index":18866,"admin_index":5,"weight":9.773,"is_urban":false,"turn_weight":1,"duration":9.77,"bearings":[147,322,327],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,319],"duration":8.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.023,"geometry_index":18871,"location":[4.548659,43.68598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,308],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.922,"geometry_index":18876,"location":[4.550625,43.684695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,305],"duration":21.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":19.18,"geometry_index":18877,"location":[4.550916,43.684546]},{"entry":[true,false],"in":1,"bearings":[90,272],"duration":1.027,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.926,"geometry_index":18892,"location":[4.558125,43.682974]},{"entry":[true,false,false],"in":2,"bearings":[90,253,270],"duration":2.133,"turn_weight":0.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.664,"geometry_index":18893,"location":[4.558418,43.682973]},{"entry":[true,false],"in":1,"bearings":[89,270],"duration":6.5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":5.832,"geometry_index":18894,"location":[4.559225,43.682971]},{"entry":[true,false],"in":1,"bearings":[89,269],"duration":86.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":80.07,"geometry_index":18895,"location":[4.561679,43.682988]},{"entry":[true,false],"in":1,"bearings":[107,284],"duration":26.266,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":25.609,"geometry_index":18906,"location":[4.594474,43.682698]},{"entry":[true,false],"in":1,"bearings":[111,291],"duration":66.398,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":66.398,"geometry_index":18909,"location":[4.59679,43.682128]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.75,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.77,"geometry_index":18918,"location":[4.602457,43.680356]},{"entry":[true,true,false],"in":2,"bearings":[118,121,298],"duration":40.289,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":42.297,"geometry_index":18919,"location":[4.602514,43.680334]},{"entry":[true,false,false],"in":2,"bearings":[99,270,276],"duration":4.91,"turn_weight":0.75,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":6.02,"geometry_index":18938,"location":[4.612879,43.678069]},{"entry":[true,false],"in":1,"bearings":[112,287],"duration":4.078,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":4.383,"geometry_index":18942,"location":[4.614239,43.677833]},{"entry":[true,false],"in":1,"bearings":[122,299],"duration":18.125,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":19.484,"geometry_index":18945,"location":[4.615287,43.677459]},{"entry":[true,false],"in":1,"bearings":[138,317],"duration":2.301,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":2.531,"geometry_index":18955,"location":[4.619203,43.674821]},{"entry":[true,true,false],"in":2,"bearings":[138,144,318],"duration":8.875,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":9.758,"geometry_index":18956,"location":[4.61953,43.67456]},{"entry":[true,false,false],"in":2,"bearings":[138,298,318],"duration":9.805,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":11.777,"geometry_index":18957,"location":[4.620935,43.673423]},{"entry":[true,false],"in":1,"bearings":[142,321],"duration":22.285,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":24.512,"geometry_index":18959,"location":[4.622695,43.671972]},{"entry":[true,false],"in":1,"bearings":[136,318],"duration":9.387,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":10.09,"geometry_index":18963,"location":[4.626619,43.668623]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":3.602,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":3.871,"geometry_index":18967,"location":[4.628422,43.667317]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":0.73,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":0.785,"geometry_index":18969,"location":[4.629164,43.666847]},{"entry":[true,true,false],"in":2,"bearings":[131,135,311],"duration":2.969,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":3.184,"geometry_index":18970,"location":[4.629312,43.666753]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":1.414,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":1.52,"geometry_index":18971,"location":[4.629917,43.666371]},{"entry":[true,false],"in":1,"bearings":[131,311],"duration":7.785,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":8.371,"geometry_index":18972,"location":[4.630213,43.666188]},{"entry":[true,false,false],"in":2,"bearings":[132,300,312],"duration":1.516,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":true,"admin_index":5,"out":0,"weight":2.609,"geometry_index":18975,"location":[4.631946,43.66509]},{"entry":[true,false],"in":1,"bearings":[130,312],"duration":8.141,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":8.547,"geometry_index":18976,"location":[4.632293,43.664867]},{"entry":[true,false],"in":1,"bearings":[128,310],"duration":1.512,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.59,"geometry_index":18977,"location":[4.634169,43.663708]},{"entry":[true,false],"in":1,"bearings":[128,308],"duration":2.629,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.762,"geometry_index":18978,"location":[4.634525,43.663505]},{"entry":[true,false],"in":1,"bearings":[127,308],"duration":13.469,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":13.805,"geometry_index":18979,"location":[4.635163,43.66315]},{"entry":[true,true,false],"in":2,"bearings":[119,127,301],"duration":7.258,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":7.422,"geometry_index":18983,"location":[4.638621,43.661511]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":0.453,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.465,"geometry_index":18985,"location":[4.640638,43.660715]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":10.418,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":10.418,"geometry_index":18986,"location":[4.640772,43.660664]},{"entry":[true,false,false],"in":2,"bearings":[118,296,298],"duration":8.855,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":9.852,"geometry_index":18988,"location":[4.643765,43.659524]},{"entry":[true,false],"in":1,"bearings":[118,298],"duration":62.164,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":60.609,"geometry_index":18989,"location":[4.646363,43.65854]},{"entry":[true,true,false],"in":2,"bearings":[108,110,287],"duration":30.645,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":28.34,"geometry_index":19002,"location":[4.665529,43.652835]},{"entry":[true,false,false],"in":2,"bearings":[108,286,288],"duration":103.355,"turn_weight":1,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":96.586,"geometry_index":19004,"location":[4.675201,43.650621]},{"entry":[true,false],"in":1,"bearings":[108,288],"duration":2.426,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.242,"geometry_index":19008,"location":[4.708492,43.642976]},{"entry":[true,false],"in":1,"bearings":[108,288],"duration":19.555,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":18.07,"geometry_index":19009,"location":[4.709275,43.642795]},{"entry":[true,false],"in":1,"bearings":[108,288],"duration":80.582,"turn_duration":0.019,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":74.523,"geometry_index":19010,"location":[4.71544,43.641376]},{"bearings":[124,304],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":19022,"location":[4.73964,43.634137]}]},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 20 miles.","announcement":"Continue for 20 miles.","distanceAlongGeometry":31739.662},{"ssmlAnnouncement":"In 1 mile, Keep right to take A 7.","announcement":"In 1 mile, Keep right to take A 7.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep right to take A 7.","announcement":"In a half mile, Keep right to take A 7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep right to take A 7 toward Nice, Toulon.","announcement":"Keep right to take A 7 toward Nice, Toulon.","distanceAlongGeometry":190}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[122,125,304],"duration":2.836,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.602,"geometry_index":19023,"location":[4.74105,43.633456]},{"entry":[true,false],"in":1,"bearings":[120,302],"duration":18.293,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":16.922,"geometry_index":19024,"location":[4.741956,43.633049]},{"entry":[true,true,false],"in":2,"bearings":[111,169,293],"duration":17.07,"turn_duration":0.021,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":15.773,"geometry_index":19029,"location":[4.748139,43.630788]},{"entry":[true,false],"in":1,"bearings":[98,280],"duration":0.551,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":0.508,"geometry_index":19036,"location":[4.754343,43.629511]},{"entry":[true,false],"in":1,"bearings":[98,278],"duration":32.141,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":29.73,"geometry_index":19037,"location":[4.754531,43.629492]},{"entry":[true,false],"in":1,"bearings":[70,253],"duration":2.754,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.547,"geometry_index":19049,"location":[4.765135,43.63011]},{"entry":[true,false],"in":1,"bearings":[68,250],"duration":33.055,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":30.574,"geometry_index":19050,"location":[4.766014,43.630338]},{"entry":[true,false],"in":1,"bearings":[81,259],"duration":1.238,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":1.176,"geometry_index":19064,"location":[4.776286,43.633608]},{"entry":[true,false],"in":1,"bearings":[82,262],"duration":28.367,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":27.648,"geometry_index":19066,"location":[4.776708,43.633657]},{"entry":[true,false],"in":1,"bearings":[107,287],"duration":47.203,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":47.203,"geometry_index":19076,"location":[4.786115,43.632806]},{"entry":[true,false],"in":1,"bearings":[97,278],"duration":19.344,"turn_duration":0.007,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":19.82,"geometry_index":19086,"location":[4.801475,43.629728]},{"entry":[true,false],"in":1,"bearings":[85,267],"duration":3.562,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":3.652,"geometry_index":19091,"location":[4.807923,43.629552]},{"entry":[true,false],"in":1,"bearings":[82,265],"duration":66.492,"turn_weight":0.5,"turn_duration":0.022,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":66.969,"geometry_index":19092,"location":[4.809107,43.629621]},{"entry":[true,false],"in":1,"bearings":[62,241],"duration":6.605,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":6.277,"geometry_index":19107,"location":[4.82915,43.636117]},{"entry":[true,true,false],"in":2,"bearings":[68,83,245],"duration":2.598,"turn_duration":0.008,"mapbox_streets_v8":{"class":"trunk"},"is_urban":false,"admin_index":5,"out":0,"weight":2.457,"geometry_index":19109,"location":[4.831126,43.636823]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":10.32,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.805,"geometry_index":19111,"location":[4.831926,43.637054]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.835514,43.637806],"geometry_index":19117,"admin_index":5,"weight":31.137,"is_urban":false,"turn_weight":0.5,"duration":33.129,"bearings":[81,245,257],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,271],"duration":5.391,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.844,"geometry_index":19130,"location":[4.847474,43.638214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,275],"duration":7.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.574,"geometry_index":19133,"location":[4.849412,43.638119]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.16,"geometry_index":19138,"location":[4.851966,43.637895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,277],"duration":4.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.445,"geometry_index":19139,"location":[4.852033,43.637889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,274],"duration":0.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.449,"geometry_index":19151,"location":[4.853625,43.637791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,273],"duration":17.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.801,"geometry_index":19153,"location":[4.853787,43.637784]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":2.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.906,"geometry_index":19158,"location":[4.857715,43.637706]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.857838,43.63771],"geometry_index":19160,"admin_index":5,"weight":16.906,"is_urban":false,"toll_collection":{"name":"Péage de Saint-Martin-de-Crau","type":"toll_booth"},"turn_weight":15,"duration":2.117,"bearings":[87,267],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,267],"duration":0.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.406,"geometry_index":19161,"location":[4.857963,43.637715]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,266],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.344,"geometry_index":19162,"location":[4.858127,43.637724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":6.387,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.574,"geometry_index":19163,"location":[4.858258,43.637732]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,261],"duration":10.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.055,"geometry_index":19166,"location":[4.860528,43.637935]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.864202,43.63834],"geometry_index":19172,"admin_index":5,"weight":125.184,"is_urban":false,"turn_weight":1,"duration":141.93,"bearings":[81,253,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.277,"geometry_index":19215,"location":[4.914993,43.638573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":10.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.27,"geometry_index":19216,"location":[4.915531,43.638565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":121.41,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":109.262,"geometry_index":19220,"location":[4.920144,43.638612]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[92,94,271],"duration":49.445,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":44.496,"geometry_index":19259,"location":[4.974531,43.63949]},{"mapbox_streets_v8":{"class":"motorway"},"location":[4.994267,43.63882],"geometry_index":19271,"admin_index":5,"weight":62.281,"is_urban":false,"turn_weight":1,"duration":68.098,"bearings":[88,265,268],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":1.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.004,"geometry_index":19285,"location":[5.021401,43.63924]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[103,107,281],"duration":3.641,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.359,"geometry_index":19286,"location":[5.021829,43.639182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":18.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.527,"geometry_index":19287,"location":[5.023216,43.638951]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.030217,43.637147],"geometry_index":19293,"admin_index":5,"weight":112.973,"is_urban":false,"turn_weight":0.5,"duration":115.363,"bearings":[114,291,294],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,304],"duration":2.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.32,"geometry_index":19312,"location":[5.073235,43.625567]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,298],"duration":4.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.027,"geometry_index":19313,"location":[5.074007,43.625265]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":0.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.195,"geometry_index":19316,"location":[5.075775,43.624755]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[105,110,289],"duration":1.223,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.23,"geometry_index":19317,"location":[5.075841,43.624739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,285],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.488,"geometry_index":19318,"location":[5.076288,43.624652]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":0.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.234,"geometry_index":19322,"location":[5.077941,43.624454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,276],"duration":14.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.223,"geometry_index":19323,"location":[5.078025,43.624448]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.083646,43.625088],"geometry_index":19330,"admin_index":5,"weight":9.914,"is_urban":false,"turn_weight":0.5,"duration":8.988,"bearings":[72,251,253],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,258],"duration":29.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":30.91,"geometry_index":19334,"location":[5.08691,43.625779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,273],"duration":13.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":15.008,"geometry_index":19344,"location":[5.095987,43.62561]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":21.926,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":23.562,"geometry_index":19352,"location":[5.100266,43.625996]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.106702,43.627572],"geometry_index":19359,"admin_index":5,"weight":38.16,"is_urban":false,"turn_weight":0.8,"duration":35.59,"bearings":[77,246,255],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,280],"duration":2.875,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.918,"geometry_index":19373,"location":[5.116997,43.626437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":4.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.332,"geometry_index":19375,"location":[5.117844,43.626395]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,267],"duration":10.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.727,"geometry_index":19377,"location":[5.119101,43.626413]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,251],"duration":4.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.273,"geometry_index":19381,"location":[5.122104,43.62693]},{"bearings":[69,247],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":19382,"location":[5.123115,43.627234]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Nice"},{"type":"text","text":"/"},{"type":"text","text":"Toulon"}],"type":"fork","modifier":"right","text":"Nice / Toulon"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-red","display_ref":"A 7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A 7"}],"type":"fork","modifier":"right","text":"A 7"},"distanceAlongGeometry":31776.328}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":122,"bearing_before":124,"location":[4.74105,43.633456]},"speedLimitSign":"vienna","name":"","weight_typical":1055.801,"duration_typical":1078.938,"duration":1078.938,"distance":31776.328,"driving_side":"right","weight":1055.801,"mode":"driving","ref":"N 113; E 80","geometry":"_rdfrAszj`HlXsw@`m@kkBtl@uwBFSvRy{@p\\}~AzQkaAjQokAhKqv@bLqcAvFeo@xBc]pDmi@d@wJ`Cof@`Cyq@tBsz@h@mv@[ov@m@}v@aBot@wDk_AkH{dAeJi_AsJ_w@mG{d@gM}u@iUsiAeQqt@iPsm@aPui@iX{{@qZeaAmJm\\aMif@}Kaj@_I}e@wFe_@sF_b@uFok@cD_b@W}CiAmTkDwu@uAkq@]of@F_f@p@oh@vBit@bEqu@fF}n@hIow@|_@ouCzYywB`t@qkFzSq|AvF_b@xXawBzMqfAtSaqBhG{s@pIkqApBc`@|C_t@rCy|@dCylBHuvAaBuyAiC_iAgJgpBcJujAkJifAkPuxAmOeeAsRmjAg_@ugB{b@scBw`@mrAak@g`Big@yqA_t@cmBkg@{tAcUsq@aPuh@qVq|@qS}|@iHq^cDmQ{Hgc@iKis@iDkWcCcToE}b@{Ggu@qGehA_F_rAuCwbAy@af@]e[g@{fAEahAU}cAU}fA[yyATyq@JiTBqFn@uf@nAir@|@c]bAg]bB{c@vD_x@z@gUb@gLJeCZiLVkIJiDNqET{HHeDLqDNkF\\sRFyDFgDFgDDuDFmCRu[xAwgAbAu|@J}l@a@mc@EyCA{AIyFQgIOeGyAco@uCym@eD}m@iBw`@sAo_@mCod@yBka@wGmfAkAaScCeb@yH{qA{Ewx@{FaaAiEk{@wCcu@{Biq@uCcqAiAes@qAwpA_@_{@Jmg@X_}@n@e|@`Au|@hAes@lAmp@fAebAvAyiAzAkeAvAgdAdAu~@lAk}@hAcx@fAc_BDgiC[knDK{}AK}iBM_yASmbB@}gAIysAAshA`@ecAPe`AVah@x@omApAq_BhAsnAz@uiA`@en@b@qsBNs`@C_iBOm`Ae@qz@c@ix@IsNu@k_ACuBy@_|@y@}g@_BweA{Cu}AgGolCqCusAiDcrBgB_uAaCcjBaA_pAu@clAiAevBc@smCOmrAM__CEugA[k}BCg~@[}fCMit@O}aCIslAGosA_@e}BI{rASqhBQ{rBM}rAMw|AKisAKqhAOq}AK_sABwmABq`ARwn@vAejClA{oAvAwgAdFuxCpGieCjGktB`EgfBrCcsBb@us@ZseAMshBmA_vAi@}l@aFycC{QukFoG_vBgFawBsEouC{CkuE{@g}Bg@gcCjAcbBpCy|A~E{rAjEa{@`JcpArBwYlMuuAzAkPnK{_AhNybAhTavA~TkmAve@ayBdgC{bL`a@{hBda@sqBluAm|GjZcaBlVy_BrVmgB~i@{uEf\\ycD~k@{`GdhAoyJfOqiA|R{eAjM}j@dO{j@`Vku@x]{}@rOg`@v]s~@zQgo@lMmi@tIkg@vEuZ^cClD}ZnAoMdCoZlB{]fAm]JgDl@go@Sem@yB}v@oFyv@iFai@kI{p@yJet@gPwiAaKau@gH{l@sCi\\gAeMyCef@qCav@{AihA^_t@t@af@nBmo@hN_iDx@a[v@_n@Egr@Qm\\?MeAw`@}Au^{Coi@wDae@sFig@sFse@qMgy@uBkMml@cnDiN_{@yEa\\aDyYiAmLeCuWgB_b@oAsc@Oa[\\a\\r@yZpAaXbDab@hHiq@pNukA~a@ukDtGmp@zCof@dAya@LcQTu[y@{p@mDay@cEke@_Hkl@wJ{l@_Re~@mQa`A"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 7 miles.","announcement":"Continue for 7 miles.","distanceAlongGeometry":11706.286},{"ssmlAnnouncement":"In 2 miles, Keep left to take A 8.","announcement":"In 2 miles, Keep left to take A 8.","distanceAlongGeometry":3218.688},{"ssmlAnnouncement":"In a half mile, Keep left to take A 8.","announcement":"In a half mile, Keep left to take A 8.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A 8, E 80 toward Aix en Provence, Toulon.","announcement":"Keep left to take A 8, E 80 toward Aix en Provence, Toulon.","distanceAlongGeometry":281.111}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[66,69,249],"duration":43.207,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":5,"out":1,"weight":43.199,"geometry_index":19383,"location":[5.124156,43.627529]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.129554,43.625964],"geometry_index":19398,"admin_index":5,"weight":7.57,"is_urban":false,"turn_weight":6.75,"duration":0.84,"bearings":[141,307,321],"out":0,"in":1,"turn_duration":0.018,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,321],"duration":1.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.656,"geometry_index":19399,"location":[5.129722,43.625815]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[142,322],"duration":6.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.035,"geometry_index":19400,"location":[5.129987,43.625571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,322],"duration":38.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.547,"geometry_index":19401,"location":[5.131263,43.624405]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,321],"duration":28.809,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":26.641,"geometry_index":19403,"location":[5.139482,43.616979]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,324],"duration":83.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":74.977,"geometry_index":19407,"location":[5.1455,43.611353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":9.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.137,"geometry_index":19421,"location":[5.164256,43.596498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.281,"geometry_index":19423,"location":[5.166888,43.595678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,292],"duration":7.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.801,"geometry_index":19424,"location":[5.166971,43.595654]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":22.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.465,"geometry_index":19429,"location":[5.168936,43.59509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":6.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.797,"geometry_index":19430,"location":[5.171679,43.594251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":19431,"location":[5.172452,43.594015]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.172557,43.593982],"geometry_index":19432,"admin_index":5,"weight":15.223,"is_urban":false,"toll_collection":{"name":"Péage de Lançon","type":"toll_booth"},"turn_weight":15,"duration":0.25,"bearings":[111,293],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":2.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.824,"geometry_index":19433,"location":[5.172623,43.593964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":10.766,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.684,"geometry_index":19434,"location":[5.173188,43.593803]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[112,291],"duration":8.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.559,"geometry_index":19435,"location":[5.176184,43.592951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,292],"duration":15.453,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.891,"geometry_index":19436,"location":[5.178526,43.592274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.75,"geometry_index":19439,"location":[5.182869,43.591127]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[107,128,289],"duration":17.793,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.992,"geometry_index":19440,"location":[5.183415,43.59099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":0.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.676,"geometry_index":19444,"location":[5.18989,43.58964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,285],"duration":20.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.172,"geometry_index":19445,"location":[5.190164,43.589586]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.197475,43.587978],"geometry_index":19450,"admin_index":5,"weight":116.875,"is_urban":false,"turn_weight":1,"duration":132.438,"bearings":[114,289,291],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,311],"duration":27.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":23.672,"geometry_index":19474,"location":[5.216996,43.570301]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,302],"duration":0.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.797,"geometry_index":19476,"location":[5.222445,43.567717]},{"bearings":[123,303],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":19477,"location":[5.222722,43.567587]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Aix en Provence"},{"type":"text","text":"/"},{"type":"text","text":"Toulon"}],"type":"fork","modifier":"left","text":"Aix en Provence / Toulon"},"distanceAlongGeometry":11729.619}],"destinations":"A 7: Nice, Toulon, Marseille, Aix en Provence","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep right to take A 7 toward Nice/Toulon/Marseille/Aix en Provence.","modifier":"slight right","bearing_after":69,"bearing_before":69,"location":[5.124156,43.627529]},"speedLimitSign":"vienna","name":"Autoroute du Soleil","weight_typical":492.172,"duration_typical":515.559,"duration":515.559,"distance":11729.619,"driving_side":"right","weight":492.172,"mode":"driving","ref":"A 7; E 80; E 714","geometry":"q_yerAwbwwHgMms@gCmQkBoP}@cQKoLZkMlAgPnBiOlCqMrHmUbNaWvQiXpe@gl@pU_XbEyKhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmB"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 128 miles.","announcement":"Continue for 128 miles.","distanceAlongGeometry":206585.828},{"ssmlAnnouncement":"In 1 mile, Keep left to stay on E 80.","announcement":"In 1 mile, Keep left to stay on E 80.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to stay on E 80.","announcement":"In a half mile, Keep left to stay on E 80.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to stay on E 80.","announcement":"Keep left to stay on E 80.","distanceAlongGeometry":170}],"intersections":[{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[158,173,340],"duration":11.254,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.672,"geometry_index":19486,"location":[5.228036,43.56103]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[158,339],"duration":13.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.699,"geometry_index":19489,"location":[5.229491,43.558194]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[149,333],"duration":3.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.977,"geometry_index":19493,"location":[5.231416,43.554878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[139,326],"duration":30.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.645,"geometry_index":19495,"location":[5.232054,43.554172]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.242116,43.551453],"geometry_index":19509,"admin_index":5,"weight":12.781,"is_urban":false,"turn_weight":1,"duration":12.422,"bearings":[79,246,262],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":1.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.996,"geometry_index":19510,"location":[5.246639,43.552116]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":83.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":76.898,"geometry_index":19511,"location":[5.247031,43.552173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.484,"geometry_index":19541,"location":[5.283954,43.554887]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":53.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":49.242,"geometry_index":19542,"location":[5.284147,43.554882]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.586,"geometry_index":19556,"location":[5.304726,43.55327]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":27.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.816,"geometry_index":19557,"location":[5.304965,43.553244]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[104,108,283],"duration":1.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.457,"geometry_index":19564,"location":[5.315388,43.551978]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,284],"duration":2.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.527,"geometry_index":19565,"location":[5.315984,43.551874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":17.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.188,"geometry_index":19567,"location":[5.316996,43.551671]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,298],"duration":19.762,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.273,"geometry_index":19577,"location":[5.323371,43.549721]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,309],"duration":2.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.855,"geometry_index":19587,"location":[5.329719,43.546431]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,310],"duration":191.16,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":186.383,"geometry_index":19588,"location":[5.330317,43.546067]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,299],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.227,"geometry_index":19662,"location":[5.397344,43.529014]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[124,149,303],"duration":0.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.766,"geometry_index":19666,"location":[5.400254,43.527736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":4.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.352,"geometry_index":19667,"location":[5.40048,43.527625]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,304],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.484,"geometry_index":19669,"location":[5.401764,43.526997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,305],"duration":16.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.543,"geometry_index":19670,"location":[5.402461,43.526648]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,306],"duration":171.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":184.824,"geometry_index":19671,"location":[5.403763,43.525963]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":63.234,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":71.113,"geometry_index":19688,"location":[5.418758,43.520191]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":17.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":20.375,"geometry_index":19698,"location":[5.426055,43.519351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[120,298],"duration":10.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":12,"geometry_index":19705,"location":[5.428906,43.51847]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[132,309],"duration":3.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.852,"geometry_index":19708,"location":[5.431359,43.517251]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[135,312],"duration":5.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.777,"geometry_index":19709,"location":[5.43207,43.51678]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.433094,43.516037],"geometry_index":19711,"admin_index":5,"weight":9.926,"is_urban":true,"turn_weight":1,"duration":7.941,"bearings":[135,311,315],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[134,315],"duration":1.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.492,"geometry_index":19712,"location":[5.434144,43.515286]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[135,314],"duration":23.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":25.344,"geometry_index":19713,"location":[5.434393,43.515112]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[115,302],"duration":11.785,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":12.926,"geometry_index":19718,"location":[5.438326,43.51272]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[98,104,281],"duration":24.352,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":26.766,"geometry_index":19723,"location":[5.441651,43.511909]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[86,259,266],"duration":57.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":60.27,"geometry_index":19729,"location":[5.448906,43.511714]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.466608,43.51274],"geometry_index":19738,"admin_index":5,"weight":32.805,"is_urban":false,"turn_weight":15,"duration":17.379,"bearings":[82,87,261],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.471717,43.513103],"geometry_index":19743,"admin_index":5,"weight":24.121,"is_urban":false,"turn_weight":0.5,"duration":23.629,"bearings":[87,259,267],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":1.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.133,"geometry_index":19748,"location":[5.478945,43.513033]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,273],"duration":47.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.645,"geometry_index":19749,"location":[5.479295,43.513021]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,292],"duration":4.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.828,"geometry_index":19765,"location":[5.493984,43.512307]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[127,303],"duration":19.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.941,"geometry_index":19768,"location":[5.495101,43.511854]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[134,316],"duration":2.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.938,"geometry_index":19773,"location":[5.499512,43.508659]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,314],"duration":3.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.191,"geometry_index":19774,"location":[5.499969,43.508338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,306],"duration":3.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.496,"geometry_index":19776,"location":[5.500787,43.507876]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,297],"duration":16.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.68,"geometry_index":19779,"location":[5.501758,43.507467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[116,293],"duration":4.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.883,"geometry_index":19786,"location":[5.506571,43.506383]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[117,296],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.422,"geometry_index":19787,"location":[5.507694,43.505984]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[116,297],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.887,"geometry_index":19788,"location":[5.50867,43.505617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,296],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.832,"geometry_index":19789,"location":[5.509514,43.505323]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,294],"duration":27.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.027,"geometry_index":19790,"location":[5.510095,43.505132]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[126,303],"duration":0.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.398,"geometry_index":19797,"location":[5.518381,43.502593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[127,306],"duration":17.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.555,"geometry_index":19798,"location":[5.518506,43.502527]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":2.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.262,"geometry_index":19804,"location":[5.522902,43.499256]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[151,158,327],"duration":1.949,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.797,"geometry_index":19806,"location":[5.523373,43.498727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[151,331],"duration":8.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.738,"geometry_index":19807,"location":[5.523711,43.498293]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[162,340],"duration":1.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.52,"geometry_index":19811,"location":[5.524904,43.496354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[164,342],"duration":12.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.367,"geometry_index":19812,"location":[5.525086,43.495953]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,343],"duration":1.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.797,"geometry_index":19815,"location":[5.526287,43.492885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[159,341],"duration":18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.648,"geometry_index":19816,"location":[5.526514,43.492415]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[141,325],"duration":13.848,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.133,"geometry_index":19821,"location":[5.529354,43.488544]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,310],"duration":0.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.309,"geometry_index":19826,"location":[5.532641,43.48606]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[130,310],"duration":4.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.137,"geometry_index":19827,"location":[5.532731,43.486006]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,307],"duration":5.336,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.07,"geometry_index":19829,"location":[5.53392,43.485349]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":13.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.152,"geometry_index":19831,"location":[5.535228,43.484738]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.537837,43.483531],"geometry_index":19833,"admin_index":5,"weight":9.266,"is_urban":false,"turn_weight":0.5,"duration":9.242,"bearings":[122,296,303],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[122,302],"duration":2.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.777,"geometry_index":19834,"location":[5.538263,43.483338]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.538396,43.483277],"geometry_index":19835,"admin_index":5,"weight":23.145,"is_urban":false,"toll_collection":{"name":"Gare de Péage de la Barque","type":"toll_booth"},"turn_weight":15,"duration":8.57,"bearings":[118,302],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,298],"duration":6.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.27,"geometry_index":19836,"location":[5.539494,43.482854]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[107,120,293],"duration":2.809,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.574,"geometry_index":19837,"location":[5.540947,43.482405]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,281],"duration":0.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.379,"geometry_index":19839,"location":[5.541763,43.482253]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":9.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.59,"geometry_index":19840,"location":[5.541884,43.482242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,277],"duration":33.867,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":32.156,"geometry_index":19841,"location":[5.544674,43.481995]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":0.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.812,"geometry_index":19846,"location":[5.55594,43.481518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":8.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.828,"geometry_index":19847,"location":[5.55623,43.481513]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[91,113,271],"duration":8.238,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.816,"geometry_index":19848,"location":[5.558977,43.481461]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,271],"duration":16.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.16,"geometry_index":19849,"location":[5.561953,43.481411]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.567867,43.481272],"geometry_index":19851,"admin_index":5,"weight":5.918,"is_urban":false,"turn_weight":1,"duration":5.324,"bearings":[92,269,272],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,272],"duration":1.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.254,"geometry_index":19853,"location":[5.56986,43.481225]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":158.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":150.191,"geometry_index":19854,"location":[5.570353,43.481202]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,287],"duration":16.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.191,"geometry_index":19895,"location":[5.639194,43.47159]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,279],"duration":5.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.25,"geometry_index":19899,"location":[5.646358,43.470455]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,277],"duration":4.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.457,"geometry_index":19902,"location":[5.648872,43.470205]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[94,99,275],"duration":25.559,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":23.625,"geometry_index":19904,"location":[5.651014,43.470046]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.661272,43.470061],"geometry_index":19910,"admin_index":5,"weight":71.68,"is_urban":false,"turn_weight":1,"duration":78.555,"bearings":[85,262,266],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,265],"duration":1.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.152,"geometry_index":19934,"location":[5.692981,43.472908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,264],"duration":110.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":99.5,"geometry_index":19935,"location":[5.693495,43.472948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,266],"duration":60.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":55.758,"geometry_index":19975,"location":[5.735826,43.481741]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.759439,43.479189],"geometry_index":19999,"admin_index":5,"weight":92.543,"is_urban":false,"turn_weight":0.5,"duration":99.531,"bearings":[78,258,260],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,279],"duration":1.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.492,"geometry_index":20038,"location":[5.796593,43.471706]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,277],"duration":20.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.98,"geometry_index":20039,"location":[5.797237,43.471647]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[83,263],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.141,"geometry_index":20048,"location":[5.806375,43.471973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":61.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":56.844,"geometry_index":20049,"location":[5.806843,43.472017]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[105,108,284],"duration":20.418,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.879,"geometry_index":20064,"location":[5.830617,43.470229]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.838361,43.468575],"geometry_index":20068,"admin_index":5,"weight":30.34,"is_urban":false,"turn_weight":1,"duration":30.902,"bearings":[109,282,288],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,292],"duration":78.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":80.758,"geometry_index":20075,"location":[5.849711,43.465534]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[126,130,305],"duration":27.574,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.242,"geometry_index":20095,"location":[5.876764,43.454811]},{"mapbox_streets_v8":{"class":"motorway"},"location":[5.886669,43.449509],"geometry_index":20104,"admin_index":5,"weight":229.793,"is_urban":false,"turn_weight":0.6,"duration":241.277,"bearings":[124,306,307],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[112,115,289],"duration":4.453,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.113,"geometry_index":20197,"location":[5.983334,43.424039]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,292],"duration":14.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.406,"geometry_index":20198,"location":[5.984962,43.423555]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":0.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.293,"geometry_index":20202,"location":[5.990279,43.422019]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,287],"duration":14.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.582,"geometry_index":20203,"location":[5.9904,43.421992]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,268],"duration":0.391,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.355,"geometry_index":20207,"location":[5.99612,43.421474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,269],"duration":0.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.883,"geometry_index":20208,"location":[5.996271,43.421475]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":165.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":160.945,"geometry_index":20209,"location":[5.996636,43.421492]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":0.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.637,"geometry_index":20245,"location":[6.061379,43.420873]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[76,82,255],"duration":12.547,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.852,"geometry_index":20246,"location":[6.061613,43.420917]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,260],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.121,"geometry_index":20250,"location":[6.066496,43.421677]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,261],"duration":8.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.734,"geometry_index":20251,"location":[6.066927,43.421727]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,268],"duration":1.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.168,"geometry_index":20255,"location":[6.070336,43.421922]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,270],"duration":2.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.309,"geometry_index":20256,"location":[6.070799,43.421921]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.071686,43.42189],"geometry_index":20258,"admin_index":5,"weight":58.086,"is_urban":false,"turn_weight":0.5,"duration":59.07,"bearings":[94,267,273],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,266],"duration":5.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.566,"geometry_index":20287,"location":[6.094752,43.419614]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,273],"duration":1.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.828,"geometry_index":20289,"location":[6.097125,43.419572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,277],"duration":17.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.066,"geometry_index":20290,"location":[6.097879,43.419502]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":120.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":108.703,"geometry_index":20294,"location":[6.102475,43.418589]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":1.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.262,"geometry_index":20331,"location":[6.133093,43.414205]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,304],"duration":237.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":207.625,"geometry_index":20332,"location":[6.133419,43.414045]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[97,101,282],"duration":19.445,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.48,"geometry_index":20399,"location":[6.196058,43.404757]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.203565,43.405286],"geometry_index":20405,"admin_index":5,"weight":24.73,"is_urban":false,"turn_weight":1,"duration":26.375,"bearings":[80,252,259],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":6.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.598,"geometry_index":20414,"location":[6.21326,43.403552]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":58.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":51.09,"geometry_index":20417,"location":[6.21514,43.40243]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,255],"duration":140.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":123.016,"geometry_index":20434,"location":[6.236091,43.403214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":0.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.371,"geometry_index":20468,"location":[6.290157,43.40456]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,255],"duration":55.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":51.613,"geometry_index":20469,"location":[6.290314,43.40459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,325],"duration":10.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.766,"geometry_index":20492,"location":[6.309341,43.399685]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[140,321],"duration":0.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.16,"geometry_index":20495,"location":[6.311573,43.39747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[133,320],"duration":4.613,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.5,"geometry_index":20496,"location":[6.311614,43.397434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,308],"duration":9.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.176,"geometry_index":20498,"location":[6.312942,43.396609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,292],"duration":13.09,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.762,"geometry_index":20503,"location":[6.316059,43.395432]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,265],"duration":2.621,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.621,"geometry_index":20510,"location":[6.320929,43.395032]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":29.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.742,"geometry_index":20511,"location":[6.321546,43.395115]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,261],"duration":39.012,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.016,"geometry_index":20533,"location":[6.334696,43.395609]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,272],"duration":1.402,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.367,"geometry_index":20560,"location":[6.3512,43.397153]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,269],"duration":6.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.645,"geometry_index":20561,"location":[6.351739,43.39716]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":2.348,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.289,"geometry_index":20566,"location":[6.354298,43.397512]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[63,69,248],"duration":6.652,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.461,"geometry_index":20568,"location":[6.355141,43.397747]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":15.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.77,"geometry_index":20569,"location":[6.357429,43.398598]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.362934,43.400381],"geometry_index":20572,"admin_index":5,"weight":2.949,"is_urban":false,"turn_weight":1,"duration":2.059,"bearings":[70,246,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":112.895,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":107.25,"geometry_index":20573,"location":[6.363686,43.400577]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,248],"duration":1.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.039,"geometry_index":20591,"location":[6.407512,43.403754]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,246],"duration":102.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":96.961,"geometry_index":20592,"location":[6.407906,43.403883]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,283],"duration":1.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.16,"geometry_index":20617,"location":[6.44368,43.41366]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":8.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.152,"geometry_index":20618,"location":[6.444127,43.41359]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":0.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.582,"geometry_index":20628,"location":[6.447399,43.413377]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[82,89,264],"duration":21.945,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.277,"geometry_index":20629,"location":[6.447634,43.413395]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.455382,43.415711],"geometry_index":20649,"admin_index":5,"weight":57.16,"is_urban":false,"turn_weight":1,"duration":62.41,"bearings":[77,246,254],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,345],"duration":0.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":0.703,"geometry_index":20705,"location":[6.467591,43.427786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346],"duration":41.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":37.219,"geometry_index":20706,"location":[6.467513,43.428005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,228],"duration":27.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.816,"geometry_index":20724,"location":[6.47108,43.439082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":3.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.973,"geometry_index":20731,"location":[6.481649,43.441565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,257],"duration":30.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":29.012,"geometry_index":20732,"location":[6.482851,43.441765]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,231],"duration":1.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.488,"geometry_index":20744,"location":[6.494037,43.445437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,229],"duration":126.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":117.141,"geometry_index":20745,"location":[6.494507,43.44573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":0.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.18,"geometry_index":20799,"location":[6.546648,43.456757]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[71,75,253],"duration":17.484,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.152,"geometry_index":20800,"location":[6.546736,43.456777]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.553048,43.458673],"geometry_index":20804,"admin_index":5,"weight":8.785,"is_urban":false,"turn_weight":1,"duration":8.219,"bearings":[62,237,244],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.605,"geometry_index":20807,"location":[6.555772,43.45983]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":34.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":32.594,"geometry_index":20808,"location":[6.556337,43.460093]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,261],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.027,"geometry_index":20819,"location":[6.568418,43.464329]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,264],"duration":119.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":113.18,"geometry_index":20820,"location":[6.569652,43.464428]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":3.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.871,"geometry_index":20852,"location":[6.615541,43.461999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":49.75,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.016,"geometry_index":20853,"location":[6.616659,43.462386]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,269],"duration":1.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.121,"geometry_index":20876,"location":[6.63616,43.464217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,268],"duration":93.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":91.32,"geometry_index":20877,"location":[6.63663,43.464226]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,290],"duration":1.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.23,"geometry_index":20922,"location":[6.672702,43.465861]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[112,120,290],"duration":2.168,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.105,"geometry_index":20923,"location":[6.673169,43.465735]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,292],"duration":15.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.809,"geometry_index":20924,"location":[6.673958,43.465502]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,303],"duration":4.105,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.098,"geometry_index":20934,"location":[6.679439,43.46334]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,305],"duration":12.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.848,"geometry_index":20936,"location":[6.680955,43.462587]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[124,304],"duration":2.574,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.574,"geometry_index":20939,"location":[6.68567,43.460206]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[117,125,304],"duration":8.602,"turn_duration":0.03,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.785,"geometry_index":20940,"location":[6.686621,43.459736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,297],"duration":12.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.969,"geometry_index":20941,"location":[6.689379,43.458721]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.693693,43.457662],"geometry_index":20946,"admin_index":5,"weight":30.504,"is_urban":false,"turn_weight":0.5,"duration":29.289,"bearings":[103,280,284],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,258],"duration":1.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.566,"geometry_index":20956,"location":[6.70438,43.457547]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,256],"duration":66.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":66.094,"geometry_index":20957,"location":[6.704915,43.457644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":2.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.602,"geometry_index":20979,"location":[6.723998,43.467316]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,245],"duration":2.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.199,"geometry_index":20981,"location":[6.724728,43.46756]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":3.422,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.414,"geometry_index":20984,"location":[6.725362,43.467735]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":1.309,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.309,"geometry_index":20985,"location":[6.726227,43.467934]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":14.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":14.883,"geometry_index":20986,"location":[6.726556,43.46801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,255],"duration":0.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.762,"geometry_index":20988,"location":[6.729109,43.468545]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.729244,43.46857],"geometry_index":20989,"admin_index":5,"weight":30.672,"is_urban":false,"toll_collection":{"name":"Le Capitou","type":"toll_booth"},"turn_weight":15,"duration":15.672,"bearings":[67,256],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,247],"duration":8.266,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.242,"geometry_index":20990,"location":[6.730086,43.468834]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,242],"duration":5.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.828,"geometry_index":20991,"location":[6.731992,43.469561]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":21.719,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":21.168,"geometry_index":20992,"location":[6.733415,43.469963]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.883,"geometry_index":21001,"location":[6.739489,43.472685]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":6.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.027,"geometry_index":21002,"location":[6.740187,43.473234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,214],"duration":8.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.617,"geometry_index":21006,"location":[6.74159,43.474465]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,188],"duration":10.758,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.195,"geometry_index":21015,"location":[6.742495,43.476358]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,330],"duration":21.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":20.09,"geometry_index":21029,"location":[6.741805,43.479031]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,184],"duration":75.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":67.602,"geometry_index":21044,"location":[6.739068,43.483976]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,218],"duration":1.887,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.652,"geometry_index":21094,"location":[6.754712,43.497935]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,214],"duration":0.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.43,"geometry_index":21097,"location":[6.755098,43.498336]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[6.755192,43.498442],"geometry_index":21098,"admin_index":5,"weight":0.484,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":0.578,"bearings":[29,42,213],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.664,"geometry_index":21099,"location":[6.755285,43.498566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":9.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.996,"geometry_index":21105,"location":[6.755895,43.499553]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.756603,43.501869],"geometry_index":21111,"admin_index":5,"weight":8.422,"is_urban":false,"turn_weight":1,"duration":8.488,"bearings":[12,184,192],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":3.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.242,"geometry_index":21118,"location":[6.757519,43.503965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":12.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.07,"geometry_index":21121,"location":[6.75807,43.50484]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":15.973,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.578,"geometry_index":21124,"location":[6.759926,43.507802]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,206],"duration":0.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.504,"geometry_index":21128,"location":[6.762277,43.511536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,206],"duration":74.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":63.348,"geometry_index":21129,"location":[6.762369,43.511672]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,214],"duration":52.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":44.988,"geometry_index":21195,"location":[6.780234,43.525265]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.543,"geometry_index":21243,"location":[6.782722,43.538316]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[25,30,203],"duration":27.793,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":24.312,"geometry_index":21245,"location":[6.782967,43.538738]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":2.832,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.477,"geometry_index":21256,"location":[6.788116,43.544796]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,228],"duration":2.086,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.816,"geometry_index":21258,"location":[6.788839,43.545306]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[54,232],"duration":1.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.211,"geometry_index":21260,"location":[6.789407,43.54565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,234],"duration":19.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.023,"geometry_index":21261,"location":[6.789803,43.545859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":4.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.484,"geometry_index":21268,"location":[6.79594,43.548214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,269],"duration":29.215,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":26.293,"geometry_index":21273,"location":[6.797697,43.548388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,290],"duration":0.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.594,"geometry_index":21283,"location":[6.807299,43.545583]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,290],"duration":20.512,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.441,"geometry_index":21284,"location":[6.807517,43.545526]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.77,"geometry_index":21286,"location":[6.814468,43.543819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":5.453,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.891,"geometry_index":21287,"location":[6.815877,43.54346]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":1.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.398,"geometry_index":21289,"location":[6.817687,43.543015]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,288],"duration":172.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":151.113,"geometry_index":21290,"location":[6.818211,43.542892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,293],"duration":17.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.004,"geometry_index":21378,"location":[6.872688,43.533511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":152.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":148.855,"geometry_index":21385,"location":[6.879001,43.533925]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,253],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.652,"geometry_index":21429,"location":[6.935016,43.541134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,251],"duration":5.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.199,"geometry_index":21430,"location":[6.935566,43.541271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,233],"duration":1.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.996,"geometry_index":21434,"location":[6.937219,43.542001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":2.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.512,"geometry_index":21436,"location":[6.937689,43.542295]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[40,45,222],"duration":7.727,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.473,"geometry_index":21438,"location":[6.938228,43.542702]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,218],"duration":5.047,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.551,"geometry_index":21442,"location":[6.939867,43.544216]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.940897,43.545188],"geometry_index":21443,"admin_index":5,"weight":1.766,"is_urban":true,"turn_weight":0.5,"duration":1.168,"bearings":[37,213,218],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,217],"duration":8.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.91,"geometry_index":21444,"location":[6.941129,43.545415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,218],"duration":2.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.02,"geometry_index":21445,"location":[6.942833,43.547011]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,216],"duration":45.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":50.422,"geometry_index":21446,"location":[6.943397,43.54757]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[69,245],"duration":0.926,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.02,"geometry_index":21477,"location":[6.94931,43.557525]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[71,249],"duration":1.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.215,"geometry_index":21479,"location":[6.949611,43.557607]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[73,82,251],"duration":17.828,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":19.602,"geometry_index":21481,"location":[6.949974,43.557698]},{"mapbox_streets_v8":{"class":"motorway"},"location":[6.955987,43.557394],"geometry_index":21499,"admin_index":5,"weight":27.559,"is_urban":true,"turn_weight":1,"duration":24.168,"bearings":[100,277,283],"out":0,"in":2,"turn_duration":0.022,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[58,239],"duration":26.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":29.078,"geometry_index":21509,"location":[6.96375,43.558799]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,232],"duration":56.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":61.098,"geometry_index":21514,"location":[6.971359,43.562297]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,221],"duration":2.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.477,"geometry_index":21532,"location":[6.97815,43.575121]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[51,225],"duration":62.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":68.867,"geometry_index":21533,"location":[6.978715,43.575531]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,256],"duration":2.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.52,"geometry_index":21553,"location":[6.997326,43.585669]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[83,260],"duration":1.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.172,"geometry_index":21556,"location":[6.998003,43.585763]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[84,263],"duration":5.441,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.121,"geometry_index":21557,"location":[6.998322,43.585793]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"mapbox_streets_v8":{"class":"motorway"},"location":[7.000002,43.585869],"geometry_index":21562,"admin_index":5,"weight":21.531,"is_urban":true,"turn_weight":15,"duration":5.941,"bearings":[87,97,267],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":11.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":13.188,"geometry_index":21565,"location":[7.001925,43.585931]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.005804,43.586035],"geometry_index":21567,"admin_index":5,"weight":9.469,"is_urban":true,"turn_weight":0.75,"duration":7.934,"bearings":[90,260,269],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,287],"duration":0.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.926,"geometry_index":21574,"location":[7.008329,43.585769]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.008582,43.585707],"geometry_index":21575,"admin_index":5,"weight":5.555,"is_urban":true,"turn_weight":0.5,"duration":4.605,"bearings":[113,277,289],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,300],"duration":5.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.855,"geometry_index":21580,"location":[7.009929,43.585242]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[136,312],"duration":4.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.93,"geometry_index":21584,"location":[7.011288,43.584479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[145,324],"duration":0.23,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.254,"geometry_index":21588,"location":[7.01221,43.58367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,325],"duration":6.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.152,"geometry_index":21589,"location":[7.012256,43.583623]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[133,144,319],"duration":12.594,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":13.816,"geometry_index":21593,"location":[7.013468,43.582396]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,261],"duration":3.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.695,"geometry_index":21607,"location":[7.017024,43.581573]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,247],"duration":35.926,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":38.594,"geometry_index":21611,"location":[7.01801,43.581824]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,236],"duration":8.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.754,"geometry_index":21619,"location":[7.030111,43.586305]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[40,46,221],"duration":21,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":20.98,"geometry_index":21624,"location":[7.032428,43.587933]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.036728,43.591678],"geometry_index":21627,"admin_index":5,"weight":93.684,"is_urban":false,"turn_weight":1,"duration":90.43,"bearings":[41,214,221],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":6.48,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.797,"geometry_index":21680,"location":[7.06105,43.602773]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,244],"duration":0.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.758,"geometry_index":21685,"location":[7.062876,43.603516]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,246],"duration":10.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.09,"geometry_index":21687,"location":[7.063076,43.603581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,265],"duration":3.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.039,"geometry_index":21695,"location":[7.066278,43.604152]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[92,101,272],"duration":8.605,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":9.246,"geometry_index":21699,"location":[7.067449,43.604175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,286],"duration":4.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.988,"geometry_index":21706,"location":[7.070071,43.603878]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,291],"duration":6.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.25,"geometry_index":21709,"location":[7.071423,43.603525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,292],"duration":5.012,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.363,"geometry_index":21711,"location":[7.073286,43.602958]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,284],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.062,"geometry_index":21714,"location":[7.074659,43.602683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,279],"duration":1.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.062,"geometry_index":21715,"location":[7.07515,43.602626]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,278],"duration":4.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.758,"geometry_index":21716,"location":[7.075646,43.602577]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,275],"duration":2.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.602,"geometry_index":21717,"location":[7.076579,43.602518]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,272],"duration":2.594,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.766,"geometry_index":21718,"location":[7.077083,43.602505]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,270],"duration":10.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":10.781,"geometry_index":21719,"location":[7.077331,43.602506]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.078301,43.60255],"geometry_index":21721,"admin_index":5,"weight":17.727,"is_urban":true,"toll_collection":{"name":"Antibes","type":"toll_booth"},"turn_weight":15,"duration":2.535,"bearings":[87,267],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,267],"duration":4.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.188,"geometry_index":21723,"location":[7.078679,43.602566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,258],"duration":6.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.949,"geometry_index":21725,"location":[7.079395,43.602655]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,256],"duration":5.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.156,"geometry_index":21726,"location":[7.08034,43.602826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,256],"duration":13.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":15.039,"geometry_index":21728,"location":[7.08118,43.602978]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.988,"geometry_index":21731,"location":[7.083261,43.603268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,260],"duration":2.223,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.445,"geometry_index":21732,"location":[7.083493,43.603299]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,260],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.879,"geometry_index":21733,"location":[7.084101,43.603373]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,261],"duration":0.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.195,"geometry_index":21734,"location":[7.084324,43.6034]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.084375,43.603406],"geometry_index":21735,"admin_index":5,"weight":1.957,"is_urban":true,"turn_weight":0.5,"duration":1.344,"bearings":[79,253,261],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":4.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.828,"geometry_index":21736,"location":[7.084679,43.60345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,259],"duration":6.066,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.645,"geometry_index":21737,"location":[7.085626,43.603584]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":14.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":15.703,"geometry_index":21741,"location":[7.087341,43.604015]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":65.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":70.418,"geometry_index":21745,"location":[7.091052,43.605551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,247],"duration":1.168,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.227,"geometry_index":21767,"location":[7.108633,43.61159]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,247],"duration":8.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.66,"geometry_index":21768,"location":[7.10892,43.61168]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,236],"duration":3.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.082,"geometry_index":21772,"location":[7.111019,43.612582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,231],"duration":101.934,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":104.484,"geometry_index":21774,"location":[7.11171,43.612973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,248],"duration":44.633,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":45.727,"geometry_index":21817,"location":[7.122555,43.632361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,216],"duration":4.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.656,"geometry_index":21841,"location":[7.130201,43.640565]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":0.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.281,"geometry_index":21845,"location":[7.131103,43.641375]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[42,46,220],"duration":18.246,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.695,"geometry_index":21846,"location":[7.131162,43.641426]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":17.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.188,"geometry_index":21851,"location":[7.134969,43.644452]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,223],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":3.234,"geometry_index":21854,"location":[7.138606,43.647319]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":36.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":38.789,"geometry_index":21855,"location":[7.139244,43.647829]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":23.418,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":25.18,"geometry_index":21864,"location":[7.146167,43.654646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,229],"duration":9.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":10.359,"geometry_index":21881,"location":[7.149609,43.659279]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.152189,43.660295],"geometry_index":21892,"admin_index":5,"weight":6.352,"is_urban":true,"turn_weight":0.5,"duration":5.336,"bearings":[71,239,251],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,257],"duration":62.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":67.336,"geometry_index":21897,"location":[7.153742,43.660616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":2.004,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.156,"geometry_index":21930,"location":[7.172249,43.662778]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,254],"duration":64.34,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":70.773,"geometry_index":21932,"location":[7.172833,43.662902]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[78,260],"duration":5.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.453,"geometry_index":21956,"location":[7.1912,43.666539]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.192864,43.666814],"geometry_index":21958,"admin_index":5,"weight":5.789,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":5.172,"bearings":[71,80,256],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[68,249],"duration":6.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":7.367,"geometry_index":21960,"location":[7.194157,43.667142]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[67,248],"duration":3.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.719,"geometry_index":21962,"location":[7.195771,43.667614]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.196534,43.667843],"geometry_index":21963,"admin_index":5,"weight":11.391,"is_urban":true,"turn_weight":0.5,"duration":9.688,"bearings":[68,242,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.198904,43.668557],"geometry_index":21965,"admin_index":5,"weight":2.023,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":1.809,"bearings":[67,72,247],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[65,247],"duration":16.902,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":19.016,"geometry_index":21966,"location":[7.199344,43.668694]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[172,346],"duration":1.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":1.82,"geometry_index":21985,"location":[7.201668,43.671364]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,338],"duration":6.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":7.219,"geometry_index":21987,"location":[7.201546,43.671676]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[133,312],"duration":0.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.656,"geometry_index":21996,"location":[7.20053,43.672711]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,312],"duration":0.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.805,"geometry_index":21997,"location":[7.200413,43.672786]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[132,312],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":2.68,"geometry_index":21998,"location":[7.200268,43.67288]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.199773,43.6732],"geometry_index":22000,"admin_index":5,"weight":15.102,"is_urban":true,"mapbox_streets_v8":{"class":"motorway"},"duration":13.141,"bearings":[132,313,322],"out":1,"in":0,"turn_duration":0.007,"classes":["motorway"],"entry":[false,true,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[137,319],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":0.047,"geometry_index":22006,"location":[7.196955,43.675242]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.196943,43.675252],"geometry_index":22007,"admin_index":5,"weight":6.055,"is_urban":true,"turn_weight":1.4,"duration":3.969,"bearings":[130,139,320],"out":2,"in":1,"turn_duration":0.007,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[144,324],"duration":2.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":3.219,"geometry_index":22010,"location":[7.196179,43.675952]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[147,329],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":7.68,"geometry_index":22012,"location":[7.195696,43.676475]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.194717,43.677795],"geometry_index":22016,"admin_index":5,"weight":8.07,"is_urban":true,"turn_weight":0.5,"duration":6.59,"bearings":[144,154,337],"out":2,"in":1,"turn_duration":0.008,"classes":["motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[161,342],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":2.891,"geometry_index":22020,"location":[7.193953,43.679218]},{"entry":[false,true],"classes":["motorway"],"in":0,"bearings":[163,343],"duration":48.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":55,"geometry_index":22022,"location":[7.193709,43.679778]},{"entry":[false,true,true],"classes":["motorway"],"in":0,"bearings":[172,353,358],"duration":15.738,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":17.305,"geometry_index":22036,"location":[7.189897,43.690765]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":41.398,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":1,"weight":60.539,"geometry_index":22039,"location":[7.189261,43.694343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,180],"duration":3.355,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.609,"geometry_index":22057,"location":[7.188316,43.703803]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,190],"duration":1.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.32,"geometry_index":22059,"location":[7.18843,43.704535]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,196],"duration":2.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.484,"geometry_index":22060,"location":[7.18853,43.704793]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[26,41,204],"duration":4.301,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.617,"geometry_index":22062,"location":[7.188784,43.705244]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,213],"duration":3.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.375,"geometry_index":22066,"location":[7.189354,43.705968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,219],"duration":10.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":11.289,"geometry_index":22069,"location":[7.189868,43.706447]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":5.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.234,"geometry_index":22072,"location":[7.190762,43.707133]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":0.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.859,"geometry_index":22074,"location":[7.191304,43.707476]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.19138,43.707521],"geometry_index":22075,"admin_index":5,"weight":15.984,"is_urban":true,"toll_collection":{"name":"Nice Saint-Isidore","type":"toll_booth"},"turn_weight":15,"classes":["toll","motorway"],"turn_duration":15,"duration":15.918,"bearings":[53,231],"out":0,"in":1,"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,233],"duration":4.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.172,"geometry_index":22076,"location":[7.191655,43.707669]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,241],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.602,"geometry_index":22079,"location":[7.1932,43.708375]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.194024,43.708661],"geometry_index":22081,"admin_index":5,"weight":4.016,"is_urban":true,"turn_weight":0.8,"duration":3.012,"bearings":[64,237,245],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,244],"duration":11.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.43,"geometry_index":22082,"location":[7.194744,43.708912]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,246],"duration":72.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":74.742,"geometry_index":22083,"location":[7.197836,43.709924]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,357],"duration":7.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":1,"weight":7.641,"geometry_index":22131,"location":[7.21352,43.7159]},{"tunnel_name":"Tunnel de Canta-Galet","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[17,195],"duration":19.645,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":19.641,"geometry_index":22137,"location":[7.21368,43.717596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,225],"duration":8.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.375,"geometry_index":22145,"location":[7.217384,43.721144]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,258],"duration":19.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":19.227,"geometry_index":22155,"location":[7.219649,43.721959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,262],"duration":15.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":16.18,"geometry_index":22156,"location":[7.225626,43.722596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,215],"duration":6.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.734,"geometry_index":22170,"location":[7.229552,43.724555]},{"tunnel_name":"Tunnel de Saint-Pierre de Féric","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[46,227],"duration":8.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.141,"geometry_index":22174,"location":[7.230902,43.725678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,224],"duration":15.105,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.859,"geometry_index":22179,"location":[7.232893,43.727076]},{"tunnel_name":"Tunnel de Pessicart","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[37,217],"duration":22.762,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":23.328,"geometry_index":22187,"location":[7.235761,43.729857]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.852,"geometry_index":22197,"location":[7.240647,43.733508]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,239],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.883,"geometry_index":22199,"location":[7.241363,43.733832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":10,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":10.25,"geometry_index":22200,"location":[7.241587,43.733926]},{"tunnel_name":"Tunnel de Las Planas","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[78,257],"duration":44.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":46.883,"geometry_index":22209,"location":[7.244456,43.734755]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[161,342],"duration":2.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.672,"geometry_index":22228,"location":[7.255478,43.73171]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[156,166,341],"duration":6.293,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.898,"geometry_index":22229,"location":[7.255689,43.731266]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[143,327],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.07,"geometry_index":22234,"location":[7.256516,43.730084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[137,321],"duration":8.027,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.828,"geometry_index":22236,"location":[7.256864,43.72976]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.25882,43.728771],"geometry_index":22246,"admin_index":5,"weight":2.461,"is_urban":true,"turn_weight":0.5,"duration":1.805,"bearings":[109,284,293],"out":0,"in":2,"turn_duration":0.026,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[102,287],"duration":9.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":11.031,"geometry_index":22248,"location":[7.259323,43.728651]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,259],"duration":8.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":9.406,"geometry_index":22257,"location":[7.262243,43.728678]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[66,251],"duration":12.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":14.617,"geometry_index":22261,"location":[7.264685,43.7291]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[46,223],"duration":6.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":6.891,"geometry_index":22271,"location":[7.267482,43.731008]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[74,251],"duration":1.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.211,"geometry_index":22278,"location":[7.269014,43.731715]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[78,254],"duration":4.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.398,"geometry_index":22279,"location":[7.269321,43.731777]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,270],"duration":4.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.086,"geometry_index":22284,"location":[7.270802,43.731879]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[89,269],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.797,"geometry_index":22285,"location":[7.272206,43.731891]},{"tunnel_name":"Tunnel de Cap de Croix","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[90,269],"duration":16.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":17.953,"geometry_index":22286,"location":[7.272689,43.731895]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[75,261],"duration":7.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":8.555,"geometry_index":22297,"location":[7.277724,43.731626]},{"tunnel_name":"Tunnel de la Baume","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[62,241],"duration":13.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":14.508,"geometry_index":22303,"location":[7.279854,43.732302]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,255],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.289,"geometry_index":22311,"location":[7.283765,43.733368]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[76,257],"duration":4.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.492,"geometry_index":22313,"location":[7.284105,43.733427]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[83,94,261],"duration":4.688,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":5.148,"geometry_index":22318,"location":[7.285335,43.733595]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[95,273],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":3.375,"geometry_index":22323,"location":[7.286785,43.73364]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[106,283],"duration":1.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":1.875,"geometry_index":22328,"location":[7.287779,43.73353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,287],"duration":12.102,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":28.312,"geometry_index":22330,"location":[7.288313,43.733417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":2.062,"geometry_index":22338,"location":[7.292112,43.732686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":0.445,"geometry_index":22340,"location":[7.292715,43.732598]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,279],"duration":3.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":4.227,"geometry_index":22341,"location":[7.292835,43.732584]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.293993,43.732437],"geometry_index":22343,"admin_index":5,"weight":3.773,"is_urban":true,"turn_weight":0.5,"duration":3,"bearings":[98,275,280],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"tunnel_name":"Tunnel du Paillon","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[96,277],"duration":15.941,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":17.141,"geometry_index":22345,"location":[7.29488,43.732353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,274],"duration":11.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":5,"out":0,"weight":12.617,"geometry_index":22347,"location":[7.299868,43.732005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,272],"duration":50.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":51.742,"geometry_index":22353,"location":[7.303595,43.731991]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":0.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.391,"geometry_index":22379,"location":[7.318876,43.734917]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,234],"duration":1.316,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.312,"geometry_index":22380,"location":[7.318974,43.734968]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,232],"duration":8.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.055,"geometry_index":22381,"location":[7.319311,43.735159]},{"tunnel_name":"Tunnel du Rosti","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[46,225],"duration":9.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.648,"geometry_index":22384,"location":[7.321207,43.736435]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":11.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.664,"geometry_index":22385,"location":[7.323465,43.738005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":26.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":25.852,"geometry_index":22387,"location":[7.326137,43.739855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,244],"duration":2.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.719,"geometry_index":22401,"location":[7.33398,43.741965]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":38.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":36.625,"geometry_index":22404,"location":[7.334756,43.742278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.25,"geometry_index":22430,"location":[7.346278,43.743787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,246],"duration":18.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.047,"geometry_index":22431,"location":[7.346354,43.743812]},{"tunnel_name":"Tunnel de la Borne Romaine","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[101,283],"duration":29.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":26.969,"geometry_index":22447,"location":[7.352027,43.743546]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,247],"duration":16.559,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":15.32,"geometry_index":22459,"location":[7.361128,43.74447]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","slight right"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[105,280],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"geometry_index":22475,"location":[7.365985,43.745371]}],"bannerInstructions":[{"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":206622.5},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"rectangle-green","display_ref":"E80","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"E 80"}],"type":"fork","modifier":"left","text":"E 80"},"distanceAlongGeometry":1609.344}],"destinations":"Aix en Provence, Toulon, Nice","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A 8/E 80/La Provençale toward Aix en Provence/Toulon/Nice.","modifier":"slight left","bearing_after":158,"bearing_before":160,"location":[5.228036,43.56103]},"speedLimitSign":"vienna","name":"La Provençale","weight_typical":7330.254,"duration_typical":7368.379,"duration":7368.379,"distance":206622.5,"driving_side":"right","weight":7330.305,"mode":"driving","ref":"A 8; E 80","geometry":"kcwarAg_b~HjX_MvsAwh@bbAeb@zbAwd@rcAgc@fb@{Snb@mX`MuJ`]e[|QkUfSuXx`@}n@vXsm@rUoq@nRmt@nMmq@xIws@zEim@vA}[zAg{@O_r@cCsq@cC_i@mh@uyGqBoWkPgwBoUkwCkLqxAkKowAs@kKyH{fA}MkwBkKykBgIq`BkFakAyEejAmEujA{D}iAkD}jAwCyiAcCygAyBueA{AgbAqAq{@qBwmB?Aq@kw@g@ou@k@geBSehBLuqBPqz@`@my@Vcb@PcXHaKv@obA`AkaAxAqaAzAicAtEexBpBa{@`C_{@dFk`BvCuz@`Dgz@dHo`BzIejBxRiqD`S{oDr@}MzYimFxN_gCbMsxBhEyo@rEan@tCw]tC{[nEgd@tFof@~CwV`BmMlHwg@`Isg@pJui@fMup@xK_i@lMyj@~Mej@`L_b@dQgm@tMkb@zLa_@tMk^lPcd@nSug@hTsg@bW_k@hYkm@|Xik@vYyk@vUkd@xSq`@nv@uwAjm@ckAdVoe@n^it@rc@w_AnTkf@vOs^zOe`@hNu]p\\a}@`Mm]nL_]fNwa@tM{a@lMab@xLoa@tYsdAdX}dA~UqcAbJqa@pI{`@zRs`AzQeaAjYg~AlVcyAt`@oeCx_@cfCd`AwmGlN_aAzMubAjN{hA|KucAfD{\\zCm\\zCa^pCa^lCu`@fC_a@vB_`@jBm_@fBab@~Agb@xAoa@lAw`@bCqdAvBkeA~MccIbC{nAlByz@xB_x@nCiy@~Cgy@zAc]|A_\\rCgh@~Cuf@jFat@dGus@|Eih@jFig@hK{{@nLkz@vFk_@~Fe_@dPq~@bLyk@|Lyk@dKud@zJma@jJa_@pLmc@bMsc@vDeMnHkV`N_d@hZq|@~Z}z@|EcMdSch@`Rcf@xTqj@xi@kpApkC{iGjbAaiCz_@alAvJy\\zNgi@hKua@~G_ZrGoZ`Iob@zHac@|C}QpGwc@rFoc@|G}m@tCu[xEmn@ZcFxC_g@jC{h@`G{vA~CsoAdDer@hEun@`Dwd@vD_^xB}QbCcRtJgp@~G}_@xIa`@lDgOhEuO`DsKvEkPnQmk@rYav@`^yt@l\\mk@`SqZjYmc@|m@s`AzIqNl`@gm@jf@kw@bZ{h@f]cz@hRei@pLof@zK{g@~Iol@xEuc@lEgl@xEk_AxBsl@rFczBd@im@c@o}@cEonBcFsgC{A}`BiFcuFkAygAiAkdAuAey@cB_t@wIghCqXajFaEiw@_Dwt@{EihBsA_l@cA}y@u@gm@i@agA?w}Az@w_BnD}lCV{TbCotAzDorAdHysB`GouBv@{lAkAceAmCidAmDyvAOm[N}Tj@yTtAkZxBqXfD{YlDsWhH__@rGwWhFiQjKwY~Wsl@j\\kh@b|AkxBpWc^rZec@`Sq[nNaYjLaXvGkQtGsSbGuTnPc`AdEu_@tD_c@lKwdAjDkYtFo[zKki@|WeeA|U_|@jQws@|Jic@pKae@dR_|@lPo`Atm@y~DnTuaAvS_r@pSyj@bCyFhc@_aAbn@qgAdc@sn@v^ic@bg@ug@|KqJzKqJdS{PbZcTpUqPdn@c]fXqLdYiL`XkJtjAw\\hpAm]va@{Mj\\eMhu@s[bm@_\\fw@wg@lw@_r@x[c[rq@_w@vZsa@tZye@l[}h@vSaa@jBsD`IyO~]ox@r[c{@pHsTpXey@zp@{gB`KsYxBiGlYscA`[yyAfEi[fBuUTqFlNkmDzPunFpCahBtA_mBx@w|AzAszCHcQfBujDbB_yDFuLlG}bJNoXlAabBl@y]r@q]~Bes@~D{q@|KknArM{kAb_@obD~Ik_AtHe`AfFk_ArCa_ApAup@Rqp@c@_q@q@yr@qFqaCgFapBiAek@Kuk@h@mk@|@af@z@}c@rCiq@xG_wApWm_H|Om|FrOmfFbIcpBxLwrBdPasBhSytBvZglCf^spCrn@upE|e@_aDni@}gDXcBzm@ipDxq@u|Dlp@i}DdU}|ApP}oAvd@{kEbO_mBlMukBrAeW|FchAbD}t@pAa]~Byn@|DauAtEanC|@sqAZyvB{@gjAmBqrBcDygBoLwaEyIubD_FcmCgAswAYgxAPoyB`@oaBBolAe@}hAaB_w@{Buq@kFq}@iFqp@qJy{@wKuy@cTqvAuLaz@kXwoByIoy@qGg{@cDqf@uBce@gEapAqBwv@oAc_@wB{r@mFydAyGw~@aJoy@gKww@qOk{@eRs|@cPwo@{Qmp@yl@sqBk`@qvAsVgjAeJek@wI{p@cHmw@sEux@}Bsm@oBicA_DeeBiDgoByCihAoFktAsIqtAoKerAkJk}@oK{|@kKit@cLmt@kO{y@cPey@qc@woBg]qwA{g@e{BcLan@}Jiq@yGao@sEio@oCoc@iBee@}@kg@Sqx@t@ux@tBmo@nDio@zEwj@zG{i@bIsn@`Ksm@~]cjBlZ__BhRaiA`OofApIms@`Het@fGk}@dF_cAxBmw@tAgy@RcnA[gp@_Agh@yCeeAyFqfAeHegAkBuUwLstAsNo_BcPanB{D{l@cCgm@uBi{@c@uf@Okf@^an@~Aar@nCyw@bFgw@pGsu@vIot@hK_s@pKen@rPww@jR}v@rVo{@da@gpAd\\a`AxSul@f\\y|@|h@cwA~Yqz@li@g|At[sdAn\\}iAha@k_B`Pet@hNws@~Kyp@nJkp@pGih@jHcr@xDgc@rFes@zEk|@tBgg@pB}y@~@an@^gn@Igk@?s@q@cl@{@es@sBis@qRk}EwAg\\_Gs_BkF}aBcBeaA}@abAQmoBjAe~AdEanBrFsqAxGetA~IguA~Pu}BvO_hBlSizBnT}xB`SkjB~OgvAzg@wbEdUebBhVydBfOoaAnJ}o@zGib@pm@}sDvw@glEnD{Qrk@qxCzq@o`Dbh@{~BjVieAha@{aBvX_fA`]ytArQmn@~h@ioBn[cgAvo@mxBd\\igA~_@ulAjh@s~AxY}z@xW{w@l^{cAl^cbAv[y{@fp@ieBv]q{@puAedDt[cv@f@kAz\\iw@r[es@fYeq@bYcm@lXyn@pmAwnChRaf@vOoa@nIqU~HiUhImYdPuj@~Pir@|FgWpOiu@vMur@fXg{A`_@{aBbRwy@zPyo@~U}s@zVon@j^}y@x\\er@ra@qu@zUs_@|U{]hj@ev@|n@ow@vn@sp@lc@ud@bq@g}@`_@{q@nWgr@pViz@tQoy@nKep@tJix@pHsz@hMcsB|IsuCzEmgDpCgfBvEgtB~LizCpN_kBhM}eApUs{A|TggAhYefA|Tuq@nRmg@pRob@v\\an@r^si@v\\oe@`^gf@hk@g|@|Tyb@dSge@zSgp@xTo`ArVqxAhMc|@rNoz@vLqi@hJmYjRyf@f[ko@r^ep@zq@mrAhf@krArZ{mAdPiy@~Wi_BdPkqAbLwmArIukAlFmjAzCydAdAabAHgkAaA_`AmD_sAuDqz@cHwfAoMgdB}Rs}B_KcmAyGgaAyGcqAyCobAgAqdAEgEjAgzAtF}oAlGsw@zLkeAxYgiBf]wdBx\\__Bf^qaBxYwbBbG_e@t@qF`QcuAbKelBjB}bBe@g}@AmHa@yUsCsjCmAwnBg@}yAt@wwAzBukArJubChLegB~WgkC|QkzAtUshBlPqlAhf@msDrR{~A|R{nB`NkeBpJ}hCpEexCPabAMioAkDktCsGefDkGyeDoBwcCBalBzAuiE?anAm@sx@kBmw@_C_q@qHsiAkKihAec@oyDwZmhCyU_tB_`@cdDkE}`@wAsMoSgpB_Hau@oEgm@oJszAcB}YoDyfAkAu^mAqg@{@_dA@}[d@se@VyOTaN`A{XlAoY~AyVxAkSrCk\\`CwVvMkcA`Lom@rLmk@`R{u@zUk}@n[{rAjN}m@pOi|@xN{iAbEyh@~Cuh@~@m[`Byk@b@gz@y@acA_Cqx@cIelAgLuxAgMq|AuEer@eCwjAAiCQi`AdB_rAjCcn@nJglAvMikAnQopAhKes@tNeaAvJck@nGmi@dIgu@dF{`AbAux@qAkl@eFc}@{Ki~@cL}p@kNes@yN{k@a]_xAsL_x@yD{b@wEsv@cAir@bBw~@lGcw@xHgk@|Nys@pPej@pVwn@zTah@~Tcf@vVek@fUep@jR{p@xPst@jRg_A~Ry`AvMwo@fQgx@zIo^hPwh@`[e}@vH_S~HkSvCwHhQ_i@zYyjA|Loz@jHyfA`D{x@xAam@pBqi@dFol@|Gih@nOiy@hTo~@fNos@bQqeAvKieAjF_fAjCytA`EygBtBqp@b@mNlEocAbF{w@~Gi{@fI{y@`Jox@~Kk_AtMwcAlHgp@zIiw@lIwdA`Ey{@pCmaAf@eo@Akk@i@sz@oBu~@iFw~@gJ{jAsJceAkGup@iMa{AkEmbA_B_r@Cot@fAqx@`Ewt@zIk`AtMu}@tOsw@`Oen@pT}y@dWu{@z]ilA|WegA`Our@xHwj@pJwaA~Fku@`G}`ApJkmApJ}p@nKim@~Nqs@hUuz@nN{s@fJwk@xBqW|GscBs@o`AyDa_AqJ{lAuIafAiKayA}@qM{DefAaBkgBzDghArMmyAjVotA|\\mnAj\\_{@`OeZ`Ued@bg@saA|FuLpVog@z[ew@r]{dAt\\qtAfUctAtQqlBpH{uA`@sv@uDslA{LahAy[{{Aa`@aqAae@qsAkd@e~AcZerAaRelAgIku@sF_x@oCkeAZsoAvCuz@nFyy@jKceAvIiq@vVsfBz]odCrd@w~DbMexApIwrA|FcxAxBgfAZucBqDi|BkJyvCuKkzCiSayFsMeqDaLc~CkGgkBcHspBcDaaAg@eLcEsbAuGyiAkLm~AkHsv@sMg_Aga@u|CiPwiAqRaxA_LadA{@yHuFso@iDci@yCs_Aw@u|@Xuz@~CcmAlKotApHyn@bNuw@~Sqy@dLy[`MkZfd@mdA`Xc|@pT}gApS_qAzPoy@pMwc@lQsf@lPe]dS}]~^se@~HmHpl@cj@`y@gx@xa@cf@fAqAnY}e@`Xak@`^kfAxI{YdLma@dGsYhIob@tHcl@lFsf@rEop@~Aqc@bAck@Y{g@aBqo@eDqe@QaCoGat@_Iqr@_Fcl@yEkj@kC}c@cBwf@uA_h@g@oj@Jaf@?[h@gf@vAog@zBen@dE}cA|Bmv@t@s_@Ha`@Kq]q@}ZiAuWwAkVoDkc@{Fad@}H}e@oJ{c@{N{j@kd@uwA}Uiw@}HiYcGuXaGwZgEcZeDwYiCwZuAwXuAka@[wd@f@ul@bCmg@|D}h@xHwt@hK{r@zIql@`Gsj@rCu]|Byf@d@aSNuSMu`@Yq[uA__@_Dec@gFae@gEcXiDmTkHg^et@_nCyn@qgCyWqfAye@}fCgK_n@gJoo@_Kg~@uF{p@aFsp@sGgmA_EywAaHgrDgDkuB_FajDcDmwCaBwdDi@mkC}DokCkw@gi_@oCci@}Ga~@aLg~@iYiyAaGsWyKy_@cKm[cP{b@wi@usAcuI{yS__@m`A_\\c`A_m@irB{XmhAyYerAuOiz@aHab@_Igj@uH{l@eHot@cF_t@uDso@cCcq@}Acz@e@qz@GabAhB{aAhEahAzHikA~^}`EjC}ZdAsLzAmQvAyRvAqUv@}Rl@iTZmWFsUUgW[oPc@uM_B_[mByUeCsU{CiTmD{TcEeTgGcW{EmQyHwXeW_y@oHaVoHqWyHoX{EwRyEqSsDkR}CeQ_DoR_DoUoDcZ{Cc[oB{UsCq_@sBu]aBuZ}By_@aDon@eCcb@yBsZqB{UaCkSsDmX}C}R}EcUsHa[oHyVuGsRiK{VwEeKaGmLwFqKyIgOaMmSoOmUiOiSuMePaVqXsNcOeTsTuNwMaQuNaSyN{KoHuRmL}OgIePsHe[kKoPsEeQeEeNeC_M}A{P_B}PeAoPe@}OOwQZkMd@mIh@sL|@cPdBoMjB_NbCeP|CeW~F{d@hLa^dKuLzCoR|Eaw@lOuw@~K{n@dHwo@`Ck}@{@{_@aDk^gEei@kJyg@aMie@wQ}e@kTw_@mWm^wY_]a^y\\{`@uYud@{X_g@iUyi@ySym@cXucAsWsaBcJsbAyYm|DkWqqCoKcjAuG_p@cJ{v@wJuv@k^m}B}_@}jByMml@eNei@}Wi|@sYmy@mWio@wVgi@{BgEiQk\\y_@qs@{uBkbDg\\mn@e_@{s@w_@k_AkXcx@uSkt@_AgDam@_xCcQirA{La}A_Gs{AaBolANqoAhJcdGDyeAWgd@kAia@}Bmk@qDqi@}Fsk@eIqk@cLsn@iLci@qR}p@eUmn@Sk@uf@_iAef@wcA{Uuh@wPsc@gOaf@yN}l@uKmn@sIau@uFo|@iAei@Uge@bAin@xB{l@zJegBdE_}@pBsf@d@_g@Tyg@_@eu@cBkv@qBeh@wCum@_Fgs@}For@qJwaAwQm}AwCoTg@oDiHid@eW{}Aud@i`Cin@_dCkVm{@g\\uaAuRcj@mOib@ueAwsCkaAchCiVgu@sV}z@uTa~@{RseAoO{hAyEqa@_Eyb@iDme@qCse@eEclA}Aiy@[{y@d@umAtEshBzHo{AvK_|AxOidBvLmgA|Jcy@vKsz@zW_qBvSo_Bz[a~Bbj@aaEpsAcdKvd@yiDpKc|@`H_~@fCoi@|Aap@`@ex@c@ew@_Boj@_Dmn@eG_n@iF_g@mL_v@oMio@oNgm@md@uaBcp@{vBil@{yBeW{dAuTajAuIof@aI{f@kKgt@_Hei@gGck@yGup@cEwf@oDie@sCkg@{Bm`@gB{a@{Aia@gAmc@eAad@q@ic@e@yp@Owg@G{q@d@}eEFqbBG{s@Qmr@Qk\\w@gx@aAuv@oCenAcB{h@eB{g@oFenA_Dgj@mDql@iD{f@eFqp@cHuz@eIy~@mIy{@qTavBaUkwB{TwvB{Is_AqG_x@eFwr@_Eup@}Baf@gB}b@qAu`@aAia@s@a`@i@qc@]ei@Can@Lug@d@kh@v@wf@pAkh@`Ay\\pA{]jBka@~Bsb@nEyq@nBsWvBsX~JkdA|Dg^tFod@bEe[dOuaA|EyXzFe\\pMip@jJ{c@rJ{`@pLge@zRit@dIuX~IoYbJuYbJaXbQ}f@bPkc@rVco@lVsm@fKiWvgAilCx~@a`Cj\\mz@l~@kkD~UyjAbPeaA|K{z@zCsVfGck@zBkU|Dqd@rDsk@zHs`BjAim@Zyj@_FedFeBys@kD_v@yDse@aEm`@iCuR{Gmc@iKei@gLwd@oZwaAw^c|@mLeVqvDivHwzAszCevA_tCqKeUuIyRyJuUgIsScJyUcIeUsImViHyTcI}V}GyU}Lkc@aJ}]sEqRsGaYU_AwEsVoB_MmKau@wCqSyQupAsM{lAq@mGoOss@ml@cvBcX}wAud@_gCaI}\\kJm]qJaZyP{c@iM_XqI{Po[_h@g[mb@ia@sj@_a@ej@ePcS{ImI{M}LiMkJ{MmI{LkG{MmFeHgCmLaDoKaC{J_BkLqAmIe@mIY{OC{IPkNf@oGp@cIhAcLrBgK`C{LvDeLhE_JfEaHlD}JbGgP~LuqBl~AeKpHgMpImKhGeKhFgLtE{L~D}LxCcM|BwLvAkM`AkMZwL@sMi@{LeAoSkCcZsFydCqe@{|Buc@{LqCkSgG{RmHyLkFwKwFgLkG}KeHcKeH_P{LeLsJ_M{LcVsXaQoUeIqLwHeM_IgNqH{NyOk\\mOq\\q_@wy@aOe\\qGoOoFmNuIqUeG_RyHyVmHmX}GcYkEoSaMqo@wTujAwIuc@sDmQcEgQaFsQeE{MiFyN{F{N_HmO}G_NmHsMuHwLeIgLmJgMqImJqRgRWUwCeCsE{DwFyDgMuIeKcGcIkEmIwDmJwDgBm@eA]qKoDmM}CeOaD_rAaVkOwC{TiE_TiF_RmFsSiHoUmJgI}DwNoH{X{OaMsGwM}Gok@}ZohCcuAcB}@k|BymA{nAaq@_R}JcHcEoGwDmH_FgG}EyGuFsFkFoIyHsGmHeJ{KaIwK}FuIyEcIsL{T_HaOuFaNcF_NqEwM_EkNoDqMmMck@_O{o@cDkMqDcNyFwQmFmO{FoOwFaNaLqUaHoM_I}M_NaSoMsP}KuMaNgNeKkJ}L{JuNiKcMqH}OyI}SoKosAir@wz@ic@}VgN}KgHgLsIgMaLqHoHwIcKyIoLiIeMeHiMkHwNiG}NiGcP_FmN_KwYgd@msAmMi^kGaOuGiNcHsMiHsL{IwMqIoLwHiJ{HoIiH}GqFaFmI{GuJkHiKiHwW}QqjAox@ae@}ZoKsGkL_GeL}EyL_EqLmDiMqCeM{BuMyAeLw@cFWyMa@}LCyMVoMz@sLnAeM`BuMjCgLlCqLrDsSpGsLtDgp@`SkLzCyLjCoSpDgTfC_O~@oRp@kMHgMMmMWoMs@oOwAqQwBeMwB{LcCuLaDaMwDaN_FwJkEuJeEuI}DwBaAsUgLoPiJg[wPi[qRgQeLgo@ib@kfAmx@__Akw@kbAadAiKgMwOsRgE}FsMsQgPqYaPeZmCiGaLwWaP_d@onAi_EuPok@_Pol@qFqXoE{[{@yHiBcPgC{\\cAsXi@kWByKJg_@rBwn@vEek@fI}j@jL{i@h`A}iDdWg}@dWg}@pOet@tIog@pBsL~p@glEtw@edFlUawAlX{eBjAgItFw_@tDwYdB_QtBi^|@{a@@u_@k@yXkBk[mCmYiE{[{E}XyH_[iJgZoHcRgKeUaMuTsJaOs}@wiAqJsN{MwT{NyZkKeZmIo^wFq^sC{]uAgb@Pgb@tA_^nDk]nDmVnFeW~IkXrLm[tMuVvPeUt_@{a@pPePzcAg_AnZcVjE{Ct_@kVduCqfBhUwNfSuOdQ_P`QcRbOwS`NyVzKcWnLs`@hI_c@`Fyb@vBqb@R}a@iAcg@aDs_@eGec@qIs_@cLk`@on@qpBiPsh@sPgi@aLga@iHu^sEuY}Dg^yCmc@sAoh@Gke@bAga@xAo\\fD{]vCeUdFi[lAsHlIu`@|Pmi@vSyi@`iAkoClm@g{AdJkUbK{]lHyZvDeSnDaVdu@ubGhNu}@|TskAjbAq{ElFe^tDc`@rB}b@\\qc@a@sd@qDim@}c@ylDaUq`Bq|@goGiIeo@iDo_@qBq]uAqf@qIa_Gs@yk@Iuc@Ha]d@a^fAgk@nBokArGw`DnCe`BZuu@{Ao}@qDq|@aGco@iHeo@{iCypQi\\gxBgNs~@{Lqr@aPqq@}Pup@yf@wcBsLgf@iMin@uKet@mGij@cDud@oDco@}Asr@Iik@j@}h@vCagA|LepDpAiq@Xqr@}@si@eCch@oF_j@wA_JqGka@cJk^gKm]cJgTcJgSwG{MsHoMaOcUkHqJsPkS{OmQeXoY}a@cd@w{@k_AeMoMwbBoiB}a@gb@}QqQ}McLqUwOsV}MsSmIuPaFyWwFqTaCiTkAi]Nog@jCs_@bCoXZ_Tg@oVmBo\\qFc]aKkW{K}RyKqVcQeR{P}OgPgPqSkOyUuQm\\uLiY}Ms_@yDmMqCcK_CmJwBkJwBqLk@gDkA_HiBuL_CgQqAiMuAiOeAaPs@wNg@eN_@{SK{PFoVX_Px@aWbA{PpBeWnAyM|Gqi@pEc^vBqRjCoXnAsRrAcWx@k[Tc[Gm\\kB}s@cFev@cJmu@qXepA_o@wnBy|@ogCmjAclD{Zg~@_Yyu@oZ{n@i]ef@_^i\\}^{TeTuJuQ}F{]cGywE}\\{`AqQ{s@{V_n@yYop@w_@io@u]e`@}Te_@mXyTgSyVwWed@sg@}GuIsXib@_g@wbA}Tkk@{Ocf@qfAqvD{x@yoCuk@iwAqi@_`Aa@u@qm@uw@or@wp@qpAonA}a@kg@uZuf@iSmb@sQoc@yOog@kSo}@qIok@iC}TyBeTkA{Mw@gLw@eM{@}RK}Bq@gWa@gTk@ik@KgJYcXyA{uAGeGaDoxCm@}wAAoOPyUt@g[rA}WxC{]vBcSfBiMzByN~A_I`A{EjIg_@`EgPpFyP|E}MhHgQpQc_@zKsRlFgIrJ_MzH_KrTkT|A{AzSqRn[iYjQaR|GyIbJuOnHyN~FoO~E{OvDuOzEqXfAqJbAeMj@_M^eTCgPa@iMs@kPWgCw@aIuAaMwCsOoE{SiT{z@ib@ubBe|Ba}Ik^ewAuMgh@yKo_@cRak@gSug@w[oo@}_@un@??}KsOcZ__@m{DiwEuUkX}UaZaNkQ{O_V_EeGcGuJwKkRyGcNeJeRgLmW_IaSiHySaJeYyIk[{FoTwFoWaGeZaF{YuEy[wCsVyDma@iBoTgG{x@yDqd@}AaRmAaLgDmWqDwW}EqYcCkM}Gs\\cHcZaHsWqJ_[_Le[aLoYwM}YiMaWoQc[}LyRoR_YySaYaa@mh@{Vo\\kQwVeQ_XiPaYwNaYgMeWcIaRqNi_@aM_^ue@ctAmo@gkBi_@kgAk@_BsRok@}FsQeGgTiHwYaAyE_AuDeHi^_EyWwC_UgDkYmBeWgBk[oAyVi@gROuF]aSOmUN_VX{Xp@gXr@_Sx@sP|Be\\rDa^dB{MjA}InF}\\dKsj@lVuiA~Jwh@pG{f@pCeV`CwUpBu]`B_^tBiy@Xo^AoNmAat@IqFIuEU}Ou@}Q{ByXuIaz@aEi`@mBeRU{BkBcVaMafB}@oMsC_e@u@}LKeBwA_RkGez@gEu]qCcRaFkYaH_^yGg[eLcd@_IyW__AwlCsaDgeJs}@whCeKsZwH}T}HmWeHcWiGaVeFkUuE_VcEyVeEyXaDiWuCiXcFsh@{Ggs@_Fgh@uF_l@cEoa@aEo]eFi_@uH_c@cFqVsD}PeIa[gJw[iJyYsVqn@iJwScLmUsRa]gS}ZkLsPoR}UsUyWaYeXaR{Os[eT_VsOiYoNoPqHgSkHyVgI}TyFoQoDeSwCyToCkW{BeU_AgoLaNqiAeBoWaAuOwAmQqCsQkE{LeEeQiIuKcGeO}JyM{KkM{LoMiOmLuP{J}PqJaS}I{SkG}QiIeYuGiZwDiT_I}d@{O}|@gDsPuPqt@wKu\\sKeZ{O{]oQy\\yOyUwOwSsNiPeKaKoNmMsTiQoTcNmQcJkSaJ}v@sYa`Ag\\aV}IiNiGyKqFgXeOoVcPuTwPaTiQyJuJcCaCoReTcNgP{J{LeBuB_n@wy@gXa_@sc@gm@cb@sj@cl@gx@kyAmqBan@az@wh@yt@{^{f@kr@{}@iy@w_A_i@cg@yl@ae@gbA{}@g_AgfAq~@ibAqOsL}OyJuK{GeL{FcNiGePgG_}@{]uVqLoTeMaUoNeKqHsIyGsLuJgH{GeG_GoQwR_JuLyKkP}D}HoCoFaFuKkEaK}DaLgEuMgDgLmDqMkDuMkEkRgEySuCqQyBsNmC{Q{B{OeCwUwB}UoAuS}@eTo@cUUgXDmVl@{^z@kYdF{oAjMw~CzEukAvBgl@dAob@`@a]Co]{@}^wAq[mBsVcEq^mC_TwBqNmDsQqDmPiIm\\eIkWyNsc@kKyZ{Wov@wRyk@cKc\\_GuSkFiTeEeT}E}ZkBsNkC{SeAyJkCaX}Co`@yHabAaDe_@gGwr@yHiy@aIey@qUgvBsOsxAuFof@}Du\\{DyYyH_h@iHob@ySkfAeRi_AsJqg@sF_]gF}^iCwTiEsb@iF_s@qIcpAqG_x@sG_n@_PycAoB_KqJag@}Py{@iMun@yNst@y[o}AqGoZyG_YqFmS{F_QkEaKsFyJuEqHcEgFiAuAaJ}IwFcEwFwDsImE_LkDuG}AkJcAiJo@oJDqJj@{GdA{IpBsG`CeFxB_EtByGjEwGlF}EvEeE~EwGxIcHbL}AnCuChF{D`HkFnJsKlRuNdVgOvUqZhe@aSb\\aUt\\_Y``@SVwQrTwIrJgMnMeIhIoUzReOlLsTpOkMvIi]lSm\\|OqTbKmOnGoTdI_WpI_JtCkWlIyt@pUq[|JynB`n@gl@zQ{x@vUol@jP{q@pPio@xNum@jLml@bK}gApPwN`Bof@vFgs@dHu|@`JulBnRatAdOkt@tHuS`BaTx@sTl@w[Dw_Ai@wPKkRDaNj@_WtAyRzBui@nGgXdCoUnBg`@z@y{@fAmNAsYgAcR{CcOgE_PwGeJcFyPeKiEyC_CaBcPqNmHiHiG_HeKyLsKkMuP}UqKqQkGyJaLaUyAwCgHePea@yfAsFkQiAkEiG{UqHs[uN_l@g~@g`EeJw`@oHi_@wD_XaC}SiAiSq@eYBo[lA}d@bG_mAzBmYtCcZzF}_@b^a_BxDwRjBaL`B{JzA{Lz@mIb@oGLqBd@uJZ_OFaQQuNo@wOaBmUsCoWmC{Q}CmQ}CuNsEkPcEoMoD_KyDmJaOiZ_PqWeRgXaSuUqQmRkL}KmNoK}OaK_RoIu[iKmUeEeZmB_`@LefBnGsPl@c[f@oNWyMkAqMyBkNwDyX}IwSiJqU}NsSsRqOgQ}d@kn@ex@{nAiSe[aJePsFqLwEgLqDgLoDgNsBkKqB_MyAuMwAqNu@mKyf@qtJgBsXuAeOsC{UuC_SmE}Q{FuSuF}OmF{LqHuNmJmOyJuLiMeMsUkU_G{FeO_OsMyNyRsVqR}[eJeOgf@ww@aRoZ{KuP_DiEcFsGkGiGeP{Pcg@sh@}TyTa]k]_D_D_k@sl@{u@gx@{l@kt@gVcYuQiWgPuWeP}XqMkV_LyUcK{VkJsViIoT}HgV{D_McGwR}HkZ_FaTwCoNsBuKaDuPwBkNcDaVmCyYsFqr@gEen@}Bqz@c@o}@z@wr@`Cyo@lEwu@lIyhAxJ_|@hGma@fGuYjD_L|EcLnD_GjGkIdMoL~OuJ`\\iMrfAy_@vZeLfY_OxNyH`IaFhHoFlKiJ`IgIdIoJpEgGRWlHaLtFsJfEwIdD_IhFeOdFmPpEsP~CqOlB_L`CmQjB{Tx@oOt@}UFgPKaUk@uR{@mTqAiTsAmRg@}GgQmqBqBoOiBwKoCgMmDcNyDkLmF_MyGcNgGeKcI_Lit@ey@qJaM_CoDiF}HeIyOqF}LeEsLcDeLkCuLmBqM{BeRw@gIy@kLq@aSc@cWCwWWwvAGe]?uY\\}[`Ag\\~AqW`Cga@lEmq@lAo`@PyZAk\\]qPu@iKaCcTuD}TmDwRwFuTqH{VwHwWcFkQcHsXuIm_@aLmn@yDwUaFw\\aHcj@uC}Wg@aFmAeMuA_NmAmOkAgQs@eMk@_LgAiZYsNQ_SDaKRsNTcMb@sKt@_M~@aMj@iFj@iFtDaY|CgTnGsf@rE}^zD}\\nEcb@bFah@tC{[l@sHx@aKtBsXZoFrB}\\pDmi@zAy\\jAsXrSq`Hb@eUJqPCgVKsv@Mqp@N_p@\\}d@Nek@Gqf@Yeu@{A{n@_Gk_BoCgf@}Foy@iG}p@gHyo@_J{r@mHee@yHcj@sGmb@sHgj@_E_YgCsP{E_Z}DoUoE_W}EgUgEiP}I{Z}GiRgLmZsFaNmHcQeBcE}JaTuLsT{e@yy@eZae@caBclCk`Aq}Agq@mgA}MwTeIaNoPw_@oI{WyIu_@wGa`@_Ema@mE{n@eK_fByCg\\eFqc@iEwYcIoa@cEsPoC{KmImXsCeIqJuX_Yes@qN_b@kEwM}EyR}DsT{C}SiBmQcAmUMsVj@kWxBu^nPmiAxGab@`Fab@tA_Up@}X?{X_AeUoCgYaDaTuCmNuIy^yJ_]iHeY}DgQq@wCeJei@eCmUwBo[m@yQI{UPwZfBs\\bBeTpCeUhB_MxDkVxDuXdBiMtA}JpA_MrAuNnA_PtAi[Cs`@q@_m@iAoq@}E{pAaL{aBuHabAcGaw@iG_j@cFg[uDgQcLo^{Jm[aFwPuAgGqAoFsFc[uBwPkC_XuAsR_AsN{@oZWmWTmR\\uMh@kI`@qFn@aHpB_PtCeR`EuS"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 101 miles.","announcement":"Continue for 101 miles.","distanceAlongGeometry":162026.625},{"ssmlAnnouncement":"In 1 mile, Keep left to take A26.","announcement":"In 1 mile, Keep left to take A26.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A26.","announcement":"In a half mile, Keep left to take A26.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A26 toward ALESSANDRIA, MILANO.","announcement":"Keep left to take A26 toward ALESSANDRIA, MILANO.","distanceAlongGeometry":180}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.36704,43.745118],"geometry_index":22479,"admin_index":5,"weight":23.828,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":25.09,"bearings":[114,125,292],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,277],"duration":0.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.859,"geometry_index":22494,"location":[7.374556,43.743787]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.484,"geometry_index":22495,"location":[7.374828,43.743765]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,276],"duration":4.969,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.828,"geometry_index":22496,"location":[7.374949,43.743756]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,275],"duration":18.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.898,"geometry_index":22497,"location":[7.375629,43.743716]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,257],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.266,"geometry_index":22503,"location":[7.378152,43.743645]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,250],"duration":0.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.617,"geometry_index":22504,"location":[7.378187,43.743654]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.378272,43.743672],"geometry_index":22505,"admin_index":5,"weight":15.352,"is_urban":false,"toll_collection":{"name":"La Turbie","type":"toll_booth"},"turn_weight":15,"duration":0.359,"bearings":[73,254],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":0.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.266,"geometry_index":22506,"location":[7.378318,43.743682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":12.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.281,"geometry_index":22507,"location":[7.378355,43.74369]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,235],"duration":9.586,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.32,"geometry_index":22511,"location":[7.378968,43.743907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,233],"duration":5.117,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.977,"geometry_index":22516,"location":[7.38037,43.744745]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.195,"geometry_index":22518,"location":[7.381432,43.745298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,236],"duration":1.703,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.656,"geometry_index":22520,"location":[7.381938,43.745557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,236],"duration":12.371,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.062,"geometry_index":22522,"location":[7.382476,43.745819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,247],"duration":10.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.766,"geometry_index":22536,"location":[7.386806,43.747118]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,228],"duration":35.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":34.281,"geometry_index":22547,"location":[7.389451,43.748388]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,259],"duration":1.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.086,"geometry_index":22564,"location":[7.397539,43.753943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,265],"duration":4.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.148,"geometry_index":22566,"location":[7.397899,43.753966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[105,282],"duration":4.551,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.43,"geometry_index":22571,"location":[7.399274,43.75388]},{"tunnel_name":"Tunnel du Col de Guerre","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[119,293],"duration":11.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.148,"geometry_index":22575,"location":[7.40057,43.75354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,299],"duration":18.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.625,"geometry_index":22576,"location":[7.403742,43.752278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":40.59,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":40.578,"geometry_index":22588,"location":[7.409873,43.751416]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.422088,43.755483],"geometry_index":22616,"admin_index":5,"weight":8.234,"is_urban":false,"turn_weight":1,"duration":7.242,"bearings":[39,208,218],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"tunnel_name":"Tunnel de L'Arme","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[53,230],"duration":38.527,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":37.562,"geometry_index":22621,"location":[7.423762,43.75677]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":5.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.016,"geometry_index":22635,"location":[7.436987,43.758786]},{"tunnel_name":"Tunnel Ricard","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[91,272],"duration":14.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":13.82,"geometry_index":22637,"location":[7.43866,43.758766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,242],"duration":6.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.242,"geometry_index":22645,"location":[7.443551,43.759173]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[47,227],"duration":2.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.391,"geometry_index":22651,"location":[7.445168,43.760088]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,227],"duration":7.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.844,"geometry_index":22653,"location":[7.445698,43.760445]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.447073,43.761529],"geometry_index":22658,"admin_index":5,"weight":32.703,"is_urban":false,"turn_weight":1,"duration":33.402,"bearings":[31,208,217],"out":0,"in":2,"turn_duration":0.028,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[2,180],"duration":11.738,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.148,"geometry_index":22680,"location":[7.449352,43.769045]},{"tunnel_name":"Tunnel de la Coupière","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[4,187],"duration":30.863,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":28.547,"geometry_index":22687,"location":[7.450134,43.771784]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[1,176],"duration":4.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.195,"geometry_index":22699,"location":[7.448848,43.779084]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,192],"duration":9.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.812,"geometry_index":22703,"location":[7.449015,43.780165]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[45,223],"duration":6.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":6.148,"geometry_index":22711,"location":[7.450527,43.782134]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,233],"duration":2.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.398,"geometry_index":22716,"location":[7.452242,43.783181]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[57,237],"duration":13.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.164,"geometry_index":22718,"location":[7.452983,43.78355]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,259],"duration":19.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":18.375,"geometry_index":22726,"location":[7.457187,43.784803]},{"tunnel_name":"Tunnel du Col de Garde","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[60,248],"duration":8.145,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.945,"geometry_index":22738,"location":[7.463707,43.785409]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[54,239],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.938,"geometry_index":22740,"location":[7.466117,43.786426]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[53,234],"duration":18.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.969,"geometry_index":22741,"location":[7.466392,43.786569]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[50,231],"duration":2.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.664,"geometry_index":22746,"location":[7.471392,43.789415]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[48,230],"duration":8.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.914,"geometry_index":22747,"location":[7.472118,43.789858]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[38,222],"duration":0.707,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.688,"geometry_index":22752,"location":[7.474082,43.791239]},{"tunnel_name":"Tunnel de Sainte Lucie","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[36,218],"duration":5.715,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.57,"geometry_index":22753,"location":[7.474229,43.791375]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[20,203],"duration":18.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.586,"geometry_index":22757,"location":[7.47517,43.792571]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,241],"duration":0.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.219,"geometry_index":22772,"location":[7.477994,43.79619]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[63,243],"duration":11.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":11.305,"geometry_index":22773,"location":[7.478057,43.796213]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[82,259],"duration":0.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.477,"geometry_index":22778,"location":[7.481692,43.796991]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[81,89,262],"duration":9.477,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.234,"geometry_index":22779,"location":[7.481834,43.797006]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.484826,43.797187],"geometry_index":22786,"admin_index":5,"weight":18.516,"is_urban":false,"turn_weight":16,"duration":2.598,"bearings":[89,265,270],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,271],"duration":0.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.367,"geometry_index":22788,"location":[7.485674,43.797186]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":0.949,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.922,"geometry_index":22789,"location":[7.485796,43.797182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,273],"duration":17.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":17.328,"geometry_index":22790,"location":[7.486112,43.79717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[119,297],"duration":4.113,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.008,"geometry_index":22802,"location":[7.491678,43.796202]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[123,301],"duration":2.57,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":2.508,"geometry_index":22804,"location":[7.492799,43.79574]},{"tunnel_name":"Tunnel de Castellar","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[123,303],"duration":22.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.203,"geometry_index":22806,"location":[7.49348,43.79542]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,274],"duration":1.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":1.625,"geometry_index":22816,"location":[7.500086,43.793574]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":5.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.922,"geometry_index":22817,"location":[7.50056,43.79356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":5.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.047,"geometry_index":22822,"location":[7.502458,43.793554]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":4.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":4.078,"geometry_index":22825,"location":[7.504019,43.793559]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":5.301,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.172,"geometry_index":22828,"location":[7.505279,43.793517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":0.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.32,"geometry_index":22831,"location":[7.506943,43.793417]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,276],"duration":23.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":22.578,"geometry_index":22832,"location":[7.507048,43.793409]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[129,309],"duration":8.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":8.375,"geometry_index":22845,"location":[7.513507,43.791343]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,292],"duration":13.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":12.688,"geometry_index":22851,"location":[7.515765,43.790353]},{"tunnel_name":"Tunnel du Peyronnet","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[85,263],"duration":5.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":5.375,"geometry_index":22860,"location":[7.519695,43.790291]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,274],"duration":10.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.859,"geometry_index":22864,"location":[7.521464,43.790306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,290],"duration":0.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":0.898,"geometry_index":22872,"location":[7.524231,43.789766]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,291],"duration":8.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":7.898,"geometry_index":22873,"location":[7.524477,43.789699]},{"tunnel_name":"Tunnel de la Giraude","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[107,287],"duration":10.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":5,"out":0,"weight":9.586,"geometry_index":22877,"location":[7.526662,43.789166]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.529787,43.788623],"geometry_index":22883,"admin_index":5,"weight":3780.656,"is_urban":false,"turn_weight":3775.554,"duration":5.52,"bearings":[96,276],"out":0,"in":1,"classes":["tunnel","toll","motorway"],"entry":[true,false],"tunnel_name":"Galleria di Cima Giralda (W)"},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,262],"duration":10.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.695,"geometry_index":22888,"location":[7.531503,43.788635]},{"tunnel_name":"Galleria Grimaldi (W)","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[78,258],"duration":29.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":27.352,"geometry_index":22890,"location":[7.534349,43.789055]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[107,285],"duration":5.082,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.703,"geometry_index":22899,"location":[7.543821,43.789515]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[113,290],"duration":6.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.953,"geometry_index":22901,"location":[7.545233,43.789178]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[121,301],"duration":2.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.43,"geometry_index":22905,"location":[7.546929,43.788578]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[122,302],"duration":19.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.75,"geometry_index":22907,"location":[7.547586,43.788288]},{"tunnel_name":"Galleria Mortola","entry":[true,false],"classes":["tunnel","motorway"],"in":1,"bearings":[77,263],"duration":3.777,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.492,"geometry_index":22919,"location":[7.55278,43.78701]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,250],"duration":7.605,"turn_weight":15,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.031,"geometry_index":22922,"location":[7.553793,43.787234]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,223],"duration":8.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.57,"geometry_index":22929,"location":[7.555482,43.788116]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,196],"duration":6.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.805,"geometry_index":22936,"location":[7.55654,43.789632]},{"tunnel_name":"Galleria Belvedere","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[10,190],"duration":14.066,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.008,"geometry_index":22939,"location":[7.556852,43.790828]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":10.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.023,"geometry_index":22943,"location":[7.557916,43.79374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,207],"duration":2.879,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.664,"geometry_index":22948,"location":[7.559344,43.795939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,210],"duration":26.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":24.93,"geometry_index":22949,"location":[7.559737,43.796436]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,271],"duration":2.699,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.5,"geometry_index":22962,"location":[7.565694,43.799086]},{"tunnel_name":"Galleria San Bartolomeo I","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[100,280],"duration":13.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.188,"geometry_index":22965,"location":[7.566435,43.799015]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,304],"duration":12.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.969,"geometry_index":22973,"location":[7.569904,43.797849]},{"tunnel_name":"Galleria del Monte","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[108,294],"duration":69.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":65.703,"geometry_index":22978,"location":[7.572335,43.796871]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":13.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.453,"geometry_index":22992,"location":[7.590763,43.79935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,250],"duration":5.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.883,"geometry_index":22993,"location":[7.592109,43.7997]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[78,103,254],"duration":27.086,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.398,"geometry_index":22994,"location":[7.592486,43.79978]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.594553,43.800199],"geometry_index":22998,"admin_index":6,"weight":32.547,"is_urban":false,"toll_collection":{"name":"Ventimiglia - Confine di stato","type":"toll_booth"},"turn_weight":15,"duration":18,"bearings":[67,253],"out":0,"in":1,"classes":["toll","motorway"],"entry":[true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,235],"duration":4.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.289,"geometry_index":23005,"location":[7.595275,43.800542]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.595919,43.800719],"geometry_index":23006,"admin_index":6,"weight":17.164,"is_urban":false,"turn_weight":1,"duration":16.59,"bearings":[71,242,249],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,252],"duration":1.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.781,"geometry_index":23009,"location":[7.599511,43.801587]},{"tunnel_name":"Galleria di Siestro","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[70,254],"duration":78.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":76.797,"geometry_index":23010,"location":[7.599952,43.801681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":6.137,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.984,"geometry_index":23022,"location":[7.622375,43.802255]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,277],"duration":0.52,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.508,"geometry_index":23025,"location":[7.624022,43.802099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,278],"duration":35.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":35.062,"geometry_index":23026,"location":[7.624181,43.802083]},{"tunnel_name":"Galleria Colle Aprosio","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[101,282],"duration":31.566,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":30.773,"geometry_index":23034,"location":[7.635202,43.800678]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[76,261],"duration":21.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.602,"geometry_index":23041,"location":[7.645461,43.800161]},{"tunnel_name":"Galleria di Monte Bauso","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[85,266],"duration":17.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.648,"geometry_index":23049,"location":[7.652184,43.801123]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,280],"duration":9.809,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.562,"geometry_index":23056,"location":[7.657817,43.800826]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,279],"duration":17.551,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.109,"geometry_index":23058,"location":[7.660729,43.800496]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,280],"duration":6.543,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.375,"geometry_index":23060,"location":[7.665987,43.799843]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,282],"duration":5.277,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.148,"geometry_index":23062,"location":[7.667926,43.799592]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,286],"duration":2.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.727,"geometry_index":23066,"location":[7.669479,43.799283]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[115,294],"duration":6.449,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.281,"geometry_index":23068,"location":[7.670299,43.799061]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[131,311],"duration":13.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.203,"geometry_index":23072,"location":[7.671956,43.798264]},{"tunnel_name":"Galleria di Bordighera","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[126,311],"duration":12.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.531,"geometry_index":23073,"location":[7.675053,43.796306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[128,306],"duration":16.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.43,"geometry_index":23074,"location":[7.678392,43.794547]},{"tunnel_name":"Galleria Madonna della Ruota","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[96,279],"duration":15.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.641,"geometry_index":23085,"location":[7.682688,43.792897]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,233],"duration":11.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.391,"geometry_index":23096,"location":[7.687333,43.793791]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,206],"duration":3.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.68,"geometry_index":23105,"location":[7.689251,43.79563]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,204],"duration":0.504,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.461,"geometry_index":23107,"location":[7.68973,43.796411]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,206],"duration":16.199,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.961,"geometry_index":23108,"location":[7.689796,43.79651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,212],"duration":4.602,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.25,"geometry_index":23113,"location":[7.691794,43.799257]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":4.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.336,"geometry_index":23116,"location":[7.692508,43.79996]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":27.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.148,"geometry_index":23119,"location":[7.693311,43.800631]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,237],"duration":13.043,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.062,"geometry_index":23127,"location":[7.698947,43.803767]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,235],"duration":14.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.828,"geometry_index":23130,"location":[7.701519,43.805029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,234],"duration":5.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.523,"geometry_index":23135,"location":[7.704818,43.806769]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,237],"duration":1.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.328,"geometry_index":23137,"location":[7.706144,43.807451]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,238],"duration":10.629,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.836,"geometry_index":23138,"location":[7.706508,43.807617]},{"tunnel_name":"Galleria Costa Martina","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,245],"duration":11.246,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.398,"geometry_index":23142,"location":[7.709295,43.808641]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":2.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.766,"geometry_index":23143,"location":[7.712392,43.809757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,244],"duration":6.52,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.172,"geometry_index":23144,"location":[7.713236,43.810058]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":9.531,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.047,"geometry_index":23146,"location":[7.715067,43.810757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,243],"duration":14.59,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.859,"geometry_index":23148,"location":[7.717818,43.811736]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":18.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.25,"geometry_index":23153,"location":[7.722246,43.812928]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,252],"duration":4.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.758,"geometry_index":23162,"location":[7.727841,43.814083]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[50,234],"duration":6.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.516,"geometry_index":23169,"location":[7.729458,43.814717]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,211],"duration":2.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.43,"geometry_index":23174,"location":[7.730805,43.815851]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,203],"duration":4.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.031,"geometry_index":23177,"location":[7.731128,43.816347]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[7.731471,43.817217],"geometry_index":23181,"admin_index":6,"weight":5.836,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":5.996,"bearings":[12,24,193],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.731832,43.818608],"geometry_index":23186,"admin_index":6,"weight":3.266,"is_urban":false,"turn_weight":1,"duration":2.332,"bearings":[12,170,191],"out":0,"in":2,"turn_duration":0.008,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,194],"duration":6.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.07,"geometry_index":23188,"location":[7.732005,43.819155]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[36,211],"duration":13.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.117,"geometry_index":23197,"location":[7.732824,43.820512]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,243],"duration":12.293,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.984,"geometry_index":23204,"location":[7.736958,43.822611]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,246],"duration":1.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.312,"geometry_index":23206,"location":[7.740591,43.823819]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,242],"duration":6.355,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.18,"geometry_index":23207,"location":[7.740992,43.82397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":2.281,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.211,"geometry_index":23210,"location":[7.742751,43.824797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,233],"duration":15.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.125,"geometry_index":23211,"location":[7.743356,43.82513]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[7,190],"duration":14.773,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.039,"geometry_index":23219,"location":[7.74577,43.828333]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,355],"duration":3.957,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.758,"geometry_index":23224,"location":[7.745613,43.831852]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":3.25,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.078,"geometry_index":23228,"location":[7.745412,43.83274]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,350],"duration":2.738,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.594,"geometry_index":23230,"location":[7.745238,43.833462]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,348],"duration":1.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.273,"geometry_index":23232,"location":[7.74509,43.834077]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,353],"duration":19.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.438,"geometry_index":23233,"location":[7.744985,43.834434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,231],"duration":2.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.102,"geometry_index":23245,"location":[7.74814,43.839057]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[66,241],"duration":11.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.375,"geometry_index":23246,"location":[7.748796,43.839318]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,265],"duration":2.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.602,"geometry_index":23250,"location":[7.752369,43.840001]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[101,273],"duration":4.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.195,"geometry_index":23251,"location":[7.753296,43.839966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,287],"duration":19.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.758,"geometry_index":23253,"location":[7.754752,43.8397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[121,301],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.68,"geometry_index":23259,"location":[7.7605,43.837408]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[110,292],"duration":14.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.219,"geometry_index":23263,"location":[7.764862,43.835764]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,281],"duration":5.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.453,"geometry_index":23266,"location":[7.769699,43.834753]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[102,281],"duration":9.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.219,"geometry_index":23270,"location":[7.772103,43.834384]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,282],"duration":14.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.688,"geometry_index":23271,"location":[7.775156,43.83392]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,281],"duration":6.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.047,"geometry_index":23274,"location":[7.780082,43.833167]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[103,283],"duration":17.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.891,"geometry_index":23277,"location":[7.782411,43.8328]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[84,266],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.07,"geometry_index":23281,"location":[7.788522,43.832287]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":1.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.203,"geometry_index":23284,"location":[7.789514,43.832424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,255],"duration":9.184,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.188,"geometry_index":23285,"location":[7.789904,43.832498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":14.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.984,"geometry_index":23288,"location":[7.792853,43.833221]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[70,251],"duration":14.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.078,"geometry_index":23295,"location":[7.798939,43.834758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":8.684,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.469,"geometry_index":23296,"location":[7.803541,43.835951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[67,248],"duration":3.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.141,"geometry_index":23298,"location":[7.806283,43.836668]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[65,250],"duration":15.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.523,"geometry_index":23301,"location":[7.807284,43.836943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,223],"duration":20.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":19.18,"geometry_index":23305,"location":[7.811442,43.839295]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.938,"geometry_index":23314,"location":[7.815941,43.842929]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":3.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.609,"geometry_index":23317,"location":[7.817407,43.843604]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,243],"duration":11.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.969,"geometry_index":23318,"location":[7.81847,43.843992]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,263],"duration":6.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.93,"geometry_index":23324,"location":[7.822041,43.844571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":6.527,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.195,"geometry_index":23326,"location":[7.823989,43.844569]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":18.688,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.742,"geometry_index":23328,"location":[7.826025,43.844557]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[74,258],"duration":22.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.922,"geometry_index":23333,"location":[7.831822,43.844695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,219],"duration":3.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.18,"geometry_index":23338,"location":[7.837495,43.847458]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[29,46,212],"duration":5.75,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.586,"geometry_index":23340,"location":[7.837878,43.847901]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.838657,43.849023],"geometry_index":23342,"admin_index":6,"weight":1.312,"is_urban":false,"turn_weight":1,"duration":0.344,"bearings":[20,175,203],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,200],"duration":3.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.547,"geometry_index":23343,"location":[7.838689,43.849087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[13,195],"duration":4.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.195,"geometry_index":23345,"location":[7.839044,43.849885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[6,189],"duration":9.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.25,"geometry_index":23347,"location":[7.839304,43.850857]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":4.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.242,"geometry_index":23350,"location":[7.839628,43.853115]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,192],"duration":7.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.094,"geometry_index":23353,"location":[7.839845,43.854148]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":2.387,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.328,"geometry_index":23358,"location":[7.840739,43.855777]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,212],"duration":2.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.617,"geometry_index":23360,"location":[7.841149,43.856277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,210],"duration":7.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.305,"geometry_index":23362,"location":[7.841606,43.856846]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[31,215],"duration":7.77,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.57,"geometry_index":23366,"location":[7.843039,43.858355]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,211],"duration":4.652,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.422,"geometry_index":23367,"location":[7.844357,43.859937]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,209],"duration":7.012,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.656,"geometry_index":23370,"location":[7.845059,43.860842]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,209],"duration":7.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.266,"geometry_index":23372,"location":[7.846241,43.862263]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[31,215],"duration":17.598,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.719,"geometry_index":23375,"location":[7.847633,43.8638]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,211],"duration":9.059,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.375,"geometry_index":23376,"location":[7.850732,43.867476]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,221],"duration":5.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.766,"geometry_index":23379,"location":[7.852349,43.869268]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,240],"duration":23.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.523,"geometry_index":23383,"location":[7.853697,43.869995]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,320],"duration":11.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.57,"geometry_index":23395,"location":[7.860472,43.869072]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[154,334],"duration":7.922,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.508,"geometry_index":23398,"location":[7.862223,43.866775]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,334],"duration":2.754,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.609,"geometry_index":23399,"location":[7.863308,43.86514]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":0.426,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.406,"geometry_index":23400,"location":[7.863683,43.864566]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,335],"duration":1.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.438,"geometry_index":23401,"location":[7.86374,43.864479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[153,335],"duration":6.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.172,"geometry_index":23402,"location":[7.863949,43.864161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,326],"duration":12.855,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.211,"geometry_index":23406,"location":[7.864989,43.862878]},{"tunnel_name":"Galleria S. Michele","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[119,302],"duration":14.129,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.422,"geometry_index":23414,"location":[7.867961,43.860926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,275],"duration":10.605,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.07,"geometry_index":23423,"location":[7.87229,43.860045]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[93,274],"duration":0.395,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.375,"geometry_index":23425,"location":[7.875656,43.859855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[95,273],"duration":6.336,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.016,"geometry_index":23426,"location":[7.875782,43.85985]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[97,276],"duration":1.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.766,"geometry_index":23428,"location":[7.877765,43.859728]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,278],"duration":11.402,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.82,"geometry_index":23430,"location":[7.878349,43.85967]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[108,288],"duration":5.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.641,"geometry_index":23437,"location":[7.881824,43.859034]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,288],"duration":0.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.07,"geometry_index":23439,"location":[7.883371,43.858663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,289],"duration":7.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.586,"geometry_index":23441,"location":[7.883391,43.858658]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[107,289],"duration":29.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.914,"geometry_index":23444,"location":[7.885591,43.858121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[114,290],"duration":13.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.898,"geometry_index":23446,"location":[7.894782,43.855962]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[118,300],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.32,"geometry_index":23450,"location":[7.898861,43.854454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,298],"duration":8.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.82,"geometry_index":23451,"location":[7.90315,43.852779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[107,288],"duration":9.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.578,"geometry_index":23454,"location":[7.905655,43.852076]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,282],"duration":1.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.953,"geometry_index":23458,"location":[7.908518,43.851572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,282],"duration":7.059,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.523,"geometry_index":23459,"location":[7.908841,43.851522]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":1.918,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.766,"geometry_index":23460,"location":[7.91113,43.851151]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[103,283],"duration":4.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.617,"geometry_index":23461,"location":[7.911761,43.851048]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":0.254,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.234,"geometry_index":23462,"location":[7.913468,43.850771]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,283],"duration":0.035,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.031,"geometry_index":23463,"location":[7.913549,43.850757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,281],"duration":9.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.391,"geometry_index":23464,"location":[7.913556,43.850756]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[102,282],"duration":6.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.711,"geometry_index":23466,"location":[7.916617,43.850267]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[100,282],"duration":9.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.203,"geometry_index":23467,"location":[7.91875,43.849931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,273],"duration":19.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.023,"geometry_index":23472,"location":[7.922236,43.849627]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[92,272],"duration":4.48,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.148,"geometry_index":23478,"location":[7.929104,43.849416]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[92,273],"duration":8.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.836,"geometry_index":23480,"location":[7.930683,43.849367]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,255],"duration":17.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.156,"geometry_index":23486,"location":[7.933645,43.849551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,246],"duration":13.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.242,"geometry_index":23494,"location":[7.939256,43.851271]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,240],"duration":4.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.891,"geometry_index":23498,"location":[7.943486,43.852694]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[45,229],"duration":11.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.797,"geometry_index":23501,"location":[7.944604,43.853332]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":8.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.945,"geometry_index":23506,"location":[7.946749,43.855741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":9.848,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.352,"geometry_index":23510,"location":[7.948001,43.857674]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,218],"duration":28.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":27.742,"geometry_index":23514,"location":[7.949826,43.859801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,265],"duration":4.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.094,"geometry_index":23525,"location":[7.958553,43.863009]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[91,272],"duration":13.66,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.977,"geometry_index":23528,"location":[7.960039,43.863007]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,268],"duration":22.434,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.312,"geometry_index":23532,"location":[7.964862,43.86306]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,262],"duration":1.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.75,"geometry_index":23541,"location":[7.972219,43.863434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":11.449,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.875,"geometry_index":23544,"location":[7.972796,43.863531]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,246],"duration":18.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.445,"geometry_index":23548,"location":[7.976281,43.864474]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,244],"duration":7.996,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.594,"geometry_index":23552,"location":[7.981977,43.86651]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":19.746,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.758,"geometry_index":23554,"location":[7.984328,43.867364]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,231],"duration":5.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.594,"geometry_index":23557,"location":[7.989975,43.870018]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,217],"duration":7.238,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.055,"geometry_index":23559,"location":[7.990939,43.87082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":0.676,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.664,"geometry_index":23562,"location":[7.992217,43.872314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":16.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.953,"geometry_index":23563,"location":[7.992341,43.872463]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[32,44,213],"duration":6.16,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.141,"geometry_index":23569,"location":[7.995292,43.875994]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,217],"duration":5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5,"geometry_index":23573,"location":[7.996486,43.877295]},{"mapbox_streets_v8":{"class":"motorway"},"location":[7.997646,43.878271],"geometry_index":23576,"admin_index":6,"weight":1.492,"is_urban":false,"turn_weight":1,"duration":0.508,"bearings":[50,206,223],"out":0,"in":2,"turn_duration":0.013,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,230],"duration":14.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.648,"geometry_index":23577,"location":[7.997781,43.878354]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":5.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.453,"geometry_index":23581,"location":[8.001655,43.880764]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.789,"geometry_index":23582,"location":[8.003124,43.881647]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,230],"duration":6.777,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.766,"geometry_index":23584,"location":[8.004391,43.882418]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,232],"duration":1.316,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.297,"geometry_index":23587,"location":[8.006213,43.883484]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[51,229],"duration":10.051,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.055,"geometry_index":23588,"location":[8.006545,43.883695]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,231],"duration":11.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.781,"geometry_index":23589,"location":[8.009261,43.885302]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,240],"duration":3.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.922,"geometry_index":23594,"location":[8.012519,43.887]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[63,242],"duration":9.73,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.734,"geometry_index":23595,"location":[8.013736,43.887462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,250],"duration":3.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.281,"geometry_index":23597,"location":[8.016849,43.888438]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,252],"duration":7.02,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.023,"geometry_index":23598,"location":[8.017903,43.888689]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,255],"duration":14.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.398,"geometry_index":23600,"location":[8.020244,43.889155]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,249],"duration":6.121,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.273,"geometry_index":23604,"location":[8.025061,43.890198]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,228],"duration":6.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.57,"geometry_index":23606,"location":[8.026747,43.8911]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[17,206],"duration":4.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.492,"geometry_index":23610,"location":[8.027981,43.892423]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,197],"duration":0.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.914,"geometry_index":23611,"location":[8.028439,43.893481]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":4.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.93,"geometry_index":23612,"location":[8.028476,43.893706]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[174,349],"duration":3.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.102,"geometry_index":23615,"location":[8.028501,43.894917]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,350],"duration":1.27,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.305,"geometry_index":23616,"location":[8.028297,43.89567]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,348],"duration":5.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.945,"geometry_index":23617,"location":[8.02822,43.89599]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,346],"duration":6.699,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.844,"geometry_index":23620,"location":[8.02778,43.897447]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":1.613,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.648,"geometry_index":23622,"location":[8.027231,43.899112]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,348],"duration":18.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.07,"geometry_index":23623,"location":[8.02711,43.89952]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,206],"duration":0.176,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.172,"geometry_index":23632,"location":[8.02783,43.904019]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[21,207],"duration":7.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.734,"geometry_index":23633,"location":[8.027859,43.90406]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,232],"duration":0.785,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.781,"geometry_index":23639,"location":[8.029559,43.905534]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,236],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.117,"geometry_index":23640,"location":[8.029786,43.905645]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":0.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.547,"geometry_index":23641,"location":[8.030123,43.90579]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":5.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.234,"geometry_index":23642,"location":[8.030283,43.905859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,248],"duration":0.152,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.148,"geometry_index":23646,"location":[8.031885,43.906445]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,248],"duration":1.152,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.148,"geometry_index":23647,"location":[8.031936,43.90646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":0.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.562,"geometry_index":23648,"location":[8.032305,43.906542]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[73,252],"duration":7.988,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.984,"geometry_index":23649,"location":[8.032484,43.906584]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,281],"duration":10.801,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.797,"geometry_index":23654,"location":[8.035093,43.906724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[125,299],"duration":9.191,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.195,"geometry_index":23660,"location":[8.038379,43.90588]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[142,151,320],"duration":3.199,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.273,"geometry_index":23666,"location":[8.040532,43.904402]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[144,324],"duration":4.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.414,"geometry_index":23668,"location":[8.041173,43.903781]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[147,327],"duration":3.637,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.727,"geometry_index":23671,"location":[8.041991,43.902926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[148,327],"duration":5.512,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.648,"geometry_index":23672,"location":[8.042663,43.902189]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.043646,43.901039],"geometry_index":23673,"admin_index":6,"weight":3.742,"is_urban":false,"turn_weight":1,"duration":2.695,"bearings":[145,317,328],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[134,320],"duration":12.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.383,"geometry_index":23676,"location":[8.044192,43.900525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,287],"duration":7.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.164,"geometry_index":23684,"location":[8.047752,43.898997]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[80,262],"duration":38.363,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":38.367,"geometry_index":23689,"location":[8.050144,43.898948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":11.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.094,"geometry_index":23699,"location":[8.060879,43.904054]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,234],"duration":9.094,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.07,"geometry_index":23703,"location":[8.063889,43.905688]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,219],"duration":3.113,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.094,"geometry_index":23707,"location":[8.066086,43.907304]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,217],"duration":10.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.266,"geometry_index":23709,"location":[8.066741,43.907911]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[15,198],"duration":8.754,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.75,"geometry_index":23714,"location":[8.068186,43.91027]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,187],"duration":4.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.82,"geometry_index":23719,"location":[8.068776,43.912458]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,190],"duration":10.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.602,"geometry_index":23720,"location":[8.069062,43.913683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,189],"duration":4.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.523,"geometry_index":23722,"location":[8.069666,43.916303]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[9,188],"duration":13.457,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.789,"geometry_index":23723,"location":[8.069893,43.91741]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,224],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.227,"geometry_index":23735,"location":[8.071734,43.920497]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,241],"duration":9.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.805,"geometry_index":23742,"location":[8.074114,43.921787]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,266],"duration":4.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.094,"geometry_index":23746,"location":[8.077286,43.922329]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[88,267],"duration":14.543,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.906,"geometry_index":23747,"location":[8.079005,43.922397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[86,268],"duration":9,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.227,"geometry_index":23748,"location":[8.084043,43.922551]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[88,267],"duration":18.262,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.266,"geometry_index":23752,"location":[8.087458,43.922731]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":0.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.523,"geometry_index":23761,"location":[8.09317,43.923935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,232],"duration":4.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.195,"geometry_index":23762,"location":[8.093304,43.92401]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,224],"duration":4.379,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.383,"geometry_index":23764,"location":[8.094317,43.924711]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":6.098,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.102,"geometry_index":23766,"location":[8.095174,43.925571]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":11.168,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.883,"geometry_index":23768,"location":[8.096324,43.926807]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.914,"geometry_index":23772,"location":[8.09849,43.929117]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.098891,43.929523],"geometry_index":23773,"admin_index":6,"weight":12.828,"is_urban":false,"turn_weight":1,"duration":12.156,"bearings":[33,206,215],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,222],"duration":4.074,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.969,"geometry_index":23779,"location":[8.101541,43.931863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,220],"duration":11.496,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.211,"geometry_index":23780,"location":[8.102443,43.932636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":7.824,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.625,"geometry_index":23783,"location":[8.104984,43.934773]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":10.199,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.945,"geometry_index":23786,"location":[8.106676,43.936243]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,200],"duration":6.668,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.5,"geometry_index":23790,"location":[8.108123,43.938442]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":9.91,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.414,"geometry_index":23792,"location":[8.109,43.93989]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,221],"duration":8.656,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.219,"geometry_index":23799,"location":[8.110797,43.941782]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,235],"duration":5.488,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.203,"geometry_index":23807,"location":[8.112888,43.943072]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[62,242],"duration":58.465,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":55.539,"geometry_index":23809,"location":[8.114403,43.943691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,228],"duration":1.691,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.648,"geometry_index":23819,"location":[8.132198,43.950601]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":0.324,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.312,"geometry_index":23820,"location":[8.132601,43.950905]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,224],"duration":17.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.375,"geometry_index":23821,"location":[8.132679,43.950964]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[185,359],"duration":5.488,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.352,"geometry_index":23830,"location":[8.134886,43.955061]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":16.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.953,"geometry_index":23832,"location":[8.134814,43.956443]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,207],"duration":22.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.727,"geometry_index":23847,"location":[8.135554,43.960457]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":6.285,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.281,"geometry_index":23855,"location":[8.141479,43.964774]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,212],"duration":0.41,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.414,"geometry_index":23859,"location":[8.142986,43.966105]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,210],"duration":5.992,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.969,"geometry_index":23860,"location":[8.143059,43.966196]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,197],"duration":12.434,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.094,"geometry_index":23863,"location":[8.14384,43.967655]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[167,343,353],"duration":7.117,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.914,"geometry_index":23872,"location":[8.143806,43.970808]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.142869,43.972464],"geometry_index":23875,"admin_index":6,"weight":1.172,"is_urban":false,"turn_weight":1,"duration":0.188,"bearings":[141,155,339],"out":2,"in":1,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,337],"duration":1.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.055,"geometry_index":23876,"location":[8.142848,43.972503]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,332],"duration":12.816,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":12.172,"geometry_index":23877,"location":[8.142699,43.972753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346],"duration":5.852,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.555,"geometry_index":23884,"location":[8.141008,43.975699]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,349],"duration":1.242,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.172,"geometry_index":23889,"location":[8.14058,43.977136]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[169,348],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.266,"geometry_index":23890,"location":[8.140496,43.97744]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,334],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.422,"geometry_index":23892,"location":[8.139926,43.979049]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,330],"duration":12.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.789,"geometry_index":23893,"location":[8.139366,43.979873]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[151,336],"duration":8.84,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.18,"geometry_index":23897,"location":[8.137126,43.982613]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,176],"duration":14.582,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.484,"geometry_index":23903,"location":[8.136415,43.984765]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[5,186],"duration":7.094,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.562,"geometry_index":23908,"location":[8.136807,43.98839]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,185],"duration":16.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15,"geometry_index":23909,"location":[8.137018,43.990131]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,343],"duration":15.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.555,"geometry_index":23915,"location":[8.136531,43.994094]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[151,329],"duration":15.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":13.766,"geometry_index":23920,"location":[8.134132,43.997602]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":3.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.039,"geometry_index":23926,"location":[8.131705,44.001017]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,352],"duration":8.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.672,"geometry_index":23928,"location":[8.131446,44.001825]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[2,181],"duration":56.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":50.945,"geometry_index":23932,"location":[8.131364,44.003906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[182,359],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.164,"geometry_index":23933,"location":[8.131907,44.01817]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,356],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.547,"geometry_index":23934,"location":[8.131896,44.018487]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,354],"duration":15.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.719,"geometry_index":23935,"location":[8.13175,44.020007]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,359],"duration":5.906,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.453,"geometry_index":23943,"location":[8.130991,44.024134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,184],"duration":23.531,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":21.758,"geometry_index":23946,"location":[8.131049,44.025679]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,195],"duration":5.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.516,"geometry_index":23953,"location":[8.133616,44.031546]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":10.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.062,"geometry_index":23957,"location":[8.133839,44.033097]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,356],"duration":6.32,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.992,"geometry_index":23961,"location":[8.13343,44.035855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,189],"duration":15.414,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.25,"geometry_index":23965,"location":[8.133508,44.037503]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":5.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.039,"geometry_index":23975,"location":[8.136368,44.04083]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,237],"duration":11.125,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.273,"geometry_index":23978,"location":[8.138024,44.041622]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,238],"duration":1.047,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.953,"geometry_index":23982,"location":[8.14141,44.043215]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":2.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.875,"geometry_index":23983,"location":[8.141726,44.043361]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,237],"duration":4.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.93,"geometry_index":23984,"location":[8.142346,44.043651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,233],"duration":2.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.477,"geometry_index":23987,"location":[8.143615,44.044284]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[47,233],"duration":10.453,"turn_duration":0.033,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.641,"geometry_index":23988,"location":[8.144395,44.044703]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":9.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.922,"geometry_index":23990,"location":[8.147102,44.046584]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,227],"duration":27.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.352,"geometry_index":23992,"location":[8.149693,44.048324]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,243],"duration":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.93,"geometry_index":24001,"location":[8.157791,44.052593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":14.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.734,"geometry_index":24002,"location":[8.158113,44.052714]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,236],"duration":5.562,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.258,"geometry_index":24006,"location":[8.162826,44.054621]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,228],"duration":8.305,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.883,"geometry_index":24009,"location":[8.164428,44.055525]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,223],"duration":3.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.156,"geometry_index":24013,"location":[8.166589,44.057041]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[36,219],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.141,"geometry_index":24014,"location":[8.167348,44.057725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,216],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.547,"geometry_index":24015,"location":[8.168279,44.058634]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[30,211],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.797,"geometry_index":24017,"location":[8.169207,44.059665]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,210],"duration":2.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.141,"geometry_index":24018,"location":[8.169731,44.060325]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":5.945,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.648,"geometry_index":24019,"location":[8.170114,44.060837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.43,"geometry_index":24023,"location":[8.171154,44.062164]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,209],"duration":1.805,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.711,"geometry_index":24024,"location":[8.171232,44.062264]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,210],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.828,"geometry_index":24025,"location":[8.171556,44.062661]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,211],"duration":1.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.844,"geometry_index":24026,"location":[8.171716,44.062856]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,212],"duration":8.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.922,"geometry_index":24027,"location":[8.17208,44.063278]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,216],"duration":0.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.172,"geometry_index":24029,"location":[8.17379,44.065054]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[41,56,224],"duration":3.938,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.82,"geometry_index":24030,"location":[8.173837,44.065089]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,222],"duration":2.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.18,"geometry_index":24032,"location":[8.174763,44.065842]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":2.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.828,"geometry_index":24034,"location":[8.175303,44.066266]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.176016,44.066778],"geometry_index":24036,"admin_index":6,"weight":10.852,"is_urban":false,"turn_weight":1,"duration":10.391,"bearings":[46,220,226],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":25.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":23.938,"geometry_index":24039,"location":[8.178569,44.068634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,224],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.172,"geometry_index":24045,"location":[8.184997,44.073356]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,223],"duration":15.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.711,"geometry_index":24046,"location":[8.185309,44.073593]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,226],"duration":53.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":50.594,"geometry_index":24052,"location":[8.189322,44.076498]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.914,"geometry_index":24066,"location":[8.203505,44.086223]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,226],"duration":1.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.242,"geometry_index":24067,"location":[8.203745,44.086389]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":15.883,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.078,"geometry_index":24068,"location":[8.204067,44.086617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":2.312,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.195,"geometry_index":24073,"location":[8.208367,44.08969]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.32,"geometry_index":24074,"location":[8.208948,44.090106]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":5.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.945,"geometry_index":24076,"location":[8.209839,44.090742]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":2.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.766,"geometry_index":24077,"location":[8.211159,44.091681]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.648,"geometry_index":24078,"location":[8.2119,44.092217]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.805,"geometry_index":24080,"location":[8.212894,44.092924]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":1.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.172,"geometry_index":24082,"location":[8.213661,44.093471]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.867,"geometry_index":24083,"location":[8.213978,44.093701]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":3.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.453,"geometry_index":24085,"location":[8.214761,44.094259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,225],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.031,"geometry_index":24086,"location":[8.215697,44.094931]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,216],"duration":6.891,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.547,"geometry_index":24087,"location":[8.215699,44.094933]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":9.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.141,"geometry_index":24090,"location":[8.217484,44.096204]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,225],"duration":16.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.789,"geometry_index":24092,"location":[8.21995,44.097967]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":1.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.641,"geometry_index":24103,"location":[8.224695,44.100444]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":12.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.516,"geometry_index":24104,"location":[8.225235,44.100651]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,226],"duration":2.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.773,"geometry_index":24111,"location":[8.228735,44.102363]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[37,222],"duration":27.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":26.219,"geometry_index":24113,"location":[8.229425,44.102906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,349],"duration":7.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.938,"geometry_index":24130,"location":[8.231806,44.109527]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,335],"duration":4.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.594,"geometry_index":24137,"location":[8.231029,44.111297]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,334],"duration":15.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.711,"geometry_index":24140,"location":[8.230265,44.112403]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[154,334],"duration":11.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.625,"geometry_index":24149,"location":[8.227679,44.116051]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,342],"duration":1.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.719,"geometry_index":24154,"location":[8.225822,44.118908]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,345],"duration":5.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.367,"geometry_index":24156,"location":[8.225622,44.119348]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,354],"duration":3.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.172,"geometry_index":24160,"location":[8.22521,44.120741]},{"entry":[true,false,true],"classes":["toll","motorway"],"in":1,"bearings":[7,177,358],"duration":13.781,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":2,"weight":13.43,"geometry_index":24162,"location":[8.225116,44.121592]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.225839,44.125103],"geometry_index":24173,"admin_index":6,"weight":3.266,"is_urban":false,"turn_weight":1,"duration":2.344,"bearings":[19,190,198],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":8.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.117,"geometry_index":24175,"location":[8.226119,44.12564]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[35,214],"duration":9.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.656,"geometry_index":24181,"location":[8.2275,44.127436]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,229],"duration":4.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.938,"geometry_index":24187,"location":[8.229789,44.129213]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":5.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.242,"geometry_index":24190,"location":[8.231137,44.129919]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,242],"duration":8.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.375,"geometry_index":24194,"location":[8.232733,44.13057]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,240],"duration":3.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.883,"geometry_index":24196,"location":[8.235287,44.131612]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":0.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.82,"geometry_index":24199,"location":[8.236416,44.132199]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,231],"duration":11.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.844,"geometry_index":24200,"location":[8.236653,44.132335]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,219],"duration":10.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.422,"geometry_index":24208,"location":[8.239746,44.134574]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,213],"duration":5.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.82,"geometry_index":24209,"location":[8.241808,44.136832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":3.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.992,"geometry_index":24211,"location":[8.242881,44.138096]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":1.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.227,"geometry_index":24212,"location":[8.243459,44.138761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,212],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.062,"geometry_index":24213,"location":[8.243695,44.139029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,211],"duration":5.891,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.734,"geometry_index":24214,"location":[8.244652,44.140185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,214],"duration":3.625,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.508,"geometry_index":24217,"location":[8.245779,44.141477]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[37,211],"duration":7.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.094,"geometry_index":24218,"location":[8.24645,44.142267]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,217],"duration":6.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.094,"geometry_index":24219,"location":[8.247954,44.143721]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":7.812,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.602,"geometry_index":24222,"location":[8.249366,44.144943]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[48,228],"duration":12.453,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.133,"geometry_index":24226,"location":[8.251312,44.14638]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[52,229],"duration":12.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.586,"geometry_index":24229,"location":[8.254658,44.148499]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,231],"duration":3.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.781,"geometry_index":24231,"location":[8.258295,44.150596]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,233],"duration":10.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.016,"geometry_index":24233,"location":[8.259407,44.151195]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[57,65,238],"duration":7.57,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.359,"geometry_index":24237,"location":[8.262651,44.15279]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,237],"duration":0.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.242,"geometry_index":24238,"location":[8.264909,44.153856]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":9.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.172,"geometry_index":24239,"location":[8.264985,44.153892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,236],"duration":12.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.992,"geometry_index":24241,"location":[8.267774,44.155161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":0.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.172,"geometry_index":24245,"location":[8.271141,44.157193]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.271182,44.157223],"geometry_index":24246,"admin_index":6,"weight":14.023,"is_urban":false,"turn_weight":1,"duration":13.383,"bearings":[39,208,224],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,205],"duration":12.258,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.953,"geometry_index":24250,"location":[8.273665,44.160023]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":6.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.469,"geometry_index":24255,"location":[8.275172,44.162913]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,203],"duration":13.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13,"geometry_index":24258,"location":[8.275974,44.164504]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[42,216],"duration":48.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":46.055,"geometry_index":24264,"location":[8.278112,44.167572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,226],"duration":6.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.281,"geometry_index":24285,"location":[8.292777,44.173355]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,211],"duration":6.484,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.164,"geometry_index":24287,"location":[8.29395,44.174614]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":7.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.961,"geometry_index":24289,"location":[8.294893,44.176018]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[36,209],"duration":33.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":30.68,"geometry_index":24294,"location":[8.29609,44.177663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,217],"duration":1.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.047,"geometry_index":24296,"location":[8.302877,44.184256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,214],"duration":6.117,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.641,"geometry_index":24297,"location":[8.303072,44.184462]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,218],"duration":7.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.883,"geometry_index":24300,"location":[8.303947,44.18541]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,208],"duration":0.828,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.742,"geometry_index":24303,"location":[8.305089,44.186889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":17.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.117,"geometry_index":24304,"location":[8.305188,44.18706]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[182,355],"duration":12.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.383,"geometry_index":24311,"location":[8.306339,44.191033]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":8.258,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.633,"geometry_index":24315,"location":[8.305821,44.193868]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":10.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.102,"geometry_index":24316,"location":[8.305431,44.195682]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[8,182],"duration":63.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":59.125,"geometry_index":24320,"location":[8.305206,44.198149]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[50,228],"duration":10.969,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.141,"geometry_index":24344,"location":[8.316845,44.208814]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,224],"duration":6.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.828,"geometry_index":24347,"location":[8.319336,44.2105]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,213],"duration":13.18,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.844,"geometry_index":24350,"location":[8.320457,44.211621]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.322308,44.214256],"geometry_index":24353,"admin_index":6,"weight":2.336,"is_urban":false,"turn_weight":1,"duration":1.492,"bearings":[27,197,205],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,207],"duration":5.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.875,"geometry_index":24354,"location":[8.322535,44.214572]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,205],"duration":18.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.094,"geometry_index":24356,"location":[8.323323,44.215754]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,212],"duration":9.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.836,"geometry_index":24361,"location":[8.326201,44.219908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,233],"duration":13.43,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.078,"geometry_index":24366,"location":[8.328501,44.221532]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,251],"duration":0.25,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.219,"geometry_index":24372,"location":[8.332453,44.222712]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,253],"duration":4.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.672,"geometry_index":24373,"location":[8.332524,44.222728]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[71,252],"duration":43.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":40.031,"geometry_index":24374,"location":[8.333743,44.223005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,273],"duration":6.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.859,"geometry_index":24383,"location":[8.346756,44.225381]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,281],"duration":12.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.141,"geometry_index":24386,"location":[8.348653,44.225182]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[103,283],"duration":7.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.234,"geometry_index":24390,"location":[8.35222,44.224636]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,268],"duration":9.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.211,"geometry_index":24395,"location":[8.354577,44.224493]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,251],"duration":14.047,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.625,"geometry_index":24401,"location":[8.357757,44.224951]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,245],"duration":2.977,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.664,"geometry_index":24405,"location":[8.362028,44.226336]},{"tunnel_name":"Santa Libera","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[65,245],"duration":18.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.531,"geometry_index":24407,"location":[8.362901,44.226642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,266],"duration":3.109,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.805,"geometry_index":24416,"location":[8.368783,44.228092]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[100,274],"duration":3.344,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.008,"geometry_index":24418,"location":[8.369822,44.228059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[106,284],"duration":27.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":24.977,"geometry_index":24421,"location":[8.370918,44.227889]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,271],"duration":5.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.359,"geometry_index":24433,"location":[8.380204,44.226191]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,271],"duration":1.148,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.062,"geometry_index":24434,"location":[8.382225,44.226161]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[91,270],"duration":6.406,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.922,"geometry_index":24435,"location":[8.38263,44.226163]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,256],"duration":2.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.086,"geometry_index":24439,"location":[8.384814,44.226305]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[66,250],"duration":9.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.492,"geometry_index":24442,"location":[8.385563,44.226463]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[68,249],"duration":10.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.852,"geometry_index":24445,"location":[8.388447,44.227338]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[76,87,258],"duration":20.258,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":19.227,"geometry_index":24449,"location":[8.391953,44.227996]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.39804,44.230102],"geometry_index":24459,"admin_index":6,"weight":2.531,"is_urban":false,"turn_weight":1,"duration":1.633,"bearings":[36,206,223],"out":0,"in":2,"turn_duration":0.026,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,217],"duration":16.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.641,"geometry_index":24461,"location":[8.398353,44.230404]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,350],"duration":1.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.258,"geometry_index":24470,"location":[8.399638,44.234371]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":6.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.383,"geometry_index":24471,"location":[8.39956,44.234701]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,353],"duration":3.719,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.438,"geometry_index":24475,"location":[8.399182,44.236329]},{"tunnel_name":"Galleria Fornaci","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[177,356],"duration":64.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":57.664,"geometry_index":24477,"location":[8.399078,44.237214]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,204],"duration":17.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.57,"geometry_index":24490,"location":[8.406432,44.251041]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":11.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.055,"geometry_index":24501,"location":[8.406982,44.255015]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,360],"duration":21.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":20.078,"geometry_index":24504,"location":[8.406964,44.257997]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,223],"duration":10.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.812,"geometry_index":24520,"location":[8.40948,44.262926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,235],"duration":82.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":80.375,"geometry_index":24526,"location":[8.412352,44.264433]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[16,195],"duration":3.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.031,"geometry_index":24565,"location":[8.429572,44.280227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,197],"duration":6.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.594,"geometry_index":24567,"location":[8.429856,44.280915]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[39,219],"duration":4.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.586,"geometry_index":24575,"location":[8.430928,44.282264]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,222],"duration":12.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":12.188,"geometry_index":24577,"location":[8.431915,44.283059]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,222],"duration":0.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.695,"geometry_index":24579,"location":[8.434646,44.285222]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,223],"duration":3.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.25,"geometry_index":24580,"location":[8.434803,44.285344]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":2.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.016,"geometry_index":24583,"location":[8.435524,44.285893]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.435977,44.286232],"geometry_index":24584,"admin_index":6,"weight":8.836,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":8.844,"bearings":[48,55,224],"out":0,"in":2,"turn_duration":0.009,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":15.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.078,"geometry_index":24593,"location":[8.438754,44.287608]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,243],"duration":22.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.695,"geometry_index":24597,"location":[8.44265,44.28917]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.446459,44.293302],"geometry_index":24612,"admin_index":6,"weight":1.742,"is_urban":false,"turn_weight":1,"duration":0.75,"bearings":[3,176,185],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[183,358],"duration":6.016,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.141,"geometry_index":24613,"location":[8.44647,44.293475]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,179],"duration":1.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.75,"geometry_index":24616,"location":[8.44641,44.294936]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[181,356],"duration":5,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.969,"geometry_index":24617,"location":[8.446418,44.295348]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,179],"duration":4.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.266,"geometry_index":24619,"location":[8.446368,44.296583]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[180,359],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.602,"geometry_index":24620,"location":[8.446378,44.297617]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,179],"duration":10.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.031,"geometry_index":24621,"location":[8.446349,44.298501]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[27,203],"duration":3.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.781,"geometry_index":24628,"location":[8.447142,44.30087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,212],"duration":0.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.406,"geometry_index":24631,"location":[8.447814,44.301683]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,217],"duration":10.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.906,"geometry_index":24632,"location":[8.447896,44.301761]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[63,242],"duration":7.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.719,"geometry_index":24643,"location":[8.45071,44.30351]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,259],"duration":4.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.586,"geometry_index":24650,"location":[8.453172,44.304081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,262],"duration":9.125,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.352,"geometry_index":24654,"location":[8.454693,44.304245]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,259],"duration":24.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.734,"geometry_index":24658,"location":[8.457806,44.304612]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,220],"duration":0.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.547,"geometry_index":24670,"location":[8.464809,44.307802]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":0.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.547,"geometry_index":24671,"location":[8.464915,44.307902]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[36,217],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":3.164,"geometry_index":24672,"location":[8.465024,44.308005]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,213],"duration":6,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":6.453,"geometry_index":24674,"location":[8.465598,44.308609]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[22,204],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":2.844,"geometry_index":24677,"location":[8.466552,44.309926]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.578,"geometry_index":24678,"location":[8.466912,44.310553]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":5.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":5.414,"geometry_index":24679,"location":[8.466985,44.31068]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":7.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":7.586,"geometry_index":24680,"location":[8.467655,44.311885]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":0.531,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":0.57,"geometry_index":24684,"location":[8.468626,44.313541]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[22,203],"duration":8.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":9.461,"geometry_index":24685,"location":[8.4687,44.313668]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":6,"out":0,"weight":1.977,"geometry_index":24686,"location":[8.469828,44.315686]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,203],"duration":9.742,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.234,"geometry_index":24687,"location":[8.470073,44.316108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,236],"duration":3.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.547,"geometry_index":24695,"location":[8.472107,44.317976]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[73,247],"duration":5.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.312,"geometry_index":24697,"location":[8.473114,44.318345]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[85,265],"duration":6.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.742,"geometry_index":24701,"location":[8.474783,44.318554]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[84,266],"duration":6.469,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.797,"geometry_index":24703,"location":[8.476944,44.318672]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[65,248],"duration":5.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.477,"geometry_index":24709,"location":[8.479009,44.318996]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[45,233],"duration":2.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.141,"geometry_index":24713,"location":[8.480484,44.319646]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,225],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.383,"geometry_index":24714,"location":[8.480974,44.319995]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[57,236],"duration":9.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.953,"geometry_index":24720,"location":[8.483502,44.321634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,254],"duration":8.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.711,"geometry_index":24726,"location":[8.486525,44.322642]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,247],"duration":0.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.102,"geometry_index":24731,"location":[8.489268,44.323437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,250],"duration":1.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.141,"geometry_index":24732,"location":[8.489303,44.323446]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":4.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.789,"geometry_index":24733,"location":[8.489631,44.323571]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[40,231],"duration":32.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":31.844,"geometry_index":24736,"location":[8.490967,44.324224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,223],"duration":5.734,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.594,"geometry_index":24746,"location":[8.498429,44.330165]},{"tunnel_name":"Galleria Torrefaraggiana SUD","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[25,210],"duration":9.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.609,"geometry_index":24748,"location":[8.499427,44.33134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,212],"duration":10.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.383,"geometry_index":24751,"location":[8.500891,44.333539]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,255],"duration":6.227,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.07,"geometry_index":24762,"location":[8.503817,44.334939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":3.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.766,"geometry_index":24769,"location":[8.505893,44.334971]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["right"],"valid":false,"active":false}],"location":[8.507177,44.334905],"geometry_index":24773,"admin_index":6,"weight":2.539,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.625,"bearings":[94,103,274],"out":0,"in":2,"turn_duration":0.019,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":2.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.578,"geometry_index":24774,"location":[8.508064,44.334862]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[94,274],"duration":2.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.148,"geometry_index":24776,"location":[8.508972,44.334816]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.509728,44.334784],"geometry_index":24779,"admin_index":6,"weight":3.133,"is_urban":false,"turn_weight":1,"duration":2.211,"bearings":[90,260,273],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":[],"valid":false,"active":false}],"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[87,269],"duration":2.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.391,"geometry_index":24781,"location":[8.510465,44.334789]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[81,263],"duration":5.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.445,"geometry_index":24785,"location":[8.511314,44.334848]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[77,257],"duration":11.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.57,"geometry_index":24789,"location":[8.513175,44.335131]},{"tunnel_name":"Galleria M.G.Rossello","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[77,257],"duration":17.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.688,"geometry_index":24791,"location":[8.51712,44.335802]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[101,279],"duration":6.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.625,"geometry_index":24799,"location":[8.522857,44.336435]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[118,298],"duration":0.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.422,"geometry_index":24809,"location":[8.525032,44.335806]},{"tunnel_name":"Galleria Fighetto","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[120,298],"duration":5.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.93,"geometry_index":24810,"location":[8.525161,44.335757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,299],"duration":0.617,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.586,"geometry_index":24812,"location":[8.526658,44.335159]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.234,"geometry_index":24813,"location":[8.526831,44.335107]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[113,293],"duration":0.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.273,"geometry_index":24814,"location":[8.526896,44.335087]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[110,293],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.445,"geometry_index":24815,"location":[8.526972,44.335064]},{"tunnel_name":"Galleria Pecorile","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[79,261],"duration":7.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.219,"geometry_index":24820,"location":[8.529001,44.334948]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,249],"duration":8.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.867,"geometry_index":24824,"location":[8.531286,44.335409]},{"tunnel_name":"Galleria Arma","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[34,212],"duration":3.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.672,"geometry_index":24830,"location":[8.533184,44.336634]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,214],"duration":11.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.32,"geometry_index":24832,"location":[8.533894,44.337389]},{"tunnel_name":"Galleria Terrizza","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,213],"duration":7.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.844,"geometry_index":24835,"location":[8.536463,44.340097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,213],"duration":2.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.961,"geometry_index":24836,"location":[8.537826,44.341604]},{"tunnel_name":"Galleria Cassisi","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[34,214],"duration":6.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.289,"geometry_index":24840,"location":[8.538232,44.342035]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[34,214],"duration":6.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.602,"geometry_index":24841,"location":[8.539523,44.343401]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,214],"duration":0.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.484,"geometry_index":24842,"location":[8.540877,44.344863]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":1.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.969,"geometry_index":24843,"location":[8.540967,44.344966]},{"tunnel_name":"Casanova","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,212],"duration":3.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.039,"geometry_index":24844,"location":[8.541151,44.345178]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,213],"duration":10.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.711,"geometry_index":24845,"location":[8.541743,44.345832]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,239],"duration":5.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.664,"geometry_index":24851,"location":[8.543932,44.347572]},{"tunnel_name":"Costa","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[90,269],"duration":3.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.742,"geometry_index":24856,"location":[8.54583,44.34779]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[89,270],"duration":8.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.414,"geometry_index":24857,"location":[8.547142,44.347797]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,269],"duration":0.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.078,"geometry_index":24860,"location":[8.550169,44.347837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,270],"duration":13.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.078,"geometry_index":24861,"location":[8.550188,44.347837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[82,267],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.172,"geometry_index":24865,"location":[8.554846,44.347885]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[68,94,253],"duration":3.43,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.234,"geometry_index":24869,"location":[8.555562,44.347999]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,239],"duration":1.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.336,"geometry_index":24872,"location":[8.556535,44.34834]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.556916,44.348515],"geometry_index":24873,"admin_index":6,"weight":11.195,"is_urban":false,"turn_weight":0.75,"duration":11.039,"bearings":[43,213,237],"out":0,"in":2,"turn_duration":0.048,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[25,204],"duration":17,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":16.57,"geometry_index":24880,"location":[8.558579,44.35075]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,207],"duration":4.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.266,"geometry_index":24888,"location":[8.561099,44.354448]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":6.547,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.383,"geometry_index":24889,"location":[8.56189,44.355403]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,211],"duration":8.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.406,"geometry_index":24890,"location":[8.563053,44.356794]},{"tunnel_name":"Boschetto","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[33,210],"duration":2.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.766,"geometry_index":24891,"location":[8.564555,44.358684]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,213],"duration":4.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.602,"geometry_index":24892,"location":[8.565081,44.359272]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[53,230],"duration":16.234,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.828,"geometry_index":24895,"location":[8.566264,44.360091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[55,233],"duration":4.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.445,"geometry_index":24896,"location":[8.570808,44.362511]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[57,233],"duration":16.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.773,"geometry_index":24898,"location":[8.572107,44.363184]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[99,278],"duration":4.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.117,"geometry_index":24907,"location":[8.576961,44.3637]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[98,279],"duration":9.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.977,"geometry_index":24909,"location":[8.57831,44.36355]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[90,274],"duration":21.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.789,"geometry_index":24913,"location":[8.581358,44.363303]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[102,286],"duration":9.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.492,"geometry_index":24927,"location":[8.587811,44.362675]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[96,279],"duration":16.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.891,"geometry_index":24931,"location":[8.590618,44.362305]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,230],"duration":10.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.164,"geometry_index":24939,"location":[8.595015,44.363694]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,230],"duration":0.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.703,"geometry_index":24942,"location":[8.597818,44.365353]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":3.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.445,"geometry_index":24943,"location":[8.598019,44.365466]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,235],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.922,"geometry_index":24945,"location":[8.599029,44.36602]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[71,77,248],"duration":22.672,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.398,"geometry_index":24948,"location":[8.600326,44.366472]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.607253,44.368885],"geometry_index":24961,"admin_index":6,"weight":4.859,"is_urban":false,"turn_weight":0.5,"duration":4.852,"bearings":[76,239,256],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[83,90,263],"duration":9.234,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.305,"geometry_index":24965,"location":[8.608928,44.369103]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,256],"duration":3.266,"turn_duration":0.028,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.914,"geometry_index":24970,"location":[8.61198,44.369422]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,241],"duration":28.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":25.969,"geometry_index":24975,"location":[8.613121,44.36977]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,231],"duration":7.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.648,"geometry_index":24988,"location":[8.619031,44.372447]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":8.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.273,"geometry_index":24990,"location":[8.620801,44.373732]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,226],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.844,"geometry_index":24993,"location":[8.622695,44.37517]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,227],"duration":21.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.086,"geometry_index":24994,"location":[8.624021,44.376058]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,206],"duration":1.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.195,"geometry_index":25001,"location":[8.62882,44.379464]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,208],"duration":7.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.844,"geometry_index":25002,"location":[8.629011,44.379725]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,220],"duration":5.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.906,"geometry_index":25004,"location":[8.630427,44.381082]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[42,220],"duration":2.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.242,"geometry_index":25006,"location":[8.63157,44.382043]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[41,222],"duration":3.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.258,"geometry_index":25007,"location":[8.632108,44.382476]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,221],"duration":24.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":22.422,"geometry_index":25008,"location":[8.632872,44.383106]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,203],"duration":7.812,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.422,"geometry_index":25017,"location":[8.636356,44.388192]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[48,213],"duration":6.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.914,"geometry_index":25020,"location":[8.637669,44.389762]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,231],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.969,"geometry_index":25022,"location":[8.639151,44.390665]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,224],"duration":3.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.625,"geometry_index":25023,"location":[8.63938,44.390835]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[49,232],"duration":15.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":14.898,"geometry_index":25025,"location":[8.64029,44.3914]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[111,293],"duration":3.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.039,"geometry_index":25034,"location":[8.644304,44.392066]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[109,291],"duration":9.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.969,"geometry_index":25035,"location":[8.645212,44.391822]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,260],"duration":6.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.961,"geometry_index":25044,"location":[8.648029,44.391582]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[79,259],"duration":2.867,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.789,"geometry_index":25046,"location":[8.649985,44.39185]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[80,259],"duration":19.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":18.539,"geometry_index":25047,"location":[8.650895,44.391973]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[47,223],"duration":13.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":13.312,"geometry_index":25062,"location":[8.656365,44.393616]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,223],"duration":8.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.961,"geometry_index":25064,"location":[8.659567,44.395946]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,225],"duration":1.422,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.422,"geometry_index":25065,"location":[8.661674,44.397473]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,225],"duration":4.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.023,"geometry_index":25066,"location":[8.662009,44.397715]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[44,223],"duration":7.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.883,"geometry_index":25069,"location":[8.662917,44.398397]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[47,224],"duration":0.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.961,"geometry_index":25070,"location":[8.66475,44.399732]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[44,49,227],"duration":6.703,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.68,"geometry_index":25071,"location":[8.664982,44.399888]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,223],"duration":0.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25075,"location":[8.666437,44.400964]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":3.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.477,"geometry_index":25076,"location":[8.666501,44.401012]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":2.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.883,"geometry_index":25079,"location":[8.66726,44.401569]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.667915,44.402037],"geometry_index":25081,"admin_index":6,"weight":1.094,"is_urban":false,"turn_weight":0.5,"duration":0.633,"bearings":[44,208,226],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[45,224],"duration":4.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.984,"geometry_index":25082,"location":[8.668053,44.402138]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,226],"duration":2.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.961,"geometry_index":25084,"location":[8.669032,44.402829]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[55,232],"duration":3.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3,"geometry_index":25087,"location":[8.669553,44.403131]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,237],"duration":4.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.977,"geometry_index":25090,"location":[8.670406,44.403543]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,241],"duration":4.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.172,"geometry_index":25093,"location":[8.671625,44.40403]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,242],"duration":15.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.141,"geometry_index":25095,"location":[8.672885,44.404509]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,236],"duration":4.664,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.547,"geometry_index":25105,"location":[8.677239,44.406544]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":0.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.445,"geometry_index":25106,"location":[8.678587,44.407082]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":5.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.82,"geometry_index":25107,"location":[8.678717,44.407134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":0.992,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.945,"geometry_index":25108,"location":[8.680186,44.407717]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[61,241],"duration":1.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.836,"geometry_index":25109,"location":[8.680467,44.40783]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,241],"duration":1.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.234,"geometry_index":25110,"location":[8.681033,44.408052]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[64,241],"duration":1.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.641,"geometry_index":25112,"location":[8.681401,44.408201]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,247],"duration":3.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.203,"geometry_index":25115,"location":[8.68192,44.40837]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":7.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.875,"geometry_index":25117,"location":[8.682964,44.408597]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":7.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.266,"geometry_index":25119,"location":[8.685237,44.409081]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,253],"duration":4.766,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.406,"geometry_index":25122,"location":[8.687721,44.409613]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,253],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.898,"geometry_index":25123,"location":[8.689255,44.409939]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":1.883,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.734,"geometry_index":25124,"location":[8.689569,44.410004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[73,254],"duration":2.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.219,"geometry_index":25125,"location":[8.690171,44.41013]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,254],"duration":0.938,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.867,"geometry_index":25127,"location":[8.690939,44.41029]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,254],"duration":0.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.242,"geometry_index":25128,"location":[8.691241,44.41035]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[74,255],"duration":0.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.344,"geometry_index":25129,"location":[8.691328,44.410367]},{"tunnel_name":"Galleria Terrarossa","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[72,254],"duration":4.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.578,"geometry_index":25130,"location":[8.691452,44.410392]},{"tunnel_name":"Galleria Terrarossa","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[72,252],"duration":1.688,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.562,"geometry_index":25131,"location":[8.693034,44.410757]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":0.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.797,"geometry_index":25132,"location":[8.693572,44.410881]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,251],"duration":6.578,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.07,"geometry_index":25133,"location":[8.693846,44.410947]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[69,249],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25136,"location":[8.695923,44.411479]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,249],"duration":1.211,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.109,"geometry_index":25137,"location":[8.696014,44.411504]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,250],"duration":10.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.75,"geometry_index":25138,"location":[8.696396,44.411603]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,251],"duration":6.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.625,"geometry_index":25142,"location":[8.699728,44.412447]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,236],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.602,"geometry_index":25147,"location":[8.70147,44.412973]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":1.758,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.578,"geometry_index":25154,"location":[8.702684,44.41467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[27,203],"duration":1.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.617,"geometry_index":25155,"location":[8.702881,44.415004]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[43,214],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25158,"location":[8.703141,44.415314]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,223],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.32,"geometry_index":25159,"location":[8.703202,44.41536]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,224],"duration":10.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.102,"geometry_index":25160,"location":[8.703272,44.415412]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[75,256],"duration":9.141,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.227,"geometry_index":25168,"location":[8.706033,44.416121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":3.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.484,"geometry_index":25175,"location":[8.708611,44.416935]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,238],"duration":9.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.555,"geometry_index":25176,"location":[8.709673,44.417407]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,233],"duration":7.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":6.789,"geometry_index":25182,"location":[8.71222,44.418611]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,232],"duration":9.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.602,"geometry_index":25184,"location":[8.713973,44.41958]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,316],"duration":2.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.047,"geometry_index":25198,"location":[8.716496,44.419309]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[157,331],"duration":3.836,"turn_duration":0.011,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.438,"geometry_index":25203,"location":[8.716821,44.418929]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[155,334],"duration":0.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.281,"geometry_index":25205,"location":[8.717259,44.418227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[146,335],"duration":12.836,"turn_duration":0.036,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":11.523,"geometry_index":25206,"location":[8.717295,44.418173]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":2.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":2.5,"geometry_index":25220,"location":[8.720557,44.417618]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[83,263],"duration":5.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.234,"geometry_index":25221,"location":[8.721412,44.417693]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,258],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.93,"geometry_index":25224,"location":[8.723141,44.417859]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,229],"duration":6.391,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.75,"geometry_index":25231,"location":[8.724239,44.418338]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[46,227],"duration":3.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.242,"geometry_index":25235,"location":[8.725679,44.419316]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":1.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":1.648,"geometry_index":25239,"location":[8.726429,44.419895]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[41,221],"duration":8.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.438,"geometry_index":25240,"location":[8.72679,44.420189]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[54,234],"duration":11.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.398,"geometry_index":25247,"location":[8.728619,44.421417]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[60,240],"duration":16.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":15.281,"geometry_index":25255,"location":[8.731561,44.422812]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":4.922,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.68,"geometry_index":25256,"location":[8.736319,44.424764]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[60,240],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.656,"geometry_index":25257,"location":[8.737623,44.425296]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[56,238],"duration":8.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":7.992,"geometry_index":25260,"location":[8.738611,44.425724]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[40,224],"duration":5.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":5.312,"geometry_index":25265,"location":[8.740576,44.426848]},{"bearings":[43,210],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"geometry_index":25271,"location":[8.741377,44.42777]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"ALESSANDRIA"},{"type":"text","text":"/"},{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"ALESSANDRIA / MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A26","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A26"}],"type":"fork","modifier":"left","text":"A26"},"distanceAlongGeometry":162056.625},{"sub":{"components":[{"active_direction":"slight left","active":true,"directions":["slight left"],"type":"lane","text":""},{"active_direction":"slight left","active":true,"directions":["slight left","slight right"],"type":"lane","text":""},{"active":false,"directions":["slight right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"ALESSANDRIA"},{"type":"text","text":"/"},{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"ALESSANDRIA / MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A26","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A26"}],"type":"fork","modifier":"left","text":"A26"},"distanceAlongGeometry":1609.344}],"speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to stay on E 80.","modifier":"slight left","bearing_after":114,"bearing_before":112,"location":[7.36704,43.745118]},"speedLimitSign":"vienna","name":"","weight_typical":5987.238,"duration_typical":6177.105,"duration":6177.105,"distance":162056.625,"driving_side":"right","weight":9762.719,"mode":"driving","ref":"E 80","geometry":"{t~lrA_ws`MfGkXjOeq@~DuQhE}RlEgWbDuSfCaV`CkVzCsb@lAiUf@uJ|Ckq@hDqu@bB}b@lCut@j@_PPqFnAoi@zEsrBTmN?wFIkDOgCiAgHQeAc@iDS{AOiA{AyM}BiJcBgEsB}D_EwHoOsXmHsNgKiTeGiNmOa_@cQia@eHiP_FiMgKyWcCyGuFqO_F}OMa@_D_LgD_N}BgKiDqPmDuRyD}UuDuVqIwj@{EgYwFoZmCmMgE_QyE_Q}CoKsDeLkFkOuFoOsFoMaHgPkF_LgFsJkHkMeMmReGqI}HeKqNmQ{`BglBaeBiqB_NkP{KkO}LgRgJ_QiFaMmHeRwEyOkFsTaEsU{C{VoCc_@a@uJKyII_IAmTp@oXlAgRv@wHpAiMjD_VfEuS`F_VzmAgeE|EmTnE{SrEmX|Ec\\`D_XbEca@lCq]pBq]jBaf@p@a]j@ig@j@sw@Ta\\@cVKoPy@{a@uBua@wAeP_BeO}DqZ{DqU_FwVoEoQ_Nwd@mLu_@yLo`@eJi^eJ}c@iGia@aKys@_FuZqGo\\gEyQcFwQiJeWcKgUcIoNiL}QmRyUwd@ug@cKkLaPaRmSiW{MeT}NuYmRsb@mOq_@iPeh@cMag@uL_i@iNqx@mGio@wEym@wDoq@qDwvAsAqp@i@qz@AgpBXyxBEku@l@eq@j@o_Bm@a`Am@yZsAqY}A{TsBgRkFa\\kFqRyEkNoD{JsEwKuIiQwQs\\yGcLmJgP{I{NsQyXkKmPqJ_NaJwKcM}MeGeFgHaFw_@_UoZcPkUaNmRoOoQ{OeR}OsPsLaNgIqOyGkPsEgQmD{JeAkRaAeLKqO^wd@fD{eA~LkUxBcQn@qPBqD?uQq@cTuBgReE{t@qWg[uGmWeCkZoA{j@q@o_@b@y_@nBw_@jFwhAvQyrAp[q^hGw^rFed@fEqPz@iJ`@mG?yZqAsReCuJuBcDs@wS{G_XkMkQuL}QaOaOwO}JuL{EmHeJmNwJyQ{NwYoNkXcJySqJ}ToJkW{Uao@{HwVkIw\\qGo[_FwXeGic@cEs`@iD_d@iBsa@cAk`@e@k\\m@ieBa@{c@aAoe@_A}RyBaYyCgX{DqWyDgUkCkMu]{iA{_@wjA}GePiz@ckBcb@i|@y\\}r@qYil@aZyl@uZkl@qSc_@gMuSaM}ScPyViSeXoGeHiOoOaQyOkR{K_TsKs[mM_RgFqa@kIwPmD{MsDePkHyHeEiIeG_MkKkLcMsJwNgIyNoGeOyG_PoFkQm@}BcGcUaIwb@sHii@gKoaAqGo{@]{GsAyUsAyWgAa[oAwe@[mUQsUBoZGwZHgXFsFVwRZqTh@oWz@uYxAo^|AyYnBaZlFmn@vF}b@lGsa@lGs[vDiPjHyXvNkf@bLu]dAcDxPmd@fTqk@tn@{aBpMic@lDkP~E{WlCiT~Ci^zAcXbCgt@~A{z@Zs\\HkN@_C@gO?gWAwy@MedA@oR@{G@uO\\i[r@w`@r@{^r@_\\~Acj@NqEv@{TbBa_@xAsZzBm[lBkSjCkWfFq]vDmTdHi\\pEuP~GsSzSki@br@}uAdL}UnL{WfI{T`IsW~F}UzE{VlDcW~BaX~@kSXsSJoTSu[{@sZ}@iYiCir@{@{ZUq[JmYf@uZ`AuTnAkSlBwUpAeNdBqMbHwc@~Fa^zAqIdCkNzFa\\fDwS~Gwc@dJ_q@hP{nAnCsV~Ck\\rBqVpAgW\\sMl@aSTuUByQUsTiAaW{Fky@kQovBoNaaB}K}sAwFit@mFkgAeCu{@r@kdArCiaA|E{w@zDa]dIcm@zIci@`Ic`@hHeZvGwVjH}TpDcLpK}Z~^ifA|Lea@zHsX`FoShF{WdDaUtBeUjAoU\\uTAmVa@eUk@aMoBkT{C_TsD}SyEkSiDmLmEkLkFiMqHsOsHiM_IcLsL{McJuI_JmHoJmGeJcF{NuFmS{FgHaBqFaA}x@kMyx@mLcy@gRgc@wOy\\aPkXsM_YmNoXcOIEg{@{i@a^qWkKyHyb@}ZiVmW{NaTuVqb@sPuc@_FgQaIg^gHy`@oFih@sA_a@Ye]H_[^oOd@{JfA}PvAeUbB}PrC}TfDoS~Io_@jHgV`IuVtYyu@hKe[dLi]`Ood@tIg[zGuZjDiUtCc[tDun@pCcp@pBay@v@ehA@uk@{Bk`AwB_g@cGiy@eGcq@oLq|@wPyeAm|BkaN{TcsA_DqVU{BiAyNiBmR{RayA}A{JmAsD_CaEyBwD_BgCgAgC_BiFaJgg@iQuiAqW_dBkJyo@{DqZaIsd@gI_k@oJoeA}Esu@ePexC}D}iHs@g{Ix@e|@vBovAhEktAhGysAlFmjA~Bi`@~Byo@v@yS^}HnAcWhB_WfKiaBt[}hF`SweDjDie@jCk[fJ_jA|e@o~G`Dm}@tAuaAw@ycA_Awm@wAuj@{Fi`A_Hsr@yMyvA{P{bBcFcn@aCo^oB}e@s@{UcAmg@eBku@e@qi@Zch@z@g`@hBim@tDqn@dJ{uA`Coh@pOokCh\\wmFnJ{xAzImwAxCw_@dFka@`Fic@hAeMvAeKzDiY~F}W~Hm\\nLa^lH_OzOaZjyBq`E|lBuoExCqG`]it@rMeZ~GmPlHcTnFsQfHcZnEiWhDoWbCwVnAqUjAi]h@_`@Uc`@eA}[qBcYaEm\\oE_UqFsS{JgZgJcT{HkQ{KySsJwO{KwOkOcQyIuIsJoHqMqI}JiGgKkGoXqNiVkMeEcCa|@}c@gPqJ{ZuSwZyUwd@{_@aQiPyQeRaFcGaRyT}K}N}HmK}IuLgJsMsQ}Ws_@iq@{j@anAuPw`@kQ}j@si@}zAmc@yiAeIgVg_@u}@y@sB_GuNeJ}Sck@mqAsj@orAa^{x@qJ_XkIwUoSss@}Riv@uJe^{Jab@wdAq`EyQws@uXm~@_Q_r@k]}wAy]_rAsT}|@wRa`AmLov@uIgq@_H_k@_CuSE]yN{lAqK{}@K{@wIiv@wRy{AuDwWaBqKa@gCwDwS{DuQeDcMmDeKsFwMuGiO_K{RmMcSsKkN_OoNyNiLoIsFiH_EeJqEiLaFaK_DwLuCgNuCcKqBmMwBwV_E}O}BuRiD}RaEgMwCsGaBmGqBsJmDeKoEwIsEmHuEaGgEyFoE{FqEuHuHeMyO}K{PQYa`@qw@kZoaAk`@cyAcc@chBkf@}xBmHaX}Loa@yRwi@}Pu_@ySyd@k^qm@y`@wg@yNqLkVmN}MqHyTeIgU{Dyc@}Gap@iGwe@{@sz@xEwa@|Fwd@fDmDC_TxCyUdEgEt@sNdCo\\tEiYfEcK~AiUpEwYxCu\\\\iXwBiWeDaWyGkXgMcUmP_QqPgL_N_P_T_a@{p@a\\aq@iO_h@qRuz@qKyv@aF{u@oB}s@dA}x@xDgi@xIwo@nHsa@~Jgb@tRer@dZs|@|X}|@|o@sqB`]acAp[kaAjUk`AvTygAf_@swBlOuoAnM_dBhGgp@xFys@?C|Eao@~[y}DrIi~@hKefAbWklD|A_S|Gay@`JobAhP}hBnNszB~@o{AwA{z@o@wRiC{[wAkLsCkWiD}X}Lcv@}XgfByQmsA_RwnAcOo~@qMoq@G_@qQoaAwGua@qiAs~GsRorAeX{vA{AyFyHkd@oCkPaSmz@o`@{hAai@_{@kr@qaAkw@c{@m^qd@}[m_@cZs^{Xu^sNaTyP_ZyPe\\cEoIqMyWgNma@kKk_@gWmaA{Let@aHio@sDca@{AcWiAia@mAc\\O_~@Rwy@ZklAC{p@nBy}Em@kg@iAqa@gDwj@cByScPwqAi[smAgm@}xAwb@}r@gl@ir@{VySyBcBgh@q^{[cP_C_Aci@uRwFoAa[eHu_@aFsoAoJyg@mDuRiB_XeCeVuCkOuC_`@}JwR{HkQiIoN{JeN{J_QaMgLqJgT_PiMqJqKiJiReNcSiTii@wh@{aBkqA}LcJuTsO}ScOgj@ue@ql@eb@_]eWeUgS{j@qi@wdFu`EqjAo{@aSySkOwRmM_TgJqRwFwM_K}[qJ_c@oHwc@iEae@aB{e@Daf@nBwe@tE}d@zHqc@zKwa@vNm_@hQs\\|SsWl^e^bh@q]~eAun@deBybAzb@mVlDqBzRaLj]sThPqLnO{M~N}M|I{InNiOzLmO`T_\\zSaa@tJsSlIaSrPke@lHgVlJc_@jIw^xEiYvC{V~BiZdBi\\vAee@hAme@lD{wAlEoxBH{FdDqyAlAk`@NsEbB{\\hByXzBaZtBmWjD_a@hDgYbGyc@`Iyi@dVq_B?CF_@@GBQxAoJr]m|Bd{Am{Kvi@_aDzRa~@nUe}@hWk}@pZibAtgBakGlWsnAvIog@vGmc@pIqo@rFcj@pGow@vCw]bBeSdVanClEmf@hPuiBZaD@MdOm_BjM{}A~SidCnGqcAvAuYzAsa@~Akl@z@si@n@wr@\\}^l@}j@d@ej@fDw{CzAudB^ua@`A__Ab@sh@KwYw@me@sA_^oCq\\kBwPeDuUcC{OyDoTgKgg@cMcl@cKge@aTo`Ay_@ocBm`A{gEqGgXkEuPqGqSaK}VyJmS_OoXiYgc@qSiVkXmVmb@{W{i@eYubAuj@_QsJ}X_PeH}DcZiPqe@e]kb@s^{^}a@sd@ci@m\\af@kWwe@_Ziu@}Poj@cJe]kVsfA_O}pAoGmkAcBkd@_Ac]_@ia@FwYZy^\\kz@c@e`B{@{~Ag@_p@oAet@_E{jBk@g`@W{Tc@w|@g@sp@u@w`@cBul@qDys@KcAkDe_@Iw@oBaT}Jst@aKek@m^}aBkj@urBqL_f@mr@csC{Qet@wW_jAs[}fAklAm`E{c@yfAsr@uvA}Ykc@eV{Vec@}]qi@wc@sMeKiHwF{b@{\\m_Auv@uZwVe[_Uuo@cf@yN_MyXgUcTaQeNgMeRaSoW}ZwV{ZwKuOeDmGmb@ot@ok@afA}k@wiAwXyi@ev@yzAw`@kv@mMyVqLmUsYik@mYcn@eLwSmcBwhDwOqW_L}TeS}a@yWco@k^aiA{[akAqa@y{AmYwdBuN{`AqNijAqL_fA{Qm_BgU}nBaKgq@_Kmi@eRmo@ed@}w@uRcVeT{S}R_Q{TcNcaAs[aMiAiXcCa`@BiPlAan@vK_SxCoa@hI{]hIuXzEqv@nRoo@xMoXpFmo@vMsa@xBc_@^cXgBo[cEs^{Ie[kKqa@qR_QkKqAy@aRkIeTmQsM}OiNyTsMmXiFgL}EeMaHaTiC_ImDkKaOue@mBsGuJmg@]eBcDaVsAeJmEi\\oD}`@y@}]R_e@jC{]pBa]t@cMjGkk@~M{u@xI{[hLa`@fLoY|LwVjPqY`PsUlNmPhNuPnOwPhUiUbTiTvQkPpLmK`m@_i@zfAm|@vLoLvHmIrGeInKwP`M{TnP{]tL}ZrKq]`Iu]nH_e@pDyWrBuXpA}[Z{\\a@ma@}Aq]wGqcAeFqi@kG_n@}Jgj@uNsi@w^{z@g]cl@eqAoqBea@yr@ywAszCwm@wtAkLmWkU}g@sR_d@{S_b@}Sq]eb@gl@_WoYyJqLcYkZaRyNeZ{TgYwOuYsMgo@gTeXiHu_@uHqW_FmXwD{[cDqkA{P{aByV{_A}LedAeMcm@sHw_@_GaOeEuKgEuIoE}Q}LcEeDyCgCyDuDiC_DgMgPkSeZkG{LiKoNiUgc@uGeO}IcVoEoNoJi[mOyx@{H_q@mDcp@cAih@gCmjBsH{yHcDccBoCcdAAa@q@cj@{@o_AcCa`AoDgh@qBsVoDeVwCcSuPas@aTcn@eJaSuCkG_Vub@ySsZaVoWu]a\\cs@ko@cXoVus@cq@yU_Twf@id@c\\}YkXaXmFmEyd@gd@cOsPaL{NqVm[go@_{@io@kw@oa@ei@cw@{_A}i@wr@oA_Bak@ut@il@ap@mLcLyQsMmu@sc@wq@aYmkAel@aMsH_WuPuOyLeQ_OiMiLwPcReLiNcMaPmFeHsHcLkQ{YqEwIyKwT{FiMeHePwGoPkPmf@iTgv@ct@}iCqvAmoF{z@gaDqmA{xEcaAisDuScr@kJeXgOk`@aRq_@gRc]_ReXuB{CeJ{LeW}ZkYeViW_QmWyMsm@cRw\\wHoZ}Duh@iDwr@Tsa@xB}AHy_@fCmYt@gGNkUj@eICaKk@sMu@gO{AgT_DkY}HiScIgIyDeMsGqKyGqSsMwP{LYSyUqUaOoRwNuUqgDoiGoF}HyN_Tu\\ob@{U}WyMwKuDqCk^iSaVkLwc@cN{QsD{a@qFcb@eBm[b@eTdAcWfD{PpCcEfAmIbB{_@jMge@~Uk_@dTmAh@sNhHg[~SsWnPkd@`UmSdKmUlIgZnLwV~GqA\\uX~GaU~Eo[vE_J`B_RfDms@`Nco@pSor@~a@{XzS_a@zZ}w@po@mu@ti@kQrJcTxIaWpH{ZxEqRpBoV`Aaa@Oy^yA_bA_Hay@gFsb@}CykBeL}}@wEye@XqY~@iRnC{l@hJeu@pQoYnJwp@`Zmv@ph@_m@~d@qh@x^afAf{@ca@`\\kZ`TgUpMuQvI}f@~N{YtIsVnDsEp@ab@|C}`@Jmu@w@ozZ}`@yRT_~AbHsy@|Fk[zDsUjC}YlEwWvDca@|Eu\\xDy_@hC_`@Z}h@oAsT_A{]iE_\\qFo`@gLo_@aMksDe}A_]yLm]gJiXeFqXuCuTcAkW@gTf@qSfA}g@tEsxAjNo^tA}]s@mTs@cRiCwk@}NqYiMyTiL_VwRwRiQcMqNgMoOsL}QkNkSuMwXuIeRqLe\\gXcv@a^c`AgZix@uUqo@qQsg@cHwRcQwe@uC}H{Tcl@_LgWeYwo@ks@enAe`A_yAil@_aAm~@}~Ac[kf@{_@up@mf@i`Ay_@uz@o\\aw@}d@unAgf@}uAkLs_@oLwc@qFcSsn@ocCaWgz@_Uop@oXit@aXan@eQw_@gLiSmLuSsZch@c[qf@qXu`@wi@mn@yw@ey@}`@k_@o]sXgh@w_@__@}VuTgO{UuQuP{LuSeOgE{CyWgSeK_IkYwU_o@_j@_~@{~@eA}AcUoY}Wk^cOyRkI}LcKeO{Rk[{\\yi@_l@o|@ch@gv@e^qi@qeAq~Ace@ys@gg@mu@}W{`@ayAoyByMoRae@ms@mWm`@oQcXiNeTax@mmAe[eg@gc@sr@wsAa{By\\kk@}f@mz@o^ol@mEgHyGwKek@{~@u~@g}Aua@er@u[}g@{e@yw@asAc|BckAgjBkI_NgMcSyWya@e[qf@wu@ikAEGcsAytB_Yic@eWy`@qN{Tuy@oqAo`@im@wWwa@mRkZ}IkNgVq_@kMyRc[of@wEmH_i@oy@CCcRuYe_@ml@c[mf@qr@egAsy@}pA{HaMyPsYoNiWyKyTaKoSqMmYkPg`@oMo]{Ls^gJwZeNuf@}Kw`@sW}_AwKo]cNe_@cNe[eMeXyMwUkI_N{JkNaUwZ_VyVoL{KcKyHmUaQiTwO_XiNiVwKes@{UcYiGuWaEkZsDmZoAwYm@gXIkWh@}RvA_RrBgNbCaPxDeO`EeQnGwOlGoKlFuMdGoXnOaQlKqXxQqIfFoHxEiMjI}a@~Wcp@da@on@b`@_OvJa^vU_NjIuG~DekBtiAwa@hToRpImFnBmMtEaLxDcXbHwW~FiZxE{Hx@{X~BiZz@uTd@c`@a@{^qBkL_AyM_BqSmCaEw@yNuCkWaH{RoG{PiGgTmIiKaF}ToKsOcJaLyHuSmO{SoQaR}PkUuT_W}YaOgSwNgUcMuTwQg]yI}PiQka@_N}^qJaZ_IuV}ImZeGqTyKy^is@y~BsIsTsNg^mIuPoGyMoYkl@gLgSgPgX}PeWuM_RoSgXsKuMePiRclC{_Ccu@yl@{WgTqh@cc@wOwMggAyz@sLaLil@wc@yTsSkp@}h@{yA_}Ag\\g`@mQ}Su[aa@uIuKaa@wi@a^uk@_MoT_KiQciAetBim@shAgsA_sCym@inAy_@}{@sCqGo\\mw@_Vol@aWop@cVir@saAclCgAwC{k@eeBma@cgAmRef@qd@ycA__@eq@_e@gs@{@qAoe@yi@{b@_d@qa@}^aaAmj@a`@kPm\\sN{n@sXs_@ePsd@kQwf@iQ}a@_PwWyMmq@uXsh@yUw_@gW}UqPgPsOwYuYiOcSgKyMeJoOqPaZgLiUuMsZeKoWyMk`@yPwp@yNiv@a_@onCed@weDmKim@_Loj@eKka@kMya@sEkNcG}OwMiZm^}o@k`@kn@ue@of@_g@y`@qn@_`@eg@}Xo]wRcH}EyOuJsLoJw_@}WoeH_lHqtBezB{KeKy\\kYoNiL}L_NySyPu_@sW}e@}[uIeE}GcDmOqHea@kOkw@_Tct@{K_j@kDgc@s@ob@hCkWxBsTrBu~ArSkpBjWmZdE}k@lFaj@bAwe@u@omAgNoiAwKu_@_EkXkGgk@qVoe@mYm^uZqt@c}@yi@_}@{d@uaAsQee@ySoi@{Ns`@eVaq@qNca@{Lw]eGwP}GoRyJoVoGmPkRsc@gIyQyIkSgTi`@sQi^_i@s~@wk@w{@mj@ik@}SaTuDuCcj@ga@wm@e`@yiAgo@wReMcEmCwbAyk@agBqbAit@_c@ks@}b@i]iVqRaP__@wb@ia@al@{Oe\\_EyIiK}UyLc\\}HcYiJsa@qIad@iResAyG{b@_@mCiPekAyn@y{DsmAmuHmKmx@uEer@{B_s@q@um@Tsg@^eg@X}X|Bir@xBma@tCy_@xBsYrMccBfJkcAlCyZdBwRrAmYjA}Yl@{f@Uia@]mUm@}S}Ay\\mGyw@aI_p@yCwR_FeWut@}cDyPot@aGiWuLqe@mD_OaHqYoYckAcRuy@}Fi[uGg_@wF{b@yEwi@kBgc@k@y]F{]x@aa@hCu`@VeCpDs]pEg_@|Fe_@~Iuh@bKmk@~Mkv@xJ}m@jJwj@nL{x@xFym@tC{h@vB{`APifAz@i}BCiXLka@oBsy@_Ba\\yAmMm@eFcC}UiCuOqO{r@kSa`AwPi~@}Hw`@uDs]mS{xBaD{_@a\\udDcFmZcFiV_Ii[gH_VeLaYgI{S_JyOeL_TmT}ZoJqJkF_Ga_@c\\kTmMyTaJs]kMk^qI_UsCiTmA{Z@of@fEsSzCsTdD}a@`Gs[pEqOxBmSpB{a@|A{^zAmZjA_]p@m^_Ayu@iJcg@cLad@kPyw@ua@{_C_{Ac{GakEqf@sZid@gVw_A_h@qNgFmMuDyTkFiOkCqPwBqSiB_YwA{KQkd@Cu^Nea@HshBBy^Z}o@Bsk@DkKWgQy@{Q_B{NkBoQwDgTmG_SiHkOyGqL}HeW_PsWeTeSuR{KuMmKeNaMoQgIoNyHaOeJsS{Rag@_Oc`@aZcu@aDuI_EqKqScg@iT{e@iXif@yg@gt@oAoAyYsYa[wYiG_G_b@}^}b@i^{l@gi@yi@ef@ox@qs@q\\m[qYaZcVmYuWw]kOuUke@}v@kMsT}Ra]eZif@kPcYgo@ogAqQs[iUw`@}RwZoNeReSgTyWsUwc@kYyVsKqU}IgRqFol@sOyLyDmOgEif@}NuBy@CAkIeD}LuFoUkOeH_GyHoHgI_JcGeHoJ_Lee@uo@us@oaAoqAegBsFyHuDiF_JeMsPqVeTi[qJ}PgHgNwHgPaHwO}HkS}IoWEOgM_a@aJ_ZCK_m@ynBs[{dA{Um|@oVyv@uLw[aXee@{QwVgLyM}R_QcT_PqTmLyRkH}LkDkJ{BeK_B_KgAeEa@wXkByIU{^t@g`@h@eYVwXOeWlA_t@Ts_ASgv@x@_^{AsSgBkPcDiXaHgN_FcKmEkYyN}L}HgLaJsV_T{CcDiLaLsJgKsHkJyHmLcIeNkKeRsGeNaHuPiG}PyGmSsFcSmFwS{D}R{DeTeBqLuFuf@uB{V}@{M?CWwDsBq`@{Dsv@qAcWmEgx@yDex@cG_w@i@cHmJqx@mLin@{Ner@oMed@qCwJo^idAsOe\\_Ucb@{b@uq@oZia@wC}CgEsEmEyE}GkHy[oY_GkF}f@k]ka@{Tef@oU}FqCijA{h@ga@_S{XgNyXgNqPeI}FsCc}BoeAkYiNo_@aS_JgGcKuIsHkI{U_[wJ{PqGqMiGiP}Nmf@cFoVuC{SkBaVyAyYeAq`@cCc~@gB}fA{Bsu@iAgNwAcNiB}MwBuMgCmM}DqPyHwZsMuZgIeRyTs]ySyX{Um]sSo]_LeTgIiR{Mw]_Tsl@_IyUuG}VuGa\\wFy`@{Eu`@eHwY}DiUqDmT{Nex@cLwj@QeAyFoS_L}`@aLiWwMgX}h@uo@{a@um@cd@uo@ub@mk@c^ae@e`@ck@mZ{a@ca@}f@kh@up@mu@efAab@w^ke@s]qeAkl@co@u\\wQmOiJeJaHmIcJmMkJgPmIgR{FcPiFwQeE_QsDmSsBePqByQ{AaVa@sOEeM@cRN}TVoQXiOP{IVkM|@ae@Z}OtAmv@x@g`@`@oVFeD\\gRXyU@gSKyXMeKWcLa@qKm@eNu@wMuAgTwAyPqIo}@eIe{@w^kyDmWyoCgM}sAeBoT{@mQ[{RLiUp@yR`B{YrAmQ|B_R`CyO|AyIf@qCbD}NdDoLrC_KxDeNvBuH`BaG`S_p@hPqk@fByIf@aCl@wCtC_QlCs\\|@s\\]eX{AkWiEum@cFod@qF{]yFwZyFmUyGkTsLmVwJ{NmQeTcOiMKKym@_k@qrAcpAii@mf@kj@_g@e}AetAaByAoHyGoHaH{CuCktAuoAkzAssAmEsDgLoJ{g@_d@gv@ot@cFuFaJ{JeLaR{IoQgJeYoCqO}C}S_BiW_@s_@EeWM_qAWsv@CiLs@gwB?e@Fi~@Uw~@i@{}Bg@ed@?Cc@kLmB}SqAiIwGy]eGqSkCmH}IyVgKwN{LgOqS{MgV{Lmb@_Uc`@kSe@Y{TkMot@cb@wg@}VoG}CyAu@eVyOkv@ui@cX}Puz@mp@}uAugAcuB{|Awc@{_@cTg[kOwUuL}UgvC_{GuRyf@kUkh@aZ{x@uDmMqD}NqCwQsAgXAgN?mR|Ae[jIgkBzB}`@nDkq@pGwyA`Aoa@hBk`@n@{^AuY{@oX{MycAaBqNy@{SMuPt@_VlBiPbDiQ`N_d@rJqa@dIg^hEcZ|Fsf@rFsq@z@yJ`HqhApCmf@dA}[Mw^y@iTeFae@wNkg@gMe]sQo_@}]ur@if@qcAoYak@{d@q}@aFqKwZkp@{EwLyEwLuIi]wI_d@wJeo@_Mqo@cPal@aYmx@eCiHgOkb@cOic@sJq\\cIiZ_FoUkDcRaDmRcEwa@i@oGgCuUsCua@mBye@mJozBeAiYq@qLgAcMoAgL}CmSuB{LwDiQsD_Nw@uBcE_LIUwFiNaJyR_LgSwSm_@cTqc@cJaXuFiVkGsYk]s_BsL{^_OyZm{@yqA{RyZcZic@_d@kl@wXuc@ov@{qA}OiVuLkUko@kpB_Yww@sNgS_WeQgcAul@iO}JsYoRey@_dAmToXse@}l@aZs`@kf@wn@{Va[kQcOaRwOsH}DsSuKay@yb@um@a\\ka@mTevA{r@}]eXqg@w_@sYcWwSy^ub@y{@sIiMkQwY}Oc]il@whA_GsO{DkOqBqNu@wODsUj@oLbBgNbQm{@fNww@jIch@nCoTbAiKx@yL^yNKiQSeOi@yPoAeRkHwbAkFou@uF{w@kFuv@oFchAsAcPyBsRiH{e@}CiOuDqNgEcNgIuTyFkN_FcKiEiHoG{JaFmHgGsImt@{oAe{AgvBm~AubCcN}SoP}VcMsQ_JeMmrAqqBwHoMoWq_@cMeRsQ_Y_IeL_B_C{AyBeYwb@wD{FiMqR}MkTiEsGc[af@aNcUgEeImE{IeEoJ_D}HkOm`@kC}HcDwJmDuL{Rwq@sY_eAiBwGkLc`@uFgQsIwWuWos@cLqYqJuUwEcMcXkq@qI}TuByFs`@gsAgBcGmc@yzAaFqP{Lkb@uCeJsCyJkCeKyBqJkAuGsAqJqJut@uHsk@qSm`B{E_`@kF{`@_RkwAkS{~AaCsR{Fsd@iDsWuCkVwB{Qa@mDq@wFyU{aBwFs`@cCcPoGm`@{RgmA{CcQq@uDeE{V{Kyr@wMuw@gJgk@{Lov@cRahAuBgLiBgHaByEuBoE{EuIgDkEiF}FaG{DsFkD}LqF_x@a_@{SiK}D_CyEgDsE_F{AyBgBkCaFgJ_DwHeCqIgBiIuA{JoAyKyHss@yHkt@iD}ZgFqa@uB_MyBiKmCcKsCiJwT{o@o\\kaAiOyc@gVas@aG}PkEcLuEmKqMyYkg@ghAeSic@}CmJ}BeKyAqKy@yJUgJGeKTeK~@mKrBuM~BiJrCsI~CkHhD_GbEsF`EeEvCgCr@g@rDkCtDgCbWcMvRgLjBgAfEiDrEyE|FmJrEyJnC_H|AeHfBuHlAsIt@yIZ{IIaMa@gMcBw_@}Bgn@uCmt@wEiqAo@mLcAiKiAcIgBgJ{ByImCsH}B{EwDwHkEeIwKiQsTk_@yMoT}JyPoAwBkHcLyFeIoOyRkQqUwX}]uFiHcFuG_EwG}C{F{F_NkPw`@gZ{s@iNa]cGgO_FeN{GoRaImWaHgUo@iB_yBkhHg`@opAmIeXcG{PeGuQuSsj@eIgRwMaXuJiP}KqPsIsK{FcG}IcGiQ}KiDeCqCaCgDoEyCuEoDaHs`@gy@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 28 miles.","announcement":"Continue for 28 miles.","distanceAlongGeometry":44624.457},{"ssmlAnnouncement":"In 1 mile, Take the A7 exit.","announcement":"In 1 mile, Take the A7 exit.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Take the A7 exit.","announcement":"In a half mile, Take the A7 exit.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Take the Diramazione A7 exit onto A7 toward MILANO GENOVA.","announcement":"Take the Diramazione A7 exit onto A7 toward MILANO GENOVA.","distanceAlongGeometry":200}],"intersections":[{"lanes":[{"indications":["slight left"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight left","slight right"],"valid_indication":"slight left","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[8.742665,44.428557],"geometry_index":25275,"admin_index":6,"weight":4.617,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":4.648,"bearings":[45,52,231],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[25,212],"duration":10.148,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":0,"weight":10.148,"geometry_index":25280,"location":[8.743248,44.4291]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[153,322],"duration":22.688,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":22.688,"geometry_index":25288,"location":[8.743099,44.430683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,325],"duration":10.797,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":10.797,"geometry_index":25308,"location":[8.739843,44.433985]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,336],"duration":6.258,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":6,"out":1,"weight":6.258,"geometry_index":25316,"location":[8.738194,44.435447]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.737854,44.436422],"geometry_index":25321,"admin_index":6,"weight":14.672,"is_urban":false,"turn_weight":6,"duration":8.672,"bearings":[163,173,354],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,330],"duration":0.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.898,"geometry_index":25328,"location":[8.737289,44.438001]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,330],"duration":16.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":16.102,"geometry_index":25329,"location":[8.737173,44.438146]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[148,329],"duration":11.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.266,"geometry_index":25333,"location":[8.734954,44.440753]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,300],"duration":18.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.141,"geometry_index":25339,"location":[8.732655,44.442374]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[97,277],"duration":4.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.656,"geometry_index":25348,"location":[8.727543,44.443251]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[97,276],"duration":29.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":27.242,"geometry_index":25349,"location":[8.726133,44.443368]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[122,311],"duration":11.086,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.258,"geometry_index":25365,"location":[8.717882,44.443678]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[150,335],"duration":1.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.305,"geometry_index":25372,"location":[8.715987,44.44523]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,337],"duration":17.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":16.484,"geometry_index":25373,"location":[8.715822,44.445487]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[23,200],"duration":36.461,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":33.727,"geometry_index":25386,"location":[8.715667,44.448908]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[104,282],"duration":37.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":35.172,"geometry_index":25403,"location":[8.724906,44.451304]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[86,271],"duration":10.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":10.047,"geometry_index":25429,"location":[8.734147,44.447121]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,237],"duration":8.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.367,"geometry_index":25437,"location":[8.737297,44.447946]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[44,224],"duration":21.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":20.891,"geometry_index":25442,"location":[8.73897,44.449116]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[30,39,214],"duration":4.156,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.922,"geometry_index":25447,"location":[8.743832,44.452855]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,201],"duration":9.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":9.43,"geometry_index":25451,"location":[8.744389,44.453673]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[0,179],"duration":0.125,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":0.109,"geometry_index":25458,"location":[8.744777,44.455889]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,358],"duration":4.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.586,"geometry_index":25459,"location":[8.744777,44.455916]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[178,358],"duration":6.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.477,"geometry_index":25461,"location":[8.744719,44.456938]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[177,356],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.039,"geometry_index":25463,"location":[8.744616,44.458378]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,357],"duration":1.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.328,"geometry_index":25464,"location":[8.744615,44.458388]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[177,356],"duration":39.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":36.227,"geometry_index":25465,"location":[8.744591,44.458683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,338],"duration":6.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.586,"geometry_index":25474,"location":[8.743081,44.467369]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[151,329],"duration":6.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.016,"geometry_index":25479,"location":[8.742233,44.468584]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[140,318],"duration":0.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.039,"geometry_index":25484,"location":[8.741044,44.469725]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[138,320],"duration":0.367,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.344,"geometry_index":25485,"location":[8.741034,44.469733]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[140,319],"duration":10.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.266,"geometry_index":25486,"location":[8.740964,44.469792]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[137,318],"duration":5.648,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.078,"geometry_index":25490,"location":[8.738811,44.471502]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[139,320],"duration":6.062,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.453,"geometry_index":25493,"location":[8.737576,44.47251]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[141,324],"duration":8.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.273,"geometry_index":25495,"location":[8.736292,44.47362]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[169,354],"duration":9.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.57,"geometry_index":25506,"location":[8.735294,44.475357]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,187],"duration":4.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":4.469,"geometry_index":25515,"location":[8.735501,44.477626]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,348],"duration":4.711,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.359,"geometry_index":25521,"location":[8.735426,44.478798]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,335],"duration":7.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.289,"geometry_index":25527,"location":[8.734941,44.479846]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,349],"duration":1.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.086,"geometry_index":25537,"location":[8.733983,44.481583]},{"tunnel_name":"Turchino","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[170,353],"duration":36.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":32.805,"geometry_index":25539,"location":[8.733911,44.481855]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,338],"duration":2.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.648,"geometry_index":25546,"location":[8.733215,44.490562]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[152,331],"duration":20.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":18.609,"geometry_index":25551,"location":[8.732804,44.491181]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[133,309],"duration":2.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.266,"geometry_index":25563,"location":[8.729261,44.495311]},{"tunnel_name":"San Pietro","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[123,301],"duration":9.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":8.344,"geometry_index":25566,"location":[8.728589,44.49566]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[104,285],"duration":2.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.188,"geometry_index":25572,"location":[8.725781,44.496364]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[106,290],"duration":15.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":14.523,"geometry_index":25575,"location":[8.725022,44.496515]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[120,298],"duration":1.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.812,"geometry_index":25587,"location":[8.720512,44.498506]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[114,290],"duration":32.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":29.633,"geometry_index":25590,"location":[8.719898,44.498714]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[126,311],"duration":11.5,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":10.633,"geometry_index":25604,"location":[8.709179,44.499961]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336,344],"duration":4.734,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.258,"geometry_index":25614,"location":[8.707032,44.502285]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336],"duration":1.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.477,"geometry_index":25615,"location":[8.70636,44.503351]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,336],"duration":3.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.5,"geometry_index":25616,"location":[8.70613,44.503723]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,335],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.656,"geometry_index":25618,"location":[8.705567,44.504612]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,337],"duration":6.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.023,"geometry_index":25619,"location":[8.7053,44.505029]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.704528,44.506559],"geometry_index":25625,"admin_index":6,"weight":1.773,"is_urban":false,"turn_weight":1,"duration":0.844,"bearings":[151,164,343],"out":2,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[false,false,true]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,344],"duration":66.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":61.82,"geometry_index":25626,"location":[8.704446,44.506754]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[181,358],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.789,"geometry_index":25673,"location":[8.699889,44.522227]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,356],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":4.789,"geometry_index":25677,"location":[8.699784,44.523492]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,356],"duration":0.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.273,"geometry_index":25679,"location":[8.699654,44.524759]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,356],"duration":16.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.531,"geometry_index":25680,"location":[8.699647,44.524834]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[159,334],"duration":6.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.32,"geometry_index":25686,"location":[8.698834,44.528878]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[156,343],"duration":20.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":19.016,"geometry_index":25689,"location":[8.697777,44.530369]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[157,343],"duration":28.43,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.586,"geometry_index":25699,"location":[8.696233,44.535188]},{"tunnel_name":"Anzema","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[117,286],"duration":31.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":28.18,"geometry_index":25712,"location":[8.691437,44.540875]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[98,285],"duration":7.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.445,"geometry_index":25715,"location":[8.681058,44.542041]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[118,304],"duration":17.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.492,"geometry_index":25718,"location":[8.678848,44.542598]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[134,316,342],"duration":10.297,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":9.266,"geometry_index":25721,"location":[8.674535,44.545336]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[149,335],"duration":0.969,"turn_duration":0.01,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":0.859,"geometry_index":25724,"location":[8.672559,44.54722]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[155,333],"duration":4.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.898,"geometry_index":25725,"location":[8.672425,44.547421]},{"tunnel_name":"Poggio","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[153,342],"duration":17.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":15.453,"geometry_index":25726,"location":[8.671779,44.548326]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,346],"duration":8.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":7.484,"geometry_index":25728,"location":[8.670518,44.552284]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,345],"duration":19.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.57,"geometry_index":25730,"location":[8.66984,44.554234]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":7.016,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":6.305,"geometry_index":25732,"location":[8.668041,44.558786]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,338],"duration":1.484,"turn_duration":0.026,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.312,"geometry_index":25733,"location":[8.667422,44.560367]},{"tunnel_name":"Broglio","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[158,328],"duration":6.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":5.594,"geometry_index":25734,"location":[8.667245,44.560683]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[148,318],"duration":2.492,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":2.305,"geometry_index":25735,"location":[8.666139,44.561928]},{"tunnel_name":"Castello","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[138,320],"duration":18.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":17.312,"geometry_index":25736,"location":[8.665594,44.562363]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[160,345],"duration":12.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":11.242,"geometry_index":25739,"location":[8.662333,44.566092]},{"tunnel_name":"Montà","entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[166,348],"duration":27.352,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":25.305,"geometry_index":25741,"location":[8.661321,44.568815]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,350],"duration":1.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":1.477,"geometry_index":25742,"location":[8.659362,44.575283]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,354],"duration":3.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":1,"weight":3.586,"geometry_index":25743,"location":[8.659277,44.575636]},{"tunnel_name":"Lagoscuro","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[0,174],"duration":8.859,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":8.195,"geometry_index":25744,"location":[8.659144,44.576523]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[20,196],"duration":4.023,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":3.727,"geometry_index":25750,"location":[8.659435,44.578517]},{"tunnel_name":"Roccadarme","entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[27,200],"duration":19.953,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":6,"out":0,"weight":17.961,"geometry_index":25751,"location":[8.659877,44.579398]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,218],"duration":21.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":19.508,"geometry_index":25755,"location":[8.663733,44.583184]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,349],"duration":3.898,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.508,"geometry_index":25768,"location":[8.664789,44.587897]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,358],"duration":24.648,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":22.18,"geometry_index":25773,"location":[8.664596,44.58896]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,191],"duration":1.914,"turn_duration":0.024,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.703,"geometry_index":25789,"location":[8.667168,44.595416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[3,185],"duration":2.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":2.258,"geometry_index":25791,"location":[8.667233,44.595884]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[180,359],"duration":44.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":40.023,"geometry_index":25794,"location":[8.667247,44.596505]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[174,354],"duration":6.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.625,"geometry_index":25807,"location":[8.66312,44.606731]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[161,337],"duration":21.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":19.125,"geometry_index":25812,"location":[8.662648,44.608168]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,323],"duration":2.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.141,"geometry_index":25818,"location":[8.65882,44.612192]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[143,324],"duration":9.203,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.281,"geometry_index":25819,"location":[8.658351,44.612633]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,339],"duration":1.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.234,"geometry_index":25825,"location":[8.656755,44.614585]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[159,343],"duration":8.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":7.906,"geometry_index":25826,"location":[8.656585,44.614906]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,353],"duration":1.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.07,"geometry_index":25831,"location":[8.655942,44.617092]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[173,359],"duration":2.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.609,"geometry_index":25832,"location":[8.655894,44.61739]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,179],"duration":4.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.031,"geometry_index":25833,"location":[8.65588,44.618108]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,198],"duration":8.586,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.938,"geometry_index":25838,"location":[8.656217,44.619208]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[16,198],"duration":14.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":13.258,"geometry_index":25840,"location":[8.65721,44.621322]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[4,185],"duration":6.789,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.453,"geometry_index":25846,"location":[8.657893,44.624925]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[11,18,188],"duration":10.773,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.227,"geometry_index":25850,"location":[8.658132,44.626556]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.659588,44.629004],"geometry_index":25855,"admin_index":7,"weight":1.367,"is_urban":false,"turn_weight":1,"duration":0.422,"bearings":[27,199,215],"out":0,"in":2,"turn_duration":0.033,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[35,207],"duration":1.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.742,"geometry_index":25856,"location":[8.659649,44.62909]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[33,215],"duration":13.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":13.102,"geometry_index":25857,"location":[8.660022,44.629469]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":9.805,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.312,"geometry_index":25860,"location":[8.662535,44.632443]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[179,355],"duration":2.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.086,"geometry_index":25865,"location":[8.663054,44.634865]},{"entry":[false,true],"classes":["tunnel","toll","motorway"],"in":0,"bearings":[171,349],"duration":15.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.172,"geometry_index":25867,"location":[8.66295,44.635411]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[163,345],"duration":5.641,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":5.5,"geometry_index":25872,"location":[8.661558,44.639306]},{"entry":[false,true,true],"classes":["toll","motorway"],"in":0,"bearings":[165,346,359],"duration":8.594,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.156,"geometry_index":25873,"location":[8.661037,44.640719]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,177],"duration":13.016,"turn_duration":0.009,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.359,"geometry_index":25878,"location":[8.660455,44.642904]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,191],"duration":0.977,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.93,"geometry_index":25882,"location":[8.6612,44.646298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[12,192],"duration":9.508,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.031,"geometry_index":25883,"location":[8.661277,44.64655]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[182,356],"duration":2.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.578,"geometry_index":25886,"location":[8.661837,44.64903]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,356],"duration":3.297,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":3.133,"geometry_index":25887,"location":[8.661773,44.649746]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,344],"duration":0.172,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.164,"geometry_index":25889,"location":[8.661539,44.650597]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":17.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.586,"geometry_index":25890,"location":[8.661521,44.650642]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[172,356],"duration":2.445,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.266,"geometry_index":25897,"location":[8.659638,44.655128]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[176,355],"duration":8.695,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":8.039,"geometry_index":25898,"location":[8.659575,44.655772]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,355],"duration":5.312,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.914,"geometry_index":25899,"location":[8.659292,44.658067]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,356],"duration":33.906,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":31.367,"geometry_index":25900,"location":[8.65913,44.659459]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[2,183],"duration":0.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.812,"geometry_index":25911,"location":[8.660113,44.668292]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[1,182],"duration":5.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":4.75,"geometry_index":25912,"location":[8.660123,44.668528]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,352],"duration":17.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":16.094,"geometry_index":25915,"location":[8.660004,44.669904]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[166,352],"duration":16.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":15.094,"geometry_index":25919,"location":[8.658499,44.674469]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[21,25,202],"duration":11.375,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.516,"geometry_index":25925,"location":[8.659071,44.67874]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":29.773,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":27.531,"geometry_index":25926,"location":[8.660649,44.681595]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[15,201],"duration":38.203,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":35.336,"geometry_index":25927,"location":[8.664776,44.689063]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":0.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.367,"geometry_index":25932,"location":[8.666892,44.699232]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":82.414,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":74.172,"geometry_index":25933,"location":[8.666912,44.699343]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[162,338],"duration":3.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.734,"geometry_index":25950,"location":[8.666232,44.725905]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[158,337],"duration":39.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":35.75,"geometry_index":25951,"location":[8.665772,44.726725]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[134,311],"duration":3.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":2.867,"geometry_index":25957,"location":[8.658063,44.736582]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[131,306],"duration":51.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":46.367,"geometry_index":25958,"location":[8.657111,44.737171]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[168,349],"duration":4.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":4.07,"geometry_index":25970,"location":[8.647109,44.749298]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[171,351],"duration":1.883,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":1.742,"geometry_index":25974,"location":[8.646794,44.75052]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[173,353],"duration":0.031,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"weight":0.031,"geometry_index":25976,"location":[8.646689,44.751045]},{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"bearings":[173,353],"entry":[false,true],"classes":["toll","motorway"],"in":0,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":1,"geometry_index":25977,"location":[8.646688,44.751051]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"MILANO GENOVA"}],"type":"off ramp","modifier":"right","text":"MILANO GENOVA"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"off ramp","modifier":"right","text":"A7"},"distanceAlongGeometry":44644.457},{"sub":{"components":[{"active":false,"directions":["straight"],"type":"lane","text":""},{"active":false,"directions":["straight"],"type":"lane","text":""},{"active_direction":"right","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"MILANO GENOVA"}],"type":"off ramp","modifier":"right","text":"MILANO GENOVA"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"off ramp","modifier":"right","text":"A7"},"distanceAlongGeometry":1609.344}],"destinations":"A26: ALESSANDRIA, MILANO","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A26 toward ALESSANDRIA/MILANO.","modifier":"slight left","bearing_after":45,"bearing_before":51,"location":[8.742665,44.428557]},"speedLimitSign":"vienna","name":"","weight_typical":1518.426,"duration_typical":1635.492,"duration":1635.492,"distance":44644.457,"driving_side":"right","weight":1518.43,"mode":"driving","ref":"E 25","geometry":"youvsAqortO{HuLeDwDkEeEcDuCkFcEgLsGiE_CsHuAiLKgJ|@wNbDgMbFeNxIgD~CkFxGgHnMyIdRsJbToDtH{EvIwFjJeI|KqFhGgN`MeHzFeJvFoJ~EmNlFmJlDgStI}InEcK~G{E`EuLpLoHlJcVj^oJfNiElFwHlIqH|F}FrDwHnE}KfE{HfBeJnAePvA{Kx@qLjAsLhBcOnD}M`EqKxE_NlHaHfFePxLuz@zq@oi@|b@qj@`e@cSzO{VxY}Q|WmKfRcHbQyOtd@kEfNsDjM_EfRyCrPgEn[oDf`@oCn^aH|tAuExhAiFbwAkAla@Lf[vCxi@pJljArEnd@rCz\\bAh\\\\dQA|Oy@n]wBna@yDn`@qGl_@mHt[wGjT{H|TuLjUqH`N_NlT}IjMaKbLmM|MiTbPaOhIyNjHmOlFyOjF{N|BaPxBqPtAuRTeNAiTaBgUkEmOmEeJkDeGiCwGaDqUqLqQ}LuY}YiKsNeIqL}KkRmO}[qOea@}Hc^wDeYoCo[mBiv@cAek@Xao@lFetAvKuvAbDs\\nByPbDcQ`FgTzGgUbHqSpF}L`GqLnFaKbJcMvLeP~b@wf@d^}a@nYq_@dRcYdMiW|JwWbGoR`EoQvDeS|BsOxBwQpB}TtAyTh@yVJo`@g@eW_Ak\\qBiXmCmQgFyVoIuYoLm\\aHsRcFuKoFyJyM}SsUu]aTm[stDcsFqPkVwJ_McMkMsG_GaRsNmJqF{KqFwFaCmT{HsOaEmSgDgRiBgK_@cTJkZZu@?eFJuw@fBkd@dAss@fCS@mQn@kVbAmxIx_@qf@`DqU|CeSjDkTpG{SzHa`@lOmOdHyPfIuKdGeN`J_LzHgPrLoH~FkLvJcOhP_QfSiM~OORuBjCki@~r@y_@jh@wP|U}LfQ{PzUiPpSyZv`@gx@faAcK~LcGpG}E|DwE~DcItFcK~FkI|DgFxBqMpEcLpCgIdB}GbA{L`A{Kl@aL?eJO}Lq@{MsAi_@mEkS}BiHk@uFa@iKOoJBcKVeL|@mOlBkNvCgIpBuHjC_I~CsHvDqIzE{IdFkPtJcL|GgIlEeHnDaI`DcJfD_HtB}KtCsCl@_Ex@_JtAqMpAcQn@kzLnTaWtB{UpDmKhCwGjCiFzBqFrCoGrDkH`F}DnCu_@~Wsf@t\\ga@`Y}d@t[_WhQyQpM}MnKgJrIeLlL}JtM}IzMqG~KsIlQ}DvJgDxJ}E`O{ChKsEzSkDxTeLbaA_Fhe@oBbQoAdLmBbOuC`QcEpSkEtQqFbRqHnTgJjV}LlYcQx`@iNx[uJvVgJtYqG`TmDhMiChLgBvIwH`d@uE`g@mDzn@aAxi@KvwAzAj`DRzh@s@`e@oC|e@sEt[kIx^sIhYaKvWiJpTgJ|PuH|LmJzLeJhL_KbKsKhJeOdKcNrIuTxLaW`NsaA~h@gVjMwi@fZyK|FaYtOsMvGiOnHqMvFyOfGaOdFgPxEeKbDec@|Mgd@hOeY`KsXhK{MvGkO~HsLbHsNbJyMtJiPrMmOrMqQxOsWbV{b@|`@mR|PuIbHaLhHwKlGeOfHuNdFsPvE_c@nL{f@pN_s@vRg~@vVeUzF}MbDiKjBkIz@uJp@iJ`@cM?qMYwLeAcMgB}MqCoMyDmOoFmYqKqh@cSqP_GiL{DqNgDaOwCoNcBkL}@oKIcHF{ENq]xAo_@~Acp@tCa]lBuCLebDbOs_@zFcD`AuWxHyI|DiO~G}[rRun@fc@qOdI}[rKsYrIgMvAc`@tCov@jCkf@fKsi@~NyRfI}ShJ_SrJmd@xNmk@tGoj@lGkSfEaW~KsWhOoRhN_XnXwe@|t@ma@|s@sWxg@uI~S_GvTmQbyAkf@hqKaNf{CgLxfAmLnk@cGxTsZ|x@yTz_@uxBvqDyVp_@ir@lv@si@nb@qKjGqw@jg@ooBtq@{eCb[edAbWus@fQsv@dT{cFfzAyaBte@wR`JylAbdAeZ`a@u_BhqB{fAhw@o_Ad`@qwA`a@spAd\\gsKlyBaUhDmv@hGyPC}P_@s^m@m[}CkM{CmMyDav@sZuRiMyTqR_u@mt@clCuxCy\\i\\cUqPyR_KwLwFuO}FyWqGiSoCoOgAeNW}K?iYhBuUfDst@`OcI|AwJtAePlBsNt@wJh@yIR{T@cXoAiLaASAcVyCsYkGa[sJsd@qSuu@w]oi@aWax@a_@mTmIkNgEsJaCsLyByNqAmLo@A?uOc@aUF{{CrAw[r@e_@xEy[zLqUlL}WzQcYnZii@tr@{a@bf@sc@f[uf@`Tik@zMaxBdQqOrA_Q~BmPnDgNdEqUdJeRfJeQ|JoQ|LyQxOkRfRm|C`eDqZh\\}e@~f@eM~KyM~JqL~H_MpHoYdNaSrIoYfJeZrHqZ`F}[nEmYvDsQ~A{k@ZwHYeHq@iKaB{M_DsUsIegBap@}Z_LyR_GiVsFa`@uFkS}Bej@}DmtAoHix@}C{NeCwR{B_H}@a[wFy^mMcc@yTc\\}R{ZaZkDyBuViVsxBsmBqb@e\\u[gPiPkI{_@oIgS{Emu@gDoYPeKj@}TbDce@jIqh@jJwg@xMiR~EufBlj@iwAp_@i|@fUsUrEkR|BaIx@eVv@qTQcX{Awm@sIuuBo_@wNyCseBc]i^aCaTYwk@~BqNj@sd@fLyAb@wNdEsx@n]{w@fa@}WvJyXnIyz@xOqf@tFgg@|BmnCtP_vAbIsjAjFmKLsNJyP?_SKyRg@gR_AeMaAoPgAk_Hmx@mr@gCwMSuUW{b@fBmZ|Cmh@xFk`@bIy}Bzl@urAf]om@tGqaAfCkq@_F{`@iH}m@wRuUsKmqDsaBwqM}`GqzBql@uxB{SazAiRi{F}d@}m@qG}Eg@g}Du_@ikBeLiiCeBk`F`ZkpCjTgmApHikAlAm~AuDuDIe{AsIe_CsO_nAyEo_Ar@efAvKkt@zK{x@`Toq@zUgr@v[w|InkEmw@|f@ar@dj@ieAziAuh@dr@ym@bcAyc@nz@qq@`aBcn@lvAgh@x|@ol@~y@_`A`bAo}@nr@{eAzi@_`FhgBqYtIgq@`R}o@|NkWjF}AZie@pIc[vE_Fn@gWbDqGl@K@a}C~XgUrBwbBhO"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 11 miles.","announcement":"Continue for 11 miles.","distanceAlongGeometry":16949.836},{"ssmlAnnouncement":"In 1 mile, Keep left to take A7.","announcement":"In 1 mile, Keep left to take A7.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Keep left to take A7.","announcement":"In a half mile, Keep left to take A7.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Keep left to take A7 toward MILANO.","announcement":"Keep left to take A7 toward MILANO.","distanceAlongGeometry":188.889}],"intersections":[{"lanes":[{"indications":["straight"],"valid":false,"active":false},{"indications":["straight"],"valid":false,"active":false},{"indications":["straight","right"],"valid_indication":"right","valid":true,"active":true}],"location":[8.645953,44.755532],"geometry_index":25980,"admin_index":7,"weight":22.375,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":24.875,"bearings":[173,353,360],"out":2,"in":0,"turn_duration":0.011,"classes":["toll","motorway"],"entry":[false,true,true]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[26,202],"duration":2.422,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":2.242,"geometry_index":25994,"location":[8.645975,44.76142]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,206],"duration":13.031,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":12.055,"geometry_index":25995,"location":[8.64633,44.761936]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.649577,44.764193],"geometry_index":26003,"admin_index":7,"weight":44.883,"is_urban":false,"turn_weight":6,"duration":43.211,"bearings":[59,234,239],"out":0,"in":1,"turn_duration":0.01,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[58,239],"duration":13.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.922,"geometry_index":26005,"location":[8.664083,44.770487]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,238],"duration":10.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":9.516,"geometry_index":26006,"location":[8.668527,44.772423]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,239],"duration":0.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.289,"geometry_index":26007,"location":[8.672102,44.773937]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,239],"duration":1.945,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.75,"geometry_index":26008,"location":[8.672209,44.773982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":0.289,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.258,"geometry_index":26009,"location":[8.672893,44.77424]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,242],"duration":8,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.195,"geometry_index":26011,"location":[8.672996,44.774279]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":0.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.539,"geometry_index":26014,"location":[8.675911,44.775165]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[70,250],"duration":118.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":106.438,"geometry_index":26015,"location":[8.676134,44.775224]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[66,247],"duration":1.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.945,"geometry_index":26025,"location":[8.72117,44.785277]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[62,246],"duration":20.039,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":18.031,"geometry_index":26026,"location":[8.721556,44.785398]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[52,59,232],"duration":21.32,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":19.188,"geometry_index":26029,"location":[8.72818,44.788494]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.734879,44.792256],"geometry_index":26031,"admin_index":7,"weight":20.898,"is_urban":false,"turn_weight":1,"duration":22.742,"bearings":[52,227,232],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[53,232],"duration":2.164,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.898,"geometry_index":26034,"location":[8.742042,44.796262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":13.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":11.57,"geometry_index":26036,"location":[8.742722,44.796633]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,231],"duration":19.539,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":17.578,"geometry_index":26038,"location":[8.746833,44.798957]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[52,232],"duration":39.453,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":35.5,"geometry_index":26041,"location":[8.753035,44.802434]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[51,232],"duration":1.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.547,"geometry_index":26044,"location":[8.765566,44.809441]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[50,231],"duration":98.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":88.625,"geometry_index":26046,"location":[8.766101,44.809744]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":1.594,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":1.438,"geometry_index":26069,"location":[8.802977,44.827437]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":24.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":21.742,"geometry_index":26071,"location":[8.803575,44.82758]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":3.82,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.531,"geometry_index":26073,"location":[8.81277,44.82975]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,251],"duration":6.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.812,"geometry_index":26074,"location":[8.814227,44.830097]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":3.281,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.039,"geometry_index":26076,"location":[8.816612,44.830663]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[71,252],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":0.234,"geometry_index":26077,"location":[8.817868,44.830959]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,251],"duration":5.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":5.367,"geometry_index":26078,"location":[8.817964,44.830982]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":4.188,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":3.867,"geometry_index":26079,"location":[8.820148,44.831495]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"bearings":[72,252],"entry":[true,false],"classes":["toll","motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"geometry_index":26081,"location":[8.821698,44.831857]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"fork","modifier":"left","text":"A7"},"distanceAlongGeometry":16976.502},{"sub":{"components":[{"active_direction":"straight","active":true,"directions":["straight"],"type":"lane","text":""},{"active_direction":"straight","active":true,"directions":["straight","right"],"type":"lane","text":""}],"text":""},"secondary":{"components":[{"type":"text","text":"MILANO"}],"type":"fork","modifier":"left","text":"MILANO"},"primary":{"components":[{"mapbox_shield":{"text_color":"white","name":"it-motorway","display_ref":"A7","base_url":"https://api.mapbox.com/styles/v1"},"type":"icon","text":"A7"}],"type":"fork","modifier":"left","text":"A7"},"distanceAlongGeometry":1609.344}],"destinations":"A7: MILANO GENOVA","speedLimitUnit":"km/h","maneuver":{"type":"off ramp","instruction":"Take the Diramazione A7 exit onto A7 toward MILANO GENOVA.","modifier":"slight right","bearing_after":360,"bearing_before":353,"location":[8.645953,44.755532]},"speedLimitSign":"vienna","name":"Diramazione Predosa-Bettole","weight_typical":483.727,"duration_typical":529.602,"duration":529.602,"distance":16976.502,"driving_side":"right","weight":483.727,"mode":"driving","ref":"A26/A7","geometry":"wctjtAasunOuW@uq@bHkq@lGc^bDi^tCuZvAmRVuSQoWuAaP_BkWeEuOqDyOaFqKgFg_@eUgPsMoM}MePaRkOuTqNoU{McXaMcXg^{z@qrHucUytA}dE_xBwtGs}Am~EyAuEcOwi@g@iBe@cBmF{Rab@qnB{Kwq@uB}LqGo`@k_@ylDqhA_yReq@s_H_w@yuFugCypNq~Bi}L{bAueFobAmkF_GwYqFcWym@q}Byf@i`B{iBc}DuaCahFmgBsxDwOu\\qi@ckAa~D{tIqJgTsJgTsl@uoAsbBgoDw~AkiDeo@muAkhAyaCeyAi`D}sBcpEyeFw{KgFwKuJuSswBujEspCmmFwvBcdEg|@kcBaS}_@ilBsqDymBktD_c@sz@u]ut@ka@w`AsW}o@eX{s@Ws@{b@eqAc\\wfAyVa`A{Tg_AqNqo@yYozAeKsk@{a@ymCq]u_Cac@guCyDeWcBeLejBcfMm[qvBuTazAaWadBiJ_o@oQomAm@_Ea_@ogCeGkb@mMo|@iSouA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 46 miles.","announcement":"Continue for 46 miles.","distanceAlongGeometry":74377.508},{"ssmlAnnouncement":"In 1 mile, Bear left toward Viale Liguria.","announcement":"In 1 mile, Bear left toward Viale Liguria.","distanceAlongGeometry":1609.344},{"ssmlAnnouncement":"In a half mile, Bear left toward Viale Liguria.","announcement":"In a half mile, Bear left toward Viale Liguria.","distanceAlongGeometry":804.672},{"ssmlAnnouncement":"Bear left toward Viale Liguria, Centro. Then Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","announcement":"Bear left toward Viale Liguria, Centro. Then Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","distanceAlongGeometry":222.222}],"intersections":[{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.823082,44.832182],"geometry_index":26082,"admin_index":7,"weight":8.195,"is_urban":false,"mapbox_streets_v8":{"class":"motorway_link"},"duration":8.883,"bearings":[71,79,252],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":5.297,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":4.898,"geometry_index":26087,"location":[8.82609,44.832901]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[72,252],"duration":0.562,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":0.523,"geometry_index":26088,"location":[8.827894,44.833319]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[70,252],"duration":2.594,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":2.398,"geometry_index":26089,"location":[8.828087,44.833364]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[60,248],"duration":56.758,"mapbox_streets_v8":{"class":"motorway_link"},"is_urban":false,"admin_index":7,"out":0,"weight":52.5,"geometry_index":26091,"location":[8.828788,44.833557]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.828951,44.841466],"geometry_index":26118,"admin_index":7,"weight":182.281,"is_urban":false,"turn_weight":26,"duration":168.961,"bearings":[2,180,182],"out":0,"in":1,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,197],"duration":7.375,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":6.984,"geometry_index":26141,"location":[8.840676,44.889227]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[10,191],"duration":11.227,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.93,"geometry_index":26144,"location":[8.841348,44.891298]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,186],"duration":11.242,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":10.969,"geometry_index":26149,"location":[8.841958,44.894454]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":28.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":27.805,"geometry_index":26150,"location":[8.842479,44.897604]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.843518,44.905756],"geometry_index":26157,"admin_index":7,"weight":11.086,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.383,"bearings":[4,10,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"mapbox_streets_v8":{"class":"motorway"},"location":[8.843808,44.908952],"geometry_index":26158,"admin_index":7,"weight":13.492,"is_urban":false,"turn_weight":1,"duration":13.156,"bearings":[4,177,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight","right"],"valid_indication":"straight","valid":true,"active":true}],"location":[8.844155,44.912615],"geometry_index":26160,"admin_index":7,"weight":31.031,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":33.555,"bearings":[4,8,184],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,true,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[17,23,194],"duration":16.586,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":15.336,"geometry_index":26167,"location":[8.845597,44.922]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.848045,44.926383],"geometry_index":26173,"admin_index":7,"weight":20.891,"is_urban":false,"turn_weight":1,"duration":22.109,"bearings":[24,196,204],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":14.062,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":12.656,"geometry_index":26176,"location":[8.851689,44.932175]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[24,204],"duration":66.836,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":58.477,"geometry_index":26177,"location":[8.854026,44.935892]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[61,241],"duration":9.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":8.047,"geometry_index":26192,"location":[8.867889,44.952262]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[59,241],"duration":99.609,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":89.648,"geometry_index":26193,"location":[8.871275,44.953576]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[26,37,207],"duration":7.797,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":7,"out":0,"weight":7.195,"geometry_index":26219,"location":[8.898781,44.979167]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.900276,44.981215],"geometry_index":26221,"admin_index":7,"weight":112.086,"is_urban":false,"turn_weight":1,"duration":120.109,"bearings":[26,199,209],"out":0,"in":2,"turn_duration":0.022,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[27,37,206],"duration":9.055,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":8.594,"geometry_index":26233,"location":[8.923231,45.013298]},{"mapbox_streets_v8":{"class":"motorway"},"location":[8.924958,45.015692],"geometry_index":26234,"admin_index":8,"weight":144.703,"is_urban":false,"turn_weight":1,"duration":155.375,"bearings":[26,200,207],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":3.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.539,"geometry_index":26245,"location":[8.958008,45.060259]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":10.562,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.766,"geometry_index":26246,"location":[8.958918,45.061091]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[38,218],"duration":63.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":58.414,"geometry_index":26248,"location":[8.960974,45.062966]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[37,217],"duration":17.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":16.016,"geometry_index":26253,"location":[8.970518,45.071699]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,209],"duration":0.359,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.32,"geometry_index":26255,"location":[8.972963,45.074274]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":40.32,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":35.281,"geometry_index":26256,"location":[8.972991,45.074323]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,343],"duration":25.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":22.469,"geometry_index":26265,"location":[8.97342,45.080211]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[164,344],"duration":116.219,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":101.695,"geometry_index":26267,"location":[8.970552,45.087099]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":0.117,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.109,"geometry_index":26283,"location":[8.972128,45.103987]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[17,197],"duration":96.844,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":87.156,"geometry_index":26284,"location":[8.972134,45.104001]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":1.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.648,"geometry_index":26291,"location":[8.977144,45.120483]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[7,187],"duration":93.07,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":81.438,"geometry_index":26292,"location":[8.977233,45.121004]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[23,30,204],"duration":7.664,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.688,"geometry_index":26309,"location":[8.990237,45.145919]},{"entry":[true,false],"classes":["tunnel","toll","motorway"],"in":1,"bearings":[23,203],"duration":0.578,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.523,"geometry_index":26311,"location":[8.991424,45.147907]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":10.133,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.117,"geometry_index":26312,"location":[8.991514,45.148055]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[19,196,202],"duration":60.844,"turn_duration":0.022,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":54.742,"geometry_index":26314,"location":[8.99306,45.150691]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":2.828,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.617,"geometry_index":26321,"location":[9.000987,45.167069]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,198],"duration":5.383,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":4.977,"geometry_index":26322,"location":[9.001341,45.167816]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[18,199],"duration":1.438,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.328,"geometry_index":26324,"location":[9.002041,45.169256]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,198],"duration":6.625,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":6.133,"geometry_index":26325,"location":[9.002221,45.169644]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":2.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.906,"geometry_index":26326,"location":[9.003074,45.171416]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[19,199],"duration":1.914,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.766,"geometry_index":26327,"location":[9.003343,45.171962]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[19,23,199],"duration":11.039,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.195,"geometry_index":26328,"location":[9.003592,45.172475]},{"entry":[true,false,false],"classes":["toll","motorway"],"in":2,"bearings":[18,191,199],"duration":54.977,"turn_duration":0.019,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":49.461,"geometry_index":26329,"location":[9.005057,45.175467]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":4.078,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.672,"geometry_index":26335,"location":[9.013454,45.189786]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":22.016,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":19.266,"geometry_index":26336,"location":[9.014098,45.190843]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":3.852,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.375,"geometry_index":26339,"location":[9.017468,45.196581]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[14,194],"duration":14.719,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":12.875,"geometry_index":26342,"location":[9.017971,45.19761]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,350],"duration":0.477,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":0.422,"geometry_index":26348,"location":[9.018215,45.201724]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[170,351],"duration":27.102,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":23.711,"geometry_index":26349,"location":[9.018183,45.201853]},{"entry":[false,true],"classes":["toll","motorway"],"in":0,"bearings":[175,357],"duration":18.68,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":1,"weight":16.344,"geometry_index":26353,"location":[9.016651,45.209211]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[9,189],"duration":3.523,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.078,"geometry_index":26358,"location":[9.017169,45.213374]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[8,188],"duration":50.984,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":44.609,"geometry_index":26361,"location":[9.017344,45.214153]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":10.195,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":8.922,"geometry_index":26373,"location":[9.02768,45.228801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":68.211,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":61.383,"geometry_index":26374,"location":[9.029813,45.231251]},{"entry":[true,true,false],"classes":["toll","motorway"],"in":2,"bearings":[24,28,205],"duration":10.43,"turn_duration":0.021,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.633,"geometry_index":26382,"location":[9.043422,45.247707]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.045057,45.250348],"geometry_index":26383,"admin_index":8,"weight":304.172,"is_urban":false,"turn_weight":1,"duration":319.133,"bearings":[24,196,204],"out":0,"in":2,"turn_duration":0.007,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":2.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.477,"geometry_index":26419,"location":[9.093651,45.332932]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[21,201],"duration":12.156,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.852,"geometry_index":26420,"location":[9.09402,45.333594]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[29,209],"duration":5.18,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.047,"geometry_index":26423,"location":[9.096356,45.337177]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.097625,45.338597],"geometry_index":26425,"admin_index":8,"weight":8.562,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":9.047,"bearings":[27,39,213],"out":0,"in":2,"turn_duration":0.028,"classes":["toll","motorway"],"entry":[true,true,false]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.099517,45.340656],"geometry_index":26427,"admin_index":8,"weight":69.133,"is_urban":false,"turn_weight":0.5,"duration":74.219,"bearings":[33,204,214],"out":0,"in":2,"turn_duration":0.021,"classes":["toll","motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[31,211],"duration":3.969,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":3.672,"geometry_index":26436,"location":[9.11442,45.357682]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[32,212],"duration":70.398,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":65.117,"geometry_index":26438,"location":[9.115217,45.358594]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[28,212],"duration":15.633,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":14.852,"geometry_index":26444,"location":[9.129942,45.374495]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":9.875,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":9.383,"geometry_index":26447,"location":[9.132394,45.378332]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,202],"duration":0.305,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.305,"geometry_index":26449,"location":[9.133779,45.38073]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,203],"duration":1.375,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.336,"geometry_index":26450,"location":[9.133821,45.380801]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[22,202],"duration":10.406,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.148,"geometry_index":26451,"location":[9.134016,45.381134]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":0.93,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":0.93,"geometry_index":26453,"location":[9.135454,45.383557]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[23,203],"duration":20.727,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":20.727,"geometry_index":26454,"location":[9.135582,45.38377]},{"entry":[true,false],"classes":["toll","motorway"],"in":1,"bearings":[30,207],"duration":14.836,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":15.211,"geometry_index":26459,"location":[9.137542,45.386889]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.1391,45.389064],"geometry_index":26463,"admin_index":8,"weight":44.688,"is_urban":false,"toll_collection":{"name":"Milano Ovest","type":"toll_booth"},"turn_weight":15,"duration":28.961,"bearings":[20,202],"out":0,"in":1,"classes":["motorway"],"entry":[true,false]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[8,182],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":2.922,"geometry_index":26470,"location":[9.139525,45.390616]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[12,188],"duration":1.797,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.891,"geometry_index":26472,"location":[9.139556,45.390769]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.139586,45.390868],"geometry_index":26473,"admin_index":8,"weight":3.062,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":2.93,"bearings":[15,18,21,192],"out":0,"in":3,"turn_duration":0.009,"classes":["motorway"],"entry":[true,true,true,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[15,195],"duration":4.961,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":5.211,"geometry_index":26474,"location":[9.139833,45.391502]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[17,197],"duration":15.266,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":16.023,"geometry_index":26476,"location":[9.140272,45.392573]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.14189,45.396211],"geometry_index":26480,"admin_index":8,"weight":9.141,"is_urban":false,"turn_weight":1.4,"duration":7.391,"bearings":[19,190,198],"out":0,"in":2,"turn_duration":0.019,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[21,199],"duration":11.273,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":11.562,"geometry_index":26481,"location":[9.142581,45.397655]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.143801,45.39983],"geometry_index":26482,"admin_index":8,"weight":13.594,"is_urban":false,"turn_weight":1,"duration":12.297,"bearings":[23,191,201],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,203],"duration":7.516,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.703,"geometry_index":26483,"location":[9.145358,45.402429]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[22,202],"duration":7.672,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.859,"geometry_index":26484,"location":[9.146285,45.404031]},{"lanes":[{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["straight"],"valid_indication":"straight","valid":true,"active":true},{"indications":["slight right"],"valid":false,"active":false}],"location":[9.14723,45.405661],"geometry_index":26485,"admin_index":8,"weight":11.422,"is_urban":false,"mapbox_streets_v8":{"class":"motorway"},"duration":11.148,"bearings":[22,32,202],"out":0,"in":2,"turn_duration":0.008,"classes":["motorway"],"entry":[true,true,false]},{"entry":[true,false,false],"classes":["motorway"],"in":2,"bearings":[22,196,202],"duration":30.758,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":31.516,"geometry_index":26487,"location":[9.148656,45.408105]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":12.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":12.766,"geometry_index":26489,"location":[9.15271,45.415064]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[34,214],"duration":1.539,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":1.578,"geometry_index":26493,"location":[9.154763,45.417736]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[35,39,214],"duration":12.609,"turn_duration":0.007,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":12.914,"geometry_index":26494,"location":[9.15506,45.41805]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[35,215],"duration":10.656,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":10.922,"geometry_index":26495,"location":[9.157553,45.420589]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[23,202],"duration":7.055,"mapbox_streets_v8":{"class":"motorway"},"is_urban":false,"admin_index":8,"out":0,"weight":7.406,"geometry_index":26501,"location":[9.159493,45.422805]},{"mapbox_streets_v8":{"class":"motorway"},"location":[9.160445,45.424394],"geometry_index":26502,"admin_index":8,"weight":26.102,"is_urban":false,"turn_weight":1,"duration":23.914,"bearings":[22,194,203],"out":0,"in":2,"turn_duration":0.007,"classes":["motorway"],"entry":[true,false,false]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[36,217],"duration":0.25,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":0.273,"geometry_index":26506,"location":[9.164068,45.429759]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[41,216],"duration":5.602,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":6.023,"geometry_index":26507,"location":[9.164119,45.429808]},{"entry":[true,true,false],"classes":["motorway"],"in":2,"bearings":[43,52,223],"duration":6.836,"turn_duration":0.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":7.344,"geometry_index":26509,"location":[9.165431,45.430809]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[43,223],"duration":2.781,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":3.062,"geometry_index":26510,"location":[9.166889,45.431908]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[42,223],"duration":4.008,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":4.406,"geometry_index":26511,"location":[9.167479,45.432353]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[39,219],"duration":2.328,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":2.562,"geometry_index":26513,"location":[9.168278,45.433036]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[31,219],"duration":4.453,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":4.898,"geometry_index":26514,"location":[9.168736,45.433439]},{"entry":[true,false],"classes":["motorway"],"in":1,"bearings":[28,211],"duration":3.555,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"weight":3.906,"geometry_index":26515,"location":[9.169392,45.434195]},{"bearings":[25,211],"entry":[true,false],"classes":["motorway"],"in":1,"mapbox_streets_v8":{"class":"motorway"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26517,"location":[9.169857,45.434787]}],"bannerInstructions":[{"secondary":{"components":[{"type":"text","text":"Centro"},{"type":"text","text":"/"},{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Centro / Viale Liguria"},"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Viale Liguria"},"distanceAlongGeometry":74404.172},{"sub":{"components":[{"type":"text","text":"Via Spezia"}],"degrees":174,"driving_side":"right","type":"roundabout","modifier":"right","text":"Via Spezia"},"secondary":{"components":[{"type":"text","text":"Centro"},{"type":"text","text":"/"},{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Centro / Viale Liguria"},"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"type":"turn","modifier":"slight left","text":"Viale Liguria"},"distanceAlongGeometry":1609.344}],"destinations":"A7: MILANO","speedLimitUnit":"km/h","maneuver":{"type":"fork","instruction":"Keep left to take A7 toward MILANO.","modifier":"slight left","bearing_after":71,"bearing_before":72,"location":[8.823082,44.832182]},"speedLimitSign":"vienna","name":"Autostrada dei Giovi - Serravalle","weight_typical":2435.711,"duration_typical":2569.25,"duration":2569.25,"distance":74404.172,"driving_side":"right","weight":2435.711,"mode":"driving","ref":"A7","geometry":"kziotAsqoyOgOs`AeGsa@u@cFqPkjAg@gDcYwoByAaKoDiTqEoUqHmVcHaQiImN{HiIsG}FqI{F{DqBcEaB}JyBcKcAwIUqKd@eHt@wM|BwNnEcNtFuWvMcQnIyPtHeP|FuR|EcVrEaRjByTjBc_@fAu^Ow_BDaoHgPqgKsTcbBqD{zDqHqoG_N_oBuDyaA_Ds`@qB_c@mEui@qGkf@cIoj@uMeQmE_o@{Ro{GozBahFkdBa{@yY_bIswCwoFupBuzA{i@iQwF_WcHiLuDmr@wQi\\oHuo@wL}i@uIq^_Fo^iEqZyCu~@iH{cEq_@kjBkP}{@gIgk@qEcm@qD{xA}GwqAgGemA_GwfEcQsvBmJilBgImoGgYwdAqEsh@mCqx@uHwi@sH{s@sNqp@}Puz@aYw`@{OsZcNeb@uSeh@mYokAyn@g|BqmA_tBghAwvB}jAigFaqCmsTisLkw@}b@uQ_LmYySeQwNgL_KgT}SsYk]yPwUaSqZcSw]cUyd@gTei@{Oof@s^woAcqAsrEkMma@wL}\\}Pgb@sPm\\{OqZiMkSwVe_@mVyZa^ga@wvA}{AmyBq`CuoA{tAcf@qh@eCmCmqEi~EgaFeoFw~AceBwmAgrAcw@yz@kiByoBsr@av@sp@mr@oW}VcRgOmyAcaAcrAez@eaAwl@y|@un@gbAkm@atHo|EwjDwzBszEu{CygDyyBcuFioDq}FetDoaHwsEu`@qVgyAa~@iZkQg}BiwAstC}jBoxWclPkpFgdDgiCicB_xJicGwfFegDyaGmzDcyJujGgfA_r@qh@wa@eg@yf@stEwhF_s@{w@qbA_iAsp@ou@otB_`C??ifCsqCu}EuuFieAeiAc`BmeBy~@kq@aBw@ch@gVoj@gSmy@yMm\\iCy[aAsa@x@eh@zDqv@xNib@jMolFxcB_`ElmAe`Cdt@y`AvX{]hJ__@xHkk@jHul@|Fgn@bD}m@Nc}@kEud@cFke@mGu_@sGwb@cLilAy_@o~HskC}HkC[K{zJ_gDubB_h@{pAkSofB_QwwAkOw|C_\\uuBkSq_@qD{fBcQqhBsTmm@qGwm@aKkn@wOaVmHyl@}T}b@mScE{Cq}EqgC_nAao@s}BeoAs~Fc{C_lAmn@okA_o@wwCy}AeiBwbA_zAeu@g`@_SgHsDkwAwt@kkA{i@gnByu@sgAsa@k|@}\\ev@qYogEa_BkhEeaBi`IgzCum@cUwg@{Rgp@{VgWgJwmBit@ca@yOa_@qN_zDqzAugAoa@ejCaqA_pGaaDygDceBshBm|@sfCsqAaaAgg@}b@{T_sHesDuMqGoQyIm]_NkNsDwh@eNkz@_Iii@wBki@Xwk@fEqYrEaG~@kqGhz@}{AzRs_AxK}ZvByg@tAch@F{k@_Eqi@iGyyA_Tw^kFSCiOmB_}BiYqp@_Pgl@uTab@eP{X{Pcp@}b@yaBsuAgyBoiB{zB_kBeaAuw@ur@gl@yxB}iBcxCidCmpEwwD_{AslAyyAkpAewAikAeuCmdCozCcdCaz@gk@ivDuvBadDeeBgfD_jB_eGifDs_Bg|@{|Au}@ez@md@_z@yc@onAkn@qkAua@c}GqfBy_Dyx@qcDk|@}nD{_AwaDo{@k}Ao`@{yA_b@}_Bwb@spAc_@ccKgiCix@yX_j@mTmcA}m@_mAms@ikFi|CgaFoxC{tIcfFeu@ij@yoHobHojG_}FmrAwpAy~AevA{n@ae@ey@eb@u{FanCqkDk_BytA_q@izAyq@kh@aVg~@gb@myAkv@geAkv@uU}PaaAk|@_MeIuqBakByn@mj@kpAcoAc|BwrBi_CqsBuaBuoAyvFaqE{yDq|CsuAciAo|@ct@qc@s^mSeQegAi_AwqAqfAez@aw@imNgoMmrFabF}h@ad@wz@ml@_cCmoAao@kZcsA_o@w`Aqe@mCsAySeK_jA_k@mkA{l@iL_Gy[iPmo@_\\yw@_`@qX}Pib@gXkXgTyi@{a@}g@cYyYcN_MeFmNmEuVsEk\\sDoDMoFAo@E_E[qBa@eE{@sf@mNyc@kMc]aLykAg`@c@O}jA{`@ohAo`@gyAej@}fCgkAmaDi`BccB}x@{dBaz@qiAyj@emAil@kaEyoBqoFqkCwt@e`@uh@i\\wi@se@y[eZsRqQu}CyzC{OqOujAggAqJ_IcJiGcKsFcJoEibBoz@m~Ei~B_h@c\\c_@_\\we@_h@aBeBaTkYoh@sv@ucAczAyZ{c@yFiI{a@sf@eXs[gn@_h@_YwR_JiHkUyMkRwH}VyJ"},{"voiceInstructions":[{"ssmlAnnouncement":"Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","announcement":"Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","distanceAlongGeometry":97.111}],"intersections":[{"entry":[true,true,false],"in":2,"bearings":[17,25,199],"duration":5.828,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":8,"out":0,"weight":6.531,"geometry_index":26520,"location":[9.170439,45.435838]},{"entry":[true,false],"in":1,"bearings":[21,197],"duration":1.234,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":8,"out":0,"weight":1.383,"geometry_index":26521,"location":[9.170895,45.436876]},{"bearings":[24,201],"entry":[true,false],"in":1,"mapbox_streets_v8":{"class":"primary_link"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26522,"location":[9.170952,45.436982]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Via Spezia"}],"degrees":174,"driving_side":"right","type":"roundabout","modifier":"right","text":"Via Spezia"},"distanceAlongGeometry":174.58}],"destinations":"Viale Liguria, Centro, Viale Liguria","speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear left toward Viale Liguria/Centro/Viale Liguria.","modifier":"slight left","bearing_after":17,"bearing_before":19,"location":[9.170439,45.435838]},"speedLimitSign":"vienna","name":"Via del Mare","weight_typical":12.281,"duration_typical":10.945,"duration":10.945,"distance":174.58,"driving_side":"right","weight":12.281,"mode":"driving","ref":"A7","geometry":"{zdtuAm_vnP{_Ao[sEqBuKaGaGeE"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Via Spezia.","announcement":"Exit the roundabout onto Via Spezia.","distanceAlongGeometry":57.228}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[61,207,275],"duration":5.383,"turn_weight":5,"turn_duration":0.067,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":10.977,"geometry_index":26524,"location":[9.17118,45.437314]},{"entry":[true,true,false],"in":2,"bearings":[11,87,224],"duration":5.555,"turn_duration":0.223,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":5.992,"geometry_index":26532,"location":[9.171482,45.437476]},{"bearings":[103,165,323],"entry":[false,false,true],"in":1,"turn_duration":0.104,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":2,"geometry_index":26542,"location":[9.171464,45.437791]}],"rotary_name":"Piazza Gian Antonio Maggi","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Via Spezia"}],"degrees":174,"driving_side":"right","type":"roundabout","modifier":"right","text":"Via Spezia"},"distanceAlongGeometry":73.895}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":2,"instruction":"Enter Piazza Gian Antonio Maggi and take the 2nd exit onto Via Spezia.","modifier":"slight right","bearing_after":61,"bearing_before":27,"location":[9.17118,45.437314]},"speedLimitSign":"vienna","name":"Via Spezia","weight_typical":17.984,"duration_typical":11.945,"duration":11.945,"distance":73.895,"driving_side":"right","weight":17.984,"mode":"driving","geometry":"cwgtuAwmwnPEg@WiBa@eBk@}Aq@uAy@kA_AaAk@a@WSiAg@kA[mAMg@AmADkARkA`@gAn@c@^]Z}@dA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":615.056},{"ssmlAnnouncement":"In a quarter mile, Bear right onto Piazza Serafino Belfanti.","announcement":"In a quarter mile, Bear right onto Piazza Serafino Belfanti.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Bear right onto Piazza Serafino Belfanti. Then Enter the roundabout and take the 1st exit onto Viale Liguria.","announcement":"Bear right onto Piazza Serafino Belfanti. Then Enter the roundabout and take the 1st exit onto Viale Liguria.","distanceAlongGeometry":78.333}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[0,143,300],"duration":3.844,"turn_weight":5,"turn_duration":0.077,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.234,"geometry_index":26544,"location":[9.171415,45.437837]},{"entry":[true,false],"in":1,"bearings":[24,206],"duration":13.906,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":15.992,"geometry_index":26552,"location":[9.171554,45.438226]},{"entry":[true,true,false],"in":2,"bearings":[14,70,201],"duration":6.594,"turn_duration":0.03,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.547,"geometry_index":26555,"location":[9.172387,45.439637]},{"entry":[true,false,false],"in":2,"bearings":[7,169,191],"duration":3.445,"turn_duration":0.024,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.93,"geometry_index":26558,"location":[9.172556,45.440177]},{"entry":[true,true,false],"in":2,"bearings":[4,79,187],"duration":5.281,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.047,"geometry_index":26559,"location":[9.172585,45.440346]},{"entry":[true,true,false],"in":2,"bearings":[3,92,184],"duration":4.273,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.891,"geometry_index":26562,"location":[9.172604,45.440519]},{"entry":[true,false,false,false],"in":2,"bearings":[3,94,183,275],"duration":3.281,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.766,"geometry_index":26564,"location":[9.172613,45.440639]},{"entry":[true,false,false,false,true],"in":2,"bearings":[2,92,183,260,290],"duration":2.492,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.844,"geometry_index":26565,"location":[9.172619,45.440731]},{"entry":[true,false,false,false],"in":2,"bearings":[2,94,182,275],"duration":20.945,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":24.062,"geometry_index":26566,"location":[9.172625,45.440832]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":5.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.211,"geometry_index":26568,"location":[9.172676,45.441665]},{"entry":[true,true,false,false,true],"in":2,"bearings":[3,93,182,253,303],"duration":4.586,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.266,"geometry_index":26569,"location":[9.172689,45.441881]},{"entry":[true,false,false,false],"in":2,"bearings":[2,94,183,275],"duration":29.477,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":34.609,"geometry_index":26570,"location":[9.172699,45.442003]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":6.219,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.305,"geometry_index":26571,"location":[9.172738,45.442814]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[1,182],"duration":0.266,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.312,"geometry_index":26572,"location":[9.172745,45.442986]},{"entry":[true,false],"classes":["tunnel"],"in":1,"bearings":[2,181],"duration":0.617,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.719,"geometry_index":26573,"location":[9.172746,45.443013]},{"entry":[true,false],"in":1,"bearings":[2,182],"duration":1.578,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.859,"geometry_index":26574,"location":[9.172749,45.443078]},{"bearings":[2,92,182],"entry":[true,true,false],"in":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26575,"location":[9.172755,45.443237]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Piazza Serafino Belfanti"}],"type":"turn","modifier":"slight right","text":"Piazza Serafino Belfanti"},"distanceAlongGeometry":631.723},{"sub":{"components":[{"type":"text","text":"Viale Liguria"}],"degrees":88,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Liguria"},"primary":{"components":[{"type":"text","text":"Piazza Serafino Belfanti"}],"type":"turn","modifier":"slight right","text":"Piazza Serafino Belfanti"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Via Spezia.","modifier":"slight right","bearing_after":0,"bearing_before":323,"location":[9.171415,45.437837]},"speedLimitSign":"vienna","name":"Via Spezia","weight_typical":135.938,"duration_typical":113.367,"duration":113.367,"distance":631.723,"driving_side":"right","weight":135.938,"mode":"driving","geometry":"ywhtuAm|wnP_DBqBB_@?k@CYEYKe@WqIoFwAs@cd@oWio@}XoMeDoGqAwIyAqIy@{BSwBKeBE_DKoAEwDKiEKqj@uAoGOoLYsFSuq@mAwIMu@AaCE}HKcCEgBC"},{"voiceInstructions":[{"ssmlAnnouncement":"Enter the roundabout and take the 1st exit onto Viale Liguria.","announcement":"Enter the roundabout and take the 1st exit onto Viale Liguria.","distanceAlongGeometry":27.453}],"intersections":[{"bearings":[20,182,272],"entry":[true,false,true],"in":1,"turn_weight":5,"turn_duration":0.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26577,"location":[9.17276,45.443355]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"degrees":88,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Liguria"},"distanceAlongGeometry":27.453}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Bear right onto Piazza Serafino Belfanti.","modifier":"slight right","bearing_after":20,"bearing_before":2,"location":[9.17276,45.443355]},"speedLimitSign":"vienna","name":"Piazza Serafino Belfanti","weight_typical":11.719,"duration_typical":5.742,"duration":5.742,"distance":27.453,"driving_side":"right","weight":11.719,"mode":"driving","geometry":"upstuAopznPyCo@uBqA{DqB"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Viale Liguria.","announcement":"Exit the roundabout onto Viale Liguria.","distanceAlongGeometry":21.814}],"intersections":[{"mapbox_streets_v8":{"class":"roundabout"},"location":[9.172882,45.443585],"geometry_index":26580,"admin_index":8,"weight":4.453,"is_urban":true,"traffic_signal":true,"turn_duration":2.063,"turn_weight":0.75,"duration":5.211,"bearings":[56,203,266],"out":0,"in":1,"entry":[true,false,false]},{"bearings":[29,96,236,276],"entry":[true,false,false,false],"in":2,"turn_duration":0.142,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26581,"location":[9.173028,45.443655]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Liguria"}],"degrees":88,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Liguria"},"distanceAlongGeometry":21.814}],"speedLimitUnit":"km/h","maneuver":{"type":"roundabout","exit":1,"instruction":"Enter the roundabout and take the 1st exit onto Viale Liguria.","modifier":"slight right","bearing_after":56,"bearing_before":23,"location":[9.172882,45.443585]},"speedLimitSign":"vienna","name":"Viale Liguria","weight_typical":6.57,"duration_typical":7.156,"duration":7.156,"distance":21.814,"driving_side":"right","weight":6.57,"mode":"driving","geometry":"a_ttuAcxznPkCcHc@UyAkA"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 2 miles.","announcement":"Continue for 2 miles.","distanceAlongGeometry":2943.228},{"ssmlAnnouncement":"In a quarter mile, Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","announcement":"In a quarter mile, Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","announcement":"Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","distanceAlongGeometry":70}],"intersections":[{"mapbox_streets_v8":{"class":"primary"},"location":[9.173077,45.443718],"geometry_index":26583,"admin_index":8,"weight":8.75,"is_urban":true,"traffic_signal":true,"turn_duration":2.541,"turn_weight":7,"duration":4.031,"bearings":[15,94,209,275],"out":1,"in":2,"entry":[true,true,false,false]},{"entry":[false,true,false,false],"in":3,"bearings":[1,94,177,274],"duration":5.484,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":6.414,"geometry_index":26584,"location":[9.173232,45.443711]},{"entry":[true,false],"in":1,"bearings":[95,274],"duration":2.234,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.625,"geometry_index":26585,"location":[9.173797,45.443685]},{"entry":[true,true,false],"in":2,"bearings":[94,176,275],"duration":2.68,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.125,"geometry_index":26586,"location":[9.174021,45.443672]},{"entry":[true,true,false],"in":2,"bearings":[94,177,274],"duration":13.992,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":16.422,"geometry_index":26587,"location":[9.174239,45.443661]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":5.93,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.969,"geometry_index":26588,"location":[9.175081,45.443619]},{"entry":[true,false,false],"in":2,"bearings":[94,122,274],"duration":4.891,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.727,"geometry_index":26589,"location":[9.175435,45.443601]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":3.062,"turn_duration":2,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.242,"geometry_index":26590,"location":[9.175735,45.443585]},{"entry":[false,true,false,false],"in":3,"bearings":[6,93,186,274],"duration":1.078,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.242,"geometry_index":26591,"location":[9.175798,45.443582]},{"entry":[false,true,true,false],"in":3,"bearings":[8,94,189,273],"duration":0.906,"turn_weight":7,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":8.055,"geometry_index":26592,"location":[9.175868,45.443579]},{"entry":[false,true,false,false],"in":3,"bearings":[8,93,190,274],"duration":0.164,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":0.172,"geometry_index":26593,"location":[9.175913,45.443577]},{"entry":[true,false],"in":1,"bearings":[94,273],"duration":2.664,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.125,"geometry_index":26594,"location":[9.175937,45.443576]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":0.664,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.781,"geometry_index":26596,"location":[9.176152,45.443565]},{"entry":[true,true,true,false],"in":3,"bearings":[8,94,189,274],"duration":1.016,"turn_weight":2,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":3.164,"geometry_index":26597,"location":[9.176217,45.443562]},{"entry":[false,true,false,false],"in":3,"bearings":[7,94,189,274],"duration":1.016,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.164,"geometry_index":26598,"location":[9.17632,45.443557]},{"entry":[true,true,false],"in":2,"bearings":[94,186,274],"duration":6.875,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.883,"geometry_index":26599,"location":[9.176416,45.443552]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":10.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":11.633,"geometry_index":26600,"location":[9.176925,45.443528]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":14.055,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":16.164,"geometry_index":26601,"location":[9.177677,45.443492]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":2.398,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.758,"geometry_index":26603,"location":[9.178719,45.443442]},{"entry":[false,true,false,false],"in":3,"bearings":[6,94,184,274],"duration":1.391,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.578,"geometry_index":26604,"location":[9.178892,45.443434]},{"entry":[true,false],"in":1,"bearings":[94,274],"duration":0.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.141,"geometry_index":26606,"location":[9.178996,45.443429]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.179015,45.443428],"geometry_index":26607,"admin_index":8,"weight":4.383,"is_urban":true,"traffic_signal":true,"turn_duration":2.019,"turn_weight":2.5,"duration":3.656,"bearings":[6,95,186,274],"out":1,"in":3,"entry":[true,true,true,false]},{"entry":[false,true,false,false],"in":3,"bearings":[4,92,184,275],"duration":13.602,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":15.617,"geometry_index":26609,"location":[9.17914,45.443421]},{"entry":[true,false],"in":1,"bearings":[77,263],"duration":11.125,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":12.797,"geometry_index":26613,"location":[9.1802,45.443443]},{"entry":[true,false,false,false],"in":2,"bearings":[67,160,249,339],"duration":1.656,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.883,"geometry_index":26616,"location":[9.181027,45.443624]},{"entry":[true,false,false],"in":2,"bearings":[67,173,247],"duration":8.109,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.312,"geometry_index":26617,"location":[9.181143,45.443658]},{"entry":[true,true,false],"in":2,"bearings":[66,158,247],"duration":10.961,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":12.602,"geometry_index":26618,"location":[9.181772,45.443849]},{"entry":[true,false,false,false],"in":2,"bearings":[65,170,246,351],"duration":1.586,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.797,"geometry_index":26619,"location":[9.182595,45.444102]},{"entry":[true,true,false,false],"in":2,"bearings":[65,189,245,346],"duration":3.805,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.07,"geometry_index":26620,"location":[9.182706,45.444138]},{"entry":[false,true,false,false],"in":3,"bearings":[7,67,189,245],"duration":1.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.32,"geometry_index":26623,"location":[9.182838,45.444181]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":21.602,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":24.844,"geometry_index":26624,"location":[9.182915,45.444204]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":2.945,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.391,"geometry_index":26625,"location":[9.184469,45.444671]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":3.93,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.516,"geometry_index":26626,"location":[9.184679,45.444733]},{"entry":[true,false,false,false],"in":2,"bearings":[64,137,247,315],"duration":1.656,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.883,"geometry_index":26627,"location":[9.184966,45.444817]},{"entry":[true,true,false,false,true],"in":3,"bearings":[17,64,166,244,308],"duration":4.031,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":2.32,"geometry_index":26628,"location":[9.18508,45.444856]},{"entry":[false,true,false,false],"in":3,"bearings":[7,67,187,244],"duration":1.734,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":1.984,"geometry_index":26629,"location":[9.185237,45.444909]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":0.719,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.828,"geometry_index":26630,"location":[9.185374,45.444949]},{"entry":[true,false],"in":1,"bearings":[66,247],"duration":12.961,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":14.906,"geometry_index":26631,"location":[9.185438,45.444968]},{"entry":[true,false],"in":1,"bearings":[67,246],"duration":7.922,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.305,"geometry_index":26633,"location":[9.186486,45.445295]},{"entry":[true,false],"in":1,"bearings":[67,247],"duration":3.023,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.555,"geometry_index":26634,"location":[9.18713,45.445491]},{"entry":[true,false,false,false],"in":2,"bearings":[67,163,247,344],"duration":1.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.352,"geometry_index":26635,"location":[9.187378,45.445566]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.187474,45.445594],"geometry_index":26636,"admin_index":8,"weight":11.453,"is_urban":true,"traffic_signal":true,"turn_duration":2.008,"turn_weight":7,"duration":5.797,"bearings":[67,159,247,341],"out":0,"in":2,"entry":[true,true,false,false]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.187714,45.445665],"geometry_index":26637,"admin_index":8,"weight":3.328,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":2,"duration":3.141,"bearings":[66,175,247,356],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[69,175,246,353],"duration":0.828,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.969,"geometry_index":26638,"location":[9.187844,45.445705]},{"entry":[true,false],"in":1,"bearings":[69,249],"duration":4.117,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.836,"geometry_index":26639,"location":[9.187945,45.445732]},{"entry":[true,false,false],"in":2,"bearings":[74,122,249],"duration":3.094,"turn_duration":0.01,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.625,"geometry_index":26640,"location":[9.188423,45.44586]},{"entry":[true,false,false],"in":2,"bearings":[78,189,254],"duration":18.625,"turn_duration":0.009,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":21.875,"geometry_index":26641,"location":[9.188798,45.445934]},{"entry":[true,false],"in":1,"bearings":[87,266],"duration":25.711,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":29.57,"geometry_index":26645,"location":[9.191102,45.446087]},{"entry":[true,false,false,false],"in":2,"bearings":[87,175,267,356],"duration":0.828,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.945,"geometry_index":26646,"location":[9.194292,45.446213]},{"entry":[true,true,false,false],"in":2,"bearings":[86,176,267,356],"duration":6.133,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.734,"geometry_index":26647,"location":[9.194397,45.446217]},{"entry":[true,false,false,true],"in":2,"bearings":[86,176,266,356],"duration":3.055,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.211,"geometry_index":26648,"location":[9.194604,45.446226]},{"entry":[true,false,false,false],"in":2,"bearings":[86,176,266,358],"duration":16.359,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":18.805,"geometry_index":26649,"location":[9.194699,45.446231]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":7.203,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":8.281,"geometry_index":26650,"location":[9.196093,45.446293]},{"entry":[true,true,false],"in":2,"bearings":[86,175,266],"duration":16.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":19.047,"geometry_index":26651,"location":[9.196709,45.446321]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":4.32,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.969,"geometry_index":26652,"location":[9.197595,45.446361]},{"entry":[true,false,false,false],"in":2,"bearings":[86,170,266,351],"duration":2.406,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.758,"geometry_index":26654,"location":[9.197822,45.446371]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.197945,45.446377],"geometry_index":26655,"admin_index":8,"weight":2.773,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":3.547,"bearings":[87,163,266,344],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false],"in":1,"bearings":[86,267],"duration":1.711,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.969,"geometry_index":26657,"location":[9.198066,45.446382]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.198197,45.446388],"geometry_index":26659,"admin_index":8,"weight":2.242,"is_urban":true,"traffic_signal":true,"turn_duration":2.007,"turn_weight":1,"duration":3.086,"bearings":[87,170,266,353],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[true,false,false,false],"in":2,"bearings":[86,172,267,351],"duration":28.938,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":33.258,"geometry_index":26660,"location":[9.198314,45.446393]},{"entry":[true,false,false,false],"in":2,"bearings":[87,176,266,356],"duration":0.969,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.102,"geometry_index":26661,"location":[9.201397,45.446532]},{"entry":[true,false,false],"in":1,"bearings":[86,267,356],"duration":6.984,"turn_weight":5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":13.016,"geometry_index":26662,"location":[9.201501,45.446536]},{"entry":[true,true,false],"in":2,"bearings":[86,177,266],"duration":17.43,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":20.031,"geometry_index":26663,"location":[9.202272,45.44657]},{"entry":[true,false,false,false],"in":2,"bearings":[86,177,266,356],"duration":1.75,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2,"geometry_index":26664,"location":[9.204186,45.446655]},{"entry":[true,false,true],"in":1,"bearings":[86,266,356],"duration":4.422,"turn_weight":5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":10.078,"geometry_index":26665,"location":[9.204372,45.446663]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":23.109,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":26.578,"geometry_index":26666,"location":[9.20486,45.446685]},{"entry":[true,false,false,false],"in":2,"bearings":[86,177,266,356],"duration":3.023,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.469,"geometry_index":26668,"location":[9.207402,45.446797]},{"entry":[true,false,false],"in":1,"bearings":[86,266,282],"duration":10.602,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.883,"geometry_index":26669,"location":[9.207738,45.446812]},{"entry":[true,false],"in":1,"bearings":[86,266],"duration":6.734,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.742,"geometry_index":26670,"location":[9.208689,45.446854]},{"entry":[true,false],"in":1,"bearings":[84,266],"duration":4.531,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.211,"geometry_index":26672,"location":[9.20943,45.446886]},{"bearings":[75,145,258,325],"entry":[true,false,false,false],"in":2,"turn_duration":0.022,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26676,"location":[9.209922,45.44694]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":234,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Viale Umbria"},"distanceAlongGeometry":2959.895}],"speedLimitUnit":"km/h","maneuver":{"type":"exit roundabout","instruction":"Exit the roundabout onto Viale Liguria.","modifier":"right","bearing_after":94,"bearing_before":29,"location":[9.173077,45.443718]},"speedLimitSign":"vienna","name":"Viale Liguria","weight_typical":523.359,"duration_typical":439.586,"duration":439.586,"distance":2959.895,"driving_side":"right","weight":523.359,"mode":"driving","geometry":"kgttuAid{nPLuHr@ib@X_MTsLrAss@b@cU^wQD}BDkCByA@o@LyGFsCDaCHmEH_En@y^fA_n@?AbBa`ANyIHiE?E@e@@_@JyEPsVAqKUkPe@uKoB_TiDoUoAeGcAgF}Jif@yNmr@gA}ECIWoAy@mDm@yCe\\c`B{BcLgD}PmAcFiByHoAqGe@_CeRu|@g@yBgKgg@uCoNw@_EmC_NoAcGu@iE_G{\\sCmViA}N{@aQe@gReCwyA{FkfEGqEQ}KI}D{BcvAw@oe@oAkv@M{HEiCKuFIyE?WAq@IsEIiFuGu_EGoEcAeo@iDsvBOsJk@o]{E{zCC_B]_TsAmz@w@mg@G{D]yMe@{GSsBSmB}AcO"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Viale Umbria.","announcement":"Exit the roundabout onto Viale Umbria.","distanceAlongGeometry":88.889}],"intersections":[{"entry":[true,false,false],"in":1,"bearings":[85,255,284],"duration":1.383,"turn_weight":5.5,"turn_duration":0.013,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":7.078,"geometry_index":26677,"location":[9.21018,45.446987]},{"entry":[true,true,false],"in":2,"bearings":[64,96,265],"duration":5.391,"turn_duration":0.097,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":6.086,"geometry_index":26679,"location":[9.210284,45.446993]},{"entry":[true,false,false,false],"in":2,"bearings":[42,132,238,313],"duration":0.695,"turn_duration":0.061,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":0.734,"geometry_index":26686,"location":[9.21056,45.4471]},{"entry":[true,false,false,false],"in":2,"bearings":[29,132,222,313],"duration":2.797,"turn_duration":0.045,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":3.164,"geometry_index":26687,"location":[9.210588,45.447122]},{"entry":[true,false,false],"in":2,"bearings":[5,153,209],"duration":3.852,"turn_duration":0.097,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"weight":4.32,"geometry_index":26691,"location":[9.210671,45.447227]},{"bearings":[63,181,331],"entry":[true,false,true],"in":1,"turn_duration":0.192,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":2,"geometry_index":26700,"location":[9.210686,45.447439]}],"rotary_name":"Piazzale Lodi","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":234,"driving_side":"right","type":"roundabout","modifier":"right","text":"Viale Umbria"},"distanceAlongGeometry":95.128}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":3,"instruction":"Enter Piazzale Lodi and take the 3rd exit onto Viale Umbria.","modifier":"straight","bearing_after":85,"bearing_before":75,"location":[9.21018,45.446987]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":25.961,"duration_typical":18.289,"duration":18.289,"distance":95.128,"driving_side":"right","weight":25.961,"mode":"driving","geometry":"usztuAgscqPAgBIgBQ}ASsAYwAo@sB]{@a@u@e@w@k@w@o@q@s@m@u@e@w@_@g@S{@Si@Kq@Ew@CoAFCHk@?o@Lg@Pg@Pi@Xg@ZeAz@q@t@k@x@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for 1 mile.","announcement":"Continue for 1 mile.","distanceAlongGeometry":1337.606},{"ssmlAnnouncement":"In a quarter mile, Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","announcement":"In a quarter mile, Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","announcement":"Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","distanceAlongGeometry":122.222}],"intersections":[{"entry":[true,false,true],"in":1,"bearings":[14,151,310],"duration":2.586,"turn_weight":5,"turn_duration":0.122,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.836,"geometry_index":26707,"location":[9.210555,45.447602]},{"entry":[true,false,false,false],"in":2,"bearings":[30,122,194,303],"duration":27.492,"turn_duration":0.02,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":31.594,"geometry_index":26710,"location":[9.210596,45.447715]},{"entry":[true,false,false,false],"in":2,"bearings":[30,121,210,300],"duration":1.711,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.961,"geometry_index":26711,"location":[9.21152,45.448843]},{"entry":[true,true,false,true],"in":2,"bearings":[29,114,210,301],"duration":3.086,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.242,"geometry_index":26712,"location":[9.211576,45.448911]},{"entry":[true,false,false,false],"in":2,"bearings":[29,121,209,301],"duration":16.805,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":19.32,"geometry_index":26713,"location":[9.211634,45.448985]},{"entry":[true,true,false],"in":2,"bearings":[30,111,209],"duration":2.109,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.414,"geometry_index":26714,"location":[9.21251,45.450078]},{"entry":[true,true,false],"in":2,"bearings":[28,114,210],"duration":8.898,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":10.211,"geometry_index":26715,"location":[9.212598,45.450186]},{"entry":[true,false,false,false],"in":2,"bearings":[28,114,208,294],"duration":4.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.969,"geometry_index":26716,"location":[9.212823,45.450482]},{"entry":[true,true,false,true,true],"in":2,"bearings":[29,106,208,246,284],"duration":3.305,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.492,"geometry_index":26717,"location":[9.212927,45.450622]},{"entry":[true,false,false,false],"in":2,"bearings":[30,107,209,287],"duration":8.406,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":9.867,"geometry_index":26718,"location":[9.213008,45.450725]},{"entry":[true,false,true],"in":1,"bearings":[30,210,298],"duration":6.219,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.297,"geometry_index":26719,"location":[9.213541,45.451385]},{"entry":[true,false,true],"in":1,"bearings":[30,210,298],"duration":13.461,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":15.805,"geometry_index":26720,"location":[9.213984,45.451925]},{"entry":[true,false,false,false],"in":2,"bearings":[31,87,210,267],"duration":1.711,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2,"geometry_index":26721,"location":[9.214438,45.452481]},{"entry":[true,true,false,false],"in":2,"bearings":[27,110,211,265],"duration":5.172,"turn_duration":2.024,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.703,"geometry_index":26722,"location":[9.214499,45.452553]},{"entry":[true,false,false,true],"in":2,"bearings":[28,121,207,334],"duration":3.469,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.719,"geometry_index":26723,"location":[9.214579,45.452661]},{"entry":[true,false,false,false],"in":2,"bearings":[30,138,208,318],"duration":7.656,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":8.992,"geometry_index":26724,"location":[9.214658,45.452764]},{"entry":[true,false],"in":1,"bearings":[30,210],"duration":7.312,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":8.594,"geometry_index":26725,"location":[9.2151,45.453295]},{"entry":[true,false,false,false],"in":2,"bearings":[30,124,210,300],"duration":0.57,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.664,"geometry_index":26727,"location":[9.21551,45.453798]},{"entry":[true,true,false,true],"in":2,"bearings":[29,120,210,301],"duration":0.789,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.914,"geometry_index":26728,"location":[9.215545,45.45384]},{"entry":[true,false,false,false],"in":2,"bearings":[29,121,209,301],"duration":10.125,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":11.891,"geometry_index":26729,"location":[9.215593,45.4539]},{"entry":[true,false,false,false],"in":2,"bearings":[26,115,205,297],"duration":0.703,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.797,"geometry_index":26734,"location":[9.216212,45.454728]},{"entry":[true,false,false,true],"in":2,"bearings":[21,113,206,293],"duration":1.648,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.906,"geometry_index":26735,"location":[9.216249,45.454781]},{"entry":[true,false,false,false],"in":2,"bearings":[22,115,201,296],"duration":8.828,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":10.367,"geometry_index":26736,"location":[9.216289,45.454853]},{"entry":[true,false],"in":1,"bearings":[21,202],"duration":4.32,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.078,"geometry_index":26737,"location":[9.216521,45.455266]},{"entry":[true,true,false,true],"in":2,"bearings":[20,68,201,310],"duration":3.617,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.227,"geometry_index":26739,"location":[9.216632,45.455464]},{"entry":[true,false,false,false],"in":2,"bearings":[16,134,200,315],"duration":2.664,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.102,"geometry_index":26740,"location":[9.216695,45.455588]},{"entry":[true,true,false,true],"in":2,"bearings":[19,137,196,317],"duration":5.609,"turn_duration":2.008,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":4.227,"geometry_index":26741,"location":[9.216733,45.455684]},{"entry":[true,false,false,false],"in":2,"bearings":[17,138,199,320],"duration":6.023,"turn_duration":0.021,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.047,"geometry_index":26742,"location":[9.21678,45.455782]},{"entry":[true,false,false],"in":1,"bearings":[20,197,266],"duration":1.156,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.344,"geometry_index":26743,"location":[9.216855,45.455953]},{"entry":[true,false,false],"in":2,"bearings":[16,139,200],"duration":10.242,"turn_duration":0.026,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":12.008,"geometry_index":26744,"location":[9.216886,45.456013]},{"entry":[true,false,false,true],"in":2,"bearings":[8,100,196,284],"duration":27.031,"turn_duration":0.033,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":31.727,"geometry_index":26745,"location":[9.217255,45.45692]},{"entry":[true,false,false,false],"in":2,"bearings":[8,114,189,296],"duration":1.82,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":2.117,"geometry_index":26748,"location":[9.217507,45.458121]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.217523,45.458198],"geometry_index":26750,"admin_index":8,"weight":13.648,"is_urban":true,"traffic_signal":true,"turn_duration":2.022,"turn_weight":7,"duration":7.68,"bearings":[5,115,188,296],"out":0,"in":2,"entry":[true,true,false,false]},{"bearings":[5,92,185,272],"entry":[true,false,false,false],"in":2,"turn_duration":0.008,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26753,"location":[9.217557,45.458492]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":188,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Viale Umbria"},"distanceAlongGeometry":1354.272}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Viale Umbria.","modifier":"slight right","bearing_after":14,"bearing_before":331,"location":[9.210555,45.447602]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":252.492,"duration_typical":218.617,"duration":218.617,"distance":1354.272,"driving_side":"right","weight":252.492,"mode":"driving","geometry":"cz{tuAujdqPiASoA[gAa@oeAwx@gCoBsCsBicAwu@wEoDoQaMwGoEmEaDgh@i`@w`@uZwa@k[oCyBwE_DmE}Ce`@sZ]Yo]yWsAeAwB_BaKmHmYoSw@g@cH{DkAs@iBiAoCoAyXoMaAe@iIwDwF}B_EkAcE}AuIuCwB}@uw@aVy_@{E_e@}FgC]{B[]Ci@C}N{@c@CkBKaBK"},{"voiceInstructions":[{"ssmlAnnouncement":"Exit the roundabout onto Viale Umbria.","announcement":"Exit the roundabout onto Viale Umbria.","distanceAlongGeometry":27.01}],"intersections":[{"bearings":[4,84,185,244],"entry":[true,true,false,false],"in":2,"turn_weight":1,"turn_duration":0.007,"mapbox_streets_v8":{"class":"roundabout"},"is_urban":true,"admin_index":8,"out":0,"geometry_index":26755,"location":[9.217569,45.458595]}],"rotary_name":"Piazza Michele Cappelli","bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Viale Umbria"}],"degrees":188,"driving_side":"right","type":"roundabout","modifier":"straight","text":"Viale Umbria"},"distanceAlongGeometry":27.01}],"speedLimitUnit":"km/h","maneuver":{"type":"rotary","exit":1,"instruction":"Enter Piazza Michele Cappelli and take the 1st exit onto Viale Umbria.","modifier":"straight","bearing_after":4,"bearing_before":5,"location":[9.217569,45.458595]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":5.758,"duration_typical":4.055,"duration":4.055,"distance":27.01,"driving_side":"right","weight":5.758,"mode":"driving","geometry":"eiquuAaarqPsCOoIa@"},{"voiceInstructions":[{"ssmlAnnouncement":"Continue for a half mile.","announcement":"Continue for a half mile.","distanceAlongGeometry":1018.868},{"ssmlAnnouncement":"In a quarter mile, Turn left onto Piazzale Dateo.","announcement":"In a quarter mile, Turn left onto Piazzale Dateo.","distanceAlongGeometry":402.336},{"ssmlAnnouncement":"Turn left onto Piazzale Dateo. Then Turn right to stay on Piazzale Dateo.","announcement":"Turn left onto Piazzale Dateo. Then Turn right to stay on Piazzale Dateo.","distanceAlongGeometry":142.13}],"intersections":[{"entry":[false,false,true,true],"in":1,"bearings":[156,184,344,358],"duration":2.336,"turn_weight":6,"turn_duration":0.028,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":8.766,"geometry_index":26757,"location":[9.217594,45.458837]},{"entry":[false,true],"in":0,"bearings":[177,359],"duration":6.602,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":7.922,"geometry_index":26760,"location":[9.21758,45.459123]},{"entry":[true,false,false,false],"in":2,"bearings":[0,90,180,270],"duration":6.484,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":7.773,"geometry_index":26762,"location":[9.217574,45.459621]},{"entry":[true,false,false],"in":2,"bearings":[0,90,180],"duration":4.93,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":5.906,"geometry_index":26763,"location":[9.217574,45.460106]},{"entry":[true,false],"in":1,"bearings":[0,180],"duration":0.938,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":1.125,"geometry_index":26764,"location":[9.217575,45.460473]},{"entry":[true,false,true],"in":1,"bearings":[90,180,359],"duration":21.617,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":2,"weight":25.922,"geometry_index":26765,"location":[9.217575,45.460591]},{"entry":[false,true],"in":0,"bearings":[179,359],"duration":6.445,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":7.734,"geometry_index":26766,"location":[9.217538,45.461611]},{"entry":[true,true,false],"in":2,"bearings":[0,99,179],"duration":3.008,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":3.602,"geometry_index":26767,"location":[9.217527,45.461919]},{"entry":[false,false,false,true],"in":1,"bearings":[90,180,270,359],"duration":2.422,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":2.883,"geometry_index":26768,"location":[9.217527,45.462056]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.217525,45.462161],"geometry_index":26769,"admin_index":8,"weight":3.438,"is_urban":true,"traffic_signal":true,"turn_duration":2.008,"turn_weight":2,"duration":3.211,"bearings":[1,92,179,270],"out":0,"in":2,"entry":[true,true,false,false]},{"entry":[true,false,false,false],"in":2,"bearings":[1,90,181,272],"duration":1.461,"turn_weight":5,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":6.727,"geometry_index":26771,"location":[9.217526,45.462205]},{"mapbox_streets_v8":{"class":"primary"},"location":[9.217527,45.462259],"geometry_index":26773,"admin_index":8,"weight":3.797,"is_urban":true,"traffic_signal":true,"turn_duration":2.021,"turn_weight":2,"duration":3.523,"bearings":[0,92,181,270],"out":0,"in":2,"entry":[true,false,false,true]},{"entry":[false,false,false,true],"in":1,"bearings":[90,180,270,360],"duration":6.758,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":8.102,"geometry_index":26774,"location":[9.217528,45.462348]},{"entry":[false,true],"in":0,"bearings":[180,359],"duration":21.148,"turn_weight":5,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":1,"weight":30.383,"geometry_index":26775,"location":[9.217525,45.462755]},{"entry":[false,false,false,true],"in":1,"bearings":[89,179,269,359],"duration":0.906,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":1.078,"geometry_index":26776,"location":[9.217495,45.46402]},{"entry":[true,true,false,false],"in":2,"bearings":[0,89,179,269],"duration":2.82,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":0,"weight":0.977,"geometry_index":26777,"location":[9.217494,45.46407]},{"entry":[false,false,false,true],"in":1,"bearings":[89,180,269,360],"duration":17.195,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":20.625,"geometry_index":26778,"location":[9.217494,45.464134]},{"entry":[false,false,false,true],"in":1,"bearings":[90,180,270,359],"duration":0.719,"turn_duration":0.019,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":0.836,"geometry_index":26779,"location":[9.217489,45.465463]},{"entry":[false,false,true,true],"in":1,"bearings":[90,179,270,359],"duration":2.672,"turn_duration":2.007,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":0.797,"geometry_index":26780,"location":[9.217488,45.465515]},{"entry":[false,false,false,true],"in":1,"bearings":[89,179,270,359],"duration":11.094,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":13.305,"geometry_index":26781,"location":[9.217486,45.46558]},{"entry":[true,false,true],"in":1,"bearings":[66,179,359],"duration":28.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":2,"weight":33.984,"geometry_index":26782,"location":[9.217465,45.466628]},{"entry":[false,false,false,true],"in":1,"bearings":[75,179,253,359],"duration":4.328,"turn_duration":0.007,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"weight":5.188,"geometry_index":26783,"location":[9.217447,45.467687]},{"bearings":[82,179,239,358],"entry":[true,false,false,true],"in":1,"turn_weight":6,"turn_duration":2.019,"traffic_signal":true,"mapbox_streets_v8":{"class":"primary"},"is_urban":true,"admin_index":8,"out":3,"geometry_index":26784,"location":[9.217442,45.467847]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"left","text":"Piazzale Dateo"},"distanceAlongGeometry":1035.535},{"sub":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"right","text":"Piazzale Dateo"},"primary":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"left","text":"Piazzale Dateo"},"distanceAlongGeometry":402.336}],"speedLimitUnit":"km/h","maneuver":{"type":"exit rotary","instruction":"Exit the roundabout onto Viale Umbria.","modifier":"straight","bearing_after":358,"bearing_before":4,"location":[9.217594,45.458837]},"speedLimitSign":"vienna","name":"Viale Umbria","weight_typical":215.508,"duration_typical":168.164,"duration":168.164,"distance":1035.535,"driving_side":"right","weight":215.508,"mode":"driving","geometry":"ixquuAsbrqPiC@sA@}IVkELwWAi]?}UAkF?w~@hAgRTqG?qEBaAAU?_@?kAAqDAmXDanAz@cB@_C?arAHgB@aCBo`Ah@eaAb@_IHeQV"},{"voiceInstructions":[{"ssmlAnnouncement":"Turn right to stay on Piazzale Dateo.","announcement":"Turn right to stay on Piazzale Dateo.","distanceAlongGeometry":94.444}],"intersections":[{"mapbox_streets_v8":{"class":"tertiary"},"location":[9.21743,45.468138],"geometry_index":26785,"admin_index":8,"weight":8.602,"is_urban":true,"traffic_signal":true,"turn_duration":2.72,"turn_weight":5,"duration":5.719,"bearings":[1,115,178,309],"out":3,"in":2,"entry":[true,false,false,true]},{"entry":[false,false,true,false],"in":0,"bearings":[129,179,294,359],"duration":2.664,"turn_weight":1.5,"turn_duration":0.061,"mapbox_streets_v8":{"class":"tertiary"},"is_urban":true,"admin_index":8,"out":2,"weight":4.617,"geometry_index":26786,"location":[9.217281,45.468224]},{"mapbox_streets_v8":{"class":"tertiary"},"location":[9.21713,45.468272],"geometry_index":26790,"admin_index":8,"weight":5.438,"is_urban":true,"traffic_signal":true,"turn_duration":2.122,"turn_weight":4,"duration":3.32,"bearings":[114,180,269,359],"out":2,"in":0,"entry":[false,true,true,false]},{"bearings":[89,179,269,359],"entry":[false,false,true,false],"in":0,"turn_weight":1.5,"turn_duration":0.007,"mapbox_streets_v8":{"class":"tertiary"},"is_urban":true,"admin_index":8,"out":2,"geometry_index":26791,"location":[9.217016,45.468271]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"Piazzale Dateo"}],"type":"turn","modifier":"right","text":"Piazzale Dateo"},"distanceAlongGeometry":117.909}],"speedLimitUnit":"km/h","maneuver":{"type":"turn","instruction":"Turn left onto Piazzale Dateo.","modifier":"left","bearing_after":309,"bearing_before":358,"location":[9.21743,45.468138]},"speedLimitSign":"vienna","name":"Piazzale Dateo","weight_typical":33.117,"duration_typical":22.508,"duration":22.508,"distance":117.909,"driving_side":"right","weight":33.117,"mode":"driving","geometry":"s}cvuAkxqqPkDhHcA|BUt@Ef@?pA@bFXl_A"},{"voiceInstructions":[{"ssmlAnnouncement":"In 400 feet, You will arrive at your destination.","announcement":"In 400 feet, You will arrive at your destination.","distanceAlongGeometry":119.609},{"ssmlAnnouncement":"You have arrived at your destination.","announcement":"You have arrived at your destination.","distanceAlongGeometry":41.667}],"intersections":[{"entry":[false,false,true,true],"in":0,"bearings":[89,179,267,359],"duration":4.023,"turn_weight":1.5,"turn_duration":2.105,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"weight":3.805,"geometry_index":26792,"location":[9.215985,45.468258]},{"entry":[false,false,false,true],"in":1,"bearings":[89,179,269,359],"duration":5.047,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"weight":8.047,"geometry_index":26793,"location":[9.215983,45.468329]},{"entry":[true,false,true],"in":1,"bearings":[90,179,359],"duration":1.203,"turn_weight":6,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":2,"weight":7.438,"geometry_index":26794,"location":[9.215978,45.468521]},{"entry":[false,true],"bearings":[179,359],"duration":18.961,"turn_weight":1,"in":0,"stop_sign":true,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":1,"weight":23.75,"geometry_index":26795,"location":[9.215977,45.468567]},{"entry":[true,false,false,true],"in":1,"bearings":[89,179,269,359],"duration":1.578,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"weight":3.891,"geometry_index":26797,"location":[9.215955,45.469274]},{"bearings":[89,179,269,359],"entry":[false,false,false,true],"in":1,"turn_weight":2,"turn_duration":0.007,"mapbox_streets_v8":{"class":"street"},"is_urban":true,"admin_index":8,"out":3,"geometry_index":26798,"location":[9.215954,45.469334]}],"bannerInstructions":[{"primary":{"components":[{"type":"text","text":"You will arrive at your destination"}],"type":"arrive","modifier":"straight","text":"You will arrive at your destination"},"distanceAlongGeometry":129.609},{"primary":{"components":[{"type":"text","text":"You have arrived at your destination"}],"type":"arrive","modifier":"straight","text":"You have arrived at your destination"},"distanceAlongGeometry":41.667}],"speedLimitUnit":"km/h","maneuver":{"type":"continue","instruction":"Turn right to stay on Piazzale Dateo.","modifier":"right","bearing_after":359,"bearing_before":269,"location":[9.215985,45.468258]},"speedLimitSign":"vienna","name":"Piazzale Dateo","weight_typical":51.578,"duration_typical":33.023,"duration":33.023,"distance":129.609,"driving_side":"right","weight":51.578,"mode":"driving","geometry":"cedvuAa~nqPmCB_KH{A@{g@f@iBBwB@oDB"},{"voiceInstructions":[],"intersections":[{"bearings":[179],"entry":[true],"in":0,"admin_index":8,"geometry_index":26799,"location":[9.215952,45.469422]}],"bannerInstructions":[],"speedLimitUnit":"km/h","maneuver":{"type":"arrive","instruction":"You have arrived at your destination.","bearing_after":0,"bearing_before":359,"location":[9.215952,45.469422]},"speedLimitSign":"vienna","name":"Piazzale Dateo","weight_typical":0,"duration_typical":0,"duration":0,"distance":0,"driving_side":"right","weight":0,"mode":"driving","geometry":"{mfvuA_|nqP??"}],"weight":82376.688,"duration":74236.789,"duration_typical":74236.789,"weight_typical":71050.055,"annotation":{"maxspeed":[{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":40,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":120,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"unknown":true},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"speed":70,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"unknown":true},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":130,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":110,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":90,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":100,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":80,"unit":"km/h"},{"speed":60,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":50,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"},{"speed":30,"unit":"km/h"}],"congestion_numeric":[null,null,null,0,0,0,null,null,null,null,null,null,12,12,12,12,3,3,3,3,3,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,6,6,6,9,9,0,0,null,9,9,9,9,null,12,12,12,1,1,1,1,1,1,1,1,1,1,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,8,8,8,8,8,9,9,27,27,27,27,27,27,27,27,27,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,8,8,null,null,null,0,0,0,0,0,0,0,0,0,1,4,4,4,6,6,41,41,41,0,null,null,null,null,null,0,0,0,null,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,9,9,3,null,null,null,null,null,17,17,0,0,0,0,9,9,9,9,null,null,null,null,null,null,null,null,null,27,27,72,70,70,77,67,69,69,46,46,46,38,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,null,20,20,20,20,20,20,20,20,20,25,25,25,25,25,null,0,0,0,0,0,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,25,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,6,6,6,6,0,0,0,0,0,0,null,14,14,14,0,0,0,0,0,0,0,0,null,0,0,0,0,0,6,6,6,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,14,14,14,14,14,14,14,0,0,0,0,14,14,14,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,14,14,14,14,14,0,null,11,17,17,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,20,20,null,24,24,24,24,24,24,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,null,null,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,6,6,6,6,null,0,0,0,0,27,27,35,35,35,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,null,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,24,20,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,24,24,24,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,8,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,30,30,30,30,30,30,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,25,25,25,25,25,null,8,null,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,6,6,6,6,6,6,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,null,46,46,46,46,46,46,46,46,46,46,46,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,12,null,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,null,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,12,12,12,12,12,12,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,17,17,17,17,6,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,43,43,43,43,null,null,null,null,null,null,null,null,null,48,null,null,null,null,null,null,null,null,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,16,16,16,16,16,16,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,32,32,32,32,32,32,32,32,32,32,32,32,32,null,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,6,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,16,16,16,16,16,16,16,16,16,16,16,16,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,38,38,38,38,38,38,38,38,38,41,41,41,41,41,41,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,0,null,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,null,null,null,null,null,null,27,null,null,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,51,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,null,null,12,12,12,12,12,29,29,29,null,null,null,null,null,null,null,null,null,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,null,19,19,19,19,19,19,null,12,12,12,12,12,12,null,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,20,20,20,20,20,20,20,20,20,20,20,38,38,38,38,46,46,46,0,0,0,0,0,0,0,null,null,null,null,35,35,35,25,25,25,25,25,null,11,11,11,6,6,6,6,6,6,6,6,6,null,11,11,11,11,11,11,11,null,11,11,11,11,11,11,11,11,null,11,11,11,11,11,11,11,11,11,11,11,27,27,27,27,27,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,null,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,27,27,27,27,27,27,27,27,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,6,6,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,0,0,0,33,33,33,33,33,33,33,33,14,14,14,14,14,14,0,0,0,30,30,null,25,25,25,25,25,25,22,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,30,30,30,30,30,30,11,11,11,11,11,11,11,11,11,11,11,null,22,22,22,22,22,22,11,27,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,30,30,30,30,30,30,35,35,35,35,35,35,37,37,37,37,37,37,37,37,37,37,37,37,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,20,29,29,29,29,25,25,0,0,0,4,0,null,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,22,22,22,22,22,27,0,0,16,16,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,30,30,30,38,38,38,38,38,38,38,38,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,22,32,32,32,32,32,32,32,32,32,32,null,null,25,25,20,37,37,37,37,37,37,37,30,30,30,27,27,27,27,27,27,27,27,27,27,27,27,22,43,43,32,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,20,20,27,22,24,24,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,6,6,6,6,6,6,6,29,29,29,29,29,29,29,29,29,29,29,29,29,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,37,37,37,37,37,37,37,37,37,0,0,0,0,0,0,0,0,0,0,null,null,1,1,1,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,29,29,29,29,29,29,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,null,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,11,11,11,11,11,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,22,22,22,11,11,11,11,11,33,33,33,33,33,35,35,35,35,35,35,38,41,41,33,33,33,33,33,33,33,33,33,33,17,17,17,17,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,37,null,46,54,62,62,62,62,62,62,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,17,17,17,17,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,43,43,43,43,43,43,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,33,33,33,33,33,33,33,33,33,33,33,null,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,40,40,40,40,40,50,50,50,50,50,50,50,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,32,6,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,0,0,0,0,0,0,null,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,null,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,null,0,0,0,0,0,37,37,37,37,37,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,11,20,20,20,27,25,25,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,12,null,6,6,6,null,0,0,0,0,0,0,0,6,6,6,6,6,null,null,null,null,null,0,0,null,0,0,0,0,null,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,0,0,37,37,37,37,37,37,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,35,0,0,0,0,0,0,0,0,0,null,0,0,0,12,12,0,0,0,0,null,12,0,0,59,59,59,59,59,59,59,59,59,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,6,6,6,null,0,0,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,null,22,22,22,22,22,22,22,22,22,22,22,22,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,51,51,35,35,35,35,null,null,null,20,20,20,null,25,25,25,14,11,27,17,17,14,22,22,14,14,14,null,38,38,38,38,38,38,38,38,38,46,46,46,46,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,29,22,22,22,22,22,22,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,41,32,32,32,32,32,27,27,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,30,30,30,30,30,30,11,24,24,24,24,24,32,32,35,35,35,35,33,33,33,27,27,27,27,25,25,25,25,25,25,32,27,27,27,30,30,30,30,30,30,30,30,30,30,17,27,27,27,27,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,12,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,40,40,40,6,43,43,43,43,43,43,43,43,32,32,32,32,32,32,6,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,22,22,22,22,22,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,0,0,17,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,17,17,17,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,null,11,11,33,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,6,6,6,6,11,14,6,6,0,0,0,0,0,0,0,11,11,11,11,11,6,6,27,0,0,0,0,0,0,0,0,0,22,22,6,6,6,6,6,null,20,20,0,0,0,0,0,11,11,11,11,11,11,11,11,11,30,30,30,30,30,30,30,30,30,30,38,38,38,38,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,83,83,83,83,83,83,50,50,50,50,50,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,27,27,27,27,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,0,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,83,82,82,82,82,82,82,82,82,82,88,88,88,88,88,88,88,88,88,88,90,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,0,0,0,0,0,0,0,0,0,0,0,58,58,58,58,58,58,58,58,58,58,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,53,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,12,12,12,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,19,19,19,19,19,19,19,22,22,22,22,22,22,22,22,22,22,37,30,30,30,30,30,30,30,30,30,30,30,30,30,30,24,null,27,27,27,null,19,null,0,0,0,0,0,0,0,null,12,12,0,19,19,19,19,19,19,19,19,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,null,null,24,24,24,24,24,24,24,24,24,24,24,24,24,24,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,43,43,43,43,43,43,43,43,43,43,43,43,43,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,54,null,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,27,27,27,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,0,0,0,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,33,33,33,33,33,33,33,33,33,33,33,33,25,25,25,25,25,25,25,25,25,25,25,25,25,25,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,6,6,6,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,19,19,19,37,37,37,35,33,33,33,0,22,22,22,22,22,29,29,29,29,29,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,53,53,53,53,53,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,33,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,27,27,27,27,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,20,20,20,20,20,20,0,0,0,0,0,null,0,0,0,0,null,null,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,0,0,0,0,null,14,14,14,14,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,35,35,35,35,35,35,35,45,45,45,45,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,null,null,null,null,null,null,null,null,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,53,53,53,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,0,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,11,11,11,0,0,0,0,0,0,0,0,54,27,20,6,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,14,14,14,14,46,46,46,46,46,46,46,46,46,46,46,46,46,51,51,51,50,50,50,50,50,50,56,56,56,56,56,43,43,43,43,43,43,43,43,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,14,14,14,14,14,14,14,14,14,14,0,0,0,40,40,40,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,null,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,27,27,33,33,12,12,12,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,null,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,35,35,35,35,0,0,0,12,17,17,17,17,17,17,17,17,17,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,59,59,59,59,54,43,43,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,27,17,17,17,17,17,17,17,17,17,17,17,17,17,12,12,12,12,12,12,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,24,24,24,null,null,22,22,22,22,22,22,22,12,12,12,12,12,12,50,50,50,50,50,50,70,53,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,29,29,29,29,29,29,29,29,29,29,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,41,41,41,41,41,32,32,32,32,32,32,32,32,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,51,56,56,56,56,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,27,14,14,14,14,14,14,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,51,51,38,38,41,41,33,33,33,33,33,33,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,25,25,25,25,32,30,30,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,30,30,30,30,30,30,30,30,30,30,30,30,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,9,9,9,9,9,9,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,24,24,24,19,19,19,19,19,19,19,19,19,19,19,19,19,19,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,8,8,8,83,83,83,83,83,83,83,83,83,83,83,83,67,67,67,67,67,null,null,19,19,19,19,19,19,19,19,74,74,74,74,74,74,74,74,74,74,74,74,75,75,80,82,82,82,82,82,74,79,79,79,79,79,66,67,67,67,67,88,88,88,88,88,88,88,88,88,88,88,88,88,88,88,77,77,77,77,77,77,79,91,91,91,91,91,91,91,null,null,null,null,83,83,83,83,83,83,83,83,83,83,83,83,70,70,70,70,51,51,51,51,51,51,51,51,51,51,null,40,40,40,40,40,41,41,41,41,41,41,45,45,45,41,41,41,41,41,41,41,41,41,41,41,41,41,41,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,null,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,17,17,17,17,17,17,17,null,null,null,null,null,null,null,null,null,null,16,16,16,16,33,33,33,33,null,19,19,19,19,19,19,19,19,19,19,19,19,19,19,12,12,12,8,8,8,8,8,8,8,8,null,null,null,null,null,43,43,43,43,43,43,43,43,43,43,43,43,43,43,0,3,0,0,0,0,14,14,14,14,14,14,14,3,25,25,25,24,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,17,17,17,17,17,17,17,17,17,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,12,12,12,12,12,12,12,12,12,12,12,8,8,8,8,8,8,8,8,8,8,8,25,25,25,25,25,25,25,25,25,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,20,20,20,20,20,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,8,8,8,8,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,0,0,0,null,45,0,0,0,0,0,0,16,16,16,16,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,8,8,null,null,null,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,12,12,12,12,12,12,67,67,67,67,67,67,67,67,67,22,22,22,22,22,null,null,54,54,null,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,16,22,22,20,20,20,20,12,12,12,12,12,12,12,12,27,27,27,27,27,27,27,27,27,72,72,70,74,74,74,74,75,75,75,75,75,75,75,58,58,58,58,58,58,58,50,50,16,16,16,16,null,8,8,8,8,8,8,8,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,null,null,null,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,0,0,0,0,8,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,0,0,0,0,69,69,38,38,38,38,38,null,null,null,null,null,14,20,20,38,24,24,24,24,24,24,24,24,24,24,24,24,46,46,46,46,46,46,46,54,54,54,54,58,62,8,8,0,0,0,0,0,0,0,0,0,0,0,0,54,54,54,54,56,56,56,56,56,56,null,32,32,32,32,32,32,6,30,30,30,30,30,30,0,0,0,0,38,38,45,45,45,45,45,45,45,50,50,50,50,50,50,50,50,46,46,22,22,22,22,22,22,22,22,22,22,null,null,35,35,35,35,35,35,35,35,35,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,41,41,33,33,33,33,33,33,33,33,33,33,null,0,0,0,32,32,32,32,32,32,32,32,32,0,0,0,null,null,32,32,32,32,32,32,32,25,25,25,25,25,0,0,0,null,35,35,35,35,30,30,30,30,30,30,33,33,33,33,33,35,32,32,32,32,32,32,46,46,46,46,46,58,58,58,58,58,58,70,70,70,70,70,70,null,null,50,64,64,64,64,64,64,64,64,41,41,41,33,33,33,33,33,33,33,11,11,11,11,33,33,33,33,20,20,20,20,35,35,35,35,35,35,35,35,35,35,38,38,38,38,38,38,38,40,40,40,40,40,40,51,51,50,50,58,58,58,58,58,58,58,58,58,null,41,41,41,41,27,27,27,35,35,35,35,33,24,35,35,12,null,41,41,41,41,41,null,null,35,35,35,null,33,33,33,33,0,0,33,33,33,35,35,35,35,35,35,null,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,0,0,0,0,0,6,6,6,6,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,0,0,0,0,null,null,25,25,25,25,25,25,25,25,25,25,25,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,6,null,null,null,null,25,25,25,25,25,25,25,25,null,null,null,null,null,22,25,25,25,16,null,19,19,19,16,16,16,16,19,19,19,22,22,null,null,null,null,null,null,0,0,null,null,6,6,6,6,6,0,0,0,0,22,22,22,22,22,20,20,20,24,24,24,24,24,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,27,27,30,30,30,30,30,8,8,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,null,30,30,30,30,null,null,null,38,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,33,33,33,33,33,33,33,33,33,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,0,0,0,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,0,0,0,0,0,0,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,29,29,29,29,29,29,29,29,29,29,29,29,32,32,38,38,38,38,38,41,41,41,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,6,6,6,6,6,0,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,8,8,0,0,0,0,0,0,8,8,8,8,8,16,16,16,16,16,16,12,12,12,12,12,12,12,12,12,12,12,null,null,16,16,16,0,0,0,0,0,0,0,0,0,0,16,16,8,8,8,22,22,22,22,22,22,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,12,12,12,12,12,12,33,33,33,33,33,33,33,33,12,12,12,12,12,12,12,12,12,12,12,8,8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,0,0,0,null,29,29,29,29,19,25,null,null,24,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,null,0,0,0,0,null,null,null,null,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,19,19,27,27,27,25,null,null,12,12,12,12,12,12,12,12,12,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,20,20,20,20,62,62,62,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,19,19,0,0,0,0,0,16,16,16,16,16,16,8,8,8,8,8,8,8,8,8,8,8,8,12,12,8,8,8,0,12,12,12,12,12,12,12,12,12,12,8,8,null,24,12,12,12,12,12,12,12,12,12,16,16,16,16,16,null,null,null,12,12,12,12,12,12,12,12,12,17,20,20,20,20,20,20,20,20,20,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,null,0,0,null,null,null,83,83,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,null,null,null,null,null,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,null,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,20,20,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,8,8,8,8,8,8,8,8,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,null,33,33,33,35,35,35,35,35,0,0,0,0,0,0,33,33,33,33,null,null,null,null,null,9,9,9,9,9,9,9,9,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,null,null,null,null,null,null,null,null,50,50,50,50,50,30,30,30,30,30,30,30,30,30,30,30,30,25,25,25,25,25,25,0,0,0,0,0,0,0,0,0,12,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,29,29,29,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,12,12,12,12,12,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,8,null,19,19,19,19,19,19,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,null,null,null,8,8,8,8,8,8,8,8,8,8,8,8,8,8,12,12,12,12,12,12,12,12,12,12,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,null,0,null,8,8,8,8,8,0,null,19,null,null,null,null,null,null,null,12,12,12,12,16,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,12,12,12,12,12,6,6,6,6,6,6,6,6,6,6,6,6,null,null,null,null,null,12,12,12,12,12,12,12,12,12,12,12,12,12,25,25,25,25,25,null,null,null,null,null,null,null,12,12,12,12,12,12,12,6,6,6,6,6,12,0,12,12,12,12,12,12,12,19,19,19,19,19,19,29,29,29,29,56,56,56,56,56,null,62,50,50,50,51,51,51,51,51,51,51,32,32,32,32,32,0,0,0,0,0,0,0,0,0,0,null,27,27,27,11,11,11,0,0,0,0,0,0,0,0,0,0,0,32,32,32,32,32,32,32,32,32,32,32,null,33,33,33,33,33,33,33,0,0,0,0,0,0,35,35,35,35,35,35,35,null,38,38,38,38,38,38,38,38,24,24,24,24,24,24,24,24,24,11,6,6,6,6,6,6,0,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,12,12,12,12,12,12,12,12,12,12,22,6,null,null,null,null,6,6,6,null,6,6,6,6,6,6,6,6,6,6,null,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,null,12,12,12,6,6,6,6,6,6,6,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,41,41,41,46,46,46,46,46,0,0,0,0,0,0,0,0,6,14,14,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,null,null,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,16,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,null,null,null,null,null,0,0,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,20,20,20,20,20,20,20,20,20,67,67,67,67,null,null,null,0,0,12,12,12,0,0,17,17,17,17,17,17,17,8,8,8,8,8,8,8,8,0,0,0,0,0,0,0,0,0,0,0,0,8,20,20,20,20,20,30,32,null,null,null,null,null,null,null,null,null,null,4,4,4,4,4,4,4,4,4,4,null,null,12,12,12,12,12,12,12,12,12,12,12,null,null,null,null,null,null,null,null,null,null,25,25,25,25,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,0,0,null,0,0,0,0,0,null,null,null,null,null,null,null,17,17,17,17,17,17,17,null,6,6,6,6,6,6,6,6,6,6,6,14,14,22,22,22,22,22,22,22,22,1,1,1,1,1,1,1,1,null,9,9,9,9,9,9,9,9,9,9,null,9,9,9,null,null,null,null,0,0,0,0,3,3,3,6,6,6,16,16,16,16,16,16,16,16,16,16,16,16,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,1,1,1,1,1,1,1,null,null,null,null,null,null,null,0,0,0,0,0,9,9,null,null,null,null,null,null,4,4,null,6,6,6,6,6,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6,11,11,11,11,11,null,null,null,null,null,null,null,25,25,25,25,25,25,25,25,27,27,null,null,null,null,null,null,20,20,20,20,6,6,6,11,11,0,0,null,0,0,0,0,0,9,9,null,null,null,null,null,null,null],"speed":[6.7,6.7,5.5,4.7,4.7,4.7,3.7,3.7,3.7,3.7,4.3,4.1,4.5,4.5,4.5,4.5,4.5,4.5,4.4,4.4,4.3,3.8,3.8,3.9,3.9,4,3.9,3.9,3.9,5,5,5,5,5,5,5,5,5,4.9,5,5,4.5,3.9,4.4,4.1,4.1,4.1,4.1,4.1,4.1,4.1,4.1,4.5,4.5,3.4,4.1,4.1,7.3,8.6,8.3,8.3,8.3,8.3,6.7,6.7,6.5,5.7,5.6,5.5,5.5,6.4,4.7,4.7,4.7,5.4,6.3,6.3,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.5,5.5,5.5,5.5,5.5,5.5,5.5,5.3,5.6,5.6,6.6,6.4,6.4,6.4,6.3,7.1,7.1,7.2,7.2,7.4,9.1,9.1,7.7,8.1,8.3,7.5,7.5,7.5,7.7,7.1,7.5,6.1,6.1,6.1,6.1,6,6.2,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.1,5.2,5.2,5.1,5,5,5,6.3,6.6,6.4,6.9,6.9,6.6,6.7,6.8,7.5,7.5,7.5,7.1,7.8,7.5,7.5,7.5,7.5,9.2,10.5,10.2,10.2,11.9,11.9,12.6,12.3,10,12.1,11.7,5.5,5.5,5.5,5.4,10.2,11.2,11.2,5.5,11.9,11.9,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.5,10.6,10.6,8.7,8.7,6.7,6.7,11.4,12.3,11.1,11.1,11.1,11.1,8.7,8.6,5.6,5.6,5.6,5.6,6.3,6.3,6.4,6.4,4.8,4.8,4.8,4.8,7.5,8,8,8,8,8.3,8.3,10.3,10.8,10.8,10.9,11.7,7.2,7.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,18,18,18.1,18.1,20.4,20.4,20.4,21.3,20.3,20.3,20.3,20.3,20.7,20.7,18.6,18.6,18.6,18.6,18.6,19.4,19.4,19.4,19.4,19.4,19.4,19.4,21.2,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,20.9,17.8,17.8,17.8,17.8,17.9,17.2,17.4,17.4,17.4,18,18,19.2,19.2,19.2,19.2,19.2,19.2,19.2,18.6,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.8,21.5,21.5,21.2,24.2,24.2,24.2,24.2,24.2,24.2,23.6,20.6,20.6,20.6,20.6,20.6,24.7,23.4,24.4,24.4,24.4,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.2,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.8,28.1,28.1,28.1,27.8,26.4,26.4,26.4,26.4,26.4,26.4,20.6,20.6,20.6,20.5,15.3,15.3,15.2,15.2,21.1,21.1,23.2,27.2,27.2,27.2,27.5,27.5,27.5,28.1,28.1,28.1,28.1,28.1,28.4,28.9,28.9,28.9,28.9,28.8,28.9,28.9,28.9,28,29.2,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,27.5,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29,28.9,28.9,28.9,28.9,28.9,28.9,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,29.9,29.4,29.4,29.1,29.7,29.7,29.7,29.7,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.2,29.2,28.5,28.7,30,30,30,30.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,29.5,29.5,29.4,29.3,29.5,29.5,29.5,28.9,29.5,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,29.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.3,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30,30.2,29.9,30.3,30.3,30.3,29.6,30.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,30.8,30.8,30.8,30.8,30.8,30.8,30.9,30.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.3,30.1,30.4,31.3,31.3,31.5,31.5,31.3,30.7,30.7,30.1,30.1,30.5,30.5,31,30.9,30.9,31.5,31.4,31.4,31.4,31.8,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,32,32,32,32,32,32,32,32,32,32,32,32,32,32.3,32.3,31.4,31.4,31.4,31.4,31.4,31.3,31.8,31.2,32,32,32,32,32,32,32,32,31.2,31.9,31.9,31.9,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,32.2,32.2,32.2,32.2,32.2,32.2,31.8,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31,30.9,30.9,30.5,18.9,18.9,18.9,18.9,18.9,18.9,18.9,18.9,15,19.1,19.1,19.1,19.1,25.3,25.3,25.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,28.9,29.7,28,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.8,29.8,29.8,29.7,29.7,29.6,27.8,23.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,29.7,30,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30.3,30.3,30.3,30.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,29.1,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.1,28.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.6,29.2,29.2,29.2,29.2,29.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.2,32.2,32.2,32.2,32.2,32.2,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,29.5,29.6,29.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,31.7,31.7,31.7,31.7,31.7,31,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28,29.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.1,30.1,30.1,30.1,27.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.5,27.5,27.5,27.1,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.1,29.1,29.1,29.1,28.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,31.1,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.9,29.8,30.2,30.2,29.6,29.7,29.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.4,30.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,30.3,30.3,31.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.4,29.4,29.4,29.4,31.6,31.7,31.7,31.6,31.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.3,28.3,27.8,27.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,31.3,29.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.3,30.3,30.3,29.1,30.5,30.5,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,28.7,29.2,29.2,29.2,29.2,29.2,29.2,26.5,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.4,27.4,27.4,27.5,27.8,28.4,27.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.6,24.6,24.6,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.5,24.5,21.7,21.7,23,23,22.9,23.1,23.1,23.4,23.7,23.8,23.7,23.7,23.6,23.6,23.6,23.6,23.6,23.6,23.6,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.3,29.5,29.5,29.5,28.3,29.4,29.4,29.4,29.4,27.7,28.2,28.4,28.4,28.4,29.5,28.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.6,28.6,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.3,30.3,30.3,30.3,29.5,29.5,29.5,29.5,29.5,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,27.7,29.1,27.7,27.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,28.9,28.9,28.9,28.9,28.9,28.1,28.1,28.1,28.1,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.4,30.6,30.5,30.5,30.5,30.5,30.5,30.5,29,29.5,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30,30,28.2,30.5,30.5,30.5,30.5,30.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,33.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,27.7,30,30,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.3,31.7,31.7,31.7,31.7,31.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.9,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,24.7,25.9,25.9,25.9,25.9,25.9,25.9,26.4,26.4,26.4,26.4,26.4,26.4,30,29.9,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,26.9,27.5,27.5,27.5,27.5,27.6,27.6,27.6,27.5,27.5,27.5,25.6,24.5,24.4,24.4,24.4,25,25,25,25,25,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.2,28.2,28.1,28.1,28.1,28.1,28.1,28.1,30,30,30,30,30,30,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.2,29.2,29.2,29.2,29.2,29.2,29.5,29.8,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,28.9,29.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,30,30,30,30.1,29.7,28.3,28.3,29.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,29.7,29.8,29.8,29.4,29.4,29.4,29.4,26.9,26.9,28.3,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.9,28.6,28.6,28.6,28.1,25.2,28.9,28.9,28.9,28.9,28.9,28.1,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,28.6,28.6,28.6,28.6,28.6,29.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.6,29.7,29.7,29.7,29.7,29.7,29.9,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.9,29.5,29.5,29.5,29.5,29.5,29.5,29.2,28.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.5,29.2,29.2,28.9,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.1,29.9,29.9,29.7,30,30,30,30,30,30,30,30,29.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.2,32.2,32.2,32.2,32.2,31.7,31.7,31.7,31.7,32.2,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32,30.6,30.6,30.6,31.9,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.6,31.6,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.1,29.5,29.5,29.5,29,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.3,28.6,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,22.2,22.2,22.2,22.2,22.2,21.4,23.1,23.5,25,25,25,25.3,26.1,26.1,26.1,26.1,26.1,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29,27.6,27.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,28.8,28.8,29.2,29.2,29.2,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29,29.3,29,28.8,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.2,29.2,29.2,29.4,29.2,29.2,29.2,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,31,30.3,30.3,30.3,30.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.2,30.7,30.7,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31,31.4,31.4,31.4,30.9,30.9,29.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.1,31.1,31.1,31.4,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,31.5,31.8,31.4,30.6,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.3,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,29.8,29.7,29.7,29.8,30,30,30,30.6,30.6,30.6,30.6,30.6,30.6,29.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.4,31.4,31.4,31.4,31.4,31.4,30.8,31.1,31.1,31.1,31.1,31.1,30.5,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31,30.9,30.9,30.5,29.7,30.8,30.6,30.8,30.8,30.3,30.7,29.6,28.7,30,30,30,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,30.9,31.7,31.7,31.7,31.7,25,25,25,25,25,24.6,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.9,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.2,28.9,28.9,28.9,28.9,28.9,30.3,30.3,31.8,28.2,29.4,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30,28.6,29.4,29.4,29.4,29.4,31,30.8,30.8,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,29.8,30,30,30,30,30,30,30,30,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,29.4,29.4,29.1,29.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.2,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.2,29.7,29.7,29.7,29.7,29.7,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,28,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.1,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.8,29.8,29.8,29.8,29.8,29.8,29.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,34.8,30.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.7,28.7,29.3,29.3,29.3,29.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.5,29.5,29.5,29.1,29.1,29.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.5,30.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.2,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,29.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,34.4,33.4,33.4,33.4,33.4,33.4,33.4,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.6,29.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31,29.5,28.2,28.2,28.2,29.4,29.1,29.1,29.1,29.1,29.1,29.1,29.1,30.3,30.3,30.3,30.3,30.3,29.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,30,30,30,30,30,29.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,29.5,29.6,29.6,30,30,30,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,32.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.8,29.8,30,29.7,29.7,29.6,31,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,32.5,30,30,30,30,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.2,27.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,30.2,30.2,30.2,30.4,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.5,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,30.4,30.5,30.5,30.5,30.5,30.5,30.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,31.7,31.7,31.7,31.7,31.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.3,29.8,29.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.7,28.7,28.7,28.7,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,28.3,28.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,12.8,12.8,12.8,14.8,14.8,15.1,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,13.9,18.9,18.9,18.9,18.9,18.9,18.9,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.4,30.4,30.4,30.4,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.6,29.6,20,20,20,20,20,20,20,20,20,26.1,26.2,26.2,26.1,26.1,26.1,26.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30.2,30.2,30.2,30.2,30.2,30.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,31.1,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.6,30.6,29.7,29.7,29.7,29.7,30.3,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,27.7,30.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,29.5,29.5,29.5,29.5,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,28.6,28.6,23.5,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.7,23.7,23.7,23.7,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,27.2,27.2,27.2,27.4,27.4,27.4,27.4,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27,27,27,27,27,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.6,29.2,29.2,29.2,29.2,29,29,28.9,28.9,28.9,28.9,28.8,28.8,28.3,28.3,28.3,28.3,27.5,27.5,27.5,27.5,27.5,27.5,12.8,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,6.7,6.7,6.7,8.4,8.4,8.4,8.9,8.9,9.1,8.9,11,11.2,11.2,12.7,12.7,13,14.7,14.7,15,15,16,14.1,12.8,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,12.5,30.3,30.3,30.3,30.3,29.5,30,30,30,30,30,30,30,30,30,30.2,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.7,30.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,29.9,29.9,29.9,29.2,32.5,30.2,30.2,30.2,30.2,30.2,30.2,30.2,30.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30.3,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30,30,30,30,30,30,29.7,29.7,29.7,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,26.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,28.3,28.3,28.3,28.3,28.4,28.4,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.8,29.8,30.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,30.6,30.3,30.3,30.3,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.3,30.3,30.6,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,29.8,29.1,29.1,29.2,29.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.2,29.4,29.2,32.3,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30,30,30,29.8,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,28.2,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,27.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.4,30,30,30,30,30,29.7,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.4,30.3,30.6,30.6,30.6,30.6,30.6,30.6,29.3,29.4,29.4,29.2,30,30,30,30,30,30,30,30,30,29.9,30,30,30,30,30,29,28.8,28.8,28.8,28.9,28.9,28.9,28.7,28.7,28.6,28.6,29.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.3,30.3,30.3,29.7,29.7,29.7,29.7,30.8,30.8,30.8,30.8,30.8,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.6,28.6,28.6,28.6,28.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,12.7,12.5,12.4,12.6,12.7,4.7,4.7,4.7,4.7,6.2,12.5,12.5,6.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,8,8,8,9.7,9.7,9.7,7.8,8,8,25,25,25,25,25,25,25,25,25,25,25,25,25,22.2,22.2,22.2,22.2,22.2,22.2,7.3,7.2,7.7,7.7,23.9,23.9,23.9,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,24.4,24.4,24.4,24.4,24.4,24.4,24.4,17,17,17,17,16.2,16.2,27.5,27.5,26.7,26.6,26.6,26.6,26.8,26,26.9,22.7,22.7,22.9,17.5,17.5,17.5,7.5,7.8,7.6,7.5,29.4,29.4,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.3,29.8,29.8,29.8,29.8,29.8,29,28.8,28.8,29.2,29.2,29.4,29.4,29.4,28.2,28.7,28.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.5,30.5,30.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.5,29.5,29.5,30.3,30.3,30.3,30.3,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.3,30.3,30.3,30.3,30.5,30.5,30.5,30.5,30.1,30.1,30.1,30.1,30.1,30.2,30.2,30.2,31.1,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.5,29.5,29.5,29.5,29.5,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.4,29.7,29.7,29.7,29.7,29.7,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30,30,30,30,30,30,30,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,30,30,30,30,30,28.9,28.9,28.9,28.9,28.9,28.9,28.7,29.4,29.2,29.2,29.2,29.2,29.2,29.2,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.5,19.5,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,33.7,33.3,33.3,33.3,33.3,33.3,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.3,27.7,27.7,27.7,27.7,27.5,28.4,28,28,28,28,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.4,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.9,27.9,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.1,28.1,26.6,26.6,26.6,26.6,26.6,26.1,26.1,26.1,26.1,26.1,26.4,26.4,26.4,26.4,26.4,26.4,26.4,28.6,28.2,27.6,27.6,28.6,28.6,28.6,28.6,28.1,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,28.2,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.3,27.1,26.8,26.8,26.8,26.5,26.5,26.5,25.8,25.8,25.8,25.8,25.8,25.2,25.2,25.2,25.8,25.8,25.8,25.8,25.8,25.8,22.3,22.3,25.6,25.6,25.6,25.6,25.6,25.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.8,27.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,27,27,27,27,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,27,27,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.1,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.6,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.7,24.7,24.7,24.7,25,25,25,25,25,25,25,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25.1,25.1,25.1,25.1,25.1,25,25,25,25,25,25.8,25.8,25.8,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.4,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.5,33.5,33.5,28.5,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.4,25.4,25.4,25.4,25.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.2,25.2,25.2,25.2,25.2,25.2,23.5,23.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.2,23.2,23.2,23.2,23.2,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.4,23.4,23.4,23.4,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.5,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,22.8,22.8,22.8,22.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,19.2,19.2,19.2,19.2,19.2,19.3,19.3,19.1,19.1,11.1,5.9,5.8,5.8,18.8,18.8,18.8,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,23.9,23.9,23.9,23.9,23.9,23.9,23.9,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,27.5,27.5,27.5,27.5,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.3,27.3,27.3,27.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28.3,28.3,28.3,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,27.8,28.1,28.1,28.1,28.4,28.2,28.2,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,27.5,28,28,28,28,28,28,27.7,27.7,27.7,27.7,28,28,29.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29,28,28,28,28,28,28,28.1,28.1,28.2,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,28.1,28.1,28.1,28.1,27.5,27.5,27.5,27.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.8,27.8,27.8,27.6,27.5,27.5,27.8,27.4,27.9,27.9,28,28,28,28,28,28,28,28,28,28,28,28,28,28,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,29.2,29.2,28.4,27.5,27.4,27.4,27.4,27.4,27.4,28.3,27.5,27.5,27.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.2,25.2,25.2,25.2,25.2,25.2,27.7,27.7,27.7,27.7,27.7,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.4,28.4,28.4,28.4,28.4,28.4,28.3,28.3,28.3,27.6,28,28,28,28,28,28,28,27,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.7,25.7,25.7,25.7,25.7,21.1,21.3,21.3,21.3,8,8,8,8,8,8,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.1,27.1,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,21.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,20.8,21.3,17.6,20.4,20.5,18.2,19.4,19.3,17.9,17.8,17,9.7,9.7,9.7,4.9,4.3,4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,30,30,30,30,30,30,30,29.6,29.6,29.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.2,28.3,28.3,28.3,28.3,28.3,28.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,29.7,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.9,29.5,29.5,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.6,30.6,30.6,30.6,30.5,30.5,30.4,30,30,30,30,30,30,30,30,30,30,30,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,28.7,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,13.4,13.4,13.4,13.4,13.3,13.3,13.3,13.3,25,25,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,27.8,27.8,27.8,27.8,27.8,28,28,28,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.6,28.6,28.6,28.6,28.6,28.3,28.3,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,12,11.9,12,12.1,12.1,16.1,11.6,12,11.3,21.1,21.4,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,23.7,23.7,23.7,23.9,23.9,23.9,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.1,28.1,28.1,28.1,28.1,28.1,28.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,30.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31.3,31.3,31.3,30.5,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,25.2,25.2,25.2,25.6,16.4,16.4,5.6,5.3,6.7,15,19.6,21.4,31.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,31.6,30.8,30.8,30.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.7,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.7,30.7,30.7,31.9,31.9,31.9,31.9,31.9,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,31.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,32.8,32.6,33.3,33.3,33.3,33.3,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.2,32.3,32.3,32.3,32.3,32.3,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.8,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.2,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.3,32.8,32.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.8,33.1,33.7,33.7,33,33.6,33.6,33.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,33.3,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.4,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,48.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,36.1,37,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.9,30.8,31.1,31.1,31.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,33.3,33.3,33.3,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,31.7,31.7,31.7,31.7,31.7,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.1,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,25,25,25.5,25.5,25.5,25.5,25.5,26.1,26.1,26.3,27.2,28.6,28.6,28.6,28.6,27.7,28.7,28.7,28.3,30.3,30.3,30.3,28.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,29,30.8,30.8,30.8,30.8,30.8,30.8,29.9,31.1,31.1,31.1,31.1,31.1,31.1,30.1,30,30,30,30,29.7,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,31.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,31.9,31.9,31.9,31.9,31.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.1,31.1,31.1,31.1,31.1,31.5,31.2,30.4,31.2,31.7,31.7,31.7,31.7,31.5,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,27.4,27.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,30.9,30.9,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.2,30.8,30.8,30.8,30.8,30.8,30.3,31,31,31.8,31.8,31.9,31.9,31.3,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.4,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.3,33.3,33.3,33.3,33,33.1,32.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36,32.2,32.2,31.9,32.7,32.7,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33,33.4,32.7,32.7,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,33.9,32.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33,33,36.1,36.1,36.1,36.1,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.4,31.4,31.4,29.2,29.1,29.1,23.9,22.5,22.5,7,8.6,20.4,20.2,25.6,28,27.6,29.1,30.6,30.6,30.6,31.7,31.7,31.7,31.7,31.7,31.7,32.4,32.4,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.3,32.8,32.8,32.7,33.1,33.1,33.1,33.1,33.1,32.9,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,33.1,33.1,33.1,33.1,33.1,33.7,33.7,33.7,33.7,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.7,32.7,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.9,32.9,33,33,33,33,33,33,33,33,33,33,33,33,33,33,34.3,33.1,34.1,33.4,32.8,32.8,32.8,32.8,32.8,33.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.9,36.1,36.1,36.1,36.1,36.1,36.1,31,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,36,36,36,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.9,35.9,33.1,33.1,33.1,33.1,34,33.7,33.7,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.4,33.8,33.8,32.5,32.5,33,33.4,33.4,33.4,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,35.4,33.2,32.3,33.1,33.1,32.3,33.2,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.8,33.5,33.1,33.2,33.8,33.5,33.5,33.5,33.5,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,33.6,32.8,33.7,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.4,31.4,31.4,30.2,30.9,30.9,30.9,30.9,30.4,30.9,30.6,32,32,32,32,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.9,33,32.7,31.7,31.7,31.7,31.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,30.9,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.5,32.5,32.5,32.5,32.5,32.3,32.5,31.6,31.6,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.3,33.2,31.7,31.7,31.7,31.7,31.7,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.4,32.2,32.2,32.2,32.2,32.2,32.2,31.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.5,30.1,30.1,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.7,29.7,29.8,29.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,32.4,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,28.3,27,27,27,26.8,21.7,21.7,7.5,7.5,7.7,10.3,20.8,23.9,29.5,29.5,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,26.4,26.4,26.4,26.4,26.4,26.6,25.8,25.8,25.8,25.8,25.8,25.5,26.7,26.8,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,28.6,28.6,28.6,27.8,27.8,27.8,27.8,27.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,21.8,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,19.2,3.1,3.1,24.6,24.5,25.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.3,26.9,26.9,26.9,26.9,27,27,27,27,27,27,27,27,26.7,25.1,25.3,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.5,25.5,25.5,24.1,24.1,24.1,24.1,24.1,24.1,24.2,24.2,24.2,24.2,24.2,24.2,24,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25,26.4,26.4,26.3,26.6,26.1,26.3,25,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,26.1,26.1,26.1,26.1,26.1,26.1,26.1,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.2,28.2,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.4,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,26.2,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,19.7,7.5,7.5,5.4,5.2,5.4,13.5,13.5,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.8,31.9,32,32,32,32,31.9,31.9,32.5,32.5,32.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.7,32.7,25,25,25,25,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.1,31.9,31.9,31.9,31.9,31.9,31.9,32.7,30.5,30.5,30.5,30.5,30.7,30.4,31.7,31.7,31.7,31.7,31.7,31.7,30,30,30,30,30,30,30,30,30,30,30,30.2,29.9,29.9,29.9,30,30,30,30,30,30,30,30,30,30,30,30,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,30.8,32,32,32,32,32.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,30.7,30.7,30.8,30.5,30.5,30.5,30.5,30.5,32.3,32.3,32.2,32.2,32.2,31.4,31.4,31.4,31.4,31.4,31.4,31,31.6,31.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.2,32.2,32.2,32.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,29.8,29.7,28.3,29.1,28.9,29.2,29.2,29.2,29.2,29.2,29.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,32,32,32,31.3,31.8,31.8,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.7,32.7,32.2,32.2,32.2,32.2,32.2,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,33.5,33,33,32.2,32.2,32.2,32.2,32.2,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32,32,32,32,32,32,32,32,31.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.2,36.1,36.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.5,31.5,31.5,32,32,31.9,31.9,32.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,32.6,30.3,30.3,30.3,30.3,30.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29.3,29.7,29.7,29.7,29.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.2,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.5,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.2,36.2,36.2,36.2,36.2,36.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.7,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.4,32.4,32.1,32.4,32.5,32.5,32.5,32.5,32.5,32.2,31.9,32.3,32.3,32.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,32.5,32.8,32.8,32.8,32.8,32.7,32.7,32.7,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,27.8,27.7,27.8,27.7,28.1,28.4,28.4,27,27,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.8,24.6,24.6,24.6,24.6,24.6,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.7,24.7,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.3,26.4,26.4,26.4,26.4,26.4,26.4,24.9,25.3,27,27,27,26.7,26.9,30.2,29.7,30.5,31.1,31.1,31.1,30.9,30.8,30.9,30.9,30.9,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.3,31,30.6,31.3,30.7,31.1,31.1,30.6,31.7,31.7,31.7,31.7,30.6,31.3,31.3,30.9,31.4,31.4,30.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.8,31.7,31.7,31.7,31.5,31.5,31.6,31.6,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,32.3,32.3,32.3,32.3,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,31.7,31.6,32.3,32.2,32.2,31.8,32.3,32.3,31.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.8,36,35.9,32.5,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.2,33.2,33.2,32.1,32.1,32.4,32.4,32.5,32.7,32.3,32.3,32.8,32.8,32.8,32.8,32.5,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.5,32.8,32.8,32.8,32.8,32.8,32.2,32.8,32.8,31.9,32.8,32.8,32.8,31.2,31.2,32.5,32.5,31.8,31.9,31.3,36.6,36.1,36.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.3,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,30.3,30.5,30.5,30.5,30.6,36.1,36.1,36.1,36.1,36.1,36.1,37,36,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.7,32.7,32.7,32.7,32.7,32.7,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.3,32.7,32.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.8,31.8,32.3,32.3,32.3,32.3,31.6,31.8,31.9,32.5,32.5,32.5,31.7,32.5,32.5,32.5,31.9,31.9,32.1,32.2,32.2,31.6,32,32,31.9,32.3,32.3,31.4,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.2,32.5,32.2,32.2,32.2,32.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31,31,31.8,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.6,30.6,30.6,30.6,25.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.7,31.1,31.1,31.1,31.4,31.2,31.4,31.4,31.4,31.4,31.4,31.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.9,30.3,30.3,30.3,30.3,30.3,30.3,30.6,30.5,30.6,30.6,30.6,30.6,30.3,30.2,30,30,30,30,29.2,29.2,29.2,19.4,19.4,19.4,19.5,19.5,19.5,19.5,19.5,19.5,19.5,30.1,30.6,30.6,27.5,29.8,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,30.5,30.5,30.5,30.7,30.4,30.5,30.5,30.5,30.5,30.5,30.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,34.7,32.3,31.4,31.4,31.4,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32,31,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.2,31.2,31.2,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.4,30.8,30.8,28.5,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.4,30.5,30.5,28.9,28.9,28.9,28.9,28.9,29.3,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,29.2,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.1,29.4,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,26.9,26.9,26.9,26.9,26.8,26.8,26.9,26.9,26.9,26.9,26.9,28.3,26,10.8,10.8,17.9,15.3,15.3,15.3,15.3,30.5,30.5,30.5,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.2,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,28.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.6,28.6,28.6,29.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30.2,30.2,30.6,30.6,30.6,30.6,30.3,28.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,35.7,36.1,30,30,30,30,30,29.2,29.2,29.3,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28,28,30,30,30,30,30,30.1,30.2,30.2,30,30,30,30,29.6,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.3,29.1,30,30,30,30,30,29.9,30,30,30,30,30.6,30.6,30.6,30.6,29.9,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.3,31,29.7,30,30,30,30,30,19.5,19.5,19.5,19.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,30.5,30.5,30.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.1,20,16.6,16.6,16.6,16.6,16.6,16.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,16.1,16.1,16.1,16.1,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.4,21.3,26.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,28.8,28.9,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.1,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,29.7,29.7,29.6,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.1,30.1,29.2,30.4,30.4,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31,31.7,31.7,31.6,31.6,31.6,31.6,32,32,32,32,32,31,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,29.8,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.4,31.3,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.2,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,30.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,11.9,11.9,11.9,11.9,11.9,7.2,7.2,18.9,18.9,18.9,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.2,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,23,30.6,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,7.5,6.9,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23.1,23.1,23.1,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,17,19.1,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,21.9,22.1,22.1,21.7,21.8,22.2,23.8,23.8,23.8,25,24.4,24.1,24.7,24.7,24.7,24.7,24.7,25.6,25.6,26.9,26.1,26.1,26.7,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.7,26.7,27.2,27.2,27.2,27.2,27.3,26.7,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,30.5,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,27.8,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.3,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.8,26.8,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.1,29.1,29.1,28.4,28.4,28.4,28.4,28.4,30.9,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.4,26.4,18,18,18,18,18,4.7,4.7,4.8,29.5,28,29,29,29,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,30.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.3,31.6,31.6,31.6,31.6,31.6,31.6,31.6,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.3,31.3,31.3,31.3,29.3,31.1,30.9,30.9,30.9,30.9,30,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.6,30.6,30.6,30.6,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24,24,24,24,23.8,23.8,23.8,23.8,21.2,20.6,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,26.1,20.9,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.6,25.6,23.1,22.6,22.6,22.6,22.6,22.6,10.6,10.5,10.8,22.7,24.1,24.1,24.2,24.2,24.2,24.2,23.9,30.6,30.6,30.6,30.6,30.4,30.5,30.5,30.5,30.5,30.5,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,30.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30,30,30,30,30,30,30,30,30,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30.3,30,30.8,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,29.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.6,31.4,31.4,31.4,31.4,31.4,31.4,31.4,32.2,31.8,31.8,32,32,32,32,32,32,32,32,32,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.4,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,29.5,29.4,29.4,28.2,8,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,8.1,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,14.2,14.2,14.2,14.2,14.2,14.2,14.2,22.5,22.5,22.5,22.7,22.8,22.8,15,21,18.1,18.1,18.1,18.1,18.1,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,25,25,25,25,25,25,25,25,25,23.9,23.9,23.9,23.9,23.9,24.7,24.7,24.7,24.7,24.7,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.7,25.7,25.7,25.3,25.3,25.3,25.3,25.3,25.2,24.9,24.9,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.6,24.9,26.7,26.9,26.9,26.9,26.9,26.9,26.9,26.9,28.8,28.6,28.6,28.6,28.6,28.6,28.6,28.7,28.7,28.6,28.3,28.3,28.3,28.3,28.6,28.9,28.9,28.9,28.6,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.8,29.1,27.7,27.7,23.5,23.5,18.1,18.1,4.4,4.3,11.7,18.8,24.5,24.5,24,24.5,26.9,26.9,26.9,26.9,26.9,27.4,26.9,29.2,29.2,29.2,30.3,30.3,30.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.5,32.5,32.5,32.5,32.5,32.5,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,33.1,32.6,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.9,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,32,32,32,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32,31.9,31.9,31.9,31.9,32.3,31.9,31.9,31.9,31.9,31.9,30.9,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.5,32.2,32.2,32.2,32.2,32.3,32.5,32.5,32.5,32.5,32.9,31.9,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,31.9,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.6,31.6,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,31.7,30.7,30.7,30.2,30.2,30.2,30.2,30.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,19.4,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.4,31.4,31.4,31.5,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,31.9,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32.8,32,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,38.2,31.7,31.7,31.7,31.7,31.1,31.1,31.1,32.1,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,32.3,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.3,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,36.2,36.2,36.1,36.1,36.1,36.1,29.2,29.1,29.1,29.1,29.1,29.1,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,25,25,24.9,24.9,24.9,21.5,21.3,14.4,14.4,14.8,4.7,21.1,21.2,27,27,27,27,27,27,27,27,27,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.9,28.7,28.3,28.8,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.8,28.8,28.8,28.8,28.6,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.8,28.8,28.8,28.8,28.8,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.5,28.9,28.9,28.8,28.4,28.4,28.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.5,27.2,27.2,27.2,27.2,27,27,26.9,26.9,27.8,27.8,27.8,27.8,27,27.4,27.7,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,24.8,24.8,24.8,25,25,25,25,25,25,26.2,26.2,26.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.5,26.2,26.2,26.2,26.2,26.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27.8,25.8,25.8,25.8,25.8,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25.2,25.2,25.2,25.2,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,25.8,25.8,25.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,24.6,24.6,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.2,25.2,25.2,25.2,25,25,25,25,25,25,25,25,25,25,24.2,24.2,23,23,23,20.9,21,17.1,16.8,7.8,7.8,7.8,12,12,12.1,12.1,12.1,12.2,12.2,12.2,12.2,12.2,21.2,22.4,22.8,23.2,18.9,17.7,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,21.6,23.9,23.9,23.9,23.9,23.5,23.5,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,25.5,25.5,27.1,25,25,25,25,25,25,25,25,24.9,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,24.5,24.5,24.5,24.5,24.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.5,24.5,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24,24,21.5,21.5,21.4,21.4,20.1,21.4,21.4,21.4,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.8,22.1,22.3,23,23,24.5,24.5,24.5,24.5,24.5,24.5,37.7,25.1,25.1,25.1,25,25,25,25,25,25,25.8,25.8,25.8,25.8,26,26,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,24.5,24.5,24.3,23.5,23.5,21.6,21.6,21.6,21.6,21.5,21.5,21.5,10,10,10,10,10,9.9,30.1,30.6,30.6,30.6,30.4,30.4,21.5,23.1,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.9,24.9,24.9,24.9,24.9,24.9,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25,25,25,25,25,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25,25,25,25,25,25,25,25,25,25,24.4,24.4,24.2,25,25,25,25,25,25,25,25,25,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,21.5,23.6,23.6,23.6,23.6,23.6,24.3,24.3,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24,24,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,24.1,23.9,25,25,25,25,25,25,24.4,25,25,25,25,25,25,25,25,25,25,25,24.1,24.1,24.1,24.1,24.1,24.1,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24,24,24.7,24.7,24.7,24.7,24.7,25,25,25,25,25,26.4,26.4,26.4,26.4,26.4,26.2,26.2,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.4,26.4,24.1,24.6,24.6,24.1,24.1,25.3,25.3,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,24.9,26.2,25.9,25.9,25.9,26.1,25.5,25.5,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.7,25.7,25.7,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,24.9,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.9,24.9,24.9,24.9,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,19.9,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.1,11.3,10.7,11.5,4.4,4.4,4.4,4.4,15.3,15.3,15.3,15.3,15.3,20.6,20.6,22.2,22.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.2,26.2,26.2,26.2,26.2,26.2,26.2,24.4,24.4,24.4,24.4,26.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27.3,27.3,27.3,27.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,25.5,25.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,25.2,25.2,25.2,25.2,25.2,25.2,23.2,23.2,22.8,22.8,22.8,22.8,22.8,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.2,27.2,27.2,27.2,27.2,27.9,27.9,28,28,28,28,28,28,28,28,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,27.8,27.8,27.8,27.8,27.8,27.9,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25,26.4,26.4,26.4,26.4,26.4,23.4,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.4,26.4,25.9,26.8,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.2,25.2,25.4,25.4,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,23.4,25.8,25.8,25.8,25.8,25.8,24.3,24.3,24.3,24.3,24.3,24.3,25.3,25.3,25.3,25.9,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.2,24.2,24.2,24.2,24.2,24.2,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.5,24.5,24.5,24.5,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.7,21.8,21.7,21.7,21.7,21.7,25,25,25,25,25,25,25.1,25.1,25.1,25.1,25.1,22.3,22.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,23.5,23.5,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,22.6,22.6,22.6,22.2,22.2,22.2,22.2,22.2,22.2,22.2,23.3,23.3,23.3,23.3,23.3,23.3,23.3,21.6,21.6,21.6,23.9,23.9,23.9,23.9,25,25,25,25,25,22.1,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.3,22.3,22.3,23.6,23.6,23.6,23.6,23.6,23.6,23.6,23.6,17.8,17.8,17.8,17.8,17.8,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,22.2,8.3,6.3,6.4,6.4,6.4,6.4,3.9,3.9,3.9,3.9,3.9,3.9,3.9,12.6,18.4,18.4,18.4,20.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,21.8,21.8,21.8,24.8,25,25,25,25,25,25,25,25,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.8,25.8,25.8,25.8,25.8,25.8,25.8,24.1,24.1,24.4,24.4,24.2,24.2,24.5,24.5,24.5,24.5,25.2,25.2,25,25,25,25,24.4,25.8,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.9,23.9,24.3,21.4,21.4,21.4,21.4,21.4,21.1,21.1,21.1,21,21,21,21.1,21.1,21.1,21.1,21.1,21.1,21.1,21.1,19.2,19.2,19.2,22,22,22,22,22,21.9,21.9,24.1,23.6,23.6,23.6,23.6,24.7,26,25.6,25.6,25.9,25.9,26.1,26.1,26.1,26.1,26.1,25,25,25,25,25,25,25,25,25,30.5,30.5,30.5,30.5,30.5,30.5,30.5,25.1,25.1,25.1,25.1,25.1,24.5,24.5,24.5,24.4,24.4,24.4,24.4,26.3,26.3,26.3,26.3,26.3,26.9,26.9,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,30.5,30.5,30.5,30.5,30.5,30.5,30.5,26.1,26.1,26.9,26.7,26.7,26.7,27,27,27,27,27,27,27,27,27,26.7,26.7,26.7,26.7,26.7,25.4,25.4,25.4,25.4,25.2,25.2,25.4,25.4,30.2,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,26.5,26.7,26.7,26.7,26.7,26.5,26.6,26.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,36.2,36.2,36.2,36.2,27.2,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,26.5,26.5,26.5,27,27.2,27.2,27.2,36.1,36.1,36.1,36.1,36.1,36.1,36.1,27.2,27,27,26.7,26.7,26.7,27,27,27,27,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27,27,27,25.2,25.6,25.6,25.6,25.6,25.6,25.6,25.1,25.1,25.1,25.1,25,25,25,25,25,25,25,25,25,25,17.8,17.8,24.4,24.4,23.6,25.6,25.6,25.6,25.6,26.6,26.6,26.6,26.7,26.7,26.7,27,27,27,27,27,27.1,27.1,27.3,27.3,27.2,27.2,27.2,27.2,26.4,24.8,24.8,24.8,26.3,26.3,26.7,26.7,26.7,27.2,26.3,26.3,26.3,26.3,26.3,26.3,26.3,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.6,25.6,25.6,25.5,25.7,25.2,26,25.5,25.5,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.9,25.6,25.6,25.7,25.2,25.2,25.5,25.5,25.3,25.3,25.3,25.3,25.3,25.3,25.3,26.1,26.1,21.7,21.7,26.2,26.2,26.2,26.7,26.7,26.4,26.4,26.4,26.4,27.2,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.6,26.7,27.2,28.2,26.3,16.3,27.8,27.8,28.4,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28,28,28,28,28,28,28,28,28.3,28.3,28.3,28.3,28,28,28,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.4,28.4,28.4,28.3,28.3,28.3,28.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,25.8,25.8,25.8,26.1,26.1,26.1,26.1,27.8,27.8,27.8,27.8,26.4,26.4,27.5,27.5,27.5,20.6,20.6,27,27,27,28.6,28.1,28.1,28.1,28.1,28.1,28.1,28.3,28.3,28.3,28.3,28.6,28.6,28.6,28.7,28,28,28,28,28.1,27.8,27.8,27.8,27.8,27.8,27.5,28.1,27.5,27.5,27.5,27.5,27.5,28.1,28.1,28.1,27.8,27.8,27.8,28,28,28,28,27.7,27.7,27.8,27.8,27.8,27.8,28.1,28.3,28.1,28.1,28.1,28.2,28.5,28.6,28.6,28.6,28.5,28.5,28.9,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,29.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28.2,27.3,27.6,27.6,27.6,27.6,30.6,26.9,26.8,26.7,26.7,26.7,26.7,26.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,27,27,26.9,26.9,26.9,27,27.3,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27,27,27,27,27,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27.7,27.7,28.1,28.1,28.1,28.1,28.1,28.4,28.4,28.4,28.4,28.4,28.7,28.6,28.6,28.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,27.5,27.5,27.5,27.5,27.8,27.8,30.5,30.5,30.5,30.5,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26,26.9,26.9,26.9,26.9,27.2,27.2,27.8,27.8,27.8,27.8,28.3,27.7,27.7,27.7,27.7,27.7,27.7,27.6,27.2,27.2,27.2,27.2,27.2,27.2,26.6,26.6,26.6,26.6,26.4,26.4,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.5,25.5,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.7,28,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,28.5,29.2,29.2,29.2,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.1,28.1,28.1,25.9,28.1,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28,28,28,28,28,28,28.1,28.1,28.4,27.8,27.8,27.8,27.8,28.1,28.1,28.1,28.1,28.1,28.1,27.8,27.8,27.8,27.8,27.8,27.4,27.5,27.5,27.5,27.5,27.5,27.5,27.7,27.7,27.7,27.7,27.7,28.1,28.1,28.1,28.1,28.1,28.1,27.3,27.3,27.2,27.2,27.2,27.2,28.1,28.1,28.3,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.1,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,29.2,29.2,29.2,29.1,29.1,29.1,29.1,29.4,29.3,29.1,29.1,29.1,29.2,28.9,28.9,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.1,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.1,29.1,29.1,29.1,29.3,28.8,28.6,28.6,28.7,28.8,28.6,28.6,28.6,28.6,28.2,28.5,28.8,28.5,28.8,28.8,30.1,28.6,28.6,28.6,28.6,27.1,27.1,28,28,28,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,27.7,27.5,30.6,30.6,30.6,30.6,30.6,28.5,28.8,28.8,28.5,28.9,29.1,29.1,29.3,29.3,29.2,29.2,29.2,29.1,8.8,29.2,29.2,29.2,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.1,28.1,28.1,28.1,28.1,28.1,28.1,28,28,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.3,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,28.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.5,29.5,29.2,29.2,28.8,28.8,28.8,28.8,29.2,29.2,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.9,27.4,27.4,27.5,27.5,27.5,27.5,27.5,27.5,28,28,28,28,28,28,27,27,27,28,28,28,28,28,28,28.7,28.7,28.7,29.6,29.7,29.7,29.7,29.7,29.7,29.7,29.7,29.7,28.8,28.3,28.3,28.4,28.1,28.8,28.9,28.9,28.9,28.6,27.7,28.3,28.3,28.3,28.6,28.6,28.6,28.6,28.6,28.6,28.6,28.9,28.9,28.6,28.6,30.6,30.6,30.6,30.6,28.6,30,28,28,28.6,28.6,28.6,28.6,27.2,27.8,27.8,27.8,27.8,28,28,28,28,28,28.4,28.4,28.4,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,25.5,25.5,26.8,26.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,24.5,20.8,20.8,20.8,25.3,25.3,25.3,25.6,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.9,25.9,25.9,25.9,24.8,25.3,25.3,25.3,25.3,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.4,24.4,24.4,25,25,25,26.7,26.9,26.9,27.2,27.2,27.2,27.2,27.2,26.4,26.4,26.4,26.4,26.4,25.6,25.6,25.6,25.6,25.6,25.6,24.5,25,25,25,25,25,25,25,25,25,25,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,24.2,26.1,26.1,26.1,26.1,26.1,26.1,26.7,26.7,26.7,26.7,26.3,26.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,26.7,26.8,26.8,26.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,28.1,27.4,27.4,27.4,27.4,27.6,27.6,27.6,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26,26,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,26.6,26.6,26.6,26.6,26.7,26.7,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.3,26.3,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.5,26.6,26.6,26.6,25.8,25.8,25.8,25.9,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,30.5,23.6,23.6,23.6,23.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.6,26.3,27.2,27.2,27.2,26.8,27.7,27.7,27,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,26.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.4,27.4,27.4,27.4,27.6,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.3,27.6,27.6,27.6,27.6,27.6,28.5,28.8,28.7,28.3,28.3,28.3,28.3,28.8,27.5,27.7,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.7,26.7,26.7,26.7,26.7,26.7,26.9,26.9,26.2,26.2,26.2,26.2,26.2,26.2,26.6,26.6,26.6,26.6,27,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.8,27.8,27.8,27.8,27.8,29.2,26.5,27,27,27,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,26.7,27.6,27.6,27.6,27,27,27,27,27,27,27,27,27,27,27,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,27.1,27.4,27.4,27.4,27.4,27.4,26.8,26.8,27.8,27.8,27.8,27.8,27.1,27.1,27.1,27.1,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.1,26.3,26.3,24.2,22.5,22.7,24.2,24.2,24.2,24.2,24.2,24.9,24.9,24.9,24.9,25,25,25,25,25,25,26.2,26.2,30.6,30.6,30.6,27.7,27.9,27.9,27.9,27.9,27.7,28.1,26.6,27.3,27.1,25.8,25.8,25.8,25.8,25.8,25.8,25.9,25.9,25.9,25.9,25.9,26.5,27.2,27.2,27.2,19.4,26.9,26.9,26.9,26.9,25.7,25.7,25.7,25.7,25.4,25.4,25.4,25.6,25.8,25.8,25.8,25.8,25.8,25.8,25.8,27,27,27,27,27,27,27,27,28.2,27.6,28.1,27.4,27.8,27.8,27.8,27.8,28,28,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.3,25.8,25.8,25.9,25.9,25.9,25.9,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.8,24.8,24.8,24.8,24.7,24.7,24.7,24.7,24.7,24.7,24.7,24.7,26.3,26.3,26.3,26.9,26.5,26.5,26.4,26.4,26.4,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,28,28,28,28,26.6,26.6,26.6,26.6,26.6,30.6,30.6,30.6,30.6,30.6,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,27.2,27.2,27.2,27.2,27.2,26.9,25.6,25.6,25.6,25.6,25.6,25.6,25.6,25.4,25.6,25.6,26.5,26.5,26.6,26.3,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,25.6,25.6,26.5,25.8,25.8,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.8,25,25,25,25,25,25,25,25,25,25.9,25.9,25.7,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.7,26.7,26.6,26.6,26,26,26,26.4,26.4,24.9,24.9,24.9,24.9,26.2,24.9,24.9,24.9,24.9,24.9,25.8,26.8,26.8,26.6,26.6,26.6,26.6,26.6,26.6,27.2,27.2,27.2,26.6,26.6,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.3,26.1,26.3,25.8,26.6,25.8,25.8,26.3,26.3,26.3,25.8,25.8,26,26,27,27,27,26.7,26.6,26.6,26.5,26.5,26.6,27,27.3,26.7,26.6,26.8,26.7,26.7,26.7,26.1,26.9,26.7,26.7,26.7,26.7,24.2,24.2,24.2,24.2,24.2,22.5,22.5,22.5,22.5,22.5,22.5,22.5,23,22.5,22.5,22.5,22.6,22.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,24.7,24.7,24.7,24.7,24.7,24.7,24.7,25.7,25.6,25.6,25.6,25.6,25.6,25.6,23.4,23.4,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,23.3,21.8,21.8,21.8,21.8,21.8,22.4,22.4,21.3,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,22.5,24.6,23.9,23.9,23.9,23.7,23.7,23.7,23.7,23.7,23.7,23.7,24.7,24.7,24.7,24.7,24.4,24.4,24.4,24.4,24.4,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,26.4,24.3,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,22.3,22.3,22.3,22.3,22.3,22.3,20.8,20.8,20.8,20.8,16.6,16.6,16.6,16.6,16.6,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,20.3,19.4,19.4,19.4,19.4,19.4,19.4,19.4,19.4,18,18,18,18,18,21.1,21.1,21.1,21.1,21.1,21.1,21.1,20.7,21.1,21.1,21.1,21.1,22.5,22.5,22.5,22.5,22.5,22.5,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23.4,23,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,23.1,20.8,20.8,20.8,20.8,20.8,20.8,20.8,22.3,22,22,22,22,22,22,22,22,22,22,22,22,22,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,23.9,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,24.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,21.7,21.7,21.7,21.7,21.7,25.9,25.9,25.9,25.9,25.9,24.6,24.6,24.6,24.6,25.2,25.2,25.2,25.2,25.2,25.2,25.2,25.6,23.6,23.6,23.5,23.5,28.6,23.5,25,25,25,25,25,25,25,25,25,25,25,25,25,25,24.4,24.4,24.4,24.4,24.4,30.6,23.4,25.6,25.6,25.6,25.6,26.4,26.4,26.4,26.4,26.4,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.1,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.7,26.4,26.4,26.4,26.4,26.4,26.4,26.2,26.2,26.2,26.2,26.2,26.2,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.4,26.3,26.3,26.7,26.7,26.7,26.7,26.7,26.7,26.7,25.9,25.9,25.9,25.9,25.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.4,26.4,26.4,26.4,26.4,26.4,26.5,26.5,26.5,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.3,27.5,27.7,28,28,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.1,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.2,27.2,27.2,27.2,27.3,27.3,28.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,26.9,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,26.7,26.7,26.7,26.1,26.1,26.1,26.7,26.7,26.7,25.5,25.5,25.5,25.8,26.1,26.4,26.4,26.9,26.9,27,27,26.1,25.9,26.4,26,26.4,26.4,26.4,25.8,25.8,26.9,24.9,25.6,25.3,25.3,25.3,25.3,25.3,25.3,25.9,26.1,26.1,26.1,26.1,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,30.6,27.7,27.7,27.6,27.6,27.6,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,26.4,26.4,26.4,26.4,26.4,25.5,25.5,25.5,25.5,25.5,25.5,25.9,27.5,27.5,27.5,27.5,27.5,27.5,27.9,28.3,28.3,28.3,28.3,28.3,28.9,28.3,28.9,28.9,28.9,28.9,28.9,28.9,28.9,28.3,28.3,28.3,28.3,28.3,28.3,26.9,26.9,26.9,26.9,27.7,27.7,27.7,27.7,27.7,27.5,28.1,28,28,28,28.1,28.1,28.1,28.1,28.1,28,28,28,28,28,28,28,28.8,28.9,28.9,28.9,28.9,28.9,29.4,29.4,29.4,29.4,29.4,29.5,29.5,29.5,29.4,29.4,29.4,30.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.4,29.5,29.3,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,29.2,30,29.9,29.9,29.9,30,30,30,30,29.7,29.7,29.7,29.7,29.7,29.7,30,30,30,30,30,30,30,31.3,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,32.3,31.9,31.9,31.9,31.9,31.9,31.9,31.3,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,21.5,31.4,31.4,31.4,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.6,26.4,27.8,27.8,27.8,27.8,27.8,27.8,27.8,27.8,31.1,31.1,31.1,31.1,30.7,31.5,31.9,31.9,31.4,31.4,31.4,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31.6,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.3,31.3,31.4,31.4,32,32,32,31.9,31.9,31.9,31.5,31.5,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.3,31.3,31.7,31.7,31.8,31.6,31.6,31.8,32,31.3,30.8,30.8,30.9,28.3,28.3,28.3,28.3,28.3,28.3,28.5,22.9,22.9,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,32.2,31.6,31.6,31.6,31.6,31.6,31.4,32,32,32,32,32,32,32,31.3,31.1,31.1,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.7,31.7,31.7,31.7,31.7,31.7,31.9,31.9,31.9,32.2,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,32.5,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,33,33,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.3,33.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,30.6,25,25,19.4,19.4,19.4,19.4,19.4,19.4,19.4,16.4,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,31.1,31.1,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,16.7,13.9,19.4,19.4,19.4,19.4,19.4,19.4,19.4,32,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.9,31.4,31.4,31,31.3,31.3,31.7,31.7,31.7,31.7,31.7,31.7,31.7,31,31.5,31.5,31.6,31.4,31.3,31.5,32,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.5,31.5,31.5,31.4,31.4,31.4,31.4,31.4,31.4,30.6,30.5,30.5,30.5,30.5,25,25,25,25,25,24.9,24.9,24.9,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,36.1,31.4,31.1,31.1,31.1,31.1,31.1,31.1,31.1,31.1,30.8,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.4,31.2,36.1,36.1,36.1,36.1,36.1,30.3,30.3,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,29.2,29.2,28.1,29.2,28.1,28.1,27.7,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,18.3,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6.2,6.2,6.3,25,25,25,27.8,27.8,27.8,27.8,23,23.1,25.5,25.6,25.5,26.4,26.4,27.2,27.2,27.2,27.2,27.2,27.2,27.3,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.2,27.8,27.8,27.8,27.8,27,27,27,24.5,24.3,24.6,24.6,24.6,22.1,21.2,21.2,21.1,21.1,21.1,20.8,10.2,10.6,10.6,5.8,5.8,5.8,5.8,5.8,5.8,5.8,5.8,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,6.9,7.1,7.1,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,12.2,9.4,9.4,9.4,5.5,3.7,3.7,3.7,3.1,3.1,3.1,4.6,4.4,4.4,4.5,3,3.1,3.1,11.3,11.7,11.2,11.4,11.4,4.8,4.8,4.8,4.4,4.4,4.4,8.1,8.1,7.9,6.4,4.7,4.7,4.8,4.6,5.2,3.9,13.4,6.3,6.3,7.7,8.1,7.5,5.8,5.8,5.8,5.8,5.6,5.9,5.9,12.7,6,6,6.1,6.1,6.1,6.1,6.1,6.1,6.1,6,6.6,6.4,6.1,6.3,6.3,6.3,5.7,6.1,6,6.2,6.1,6.8,6.7,7.6,6.9,6.9,6.9,7,7.1,5.4,9.8,10.3,9.7,9.9,9.7,9.7,9.7,9.7,9.7,10,3.9,7.1,6.7,6.7,4.2,4.1,4.1,4,6.2,6.2,6,6,8.5,8.3,8.5,8.7,8.6,8.4,8.7,8.6,8.6,8.7,8.7,8.6,8.6,8.6,8.6,8.6,8.6,8.5,6,6,4.7,4.7,4.7,4.7,4.7,4.7,4.7,5.2,4.9,4.9,4.9,4.9,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,6.4,5.3,5.3,5.3,5.3,5.3,5.3,5.3,5.3,5.3,5.3,5.3,5.1,8.7,8.3,6.6,4.2,4.1,10.1,10.1,11.2,5.3,5.5,4.3,8.9,8.9,8.8,8.8,9.6,9.8,10.3,10.3,10.3,10.3,10.3,9.6,5.3,5.6,5.5,5.5,4.1,4.2,3.2,3.3,6.2,10.3,5,5,5,4.8,4.8,5.8,5.8,5.8,5.6,5.6,6.7,6.7,13.8,13.8,13.8,8.4,8.4,8.3,8.3,14,5.3,5.3,5.1,4.9,4.1,4.1,4.2,4.2,6.6,6.7,6.7,6.2,8.8,8.6,8.2,10.9,10.5,4.2,4.1,4.5,5,5.2,5.2,5.2,5.2,7.4,7.5,4.1,4.2,4.3,4.2,4.2,4.3,4.4],"distance":[68.3,4.5,44.9,5.8,55.7,12,0.8,2.9,5.4,6.1,10.4,11.9,33.9,42.2,24.9,31.6,6,42.2,6.2,44.7,9.6,6.5,13.1,4.9,25.3,18.4,32,34.1,22.8,2,4,81.5,3.6,100.2,9.3,59,63.5,8,32.6,33.2,42.1,52.2,26.3,7.4,6.1,8,8.7,9.4,9.8,9.6,7.8,9.2,36.4,4.1,13.1,7.9,21.5,9.8,18.5,141.4,74.7,18,22.9,178.3,18,10.2,13.3,133.3,3,19.9,8.4,16.9,99.4,26.9,22.5,6.9,4.5,4.1,7.5,5.1,5,4.9,7.1,7.2,5.3,5.3,5.2,5.3,5.2,5.4,5.2,5.3,5.3,5.3,5.3,9.4,5.4,5.5,5.2,6.3,4.7,5.3,2.9,4.8,5.3,11.4,56.3,18.9,69.9,24.6,27.7,41.5,81.7,41.8,10.3,88,11.5,10.5,80.1,13.4,44.3,29.7,27.1,15.5,9.5,98.2,18.1,19,28.2,15.4,9.8,14.2,13,13.9,6.9,6.1,6.3,5.9,5.5,5.2,16.7,12.1,9,4.4,10.1,7.6,65,14.3,6.9,7.2,27.1,72.8,11.9,13.8,85.1,17.4,18,86.1,7.7,4.8,5.2,7.7,35.3,50.3,10.9,13.6,10.2,21.7,28.1,23.9,121,69.5,35.4,54.8,56.7,57.9,22.3,31.5,74.7,24.5,11.2,3.4,28.9,38.8,49.2,206.7,17.2,12.5,8.8,9.7,38.6,6.1,6.9,20.7,21.7,5.4,7.4,23.7,60.6,60.5,79.2,20.8,14.5,92.3,94.4,217.6,37.3,37.6,90.3,18.3,59.6,39.5,101.2,5.8,7.9,41.2,6.3,44,13.6,43.1,34,9.7,11.7,7.3,12.1,63.9,36.4,9.3,10.7,18.3,58.6,44.4,92.1,73.4,139.5,54.3,27,53.6,161.9,209.5,45.2,40.5,175.8,7.9,64.7,29.8,60.5,85.1,155.2,154.2,100.4,35.9,27.5,43.4,30.6,32.5,41.9,40.3,38.7,34.6,39.5,34.6,51.3,39.7,94.8,132.1,55.5,50.4,67.9,64.4,65.2,58.4,45.2,61.8,97.1,64.1,46.1,39.5,28.1,12.9,23,68.8,117,29.5,104,62.8,80.4,21,31.1,33.6,49.6,100.7,29.2,91.3,52.7,36.8,13.7,35.1,18.5,33.9,27.3,6.5,60.4,25.9,20.2,16.8,21.1,18.1,20.2,37.5,39.7,46.5,121.6,121.7,60.7,61,61.2,47.8,13.2,83.4,63.1,39.6,25.7,48.1,24.5,37.1,57.4,38.4,19.1,39.9,51.6,30.9,31.8,156,43.4,10.6,481.2,94.1,55.3,291.4,290.3,290,49,49.2,77.3,83.8,44.3,127.3,90.3,45.7,45.7,47.8,46.6,34.9,60.8,61.9,122.7,124.6,808.5,262.9,620.3,942.3,137.6,116.6,123.9,274.5,227.9,397.7,400.1,169.1,65,54,72.2,63.5,69.1,70.4,69.2,306.8,182.6,153.4,120.6,100.6,107.8,103.1,93.8,160.9,162.8,141.8,118.1,154.8,106.3,61.5,415.9,377.5,160,57,106.3,262.7,115.1,116,107.7,107.7,42.6,33.1,66.3,89.6,37.7,82.2,43.5,34.2,51.9,242,40.7,78.2,149,48.4,183.8,35.9,150.9,86.1,369.8,200.2,125.4,90.1,62.2,113.7,146,166.4,61.8,63.4,676.6,715.9,116.8,51.9,312.2,53.4,215.2,325.5,330.4,126.2,114.7,99.3,84.1,120.6,262.6,89.6,85.3,86.6,102,244.5,105.3,114.5,119,451.1,39.5,80.4,44.5,89,58.8,116.9,229.1,75.2,44.9,64.2,63.5,108.9,123.6,135.3,130.5,130.9,91,114.5,126.6,56.9,54.8,73.8,54.8,144.8,142.1,108.3,33.2,86,133.6,48.4,90.9,113.9,97.2,69.7,52.9,158.3,58.8,60.3,59.2,57.6,91.1,44.8,69.5,48.5,73.6,113.5,131.4,133.2,61.9,164.3,289.3,289.7,386.1,614.5,307,286.8,240.9,244.5,119.9,83.5,84.1,56.7,212.2,110.5,294,108.5,91.9,80.5,59.1,69.2,118.2,190.1,89.2,217.8,117.8,87.7,120.4,131.2,59.4,76.8,137.7,0.4,91.8,120.8,47.6,64.7,57.2,28.4,24.7,79.7,21.8,53.8,131.1,41.3,44.2,42.3,54.2,87.1,73.7,52.5,112.2,128.6,133.4,127.9,111.6,139.7,134.7,494.6,207.5,181.5,274.7,165,140.3,108.6,122.1,146.2,122.6,109,103.7,117.2,87.9,123,192.4,120.6,100.5,281.4,190.5,102.7,124,121.9,118.6,127.8,98.4,96.6,137.4,123.4,58,19.7,73.3,257.2,212.3,150.7,161.4,138.4,190.4,159.4,114.2,111.9,131.8,101.8,121.4,121.6,101.4,182.4,126.4,10.1,128.6,133,142.3,222.9,210.5,172.3,153.2,142.1,146.9,120.3,146.1,130.5,136.2,112.4,85.3,138.5,110.4,145.2,179.1,154.6,162,163.1,151.2,83.3,64.9,271.7,102.1,42.6,112.1,156.9,131.6,65.9,138.8,221.1,219.3,203.6,136.3,131,65.4,169.7,57,191.2,120.1,116.6,88.9,87.6,80.6,22.5,42.2,18.3,154.2,81.9,73.8,9.7,45.4,129.8,85.6,80.8,92.2,200.6,168.4,155.5,198.8,154.1,171.2,181.4,186,112.8,161.1,175.4,171.9,211.3,236,177.7,170.7,159.3,306.6,186.6,149.2,227.6,262.9,147.3,217.7,116.6,41.2,230.8,423.3,238.9,162.7,170.5,200.2,218.9,333.1,300.7,336.6,64.3,198.7,234.1,165.5,249.4,207.2,213.4,194,218.5,76,24.4,104.9,452.3,272.5,249.4,116,192.5,71.2,151.1,163.1,158.6,93.8,63.6,26.4,78.8,128.2,162.1,281.6,321.3,150.2,111.5,162.1,242.6,253,272.1,257,261.3,478.1,190.8,176.3,11.7,178.5,197.6,186.6,142.2,205.5,183,421.2,195.5,58.2,100,73.4,101.8,63.9,90.5,77.4,74.2,100.4,161.2,193.5,272.3,165.8,115.1,123.5,58,178.1,76.7,41.1,59.6,55.9,86.5,83,41.3,46.4,75.3,71.3,47.1,105.2,126.7,69.4,75.3,120,115.3,54.5,131.5,85.3,47.2,169.9,73.9,136,110.7,109.7,121.8,22.6,94,80.1,173,213,188.8,112.6,189.8,112.7,56,46,96.9,180.4,128.4,129.8,88.4,76.4,60.4,63.7,100.5,85.9,95.1,125.1,128.4,92.3,100.1,68.7,82.6,348.2,164.4,79.8,42.3,154.5,52.6,31.2,93.4,118.9,110.9,108.5,117.2,162,37.3,32.1,122.3,173.8,126.6,26.8,145.2,144.5,147.5,147,176.4,134.7,169.2,352.6,45.6,102.7,89.8,173.9,157,125.2,136,30.1,224.7,233.3,118.9,617.5,146,141,92.6,98,95.9,95.3,78.3,87.7,398.3,115.5,123.3,95.8,136.1,104.8,123.2,155.8,111.3,118.2,103.5,291.4,159,261.4,199.6,233.6,165.3,105.8,85.9,121.3,208.5,110.9,85,83.6,104.3,101.7,120.1,98.4,106.9,85.3,15.8,339.6,163.6,194.9,194.8,149.8,130.4,121.3,67.8,95.1,169.4,198.6,450.2,153.2,88.8,76.3,57.5,32,87,53.6,133.3,93.7,50.7,130.8,120.8,118.1,176.8,410.5,141.4,143,136.4,189.1,112.1,84.5,118.7,117.3,109.9,450.9,194.4,159.3,160.9,342.2,145,132.4,264.5,179.3,100.6,123.5,154.2,73.8,88.4,139.5,95.2,113,116.1,107.1,145.8,313.3,215.3,177.7,141,132.3,123.8,175,136.5,136,126.8,155.8,230.7,221.9,178.6,150.2,143.6,112.9,113.2,149,107.4,79.8,81,68.6,99.6,68.4,104.1,81.2,46.5,53.8,20.9,38.6,40.1,38.3,32.1,32.3,29,214.1,151.5,82.6,50.8,67.7,176.3,145.2,94.6,178.7,269.4,14.2,95.2,106.7,1491.3,109.8,119.3,133.5,106.4,146.8,130.6,551.4,94.8,98.6,136.5,297.3,1807.9,108.2,89.5,76.8,75.7,487.6,110.8,140.2,486,74.9,111.8,148.6,57,43.4,17.4,173.3,204.7,39.5,110.1,155.1,525.3,63.6,52.1,35.6,26.6,29.7,54.6,41.6,69.2,211.4,33.4,41.7,60.6,42.7,52.3,63.1,47.2,119.2,341.9,127,112.4,133.1,117.8,67.4,58.5,55,60.9,64.9,64.1,212.8,104.8,285,87.1,569.2,142.9,44.5,93.1,402.9,69.5,69.9,95.9,74.6,71.5,537.2,140.6,192.9,243.5,86.7,54.8,54,68.9,83.4,90.1,94.6,225.1,103.7,223.8,42.2,37.4,30.8,20.2,24.1,26.3,24.8,15.6,15.2,40,31.3,28,27.3,27.4,28.9,26,62.1,117.1,55.7,53,57.5,66.4,53.9,8,148.8,335.9,366.4,101.9,103.7,132.1,705.7,101.8,69.2,68.6,63.1,63.1,74.1,110.3,1026.7,131.9,154.1,166.5,93.6,142.5,66.5,179.2,332.8,169.3,166.1,448.3,107.7,56.7,34.9,18.7,26.1,26.8,17.8,25,14.7,17.9,22.6,20.3,21.7,20.3,18.2,236.2,77.6,95.5,61.1,64,26.2,19.8,20.7,19.4,21.9,15.7,23.2,27.1,17.5,19.6,24.8,19.5,21.2,17.8,24.6,18.6,27.9,32.5,27.1,33.5,24.5,32.3,46.9,34.7,95.7,110.8,128.7,42.1,81.8,48.5,48.5,88.4,24.4,28.6,30.3,24.7,29.9,26.3,22,19.8,17.2,13.3,26.3,45,36.9,32.9,34.4,43.8,64.4,43.6,81.8,297.9,16.3,26.5,42.3,34.2,32.4,43.2,38.5,45.3,30,34.1,32.9,23.9,29.5,59,71.3,30.8,45.9,29.1,26.7,29.7,27.1,43.4,24.9,28.7,24.4,7.3,136.6,62.9,32.1,50.7,51.8,29.9,34.3,24.9,29.4,28.9,38.7,74.5,34.5,46.2,33.1,43.7,40.2,30.9,30.4,37.1,31.1,28.9,27.6,28.1,26.7,30.8,46.8,83.3,119.1,134.5,131,244.7,149.4,137.9,305.6,70.9,35.4,23.9,30.8,27.5,27.2,23.6,33.8,30.5,26.6,26.8,22.8,24.8,27.2,28.1,26,24.6,23,31.2,25.7,35.8,21.6,39.5,108.7,277.9,151.6,156.2,127.8,400.4,132.4,148.7,40.9,134.6,460.8,177.7,108.4,128.4,247,118.1,106.4,101.8,221.1,97.4,110.4,316.6,121.2,135.4,658.4,147.9,96.9,81.9,73.5,76.1,67.9,33.3,55.1,354.5,23.2,18.4,14.4,12.2,13.1,18.8,15.7,20.3,16.3,10.8,11.8,11.7,10.7,19.8,21.9,19.4,13.8,34.8,21.3,22.8,24.1,20.6,21.1,22.3,17.5,22.7,16.6,14.5,17.2,48.1,40.4,80.3,126.8,143.8,84.2,67.4,56.9,102.7,23.7,26,52.9,67.6,182.9,304.2,305.4,396.7,24.8,26.7,26.9,26.4,26.1,28.3,18.9,11.2,9.7,18.7,26.3,26.9,26.1,15.3,19.6,23.9,30.9,1252.7,129.6,123.9,128.9,127.7,96.1,60.5,74.3,899.4,488.9,114.5,112.8,117.8,125.9,113,61.4,120.5,128.9,123.4,116.4,122.2,42.6,27.4,26.1,14.5,17,17.7,15.4,6,10.3,17.6,17.4,16.1,20.4,17.4,23.3,16.8,14.3,16,13.5,13.4,17.6,27.4,297.2,22.5,30.2,16.3,17.3,20.1,19.9,9.9,13.1,18.5,11,11.2,16.1,18,17.3,21.6,18.3,594.4,312.4,65.4,55,105.1,247.2,126.7,96.7,122.7,123.2,124.9,467.8,127.4,107.8,124.4,122.9,145.9,121.9,75.7,133.5,216.2,33.2,25.4,22.3,14.6,16.4,15.3,14.6,17.8,16.7,18.9,26,14.9,11.2,13.7,12.9,15.2,21.6,19.5,12.7,21.5,12.5,16.1,47.8,62.3,69.4,36.6,97,60,148.2,27.9,70.3,116.7,80,29.6,31.2,23.9,32.1,24.5,29.1,29.9,23.2,19.2,23.6,26.1,17.8,17.2,26.4,22.7,18.5,1.2,22.6,26.8,587.2,52.3,41.5,31.3,21.8,24.8,17.5,17,16.9,24.1,23.7,15.4,18.9,24.7,28,29,28.3,33.3,49.5,31.3,40.3,44.7,40.2,37.7,42.3,36.9,30.9,23.4,28.1,24.6,20.1,16.1,15.4,19.3,18.1,28.9,36.4,28.2,28.6,32,30.8,28.1,46.6,34.4,39.2,21.6,15.8,77,45,30.9,21.6,17.8,43.4,20.1,18.8,18.9,26.7,35.4,23.1,24.2,30,28,25.2,18.5,28.9,27.4,24.7,25.9,28.1,42.7,34.1,63.2,60.4,100.5,110.5,89,49.2,32.7,275.6,30.4,31.8,35.7,31.8,41.7,28.6,30.2,33.6,174.6,139.5,152.7,273,91.7,203.8,99,35.8,24.2,25.3,23.1,37.4,20,28.7,20.4,26.5,29.3,28.1,26.5,26.9,26.9,23.8,32.2,30.9,30.1,24.1,22.6,30.2,19.8,27.4,22.6,18.8,17.2,34.8,130.3,80,39.5,48.6,120.4,89.3,69,67.9,40.3,42.1,45,40.8,40.1,39.4,40,39.6,32,48,94.6,204.7,90.3,54.2,45.8,62.5,53.9,33.7,52.2,62.3,56.4,37.7,16,57.8,44.3,42,27.2,38.7,23,28.4,28.1,33.9,29.8,33.1,26,22.4,22.8,28.5,44.7,50.5,47,42.7,44.4,42.8,30.9,33.2,33,26.7,31.4,43,28,19.9,23.8,25.2,35.2,28.7,38.3,29.6,56.1,49.6,30.1,40.1,37.7,29.9,27,30,29.1,15.7,16.6,23.5,22.7,24.6,25.7,29.4,28.6,24.6,32.8,29.9,25.8,29,45.5,71.3,74.9,41.9,32.8,23.2,26.5,26.9,29.8,26.7,18.9,27.1,25.2,21.1,26.7,20.5,18.9,23.8,23.1,22.3,49.4,61,45.1,25.8,26.3,19.1,20.1,19.6,29.1,29.5,26.7,24.6,26.1,24.4,23,28.4,25.5,36.5,23.7,23.4,24.4,22,19.8,47.3,61.4,46.8,46,35.9,31.7,43.5,42.6,35,30.5,30.4,26,35.5,24,65.4,56.6,81.9,179.3,62.3,52.4,61.8,82.1,53.9,56.7,122.8,151.5,95.6,71.8,59.5,40.5,40.2,35.8,75,41.7,48.9,51,69.3,60,88.3,71.2,146.7,61.3,52.3,52.6,48.8,58.4,55.7,96.7,82.3,142.4,43.5,221.2,166.7,203.6,188.9,182,172.8,191.2,163.3,51.2,47.9,50.2,46.6,57.3,70.1,56.8,47.8,52.1,97.9,71.1,889.4,2.4,71.9,54.7,26.2,21.3,20.4,22.7,39.6,38.6,31.3,36.7,31.3,24.4,39.3,31.9,34.5,43.1,35.4,35.8,37.1,37.6,36.9,73.8,76,285.3,137.7,70.3,59.8,60.5,90.5,59.3,80.8,145.9,621.6,47.5,38.8,28.7,30.4,29.8,27.2,27.6,28.3,25.6,26.3,29.3,28.6,28.5,27.4,27.9,33,36,55.9,71.2,221.5,53.8,46.8,41.7,39.2,34.6,32.5,37,41.9,39.8,29.4,27.4,33.9,28.6,27.8,38.2,48.1,48.3,43.7,48.8,47.4,168.6,164,38.4,35.5,34.8,40.5,44.2,40.9,44.8,41.4,39.6,40.2,41.4,40,67.5,62,20.2,38.3,12.8,12.7,14.1,14.8,14.2,13.7,14,15.3,12.5,14.3,14.4,17,13.9,13.8,13.3,15.1,14.4,14.5,13.9,14.7,14.2,13.2,15,14,13.8,14.3,14.8,13.9,14.8,14,13.8,14.8,13.9,14.2,27.9,27.3,15.8,14.3,13.2,14.4,13.1,14.8,14.2,13.8,14.3,14.1,15.1,13.9,14.7,13.8,14.1,15.1,13.7,13.8,14.3,14.6,14.4,13.9,14.2,13.8,14.3,14.2,13.5,15,14.1,20.9,46.9,46.2,44.5,38.8,43.4,39.7,34.4,36.6,41.7,42.5,38.7,40.1,256.3,98.8,97.9,60.3,52.7,84.2,101.4,112,389.4,76,64.2,41.7,41.8,30.2,26.8,28.6,27.9,27.8,37.8,30.2,31.2,38.7,40.3,47.6,82,83.3,99.4,56,97.4,72.5,86.9,42.8,22.3,32.1,27.1,28.4,29.4,26.1,25.7,16.4,37.8,26.1,27.6,25.8,28,26.3,28.5,27.1,27.8,29.8,28.7,20.3,23.6,20.7,49.4,64.8,591.7,342.4,142.2,60.8,84.7,140.5,216.2,75.2,78.8,74,73.1,54.2,61.1,45.7,78.1,140.4,137.7,89.1,38.7,43.4,76.5,230.9,21.9,98.1,123.5,127.2,52.9,57.6,35.2,138.5,172.9,155.2,99.4,41.5,42.1,39.8,97.7,107.5,55.9,48.8,112,275.6,68.7,135.9,92.8,11.7,36.6,129.5,211.2,85.8,232.3,89.9,330.8,130.1,123.3,60.7,63.1,55.2,58.2,89.6,60.2,245.6,109.7,151,79.7,64.4,127.5,192.3,149.1,97.1,171.5,71.3,70.7,144.5,133.2,118.1,126.9,252.3,67,15.8,45.9,30.7,31.6,33.8,30.8,24.6,25,19.1,17.3,24.8,28.3,27.1,27.8,29.3,51.7,28.9,33,35.6,27.8,29.5,25.7,27.9,28.4,23.1,31.1,26.8,172.6,95.7,129.2,63.4,47.9,112.5,126.5,73.7,84.3,102,6.2,104.8,128.9,138.3,284.9,108.3,63.6,73.4,106.6,119.6,109,301.5,129.5,143.7,100.6,99.9,120.5,779.2,123.9,107.9,130.8,100.2,100.2,88.1,42,78.5,96,33.2,28.9,25.4,1.5,25.9,32,37.3,42.9,29.1,20.2,29,26.3,28,30.1,26.3,41.3,40.7,23.4,32.8,27.6,43.9,78.3,93.7,609.6,32.3,37.9,27,26.6,27.1,28.1,12.2,14.7,15.2,13.5,13.3,12.9,15.5,13.2,13.5,13.5,13.4,15.1,24.6,14.1,14.1,15.5,12,13.9,15.9,26.5,14.1,24.4,16.8,13.9,12.6,14.5,13.8,13.2,11.9,12.9,13.9,13.7,13,13.9,13.4,14.2,13.4,13.8,15.1,15.1,27.2,25.3,26.3,27.9,27.9,16.1,10.7,29,27.6,26.3,27.1,28.4,27.4,26.6,25.9,17,39.7,41.8,26.1,25.7,17.8,25.8,117.4,188.5,103.1,76.3,72.6,46.9,46.2,45.1,47.6,39.4,49.2,49,48.9,34.8,30.1,61.2,75.6,69.8,35.5,149.4,38.1,53.1,86.5,56.1,66.6,40.1,64.4,100.1,57.2,44.2,108.3,74.9,83.9,46.8,68,56.8,41.7,72.8,114.1,91.6,191.6,63.2,116.5,18.8,122.6,132.2,127.8,122.2,123.6,135.2,285,109.7,105.7,110.8,370.3,168.7,117.7,111.3,68.7,91.7,88.2,495.6,272,188.9,131.5,126.2,82.6,63.2,172.6,907.8,72.5,76.3,73.4,65.2,131.9,1820.8,149.8,153.9,127.4,43.3,85.1,924.4,102.3,102.5,105.6,108,94.9,87.5,99.4,151.3,148.8,156.6,151.2,159.5,151.4,68.9,28,251.4,44.2,282.1,187.4,144.9,146.8,133.5,328.3,155.5,131,144.6,139.5,135.3,142.3,135.9,0.4,228.8,143.7,139.6,127.7,122.2,133.5,345.7,358.8,166.4,76.2,47.2,55.1,21.6,48,95.2,50.5,93.2,46.2,53.5,65.4,32.4,113.3,142,161.6,162.1,152.3,150,152.6,113.6,83.4,184.8,88.8,93.6,9.2,226.8,160.4,277.8,148.7,183.9,106.6,233.8,109.4,86.9,90.5,67.3,124.7,119.4,267.9,151.4,161.9,353.5,382.8,209.9,689.8,82.3,158.6,93.8,78.4,160.8,468,152.1,133,169.2,172.9,131.2,122.5,131.2,128.4,376.3,45.2,130.6,91.2,88.8,104.2,90.4,117.9,27.3,96.2,211.5,208.1,52.6,173.6,594.6,339,423,499.2,611,144.7,146.3,144.3,499,205.5,92.2,114.3,66.2,23.3,221.2,255.7,203.8,187.7,148.2,81.2,73.3,87.6,54.5,117.4,126.1,611.3,68.2,82.1,47.9,10.4,73,61.9,93.2,154.4,257.4,278.6,28.9,19.3,48.7,42.5,60.4,61.2,109.8,93.1,88.1,38.2,116.8,140.3,129.6,127.2,152,818.8,113.7,1314.8,166.7,127.1,133.7,376.2,295.8,132.3,128.6,128.4,125.4,122.8,436.6,125.8,138.7,1378.1,548.9,38.9,102.9,138.9,12.3,39.6,52.8,240.7,383.9,124.3,129.7,135.3,754.6,157.8,172,130.6,416.4,115.7,125.9,138.3,123.5,133.4,474.1,125.4,119.2,149.4,181.8,184.7,134.2,162.5,68.8,108.1,213.1,167.6,241.9,27.6,447.4,142.9,138.7,122.5,0.3,30.8,40.7,57.9,520.5,129.4,127.2,126.9,131.2,984.7,147,173.3,473.5,62,55.2,49.7,46.9,37.1,29.3,70.2,49.7,67.4,63.4,146.9,210.9,14,78.4,152,60.6,52.8,68.5,299.3,73.9,62.8,66.8,53.6,30.7,46.5,35.8,24.6,42.7,35.9,40.8,41,34.8,41.5,40.5,37.5,36.8,85.8,35.8,54,139.3,88.2,33.3,27,30.6,36.7,36.5,31.2,38,44.7,5.6,32.4,32.8,30.1,37.8,24.4,25.4,50.5,39.3,30.9,28.6,9.1,72.4,61.5,42.3,77.8,63.5,12.6,53.7,19.8,21.8,121.4,165.5,23.9,32.8,43.7,55.9,124.4,112.1,67.3,39.4,10.4,6.7,179.4,25.4,26.6,28.4,24.7,26.3,1304.4,180.1,63.7,64.8,30.7,51,66.4,99.4,176,74.4,53.3,133,396.5,35.1,99.9,102.5,76.7,41.9,44.5,131.5,122.1,83.9,19.9,35.9,114.7,62.3,64.5,39.4,170.6,60.9,70.6,120.1,143.5,368.6,163.1,125.6,135.1,581,70.6,60.6,60.1,76.3,69.7,60.4,126.9,218,294.9,231.8,137.6,93.9,48.2,83,59.5,77.9,47.3,436.4,178.7,31.5,92.2,116.1,101.3,21.1,117.5,127.4,127.8,74,23,31.9,127.4,125.5,65.2,48.4,51,51.3,73.6,88,123.6,9.8,309.4,69,48.6,64.8,62.8,62,62.1,60.3,60.1,126.5,63.9,63.6,118.7,138.8,128.9,33.5,33.3,23.3,41.4,124.1,123.2,127.6,133.3,122.2,117.7,120.4,118.1,132.5,65,66,117.7,139.5,125.8,123.5,133.4,177.4,129.6,123.6,125.7,65.7,22.8,26.9,35.4,36.7,45.4,28.8,53.9,32.7,37.7,75.2,86.7,26.4,33.1,26.9,58.7,49.7,61.4,50.1,81,56.3,93.6,98.4,152.1,142.5,147.9,59.7,79.2,48.1,130.4,137,42.3,84.1,121.9,131.9,142.8,127.3,123.7,447,130.6,135.3,141.5,131,127.7,78.8,256.6,116.6,141.7,134.9,127.5,138.3,129.9,138.9,210.7,58.9,120.5,769.2,125.1,126.7,44.2,243,138.2,134,473.5,351.1,349.7,126.6,141.6,141.4,154.9,154.9,140.9,1566.2,160.9,164.9,259.5,703.4,132.8,141.7,125.9,132,127.6,96.1,17.1,127.3,133.8,131.4,114.2,22.3,131.9,40.8,82.9,3.3,411.6,115.8,135.9,113.3,139.6,128.2,2.4,133.4,157.9,172.3,141.7,155.5,27.8,82.5,98.2,81.7,49.3,207,49.7,72.3,86.1,89.6,686.6,166.2,180.1,593.1,20.8,186.5,164.6,158.1,810.1,47.7,82.2,231.7,190.1,154.7,141.1,147.2,91.6,94.4,94.8,90.5,101.8,92,93.8,106.3,120,360,189,94.7,254.8,130.2,101.7,125.8,145.3,94.5,128.5,30,17.2,79.2,405.3,249.1,311.9,108.1,141.6,123.7,155.9,149.2,9.7,159.5,353.2,391.2,94.9,93.6,110.2,124.2,159.8,73.1,96,88.8,73.5,68.9,70.9,78.5,66.8,58.3,64.8,78.9,153.6,160.7,94.8,93.4,96.9,91.8,92.4,125.5,111.6,107.6,112.1,112.2,120.2,289.9,84.3,85.5,83.7,119.4,158.4,90.9,93.8,255.3,93.8,93.1,95,94.1,91.5,122.8,94.4,95.3,89.8,96.4,96.8,83.1,56,50.4,160.4,72,49.2,53.7,59.2,87.5,99,77,60.8,71.7,83.2,127.6,84.5,84.5,81.3,94.2,91.7,94.1,36.8,57.1,98.4,262.1,247.2,83.9,51.7,44.1,68.9,54.4,95.2,83.7,1.8,99.8,100.4,93.6,107.5,296.8,114.1,105.4,94.8,74.2,87.9,82.6,188,87.1,43.7,41.3,68,29.3,22,19.8,43.7,28.2,28.5,39.5,26.5,25.3,19.8,32.6,22.8,57.9,37.4,30.4,26.1,29.3,27.8,28.6,28.8,27.2,19.4,34.9,30.4,29.6,34.3,31.1,31.3,27.6,27.5,26.4,28.2,28.3,42.4,47.9,38.2,39.8,40.6,325.7,24.4,26.2,34.6,41,43.7,35.2,30.2,32.7,37,35,42,25.5,115,4.7,51.2,35.5,37.2,31.1,29.6,16.8,27.4,23.6,18.4,26.6,129.5,130,117.8,123.4,327.1,103.6,95.6,128.6,128,109,89.5,112.5,534.1,95.5,89.2,140.6,70.8,24.7,20.3,25,15.5,21.4,23.8,40.9,29.8,24.7,28.3,2.1,33.5,31.3,22.1,32.8,18.8,11,38.8,27,58.8,82.8,62.8,60.7,89.5,39,28.1,28,20.8,25.6,32.9,31.5,45.5,20.7,37.5,18.5,25.9,45.6,52.4,261.8,49.2,72.4,156.7,54.4,97.2,71.8,20.5,91.3,72.8,80.6,80.5,71.1,77.8,33.4,44.9,78.4,94.2,122.5,123.9,27.6,188.4,85.1,247.3,140.1,94.2,96.9,91,105,110.9,369.4,76.4,97.6,140.2,71.8,149.1,80.2,104.1,79.8,84.4,14.4,75,84.5,86.5,37.8,191.6,83.9,57.1,73.7,77.9,73.1,84.6,83.2,83.5,96,95.8,88.8,96.6,84.3,87.3,42.7,57.5,76.4,104.9,32.4,80.1,73.8,65.9,84.1,110.9,81.8,70.1,46.2,76.2,79.9,79.2,177.8,104.3,125.3,77.9,84.9,91.4,54.8,286.8,499.2,80.7,84.5,80.8,89.1,88.9,84.7,89.6,89.5,92.7,81.1,51.1,369.9,85.1,85.5,76.3,83.4,166.3,123,87.7,80.9,81,1310.5,13.4,80.7,83.4,76.6,84.4,78.8,909.9,93.2,89.2,326.5,83.6,78.7,79.3,88.8,91.1,94.2,103.3,85.1,88.4,76.5,73.3,218,86.7,82.4,85.9,86.8,91.8,88.8,93.2,845.6,85.3,89.5,90.3,75.8,492.8,76.7,79.1,89.2,90.5,545.8,84.6,87.7,81.3,92.1,109.3,98.8,83.6,844.2,74.5,77.8,86.1,44.1,46.5,84.6,98.8,238.8,188.9,37.6,164.5,178.3,1226.9,87.1,79.6,89.1,80.4,494.4,75.6,77.2,76.9,77.2,209,215.3,91.9,112.7,91.8,87,99.6,106,109.7,135,91.6,88.9,76.9,76.9,82.7,85.9,82.1,471,85.5,78.4,88,75.5,84.3,83.2,88.4,71.9,778.6,181.3,73.4,466.5,103.1,93.5,84,87.3,110.8,77.8,179.2,648.7,84.6,87.9,93.3,103.4,424.8,143.5,36.4,263.5,350.1,253.8,64,30.7,31.1,56.3,73.1,72.6,84.3,225.6,83.9,86.6,80.7,83,136.3,231.8,87.5,77.9,79.1,64.9,472.6,89.6,63,63,481.5,110.8,109,95.7,87.5,519.9,95.6,77.3,87.3,73,211.6,77.8,94,90.3,53.1,37.1,88,98,162.2,75.8,85.7,60.8,49.7,84.7,66.9,176.3,86.7,78.1,70.9,81,863.7,512.9,520.7,498.8,378.8,195,69.5,90.5,36,51.4,56.1,49.9,33.2,57.4,54,42.2,57.9,12.4,114.8,73.4,73.3,57.9,53.9,82,336.3,477,202.2,90,30,48.5,56.7,66.8,33.8,66.2,38,97.2,85.9,73.7,114.8,66.6,98.4,54.9,41,17.5,61.7,90.1,87.7,141.2,98.9,52.4,50.7,105.7,88.9,108.4,83.1,54.6,50.2,26.8,64.6,95.6,102.7,93,91.3,1.8,16.8,82.3,85.1,129.5,104.6,7.9,110.7,60,124.7,140,113.4,35,83.8,50.6,37.6,55.9,68.4,57.3,84.6,71.3,73.3,5.7,67.7,69.4,78.4,85,112.3,83.7,103,67.5,120.2,122,71.1,63,40.2,72,94.3,75.1,51.6,102.9,18.9,256,246,238.4,190.2,174.5,170.9,179.4,111.3,109.7,104.2,106.3,148.5,95.4,99,85.7,95,218.5,184.4,270.3,197.2,257.2,140,67.2,69,17.9,159.5,185.9,373.2,280.7,87.9,77.5,60.1,72.4,98.8,41.8,124,61.5,74.1,69.8,73.1,41.8,51.6,51.5,78.7,74.1,78,108.1,91.5,70.7,49.6,46.3,62.1,51.9,61.9,68.3,70.2,78.4,50.9,66,79.5,143.3,163.8,206,199.3,88.2,100.8,111.1,6.5,108.5,129.4,112.9,139,100.7,107.3,89.7,118.8,146,158.3,402.4,149.1,163.4,295.2,337.3,50.8,501.8,329.4,177.5,91.4,64.2,71.5,144.8,127.3,129,256.7,269.9,143.9,58.7,63.8,42.8,49.7,42.5,37.7,44.7,48.2,65.1,56.9,29.4,41.3,201,263.9,60.9,35.1,84,62.1,48.6,37.4,67.3,61.9,68.5,60.3,64.1,67.7,59.4,66.3,60.6,63.4,51.4,56.9,57,64.4,279.2,298,607.9,9.6,364.8,358.1,343.1,169.9,177.8,101.5,43.2,51.5,56.6,59.1,65.1,71.9,37,38.5,65.7,71.4,244.5,185.6,256,5.9,248,349.6,337.5,153.6,65.9,71.2,48.2,21.9,57.9,73.1,72.4,150,340.7,420.4,121.1,65.7,64.8,46.8,41.9,253.6,227.3,179,174.3,52.2,48.9,34,35.1,46,28.3,53.2,68.6,41.6,78.1,65.4,91.6,63.4,48.1,61.2,52.9,51.2,50.4,60.6,59.9,48.3,42.1,50.6,41.8,103.6,176.3,185.1,36.7,56.2,112.4,50.2,48,49.2,39.3,49.6,57.9,53.5,40.9,39.1,33.5,43.2,37.7,84.6,65.5,60.7,72.1,57.4,60.8,53,63.4,63.8,65.1,61.1,50.7,53.1,80.6,55.7,57.6,114.8,22.3,85.9,74.8,57.2,43.8,52.4,59.1,57.7,49,44.5,44.8,57,74,66.3,104.4,47.6,42.4,63.1,55.6,58.8,55.5,76.3,77.7,66.2,40.8,44.1,67.7,68.1,73.5,48,51.2,73.7,208.1,163.6,84.9,35.7,40.3,45.1,48.8,59.5,62.5,50.5,82.4,131.3,198.6,437.8,139,94.1,89.5,58.8,51.7,63,79.5,83.5,140.2,130.8,125.4,49.8,54.3,53.6,54.5,44.5,41.7,47.9,86.7,98.3,62.8,58.7,59.8,57,40.1,37.4,39.1,46.8,60.7,65.1,65.4,61.5,73.8,73.8,94.7,85,59.6,57.6,55.3,41.7,56.2,61.3,41.4,45.2,40.2,40.7,35.8,37,44.4,48.7,130,167.9,168.1,136.2,503,112.4,102.1,49.3,54.1,106.1,53.9,55.5,89.5,75.3,78.4,96.4,142.9,137.1,149.7,117.2,67.3,89.7,86.5,72.3,78.4,139.6,59.5,306.5,143.5,274.5,151.5,152.5,104.3,109.2,55.5,50.5,42.3,47,52.5,48.8,66.6,62.5,51.8,73.2,104.5,64.4,55.7,52,56.4,72.4,50.3,55.9,80.3,67.3,186.4,162.5,55.6,70.8,66.3,59.9,44.4,51.3,53.4,59.5,62.7,89.2,66.7,57.7,70.2,57.9,66.3,157.1,300,340.4,343.2,101.5,66.4,52.4,58.5,61.3,35.2,45.4,70.1,85.5,289.4,825.3,329.6,25.8,477.2,558.4,557.6,542.4,383.7,81.1,93,66.3,74,69,80.6,42.1,44.9,85.3,109.9,120.7,83.1,67.2,73.3,75.4,92.5,54.8,62.9,61.1,72.4,136.1,137.1,146.6,547.8,10.2,577.1,425.2,435.7,363.6,196.4,81.3,88.1,68.3,83.5,93,59.6,16,74.7,82,74,55.1,90.7,68.7,158.6,147.8,91.7,104,39.9,81.5,96.4,59.7,65.7,59.5,107.5,109.5,62.1,63.9,79,81.4,67.4,68.9,225.5,179.9,139.9,124.4,87.1,92.8,109.7,101.5,94.9,112.9,135.1,101.8,89.3,124.6,88.8,291.2,155.4,72.1,79.1,72,88.5,158.1,107.4,122.8,116.9,152.1,60.5,128.2,205,101.3,28.8,65.5,74.1,80.6,90.6,92,147,84.7,104.3,122.9,93.7,89.2,83.4,129.1,122.8,120.4,105.4,124.6,92.5,77.3,97.6,124.9,76.3,64.6,71.3,68.2,68,120.6,117.5,90.9,98.3,222.5,82.3,86.7,120.5,75.2,78.6,137,132.2,111.3,61.5,69.1,79.9,84.9,113.4,87.9,108.6,104,117.5,232.3,243.7,214.3,352.1,377.2,171.2,194.3,92.7,101.2,195.7,146.5,153.7,210.6,55.1,139.1,146.1,111.2,0.7,115.2,106.4,78.2,74.8,78,46.1,87.6,119.2,128.1,41.6,195.1,196,249.5,282.4,258.6,234.9,118.2,124.8,49.6,53.8,101.5,72.2,107.9,121.4,86.3,418.4,72.7,200.3,370.1,513.6,394.7,27.5,108.5,118.9,115.6,123.8,161.8,151.5,185,308.6,320.1,626.5,620.4,314.8,307.2,91.4,83.7,47.8,76.4,86.5,4.3,78.2,72.9,87.8,84.7,57.2,77.2,34.4,48,62.3,68.7,94.8,56.7,73.7,22.6,45.6,69.8,58.4,52.4,58.4,133,57,52.6,112.7,107.8,82.4,108.6,102.7,122.2,256.9,162.7,252.6,425.2,419,425.1,90.3,277.5,370.9,201.5,20.1,518.8,426.8,394.6,26.7,614.9,215.6,221.9,104.1,128.7,237.6,1.2,102.2,98.7,260.8,117.3,111.2,95,212,114.2,129.8,242.1,433.7,441.2,888.9,1410.6,285.1,324.7,601.3,189.7,275.2,351.3,27.5,78.8,339.2,379.6,172.5,178,87.9,88.6,54.5,58.5,50.3,47.8,84.6,66.4,41.7,53.7,103.4,153.4,39.4,78.8,80.9,77.9,22.2,60.8,73.8,75.7,13.4,117.7,94.2,61.5,65.1,122.4,72.2,58.2,84.7,50,52.9,92.8,104.1,126.9,63.8,70.8,37.3,60.3,88.6,77,57,54.7,50.8,83.9,26.4,58,161.6,523.6,527,524.1,526.1,104.2,277.3,167.8,207.7,258.4,220,238.4,555,99.9,166.5,321.8,649.7,11.6,73.3,73.9,14,53.4,56.6,82.5,43.7,46.2,68.4,70.6,44.1,119,113,56.2,9.5,49,84,62,41.2,78,74.1,83.9,49.8,64.9,68.2,83.4,92.2,80,65.9,64.8,63.2,94.9,187.8,34.3,77,29.2,57.9,70.4,85.3,79.2,94.9,89.6,88.7,62.8,77,57.1,72.1,67.1,59.7,76.2,54.3,57.6,55.5,61.4,78.4,64.6,59.2,69.2,61.1,63.8,63.3,60.4,50.5,50.3,68.4,51.8,53.4,48.6,62.1,66.3,72,80.7,41.3,46.2,64.5,63.8,80.1,73,43.9,67.1,76.5,84.1,241.4,52.3,57.7,61.2,64.6,107.6,112.4,103.1,14.5,118.6,130.9,60.4,64.6,119.4,96.8,113.4,110.6,66.8,44.1,97,39.3,96,104.6,75,54.3,50.3,61.8,52.3,45.5,11.8,57.1,44.4,43.8,51.1,47.9,36.8,79,56,62,57.6,88.2,16.7,201.1,73.7,144.2,68.5,76.6,29.7,75.9,59.9,95.8,102.4,114.1,86.8,43,48.4,68.4,54.7,46.8,17.4,68.8,137.5,143.6,74,82.6,83.4,80.7,78.4,265.3,356.7,26.6,135.9,38.5,133.3,62.7,76.6,85.7,52,62.9,68.4,126.2,168.9,50.3,46.6,50.4,94.9,34.5,67.7,81.6,76.8,106.9,117.4,56.4,56.5,93.9,18.3,62.8,100.3,95.3,88.8,66.1,22.1,98.7,147.1,173,155,288.4,60.7,64,60.5,92.8,105.6,109,27.6,26.4,32.1,224.5,46.5,55.5,70.6,75.3,83.1,51.1,98.5,248.8,117.3,100.6,68.2,71.9,29.7,98.3,105.7,400.2,20.1,174.7,97.7,84.8,320.1,7.9,180.9,131.6,108.7,109.3,50.7,55.7,52.2,67.3,81.7,8.1,146.4,110.6,119.6,231.2,444.4,439.6,159.9,79.9,93.9,103.2,85.8,98.8,89.4,112.4,134.1,111.9,123.2,35.8,124.6,137.9,108.5,160,168.8,205.1,184.2,189.9,107.7,118.8,109.8,106.1,110.9,157.4,94.4,99.4,239.2,121.1,106.7,95.7,62.1,69.7,74.8,78.5,129.4,126,86.4,111.4,92.5,132,130.2,113.8,115.7,83.9,74.2,67.1,65,73.5,77.8,73.9,100.7,99.4,122.5,114.9,124.5,121.2,234.1,169.4,32.1,56.3,99.8,54.3,60.8,100.3,120.5,77.2,74.6,77.8,81,139.3,159.8,121.5,72.5,49.8,83.5,77.6,91.6,45,93.2,109.7,56.5,52.4,59.8,63.6,76.5,49.2,58.4,48.4,63.2,55.4,80.8,72,85.2,142.4,159.3,179.4,179,117.9,61.9,91.8,83.3,74,70.1,62,55.6,46.5,56.2,53.8,52.8,53.3,111.9,64.6,56.9,95.7,96.9,50.3,47.7,93.4,70.5,75.1,84.4,136.1,183.3,144.2,139.1,14.2,10.2,110.7,128.4,62.6,86.1,99,79.2,90.2,94.2,108.1,117.8,120,160.5,162.6,298,146.3,72.8,69,74.8,102.5,73.7,60,56.1,58.7,84.2,92.5,61.5,71.6,56,12.2,56.1,48.9,59.6,57.8,91.1,101.3,63.4,76.5,98.5,96.5,144.4,142.1,199.5,198.2,98.7,79.8,68.3,145.8,73,68.7,105.7,89.1,87.2,104.8,47,100.6,94.6,54.8,47.3,55.8,59.8,150,142.9,64.2,85.7,91.4,94.5,66.4,69.2,88,49.6,88.6,108.2,122.6,188.2,199.7,164.8,160.4,167.7,131.2,167.1,101.9,76.1,92.4,83.1,150.1,80.9,71.1,104.4,166.9,162.5,148.8,108.3,100.4,97.2,111.6,62,68.8,85.7,70.1,69.6,61.4,72.5,62.5,56,92.2,72.4,81.6,84.9,90.2,86.7,81.9,83.3,117.3,214.2,78.3,70.5,64.7,72.3,135.6,82.3,75.3,118,82.4,78.1,149.1,94.5,51.5,226.9,100.2,95.4,138.9,131.8,21.2,49.2,109.3,79.8,87.7,157.1,117.6,135.2,133.4,134,92.3,101.2,76.8,82,80.5,87.3,83.8,91,75.4,78.3,76.1,82.4,55,64.7,69.6,63.3,57.6,62.7,66.8,62.8,86.6,64,69.9,104.8,79.4,102.7,80.1,73.4,163.2,153.8,86,102,34.7,19,61.8,100.9,111.4,128.1,127,69.5,75.7,69.7,65.9,86,68.4,97.1,125.7,170.2,157.5,97.1,89.3,85.6,70.5,104.8,48.2,55.6,61,101.2,71.2,90.5,55.8,52.2,127.7,30.5,20.6,17.2,81.4,224.9,268.1,257.9,366.4,142.3,184.1,133.5,173.6,93.7,88.5,122.2,68.9,65.3,49,39.4,71.2,78.3,73.1,79.8,42,94.6,45.7,51.1,59.3,48.6,99.1,94.9,102.7,142.6,149.2,151.4,76.9,103,256.2,138.3,147.9,43.2,99.2,81,85.6,56.9,42.2,118.7,55.8,54.1,106.1,72.3,65.7,79.6,57.7,60.3,171.5,165.3,93.6,146.9,138.8,122.4,106.8,172.7,551.4,311.9,172.9,79.2,71.9,51,56.1,59,77.6,93.8,75.1,106.6,55.3,87.9,110.9,162.2,212.2,138.2,71.2,63.8,58,67.1,78.4,58.2,71.6,44.6,29.6,78,85.9,66.1,85.4,316.9,117.1,72,32.2,56.8,83.1,88.8,102.2,124,89.3,113.3,94.2,53.7,56.1,84.7,71.8,53.9,52.8,254.4,138.6,58.1,83.4,99.2,77.8,88.1,77.6,100.5,199.2,72.1,69.1,125.2,97.7,100,109.2,129,142.2,367.4,206.4,186.5,348.9,176.5,94.5,89.6,105.4,99.2,37.6,45.1,53.6,69.6,58.8,169.5,43.5,107.8,119,156.8,53.5,47.5,70.8,44.7,32.8,56.6,64.6,56.8,51.2,161.3,154,213.2,119.9,101.1,61.7,77.9,77.4,69.7,70.2,92.2,77.1,67.1,60.1,55.1,64.7,76.1,126.9,150.2,63.9,198.1,94.8,78.4,82,86.3,46.5,31.4,86.2,58.3,77.8,64.4,69.9,94.2,46.9,44.3,63,84.3,53.6,73.5,72.6,200.1,406.5,220,189.9,104.5,112.5,125.8,117.1,68.3,57.9,78.2,61.6,150,133,104.5,133.8,137.8,135.4,91.7,146.3,141.6,105,115.1,74.8,10.8,86.9,76.3,87.9,78.1,68.1,91.9,101.3,227.7,85.3,33.6,69.1,27.3,5.1,96.8,88.5,126,61.8,34.6,91.4,40.1,65.8,108.9,110.8,98.7,90.8,104.4,102.7,281.3,168,70.3,358.2,7.2,373.2,333.2,205,210.6,217.4,108.5,117.8,117.2,114.8,124.7,127.2,152.3,170.9,184.2,187.6,152.8,175.3,76.5,81,77,76.2,95.8,80.6,73.9,82.3,107.1,132.7,27.5,74.8,13,77.6,195.2,42.7,147.1,88.4,66.9,89.9,179.7,157.1,140.8,379.4,208.1,32.9,595.9,454.3,208.5,210,324.7,326.1,131.3,128.2,2.8,114.6,99.7,53.6,57.8,78.8,84.1,93.8,50.7,68.7,83.4,51.8,103.5,89.3,96.4,59.9,59.4,72.3,123.3,122.5,19.4,70.5,38.5,32.5,100.2,101.4,58.9,77,50.1,80.2,22.8,51.4,58.8,47.6,37.1,55.5,75.5,164.3,166.6,180.3,141.1,16.6,354.2,216.7,123.6,74,454.8,211.7,197.3,1018.9,501.2,252.7,102.8,388.1,97,91.8,95.8,66.1,91.6,59.9,116.2,167.2,120.3,123.9,46.1,169.8,130,70.1,52.5,65.7,59.1,63.1,38.3,52.2,44.3,51.5,51.3,40,45.1,46.4,49,29.6,48.2,47.8,32.2,69.2,156.2,68,23.5,159.8,29,174.9,58,14.8,65.2,9.8,11.5,128.5,185.7,106.7,39.3,44.8,47.3,70.5,43.3,48.3,42.2,40.4,38.7,84,0.1,90.4,34.2,52.9,46.4,43.8,18.4,18.1,62.5,27.2,32.8,29.1,35.6,62.4,48.2,52.8,212.3,68.5,104.2,67.8,77.7,65.1,74.8,46.2,115.1,90.4,75.4,127.6,106.5,219.3,189,100,113.1,58.3,51.9,58,71,2.3,135.4,57.8,49.9,41.8,52,40.5,40.3,46.4,35.7,59.2,57.8,73.6,76.2,110.4,60.5,59.5,94.1,107.4,45.9,201.4,173.2,165,172.9,166.8,0.3,33.2,303,169.1,173.2,109.1,93.9,85.4,83.4,173.9,164.2,171.4,43.3,17.8,11.7,85.4,154.4,500,283.5,805.3,466.8,275.4,4.4,71.6,28.6,309.6,314.3,171.7,327.9,95.5,66,63.8,104.1,246.1,260.2,489.9,13.1,671.4,835.3,280.7,149.3,150.2,298.9,217,374.6,15.2,81.8,187.5,52.7,112.3,104.7,274.1,334.6,9.4,10.6,336.9,156.4,285.6,145.5,138,125.4,176.1,249.4,59.3,79.8,67.2,71.3,75.8,63.4,59.2,65.7,68.9,134.8,88.9,40.3,53,55.7,42.3,71.1,52.6,83.4,159,123.4,33.7,66.3,59,49.7,39.8,37.3,43.8,45.5,54.6,43.7,94.1,44.3,16.9,26.5,34.1,33.2,52.8,47.2,30.4,33.1,48.9,55.7,28.2,17.3,47.7,60.2,111.2,31.6,38.8,46.2,343.1,135.6,16.7,120.6,120.1,160.8,296.5,249.9,211.4,212.3,18.5,30.8,91.4,95,91.4,86.4,141.9,56.2,39.4,310.1,191.3,69.2,120,54.4,43.8,46.9,72.2,60.7,63.4,48.4,47.2,58.1,66.4,38.3,35.1,124.3,117.3,78.5,43.2,49.3,49.6,51.5,57.5,44.6,16,17.9,12,43.9,59.2,31.8,34.2,39.5,43.2,37.2,113.9,129.3,82.7,131.1,65.4,121,118.6,30.5,39.2,53.7,35.9,45.5,42.4,35,58.3,29.5,15.6,55.4,70.3,219.3,117.7,68.3,48.6,116.7,77.7,74,81.4,33,47.5,1.6,86.9,94.6,8.9,51.4,31.2,51.2,52.7,52.8,87.6,26,74.5,53.2,49.4,70.4,83.9,39,65.8,55.9,50.7,61.3,60.2,31.9,35.6,36,51.7,51.1,87.1,36.6,25.2,46.4,27.2,30.3,27.5,25.5,17.3,47,46,32.8,37.8,54.9,39,153.8,70.5,155.9,64.2,45.3,24.8,108.6,72,71.9,52.4,56.5,78.3,82.6,56.9,70.2,83.6,114.2,60.7,44.2,33.7,28.4,35.5,24.1,46.8,47.2,42.8,38.7,50.1,50.7,44.9,45,40.4,41.1,51.9,53.8,52.2,53.4,42.8,36.2,48.5,42.8,49.1,52.6,46.7,45.2,42.5,43.7,52.4,56.3,53.2,53.7,63.5,67.7,57.6,64,40.1,37.1,78.4,70.2,3.9,72.5,60.2,57.7,77.2,50.7,47.8,52.3,50.2,65.6,62.1,142.7,75.3,80.6,88.8,133.3,168.9,76.8,77.3,58,53.8,52.5,31,18.6,69.5,70.5,68.2,50.5,115.3,117.9,64.7,33.3,56.1,37.1,48.8,79.8,73.7,65.4,18.6,71.2,101.8,49.9,94.4,83.8,92.5,79.3,98.9,101.8,67,70.1,58.6,54.7,59.6,68.3,36,66.3,54.8,84.4,49.4,48.6,47.6,44.3,50.4,46.3,54,34.7,31.9,40,40.2,26.6,36.3,51.4,53.5,24.4,25.8,31.4,50.8,54.3,35.1,34.7,60,104.2,107.6,114.6,71,20.8,126.2,125.7,151.8,94.3,34.2,80.9,82.8,66.5,118.4,152.6,155.5,148.9,128.7,61.2,63.7,104.9,74.5,52.8,82.7,40.3,99.8,70.6,51.9,58,58.7,51.5,47.8,71.7,62.4,62.8,120,56.9,42.1,26.8,33.4,57.6,65.3,41.3,46.3,42.1,52.5,72.4,111.2,50.2,55,169.9,58,32.3,34.3,65.8,78.3,138.9,152.5,108.2,93.2,141.3,91.7,83.7,69.2,62.1,43.6,65.5,65.3,66.6,62.1,104.8,125.8,82.3,61.6,79.4,111.3,102.7,88.4,85,94.8,99.9,137.5,114.3,168.4,155.4,156.4,107.6,106.1,76.9,69.8,115.6,68.8,50.3,55.2,45.5,48.1,37,36.1,50,41.5,43.8,82.6,35.7,42.3,69.4,91.6,82.5,81.6,122.2,89.6,191.3,187.5,215.5,86.8,10.9,68.9,138.5,99.8,15.1,115,129.5,122.9,100.5,104.3,117.6,139.9,66.5,83.4,101.4,96.2,107.7,97.4,94,111.1,116.7,138.7,101.1,153.2,48.3,23.2,27.5,27.6,56.2,137.7,133.2,151.1,167.8,150.7,128.4,152.5,107,106.8,98,100.7,179.8,152.9,146.5,126.3,110.3,67.5,76.2,5.2,17.3,69.5,64.7,76.4,86.7,81.4,97,83.6,40.5,33.2,57.1,107.3,70.3,85.2,40.9,48,49.8,53.2,71.2,87.3,87.3,75.9,97.5,63.7,30.6,44.1,43.3,27.8,35.7,63.7,52.7,161.3,82,52.7,83.8,67.5,66.6,52.8,66.2,67.6,66.4,77.7,108.8,68.2,68,99.7,94.4,104.1,39.2,134.4,119.7,120.1,47.3,0.9,68.6,82.5,99.1,69.6,91.6,99,58,51.1,78.4,75.8,188.7,149.5,160.9,165.1,170,53,56.8,247.6,245.8,13.3,4.6,5.1,16.8,18.3,27.5,31.9,43.1,56.3,51.5,37.6,30.6,34.1,35.1,31.8,28.7,34.8,22.7,33.7,34,31.4,25.2,16.2,26.6,20.6,33.8,31.5,32.8,27,24.1,20.6,28.7,36.3,33.4,33.4,49.5,34.1,45.4,23.3,34.4,34.5,50.3,52.3,67.1,47.5,49.8,36.4,101.2,100.7,84.5,74.9,26.6,20.3,38.2,85.2,67.5,66.8,51.6,50.3,50.8,52.3,33.2,53.2,13.9,68.4,49.6,51,34.8,33.8,31.3,34,25.7,26.9,34,30.8,20.1,49.7,45.9,38.1,40.6,30.1,31,34.6,32.6,35.8,33.3,34.1,34.1,33.7,33.2,35.4,33.1,32.9,51.2,49.2,21.8,36.3,27.7,34.7,15.9,34.6,66.9,85.2,67.6,68.2,95.5,94.8,80.1,82.8,57.6,15.2,45.6,52.1,34.4,19.5,26.9,37.4,50.1,35.8,17.2,31.4,26.7,25.5,25.9,30.6,26.6,36.3,31.9,34.3,19.3,94.3,27,28.6,20.9,28.8,33.8,34.6,32.5,34.2,34.6,34.4,49.4,67.3,50.8,33,35.6,34,35.7,38.2,49,113.6,93.9,100.1,67.1,43.1,39.4,34.5,28.6,30.3,20.4,44.2,55,34.6,50.1,49.2,52,0.5,50.8,56.2,13.5,64.6,51.2,69.3,50.3,66.4,83.5,51.4,85.2,84.5,86.9,35.3,48.9,83.2,53.6,59.4,22.8,47.5,68.3,56.7,59.3,62.6,75.5,83.3,107.9,41.1,56.3,42.9,42.7,50.5,54.3,40.3,28.6,29.4,33,34,48.3,35.5,35,34.3,39,43.5,29.2,40.4,33.2,34.5,33.7,32.6,32.6,34.2,50.2,51.4,64.1,34.5,36.5,43.9,36.2,38.2,38.1,42.3,30.9,44.4,44.1,47,40.9,35.4,35.5,36.9,37.3,33.2,38.5,39.9,50.3,70.6,36,44.5,41,33.6,31.3,40.9,43.9,40.9,30,14.4,53.5,40.3,55.6,70.6,29.2,34.8,31.5,29.5,44.4,46.7,27,25.9,44.8,46.4,63.5,73,72.5,24.1,24.4,35.2,27.8,56.9,72.3,61.8,72.8,90.5,72.4,60.1,50.9,49.3,45.1,37.9,50,64.5,51,66.8,86,134.2,107.2,126.9,77.1,84.6,90.1,57.7,56,46.9,88.1,91,62.2,85.3,93.1,51,148.1,65.6,40.6,45.9,71.3,61.7,56.3,35.5,44.9,36.7,52.4,52.2,58.8,52.1,52.4,72.9,55.3,47.2,99.1,96.4,98.6,71.6,75.8,84.8,22.2,107.4,43.9,41.6,51.4,45,78.7,40.3,46.7,52.5,35.2,51.3,39.6,50.9,59.9,51.6,46.6,37,43.9,23.4,44,47.2,43.2,40.9,33.8,35,69.3,51.9,49.8,52.2,51.5,50.8,69,68.3,68.1,51.3,52.9,47.3,57.1,69.2,69.3,108.1,76.7,50.2,24.2,25.2,62,31.7,46,40.1,50.4,90.5,55.2,59.1,81.3,61.4,77.1,68.4,69.1,50.5,33.7,25.7,16.4,68.6,80.8,66.3,49.9,53.8,51.9,32.5,33.5,30.7,39.9,32.9,50.7,35.6,36.7,43.9,21.9,33.1,34.8,40.5,34.1,30.4,39.6,35.3,42.2,55.5,49.2,64.8,67.8,86.6,66.1,70.6,49.4,53.3,51.2,55.5,52.3,47.3,72.1,63,36,90.4,64,51.3,113.2,216,84.7,93.1,86.7,68.4,103.9,139.9,58.6,87.9,90.2,99.9,64,4.5,69.7,67.3,86.6,66.8,51.7,105,145.8,40.9,74.2,85,84,69.7,66.2,84.6,38.8,61.9,77.6,57.8,54.8,79.5,81.2,56,66.8,80.4,56.5,65.3,69.6,115.2,70.8,66.4,114.4,69.3,72.9,100.1,72.8,101.9,44.1,61,29,99.4,69.8,93.6,65.1,89.9,103.8,137.6,145.7,153.6,74.8,89.9,58.8,78.1,91.2,106.7,94.2,62.1,47.8,57.8,73.1,46,76.3,57.1,54,86.6,61.5,56.9,52.9,56.7,67.2,68,37.9,40.6,35.5,78.5,57.7,105,68,89.1,76.9,57.9,80.4,77.8,79.6,63.8,42.6,46.3,35.5,39.6,20.4,16.5,29.5,27,34.7,6.4,34.6,54,50.9,37.2,59.6,53.6,34.1,32.1,34.9,29.6,32.7,39.9,39.6,26.7,39.4,32.3,43.8,270.2,212.7,27.5,43.8,18.5,93.2,73.5,128.6,52.9,43.6,19.8,81.4,61.8,59,61.3,59,63.2,39.6,23.9,38.5,54.8,7.5,141,178.5,113.6,103,70.1,44.9,1.9,106,143.9,104.1,111.8,114.9,80,103.7,143,102.4,27.4,144,13.9,41.2,41.9,40.1,40.7,42.6,51.4,62.1,83.3,76.4,96.4,76.4,221.1,96.6,109.8,80.8,75.2,84.3,91.2,37.6,58.7,32.3,44.1,41.4,32.3,30.3,35.2,34.7,39.9,43.8,60.2,42.2,38.6,41,24.9,14.4,24.3,44.8,99,65.1,58.1,40.8,33.8,29.1,22.2,38.9,61.8,62.3,61.7,79.5,69.3,56.7,73.2,74.3,46.6,28.3,40.9,35,36.7,36.3,34.8,34.5,29.9,49.7,38.1,33.4,37.6,39.3,82.2,64,56.3,96.2,92,80.9,67,80,56.4,36.9,38.1,24.5,23.8,26.8,36.4,30.6,25.6,34.8,56.2,51,70.8,89.1,74.8,68.1,78.3,65,34.9,39.4,36.7,37.7,35.8,36.2,53.8,73.7,58,62.9,55.8,54.4,26.2,24.3,34.3,95.8,55.5,163.8,66.1,73.6,63.7,45.3,28,59.7,58.4,28.2,39,1.3,46.2,78.2,43.7,43.3,28.6,43.1,70.3,60.7,75.8,72.8,40.7,53.2,34.7,37.9,27.2,27.5,37.7,38.1,53.3,55.5,41.5,50.4,41.1,51.7,65.7,65.4,71.3,29.1,39,32,29.3,50.7,56.4,39.2,77.4,71.3,81.3,116.5,137,146.5,66.4,38.3,38.8,39.8,24.4,27,36.6,31.8,28.2,33.6,37.7,37.8,38.8,34.1,24.2,32.9,38.1,50,42.9,39.1,40.2,41.6,45.4,37.4,34.5,30.7,28,18.7,39.8,71.4,37.4,38.1,36.3,18.7,29.8,24.7,30.5,31.4,22.8,29.7,45.5,67,162.8,190.4,100.1,148.1,95.3,94.4,89,93.7,86.1,212,165.9,75.3,93.4,102.2,102.7,92.1,89.7,75.1,36.2,32.6,26.7,33.8,35.7,38.1,36.3,37.9,37.2,35.4,37.6,38.3,35.6,38.4,36.1,36.6,37.5,54.9,55.5,37.7,36.8,36,38.3,37.2,56.6,36.6,35,30,44.3,37.6,38.5,37.4,31.7,37.6,40,53.8,46.5,48.5,37.6,35.6,38.5,26.4,30.1,28,25.7,37.8,30.2,29.7,25,24.7,25.1,52.3,52.3,91.7,54.9,41,35.6,34.5,57.6,53.4,44,29.3,19.5,19.9,35.7,38.1,36.1,35.2,39.6,36.9,35.6,37.4,37.5,36.7,93.2,101.7,113.7,399.8,98.9,111.9,108.3,104.3,82,90.1,60.9,53.9,72,147.3,110.5,95.1,108,124.2,590.2,245.3,71.6,130.2,94.4,109.1,148.1,111.8,129,52.6,38.9,22,34.3,13.1,41,55.9,34.9,25.2,34,18.9,37.6,53.3,35.4,38.2,58.9,73.4,74.4,91.7,72,37,38.2,36.3,20.9,18.1,32.6,32.5,17,17.9,22.8,31.3,36.3,22.3,33,41,48.8,43.6,21.6,16.7,30.8,42.8,54.5,38,52.6,56,36.6,108.3,77,86.2,78.7,54.1,57.3,55.2,44,47.1,57,58.4,52.5,35.4,51.7,35.8,40.6,45.8,36.6,53.1,33.3,38.6,35.7,134.2,28.4,52.4,72.8,52.3,72.3,89.2,89.8,89.8,64.7,43.7,34.4,72.1,41.3,49.2,52.5,36.7,35.6,72.2,35.1,0.8,51.8,121,45.3,31.8,33,33,33.7,34.9,33.4,16.3,18.6,49.4,36,33.1,32.8,34.8,33.6,34.3,34.5,32.6,51.2,35.2,34.7,31.9,49.1,47.1,38.8,33.2,33.4,52.5,50.6,35.1,33,43.5,43,37.2,45.1,55.2,33,30,55.8,46.1,42.7,42.8,58.2,60.2,48.9,35.4,51.6,49,38.9,49.4,97.9,51.4,49.4,51.1,85.3,48,53.3,68.3,52.3,50.3,67.1,36.2,65.2,105,90.5,77.4,85.1,84.4,114.5,121.6,1.8,80.1,107.5,67,68.7,106.1,69.1,54.4,51.5,54.4,43,43.8,34.4,52.4,49.9,38.8,47,89.8,74.8,109.6,111.2,76.6,154,152.2,109.5,156.3,65.9,109.3,156.7,108.3,6.4,36.7,59.1,50.2,32,72.2,71.1,53.1,67.2,37.1,46,58.5,68.9,81.8,62.7,56.5,372,137.6,84.2,85.1,103,67.2,49.4,49.6,18.4,16.3,34.3,33.7,33,32.8,33.2,65.2,35,31.8,50.8,50.5,49.8,50.1,48.3,34.4,32.9,33.8,32.4,33,33.7,35.1,32.1,32.4,34.5,50.2,34.5,30.3,33.7,33.9,16.6,34.2,32.9,32.6,33.4,27.5,40.8,34.6,67.1,68.6,61,109.5,86.7,53.3,85.7,118,68.7,179.4,83.1,97.1,68,35.3,97.1,172.3,61.4,160.6,101.4,83.4,37.8,32.8,253.5,198.6,98,94.7,58.1,66,134.7,59.1,132.7,99.7,104.2,101.6,85.1,108.8,62.5,54.8,54.2,82,49.4,116.6,90,53.8,74.9,77.1,25.9,72,117.8,69.8,68,70.1,84.8,101.1,86.4,35.6,33.6,95.7,97.5,166.5,76.5,210.7,66.3,51.8,32.4,37.2,87.5,50.9,50.7,48.9,39,34,49,50.5,120.4,56.6,41.7,37.2,34.8,33.2,46,29.5,51.3,71.8,52.4,51.8,51.4,38.7,45.3,43.2,38.7,53.4,54.7,36.8,35.2,35.8,34.9,53.9,62.4,59.5,37.7,36.5,48.5,77,44.4,49.1,47.5,68.3,35.7,43.4,63.9,55.5,71.4,69.3,84.8,86.9,126.9,132.7,109.7,198.5,101.8,173.4,105.8,137.3,47.8,32.9,75.5,38.4,44,88.5,94.2,31.6,50.4,64,40.7,68.1,61.6,35.5,42.5,43.4,55.1,29.3,65.7,42.7,25.6,34.1,49.2,37.7,33.1,37.7,37.4,44.9,64.9,38.5,46.1,37.2,33.6,29.6,34.6,45.8,35.8,37,35,33,37.2,44.6,40.2,47.8,48.7,51.7,81.3,84.7,86.5,104.8,126.4,93.5,68.3,64.5,84.1,89.1,45.5,81.3,29.1,84.6,52.4,36.3,40.7,43.8,45.1,51.9,71.4,220.1,114.8,127.9,175.2,52.1,150.9,55.9,86.6,238.7,170.9,123.5,100.5,67.5,73.6,132.1,364.6,0,106.4,75.9,65.9,74.5,51.5,107.3,104.8,101.6,173.2,118,88.5,127.2,136.3,81.8,64.8,27.3,25.1,42.4,21.8,23.7,25.6,31.8,17.9,17.2,19.1,26,17.7,82,26.3,25.6,26.9,28.7,30.6,21.5,15.2,13.8,20.6,29.9,37.2,31.1,26.1,26.1,19.5,25.2,23.6,22,34.6,49.3,41.8,46.3,16.4,36.1,35.7,16.9,31.2,18.9,25.7,24.1,33.8,22.9,40,24.5,34.7,29.8,24.8,33,31,35.2,33,31.2,19.8,32.2,27,25.7,35.7,34,25,23,23.1,18.7,20.9,16.9,33.3,46.6,59.5,45.3,51.4,47.2,51.6,59.9,114.9,77.6,60.6,35.8,73.4,77.5,162.8,111.1,52.3,70.3,46.7,91.1,42.8,75.7,107.2,81,93.1,44.9,70.2,87,51.1,69.8,86.5,69.2,117.3,87.8,62.2,7,87.5,83,52.7,89.8,118.5,67.9,83.2,185.9,224.3,74.9,86.4,168.1,67.7,69.1,58.5,111.5,105.9,84.1,88.1,71.3,77.1,108.9,102.4,70.5,84.9,100.3,47.5,57.6,45.7,45.7,42.5,18.6,17.4,12,11.5,16.5,7,8.8,8.4,9.1,8.4,6.3,6.3,6.9,5.9,4.4,4.6,7.9,7,8.5,7.6,8.2,7.7,9.3,10.1,16.1,18.2,30.9,34.3,16.9,11.1,19.4,23.7,26.2,21.8,19.1,25.3,15.8,14,16.6,9.9,14.6,27.3,22.2,20.9,15.5,16.3,8.4,14.6,17.3,16.5,14,17.4,17,63.8,33.5,22.9,15.8,26,12.4,13.2,19.4,15.9,14,9.6,9.9,9.8,12.4,12,12,12.6,10.4,12.7,13.1,18.1,32.1,29.9,13.2,16.5,14.5,16.9,11.8,22.8,31,25.8,25.1,29.6,47.9,29.1,31.7,20.2,55,42.8,103.7,69,86.3,68.2,52.9,52.4,51.9,47.3,108.4,136.7,208,86,107,257.8,236.3,160.1,155.2,264.4,107.2,134.7,129.6,106.5,69.5,71.9,78.7,96.8,95,69.7,49.7,113.1,126.2,72,13.2,30.2,41.1,26.4,28.8,24.5,104.4,102.4,85.9,71.6,28.3,169,108,44,48.4,66.6,44.4,8.7,49.1,54.8,49.8,54.5,44,55.8,27.9,11,42.1,7.5,70.3,53.4,72.9,25,50.4,49.4,45.1,38.9,27.8,22.5,49.1,53.5,56.4,30.1,27.8,30.3,50.1,43.1,30,24.1,32.7,23.9,34.7,34.9,20.4,18.2,17.1,33.9,28.3,38.6,30.7,25.3,27.2,26.1,25,41.4,36.6,89.4,50,71.8,89,135.7,141.9,122.8,105.1,157.2,221.1,25.1,153.6,107.1,83.7,65.2,151.4,157.9,131.8,122.9,143.4,73.7,71.9,133.2,196.7,70,76.3,137.7,84.4,66.6,109.9,128.5,117.3,98,87.2,59.8,120.5,121.7,137.4,115.8,96.9,249,73.9,109.3,149,123.1,22.2,66.1,127.1,136.1,233.5,223.1,40.3,35,29.4,29.8,29.9,58.6,98.2,116.6,133.4,100.7,29.7,70.7,52,58.4,44.1,52.7,51.8,45.6,63.5,58,38.2,16.7,16.7,17,16.5,18.7,14.9,17.7,16.9,16.9,16.4,17.8,16.6,16.9,17,16.9,16.7,16.8,17,17,16.9,17.3,16.1,16.9,16.9,17,16.9,11.4,6.1,16.5,16.3,17.4,16.9,16.6,17.2,16.6,16.9,16.6,17.2,16.8,16.9,16.8,16.9,17,16.7,16.5,17.6,33.1,62.4,73.6,122.6,34.9,51,34,27.9,24,49.7,49.1,54.8,47.1,19.5,16.6,15.9,17.8,18.1,7.1,8.8,16.6,20.9,19.9,26.7,17,17.5,15.9,18.1,17.2,16.2,17.4,34.5,16.2,17.7,16.4,17.1,16.9,16.2,17.5,16.9,17.4,67.2,68.3,51.3,77,178,118.1,51.2,50.1,52.4,33.7,34,61.6,42.3,36.6,6.1,43.8,58.1,95.2,62.1,55.6,62.7,60.9,53.5,80.6,47.4,115.5,69.1,49.4,44.3,148.7,26.9,96.4,46.9,45.1,47,38.6,34.1,29.8,35.1,28.9,32,44.1,13.1,55.7,56.7,50.3,85.6,55.1,5.6,96.6,97.6,106.2,49.7,18.7,29.3,23,29.1,24.5,26,27.3,21.7,8,18.2,19.2,35.9,24.2,31,25.6,34.8,40.8,22.5,20.9,37,37.6,48,54.6,37.8,52.6,77.3,53,46.3,52.2,56.1,24.1,32,46.8,43,39.2,74,35.9,83.5,38,60.6,44.8,61.9,37.1,29,67.1,45.7,26.7,69.7,47.8,48.2,32.5,44.5,43.9,43.6,12.8,12.8,20.8,172.3,56.4,50.4,45.5,43.8,37.6,51.6,43.1,34.7,25.3,27.4,34.3,30.4,19,23.6,28.2,18.3,24.8,36.6,26.1,29.4,38.4,46.2,28.5,29.2,30.9,50.2,42.5,35.9,41.1,54.8,63.3,53.2,25.1,33.3,44.4,23.4,47.8,42,64.8,37,35.4,25.2,39.6,65.5,11.7,37.5,29.9,43.4,71.3,26.5,72.1,49.3,42.9,48.9,56.6,67.2,53.2,55.6,48.6,55.1,28.7,18.4,42.4,31.5,39.6,79.9,62.3,34.8,25.1,33.1,18.6,14.3,27.7,4.9,6.4,6.8,8.6,7.4,8.2,10.8,8.6,8.9,10.6,5.5,14.3,18,2,10.3,0.5,16.2,0.3,29.9,64.8,5.8,50.5,65.3,93.6,72.6,13.3,11.5,11.5,9.8,10.1,8,12.8,9.8,9.4,10.5,9.7,12.4,11.8,14.2,8.6,4.1,11.1,10.2,8,10.2,13.7,8.1,14.4,15,11,12.3,14.1,62.9,38.7,28.3,74,22.1,38.1,60.4,31,34.2,5.4,38.2,39.3,52.6,63.2,64.9,51.6,48.2,34.1,26.6,32.3,23,28.3,38.2,35.6,37.6,27.5,22.3,22.7,33,30.6,37.9,31.3,39.1,39.9,46.5,44,32.9,63.9,42.7,50.8,44.6,32.5,48.4,67.7,85.2,42.8,65.8,39,28.5,45.9,28.2,48.5,48.6,58,52.7,37.1,63.1,28.3,27,58.2,57.5,55.3,93,52.1,68.4,30.1,36.7,63.1,52.3,49.5,58.5,70.2,77.5,54.1,45.9,36,36,47.8,49.9,55.2,52.9,44.7,48.7,56.1,66.8,21.3,22.1,41.2,44.4,50.2,52.1,49.8,41.4,58,43.4,43.3,62.5,67.1,78.5,69.3,42.9,28.5,35.3,50.1,35.4,43.6,36.3,34.5,29.5,35.8,31.4,39.1,15.1,25.8,36.3,43.5,31.5,27.9,54.2,58.3,64.7,68.7,53,60,54.5,57.1,36.4,41.1,40.4,84,72.1,97.5,195.2,109,114.4,70,54.1,78.8,107.7,89.4,55.3,32.5,37.6,41.9,46.1,54,62.9,71.9,70.1,60.1,88.2,73.3,49.7,29.8,39.5,45.1,38.5,35.4,34.7,47.5,32.4,44.5,51.6,1.5,63.2,46.9,46.8,56,47.3,33.1,44.8,46.6,29.8,63.1,80.9,51.5,49.5,52.9,28.8,36.6,43.5,47,45.9,51,40.9,45.5,42.9,48.2,66.6,46,42,26.1,30.4,50,50.5,54.1,57.6,56.2,62.8,25.6,26.3,24.3,43.8,69.8,86.2,51.6,39,49.3,44.7,45,36.6,43.7,31.7,38.4,48.1,30.3,30.4,39.2,42.7,46.4,109.6,14.9,53.3,81.4,53.1,34,40.5,112,84.5,111.8,103,82.6,68.2,52.2,34.1,31.9,25.2,30.1,41.2,19.2,41.7,50.6,79.6,56.5,5.7,80.6,46.7,55.8,45.2,36.1,33,35.9,35.5,48.2,104.4,38.5,7.1,19.1,67.9,49.3,42.1,43.9,41.3,57.6,36.4,50.3,55.2,65.9,47.1,47.2,37.5,47.5,42.5,63.9,69.1,83.9,68.6,36,41.6,43.4,47.7,52,59.3,48,42.1,62.4,60.3,86.3,63.1,92.1,44.2,31.9,60.4,85.6,46.5,41.4,71.1,62.6,48.4,71.6,61.4,50.9,56.2,57.4,68.9,53.6,52.2,58,64.2,86.7,38.6,72.7,42.6,35.8,31.2,68,35.1,49.5,38.1,27.4,28.8,26.1,45.6,50.1,83.1,68.2,58.3,55,48.7,48,67.7,53.2,58,59.4,49.3,35.9,36.8,50.6,47.9,67.2,53.8,49.5,49.2,51.4,52,52,54.7,39.6,65.5,70.9,47.4,28.9,36.8,47,37.8,35.6,30,41.2,41.4,56.4,36.5,57,44.9,28.8,21.9,45.1,78.1,62.6,58.6,44.8,34.9,46.7,38.9,38.7,47,50.2,71.4,108.9,132,70.9,47,50.9,71.3,49.3,30.8,54.1,48.8,47.4,44.3,55.5,58.2,57.7,99.4,85.5,136.2,106.5,100.3,67.8,69.7,54.7,46.1,67.6,56.4,58.2,69,60.9,90.9,57.6,80.9,91.3,86.4,69.3,83.6,72.2,114.3,113.8,89.4,66.6,86.7,76.6,99.8,102.6,109.2,108.7,75.4,91.7,73.4,86.1,164.9,169.4,96.3,76.5,66.9,43.2,44.1,40.2,56.6,53.5,55.8,46.6,44.9,59.2,87.4,78.3,72.2,82.3,51.3,39.2,41.6,35.9,36.5,38.8,62.6,41.5,41.2,38.1,51.5,51,47.8,47.7,59.5,35.3,36.5,47.5,34.2,52.8,69,51,67.7,53,46.7,69.6,72.2,53.1,69.2,67,67.6,70,68.3,63.1,83.6,103.4,99.5,111.8,76.3,70.5,55.5,68,70,82.6,53.8,77.7,58.8,51.8,50.3,71.7,70.9,68.3,38.4,32,52.2,56.9,52.4,64,129.8,98.7,58.7,47,50.8,68.9,59.7,103.2,60.5,77.1,69,50.4,53.4,72.9,35.2,41,71.9,68.2,59.9,37.1,32.2,52.6,19,40,43.6,28.6,5.4,86.1,47.7,37.4,32.8,35.7,53.7,50.4,45.8,29.3,86.2,42,48.6,51.6,42.7,30.6,30.3,54.6,38.5,73.4,57,59.4,57,44.9,31.6,38.2,93.2,75.2,97.4,58.2,57.6,52.3,54.3,69.8,80.2,87.1,71.8,77.4,82,106.7,122.9,86.8,99.6,103.7,55.6,53.9,65.3,71.2,76.6,61.7,65.5,81,15.5,17.5,74.4,87.4,60.4,71.8,90.6,69.9,49,66.2,87,66.1,78.2,71.6,57.7,66.3,49.6,62.5,51.2,1.6,38.3,38.2,46,49.8,63.3,54,70.9,47,46,55.1,59.9,53.1,90.4,83.1,91.1,70.6,76.6,52.6,67.9,75.5,62.8,60.8,87.8,104.7,68.1,90.4,44.7,67.8,73.8,80.2,91.4,182.2,103.3,106.3,108.2,98.8,88.2,39.7,25.6,44.9,84.4,74.8,48.2,78.7,76.1,80.7,89.5,54,82.3,70.5,63.3,102.1,72.3,73.8,93.3,96.8,66.1,78.3,89,85.6,87.8,45.9,71.2,109.2,35.7,61.7,264.8,147.5,123.9,122.1,88.3,89.2,82.7,59.1,52.8,60.3,77.3,46.7,41.7,41.1,99.5,34.1,48.1,80.7,49.5,61.3,65.4,57.5,61.5,102.2,64.7,27.4,38.3,34.6,31.8,24.5,26.2,23.1,54.6,42,47.5,27.4,45.8,56.6,31.3,35,41,49.7,47.9,54.1,38.9,34.5,48.9,44.8,58.9,76.9,120.5,108.6,67.2,75.8,70.6,71.4,54.1,44.3,54.4,42.2,47.3,60.9,66.8,46,33.3,53.4,61.1,54.3,45.2,48.9,50.2,119.3,80.5,59.3,50,31.9,40.2,37.2,49.7,34.7,27.9,26,34.2,34.4,28,23.5,28.5,54.7,34.6,35.4,32.9,31.5,50.6,59.8,96.9,78.5,96.9,88.9,58.6,39.7,45.8,70.8,104.2,119,89.2,103.5,55.9,71,22.9,54.3,32.1,54.9,26.9,83.1,75.9,52.9,42.4,78.7,25.1,44.7,49.1,18.4,73.8,42,34.4,57.3,68.5,77,175.1,75.2,51.6,113.6,79.8,8.1,41.7,46.2,47.3,43.7,60,36.6,112.7,77.8,99,77.4,25.4,37.7,37,37.9,31.5,30.1,33.3,55.6,15.9,42,33.5,52.9,23.1,29.3,46.3,34.4,25.1,69.6,101.2,71.3,22.9,71.5,32.1,17.7,76.1,42.3,41.3,69,40.9,47,94.3,71.1,34.7,38.6,32.9,76,37.1,48.3,59.8,21.1,65.8,96.6,128.5,66.9,48.2,82.3,71.6,20.9,87.7,53,21.5,89.2,66.9,72.1,72,44,64.6,74.5,68.1,51.5,121.7,18.2,29.4,38.7,17.1,64.3,35.4,27,0.5,41.6,20,59.4,57.3,36,67.3,48.1,45.6,60,43.2,43.2,49.4,39.1,23.5,47.4,43.5,68.3,57.8,56.7,65.5,58.4,64.2,68.1,35.2,32.3,55.3,49.3,74,159.8,72.5,53.6,62.5,67.4,53.4,44.2,26.9,23.9,19.6,23.9,34.6,34.6,34.9,29.2,32.6,86,43.1,35.8,35.1,28.4,52,47.6,45.5,45,253.3,119.4,38.6,37.6,88.7,77.9,45.9,18.4,22.6,47.9,51.8,25.6,39.8,54.2,37.2,59,67.3,51.8,49.6,55.7,61.3,64.6,68.6,58.4,57.2,52.1,43.6,29.6,76.9,94.6,41.1,28.4,60,60.5,61.1,64.1,34.8,18.9,59.5,67.8,50.2,150,22.6,87,70.9,43.3,56.6,76,77.3,67.8,58.8,57.6,67.8,52.4,57.8,32.6,29,51.3,86.3,97.9,72.6,67.4,62.6,55.5,72.7,72.5,99.3,72.8,90.8,79.2,80.2,82.1,80.8,82.4,86.1,86.1,83.1,70.2,71.6,81.7,70.3,82.9,67.8,57.6,63.2,54.5,55.4,47.1,44.5,49.7,42.2,50.5,67,35.8,60.6,61.6,77.7,59.5,51.5,52.4,71.4,80.6,89.4,91.1,89.8,67.4,80.8,73.9,83.2,88.5,59.6,56.1,59.4,63.4,72.2,86.6,101.7,81.6,99.5,98.3,94.2,88.6,116.6,111.4,79.8,121.6,103.6,113.5,115,98.4,90.7,138.7,123.2,135.7,5.6,130,135.6,157.9,120,146.3,147.2,153.9,149.1,153.6,186.1,192.9,184.1,153.2,133.3,137.8,129,127.8,195.9,115.2,169.3,48.9,55.6,21.5,31,73.3,80.4,71.3,70.3,51,49.4,61.7,51.5,52.9,49.9,56.3,38.5,30.9,58.3,77.9,82.4,99.4,101.3,96.6,120.1,119.8,125.5,106.7,151.7,21.8,76.7,82.4,110,105.6,120.7,141.2,92.7,128.6,47.2,241.6,131.5,103.6,176.8,72,142.5,127,137.4,64.5,107.1,60.5,88.2,59.1,86.5,66.3,80.5,42.3,47.4,58.3,51.7,20.3,67.9,21.6,7.3,39.5,70.4,59.3,51.1,60.9,63.4,57.2,48.9,97.6,41.5,60.8,86.7,113.3,91.3,96.5,92.3,97.5,89,91.5,70.1,60.1,51.7,55.3,71.1,67.6,79.2,71.4,62.3,69.8,45.1,55.8,54.5,76,69.7,74.4,85.1,64.6,71.9,134.2,21.5,87.5,51.9,49.1,54.7,46.4,64,65.1,61.2,70.1,63.4,79.7,74.9,48,20.1,50.6,45.3,40.9,46.1,36.6,71.2,55.9,64.9,51.3,156.5,44.3,67.1,24.6,66.5,27.5,22.3,35,30.6,26.8,44.5,32.3,24,62.5,33.3,35.1,28.4,27.6,27.7,21.9,27.4,29.7,72.2,51.8,79.9,91.1,100.3,32.1,20.5,24.6,14.2,14.1,19.1,20,31.4,24.2,19.7,19.7,34.8,272.8,140.2,64.9,52.1,31.1,30.3,31.1,42,22.9,33.2,31.8,31.6,58.3,34.2,31.6,46.7,67.4,58.2,50.4,38.1,34.6,32.2,92,69.9,125.3,113.3,103.2,111,55.8,46,53.3,44.5,70.6,63.7,51.4,69.3,61.7,50.6,53.8,54.6,80.2,73.2,104.1,111.2,99.5,206.7,419,30.4,325.1,247.5,121.3,117.6,166.3,36.7,130.8,87.7,84.7,69.4,92,82.5,76.8,100.7,77.6,79.5,77.6,80.5,67.8,61.6,15.5,32.7,22.9,57.6,57.7,53,55.6,47.9,84.6,37.9,71.8,84.9,18.8,98,50,52.2,128.5,57.2,88,87.8,81.5,380.8,73.5,242.4,92.7,129.4,102.9,105.1,63.3,39,102,58.6,111.7,79.7,37.4,39.7,73.7,269.7,229.1,108.8,18.4,114.4,78.4,133.6,77.9,100.8,140.7,102.2,97.8,85.4,49.6,39.9,72,62.9,67.6,61.2,60.7,79.2,79.7,275.6,37.5,184.8,69.9,97.5,182.6,169.6,101.7,64,38.7,66,65.5,56.4,49.9,148.1,104.2,109.1,62.1,58.6,57.7,2.6,116.5,131.9,37.2,214.5,508.2,472.8,509.7,201.6,384.5,70,137.7,157.7,146.1,106.2,115.9,86.2,85.2,97.8,93.9,94.2,93.4,104,99.3,68.2,75.8,79.7,81.2,71.2,58.6,52.6,59.9,64.6,39.8,46.4,56.9,33.1,26.4,67.2,51.1,46.9,131.8,74.8,67.8,54.2,52.2,45.3,44.7,37.8,84.9,68.9,120.9,80.9,51.6,51.5,37.7,43.8,51.3,50.1,62.4,66,61.9,46.9,40.5,47.8,29.2,23.6,67.1,52.3,60.8,58.8,62.3,68.7,71.8,160.7,91.5,127.1,71.2,63.8,73.9,68.1,54.5,69.1,84.2,56.9,71.3,75.1,51.1,53,44,48.5,88.4,66.5,68.7,79.8,112.1,69.3,61,102.3,55.3,62.2,66.7,43.6,45.9,65.6,62.7,79.5,93.9,101.4,100.5,89.7,82.9,66.5,69.7,33.9,22.1,47.8,49.3,72.8,64.4,70.6,56.3,76.3,64.4,65.1,29.5,21,26.7,41.4,37,91.6,68.5,67.5,68.1,67.6,45.5,57.3,54,65.2,50.9,36.4,79.3,26.4,105.1,30.7,68.5,30.5,34.2,22.8,21.9,42.6,39.3,40.7,35.3,23.3,14,10.9,13.1,10.8,10.8,9.6,9.4,13.4,11,9.7,13.5,10.7,11.8,10.7,10.6,10.1,10,13.8,11.9,13.7,7.8,10.3,11.9,38.7,94.8,33.3,24.6,24.2,70.1,10.6,58.1,76.8,19.5,96.6,15.3,112.4,100.2,91,61,48.6,75.7,79.3,61.3,82.8,60.3,99.7,85.3,86.7,66.8,61.6,54.9,47.3,130.2,63.7,35.7,162.6,162,133.4,204,21.7,20.1,24.1,23.1,21.3,19.4,29.4,29.1,22.2,19.3,23.7,24.3,5.5,20.8,24.4,20.2,28.6,25.5,28.1,36.6,37.1,51.6,85.8,44.7,40.3,31.4,38.8,40.8,27,19.3,44.2,76.4,63,100.1,97.9,34.8,30.7,42.3,63.5,30,13.4,35.5,26,27.1,8.7,23.3,50.6,9.2,35.2,46.3,34.3,28.7,88,8.3,8.1,113.6,21.1,15.2,75.3,21.6,101.7,99.8,75.2,77.3,71.5,53.3,64.3,72.5,78.6,68.6,277.2,124.8,9.7,48.4,61.7,36.6,122.6,131,122.5,79.5,111.3,99.2,90.3,12.6,92.4,102.6,135.2,133.4,102.9,112.5,153.5,89.7,114.6,180.3,104.9,108.3,104,92.8,117.7,54.3,66.5,64.2,101.8,69,46.8,86.3,50.8,48.8,42.6,64.6,92,69.2,54.7,11.5,75.3,28.9,81,51.1,4.2,94.1,96.5,61.4,42.7,93.4,94,61.2,54.5,88.2,202.3,196,242,155,135.5,160.9,162.3,337.4,121.3,47.9,49.9,27.3,66,80.1,64.3,34.9,31.2,62.4,83.5,45.6,37.1,70.5,47.1,52.7,44.7,60,70.9,78,84.8,78.2,118.3,59.6,58.3,21.1,67.8,49.7,51.6,33.8,37.4,49.3,52.9,44.1,38.7,52,34.1,52.7,254.1,66.7,55.6,70.7,54.1,98.4,65.5,96.4,111.9,68.7,76.6,116.7,227.5,220,1811,115,55.8,48.5,83.8,71.7,68.1,79.6,107,69.5,63.4,65.1,80.2,73.1,78.9,80.8,93,62.9,40.5,33.3,33.1,35.2,56.5,64.1,71.9,96.6,108,93.3,54,49.5,62.9,45.5,40.6,40.8,38,36.8,68.5,76.8,44.3,40.7,35.1,41.5,35.5,112.2,73.1,80.9,218.6,122.1,115.6,81.6,67.4,85.2,50.5,81.1,73.3,150.6,143.1,60.2,48.2,41.3,36.3,48.8,33.4,33.2,34.6,33.6,36.1,35.7,18.2,35.6,45.1,34.1,21.9,29.7,33.5,36.7,36.6,32.1,35.8,37.2,30.1,33.7,51.5,65,55.7,62.8,40.4,46.4,56.1,32,34.5,58.9,46.9,51.5,37.5,36.6,43.4,37.2,51.6,33.2,35.8,35,32,27.5,35.8,37,56.1,10.5,55.9,58.8,59.5,65.4,55.6,106.5,157.4,77.2,50.8,43.7,49.9,30.8,30,28,47.7,43,82,32.2,25.2,51.1,36.7,46.7,39.3,33.4,33.5,39.9,44.4,36.5,94.6,90.9,85.2,88,102.9,66.9,38.8,31.4,42.4,33.1,56.5,49.6,30.2,36.4,28,38.7,34.4,34.4,35.4,46.3,61.6,58.2,73.5,117.6,48.2,44.5,28.5,43.4,34.4,49,35.4,33.4,31.6,28.5,31.2,32.9,32.6,69.4,58.9,55.9,55.6,61.9,32.7,28.7,49.5,44.9,46.5,84,57.7,77.9,49,52.6,48.9,52.1,46.8,43.4,40.8,86.9,173.8,92.1,81,124.1,50.9,45,53.8,63.5,71.1,43.8,179.8,130,73.9,63.4,123.1,130.2,111.2,105.4,247.6,94.3,68.2,39.3,38.3,59.8,26.3,44.7,35.3,42.5,80,74.8,79,72.9,107.7,69.1,75.2,71.9,40.6,33,41.2,1.4,49.1,47.5,55.1,45.6,48.3,54,35.9,43.3,35.3,10.3,56,54,92.9,51,50.1,37.6,39.5,38.6,42.2,19.5,33,51.3,34.8,49.2,33.9,35.6,37.9,50.7,47.7,25.3,874.2,52.3,59.9,70.7,81.2,21.5,177.1,92.8,78.4,18.9,31.2,36.4,34.6,5.3,45.4,14.9,19.7,48.8,50.9,33.5,32.8,32.3,24.2,27.7,27.7,39.8,24.1,36.7,32.2,85.9,70.2,66.3,58.3,62.8,18.6,36.9,32.2,32.1,33.7,14.2,35.2,35.9,35.6,46,10,6,45.7,23,11.3,35.2,34.1,35,36.9,15.1,74.4,42.1,41.7,79.4,42.1,43.5,44.6,45.5,98.2,97.5,77.9,77.4,43.5,42.1,43.1,45.6,85.1,56,39.7,10.8,51.2,56.2,39.9,43.2,40.2,43.7,81.6,82.3,43.4,46,43.3,14.7,90.8,135.1,115.5,138.5,555.6,140.6,156.3,150.4,55.7,57.7,167.5,69.6,69.8,70.9,70.7,58.7,57.7,41.7,43.9,77.1,19.7,77.8,49.8,47.5,42.9,50.3,37.4,17.9,26.6,39.8,40.1,79.3,39.6,38.9,29.9,6,14.2,54,105.1,103.8,66.7,66,93.3,115,260.7,392.9,381.1,70.1,70.1,67,56.4,42.7,37.5,73.9,2379.9,21.1,164.5,54.6,169.2,196.1,185.5,184.1,151.5,117.6,57.3,30.4,29.2,65.4,24,29,42.1,40.3,45.2,44.7,31.9,31.1,79.1,12.8,22.1,54,54.1,42.7,36.6,62.5,41.4,7.1,44.8,60.8,55.7,51.3,8.2,27.4,21.1,88,32.4,17.1,42.7,47.7,24.6,45.7,38.7,40.1,55,23,22,36.7,13,19.2,34.9,28.6,23.3,33.5,74.4,29.9,13.5,29.2,24.5,25.9,34.5,7.8,89.7,19.9,27.5,31.9,34.4,35.7,30.3,32.7,32.4,28.5,33.3,27,24.8,29.3,30.9,25.2,30.4,26.7,39.9,37.4,28.6,26.3,28.5,28.8,28.5,19.7,24,30.9,33.2,39.5,36.1,33,32.7,34.3,26.8,30.3,28.6,19.1,11.9,41.2,47,42.1,56.2,36.4,12.4,9.2,14.6,18,21.8,28.7,39.8,39.1,28.1,23.9,25.4,17,8.8,10,19.3,16.5,20.4,22.3,22.4,18.7,14.5,18.8,22.5,25.3,50.8,26.1,21.6,26.5,22.6,16.2,21.9,14.8,20.1,25.1,19.9,24.1,21.5,29.4,22.7,21.9,23.7,24,36.9,18,47,16.4,16.4,36.6,33.9,41.5,25.5,42.3,49.9,31.9,26.7,23.3,27.5,26.8,29.8,36.6,70.2,19.1,19.2,21.8,22.3,23.9,22.4,31.8,40.7,32.1,26.2,35.3,29.1,14.6,23.4,31.7,23.7,29.6,13.8,18.8,35.5,24.5,33.8,19.4,29.6,29.3,25.9,30.2,29.7,21.9,34.2,37.2,42.7,43.2,40.2,49.2,49.7,34,17.3,24,43.3,33.4,31,41.4,34,31,65.9,63.3,53.3,48.4,32.8,5.2,27.1,20.3,22.9,8.9,13.9,50.9,41.7,38.5,10.6,14,39.9,21,5.4,8.4,23.8,19,19.4,10.6,8.3,16.8,20.8,19.6,13.3,20.2,21.3,20,7.9,11.9,15.8,27.5,18.2,19.3,17.2,15.5,16,24.1,28.7,35.6,39.6,25.2,29,19.7,19.7,32.8,31.8,34.6,36.5,33.3,27.3,17.2,17.4,20.6,21.9,25.7,28.2,27,24.2,27.4,21.9,28.1,28.2,32.5,32.2,23.5,26.5,21.7,19.9,20.7,19.6,33.7,33.5,29.4,25.3,27,40.3,72,47,40.9,65.2,48.3,38.1,38,36.8,31.3,59,33.5,24.9,39.1,44.1,46.9,46.7,43,47.1,29.7,32.5,31,37.1,51.6,69.4,32.2,30.1,35,20.5,19.9,21,19.6,18.1,18.3,18.6,25.7,19.4,24.4,24.6,67.7,25.7,29.4,44.5,22.5,23.1,24.3,20.5,46.6,35.7,26.2,44.3,40,45.1,43.1,40.4,53.8,50.5,72.5,44.2,10.8,38.9,46.7,44,34.4,46,43.9,62.1,39.5,33,31.1,42.8,38.8,32.9,26.2,26.7,24.6,24.8,44.7,31.5,35.6,43.2,24.8,31.9,37.3,23.9,22.1,35.1,31.5,36.4,34.9,38.4,47.9,32.4,36,34.9,31.6,31.8,35.9,31.5,47,35.7,45.5,38.4,29,35.3,35.7,35.9,36.7,30.5,56.7,33.3,33.7,41.5,19.9,9.7,13.7,24,32.2,46.8,64.9,49.2,37.2,7.3,26.4,56.8,31.5,26.3,28.3,25,22.4,34.7,54.6,51.9,37.1,69,55.7,51.5,40.3,20.3,41.7,55.1,69.5,100.7,49.4,52.4,43,55.5,55.3,48.9,38.3,50.1,43.7,44.8,32.7,40.6,33.4,41.4,44.2,47.9,40.5,21.7,27.4,21.8,22.4,24.8,26.6,25.9,25.9,29.9,30.4,32.3,23.3,32.5,26.1,35.9,27.3,27.1,23.5,31.5,27.5,39.2,26.7,26.3,26.5,13.3,11.2,23.6,22.4,31.3,24.5,28,45.3,28,35.7,37.6,21.8,12.3,44.6,32.7,36.4,43.9,120.4,135.9,204.2,80.1,46.1,49.8,52.4,47.8,64.2,47.6,38.8,58.2,55.1,35.4,39.6,42.8,20.6,34.7,23,21.7,12.8,42.7,32.1,20.5,27.5,32.8,35.2,32.4,37.2,32,26.6,26.4,28.5,39,44.1,23.2,47.3,20.5,37.2,31.7,27.6,50.4,38.1,66.1,88,18.3,32.6,38,40.5,30.8,30.4,21.2,33.5,36.2,34.4,24,25.1,28.5,20.6,14.4,15.9,16.6,22.6,37.2,33.4,30.6,25.9,25.2,22.8,28.1,20.2,18.3,20.4,16,25.7,26.2,22,24.9,23.6,22,23.5,22.7,29.5,35.2,28.5,30,25.9,26,29.7,23.5,21.8,27.2,27.5,26.5,40.1,22.4,23.5,25.3,29.6,25.3,29,22.9,20.2,21.6,25.2,29.1,28.5,33.7,34,32.9,33.6,26.6,28.5,52.9,29.8,30.6,31.8,42.1,51.7,39.2,17.9,16.6,25.8,38.6,21.5,29.4,24.7,25.2,24.9,27.4,24.1,29.5,34.2,31.3,23.8,21.3,28.4,30.5,30.3,32.5,25,25.7,27.7,44,24.3,30.5,28.8,25,26.2,25.5,29.3,26.2,30,22.4,28.6,18.7,16.8,19.7,23.4,20.2,20.1,24.9,17.5,27.1,53.7,33.1,30.5,31.5,37.9,25.4,27.9,25.7,38.1,38.7,49.1,29.9,40.6,32.5,7.6,37.2,45.2,34,28.6,28.7,30.8,33,33,44.2,32.4,39.6,43.9,60.9,39.1,44.7,58.7,47.6,34,28.1,30.6,18.3,9.9,27.3,24.1,8.3,23,18,29.2,22.4,21.6,23.6,24,23.3,21.6,27,31.2,41.4,28.9,33.7,34,30.2,21.8,20,18,16.1,13.9,31,11.2,13.7,20.9,29.3,27.3,16.5,18.2,12.5,16.1,17.8,39,27.8,25.9,21.5,12.4,17,18.2,18.5,16.2,17.3,23.3,20.6,14.7,20.4,24.9,26.1,24.1,17.9,18.4,18.1,14.6,12.6,12.5,16.3,15.7,15.1,28.6,16.4,12.7,29.1,20.1,20.1,21.8,20.1,20.9,19.4,25,6.5,13.3,23.3,27.4,29.2,27.2,22.8,24.2,18.3,17,15.8,19.1,15.5,21.9,13.2,22.3,6.8,10,15.5,16,16.4,12.7,16.7,19.8,19.5,17.8,19.4,26.8,20,9.9,8.5,17.9,15.8,18.9,16.3,12.9,13.5,12.1,12.9,14.1,13.1,22.1,18,17.8,12.1,21.6,15.7,15.7,17,18.3,22.8,12.5,16.9,16.6,17.1,19.2,12,19.1,17.9,19.1,30.6,31.2,29,31.4,16.1,16.1,13.8,16.4,15.7,15,18.5,16.8,15.6,16.9,18,23.4,16.1,22.5,33.9,24.5,39.6,39.1,38.6,38.9,35.3,38.6,34.2,30.6,33.6,39,40.4,45.2,41.2,42.8,41.5,43.3,40,33.7,41.6,44.2,37.7,26.9,36.9,34.4,78,12.5,16.3,53.9,6.2,58.1,60.1,35,41.8,47,33.9,33.1,43.5,50,39.3,38.3,53.8,41.2,53.3,35.1,35.5,34.4,36.9,44.2,31.4,51.4,46.6,36.2,45.9,25.7,41.9,18.2,46.3,52.1,53.8,45.8,39.3,45.5,46.4,31.6,31.6,45.4,44.4,33.7,28,33.2,41.5,23.8,26.1,24.6,74,38.6,35.1,37.1,8.7,32.8,45.4,43.8,21.9,28.5,32.8,31.2,30.1,78.6,40.9,92.5,110.2,112.8,106.8,63.6,76.7,34.6,48,90.6,51.2,42.1,71.5,74,55.9,55.8,67.7,49,54.4,42.9,53.6,43,42,42.1,37.5,41.5,63.2,52,40.5,40.7,41.1,43,19.9,25.6,46.7,42.5,29.1,32.8,28.8,31.9,31,29.5,33,27.4,67.3,26.9,15.7,36.9,19.8,22.5,21.7,28.4,34.9,23.1,29.9,41.1,33,38.2,23.2,27.7,36.1,17.4,50,59.6,53.5,44,50.9,38.1,37.3,28.7,27.7,40.1,45.9,31,37.4,33.5,34.8,29.5,20.4,30.2,30.6,42.3,39.4,22.9,32.5,27.6,28.7,30.3,32.1,29,13.3,9.8,33.5,25.5,9.6,85.5,36.1,6.6,68.2,34,27.3,23.4,26.4,32.2,29.6,34.9,8.8,49.9,78.8,87.4,66.2,73.4,98.3,65,32.3,28.9,30.3,33.1,51.7,34.3,39.9,36.2,38.9,37,51.5,50.2,28.1,27.8,48.5,38.2,26.2,24.7,33.8,46.6,7.6,30.8,7.3,31,51,9.5,43,66.9,36.6,35.6,27.4,41.7,29.2,26.8,42.1,41,38.4,28.8,35.4,36.5,43.1,108.7,46.4,40.8,35.8,81.5,47.6,37.7,38.5,36.8,50.2,114.3,207,89.1,150.1,100.8,49.1,44.8,49.8,37.8,49.9,36.4,40.2,39.6,39.2,31.7,33.8,33.4,41.1,49.7,46.1,37.7,31.7,36.7,42.2,41.3,34.6,33,26,46.8,57.4,22.4,7.4,51.5,44.2,10.7,36.4,54.5,221,205.2,135.1,85.3,165.3,106.2,166.5,59.1,113,124.5,37.7,39.6,32.8,28.2,33.9,32.5,37.1,41,41.6,49.7,49.5,48.3,32.6,43.2,35.1,34.7,34,76.8,49.3,53.3,67.3,71.7,71.2,97.8,92.5,63.3,95.9,297,66.9,143.5,175.8,99.6,130.6,77.4,135.3,141.1,75.1,41.4,47.9,49.1,38.6,7.2,62.6,30.6,43.6,64.5,59.2,37.5,43.8,51.2,39.9,41.7,78.9,48.9,34.2,37.7,38.5,39.8,73.2,34.4,39.7,37.5,37.1,35.4,51.3,72.9,40.2,58,37.7,51.4,63.7,16.8,51.2,51.3,54,78.2,77.6,53.2,44.9,48.9,67.6,52.5,51.7,64,32.2,36.8,15.2,113.3,82,69.7,58.6,81.8,50.5,39.5,30.4,64.3,75.9,81.3,66.5,101.9,83.2,110.9,49.5,55.5,61.5,65.3,105.2,113.2,53.4,49.6,38.4,40.9,44,24.5,27.3,35,33.4,114,85.2,46.1,38,51.3,105.2,43.4,59.1,68.7,62.2,58.5,87.8,43,82.1,111.4,145.8,75.3,106.7,89,81.7,74.2,36.4,48.3,48.9,45.7,46.3,71.3,71.5,77.9,189.7,40.4,29.3,56.2,69.8,72,70.3,60.1,69.5,63.4,61.2,63.6,97.6,36.9,37.4,33.2,33.1,62.5,105.6,126.2,111.9,86.1,49.9,124,142.3,92.9,36.7,144.8,58.1,53.8,62.6,40.9,39.4,65.8,60.1,87.3,61.2,27,45.1,68.6,12.2,43.5,38.9,39.3,65.3,51.8,76.1,17.7,22.6,32.8,66.5,59,25.8,26,36.2,41.8,42.8,36.1,31,35,7.6,66.7,45.5,57.6,61,54,37.7,87.9,65.7,64.2,68.8,78.7,71.6,88.5,81.4,101.1,36.6,128.5,54.4,48.1,7.5,38.9,72.7,2.1,105.2,82.6,94.4,114.2,54.7,57,52.7,47.4,51.9,80.1,88.9,69.4,51.8,46.2,39.1,46.3,33.7,7,19.5,22.5,39.2,19.9,50.5,56.6,68.3,73.9,78.1,55.2,51.4,43.2,81.9,29.3,28.7,10.5,41.2,57.1,66.6,66.2,44.5,65.6,63.8,81.6,68.9,26.1,108.9,91.8,71.7,44.3,30.1,69.4,81.6,122.7,112.7,129.5,79,97.7,45.8,131.1,84.4,56,51.9,76.6,67.7,60.7,66.3,62.2,66.5,63.2,58.6,68.4,61.2,46.9,64.4,58.9,62.2,104.3,37.9,56.8,81.1,40.5,10.7,25.5,5.1,41.2,45.4,27.4,23.5,20.1,18.8,18.5,12.7,9.2,21.9,4.1,17.2,20.7,19.9,13.3,5,27.9,39.9,14.1,31.1,37.7,37.1,26.2,26.8,31.8,37.5,18.4,23.9,71.7,32.4,35.1,54.8,48.1,48.6,47.3,46.8,36.1,28.7,20.1,21.9,26.4,23.9,19.2,27.2,47.9,30.9,32.8,42.8,39,25.2,21.4,18.2,23.7,14.4,28.1,27.1,27.9,31.7,50.8,34,28.3,51.6,35,28.7,35.5,39.6,30.8,21.6,24.9,28.6,30.3,26.7,31.9,42,31.3,39.2,36.1,33,33.5,39.9,38.1,46.2,48.6,41.7,34.4,30.5,38.9,49.1,39.2,47.9,36.3,47.1,44.9,43.1,50.3,55,50.2,50,44.5,48,29.3,40.9,32.4,38,36.6,41,38.2,46.1,42.9,48.9,34.9,44.9,21.7,26.2,36.5,18.9,13.4,17.8,20.8,28.3,20.3,23,18.4,18.9,16.3,20.3,23,16.6,15.9,12.5,17.5,13.7,13.3,14.4,17.9,21.1,19.8,28.9,25.2,20.4,23.4,21.6,24.8,22.5,27.8,29.1,25.9,20.9,20.6,20.6,23.2,19.9,22.1,19.4,22.6,24,20.1,21.5,24.6,19.5,20.1,11.5,17.4,22.6,19.5,19.3,20.7,23.7,20.7,20.1,25.5,14.6,13.6,18.8,26,27.4,14.8,6.6,22.9,21.4,17.5,24,9.9,13.8,22.8,32.2,48.4,49.3,39.5,35.6,26.7,51,34.9,48.9,78.7,72.9,100.4,91.4,16.5,32.4,47.8,28.5,27.7,34.2,30.6,29.6,24.7,26.7,24.8,23.9,21.4,33.2,27.1,44.8,100.1,47,44.2,51.1,60,33.6,44,51.2,64.1,63.8,71.8,63,58.2,61.8,1.1,40.9,35.2,38.8,26.4,40.6,18.5,60.8,76,43.5,41.2,42.3,57.6,31.4,58,55.9,48.9,54.9,53,38.3,47,46.2,21.5,16.1,9.4,35,30.3,40.3,19.6,15.8,25.7,40.5,41.4,42.3,47.3,45.8,36.9,53,13.7,16.1,32.2,34.2,26,16.5,18.1,13.4,10,33.3,34.2,46.2,37.5,34.5,39.2,41.3,43,53.1,75.9,52.2,52.9,46,37.9,35.1,39.3,32,24.5,34.4,38.8,37.7,29.9,33,39.4,29.3,31.1,28.8,37,40,36.5,38,40,47.7,47.9,45.5,28.4,34.5,46.6,43.9,38.7,51.8,44.8,60.9,49.5,50,31.3,37.1,77.6,48.3,35,24.1,28.4,32.9,33.9,32.9,31.7,27.2,34.1,32.1,36.6,39.1,34.5,26.7,35,43,31.7,29.9,33.8,34.8,32.9,30.6,24.8,26.4,30.2,37.2,30.1,33.6,35.9,40.1,41.1,44.1,24.9,28.6,23.5,39,34.4,25.3,33.9,37.2,37.2,28.6,44.7,11.5,37.2,51.9,62.2,0.9,41.7,33.4,38.4,22.6,13.1,43.4,23.8,14.9,27.8,22.9,68.6,56.4,48.9,47.3,66.4,73.2,28.9,12.7,16.4,14.5,57.8,25.2,29.5,31,25.1,39.1,15.1,28.9,151.2,154.1,341.5,114.8,117,125.7,104.9,97.6,109.9,106.1,143.8,158.8,136.9,95.6,103,148.4,92.6,113.8,208.2,53.5,55.1,47.9,46.4,86.3,181.4,88.2,89.6,81.9,96.7,100,90.8,115,179.5,127.2,102.2,103.8,110.5,122,72.4,77.3,75.5,60.4,146.4,65.4,78.1,171,186.1,89,54.5,57.1,34.8,131.3,276.9,230.1,211.3,175,161.4,15.9,64,85.1,85.3,111.7,107,117.2,242.5,168.2,95.6,93,105.6,93.9,99.8,100,102.2,96.6,97.4,98,85.1,42.1,66.2,54.2,69.3,63.5,57.9,81.5,86.1,92.3,94.1,233.6,131.8,139.1,110.8,89.7,107,117.8,119.3,119.6,320.2,128.8,85.7,170.5,89.8,119,57.9,72.7,81.2,97.7,166.7,59.4,68.4,68.7,95,110,111.4,92.8,102.3,99.7,109.1,84.3,89.9,120,179.6,126.6,101.2,92.9,94.1,119.7,86.5,57.6,68,61.9,104.9,114,56.7,55.3,75.9,136.1,181.5,52,56.5,62.8,63.6,192,83.1,89.3,81.5,101,192.9,93.8,17.3,60.5,37.3,7.1,107.3,114.4,61.8,62,47.6,50.4,44,42.8,65.1,71.4,152.3,148.8,103,105.6,39.6,180.4,119.4,103.8,93.9,6,83.2,388.4,0.3,99.6,96.6,50.7,121.2,79.2,65.1,77.6,78.6,90.8,101.9,80.9,65.2,87.9,117.5,104.8,97.8,94.9,109,88.9,79.5,90.8,78.9,101.8,81.9,77.4,20.1,59.8,16.3,47.5,66.6,14.8,36.3,60.7,55.5,5.4,123.8,63.6,7.6,93.4,116.9,74.4,79.7,75.7,66.2,85.9,249.7,71.9,97.7,65.3,63.3,81.5,85.9,76.4,65.7,66.1,65.5,65.7,76.6,68.2,88.4,99.6,80.8,81.6,71.2,52.6,4.8,90.6,104,108,172,69.4,74,77.3,89.3,93,171.4,82.9,79.7,81.7,63.2,81.2,61.3,63.7,66.6,61.4,67.3,65.8,101.9,317.7,99.5,90.8,85.6,270.7,51.5,108.1,54.9,40.3,30.9,63.8,48.9,65.1,59.9,140.3,209.9,196.7,81.3,75.2,155.9,132.1,98.5,467.4,126.5,118.5,117.3,93.1,57.8,37.9,65.2,63.2,67.3,35.2,28.5,89.7,96.5,97.6,20.2,25.2,37.6,25.9,52.5,92.5,17.8,26.9,26.5,26,25.5,19.8,20.5,24.4,21.8,23.5,24.2,33.2,25.5,27,25.3,26.3,26.8,26.5,89.2,38.8,26.9,26,71.6,32.4,27.3,26.5,25.7,31.2,33.5,75.1,40.8,18,22.7,5.7,1.7,13.6,28,7.5,18.8,9.6,157.4,54.3,26.7,26.4,26.6,25.8,21.2,19.2,22.3,19.2,19.1,10.7,169.9,61.1,44.5,21.2,25.2,24.4,27.1,39.6,30.3,23.3,25.2,27.1,25.6,24.8,14.6,34.8,29.9,86.5,192.3,66.7,43.2,16,10.9,36.4,64.9,45.4,50.6,49,29.7,39.5,51.2,41.5,39,49.7,28.7,51.1,50.8,53.1,63.8,50.9,37.1,39.3,55.5,57.6,36.2,38.8,32.2,48.1,50.6,38.5,38.2,68.4,65.1,23.9,26.1,27.1,28.2,36.5,37.8,41.1,24.3,28.6,38,27.4,39.7,40.1,54,128.7,42.5,51.9,53.9,39.5,39.4,26.1,27,25.3,26.4,38.2,53.4,25.8,32.3,31.5,26,37.5,40.6,50.5,37.2,42.7,53,49.4,60.3,58.2,48.8,53.9,48.6,53,52.9,36.7,91.3,36.8,45.5,49.7,49.6,51.7,39,47,54.5,52.5,52,76.5,53.1,50.9,50.9,57.1,89.1,49.3,50,41.6,36.8,27.4,35.9,25.3,54.7,52.1,0.7,75.7,36.8,48.2,58.2,44.3,58.3,54,38.1,46.7,45.5,55.9,51.8,42.4,44.8,84.6,81,48.2,42.3,52.4,51.9,91.6,45.1,35,49.4,45.7,37.5,43.7,45.4,64.9,51.8,41,63.4,65.7,79.4,65.1,51.7,52.3,49.8,46.7,88.7,38.9,104.7,25.4,26.4,51.5,53.3,51.3,41.7,61.2,52.1,27.1,38.7,36.8,54.7,50.2,54.4,65,37.1,28.7,53.8,67.7,78.8,61.6,52.9,37.6,38.7,39.4,39.7,68,125.5,130,54.4,39,41.8,25.2,28.7,23.5,30.3,27,24.5,15.4,27.7,26.2,28.2,31,35.7,29.6,20.3,28.7,28.7,28.7,3.1,32.7,40.1,41.5,32.2,176.2,65.8,28.7,52,50.7,47.5,36.6,44.3,133.3,40,59.2,34.1,55.7,46,45.8,56.5,58.4,49.6,66.9,38.3,91.3,51.6,52.3,50.2,40.5,33.6,26.7,42.5,28.5,50.6,39.1,39.1,38,37.4,27.2,39.2,26.3,26.3,23.8,33.7,43.3,41,64.3,39.3,25.2,42.2,28.2,35.3,40.6,37.9,68,76.2,88.8,27.4,29.1,64,24.8,27.5,30.9,32.1,41.9,42.6,7,58.2,58.6,60.9,94,60.1,82.1,89.8,78,126.1,57.2,40.8,74.8,37.7,50.8,39.2,39.3,29.8,35.5,40.6,32.3,44,28,38.3,38.6,24.6,51.3,25.7,20.6,32.3,47.1,28.3,29.7,49.5,52.1,50.8,47.1,34.9,47.5,41.2,9.9,28.9,58.1,95.7,54,87.1,111.3,112.2,58.9,48,14.5,41.5,24.5,31.4,55.3,25.5,41.8,52.7,30.3,70.1,44.2,78.6,78.2,64.5,104.3,171.1,61.6,48.1,54,63.5,47.2,47.8,38.6,36.2,37.4,36.7,40.1,31.7,35.1,30.9,39.7,60.3,49.7,51.5,74.4,73.6,61.7,63.6,102.4,72.1,62.5,100.3,102.3,444,132.3,100.6,51.5,37.8,69.2,65.1,48.5,43.7,55.9,57.7,39.1,38.1,41.6,80.3,37.2,30.3,56.1,35.6,37.4,60.2,25.8,59.6,38.8,36.3,73.9,39.4,60.9,69.7,56.3,37.8,36.6,25.9,37.2,25.7,50,41.2,35.5,24,27,35.8,40.4,36,37.9,25.6,32.2,42.9,14.3,25.2,50.1,74.5,63.5,88.3,56.3,108.2,65.4,72.2,39.1,50.4,38.7,18.8,5.1,26.8,48.9,51.1,49.5,38.7,51.3,37.5,37.8,39.3,23.5,51.8,25.9,37.4,25.8,26.3,24.3,25.4,24.8,25,38.3,25.6,39.7,56.7,54.7,50.6,42.4,90.2,44,39.6,26,38.6,50.2,50,24.8,22.6,25.3,17.7,18.8,16.7,22.1,24.9,24.3,18.2,20.4,24.2,24.3,24.2,25.7,25.2,25.4,30.4,29.8,37.8,25.6,25.9,36.2,50.7,49.6,36.9,37.2,49,25.9,38.4,35.4,26.9,25,36.2,24.6,26,37.6,38,23.4,38.7,37.7,38.3,36,25.1,25.2,25.1,23.8,24.6,26.9,24.3,24.1,26.1,36.9,25.3,37.9,43.2,50.5,26.2,37,7.9,43.3,38.6,34.3,14.4,269.6,16.5,13.4,32.6,29.5,31.3,31.5,26.1,37.7,31.4,22.2,31.1,27,29,20.9,27,37.2,27.2,24.2,31.8,34.6,28.8,38.5,44.3,40.7,41.2,42.5,55.6,36.8,47,37.7,35.5,48.7,35.5,6.4,40.4,37.6,60.8,99.7,41.6,34.3,9.1,119.4,118.8,8,8.5,42.1,103.7,48.6,62.1,19.5,9.6,116.5,242.3,227.7,334.2,200.1,96.9,201.2,100.6,98.4,197.9,83.9,143.2,92.7,143,139.6,13.3,134.2,222,143.7,120.9,376,182.5,201.3,200.6,200,173,123.6,200.9,103.7,195,202.1,166.2,167,167.3,183.9,111.2,410.4,35.5,130.3,265.2,270.2,139.8,264.8,317.2,212.1,172.4,173.9,523.3,402.6,169.3,86.5,64.6,44.4,51.8,64.6,69.5,48.2,53.8,46.1,56.3,71.4,72.7,78.6,84.9,93.4,59,64.6,29.5,21.8,65.6,41.3,42.5,50.5,36.1,50.2,4.1,45.6,46.3,43,47.7,30.6,39.5,47.2,46.5,44.2,42,47.9,39.6,43.9,52.6,45.4,46.8,38.8,39.7,38.4,36.9,52.7,30.9,37.6,51.5,33.9,52.7,40.8,30,68.8,41.2,44.9,74,39.3,64.7,94.3,58.4,43.2,23.6,51.9,38.1,30.8,29.4,61,71.1,64.6,49,51.9,40.1,131.1,173.5,168.4,22.2,131,99.6,143.1,123.3,123.4,125,569.3,326.6,262.6,263.9,175.5,180.6,169.2,162.6,190.3,155.9,148.1,170.7,146.5,80.7,165.5,511.5,267.6,270.6,209.8,213.7,179.1,179.5,175.4,353.2,167.9,103.5,100.3,99.1,102.4,102.4,99.3,99.5,102.6,101.3,101.2,99.8,99.4,257.5,51.9,53.2,37.7,36.3,66.1,45.4,44.3,35.9,34.1,34.8,38,74.3,105.6,90.3,260.3,156.6,41.2,71.4,183.5,195.4,258,256.8,124.4,126.6,69.3,38.7,20.9,130.8,129,128.1,198.6,153.2,126.4,135.7,142.7,150.2,111.2,82.9,114.4,153.6,152.8,461.2,6.2,155.8,122.5,102.1,104.1,104.4,102.2,103.6,103.9,119.4,257.4,127.8,174.2,61.1,67,90.9,75.8,361.4,107.8,102.5,99.9,100.3,103.7,97.3,93.7,112.5,104.3,675.7,206.1,209.1,555.9,207,135.9,37.5,361.7,145.7,243.4,544.9,126.2,223.1,173,214.8,148,458.1,52.1,51.7,38.5,39.4,26.5,38.7,25.3,25.8,25.8,26.3,26,25.4,26.1,26.1,27.9,23.2,26.4,25.9,25.9,25.5,26,26,38.5,40.4,40.1,26.3,26.4,27.9,25.9,36.4,30.1,27.8,26.2,32.6,46.7,28.3,97.8,35.4,39.9,29.7,21.3,39.6,20.3,20.8,52,24.5,7.3,16.3,20.7,21.6,21.2,26,36.1,29.7,45.6,34.8,32.3,36,32.8,34.7,35.9,40.5,36.4,28.4,38.1,26.8,39.8,37.2,26.3,11.5,14.2,27.4,42.5,28,33.1,32.3,33.5,37.1,39.9,25.8,51.8,39.3,38.8,39.8,38.7,65.5,26.4,25.7,26.5,25.2,27.1,30.4,33.6,26.6,36.8,27.7,25.5,27.1,28.1,23.9,50.1,51.4,44.9,35.7,39,34.9,31,127.1,221,46,48.3,50.2,49.1,60.9,36.3,21.8,13.4,59.1,59.5,114.1,78.1,78.8,78.6,91.3,104.5,105,52.2,53.4,111.8,149.7,149.4,191.2,307.8,500.6,301.7,197,96.7,106.2,99.9,102.2,100.7,198.2,225.4,248.4,206.3,12.6,219.1,176,238.1,181.5,229.5,199.6,208.1,80.4,486.7,124.5,134.1,238,118.3,122.1,137.6,142.1,137,135.1,114.5,59.7,103.1,53.7,648.9,719.6,155.6,101.1,102.4,151,153.7,153.6,150.6,254.7,456.6,516.1,274.4,206.6,205.7,203.9,207.1,268.9,243.8,376.3,72.2,79,111.6,93.7,89.5,150.7,99.2,83.4,75.6,161,117.2,219.4,544,149.3,522.8,615.9,211.8,303.8,351.3,352.5,627.5,37.7,98.3,140.8,215.6,36.2,122.2,141.3,179.3,309.3,258.2,276.9,293.8,86.8,95.9,66.6,82.6,66.3,62.1,69.4,59.7,12.2,38.8,108.9,67.6,88.6,86.5,64.2,331.1,207.6,171.5,202.7,148.7,147.3,168.6,185.6,306.4,853.3,633.2,52.2,54.4,139.5,94.7,152,495.7,182,182.8,314.4,224.5,460,107.3,251.3,53.1,40.4,39.9,155.1,41.8,170,57,225.3,128.1,12.9,74.5,0.2,72.9,61.3,107.4,114.4,80.9,81.2,85,103.1,74,60.7,59.7,90.2,78.7,77.3,194.8,116.7,71.7,71.1,117.2,116.2,116.9,142.7,73.3,73.4,83.3,90.3,1.3,85.5,64.7,56.3,55.3,93.7,93.9,181.4,157.9,8.2,150.5,721,604.7,458.2,248.1,182.3,159.1,184.5,609.9,960.3,589.2,348.2,53.7,2.5,124,265.5,58.4,177.3,172.4,99.4,175.4,176.8,203.1,196.1,300.7,436.4,247.9,242.3,197.4,3.1,172.6,172.8,187.1,191.3,190.6,239.3,358.1,142.4,229.4,207,379.9,187.6,537.7,228.7,438.6,348.6,158.2,102.4,172.1,99.3,251.6,272.5,269.3,482.8,506.2,435.3,561.6,662.5,511.6,520.8,350.3,216,222.6,200.6,229.5,156.6,226.3,44.5,238.1,199.3,132.7,107.7,98.1,247.6,397,98.4,252.1,327.9,2.4,518.1,132.8,131.4,120.2,111.4,107,538,402.7,191.4,200.4,143.4,123,153.6,177.7,177.9,135.7,146.4,119.5,145.9,199.9,240.6,171.1,168,165.9,159.8,159.6,214.8,222.9,236.8,127.2,81.9,122.3,105.6,258.3,162.1,154.8,158,122.9,144.7,149,137.9,141.3,287.6,553.9,307.4,191.5,46.6,34.2,228.1,279.7,281.4,166.4,83.8,133.4,136.2,109.8,108.1,56.3,110.3,96.7,100.6,102.5,102.9,203.7,196.7,199.7,103.7,150.7,211.3,231.3,20.7,231.3,841.7,214.4,170.6,151.4,171.1,135.3,136.2,144.8,44.2,295.7,165.8,119.7,118,121.5,112.1,173.2,205.3,88.1,91.6,70,136.4,216.4,1.7,249.2,575,191,58.6,89.6,31.2,78.1,67.4,174.7,111.1,41.5,137.7,162.6,51.2,27.1,122.9,116.5,52.6,45.7,26.9,100.7,94.6,27,140.7,141.4,142.3,48.6,164.9,240.1,81.5,42.2,143.7,107.4,140.3,140.9,85.7,86.1,80.5,85.9,35.7,24.8,116,114.5,261.3,455,221.4,392.2,48,344.8,369.1,235.3,225.2,320.8,70.8,87.2,285,368.5,229.8,97.1,261.9,211.7,82.3,44.1,42.4,90.9,78.3,27.6,95.7,104.4,98.8,186.6,178.3,160.1,72.6,221.4,159.3,207.2,135.3,53.6,51.9,185.5,252.2,124.7,112.9,109,104.4,137.8,107.3,65.5,121.4,56.1,53.5,87.3,56.4,52.6,44.1,42.9,45.6,46.7,100.7,112.3,68.6,57.2,104,95.6,73.7,74.2,59.2,59.7,82,82.7,64.2,68.7,135.1,273.2,66.3,71.2,97.5,132.3,60,61.4,410.3,8.8,404.6,191.4,74.6,64.3,65,1.6,51.9,50,49.6,48.9,31.1,32.4,66.5,15,53.3,49.2,54.9,63.4,78.1,81.4,158,58.3,53.4,49.5,47.7,34.7,34,42.9,46.2,35.4,239,101.3,88.7,20.8,84.7,87.4,60.8,71.1,82.2,0.4,84.7,62.3,63.4,64.1,61.5,126,47.1,170.4,264.5,139.8,34.8,30.8,103.7,123.3,46.9,24.9,23.4,95.8,29.6,140.8,163.2,81.4,18.9,51,53.6,40.1,37.9,38.6,35.6,73.8,85.2,80.7,76.8,83.6,82.6,55.5,63.7,91.9,108.1,49.6,39.3,58.4,62,149.1,33.2,147.3,17.5,58.2,143.6,139.3,289.7,261.8,64.3,255,124.1,66.1,56.9,101.6,52.4,54.9,73.4,53.1,49,67,60.6,67.4,58.5,103.7,223.7,69.9,61.9,63,54.5,66.1,68.3,51.5,167.3,79.1,33.2,45.7,56.3,47.9,7.7,52.1,47.1,25.3,10.8,38.4,46.7,41,81,60.3,55.1,44,50.2,56.2,39.2,54.9,46.2,49.6,51.8,15,51,116.2,61,64.2,120.9,146.4,39.8,80.8,87.3,159.6,77,176.8,144.4,138.3,75,115.8,105.1,225.8,278.1,138.9,68.6,66.2,224.6,58.4,61.1,103.4,44.4,66.1,107.7,219.1,108,102.1,112.8,95.8,321.7,89.9,84.2,106.5,78.2,194.5,90.4,53.9,44.8,159.1,218.2,125.4,89.4,74.1,83,107.8,93.1,67,133.3,107.4,56.4,37,70.4,104,55.2,58.3,40.6,32.7,58.2,49.8,45.2,50.8,45.8,64.1,64.3,67.4,33.1,33.4,63.1,60.9,94.9,44.4,45.6,39.7,36.4,42.7,42.8,60.4,32.9,51,57.7,72,106.4,17.8,136.7,57.6,61.8,63.2,73.7,26.5,108,58.6,43.7,43.9,43.4,60.3,17.3,76.2,69.4,104,100.4,102,68.2,35.5,66.6,73.4,2.9,79.8,153.2,135.7,205.7,271.1,185,86.1,159.9,192.8,673.7,169.7,40.6,33.7,42.9,93.8,39.3,44.3,40.9,54.5,37.1,101.8,215.6,521.3,39.6,59.9,103,107,147.7,94.8,89.3,119,104.3,84,38.3,36.1,162.8,150.4,56.8,26.5,289.2,23.9,123.2,135,130.5,120.2,191,188.4,379.5,798.3,36.7,472.1,23.6,280.9,169.1,63,105.8,115.1,151.6,76.3,98.8,90.5,90.4,90.5,103.9,50.2,48.2,457.7,256.9,254,150,68.6,252.6,182.7,163,221.4,255.6,83.4,86.6,248.7,112.5,119.7,238,121.5,69.3,66,59.2,55.6,108.1,99.4,142.8,79.3,74.2,175,290,211.4,102.6,87.2,107.4,105,72.4,78.1,146.8,348.4,18.3,397,324.3,284.8,309.3,493.1,175.2,186.3,150.6,160.3,195.5,156.6,292.5,116,122.4,197.1,215.3,158.3,57.3,87.8,122.7,46.2,38.9,59.1,41.8,73.2,43.3,52.4,80.4,43.7,66,71.5,111.3,105.4,111.7,88.9,146.1,26.6,58.9,124.7,73,110.3,94.8,159.6,157.6,86.9,90.4,106.8,208.3,173.8,171.9,84.6,25.8,73.2,150.3,134.2,72,83,105.1,71,129.2,135.8,195.8,187,184.9,102.1,83,134.9,120.9,126.3,92.7,68.7,70.8,102.7,51.6,67.2,94.4,100,81.6,87.2,23.9,60.8,114.4,78.7,102.6,126.7,156.9,152,206.4,236.4,127.5,80.5,113.5,72.4,86,140.3,110,110.7,118.9,159.6,99.4,164.5,165.5,191.8,83.7,101.1,118.8,65.5,110.3,110.7,179.8,137.3,53.9,165.3,124.6,135.1,89.7,23.6,110.1,117.4,235.8,201.5,77.8,89.4,132,137,155.7,74.6,79.8,74.3,50.2,71.7,74.4,76.3,72.6,47.4,57.6,100,75.5,72.2,60.8,79.8,78,77.1,142.6,71.7,77,91.8,53.3,58.6,73.5,70,87,78.4,61.8,55.8,106.9,156.7,77.6,78.4,65.9,67.1,76.1,62.4,105.6,78.7,68.6,19.8,85.1,87.2,71.8,204.1,59.5,48.1,56.9,106.6,56.2,78.6,92,115.7,117.2,166.1,149.2,172.9,144.8,196,99.5,173.3,122.7,132.6,137.1,273.5,272,114.4,107.7,82.1,71.3,95.1,74.9,105.5,67.5,82.5,98.7,92.1,103,88.1,118.8,124.6,111,117.8,150.6,151.1,187.5,247.7,164.6,77.8,65.4,72.3,73.4,70.4,68.5,56.1,54.3,60.5,59.6,64.4,83.4,73.4,67.8,89.3,195.5,236.6,201.7,191,117.8,132.5,103.3,119.3,158,177.1,136.7,123.6,154.6,158.7,158.8,139.5,80.3,76.2,53.8,63.6,80.9,61.2,93.9,39.5,65,65.1,66,70.4,161.3,2.2,163.8,74.1,72.7,61.4,62.5,69.9,71.9,62.8,62.3,52,54.7,49,53,71.7,35,41.5,40.3,5.4,127.3,177,109.3,58.2,18,224.8,37,36.3,33.8,58.9,53.8,43.2,44,52.7,62.8,64.3,61,48.4,29.7,69.2,49.3,51.4,66.8,58.3,57.1,56.8,64.6,65.9,90.3,60.1,55.1,34.4,91.2,83.2,94.9,82,64.6,81,70.1,31.8,93.4,91.9,143.8,108.8,58.4,154.1,74.1,42,13.2,64.5,104.5,98.2,72.3,71.6,94.1,183.9,116.7,130,76.9,18.7,88.8,48.2,94.9,144.5,74.8,36.7,90.8,75,63.9,147.2,137,90.3,110.6,80.3,78.3,105,145,144.7,138.7,101.1,112.7,139.4,187.1,167.8,155.9,119,217.3,212.8,131,171.3,171.7,152,250.3,91.7,51.4,38.1,89.7,59.2,43.4,55.7,65.8,72.3,77.2,76.9,58.4,62.2,68.5,88.7,47.8,56.6,65.9,73.4,49.4,63.1,69,68.6,66.8,62.5,54.6,112.2,67.1,66.6,64.4,55.2,61.1,50.6,65,63.6,49.2,51,59.9,65.5,32.6,65.2,54.1,146.4,133.4,51.5,54,83.7,46.5,48.2,37.9,55,25.9,26.5,44.4,45,30.5,61.1,14.4,49.1,8.3,24.2,19.3,81.7,45.2,96.9,64.8,30.3,40.7,39.1,42.3,67.9,66.2,89.5,268.4,26.3,447.3,1.2,151.9,125.3,262.2,88.2,20.7,102.3,161,172.2,99.4,106.3,136,185.6,144.8,94.6,60.6,93.7,78.5,54,57.3,61.8,76.2,63.3,81.3,75.5,21.1,27.1,49.2,58,46.1,67.4,54,49.1,80.8,101,75.5,98.2,81.9,161.4,325.1,316.5,164,236.2,321.4,361,351.1,2.6,238.6,48.3,288.6,231.8,210.2,136.4,258.5,259.4,289.6,119.8,15.3,84.5,133,80.2,116.8,113.2,33.3,103.9,122.4,218.6,132.8,126.7,369.7,176,192.3,199.5,195.4,310.9,216.7,215.3,61.4,408.5,362.4,132.6,26.9,53.3,23.1,83.9,129,34.6,66,96.4,96.8,209.6,120.9,233.6,301.1,257.9,301.4,263.2,108.3,157.5,7.5,68.8,4.7,151.5,101,16.7,18.7,104.2,134.5,90,237.4,270.3,262.9,94.9,104.2,247,165,137,154.8,96.5,197.6,203.2,225.8,99.3,88,87.7,98.1,124.8,275,150.2,151.3,289.1,12.1,297.4,186.3,31.1,48.8,230.1,13.1,22,38.1,43.4,88.3,88.8,107.4,168.5,174.6,87.5,89.9,154.6,75.5,53,57.2,160.4,111.4,124,150.4,146.4,150.2,99.6,214.2,99,157.4,10.8,79.3,122.4,89.7,94.9,70.8,63.2,44.9,84.1,68.7,57.3,66.7,204,95.8,88.1,4.1,119.9,104.6,61.5,68.4,157,2.3,222.1,9.7,37,444.4,22.7,35.3,143.7,113.5,78,8.9,60.1,165.3,25.2,92.6,105.8,128.7,27.9,48.9,37.8,77.2,75.7,159.5,86.9,91.3,117.3,103.8,19.3,31.5,53.2,130.4,13.3,34.3,90.2,130.7,95.5,64.7,46.7,75.1,57.6,60.6,40,43.7,51.2,57,54.7,60.4,57,59.7,82.6,40.8,36.9,74.4,56.3,66.2,110,113.3,141.7,94.6,89.7,186.3,21.6,140,121.2,156.8,187.8,241.3,196.4,189.1,122.5,195.5,37.3,93.5,188.1,49.3,129.8,176.2,94.8,102.3,9,73.9,127.2,131.4,77,58.4,121.1,50.8,44.5,107.3,127.7,140.1,83.3,106.3,113.9,124.1,74.2,76.7,143.2,172.9,117.6,82.4,46.1,81.8,80.6,21.3,97.7,108.9,89.2,97,169.5,90.2,153.8,87.3,84.1,59.8,66.7,90.1,86.1,71.4,92,79.7,83.8,70.9,66.7,100.1,101.1,96.2,135.1,232.3,236.6,77.2,118.1,141.1,216.3,132.6,135.9,107.3,66.1,45.1,30.2,77.2,43.5,39.8,64.9,53.2,43.1,36.7,58.2,42.6,46.5,43.6,40.3,65,59.6,120.4,121.1,151.6,250,43.7,174.3,179.9,86.9,91,175.5,67.3,54.8,48.6,45.4,40.8,45.7,42.3,0.7,52.3,39.6,43.8,45.1,46.9,42.7,44.2,53.7,50,47,55.6,90.8,192.6,120.9,53.1,71.7,57.4,59.1,6.2,50.3,41.2,92.7,99.5,108.6,110.5,133.2,66.1,106.6,85.2,82.1,85.3,66.2,98.3,63,65.2,42.4,55.1,63.3,66,68.9,78,52.5,64.8,85.4,56.6,79.2,100.4,51.8,81.1,77.6,73.5,75.8,86.6,71.1,110.6,85.4,103.3,96.5,90.6,82.1,74.6,59.3,97.7,60.7,34.4,51,62.8,51,56.2,49.9,72.7,66.3,65,65.5,59.3,57.1,77.7,60.4,53.5,64.4,50.1,35.5,18.6,64.8,39.5,60.7,76.2,135,83.5,88.1,53,28.9,147.9,119.3,7.7,60.4,62.6,129.2,66.3,40.1,54.2,12.3,90.5,196,56,141.1,14.1,52.1,67.4,105.3,75.2,131.4,70.2,86,144.8,54.8,111.1,63,134.5,64,68.2,82.2,89.4,82.5,132.9,89.9,83.8,84.7,97.7,124.2,78.1,82.1,84.9,131,131.5,124.9,89.7,57.2,174.6,81.3,89.4,93.8,36.2,68.8,94.5,81,102.4,33,53.4,90,89.3,96.9,57.5,61.1,118.3,113.3,172.1,209,40.5,63.3,92.1,45.7,268.2,121.7,67,58.9,119.7,123.5,96.8,40.7,55.3,98.9,99.3,101.8,2.5,56.3,76.3,62.5,97.4,119.2,181.7,43.3,46.2,109.8,34.5,152.8,104.2,108.4,63,130.1,91.9,58.4,40.2,45.8,30.6,33.5,33,31.6,52.7,48.6,65.1,42.1,86.8,60.6,60.8,28.2,18.5,16.2,15.7,14,12.8,18.4,19.6,48.1,18,24.5,100.4,45.1,174.4,16.3,31.5,28.6,39.3,60.3,66.4,79.9,82.4,92.6,97.4,57,25.6,26.7,27.3,27.6,25,21.4,18.3,18.9,19.4,15.1,23.8,198.2,58.8,25.9,46,40.1,34.2,27.2,22.7,53.1,27.7,22.1,17.3,17.7,23.8,21.9,23.6,22.6,30.6,15.1,9.3,9.9,19.9,24.9,22.5,25.4,26.2,29.6,61.7,42.9,72.7,61.3,60.4,96.4,69.5,46.7,40,49.5,41,30.1,16,18.2,31.4,27.3,25.9,23.9,26,26.2,26.8,26.1,28,63,94.3,127.8,59.7,55.5,24.5,36.8,23.2,32.6,22.3,20.7,21.2,21.6,24.6,25.6,28.1,23.3,27.8,25.5,25.7,18.4,53,23,18.2,19,21.7,15.8,24.4,29.9,28.4,24,22.5,19.7,18.3,16.6,21,22.9,23.5,17.3,16.2,38.4,28.9,6.9,29.7,79.7,116.5,73.6,84.8,136.6,81.3,32.2,87.2,28,112.8,58.1,70.6,70.9,70.8,84.5,110.8,40.2,33,48,68.6,109.4,138.5,79.5,23,20.9,24.3,24.3,18.2,26.4,26.3,34.9,94.8,95.8,32.5,58.2,61.9,121.8,59.2,17.1,35.7,54.9,47.8,24.6,53,48,50.4,39.1,92.2,18.6,57.4,123.5,92.3,81.1,78.6,52,36.5,41.3,58,47.9,27.2,27.6,49.5,35.3,34.3,42.4,40.3,41,21,24.8,15.3,16.8,30.4,33,33.5,36.1,32.1,25.9,29.6,35.6,112.3,67.7,135.7,214.3,337.5,245.5,68,175,150.4,264,169.3,174,116.3,82.1,99.7,143.1,226.8,157.6,180.4,254.6,306.2,215.5,117.6,327.5,383.3,240.5,75.1,75.4,164.6,384.5,313.7,139.7,138,225.8,149.8,140.7,131.6,97.1,98.5,127.6,71.3,38.5,40.7,80.8,135,125.1,80.5,78.2,72.6,102.1,112.8,124.8,14.8,120.6,151.5,92.4,125.9,200.1,101.5,183.7,135.4,151.2,138.7,138.8,125.2,100.4,105.9,255.9,156.3,221.6,167.4,120.1,35.8,68.7,58.1,0.3,165.9,80.1,105.4,92.1,108.9,101.4,109.4,105,78,94.1,97.1,105.1,134.9,163.1,112,0.5,118.8,116.1,120.2,113.4,111.5,125.7,62.8,57.9,85.5,108.6,99.2,99.5,11.8,30.9,81.1,62.2,146,155.3,40.2,50.8,112.6,59,74.4,172,92.7,156.6,83,82.7,52.2,71.7,179,208.2,78.7,69.6,149.1,124.1,94,46.5,7.1,101,96.5,52.5,269.4,36.1,100.2,170.3,118.4,101.1,77.7,54.8,224.2,167.2,48,106.2,139.8,184.8,176,80.3,107.2,204.1,110.9,65.4,91.7,72.6,10.2,39,53.4,280.7,161.3,163.4,268.4,241.1,140.4,4.9,109.6,134.1,175.8,174,123.2,115,230.6,127.7,134.4,99.9,37.3,45.5,11.3,121,107.6,42.3,74.9,103.7,105.2,73.4,74.9,77.5,58.3,59,67.2,77,71,121.1,82.7,97.1,64.7,80.1,63.7,45.6,40.4,120.5,97.4,86.5,72.9,108.2,105.8,84.6,72.3,78,90.6,80.2,76.5,90.4,65.5,73.7,76.2,79.5,90.6,89.3,96,85.7,85.1,125.2,209.3,189.1,125.4,167.8,111.8,129.1,95,101.8,116,117.5,121.2,113.3,115.6,227.3,108.4,55.9,155.8,98,121.3,214.4,104,59.8,15.7,52.9,157.7,99.6,98.6,104,63.1,67.2,67.1,136.9,115.2,94.7,151.5,174.3,65.2,66.6,47.4,70.2,46.1,60.3,61.2,64,103.6,11.7,76.4,75.9,60,95.1,66.7,60.4,69.6,64.3,60.2,90.1,86.2,65.4,68.2,64.1,80.6,145.4,168.3,101.9,103.3,91.7,90.5,103.2,59.4,60.6,56,11.9,91.9,25,73.6,50.3,52.5,104.9,98.4,55.8,121.9,94.7,94,134.8,261,258.6,217.8,221.2,178.2,160.8,121.7,117.4,184.7,212.6,142.4,152.9,223.1,184.9,191.4,201.4,245.8,221.5,235.1,222.9,170.1,154.5,19.6,91.6,106,188.8,143.7,137.9,31.2,50.2,71.3,130.5,209.2,176.7,173.2,122,153.5,145.9,296,179.1,111,68.7,109.3,79.1,148.5,150.1,138,154.2,145.5,182.1,61.8,44,76.8,206.5,83.7,80.8,109,77,68.1,143.5,50.9,45.4,116.9,164.2,103.5,114.9,141.6,100.9,94.3,75.3,106.3,67.8,104.5,83,85.1,80.5,10.3,68.1,68.5,102.7,109.5,156,160.8,120,213,107.6,103,79.8,77.3,117.7,121.5,123.6,14.7,18,60.5,145.7,83,72.2,78,83.9,50.3,66.8,86.7,84.4,136.3,121.4,89.9,91,102.4,107.6,114,193.1,133.1,311.1,139.5,104.1,78.8,69.2,80.7,57,72.3,92.7,12.9,105.3,111.6,76.6,94.9,116.9,120.9,122.5,125.6,62,56.4,49.4,95.3,110,92.5,199.5,145.4,250.5,101.5,130.5,102.8,92.2,194.9,158.8,101.4,64.2,231.6,332.3,70.6,161,135.2,166.1,209.6,184.8,179.3,166.3,97.7,138.2,139.3,128.7,81.4,57.1,91.2,186.2,211.3,245.5,186,154.6,123.1,131.9,131.2,123.3,86.6,119.7,120.5,40.6,36.6,193.7,201,182.1,230.2,202.9,170.5,195.1,142.5,136.5,157.3,139.1,138.8,138.3,129.9,142.5,116.1,113.3,101,98.7,73.5,90.1,102.2,176,95.6,18.4,68,8.5,149.4,101.4,146.1,84.6,82.3,68,68.6,61.4,55.4,118.4,102.3,137.8,131.9,87.8,89.3,54.2,106.3,86.9,88.8,61.4,56.6,100.9,62.5,74.7,54.6,77,61.4,42.9,85.6,77.3,64,59.9,74.3,103.7,114,97.3,80.7,65.6,99.8,145.4,146.4,97.4,78.8,61.5,21.8,69.6,74.7,120.7,107.1,108,82.4,86.3,88.2,103.7,104.5,66.5,110.9,522.5,357.7,16,55.8,206.2,209.5,194.2,227.1,132.8,103.1,94.4,90,68.3,79.9,99.7,110.1,118.3,120.8,126,96.7,154.1,170.7,113.3,110.8,110.8,76,101.1,54.3,61,47.3,79.4,70.6,75.2,49.2,77.7,68.9,13,96.2,124.2,242.4,109.7,61.9,97,102,101.4,125.6,56.2,117.9,66.4,97.2,67.8,73.9,105.8,92.8,60.8,119.5,98.3,117,79.3,124.4,69.7,122.7,57.1,66.2,46.7,40.4,34.6,61.9,70,92.9,151.3,62.8,68.8,78.7,70.9,82.3,107.1,83.6,60.5,56.9,110.3,68.7,72.6,98.3,75.6,89,75.2,23,45.8,64.6,65.3,70.7,137,214.6,220.4,170.3,121.8,90,87.6,78.9,39.2,52.7,51.1,73.7,66,73.1,66.5,83.5,102.5,62.1,62.8,63.3,194.6,198.4,150.9,135.7,15.1,135.6,130.9,67.1,90.8,3,100.8,198.9,271.9,11.7,116.4,48.6,102,73.1,114.6,51.8,68.9,103.2,125.8,99.1,66.8,99.5,84.7,59.1,60.5,70.7,83.8,82.6,69,79.9,72.4,62.6,70.5,74.5,74.6,66.4,55.1,67,58.5,66.9,69.1,64.9,69.2,51.8,65.4,49.2,44.6,42.7,60.4,47.5,35.1,44.1,46.4,46,47.2,63.2,69.8,28.4,57.3,58.6,57.8,35.7,48.1,53.2,51.5,53.3,78.9,67.8,57.4,59.1,65.1,81.7,47.5,98.9,85.3,29.4,56.9,65.5,54.6,62,68.8,87.3,79.6,62.4,76.9,78,60.1,46.8,46.3,75.7,63.2,61,34.4,63.5,75.3,68.3,74.9,96.8,84.6,87,53.2,64.2,78.3,62.5,71.6,63.8,82.2,62,63.9,83,75.5,61.3,72.7,60.9,63.2,73.2,116.6,75.3,67.9,45.8,55.8,62.6,67.5,57.2,57.4,61.7,55.6,67.1,70.3,67.5,81.5,62.5,46.6,81.9,65.5,76.2,71.4,69.3,78.2,75.7,58.1,67.4,76.4,65.4,56,58.1,63.6,61.8,49.5,66.5,60.5,64.5,66.7,72,55.4,72.1,63.4,66.7,51.7,47.3,49.3,46.7,30.4,11.9,60.3,174.2,73.7,87.4,11.4,81.7,67.6,70.9,67.6,62.5,79,54.2,57.5,57.7,37,67.8,84.2,35.7,59.2,54.1,64.3,66.3,63.3,60.5,86.4,82.2,102.5,137.4,272.4,216.1,111.9,104.5,91,89.6,73.5,72.4,67.7,84.9,79.9,91.5,79.8,64.6,80.3,90.8,89.1,67.9,20.5,88.3,51.6,71.5,122.5,156.9,193.3,161,182.8,148.8,163.7,131.3,78.5,93.4,80.8,71.2,110.9,109.8,117.8,105.7,17.8,138.2,112.7,118.9,193.4,110.9,85.1,46,51.2,62.2,59.6,87.1,52.4,51,46,72.9,89.7,78.4,96.9,62.3,64.2,58.1,63.1,68.7,107.7,101.3,76.7,77.7,66.8,62.3,62,68.3,61.9,57.4,68.1,76.9,69.4,70.8,67.1,93.2,77.2,67.6,49.2,53.5,57.3,62.1,66.9,54.2,67.5,73.3,60.6,106.4,178.6,182.7,83.8,42.7,62.4,56.8,64.3,36.6,72.2,54,61.6,55,61.3,83.8,84.6,59.5,59.1,57.4,66,99.4,46.7,137,55.5,76.4,57.1,134.1,86.4,66.3,66.7,63.4,62.4,57.7,42.9,57.1,63.1,69.4,69.1,65.4,62.5,72.2,84.6,133.4,75.8,79.5,51.5,56.1,68.6,77.1,66.3,68,60.7,71.3,73.6,116.8,105.6,103.8,73.2,85.5,67.3,65.9,70.6,60.6,78.8,67.3,53.5,54.7,54.3,58.3,64.7,66.8,70.8,55.1,59.8,71.3,79.2,76.6,81.4,70,56.4,71.8,58,115.3,80.6,92.2,81.7,46.7,72.7,53,65.3,73.5,64.6,79.7,74.4,61,67.4,82.5,72.8,58,52.8,45.8,59.5,52,67.1,50.8,30.2,53.7,75,64.3,81.5,66,143.5,195.9,127,98.5,134,78.9,85.2,83.8,81.7,73.6,75.8,54.9,54.5,75.5,6,72.1,62.7,58.7,93.8,58.9,63.7,71.4,75.6,82.1,80.7,86.9,105,99.2,145.6,75,74.5,77.4,66.8,78.6,80.9,94.1,102.8,70.8,89.7,63.5,56.9,53.6,48,63,64.5,56.1,52,65.5,60.9,78.1,85.1,93.7,212,70.8,63.9,66.3,62.5,66.5,65.8,74.4,56,46.1,39.4,74.1,97.1,155.8,67.8,38.2,76.8,56.9,57,53.3,59.1,64.8,56.3,60.7,47.7,58.8,66.5,76.1,171,94.8,79,16.8,30.2,89.4,67.4,70.2,75.5,64.5,79.5,84,79.8,80.7,118.1,104.7,68.1,57.2,45.5,138.9,174.3,132.1,73.8,64.6,131,84.3,83.6,92.8,98.3,97,101.3,94,68.4,98.1,88.1,92.8,73.4,66.2,16.9,127.7,15.8,191.5,64.2,130.5,131.4,118.1,141.2,41.6,103.8,68.3,77.9,102.4,43.2,39.9,67.5,68.8,106.2,86.6,113.4,195.4,192.6,173,248.4,354.7,374.4,205.3,173.7,35.6,170.7,172.6,80.7,79.3,127.6,103.6,115.1,128.8,160.3,105.3,105,49.6,47.8,76.7,73.2,94,43.3,56.6,53.5,73.6,72.1,86.4,81.7,84.2,120.1,34,191.4,4.7,106,95.5,99.4,106.3,95.6,77.9,85.5,90.8,77.2,67.3,109.8,122.1,114.4,183.5,18.1,66.2,67.2,60.3,74.2,62.9,67,66.5,79.3,73.9,47.9,56.7,53.7,93.6,85.3,23.7,91.9,106.7,165.6,148.2,251.9,323.9,68.7,93.3,54.7,153.4,397.5,249.1,358.2,81.5,65.9,61.7,66.5,75.1,51.1,45.1,61.5,58.7,58.7,62.1,64.3,53.1,8.2,57,53.2,62.6,67,77.2,62.7,60.9,61.6,68.9,92.9,118.9,49.8,42.9,54.5,72.1,67.3,59.7,62.7,62.8,58.3,64.1,53.9,67.9,79.7,75.8,90.2,86.7,60,68.3,60.4,70.9,64.4,69.1,78.9,149.9,147.3,191.6,148.4,261.5,142.9,77.2,65.6,59.6,50.8,56,58.4,59.1,58.3,73.2,65.6,99.9,119.5,83.8,62.6,65.4,56,65.5,58.9,58.2,68,74.4,67.3,62.8,63,69,57.7,58.3,82.5,72,58.7,60.1,63.2,50.3,67.1,64.4,61.3,42.9,57.7,43.3,26.9,46.9,50.5,68.1,65.7,72.2,48.6,164.3,38.9,62.4,40.8,50.1,71,43.6,76.1,68.8,64.4,62.6,92.3,172.8,58.1,124.3,87.3,108,352.8,176,164.8,10,45.3,79.2,68.7,25,58.9,45.2,88.2,217.3,31.9,33.3,32,33.8,26.7,24.8,25.2,30.9,33.3,32.6,40,42.2,36.1,29.8,25.4,20.6,27.5,31.7,20.4,9.2,29.7,87.6,46.4,34.1,30.7,33,39.2,68.4,129.3,56.2,23.6,41,67.1,23.4,33,33.1,65.9,69.5,58.2,71.7,39.5,65.3,47,64.5,63,79.1,99.8,74.1,62.3,54.6,51,57.6,37.8,128.1,37.5,119.1,124.6,15.8,401.1,13.2,451.1,35.6,344.9,71.6,654.7,60,50,67.1,41.2,35.9,167.7,103.4,21,77.9,103.2,113.2,196.7,88.1,53.4,85.7,34.8,94.4,68.8,88.3,126.8,36.1,140.9,75.8,100.5,126.1,103.2,117.7,115.8,103.4,214.8,127.4,35,53.8,94.4,126.6,70.6,55.7,124.9,135.8,166.7,168.4,58.4,138.3,152.1,156.2,193.4,1.1,191.3,113.4,56.7,59,135.9,101.7,242.4,116.9,117.8,145.3,142.4,188.2,85.4,82.5,84.2,95,22.9,61.2,87.7,67,75.6,49.7,39.6,8.4,21,158.4,139.7,103.7,66.6,38.1,45,62.2,52,49.5,81.2,114.9,57.8,40.1,100.4,94.8,85.8,92.1,82.7,57.7,60.4,79.1,59.6,22.8,80.3,98.1,33.5,93,76.3,98.5,43.1,97.7,32.3,31.9,62.5,85.9,119,268.1,371.7,147.8,63.4,27.4,55.1,14.9,133.1,105,101.1,110.9,106.2,93.8,88.1,83.4,81.3,76,39.4,39.7,141.4,126.3,125.2,72.1,79.8,153.4,173.9,132.8,287.4,314.4,44.1,45.9,303.3,281.4,154.4,120.5,193.3,136.1,120.5,132.7,1.6,129.6,222.3,314.6,159.5,131.6,47.5,52.9,55.6,9.8,92.4,102.2,66.6,175.4,60.5,49.9,113.6,48.4,99.2,168.2,161.3,143,139.4,146.6,143.5,290.1,50.6,92.5,144,145,145.8,130.5,35.6,43.1,124.5,98.6,145.1,124.1,156.6,162.9,194.6,120.9,96.2,52.3,92.6,118.7,119,98.9,128.6,54.7,79.4,128.9,157.1,144.6,172.9,76.3,76.6,78.2,77.5,88.6,52,27.1,26.2,24.5,25.8,94.8,10,43,49.3,82.4,151,65.6,41.7,48.7,104.4,7.8,176.7,86.4,131.7,69.5,114.8,78.4,110.8,117.2,92.7,97.7,87.1,138.7,76,119.9,81.4,135.5,104.2,80.8,86.9,119.9,110.6,197.4,75,387,242.7,246.1,30.5,59.8,190,391.3,124.5,342,29.2,36.4,351,722.8,221.7,161,122.1,86.3,83.8,81.5,73.7,86.1,134,82.7,91.8,61.1,34.9,50,63.1,46,178.8,97.2,167.6,409.6,86.1,330.2,78.4,388.2,296.4,95.3,106.5,126.8,79.3,90.7,120.4,107.4,144.1,152.4,109.5,103.3,37.1,77.1,95.1,74.7,69,140.2,96.3,46.1,36,65,64.3,0.8,78.4,82.9,19.6,16.3,65.9,37.5,14.8,47.6,82,83.9,60.9,64,92.4,51.9,45,55.2,29.8,42.5,35.6,62.7,48.3,62.2,86.3,72.2,53.2,78.6,78.1,75.1,186.6,136.8,232.3,17.3,102.7,197.3,147.7,79,79.7,87.9,114.4,96.2,72.3,39.9,94.3,104.3,100,82.1,100.2,131.8,145,125.6,95.8,61.5,45.5,39.7,31.9,46.3,186.8,342.2,197.2,52.4,129.1,135.8,111.4,58.1,74.5,66.5,47.4,91,73,68.2,47.7,60.2,33.3,49,82.5,60.1,52.6,10.9,40.9,44.9,45,48.1,54.3,63.3,84,83.1,71.3,47.9,79.2,76.2,90.9,91.9,164.6,178.2,113.5,129.4,93.6,91.4,72.2,75.8,77.4,69.4,71.5,35.6,41.1,59.9,67.6,111.3,144.6,25.9,56.8,57.9,84.2,119.5,72.4,56.6,141.2,93.2,43.7,78.8,49.3,27,35.3,167.9,76.8,39.9,181.4,95.8,398.3,140.2,26.5,89.6,70,49.8,74.5,81.7,88.5,67.3,42.6,47.9,73.3,217.3,72.4,140.3,57.1,91.6,64.6,90.4,129.6,168.9,112.8,147.8,121.8,60.1,109.2,108.6,112.3,110.8,97.1,67.9,60.3,93,106,54.4,76.6,112.1,368.5,132.6,85.5,119.8,135,42.4,94.5,117.8,111.8,103.2,98.3,100.4,117.4,177.3,9.8,73.8,97.6,100.3,115.5,103.6,191,171.9,155.5,61.4,94.5,89.8,102.5,73.9,64,74.7,44.6,78.7,119.1,178.3,75.6,76.1,81.3,87.2,79,204.8,257.7,79.1,59.5,77,96.2,77.3,23.9,57.8,81.6,77,199.3,90.7,74,68.5,64.5,89.8,68.8,82.5,69,65.9,31.9,53,61.8,66.6,33.9,61,87.8,66.4,59.2,64.4,58.4,63.1,48.6,46.3,38.6,55.7,39.5,54.7,96.3,80.5,102.7,77.1,173.8,30.7,167.4,155.5,55.3,69.3,65.3,60.8,55.7,54.7,64.2,47.2,60.4,60.4,93,93.2,61.4,77.4,43.2,54.3,59.5,57.5,11.3,74.6,74.7,5.1,75.3,80.1,114.5,94.1,175.2,91.8,80.6,43.4,59.6,41.8,46.5,37.3,57.6,77.8,35.5,0.8,33.4,2.3,70.8,42,58.3,60.8,94.2,65.3,43.5,93.7,99.9,117.3,79.2,68.8,71.9,38.7,50.1,79,83,101.9,46.6,23.1,68.5,64.6,60.6,69.1,62.4,67.2,76.3,74.4,161.7,35.1,75.5,58.4,27.9,59.4,50,67.9,90.5,101.2,70.6,82.8,95.6,96,194.7,194.9,92.8,178.3,79.9,103.7,101.8,110.3,185.1,99.1,93.7,173.3,63.1,72.4,123.9,91.6,79.4,92.4,87.8,76,67.5,50.8,64.2,82.9,76.5,87.2,59,88.5,78.7,82.6,29.8,85.4,82.3,78.6,71.6,83.4,203.2,32.8,114.5,66.2,136.8,65.5,34.4,30.1,97.7,24.4,50.6,61.7,85,96.4,69.1,16.7,107.8,72.7,110.1,148.7,1.9,173.3,81.5,43,84.9,89,70.3,147.8,132.5,57.6,102.4,192.1,111.6,127,125.6,104.3,105,68.9,53,73.1,33.6,109.3,33.5,52.3,41.8,80.1,70.8,105.9,86.9,69.6,46.5,268.9,152.8,311.4,61.7,88.8,134,90.5,79.8,36.3,24.6,67.1,76.7,92.7,129.3,170.9,98.4,222.1,234.2,145.7,115.7,146.4,110.3,114.9,307.1,167.8,73.5,88.3,80.2,102.8,103.1,84.2,132.8,95.4,90.9,240.8,135.5,135.2,38.3,194.4,183.6,132.8,248.6,127.3,188,155.4,184.2,113.2,78.3,82.3,93.2,79.6,75.1,98.8,95.8,185.8,62.3,65,95.1,113.2,121,140.8,26.4,7.5,68.5,140.9,231.2,152.2,20.4,206.8,91.4,85.9,54.8,29.9,34.7,40.1,42.5,53.3,39.6,41.8,44.3,45.6,56.8,27.3,58.8,24.3,48.4,46.8,45.2,44.7,39.2,72.6,53,55.6,61.2,49,58.9,62.4,51.4,44.7,58,49.5,69.3,82,61.8,114.8,30.8,22.9,26.3,65.2,97,110.3,108.3,77.9,122.3,79.9,124.2,66.2,97.1,54.1,44.9,66.4,123.8,196.8,178.6,111.3,108.2,100.4,31.5,72,107.8,44.7,57.3,45.7,126.7,149.9,116.1,231.7,47.1,114.2,235.4,141.1,98.9,82.1,76,61.2,34.1,79,24.3,46.3,86.4,91.1,28.1,57.9,24.1,75.8,20.6,106.4,123.3,103.7,55.7,76.2,100.7,133.2,118.8,71.6,27.2,87.5,88.6,363,426.1,160.7,15.9,209.8,318.8,15,251.8,30.6,83.7,21,91.5,66.7,26.4,182.3,148.2,84.1,192.6,101.7,83.6,56,40.8,524,265.5,33.1,186.3,472.8,43.2,30.4,266.4,165.6,300.5,184,256.6,84.9,65.2,92.4,153.1,137.2,186.9,94.3,93.4,82,83.1,18.6,89.5,56.9,163.2,165.1,164.8,135.3,101,87.1,43.4,74.7,33.5,38.4,76.2,121.9,101.6,66.5,103.5,186.9,37.2,39,77.2,61.7,181.6,42,337.9,100.1,265.9,67.5,121.3,103.7,139.1,130,123.8,184.7,28.3,163.6,93.4,93.5,60.3,129.2,165.3,95.4,96.1,78.1,117.6,53.3,49,127,46.4,94.2,159,164,140.6,81.7,151.6,19,92.5,47.1,57.8,57.8,65.9,456,147.6,59.3,157.3,101.2,60.1,113.7,325,224.7,281.4,128,176.1,171.9,24.9,123.8,99.4,105.6,89.2,70.4,29.4,39.6,66.9,73.2,93.7,113,111.1,61.6,9.9,47.9,88.1,125.6,33.6,260.6,222.5,195.8,195,107.5,55.7,85.6,6.7,77.8,42.8,42.2,74.9,72.5,60.1,58.7,1,68.6,32,29.2,135.2,93.9,94.5,68.9,41.4,104.1,42.6,61.7,62.3,57.5,51.9,55.5,55.1,55.5,57.2,57.8,55.1,44.1,75.1,109.5,45.7,50.7,55.3,49.7,103.1,239.9,108.2,64.9,184.6,91.9,37.6,19.6,34.9,66,74.1,116.7,118.1,114.4,92.4,109.7,48.2,54.6,168.4,207.2,61.2,95.4,61.7,62,78.2,78.2,58.4,61,47,34.8,75.2,66.7,33.1,91.6,90.9,63.5,71.7,118.3,104,51.2,47.5,59.1,52,73.3,80.4,54.3,53.1,57.4,57.1,44.3,93.5,67.8,49.4,74.8,67.6,18.9,24.7,61.9,41.9,87,138.7,91.1,55.5,294.7,32.8,86,117.1,1.6,124.5,58.7,214.3,117.1,15.7,68,79.8,190.5,249,255,16,191.4,100.5,36.5,407.5,102.9,117,76.3,84.3,85.1,66.5,115.7,37.5,109.1,84.6,56,70,93.2,129,88.2,39.8,61.4,31.3,120.5,137.6,143,109.6,36.6,123.8,122.1,99.2,56.2,121.8,81,96.8,64.6,43.5,205.8,127.9,26.4,45.6,25.9,70.7,135.1,72.2,45.9,193.7,46.1,45.8,68.5,63,42.9,38.8,47.5,49.2,68.6,49.7,54.8,70.6,71.3,72.7,76.7,81.7,77.8,85.7,68.7,100.7,58,57.9,54.7,26.3,116.4,71.7,59.4,92.6,87.2,98.1,106.1,135.2,49.1,73.2,58.1,88.7,65.7,70.6,98.5,127.3,92.3,61.6,20.5,80.4,10.9,54.1,48.3,48.9,107.9,72,67.1,60.6,69.1,66.6,62.9,54.5,2.5,80.9,77.2,75.5,51.6,67.3,98.5,69.9,72.2,270.3,219,235.2,152,141.3,98.5,113.2,83.2,72.2,73.2,72.7,66.2,68.6,115.9,75.7,80.6,53.8,55.4,45.4,57,29.1,0.7,27.7,60.8,66.5,69.3,64.3,52.2,11.4,74.4,59.1,52.1,12.8,60.2,88.9,85,256.7,355.2,188.4,60.5,61.9,74.2,20.1,138.9,106,92.6,114,66.6,63.5,72.7,140,104.4,115.5,220.4,107.4,102.1,92.3,63.6,10.9,42.6,88.4,66.9,9.8,194.7,167.1,72.8,41.1,12,17.8,316.2,44.9,85.9,42.2,41.6,69.2,73,64.1,48.4,47.4,67.9,72.8,78.5,77.1,95.1,63.2,6.2,54.8,104.8,68.9,9.1,56.1,103.4,78.8,93.6,127.9,268.3,181.7,122.3,88.8,128.7,76.3,63.8,52.5,50.4,48.8,52.3,52.6,62.2,56.6,58,58.6,73.7,59.8,61.9,50,46.8,50,40.9,58.9,148.5,135.1,103.1,174.5,69.4,67.4,74,32,73.4,107.2,115.6,103.7,104.8,63.1,129.6,150.3,112.7,113.1,53.8,153.5,29.8,46.1,56.6,24.8,25.2,37.8,26.8,25.7,25.1,26.7,24.5,27.3,25.1,25.9,84.4,82.9,42.8,58.9,65.8,74.7,552.7,134.8,37.7,48.5,35.3,31.7,72.8,59.3,46.4,44.4,50.7,52,220.6,38.5,37.9,38.9,39,26.3,37.9,40,47.3,53.8,31.9,40.4,39.4,29.5,10.8,44.5,55.9,40.8,51.4,23.3,44.6,27.6,34.9,34,61.8,63.9,116,42.9,85.9,28.1,52.9,57,77.8,52.6,39.1,40.4,70,62.3,60,61.2,77,76.8,149.6,59,58.8,60.9,60.1,44.3,46.1,51.5,51.9,27.7,0.8,30,25.7,27,73.8,34,35.5,36.2,51.5,77,5.8,38.8,22.4,20.8,66.1,63.2,16.2,77.2,76,62.4,59.7,40.3,41.9,70.4,55.5,56.9,51.4,53.4,46.9,44.4,52,38.4,52.3,49.2,76.4,236.3,32.6,39.4,42.2,42,46.5,49.2,41.3,28.2,37.9,36.3,54.7,39.1,33.5,39.1,39.9,38.8,37,37.5,36.8,45.3,43.3,31.5,30.6,60.6,74,73.2,115.9,106.6,54.8,55.8,50.1,52.2,65.8,66.9,39.3,39.8,57.1,58.2,121.1,506.2,88.8,143.7,245.3,398.2,76.6,78.2,76.7,80.3,61.1,60,54,53.9,17.1,88.9,56.3,46.3,46.9,41.8,41.3,51.4,50.8,48.8,48.5,46.6,46.8,79.3,49.2,49,49,48.2,56.7,60,39.1,38.6,60.3,54.6,53.3,51.1,52.1,51,33,32.2,64.7,64.8,65.3,62.6,243.7,18.7,78.1,53.6,50.4,46.4,46.3,52.1,41.2,44.6,46,41.3,51,38.7,39.3,41.8,43.6,71.3,22.6,34.9,67.1,126.4,106.3,53.4,52,55.5,48,11.8,46.7,46.1,38.5,42,53.4,66.3,39.8,38.3,78.8,72.4,71.4,73.3,72.3,70.4,170.8,97.7,91,67.3,58.6,54.8,53.9,59.7,88.4,91,85.9,84.9,63.9,168.2,53.8,39.7,38.1,39,40.7,39,52.9,39.4,38.8,31.5,33.1,36.9,42.1,30.4,32,41.8,31.9,34.9,38.3,39.3,39.6,53.1,66.7,38.5,32.9,197.3,162.2,110.9,90,67.9,53.7,53.7,53.2,75.4,74.3,78.9,79.7,198.9,67.6,53.7,65,65.4,79,43.2,41.3,52.9,53.5,49.6,48.8,59.1,55.1,39,40.2,40.3,38,53.5,30.5,18.6,49.6,35.3,85.2,183.9,58.1,60.2,67.1,40.1,40.4,38,2,53.6,32.5,33.5,32.8,34.6,66.7,67.5,238,110.2,115.2,101.6,66.9,62.4,79.3,76.5,154.4,173.2,83.2,234.2,165.9,19.3,122.5,48.7,44.4,191.7,26.5,26.8,22.1,9.8,25.8,149,119.1,80.5,72.1,40.9,39,27.2,68,33.6,32.4,52.4,27.2,28.7,44.7,33,31.6,41.6,29,27.6,39.2,38.4,37.2,40.5,40.2,34.9,34.1,70.5,72.7,23.5,65,197.6,625.7,1542.1,2.9,90.6,60.1,58,60.6,57.1,41.1,43.3,63.5,66.9,47.9,82.2,124.9,55.5,77,37.7,53.2,31.2,44.6,40.2,33.3,5.2,114.7,79.9,63.3,26.4,41.9,31.2,37.2,9.4,28.7,34.5,43.8,38.4,47.2,51.8,55.4,52.1,41.8,34.3,52.3,13.4,31.3,31.8,36.3,25.3,27,41.9,31.9,32.8,45.1,36.9,37.7,35.7,26.7,40.9,67.6,77.3,39.2,169.8,174.8,40.1,118.2,76.2,102.6,191.9,96.5,44.6,39.4,25.1,40.3,39.1,15.9,64.6,31.4,34.2,109.8,41.5,37.4,198.6,36.5,64.9,14.7,91.2,100.3,127.1,110.5,74.5,12.2,179.6,92.8,236.2,301.8,164.7,79,61.5,97.5,71.4,55.5,68.4,86.9,140.3,303.7,141,103,262.3,554.8,292.5,1189.6,637.6,693.8,66.2,521.2,532.4,132.7,327.9,164.6,166.6,133.5,62.6,67.2,76.1,76.5,365.1,20.3,136.6,85.9,162,175.6,0.9,86,134.4,91.9,103.9,74.9,91.5,63.6,39.4,55.6,15.3,51.5,65.9,77.1,71.5,71.6,72.2,69.2,83.6,91.6,85.3,75.1,51.1,75.2,104.1,76.3,67.5,62.9,90.5,98.4,43.1,56.5,60.1,53.3,43.7,47.1,59,46,6.6,27.9,71.2,65.1,51,50.3,53.5,69.1,71.2,63.1,75.1,202.7,162.9,319.3,126.2,47.2,161.5,96,151.5,69.8,107.9,43.1,68.9,80.1,141.8,113,117.1,95.7,147.4,99.5,94.2,119.7,95.1,103.3,146.7,144.6,123.2,147.9,128.7,170.5,132,76.2,61.7,89.8,87.9,43.9,25.4,50,70.9,32.8,28.2,47.8,71.6,95.6,107.7,87.8,50.4,36.4,92.7,94.1,88.9,92.7,117.1,65.5,27.5,9.8,51.2,66.3,39,39.1,47.9,74.2,28.8,17.2,5.5,17.2,13.5,6.8,8.5,12.8,6.7,7.3,9.5,25.4,7.5,6.7,6.8,7.4,5.7,37,93.9,79.6,59.2,47,6.2,3.8,10,13.3,10.6,62.2,60.9,61.2,43.9,42.2,49,44.8,93.4,26.2,46,108.2,75.4,86.3,78.7,70.3,65.2,106.2,67.4,105.4,77.4,52.1,79.9,79,79.6,67.4,63.8,86.7,96.6,90.8,89.4,82.2,80.5,73.8,124,178.2,226,122.3,137.9,116,128.2,94,109.3,94.9,87.9,84.1,52.9,101.2,124.6,102.7,96.4,60.8,150.3,43.3,136.7,84.3,76.8,73.9,20.2,83,4.8,78.7,52.8,91.4,122.3,183,109.5,148.7,111,138.3,104.4,99.5,153.7,183.8,107.6,165,93.7,162.9,81.5,175.2,68.8,168.7,100.1,108.9,162.7,108.1,136.1,149.3,108.2,120.9,108.7,94.8,121.9,108.3,101.5,84.5,61.5,179.5,104.3,93.9,198.6,173.8,152,133.5,149.9,68,91,136.2,112.2,59.3,171.6,307,154.1,155.3,194.3,276.5,162.8,170.5,127.8,121.2,108.8,78.3,106.4,35.1,114.6,23,86.5,91.6,118.5,108.3,171.8,593.2,149.3,159.8,398.9,135.6,131.6,141,287.4,218.8,342,505.1,100.4,98,62.2,63.4,81.3,97.9,52.1,98.6,70.7,60.5,55.4,37.7,5.6,37.3,19.2,36.2,40.3,39.5,6.8,62.2,59.6,72.4,73.2,55.8,66.9,71.7,101.2,72.9,61.4,38.7,18.7,51.3,71.4,94.7,68.3,50.5,62.8,220.8,36.3,60.7,66.1,37.9,0.6,43.7,41.2,55.5,50.1,53.7,51.6,79.5,19.7,239.8,82,39.4,35.7,17.9,32.6,45.5,47.5,36.2,37.5,35.9,32.7,46.1,66.9,102.7,231.2,65.6,51.7,45,23.4,37,64.4,75.5,50.6,60.7,62.7,88.2,90.1,72.2,25,23.3,23.7,17.4,18.6,22.6,22,20.3,33.7,41,46.7,90.2,51.5,19.8,21.4,34.5,165.6,437.2,622.1,338.5,219,96.4,138.4,182.9,184.7,504.1,138.9,173.3,127.5,134.8,111.5,117.4,110.5,141.5,154.4,104,105.8,160.5,70.5,7.2,42.3,17.2,32.2,57.5,21.2,240.1,67.6,9.3,5.7,48.9,259.5,203.3,149.1,134.5,89.1,46.6,19.1,154,209.2,161.1,22.9,359.1,92.4,60.7,51.7,52.6,44.4,56.8,68.3,96.9,107.9,33.7,105.5,94.3,138.2,135.1,95.2,84,11.2,190.9,249.1,249.5,256,143.1,103.9,61.3,64.4,70.8,71.7,42.5,197.7,327.8,26.6,24.4,52,60.7,78,50.2,40.6,77.5,69.6,412.3,48.7,160.3,127.9,130.3,130.9,68.3,71.3,29.2,64.8,44.4,49,86.3,75.7,76.6,77.2,70.1,70.8,61,37.7,77.9,65.8,65.8,54.7,372.3,32.3,158.2,200.8,118,116.4,16.2,94.4,157.7,142.1,127.3,99,97.9,98.3,97.3,98.5,96.9,94.3,91.5,87,78.3,143.1,0.1,72.8,70.4,132,135.8,148,76.9,75.4,45.4,32.4,15.6,87.2,85.8,86,88.4,156.8,77.8,77.8,126.4,77.5,77,126.9,139.7,232.9,231.1,19.5,311.3,177.8,159,64,61.9,40.5,38.2,49.5,52.8,31.9,19.4,55.3,55.4,58.8,69,58.8,62.1,61.9,50.8,67.9,52.6,48.2,48.3,57.1,63.9,64.8,71.2,76,73.6,74.9,63,57,151.3,128.4,64.6,88.8,106,63.7,50.6,52.3,48.1,95.9,46.6,45.6,52.4,52.1,52.1,50.8,101.7,100.9,97.5,48.8,47.6,91.9,91.8,131.7,123.6,183.7,184,368.4,89.5,91.4,99.2,91.7,39.7,38.9,41.1,40.9,44.2,44.6,43.1,42.3,45.7,45.8,44.8,43.8,90.1,91.2,419.3,103.4,77.5,73.9,75.8,75.7,39.2,37.9,53.9,52,69.7,69.6,54.8,53.7,81.6,80.3,44.1,43.9,87.6,62.4,63,53.3,49.2,46.1,52.9,53.6,21,34.6,54.8,93.2,92,22.1,64.1,60.9,68.3,129.9,426,214.9,115.5,43.8,61.5,49.8,38.4,38.7,49.2,49.8,26,49.9,49,62.7,38,62.4,9.4,52.3,54.7,114.4,104.5,66.7,62.7,49.5,41.4,25.4,25.7,67,45.4,46.9,23.1,24.3,18.6,25.5,66.2,85.4,88.9,77.7,50.4,66.5,119.1,27.9,84.4,101.1,72.5,93.5,64.4,56.5,57.5,62,48.9,59.6,84,59.3,159.6,59.9,80.8,144.4,176.9,126.6,318.2,94.2,89.7,75.3,68.7,178.3,307,73.6,70,136.6,58.3,76.2,59.8,93.1,122.4,125,183.6,28.3,110.7,108.4,151.7,153.8,100.6,90.7,89.9,113.8,36.8,28.3,28.3,35.7,33.7,35.9,33.3,44.5,35.5,27,41,73.8,74.8,228.3,59.4,67.9,51.3,43.6,40.2,28.4,30.8,31.5,89.7,43.7,47.6,92.7,35.4,39.3,59.4,100.9,88.8,75.6,51.5,54,85.9,90.2,261.3,94.3,75.6,67.4,12.5,107,125.8,89.1,73.5,88.7,27.5,27.4,42.7,55.5,46.1,92.7,48.2,49.7,47,140.2,150.1,64.8,55.4,103.6,90.3,113.2,120.2,62.9,115.6,66.6,70.4,74.2,57.4,9.5,28.1,92.6,92.9,32.8,87.9,162,40.6,12.7,100.4,127.6,38.2,29.9,9.9,227,311.4,136,142.2,121.3,201.1,23.5,221.9,240.5,17.7,460.2,33,128.1,39.9,39.6,67.8,66.6,105.2,102.7,218.9,85.5,86,84.2,83.2,64.4,64,64.7,67,169.3,146.7,57.2,57.8,57.5,50.6,47.8,65.6,114.8,375.3,328.9,300.6,147.3,151.6,153.1,156.5,189.2,196.3,283.9,220.6,231.1,4.3,243.9,261.4,261.2,127.7,109.2,273.3,145,142.8,31.6,95.6,70.3,39.2,62.2,111.7,185.3,106.9,154.9,97.3,149.5,135.8,252.9,212.4,184.2,114.6,115.4,158.3,127.3,100.2,95.6,72.6,65.9,81.9,65.4,81.3,79.1,119.3,80.2,152.5,78.1,79.3,52,49.7,105.4,72.3,41.8,67.3,91.2,83.9,78.2,76.5,83.4,86.7,70,72.2,169.1,127.9,105.9,60.5,67.3,74.7,75.5,60.7,88.5,132.4,145.3,95.2,111.1,112.2,109.8,83.1,83.1,72.3,72.9,81.5,81.2,159.6,126.5,176.2,65.2,68.4,64,63.6,47.8,49.7,52.3,74.4,74.6,63,63.2,57.8,57.7,64.1,64,149,133.4,101.7,96.7,70.4,70.6,81.9,88.8,73.3,75.4,102.3,63.7,53.4,91.1,93.5,94.8,29.9,113.3,127.8,146.8,60.2,60.2,78.2,51.3,50.9,60.9,66.2,73.9,73.8,72.2,71.7,70.7,65,79.8,80.1,88.8,121.4,98.8,69.7,95.4,136.2,90.8,142.3,103.4,110.2,138.8,75.2,73.4,68.4,67,55.6,68.1,48,68.8,80.3,52.4,76.5,60.9,61.1,57.3,2,58.4,67.6,67.9,289.5,38.2,125.7,128.5,85.7,86.8,145.3,123.1,144,107.7,111.2,113.2,166.9,138.9,163.5,162.2,143.3,116.8,263.3,134.2,138,90.7,66.5,48.3,248.1,284,26.3,213.8,227.6,180.8,100,141.7,102.6,123.2,69.7,163.3,106.2,179.4,107,116.3,144,91,85.8,105.2,103.2,93.9,158.7,95.6,263.4,87.7,3.8,90.1,84.6,80,75.6,76.7,232.6,61.2,53.6,34.7,33.9,38.8,64.2,73.7,34.4,76.2,71.8,127.5,140,83.3,70.7,79.8,74.7,94.5,84.9,93.7,58.6,57.1,105.1,112.4,106.6,81.1,120.2,87.2,79.3,87.5,82.6,67.4,77,79,152.3,195.8,218.2,133.8,152.1,202.4,142.4,95.2,126.4,101.3,103.3,76.3,62.8,57.6,80.7,78.8,72.8,75.1,111.8,60.6,61.1,73.8,93.2,123.3,83,81.9,60.2,39.7,62,80.3,85,140.9,128.6,113.3,81.4,132.3,110.9,104.5,101,98.5,90.7,86.8,98.7,84.1,109.1,77.7,94.3,133.5,167.6,103.3,87.1,107.4,87.7,90.1,8.1,118.1,105.6,74.8,94.3,145.5,142.2,135.1,139.1,137.6,51.2,10.3,115.9,142.9,129.5,80.5,12.2,29.6,180.8,144.6,117.7,114.9,99.4,171.6,136.9,186.8,122.9,142.5,105.1,243.7,128.8,149.1,135.1,179.6,198.6,86.7,103.9,193.5,216.9,216.3,171.8,141.1,262.3,102.3,74.6,73.2,65.1,98.1,97.3,249.8,184.5,156.7,221.6,45.3,19.6,151,71.7,61,120.3,35.2,93.5,41.2,52.6,89.3,37.5,50,21.8,19.5,33.7,34.5,31.3,26.8,38.9,31.6,92.3,64.4,62.4,78.7,90.4,119.8,66.6,84.7,100.8,55.2,54.7,37,58.2,76.7,88.1,74.8,101.5,118.4,123.6,67.3,98.3,5.6,84.5,107.5,61.5,102,102.2,110.4,71,90.1,60.8,56.9,72.5,86.2,74.7,58.9,81.4,85.1,68.7,72.8,64.5,127,77.7,47.5,73,66.5,82.6,74.2,59.8,74,64,74.7,65.9,64,71.1,75,73.2,76.3,90,92.3,68.3,80.9,45.1,62.2,94.7,31.2,31.8,15.2,63.4,109.1,80.9,94.4,75.4,59.8,55.5,60.2,55.8,80.9,90.6,73.1,96.8,93.8,92.8,111.3,136.1,64.4,20.1,89.4,74.6,79.7,78.4,76.9,86.5,92.7,65.9,75.4,92.1,79.5,86.3,62.4,57.4,77.2,82.6,83.6,100.2,93,66,121.8,88,66.2,69.3,74.6,70.3,86.8,85.2,79.1,67.4,85.4,89.6,114.1,103.5,72.7,59.3,88.8,71.7,86.6,103.5,67.8,63.9,73.7,86.9,73.8,61.3,32.5,131.1,84.9,83.5,102.8,94,118.5,19.2,92.7,135.2,95.3,119.9,118.2,115.8,93.7,45.3,62.1,112,22.7,67.1,89.1,105.6,122.7,117.1,145.6,113.7,72,101,97.7,130.7,121.4,128.8,140,118,105.5,72.7,75,91.4,104.3,77.7,77.3,93.4,67.9,140.6,181.3,257,118.1,110,116.2,92.5,130.3,162.5,197.5,202.3,325.6,232.1,207.2,140.9,147.9,86,17.2,88.2,98,125.8,73.9,87.1,213,101.5,120.4,92.3,13.2,64.4,55.3,84.1,79.8,77.3,101.5,112.8,64.2,78.1,84.5,44.1,43.4,111.7,90.8,101.9,112.3,82.1,54.2,60.9,49.9,53.8,75.8,21.6,98.5,127.2,80,5.2,69.1,72.4,107.7,39.7,50.4,37.4,49.5,60.9,53,65.1,47.6,57.3,52.9,63.1,50.7,5.4,70.3,69.1,59.7,57.4,48.5,51.7,53.3,56.3,50.6,1.1,50.9,52.6,61.5,89.9,72.1,42.3,42.8,39.6,36.2,32.2,30.7,48.1,49.9,53.4,52,63.4,132.7,83.5,38.4,36.3,38.7,36.8,35.8,36.7,33.7,44.8,48.8,59.2,52.8,55.3,71.8,70.6,62.1,58.2,40.6,52,26,26.8,43.6,37,41.7,47.7,50.9,34.4,29.3,43.7,207.9,196.2,102.6,189,64.7,65.8,84.6,66,65.5,102.4,115.4,232.5,153.5,221.7,197.5,214.6,181.7,182.1,1342.2,55.1,83.1,85.1,125.9,35,48.2,42.7,55.5,133.4,1056.4,102.1,98.8,170.2,105.6,117.8,82.3,48.1,58.8,61.8,71.1,69.7,63.7,65.3,76.7,77.1,86.7,86.8,95.2,100.3,257.3,36.9,18.1,24.4,26.1,29.6,26,27.7,31.6,29.3,31.4,22.7,19.1,36.6,30.2,30.2,28.9,29.9,29.5,34.5,26.8,37.6,86.6,34.3,36,37.3,28.3,29.3,27,25.1,26.8,30.4,36.4,37.4,30.3,42.9,40.2,36.3,43,62.1,46.1,36.3,30.3,27.3,34.4,27.3,31.2,40.1,35.2,29.7,37.9,19.8,22.6,21.3,28.5,36.4,41.3,39.2,34.3,52.8,34.8,46.9,33.9,38,41.2,26,39.1,33,33,52.7,32.4,33.3,27.6,25.2,32.1,32.1,31.2,30.2,33.4,25.6,18.7,24.4,30.8,26.2,27.2,31.3,44.3,69.6,57.5,25.2,35.9,102.1,102.3,86.1,87,111.2,58.9,56.4,76.6,74.9,72.5,74.6,66.4,65.8,66.8,68.9,68,69.3,68.2,71,99.4,134.9,89.7,249.6,194.4,99.7,65.2,75,75,172.8,151.4,64.4,60.9,90.9,89.2,76.1,69.1,10.6,50.1,89.6,299.1,80.5,89.3,101.6,86.6,78.2,7.7,214.2,112.4,124.1,120.6,100.4,104.2,338.2,91.6,48.2,44.5,57.9,55.9,59.4,60.4,65.9,59.4,73.4,72.9,2.1,119,113,67.6,56.9,58.2,65.8,65.3,72.5,80.6,54.7,49.5,61.3,59.7,136.3,81,51.6,51.7,52.8,70.1,71.8,53.7,60.9,68.7,68.1,88.7,126.6,29,7.5,51,130,180.2,191.5,88.5,100.7,65.9,54.2,229.9,213.1,81.5,88.1,90.3,97.9,99.9,46.3,47.5,50.6,50.6,100.3,75.6,76.1,101.7,137.1,120.9,122.3,134.4,96.8,78,80.4,153.9,130.1,172.1,262.4,525.1,230.9,82.1,83.1,55.4,63.7,73.9,72.7,56.5,62,62.4,53.4,75,67.6,65.9,143.9,178,178.2,100,104.5,54.5,54.6,72.2,56.9,58.9,66.1,52.5,50.5,52.9,43.8,45.4,44.7,47.2,48.1,47,64.5,52.6,65.8,257.2,128.7,68.4,66.5,38,74,72.1,102.7,54.4,53.2,103.2,56.6,59.7,52.4,65.3,78.9,84.5,80.7,158.7,160.5,159.6,85.8,75.2,68.1,65.1,51,46.8,43.8,44.5,42.9,47.3,54.5,60.9,52.6,53.5,51.5,53.7,38.7,40.1,44.9,46.6,66.7,32.4,33.8,92.2,41.8,50.3,38.1,90.9,35.5,40.3,68.8,51.8,48.5,55,77.5,37.8,39.5,39.8,37.9,60.9,56.1,75.1,73.3,38.3,223.9,201.9,93,249.9,106.2,90.8,80.8,31.8,58.9,29.7,49.7,58.6,127.4,60,56.7,296.6,68.5,71.7,51,44.6,26.6,49.7,58.8,54.2,99.2,97.2,38.3,518.6,259.2,247.4,36.4,31.9,36.1,32.3,35.5,33.9,35.7,32.7,35.8,33.6,53.1,44.6,27.9,37,2.9,32.8,19.2,73.3,27.9,110.8,103.9,11.3,74.1,174,123.3,188.2,42.6,44.3,40.6,57.2,41.2,29.8,73.4,68,83.2,82.3,40.2,23.6,32.1,29.4,29.7,27,28.2,17.2,24.9,22.8,21.5,24.1,18.6,18.7,30,19.4,27.4,15.3,18.3,23.8,22.5,25.8,24.8,21.2,17.6,23.8,35.6,238.6,25,28.8,24.6,23.7,25.2,25.9,25.5,25.7,24.8,25.7,25.6,24.5,26.1,24.9,37,49.3,243.4,229.2,25.4,37.8,37.5,26.4,24.8,25.9,26,24.6,35.2,27.9,30.7,52.8,43.4,25.2,25.3,26.5,26.7,48.3,48.2,95.5,47.3,26.3,24,34.8,28.5,35.4,36.9,37.4,28.8,67.5,105.2,51.1,25.9,26,27.1,22.2,24.2,24.9,26.6,25,25.3,24.8,24.9,27.5,23.9,42.8,1.6,10.1,14,15.7,28.9,24.1,19.9,20,21.7,6,4.1,23.5,26.5,29.6,150.8,29.8,39.8,38.6,35.1,38.7,42.7,19.8,30.6,51,27.4,28.7,87.1,269,6.1,245.4,156.3,37.2,18.1,16.8,19.1,17.2,18.6,16.6,22.6,19.6,25.9,24.4,19.7,17.9,37.2,26.2,23.8,23.2,22.4,22.5,21.2,62.5,69.3,20.7,21.9,27.9,25.1,25.5,23.8,37.3,24.7,26.3,37.2,34.4,29.9,33.3,26.2,29.2,32.1,28,33.3,40.6,164.5,116.3,46.9,26,27.3,30.5,21,24.7,26,25.9,24.7,26.3,25.4,26.6,23.5,40.6,127.7,47.9,25.6,25.1,24.9,24.2,27.1,25.7,22.7,22.2,20.2,16.3,21.8,24.1,25,50.4,153.7,76.8,24.9,26,25.1,25.8,25.2,26.1,25.8,26.4,23.6,12.7,26.4,24.9,26.4,25.9,24.5,25.6,26.7,24.3,25.2,38.4,25.4,91.4,24.7,25.2,37.2,38.3,28.6,34.8,25.6,25.4,25.7,25.9,29.6,33.4,25.7,25.3,25.3,26.1,28.3,22.5,22.3,20.5,7.2,43.8,34.4,55.3,56.4,36.7,97.3,147.1,135.3,149.5,28.6,39.2,15.1,35.4,46.1,46.4,13.3,39.6,56.6,285.8,65.5,66.1,35.6,39.1,13.1,22.8,39.4,33.2,31.6,16.5,41.7,62,58.3,59.5,60.3,249.5,91.1,91.2,74.8,55.6,18.7,279.5,312.7,120.5,140.3,13.9,44.5,36,23.9,40.9,45.2,42.2,33.4,37.1,35.1,38.9,35.7,40.1,40.6,29.9,36,37.6,29.3,147.5,28.8,38.6,45.7,41.5,44.7,43,40.7,45.7,45.6,40.3,40.4,31.8,34,38.1,44,40.3,42.6,73.6,38.4,148.1,57.3,13,65.6,299.1,44.6,42,39.1,40.6,39.3,40.8,38.7,49.6,50,47.9,46.4,45.1,52,43.1,48.9,46.1,49.1,169.3,61.9,63,49.9,44.2,36.4,41.7,47.8,53.8,49.6,44.3,38.5,40.9,29.9,38.7,13.2,47.3,63.4,66.5,228.4,145,35.1,45.3,39.7,28,31.3,348.9,85.5,106.3,309.1,42.4,43.9,46.9,47.2,48.6,60.7,233.8,132,368.2,64.9,43,40,51.3,331.2,57.9,47.4,38.8,40.2,57.3,98.9,209.4,125.8,70.6,80.9,80.1,63.8,64.4,805.6,165,86.5,71.1,72,71.6,148.2,56.2,66.2,72.3,57.9,49.5,62.9,66.8,57.3,54.2,93.4,230.1,65.1,66.6,55.1,53.7,57.1,15,46.9,45.1,44.9,33.9,32.8,24.7,25.4,40.4,22.4,41,38.3,56.5,78.5,136.4,31.5,224.6,77.1,41.4,31.5,45.7,46.3,39.1,32.8,45.3,38.8,38.1,53.9,72.4,58.4,45.4,37.4,42.1,53.5,55.8,46.5,39.2,48,41.3,37.5,40.6,41.4,50.5,41.8,49.8,21.4,17.6,16.4,16.1,18.8,7.2,12.3,18.7,24.6,19,21.6,22.3,20.6,19.7,27,23.1,30.3,22,31.2,23.4,31.9,19.6,57.2,41.9,26.1,33.8,25.7,31.5,36.8,36.3,38,68.6,72.3,73,114.3,167.7,207.7,260.8,95.5,84.6,78.8,74,66.9,63.5,40.7,34.8,56,388.1,119.7,99.1,90.6,97.8,94.7,65.5,66.1,46.8,53.1,84.5,21,64.5,112.8,69.3,58.8,269,213.4,138.9,113.1,2.9,110.6,111.9,177.9,81.1,71.1,58.3,57.6,60.2,88.4,60.5,29.3,28.2,19.6,17.4,18.6,25.9,5.1,31.4,27.5,57.2,14.6,32.4,112.2,10.6,198.2,114.8,21.3,29.4,36.6,32.5,40.7,26.8,19.4,21.5,14,9.6,45.5,24.8,26.6,22.9,28.8,53,34.2,18.7,27.5,23.4,47.4,6.4,44.9,61.1,40.9,21.2,29.3,26.5,25.6,25.1,23.8,35.2,15.4,18.7,18.3,27.4,22.2,18.6,22.6,5.6,13.4,18.7,23.1,29.3,86.1,143.2,503.6,126.8,59.3,47.7,66.3,63.7,80.9,84.9,0.1,31.5,63.5,436.5,52,53.7,35.8,42.3,15,20.9,33.8,25,31.8,39.4,31.4,31.5,39.1,41.4,31.1,34.5,37.9,36.8,39.1,31.6,45.6,28.4,76,49.6,25.1,17.4,32.9,33.4,36.5,19.9,41.4,38.6,35.6,41.6,43.1,41.4,43.5,40.2,49,35.6,48.3,50,80.9,57.1,44.8,45.7,45.6,43.8,40.2,30.5,50.1,47.1,129.7,164.1,109.7,4.5,67.2,27.9,31.1,38.2,9.6,8.1,43.6,33.7,29.6,35.3,31.8,37.1,31,24.9,10,25.9,29,29.6,33.4,32.7,26,22.9,38.3,41.3,20,14.8,40.8,60.3,105,58,53.6,31,30.2,40.1,40.4,75.4,40.7,20,68.6,9.7,8.7,21.9,24.6,34,78.5,44.3,25.5,5.1,30.5,135.2,19,49.7,18.3,4.1,25,77.8,41.1,26,36.3,43.1,39.7,53.3,36.6,215.5,545.3,209.7,41.8,33.2,36.1,35.1,33.3,31.5,32,32.6,35.1,32.6,33.7,55.1,69.2,54.7,59.6,45.8,40.8,43.6,49.5,33,25.2,40.4,42.2,40,74.4,33.5,37.2,52.2,51,32.9,45.6,51.5,56.6,40.3,57.9,46.2,51,33.5,38,44.5,40.3,33.7,36.5,39.3,43.7,39.6,770.1,132.9,43.7,29.9,33.4,34.2,25.9,35.1,24.9,32.6,31.2,31.2,33.4,33,31.3,33.1,33.2,28.6,38.5,38.4,29.4,52,85.3,24.6,75.9,44.5,41.6,49.9,50.6,42,40.1,35.6,26.7,33.3,45.2,43,35.8,39,105.4,121.9,43.4,29.3,24.8,49.6,47.3,44.9,44.3,25.9,9,44.2,34.9,27.7,7.4,112.9,61.1,88.4,84.1,109.1,218.3,113.2,101.7,76.6,122.2,133.3,90.9,95.2,144.6,146.7,142.7,34.3,33.8,25.3,25.6,29,32.4,117.4,45.6,42.5,44.1,24.9,22.1,28.6,20,17.9,41.6,26.4,31.9,16.6,12.6,20.6,19.3,19.8,22,19.5,21.1,21.2,27.4,29.1,25.3,21.2,25.6,22.8,30.3,30.3,27,27.5,28.7,32.5,30.2,41.2,34.1,105,207.4,99.6,58.7,45.9,38.8,39.3,41.3,37.1,31.1,42.1,28.2,21.1,25.9,24.5,42.2,36.2,55,42.1,84.1,67.6,43.3,30.2,30.5,29.4,38.1,21,28,15.7,33.2,44.1,88.1,42.5,68.3,77.1,77.1,158.8,119.2,52.7,39.7,36.1,55.6,48.7,99.1,89.7,56.2,41,43.1,29,47.3,68.3,106.2,75,62.4,93.7,16.7,55.6,84.6,66.5,74.6,132.1,38.6,37,29.6,27.1,19.2,20.4,17.2,14.3,5.4,24.2,15.9,15.7,20.6,24.2,15.9,20.5,20.2,20.5,20.7,16,19.9,16.3,13.7,11.7,17.7,18.3,15.1,14.2,20.9,23.5,7.8,12.6,15.7,19.8,33.6,40.9,41.2,69.6,51.9,54.8,62.9,1.5,43.5,24.3,31.5,22.5,47.5,33.7,44,29.1,60.1,56.8,41.4,31.3,40.5,44.8,20.5,45.5,100.1,53.2,208.1,84.2,107.2,84.1,93.4,88.4,84.9,82.4,131.9,28.3,71.1,93.8,110.8,197,152.9,95.9,37,37.6,38.6,51.2,115.3,31.6,34.6,26.8,42.9,35.7,76.8,45.3,40.3,59.3,108.3,27.5,47.5,34.7,29.8,32.3,21.9,35.4,12.9,8.1,36.5,20.7,18.8,28,29.2,43.1,32.8,21.3,36.7,7.9,27.6,110.7,27.3,9.2,32.9,40.6,64.3,273.2,47.8,44.9,33.8,27.9,26.4,33.9,36.7,49,101.5,34.7,35.9,44.7,135.5,27.5,17.8,16.3,18.5,13.9,11.1,4.7,15.2,20.6,23.3,20.2,21.7,29.4,32.6,25.6,25.3,22,25.3,21.6,18.3,18,45.4,43.7,47.2,46.2,41.4,29.1,31.9,33.9,36.4,53.5,40.8,48.6,58.8,184.1,31.4,50.2,27.6,26.5,26.4,28.4,48.1,39.7,45.1,44.6,37.7,91.1,144.7,51.2,29.7,22.1,20.8,19.8,21.9,17.2,19.1,19.6,20.6,16.3,486,33.5,21.4,30.6,27,27,30.1,25.7,22.2,26.5,29.3,27.5,31.3,49.6,17.5,35.4,33,46.6,51,28.9,101.1,49,32.3,12.1,16.8,18.4,38.3,89.3,48.1,66.3,11,97.9,122.4,106.8,53.3,45.7,44.2,45.3,39.7,37.4,37.6,36.5,33.2,34.8,20.8,29.3,39.4,29.8,21.7,17.6,24.4,20.9,31.1,35.4,67.7,61.8,76.9,80.5,66.7,63.2,71.4,96.8,81.3,46.7,37.3,19.3,20.9,14.3,20,30.6,33.9,54.9,134.4,52.2,51.1,30.9,20.1,19.2,26.5,22.2,23.5,15.7,1.5,23.8,20.3,17.7,15.9,24.5,25.9,25.5,23.1,17.8,24.8,28.8,21.5,29.7,22.2,28.4,25.4,27.8,27.8,25.5,11.7,150.8,22.2,17.5,20,21.7,20.1,22.4,25,21.5,24.6,120.9,27.4,10.1,18.2,28.2,22.5,20.7,19.3,19.2,19.7,25.7,13.5,17.6,25.9,31.1,31.9,112.9,38.9,34.3,37.3,37.8,32.1,44.7,65.9,43.3,35.8,37.8,22.7,16.1,28.2,30,27.2,31.1,35.1,36.3,26.8,36.8,45.9,65.3,31.1,40.3,57.8,33.1,9.4,18.8,19.9,21.6,23.8,18.5,16.9,35.4,20.2,25.7,15.5,20.2,18.2,16.4,18.2,18.5,9.7,9.7,35.1,28.7,53.2,42.8,39.9,46.7,54.3,38.1,12.6,15.9,33.6,9.8,39.1,55.5,38.7,33.2,374.5,28.6,22.6,30,71.6,63.7,63.1,48.9,56.8,51,69.7,61.9,124.8,51.1,76.7,65.9,65,69.5,52,58.2,48.1,58.2,35.2,23.9,36.8,30.8,33,31.2,24.9,40.8,29.6,42.4,23.7,28.7,9.8,34.4,37,102.6,68.9,252,168.4,129.3,38.6,26.5,52.4,37.1,46.3,45.3,45.6,62.6,134.3,38.6,48.8,36.2,47.9,25.2,18.4,37.7,15.4,39,81.6,52.8,22.2,28.3,29.8,28.3,24.4,29.1,30.4,31.5,41.3,100.8,47.7,46.9,28.7,33.5,33.3,28.7,34.7,28.6,21.6,45.1,44,37.5,25.8,6.7,57.8,29.8,37.3,24.4,29.4,35.7,38.6,27.8,29.7,18.9,31.8,34.7,19.3,16,18.6,20.7,22.4,36.7,43.3,59.2,65.2,106,129.4,88,73.5,57.3,38.5,25.6,46.8,42.2,26.1,11.7,10.6,38.7,23.8,33.1,25.7,20.4,35.5,31.5,25,19,13.6,9.9,11.9,22.8,26.1,28.7,35.8,70.9,26.3,28,33.2,28.2,30.6,30.9,46.7,29,15.2,65.4,70.9,46.6,69.5,22,9.8,54.9,149.2,19.9,10,7,5.5,12.6,3,7.1,3.9,3.1,19.7,16.2,9.7,10,16.5,44.2,26.2,35,24.6,50.5,54.7,27.7,22.2,38.7,13.5,25.3,25.1,1.6,19,21.4,17.3,24.5,27.1,31.3,32.1,59.3,36,37.9,20.2,25.7,26.2,18.3,19.7,24.8,25.3,23.1,27.4,21.3,19.7,25,35.5,19.9,23.7,36.5,223.9,233.8,34.9,31.1,35.1,30.6,22.3,29.9,24.7,30.8,31,31.9,42.1,15.2,13.9,12.9,27.6,32.9,25.2,12.9,18.9,31.1,28.9,32.1,291.2,30.3,29.2,34.8,39.5,33.4,45.2,40.1,39.8,50.6,38.8,52,72.8,37.5,29.7,22.5,45,45.1,22.7,21.5,37,30.8,33,26.5,55.4,48.4,49.7,44.9,51.5,46.6,71.3,37.7,40.9,26.6,27.3,37.1,35.8,26.9,34,45.4,85.2,27.6,39.1,48,38,44.5,57.5,51.1,61.3,57.3,59.3,78.9,64,61.4,65.7,113.3,64,76.6,145.7,156.7,70,64.6,124.2,83.7,35.9,34.5,28.6,25.6,39.6,28.4,23.2,18.1,20.2,30.3,50.7,23.1,30.1,28.1,47,31.4,28.2,25.7,31.6,17.3,18.8,64.8,53.7,44.4,40.6,39.4,40.6,35.9,29.9,31.6,32.1,33.3,21.3,34.6,23.5,29.5,67.6,127.5,40.2,32.3,31.3,9.9,33.3,38,35.2,101,51.5,43.9,48.8,78.2,57.9,58.6,59.1,133.6,153.7,57.2,57.4,66.8,31.3,20.2,15.1,49.6,35.4,21.3,9.4,38.7,48.2,37.1,39.6,35.8,27.6,17.2,28.2,32,44.5,42.7,33.3,35,37.4,74,35.3,42.5,39.6,35.4,48.9,44.6,48.5,45,43,37.9,131.6,47.4,49.7,25.8,34.2,33.6,33.3,30.4,20.1,110.7,113.6,27.3,174.6,100.6,85.3,75.1,76.1,76.4,55.2,36.8,36.7,43.3,48.5,19.2,36,38.7,38.3,40.8,54.3,35.1,62.9,32.4,27.5,32.9,19.2,21.2,29.5,30,29,27.3,25.7,26.9,27.2,5.6,31.9,49.4,57,88.2,79.3,11.5,29.7,32.3,36.3,50,28.9,29.1,35.3,35.7,32.5,9.8,25.4,27.8,31.6,34.4,40.8,34.9,35.4,62.4,48.2,47,39.7,24.5,37.2,57.8,45.9,7.7,57.6,68.7,152.8,53.5,24.3,34.3,28.5,41.3,32.7,68.8,77.2,38.1,19.8,5.1,20.9,31.2,75.5,89,25.1,11.4,21.4,36.5,43.5,41,37.4,55.7,8.5,28.3,41.6,35.9,37.2,26.9,32.3,41.4,29.4,41,25.6,31,66,144.1,37.7,40.1,33.5,36.4,32.7,33.1,32.5,33,26.4,26.6,27.6,36.9,35.7,34,66.4,36,36.8,34,35.6,28.2,26.5,29.9,20.1,19.5,50,42.4,14.5,21.1,40,28.2,49.9,67.3,107.3,31.4,38.8,31,31.5,18.9,25.9,29.2,24.2,27.8,31.2,76.4,157.1,129,111.6,70,94,78.4,89.2,85.7,74.1,40.1,62,57.5,46.2,38.7,34.3,32.8,19.5,42.4,107.9,50.5,37.4,29.2,34.5,29.8,29.3,29.2,28,30.1,28.6,18.3,28.1,28.4,28.7,28.9,19.7,20.7,22.6,27.3,25.2,24.5,30.9,24.1,23.1,23.1,22,29.9,37.8,16.9,13.8,104.8,104.4,106.5,68,57.5,48.9,50.4,49.9,0.6,120.7,63.7,25.4,73.2,52.1,39.1,62.2,56.7,26.5,44,46.5,54.8,43.9,38.9,36,21.3,15.4,23.4,28.9,23.7,29.4,28,46.1,34.3,35.3,85,42.4,45.5,56,41,39,30.2,37.1,62.2,63.6,75,94.1,57.5,84.3,51.8,76.4,66.1,82.7,96.3,659.2,114.9,31.6,5.1,20.8,25.7,121,16.2,8.4,10.6,10,7.6,6.8,10.8,55.4,101.4,137,65.9,37,51.6,59.4,92.9,71.3,199.3,384.4,447.7,78.7,112.7,110.3,110.1,97.8,43.4,63.2,26.9,12.9,31.4,31.4,128.2,305.1,217.3,50.2,37.3,98.4,376.1,80.7,85.9,88.5,60.2,56.4,85.1,68.3,115.9,132.3,61.9,41.1,50.5,29.5,52.1,70.2,54.7,52.9,42.9,59.8,62,113.4,53.9,183,311.3,117.4,115.3,43,46,48.3,18.7,16.4,35.4,35.1,41.8,46.7,26.5,46,330.8,332.1,14,87,43.6,27.5,32,27.4,38.6,33.3,32.9,31.4,29.3,39.2,42.5,42.6,37.4,34.2,39.4,30.6,29.7,40.9,33.8,29.4,35.3,29.8,31.5,37.3,23.7,24,29.3,23.8,24.3,49.7,45.4,12.2,118.7,34.1,56.4,57.4,79.5,39.1,41.6,16.3,44.1,30.8,23.9,26.2,27.5,46.1,87,128.2,53.6,65.3,140.4,116,35,99,5.6,24.7,33.5,131.9,132.5,92.8,38.1,34.6,76.9,79.5,45.1,49.8,278.1,75.6,93.5,73,126.5,119.9,88.5,90.7,75.2,67.4,58.7,27.6,1.2,104,83.8,2.5,73.7,124.3,33.4,17.1,5.7,28.6,26.2,20.4,18.4,23.3,26.1,33.3,36.4,30,34.8,32.9,21.1,18.3,21.6,25.4,22.5,25.2,27.8,22.1,26.1,43,30.6,35.8,36.3,26.1,15.9,15.7,21.8,23.3,21,18.8,16.5,16.2,16.4,21.3,33.2,32.5,1.5,93.5,98.4,130.2,149.6,171.7,36.3,50.8,65.3,52.8,61.1,81.9,79.8,33.1,46.1,29.3,41,40.4,66.6,88,69.1,106.5,62.7,67.6,9.7,37.9,41.4,11.4,28.3,53.2,47.6,21.9,40.7,48,52.9,45.3,43.8,44.4,48.7,45.4,39.2,30.4,40.6,88.2,82.5,60.2,84.2,75.1,71.6,68.3,74.5,55.3,65.5,47.6,50.1,74.5,92.8,92,171.2,102.5,99.3,92.9,101.3,165.3,107.7,132.3,65,69.3,0.1,63,250.5,83.5,94.1,226.9,26.2,76.3,88.9,139.6,161.2,118.9,77.1,25.5,37.9,17.8,32.4,34.7,75,140.5,113.5,107.9,86.5,69.9,1.4,91.6,47.2,392.7,112.8,121.5,11.3,51.1,23.7,84.3,112.1,107.5,125.2,126.7,73.9,66.3,63.1,61.5,38.8,47,49.2,17.3,41.1,51.9,47.1,95.6,72.7,64.1,45,31.4,44.3,37.6,81,75.4,99.4,64.1,286.3,51.9,44.6,57,27.3,110.6,112.9,141.9,92.2,104.1,50.2,7.9,83.9,56,7.6,79.1,14.2,51.4,58.9,144.3,73.1,35.3,44.8,41.8,29.8,60.7,37.4,35.3,31.5,31.1,36.8,27.9,43.7,29.5,26.7,39.5,45.1,92.5,205.4,28.7,44.1,42.7,91.6,92.9,61.8,47.3,95.4,478.9,155.4,44.6,38.6,37.3,32.1,23.5,42.8,50.6,50.2,50.1,50.2,50.2,50.1,50.2,50.1,50.2,50.2,50.1,48.9,68.8,83.1,140.5,201.8,70.6,10.7,39.2,60.8,35.4,35.1,34.3,24,34.7,32.5,52.8,57.4,33.7,31.8,58.4,34.3,46,44.8,35.9,31.8,35.8,38.1,49.2,49.6,114.5,156.5,10.1,116.7,43.1,8.5,38.8,33.7,35.4,32.1,44.7,35,49.4,57.8,130.8,0.1,1.4,0.3,0.8,15.6,170,554.6,221.6,88.4,89.3,91.1,99.4,391.5,111.2,55.4,49.4,65.1,57,74.2,40.4,26.5,188.3,52,140.4,6.7,0.6,127.2,124.5,175.3,89.3,34.7,44.7,58.6,54.8,66.5,41.1,56.5,55.5,201.6,130.7,44.6,82.2,53.6,34.3,49.5,40.1,38.8,23.6,30.5,22.9,29.5,56.1,63.2,53.7,92.1,141.7,283.1,35.9,25.4,30.5,37.5,33.6,43.4,66.1,47.3,54.3,70.7,83.5,133,35.3,51.1,18.1,53.2,78.8,75,72.3,86.2,72.5,66.1,84.7,64.4,43.5,101,109,99.3,48.3,38.9,44.1,34.3,40.9,76.3,124.8,123.1,63,68.5,138.9,42.8,28.1,79.3,63.8,43.4,59,68.5,2.8,42.4,2.4,27.7,72.1,60.7,138.8,167.5,55.6,211.1,76.1,105.9,105.5,284.1,113.2,145.4,66.9,51.5,75.7,89.3,30.4,19.3,74.5,135.2,58,57.6,100.3,33.4,54.1,44.2,32.6,42.8,56.5,55.4,31.3,14.2,93.3,120.8,125,71.6,153.5,93.1,39.9,37.6,74.1,76.6,35.5,282,43.4,36.4,57.5,76,110.3,110.3,134.1,138.8,89.1,100.6,94.3,128.2,149.1,68,58.5,70.9,98.7,45.9,46.3,42.4,43.5,123.4,25.2,45.4,58.9,31,85.4,36.1,62.9,56.5,46.6,102.1,88.5,46.4,88.3,61.9,57.2,45,51.3,58.1,52.6,66.5,35.8,5.1,36.5,44.5,33.9,39.1,41.8,21.4,22,31.5,15,18.6,57.3,12.6,55.9,4.4,31,15.1,39.3,44.7,39.8,48.8,40.3,39.1,18.4,58.9,75.3,41.8,48.6,41.4,39.3,46,42,35.5,35.5,37.1,49,46.5,40.2,29,98.1,150.4,30,21.9,20.2,31.8,37.7,50.4,43.3,45.2,43.3,51.6,33.4,33.6,37.4,38.4,44.2,39.6,89.3,56.1,62.2,59.4,61.4,95.5,79.1,207.4,90.1,254.8,138,39.4,65.9,59,58.3,54.1,85.4,54.7,27.3,58.3,39.5,56,51.5,51.1,90.1,46.5,59.5,44.6,45.9,51.9,138.3,178.7,116.9,124.6,83.1,59.2,29.7,24,20.8,38.1,12.8,10.2,12.6,10.1,33.6,50.4,23.2,29.6,61.2,25.9,35.5,23,41.7,79.7,66.5,63.8,53.1,138.1,404.3,128.7,89.1,1.4,55.3,82.9,83.8,53.8,30.9,31.4,27.1,73.9,71.1,32.6,13.6,61.4,51.3,51.7,66.2,111.7,53.9,113.8,48.7,85.5,62.3,55.5,15.6,82.6,36.5,30.9,55.6,115.4,112.4,81.9,130,101.3,5.9,104.4,102.3,29.3,38.4,107.7,96.4,148,27.9,48.4,34.6,38.3,30.7,40,30.7,33.3,17.7,24.1,47.5,18.1,36,23.1,27.5,27.3,59.3,80.4,201.7,345.5,233.8,312.5,259.5,75.2,38.1,51.7,53.8,51.7,46.8,9,26.7,56.1,55.6,49,47.5,86.6,54.5,49.5,74.6,92.2,61.8,5.3,58.7,47.1,14.7,39.9,18.2,21.5,26.1,29.2,38.4,48.7,38.4,19.7,27.6,25.1,41.1,36.3,1.7,49.8,38,40.4,454.9,18.4,39,69.8,51.7,31.1,11.7,61.6,44.5,68.3,34.4,62.9,62.7,50.6,37.9,43.5,32.3,11.3,19,61.4,74.3,63.7,4.7,30.2,57.1,49.3,72.3,39.6,42.1,51.6,43.8,4.7,47.2,40.3,51.5,20,34.5,95.4,89.7,102.1,53.3,70.3,119,111.3,35.9,40.1,44.6,50.4,35.2,41.9,60.7,56.8,119.8,103.9,63.7,194.6,112.4,69.2,47.3,34.9,83,99.4,49.5,95.1,112.2,95.3,84.5,148.3,71.2,55.8,43.8,36,74,49.8,42.7,11.9,62.8,60.5,96.9,1588.5,35.3,169.6,104.9,51.1,40.7,48.7,44.7,61.4,53.4,58.7,58.8,74.8,38.6,55.6,52.5,62,60.7,343.1,56.3,56.1,46,45.9,38.8,43.4,37.9,36.7,73.4,160.9,56.2,55.1,38.3,34.5,82.2,50.8,42.4,48.1,42.3,32.1,33,34.3,37.9,42,31.1,44.5,83.7,100.1,88,74.1,61.6,30.1,59.2,15.2,69.7,38.7,77.9,137.8,163.6,116.8,166.9,71.1,86.4,109.2,96.2,89,122.3,131.5,48,52.9,29,189.7,87.1,74.5,82,75,52.9,35.1,35.7,72.1,71.2,62.7,97.4,125.7,73.3,63.4,84.6,64.7,43.9,47.2,36.2,42.3,12.7,51.3,25.2,55.2,101.7,138.8,5.4,52,59.9,38.3,25.7,29.9,50.7,76.4,112.4,101.8,77.8,175.3,95.8,100,62.1,224.2,36.4,95.3,61.1,46,38.5,142.8,71.9,92.3,219.1,77.7,104.2,80.8,16.5,22.6,113.5,165.6,90,73.2,100.4,219.2,192.9,26.6,36.2,62.7,71.3,137.9,0.5,212.6,65.6,61,39.4,148.5,84.1,62.6,49.3,27.6,58.8,36,71.2,17,105.8,0.3,48.2,81.7,71,130.3,147.9,25.2,46.5,41.6,36.1,33.9,42.6,52.6,46.8,47.4,40.7,57.5,49,93.9,45.1,49.2,45,41,39.3,26.6,28.9,52.9,51.1,29.1,25,46.2,43.5,48.7,44.6,97.4,47.8,44.6,49.3,49,47.7,44.9,43.5,35.7,34.1,27.7,31.3,29.8,34.2,31.7,24.3,28.1,50.1,35.9,51.5,21,19,28.7,70,97.8,94.6,32.2,62.5,29.9,17.2,215.1,67.6,37.3,14,27.1,24.4,46.3,45.2,49.4,17.8,46.3,48.7,38.7,59,57,23.9,26.7,37.1,11,28.8,44.9,37,33.6,40.1,23.8,42.2,32.8,26.5,42.4,44,41,48.6,54.9,38.5,40,37.4,51.1,30,54.7,48.8,40.3,35.1,40.1,31.2,46.6,188.1,33.5,48.7,29.3,24.2,74.8,35,44.6,44.5,35.7,48.7,29.3,39.3,300.6,112.7,52,87.3,35.3,149.6,29.5,93.4,46.9,103,201.6,67.2,42.4,67.1,25,81.7,79.5,37.1,31.7,199.6,125.2,241.4,131.3,97.3,13.7,89.3,71.1,76.4,77.4,215.9,7.3,153.1,110.7,60.9,110.5,85.8,95.1,4.6,87.7,79.5,73.9,130.1,62.9,56.1,91.4,62.1,71,74.6,65.9,48,95.6,79.7,66,46.6,37.4,58.6,38.8,28.8,29,46.7,37,43.9,38.1,50.1,71.1,76,192.1,223.1,63.1,60.2,49,51.3,22.9,26.1,43.7,83.9,84.8,85.4,83.3,94.7,78.8,59.9,18.5,33.5,28.4,66.4,650.4,261.9,27.7,62.9,32.4,31.4,43.5,66.2,78.5,20.7,17.2,31.7,64.4,103.9,96,76.9,64.6,63.5,43.7,38.8,172.4,204.4,49.5,80.6,76.7,69.1,141.1,133.7,58.7,46.5,84.4,76.4,66.2,124.1,109.9,108.6,59,65.7,51.4,76.1,51.7,46.3,27,29.5,36.7,26.9,58.1,30.2,32.4,56.9,51.9,110.5,111.2,95.8,46,11.8,88.4,93.4,146.8,39.5,12.3,133.6,204.4,105.5,104,61.6,41.1,73,83.9,47.9,17.5,36.5,44.6,37.8,48.5,51,112.8,48.4,5.9,102,255.7,420.2,76.6,66.4,66.7,59.7,51.8,51.4,33.1,65.9,44.5,42.7,34.6,130.4,89.6,36.3,25.9,34.1,34.6,51,43.8,28.7,26.8,38.4,74.1,65,26.6,33.3,231.3,75.3,34.1,55,22.6,37.5,108,82.3,38.8,44,47.8,55.9,46.7,39.4,39.4,43.6,43.7,5.5,40.3,42.8,43.4,56.7,60.7,75.6,63.5,59.4,77.6,61.4,54.1,84.3,91.1,161.2,32.3,43.9,75.1,37.5,19,9.6,30.2,22.6,72.5,90.6,86.8,46.5,40.4,159.8,42.9,217.7,37.2,32.4,40.3,33.6,40.8,32.3,29,35.7,52.2,25.2,16.7,68.1,42.3,41.3,57.6,57.5,39.6,38.1,49.6,70.8,37.3,39.1,63.1,51.6,29.9,36.7,62.2,56.9,49,53.5,56,98.7,73.4,69.6,110.5,257.8,569.1,78.8,72.8,126.6,29.2,26.8,39.9,29.6,31.7,36.8,46.5,22.9,66.6,56.4,60.9,188.2,56.6,87.2,79.5,22,32.6,33.9,28.6,33.7,39.4,37.5,31.3,27.3,48.2,51.5,43.9,29.6,29.4,34.4,26.9,27,33,62.1,51,84.2,16.3,19.3,62.9,62.5,67.4,99.5,5.5,58.6,60.5,18,74.4,75.5,97.8,91.2,122.4,64,58.5,53.3,58.9,41.1,98.8,37.6,52.2,69.7,45.5,126.2,49.3,58.6,50.1,36.9,45,52.8,73.6,45.4,42.5,35.6,83.8,25.7,30.3,72.9,7,0.2,19.7,26.6,45.2,19.3,21.3,23,18.6,26.4,92.1,126.4,198.1,18.5,13.8,26.6,43.5,52.2,30.8,25.5,28,26.8,31.4,36.8,0.7,50.3,39.6,0.6,164.4,102.6,88.3,82.6,44,66.1,45.2,30.2,42.3,43.4,42.1,37.2,25.8,20.9,22,21.6,11.1,46,19.3,56.8,59.3,46.6,45.9,43.2,94.4,115.1,98.4,55.4,36.9,31.7,46.5,28.6,23.1,51.1,27.9,27.5,49.8,10.9,29,25.9,22.5,24.4,26.5,32.9,24.7,27.8,27.2,30.4,29,29.6,27.5,29,18.2,52.4,31.1,19.3,0.1,7.5,43.3,71.6,31.1,73.9,73.6,72.8,11.9,76.1,64.9,71.1,54,17.1,104.6,47.6,59.5,90.8,65.7,10.5,14,14.4,19.9,61.4,17.1,81,67.3,75.4,15.3,144.4,66.1,50,49.9,33.9,15.3,241.9,50.9,63.3,22.2,25.6,21.6,54.2,30.9,24,26.6,57.7,32.5,27.9,30,34.5,43,80.8,91.8,70,19.8,19.9,20,19.8,19.9,24.8,39.4,43.9,30.5,55.1,49.5,56.3,53.5,35.5,30.7,47.3,69.1,34.1,34.2,40.1,45.3,44.6,37.8,30.3,29.1,78.2,60.4,3,29.6,49,38.8,41.5,97.1,86,90.7,85.1,73.7,81.5,66.1,79.3,97.1,132.8,74.4,78.7,138.3,93.7,39.4,24.7,20.9,27.1,29.9,30.7,26,27.2,25.4,27.9,22.9,24.7,29.9,21.2,18.1,24.4,27.9,23.6,20.9,13.9,18.3,48.6,21.7,70.8,42.4,30,6.7,24.5,29.1,25.8,32.9,15.6,16.8,16.1,19.5,19,27.5,23.2,81.8,78.8,244.1,189.6,111.1,28,23.7,25.4,28.4,25.4,34.7,23.9,25.2,22.6,14.8,6.2,22.2,19.6,17.3,22,14,11.6,72,64.6,14.9,5.6,6.6,24.4,38.6,37.9,32.1,31.5,60.5,49.4,41.6,38,31.8,31.4,38.5,29.1,42.5,34,0.9,100.4,181.2,90.6,92.6,199.8,6.5,20.3,20.5,10.5,183.5,195.3,13.5,27.7,86.8,119.7,16,24.8,33.8,30.5,38.9,22.6,28.1,31.4,41.6,30.8,104.5,70.8,17,153.2,1.5,80.6,81.2,161.6,47.5,0.1,17.2,27.3,13.9,42.3,29.9,14.4,36,29.7,32.2,41.2,45.1,69,64.5,2.3,43.1,105.2,78.8,16.4,5.4,46.5,112.6,50.3,123.5,180.4,242,77.7,52.1,41.1,38,451,61.6,66.1,88.1,21,22.5,25.3,32.4,19.5,24.7,36.3,139.1,43.7,64.9,116.6,44.1,42.9,40.6,34,32.7,91.5,20.6,26.7,22.6,29.4,22.9,25,54.2,48.7,43.7,36.3,52.4,65.9,15.4,95.1,50.9,37,40.4,27.4,50.1,58.6,46,53.1,85.8,111.9,73.4,104.3,20.4,80,21.3,21.3,43.1,50.8,64.8,66.7,65,86.6,14,53.6,54.4,43,39.1,31.3,26.1,26.4,45.5,11.1,29.9,44.9,49.8,158.6,33.7,17.5,18.4,17.5,27.4,18.9,25.4,21.6,5.6,19.8,1.1,23.9,32,34.6,55.5,59.8,37.6,32.7,37,134.4,47.3,45.4,150.7,50.1,66.9,87.6,65.5,144.5,42.4,37.4,168.1,85.9,37.9,48.6,134.8,32.7,53.6,135.8,50.1,90.3,64.5,92.8,55.5,38.7,40.1,18.7,40.1,113,91.1,67,168.7,63.8,83.4,56.5,54.8,100.2,26.2,47.3,48.7,123.8,25.5,23.4,20.8,21.5,28.8,17.3,20.2,83.5,77.1,55.5,28.5,16.2,17.8,20.2,23.4,20.6,22.8,24.8,87.8,70.6,73.7,72.1,94,22.3,25.9,52.2,22.5,22.3,22.2,33.1,24,19.8,16.4,21.4,17.4,19.9,140.2,223.6,238.7,37.9,43.6,34.6,26.6,208.2,25.3,60.2,35.1,46.8,24.5,7.4,7,65.2,14.3,35.6,38.1,15.7,70.6,38.9,17,18,18.3,15.5,51.6,14.8,17.6,19.9,73.6,100.9,12.6,48.5,26.9,36.8,79.9,41.1,35.5,21.6,78.2,33.7,11.9,122.8,11.8,133.7,25.6,51.3,16.5,17.2,17.3,16.2,11.9,15.4,71.4,59.3,129.3,43.7,45.1,117.4,127.3,26,49.9,32.7,30.9,24.9,7.2,10.2,132.2,45,23,45.1,105.7,24.6,7.8,32.3,69.8,76.8,59.7,74.8,99,18.1,13.2,10.2,10.6,18.3,12.4,16.4,16.2,15.2,26.7,109.4,40.3,11.8,13.8,14.8,7,8.1,19,15.3,15.4,14.3,15.9,16.9,69.1,70.2,36.7,45.9,19,17,17.4,16.5,73.3,99.5,55.1,78.1,26.9,20.2,19.8,42.9,117.7,58.5,17,17.1,16.7,15.4,14.3,15.5,15.6,16.2,19.8,16,15.9,14.9,13.9,14.5,13.4,10.1,3.3,11.4,11.5,46.6,39,6.6,13.1,14.6,20.3,19.1,14,12.8,13.6,14.2,14.1,13.9,17.9,18.2,42.1,60.5,68.5,105.4,17.3,16.1,13.5,15.4,15.4,14.6,11.2,16.1,17.2,32.6,56.4,38,31,6.6,23.6,19,38.7,43.5,60.5,18.1,16.8,15.4,13.4,23.6,53,82.9,47,25.2,23,29.4,35.9,32.6,5,436.2,119.4,37.1,26.9,27.9,66.6,30.5,41.3,30.3,32.1,24.8,17.4,22.1,36.5,10.9,9.6,12.5,12.1,15.1,95.3,24.7,11.8,13.8,10.9,15.3,26,12.4,17.4,23.7,20.2,28.8,27,30.3,11.3,17.3,24.7,31.1,33.9,15.8,18.3,20,24.5,17.2,32.5,19.2,22.2,22.3,29.1,21.5,38.6,21.1,24.5,14.4,29.9,22.3,57.4,28.2,14.7,21.8,19.8,15.9,19.2,24.4,18,20.2,30.8,23.1,24.3,24.7,29.5,27.7,24,29.3,18.6,35.3,124.4,88.5,91.4,41.8,54.5,46.3,33,28.2,56.5,22.5,20.8,26.7,24,38,43.4,40.8,110.5,94.6,112.8,44,35.9,55.1,98.1,49.2,38.8,37.5,23.2,21.5,38.9,44.4,43.9,43.9,40.2,31.3,33,37.5,25.6,38.2,26.7,27.2,32,43.7,31.5,30.6,30.8,31.3,28.7,30.8,31.5,35.1,27,38.2,40.4,30.4,21.1,15.6,16.8,43.8,37.5,58.6,29.6,25,33.7,47,52.6,43.3,34.9,37.1,70.6,56.3,61.1,109.1,113.8,38.7,23.5,24.8,29.8,32.4,30.8,22.3,22.4,20.4,26.7,32.8,81.7,71.1,62.8,47.6,40,37.9,28.8,25.8,27.7,22.2,24.8,28.6,28.2,30.4,42.6,30.8,37.5,32.8,24.8,32.9,38.7,44.5,29.7,20.6,20.1,37.4,56.1,52.1,448.4,43.1,27.5,31.1,18.4,39.3,22.6,24.8,14.8,40.2,30.6,37,34.5,21.9,37.6,48.8,3,12.8,101,66.7,93.9,1.1,32.9,41.7,616.7,70.7,40.7,36.6,39.6,39.2,62.5,31.5,34.3,24.9,30.5,26.3,35.3,19.8,28.1,36.1,41.2,33.4,1.2,8.6,100.3,78.6,43,34,43.1,40.4,65.6,132.2,28,18.1,14.5,14.2,20.5,23.9,20,13.7,27.3,24.1,18.7,16.1,24.9,23,23.2,20,24.9,26.7,58.1,36.7,16.6,13.8,21.9,20.5,21.6,23.7,29.6,28,18.8,18.1,18.9,18.7,20.7,21.4,34.4,26,20,17.8,19,20.9,16.7,23.8,8.4,11,19.9,26.1,32.3,790.2,43.1,41.4,22.8,16.5,14,14.7,16.7,19,12,66.3,80,69.4,76.8,48.7,38.3,31,24.1,29,28.3,27.2,22.5,30.1,18.3,17.7,23.8,17.9,29,29.3,87.3,50.2,23.9,17.3,21.4,24.4,28.3,26.3,27.8,32.2,35.8,41.8,53.7,45.7,36.6,39.4,30.8,20.6,18.6,14.8,50.2,52.3,61.6,54.5,112.7,205.1,53.2,48.5,50.1,38.3,44.4,38.4,38.1,34,30.4,24.7,26.9,26.2,26.3,26.7,32.7,30.2,42.4,46.9,130.1,45.3,83.6,25,51,28.3,31.5,27.7,31.8,30,31.9,22.7,67.2,69.5,49.1,48.2,28.7,31.8,26.9,31.3,30.2,36,34.7,39.4,52.7,77.1,41.5,22.3,26.1,25.1,31.1,29.4,32.5,66.4,73.7,96,116.6,40.8,27.4,22.3,18.6,20.9,20.2,25.2,26,24.6,25.5,27.2,26.9,30.8,49.7,78.3,32.9,24.9,28.5,29.2,27.9,23.9,22.3,16.3,12.2,54.6,58,87.7,53.7,8.4,291.4,58.9,9.5,45.7,20.7,31.2,57.3,96.6,32.2,54,49.3,25.6,59.3,99,71.8,78.6,37.6,40,38.6,69.6,79.9,78.2,37.2,45.9,48.5,39.8,55.1,97.2,91,67.9,32.7,31.1,119,515.5,200.2,94.2,61.3,31.3,88.4,57.1,313.8,59.2,115.3,88.3,24.8,113,210.5,242.8,127,96.7,102.6,423.8,182.7,37.9,164,64.9,225.2,146.6,122.4,163.5,150.1,736.5,39.9,99.3,31.7,32,56.4,51,26.3,26.8,104.1,39.5,46.1,117.7,318.1,64.8,45.3,38.4,26.4,31.4,45.5,36.6,29.6,27,23.1,47,41,97.7,18.4,21.2,30.9,27.9,21,19.3,38.9,44.9,23.9,1.1,41.6,48.6,52.1,71.9,105,81.6,109.4,40.5,28.5,21.3,24.7,28.4,24,0.1,29.8,39.3,279.4,51.3,57.9,54.3,43.6,50.5,58.1,99.9,79.5,74.4,75.6,81.2,216.8,29.7,32.5,31.8,28.3,42.6,37,35.8,37.4,39.7,42.2,350.7,61.6,85.9,30.2,30.4,27.3,27.7,51,38.2,49.3,49.9,50,52.1,47.7,33.4,79.9,17.4,16.5,22.3,27.2,42.5,195.7,52.4,36.8,42.6,59.7,36.6,77.3,152.6,102.3,28.8,35.5,16.2,51,59.5,70,57.7,60.4,10.7,51.5,258.1,73.3,55.6,33.5,60.1,37.1,97.2,47.2,21.8,39.6,69.1,75.4,75,35.5,192.7,162.7,112.8,41.1,34.9,18.1,41.3,38.4,44.9,84.4,215.3,28.8,186.7,56,37.5,79.9,27.8,69,5.3,29.1,109.7,110.2,46.8,47.9,108.6,71.1,71.9,256.5,155.5,135,22.1,27.9,31.7,35.6,35.3,34.4,25.4,31.3,518.8,91.8,26.2,40.5,64,49.3,74.4,60.8,233.3,153.9,83.5,118.7,90.2,61.4,87.3,43.5,341.4,893.2,227.6,218.3,164,452,84.3,12.4,341.4,193.7,246.3,402.9,260.4,139.9,135.9,170.2,10.1,164.7,229.3,141,114.9,127.8,96.5,106.4,94.5,98.3,674.5,112.5,106.2,157,98.5,119.9,99.9,153.3,138.8,107.3,110.2,143.5,129,137.4,421.9,49.2,92.7,89.5,44.4,5.4,69.5,50.8,12.6,43.7,15.4,0.6,283.5,39.9,178.8,44,91,90.4,55.8,56.1,49.4,34.6,36.9,43.8,30.6,44.1,30.5,31.3,24.2,63.9,35.9,32,38.9,40.1,39.7,41.4,40.4,94,1050.3,293.3,412.1,328.9,9.9,61.2,4.7,4.5,28.4,154.3,68.1,18.8,45,227.2,812.3,375.7,327.6,674.8,608.3,315.7,322.1,36.7,33.4,180.4,142,306.6,375.4,299.4,48,122.5,550,33.8,34,130.4,284.8,274.6,139,210.7,259.5,336.5,664.1,20.7,33.4,335.3,397.5,327.9,167.3,54.9,298,302.5,98.9,87.1,103.2,75.8,80.4,2.5,121.9,104.4,92.5,90.1,67.3,125.1,60.4,190.8,171.4,200.4,32.2,17.6,605.8,159.3,121.3,134.7,63.9,104.5,8,181.6,47,81.8,115.1,87.8,46.1,9.5,100.2,7,149.8,16.1,28.6,30.8,34.1,28,26.8,21.9,18.3,21.3,11.4,11.6,21.8,21.8,19.1,22.4,16.6,26.7,29.2,28.7,47.7,34.9,34,32.2,36.2,42,34.2,39.1,57.3,56.4,172.4,542,699.7,176.7,334.8,485.9,199.6,119.2,60,64.6,76.8,71.3,79.7,33.4,89.1,530.2,434.3,112.2,606.7,452.2,172,34.1,44.3,24.7,94.7,53.5,88.5,77.6,56.9,56.7,49.5,114,353.1,192.5,109.3,79.2,82.5,160.4,147.8,139.6,356.5,213.6,195.1,486.4,124.5,74.3,103.3,77.1,96.2,91.1,111.3,63.8,52.8,67.8,80.6,149,244.1,228,233.8,452.9,1350.4,110.2,37.1,53.9,38,28,46.1,61,42.7,49.9,52.8,61.8,65.3,58.2,116.3,304.2,50.4,45,54.7,48.6,46,36.1,58.6,54.6,70.1,195.4,272.4,179.9,87.2,9.3,468.7,504,213.6,175.2,125.2,236.8,115.2,109.6,53.1,39.7,181.4,165.8,131.2,125.4,133.3,617.1,343.4,438.1,338.1,491.5,507.6,582.6,67,179.2,53.9,250.9,299.1,1577.8,477.6,276.7,747.2,463.9,517.8,753,142.2,86,87.3,480.9,117.1,152.1,111.9,264.8,0.1,303.4,503.6,156.2,215.7,130.1,5.9,78.9,81.5,105.8,52.7,51.4,61.7,73.7,101,65.4,441.6,357.6,239.7,121.6,56.8,58.3,79.9,82,84.4,83.6,110.9,67.8,69.1,59.2,65.8,143.8,595.9,18.5,1.6,708.8,184.9,148.1,185.7,159.4,283.3,213,58.4,186.4,190,83.4,84.6,87,42.7,86.2,68.9,12.6,431.9,153.1,247.1,495.7,149.5,149,297,207.4,175.8,64.4,17.9,171.3,146.3,209.8,136.4,115.6,103.8,377,379.3,604.5,87.7,76.8,92.7,45.4,208.3,64.4,60.3,352.4,136.5,268.5,527.1,326.8,203.4,262.8,128.1,69.6,593.4,28.3,35.6,57.4,28.3,76.8,106.5,75.5,75.5,80.1,48,14.6,494.3,167.4,116.2,50,72.8,73.2,80.3,76.5,163.9,57.3,1.1,29.4,226.8,90.9,85,66.1,51.2,98.5,206.8,255.5,258.9,137.7,108.1,255.1,319.9,439.2,190.6,191.3,183.9,315.5,323.4,119,359.3,320.7,326.7,511.7,188.4,184.8,115.4,114.7,153.6,143.1,525.9,295.5,303,323.7,299.7,173.2,167.7,178.4,150.9,712.6,107.1,81.2,135.3,153.7,464.8,446.5,674.2,110.7,654.3,572.9,180.5,202.6,97.6,112.7,484.4,330.2,165.1,174.7,79.1,121,175.4,143,46.3,140.5,28,245,101.1,176.2,265.9,271.1,202.7,513.8,386.9,180,128.2,76.2,42.9,151.7,172.4,126.7,1054.8,518.4,87.9,120.7,255.7,92.2,161.4,126.7,8.5,40.1,144.5,147.7,25.8,55.7,93.6,109.3,50.7,70.4,52.4,87.9,79.9,51.4,26.5,28.6,43,52.8,9.8,13.4,2.7,10.7,6.5,11.2,73.2,68,56.1,143,2.1,141.7,137.5,169.6,260.2,313.9,192.4,195.9,143.7,150.4,373.8,463.1,104.4,82.8,90.1,61.6,41.9,343.3,36.5,162.3,24.1,22.3,23.6,21.5,191.8,428.7,81.5,67.8,85.9,6.8,49.9,101.5,167.2,67.6,19,79.5,57.3,98.6,52.4,22.8,44,36.6,45.1,120.9,12.6,24.8,16.3,1.6,4.3,4.4,4.4,4.4,4.4,4.4,2.8,1.5,4.4,4.4,4.4,2.2,4.3,4.3,4.5,4.4,2.4,2,4.4,8.9,6.3,1.8,2.5,1.4,1.5,2.4,21,5.3,72.8,92,26.6,15.5,19.5,18.9,7,6.7,5.6,9,4.4,10.3,11.2,77.7,15.1,24.1,13.6,90.3,19.2,3,7.2,17.7,7.4,5.8,8.8,7.3,11.3,13.9,2.1,5.9,12.1,44.2,17.6,17,66,27.7,23.5,4.9,5.5,3.5,1.9,11,5.8,5.1,8.1,7.5,39.8,58.9,0.1,81.5,13.5,7.9,0.3,1.5,1.2,8.6,29.5,15.7,21.7,16,27,29.7,11.1,9.9,53.5,70.2,9.5,0.5,3.4,7.5,6.5,132.1,17.7,24.3,9.9,13.6,11.6,5.5,84.3,5.2,54.9,21.1,8.1,20.3,11.1,8.5,39.9,30.4,20.4,22.8,24.1,113.7,249.5,8.2,16.2,7.5,109.1,48.2,69.3,12.4,5.4,9.6,8.5,1,1.9,8.3,9.2,241.3,8.1,60.3,149.8,14.6,38.1,195.2,3.8,26.3,74.4,50.6,7.4,18.5,11.3,4.7,4.4,20.9,4,4.1,3.8,3.5,3.7,5.3,2.8,2.9,3,3.3,3.3,3.4,3.4,3.3,2.4,3.4,2.4,2.8,3.1,4.5,0.4,2.5,2.7,2.3,2.4,2.5,2.5,4.6,3.4,3.4,4.2,4.6,4.2,144.8,8.7,9.4,139.6,13.9,37.3,17.6,13.1,84.4,69.4,71.3,9.3,13.6,13,68.5,1.9,62.6,5.4,7.6,24.5,53.7,3.4,17.9,4.7,6.5,8.6,49.5,3.9,19.7,14.7,11.1,11.5,19.9,7.1,105,59.1,68.4,7.6,7,1.7,2.4,28.4,2,6.1,5.5,8.2,18.8,7.6,4.7,19.5,11.4,44.1,54,40.8,13.2,113.5,34.3,15.3,11.7,3.6,1.3,1.8,4.2,9.9,45.3,140.8,5.6,7.1,148,5.8,7.2,116.7,117.9,17.8,32.4,15.1,6.2,2.4,1.6,3.2,8.9,80.5,7.9,21.4,5.1,72.8,5.9,6.7,9.8],"duration":[10.244,0.671,8.107,1.247,11.889,4.541,0.225,0.775,1.495,1.666,4.422,4.899,7.658,9.475,5.566,7.056,1.38,9.471,1.403,10.079,2.271,1.748,3.43,1.283,6.452,4.635,8.237,8.75,5.925,0.512,0.803,16.208,1.024,20.035,1.842,11.8,12.628,1.572,6.6,6.731,8.4,11.707,13.725,5.681,1.484,1.935,2.116,2.251,2.373,2.314,1.892,2.217,8.661,0.915,3.942,2.085,7.299,6.728,2.167,18.963,8.965,4.171,2.756,26.707,4.707,1.584,2.347,25.948,0.542,3.606,1.317,3.607,22.972,5.718,4.197,1.143,0.708,0.699,1.243,0.835,0.814,0.808,1.169,1.174,0.896,0.859,0.861,0.856,0.859,0.873,0.859,0.856,0.861,0.875,0.866,1.709,0.971,0.998,0.95,1.129,0.846,0.969,2.558,0.867,0.944,1.739,10.848,2.954,10.927,3.934,3.896,5.823,13.369,5.819,3.404,9.67,1.258,1.385,9.95,3.633,5.915,3.961,3.611,2.019,1.354,15.074,2.965,5.128,4.674,2.545,3.645,2.299,2.148,2.301,1.136,0.996,1.047,0.973,0.898,0.853,2.726,1.985,1.771,0.849,2.017,1.534,13.014,2.859,1.103,1.103,4.233,10.519,3.735,2.107,12.757,4.557,2.407,11.511,1.029,2.674,0.674,1.034,4.706,6.687,1.446,1.49,0.992,2.13,2.744,2.029,10.137,5.52,2.864,5.5,4.664,4.971,4.079,5.696,13.5,4.5,1.114,0.303,2.577,7.068,4.133,17.314,1.632,1.191,0.843,0.922,3.664,0.582,0.658,1.97,2.061,0.508,0.707,2.248,5.75,5.684,7.484,2.393,1.679,13.822,14.1,19.162,3.027,3.382,8.14,1.648,5.371,4.557,11.729,3.051,1.428,7.386,1.133,6.957,2.156,6.735,5.317,2.085,2.425,3.637,2.518,8.576,4.555,1.156,1.338,2.281,7.034,5.333,8.973,6.802,12.878,4.993,2.314,7.401,22.369,9.429,2.033,1.82,7.915,0.356,2.907,1.34,3.368,4.727,8.585,8.529,4.951,1.76,1.347,2.037,1.509,1.598,2.065,1.979,1.874,1.678,2.121,1.859,2.758,2.134,5.097,6.816,2.856,2.592,3.491,3.313,3.355,3.003,2.132,2.963,4.657,3.076,2.21,1.893,1.348,0.62,1.103,3.297,6.6,1.657,5.843,3.524,4.5,1.226,1.798,1.925,2.857,5.59,1.618,4.789,2.747,1.923,0.715,1.828,0.965,1.77,1.48,0.352,3.301,1.412,1.103,0.922,1.151,0.993,1.109,2.048,2.173,2.404,6.265,6.265,3.125,3.136,3.15,2.457,0.669,3.902,2.943,1.87,1.061,1.987,1.013,1.535,2.371,1.591,0.805,1.943,2.506,1.5,1.547,7.585,1.778,0.45,19.697,3.852,2.265,10.912,10.883,10.874,1.837,1.843,2.899,3.141,1.664,4.771,3.411,1.371,1.369,1.435,1.396,1.049,1.825,1.855,3.681,3.75,24.24,7.889,18.607,28.269,4.127,3.498,3.715,8.235,6.84,13.909,13.989,5.914,2.272,1.888,2.524,2.218,2.416,2.461,2.419,10.724,6.38,5.364,4.213,3.519,3.767,3.606,3.278,5.622,5.693,4.955,4.129,5.413,3.713,2.21,14.82,13.447,5.702,2.052,4.031,9.963,4.362,4.397,4.085,4.084,2.074,1.611,3.223,4.386,2.544,5.387,2.861,2.244,2.54,11.463,1.757,2.876,5.481,1.781,6.717,1.328,5.494,3.084,13.171,7.132,4.468,3.21,2.188,3.934,5.058,5.76,2.141,2.202,23.417,24.777,4.04,1.854,10.697,1.852,7.446,11.264,11.435,4.366,3.968,3.438,2.91,4.188,9.564,3.134,2.982,3.03,3.568,8.546,3.682,4.004,4.161,15.772,1.381,2.776,1.539,3.079,2.032,4.043,7.924,2.602,1.62,2.29,2.262,3.882,4.407,4.821,4.653,4.667,3.213,4.046,4.471,2.008,1.936,2.608,1.916,5.059,4.968,3.785,1.11,2.924,4.548,1.662,3.06,3.836,3.272,2.347,1.8,5.375,1.998,2.046,2.009,1.955,3.093,1.523,2.382,1.663,2.586,3.949,4.398,4.433,2.06,5.489,9.643,9.655,12.871,20.483,10.235,9.558,8.03,8.152,3.997,2.784,2.803,1.889,7.067,3.667,9.992,3.68,3.147,2.751,2.004,2.344,4.008,6.596,3.023,7.546,3.541,2.631,3.612,3.934,1.782,2.305,4.129,0.012,2.755,3.624,1.428,1.943,1.715,0.853,0.741,2.391,0.654,1.614,3.931,1.241,1.326,1.269,1.626,2.915,2.46,1.783,3.671,4.208,4.363,4.185,3.652,4.572,4.408,16.184,6.789,5.939,8.989,5.401,4.592,3.557,3.96,4.741,3.977,3.536,3.363,3.803,2.85,3.99,6.238,3.914,3.259,9.125,6.178,3.331,4.022,3.955,3.845,4.146,3.193,3.133,4.456,4.003,1.879,0.655,2.199,7.716,6.368,4.521,4.844,4.151,5.713,4.782,3.426,3.354,3.954,3.056,3.642,3.649,3.043,5.471,3.792,0.303,3.858,3.99,4.27,6.685,6.316,5.168,4.597,4.264,4.407,3.609,4.381,3.916,4.087,3.373,2.558,4.156,3.31,4.357,5.373,4.64,4.859,4.894,4.535,2.5,1.946,8.151,3.063,1.29,3.648,5.093,4.275,2.138,4.52,7.172,7.111,6.601,4.423,4.246,2.089,5.513,1.865,6.253,3.925,3.816,2.908,2.865,2.651,0.753,1.4,0.611,5.104,2.704,2.44,0.348,1.486,4.133,2.723,2.574,2.939,6.391,5.365,4.953,6.335,4.907,5.457,5.779,5.925,3.595,5.132,5.588,5.477,6.73,7.517,5.663,5.437,5.076,9.767,5.946,4.754,7.25,8.375,4.693,6.935,3.714,1.318,7.288,13.37,7.545,5.138,5.384,6.325,6.914,10.52,9.497,10.631,2.021,6.387,7.526,5.32,8.018,6.662,6.858,6.237,7.026,2.441,0.778,3.4,14.669,8.838,8.088,3.762,6.26,2.303,4.897,4.918,4.765,2.818,1.929,0.794,2.364,3.845,4.864,8.446,9.64,4.507,3.344,4.864,7.276,7.59,8.163,7.711,7.84,14.342,5.726,5.287,0.35,5.355,5.93,5.598,4.265,6.167,5.488,12.638,5.865,1.745,3.217,2.359,3.274,2.056,2.91,2.49,2.386,3.23,5.227,6.272,8.83,5.374,3.731,4.004,1.898,5.879,2.543,1.354,1.925,1.79,2.746,2.638,1.318,1.51,2.447,2.389,1.563,3.444,4.149,2.238,2.439,3.886,3.672,1.734,4.186,2.713,1.484,5.414,2.354,4.331,3.527,3.495,3.881,0.731,2.997,2.557,5.513,6.785,6.018,3.585,6.05,3.59,1.783,1.479,3.031,5.646,4.02,4.062,2.765,2.391,1.891,1.995,3.145,2.687,2.976,3.917,4.018,2.858,3.101,2.189,2.631,11.097,5.241,2.544,1.35,4.863,1.688,0.976,2.922,3.721,3.47,3.393,3.669,5.069,1.167,1.029,3.832,5.445,3.965,0.853,4.546,4.522,4.618,4.601,5.524,4.216,5.295,11.036,1.466,3.19,2.789,5.398,4.874,3.887,4.224,0.947,7.032,7.3,3.721,19.326,4.571,4.377,2.874,3.04,2.977,2.956,2.432,2.721,12.36,3.587,3.825,2.974,4.223,3.251,3.826,4.834,3.454,3.668,3.212,9.046,4.932,8.1,5.988,7.011,4.957,3.176,2.578,3.639,6.255,3.325,2.551,2.509,3.13,3.05,3.602,2.953,3.207,2.561,0.473,10.189,4.907,5.848,5.846,4.493,3.911,3.641,2.034,2.853,5.081,5.958,13.51,4.595,2.663,2.295,1.725,1.083,2.871,1.767,4.4,3.093,1.672,4.258,3.924,3.833,5.734,13.312,4.586,4.637,4.425,6.134,3.634,2.743,3.848,3.805,3.566,14.621,6.304,5.167,5.221,11.098,4.702,4.294,8.58,5.815,3.261,4.006,5.001,2.394,2.867,4.524,3.088,3.666,3.763,3.475,4.727,10.162,6.984,5.761,4.574,4.29,4.015,5.678,4.427,4.409,4.114,5.052,7.483,7.197,5.791,4.871,4.658,3.661,3.672,4.833,3.482,2.589,2.626,2.225,3.232,2.206,3.37,2.63,1.524,2.856,1.105,2.038,2.125,2.032,1.701,1.711,1.536,14.288,7.918,4.314,2.65,3.536,6.982,5.743,3.739,5.372,8.081,0.425,2.857,3.201,44.746,3.295,3.578,4.004,3.195,4.404,3.919,16.544,2.842,2.959,4.097,8.92,54.233,3.245,2.684,2.303,2.271,14.626,3.326,4.206,14.576,2.247,3.354,4.468,1.713,1.488,0.594,5.996,6.904,1.412,3.738,5.262,17.836,2.161,1.769,1.209,0.904,1.009,1.853,1.412,2.35,7.177,1.133,1.417,2.057,1.451,1.774,2.142,1.604,4.05,11.609,4.314,3.816,4.521,4.004,2.291,1.991,1.889,2.088,2.226,2.2,7.3,3.553,9.589,2.927,19.003,4.766,1.485,3.103,13.431,2.316,2.33,3.197,2.485,2.383,17.906,4.686,6.43,8.115,2.889,1.829,1.799,2.316,2.8,3.026,3.186,7.58,3.499,8.071,1.829,1.361,1.107,0.726,0.866,0.948,0.889,0.563,0.543,1.44,0.967,0.841,0.819,0.823,0.868,0.78,1.863,3.514,1.669,1.592,1.724,1.994,1.616,0.242,4.462,10.078,10.994,3.055,3.112,3.964,21.174,3.054,2.075,2.058,1.894,1.892,2.225,3.309,30.803,3.957,4.622,4.997,3.124,4.75,2.242,5.967,10.897,5.542,5.436,14.671,3.524,1.853,1.144,0.612,0.854,0.876,0.584,0.815,0.481,0.588,0.74,0.665,0.709,0.665,0.595,7.73,2.538,3.126,1.998,2.096,0.858,0.646,0.679,0.632,0.716,0.516,0.759,0.886,0.574,0.642,0.81,0.639,0.694,0.584,0.803,0.609,0.913,1.063,0.888,1.098,0.801,1.055,1.536,1.134,3.138,3.623,4.211,1.4,2.7,1.602,1.601,2.916,0.816,0.927,0.986,0.799,0.971,0.852,0.716,0.64,0.558,0.433,0.853,1.461,1.197,1.069,1.114,1.422,2.089,1.417,2.653,9.842,0.54,0.874,1.397,1.127,1.07,1.425,1.27,1.496,0.992,1.124,1.088,0.789,0.973,1.949,2.354,1.015,1.515,0.962,0.883,0.981,0.892,1.434,0.822,0.948,0.805,0.242,4.491,2.062,1.049,1.66,1.696,0.981,1.122,0.815,0.963,0.948,1.265,2.44,1.16,1.525,1.094,1.443,1.328,1.02,1.006,1.222,1.028,0.956,0.911,0.929,0.882,1.015,1.546,2.754,3.931,4.443,4.326,8.081,4.935,4.556,10.093,2.34,1.171,0.789,1.017,0.906,0.899,0.78,1.115,1.01,0.877,0.886,0.751,0.82,0.897,0.93,0.859,0.813,0.759,1.032,0.847,1.183,0.713,1.304,3.591,9.178,5.006,5.16,4.218,13.216,4.37,4.907,1.353,4.343,14.802,5.337,3.251,3.852,7.412,3.541,3.195,3.054,6.635,2.92,3.315,9.497,3.637,4.062,19.756,4.437,2.908,2.456,2.206,2.284,2.036,0.998,1.855,11.934,0.782,0.62,0.484,0.411,0.443,0.63,0.551,0.71,0.571,0.375,0.414,0.409,0.374,0.693,0.763,0.731,0.502,1.266,0.774,0.829,0.878,0.747,0.768,0.81,0.638,0.824,0.604,0.528,0.627,1.75,1.385,2.701,4.263,4.713,2.756,2.203,1.862,3.36,0.777,0.85,1.729,2.214,5.984,9.952,9.992,12.982,0.814,0.871,0.882,0.865,0.853,0.926,0.62,0.366,0.317,0.61,0.861,0.88,0.854,0.5,0.643,0.782,1.01,40.994,4.243,4.054,4.219,4.179,3.145,1.981,2.473,29.715,16.46,3.852,3.795,3.965,4.236,3.802,2.067,4.055,4.61,4.393,4.012,4.187,1.46,0.937,0.896,0.495,0.583,0.613,0.534,0.209,0.358,0.587,0.579,0.539,0.679,0.581,0.775,0.559,0.476,0.532,0.453,0.444,0.589,0.911,9.907,0.747,1.007,0.545,0.574,0.67,0.664,0.328,0.436,0.619,0.364,0.376,0.536,0.598,0.575,0.72,0.611,19.807,10.411,2.175,1.832,3.493,8.479,4.342,3.317,4.207,4.224,4.282,16.042,4.367,3.697,4.263,4.215,5.001,4.181,2.596,4.577,7.412,1.137,0.862,0.758,0.494,0.557,0.519,0.496,0.604,0.567,0.642,0.882,0.509,0.379,0.464,0.438,0.516,0.737,0.661,0.43,0.729,0.425,0.549,1.728,2.134,2.379,1.254,3.322,2.054,4.453,0.835,2.109,3.504,2.399,0.888,0.936,0.719,0.963,0.734,0.872,0.899,0.694,0.577,0.71,0.781,0.534,0.518,0.791,0.681,0.556,0.035,0.677,0.805,17.617,1.569,1.245,0.939,0.654,0.743,0.526,0.511,0.506,0.724,0.709,0.464,0.566,0.741,0.842,0.871,0.847,1.001,1.483,0.94,1.21,1.339,1.208,1.131,1.268,1.106,0.926,0.702,0.844,0.737,0.604,0.484,0.463,0.577,0.545,0.867,1.089,0.847,0.859,0.96,0.924,0.842,1.4,1.031,1.178,0.648,0.472,2.392,1.399,0.961,0.67,0.552,1.349,0.652,0.612,0.611,0.867,1.146,0.751,0.784,0.972,0.909,0.814,0.603,0.935,0.889,0.8,0.842,0.91,1.385,1.105,2.049,1.961,3.256,3.583,2.887,1.596,1.06,8.793,0.915,0.953,1.071,0.954,1.25,0.858,0.904,1.009,5.236,4.184,4.58,8.189,2.752,6.114,2.969,1.072,0.727,0.76,0.691,1.121,0.601,0.861,0.611,0.795,0.878,0.844,0.793,0.809,0.807,0.712,0.966,0.928,0.902,0.724,0.678,0.905,0.595,0.82,0.68,0.563,0.516,1.043,3.91,2.4,1.184,1.458,3.612,2.677,2.069,2.039,1.208,1.264,1.349,1.223,1.204,1.18,1.201,1.2,1.087,1.619,3.192,7.04,3.097,1.86,1.571,2.143,1.847,1.155,1.79,2.137,1.933,1.292,0.549,1.984,1.518,1.383,0.889,1.269,0.753,0.927,0.922,1.109,0.975,1.083,0.851,0.734,0.746,0.932,1.463,1.652,1.541,1.398,1.453,1.399,1.012,1.087,1.079,0.874,1.026,1.409,0.918,0.65,0.779,0.824,1.152,0.939,1.254,0.971,1.834,1.623,0.987,1.311,1.233,0.979,0.886,0.981,0.953,0.513,0.542,0.77,0.744,0.803,0.842,0.964,0.934,0.806,1.073,0.979,0.845,0.949,1.49,2.331,2.453,1.37,1.075,0.757,0.868,0.881,0.974,0.876,0.618,0.885,0.825,0.691,0.873,0.67,0.621,0.777,0.756,0.729,1.618,1.995,1.478,0.845,0.86,0.624,0.658,0.642,0.919,0.931,0.842,0.777,0.824,0.769,0.727,0.897,0.804,1.154,0.749,0.739,0.77,0.694,0.625,1.736,2.254,1.721,1.691,1.315,1.167,1.596,1.567,1.285,1.119,1.118,0.956,1.302,0.882,2.403,2.079,3.009,6.584,2.287,1.928,2.267,3.016,1.981,2.082,4.508,5.568,3.511,2.634,2.186,1.488,1.479,1.314,2.753,1.532,1.798,1.872,2.193,1.892,2.787,2.245,4.627,1.979,1.746,1.755,1.629,1.948,1.861,3.228,2.479,4.279,1.305,6.635,5.002,6.108,5.667,5.459,5.183,5.737,4.899,1.536,1.437,1.505,1.397,1.72,2.103,1.704,1.434,1.562,2.938,2.132,26.682,0.07,2.159,1.641,0.785,0.64,0.611,0.679,1.335,1.297,1.052,1.235,1.054,0.823,1.309,1.061,1.151,1.436,1.181,1.194,1.237,1.251,1.23,2.46,2.533,9.512,4.589,2.342,1.992,2.02,3.015,1.977,2.691,4.866,20.717,1.583,1.292,0.957,1.014,0.993,0.907,0.919,0.944,0.855,0.874,0.979,0.953,0.949,0.914,0.931,1.099,1.198,1.864,2.374,7.383,1.792,1.56,1.391,1.306,1.152,1.084,1.234,1.396,1.326,0.982,0.913,1.128,0.952,0.927,1.275,1.601,1.635,1.457,1.625,1.58,5.622,5.465,1.279,1.184,1.161,1.351,1.473,1.363,1.493,1.38,1.322,1.339,1.379,1.335,2.249,2.218,0.686,1.198,0.401,0.399,0.439,0.464,0.445,0.43,0.438,0.478,0.391,0.448,0.45,0.532,0.438,0.431,0.416,0.473,0.452,0.453,0.435,0.461,0.444,0.412,0.471,0.439,0.432,0.448,0.463,0.436,0.461,0.44,0.431,0.462,0.437,0.443,0.872,0.854,0.496,0.446,0.416,0.448,0.411,0.463,0.446,0.43,0.448,0.442,0.472,0.435,0.46,0.433,0.442,0.472,0.429,0.431,0.449,0.456,0.45,0.434,0.447,0.432,0.447,0.446,0.421,0.47,0.442,0.652,1.469,1.447,1.394,1.214,1.359,1.241,1.078,1.146,1.303,1.33,1.214,1.254,8.023,3.093,3.063,1.889,1.65,2.635,3.175,3.504,12.848,2.533,2.139,1.388,1.393,1.007,0.894,0.952,0.929,0.927,1.261,1.006,1.039,1.29,1.343,1.584,2.735,2.776,3.313,1.864,3.246,2.417,2.897,1.425,0.744,1.071,0.902,0.947,0.981,0.87,0.855,0.546,1.26,0.87,0.92,0.861,0.934,0.874,0.95,0.903,0.926,0.994,0.955,0.679,0.782,0.689,1.642,2.153,21.319,11.749,4.874,2.084,2.904,4.817,7.413,2.577,2.702,2.537,2.505,1.859,2.095,1.565,2.677,4.814,4.721,3.053,1.368,1.501,2.645,7.982,0.789,3.427,4.316,4.445,1.846,2.015,1.228,4.842,6.04,5.424,3.472,1.451,1.471,1.393,3.411,3.758,1.952,1.706,3.915,9.632,2.512,4.935,3.372,0.432,1.356,4.662,7.602,3.091,8.363,3.237,11.909,4.685,4.44,2.184,2.271,1.989,2.095,3.226,2.167,8.842,3.949,5.44,2.867,2.319,4.589,6.924,5.369,3.495,6.175,2.568,2.547,5.202,4.793,4.253,4.568,9.085,2.413,0.569,1.551,1.031,1.064,1.137,1.036,0.828,0.84,0.643,0.581,0.834,0.953,0.91,0.934,0.985,1.74,0.973,1.109,1.2,0.935,0.991,0.865,0.939,0.955,0.777,1.046,0.904,5.804,3.286,4.424,2.172,1.644,3.861,4.343,2.529,2.965,3.059,0.185,3.144,3.869,4.151,8.548,3.249,1.909,2.201,3.199,3.588,3.268,9.046,3.887,4.31,3.018,2.996,3.618,23.378,3.718,3.237,3.923,3.007,3.009,2.643,1.259,2.35,2.87,0.997,0.866,0.762,0.044,0.777,0.96,1.117,1.287,0.96,0.654,0.94,0.851,0.908,0.974,0.854,1.338,1.317,0.758,1.069,0.894,1.423,2.538,3.036,19.607,1.068,1.253,0.893,0.876,0.897,0.928,0.405,0.484,0.503,0.446,0.44,0.427,0.511,0.438,0.445,0.446,0.442,0.499,0.814,0.466,0.466,0.511,0.395,0.461,0.523,0.878,0.465,0.805,0.557,0.461,0.416,0.477,0.456,0.437,0.394,0.425,0.461,0.451,0.43,0.459,0.443,0.468,0.442,0.456,0.5,0.5,0.897,0.835,0.868,0.923,0.923,0.53,0.354,0.992,0.945,0.901,0.931,0.972,0.936,0.911,0.887,0.582,1.312,1.381,0.861,0.851,0.586,0.853,3.879,6.225,3.408,2.518,2.4,1.548,1.528,1.489,1.574,1.301,1.624,1.62,1.615,1.149,0.996,2.02,2.497,2.308,1.173,4.94,1.257,1.754,2.855,1.853,2.198,1.327,2.124,3.308,1.886,1.48,3.634,2.503,2.777,1.582,2.291,1.915,1.373,2.34,3.672,2.944,6.166,2.033,3.748,0.602,3.944,4.25,4.11,3.927,3.975,4.346,9.165,3.526,3.4,3.563,11.903,5.42,3.786,3.577,2.207,2.946,2.838,15.929,8.744,6.07,4.228,4.055,2.656,2.032,5.546,29.178,2.331,2.454,2.358,2.096,4.239,58.523,4.816,4.947,4.094,1.425,2.802,29.444,3.259,3.265,3.365,3.439,3.023,2.788,3.165,4.821,4.741,4.986,4.819,5.079,4.823,2.198,0.943,8.293,1.414,9.314,5.63,4.349,4.406,4.005,9.848,4.666,3.933,4.337,4.185,4.061,4.268,4.079,0.011,6.864,4.314,4.188,3.829,3.668,4.003,10.374,10.769,4.995,2.286,1.419,1.891,0.734,1.633,3.234,1.597,2.934,1.456,1.693,2.064,0.981,3.399,4.258,4.85,4.861,4.569,4.5,4.578,3.409,2.503,5.543,2.663,2.809,0.276,6.804,4.811,8.335,4.462,5.517,3.197,7.014,3.282,2.605,3.212,2.263,4.198,4.018,9.014,5.095,5.447,11.895,12.88,7.064,23.664,2.694,5.151,3.042,2.544,5.214,15.179,4.933,4.312,5.488,5.608,4.256,3.973,4.254,4.165,12.204,1.543,4.391,3.069,2.984,3.504,3.038,3.965,0.918,3.421,7.471,7.495,1.928,5.842,20.007,11.406,14.235,16.795,20.56,4.867,4.922,4.855,16.791,7.126,3.187,3.954,2.289,0.805,6.645,7.674,6.113,5.633,4.446,2.438,2.199,2.629,1.635,3.522,3.784,18.341,2.045,2.464,1.439,0.312,2.189,1.858,2.796,4.633,7.723,9.058,0.938,0.623,1.664,1.34,1.909,1.933,3.465,2.939,2.783,1.207,3.687,4.429,4.092,4.015,4.801,25.629,3.558,41.156,5.217,3.978,4.188,11.774,9.26,4.14,4.024,4.022,3.923,3.845,13.667,3.936,4.343,43.137,17.189,1.218,3.404,4.583,0.408,1.358,1.731,7.891,12.022,3.891,4.062,4.235,23.618,4.941,5.384,4.087,13.035,3.623,3.941,4.327,3.868,4.174,14.841,3.924,3.731,4.677,5.692,5.941,4.311,5.222,2.211,3.481,6.845,5.396,7.783,0.96,15.349,4.9,4.756,4.203,0.011,1.056,1.537,1.984,17.845,4.438,4.361,4.35,4.499,33.76,5.04,5.943,16.235,2.123,1.895,1.704,1.607,1.271,1.006,2.405,1.811,2.457,2.314,5.346,7.615,0.516,2.808,6.011,2.4,2.088,2.706,11.839,2.924,2.484,2.644,2.119,1.214,1.841,1.415,0.972,1.691,1.419,1.613,1.621,1.379,1.638,1.605,1.48,1.457,3.393,1.418,2.135,5.509,3.377,1.273,1.035,1.171,1.405,1.399,1.192,1.455,1.71,0.23,1.307,1.323,1.218,1.525,0.985,1.03,2.04,1.588,1.265,1.163,0.372,2.936,2.485,1.708,3.141,2.565,0.535,2.16,0.834,0.89,5.604,7.643,1.044,1.429,1.915,2.444,5.387,4.8,2.838,1.66,0.444,0.283,7.597,1.075,1.127,1.203,1.046,1.114,55.238,6.482,2.292,2.332,1.107,1.837,2.39,3.576,6.336,2.677,1.92,4.786,14.27,1.2,3.394,3.48,2.601,1.482,1.51,4.468,4.146,2.849,0.72,1.271,4.049,2.196,2.27,1.337,5.977,2.039,2.33,3.968,4.738,12.176,5.389,4.146,4.465,19.188,2.334,2,1.985,2.523,2.301,1.993,4.191,7.201,9.743,7.657,4.543,3.102,1.593,2.742,1.965,2.573,1.564,14.414,6.258,1.101,3.185,3.986,3.478,0.722,4.033,4.369,4.383,2.539,0.788,1.052,4.214,4.147,2.21,1.641,1.731,1.741,2.493,3.04,4.271,0.339,10.725,2.387,1.674,2.223,2.152,2.127,2.128,2.068,2.061,4.335,2.189,2.182,4.07,4.758,4.42,1.212,1.143,0.842,1.498,4.212,4.186,4.333,4.528,4.149,3.999,4.09,4.009,4.501,2.206,2.242,3.998,4.737,4.273,4.194,4.534,6.024,4.401,4.199,4.269,2.232,0.789,0.93,1.226,1.27,1.571,0.999,1.916,1.161,1.343,2.673,3.011,0.914,1.146,0.931,2.033,1.723,2.124,1.773,2.651,1.843,3.064,3.221,4.98,4.665,4.841,2.058,2.683,1.562,4.229,4.446,1.374,2.678,3.884,4.204,4.551,4.056,3.945,14.243,4.163,4.31,4.51,4.174,4.069,2.511,8.411,3.745,4.553,4.332,4.099,4.441,4.175,4.463,6.771,1.896,3.875,24.732,4.194,4.224,1.578,7.956,4.523,4.387,15.501,11.487,10.493,3.796,4.249,4.243,4.647,4.648,4.226,46.989,4.825,4.948,7.784,21.105,3.984,4.249,3.777,3.961,3.828,2.883,0.513,3.822,4.014,3.941,3.425,0.675,3.988,1.236,2.488,0.099,12.349,3.475,4.078,3.402,4.189,3.846,0.073,4.001,4.738,5.172,4.251,4.666,0.833,2.729,3.238,2.692,1.782,6.909,1.657,2.305,2.718,2.83,21.682,5.249,5.686,18.73,0.663,5.889,5.195,4.991,25.577,1.516,2.595,7.319,6.001,4.889,4.454,4.65,2.891,2.981,2.996,2.859,3.215,2.905,2.962,3.356,3.791,11.369,5.97,2.991,8.045,4.114,3.212,3.971,4.588,2.987,4.056,0.95,0.542,2.436,12.471,7.667,9.597,3.326,4.357,3.807,4.972,4.752,0.314,5.033,11.145,12.356,2.996,2.959,3.479,3.921,5.047,2.332,3.059,2.829,2.429,2.274,2.344,2.592,2.206,1.925,2.141,2.604,5.075,5.307,3.132,3.083,3.2,3.035,3.05,4.146,3.687,3.554,3.702,3.707,3.969,9.575,2.784,2.825,2.765,3.943,5.232,3.004,3.097,8.434,3.097,3.077,3.136,3.109,3.021,4.058,3.117,3.149,2.965,3.184,3.199,2.744,1.753,1.58,5.025,2.256,1.541,1.682,1.867,2.766,3.124,2.433,1.92,2.263,2.628,4.029,2.67,2.667,2.568,2.973,2.898,2.971,1.161,1.822,3.137,8.357,7.946,2.694,1.563,1.322,2.071,1.632,2.858,2.514,0.054,2.997,3.464,3.209,3.686,10.174,3.913,3.614,3.248,2.546,3.012,2.83,6.448,2.983,1.5,1.415,2.333,1.003,0.754,0.679,1.498,0.968,0.976,1.355,0.909,0.866,0.681,1.109,0.786,1.984,1.282,1.042,0.897,1.004,0.955,0.978,0.987,0.933,0.664,1.199,1.042,1.015,1.175,1.066,1.073,0.946,0.941,0.905,0.967,0.97,1.453,1.644,1.31,1.362,1.391,13.187,0.944,1.014,1.339,1.586,1.691,1.362,1.141,1.234,1.401,1.323,1.589,0.965,3.833,0.164,1.709,1.191,1.241,1.035,0.99,0.558,0.913,0.789,0.613,0.884,4.317,4.336,3.927,4.111,10.906,3.453,3.185,4.288,4.267,3.633,2.984,3.749,17.803,3.183,2.974,4.685,2.363,0.821,0.677,0.833,0.576,0.779,0.866,1.489,1.083,0.907,1.027,0.074,1.229,1.139,0.804,1.277,0.769,0.473,1.592,1.125,2.355,3.316,2.513,2.431,3.586,1.385,1.002,0.995,0.74,0.913,1.168,1.121,1.623,0.74,1.335,0.666,0.922,1.624,1.865,9.322,1.754,2.411,5.226,1.812,3.238,2.395,0.685,3.097,2.469,2.736,2.73,2.411,2.639,1.136,1.555,2.688,3.225,4.197,4.246,0.942,6.409,2.859,8.311,4.761,3.198,3.293,3.089,3.567,3.769,12.546,2.597,3.313,4.765,2.437,5.069,2.81,3.641,2.789,2.951,0.503,2.647,2.952,3.022,1.32,6.698,2.93,1.997,2.575,2.723,2.553,2.957,2.907,2.917,3.356,3.349,3.102,3.374,2.948,3.051,1.516,2.008,2.672,3.668,1.133,2.923,2.685,2.4,3.024,3.995,2.943,2.524,1.663,2.743,2.874,2.853,6.397,3.138,3.757,2.338,2.545,2.744,1.642,8.603,14.977,2.422,2.537,2.423,2.674,2.668,2.54,2.688,2.687,2.781,2.433,1.625,11.096,2.554,2.562,2.29,2.503,4.988,3.689,2.631,2.428,2.431,39.313,0.403,2.421,2.502,2.299,2.533,2.363,27.297,2.794,2.676,9.796,2.509,2.359,2.381,2.662,2.734,2.825,3.099,2.553,2.651,2.297,2.199,6.538,2.603,2.472,2.575,2.606,2.755,2.664,2.794,25.367,2.56,2.684,2.71,2.273,14.784,2.302,2.372,2.675,2.714,16.375,2.539,2.63,2.438,2.764,3.28,2.964,2.507,25.326,2.235,2.332,2.583,1.322,1.397,2.54,2.964,7.169,6.378,1.303,5.518,5.678,39.079,2.776,2.536,2.838,2.559,15.749,2.408,2.458,2.45,2.458,6.66,6.973,3.066,3.757,3.06,2.899,3.32,3.535,3.655,4.5,3.054,2.962,2.564,2.562,2.759,2.863,2.734,15.702,2.85,2.613,2.933,2.516,2.81,2.774,2.945,2.399,25.954,6.044,2.447,15.555,3.477,3.147,2.828,2.939,3.732,2.602,5.972,21.626,2.821,2.93,3.109,3.449,14.164,4.785,1.215,8.767,11.782,8.972,2.26,1.043,1.025,1.862,2.415,2.4,2.784,7.455,2.773,2.861,2.666,2.742,4.506,7.584,2.863,2.548,2.589,2.122,15.463,2.93,2.063,2.064,15.771,3.734,3.667,3.249,2.971,17.657,3.247,2.622,2.967,2.477,7.186,2.645,3.19,3.07,1.803,1.258,2.988,3.327,5.515,2.577,2.915,2.068,1.683,2.54,2.008,5.29,2.598,2.344,2.126,2.43,25.91,15.385,15.63,14.969,11.367,5.855,2.085,2.715,1.203,1.711,1.871,1.661,1.104,1.913,1.798,1.404,1.928,0.413,3.829,2.441,2.439,1.934,1.796,2.736,11.098,16.049,6.796,3.028,1.038,1.645,1.926,2.27,1.251,2.46,1.341,3.4,3.003,2.58,3.986,2.305,3.41,1.9,1.424,0.603,2.138,3.119,3.034,4.888,3.426,1.813,1.754,3.659,3.079,3.753,2.875,1.892,1.738,0.927,2.316,3.338,3.584,3.248,3.243,0.072,0.581,2.849,2.941,4.479,3.62,0.307,3.87,2.098,4.362,4.893,3.965,1.226,2.928,1.769,1.315,1.955,2.354,1.966,2.906,2.446,2.515,0.197,2.322,2.378,2.687,2.914,3.849,2.869,3.528,2.314,4.121,4.18,2.438,2.16,1.406,2.516,3.294,2.626,1.802,3.596,0.634,8.613,8.278,8.018,6.4,5.869,5.749,6.036,3.744,3.692,3.504,3.576,4.995,3.212,3.33,2.882,3.196,7.353,6.203,9.094,6.633,8.653,4.709,2.263,2.321,0.6,5.366,6.256,12.552,9.444,2.957,2.609,2.019,2.439,3.333,1.411,4.198,2.069,2.497,2.351,2.462,1.4,1.721,1.716,2.625,2.471,2.601,3.268,2.751,2.122,1.486,1.39,1.864,1.555,1.856,2.049,2.107,2.351,1.526,1.979,2.385,4.299,4.913,6.178,5.978,2.647,3.022,3.332,0.197,3.253,3.882,3.389,4.168,3.021,3.219,2.69,3.967,4.958,5.376,13.66,5.063,5.548,10.022,11.562,1.808,16.726,10.983,5.917,3.044,2.143,2.382,4.827,4.243,4.3,8.558,8.998,4.796,1.956,2.126,1.428,1.656,1.419,1.256,1.488,1.607,2.17,1.899,0.98,1.405,6.033,7.916,1.829,1.053,2.52,1.863,1.458,1.123,2.02,1.855,2.056,1.81,1.923,2.032,1.781,1.988,1.819,1.903,1.543,1.706,1.71,1.933,8.376,8.94,18.239,0.289,10.944,10.743,10.293,5.099,5.334,3.528,1.496,1.781,1.956,2.046,2.252,2.486,1.279,1.332,2.274,2.469,7.354,5.567,7.683,0.177,7.439,10.487,10.125,4.61,1.977,2.135,1.444,0.747,1.984,2.509,2.481,5.143,11.678,14.414,4.152,2.252,2.22,1.643,1.434,8.68,7.857,6.142,5.983,1.79,1.68,1.166,1.204,1.578,0.977,1.788,2.311,1.399,2.631,2.201,3.083,2.132,1.621,2.061,1.779,1.726,1.717,2.059,2.035,1.642,1.43,1.718,1.421,3.521,5.988,6.291,1.289,1.927,3.854,1.721,1.646,1.687,1.348,1.703,1.984,1.835,1.404,1.339,1.151,1.481,1.291,2.901,2.249,1.826,2.166,1.721,1.826,1.588,1.902,1.915,1.953,1.833,1.521,1.593,2.418,1.672,1.729,3.444,0.733,2.866,2.493,1.906,1.461,1.746,1.971,1.923,1.633,1.484,1.492,1.901,2.469,2.209,3.48,1.587,1.414,2.103,1.853,1.959,1.852,2.542,2.589,2.207,1.36,1.472,2.254,2.271,2.452,1.597,1.709,2.456,6.937,5.453,2.83,1.19,1.342,1.503,1.628,1.981,2.085,1.683,2.748,4.375,6.754,14.867,4.72,3.195,3.042,1.984,1.739,2.12,2.674,2.812,4.716,4.402,4.217,1.676,1.828,1.802,1.835,1.496,1.404,1.612,2.916,3.307,2.111,1.978,2.012,1.915,1.351,1.256,1.317,1.574,2.042,2.191,2.2,2.067,2.483,2.484,3.187,2.859,2.007,1.937,1.859,1.405,1.89,2.062,1.395,1.519,1.352,1.37,1.205,1.245,1.491,1.64,4.372,5.649,5.655,4.585,16.785,3.747,3.406,1.641,1.805,3.536,1.8,1.832,2.957,2.487,2.591,3.181,4.721,4.529,4.944,3.872,2.342,2.909,2.803,2.346,2.545,4.526,1.929,9.943,4.653,8.904,4.912,4.948,3.382,3.542,1.801,1.636,1.402,1.538,1.716,1.596,2.179,2.047,1.693,2.395,3.419,2.108,1.821,1.702,1.845,2.368,1.648,1.829,2.652,2.213,5.99,5.225,1.786,2.276,2.132,1.926,1.426,1.651,1.715,1.913,2.016,2.868,2.142,1.856,2.257,1.861,2.13,5.051,9.642,10.221,10.297,3.045,1.991,1.574,1.905,1.989,1.139,1.473,2.275,2.77,9.387,26.76,10.69,0.866,15.337,17.947,17.921,17.431,12.333,2.605,2.989,2.13,2.379,2.218,2.592,1.353,1.444,2.833,3.669,4.032,2.793,2.245,2.444,2.515,3.085,1.827,2.101,2.036,2.414,4.576,4.11,4.398,16.433,0.306,17.309,12.754,13.069,10.909,5.889,2.44,2.643,2.048,2.506,2.789,1.787,0.528,2.467,2.705,2.445,1.818,2.996,2.267,5.238,4.88,3.029,3.432,1.337,2.693,3.188,1.97,2.172,1.966,3.552,3.618,2.055,2.11,2.61,2.691,2.225,2.295,7.45,5.942,4.618,4.109,2.878,3.065,3.624,3.354,3.135,3.727,4.462,3.361,2.95,4.117,2.932,9.62,5.132,2.38,2.615,2.377,2.923,5.223,3.546,4.059,3.861,5.023,2.04,4.273,6.834,3.376,0.958,2.186,2.469,2.688,3.021,3.069,4.908,2.824,3.477,4.094,3.125,2.972,2.781,4.304,4.092,4.013,3.514,4.153,3.083,2.579,3.253,4.163,2.542,2.154,2.377,2.274,2.267,4.02,3.915,3.032,3.276,7.416,2.743,2.891,4.014,2.509,2.618,4.566,4.407,3.712,2.051,2.304,2.661,2.831,3.781,2.928,3.622,3.467,3.915,7.744,8.122,7.143,11.736,12.576,5.704,6.477,3.091,3.371,6.522,4.884,5.125,7.021,1.833,4.632,4.868,3.356,0.02,3.453,3.193,2.343,2.242,2.34,1.381,2.628,3.574,3.841,1.288,5.953,5.979,7.609,8.615,7.889,7.167,3.608,3.805,1.515,1.639,3.098,2.201,3.369,3.769,2.682,12.987,2.259,6.344,11.693,16.222,12.465,0.854,3.254,3.568,3.468,3.714,4.854,4.543,5.551,9.255,9.603,18.792,18.612,9.442,9.215,2.742,2.51,1.433,2.292,2.594,0.13,2.345,2.187,2.636,2.539,1.812,2.438,1.087,1.516,1.969,2.169,2.994,1.788,2.328,0.708,1.454,2.226,1.86,1.673,1.862,4.241,1.818,1.685,3.588,3.437,2.625,3.458,3.272,3.894,8.186,5.184,8.047,13.547,13.348,13.544,2.879,8.84,11.818,6.42,0.626,16.975,13.966,12.914,0.838,19.768,6.488,6.655,3.122,3.86,7.126,0.037,3.063,3.193,8.382,3.771,3.574,3.053,6.817,3.668,4.174,7.783,13.941,14.182,28.572,45.34,9.164,10.44,19.327,6.095,8.848,11.291,0.9,2.556,11.002,12.316,5.596,5.775,2.853,2.873,1.771,1.896,1.597,1.511,2.674,2.098,1.317,1.694,3.26,4.835,1.245,2.485,2.551,2.46,0.701,1.915,2.328,2.388,0.422,3.751,3,1.958,2.074,3.899,2.299,1.853,2.699,1.591,1.683,2.956,3.316,4.044,2.029,2.256,1.222,1.975,2.901,2.52,1.861,1.789,1.659,2.743,0.798,1.741,4.848,15.705,15.811,15.722,15.782,3.126,8.317,5.035,6.229,7.753,6.598,7.151,16.651,2.997,4.994,9.653,19.491,0.345,2.199,2.219,0.42,1.823,1.922,2.804,1.484,1.569,2.326,2.4,1.498,4.041,3.841,1.907,0.34,1.685,2.853,2.106,1.419,2.626,2.493,2.823,1.675,2.181,2.296,2.804,3.101,2.691,2.219,2.178,2.129,3.189,6.319,1.134,2.691,0.958,1.914,2.324,2.819,2.614,3.135,2.96,2.93,2.073,2.546,1.886,2.382,2.215,1.973,2.516,1.792,1.903,1.832,2.031,2.588,2.133,1.955,2.286,2.018,2.109,2.088,1.998,1.666,1.661,2.259,1.711,1.765,1.605,2.05,2.192,2.378,2.665,1.365,1.524,2.131,2.108,2.644,2.414,1.449,2.218,2.524,2.779,7.975,1.725,1.908,2.021,2.133,3.555,3.711,3.406,0.5,3.993,4.404,2.033,2.176,4.017,3.258,3.817,3.724,2.25,1.481,3.265,1.337,3.393,3.699,2.65,1.902,1.758,2.159,1.826,1.589,0.411,1.994,1.554,1.529,1.787,1.672,1.332,3.555,2.523,2.794,2.592,3.969,0.808,8.718,3.134,5.788,2.736,3.059,1.174,2.905,2.296,3.668,3.918,4.37,2.953,1.46,1.645,2.32,1.857,1.59,0.592,2.334,4.671,4.873,2.514,2.803,2.832,2.738,2.663,9.005,12.113,0.917,4.932,1.395,4.619,2.169,2.65,2.965,1.796,2.185,2.365,4.366,5.844,1.74,1.611,1.749,3.288,1.194,2.341,2.797,2.636,3.662,4.026,1.933,1.938,3.218,0.628,2.155,3.439,3.267,3.047,2.267,0.769,3.427,5.051,5.929,5.314,9.992,2.102,2.216,2.098,3.185,3.614,3.733,0.951,0.9,1.107,7.789,1.576,1.888,2.398,2.558,2.821,1.737,3.344,8.453,3.985,3.415,2.316,2.443,1.01,3.37,3.623,13.716,0.705,5.986,3.348,2.906,9.623,0.238,5.428,4.448,3.656,3.674,1.706,1.874,1.757,2.264,2.746,0.275,4.923,3.723,4.022,7.779,14.95,14.788,5.379,2.685,3.16,3.472,2.887,3.323,3.008,3.783,4.494,3.727,4.105,1.189,4.077,4.514,3.551,5.237,5.526,6.714,6.029,6.216,3.525,3.889,3.593,3.474,3.631,5.15,3.092,3.254,7.827,4.021,3.523,3.162,2.05,2.302,2.471,2.591,4.276,4.159,2.855,3.681,3.052,4.362,4.301,3.757,3.823,2.772,2.448,2.217,2.146,2.428,2.572,2.438,3.328,3.283,4.046,3.794,4.114,4.003,7.733,5.531,1.068,1.86,3.298,1.796,2.006,3.317,3.978,2.553,2.465,2.569,2.669,4.551,5.23,3.974,2.375,1.629,2.732,2.541,2.995,1.473,3.051,3.59,1.851,1.715,1.954,2.081,2.505,1.61,1.911,1.585,2.068,1.814,2.643,2.357,2.787,4.66,5.216,5.869,5.858,3.86,2.026,3.003,2.726,2.421,2.294,2.031,1.82,1.521,1.838,1.761,1.728,1.746,3.661,2.116,1.863,3.132,3.17,1.646,1.562,3.057,2.308,2.455,2.763,4.456,5.996,4.72,4.554,0.459,0.337,3.657,4.244,2.071,2.843,2.978,2.375,2.706,2.827,3.244,3.535,3.6,4.813,4.88,8.942,4.389,2.183,2.072,2.242,3.076,2.212,1.799,1.683,1.763,2.527,2.776,1.845,2.147,1.681,0.364,1.685,1.467,1.788,1.734,2.734,3.039,1.901,2.295,2.956,2.897,4.332,4.263,5.985,5.945,2.962,2.395,2.049,4.374,2.19,2.06,3.172,2.674,2.812,3.367,1.512,3.234,3.043,1.759,1.522,1.793,1.925,4.822,4.594,2.054,2.727,2.913,3.009,2.115,2.203,2.803,1.581,2.823,3.446,3.905,5.994,6.362,5.249,5.108,5.343,4.179,5.322,3.246,2.426,2.942,2.646,4.782,2.578,2.263,3.325,5.032,4.878,4.464,3.251,3.013,2.919,3.35,1.86,2.066,2.866,2.335,2.319,2.048,2.416,2.084,1.866,3.071,2.413,2.721,2.83,3.005,2.891,2.729,2.776,3.909,7.141,2.609,2.349,2.156,2.411,4.519,2.742,2.512,3.931,2.747,2.604,4.967,3.151,1.718,7.562,3.34,3.178,4.631,4.394,0.682,1.567,3.482,2.544,2.793,5.005,3.748,4.307,4.25,4.27,2.94,3.227,2.446,2.613,2.563,2.782,2.671,2.9,2.401,2.495,2.424,2.625,1.752,2.06,2.22,2.016,1.834,1.997,2.129,2.001,2.759,2.038,2.229,3.337,2.532,3.27,2.553,2.338,5.202,4.9,2.738,3.252,1.106,0.605,1.954,3.184,3.52,4.042,4.013,2.194,2.391,2.198,2.083,2.714,2.16,3.065,3.97,5.375,4.973,3.068,2.818,2.704,2.228,3.308,1.523,1.756,1.926,3.196,2.248,2.857,1.762,1.648,4.032,0.964,0.682,0.56,2.651,7.183,8.539,8.215,11.673,4.533,5.865,4.253,5.528,2.985,2.819,3.893,2.197,2.08,1.56,1.256,2.268,2.493,2.331,2.54,1.338,3.014,1.457,1.629,1.889,1.546,3.157,3.026,3.272,4.54,4.754,4.822,2.452,3.28,8.25,4.441,4.75,1.395,3.163,2.583,2.729,1.852,1.367,3.967,1.674,1.623,3.186,2.17,1.973,2.392,1.731,1.809,5.143,4.959,2.807,4.407,4.165,3.673,3.204,5.179,16.542,9.359,5.187,2.375,2.156,1.532,1.683,1.768,2.331,2.812,2.253,3.198,1.66,2.636,3.328,4.864,6.368,4.145,2.136,1.915,1.738,2.015,2.35,1.748,2.146,1.34,0.888,2.34,2.576,1.982,2.563,9.506,3.514,2.159,0.966,1.704,2.493,2.664,3.067,3.718,2.68,3.401,2.825,1.612,1.681,2.542,2.153,1.617,1.584,7.633,4.158,1.742,2.503,2.976,2.333,2.643,2.327,3.015,5.979,2.163,2.073,3.756,2.931,2.998,3.277,3.868,4.268,11.022,6.19,5.597,10.465,5.295,2.837,2.688,3.16,2.978,1.128,1.351,1.609,2.258,1.894,5.45,1.383,3.376,3.725,4.908,1.673,1.486,2.218,1.398,1.025,1.773,2.022,1.779,1.6,5.048,4.822,6.673,3.752,3.165,1.93,2.439,2.423,2.18,2.27,2.934,2.457,2.138,1.911,1.757,2.059,2.423,4.042,4.782,2.034,6.338,3.018,2.5,2.612,2.75,1.481,0.999,2.748,1.858,2.481,2.074,2.226,3,1.496,1.411,2.007,2.688,1.707,2.342,2.312,6.377,12.951,7.01,6.053,3.328,3.586,4.006,3.731,2.179,1.844,2.493,1.962,4.779,4.238,3.33,4.311,4.431,4.355,2.95,4.702,4.554,3.369,3.669,2.383,0.344,2.766,2.43,2.8,2.487,2.171,2.928,3.225,7.253,2.717,1.084,2.197,0.859,0.169,3.165,2.894,4.124,2.023,1.109,2.886,1.266,2.077,3.438,3.498,3.115,2.869,3.294,3.243,8.879,5.304,2.25,18.42,0.369,19.194,17.14,10.541,10.834,11.181,5.58,6.056,6.029,5.905,6.414,6.539,7.833,8.791,9.472,9.649,7.859,9.014,3.934,4.168,3.96,3.917,4.932,4.142,3.802,4.232,5.509,6.824,1.418,3.857,0.445,2.613,6.573,1.434,4.896,2.942,2.228,2.949,5.882,5.141,4.608,12.419,6.809,1.109,21.455,16.356,7.507,7.558,11.691,11.74,4.727,4.613,0.102,4.126,3.588,1.929,2.081,2.837,3.026,3.38,1.823,2.475,3.001,1.865,3.725,3.217,3.469,2.158,2.137,2.605,4.438,4.412,0.699,2.27,1.248,1.055,3.258,3.292,1.911,2.496,1.628,2.602,0.726,1.623,1.856,1.504,1.171,1.752,2.382,5.19,5.261,5.69,4.458,0.524,11.184,6.842,3.904,2.334,14.361,6.686,6.231,32.172,15.824,7.982,3.244,12.364,3.09,2.922,3.05,2.105,2.917,1.945,3.738,5.376,3.867,3.985,1.483,5.569,4.148,2.233,1.674,2.091,1.883,2.01,1.218,1.664,1.41,1.641,1.633,1.273,1.437,1.477,1.563,0.941,1.534,1.524,1.044,2.24,5.057,2.225,0.793,5.189,0.949,5.675,1.881,0.49,2.127,0.328,0.408,4.284,6.191,3.558,1.776,2.012,2.128,3.175,1.948,2.172,1.896,1.821,1.74,3.777,0.007,4.062,1.537,2.377,1.551,1.447,0.607,0.598,2.062,0.898,1.081,0.96,1.175,2.059,1.59,1.744,6.947,2.233,3.379,2.201,2.521,2.111,2.426,1.499,3.735,2.933,2.445,4.139,3.454,7.115,6.132,3.246,4.078,2.096,1.867,2.086,2.556,0.083,4.87,2.079,1.795,1.503,1.873,1.348,1.341,1.544,1.158,1.921,1.874,2.386,2.47,3.579,1.961,1.929,3.052,3.482,1.487,6.486,5.57,5.308,5.562,6.001,0.01,1.195,9.089,5.074,5.195,3.275,2.817,2.562,2.503,5.216,4.927,5.145,1.298,0.539,0.401,2.694,4.876,15.784,8.95,32.226,18.679,11.019,0.173,2.868,1.16,10.052,10.198,5.571,10.733,3.125,2.162,2.087,3.405,8.051,8.514,16.029,0.426,21.966,27.097,9.103,4.842,4.873,9.693,7.039,12.149,0.486,2.842,6.489,1.823,3.888,3.625,9.065,11.056,0.297,0.394,11.445,5.182,9.425,4.805,4.552,4.13,5.763,8.163,1.96,2.612,2.198,2.335,2.481,2.073,1.939,2.149,2.254,4.412,2.91,1.319,1.735,1.821,1.385,2.325,1.723,2.728,5.203,4.039,1.102,2.17,1.931,1.737,1.388,1.305,1.532,1.587,1.959,1.543,3.326,1.566,0.594,0.899,1.159,1.127,1.791,1.606,1.031,1.124,1.658,1.893,0.958,0.578,1.681,2.046,3.779,1.075,1.319,1.515,11.137,4.398,0.572,4.059,4.039,5.41,9.975,8.407,7.113,7.143,0.621,1.037,3.07,3.194,3.066,2.881,4.731,1.875,1.312,10.34,6.377,2.306,4.252,1.917,1.547,1.653,2.547,2.139,2.238,1.705,1.668,2.048,2.34,1.307,1.195,4.268,4.029,2.648,1.441,1.643,1.652,1.718,1.918,1.487,0.535,0.599,0.398,1.466,1.972,1.061,1.142,1.315,1.434,1.241,3.797,4.315,2.76,4.371,2.182,4.008,3.918,1.007,1.296,1.776,1.185,1.503,1.401,1.159,1.926,0.975,0.515,1.831,2.391,7.376,3.957,2.298,1.635,3.507,2.329,2.218,2.441,0.989,1.425,0.046,2.605,2.837,0.342,1.814,1.101,1.809,1.858,1.865,3.091,0.919,2.63,1.876,1.745,2.482,2.963,1.375,2.322,1.975,1.789,2.163,2.127,1.112,1.243,1.256,1.807,1.782,3.043,1.279,0.879,1.603,0.943,1.047,0.95,0.882,0.598,1.584,1.545,1.103,1.273,1.846,1.316,5.175,2.37,5.246,2.159,1.524,0.834,3.736,2.446,2.443,1.783,1.919,2.662,2.808,1.729,2.107,2.507,3.425,1.822,1.326,1.01,0.853,1.063,0.724,1.404,1.416,1.284,1.16,1.505,1.52,1.345,1.351,1.212,1.232,1.557,1.615,1.566,1.602,1.282,1.087,1.454,1.286,1.471,1.578,1.403,1.356,1.273,1.311,1.573,1.687,1.598,1.61,1.903,2.031,1.73,1.918,1.203,1.113,2.353,2.104,0.119,2.174,1.988,1.87,2.503,1.641,1.552,1.696,1.626,2.126,2.013,4.629,2.438,2.614,2.888,4.323,5.479,2.6,2.597,1.949,1.808,1.764,1.042,0.624,2.295,2.324,2.25,1.695,3.81,3.893,2.14,1.1,1.852,1.225,1.612,2.637,2.434,2.16,0.614,2.351,3.364,1.649,3.118,2.767,3.056,2.621,3.266,3.361,2.216,2.315,1.935,1.807,1.968,2.258,1.186,2.193,1.808,2.789,1.631,1.606,1.572,1.462,1.665,1.53,1.786,1.144,1.055,1.32,1.33,0.878,1.241,1.733,1.802,0.821,0.872,1.055,1.714,1.783,1.148,1.136,1.96,3.408,3.52,3.747,2.323,0.706,4.168,4.153,5.015,3.116,1.13,2.672,2.735,2.196,3.912,5.041,5.135,4.918,4.253,2.022,2.104,3.466,2.462,1.744,2.708,1.318,3.265,2.309,1.701,1.898,1.92,1.686,1.562,2.348,2.04,2.063,3.927,1.863,1.378,0.876,1.095,1.883,2.137,1.354,1.516,1.378,1.718,2.37,3.64,1.642,1.837,5.608,1.915,1.068,1.132,2.17,2.586,4.585,5.036,3.572,3.077,4.686,3.028,2.766,2.285,2.051,1.44,2.164,2.157,2.199,2.049,3.463,4.156,2.716,1.982,2.528,3.514,3.241,2.791,2.685,2.992,3.153,4.34,3.607,5.482,5.042,5.072,3.492,3.44,2.504,2.262,3.751,2.231,1.63,1.793,1.476,1.56,1.2,1.17,1.62,1.348,1.419,2.678,1.159,1.287,2.082,2.748,2.473,2.448,3.665,2.688,5.737,5.622,6.464,2.605,0.33,2.067,4.157,2.993,0.454,3.45,3.885,3.689,3.013,3.13,3.53,4.196,1.997,2.502,3.041,2.887,3.23,2.925,2.819,3.331,3.504,4.159,3.035,4.595,1.45,0.696,0.824,0.828,1.687,4.13,3.998,4.532,5.036,4.52,3.852,4.575,3.211,3.204,2.938,3.023,5.394,4.588,4.396,3.788,3.31,2.024,2.287,0.15,0.573,2.315,2.16,2.546,2.889,2.716,3.234,2.785,1.352,1.105,1.903,3.58,2.342,2.84,1.365,1.599,1.66,1.774,2.142,2.618,2.62,2.278,2.925,1.91,0.918,1.323,1.299,0.835,1.07,1.913,1.579,4.84,2.458,1.581,2.516,2.024,1.998,1.583,1.986,2.028,1.993,2.331,3.263,2.046,2.041,2.989,2.833,3.122,1.175,4.033,3.591,3.603,1.42,0.029,2.061,2.707,3.243,2.28,2.998,3.24,1.897,1.675,2.563,2.481,6.178,4.893,5.267,5.404,5.562,1.735,1.86,8.103,8.047,0.433,0.18,0.179,0.572,0.626,0.941,1.086,1.474,1.894,1.734,1.265,1.027,1.148,1.182,1.07,0.964,1.17,0.767,1.133,1.144,1.054,0.848,0.548,0.895,0.692,1.154,1.067,1.114,0.93,0.829,0.71,0.956,1.211,1.114,1.115,1.649,1.138,1.512,0.78,1.145,1.15,1.679,1.745,2.235,1.585,1.661,1.213,3.373,3.358,2.817,2.499,0.9,0.698,1.295,2.896,2.294,2.269,1.75,1.71,1.727,1.777,1.128,1.754,0.458,2.237,1.626,1.671,1.139,1.108,1.025,1.113,0.84,0.882,1.112,1.011,0.657,1.627,1.505,1.247,1.328,1,0.996,1.114,1.047,1.152,1.071,1.098,1.094,1.086,1.067,1.14,1.064,1.058,1.648,1.58,0.702,1.168,0.889,1.118,0.512,1.113,2.147,2.739,2.171,2.192,3.068,3.045,2.574,2.661,1.851,0.5,1.478,1.69,1.115,0.632,0.872,1.214,1.623,1.159,0.559,1.017,0.865,0.829,0.837,0.993,0.862,1.177,1.034,1.113,0.642,3.193,0.877,0.927,0.678,0.934,1.096,1.124,1.054,1.11,1.122,1.119,1.601,2.182,1.649,1.072,1.155,1.1,1.161,1.237,1.59,3.686,3.049,3.248,2.177,1.397,1.278,1.055,0.859,0.907,0.613,1.323,1.649,1.038,1.501,1.477,1.556,0.016,1.523,1.686,0.391,1.938,1.533,2.079,1.508,1.99,2.502,1.764,2.891,2.867,2.949,1.197,1.664,2.83,1.822,2.004,0.793,1.599,2.296,1.907,1.993,2.105,2.539,2.8,3.553,1.345,1.843,1.405,1.398,1.652,1.776,1.319,0.934,0.962,1.082,1.112,1.579,1.16,1.147,1.119,1.277,1.429,0.96,1.321,1.089,1.128,1.103,1.068,1.068,1.118,1.642,1.684,2.098,1.128,1.195,1.439,1.183,1.251,1.249,1.382,1.013,1.454,1.442,1.538,1.34,1.157,1.162,1.21,1.22,1.088,1.261,1.359,1.663,2.33,1.189,1.473,1.352,1.109,1.034,1.35,1.45,1.351,0.99,0.472,1.816,1.425,1.971,2.498,0.994,1.194,1.081,1.011,1.524,1.603,0.926,0.89,1.5,1.531,2.097,2.409,2.392,0.807,0.787,1.129,0.895,1.83,2.323,1.987,2.339,2.907,2.328,1.933,1.635,1.583,1.45,1.219,1.607,2.072,1.639,2.149,2.762,4.315,3.445,4.079,2.477,2.72,2.896,1.854,1.798,1.51,2.83,2.924,2,2.74,2.994,1.64,4.759,2.108,1.305,1.476,2.292,1.983,1.809,1.139,1.442,1.181,1.684,1.678,1.889,1.677,1.682,2.342,1.778,1.52,3.184,3.098,3.168,2.302,2.435,2.727,0.732,3.576,1.461,1.387,1.71,1.498,2.633,1.321,1.529,1.716,1.154,1.679,1.296,1.666,1.958,1.689,1.526,1.211,1.436,0.766,1.441,1.543,1.414,1.339,1.107,1.142,2.27,1.698,1.63,1.708,1.684,1.664,2.256,2.236,2.231,1.678,1.732,1.545,1.869,2.267,2.269,3.537,2.511,1.642,0.792,0.825,2.029,1.038,1.504,1.36,1.681,3.015,1.841,1.97,2.71,2.046,2.615,2.309,2.333,1.694,1.123,0.858,0.539,2.204,2.598,2.129,1.606,1.727,1.667,1.047,1.077,0.986,1.282,1.057,1.631,1.143,1.179,1.411,0.706,1.065,1.117,1.301,1.096,0.978,1.274,1.134,1.357,1.784,1.583,2.081,2.182,2.784,2.124,2.268,1.588,1.713,1.648,1.782,1.681,1.521,2.317,2.026,1.158,2.908,2.056,1.65,3.637,6.944,2.721,2.815,2.601,2.051,3.118,4.196,1.759,2.637,2.707,2.997,1.919,0.136,2.089,2.02,2.599,2.003,1.551,3.15,4.373,1.229,2.226,2.549,2.518,2.093,1.985,2.539,1.162,1.859,2.327,1.734,1.645,2.385,2.434,1.68,2.006,2.41,1.696,1.959,2.087,3.456,2.361,2.194,3.778,2.289,2.41,3.305,2.405,3.368,1.458,2.014,0.957,3.253,2.282,3.063,2.132,2.941,3.396,4.503,4.769,5.026,2.447,2.943,1.924,2.556,2.984,3.493,3.082,2.034,1.564,1.889,2.395,1.503,2.498,1.867,1.766,2.836,2.013,1.862,1.73,1.855,2.199,2.225,1.242,1.329,1.159,2.569,1.891,3.436,2.223,2.915,2.516,1.897,2.631,2.545,2.607,2.088,1.394,1.512,1.162,1.297,0.667,0.54,0.97,0.886,1.138,0.197,1.142,1.767,1.665,1.22,1.949,1.756,1.117,1.05,1.143,0.967,1.07,1.306,1.295,0.874,1.29,1.096,1.47,9,7.151,0.923,1.48,0.613,3.081,2.428,4.247,1.751,1.44,0.652,2.692,2.04,1.949,2.041,1.947,2.087,1.306,0.788,1.27,1.809,0.23,4.718,5.948,3.785,3.435,2.529,1.615,0.071,3.816,5.181,3.748,4.026,4.14,2.88,3.733,5.15,3.687,0.973,5.184,0.478,1.362,1.384,1.321,1.345,1.408,1.696,2.052,2.751,2.524,3.184,2.496,7.234,3.162,3.592,2.645,2.458,2.761,2.985,1.23,1.92,1.058,1.444,1.355,1.056,0.993,1.15,1.137,1.304,1.434,1.971,1.382,1.261,1.341,0.815,0.476,0.8,1.472,3.209,2.111,1.885,1.323,1.097,0.943,0.72,1.261,2.004,2.02,2.002,2.576,2.249,1.839,2.372,2.408,1.511,0.933,1.34,1.145,1.202,1.189,1.138,1.127,0.98,1.626,1.245,1.095,1.232,1.284,2.691,2.097,1.842,3.147,3.011,2.65,2.191,2.618,1.845,1.209,1.248,0.801,0.778,0.878,1.191,1,0.838,1.138,1.84,1.67,2.317,2.917,2.447,2.229,2.562,2.127,1.145,1.289,1.201,1.234,1.17,1.184,1.763,2.413,1.897,2.059,1.825,1.779,0.86,0.82,1.135,3.161,1.833,5.404,2.184,2.429,2.103,1.496,1.026,2.152,2.106,1.016,1.404,0.046,1.665,2.817,1.575,1.556,1.031,1.551,2.53,2.181,2.728,2.617,1.466,1.915,1.247,1.363,0.977,0.992,1.354,1.277,1.777,1.848,1.384,1.682,1.367,1.724,2.189,2.182,2.374,0.972,1.299,1.067,0.976,1.689,1.88,1.306,2.579,2.378,2.709,3.881,4.525,4.841,2.192,1.266,1.283,1.316,0.804,0.892,1.21,1.05,0.931,1.112,1.245,1.248,1.282,1.127,0.809,1.086,1.26,1.652,1.417,1.293,1.327,1.375,1.501,1.236,1.138,1.014,0.927,0.618,1.313,2.361,1.234,1.26,1.197,0.62,0.987,0.82,1.008,1.033,0.75,0.979,1.491,2.196,5.331,6.234,3.277,4.851,3.082,3.034,2.864,3.011,2.769,6.815,5.33,2.42,3.003,3.286,3.301,2.961,2.884,2.414,1.164,1.047,0.861,1.085,1.149,1.224,1.166,1.217,1.197,1.138,1.209,1.23,1.146,1.234,1.161,1.175,1.207,1.763,1.785,1.213,1.184,1.156,1.233,1.195,1.819,1.175,1.126,0.966,1.424,1.208,1.236,1.203,1.018,1.208,1.287,1.73,1.493,1.561,1.207,1.146,1.235,0.851,0.966,0.9,0.826,1.217,0.968,0.955,0.804,0.793,0.808,1.766,1.763,3.09,1.846,1.383,1.199,1.161,1.938,1.779,1.442,0.96,0.636,0.652,1.169,1.247,1.183,1.151,1.295,1.209,1.164,1.225,1.227,1.2,3.053,3.33,3.628,12.735,3.153,3.563,3.452,3.322,2.613,2.871,1.938,1.717,2.294,4.693,3.521,3.03,3.44,3.956,18.804,7.814,2.28,4.149,3.008,3.474,4.719,3.561,4.108,1.677,1.238,0.702,1.084,0.452,1.355,1.847,1.153,0.829,1.123,0.627,1.24,1.761,1.168,1.263,1.947,2.425,2.455,3.029,2.379,1.223,1.261,1.199,0.691,0.597,1.078,1.074,0.56,0.591,0.756,1.033,1.2,0.736,1.088,1.355,1.614,1.439,0.714,0.55,1.019,1.412,1.802,1.253,1.738,1.848,1.21,3.578,2.543,2.848,2.597,1.789,1.89,1.826,1.454,1.554,1.883,1.929,1.733,1.169,1.71,1.181,1.339,1.515,1.21,1.753,1.099,1.276,1.179,4.433,1.041,1.888,2.62,1.884,2.604,3.208,3.235,3.232,2.328,1.574,1.239,2.595,1.488,1.771,1.887,1.323,1.283,2.597,1.265,0.029,1.864,4.354,1.486,0.996,1.034,1.032,1.055,1.093,1.045,0.509,0.581,1.549,1.124,1.039,1.024,1.092,1.052,1.071,1.082,1.019,1.603,1.101,1.087,0.998,1.537,1.475,1.214,1.039,1.045,1.642,1.586,1.097,1.033,1.361,1.346,1.162,1.407,1.715,1.022,0.93,1.733,1.43,1.324,1.33,1.805,1.866,1.519,1.098,1.601,1.52,1.207,1.53,3.039,1.858,1.776,1.839,3.072,1.729,1.918,2.461,1.881,1.811,2.415,1.306,2.346,3.782,3.259,2.786,3.066,3.037,4.123,4.379,0.065,2.884,3.869,2.412,2.473,3.819,2.489,1.957,1.856,1.958,1.549,1.577,1.237,1.889,1.797,1.395,1.69,3.234,2.695,3.947,4.001,2.758,5.545,5.482,3.942,5.627,2.374,3.934,5.643,3.901,0.212,1.191,1.916,1.629,1.038,2.345,2.307,1.724,2.18,1.204,1.493,1.899,2.237,2.652,2.035,1.852,12.071,4.464,2.733,2.76,3.343,2.18,1.602,1.609,0.599,0.511,1.073,1.055,1.034,1.025,1.039,2.042,1.095,0.996,1.589,1.581,1.557,1.571,1.512,1.076,1.03,1.057,1.015,1.031,1.057,1.098,1.006,1.012,1.08,1.572,1.079,0.949,1.054,1.061,0.519,1.071,1.029,1.022,1.045,0.861,1.278,1.082,2.099,2.147,1.912,3.427,2.712,1.67,2.682,3.694,2.148,5.617,2.6,3.039,2.128,1.107,3.038,5.393,1.922,5.027,3.173,2.612,1.249,1.075,8.299,6.5,3.211,3.099,1.905,2.157,4.37,1.916,4.303,3.236,3.379,3.294,2.76,3.528,2.028,1.778,1.757,2.66,1.603,3.781,2.918,1.744,2.43,2.498,0.846,2.294,3.751,2.224,2.164,2.232,2.7,3.221,2.751,1.135,1.072,3.048,3.103,5.305,2.434,6.91,2.169,1.695,1.062,1.215,2.863,1.663,1.657,1.6,1.277,1.112,1.595,1.638,3.905,1.835,1.354,1.205,1.129,1.077,1.492,0.957,1.662,2.328,1.702,1.677,1.667,1.258,1.466,1.401,1.256,1.732,1.774,1.193,1.141,1.16,1.134,1.747,2.026,1.928,1.222,1.183,1.575,2.496,1.439,1.594,1.54,2.213,1.158,1.407,2.075,1.804,2.296,2.228,2.726,2.793,4.078,4.267,3.525,6.383,3.27,5.573,3.401,4.414,1.537,1.057,2.426,1.237,1.413,2.846,3.026,1.016,1.621,2.056,1.308,2.239,2.016,1.162,1.394,1.421,1.803,0.958,2.153,1.396,0.84,1.115,1.61,1.235,1.086,1.234,1.225,1.47,1.972,1.154,1.384,1.117,1.009,0.887,1.038,1.375,1.073,1.112,1.048,0.99,1.117,1.339,1.205,1.436,1.461,1.549,2.44,2.542,2.594,3.147,3.79,2.807,2.049,1.935,2.524,2.671,1.366,2.441,0.871,2.54,1.57,1.09,1.221,1.313,1.355,1.556,2.142,6.605,3.445,3.837,5.256,1.563,4.785,1.766,2.735,7.538,5.394,3.725,3.015,2.023,2.208,3.965,10.934,0.002,3.191,2.275,1.979,2.436,1.673,3.48,3.402,3.298,5.694,3.864,2.898,4.218,4.576,2.785,2.282,0.962,0.886,1.492,0.767,0.835,0.903,1.119,0.625,0.599,0.664,0.908,0.618,2.868,0.919,0.895,0.941,1.004,1.067,0.755,0.529,0.483,0.722,1.045,1.302,1.088,0.911,0.914,0.682,0.904,0.827,0.768,1.209,1.723,1.461,1.622,0.572,1.262,1.248,0.567,1.032,0.626,0.848,0.796,1.119,0.756,1.324,0.809,1.148,0.985,0.818,1.094,1.024,1.164,1.091,1.102,0.698,1.095,0.918,0.874,1.212,1.156,0.848,0.781,0.787,0.635,0.71,0.574,1.129,1.585,2.022,1.536,1.652,1.518,1.66,1.926,3.691,2.494,1.948,1.15,2.36,2.491,5.233,3.572,1.681,2.258,1.502,2.929,1.374,2.436,3.445,2.601,2.994,1.444,2.255,2.795,1.644,2.243,2.78,2.223,3.771,2.821,2,0.227,2.812,2.667,1.694,2.886,3.808,2.184,2.675,5.974,7.21,2.407,2.775,5.406,2.176,2.22,1.879,3.587,3.403,2.703,2.832,2.29,2.478,3.501,3.293,2.266,2.729,3.222,1.527,4.515,3.576,3.578,2.88,1.263,1.154,0.86,0.834,1.188,0.505,0.633,0.606,0.651,0.609,0.451,0.454,0.5,0.426,0.314,0.335,0.564,0.506,0.618,0.544,0.589,0.559,0.668,0.731,1.159,1.311,2.225,2.473,1.214,0.807,1.394,1.716,1.891,1.57,1.381,1.825,0.836,0.742,0.875,0.521,0.772,1.442,1.04,0.977,0.723,0.762,0.396,0.681,0.809,0.771,0.658,0.813,0.796,2.981,1.565,1.075,0.739,1.214,0.578,0.62,0.908,0.742,0.656,0.449,0.461,0.46,0.578,0.56,0.565,0.589,0.483,0.598,0.612,0.844,1.504,1.397,0.615,0.774,0.679,0.79,0.55,1.07,1.448,1.207,1.174,1.383,2.243,1.356,1.483,0.947,2.572,1.396,3.362,2.24,2.798,2.211,1.717,1.698,1.683,1.535,3.514,4.434,6.746,2.791,3.471,8.36,7.664,5.191,5.035,8.575,3.475,4.369,4.205,3.452,2.253,2.332,2.554,3.14,3.08,2.261,1.635,3.7,4.13,2.356,0.43,0.991,1.35,0.868,0.947,0.826,3.515,3.449,2.895,2.41,0.954,5.687,3.633,1.49,1.635,3.33,2.22,0.436,2.456,2.741,2.496,2.725,2.204,2.791,1.08,0.417,1.612,0.286,2.69,2.046,2.791,0.855,1.728,1.692,1.545,1.333,0.955,0.77,1.682,1.835,1.932,1.033,0.952,1.037,1.72,1.477,1.03,0.824,1.122,0.822,1.19,1.197,0.699,0.625,0.584,1.164,0.972,1.321,1.054,0.869,0.932,0.895,0.856,1.423,1.256,3.064,1.639,2.348,2.913,4.442,4.647,4.017,3.441,5.145,7.237,0.825,5.026,3.504,2.738,2.135,4.952,5.169,4.312,4.022,4.693,2.41,2.354,4.359,6.434,2.292,2.497,4.506,2.761,2.179,3.596,4.205,3.837,3.208,2.854,1.956,3.945,3.983,4.494,3.791,3.168,8.301,2.443,3.613,4.925,4.07,0.736,2.18,4.538,4.852,8.326,7.952,1.438,1.249,1.046,1.063,1.066,2.088,3.343,3.961,4.533,3.419,1.011,2.399,1.767,1.983,1.5,1.789,1.761,1.548,2.158,1.968,1.299,0.566,0.566,0.577,0.563,0.634,0.508,0.601,0.573,0.574,0.556,0.604,0.566,0.576,0.577,0.572,0.568,0.57,0.578,0.576,0.576,0.587,0.547,0.575,0.572,0.577,0.575,0.375,0.202,0.551,0.542,0.583,0.563,0.553,0.572,0.556,0.561,0.554,0.575,0.558,0.566,0.56,0.565,0.564,0.556,0.55,0.589,1.102,2.079,2.405,4.009,1.176,1.717,1.148,0.938,0.793,1.79,1.773,1.975,1.697,0.702,0.599,0.572,0.645,0.651,0.242,0.296,0.559,0.702,0.669,0.899,0.57,0.589,0.536,0.609,0.577,0.545,0.587,1.158,0.545,0.594,0.554,0.573,0.571,0.545,0.587,0.569,0.587,2.263,2.3,1.725,2.594,5.989,4.091,1.773,1.734,1.813,1.166,1.178,2.132,1.467,1.266,0.21,1.523,2.051,3.364,2.193,1.963,2.213,2.153,1.888,2.845,1.609,3.918,2.345,1.678,1.501,5.046,0.916,3.283,1.592,1.53,1.598,1.31,1.157,1.011,1.194,0.979,1.09,1.495,0.448,1.895,1.927,1.71,2.914,1.872,0.191,3.274,3.434,3.714,2.128,0.794,1.241,0.976,1.236,1.042,1.103,1.158,0.921,0.338,0.769,0.809,1.514,1.009,1.268,1.048,1.424,1.67,0.918,0.856,1.511,1.542,1.961,2.233,1.393,1.932,2.846,1.931,1.687,1.903,2.043,0.873,1.161,1.701,1.561,1.424,2.688,1.304,3.033,1.408,2.245,1.66,2.293,1.375,1.068,2.419,1.648,0.96,2.506,1.718,1.736,1.167,1.603,1.579,1.567,0.461,0.459,0.751,5.872,1.916,1.714,1.544,1.487,1.277,1.753,1.464,1.178,0.859,0.932,1.162,1.033,0.648,0.801,0.958,0.621,0.842,1.244,0.884,1,1.304,1.567,0.967,0.993,1.05,1.704,1.444,1.22,1.393,1.86,2.151,1.805,0.854,1.13,1.505,0.796,1.623,1.425,2.188,1.27,1.212,0.859,1.357,2.261,0.405,1.295,1.036,1.502,2.467,0.919,2.509,1.742,1.518,1.728,2,2.442,1.93,2.02,1.764,2.001,1.043,1.46,3.389,2.53,3.164,6.382,4.98,2.778,2.007,2.648,1.481,1.145,2.21,0.391,0.513,0.542,1.482,1.098,1.215,1.37,1.024,1.056,1.263,0.609,1.646,2.025,0.202,0.925,0.042,1.281,0.021,2.299,4.416,0.399,3.381,4.362,5.853,5.152,1.039,0.923,0.92,0.785,0.807,0.639,1.024,0.783,0.75,0.841,0.772,0.991,0.942,1.139,0.685,0.329,0.886,0.82,0.635,0.814,1.097,0.646,1.151,1.199,0.883,0.98,1.125,5.027,3.098,2.261,5.911,1.767,3.052,4.825,2.476,2.734,0.434,3.049,1.306,1.738,2.089,2.143,1.75,1.608,1.136,0.888,1.076,0.767,0.943,1.275,1.187,1.254,0.908,0.737,0.75,1.09,1.011,1.252,1.033,1.291,1.318,1.537,1.45,1.09,2.107,1.411,1.678,1.473,1.075,1.599,2.236,2.814,1.413,2.171,1.29,0.94,1.516,0.933,1.601,1.603,1.918,1.739,1.226,2.082,0.936,0.889,1.925,1.898,1.825,3.073,1.721,2.258,0.995,1.214,2.083,1.727,1.633,1.934,2.317,2.56,1.788,1.516,1.19,1.189,1.576,1.649,1.825,1.745,1.478,1.606,1.856,2.206,0.721,0.752,1.397,1.509,1.705,1.769,1.692,1.405,1.971,1.474,1.468,2.125,2.278,2.666,2.355,1.454,0.971,1.196,1.702,1.202,1.481,1.234,1.172,0.907,1.074,0.941,1.174,0.453,0.774,1.088,1.305,0.945,0.836,1.626,1.749,1.941,2.06,1.59,1.8,1.634,1.715,1.09,1.235,1.211,2.519,2.163,2.926,5.856,3.272,3.431,2.099,1.623,2.362,3.233,2.681,1.659,0.974,1.129,1.257,1.384,1.62,1.885,2.158,2.1,1.806,2.645,2.197,1.493,0.892,1.185,1.355,1.154,1.062,1.041,1.426,0.972,1.336,1.548,0.044,1.898,1.406,1.403,1.68,1.42,0.992,1.345,1.398,0.892,1.894,2.428,1.544,1.485,1.589,0.884,1.098,1.304,1.41,1.378,1.529,1.228,1.365,1.285,1.448,1.997,1.38,1.262,0.781,0.912,1.502,1.514,1.622,1.727,1.688,1.884,0.768,0.79,0.731,1.313,2.096,2.586,1.548,1.171,1.48,1.341,1.351,1.096,1.313,0.95,1.153,1.444,0.91,0.912,1.175,1.282,1.393,3.288,0.448,1.6,2.44,1.595,1.018,1.216,3.36,2.536,3.352,3.092,2.478,2.046,1.567,1.021,0.958,0.757,0.904,1.233,0.577,1.251,1.517,2.388,1.692,0.172,2.419,1.399,1.675,1.358,1.083,0.99,1.078,1.064,1.447,3.133,1.156,0.211,0.573,2.037,1.477,1.263,1.316,1.241,1.727,1.091,1.51,1.655,1.977,1.411,1.417,1.126,1.424,1.274,1.918,2.072,2.516,2.058,1.08,1.247,1.301,1.432,1.56,1.777,1.44,1.261,1.874,1.809,2.591,1.892,2.763,1.327,0.958,1.813,2.57,1.396,1.241,2.134,1.878,1.454,2.148,1.844,1.526,1.689,1.721,2.066,1.61,1.566,1.74,2.094,2.822,1.179,2.181,1.277,1.073,0.938,2.037,1.053,1.485,1.141,0.824,0.863,0.782,1.367,1.503,2.492,2.047,1.748,1.65,1.469,1.441,2.031,1.596,1.74,1.78,1.481,1.075,1.105,1.519,1.436,2.014,1.617,1.483,1.476,1.543,1.561,1.559,1.641,1.187,1.967,2.125,1.422,0.868,1.104,1.412,1.132,1.07,0.899,1.235,1.242,1.693,1.093,1.711,1.348,0.863,0.656,1.355,2.343,1.877,1.758,1.343,1.047,1.403,1.168,1.161,1.408,1.505,2.144,3.267,3.96,2.127,1.409,1.528,2.137,1.479,0.926,1.623,1.463,1.421,1.329,1.666,1.747,1.731,2.982,2.563,4.085,3.196,3.011,2.033,2.091,1.639,1.384,2.027,1.693,1.746,2.07,1.825,2.73,1.728,2.427,2.736,2.595,2.077,2.507,2.167,3.428,3.415,2.683,1.997,2.601,2.3,2.993,3.078,3.275,3.261,2.261,2.754,2.202,2.581,4.947,5.083,2.889,2.296,2.006,1.297,1.321,1.207,1.699,1.606,1.673,1.397,1.347,1.776,2.622,2.349,2.167,2.469,1.541,1.174,1.249,1.076,1.096,1.163,1.88,1.245,1.236,1.141,1.545,1.532,1.433,1.432,1.783,1.058,1.097,1.425,1.027,1.583,2.069,1.53,2.031,1.589,1.402,2.09,2.165,1.594,2.076,2.011,2.028,2.099,2.049,1.891,2.509,3.102,2.984,3.355,2.289,2.116,1.665,2.039,2.1,2.48,1.612,2.332,1.764,1.555,1.508,2.15,2.127,2.049,1.152,0.96,1.565,1.708,1.571,1.921,3.894,2.96,1.984,1.582,1.709,2.319,2.01,3.472,2.037,2.592,2.324,1.696,1.797,2.454,1.182,1.386,2.397,2.273,1.997,1.238,1.072,1.755,0.635,1.337,1.462,0.977,0.174,2.848,1.574,1.238,1.082,1.181,1.774,1.666,1.517,0.984,2.903,1.416,1.636,1.738,1.44,1.029,1.021,1.839,1.179,2.205,1.71,1.782,1.708,1.349,0.948,1.144,2.796,2.257,2.922,1.746,1.727,1.569,1.63,2.094,2.406,2.612,2.157,2.321,2.461,3.2,3.689,2.604,2.986,3.112,1.67,1.617,1.959,2.136,2.298,1.851,1.964,2.43,0.465,0.525,2.234,2.619,1.813,2.155,2.719,2.096,1.469,1.986,2.612,1.981,2.346,2.15,1.728,1.99,1.49,1.873,1.538,0.047,1.151,1.146,1.378,1.496,1.897,1.622,2.127,1.41,1.38,1.651,1.799,1.592,2.712,2.492,2.735,2.115,2.299,1.58,2.035,2.266,1.883,1.826,2.634,3.139,2.044,2.713,1.34,2.036,2.215,2.404,2.742,5.465,3.1,3.189,3.245,2.964,2.647,1.192,0.766,1.348,2.531,2.245,1.447,2.36,2.283,2.423,2.684,1.619,2.471,2.115,1.897,3.064,2.168,2.213,2.801,2.904,1.981,2.348,2.68,2.568,2.634,1.375,2.137,3.276,1.071,1.851,7.944,4.445,3.717,3.662,2.65,2.675,2.481,1.771,1.586,1.809,2.318,1.4,1.251,1.233,2.986,1.023,1.443,2.42,1.486,1.837,1.965,1.724,1.845,3.067,1.939,0.822,1.149,1.039,0.955,0.734,0.788,0.693,1.637,1.259,1.424,0.824,1.372,1.698,0.939,1.05,1.23,1.493,1.436,1.622,1.169,1.032,1.468,1.345,1.767,2.307,3.613,3.258,2.018,2.273,2.118,2.142,1.623,1.328,1.633,1.265,1.419,1.826,2.003,1.38,0.999,1.602,1.834,1.629,1.356,1.466,1.505,3.578,2.416,1.78,1.498,0.958,1.205,1.118,1.491,1.04,0.836,0.78,1.027,1.03,0.84,0.707,0.854,1.641,1.039,1.061,0.987,0.945,1.519,1.793,2.906,2.355,2.906,2.67,1.757,1.191,1.373,2.125,3.126,3.571,2.674,3.105,1.677,2.129,0.688,1.63,0.96,1.648,0.806,2.492,2.279,1.586,1.273,2.359,0.755,1.34,1.472,0.551,2.216,1.259,1.032,1.717,2.055,2.312,5.252,2.256,1.548,3.408,2.395,0.243,1.251,1.384,1.421,1.309,1.801,1.099,3.379,2.336,2.969,2.323,0.761,1.132,1.11,1.134,0.947,0.902,0.999,1.667,0.477,1.261,1.005,1.587,0.693,0.996,1.543,1.146,0.835,2.319,3.373,2.378,0.762,2.382,1.07,0.589,2.537,1.409,1.378,2.3,1.385,1.566,3.142,2.372,1.154,1.287,1.097,2.531,1.237,1.61,1.995,0.703,2.192,3.22,4.281,2.231,1.605,2.743,2.386,0.698,2.923,1.766,0.715,2.975,2.229,2.403,2.4,1.466,2.153,2.481,2.272,1.717,4.055,0.6,1.019,1.316,0.581,2.187,1.201,0.919,0.018,1.413,0.679,2.019,1.949,1.199,2.243,1.602,1.517,2.002,1.437,1.48,1.667,1.317,0.814,1.672,1.534,2.411,2.042,2.001,2.309,2.063,2.265,2.403,1.242,1.14,1.952,1.741,2.614,5.938,2.485,1.836,2.144,2.309,1.829,1.516,0.923,0.819,0.671,0.819,1.188,1.184,1.197,0.999,1.121,2.948,1.477,1.224,1.206,0.971,1.785,1.631,1.557,1.543,8.842,4.062,1.31,1.28,3.016,2.648,1.562,0.624,0.8,1.69,1.83,0.903,1.412,1.911,1.173,1.865,2.125,1.636,1.566,1.761,1.934,2.041,2.166,1.845,1.806,1.647,1.374,0.936,2.43,2.987,1.298,0.897,1.896,1.91,1.93,2.024,1.1,0.595,1.881,2.14,1.585,4.738,0.781,2.929,2.384,1.459,1.902,2.559,2.603,2.279,1.982,1.937,2.282,1.762,1.945,1.095,0.976,1.726,2.919,3.289,2.389,2.206,2.048,1.817,2.378,2.374,3.248,2.385,2.971,2.591,2.624,2.686,2.645,2.697,2.817,2.82,2.719,2.296,2.342,2.674,2.3,2.713,2.221,1.898,2.066,1.786,1.811,1.543,1.456,1.626,1.382,1.651,2.196,1.169,1.985,2.014,2.364,1.785,1.545,1.573,2.144,2.416,2.681,2.734,2.694,2.023,2.424,2.215,2.497,2.657,1.786,1.684,1.782,1.901,2.165,2.598,3.051,2.45,2.983,2.949,2.827,2.657,3.498,3.343,2.393,3.648,3.11,3.405,3.447,2.954,2.719,4.162,3.696,4.071,0.168,3.898,4.068,4.739,3.599,4.389,4.417,4.616,4.473,4.608,5.583,5.786,5.522,4.595,4,4.134,3.869,3.834,5.879,3.454,5.531,1.615,1.839,0.708,1.023,2.358,2.584,2.29,2.261,1.64,1.587,1.984,1.656,1.7,1.602,1.81,1.221,1.033,1.907,2.548,2.697,3.252,3.312,3.161,3.93,3.921,4.106,3.526,5.003,0.732,2.488,2.672,3.569,3.423,3.915,4.582,3.007,4.171,1.522,7.769,4.23,3.332,5.683,2.317,4.58,4.086,4.417,2.166,3.68,2.08,3.018,2.004,2.909,2.232,2.71,1.422,1.594,1.961,1.74,0.674,2.309,0.74,0.251,1.282,2.282,1.923,1.659,1.974,2.056,1.855,1.587,3.165,1.347,1.972,2.812,3.673,2.964,3.176,3.02,3.194,2.912,2.997,2.292,1.97,1.691,1.811,2.326,2.211,2.594,2.338,2.039,2.283,1.479,1.824,1.787,2.486,2.282,2.435,2.787,2.114,2.355,4.391,0.732,2.787,1.653,1.564,1.741,1.478,2.039,2.074,1.95,2.233,2.021,2.538,2.5,1.598,0.67,1.699,1.538,1.388,1.566,1.243,2.416,1.901,2.204,1.741,5.316,1.505,2.275,0.873,2.307,0.963,0.781,1.223,1.068,0.939,1.554,1.133,0.836,2.185,1.167,1.225,0.994,0.965,0.968,0.766,0.958,1.038,2.526,1.81,2.793,3.187,3.505,1.125,0.716,0.861,0.495,0.494,0.666,0.701,1.134,0.852,0.697,0.696,1.231,9.639,5.143,2.288,1.84,1.096,1.068,1.097,1.483,0.807,1.172,1.122,1.112,2.056,1.208,1.102,1.633,2.352,2.033,1.762,1.329,1.207,1.126,3.211,2.364,4.217,3.814,3.474,3.738,1.877,1.548,1.793,1.497,2.373,2.144,1.728,2.334,2.076,1.702,1.808,1.837,2.699,2.461,3.503,3.741,3.346,6.956,14.094,1,10.837,8.251,4.044,3.922,5.546,1.232,4.283,2.869,2.773,2.273,3.012,2.701,2.514,3.296,2.542,2.602,2.539,2.636,2.221,2.016,0.505,1.08,0.78,1.883,1.888,1.732,1.815,1.568,2.764,1.291,2.442,2.89,0.645,3.271,1.666,1.743,4.287,1.926,2.931,2.928,2.714,12.687,2.457,8.077,3.089,4.308,3.426,3.498,2.182,1.352,3.539,2.033,3.869,2.761,1.298,1.391,2.566,9.429,8.012,3.736,0.559,3.433,2.349,4.009,2.337,3.025,4.221,3.065,2.935,2.56,1.49,1.195,2.16,1.887,2.028,1.835,1.822,2.375,2.391,8.268,1.146,6.649,2.517,3.509,6.572,6.107,3.657,2.306,1.391,2.376,2.358,2.03,1.796,5.332,3.75,3.925,2.238,2.106,2.078,0.093,4.195,4.746,1.249,7.084,16.785,15.93,17.153,6.785,12.94,2.297,4.468,5.118,4.739,3.446,3.85,2.848,2.811,3.229,3.101,3.113,3.082,3.437,3.277,2.252,2.502,2.633,2.68,2.351,1.938,1.737,1.978,2.132,1.315,1.532,1.881,1.091,0.871,2.27,1.717,1.581,4.436,2.516,2.28,1.825,1.756,1.525,1.504,1.275,2.856,2.372,4.143,2.773,1.768,1.765,1.294,1.502,1.759,1.719,2.138,2.33,2.188,1.639,1.413,1.671,1.021,0.826,2.299,1.789,2.084,2.014,2.136,2.352,2.463,5.503,3.105,4.278,2.396,2.146,2.489,2.291,1.835,2.325,2.834,1.916,2.397,2.53,1.774,1.837,1.523,1.68,3.058,2.303,2.377,2.763,3.884,2.399,2.11,3.543,1.914,2.153,2.31,1.509,1.588,2.272,2.17,2.753,3.249,3.511,3.481,3.104,2.87,2.302,2.415,1.173,0.762,1.762,1.808,2.674,2.362,2.592,2.066,2.799,2.367,2.387,1.083,0.771,0.968,1.493,1.33,3.297,2.469,2.429,2.451,2.434,1.639,2.061,1.945,2.347,1.832,1.308,2.857,2.09,8.4,2.48,5.439,2.4,7.235,4.818,4.613,8.985,6.405,3.253,2.827,3.6,1.887,1.442,1.748,1.439,1.439,1.272,1.257,1.784,1.455,1.298,1.789,1.426,1.566,1.425,1.418,1.34,1.334,1.837,1.581,1.828,1.036,1.369,1.582,4.832,11.791,4.133,2.559,2.486,7.214,1.375,7.222,9.536,0.791,3.86,0.612,4.497,4.008,3.641,2.441,1.943,3.027,3.175,2.452,3.315,2.409,4.495,3.839,3.9,3.004,2.769,2.475,6.513,18,8.229,4.629,6.815,6.781,5.583,8.849,0.942,0.873,1.043,1.001,0.926,0.839,1.272,1.264,0.961,0.836,1.029,1.054,0.238,0.901,1.059,0.872,1.243,1.104,1.217,1.588,1.604,2.239,3.717,1.935,1.662,1.283,1.588,1.67,1.106,0.792,1.808,4.531,3.711,5.9,5.772,2.171,1.89,1.552,2.313,1.125,0.504,1.334,0.975,1.012,0.338,0.863,2.228,0.406,1.537,2.637,1.956,1.635,11.732,1.066,1.066,15.199,0.719,0.515,2.585,0.741,3.485,3.421,2.575,2.649,2.45,1.826,2.205,2.483,2.694,2.353,9.5,4.278,0.331,1.659,2.113,1.258,4.204,4.493,4.202,2.727,3.819,3.401,3.098,0.432,3.168,3.518,4.638,4.571,3.529,3.858,5.264,3.075,3.93,6.182,3.596,3.714,3.567,3.183,4.035,1.852,2.256,2.158,3.421,2.32,1.572,3.001,1.765,1.695,1.459,2.209,3.128,2.348,1.86,0.408,2.621,1.004,2.916,1.84,0.152,3.386,3.473,2.208,1.537,3.36,3.383,2.201,1.965,3.171,7.279,7.052,8.708,5.026,4.394,5.218,5.263,10.939,3.936,1.551,1.62,0.883,2.142,2.598,2.085,1.132,1.012,2.021,2.709,1.479,1.201,2.288,1.526,1.709,1.452,1.943,2.3,2.528,2.751,2.537,3.836,1.931,1.892,0.683,2.201,1.61,1.675,1.094,1.214,1.599,1.813,1.513,1.268,1.701,1.117,1.727,8.319,2.184,1.823,2.313,1.77,3.25,2.166,3.183,3.694,2.269,2.531,3.854,7.514,7.265,59.807,3.799,1.842,1.602,2.767,2.368,2.25,2.63,3.565,2.317,2.115,2.169,2.674,2.437,2.629,2.694,3.1,2.038,1.315,1.08,1.073,1.14,1.833,2.079,2.33,3.132,3.504,3.056,1.767,1.624,2.077,1.502,1.344,1.346,1.254,1.217,2.263,2.536,1.464,1.345,1.191,1.409,1.205,3.708,2.413,2.673,7.223,3.997,3.785,2.673,2.207,2.788,1.653,2.658,2.399,4.932,4.685,1.972,1.577,1.352,1.188,1.599,1.095,1.089,1.132,1.1,1.183,1.146,0.585,1.146,1.45,1.095,0.703,0.955,1.077,1.18,1.178,1.032,1.149,1.196,0.968,1.083,1.656,2.091,1.79,2.017,1.301,1.493,1.801,1.031,1.109,1.891,1.51,1.653,1.208,1.175,1.397,1.197,1.656,1.068,1.15,1.127,1.03,0.882,1.15,1.191,1.804,0.339,1.795,1.939,1.964,2.155,1.836,3.486,5.153,2.528,1.661,1.454,1.659,1.025,0.996,0.932,1.578,1.422,2.712,1.056,0.815,1.657,1.19,1.513,1.274,1.085,1.084,1.295,1.44,1.183,3.066,2.949,2.763,2.854,3.334,2.253,1.292,1.048,1.412,1.104,1.882,1.653,1.007,1.211,0.934,1.291,1.146,1.145,1.179,1.572,2.089,1.978,2.493,3.993,1.615,1.499,0.959,1.462,1.158,1.648,1.193,1.123,1.065,0.96,1.05,1.106,1.109,2.337,1.983,1.883,1.871,2.086,1.077,0.948,1.638,1.482,1.537,2.774,1.905,2.602,1.633,1.755,1.633,1.736,1.563,1.449,1.361,2.952,5.9,3.127,2.752,4.213,1.731,1.529,1.825,2.156,2.414,1.487,6.109,4.415,2.509,2.153,4.1,4.337,3.702,3.511,8.249,3.262,2.359,1.362,1.323,2.07,0.91,1.559,1.225,1.457,2.742,2.566,2.709,2.502,3.693,3.58,3.874,3.7,2.09,1.697,2.12,0.072,2.523,2.449,2.835,2.344,2.489,2.777,1.846,2.231,1.815,0.527,2.868,1.899,3.25,1.787,1.753,1.316,1.389,1.335,1.462,0.676,1.144,1.774,1.206,1.702,1.176,1.231,1.313,1.755,1.652,0.75,26.22,1.569,1.797,2.119,2.436,0.777,6.309,3.308,2.793,0.673,1.111,1.297,1.232,0.189,1.619,0.53,0.702,1.738,1.815,1.192,1.169,1.15,0.864,0.986,0.986,1.421,0.859,1.305,1.149,3.034,2.482,2.341,2.06,2.222,0.67,1.329,1.163,1.159,1.225,0.528,1.256,1.281,1.272,1.644,0.348,0.21,1.599,0.805,0.394,1.232,1.196,1.223,1.293,0.527,2.603,1.519,1.484,2.825,1.516,1.566,1.604,1.641,3.532,3.508,2.804,2.789,1.563,1.518,1.551,1.639,3.064,2.017,1.426,0.378,1.789,1.964,1.395,1.514,1.405,1.528,2.853,2.877,1.519,1.607,1.514,0.557,3.369,5.015,4.288,5.142,20.62,5.22,5.802,5.582,1.91,1.978,5.745,2.386,2.393,2.428,2.424,2.016,1.977,1.43,1.507,2.721,0.697,2.748,1.759,1.679,1.513,1.781,1.338,0.642,0.958,1.432,1.442,2.854,1.425,1.398,1.075,0.214,0.507,2.052,3.945,3.896,2.507,2.475,3.573,4.405,9.984,15.047,14.593,2.659,2.656,2.542,2.138,1.618,1.423,2.803,83.184,0.748,5.963,1.98,5.913,6.855,6.484,6.438,5.383,4.153,2.022,1.074,1.028,2.311,0.847,1.024,1.49,1.427,1.6,1.584,1.133,1.097,2.795,0.45,0.783,1.906,1.913,1.511,1.292,2.211,1.462,0.253,1.584,2.15,1.972,1.813,0.325,1.012,0.788,3.289,1.21,0.646,1.606,1.799,0.951,1.77,1.494,1.552,2.129,0.914,0.875,1.455,0.506,0.746,1.354,1.111,0.902,1.301,3.341,1.339,0.53,1.139,0.953,1.011,1.349,0.302,3.482,0.772,1.062,1.237,1.332,1.383,1.171,1.268,1.252,1.105,1.291,1.043,0.963,1.135,1.196,0.973,1.18,1.03,1.545,1.449,1.107,1.021,1.1,1.117,1.103,0.762,0.929,1.199,1.284,1.53,1.398,1.278,1.266,1.328,1.036,1.172,1.11,0.74,0.459,1.592,1.818,1.631,2.172,1.406,0.48,0.356,0.566,0.698,0.842,1.11,1.539,1.512,1.084,0.925,0.983,0.657,0.338,0.387,0.746,0.64,0.789,0.861,0.87,0.721,0.563,0.728,0.868,0.981,1.965,1.008,0.839,1.024,0.875,0.628,0.846,0.573,0.777,0.971,0.77,0.934,0.831,1.139,0.877,0.846,0.919,0.929,1.428,0.697,1.817,0.634,0.635,1.466,1.355,1.665,1.018,1.696,1.998,1.277,1.069,0.932,1.099,1.075,1.19,1.467,2.809,0.766,0.766,0.873,0.896,0.954,0.898,1.272,1.631,1.283,1.051,1.413,1.163,0.588,0.854,1.177,0.883,1.099,0.515,0.698,1.319,0.912,1.256,0.721,1.102,1.09,0.962,1.122,1.105,0.811,1.273,1.383,1.59,1.608,1.494,1.824,1.842,1.258,0.642,0.887,1.607,1.239,1.152,1.536,1.259,1.152,2.446,2.352,1.979,1.796,1.218,0.194,1.002,0.753,0.85,0.33,0.518,1.947,1.58,1.458,0.4,0.53,1.512,0.795,0.206,0.317,0.901,0.72,0.734,0.403,0.314,0.634,0.79,0.742,0.504,0.764,0.806,0.757,0.299,0.455,0.601,1.03,0.681,0.722,0.647,0.578,0.602,0.903,1.075,1.333,1.481,0.945,1.088,0.737,0.738,1.23,1.192,1.3,1.367,1.247,1.024,0.647,0.652,0.771,0.821,0.965,1.058,1.011,0.907,1.026,0.823,1.054,1.057,1.219,1.206,0.883,0.993,0.816,0.743,0.779,0.736,1.264,1.256,1.101,0.948,1.012,1.511,2.7,1.765,1.531,2.447,1.811,1.428,1.425,1.378,1.175,2.214,1.256,0.934,1.463,1.656,1.758,1.751,1.614,1.763,1.113,1.219,1.165,1.388,1.938,2.602,1.206,1.128,1.313,0.769,0.746,0.785,0.736,0.68,0.686,0.697,0.962,0.73,0.914,0.923,2.537,0.965,1.103,1.667,0.843,0.868,0.912,0.766,1.749,1.337,0.983,1.661,1.5,1.692,1.616,1.515,2.015,1.896,2.718,1.657,0.404,1.462,1.752,1.654,1.29,1.728,1.648,2.337,1.483,1.243,1.229,1.696,1.534,1.302,1.035,1.059,0.973,0.978,1.771,1.244,1.411,1.71,0.981,1.26,1.478,0.947,0.873,1.387,1.248,1.44,1.381,1.52,1.893,1.284,1.424,1.382,1.247,1.258,1.421,1.246,1.86,1.412,1.802,1.52,1.145,1.399,1.413,1.419,1.454,1.206,2.244,1.318,1.334,1.641,0.788,0.384,0.542,0.947,1.274,1.849,2.564,1.942,1.469,0.291,1.029,2.352,1.304,1.09,1.173,1.038,0.927,1.437,2.264,2.15,1.536,2.797,2.258,2.088,1.634,0.809,1.67,2.209,2.779,4.032,1.978,2.099,1.72,2.223,2.117,1.87,1.465,1.917,1.672,1.715,1.251,1.551,1.309,1.616,1.73,1.872,1.583,0.85,1.074,0.852,0.874,0.969,1.043,1.012,1.01,1.173,1.188,1.264,0.911,1.269,1.02,1.405,1.068,1.06,0.918,1.233,1.075,1.535,1.07,1.053,1.064,0.534,0.449,0.943,0.898,1.25,0.98,1.12,1.809,1.118,1.423,1.501,0.869,0.492,1.787,1.307,1.458,1.756,4.667,5.266,7.913,3.131,1.804,1.948,2.051,1.874,2.509,1.864,1.525,2.25,2.111,1.358,1.519,1.641,0.788,1.332,0.881,0.831,0.49,1.638,1.228,0.788,1.052,1.259,1.285,1.168,1.338,1.151,0.959,0.949,1.027,1.402,1.587,0.837,1.702,0.736,1.34,1.141,0.995,1.812,1.373,2.379,3.168,0.659,1.174,1.365,1.46,1.108,1.093,0.765,1.205,1.302,1.238,0.865,0.904,1.023,0.744,0.517,0.573,0.598,0.813,1.34,1.199,1.102,0.935,0.907,0.819,1.013,0.726,0.658,0.735,0.576,0.924,0.941,0.793,0.896,0.85,0.79,0.848,0.816,1.064,1.264,1.029,1.078,0.933,0.935,1.071,0.845,0.786,0.978,0.99,0.954,1.445,0.804,0.846,0.912,0.888,0.759,0.869,0.687,0.604,0.649,0.755,0.873,0.856,1.011,1.019,0.988,1.007,0.798,0.855,1.588,0.894,0.919,0.954,1.263,1.552,1.176,0.535,0.498,0.776,1.156,0.647,0.881,0.741,0.756,0.748,0.82,0.725,0.883,1.026,0.941,0.715,0.637,0.852,0.916,0.908,0.976,0.75,0.771,0.829,1.321,0.729,0.915,0.863,0.75,0.788,0.764,0.877,0.787,0.902,0.671,0.858,0.562,0.503,0.59,0.703,0.606,0.604,0.745,0.526,0.813,1.609,0.994,0.916,0.945,1.137,0.76,0.838,0.77,1.144,1.161,1.473,0.897,1.216,0.977,0.227,1.118,1.355,1.021,0.858,0.86,0.926,0.988,0.992,1.325,0.973,1.187,1.317,1.828,1.172,1.341,1.761,1.427,1.02,0.843,0.918,0.549,0.295,0.815,0.721,0.3,0.842,0.661,1.076,0.822,0.795,0.865,0.883,0.858,0.795,0.992,1.146,1.521,1.06,1.24,1.262,1.121,0.807,0.742,0.67,0.597,0.514,1.152,0.465,0.541,0.828,1.16,1.077,0.652,0.719,0.497,0.636,0.703,1.543,1.097,1.024,0.852,0.488,0.673,0.72,0.729,0.641,0.684,0.92,0.815,0.583,0.807,0.982,1.029,0.948,0.708,0.724,0.718,0.577,0.5,0.494,0.644,0.621,0.598,1.135,0.647,0.503,1.155,0.795,0.798,0.862,0.796,0.828,0.826,1.059,0.282,0.572,0.999,1.176,1.25,1.168,0.98,1.029,0.783,0.729,0.676,0.822,0.666,0.938,0.569,0.954,0.291,0.432,0.67,0.687,0.707,0.547,0.714,0.851,0.835,0.764,0.83,1.148,0.86,0.425,0.364,0.762,0.675,0.81,0.696,0.551,0.576,0.52,0.554,0.606,0.56,0.949,0.769,0.764,0.517,0.929,0.673,0.674,0.728,0.786,0.974,0.537,0.725,0.713,0.733,0.825,0.514,0.817,0.767,0.82,1.31,1.341,1.242,1.345,0.689,0.694,0.592,0.703,0.673,0.64,0.795,0.72,0.667,0.727,0.772,1.003,0.689,0.962,1.454,1.051,1.469,1.451,1.433,1.444,1.311,1.43,1.271,1.136,1.245,1.449,1.5,1.677,1.528,1.591,1.54,1.605,1.485,1.25,1.546,1.639,1.4,0.999,1.37,1.274,2.896,0.466,0.604,2.001,0.23,2.155,2.232,1.299,1.548,1.747,1.256,1.231,1.613,1.855,1.46,1.422,1.995,1.531,1.979,1.3,1.319,1.278,1.367,1.64,1.166,1.908,1.729,1.342,1.705,0.952,1.556,0.674,1.829,2.058,2.126,1.813,1.553,1.801,1.84,1.25,1.249,1.796,1.756,1.337,1.107,1.315,1.641,0.94,1.034,0.974,2.929,1.53,1.388,1.467,0.355,1.406,1.949,1.876,0.937,1.222,1.408,1.335,1.289,3.37,1.752,4.057,4.837,4.948,4.685,2.461,2.97,1.339,1.86,3.506,1.983,1.633,2.766,2.865,2.165,2.161,2.62,1.896,2.106,1.661,2.076,1.664,1.625,1.632,1.451,1.61,2.444,2.013,1.568,1.579,1.588,1.665,0.773,0.989,1.809,1.647,1.124,1.271,1.113,1.236,1.2,1.144,1.277,1.06,2.608,1.041,0.609,1.428,0.765,0.871,0.841,1.099,1.35,0.896,1.156,1.593,1.275,1.48,0.899,1.071,1.399,0.672,1.936,2.308,2.071,1.703,1.971,1.474,1.443,1.113,1.07,1.556,1.777,1.197,1.448,1.297,1.348,1.141,0.793,1.167,1.184,1.64,1.525,0.885,1.26,1.069,1.108,1.175,1.242,1.123,0.512,0.382,1.297,0.985,0.372,3.309,1.399,0.255,2.648,1.771,1.419,1.221,1.373,1.676,1.534,1.806,0.463,2.615,7.12,14.914,11.385,12.615,5.217,3.449,1.711,1.352,1.412,1.547,2.414,1.605,1.862,1.688,1.819,1.567,2.155,2.099,1.176,1.163,2.027,1.599,1.022,0.965,1.319,1.821,0.299,1.202,0.288,1.212,1.996,0.372,1.683,2.618,1.435,1.391,1.075,1.631,1.143,1.047,1.65,1.604,1.503,1.128,1.383,1.428,1.689,4.253,1.817,1.597,1.399,3.193,1.862,1.475,1.508,1.441,1.963,4.16,7.534,3.242,5.465,3.019,1.473,1.344,1.492,1.132,1.498,1.091,1.203,1.187,1.175,0.95,1.014,1.002,1.231,1.492,1.38,1.132,0.95,1.1,1.265,1.24,1.038,0.989,0.779,1.405,1.72,0.673,0.222,1.544,1.325,0.322,1.09,1.636,6.628,7.407,4.867,3.071,5.951,3.822,5.995,2.126,4.07,4.481,1.36,1.424,1.181,1.015,1.22,1.171,1.334,1.475,1.498,1.791,1.782,1.74,1.174,1.556,1.265,1.249,1.223,2.766,1.776,1.919,2.42,2.582,2.563,3.524,3.33,2.278,3.451,10.694,2.411,5.166,6.329,3.586,4.7,2.789,4.869,5.083,2.701,1.492,1.725,1.767,1.389,0.261,2.253,1.104,1.568,2.325,2.128,1.351,1.577,1.845,1.435,1.501,2.842,1.759,1.23,1.357,1.387,1.435,2.634,1.241,1.427,1.35,1.335,1.276,1.848,2.622,1.449,2.089,1.358,1.848,2.296,0.605,1.844,1.846,1.944,2.815,2.795,1.914,1.62,1.761,2.437,1.89,1.863,2.362,1.181,1.35,0.557,4.153,3.017,2.56,2.155,3.008,1.855,1.455,1.115,2.366,2.787,2.989,2.446,3.595,2.939,3.913,1.764,1.98,2.194,2.329,3.75,4.037,1.901,1.769,1.369,1.458,1.572,0.872,0.973,1.247,1.193,4.063,2.946,1.597,1.314,1.773,3.64,1.5,2.045,2.372,2.149,2.021,3.097,1.5,2.872,3.894,5.094,2.633,3.729,3.113,2.854,2.595,1.27,1.689,1.711,1.594,1.622,2.49,2.499,2.723,6.63,1.412,1.036,1.986,2.463,2.545,2.482,2.123,2.455,2.24,2.195,2.268,3.477,1.312,1.318,1.186,1.173,2.226,3.761,4.497,3.989,3.068,1.778,4.419,5.081,3.312,1.307,5.273,2.074,1.919,2.235,1.461,1.408,2.345,2.17,3.144,2.209,0.973,1.609,2.454,0.442,1.503,1.347,1.362,2.263,1.791,2.638,0.619,0.779,1.134,2.292,2.034,0.921,0.929,1.29,1.492,1.529,1.288,1.125,1.246,0.269,2.368,1.588,2.012,2.132,1.888,1.316,3.073,2.294,2.246,2.404,2.75,2.499,3.093,2.845,3.531,1.279,4.579,1.939,1.712,0.27,1.386,2.587,0.075,3.824,2.998,3.432,4.146,1.644,1.711,1.58,1.424,1.558,2.403,2.67,2.494,1.858,1.66,1.418,1.682,1.227,0.269,0.713,0.807,1.402,0.711,1.801,2.018,2.434,2.633,2.787,1.967,1.83,1.56,2.921,1.046,1.021,0.376,1.469,1.957,2.28,2.269,1.525,2.248,2.188,2.795,2.361,0.855,3.565,3.004,2.348,1.453,0.982,2.273,2.671,4.016,3.691,4.239,2.584,3.199,1.5,4.292,2.763,1.832,1.699,2.506,2.218,1.986,2.168,2.037,2.176,2.07,1.918,2.24,2.002,1.538,2.107,2.019,2.129,3.67,1.426,2.068,2.958,1.473,0.39,0.93,0.182,1.498,1.648,0.998,0.919,0.787,0.737,0.724,0.498,0.361,0.855,0.164,0.671,0.811,0.78,0.52,0.196,1.107,1.578,0.558,1.234,1.491,1.469,0.955,0.968,1.146,1.351,0.664,0.861,2.583,1.168,1.265,1.972,1.733,1.748,1.704,1.686,1.301,1.009,0.711,0.769,0.933,0.841,0.678,0.959,1.69,1.091,1.188,1.531,1.392,0.897,0.763,0.652,0.845,0.514,1.039,0.958,0.986,1.117,1.795,1.198,0.999,1.82,1.236,1.012,1.252,1.399,1.088,0.762,0.877,1.008,1.056,0.927,1.101,1.456,1.084,1.358,1.248,1.144,1.159,1.382,1.32,1.599,1.681,1.445,1.189,1.056,1.347,1.701,1.356,1.66,1.256,1.631,1.552,1.494,1.74,1.904,1.74,1.73,1.542,1.66,1.014,1.418,1.119,1.316,1.266,1.42,1.323,1.598,1.483,1.693,1.21,1.553,0.752,0.981,1.357,0.701,0.498,0.662,0.773,1.05,0.752,0.858,0.681,0.702,0.606,0.753,0.855,0.617,0.59,0.467,0.648,0.511,0.491,0.537,0.662,0.785,0.736,1.073,0.935,0.757,0.87,0.803,0.921,0.837,1.032,1.08,0.961,0.776,0.765,0.763,0.862,0.74,0.821,0.719,0.839,0.889,0.746,0.801,0.911,0.726,0.745,0.425,0.648,0.837,0.726,0.714,0.769,0.955,0.816,0.789,1,0.573,0.537,0.735,1.022,1.078,0.581,0.255,0.892,0.834,0.685,0.934,0.467,0.649,1.068,1.509,6.041,6.135,4.904,4.428,3.325,6.344,1.99,2.796,4.495,4.162,5.736,5.218,0.946,1.849,2.732,1.628,1.583,1.952,0.943,0.886,0.743,0.8,0.743,0.717,0.641,0.996,0.814,1.346,3.003,1.408,1.327,1.532,1.8,1.01,1.32,1.535,1.924,1.914,2.154,1.891,1.746,1.854,0.033,1.23,1.053,1.165,0.792,1.218,0.557,1.823,2.282,1.303,1.236,1.272,1.727,0.942,1.739,1.679,1.467,1.648,1.589,1.15,1.41,1.386,0.646,0.609,0.347,1.285,1.109,1.479,0.721,0.579,0.943,1.488,1.517,1.552,1.738,1.68,1.36,1.956,0.505,0.591,1.183,1.258,0.955,0.607,0.662,0.493,0.367,1.223,1.258,1.698,1.377,1.268,1.44,1.515,1.581,1.953,2.786,1.919,1.944,1.69,1.392,1.287,1.445,1.177,0.898,1.265,1.427,1.382,1.098,1.213,1.448,1.078,1.142,1.056,1.36,1.471,1.342,1.394,1.471,1.749,1.761,1.67,1.044,1.268,1.711,1.616,1.419,1.903,1.648,2.237,1.819,1.834,1.152,1.362,2.849,1.775,1.287,0.887,1.043,1.208,1.246,1.208,1.165,0.998,1.253,1.18,1.344,1.438,1.267,0.979,1.289,1.579,1.163,1.098,1.244,1.277,1.208,1.125,0.91,0.969,1.11,1.369,1.104,1.234,1.318,1.475,1.51,1.619,0.917,1.049,0.862,1.433,1.263,0.933,1.246,1.364,1.365,1.053,1.641,0.56,1.116,1.559,1.869,0.028,1.252,1.002,1.155,1.112,0.615,2.457,1.168,0.73,1.527,1.184,3.549,3.15,2.756,2.773,6.851,7.513,2.958,2.626,3.84,3.6,2.104,0.918,1.076,1.129,0.911,1.426,0.547,1.053,5.497,5.605,12.419,4.173,4.255,4.569,3.816,3.548,3.997,3.857,5.231,5.772,4.979,3.478,3.747,5.393,3.37,4.138,7.569,1.946,2.004,1.742,1.685,3.139,6.595,3.209,3.259,2.977,3.516,3.638,3.3,4.182,6.53,4.623,3.716,3.777,4.017,4.437,2.631,2.812,2.744,2.047,4.875,2.179,2.602,5.697,6.203,2.964,1.86,1.928,1.188,4.335,9.146,7.601,6.978,5.782,5.328,0.528,2.113,3.014,3.008,3.946,3.776,4.136,8.562,5.523,3.129,3.045,3.457,3.073,3.268,3.275,3.344,3.163,3.187,3.209,2.785,1.376,2.167,1.776,2.267,2.08,1.895,2.666,2.82,3.021,3.079,7.647,4.314,4.554,3.626,2.935,3.502,3.969,4.049,4.061,10.875,4.374,2.912,5.789,3.049,4.041,1.966,2.469,2.759,3.316,5.664,1.984,2.319,2.333,3.18,3.667,3.715,3.097,3.41,3.325,3.638,2.812,3,4.002,5.992,4.22,3.372,3.098,3.135,3.99,2.884,1.919,2.268,2.061,3.498,3.8,1.888,1.845,2.529,4.534,6.051,1.732,1.884,2.093,2.12,6.401,2.767,2.977,2.717,3.531,6.312,3.069,0.568,1.982,1.225,0.23,3.587,3.811,2.061,2.065,1.588,1.678,1.469,1.426,2.169,2.379,5.078,7.674,5.301,5.434,2.035,9.282,6.143,5.34,4.833,0.311,4.276,19.973,0.017,5.123,4.967,1.766,4.197,2.74,2.256,2.686,2.72,3.144,3.527,2.802,2.258,3.043,4.066,3.628,3.386,3.285,3.775,3.079,2.751,3.146,2.73,3.526,2.835,2.681,0.693,2.063,0.566,1.645,2.307,0.512,1.257,2.105,1.921,0.186,4.293,4.769,0.567,6.993,8.757,5.584,5.974,5.682,4.959,3.46,10,2.355,3.196,2.14,2.071,2.666,2.813,2.501,2.149,2.163,2.143,2.153,2.508,2.232,2.892,3.259,2.648,2.669,2.331,1.721,0.159,2.966,3.403,3.533,5.629,2.272,2.425,2.53,2.924,3.042,5.611,2.714,2.606,2.675,2.068,2.658,2.008,2.083,2.18,2.01,2.202,2.157,3.335,10.396,3.258,2.973,2.816,9.745,1.852,3.907,1.974,1.45,1.103,2.284,1.746,2.251,2.075,4.853,7.263,6.807,2.812,2.604,5.391,4.573,3.426,16.34,4.424,4.142,4.102,3.254,2.044,1.343,2.293,2.223,2.354,1.229,0.998,3.138,3.374,3.413,0.705,0.883,1.313,0.905,1.838,3.235,0.641,0.981,0.962,0.948,0.928,0.718,0.745,0.89,0.794,0.855,0.879,1.208,0.927,0.985,0.919,0.956,0.975,0.966,3.243,1.411,0.977,0.944,2.605,1.177,0.994,0.961,0.934,1.134,1.221,6.284,3.434,1.508,1.867,0.477,0.102,1.172,2.344,0.668,0.887,0.449,7.093,2.446,1.201,1.19,1.201,1.158,0.959,0.862,0.949,0.811,0.804,0.45,7.12,2.559,1.769,0.84,0.995,0.968,1.072,1.568,1.198,0.921,0.999,1.073,1.012,0.982,0.579,1.373,1.181,3.419,6.994,2.424,1.571,0.58,0.398,1.324,2.359,1.651,1.837,1.782,1.08,1.436,1.864,1.509,1.416,1.807,1.043,1.859,1.849,1.93,2.319,1.852,1.35,1.427,2.017,2.08,1.287,1.386,1.147,1.715,1.802,1.373,1.273,2.238,2.132,0.782,0.854,0.886,0.925,1.194,1.237,1.344,0.795,0.936,1.243,0.899,1.299,1.311,1.769,4.211,1.392,1.697,1.765,1.291,1.288,0.855,0.885,0.826,0.865,1.248,1.751,0.842,1.058,1.032,0.851,1.227,1.329,1.652,1.215,1.397,1.736,1.616,1.974,1.905,1.598,1.763,1.589,1.734,1.734,1.201,2.987,1.203,1.49,1.627,1.624,1.691,1.275,1.538,1.783,1.719,1.701,2.504,1.738,1.667,1.666,1.867,2.915,1.615,1.636,1.36,1.204,0.896,1.176,0.829,1.789,1.706,0.023,2.478,1.203,1.578,1.905,1.448,1.911,1.767,1.246,1.625,1.574,1.936,1.792,1.47,1.549,2.929,2.802,1.669,1.466,1.812,1.798,3.169,1.482,1.147,1.615,1.496,1.227,1.43,1.485,2.124,1.695,1.342,2.076,2.15,2.596,2.133,1.69,1.712,1.63,1.53,2.904,1.271,3.426,0.831,0.865,1.684,1.744,1.679,1.366,2.003,1.704,0.887,1.266,1.203,1.793,1.641,1.78,2.128,1.214,0.937,1.761,2.215,2.578,2.017,1.732,1.231,1.264,1.292,1.297,2.225,4.109,4.252,1.779,1.277,1.37,0.823,0.94,0.77,0.99,0.884,0.801,0.503,0.907,0.858,0.922,1.015,1.167,0.968,0.665,0.94,0.937,0.939,0.101,1.071,1.311,1.358,1.055,6.112,2.282,0.992,1.8,1.756,1.646,1.269,1.533,4.616,1.385,2.052,1.181,1.551,1.274,1.266,1.566,1.615,1.375,1.851,1.06,2.53,1.427,1.45,1.387,1.122,0.931,0.739,1.176,0.791,1.4,1.083,1.083,1.052,1.033,0.754,1.087,0.728,0.727,0.661,0.933,1.198,1.136,1.781,1.088,0.698,1.167,0.78,0.978,1.125,1.049,1.883,2.111,2.457,0.759,0.806,1.771,0.689,0.762,0.854,0.891,1.159,1.179,0.195,1.611,1.622,1.685,2.623,1.666,2.273,2.488,2.16,3.491,1.585,1.131,2.07,1.044,1.408,1.086,1.089,0.825,0.984,1.124,0.895,1.217,0.777,1.062,1.067,0.682,1.42,0.711,0.57,0.897,1.304,0.783,0.822,1.372,1.442,1.408,1.304,0.967,1.316,1.14,0.275,0.805,1.893,3.1,1.751,2.824,3.608,3.635,1.911,1.556,0.472,1.333,0.786,1.009,1.777,0.821,1.342,1.694,0.972,2.254,1.42,2.525,2.513,2.074,3.352,5.5,1.978,1.544,1.737,2.043,1.517,1.537,1.239,1.166,1.2,1.181,1.289,1.019,1.129,0.992,1.278,1.936,1.6,1.655,2.391,2.365,1.983,2.046,3.292,2.317,2.011,3.223,3.289,14.27,18.665,2.787,1.427,1.046,1.917,1.805,1.344,1.21,1.549,1.598,1.083,1.055,1.153,2.224,1.029,0.838,1.555,0.986,1.035,1.667,0.716,1.65,1.075,1.005,2.047,1.092,1.687,1.931,1.567,1.047,1.014,0.716,1.029,0.712,1.387,1.14,0.985,0.663,0.748,0.992,1.119,0.996,1.05,0.709,0.892,1.188,0.395,0.697,1.388,2.064,1.758,2.444,1.56,2.996,1.813,1.998,1.084,1.395,1.07,0.522,0.14,0.743,1.355,1.416,1.369,1.072,1.421,1.038,1.047,1.088,0.652,1.434,0.717,1.034,0.715,0.73,0.672,0.703,0.689,0.693,1.059,0.709,1.099,1.57,1.515,1.403,1.164,2.96,1.438,1.297,0.85,1.265,1.641,1.635,0.812,0.742,0.826,0.58,0.621,0.533,0.701,0.793,0.773,0.579,0.659,0.772,0.773,0.771,0.82,0.805,0.808,0.97,0.948,1.204,0.817,0.825,1.153,1.615,1.581,1.178,1.185,1.56,0.825,1.226,1.126,0.858,0.798,1.154,0.781,0.829,1.2,1.211,0.745,1.233,1.201,1.219,1.15,0.799,0.802,0.8,0.76,0.781,0.86,0.774,0.769,0.83,1.176,0.804,1.21,1.376,1.61,0.832,1.181,0.25,1.383,1.233,1.097,0.459,8.836,0.555,0.453,1.095,0.991,1.053,1.06,0.879,1.265,1.059,0.745,1.045,0.91,0.976,0.703,0.907,1.253,0.914,0.812,1.07,1.165,0.969,1.292,1.493,1.368,1.385,1.429,1.871,1.235,1.581,1.268,1.195,1.639,1.194,0.213,1.362,1.266,2.048,3.957,1.646,1.362,0.355,7.284,7.24,1.441,1.621,6.301,6.941,2.491,2.905,0.625,0.313,3.776,7.859,7.383,10.838,6.488,3.143,6.523,3.264,3.19,6.417,2.722,4.644,3.004,4.655,4.534,0.422,4.36,7.199,4.663,3.903,12.088,5.867,6.473,6.447,6.429,5.563,3.974,6.458,3.333,6.269,6.497,5.343,5.369,5.379,5.912,3.575,13.192,1.156,4.274,8.683,8.847,3.879,7.333,8.784,5.874,4.774,4.815,14.491,11.148,4.689,2.394,1.789,1.231,1.433,1.79,1.925,1.335,1.489,1.276,1.559,1.977,2.013,2.178,2.349,2.588,1.634,1.787,0.817,0.605,1.815,1.145,1.185,1.4,0.999,1.391,0.113,1.264,1.281,1.191,1.321,0.846,1.095,1.306,1.287,1.226,1.163,1.324,1.099,1.214,1.458,1.257,1.297,1.074,1.101,1.064,1.022,1.46,0.855,1.041,1.427,0.939,1.458,1.13,0.831,1.905,1.141,1.244,2.048,1.09,1.79,2.613,1.618,1.194,0.769,1.689,1.241,0.964,0.921,1.913,2.228,2.022,1.55,1.638,1.265,4.071,5.387,5.226,0.689,4.068,3.091,4.472,3.826,3.83,3.881,17.667,10.136,8.152,8.189,5.448,5.605,5.25,5.048,5.906,4.839,4.597,5.298,4.546,2.506,5.135,15.88,8.306,8.398,6.51,6.633,5.557,5.572,5.442,10.961,5.212,3.21,3.115,3.073,3.18,3.178,3.081,3.086,3.184,3.146,3.14,3.098,3.083,7.995,1.612,1.651,1.172,1.126,2.051,1.411,1.376,1.113,1.061,1.078,1.18,2.31,3.298,2.806,8.082,4.86,1.324,2.281,5.646,6.012,7.941,7.901,3.829,3.893,2.135,1.242,0.639,3.992,3.936,3.907,6.061,4.675,3.855,4.14,4.356,4.582,3.393,2.645,3.167,4.255,4.231,12.773,0.171,4.315,3.394,2.827,2.884,2.89,2.83,2.869,2.876,3.307,7.13,3.538,4.824,1.693,2.03,2.751,2.297,10.841,3.233,3.074,2.996,3.01,3.111,2.919,2.811,3.374,3.13,20.268,6.182,6.273,16.675,6.316,4.148,1.148,10.855,4.372,7.301,16.351,3.844,6.751,5.233,6.498,4.478,13.86,1.577,1.564,1.164,1.192,0.8,1.173,0.766,0.781,0.779,0.795,0.787,0.77,0.787,0.791,0.843,0.704,0.797,0.785,0.784,0.77,0.788,0.786,1.163,1.223,1.215,0.796,0.796,0.847,0.782,1.101,0.911,0.841,0.794,0.985,1.414,0.856,2.958,1.07,1.209,0.899,0.644,1.198,0.614,0.628,1.613,0.76,0.225,0.505,0.641,0.671,0.649,0.785,1.094,0.896,1.38,1.055,0.975,1.09,0.993,1.049,1.084,1.226,1.102,0.858,1.154,0.81,1.205,1.123,0.788,0.347,0.425,0.823,1.275,0.838,0.992,0.97,1.006,1.11,1.196,0.776,1.554,1.176,1.166,1.193,1.16,1.962,0.794,0.77,0.795,0.754,0.812,0.912,1.008,0.797,1.104,0.832,0.764,0.813,0.842,0.717,1.501,1.57,1.335,1.062,1.162,1.036,0.922,3.782,6.576,1.368,1.436,1.492,1.462,1.812,1.087,0.654,0.4,1.795,1.786,3.426,2.346,2.367,2.359,2.742,2.913,2.907,1.445,1.479,3.096,4.145,4.137,5.292,8.532,13.864,8.354,5.456,2.678,2.94,2.767,2.828,2.79,5.488,6.243,6.876,5.714,0.348,6.068,4.874,6.593,5.026,6.356,5.528,5.761,2.227,13.492,3.75,3.991,7.082,3.522,3.633,4.093,4.23,4.077,4.021,3.407,1.848,3.141,1.648,19.306,21.412,4.63,3.007,3.047,4.493,4.572,4.573,4.48,7.578,13.586,15.373,8.163,6.147,6.119,6.069,6.161,7.998,7.254,11.195,2.15,2.352,3.328,2.79,2.665,4.484,2.953,2.479,2.252,4.791,3.554,6.638,16.46,4.517,15.82,18.639,6.408,9.191,10.631,10.664,18.986,1.148,2.965,4.19,6.407,1.098,3.635,4.209,5.336,8.586,7.149,7.667,8.136,2.405,2.656,1.844,2.288,1.834,1.721,1.922,1.655,0.337,1.075,3.015,1.871,2.456,2.394,1.779,9.169,5.75,4.749,5.612,4.119,4.079,4.67,5.14,8.485,23.631,17.534,1.446,1.506,3.864,2.622,4.21,13.727,5.04,5.063,8.704,6.218,12.74,2.969,6.967,1.47,1.121,1.104,4.296,1.158,4.707,1.58,6.239,3.547,0.359,2.245,0.006,2.206,1.857,3.25,3.461,2.446,2.457,2.572,3.118,2.238,1.838,1.804,2.732,2.379,2.34,5.894,3.514,2.147,2.131,3.51,3.492,3.508,4.28,2.198,2.2,2.499,2.709,0.048,2.608,1.974,1.719,1.689,2.859,2.866,5.535,4.383,0.223,4.167,19.965,16.746,12.69,6.871,5.048,4.405,5.11,16.889,26.594,16.315,9.641,1.496,0.082,4.006,8.534,1.878,4.938,4.778,2.751,4.857,4.897,5.623,5.43,8.327,12.085,6.864,6.708,5.466,0.086,4.78,4.785,5.18,5.297,5.279,6.626,9.917,3.943,6.352,5.733,10.519,5.194,14.887,6.338,12.142,10.461,4.746,3.07,5.16,2.963,7.486,8.105,8.014,14.363,15.058,12.952,16.707,19.709,15.22,15.493,10.422,6.426,6.623,5.966,6.827,4.659,6.734,1.309,7.271,6.078,4.049,3.305,2.993,7.549,12.105,3.094,6.98,9.08,0.066,14.345,3.677,3.64,3.327,3.084,2.964,14.896,11.158,5.3,5.549,3.971,3.406,4.253,4.922,4.926,3.757,4.054,3.307,4.042,5.534,6.663,4.736,4.653,4.594,4.423,4.419,5.95,6.172,6.557,3.523,2.267,3.386,2.924,7.154,4.489,4.286,4.374,3.404,4.007,4.125,3.819,3.914,7.962,15.339,8.513,5.303,1.301,1.086,7.205,8.835,8.887,5.255,2.602,4.11,4.192,3.381,3.328,1.734,3.421,2.976,3.095,3.152,3.167,6.267,6.052,6.144,3.19,4.637,6.501,7.115,0.64,7.116,25.904,6.601,5.249,4.659,5.267,4.163,4.192,4.456,1.379,9.096,5.103,3.684,3.63,3.738,3.451,5.33,6.316,2.709,2.819,2.156,4.221,6.657,0.05,7.666,17.689,5.876,1.803,3.59,1.25,3.077,2.637,6.838,4.35,1.625,5.276,6.219,1.953,0.992,4.299,4.078,1.839,1.597,0.973,3.515,3.301,0.953,4.644,4.665,4.694,1.68,5.351,7.787,2.641,1.371,4.66,3.483,4.551,4.569,2.781,2.79,2.613,2.787,1.155,0.855,3.762,3.716,8.479,14.778,7.184,12.725,1.602,11.084,11.863,7.564,7.236,10.312,2.277,2.898,9.497,12.279,7.658,3.234,8.836,7.129,2.286,1.222,1.173,2.518,2.168,0.764,2.649,2.888,2.735,5.165,4.935,4.431,2.01,6.128,4.411,5.733,3.745,1.485,1.462,5.136,6.983,3.456,3.125,3.021,2.891,3.814,2.972,1.815,3.363,1.553,1.481,2.418,1.562,1.456,1.222,1.188,1.262,1.293,2.79,3.11,1.899,1.585,2.881,2.648,2.041,2.053,1.641,1.653,2.272,2.288,1.778,1.903,3.74,7.566,1.838,1.97,2.701,3.663,1.661,1.701,11.365,0.243,11.205,5.3,2.066,1.781,1.801,0.045,1.438,1.385,1.374,1.354,0.862,0.898,1.841,0.416,1.472,1.358,1.515,1.759,2.165,2.254,4.38,1.616,1.481,1.371,1.32,0.962,0.942,1.188,1.276,0.98,6.616,2.803,2.457,0.574,3.392,3.496,2.434,2.845,3.289,0.017,3.388,2.497,2.536,2.566,2.462,5.041,1.883,6.82,10.582,5.595,1.113,0.957,3.221,3.833,1.455,0.776,0.722,2.969,0.935,4.408,5.109,2.55,0.59,1.652,1.706,1.28,1.206,1.231,1.137,2.349,2.715,2.572,2.449,2.662,2.633,1.769,2.028,2.93,3.443,1.594,1.274,1.876,1.994,4.797,1.051,4.727,0.586,1.863,4.533,4.397,9.143,8.263,2.039,8.271,4.023,2.143,1.848,3.292,1.7,1.78,2.38,1.724,1.587,2.173,1.965,2.186,1.897,3.365,7.252,2.267,2.006,2.045,1.767,2.142,2.217,1.669,5.426,2.565,1.076,1.481,1.827,1.555,0.25,1.695,1.719,0.926,0.397,1.408,1.715,1.505,2.974,2.213,2.024,1.616,1.844,2.062,1.44,2.017,1.697,1.821,1.901,0.551,1.653,3.765,1.978,2.081,3.923,4.747,1.292,2.619,2.831,5.176,2.497,5.736,4.683,4.485,2.431,3.757,3.407,7.325,9.018,4.505,2.224,2.147,7.284,1.894,1.983,3.352,1.441,2.141,3.494,7.105,3.502,3.314,3.656,3.107,10.435,2.913,2.734,3.454,2.536,6.307,2.933,1.748,1.453,5.159,7.076,4.066,2.899,2.405,2.692,3.497,3.017,2.175,4.322,3.483,1.829,1.201,2.282,3.406,1.804,1.909,1.328,1.072,1.903,1.63,1.481,1.661,1.501,2.098,2.104,2.204,1.084,1.092,2.068,1.991,3.108,1.451,1.493,1.299,1.192,1.4,1.399,1.977,1.078,1.669,1.887,2.356,3.484,0.59,4.456,1.87,2.002,2.049,2.391,0.875,3.478,1.889,1.4,1.382,1.361,1.892,0.555,2.49,2.273,3.399,3.285,3.336,2.233,1.159,2.181,2.398,0.096,2.61,4.66,4.107,6.23,8.199,5.616,2.606,4.837,5.831,20.379,5.133,1.23,1.018,1.298,2.838,1.188,1.34,1.237,1.65,1.121,3.08,6.657,16.031,1.237,1.829,3.142,3.269,4.507,2.895,2.725,3.631,3.183,2.563,1.168,1.082,4.885,4.509,1.704,0.801,8.742,0.738,3.695,4.049,3.916,3.607,5.731,5.651,11.387,23.95,1.101,14.164,0.706,8.429,5.074,1.89,3.173,3.452,4.548,2.29,2.966,2.713,2.713,2.715,3.117,1.507,1.444,13.737,7.706,7.617,4.499,2.059,7.002,5.059,4.515,6.133,7.078,2.309,2.397,6.889,3.113,3.317,6.59,3.365,1.92,1.827,1.64,1.539,2.992,2.753,3.957,2.194,2.057,4.846,8.031,5.852,2.843,2.414,2.974,2.909,2.005,2.163,4.065,9.647,0.508,10.996,8.98,7.887,8.564,13.657,4.851,5.16,4.169,4.439,5.414,4.338,8.099,3.213,3.391,5.458,5.961,4.383,1.587,2.433,3.397,1.28,1.077,1.637,1.156,2.027,1.201,1.45,2.227,1.211,1.827,1.981,3.081,2.918,3.102,2.767,4.533,0.832,1.803,3.811,2.197,3.309,2.841,4.789,4.727,2.608,2.711,3.207,6.248,5.213,5.157,2.538,0.781,2.191,4.6,4.103,2.131,2.446,3.102,2.094,3.814,4.008,5.776,5.521,5.455,3.015,2.447,3.983,3.568,3.728,2.736,2.027,2.087,3.033,1.522,1.985,2.784,2.95,2.409,2.575,0.738,1.683,3.167,2.182,2.84,3.509,4.347,4.209,5.717,6.545,3.531,2.231,3.144,2.003,2.384,3.885,3.047,3.066,3.293,4.42,2.751,4.556,4.583,5.312,2.318,2.8,3.291,1.816,3.054,3.064,4.982,3.8,1.494,4.578,3.452,3.739,2.486,0.653,3.05,3.251,6.531,5.58,2.154,2.477,3.655,3.793,4.313,2.065,2.212,2.057,1.39,1.987,2.06,2.112,2.013,1.32,1.596,2.769,2.09,2,1.683,2.21,2.159,2.135,3.949,1.986,2.132,2.544,1.475,1.623,2.035,1.939,2.411,2.172,1.712,1.544,2.96,4.342,2.148,2.171,1.826,1.856,2.109,1.728,2.926,2.177,1.899,0.549,2.357,2.647,2.174,6.182,1.801,1.34,1.576,2.954,1.558,2.182,2.552,3.204,3.244,4.601,4.131,4.788,4.01,5.427,2.755,4.797,3.398,3.674,3.796,7.572,7.534,3.167,2.982,2.275,1.973,2.633,2.074,2.922,1.867,2.285,2.735,2.55,2.852,2.44,3.289,3.45,3.075,3.261,4.169,4.185,5.191,6.859,4.558,2.156,1.809,2.003,2.032,1.949,1.897,1.553,1.505,1.675,1.651,1.782,2.309,2.034,1.876,2.473,5.414,6.552,5.584,5.289,3.264,3.669,2.86,3.304,4.375,4.904,3.783,3.424,4.281,4.394,4.399,3.862,2.225,2.111,1.49,1.763,2.239,1.695,2.599,1.095,1.8,1.804,1.828,1.95,4.467,0.06,4.537,2.052,2.013,1.701,1.729,1.935,1.993,1.737,1.727,1.439,1.742,1.558,1.687,2.28,1.199,1.426,1.387,0.223,5.654,7.858,15.695,6.734,0.894,11.098,1.468,1.297,1.223,2.023,1.76,1.414,1.439,1.669,1.98,2.03,1.923,1.529,0.938,2.136,1.524,1.598,2.036,1.779,1.744,1.732,1.973,2.011,2.755,1.832,1.682,1.047,2.76,2.515,2.873,2.48,1.954,2.45,2.121,0.984,2.843,2.801,4.395,3.288,1.765,4.655,2.241,1.27,0.398,1.936,3.135,2.946,2.168,2.15,2.821,5.52,3.499,3.902,2.309,0.57,2.703,1.459,2.869,4.371,2.262,1.109,2.698,2.228,1.898,4.374,4.075,2.708,3.291,2.388,2.33,3.124,4.316,4.303,4.128,3.006,3.354,4.148,5.568,4.991,4.639,3.54,6.467,6.33,3.897,5.097,5.11,4.521,7.457,2.809,1.54,1.142,2.693,1.775,1.303,1.672,1.972,2.171,2.313,2.309,1.751,1.866,2.055,2.659,1.435,1.697,1.977,2.203,1.482,1.891,2.07,2.058,2.003,1.875,1.637,3.367,2.012,1.998,1.933,1.654,1.833,1.519,1.948,1.908,1.476,1.532,1.795,1.965,0.978,1.956,1.646,4.456,4.04,1.558,1.633,2.533,1.407,1.46,1.147,1.666,0.784,0.803,1.344,1.36,0.926,1.847,0.422,1.48,0.242,0.727,0.597,2.494,1.38,2.956,1.979,0.922,1.241,1.192,1.289,2.069,2.017,2.731,8.19,0.801,12.385,0.033,4.205,3.472,7.258,2.444,0.668,3.164,5.014,5.344,3.084,3.3,4.221,5.759,4.492,2.938,1.878,2.909,2.435,1.677,1.777,1.919,2.364,1.964,2.524,2.342,0.652,0.838,1.521,1.819,1.431,2.09,1.675,1.521,2.505,3.134,2.116,2.726,2.27,4.469,9.003,8.767,4.542,6.541,8.901,9.998,9.726,0.071,6.609,1.338,7.992,6.42,5.822,3.779,7.158,7.185,8.023,3.318,0.414,2.355,4.028,2.427,3.531,3.424,0.987,3.085,3.637,6.503,3.952,3.768,11.001,5.237,5.72,5.938,5.814,9.248,6.45,6.407,1.827,12.152,10.785,3.945,0.805,1.578,0.684,2.59,3.971,1.07,1.978,2.889,2.902,6.289,3.628,7.009,9.037,7.737,9.045,7.897,3.25,4.728,0.211,2.07,0.155,4.575,3.05,0.516,0.569,3.104,4.005,2.679,7.063,8.042,7.821,2.825,3.099,7.349,4.909,4.076,4.605,2.874,5.879,6.045,6.718,2.954,2.618,2.61,2.916,3.713,8.182,4.47,4.501,8.602,0.361,8.846,5.544,0.922,1.457,6.964,0.395,0.675,1.134,1.295,2.631,2.647,3.195,5.013,5.194,2.602,2.676,4.6,2.245,1.578,1.699,4.773,3.316,3.686,4.477,4.354,4.468,2.964,6.37,2.948,4.682,0.328,2.352,3.772,2.761,2.916,2.178,1.946,1.261,2.33,1.903,1.588,1.847,5.65,2.654,2.442,0.115,3.32,2.898,1.703,1.895,4.35,0.063,6.155,0.328,1.18,14.145,0.754,1.144,4.651,3.676,2.528,0.293,1.945,5.418,0.789,2.897,3.309,4.025,0.879,1.506,1.167,2.377,2.333,4.908,2.676,2.809,3.609,3.197,0.586,0.953,1.629,4.12,0.42,1.08,2.847,4.007,2.916,1.976,1.423,2.291,1.757,1.848,1.22,1.334,1.56,1.74,1.668,1.843,1.739,1.82,2.519,1.245,1.125,2.267,1.72,2.019,3.355,3.455,4.324,2.884,2.738,5.681,0.699,4.232,3.669,4.741,5.68,7.298,5.941,5.719,3.705,5.913,1.13,2.827,5.688,1.538,3.993,5.416,2.914,3.146,0.277,2.277,4.042,4.156,2.374,1.782,3.703,1.55,1.357,3.274,3.895,4.275,2.541,3.244,3.475,3.786,2.266,2.34,4.367,5.276,3.588,2.513,1.415,2.475,2.44,0.647,2.955,3.292,2.7,2.934,5.129,2.728,4.651,2.641,2.547,1.809,2.018,2.726,2.605,2.158,2.783,2.412,2.533,2.146,2.019,3.028,3.059,2.91,4.088,7.028,7.157,2.335,3.571,4.271,6.543,4.012,4.112,3.244,2.001,1.364,0.906,2.328,1.379,1.255,2.049,1.676,1.361,1.158,1.832,1.32,1.442,1.353,1.247,2.019,1.85,3.738,3.761,4.706,7.762,1.391,5.41,5.583,2.698,2.825,5.448,2.086,1.754,1.347,1.255,1.13,1.266,1.172,0.019,1.448,1.095,1.214,1.249,1.298,1.183,1.226,1.485,1.386,1.302,1.54,2.513,5.335,3.346,1.472,1.985,1.589,1.637,0.168,1.674,1.366,3.087,3.287,3.588,3.655,4.402,2.183,3.591,2.864,2.761,2.87,2.219,3.3,2.033,2.095,1.361,1.772,2.035,2.12,2.215,2.506,1.688,2.082,2.743,1.819,2.462,3.096,1.594,2.494,2.386,2.262,2.333,2.665,2.185,3.404,2.627,3.177,2.969,2.789,2.526,2.294,1.823,3.008,1.865,1.059,1.57,1.932,1.569,1.729,1.536,2.236,2.041,1.999,2.015,1.823,1.758,2.39,1.859,1.646,1.981,1.54,1.093,0.573,1.995,1.212,1.869,2.342,4.156,2.566,2.711,1.631,0.891,5.223,4.418,0.286,2.238,2.34,5.949,3.051,5.333,7.202,1.602,8.758,9.425,2.351,4.789,0.477,1.77,2.291,3.577,2.553,4.465,2.382,2.922,4.92,1.86,3.774,2.14,4.571,2.173,2.315,2.792,3.038,2.803,4.514,3.052,2.848,2.878,3.317,4.219,2.654,2.788,2.883,4.452,4.468,4.243,3.046,2.167,6.613,3.081,3.386,3.55,1.363,2.69,3.662,3.135,3.965,1.277,2.098,3.375,3.336,3.69,2.18,2.317,4.481,4.292,6.522,7.917,1.631,2.532,3.685,1.83,10.725,4.863,2.681,2.354,4.787,4.942,3.868,1.629,2.211,3.956,3.97,4.069,0.1,2.253,3.039,2.203,3.402,4.164,6.56,1.557,1.666,3.951,1.262,5.361,3.639,3.784,2.2,4.54,3.208,2.041,1.401,1.601,1.067,1.169,1.154,1.103,1.843,1.699,2.275,1.475,3.033,2.79,3.167,1.47,0.966,0.841,0.819,0.729,0.668,0.958,1.026,2.505,5.911,7.855,4.108,1.84,6.809,0.597,1.159,1.05,1.439,2.215,2.436,2.932,3.038,3.4,3.563,2.125,0.952,0.992,1.017,1.023,0.925,0.791,0.677,0.699,0.718,0.56,0.88,7.426,2.336,1.027,1.883,1.607,1.351,1.077,0.894,2.099,1.095,0.873,0.682,0.701,0.938,0.868,0.928,0.896,1.205,0.591,0.366,0.386,0.84,1.034,0.936,1.055,1.086,1.23,2.553,1.77,3.007,2.532,2.496,3.986,2.898,1.833,1.567,1.936,1.605,1.175,0.626,0.715,1.227,1.068,1.014,0.934,1.017,1.027,1.049,1.019,1.14,2.381,3.568,4.852,2.25,2.129,0.93,1.472,0.926,1.248,0.855,0.789,0.813,0.825,0.944,0.977,1.077,0.89,1.063,0.976,0.982,0.705,2.028,0.935,0.722,0.75,0.859,0.628,0.966,1.182,1.124,0.953,0.888,0.783,0.722,0.66,0.831,0.904,0.931,0.686,0.64,1.523,1.142,0.276,1.188,3.054,4.463,2.822,3.248,5.233,3.116,1.236,3.089,0.988,3.983,2.053,2.491,2.504,2.5,2.983,3.914,1.419,1.165,1.699,2.43,3.94,4.98,2.856,0.829,0.75,0.874,0.877,0.654,0.952,0.946,1.259,3.413,3.45,1.171,2.075,2.206,4.34,2.11,0.61,1.274,1.957,1.703,0.876,1.891,1.713,1.795,1.395,3.288,0.737,2.156,4.633,3.465,3.043,2.948,1.95,1.37,1.549,2.94,2.423,1.376,1.398,2.508,1.787,1.738,2.145,2.041,2.077,2.816,3.317,2.844,3.223,5.684,2.443,2.479,1.144,0.998,0.803,0.922,1.104,3.487,2.1,4.212,6.65,10.475,7.619,2.111,5.433,4.666,8.195,5.256,5.399,3.612,2.546,3.097,4.441,7.038,4.893,5.598,7.905,9.502,6.687,3.658,10.162,11.897,7.463,2.33,2.338,5.108,11.931,9.734,4.335,4.283,7.007,4.647,4.367,4.083,3.013,3.058,3.958,2.213,1.211,1.273,2.549,4.223,3.911,2.517,2.454,2.273,3.163,3.47,3.848,0.464,3.711,4.661,2.843,3.874,6.154,3.125,5.65,4.165,4.652,4.266,4.27,3.854,3.087,3.257,7.873,4.809,6.819,5.148,3.697,1.095,2.104,2.328,0.012,6.625,3.201,2.932,2.546,3.016,2.808,3.028,2.909,2.159,2.606,2.689,2.908,3.735,4.518,3.101,0.014,3.289,3.214,3.331,3.138,3.09,3.479,1.957,1.815,2.679,3.404,3.107,3.117,0.37,0.945,2.654,2.037,4.784,5.088,1.309,1.668,3.561,1.862,2.348,5.428,2.926,4.944,2.773,2.758,1.741,2.387,5.964,6.94,2.62,2.321,4.965,4.135,3.134,1.535,0.239,3.373,3.221,1.749,8.976,1.201,3.339,5.679,3.95,3.371,2.588,1.828,7.475,5.574,1.602,3.452,4.534,5.996,5.708,2.607,3.478,6.621,3.598,2.119,2.873,2.268,0.317,1.218,1.668,8.864,5.091,5.162,8.472,7.613,4.434,0.152,3.463,4.237,5.552,5.494,3.892,3.632,7.284,4.034,4.245,3.153,1.181,1.479,0.369,3.926,3.546,1.383,2.453,3.396,3.443,2.294,2.319,2.407,1.81,1.834,2.14,2.452,2.262,3.857,2.635,3.091,2.09,2.533,2.014,1.451,1.288,3.859,3.101,2.754,2.323,3.446,3.371,2.696,2.302,2.424,2.81,2.487,2.373,2.959,2.144,2.415,2.492,2.605,2.962,2.924,3.141,2.808,2.8,4.099,6.855,6.19,4.106,5.493,3.661,5.166,3.797,4.072,4.641,4.698,4.846,4.53,4.624,9.09,4.335,2.236,6.23,3.919,4.85,8.574,4.163,2.39,0.628,2.116,6.309,3.985,3.941,4.161,2.524,2.688,2.686,5.478,4.607,3.79,6.06,6.971,2.611,2.662,1.896,2.809,1.842,2.422,2.451,2.561,4.147,0.466,3.056,3.038,2.399,3.806,2.667,2.416,2.784,2.571,2.411,3.602,3.448,2.615,2.73,2.562,3.227,5.815,6.732,4.077,4.131,3.67,3.621,4.128,2.375,2.035,1.883,0.418,3.16,0.867,2.521,1.722,1.797,3.594,3.37,1.91,3.387,2.621,2.606,3.731,7.227,7.164,6.029,6.127,4.934,4.451,3.373,3.25,5.115,5.888,3.942,4.235,6.179,5.119,5.301,5.577,6.806,6.135,6.508,6.174,4.711,4.277,0.543,2.537,2.934,5.229,3.978,3.82,0.864,1.392,1.974,3.614,5.793,4.892,4.797,3.378,4.251,4.042,8.196,4.961,3.072,1.902,3.028,2.191,4.112,4.157,3.82,4.271,4.028,5.045,1.71,1.219,2.127,5.718,2.318,2.238,3.018,2.133,1.887,3.973,1.409,1.259,3.237,4.545,2.868,3.182,3.921,2.794,2.613,2.084,2.943,1.879,2.893,2.299,2.356,2.23,0.286,1.884,1.897,2.845,3.034,4.319,4.452,3.323,5.899,2.982,2.851,2.21,2.444,3.684,3.804,3.868,0.469,0.567,1.905,4.54,2.577,2.239,2.42,2.603,1.563,2.055,2.645,2.573,4.157,3.705,2.743,2.774,3.126,3.282,3.478,5.892,4.059,9.492,4.258,3.176,2.403,2.11,2.461,1.74,2.207,2.829,0.4,3.211,3.407,2.336,2.894,3.565,3.688,3.737,3.83,1.893,1.723,1.511,2.976,3.415,2.87,6.188,4.514,7.772,3.103,3.984,3.134,2.814,5.946,4.844,3.094,1.96,7.064,10.139,2.154,4.913,4.124,5.067,6.394,5.639,5.471,5.074,2.981,4.215,4.251,3.925,2.486,1.74,2.785,5.678,6.448,7.491,5.673,4.716,3.757,4.024,4.005,3.76,2.644,3.652,3.675,1.238,1.117,5.91,6.133,5.555,7.023,6.191,5.204,5.95,4.349,4.164,4.8,4.242,4.237,4.217,3.966,4.346,3.544,3.456,3.082,3.012,2.243,2.748,3.12,5.367,2.917,0.551,2.061,0.259,4.645,3.147,4.536,2.625,2.557,1.886,1.897,1.698,1.531,3.29,2.834,3.815,3.654,2.432,2.475,1.5,2.934,2.716,2.76,1.906,1.758,3.133,1.938,2.319,1.695,2.394,1.904,1.332,2.656,2.375,1.97,1.84,2.286,3.191,3.508,2.997,2.483,2.021,3.071,4.476,4.508,2.996,2.426,1.894,0.684,2.161,2.317,3.746,3.324,3.351,2.559,2.678,2.735,3.221,3.241,2.065,3.441,16.215,11.102,0.495,1.732,6.402,6.499,6.027,7.048,4.121,3.2,2.93,2.794,2.121,2.479,3.093,3.418,3.671,3.749,3.911,3.001,4.782,5.297,3.516,3.439,3.44,2.356,3.139,1.684,1.892,1.47,2.462,2.191,2.335,1.527,2.411,2.139,0.403,2.986,3.854,7.521,3.406,1.921,3.01,3.166,3.147,3.91,1.769,3.689,2.079,3.044,2.123,2.315,3.313,2.905,1.903,3.753,3.079,3.665,2.482,3.892,2.18,3.839,1.787,2.066,1.462,1.261,1.105,1.714,1.938,2.572,4.191,1.739,1.906,2.177,1.963,2.279,2.966,2.316,1.676,1.576,3.055,1.901,2.011,2.721,2.092,2.465,2.083,0.636,1.268,1.791,1.809,1.957,3.794,5.941,6.105,4.717,3.373,2.49,2.427,2.184,1.086,1.461,1.415,2.04,1.828,2.023,1.842,2.313,2.838,1.721,1.737,1.753,5.39,5.493,4.179,3.758,0.418,3.754,3.624,1.857,2.512,0.084,2.789,5.504,7.524,0.332,3.223,1.347,3.205,2.29,3.595,1.624,2.162,3.23,3.939,3.102,2.091,3.117,2.65,1.851,1.898,2.211,2.624,2.589,2.18,2.48,2.244,1.944,2.187,2.313,2.315,2.06,1.709,2.079,1.817,2.077,2.143,2.015,2.147,1.605,2.029,1.527,1.384,1.325,1.877,1.473,1.111,1.399,1.47,1.436,1.474,1.98,2.184,0.875,1.808,1.851,1.823,1.127,1.52,1.68,1.625,1.682,2.491,2.141,1.812,1.866,2.058,2.579,1.499,3.125,2.691,0.926,1.829,2.106,1.754,1.993,2.211,2.806,2.559,2.004,2.474,2.506,1.929,1.505,1.489,2.432,2.033,1.961,1.055,2.098,2.487,2.259,2.474,3.198,2.908,2.977,1.824,2.199,2.681,2.15,2.456,2.186,2.818,2.126,2.19,2.849,2.588,2.1,2.493,2.088,2.165,2.511,3.997,2.583,2.327,1.569,1.915,2.145,2.313,1.963,1.965,2.117,1.905,2.3,2.411,2.313,2.796,2.143,1.597,2.808,2.245,2.611,2.446,2.378,2.678,2.597,1.992,2.312,2.617,2.243,1.919,1.993,2.181,2.117,1.696,2.281,2.073,2.21,2.289,2.466,1.901,2.472,2.173,2.287,1.772,1.621,1.689,1.602,1.044,0.41,2.059,5.873,2.485,2.942,0.384,2.27,1.871,1.963,1.869,1.731,2.187,1.502,1.591,1.598,1.027,1.875,2.332,0.989,1.638,1.498,1.782,1.835,1.754,1.676,2.393,2.277,2.837,3.805,7.546,5.985,3.099,2.893,2.52,2.481,2.037,2.003,1.875,2.351,2.214,2.533,2.211,1.788,2.225,2.514,2.468,1.881,0.568,2.444,1.43,1.981,3.393,4.344,5.354,4.459,5.063,4.12,4.533,3.638,2.173,2.588,2.235,1.973,3.07,3.043,3.261,2.929,0.51,3.828,3.12,3.291,5.357,3.069,2.358,1.273,1.417,1.992,1.867,2.727,1.639,1.596,1.441,2.28,2.81,2.454,3.032,1.951,2.011,1.818,1.974,2.151,3.371,3.173,2.402,2.432,2.091,1.949,1.941,2.14,1.936,1.799,2.13,2.408,2.174,2.217,2.099,2.917,2.417,2.116,1.542,1.673,1.796,1.945,2.094,1.695,2.113,2.297,1.897,3.332,5.59,5.718,2.625,1.336,1.955,1.777,2.015,1.145,2.339,1.736,1.981,1.767,1.971,2.693,2.72,1.915,1.899,1.845,2.122,3.195,1.504,4.328,1.754,2.414,1.803,4.236,2.728,2.093,2.106,2.001,1.969,1.822,1.383,1.58,1.747,1.923,1.912,1.811,1.732,2,2.34,3.694,2.099,2.201,1.428,1.551,1.902,2.132,1.837,1.884,1.679,1.974,2.037,3.235,2.923,2.874,2.028,2.368,1.863,1.824,1.955,1.68,2.18,1.865,1.481,1.513,1.506,1.613,1.791,1.849,1.962,1.525,1.657,1.974,2.191,2.121,2.254,1.94,1.56,1.989,1.606,3.197,2.233,2.555,2.263,1.293,2.014,1.468,1.81,2.036,1.789,2.208,2.059,1.691,1.867,2.285,2.016,1.605,1.462,1.271,1.646,1.441,1.858,1.405,0.837,1.485,2.073,1.778,2.254,1.829,3.973,5.424,3.516,2.729,3.708,2.184,2.359,2.321,2.261,2.039,2.105,1.522,1.509,2.089,0.166,1.998,1.735,1.627,2.597,1.631,1.763,1.978,2.095,2.274,2.233,2.406,2.908,2.747,4.031,2.077,2.064,2.143,1.85,2.177,2.24,2.604,2.847,1.962,2.484,1.759,1.576,1.483,1.329,1.746,1.785,1.555,1.439,1.814,1.686,2.162,2.359,2.593,5.872,1.96,1.77,1.835,1.732,1.841,1.821,2.062,1.551,1.275,1.092,2.051,2.689,4.314,1.878,1.059,2.126,1.576,1.579,1.475,1.638,1.792,1.56,1.68,1.321,1.627,1.842,2.107,4.734,2.627,2.188,0.527,0.937,2.751,2.073,2.159,2.323,1.987,2.445,2.586,2.454,2.484,3.639,3.22,2.094,1.76,1.4,4.271,5.363,4.063,2.27,1.988,4.028,2.594,2.571,2.855,3.022,2.986,3.115,2.891,2.106,3.017,2.711,2.855,2.258,2.034,0.523,3.938,0.499,5.906,1.976,4.014,4.041,3.636,4.339,1.293,3.254,2.117,2.414,3.137,1.198,1.103,1.872,1.905,2.943,2.399,3.14,5.414,5.338,4.794,6.878,9.82,10.364,5.684,4.808,1.166,5.584,5.648,2.642,2.594,4.174,3.39,3.765,4.215,5.245,3.444,3.437,1.624,1.564,2.508,2.397,3.075,1.416,1.853,1.748,2.408,2.36,2.828,2.263,2.332,3.325,0.943,5.299,0.13,2.934,2.645,2.75,2.944,2.647,2.157,2.366,2.514,2.137,1.863,3.039,3.38,3.17,5.079,0.551,1.987,2.017,1.809,2.226,1.889,2.011,1.996,2.379,2.22,1.477,1.727,1.638,2.851,2.6,0.726,2.813,3.266,5.103,4.562,7.757,9.969,2.086,2.824,1.654,4.639,12.039,7.544,10.841,2.465,1.995,1.866,2.012,2.274,1.546,1.364,1.863,1.776,1.775,1.881,1.945,1.607,0.247,1.724,1.61,1.891,2.027,2.334,1.896,1.844,1.863,2.084,2.809,3.594,1.509,1.296,1.648,2.183,2.035,1.803,1.898,1.897,1.765,1.938,1.63,2.053,2.411,2.29,2.732,2.624,1.815,2.066,1.829,2.143,1.948,2.09,2.387,4.534,4.455,5.796,4.489,7.919,4.325,2.335,1.987,1.801,1.538,1.695,1.768,1.789,1.762,2.216,1.984,3.024,3.617,2.535,1.894,1.979,1.696,1.981,1.781,1.76,2.058,2.253,2.038,1.899,1.907,2.088,1.741,1.761,2.49,2.176,1.774,1.819,1.912,1.523,2.03,1.947,1.855,1.298,1.746,1.311,0.812,1.417,1.527,2.058,1.989,2.182,1.48,5.03,1.186,1.901,1.242,1.527,2.168,1.331,2.324,2.099,1.965,1.914,2.816,5.275,1.861,3.962,2.785,3.443,11.247,5.61,5.254,0.319,1.434,2.844,2.484,0.906,2.146,1.605,3.105,7.66,1.181,1.233,1.295,1.365,1.077,1.004,1.019,1.245,1.346,1.319,1.614,1.702,1.46,1.205,1.029,0.837,1.116,1.287,0.828,0.405,1.243,3.662,1.944,1.425,1.283,1.382,1.642,2.859,5.244,2.279,0.909,1.559,2.548,0.892,1.255,1.263,2.502,2.641,2.209,2.727,1.498,2.48,1.784,2.45,2.389,3.004,3.78,2.805,2.357,2.07,1.928,2.181,1.52,5.063,1.395,4.418,4.623,0.594,14.883,0.438,15.176,1.168,11.084,2.3,21.042,1.945,1.621,2.172,1.334,1.162,5.345,3.294,0.668,2.497,3.286,3.602,6.27,2.808,1.703,2.766,1.137,3.02,2.238,2.838,4.072,1.18,4.447,2.391,3.171,3.979,3.371,3.756,3.697,3.34,6.839,4.056,1.145,1.49,2.614,3.505,1.957,1.542,3.46,3.76,4.616,4.664,1.638,3.832,4.211,4.325,5.357,0.031,5.298,3.14,1.572,1.634,3.763,2.819,6.714,3.237,3.262,4.024,3.945,5.211,2.367,2.284,2.332,2.631,0.746,1.933,2.769,2.118,2.398,1.578,1.25,0.265,0.674,4.921,4.34,3.22,2.071,1.184,1.403,1.934,1.617,1.537,2.521,3.568,1.793,1.245,3.117,2.943,2.666,2.858,2.567,1.792,1.875,2.454,1.851,0.708,2.489,3.04,1.039,2.883,2.366,3.055,1.336,3.029,1.003,0.988,1.941,2.665,3.691,8.32,11.535,4.585,1.966,0.867,1.664,0.451,4.027,3.178,3.059,3.356,3.21,2.84,2.664,2.524,2.46,2.301,1.19,1.204,4.277,3.821,3.789,2.179,2.417,4.641,5.26,4.019,8.696,9.512,1.391,1.453,9.402,8.735,4.797,3.789,5.992,4.219,3.82,3.676,0.044,3.589,6.154,8.713,4.418,3.644,1.328,1.469,1.551,0.324,2.839,3.142,2.046,5.392,1.848,1.512,3.436,1.462,3.002,5.087,4.881,4.325,4.218,4.435,4.341,8.775,1.533,2.796,4.357,4.384,4.412,3.948,1.078,1.304,3.765,2.984,4.387,3.754,4.737,4.929,5.886,3.658,2.909,1.585,2.801,3.591,3.6,2.992,3.888,1.657,2.402,3.898,4.753,4.373,5.231,2.309,2.316,2.366,2.346,2.678,1.57,0.815,0.791,0.763,0.803,2.922,0.309,1.324,1.508,2.56,4.678,2.005,1.268,1.486,3.182,0.242,5.391,2.637,4.019,2.119,3.504,2.394,3.38,3.577,2.828,2.98,2.66,4.232,2.32,3.691,2.484,4.136,3.18,2.467,2.652,3.723,3.374,6.024,2.348,11.81,7.407,7.51,0.978,1.916,5.842,12.033,3.914,10.707,0.934,0.996,9.719,20.023,7.021,5.081,3.857,2.724,2.646,2.574,2.326,2.719,4.23,2.567,2.842,1.895,1.084,1.552,1.961,1.428,5.55,3.016,5.205,12.713,2.671,10.249,2.434,12.05,9.201,2.958,3.304,3.937,2.46,2.816,3.736,3.335,4.473,4.728,3.401,3.206,1.15,2.393,2.95,2.32,2.277,4.596,3.157,1.509,1.18,1.8,1.781,0.022,2.171,2.295,0.545,0.441,1.828,1.171,0.457,1.477,2.546,2.603,1.892,1.984,2.868,1.61,1.396,1.714,0.924,1.306,1.088,1.916,1.474,1.902,2.634,2.204,1.621,2.4,2.383,2.288,5.694,4.17,7.087,0.528,3.133,6.016,4.508,2.409,2.43,2.682,3.489,2.934,2.208,1.216,2.876,3.182,3.05,2.505,3.058,4.02,4.422,3.833,2.922,1.875,1.389,1.254,0.983,1.425,5.744,10.53,6.065,1.613,3.972,4.177,3.428,1.787,2.293,2.046,1.473,2.776,2.23,2.083,1.455,1.837,1.019,1.496,2.518,1.835,1.607,0.336,1.25,1.375,1.403,1.492,1.685,1.964,2.607,2.579,2.212,1.509,2.474,2.383,2.845,2.875,5.156,5.578,3.555,4.051,2.929,2.864,2.259,2.372,2.426,2.172,2.237,1.118,1.292,1.859,2.093,3.451,4.484,0.82,1.785,1.816,2.588,3.678,2.227,1.785,4.342,2.869,1.343,2.473,1.547,0.844,1.093,5.208,2.43,1.247,5.671,3.004,12.348,4.347,0.844,2.755,2.151,1.533,2.289,2.511,2.723,2.068,1.324,1.477,2.281,6.739,2.246,4.352,1.592,2.539,1.789,2.505,3.59,4.678,3.124,4.092,3.374,1.665,3.023,3.008,3.11,3.068,2.688,1.88,1.672,2.573,2.935,1.508,2.122,3.103,10.204,3.672,2.368,3.318,3.738,1.174,2.617,3.262,3.096,2.859,2.722,2.782,3.249,4.911,0.27,2.044,2.705,2.776,3.2,2.873,5.288,4.759,4.304,1.702,2.615,2.487,2.837,2.046,1.772,2.068,1.234,2.18,3.3,4.936,2.094,2.108,2.25,2.415,2.189,5.67,7.136,2.192,1.648,2.131,2.665,2.141,0.785,1.858,2.624,2.475,6.41,2.915,2.379,2.204,2.071,2.89,2.211,2.654,2.217,2.12,1.026,1.703,1.988,2.14,1.089,1.963,2.822,2.137,1.902,2.07,1.878,2.028,1.564,1.488,1.241,1.792,1.269,1.76,3.093,2.589,3.302,2.479,5.588,0.988,5.38,4.999,1.78,2.226,2.099,1.957,1.79,1.758,2.064,1.515,1.943,1.943,2.988,2.996,1.973,2.488,1.389,1.747,1.913,1.849,0.364,2.404,2.408,0.16,2.42,2.572,3.679,3.026,5.626,2.951,2.589,1.394,1.916,1.343,1.52,1.219,1.885,2.543,1.162,0.031,1.093,0.074,2.318,1.375,1.907,1.993,3.082,2.139,1.424,3.065,3.272,3.84,2.591,2.252,2.353,1.269,1.638,2.587,2.718,3.333,1.527,0.756,2.242,2.117,1.983,2.26,2.044,2.199,2.499,2.435,5.291,1.145,2.432,1.878,0.898,1.895,1.605,2.182,2.885,3.228,2.251,2.64,3.048,3.194,6.434,6.438,3.062,5.89,2.638,3.422,3.364,3.64,6.112,3.275,3.094,5.723,2.082,2.393,4.091,3.025,2.622,3.05,2.9,2.508,2.231,1.678,2.119,2.738,2.528,2.878,1.948,2.925,2.598,2.728,0.965,2.816,2.716,2.595,2.362,2.752,6.708,1.07,3.762,2.186,4.478,2.143,1.127,0.992,3.238,0.838,1.688,2.057,2.838,3.299,2.366,0.573,5.558,3.747,5.667,7.648,0.095,8.906,4.189,2.211,4.365,4.574,2.332,4.834,4.33,2.09,3.434,6.472,3.757,4.273,4.227,3.512,3.534,2.318,1.782,2.463,1.102,3.581,1.099,1.703,1.375,2.643,2.318,3.467,2.847,2.278,1.523,8.284,4.699,9.584,1.899,2.732,4.122,2.785,2.456,1.118,0.755,2.065,2.359,2.855,3.976,5.259,3.028,6.836,7.207,4.483,3.559,4.506,3.393,3.535,9.452,5.161,2.264,2.716,2.467,3.164,3.171,2.592,4.086,2.936,2.799,7.408,4.17,4.159,1.223,5.982,5.647,4.086,7.65,3.917,5.783,4.78,5.667,3.485,2.408,2.532,2.868,2.449,2.311,3.041,2.945,5.717,1.918,1.998,2.928,3.481,3.722,4.331,0.814,0.215,2.125,4.504,7.364,4.846,0.633,6.419,2.834,2.668,1.699,0.929,1.077,1.245,1.317,1.662,1.231,1.297,1.373,1.426,1.832,0.867,1.895,0.79,1.553,1.506,1.455,1.437,1.259,2.335,1.702,1.789,1.967,1.578,1.892,2.007,1.655,1.435,1.865,1.593,2.228,2.635,1.99,3.69,0.99,0.734,0.843,2.088,3.176,3.61,3.546,2.551,4.004,2.643,4.063,2.166,3.18,1.77,1.471,2.171,4.053,6.444,5.845,3.643,3.542,3.289,1.029,2.357,3.53,1.461,1.878,1.496,4.148,4.907,3.801,7.583,1.543,3.738,7.706,4.621,3.237,2.689,2.486,2.005,1.115,2.585,0.785,1.516,2.828,2.984,0.919,1.894,0.79,2.488,0.68,3.458,4.003,3.637,1.927,2.636,3.487,4.61,4.111,2.479,0.942,3.028,3.065,12.562,14.748,5.562,0.559,6.873,10.44,0.52,8.713,1.06,2.895,0.727,3.121,2.297,0.905,6.251,5.081,2.887,6.604,3.488,2.866,1.918,1.406,17.972,9.194,1.144,6.451,16.373,1.493,1.039,9.136,5.676,10.306,6.307,8.801,2.91,2.238,3.166,5.249,4.707,6.407,3.235,3.202,2.811,2.848,0.637,3.071,1.958,5.598,5.663,5.655,4.641,3.465,2.988,1.486,2.565,1.15,1.319,2.616,4.181,3.488,2.262,3.549,6.409,1.274,1.336,2.648,2.114,6.226,1.453,11.697,3.464,9.205,2.335,4.199,3.59,4.816,4.499,4.285,6.394,0.969,6.074,3.467,3.469,2.237,4.796,6.136,3.542,3.567,2.899,4.365,1.979,1.817,4.716,1.722,3.495,5.903,6.086,5.218,3.035,5.624,0.707,3.432,1.748,2.145,2.144,2.446,16.925,5.48,2.2,5.84,3.755,2.229,4.219,12.061,8.339,10.445,4.752,6.533,6.382,0.922,4.592,3.688,3.925,3.315,2.618,1.091,1.479,2.494,2.717,3.484,4.198,4.126,2.288,0.374,1.84,8.148,11.606,1.883,17.067,14.566,12.818,12.764,3.525,1.826,2.808,0.22,2.156,1.186,1.167,2.077,2.008,1.666,1.626,0.029,1.9,0.888,0.996,4.514,3.133,3.155,2.3,1.401,3.47,1.421,2.055,2.079,1.915,1.731,1.849,1.835,1.852,1.906,1.926,1.835,1.471,2.503,3.651,1.524,1.691,1.841,1.657,3.439,7.997,3.607,2.163,6.153,3.063,1.252,0.688,1.155,2.18,2.444,3.856,3.901,3.78,3.052,3.625,1.591,1.803,5.563,6.844,2.02,3.152,2.039,2.045,2.585,2.582,1.93,2.015,1.552,1.176,2.63,2.335,1.121,3.026,3.004,2.098,2.37,3.906,3.437,1.691,1.569,1.951,1.719,2.421,2.656,1.793,1.755,1.895,1.888,1.464,3.087,2.239,1.631,2.474,2.23,0.625,0.824,2.047,1.386,2.868,4.533,2.981,1.812,9.75,1.141,2.38,3.24,0.045,3.448,1.623,5.933,3.241,0.441,1.883,2.677,6.348,8.297,8.498,0.532,6.573,3.447,1.246,13.713,3.464,3.935,2.57,2.835,2.864,2.239,3.893,1.261,3.896,3.019,1.867,2.33,3.103,4.296,2.939,1.32,2.033,1.038,4.025,4.589,4.77,3.654,1.234,4.207,4.148,3.367,1.909,4.139,2.75,3.288,2.207,1.496,6.888,4.266,0.881,1.52,0.865,2.367,4.5,2.407,1.532,6.46,1.538,1.496,2.239,2.06,1.434,1.555,1.897,1.967,2.746,1.987,2.19,2.827,2.852,2.905,3.068,3.265,3.114,3.429,2.744,4.027,2.322,2.316,2.186,0.867,3.743,2.304,1.908,2.978,2.801,3.154,3.409,4.346,1.578,2.351,1.869,2.851,2.111,2.27,3.165,4.09,2.967,2.012,0.68,2.594,0.375,1.802,1.61,1.631,3.595,2.399,3.454,3.111,3.549,3.421,3.234,2.806,0.127,4.163,3.971,3.882,2.655,3.463,5.067,3.595,3.711,13.904,11.268,12.098,7.814,7.269,5.07,5.823,4.275,3.714,3.765,3.74,3.407,3.528,5.965,3.897,4.144,2.77,2.854,2.335,2.937,1.499,0.034,1.425,3.13,3.423,3.568,3.308,2.684,0.588,3.825,3.04,2.681,0.66,3.095,4.572,4.372,13.202,18.273,9.691,3.108,3.187,3.816,1.035,7.142,5.449,4.765,5.86,3.427,3.267,3.738,7.2,5.366,5.941,11.334,5.526,5.251,4.743,3.271,0.564,1.395,2.895,2.191,0.393,7.78,6.677,2.906,1.644,0.479,0.71,12.65,1.794,3.436,1.688,1.664,2.768,2.918,2.565,1.935,1.899,2.715,2.913,3.14,3.08,3.806,2.52,0.309,3.314,6.297,4.143,0.546,3.379,6.223,2.87,3.396,4.647,9.755,6.606,4.449,3.227,4.681,2.774,2.32,1.91,1.83,1.775,1.902,1.912,2.262,2.06,2.11,2.127,2.681,2.175,2.249,1.817,1.702,1.819,2.535,3.651,9.211,8.377,4.82,8.158,3.244,3.153,3.456,1.498,3.429,5.01,5.405,4.848,4.901,2.949,6.067,7.03,5.273,5.291,2.519,7.199,1.138,1.727,2.123,0.93,0.945,1.418,1.003,0.964,0.944,1.002,0.917,1.023,0.945,0.97,3.165,3.109,1.605,2.21,2.469,2.803,20.729,4.691,1.305,1.616,1.178,1.054,2.428,1.974,1.546,1.48,1.689,1.735,7.347,1.285,1.261,1.297,1.301,0.874,1.265,1.332,1.574,1.852,1.084,1.367,1.338,1,0.366,1.507,1.896,1.382,1.743,0.779,1.473,0.911,1.151,1.124,2.042,2.108,3.833,1.453,2.895,0.949,1.466,1.581,2.154,1.455,1.084,1.12,1.937,1.725,1.661,1.696,2.133,2.124,4.143,1.634,1.629,1.685,1.666,1.225,1.278,1.427,1.436,0.767,0.023,0.83,0.712,0.747,2.045,0.942,0.983,1.002,1.729,2.556,0.199,1.284,0.739,0.687,2.181,2.085,0.532,2.548,2.504,2.057,1.969,1.315,1.349,2.262,1.785,1.829,1.652,1.717,1.508,1.428,1.669,1.237,1.682,1.582,2.454,7.596,1.049,1.266,1.357,1.349,1.494,1.584,1.325,0.909,1.216,1.168,1.758,1.255,1.078,1.256,1.283,1.246,1.191,1.205,1.182,1.458,1.39,1.014,0.981,1.948,2.379,2.351,3.727,3.427,1.761,1.793,1.61,1.678,2.112,2.15,1.263,1.281,1.834,1.87,3.894,16.268,2.859,4.545,7.747,12.589,2.419,2.47,2.424,2.532,1.912,1.877,1.69,1.686,0.551,2.833,1.794,1.476,1.492,1.332,1.318,1.634,1.619,1.555,1.544,1.487,1.49,2.528,1.566,1.56,1.563,1.535,1.805,1.913,1.245,1.228,1.922,1.738,1.698,1.626,1.661,1.625,1.05,1.027,2.06,2.064,2.08,1.996,7.763,0.629,2.562,1.758,1.657,1.517,1.515,1.707,1.346,1.462,1.504,1.352,1.667,1.266,1.286,1.368,1.426,2.336,0.737,1.143,2.195,4.136,3.481,1.745,1.701,1.818,1.569,0.391,1.49,1.471,1.248,1.338,1.701,2.115,1.267,1.222,2.512,2.308,2.278,2.335,2.307,2.332,5.441,3.113,2.899,2.144,1.867,1.746,1.716,1.98,2.814,2.902,2.736,2.705,2.037,5.36,1.715,1.264,1.214,1.242,1.297,1.244,1.684,1.255,1.238,1.003,1.053,1.176,1.343,0.967,1.02,1.334,1.017,1.109,1.222,1.253,1.26,1.692,2.126,1.228,1.048,6.391,4.493,3.071,2.49,1.882,1.487,1.487,1.471,2.089,2.057,2.185,2.207,5.507,1.872,1.488,1.8,1.81,2.188,1.194,1.145,1.466,1.48,1.375,1.351,1.637,1.526,1.08,1.113,1.116,1.052,1.482,0.844,0.516,1.379,0.978,2.36,5.091,1.61,1.665,1.857,1.112,1.118,1.052,0.057,1.485,0.899,0.927,0.909,0.957,1.847,1.87,7.789,3.778,3.948,3.485,2.293,2.137,2.721,2.621,5.294,5.938,2.853,8.03,5.691,0.663,4.204,4.072,3.716,16.045,2.221,2.244,3.072,1.358,1.39,7.892,6.308,3.041,2.708,1.534,1.465,1.022,2.556,1.261,1.217,1.965,1.025,1.055,1.593,1.175,1.125,1.481,1.036,0.981,1.398,1.37,1.326,1.443,1.432,1.244,1.217,2.51,2.59,1.027,2.132,6.5,20.477,50.47,0.094,2.964,1.967,1.898,1.984,1.87,1.345,1.414,2.079,8.921,6.389,10.955,16.665,7.4,10.274,5.04,7.094,4.155,5.961,5.354,4.455,0.75,5.232,3.64,2.882,1.202,1.908,1.424,1.692,0.429,1.308,1.573,1.996,1.747,2.149,2.363,2.523,2.373,1.903,1.564,2.38,0.593,1.358,1.384,1.576,1.096,1.172,1.81,1.339,1.373,1.889,1.546,1.578,1.496,1.119,1.714,2.829,3.241,2.301,8.874,7.977,1.827,5.388,3.473,4.676,8.749,4.405,2.037,1.802,1.143,1.831,1.771,0.73,2.968,1.414,1.437,4.605,1.743,1.515,8.141,1.512,2.629,0.596,3.687,4.051,5.134,4.344,2.914,0.453,6.868,3.55,8.855,11.205,6.113,2.93,2.283,3.622,2.65,2.058,2.54,3.227,5.207,11.272,5.235,3.823,9.84,20.804,10.762,43.691,23.42,25.482,2.426,19.554,20.2,5.029,12.429,6.238,6.315,5.06,2.37,2.547,2.885,2.9,13.837,0.772,5.191,2.837,5.303,5.747,0.03,2.813,4.4,3.03,3.402,2.452,2.993,2.083,1.291,1.82,0.551,1.91,2.447,2.865,2.655,2.657,2.679,2.569,3.105,3.402,3.166,2.789,1.897,2.754,3.787,2.775,2.458,2.287,3.293,3.581,1.567,2.057,2.187,1.938,1.591,1.714,2.146,1.675,0.234,1.004,2.622,2.391,1.871,1.846,1.967,2.536,2.614,2.318,2.758,7.443,5.983,11.724,4.635,1.733,5.929,3.525,5.567,2.562,3.96,1.585,2.564,2.974,5.263,4.197,4.345,3.563,5.492,3.696,3.494,4.443,3.53,3.836,5.444,5.367,4.574,5.49,4.775,6.328,4.9,2.83,2.292,3.339,3.267,1.648,0.95,1.71,2.429,1.124,0.966,1.636,2.456,3.285,3.693,3.008,1.73,1.247,3.177,3.229,3.047,3.179,4.013,2.246,0.942,0.334,1.77,2.28,1.341,1.381,1.686,2.614,1.018,0.606,0.176,0.661,0.516,0.264,0.326,0.491,0.258,0.277,0.366,0.973,0.288,0.26,0.26,0.278,0.218,2.051,5.206,4.413,3.283,2.606,1.326,0.791,2.117,0.449,0.379,2.169,2.104,2.114,1.518,1.457,1.693,1.55,3.228,0.906,1.598,3.747,2.611,2.987,2.722,2.433,2.258,3.676,2.333,3.651,2.678,1.804,2.767,2.732,2.755,2.333,2.211,3.001,3.342,3.145,3.095,2.845,2.787,2.553,4.291,6.169,7.825,4.233,4.772,4.016,4.437,3.254,3.784,3.285,3.043,2.909,1.833,3.504,4.311,3.556,3.335,2.107,5.201,1.422,3.787,2.338,2.128,2.048,0.566,2.299,0.133,2.179,1.464,2.53,3.388,5.067,3.031,4.118,3.074,3.829,2.893,2.754,4.256,5.091,2.978,4.569,2.595,4.511,2.258,4.852,1.903,4.674,2.771,3.016,4.505,2.994,3.768,4.136,2.996,3.346,3.01,2.626,3.375,2.998,2.811,2.34,1.705,5.578,3.238,2.914,6.161,5.394,4.718,4.144,4.653,2.109,2.826,4.226,3.483,1.847,5.328,9.526,4.784,4.82,6.032,8.58,5.052,5.291,3.968,3.761,3.378,2.429,3.303,1.086,3.64,0.726,2.734,2.893,3.743,3.424,5.429,18.416,4.636,4.96,12.38,4.208,4.085,4.378,8.92,6.79,10.614,15.677,3.116,3.043,1.929,1.971,2.522,3.038,1.617,3.061,2.262,1.932,1.771,1.204,0.191,1.222,0.623,1.174,1.305,1.278,0.227,2.002,1.915,2.329,2.353,1.793,2.151,2.307,3.328,2.386,2.008,1.265,0.75,2.051,2.86,3.789,2.736,2.019,2.512,8.841,1.454,2.429,2.645,1.518,0.024,1.749,1.649,2.22,2.006,2.15,2.072,3.179,0.787,9.598,3.282,1.576,1.43,0.753,1.369,1.905,1.986,1.515,1.57,1.506,1.366,1.931,2.803,4.299,9.679,2.746,2.163,1.903,0.973,1.55,2.684,3.165,2.125,2.544,2.631,4.168,4.379,5.916,2.041,1.911,1.933,1.425,1.522,1.854,1.795,1.667,2.751,3.362,3.821,7.374,4.215,1.62,0.838,1.656,6.035,15.892,22.616,12.311,7.961,3.508,5.028,6.653,6.713,18.33,5.049,6.299,4.637,4.899,4.054,4.271,4.017,5.143,5.614,3.78,3.848,6.28,2.759,0.313,1.872,0.767,1.426,2.55,0.941,22.738,6.441,0.852,0.25,2.027,10.765,8.398,6.191,5.572,3.69,1.945,0.643,5.04,6.842,5.269,0.754,11.761,3.026,1.986,1.696,1.722,2.291,2.919,3.514,4.986,5.546,1.737,5.426,4.851,7.107,6.952,4.897,4.32,0.574,9.817,12.814,12.835,13.17,7.361,5.342,3.151,3.313,3.645,3.686,2.185,10.176,16.875,0.883,0.796,1.701,1.988,2.552,1.642,1.326,2.536,2.278,13.489,1.645,5.344,4.264,4.347,4.365,2.279,2.376,0.975,2.158,1.466,1.618,2.852,2.499,2.531,2.55,2.313,2.337,2.015,1.244,2.574,2.174,2.172,1.807,12.421,1.047,4.382,5.558,3.268,3.221,0.449,2.614,4.365,3.937,3.523,2.743,2.708,2.724,2.694,2.727,2.684,2.61,2.533,2.408,2.168,3.963,0.001,2.016,1.949,3.655,3.76,4.099,2.129,2.089,1.256,0.898,0.523,2.777,2.732,2.741,2.814,4.997,2.478,2.478,4.024,2.469,2.453,4.043,4.45,7.417,7.361,0.617,9.921,5.666,5.067,2.04,1.972,1.293,1.217,1.543,1.658,1.002,0.607,1.728,1.734,1.84,2.158,1.84,1.944,1.934,1.59,2.125,1.657,1.51,1.51,1.789,2.004,2.028,2.231,2.382,2.303,2.348,2.008,1.866,4.95,4.201,2.115,2.906,3.47,2.083,1.655,1.713,1.574,3.138,1.525,1.492,1.716,1.704,1.704,1.665,3.328,3.3,3.192,1.598,1.558,3.005,3.005,4.308,4.046,6.013,6.022,12.055,2.931,2.989,3.248,2.999,1.299,1.276,1.343,1.339,1.447,1.458,1.412,1.385,1.494,1.5,1.467,1.433,2.949,2.982,13.725,3.384,2.536,2.419,2.478,2.479,1.284,1.237,1.764,1.702,2.283,2.277,1.792,1.757,2.671,2.63,1.441,1.438,2.867,2.042,2.061,1.744,1.612,1.509,1.731,1.753,0.687,1.134,1.795,3.054,3.017,0.753,2.178,2.068,2.422,16.137,52.881,26.681,14.335,5.44,7.629,6.192,4.764,4.804,6.111,6.18,3.227,6.189,6.09,7.781,4.715,7.753,1.159,5.564,5.782,12.106,11.059,7.064,6.625,5.247,4.373,2.686,2.727,4.729,3.212,3.31,1.633,1.718,1.317,1.799,2.936,3.792,3.941,3.426,2.216,2.921,7.941,1.328,4.673,5.601,4.018,5.178,3.57,2.366,2.379,2.56,2.021,2.461,3.499,2.454,6.604,2.477,3.341,5.976,7.085,5.065,12.728,3.766,3.588,3.013,2.748,7.133,12.281,3.089,2.932,5.722,2.443,3.193,2.427,3.767,4.951,5.057,7.427,1.133,4.427,4.334,6.07,6.149,4.025,3.627,3.595,4.553,1.47,1.134,1.131,1.427,1.348,1.438,1.33,1.781,1.382,1.052,1.597,2.921,2.958,9.026,2.35,2.684,2.039,1.747,1.613,1.152,1.249,1.279,3.631,1.766,1.926,3.756,1.432,1.59,2.402,4.086,3.602,3.039,1.93,2.006,3.189,3.347,9.705,3.5,2.805,2.503,0.434,3.743,4.401,3.117,2.57,3.103,0.961,0.955,1.491,1.95,1.63,3.272,1.705,1.756,1.645,4.852,5.194,2.243,1.941,3.803,3.316,4.157,4.414,2.309,4.183,2.398,2.53,2.669,2.068,0.324,1.016,3.339,3.946,1.39,4.87,8.978,9.242,2.926,8.57,6.777,1.589,1.22,0.41,9.285,11.575,5.048,5.279,4.498,7.466,0.855,8.238,8.238,0.607,15.78,1.095,4.228,1.32,1.097,1.878,1.845,2.911,2.844,6.062,2.367,2.381,2.331,2.304,1.783,1.774,1.79,1.856,4.687,4.062,1.585,1.599,1.592,1.401,1.325,1.815,3.179,10.394,9.109,8.323,4.079,4.198,4.239,4.334,5.237,5.435,7.864,6.108,6.4,0.118,6.754,7.237,7.235,3.536,3.024,7.57,4.019,3.957,0.876,2.646,1.947,1.083,1.724,3.096,5.723,3.289,4.768,2.996,4.602,4.18,7.671,6.428,5.571,3.468,3.49,4.791,3.852,3.031,2.892,2.196,1.993,2.479,1.978,2.458,2.396,3.608,2.425,4.616,2.361,2.401,1.572,1.504,3.188,2.189,1.281,2.073,2.806,2.581,2.404,2.355,2.567,2.667,2.154,2.222,5.204,3.933,3.261,1.861,2.069,2.299,2.323,1.867,2.723,4.073,4.474,2.927,3.42,3.452,3.378,2.558,2.554,2.226,2.244,2.507,2.497,4.911,3.893,5.423,2.005,2.105,1.971,1.955,1.472,1.529,1.609,2.29,2.296,1.937,1.945,1.78,1.773,1.974,1.969,4.587,4.104,3.13,2.977,2.164,2.173,2.522,2.733,2.254,2.321,3.147,1.959,1.644,2.804,2.878,2.915,0.943,3.488,3.932,4.516,1.853,1.853,2.407,1.58,1.566,1.873,2.037,2.273,2.271,2.223,2.208,2.175,1.999,2.455,2.465,2.733,3.736,3.042,2.146,2.935,4.192,2.793,4.378,3.185,3.391,4.27,2.313,2.26,2.106,2.063,1.709,2.098,1.477,2.118,2.47,1.613,2.116,1.687,1.692,1.585,0.057,1.617,1.87,1.881,8.016,1.234,3.969,4.06,2.707,2.739,4.589,3.888,4.547,3.4,3.512,3.574,5.269,4.388,5.163,5.122,4.526,3.662,8.239,4.198,4.318,2.884,2.1,1.526,7.839,8.968,0.831,6.754,7.187,5.709,3.157,4.474,3.24,3.89,2.202,5.158,3.352,5.665,3.378,3.675,4.545,2.874,2.709,3.322,3.261,2.963,5.012,3.017,7.317,2.431,0.103,2.498,2.343,2.216,2.096,2.123,6.446,1.715,1.486,0.96,0.939,1.075,1.779,2.041,0.953,2.11,1.989,3.53,3.878,2.306,1.958,2.209,2.069,2.617,2.35,2.595,1.624,1.582,2.91,3.112,2.951,2.248,3.329,2.413,2.198,2.421,2.289,1.866,2.132,2.187,4.219,5.422,6.042,3.705,4.213,5.605,3.944,2.637,3.499,2.805,2.861,2.114,1.739,1.596,2.235,2.183,2.014,2.079,3.097,1.678,1.694,2.043,2.581,3.413,2.301,2.266,1.669,1.099,1.717,2.224,2.353,3.903,3.561,3.137,2.254,3.664,3.07,2.894,2.797,2.727,2.512,2.405,2.732,2.331,3.021,2.152,2.609,3.697,4.642,2.861,2.413,2.974,2.43,2.495,0.223,3.271,2.924,2.071,2.612,4.029,4.454,4.227,4.354,4.307,1.604,0.316,3.632,4.475,4.053,2.523,0.391,0.957,5.611,4.488,3.652,3.564,3.086,5.326,4.247,5.798,3.815,4.422,3.26,7.563,3.999,4.625,4.194,5.575,6.161,2.693,3.225,6.005,6.729,6.713,5.333,4.379,8.139,3.174,2.315,2.274,2.02,3.042,3.022,7.75,5.727,4.864,6.876,1.407,0.621,4.694,2.227,1.892,3.734,1.094,2.879,1.27,1.622,2.753,1.137,1.57,0.684,0.603,1.027,1.054,0.954,0.819,1.186,0.963,2.815,1.968,1.904,2.401,2.758,3.655,2.032,2.582,3.078,1.684,1.668,1.128,1.777,2.34,2.688,2.282,3.096,3.613,3.773,2.053,2.999,0.17,2.578,3.281,1.926,4.595,4.602,4.976,3.198,4.054,2.736,2.563,3.262,3.879,3.363,2.65,3.663,3.828,3.092,3.279,2.904,5.715,3.494,2.14,3.283,2.992,3.72,3.337,2.694,3.33,2.882,3.361,2.965,2.881,3.201,3.374,3.293,3.433,4.051,4.154,3.075,3.64,2.031,2.799,4.263,1.402,1.441,0.683,2.852,4.911,3.64,4.248,3.394,2.691,2.494,2.711,2.51,3.644,4.073,3.292,4.358,4.219,4.176,5.009,6.122,2.9,0.904,4.022,3.36,3.585,3.525,3.463,3.89,4.172,2.966,3.393,4.146,3.574,3.886,2.807,2.584,3.473,3.719,3.758,4.509,4.188,2.97,5.482,3.96,2.979,3.115,3.356,3.167,3.905,3.835,3.558,3.034,3.842,4.03,5.137,4.654,3.273,2.666,3.996,3.23,3.893,4.657,3.052,2.877,3.318,3.909,3.32,2.757,1.463,4.169,2.678,2.638,3.248,2.966,3.745,0.612,2.927,4.267,3.01,3.785,3.732,3.655,2.955,1.431,1.965,3.541,0.717,2.121,2.813,3.335,3.876,3.698,4.6,3.592,2.274,3.189,3.087,4.128,3.835,4.066,4.422,3.727,3.332,2.296,2.368,2.887,3.295,2.453,2.44,2.949,2.143,4.44,5.725,8.116,3.73,3.473,3.669,2.919,4.115,5.13,6.236,6.389,10.282,7.327,6.543,4.448,4.671,2.715,0.543,2.785,3.096,3.972,2.333,2.751,6.725,3.206,3.802,2.915,0.41,2.108,1.811,2.752,2.615,2.529,3.322,3.694,2.101,2.558,2.767,1.443,1.42,3.657,2.973,3.336,3.675,2.689,1.773,1.993,1.634,1.762,2.482,0.707,3.226,4.167,2.622,0.164,2.252,2.362,3.56,1.315,1.666,1.237,1.636,1.993,1.734,2.132,1.559,1.874,1.732,2.065,2.621,0.148,1.947,1.912,1.654,1.59,1.341,1.433,1.475,1.56,1.4,0.031,1.408,1.458,1.702,2.489,1.996,1.172,1.185,1.095,1.004,0.892,0.849,1.353,1.383,1.479,1.438,1.756,3.673,2.313,1.062,1.004,1.071,1.019,0.992,1.017,0.932,1.239,1.353,1.638,1.463,1.531,1.985,1.955,1.718,1.613,1.123,1.439,0.721,0.742,1.402,1.191,1.342,1.534,1.639,1.106,0.942,1.406,6.651,6.252,3.27,6.024,2.058,2.081,2.672,2.084,2.067,3.235,3.645,7.343,4.847,7.002,6.236,6.776,5.74,5.752,42.386,1.74,2.626,2.687,3.976,1.094,1.522,1.348,1.754,4.214,33.363,3.223,3.121,5.376,3.335,3.719,2.599,1.521,1.855,1.952,2.246,2.202,2.013,2.061,2.422,2.435,2.74,2.739,3.007,3.167,8.127,1.188,0.581,0.785,0.839,0.952,0.836,0.891,1.018,0.942,1.01,0.73,0.609,1.2,0.969,0.971,0.93,0.962,0.949,1.109,0.862,1.21,2.782,1.103,1.158,1.201,0.911,0.94,0.868,0.808,0.86,0.979,1.172,1.19,0.955,1.356,1.27,1.144,1.359,1.962,1.454,1.149,0.956,0.863,1.086,0.861,0.985,1.268,1.11,0.939,1.196,0.626,0.712,0.673,0.9,1.15,1.305,1.237,1.084,1.665,1.098,1.484,1.069,1.201,1.3,0.822,1.236,1.041,1.044,1.664,1.021,1.054,0.871,0.797,1.013,1.013,0.986,0.953,1.055,0.81,0.59,0.77,0.972,0.827,0.86,0.988,1.399,2.199,1.817,0.781,1.104,3.142,3.15,2.65,2.677,3.42,1.813,1.738,2.357,2.306,2.229,2.298,2.042,2.026,2.057,2.119,2.095,2.132,2.096,2.184,3.06,4.149,2.758,7.678,5.981,3.129,1.991,2.287,2.289,5.274,4.621,1.966,1.858,2.774,2.723,2.324,2.109,0.324,1.566,2.482,8.282,2.228,2.471,2.815,2.398,2.167,0.212,5.93,3.114,3.437,3.34,2.779,2.884,9.366,2.535,1.334,1.234,1.603,1.548,1.645,1.673,1.824,1.645,2.032,2.019,0.059,3.294,3.129,1.871,1.577,1.612,1.82,1.81,2.005,2.234,1.515,1.37,1.697,1.653,3.776,2.241,1.429,1.433,1.462,1.941,1.988,1.485,1.688,1.902,1.885,2.457,3.505,0.805,0.195,1.634,4.107,5.692,6.05,2.866,3.237,2.117,1.691,7.198,6.672,2.552,2.761,2.825,3.066,3.129,1.45,1.488,1.584,1.584,3.102,2.325,2.343,3.131,4.218,3.719,3.765,4.134,2.979,2.403,2.473,4.736,4.004,5.297,8.074,16.159,7.104,2.527,2.555,1.707,1.959,2.276,2.236,1.738,1.907,1.923,1.641,2.309,2.08,2.027,4.43,5.477,5.483,3.102,3.241,1.691,1.693,2.243,1.764,1.828,2.052,1.63,1.567,1.64,1.358,1.41,1.385,1.467,1.492,1.459,1.999,1.635,2.041,7.98,3.994,2.121,2.063,1.18,2.339,2.276,3.243,1.719,1.678,3.26,1.788,1.885,1.655,2.063,2.49,2.667,2.551,5.01,5.069,5.041,2.708,2.376,2.151,2.056,1.61,1.478,1.383,1.406,1.353,1.494,1.723,1.921,1.661,1.69,1.626,1.695,1.223,1.269,1.416,1.472,2.106,1.024,1.067,2.912,1.319,1.591,1.201,2.871,1.124,1.262,2.169,1.622,1.517,1.724,2.427,1.185,1.236,1.246,1.189,1.907,1.755,2.081,2.024,1.059,6.2,5.589,2.574,8.601,3.647,3.119,2.773,1.09,2.023,1.02,1.672,1.97,4.288,2.02,1.906,9.978,2.305,2.414,1.716,1.527,0.929,1.737,2.055,1.895,3.469,3.397,1.341,18.125,9.06,8.649,1.272,1.115,1.262,1.13,1.242,1.184,1.249,1.144,1.252,1.171,1.859,1.558,1.118,1.484,0.115,1.317,0.768,3.421,1.309,7.677,7.206,0.762,15.672,8.266,5.828,6.987,1.582,1.642,1.506,2.124,1.527,1.105,2.722,2.524,2.957,2.932,1.43,0.84,1.141,1.05,1.061,0.962,1.005,0.616,0.885,0.816,0.767,0.858,0.678,0.65,1.05,0.677,0.958,0.534,0.639,0.833,0.784,0.902,0.869,0.74,0.615,0.828,1.245,8.335,0.872,1.007,0.86,0.827,0.878,0.905,0.894,0.897,0.864,0.899,0.895,0.855,0.912,0.869,1.291,1.723,8.509,8.008,0.888,1.322,1.308,0.922,0.867,0.907,0.906,0.861,1.23,0.974,1.073,1.847,1.515,0.882,0.882,0.928,0.932,1.689,1.682,3.338,1.654,0.916,0.839,1.217,0.998,1.237,1.29,1.304,1.007,2.361,3.676,1.786,0.903,0.908,0.949,0.774,0.847,0.868,0.93,0.876,0.884,0.865,0.872,0.96,0.836,1.483,0.056,0.348,0.488,0.577,1.003,0.837,0.688,0.695,0.753,0.211,0.141,0.812,0.916,1.022,5.215,1.031,1.384,1.333,1.216,1.336,1.476,0.684,1.058,1.763,0.948,0.992,3.042,9.397,0.213,8.578,5.462,1.3,0.632,0.594,0.661,0.596,0.643,0.574,0.782,0.679,0.898,0.843,0.684,0.618,1.289,0.908,0.824,0.802,0.774,0.781,0.734,2.164,2.398,0.716,0.758,0.967,0.866,0.883,0.826,1.291,0.856,0.909,1.288,1.192,1.033,1.152,0.907,1.01,1.113,0.97,1.151,1.407,5.692,4.026,1.626,0.898,0.945,1.055,0.727,0.856,0.899,0.898,0.855,0.911,0.878,0.921,0.814,1.406,4.418,1.659,0.884,0.869,0.863,0.837,0.94,0.888,0.786,0.769,0.699,0.563,0.756,0.834,0.866,1.745,5.321,2.658,0.862,0.899,0.87,0.893,0.871,0.906,0.892,0.914,0.817,0.441,0.914,0.859,0.914,0.898,0.847,0.885,0.926,0.841,0.873,1.328,0.878,3.166,0.853,0.874,1.288,1.324,0.991,1.204,0.886,0.879,0.891,0.897,1.025,1.157,0.891,0.875,0.874,0.904,0.98,0.778,0.772,0.71,0.249,1.517,1.211,1.933,1.971,1.283,3.4,5.144,4.727,5.226,1.001,1.368,0.529,1.232,1.6,1.622,0.464,1.383,1.96,9.897,2.269,2.288,1.234,1.352,0.454,0.794,1.364,1.156,1.095,0.574,1.441,2.146,2.018,2.063,2.086,8.635,3.156,3.156,2.587,1.926,0.656,9.694,10.819,4.188,4.963,0.489,1.555,1.178,0.783,1.341,1.478,1.381,1.094,1.215,1.147,1.274,1.167,1.314,1.327,0.98,1.179,1.23,0.959,4.828,0.944,1.264,1.496,1.357,1.464,1.408,1.332,1.498,1.49,1.319,1.323,1.041,1.112,1.249,1.44,1.317,1.396,2.409,1.255,4.847,1.878,0.425,2.146,9.788,1.461,1.375,1.281,1.327,1.286,1.336,1.266,1.624,1.636,1.568,1.519,1.477,1.701,1.41,1.602,1.51,1.605,5.541,2.028,2.06,1.635,1.445,1.192,1.365,1.565,1.76,1.622,1.453,1.257,1.34,0.978,1.268,0.43,1.548,2.076,2.176,7.475,4.746,1.149,1.484,1.298,0.917,1.026,11.421,2.796,3.482,10.115,1.389,1.44,1.535,1.547,1.592,1.985,7.66,4.318,12.05,2.123,1.408,1.308,1.679,10.837,1.896,1.55,1.27,1.314,1.874,3.239,6.853,4.115,2.311,2.646,2.621,2.087,2.107,26.364,5.4,2.831,2.324,2.356,2.345,4.848,1.839,2.166,2.366,1.895,1.62,2.058,2.188,1.872,1.774,3.057,7.53,2.131,2.179,1.804,1.755,1.869,0.492,1.539,1.659,1.654,1.245,1.207,0.916,0.94,1.506,0.834,1.495,1.378,2.028,2.824,5.047,1.168,8.102,2.746,1.475,1.124,1.627,1.65,1.395,1.169,1.615,1.382,1.357,1.924,2.579,2.08,1.619,1.334,1.5,1.905,1.991,1.657,1.396,1.713,1.47,1.336,1.447,1.477,1.8,1.49,1.775,0.76,0.629,0.584,0.575,0.669,0.257,0.441,0.664,0.893,0.685,0.777,0.805,0.739,0.71,0.971,0.83,1.091,0.791,1.123,0.841,1.146,0.706,2.058,1.505,0.94,1.217,0.957,1.145,1.337,1.32,1.381,2.494,2.63,2.654,4.153,6.095,7.55,9.476,3.472,3.073,2.866,2.69,2.434,2.309,1.478,1.266,2.036,14.113,4.355,3.603,3.294,3.555,3.445,2.383,2.402,1.703,1.931,3.072,0.766,2.305,3.69,2.268,1.923,8.801,6.983,4.548,3.699,0.095,3.618,3.663,5.819,2.656,2.326,1.908,1.885,1.971,2.893,1.977,0.96,0.922,0.791,0.7,0.748,1.039,0.205,1.259,1.101,2.293,0.582,1.247,4.289,0.404,7.593,4.396,0.824,1.129,1.402,1.246,1.562,1.028,0.742,0.844,0.542,0.366,1.738,0.944,1.017,0.878,1.104,2.033,1.31,0.717,1.052,0.897,1.814,0.23,1.739,2.363,1.584,0.819,1.202,1.059,1.024,1.003,0.953,1.406,0.617,0.747,0.729,1.095,0.89,0.742,0.903,0.226,0.531,0.746,0.917,1.166,2.84,4.687,16.489,4.15,1.941,1.563,2.17,2.085,2.648,2.782,0.002,1.031,2.081,16.91,2.012,2.079,1.378,1.618,0.576,0.8,1.293,0.959,1.217,1.508,1.203,1.209,1.498,1.584,1.19,1.321,1.452,1.413,1.495,1.211,1.747,1.086,2.914,1.898,0.963,0.666,1.259,1.28,1.395,0.764,1.586,1.478,1.365,1.592,1.651,1.584,1.668,1.538,1.877,1.365,1.849,1.917,3.097,2.186,1.717,1.751,1.747,1.677,1.54,1.168,1.917,1.807,4.965,6.286,4.2,0.182,2.574,1.068,1.189,1.466,0.387,0.332,1.724,1.335,1.171,1.396,1.258,1.466,1.228,0.986,0.396,1.031,1.151,1.18,1.345,1.309,1.04,0.92,1.534,1.654,0.802,0.59,1.636,2.415,4.347,2.399,2.354,1.346,1.313,1.922,1.922,4.426,2.418,2.595,8.777,1.25,0.718,1.817,2.027,2.801,6.465,3.635,2.092,0.421,2.492,11.079,0.898,2.223,0.801,0.18,1.343,4.387,1.72,1.071,1.496,1.779,1.641,2.207,1.515,8.914,22.561,8.678,1.726,1.373,1.495,1.454,1.375,1.306,1.322,1.348,1.451,1.35,1.394,2.282,2.863,2.26,2.467,1.895,1.687,1.803,2.049,1.362,1.168,1.694,1.764,1.675,3.113,1.425,1.583,2.111,2.062,1.332,1.845,2.081,2.292,1.631,2.34,1.87,2.061,1.356,1.539,1.797,1.632,1.363,1.475,1.589,1.768,1.602,31.149,5.374,1.768,1.211,1.349,1.382,1.05,1.416,1.007,1.322,1.261,1.263,1.347,1.337,1.268,1.337,1.344,1.157,1.554,1.556,1.186,2.105,3.451,0.994,2.992,1.741,1.629,1.952,1.981,1.642,1.568,1.396,1.045,1.303,1.768,1.682,1.402,1.526,4.124,4.769,1.699,1.147,0.971,1.94,1.852,1.757,1.734,1.013,0.354,1.731,1.369,1.085,0.273,4.527,2.445,3.538,3.368,4.368,8.735,4.527,4.065,3.078,4.784,5.215,3.56,3.727,5.66,5.743,5.583,1.344,1.323,1.002,1.012,1.147,1.282,4.644,1.807,1.679,1.744,0.987,0.873,1.13,0.793,0.706,1.647,1.043,1.265,0.657,0.497,0.816,0.762,0.787,0.869,0.77,0.836,0.839,1.086,1.149,1.003,0.887,1.044,0.932,1.235,1.237,1.081,1.101,1.145,1.302,1.208,1.646,1.366,4.2,8.298,3.983,2.348,1.836,1.551,1.572,1.652,1.485,1.242,1.684,1.128,0.846,1.035,0.982,1.686,1.451,2.198,1.683,3.365,2.705,1.732,1.209,1.218,1.178,1.522,0.859,1.145,0.658,1.391,1.844,3.691,1.777,2.859,3.23,3.227,6.649,4.991,2.207,1.662,1.511,2.33,2.037,4.151,3.753,2.354,1.715,1.806,1.217,1.979,2.858,4.446,3.129,2.606,4.396,0.777,2.595,3.952,3.305,3.501,6.186,1.809,1.626,1.3,1.191,0.846,0.896,0.753,0.631,0.236,1.064,0.699,0.688,0.908,1.062,0.7,0.898,0.889,0.9,0.908,0.706,0.872,0.711,0.602,0.514,0.778,0.803,0.664,0.625,0.918,1.03,0.343,0.57,0.703,0.862,1.466,1.679,1.684,2.846,2.118,2.241,2.572,0.039,1.742,0.97,1.257,0.899,1.902,1.346,1.763,1.165,2.405,2.207,1.605,1.21,1.567,1.727,0.789,1.76,3.878,2.058,8.06,3.259,4.149,3.255,3.616,3.424,3.288,3.191,5.105,1.097,2.751,3.682,4.34,7.716,5.986,3.753,1.45,1.471,1.509,2.004,4.515,1.238,1.351,1.052,1.679,1.395,3.007,1.773,1.578,2.32,4.241,1.076,1.941,1.415,1.227,1.377,0.935,1.644,0.593,0.376,1.687,0.959,0.874,1.304,2.911,4.316,3.273,2.13,3.671,0.801,15.918,3.62,0.892,0.3,1.085,1.337,3.013,11.84,1.913,1.797,1.351,1.117,1.059,1.354,1.468,1.962,4.059,1.39,1.437,1.787,5.423,1.098,0.715,0.649,0.744,0.554,0.444,0.188,0.608,0.827,0.931,0.809,0.869,1.176,1.304,1.022,1.013,0.881,1.012,0.865,0.732,0.72,1.814,1.752,1.887,1.847,1.659,1.163,1.275,1.358,1.458,2.14,1.63,1.945,2.352,7.366,1.261,2.01,1.108,1.065,1.059,1.138,1.881,1.554,1.765,1.744,1.475,3.56,5.661,2.004,1.198,0.894,0.844,0.798,0.887,0.695,0.772,0.791,0.834,0.659,19.227,1.324,0.846,1.209,1.07,1.065,1.19,1.018,0.879,1.045,1.162,1.085,1.24,1.959,0.692,1.401,1.307,1.842,2.017,1.152,4.039,1.959,1.291,0.482,0.66,0.718,1.498,3.494,1.882,2.593,0.43,3.831,4.898,4.271,2.134,1.828,1.768,1.812,1.589,1.496,1.503,1.462,1.359,1.422,0.859,1.172,1.58,1.196,0.868,0.704,0.981,0.837,1.244,1.419,2.804,2.556,3.186,3.331,2.76,2.618,2.955,4.007,3.364,1.934,1.546,0.798,0.866,0.588,0.829,1.269,1.4,2.274,5.563,2.43,2.193,1.309,0.852,0.814,1.124,0.917,0.965,0.654,0.061,0.984,0.839,0.735,0.656,1.017,1.069,1.056,0.956,0.769,1.034,1.191,0.889,1.228,0.919,1.175,1.053,1.15,1.151,1.053,0.485,6.237,0.917,0.721,0.829,0.9,0.832,0.926,1.036,0.89,1.019,5.009,1.135,0.416,0.756,1.17,0.929,0.858,0.798,0.798,0.817,1.074,0.542,0.701,1.039,1.245,1.274,4.52,1.594,1.374,1.492,1.514,1.283,1.788,2.638,1.734,1.433,1.513,0.907,0.645,1.165,1.242,1.127,1.29,1.455,1.503,1.05,1.438,1.795,2.556,1.215,1.576,2.261,1.297,0.39,0.782,0.807,0.876,0.968,0.75,0.686,1.424,0.807,1.031,0.621,0.806,0.69,0.62,0.692,0.699,0.368,0.371,1.336,1.099,2.035,1.636,1.527,1.785,2.079,1.457,0.484,0.601,1.274,0.406,1.588,2.256,1.622,1.377,14.809,1.132,0.885,1.171,2.803,2.497,2.469,1.913,2.226,1.992,2.729,2.419,4.885,2.001,2.998,2.581,2.541,2.723,2.032,2.277,1.883,2.279,1.374,0.936,1.442,1.206,1.291,1.22,0.975,1.597,1.155,1.662,0.926,1.125,0.391,1.316,1.429,3.962,2.66,9.652,6.598,5.062,1.494,1.027,2.028,1.434,1.79,1.753,1.763,2.424,5.196,1.493,1.886,1.401,1.854,0.974,0.717,1.466,0.603,1.508,3.159,2.048,0.857,1.097,1.153,1.096,0.947,1.128,1.178,1.218,1.601,3.901,1.85,1.814,1.112,1.297,1.289,1.114,1.344,1.106,0.834,1.748,1.703,1.455,0.997,0.27,2.265,1.168,1.46,0.953,1.153,1.399,1.51,1.09,1.163,0.742,1.246,1.357,0.755,0.63,0.728,0.812,0.873,1.438,1.693,2.319,2.548,4.151,5.061,3.443,2.879,2.241,1.507,1.001,1.873,1.692,1.044,0.466,0.427,1.548,0.951,1.325,1.029,0.817,1.423,1.26,1.003,0.76,0.543,0.397,0.481,0.916,1.048,1.156,1.44,2.834,1.052,1.12,1.329,1.125,1.225,1.237,1.866,1.161,0.608,2.616,2.833,1.863,2.781,0.879,0.492,4.97,13.42,1.789,0.896,0.624,0.498,1.132,0.27,0.629,0.359,0.27,4.467,3.657,2.214,2.264,1.104,2.884,1.711,2.288,1.6,2.462,2.654,1.247,1.003,1.262,0.441,0.829,0.82,0.053,0.62,0.702,0.564,0.802,0.887,1.023,1.051,1.942,1.175,1.243,0.66,1.004,1.021,0.716,0.77,0.97,0.987,0.901,1.072,0.831,0.772,0.973,1.362,0.764,0.906,1.398,8.578,8.957,1.334,1.193,1.343,1.173,0.854,1.144,0.948,1.179,1.189,1.223,1.613,0.578,0.531,0.491,1.052,1.256,0.959,0.493,0.785,1.272,1.18,1.315,11.145,1.111,1.075,1.279,1.451,1.228,1.664,1.475,1.465,1.861,1.426,1.909,2.68,1.367,1.082,0.819,1.636,1.64,0.824,0.782,1.346,1.122,1.2,0.963,2.016,1.76,1.805,1.634,1.874,1.693,2.591,1.372,1.487,0.969,0.991,1.348,1.304,0.978,1.236,1.65,3.099,1.02,1.432,1.761,1.394,1.634,1.989,1.769,2.122,1.986,2.052,2.732,2.214,2.126,2.277,3.923,2.213,2.654,5.044,5.426,2.745,2.536,4.51,3.042,1.303,1.253,1.04,0.93,1.439,1.031,0.92,0.72,0.801,1.201,2.01,0.914,1.3,1.215,2.062,1.381,1.24,1.126,1.391,0.676,0.705,2.431,2.014,1.661,1.523,1.479,1.52,1.348,1.121,1.185,1.203,1.247,0.8,1.298,0.881,1.107,2.534,4.781,1.505,1.213,1.173,0.372,1.251,1.423,1.321,3.791,1.934,1.646,1.833,2.932,2.172,2.199,2.217,5.009,5.766,2.146,2.153,2.503,1.177,0.757,0.562,1.856,1.322,0.798,0.352,1.452,1.81,1.395,1.485,1.345,1.036,0.647,1.035,1.177,1.638,1.573,1.225,1.252,1.342,2.64,1.257,1.515,1.415,1.262,1.744,1.59,1.73,1.633,1.567,1.376,4.785,1.726,1.805,0.941,1.243,1.221,1.21,1.106,0.729,4.019,4.126,0.961,6.29,3.625,3.073,2.703,2.742,2.734,2.032,1.353,1.354,1.591,1.787,0.707,1.337,1.44,1.422,1.515,2.035,1.316,2.362,1.214,1.03,1.234,0.72,0.794,1.109,1.123,1.086,1.025,0.965,1.009,1.018,0.227,1.21,1.871,2.163,3.347,3.006,0.492,1.171,1.264,1.423,1.96,1.132,1.141,1.386,1.369,1.228,0.379,0.949,1.064,1.21,1.321,1.563,1.336,1.354,2.391,1.847,1.8,1.523,0.939,1.423,2.295,1.818,0.301,2.269,2.686,5.981,2.089,0.953,1.343,1.116,1.613,1.28,2.694,3.019,1.629,0.768,0.2,0.811,1.211,2.933,3.668,1.034,0.47,0.885,1.502,1.793,1.623,1.477,2.2,0.328,1.165,1.702,1.468,1.523,1.101,1.322,1.693,1.203,1.681,1.046,1.268,2.699,5.9,1.557,1.652,1.384,1.502,1.352,1.365,1.359,1.381,1.106,1.111,1.157,1.544,1.492,1.423,2.779,1.468,1.499,1.387,1.455,1.297,1.226,1.379,0.925,0.903,2.305,1.956,0.67,0.969,1.838,1.302,2.298,3.1,4.292,1.257,1.553,1.24,1.261,0.756,1.034,1.165,0.965,1.11,1.245,3.429,7.055,4.943,4.274,2.678,3.599,3.002,3.418,3.28,2.84,1.533,2.637,2.445,1.957,1.639,1.452,1.389,0.83,1.795,4.575,2.139,1.583,1.238,1.463,1.264,1.241,1.239,1.184,1.277,1.212,0.773,1.248,1.256,1.272,1.3,0.887,0.931,1.018,1.231,1.133,1.105,1.325,1.034,0.988,0.994,0.941,1.285,1.62,0.785,0.636,4.857,4.366,4.451,2.846,2.403,1.962,2.019,2.001,0.024,4.835,2.879,1.142,3.292,2.342,1.761,2.798,2.548,1.195,1.978,2.091,2.463,1.977,1.747,1.619,0.956,0.692,1.051,1.227,1.006,1.245,1.185,1.956,1.451,1.498,3.603,2.384,2.561,3.156,2.308,2.192,1.361,1.67,2.797,2.866,3.372,4.238,2.586,3.796,2.334,3.437,2.974,3.723,4.338,29.671,13.801,5.008,0.814,3.254,4.028,18.992,4.126,2.157,2.7,2.566,1.954,1.732,2.765,4.398,5.532,7.465,3.593,1.824,2.237,2.578,4.029,3.092,8.643,16.671,19.415,3.414,4.887,4.784,4.772,4.245,1.996,2.903,1.238,0.52,1.253,1.256,5.128,12.198,8.69,2.006,1.492,3.938,14.252,3.061,3.254,3.355,2.282,2.137,3.226,2.674,4.54,5.18,2.424,1.611,1.975,1.157,2.041,2.715,2.12,2.048,1.66,2.317,2.4,4.393,2.23,7.579,12.747,4.804,4.768,1.774,1.875,1.971,0.762,0.669,1.407,1.394,1.681,1.865,1.063,1.84,13.539,12.852,0.571,3.559,1.784,1.128,1.307,1.122,1.578,1.364,1.346,1.285,1.201,1.552,1.682,1.687,1.481,1.353,1.558,1.21,1.178,1.62,1.336,1.166,1.529,1.296,1.364,1.619,1.026,1.043,1.27,1.032,1.055,2.076,1.901,0.504,5.57,1.596,2.634,2.687,3.713,1.859,1.969,0.774,2.093,1.465,1.133,1.243,1.301,2.184,4.116,6.069,2.538,3.09,6.65,6.054,1.825,5.164,0.258,1.124,1.525,6.006,6.032,4.228,1.741,1.434,3.251,3.361,1.911,2.106,11.246,2.91,3.671,2.848,4.895,4.636,3.391,3.479,2.885,2.582,2.254,1.102,0.05,4.163,3.356,0.102,2.948,4.979,1.337,0.682,0.19,0.937,0.859,0.668,0.604,0.764,0.854,1.329,1.455,1.194,1.387,1.315,0.863,0.748,0.885,1.04,0.919,1.033,1.14,0.846,0.994,1.634,1.163,1.358,1.361,0.971,0.596,0.591,0.822,0.875,0.788,0.71,0.619,0.61,0.616,0.697,1.089,1.065,0.048,3.064,3.223,4.264,5.725,6.568,1.352,1.925,2.45,1.98,2.281,3.037,2.961,1.229,1.711,1.087,1.521,1.497,2.469,3.301,2.59,3.996,2.352,2.534,0.382,1.495,1.633,0.447,1.133,2.116,1.876,0.862,1.344,1.571,1.73,1.483,1.433,1.45,1.595,1.482,1.282,0.996,1.326,2.883,2.7,2.273,3.155,2.814,2.683,2.559,2.813,2.077,2.462,1.73,1.82,2.709,3.374,3.345,6.221,3.728,3.61,3.38,3.681,5.945,3.875,4.759,1.797,1.915,0.005,1.741,9.219,3.034,3.417,8.241,0.942,2.739,3.194,5.026,5.806,4.282,2.776,0.964,1.431,0.675,1.199,1.272,2.755,5.157,3.144,2.988,2.395,1.935,0.037,2.537,1.307,14.438,4.181,4.502,0.422,1.915,0.889,3.128,4.159,3.988,4.647,4.704,2.745,2.461,2.344,2.283,1.441,1.745,1.824,0.644,1.524,1.925,1.746,3.797,2.842,2.508,1.759,1.229,1.732,1.473,3.228,3.01,3.972,2.555,11.457,2.077,1.783,2.278,1.092,4.426,4.518,5.679,3.691,4.167,2.819,0.443,3.458,2.29,0.343,3.088,0.553,2.005,2.3,5.42,2.742,1.326,1.677,1.561,1.114,2.254,1.387,1.31,1.17,1.152,1.358,1.029,1.6,1.08,0.981,1.454,1.658,3.4,7.77,1.154,1.779,1.719,3.483,3.529,2.312,1.77,3.567,17.598,5.898,1.694,1.467,1.415,1.22,0.89,1.628,1.959,1.94,1.941,1.944,1.941,1.941,1.941,1.941,1.942,1.944,1.94,1.892,2.69,3.247,5.49,7.921,2.753,0.426,1.508,2.385,1.389,1.375,1.347,0.947,1.37,1.284,2.089,2.269,1.331,1.256,2.309,1.325,1.779,1.731,1.388,1.23,1.384,1.472,1.906,1.915,4.483,6.123,0.395,4.629,1.707,0.336,1.523,1.34,1.401,1.268,1.768,1.385,1.955,2.287,5.009,0.006,0.062,0.016,0.029,0.596,6.5,20.794,8.308,3.347,3.384,3.449,3.765,14.398,4.352,2.17,1.931,2.552,2.234,2.905,1.582,1.035,7.058,1.917,4.988,0.254,0.035,4.583,4.487,6.176,3.152,1.222,1.579,2.065,1.935,2.348,1.449,1.994,1.96,7.115,4.614,1.575,2.906,1.889,1.214,1.747,1.416,1.37,0.833,1.09,0.816,1.052,2.001,2.253,1.914,3.285,5.053,9.996,1.265,0.897,1.077,1.342,1.203,1.553,2.332,1.67,1.917,2.498,2.946,4.683,1.245,1.799,0.636,1.875,2.78,2.642,2.551,3.011,2.537,2.309,2.962,2.25,1.522,3.53,3.811,3.472,1.689,1.358,1.552,1.209,1.439,2.69,4.403,4.345,2.221,2.593,5.263,1.62,1.065,3.004,2.415,1.646,2.232,2.596,0.109,1.642,0.09,1.062,2.757,2.321,5.31,6.024,2,7.596,2.739,4.006,3.99,10.337,4.12,5.29,3.248,2.495,2.805,3.308,1.126,0.676,2.656,4.82,2.067,2.053,3.572,1.191,1.932,1.562,1.154,1.512,1.973,1.936,1.091,0.509,3.327,4.311,4.457,2.553,5.453,3.351,1.438,1.359,2.662,2.756,1.315,10.051,1.58,1.327,2.093,2.765,4.015,3.922,4.781,4.95,3.203,3.623,3.397,4.574,5.314,2.424,2.086,2.561,3.56,1.652,1.665,1.524,1.566,4.383,0.891,1.615,2.095,1.103,3.031,1.27,2.196,1.976,1.628,3.599,3.099,1.612,3.089,2.164,2.002,1.572,1.796,2.03,1.842,2.325,1.251,0.176,1.299,1.586,1.208,1.392,1.487,0.763,0.785,1.117,0.547,0.681,2.076,0.458,2.026,0.151,1.152,0.563,1.475,1.675,1.494,1.83,1.515,1.497,0.704,2.254,2.885,1.599,1.861,1.587,1.507,1.765,1.612,1.359,1.361,1.385,1.814,1.732,1.495,1.078,3.637,5.512,1.134,0.813,0.748,1.171,1.383,1.854,1.594,1.662,1.591,1.898,1.226,1.246,1.388,1.423,1.64,1.467,3.249,2.04,2.259,2.161,2.233,3.468,2.875,7.54,3.278,9.261,5.065,1.445,2.42,2.164,2.117,1.944,3.069,1.962,1.006,2.107,1.409,1.993,1.833,1.82,3.211,1.636,2.098,1.574,1.618,1.827,4.824,6.253,4.091,4.41,2.907,2.073,1.039,0.839,0.727,1.336,0.447,0.356,0.443,0.35,1.178,1.761,0.871,1.11,2.293,0.971,1.33,0.863,1.563,2.898,2.417,2.317,1.931,4.969,14.543,4.221,2.919,0.044,1.816,3.103,3.139,2.016,1.16,1.173,1.018,2.767,2.666,1.22,0.523,2.287,1.909,1.921,2.458,4.111,1.986,4.098,1.753,3.074,2.242,1.961,0.585,2.976,1.317,1.114,2.004,4.158,4.074,3.005,4.774,3.717,0.217,3.842,3.766,1.098,1.441,4.043,3.617,5.609,1.059,1.873,1.339,1.484,1.188,1.549,1.185,1.291,0.7,0.939,1.858,0.706,1.409,0.903,1.073,1.068,2.336,3.154,7.265,12.443,8.42,11.253,9.345,2.708,1.373,1.861,1.938,1.86,1.691,0.324,0.952,1.997,1.981,1.749,1.692,3.086,1.94,1.766,2.657,3.284,2.204,0.187,2.094,1.682,0.525,1.423,0.647,0.769,0.932,1.041,1.369,1.736,1.371,0.703,0.984,0.894,1.347,1.189,0.053,1.633,1.244,1.323,14.894,0.604,1.278,2.289,1.699,1.018,0.41,2.134,1.522,2.334,1.227,2.2,2.194,1.773,1.324,1.522,1.133,0.395,0.666,2.208,2.641,2.268,0.189,1.078,2.056,1.775,2.605,1.427,1.518,1.856,1.579,0.176,1.685,1.439,1.838,0.713,1.241,3.398,3.195,3.602,1.919,2.531,4.284,4.008,1.281,1.429,1.588,1.796,1.252,1.494,2.185,2.045,4.317,3.739,2.296,7.094,4.087,2.513,1.722,1.268,3.016,3.613,1.782,3.429,4.043,3.435,3.046,5.282,2.54,1.986,1.561,1.283,2.638,1.822,1.561,0.439,2.304,2.219,3.56,56.602,1.258,6,3.6,1.753,1.396,1.67,1.533,2.108,1.832,2.014,2.023,2.562,1.323,1.914,1.801,2.126,2.078,11.762,1.929,1.923,1.578,1.575,1.328,1.489,1.299,1.26,2.518,5.516,1.936,1.891,1.311,1.183,2.857,1.756,1.468,1.666,1.463,1.111,1.143,1.187,1.309,1.456,1.071,1.524,2.865,3.452,3.018,2.544,2.114,1.044,2.023,0.523,2.395,1.331,2.672,4.798,5.657,3.973,5.675,2.415,2.938,3.711,3.269,3.022,4.158,4.466,1.634,1.795,1,6.498,2.985,2.553,2.809,2.571,1.8,1.193,1.232,2.474,2.445,2.153,3.328,4.359,2.567,2.222,2.945,2.25,1.543,1.654,1.266,1.48,0.453,1.805,0.875,1.938,3.527,4.816,0.18,1.841,2.095,1.338,0.897,1.105,1.872,2.747,4.012,3.636,2.667,6.011,3.284,3.426,2.127,7.688,1.234,3.242,2.074,1.565,1.307,4.854,2.442,3.137,7.439,2.64,3.536,2.746,0.56,0.769,3.853,5.622,3.058,2.485,3.409,7.444,6.551,0.961,1.313,2.061,2.333,4.515,0.016,6.956,2.312,2.123,1.37,5.211,2.906,2.151,1.692,0.943,2.002,1.234,2.433,0.583,3.633,0.031,1.654,2.799,2.438,4.506,5.119,0.888,1.643,1.468,1.273,1.197,1.505,1.857,1.652,1.673,1.439,2.031,1.727,3.346,1.608,1.753,1.603,1.459,1.399,0.949,1.031,1.891,1.801,1.028,0.881,1.629,1.538,1.717,1.574,3.439,1.684,1.576,1.739,1.728,1.682,1.587,1.533,1.259,1.205,0.976,1.104,1.053,1.205,1.119,0.854,0.994,1.762,1.263,1.812,0.713,0.647,0.977,2.377,3.324,3.215,1.095,2.124,1.014,0.586,7.3,2.296,1.265,0.475,0.929,0.837,1.603,1.569,1.713,0.615,1.589,1.669,1.346,2.044,1.973,0.83,0.923,1.284,0.382,0.997,1.556,1.283,1.163,1.482,0.865,1.536,1.195,0.961,1.543,1.603,1.49,1.733,1.959,1.377,1.426,1.336,1.824,1.108,2.025,1.805,1.439,1.255,1.434,1.114,1.664,6.711,1.167,1.696,1.02,0.82,2.517,1.179,1.5,1.496,1.201,1.64,0.986,1.324,10.422,3.985,1.836,3.07,1.258,5.195,1.03,3.235,1.627,3.624,7.273,2.378,1.498,2.374,0.892,2.851,2.777,1.296,1.113,6.97,4.369,8.366,4.548,3.404,0.479,2.918,2.326,2.498,2.532,7.568,0.242,5.459,3.947,2.127,3.86,2.997,3.321,0.172,3.183,2.861,2.658,4.683,2.246,2.002,3.259,2.217,2.534,2.624,2.32,1.689,3.41,2.84,2.355,1.662,1.332,2.089,1.383,1.03,1.034,1.662,1.319,1.566,1.358,1.788,2.533,2.712,6.846,7.953,2.252,2.146,1.746,1.829,0.817,0.928,1.557,2.992,3.024,3.346,3.264,3.536,2.948,2.18,0.674,1.218,1.033,2.419,23.642,9.522,1.133,3.046,1.56,1.509,1.718,2.614,3.105,0.831,0.659,1.215,2.466,3.981,3.679,2.946,2.475,2.454,1.689,1.5,6.669,8.257,1.967,3.191,3.038,2.733,5.649,5.349,2.35,1.858,3.376,3.058,2.65,4.964,4.398,4.347,2.36,2.63,2.057,3.045,2.066,1.856,1.078,1.182,1.466,1.077,2.325,1.207,1.295,2.278,2.09,4.424,4.456,3.93,1.885,0.482,3.561,3.74,5.877,1.492,0.457,4.965,7.515,3.878,3.822,2.266,1.511,2.768,3.182,1.815,0.662,1.387,1.752,1.477,1.9,1.992,4.414,1.894,0.25,4.078,10.229,16.817,3.065,2.658,2.67,2.387,2.076,2.054,1.326,2.723,1.839,1.766,1.434,5.396,3.705,1.505,1.067,1.407,1.431,2.105,1.81,1.1,1.03,1.473,2.841,2.496,1.021,1.271,8.67,2.823,1.282,2.113,0.861,1.378,3.965,3.02,1.424,1.614,1.755,2.052,1.712,1.446,1.476,1.633,1.632,0.206,1.506,1.541,1.565,2.042,2.186,2.722,2.287,2.14,2.798,2.21,1.949,3.038,3.279,5.797,1.148,1.607,2.737,1.366,0.696,0.364,1.093,0.82,2.665,3.332,3.19,1.714,1.486,5.878,1.579,8.013,1.367,1.187,1.479,1.236,1.495,1.186,1.067,1.308,1.918,0.996,0.639,2.477,1.538,1.503,2.092,2.09,1.441,1.385,1.805,2.574,1.359,1.475,2.368,1.94,1.123,1.385,2.335,2.179,1.875,2.048,2.147,3.78,2.812,2.667,4.231,9.875,21.799,3.018,2.788,4.851,1.13,1.034,1.546,1.145,1.224,1.426,1.797,0.888,2.575,2.184,2.356,6.774,2.041,3.138,2.863,0.795,1.174,1.219,1.03,1.216,1.417,1.352,1.126,0.983,1.737,1.855,1.58,1.066,1.06,1.239,0.978,0.979,1.199,2.259,1.852,3.06,0.594,0.7,2.288,2.271,2.452,3.617,0.199,2.131,2.2,0.654,2.708,2.743,3.559,3.315,4.451,2.325,2.129,1.935,2.142,1.494,3.592,1.368,1.9,2.534,1.653,4.59,1.791,2.13,1.823,1.341,1.637,1.919,2.676,1.65,1.547,1.295,3.046,0.934,1.103,2.767,0.264,0.009,0.744,1.012,1.713,0.731,0.806,0.873,0.706,0.994,3.475,4.749,7.438,0.695,0.533,1.033,1.683,2.016,1.017,0.834,0.917,0.876,1.029,1.205,0.023,1.645,1.298,0.022,6.966,4.349,3.741,3.228,1.721,2.582,1.769,1.182,1.653,1.698,1.644,1.457,1.007,0.815,0.862,0.843,0.434,1.801,0.754,2.118,2.182,1.718,1.711,1.588,3.409,4.266,3.602,2.031,1.357,1.161,1.708,1.049,0.848,1.876,1.001,0.988,1.792,0.406,1.052,0.942,0.815,0.889,0.961,1.196,0.897,1.007,0.989,1.104,1.054,1.075,0.999,1.052,0.661,1.904,1.131,0.7,0.006,0.272,1.58,2.618,1.128,2.681,2.672,2.643,0.432,2.77,2.36,2.586,1.963,0.62,3.807,1.729,2.164,3.305,2.388,0.384,0.508,0.508,0.721,2.225,0.619,2.939,2.441,2.648,0.531,5.031,2.336,1.767,1.763,1.196,0.531,8.797,1.836,2.297,0.807,0.927,0.786,1.966,1.123,0.872,0.964,2.159,1.216,1.043,1.122,1.292,1.606,3.005,3.417,2.671,0.759,0.759,0.761,0.759,0.76,0.931,1.483,1.649,1.148,2.039,1.841,2.089,1.986,1.321,1.138,1.757,2.51,1.238,1.242,1.457,1.643,1.621,1.362,1.092,1.046,2.815,2.177,0.102,1.117,1.816,1.435,1.538,3.565,3.158,3.329,3.126,2.705,2.995,2.425,2.911,3.567,4.875,2.787,2.948,5.021,3.4,1.431,0.914,0.775,1.002,1.107,1.14,0.961,1.008,0.943,1.034,0.846,0.919,1.119,0.798,0.678,0.914,1.049,0.886,0.782,0.523,0.691,1.83,0.815,2.629,1.552,1.096,0.242,0.898,1.063,0.984,1.226,0.559,0.604,0.58,0.702,0.701,1.013,0.856,3.016,2.896,8.971,6.959,4.08,1.027,0.871,0.931,1.044,0.932,1.273,0.889,0.936,0.84,0.547,0.231,0.827,0.725,0.645,0.815,0.521,0.445,2.737,2.458,0.617,0.25,0.289,1.007,1.592,1.564,1.326,1.299,2.428,1.983,1.668,1.524,1.27,1.255,1.537,1.162,1.698,1.359,0.031,3.836,5.926,2.962,3.027,7.203,0.234,0.727,0.733,0.377,6.625,6.953,0.508,1.016,3.195,4.637,0.621,0.962,1.309,1.182,1.507,0.871,1.084,1.213,1.605,1.189,3.938,2.603,0.623,5.626,0.078,2.993,3.014,5.999,1.76,0.006,0.668,1.066,0.542,1.688,1.18,0.564,1.406,1.196,1.248,1.596,1.743,2.673,2.495,0.091,1.597,3.905,2.92,0.608,0.202,1.726,4.178,1.864,4.375,6.547,8.625,2.836,1.872,1.478,1.368,16.234,2.202,2.36,3.485,0.831,0.894,0.998,1.286,0.768,0.979,1.435,5.504,1.699,2.52,4.508,1.705,1.659,1.573,1.375,1.321,3.705,0.832,1.084,0.912,1.191,0.926,1.013,2.194,1.968,1.77,1.47,2.121,2.662,0.623,3.84,2.055,1.497,1.634,1.104,2.026,2.367,1.861,2.143,3.469,4.248,2.783,3.962,0.758,3.021,0.807,0.806,1.629,1.925,2.391,2.451,2.389,3.184,0.515,1.968,2.001,1.579,1.44,1.149,0.962,0.968,1.675,0.402,1.066,1.604,1.778,5.962,1.267,0.657,0.692,0.655,0.926,0.616,0.832,0.705,0.184,1.018,0.055,1.228,1.646,1.782,2.85,3.078,1.931,1.681,1.904,6.91,2.431,2.337,5.541,1.841,2.456,3.218,2.404,5.383,1.656,1.467,6.578,3.358,1.484,1.902,5.273,1.289,2.091,5.307,1.893,3.411,2.422,3.523,2.127,1.48,1.536,0.718,1.537,4.329,3.486,2.567,6.463,2.446,3.2,2.167,2.145,3.918,0.992,1.829,1.89,5.187,1.069,0.977,0.871,0.902,1.207,0.727,0.846,3.495,3.117,2.223,1.142,0.646,0.716,0.809,0.934,0.826,0.913,0.994,3.391,2.726,2.867,2.823,3.682,0.873,1.014,2.044,0.883,0.871,0.871,1.296,0.94,0.777,0.64,0.838,0.681,0.782,5.26,8.389,8.961,1.422,1.673,1.327,1.023,7.883,0.961,2.436,1.406,1.879,0.981,0.281,0.283,2.618,0.576,1.432,1.529,0.632,2.634,1.452,0.643,0.676,0.689,0.581,1.939,0.558,0.643,0.732,2.703,3.799,0.474,1.815,1.011,1.378,2.999,1.541,1.33,0.811,2.931,1.262,0.447,4.664,0.453,5.078,0.992,1.93,0.64,0.665,0.66,0.616,0.45,0.599,2.768,2.279,4.964,1.622,1.671,4.355,4.766,0.977,1.883,1.241,1.165,0.938,0.266,0.375,4.953,1.688,0.859,1.708,3.952,0.922,0.297,1.211,2.617,2.878,2.24,2.805,4.096,0.749,0.545,0.424,0.437,0.815,0.551,0.734,0.721,0.677,1.185,4.872,1.758,0.522,0.616,0.658,0.313,0.359,0.817,0.654,0.659,0.615,0.679,0.724,2.965,3.005,1.489,1.855,0.768,0.691,0.702,0.671,2.965,3.875,2.156,3.056,1.055,0.79,0.775,1.676,5.035,2.504,0.729,0.73,0.718,0.659,0.616,0.665,0.667,0.695,0.848,0.689,0.679,0.638,0.596,0.626,0.614,0.461,0.152,0.527,0.528,2.094,1.745,0.313,0.614,0.65,0.9,0.848,0.62,0.568,0.604,0.63,0.625,0.618,0.794,0.809,1.866,2.686,2.788,4.426,0.725,0.676,0.57,0.651,0.649,0.614,0.472,0.678,0.726,1.316,2.281,1.537,1.257,0.267,0.968,0.779,1.587,1.781,2.42,0.725,0.674,0.618,0.534,0.948,2.12,3.318,1.879,1.009,0.92,1.177,1.436,1.304,0.2,16.523,4.922,1.553,1.13,1.169,2.791,1.277,1.731,1.27,1.345,1.114,0.782,0.99,1.64,0.487,0.432,0.599,0.58,0.726,4.572,1.521,0.711,0.834,0.658,0.921,1.421,0.674,0.955,1.295,1.102,1.573,1.472,1.657,0.558,0.853,1.221,1.535,1.675,0.777,0.906,0.987,1.209,0.845,1.606,0.947,1.098,1.103,1.436,1.062,1.903,1.045,1.207,0.714,1.536,1.148,2.949,1.451,0.756,1.124,1.018,0.815,1.068,1.354,1.004,1.121,1.711,1.101,1.155,1.169,1.403,1.315,1.139,1.39,0.898,1.673,5.9,4.192,4.336,1.854,2.419,2.055,1.465,1.252,2.508,0.962,0.893,1.144,1.028,1.623,1.858,1.749,4.73,4.051,4.898,1.909,1.559,2.39,4.256,2.131,1.686,1.625,1.006,0.934,1.688,1.925,1.902,1.908,1.743,1.359,1.431,1.799,1.23,1.832,1.282,1.306,1.535,2.101,1.414,1.392,1.401,1.428,1.307,1.401,1.432,1.597,1.231,1.737,1.841,1.384,0.959,0.709,0.706,1.831,1.571,2.453,1.239,1.048,1.412,1.969,2.2,1.815,1.459,1.554,2.956,2.358,2.559,4.569,4.764,1.586,0.961,1.014,1.22,1.326,1.26,0.911,0.918,0.832,1.094,1.343,3.341,2.911,2.569,1.95,1.634,1.554,1.175,1.059,1.131,0.911,1.014,1.171,1.152,1.243,1.743,1.169,1.423,1.244,0.938,1.248,1.469,1.687,1.127,0.946,0.926,1.727,2.585,2.401,17.338,1.669,1.063,1.203,0.713,1.626,0.918,1.013,0.6,1.593,1.212,1.466,1.369,0.866,1.491,1.932,0.125,0.543,4.285,2.831,3.989,0.039,1.398,1.668,24.658,2.829,1.626,1.463,1.583,1.569,2.498,1.26,1.369,0.993,1.217,1.051,1.408,0.81,1.154,1.485,1.687,1.371,0.039,0.367,3.926,3.077,1.683,1.33,1.634,1.532,2.483,5.004,1.059,0.693,0.554,0.545,0.785,0.913,0.764,0.528,1.042,0.922,0.715,0.618,0.931,0.862,0.872,0.747,0.933,1.001,2.179,1.373,0.625,0.521,0.831,0.776,0.819,0.894,1.121,1.072,0.719,0.693,0.723,0.712,0.793,0.81,1.298,0.983,0.757,0.673,0.72,0.791,0.632,0.9,0.319,0.416,0.756,0.98,1.212,29.619,1.616,1.55,0.855,0.62,0.537,0.567,0.646,0.731,0.464,2.464,2.973,2.578,2.852,1.808,1.422,1.151,0.897,1.079,1.051,1.008,0.835,1.118,0.679,0.656,0.905,0.679,1.102,1.113,3.31,1.907,0.9,0.654,0.806,0.906,1.051,0.977,1.031,1.195,1.33,1.55,1.995,1.694,1.361,1.462,1.143,0.748,0.674,0.539,1.824,1.9,2.239,1.982,4.099,7.455,1.934,1.761,1.822,1.392,1.615,1.396,1.384,1.236,1.113,0.907,0.989,0.959,0.967,0.979,1.201,1.106,1.557,1.722,4.733,1.633,2.991,0.892,1.836,1.018,1.131,0.998,1.141,1.08,1.148,0.843,2.444,2.528,1.786,1.755,1.045,1.157,0.978,1.135,1.101,1.309,1.261,1.432,1.92,2.804,1.507,0.811,0.949,0.913,1.132,1.069,1.184,2.414,2.681,3.49,4.242,1.483,0.996,0.813,0.678,0.761,0.735,0.915,0.944,0.896,0.927,0.99,0.977,1.12,1.808,2.849,1.196,0.904,1.037,1.063,1.014,0.871,0.81,0.597,0.45,2.003,2.13,3.212,1.968,0.297,10.694,2.164,0.349,1.677,0.759,1.146,2.103,3.549,1.183,2.004,1.831,0.951,2.202,3.676,2.667,2.918,1.397,1.484,1.432,2.557,2.935,2.872,1.364,1.687,1.781,1.462,2.022,3.571,3.342,2.493,1.203,1.141,4.465,19.339,7.509,3.612,2.353,1.198,3.316,2.137,11.758,2.326,4.515,3.456,0.971,4.328,7.968,9.196,4.72,3.593,3.807,15.716,7.015,1.487,6.211,2.492,8.53,5.554,4.635,6.34,5.816,27.352,1.602,3.875,1.254,1.264,2.227,2.017,1.041,1.057,4.023,1.511,1.764,4.503,12.174,2.538,1.772,1.505,1.033,1.229,1.782,1.434,1.156,1.06,0.902,1.842,1.603,3.824,0.601,0.692,1.009,0.911,0.685,0.638,1.274,1.467,0.781,0.036,1.362,1.59,1.705,2.352,3.432,2.67,3.581,1.322,0.932,0.698,0.809,1.048,0.867,0.004,1.079,1.425,10.166,1.864,2.109,1.974,1.588,1.836,2.116,3.634,2.892,2.708,2.749,2.952,7.889,1.125,1.23,1.207,1.072,1.616,1.45,1.4,1.464,1.555,1.655,13.727,2.375,3.135,1.099,1.109,0.993,1.01,1.856,1.375,1.74,1.763,1.761,1.842,1.682,1.156,2.82,0.602,0.571,0.771,0.943,1.471,6.772,1.814,1.297,1.506,2.109,1.294,2.73,5.392,3.799,1.069,1.319,0.602,1.845,2.147,2.525,2.081,2.176,0.424,1.836,9.2,2.615,1.981,1.195,2.14,1.323,3.464,1.683,0.779,1.417,2.467,2.69,2.674,1.267,6.872,5.641,3.908,1.424,1.206,0.625,1.43,1.314,1.525,2.865,7.314,0.977,6.335,1.9,1.273,2.719,0.945,2.352,0.172,0.998,3.756,3.775,1.604,1.639,3.721,2.436,2.445,8.695,5.313,4.628,0.759,0.954,1.087,1.221,1.211,1.178,0.871,1.073,17.779,3.145,0.875,1.35,2.138,1.645,2.48,2.025,7.767,5.126,2.814,3.997,3.037,2.07,2.939,1.464,11.374,29.773,7.584,7.278,5.467,15.065,2.81,0.398,9.454,5.363,6.823,11.157,7.21,3.874,3.765,4.713,0.28,4.562,6.35,3.904,3.182,3.54,2.671,2.949,2.617,3.039,21.123,3.523,3.322,4.917,3.085,3.755,3.188,4.883,4.423,3.418,3.51,4.572,4.109,4.377,13.44,1.567,2.953,2.85,1.414,0.17,2.211,1.616,0.401,1.393,0.49,0.031,9.026,1.27,5.696,1.661,3.416,3.391,2.095,2.105,1.855,1.3,1.383,1.643,1.149,1.655,1.146,1.173,0.907,2.422,1.29,1.151,1.401,1.44,1.428,1.488,1.455,3.379,33.783,9.43,13.242,10.578,0.32,1.945,0.149,0.14,0.906,4.92,2.173,0.602,1.422,7.174,25.647,11.863,10.344,21.308,19.207,9.969,10.173,1.159,1.055,5.748,4.524,9.768,11.864,9.456,1.52,3.865,17.356,1.081,1.083,4.152,9.067,8.6,4.346,6.592,8.131,10.533,20.788,0.656,1.062,9.286,11.011,9.082,4.633,1.519,8.255,8.376,2.74,2.413,2.858,2.099,2.228,0.068,3.377,2.893,2.562,2.494,1.865,3.464,1.673,5.285,4.748,5.55,1.032,0.562,19.127,5.03,3.82,4.26,2.021,3.281,0.25,5.797,1.528,2.66,3.727,3.125,1.63,0.335,3.543,0.247,5.297,0.563,1.251,1.342,2.049,1.68,1.607,1.313,1.101,1.277,0.683,0.694,1.308,1.306,1.15,1.345,0.99,1.604,1.754,1.718,2.865,2.094,2.04,1.932,2.168,2.521,2.053,2.345,3.437,3.386,10.338,16.83,21.718,5.484,10.393,15.079,6.195,3.699,1.864,2.006,2.384,2.213,2.473,1.037,2.765,16.455,13.482,3.482,18.83,14.034,5.339,1.057,1.374,0.769,2.962,1.664,2.748,2.473,1.798,1.791,1.563,3.604,11.242,6.023,3.42,2.48,2.58,5.021,4.623,4.369,11.382,6.878,6.278,15.503,3.967,2.369,3.29,2.457,3.065,2.903,3.52,2.013,1.665,2.143,2.543,4.703,7.65,7.138,7.321,14.062,41.562,3.39,1.142,1.659,1.169,0.863,1.42,1.876,1.316,1.534,1.625,1.903,2.009,1.79,3.58,9.195,1.396,1.246,1.516,1.346,1.272,1.002,1.623,1.51,1.944,5.409,7.545,4.983,2.415,0.257,12.981,13.958,5.917,4.851,3.467,6.56,3.19,3.036,1.469,1.101,5.023,4.591,3.995,3.799,4.021,18.516,10.301,13.145,10.144,14.743,15.228,17.481,2.008,5.379,1.616,7.526,9.054,43.709,13.225,7.662,20.688,12.845,14.338,20.851,3.938,2.381,2.419,13.316,3.828,6.087,4.475,13.619,0.002,15.606,25.898,8.032,11.1,6.696,0.359,4.732,4.893,6.343,3.162,3.083,3.702,4.423,6.056,3.926,14.189,11.491,14.375,7.296,3.408,3.498,4.794,4.918,5.063,5.015,6.656,4.063,4.15,3.553,3.946,8.624,35.749,1.112,0.117,36.451,9.508,7.614,9.551,8.198,14.57,10.951,1.828,5.837,5.948,2.611,2.65,2.723,1.339,2.697,2.159,0.392,13.525,4.794,7.734,15.522,4.682,4.665,9.299,6.494,5.619,2.049,0.578,5.465,4.668,6.645,4.308,3.65,3.277,11.901,11.974,19.088,2.828,2.438,2.945,1.438,6.625,2.055,1.914,11.043,4.368,8.553,16.792,10.413,6.478,8.375,4.078,2.218,18.897,0.901,1.131,1.822,0.898,2.444,3.39,2.404,2.403,2.549,1.529,0.477,16.181,5.48,3.804,1.636,2.913,2.932,3.213,3.063,6.559,2.299,0.046,1.179,6.283,2.516,2.356,1.83,1.42,2.727,5.73,7.076,7.172,3.814,2.996,7.066,10.195,14.115,6.126,6.147,5.912,10.142,10.395,3.823,11.55,10.427,10.415,16.299,6.004,5.886,3.676,3.656,4.892,4.56,16.753,9.412,9.654,10.313,9.545,5.519,5.342,5.682,4.806,22.704,3.411,2.586,4.312,4.896,14.806,14.224,21.479,3.527,20.843,18.251,5.749,6.454,3.112,3.588,15.432,10.519,5.262,5.563,2.539,3.347,4.852,3.957,1.282,3.898,0.953,8.091,3.389,5.876,8.861,9.038,6.758,17.126,12.896,6.001,4.271,2.539,1.43,5.056,5.749,4.221,35.162,17.28,2.931,4.025,8.532,3.076,5.533,4.342,0.305,1.375,5.145,5.261,0.93,3.04,5.109,5.965,2.771,3.842,2.865,4.8,4.365,2.806,4.342,4.693,7.043,8.648,1.607,2.188,0.439,1.735,1.047,1.797,2.931,2.718,2.243,5.145,0.075,5.1,4.946,7.394,11.273,12.297,7.516,7.672,5.452,5.697,13.743,17.015,3.834,3.043,3.314,2.262,1.539,12.609,1.34,5.957,0.884,0.821,0.867,0.786,7.055,15.44,2.938,2.439,3.095,0.25,1.848,3.754,6.836,2.781,0.772,3.235,2.328,4.453,2.478,1.076,2.087,1.738,2.143,5.825,1.234,2.34,1.543,0.344,0.753,0.763,0.764,0.755,0.759,0.761,0.482,0.447,0.638,0.633,0.634,0.323,0.63,0.623,0.642,0.641,0.342,0.387,0.624,0.809,0.522,0.146,0.202,0.121,0.125,0.19,1.728,0.433,5.956,7.516,2.869,1.649,2.075,3.446,1.912,1.822,1.546,2.858,1.419,3.28,2.489,17.532,3.417,5.398,4.586,29.474,6.219,0.266,0.617,1.578,0.662,0.506,1.851,1.522,2.369,5.211,0.633,1.313,4.034,5.488,2.234,2.683,13.996,5.93,4.894,3.063,1.075,0.906,0.161,1.747,0.917,0.664,1.019,1.019,6.879,10.117,0.013,14.041,2.398,1.355,0.04,0.117,2.229,1.43,4.856,2.569,3.558,2.617,4.426,4.868,1.831,1.66,8.109,10.96,1.589,2.078,0.537,1.189,1.157,21.602,2.945,3.93,1.655,4.035,1.736,0.719,12.2,0.761,7.922,3.023,1.156,5.797,3.14,0.829,4.117,3.096,2.101,2.348,2.484,11.693,25.711,0.827,6.136,3.054,16.358,7.203,16.569,3.007,1.313,2.405,3.394,0.152,0.326,1.385,3.086,28.941,0.968,6.988,17.429,1.749,4.421,22.673,0.436,3.023,10.601,5.88,0.854,2.161,1.313,0.542,0.516,2.46,0.693,0.687,0.903,0.734,0.79,1.114,0.609,0.6,0.644,0.694,0.723,0.698,0.687,0.688,0.463,0.533,0.371,0.434,0.485,0.694,0.07,0.381,0.424,0.632,0.441,0.481,0.468,0.858,0.659,0.629,0.916,0.868,0.799,27.489,1.71,3.085,16.805,2.109,8.896,4.327,3.305,8.406,6.218,13.46,1.711,5.173,3.468,7.656,0.222,7.091,0.569,0.788,2.389,5.208,0.339,1.733,0.456,0.707,1.651,8.828,0.723,3.598,3.621,2.667,5.609,6.021,1.157,10.245,11.835,13.667,1.53,1.475,0.349,2.426,4.906,0.346,1.085,0.978,1.245,2.809,0.584,0.338,1.411,1.353,5.248,6.483,4.929,0.938,21.621,6.445,3.007,2.425,2.91,0.301,0.447,1.017,3.521,6.757,21.148,0.905,2.82,17.194,0.722,2.671,11.093,28.327,4.327,9.222,5.72,1.262,0.472,0.309,0.62,3.317,10.804,4.027,5.046,1.202,17.539,1.422,1.577,2.21]},"incidents":[{"id":"17965439984674256","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-23T07:10:00Z","end_time":"2023-10-28T07:10:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 163 y 155,156 N-122","long_description":"Obras de construcción en la Hacia el este A-62 entre 163 y 155,156 N-122.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":6651,"south":41.458908,"west":-5.078611,"north":41.497512,"east":-5.021798,"congestion":{"value":101},"geometry_index_start":5295,"geometry_index_end":5344,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"2172616635993489","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:05:00Z","end_time":"2023-10-25T12:05:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"A-62: obras de construcción entre 14 N-620A y BU-30 5","long_description":"Obras de construcción en la Hacia el este A-62 entre 14 N-620A y BU-30 5.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":1103,"south":42.306003,"west":-3.797653,"north":42.307323,"east":-3.784382,"congestion":{"value":101},"geometry_index_start":7526,"geometry_index_end":7540,"affected_road_names":["A-62/E 80/Autovía de Castilla"],"affected_road_names_unknown":["A-62/E 80/Autovía de Castilla"]},{"id":"11395404330211866","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:41:00Z","end_time":"2023-10-25T12:41:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción en 3 N-I","long_description":"Obras de construcción en la Hacia el este AP-1 en 3 N-I.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":33,"south":42.544986,"west":-3.291532,"north":42.545188,"east":-3.291242,"congestion":{"value":101},"geometry_index_start":8738,"geometry_index_end":8740,"affected_road_names":["AP-1/E 05/E 80/Autopista del Norte"],"affected_road_names_unknown":["AP-1/E 05/E 80/Autopista del Norte"]},{"id":"11127683043770410","type":"construction","creation_time":"2023-10-25T09:10:30Z","start_time":"2023-10-25T06:48:00Z","end_time":"2023-10-25T12:48:00Z","iso_3166_1_alpha2":"ES","iso_3166_1_alpha3":"ESP","description":"AP-1: obras de construcción en Ameyugo","long_description":"Obras de construcción en la Hacia el este AP-1 en Ameyugo.","impact":"low","alertc_codes":[701],"traffic_codes":{"incident_primary_code":701},"lanes_blocked":[],"length":3014,"south":42.622596,"west":-3.115016,"north":42.641849,"east":-3.094671,"congestion":{"value":101},"geometry_index_start":9036,"geometry_index_end":9093,"affected_road_names":["AP-1/E 05/E 80/Autopista del Norte","AP-1/E 05/E 80/Túnel de San Nicolás","AP-1/E 05/E 80/Túnel de Barrio"],"affected_road_names_unknown":["AP-1/E 05/E 80/Autopista del Norte","AP-1/E 05/E 80/Túnel de San Nicolás","AP-1/E 05/E 80/Túnel de Barrio"]}],"admins":[{"iso_3166_1_alpha3":"PRT","iso_3166_1":"PT"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"ESP","iso_3166_1":"ES"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"FRA","iso_3166_1":"FR"},{"iso_3166_1_alpha3":"ITA","iso_3166_1":"IT"},{"iso_3166_1_alpha3":"ITA","iso_3166_1":"IT"},{"iso_3166_1_alpha3":"ITA","iso_3166_1":"IT"}],"via_waypoints":[]}],"geometry":"eds{bBmk_jH`MvNtz@l`AwLph@{v@ifA{Tk\\u[k_@_VcYrAqFPw@bFiSVuAz@cEL_ALyAtBwJP_BXoBdGeXhBeIP{@xEaRFYVgAd@mBiMcFmQuGyuA}i@u@m@_@e@_@q@c@oA]sAa@aCSmAoAyHhGsIjB{BrAoArB}AhAm@jAWpCYrM@fBItAWtBk@bB{@hAeA|@kAzA_C~HoMxCwGxBqE|@qBlOa]pq@i~AnPm^dJcR`L_TzFiL~@sBpHeOrBeErCoGxEyHlAwC~@aD~@}Dl@eFzBoLzAcJxBoJbMgh@hDsJnFaUbDqHr@iApBsBhAa@dAEbBrAjBvBnVz`@xEnIvHpOfBfD|AtCdCrErGlLbH`PhE`LfCzGbB~C~@xA|EtH~HhYzq@~dCnEzVj@|BzBhJnGvRzGxSl@bB`ApCvCnG~A`DxBdDhJbKbBnBdApAb@^fAn@RBXBV@`CUlAy@|@yAhLkUhBoDvAsBfAqAlAiAzCwBnn@uZtFkCdDoCl`Aef@fEqDrGeDhEq@rf@wXzEwBjFcCbFkCxWgMdCsAnIeEjC_B`q@{\\|Ao@fJaEzAy@~ZaOrTkK`GsCz@a@bBy@|DkBXOVOvAs@jBcA|Aw@dSkKfNaHl@]t@a@nCsA`PeIlEyBzAw@jXsMjk@eZtAu@z@c@xDkBtDoBpv@o`@hAk@nCqAtAm@VMTMtAs@tBeAn\\uPrU{KdAe@nAq@`DiB~CoBrAo@|b@qTvMkGdw@}`@dZ_O`TuLhAk@rAs@dF{ClDeB`Ag@|t@w^vh@oWrEeCpFcEdFgGzAqCjd@caAtJ}Sh@gAvDcIrCoFl@oA`^qs@lB}CrAwBl@eA~AmC|FuIbE}GtGcK~To[lC}FfCqEtJoLpFkGp@o@zAyAvCoCrHmGzDmF`AuB|@_Er@yHBoHCwEEwJq@oIoAkNcFyt@kB{TUuCu@oJuHegA?Cw@iQY}SP}OdAoRh@_HlB{M~E}VfFgQjFwNtNmX`w@}pA`NyTrWgc@rpEusH`FkIp[}j@r`Ci{DhVq_@fN_SrNmS~E_CxQkXvKcQhe@ex@nAuBxBkA`BF~BfAnEhEbGvEvF`D~EjBpGpAlI`AhKf@pUS|CHlIfAlErAtIxFjEzDrFzGpEhIxB`EnB|E`QtYv[zjAtIt\\x~@nxDdo@bkCbsAhtFv\\ntAjUx_AtZrpAre@hoBdB|`@pErU~F|ZhQp~@vCpPxIvl@`Fje@~BtV`B~Td@nTMxM{@vXeDf]eGd^gMno@_CpPw@|Lm@nMQjJIpKPjNf@rKjAhMbB|M`DbOtDhMtDnKjDhH|DjGjDbG~IrHpKjH~ErBhItB~JjApKInOuBpIyDtL_JfOcR`PiZhHaPpHaNtOiYpIyKlGmEhQyQnJuHvK{HtLsH`IiDvIaDrHmBdQmDfa@oJd^mK~YwJhWcLrWuKvx@ib@znAct@x^kXh`@mX``@m_@nmCouCl_C_iCvcAyiAdPuQfmBwuBzpCavCjxB}|B`ZuZxhAwjAlc@}d@peB_jBn\\}^|^__@nWwVfx@ys@nu@un@`y@sp@lp@si@tdDknCdxAokAvwAkmAnbCynB~oCk~BzXmUnf@q`@nfBcxAdy@mj@`eAaq@tbDspBzdAcn@hg@m_@|a@aZbNcKhIgGvpBexAzVmPr|Ai~@rjBc_Ar{Akm@btBiu@v@Yh_B}m@ns@q\\ziAio@xpA{u@lgAyk@rs@e]pDyAhgA_d@XMtJ_E\\Ojk@{Rrk@sQ|fA}WrmAu]tcF_vAdrG_jB`bAu]vy@e\\bhGepCf_EiiBx[uNx}FulCnzAsx@z^eVrwBkyAzlAeaAloCwfCbdAcw@jr@id@|sAun@fHqCf[sLpd@iOvgA}Uz`@uGpXwCl~@gIpx@wAjfDhAvnErB|rFbBbfFp@`I@hsSqHl~G`KjgGfFvFDdLJnyAjCtaCAdnB}GbcCuJrt@wCjfHuU|FKlIQ~FGn[]neA}@hICdRI`j@i@|i@kBv|@kDxy@uPxXsF|OyDhO{DpYkIfYaJrRaHbRcIfRiIrXoMlQgJfMgHxOuIhSuLbi@c\\r[kS`XwPrVeSlQsLtc@g[pQyLn{AgcAraAop@hp@wc@`p@ib@bcAgn@j`Ew_C|hAav@n{BitA~[eT~^}TnrD_{BntA}y@lBkA~E}C|vAw{@zkA{s@vo@ea@rs@mc@tZcRxkA}s@xp@ga@pnB}kA`c@eY~_@eXvf@y_@zSoQrRsQzVyUlOsOfa@md@zTqXvTmYhToY`To[hSs[|Rg\\nRi\\nRo^zQi^rRw\\`Rq^xQq^~Qw]tQg^`Rc^nQm^lMkVbe@q}@t[mn@lTig@v`AqkB|Pu\\`Rk\\tGoMpMeWhXai@nd@eaAb[ss@tZgv@d]eaAnTor@|e@e_BjL_`@rOkh@tLy`@lE_OfzFamRrJ{[~q@o`CjUyu@jh@aaB~k@o_B`Uqp@hM_\\pb@idA~`@}~@tVmh@d[oo@rf@w`ApSm_@ld@iy@vXid@rCuEtXwc@dt@kfAvk@mw@h\\cc@zg@im@|c@ag@no@_r@vl@qk@`i@qf@lr@cm@pmBayAviA{u@nwAeeAfkBqnAzxBgyAdjB_}@psA}f@|zAm[j~@}KjwAqKzm@g@|m@L`PTjZv@`i@fD~OjA~RbBrMhBrc@fGnQjCf_A~Sv~@pVb`C~u@zM~@`b@lMn`@|Lxj@vOfqFnvAxiBxi@`jBzj@fi@tPzmC`z@dc@pNzrErwArgAh]nRxK`dAd\\~cAl[to@|RtY|I`[hHb\\dH|YlE~AVvXjDtZpCbm@dCrb@|AzmAdA`bAfBbbAtAzpFfH~lCnCpPNlqIbMbn@v@dr@x@ll@z@rzBxBl~BhCliAtAlb@PzXMv^k@rViAj`@oCpQgB|[_Efi@aJvh@}L`j@qPjXmJhnB_v@b_Aw^d^iNxMyFfQ}GpAi@j|@u^vh@wV`q@a]zxAaz@vPyI|gAkk@~qC_qAdcDqzAlNwGlL}Epo@eYr}@i]tf@yPtf@mOfqA{]xg@cOrg@qP`N{E`MoEh^kM~eAyc@~oCapAbkCylAbtDmiBv_A{h@d_CkuAj\\ySdPuLtUaSfn@wp@f\\}d@`Yee@fg@m|@nQqa@|Mi[rhB}eEzpA}wC~d@uhArg@ijAfEi@vZmk@jPyVnQiVpm@uq@l\\uWx^uU~YqN`[iKba@qJz`@aFv\\mAb^b@nVdAva@nFfa@tK|ZlLpb@xTf[|TnExD|QvOpWlXbRbSzHlIhVvXxw@f|@xKlH`QdTPTzInLpcAfsA~tAbmBv|@`rAjf@lt@dc@pr@r^fl@blAvqBpv@lwAhf@nbArXpl@zOh^~Xjq@nWvo@dSli@j]tcAf[ndAfQlo@fOtk@|Lzi@zM~n@hGzZDT|Ifg@fLjr@dKfs@fItn@`Hxm@dF`h@fE~d@bF~o@|Fl~@hFdgAx@~UtAj`@tAbh@fAnu@t@vv@h@bvA@`b@@r_@k@x_A_@|jFC|h@Ezu@}@xaNi@j~KJd|A?L`@hq@?h@b@nvA?h@p@|s@b@ta@p@rb@dCfrArAdh@tAtd@nCdu@|Bth@\\dI~FlfANpBrC~a@xHjaAxGzs@bEf`@fG`h@fFp`@dGrb@vFv]vHxa@dIn`@jRh|@fHlYdI~[`T|t@vY`}@xQ|e@~Rze@~KvVxMdYnQn]jR|\\fUl_@fW|^rUl[rSpVlVfXnN|Nj[l[|dDxeDdtDvtDp@p@jj@rj@jFjFTT|sIftIjAlAzC~Cr@t@zi@zi@jBjB~FbG`C`CfaApaAxa@~a@nZhZpj@pg@fSnPlN|K~AnAtItGTPjWtQhZhSpWpPn]`S|f@nWlfJ~tEjrChvA``G~wCrzDzmBpBbAfbA|f@xWxMnb@xR|XzLrWdKlf@bQTHv]|KpoB~k@vuB|m@`zExuA`oCnx@|sB|l@jSdGnDdApGjBZJ~SfGzAb@lrCly@bQfFjvAxa@voAb_@|cA~[hd@vPde@lSxWhMp_@|RrsDpoBte@`W`{IbxEhwFtxCts@|_@zx@dc@lhAvl@nJxEhoBnaArJzE|Av@lCrA`mEnwB|tEd|B~kA`l@tjD`dBxl@dYzDhBvz@h_@xg@rSr`@lOxX`KvWrJpfCn}@huA`g@pb@fOdxEncB~e@`QzJnDrdA`_@t`@nN~u@fXB@xrBrt@ro@nU`LnDxjDhnA|FrBdVrIzFrBrUhIxgAr`@bcE|yA`NnEjc@tOfj@lRxMjDpxA~_@r^~IrlBlf@fItB`RzEjOzDttGzbBv`EffAzPpEpy@`T~bDhbAjhCh|@fwChhApzLdiEdnCp`AvP~FdMzDddAxWfa@|Gtg@jGvuDhb@vxAhP|lGps@|oUrhCxw@lD`q@XbYQn_AuB~fAeD|aFoNjR]jQe@zEMjTk@trCoH`Oa@pn@e@vV`@nPXpg@|BhpFng@|zAzN~iApMbk@rJ`i@`Mvj@zPnhBdq@vEfB~{@r\\l`H`kCtgA`b@f@Rbi@dTxc@bTpr@d`@hWdPtQrMj`@lXxw@pq@~`Ab|@~n@ll@hU|Tz_Az~@`dAleAncA`hAfo@xt@|[ba@r[jc@r`@rl@bWta@vWbd@~Utc@p]hr@fQz^||CpyGliArcCxk@fnApRn^zX~f@~MbVfQpXl]tg@tNfSdMlPrd@dk@hl@pn@f@h@do@ll@t_@b[b_@dY~m@x`@fXtOra@xUdk@`Y`_@pOv^fNbX|IzO~E~EzAx@VbZjIbjAx[hvAn`@pk@vO|XpGjUvEzl@|Jrl@nGpNpAhPpAh_A|Dln@rBbwDhJhdFtMriC~Gns@nCbb@tAxu@dGfu@rI|{@dMd~@`Q`sJfsBp}@dRtOhDxb@fJjJnBtu@|O~jDpt@xa@pI`bA|StIhBrSlE~k@zLhl@~Lja@`Jna@pInm@jMrhDns@|wEt`Aby@pM~bAjLnv@nFrw@hA`]f@vk@?htAuAttA}I`pCeWfgLa}@r_Fk`@doAaJrbA_G|bAsEhq@yBfJ[pmA_EhfAqD|_BuEzgDiK`_B_FnDKb|AyD|f@}Avk@Kja@vCjXdDhW~Efi@jOpZ|L~m@d[l`@bXte@`d@la@ng@`yBdiCr~DnwEz`@he@vh@nn@jkB~xBzM|OxdBlsBliAbpA|s@jv@lRnQtVbVv\\d\\buPthPdBbBdtAhtArm@~r@ls@r}@nb@|l@zn@z`Atm@rcAnZ|h@|fCrmF|nAnnCjDtH|CpGld@v_A~y@zaBh_@|p@jh@by@lFlIxObVfi@bv@pp@`|@viB`aCt]~b@r`AtmAxyB`tCjs@dx@zYp[dw@pu@h`@~\\fa@j[hn@fb@tn@j^`a@|S~k@pXjT~Jr_A`]`e@nNf_AzT|`@lGhv@rNhgAxJrk@lCtd@jCrhCMt~@t@xp@lB|u@fDl{@nGrbArIdyA~Rjr@~Knr@jM|sBxb@tz@bQvx@hNlq@xJ~q@nIfj@lFnk@lEbc@hDtc@rCvz@vFda@lCh_@tDnVzClVtDfn@~KbuAv[hXlC`WdBpX]r\\_Dv[{GpPwFjKkE~J}ErJoFlLwHzOmLxFiFjL_LlQeKzOyQtNuS`Um^`Su[nQmVvOqQdQ{NzUiOxPwGxV}FtVcB|JSzGb@pLd@tShC~QbFrVdLrRdMxKlKvPdRxO`U|LbVdWrr@zHrTt_@b}@le@vzAlx@dgCzo@xpBnMt`@xoBz`GbdCffHrrAf~DxSto@nh@lbBpQdm@tYhbA~c@nzA`s@~iCx_@nxAzPfs@t]vtAdy@dhD~^l{Axr@rtCbsBbhJlOls@`kAdrFhShhArQjgAbUv}A~K~_AnJj|@`Jb}@rEzh@~C`c@hNpoB|Ev~@rD|{@xCd{@hCbv@p@pd@dAvt@|@dt@TzhAYrqAMl~@q@|aAP~HIlI_AvjAuFb`H?HkA|bBqAxsAO~MMrS[`Zm@fQ}@fK{AzKuB|IuCpIkDbGiHxGaFfCuLdB{Gu@gGyBaFgE{D}EaEgJ_EsLcBeKo@uL@sJ^{JfA}IhBmKlCuIzFcJpIwHpFoCtIeClhA}[xJaIbk@yKjs@aLxv@cK|v@eIps@kEju@}Czx@mBxjAMfm@t@~e@vA~}AxHr{A|IJ@xhJ|p@dyAhKvaCjUtvArMnpAnSxjB`ZfCh@l{@xQn_@zIhzBhp@vi@`R|b@lP`_@jNb{Afp@~xH|oD`pDrbBtI~Dt`@rQryDfcBlgD|qAffCtbAdz@`[j}@~[r{@tZr{@bZlkAlb@daChv@fa@jKnl@tQp|Bpp@`jAx[hjA|ZjtEngAhtFtuArlAxZziBth@nVnIngBbk@ty@xXly@h[bmE|{AnvAtg@jjCx_AtaJ~`D~fL~bEreAt`@nu@hWv^dM~aBrl@~fKzuD~_Bfo@r~Axr@jo@dZnn@b[p_@vRz}@bh@~i@r\\tVzO~]~U|_Azp@fx@jn@t]|Xd]dZza@l^|^r\\fQvPjJ`Jr\\j\\jTpThc@be@`e@~g@bb@dg@zf@bl@j^be@rb@fj@~Zva@j\\~c@da@fk@xf@pr@lg@|u@h]xg@rSvZ~l@x_AzaC`oDrsCxiEzu@nlA``EdfG~eAp`Bti@ty@~pCndErdBlgC|dBfbC`cBhzB~uA~hB`~Cn}DvcDxbEhwLxoOvfB`~Bf}Dp`FncAfpAzQjUpoJ~`L`]ba@~Q|SlXx[b}ApiBltFttGt`H~cI|mG~|Hv_@lh@hjFdqHtiDhoFvz@xzAhxAtjC`vAxmC`y@hbB|gBfzDjo@dyAnn@`yAv|AlvDz}FfhOpwAf{D~xAfyDxlB|~EvxB``Gn@bBzbBtjE`V`n@xkA`aDzeBz}E`h@dvAnoAtvDzh@|`BblBd{Ft^bhAxk@hfBfl@zgBdL|\\`jAbhDduAvvDvaAbfC||AjuDjdCnjFf`BnhDvbB~kDtiAv_Cjt@tvA~EpJjuA~xBvcAzxAfvA|hBniBnkBhtAjmAt`@t]|~B~sBjzAfzAvo@vl@bo@xl@xgAbhAlrAlxA|bAxpA~m@`~@dr@jgAto@xhAhl@loA~r@fbBlk@z`B|`@d|AtXxkAtWlrAbRxjAzMleAvJjgAfHbjApFxpA~CbrAZxpA[dvA_DfbBaItsB}In{AqKhnBsNlnBgNbrBwFv~@wEj~@_Dv_AiBbjACln@DxUHvVJjGV|SfBz}@|Alq@pBbz@bGtvB\\xLdGh~BtG~fDdEl{ArBrm@tJbaCbNbiCfH|x@pEb`@dIbr@rPxtAzQ|jApO|u@dO|q@dGpWjE|Q~DdPfD`N~FpTpFvRlFtQfGpSxFhRhGdRbGrQlGnQvFxO|GhQrGnPdH~P`HpPxH~PfHzOnHvOvHlOzHrOdIbOnIdOtH~MrIhN~IpNlJ~NrHvKpJ`N|I`MdJfM|I|LfKdNrI|JpJlLvJ~KxJxKnEzEjEvEtP|PjOzNhKnJvQfPpLxJ|K~I`PrLtK|HzLfIpPrK~LhHjLfJnHxDpXrNhOnH`WrKjWxKl{@lXbbAnTl{@jLpoAvIbi@p@jTTbUDrm@^r\\Pz`CwC|RCtfAKff@OreD_A~]Yzw@q@zZk@|Ik@|Iq@pIeAbIgAdHwAjJ{BdJiC~HkCbH_DnI_E`KcGxIgGxGmFbHgGrIwIrHuI~GaJdIsLvFcJnHoNfEaJ~CkHlFyMhH{RvDaLnDcLnD}LnEcPvEyPtYsiApEiQjEeP~E{QdDuLrCwJxDuMhEwMlEiNbDwJ~C_JlD}JnDoJvD}JbEkKhDcIrEeKjFoLtFaMnFeLbFwJjKwRtHmNjGoKnEyHjHkMna@uq@zn@oeAbu@cnAft@slAth@i|@~r@knArz@{tAxt@kgAtEgIhUi[|LuPrd@kj@nf@qi@`^wY|ImHzc@y\\|m@g\\d[cKnUuHpZ}Ht_@qGzEk@fS_CpR{@pw@n@vo@|Ff]pH|\\rJ~e@jSln@n^jPhL`PxLpZvVt}B`sB|v@ls@p_Azw@buAbrAtn@nj@v_A|{@tmA~jA~m@nj@to@`i@ja@l^vk@za@b}@vh@ff@dY`e@vTjFbCp`A|c@xh@hUno@|YbQjIjQbJjT~KxQvKxVtO~OvKbMlJ~OnMdLdKhJpIzMxNxOlQdR|UdGpIfHpKbEtGnFdJxDzGxMbXtPf^xL|ZnO|b@jNtd@dRrm@rKn`@hOvo@fSbbArGt[zMjy@bMry@dMz_ApGjq@dDz^pCx`A`@lPf@rYBzYCdFE`Is@fZuBlc@{AxNqDhWqDhTqBlMeAzG}ElXiFf^eFx`@wD`c@qCvg@eA~e@S`VvCf]zA~NfCjO`DlM|ElL`GnJxH|HxFlDxQlDbKMzNyDdG_E`IwF~HmJ~CuDhPyY|Sac@xHoPpIeOfIiN~IiMx_@mc@rLuJxSoMzTgMlC_C~EgEpFqArFmC|LiF|ZmMlpBwr@`}Aoo@xi@sSfo@gNzQoAn_@kCxn@n@`VhCvN`Cb@HvUfFnQ`FtZjQxmAtq@f`B|iA~X|Lby@|Zhx@lOp_@pDtaAxI~SvBt_BdPlWhCfU~Bvs@lGhbA~F~t@k@jm@gEjd@}Gza@oJr\\_Mnr@kXbc@mTji@o[lcA{l@v_DqiBpaBycAtVoOpjBqiAbeGovDx`FmxCxwDi~BlXmPtReLnZsPn\\qMpZuK`ZaJd`@sL|]wHfj@eDja@gBjg@cAfo@oArrAMbzE_@f`A`@fAAfPA`@?~}B_DhdBIpXAnVa@nWMbSKpl@?ziB_AbpBaAdO?jaD{Bz[q@lgBmDh~AiKzvAcOr{Bq]jeA_UzqBgg@nnAg`@vkAia@r{EsgBxz@k[zvKiaEzpBwv@thAcc@zuA_h@lNgFbuAug@flAed@|zBgw@`tAm]`e@{JbaA_N|}@sHlqBwDzK?vf@Bf}Bj@|h@l@feDoBvWWp{BgJftA_KvtAeQtEq@tPgCdUiDr}AaYnwA}\\luBgm@ddEg~AtkMkvF~u@wXh{@gUl{@_Ohf@_Ehf@cCbQaA~`@{@vYw@pSi@l`AcCnM]ry@Mrt@l@hl@hEzRtBn_@xD`_@jGrQxDrSrF|NpEzSdGlf@rQrc@rR~VxKhp@f]|HhElPxIz{@~d@~_@lRnv@x^~fAbf@`mBdq@v~Brb@juAvQtv@~EvxAzDrlAPb_BaG`sBaVl_B_[`iAe[niA}_@bjD}bBla@_Ulw@i^tj@aZ~sBkiA|LyGr~DyxBzyBgxAhFiDdd@q]`k@gb@r]}Y~LiKlsCgdChYaVv`@_\\fl@qd@~s@yh@fm@{a@hs@ae@pbAmq@nnAocA~QwSlz@gbAd}@_uApk@oaAzcAepBflBksDfwDeoHth@k|@nJ{Nn]ak@hvAakBn|@cdAf_@w`@`QuPpOaQvKyJtm@cj@hg@w_@zq@ef@zPeL`G{DzU{Ojy@_e@xy@c^jy@g`@f}Auf@rfAuWpk@{LxReD~o@eJdp@{Fbb@qDtc@_CnLc@`Nq@n\\Szx@ObmBrHl{BnVhuBxb@|rExvAdEpAdtNj_FzjB|v@bmB|aAr~DtqCj|B|~AbJnG~yBb~Av{AphAn|ApeA~`BvmAbZzTxcBtnAxaAvs@rtMfoJfPnMzfGrnExWpR`UpOzdBdoAjj@pa@fVvNba@zYlSbOnCnB`i@x`@~GdF`HbFb[fWnQlOfHdGjf@|c@nDdDpr@|o@xi@bn@~w@phAj^hi@fT|]nq@vmAnHpOtJlTbAzBb_@py@hTlk@vQ`f@t]hgAxZnhA~XxjAbl@xgCvGpZvEzRzLpm@bFrZ`AjHtBzOvClYtCb^jDxw@rAz\\dCz^rBtV|D|YxD`SlDnM~CrJxGjNbClE|FtI~GtHjJzHdKtFhIzCdKjBfL`@hKg@lE{@`Eq@lFuAfF{BxEmCzE{DpE_FrE}EbKaO~NmYzGqQrFeP|FaR~Tuv@vVe{@tJ{\\`Umv@|Roq@dU_r@~Hgd@`c@{pA|zBgvG`Lc\\z]scApL{Z`EkKlOq_@rPo]tQe]xJ{PxEkIhAgBpUc^p`@sh@`X{Y|WkYruAclAboAkfAt@s@~a@w`@huAkqAng@cg@hc@y`@|i@_a@`YsLvL}Dv[sHxMgBbT}AtUqD|S_@`Q_@bj@aC~[kEnYkHhRiGvUwJ`i@eXrPsJJG~aA{l@hOcJhCqBnRoLbBaA~iAkp@v`EmfCxdAen@xe@uZv\\_TzrDczBblBkjAp~AgaAnFiDtr@ec@p_Aqk@|n@{_@xOoJlc@qVtc@cSzGkCbOgFjPkFti@_MrWyD|OiBfOqAd`@iBda@aBjIQnh@wClY}BdXcCp[oEhRgDhVcFlWuGlX_IxYoJz_@wOtZ_Ox_@sTvZwQ|PeLtE}Cnl@ia@v_Agp@`OcKzhCqgBh_A_p@f[{SrUwNn[{PjXoM|LyErZuJra@gJn[eFn^aD~YyAz}CkHdcBcDjv@yAddAwAza@nA~_@bDzPrBtPtCxZ`JvOjFpO~Fn`@jQvpBfhAvsA|v@pfBbaArWdM~TfLjPbF|QhEvVlCbUrAbz@nCzm@vCzUpAdh@hJd]~MbX~K~k@`Zhb@~S|fAlp@jMzHz`HluDtq@z^zg@xX`sCl|AjGhDz{A~y@d|Axy@ngBx`AtbAvj@hL|GbB`AdF`Kvk@n\\tn@z\\jNjHrMvB|RlFvCzAtVdMvM|HrEjChJlBhHQrFmC|CcC~BcGzCcJpDeL~IeYl_@ekAxj@{gBfIqXhPyt@tk@qiBvXm}@fUur@~Mc^hRuc@jIaQl]ip@de@_w@~`@_p@jDwFpJ{O`PuYjHaOr@uArDmHhVmj@dTkk@bb@kmApUkq@hc@apAp]ybAhRih@bi@{tArZas@tq@muAtXmg@dc@st@x`@_n@pf@yq@te@{l@~k@cq@fi@ei@hf@}c@bj@ie@pk@kc@xl@ca@nn@c_@bk@mYx`@oQrj@{ThxBmw@~}FivBjeBsn@xeBqn@vVsJdy@{\\`Y_NlUuLf[wPt]iSzg@e]jl@cc@nr@el@xh@_g@hm@ko@hi@an@xc@uk@nd@qp@vc@uq@j_@}n@~{@ycBb^yu@d`@y~@`\\o|@zUsp@bd@sxAd`@wwAj{@wnDjm@}gC~Pkv@hLgf@nZepAnUwaAf`@}yAde@a_BxUcs@bVqo@hOq`@xMk[~]mz@vg@udAf`@{s@xc@qv@xb@eq@jf@kq@hu@i`AnfBmsBjrBy`CNQvjBixB`oAyxAlmAqvAppAyzA~IgKjcAakAhbAgjAJMts@}y@hS{U|hCqxC~rAg~Ada@kh@xd@wm@|q@}aAdn@scArBsDpj@ecAv_@iu@n_@sy@v^gz@b]k{@jb@{jAdZe}@|k@qmBr~AqnFjp@y|Bxi@okBtjA__EpoA_mEzz@ovC|b@qzAxLkb@rDgMffBeeGht@qfCvp@wzBv^cjAnj@a~Al_@i`Axs@adBnZcq@vv@_dB|Oc\\jKeThe@}|@pa@wr@~d@us@b[ib@jRcVtNqPfV_Yx[}\\r_@u^~e@yc@hyAynAtzAwkAb~@aq@pDmCtq@uf@zr@ae@|q@kc@bj@}]|t@gc@zd@mW``@}Stc@eVzv@q`@lv@w^lqCmmAhYqLjo@_Xf_DymAp~Dq{A~vBgy@xqAwh@jn@yWvzAgp@hk@qXbo@g\\~d@yVhw@gd@t`@yVrq@kd@jm@cd@`h@ea@zh@ud@po@wn@nh@kj@vh@sn@vg@yp@fh@{t@hd@gt@nc@{v@v\\yn@nYwm@xa@m~@hc@ihAnd@{pAjYk~@d[sfAlXmeApVicAzUufAtTagAzSygAh^svB~TswAdTs{A`d@ihDzgAucJbm@qcFl]uuC~x@}~GjaA}eIloAgoKlf@o`ExmA}eK|SmfBjAsJ`Kq{@hYe}B~CoYr]_xCt^q{Cn^uyCvIcr@~S{bB|`@ytCzc@mtCvf@urCtj@qsCnm@{rC`\\}tAbZwkAph@iqB|]inAlLy`@|b@mwAzg@c~Ahl@ycBrf@{rA~n@w`Bt}@wwB`bAcxBjcAmsBpeAwoBVg@zaAydB`sAwyB|iAugBhjAkdBnjAsbB|`B_~BlyCcfE`~Bq`D`aAgtApfDouEdxC{bE~n@i|@xoHodKbzHqqKfkDq{E`eAwxAl`AkrAzrAohBld@em@zC}D|hAgyAju@iaAjzA}hBh{AshBroAsxAtpAkwAzrA{vAxB}BnoAkrAdsAcsAj_Cg}Bx_Cu{Bz`Cw}Bp~Bk}Bn|B{_CvzBicC`wBwcCzwB}hClbBkvBruB{pC`tCo}DzfAu}AhxBseD|f@}v@biAwhB`jAslBphCapEln@}hAleAeoBjaDeiGtSaa@biAcyBzpBuzDvm@}lA|p@qqAbkA}|BnhB{lDdeAksBf~@ggBn_AehBr_@gs@h_@qq@`a@cs@dc@kt@`b@qo@tb@wo@|b@ul@lc@ck@nb@eh@vf@oi@lc@id@nf@ee@|h@sd@ze@_`@ng@a_@vk@y_@vZcRpa@uUff@sVxn@cZ~JkEx}Awk@rt@cUlb@}Kny@}R~`@gInl@_MngAiSdoAgTz`Fez@jYcFdQsC`PsCh}@gOzm@aKxOoCfaCca@`tAiSz_A{Nv_AkPnnAuVhi@_Mng@aM`x@sTxfAu^~_@oNt`@mOne@kSvc@gSdf@mVla@kTfb@gV~`@eVhb@gXvb@iYhj@sa@pc@m]xn@ih@jk@kg@|wAkuA~wAkxAvaBqcBltBswBpm@mn@deBqeBd~@q}@xZwWjnA}bAt`A}s@niAsv@`}ByuAl[qRrp@{`@vmCa`Bn{EkvClzAq~@txBmsApdD}pBpRmL~jHsjErs@ea@tx@kg@~x@g`@xd@oWfl@o`@xsAyx@vgAcq@j@]xJcGjfA{p@pt@se@|xC_sBxnBoyAvfAq{@pbBktAf`B_sAn`BusAvo@gi@`p@{h@bQqMl_@eY`r@me@bc@iYbMiHrWyNpZyPns@y^bt@s\\fq@eYtt@kXft@qUx`@mLvTsGnlBge@plBmb@jfBe_@jzAy[loAoXfdAaUpr@yOtr@kQfu@mThq@iUps@kXvq@q[lq@m`@hr@}f@hk@yf@~o@qq@xl@uu@|h@yx@pe@e{@fd@waA`a@}dAr]yfAl[}fApu@wvCh[ajAvYqaAba@mkAnf@smAja@y}@ba@uy@do@akArj@m}@lm@{{@no@sy@`p@}u@po@eq@nk@{i@~y@ew@li@}e@`xAujA^YjtAacAn{C_xBh}AidAf]kUttDyfCx{@ml@rgBgmAjjBqoA|QyKzj@}_@t{@{l@nc@oZnFqDnnAu~@fbAkw@bkA{_Azz@ws@xoB{bB`e@q`@~_@c\\vgAa`Atw@ar@pz@os@rw@sq@fv@cp@vw@kq@dx@wq@~v@{o@||@_s@xy@in@b}@co@jx@oj@h_Akl@r|@gj@x{@kg@f~@yf@f~@{e@xz@ua@``Aac@~}@y`@lgAkc@r_Aq]haCqy@xaCaz@nbCmz@|eCu{@hcBkl@xdC{z@zoEc}AnzDusAtsEc~Ab`EavAnfCa|@bkAaa@nn@{SnbAc[naAwVzo@cN~b@aIbk@cJtn@sI|g@}FzcAmIlv@mDj{@eCtcAe@xx@n@ff@fA`d@fAnh@hDtd@`Dhg@|Efg@zFhkA~Pf~@rQhe@vK~h@lMpyAn`@nxAt^z_EtdAnaAbWlfA|V~q@zNde@nHxb@`Gn@Jdf@nFff@|Dne@rCzg@dB`d@x@xi@Ffo@q@zm@oBnl@wDfo@eGdm@oHnk@iJdo@oMzk@aNlCo@dn@wQ`l@wRrk@{T|l@uWtj@uXvp@q^jl@u^vi@a_@bi@}`@`i@kc@nh@md@|hA}fAvhAshAvfAyfAbhAahAn`Be`Bt}Bs}Bz`Dm`DruCmuC`a@}`@nFmFxCaDbX{WjeA_eAbt@ar@pWmYd{Ae{AdFuD~d@od@fy@{x@faAucAr}@k}@tcAadAva@cb@re@ae@d_@g]vU}Rb\\qVlf@s[h^cS`UmLp[mNpf@wQn_@uLrb@uKpa@mIpe@qHdr@yGhf@_Cnf@eA|lA[diCW`{ASh|Ak@fk@?ty@Cxq@Wbq@w@`h@cBfg@qDxo@yGxm@mJ`g@yJn_@uJp^qKjf@gPj_@wO|`@sQn]yPxj@w[hfAqt@xzBmbBrv@al@la@yZ~eBorA``Aus@bsBa}AxeAex@tcAaw@`f@q]bh@i_@l^aVj\\}Rf]qQvYmNhZqMzYgLv^sLlQmFfRmFx]aItVcFdV}DbWqDzXyC~ZoCb[}Ah_@iAn|A}BneKgJ~bC_C~rCkCnuFgFfsAsAj`CgCndA}CvkAcFrrAkIjmAyLnp@oEl{MsxAbxAkO|wCqXhlBiWjdAuKfgBeRfzC_\\z{BoWp~@iJzm@gHzy@yJhaBuUjz@sMz{@aOps@wNpx@gPp{@eRhgAyW`pAc\\x_AcWl}@mYf}@sX`_B_j@p_Au]hz@}[ngBut@~yAmq@v`Aud@xXuNpa@uSn|@ie@ls@a`@`i@qZbfAgo@fp@ca@|{@uj@p{@sk@`|@ym@~vBk~AfvBucBxxA_oAlrA_lArz@_x@|}@{|@ffAigAza@uc@fh@ij@hdAqjAz|@mdAjAsAhhAisAplAo|AzuAciBpr@q}@fNmP|nAu`Bd{A_pBr{AcpBz{A}pBf|AopBfyB_uCl}@yjA~Wu\\jx@aeAbd@{n@xcAatApMuPdqBqjCbrBclC`aAqpAnrAerBt`@ut@`]yr@rS_f@~LoZp\\s}@hSin@bTqs@tJc_@vWkgAfTofAjRahAnPqjAtMilA`K}jA~Eep@dVspDnQ{nCdRwuCh\\{aFxImjAfK{gAfNogAzQgeApUmdAbYqbAj[w}@j[_u@n^is@r_@mn@ba@qk@xb@{j@t\\wb@p}@iiAplAe|AtcAopAjaAanAnT{X|HoJpFwFvkAwyAziAc{AbfA}zA~aAmxA`eAg|AzbAgzAjcAmyAvdAc|A~bA}zAbbAq|Ar`@ao@h`@oo@v_@ep@z`AodB|k@qfArk@ihAf{@wdBvz@uhBxLiVhl@grAnx@ojBxv@seBf[kq@d]ms@`h@a~@bZef@fa@sm@xa@cl@|\\kc@de@cj@pi@gl@hn@an@z]yZ~c@o`@rm@qd@|h@y^dg@_Zxg@aYfh@aWfq@uYpo@wUtp@eSvo@mPjp@sMvp@sKxr@aIbp@aF|s@oCrr@{@ve@VzY\\f`@`Afq@|CzgBxKbyBfN~xErYxtArIxyBxMviC`Pnp@jDbr@xCjs@`Bjq@Zhq@q@`r@sBjq@_Eds@eGfn@wHjo@oJrr@gNpo@sOjp@eRlq@oTnm@_Uhp@}Xjm@yYjn@m\\j|Ayz@psAev@ddBs`AnsAkv@rg@i[h{@am@~z@co@joAa_AxgAey@rdAov@|_BolAxp@sf@xzAshA`yAufA~xA{fA`xAafAvzAghAffBuqAlY}Szp@gg@jj@ga@zq@yf@zj@s`@re@o[hm@g`@jl@w]xk@}[ln@a[lm@qXvq@iWjo@_Tvn@qQfr@sPxn@aM|p@wJvp@_InD[|UoBnWeBpm@aD`u@_Bfq@]tq@Fxp@r@nfBtDdcBrFrdBrFh_BjF~dBnF`gB`GnbB|EjgAzDlcBlFhcBlFlc@vAf_AxC`bBnFtfBtFdo@zBv@Bvq@pCzq@lDzr@|Ebp@~Gvp@`InrAdSrTlDvvApUpo@dKfo@jIrp@lHfo@fE`p@dDho@nApp@Pdp@y@bo@kB|o@wDvq@qFtp@_Ipq@uKbq@qNhq@oOlp@gRzo@_Uhp@oVnk@uVtl@kYhk@i[lm@{]~i@u^nj@wa@nf@y_@zn@si@rb@ca@xg@}g@`g@ui@`f@gk@~d@}l@pd@on@|b@yn@be@ot@v`@kr@`_@aq@vUod@l]}r@rGwNvi@knAp\\yy@n]q~@fYyz@lXg{@tXo_AbWm_AzU{_AbUacAtR{_AbRy`ArQidApPehArNobAtMggArLwfAvJahAxIwgArHkhApGugAvEihAxDqkAdCshAnBwhAt@qfAnAaqCfAqtCdAeuCfA{aDfA}sCpAs{Ct@mmAz@_mAfB{mAfCclAfDelAlEaiAbGqiArH_iApJ_mArKwlAxLegAhNygAhPuiArQqhAxRseAzS{dArT{bArVwbAzXqdArY}`ArR{m@`Ugq@bp@_jBtMu\\lO{a@pf@}oAha@odApwAcsDbzBuzFpcBikEjG}PjKeWxbA_jCdw@gxBdu@yzBfs@m~Bzr@oeCzXweAjWqdArVkeA~]i}Afc@cuB`h@mnCj[ejBjS_pA`Jgn@`[yxBtNqiAlQoyAtPm{AjIkz@jKadApP}pBxL__BhIynAjHekArGclA|FolAlEoiAlFauArDclAvEciBvJqgFjKw{FhDmfB|GumDjFwyCtMi{GpBoeA`IypE`Dq~ApG_lDjCeyAzEmoC~Asv@vKuwFjFeqCdC}iAvCyhAvDeiA~EglAhG{gAbI}lA~IikApJmjAzl@k~GxAuPtA_Pte@ipF`PmhBj@sGpqBakUlvEo_i@li@mdGfMmyAb[qpD`Ty}BpOo_BrKkdAjHkm@`Lw_A~Ey_@`Hue@hNy{@vHid@|Oqz@rRe`AdQyt@rTu{@lRwq@bWwy@~[aaAxQsg@jO_`@nWco@z\\ut@l]es@dPsZf\\wl@x\\{j@t_@ik@p_@gi@~^gf@|`@oe@na@gd@xb@wb@bc@}`@vc@}^pc@e]fg@y\\`WmPnc@yW|s@u^pt@}Zzt@gXrt@gTbp@qOrg@cJrd@eHjf@yFvv@_Gl[sBdv@cCjx@cBpsA}@`u@Il{AGbgAYnZKnc@MnsAqAhnAaC|cBeG`f@_DhtA}I|rA{KrqAgM`@EprA_NzgDu]pIy@pwCgYXCznDi`@hrAeNvs@oGfIs@~qDka@jf@cFlAMhmGap@x}AcPd~AkQ|L_Bhk@mHzv@gLpi@aJhd@{I`b@iI|b@sJhi@sMre@mMbkAy]tjAsa@|m@wUxn@yWdO}Gh{@}_@lx@o`@~u@k^fgBw{@baBix@naBwy@ltA{s@djA{p@~lAww@le@c]~c@o]f`Aex@v{@}x@dz@{y@hxAa}Ab~A_fBx}AsgBz|AqeBnzAccBhzAcdBl~@mgAb~@skAfy@uiAly@goA~t@}kAls@elAhdAudBjbAe`Br{@wsArw@skAvp@s~@xu@ibA`_@qc@pk@eo@jb@oc@ha@g`@|c@oa@|b@o]tb@o\\hf@}]fc@gZjb@yX|f@yZlf@kYx|ByoAbmC_vAr{BekAxjCauAfuDwnBt{DwrBj~BcmAj_Aqf@`_@uRbxA{u@n`@mSjT_LbsBkfAh`Gs|C|kAcn@rjAmn@vfAsn@ji@o\\hhAmv@jhAo{@dc@u^dc@y`@ta@e`@fb@ab@db@oc@j`@yb@t]ya@l@s@r`@ye@n`@ch@r^yf@p^ah@r^kj@~]ak@p]wk@z\\ml@h_@qq@~{@efBhb@w}@hYup@|X}p@fYau@dn@ibBjk@qeB~t@m`CvcBayFfr@}|Bb_Au~C|e@q_Bpm@iqBfbAk`D~Umv@jUaw@zu@_fCpmAobEbw@olCDMza@kzA`l@o}Bv`@cfBp^ucBdTahAdNst@hXk}AhWeaB~Tc~ArWorBb\\wsCvZosCzZksCh[urCf[awCb[_uC`[ssC`[stCzZcuCbLciAjK_jAbJ_kApHsiAlGukAvEukAhDamAzBclAjAwnAb@clABklA[{wCy@_kFy@}iF}@q_G?m|BfAgtAlDwrA~EkoAzIwyAnWwhDtp@cqIvp@ypIfXcjDxWseDvWwiD~WkfDzp@wqI~W{gDbXyhDrWifDrSmdC~NmzAvGam@jH{l@`Icm@rI{i@vJ{l@jK_j@|Kii@`N_l@jOkn@nOcj@lPui@tQkj@`Nq_@hMu\\tWap@vUeh@z_@qx@xSsa@xYqj@bu@qrAfu@erAv}@e_BhwAofCz{AimCdn@kgAxo@ejAvh@cfAjf@}fAr]u|@|a@kiAdTmp@vNud@rQmp@bV_~@|XomAlKii@tKkj@pJsi@hJ_l@fI{i@pIam@dGog@rIaw@jHkt@pGor@lN_eBpIgbAnXueDpL_xAtWoaDnO_iBnOamBzOqkBnOslB~Eyl@`Gkq@hGcp@zHos@lHyk@`@cDvKys@fMot@`Nar@jO_r@|Oin@bUmv@hPyh@r_@}cAbN_]`Pu_@bT_d@bZmk@pW{c@nXgb@~Y_c@r[qa@p[o^tXoYd^y]r`@u\\p]cXz]oU`a@yUh`@}Sbk@yWbs@_Y~q@yVzUoIxSiHjz@oYne@{Ppc@ePbHjA~`@aKhG}@d^gFp|AkSxZoA~B?d_@@vM_BzUwFpK_ArVo@`n@tMl|Clq@n_ApSjQvDddFfhA~o@vN|bBb_@ro@rNzKbChB`@xn@bNvCnArCbDTVr@~FbBzEhC`DbDvAlDDrC}@`CwBfBkDxFcBdF^~q@fO`GpAtnO`gDrm@zMxCpAlCzCxA`Bj@pD`A|CxA`C~AvAhBt@nBT|BUvBaAhBkBvAkCnC{@tDKpH~@d^zHde@zJrVvDrRrChP~B|PxB|h@bGbf@nD|N~@rEVlNv@bp@vBrq@d@lZCn{@eBhm@uBh^eCnT{B`n@aGvn@}Gt_AyJhEe@zXwCjw@mIdaBoQdEUzEWxEG`FJnGhA`IdBzLtFrJpGlI`DfHjFz@rG|BpFhDzCdEv@`E}@fD_DzBqFdHyBjIAbG_@zIwAhG{AjIg@xIFxNpB`NdCv_B|YzhDvm@lxBx`@f_BpYhSdDzQrBzRvApSl@dQRfSUfTm@ljAkFteBeItoCmL`lAeEz~C{NnoEoQ~i@gCtO_AjNaBlLiCrM_FjLqHlW}Tjz@kx@dfAoeAzX_[vY{^dVo]dV{_@pUua@~u@owAvuA}jC~\\{n@|G}LjIsNrVa_@`QkTtXgYfXuRhUwLpV{Iz]kIxe@iFfk@eAp\\h@`c@dC~_@jE|TxDhg@vKbb@|Krc@hMxTpElVdLn{@j^ph@zV`p@f_@vy@ni@dx@|m@lQpNvE`EfSvQdJjIhiDv~Cr|AtxArgCt~BvRxQfb@p`@pG~FjU|Srr@dq@~V~V~Q~Qzc@vb@hb@``@xe@xa@rH|Gj[x]bKhOjEjIzGpMdL|VfI`UvHlV~DpPpDxPfI~j@~Dpc@vB|f@Xvj@{@bd@s@jMkA~ScBdR_DfWeGdb@yMxq@ue@l{BAF}a@xoBmMtm@sb@dpBABqTncAABqF`W?@sFbWcMls@gGnb@kEfd@gCl^}Aj^iA~h@?zk@j@~]~@d[lH~`BlHhaBfD|t@fDht@bD~g@|Fnn@tHrl@pKro@tM~n@~P`o@zPph@xQte@pS|e@tTh`@zQtZjW|ZxMlP|BdCrw@n{@`eCrmC~M`QdQhXpQv]~KdYdL|^jJn`@rHxa@|Etb@zBzWbAnLdDzm@bErh@rChWr@jGjIbf@pMfh@tQ`h@|Qx^vMhSlG~H|GtIhZhXpT`Pzw@vj@`YpMbT~H|TtDlQ|@bTa@xM{@fM_BleCic@tqAcU|RmCvRu@fEOfQPjFDpT`BfTtD|ShGlS|IjlBvbAttAvr@`{@`]l^~Il_@~F`h@bHl_AlIbe@xGn^`JhZjKne@xTtKdFpOhHxiA~h@ng@nTnJpEzvBl_AxTvJrnAvi@~z@f_@lXrJbOrFvOhCpCRjKr@fFHnHShW{AhKcBfQmE`PyFtO}HbIyEnEaDfPyLbLyKlBoB`LcLpHsHdIyGrI}GnMgIbJeFpKyDne@uOtI{C|IoEtKkG^Ul@_@nEmCzJyHbPuOtSoXpPwYzPw[zPk_@xOu`@tNab@lMec@fLid@~Jge@vIef@jH_g@`Gsg@vEgh@hDwh@|Bai@t@}XJcE`@c\\Bom@[{b@gAif@iBsb@_Ce_@{Eul@sEaj@wt@}{HsCqg@s@iZG}Y\\uWxCut@jt@syNhCca@hBaVzCaZ|DwXlFeWpGkWvH}UhI}TbMo[`MgY`Yeq@vG{Q`GaSjM}g@nGsZtXgiBdDcSpc@i`CnC_OtZwlBr@kE|Vo|ApOq{@tIoa@`Qmv@dKwb@rJu^bLw`@rTws@xUwq@nQ{d@`Po`@`Wwl@dUye@nVoe@lWed@dSi\\PYzRgZv\\ag@`_@ce@za@wg@|a@}`@rc@mc@bTcQ``@_\\pYoRdZsSbDiB`n@e_@fSgJrH}Cxg@wSve@gQhcG}rBbTyIxQwIjT}LnNuJzGcFbW}UtYg\\pPoUluHyfM|Vgd@rKsTzKmXvOwd@jK{^pI}^|Jyi@xO{bAtUqxAtFeX~FeZnN_i@|Kc\\nHaSjAyCnHoO`Ry`@rEoIDInLkTFIbOaUfOySnNqP|QyQ~UwSll@mf@r_@yZhQ}OlN{Mbc@yi@l@aAn_@cm@bK}QrKcUhJ{U|bMyzZ~Ogc@fNcb@fKa_@xAiFdcCs{I~e@ufBfnBceHttAaxEvbE{hOpLeb@dhEapOxj@urB~Hs]@CfEcR|Muo@pRe_ArTc~@jLca@bNq`@hTof@xTwa@t`Aq|Ahe@}s@za@ct@vWqg@`zAwyCnoAwfCvTgb@tZ{f@jVu]dVcYtb@we@vUqUz[uYld@u\\jg@}YdUkL`L_Fpk@wSvy@_T~^uFx`@}Dhm@uCb`Aj@~mBjRv|@tGj\\Id]kBzW}Db\\aIp[yKhUuKjWwOp]qX~YuZbp@s|@r_BerC~Xoc@bZia@b[k]zYwU`ZsSlZcPf_@wN`f@{K`d@aFp_@eAlcB_@v[eAr]_DzZwEb]qI~]gMp[{NnZiQd\\iUl[gXrh@kk@p\\ie@zZeh@lRk`@dSyc@xyDm~IpsBw{ElZgs@bt@kgB|~@o_CjjBo~Evd@epAxkAciDzfCauHz]yaAnb@koAff@qsAzo@ocBdMs]bi@ysAjh@kpAfc@ccA|dAyfCb]ay@lS{f@|Rae@bY}p@r`Aw}Brg@_mAfUmi@r[{t@|Ziu@b]yw@lk@slAbPy[fT{`@`LaS|_@ym@|OaVzN_Tj]ee@~Ye_@p@{@bXsZtTyUnZc[b[kZj`@_]x_@uZra@wYpPgLhPaKrc@uWhd@mVba@wQja@iQra@yNfb@oMxg@{Mng@kMpc@aJna@_Hpg@}Gvh@kFjcAaHv`AyCra@e@fYBbm@`@ze@^v~AdCtp@hAlXt@hXbA|~@~G|u@~GnYfCpr@dGt}@lH|]pAr`@^lc@?`Wy@|VaBzVkDjUoCbZwEr]_IfHmBxHsB|Bq@rLmDzDkAhx@i[~lA{o@xlAoy@rtAqeApPsN~mAwhAh^i^th@}i@hvA_aBx~AinBxwBcpCfgAumAtr@yq@ri@}f@rK{JhtDs`Dbw@yr@hTmUlRwTtTu\\`Tw]|X}m@~Xst@rMkd@vMgi@p`@orB~hBayJvUgmA~Os`ApI_i@~Jiw@dDi^pCs^jEcdAl@gn@i@c_AiBcp@eKyuBq@mNiCm}@Yym@~AmaAhDyn@|Guq@jMg~@tL{i@pN}g@rUar@vXqv@zUqt@`DiMvAyFtHqZbLsp@nHsq@nEwt@v@w]R_^gBeq@qDqj@iHwg@iBcJoFgXgKa`@kMa`@oBkFg_@ibA_DaIcZ{t@ap@o|Aaj@a_BqKud@sC_MuNcv@qCwReMigAsDac@sBa`@s@}NaBg`@cAic@MqP@a_@n@kg@~@yYvDmm@nDa^~Ea]`AwGtHa_@dH}WpKk[rWgn@jI{Rpf@}fAplEinJxh@uiAvf@gnAxQqm@dg@amB|Jg[dLiZ~Ueg@fXea@lp@sq@l_Amo@j_@sW`_@}YnVqUbKcLvIsKzLgQxKuQvKcUxJyUtHuT|GcVdIe_@zGa_@|Fwf@|Ckd@xBel@L_YC_YcDerCYin@n@_g@bAwYtD}d@pBoQtBqOjCgQvKcf@nPmn@fR{n@rNkk@rL{n@fMk}@pKwm@zKii@fOue@lWml@niAkyBtLsXjJcV`KkZdMw`@lLsd@vI}c@fHo`@~Geh@bEac@fH_jAjf@y|NpD_r@rFmq@xDq^jDwWpEaZvGy]|DmSzmBswHvnFk~Sr{@ghD~W{bAlMee@`Qin@h`@{tArlB{rGbJ{Z~b@y|AvOgn@`Oip@tPcz@pGe^rIah@lFg^tJks@jEk^xDa^rDm]J_AvvAk{OtEsg@pCq[fDw\\`CuTpCmUfHig@tD}UzD_UnRa{@vDeOlSyx@~oAajEpTiq@bSwe@tPo^dUu`@tb@im@p\\w[~^a[d{@cc@dh@aMp\\wF|uBuN|{AgMvw@sGrbGkb@x_A_GvkCgRbEYtaCq]xhBwWn]eFlnBaYVEnaEux@zpBoi@n[sIby@iU`gAuPxo@cGbj@iC|oA_Afh@lBjcCvOvhCfRbqDnWd`AbGhk@fAvf@Itc@mBnx@aJ~w@sNtZuIzf@eQvm@gXpbAmi@lh@qYjTwLlb@gWvq@e_@np@_[|q@gUp}@cP~\\iD~UwAn]k@nr@r@~a@lDx_@zEdTzDdh@bMpfBhf@``@lJbb@lG|n@fF`_@dBfo@lBdi@hCbnBbIpw@jI`aBz\\nqAx`@tgErnBd^~MzXlK|a@nMrc@vK~{@pQ`tAlN`{@fDpw@c@t[i@zfC{D~vEqK~fAaCt{@_Cjz@{AxXg@|YaBd`Ay@~tAkDbn@cAtq@u@xrCy@jmBuArwAsBl_@iAhi@yClfBkLz_CeNx_C_HbmByE~`AsChjA{Gfu@qFbl@eFzwAkRng@yHvgA{RzoA{Ur|@qO`uAcYdgAuRbsB}e@pqCqb@liHmgA|nNajAl~AkO`wAaNlwAeNv~@wKfdCgZ~g@yG~mB{Up}AwR~Y{Dh]iDpZcBz`@PtE\\lKr@pPfAf[dEzOfENDzI~Bra@dQri@z]jWtSra@ne@x[z`@|\\~j@pzAh`DhSb_@rHlMdKrPrMrLdKzKnObNtKvHvKzGpNpHzNtFf_@dKda@zIr`@dJzUhI`S`KzRfPpHtHxLlO`MdSzH`PfI`TvEtOjEbQ~D|RjDvSzG`g@hE`[xE~YtH|^|F~TjFdPbJ`U`KbUpR~`@nKhVtL|[nGjV~B|IbM~p@bOv~@|Mdq@`Kl_@`KvY~JzTvHvM|FbJfBpCzEtGlBfChNvOzF`FxF~EnM|J~r@lg@pu@zi@jWdQvWvOvRzI~RtHlObExOdDhSbDlT`BfUd@`V]~Py@lmAmLlt@kFrm@kChBGlq@{F|McA|b@wCrl@iErr@}E`l@gE|XmB|\\qBnBG`HUrRCvM^jMnAdRxDzQ`FbXjM`\\xVd[z\\lG~HlDlEfXpd@vLdYzKd[rLzd@hC`KzbA|oEhU``AhVh~@XfApx@dfCnv@|jBn}A~rDx]|bAhd@~{AtDvNdMhf@nR|z@tJzf@n_@~mB|o@l_Dp@`Dn_@n`Bd_@rzA|rAd}E|Plp@t[zkA|b@|nBtUfjA`{@~}E`VllAfVdeAt[llAvRlk@nRdk@~m@~}AfT|d@zOb\\zOzZvOtY`P`YvRr[rMhSvEjHhPjUzPvUt]fb@nUhWtSxSvZxWxWnSlMjIpYjQ|YnOxQjIzQrHtShH`UrGdH~AxK~Cr^~GnM`B~XpCrQjAnW~@zFDlPHfOYfd@u@tYuBdr@oM~ZyHnXqIjX_KpT_J`WgM`W}Nx]kUtg@e]t~@mm@lcAaq@pYcP|z@s_@xZwJhr@mPnk@wMj}@}Rhv@uNvcA{SpxBa]fs@wDjr@Mxd@rAld@nDpfBzWzvAb[fPhDfP~Cna@pGjZhDdZ`ChZzAru@`@lUg@fUy@hUcB`U{BxZwDvZeFrv@uO~fBsa@n_BqVnyAcGnkAtD~XbC`[~Cpt@xJ`oA~Ql^|ExOnB``AtJhg@dDph@bBnWh@hXRdZKbZ_@~mBiNrt@eHfoEqj@xSyCzz@wLpfGww@ztEgm@zaEei@zjBwPn~A{HbgBgAfu@fDxr@~CnbB|Qzz@vNpv@xPrv@hSvv@pV~_An^r_A~b@hd@~Vxz@le@hw@bf@hxAx}@pdBlhAt{BtxA`mAfs@pb@xVrRbKjLvEnf@hSzb@fOt_@pLx`@tJp_@`Ibv@|K`k@bGre@tC|c@pBpuAoCbj@ZpYe@hSm@`vBoJthDuArnB`DhoBvH|v@zC~|@xFpxAbJrpApGvlAzC~nB|AzoAgBxeA{AbJU|}AcHl`BoLfwAkOfmCga@lr@uM~q@oMzvAs]~iA}[xzCg`A~xCu~@pg@wOb}B_o@f~Ai_@b}Ak[jrBk\\zhBqUtMgAt}AyObnB}Ln}@eDbnB}EbnBw@zcAr@|ABtjBzDlmBnJlc@xBtgBvNbMx@pj@vGl^fExjBjSfm@jG|^~Flf@xGhtCl[lcAnHfeBdKbn@`CjUr@zq@~A`JTn~@hA`~A|A~bC~BlyAdD|tAjFniAnHf`@fCleCbVhxBzZ~t@pLjnDrt@rm@bPh`A~VptAlb@bfBxl@toAbg@pyAtn@`eBvy@bDbBpn@|[fu@z_@bWnOpk@r[twDbrB|o@~ZldArd@nc@`PrMtFfc@dNze@jNb^fIll@zMj|@fOlu@xJv{@~Hnd@lCbnAdE~v@lBp_@XpUXlX^vi@fAveAxD|v@|Gbe@xFb_Bh\\zbCbp@|mA~[jq@zQtaCzo@p}Bxm@rUvFh|Afb@lpAd]hl@~OnlAb[xo@|Oll@xMzm@vLf`@jGzv@`KxZbDtZdCvb@bC|b@nBn`@t@pe@`@d]CpC?bU_@j\\m@ba@{Axc@mBdfAqHxbKcz@`hDmYtaDkW`a@qDla@qEdL{A|YgExYuFtU_ElV}Fdl@qPpp@}Ule@eSpWiMzU}LnYgPfX{P~QaMvRoNv]qXnSyPzEmEn`@s^zZ{[dDsDhS_UhFiGtQiTt_@af@lx@afAfiAc}AldB{|BxvBopCrg@em@bRyTfvAayA~KcLjm@kn@rF}FlBqBjn@_p@jdAsfAx^s^rq@eq@ly@ov@bo@wa@jLuHx`Ak]p_@oHhd@aGlq@aBfj@bDfDRxQdAndA~KPBjrAtOfVfBvz@dEjn@jA|g@cApe@sAzZgCnGk@jLgAtMyAtNyA|WsDv_@aIt^wH~QiEjEqAdqA}_@`fAo^hg@cQzYaLrd@mRpUsLhX_Qf`@aZ~a@qa@zRaVlRcY~W}c@`Xuk@tQ}f@zPki@jKca@lJcd@hF{ZbDmT|DkZbBoRhB{QpB}WtCch@rB}t@Ram@cAi~@kGqiAgHyu@iKo_AmLkqA_Fkt@aBum@[ue@h@}q@nDyv@|Gyr@vIqn@tLok@dQcm@dPcc@jWwi@p^cl@tb@ee@dHoGn\\{Wtq@i\\bcAi[b_Bma@bvBig@leAmUpp@_Nph@sGhNsA`Mm@fPi@fNArKEzLNnJf@v[dCjEh@jc@nF`VxBrrArRpYdDraB|Unh@~Enz@zFh\\~Alb@z@lDEtnAkA|rAwBzs@cHpv@iLt{@cOjn@oOnD{@~I{Bzl@gWva@kWf^g[dZg[|e@_i@piBesBtbAkkAhx@o}@zzAobBd{AcgBvFaHlPwR~d@ee@fm@qf@`QkK`e@gTt^gLbSqDbCc@nYmEr]aAbO^jCFt[bBxg@nI|XvHrZvMhYtO~OhKxVjQp_@~Y`u@rl@b^dXrP~KjXdN~WvLjPdG~P~GnTbElVzC~_@nAps@uCbSgDjZmIzc@aRxx@we@dbAes@zgAsw@xe@q]zL_H~TgMt_@wRp^_NzbBad@tn@oQz^iOhP_IpOqIzPiL`VeRnQkQ|NoP~LiNfNeQnHiMvKuShEaJzEwKjIsS~ImUlOof@|Nej@tSu~@tGaYnMuj@lJ_]fEqLhJaXjRec@pQwZ~RsXvZi[v[aWxXiNhYyKpOiDfPiCvZuCh[@pWhBzWdEvX`I~W`LlIlE~KlHhLrI~J|I~HjHbOtPpHrI`E~E`aAruAh^ph@pNjRzMzPdKfMtKpLbIzI~IdJjt@dt@jBjBb\\~[dMxNtJrLfPrTrI|MnHdLzCnGzCzGvCfGvChHpGdPjGdRnF`RvEfS`EvR|C`QpAfIhAhIdAjIz@vI~@tIj@`Iv@vIl@rIb@vIh@jJ^xIRfITbKPhJRvIPhJFfIBxJH~WVx`@Jz_@Xlj@NzIL~IPpJ\\rIVnJb@hI^zId@xJl@lH?@t@pI|@fJn@rI`AhHfAzJpA`IrAbI|AtIjAzHdBzH`B`H~AhInBvHhBfHvB|HxBjG~BjHrBdGjC|GfCdGnCbGnChGpC`GxDrHtBnExCvFt_@tp@xn@pbAvd@jv@vgAfgB`xAd{B`g@tv@pNzUvU|`@rYji@jHzNpZzq@~Wbx@pUjy@|Sjz@b^x}AfGbXzgA~yEhFzSxL~e@jYhiAxXjcAj\\jgAx^xhAre@rpAjInS|Qpa@rP``@vPt_@tOr\\rShb@rHbVj`@rw@rI|PhTzf@lNl`@zm@`dCri@zzBlTraAxIlf@l@fEtEj\\fDpZfDv_@pAbRnIxcBvD|jDpAlnAZ|VtAbrA`D|vCrBpiBvN~cMtJvoJpCjtCdAx`ArAzhAzAfcAnBz_Av@xY|Adi@vDnbAfFbjAhG|oAdGhmAfDtr@hFfnAtCv{@tB|x@bBrz@tAl|@lChkBxBlbBxBtbB`CpjBbC|kBvBphBdCljBdAdaApAp`AbDv~B`I`dG`CnoB|Mn{FzBfs@tCrs@`G|nApG|iAlIt{ArIr{AnOzmC`Nx`ChNnaCzSrwDjIr~A|GnvAlG|vAlIxvBxFh`BjE~wAlDnvAnCdkArCtwAlCzvAlC|vAxAtkAv@bbALtM\\ngA?zk@Ob~A{@lxAyBpmBeCp}AqJllEcLblEeH|}C_Axe@sDtsBiB~rAgAtjAi@vhAC`p@GddAn@t_BdAtwAn@rg@|C|{ADvBfDjpAnEloA~E|lAvFxlAfH`rAhJfvAjKtuAbL~rAxEjf@hO~yAbWdxBhChR|L``AhM|}@|K~t@xNx|@xO`_ArMvt@~Olz@bRv~@pX`qA~S`~@~Tt_A~Uv`Al~@`lDzh@vpBp[hlAvNxi@|Lff@pElShEzSnH|a@hFx_@dEl_@~C``@~Cpj@fBf_@dFdsAlNbiDzFlxAzChs@dCbc@bE|i@nCrYpDb[vHdh@nFxZ~FtYlJz`@bGlTzFzRrGjSzBpG~C~IrHxRfOp]~JtStMlVlOhV|O|UlJpMtLpNlVbWvMbNpPhNjQzMtSlMpQjKhSlKp[hO~TxLhNfH~NbIz{@jf@dm@df@fNzKv}@hv@|F|EzYvVr^j[pY`Vvm@de@~u@tg@zt@xe@vhA|s@|h@`]p`@`W`EjCvX~Ppr@rd@ll@hb@dTvRjf@xf@jo@jz@hOxUp]`m@nKtSpXfl@xTfl@bKtZ~Jf[`Szt@fS`~@lPx~@tHrl@rIty@rGn}@nCzh@nCzu@dEhoBtAhs@|BxkAbC`~@rAnZhKv_BnM~dA|@dGjLpq@ft@hlDxe@z{BtPhx@lPdm@bKpTfN~]fPrYjQtTxQxRpOjMxIhEpRlJnOnFzRtEr`@pE~}AL~pBoCxm@_@fbAgAhpB_Bn[Sj}BuEz~@yD`bDuXlbCi`@fj@_LlBa@hT_Frb@wIlgAqVxA[rGyAzMkC|`B{]dV{F`Du@ph@aMrHgBvOsDpcBqa@jbBs_@dVuF~~Cas@lmB{^xx@kLtz@cKj^yCh^cCt~@iEb_@cAvd@k@xt@FvqBbH~sB~P`eFt[~Mn@fi@fCnx@zBb[b@l\\Zzq@OzZUj\\w@jq@sBdZ{Azc@_DtfAkJz~@aLbl@oIjJsA|h@iIdc@}GbmAqRleA_Qxb@gGji@}G|w@iIjp@oElq@iD|i@sAfb@QbCAdXQb\\Jb[b@jn@|Ad~@rEzh@jEh`@zDrmAvNh\\nEhc@fGnfAjOnlAzOnRbCfEb@jj@jFjo@zEfWzAfUfAdp@nB~r@p@hu@]~@An[s@j[y@hy@wDz[oBx\\mCfx@aJpFw@tj@eIdUcDpZ}F`q@qNji@{M`p@eRzrAgb@`F}AvxAgf@t`Ccv@vRyEbZsHlEiAxZgHl`Csb@jkBcVlxBmZpo@qKn{@cQrIsA|UoGj|@gUdGaBtZqJ|YyJxp@gVjrB{}@pzAkz@~JyGhq@gd@|i@w^fG}E|q@mi@dj@me@faB}~A~eCywCfDeExg@en@jKqLvL_Od{@ibAzjBk|BfsBq{Bh\\y[v]c\\~gAs}@tgAax@nh@o\\j_@aVplAao@fnAkk@pT}I`d@mNfpAq^naC}a@pr@mFv\\}Aj[wAx\\{@z[SlMD~JRlXHz[x@~\\|AhUrAv\\nCr]nDfLrA`wE~x@xx@fOt_AdQ~cCzd@|x@zPvvArZxaC`m@z}@bXpZ~IxGtCfPbEfl@fQj}Anh@|sBpv@`dAz`@x~@z`@`{A|p@bi@pVjbCnlArgCnwA`zBrwAvnAv_Ate@p^fw@rp@lw@nu@`e@ze@bBhBtGzGzn@zq@ft@j|@bz@hfAfy@nkA`s@nhAno@rfAri@`bAptA|mC|eAr|B|cAdxBpe@|aAlf@b_A|b@zv@`d@zu@zZxe@l^zi@b]hf@|Yp`@nWj\\pm@rt@pe@zh@~|@`_A`t@~p@tv@xo@zh@ta@bhArv@~}@vj@pu@za@zk@tXx{@|]lq@jW`p@bUrr@vRfD~@bpAtZf_@~Grr@lLdp@tInmA`Lns@tFvy@xEx`BnJ~sApJhn@xGhLnAnn@hIxx@hMlz@hQxnBxg@~cAv]rlAzf@vsBrcAltBngAvkBn|@nvBzq@tiBt_@ru@rH~`BrJrlAfAr}AcEfoAqK|x@_L~k@uKza@}Jnb@mLjh@{Ob~CmfApwC{hA~sEidBdk@kXbs@se@zx@yo@fGaGpf@kg@p|@}fAdk@y|@xf@q_Atg@qkAn~A{kE~Wco@`Voe@fZkg@|Yub@`d@eg@n`@y^~YeUn[aSvg@uVl_@gObWoGxMeDvk@kJvh@kDvf@[le@xAjg@dGfaBzZdk@bKtx@xKzMhB~lAvI~sAPxz@yB~i@sD~tAiR|gAqWzf@wO~mA{^p{@kUj_AmNn_@mD~WgAfn@Ybp@zB|Hj@rmA`Nd}@|T~j@dTdh@zUxd@`Xn_@~Xt_@nZtv@pt@nb@`f@ta@vk@lXla@nUxb@bd@f|@hm@`nA~l@fgA`k@l|@vJhMhY~^vg@nl@lVpU~[hZf`@n[jf@b]p`@zTpz@xb@br@`Wri@zNj`AlQzf@dGtaAxL`pAbSriA`^td@lRde@xUx~@rl@vo@`j@nl@fl@rv@t_A`mBhkC|z@~cAxCtCpTpVpMxM~f@~c@te@~^lw@hi@zoAhs@xq@vXtx@nYpw@bRxz@|Nvm@rHzs@nF@?rv@dBfr@WpKEzn@wC`x@_H|fA{Qvz@sSh|@uWplBmp@ldAk[bk@uMhr@uKrzAqN~{AkCna@xA|Vz@bkAvJ~nExs@n|Bb^zkAbNtcBpLzwAfB|]U|aAk@`sBiMvqBcYvJqAh{Del@fLsBrqCed@tm@qMdNwCpz@}NhzBeTv_C}HvvCtDdf@dC|c@hDlkArMhcCt`@|ShD`cCh^veCz[z~@fGpbAhE|dCX~uAqGdtAaMdcAuNdbAmQxqB_i@brAig@f{@i^bg@mVbFmCfLgGjXyNn_Asi@h}BwtAht@ab@li@oY|i@sXlf@sTjf@_S`pAud@b~@mVpb@eKbz@gQbsAyR`ZuCvy@cHj|@{Dpx@sBldALnq@vAl|@pEphAvIfy@|KzbArPt~@pTdw@xR`u@xUxpB|q@rx@xWtu@hT~|@~Qz_AtM~g@pFzO|@jJf@`eBrDr}@sGnbCqUxs@{Dxn@Dfj@lAts@rJxj@|Kzi@pO`e@tSrh@|X~b@zY|j@nd@fu@|w@rn@r{@hf@b}@la@v}@r^nbAla@htAduBhdIp@jC~kC|hK|x@h}C|v@vzCdA|DvIt\\xmBhpHp[~lA|[hnAjMhf@nNbf@nH|UvNdd@tPpe@|Nl`@jYdq@`]bu@`]vp@~Xdg@rc@jt@~hAldBns@rjAdi@tbAz_@xy@xa@pcA|Xvv@t_@bnA`XxaAdQtu@rUxiAdg@`uCtd@dhCrX~uA`^~~Ap[jpAZnA~f@reBxs@rxBxa@xhAz`@`bAfeAd}BvmDx_Hrm@fpAtg@`mAnd@jjA~p@~lBzUdw@l_@`tAl]~rAv`@vfBra@~vBx_@``Ctr@lrEdXt`Br[~dBlIhb@rU`fAtYplAh`@`xArgAxpD|v@`oBjg@toAjs@h|AvPt^le@ncApxAj|CjnAf~C~eAl`Dlr@txCbr@|{ChiAxhGroAnaGfnAprEj[bdA`l@bgBzrBlgFxpCp~FnxA`{C|}Bz`FteC`pFnkCrqF|z@tjBhTl]vm@|aAdpB~|CdxBnqCdhB|pBjkCdzBtcC`_BlNvKlvDzeC`zAbdAtwA`lAp[pZlhBxbBpGtGdUzVx^ha@~g@tm@fb@th@td@|m@ln@||@fm@j~@zm@|_A|rAdsBx^~j@td@|q@|f@`s@`Zl`@r[fa@p[p`@ta@pe@z\\r_@l_@~`@n]j]vc@zb@pd@ta@hj@`e@rg@fa@zc@r\\xb@nZv\\|Tlc@tXhj@|[zd@dW~c@fUlf@|UlaAtb@|aAl`@`bA~^rcAf_@pdCt_AhaAnb@p`@|Q|`@tRfb@xTdpAbv@fb@jY~b@tZh~@|s@dDhCjb@r^|SpRnTpSdj@bj@hh@vj@nh@|l@nq@b{@~@lAf\\hc@hk@~w@dd@hp@ds@~cAfh@zu@|Wj_@za@`l@|d@lm@zh@xp@pXr[x\\t^fXtXr[~ZfDbDty@`r@vnA`_AleF`hCtlF|dDh_CbcCh`Bn_CpoA|lC|n@rbBxVnu@pTrv@fQ|o@fM`j@rN|p@bAtErT~jAvRblAtUj~Atf@ttDvWjnB|Q|oA`TrrAbPp|@zNfv@rP`x@rQvv@|Rxw@lQvp@|Rdr@dXj|@|Rtl@pSnl@lTdl@rY~t@zYlr@z_@fz@~`@jy@zMdWj]fo@bc@du@b_@pl@bg@bu@t^ng@n^hf@r~@liA`kBpzBjt@|z@hu@vz@bu@|x@`u@dw@`z@|z@`{@|y@|a@pa@vc@la@hc@~`@lb@p_@|BnB`m@rh@`q@dk@r_BbqAz~@xs@laApu@zXjTd[lVdZhUfCdBvS~Oxa@t[zn@pg@xh@|b@|d@|a@hh@re@r{@t{@bl@vm@bd@fg@du@z{@fv@t`Apw@leAzk@ty@heA|`Blc@tt@rg@b}@xa@|u@~Wvg@d\\to@dr@vxAhr@f{Axo@fvAhr@b{Ajq@dxAvWjh@zo@lmAnq@njAvl@t_Ajy@lmAbs@v`AbmAr`B~`AlqA`v@~eAzf@rt@le@dt@fh@t{@|u@|uA`Xth@l^pv@l`@zz@nV|k@vYzs@jAvCnp@fbB~m@~~Atf@xnAh^t{@|Zls@tSdc@xGdOz_@jv@vm@diAda@lr@x^vk@z^fj@rSjZl`@jh@xp@~y@z\\h`@~\\~^bo@vo@h^z\\fY`Wb`@j\\~c@b^fd@n\\vn@rb@pt@bd@rb@~Uxk@xY~n@vYlh@nTvp@fVlb@hNz[rJdD`Ans@xRx`@hKna@hKvp@fPn`ArVlkEdfApuAj]F@~t@|QrkA|[`VbH|GzBpFhBvHbCpd@|Nt[vLlYfLheAne@`ZlN~ZvOre@lWXNvZxPjd@fXj]bSzb@fYx`@vYjr@xh@~eAv|@lkAdhAxs@xt@nmBvtBdtAbxAjW`X~G|G~k@zk@jl@~h@ll@pf@~g@z`@he@f]xi@z^rm@fa@~e@h[`cA~p@n^~XhWhTla@v^v[h^vYj]f[nb@vW`a@ze@`z@|NxYjP~]bYtq@lOpa@`Mt^bJzYdQpn@nKnb@rIt_@bEpShGf[tFpZzGvd@vEh\\dGxf@fDdZ`Db^hD`a@~Dxj@vDdl@`IfsA~Evy@fElo@hDde@zBfYnEbf@pF|h@fEl^~ClVdG`c@fGdb@`Gh^vGx^vFxYxGf\\fI~^zKle@bIn[nJt]xMxc@fEjN~GzS|Kz\\z_@rfAz`@zeAtVpq@rLn]fH~SjEnNxKja@vFbUbElQnH`^nFrYlC~OrChRvCjTxC`V~BzTxBtUzCx`@zAhVjAlTrA|\\dAbb@h@x_@dAf`Ad@ro@LfOd@l`@^~Ul@hWz@~UjArYjAzTxA~TlA|O`ChXnAhMbB|O~BjRrCzTv@lFvDzVLx@hDhRbFvWnFlWlEnRvHrZ~DjNxE~ObFxPhKpZzG|QnHnQrGzObVnh@vIjPvVzf@|X`i@rK`TbLrUlQv_@hMvYrJ|UzHrS`I|TrG`SjIhWtHxW|FlTpElQ`FvSdFfTxEtUnFbYrHnb@`D`TvCpT`C`RlD`[r@zFrFdj@nCl[bB`VhB~ZjBv_@jAnYf@vQp@~Xj@b`@Pp^Cxp@Yr^i@r]oBns@gB|b@cEbq@qCp_@}Evh@aEd_@sBlPkHlh@}DjVqIze@gKfi@cJvb@qUpcAwg@r{BmPnu@kO`t@kRn_AkK|k@wKxl@gIrf@{Lrv@kFx]_Gfb@iGrd@cIno@iGji@yFlh@oDp^wDl`@yFpo@eFtn@}Epq@uD~k@wDzn@iCjd@QxEkCvm@uCdx@cCfw@aA|_@w@v`@q@l]o@`j@u@xr@[ll@Izm@Bl_AVdo@^ra@n@vf@x@tb@dA|c@pAzf@rAf^pAx]|B~g@~Cbm@vCne@rChb@pDlf@|Glz@zDhb@RhBvBbTrDj\\nHjn@bE~[~DhZ`Htf@`Jfl@bHdd@rIjg@hLbq@hRreAnLjq@lMnv@bEfWhFp]tJpr@pFvb@xDl\\bFvd@zEbf@~Cj^|Enm@lD|g@zBb`@nCli@xBrg@|Bjl@pB~m@lE`_BJpClAx_@bD~`AxBvk@zCho@nDjn@xD|l@tErk@zBjVrD`a@bCbWdDzZhDvYvBlQhC`S`G~b@~BtPhCpPpEfYpIrg@fHz`@hBhJzCdObKjg@dEzR~EjTdJv_@tGbXjIl\\bPpl@rJp]v_@vsAlNlg@vId[lJt^bEhPrEtRbFzTnDdPhFxVfGp[jDnQfE`WhHhd@lEp[tFtb@`Ffd@hE`c@hFln@pB|XfBtY|Brb@jBba@fAvZtA|h@~@xj@\\h_@HtXB`e@OdTQb\\e@``@_Ajc@kB|l@_Bnc@iD`p@oEpw@iHtkAeFv{@aCbd@cChg@}Bfi@gB~e@uApc@aA|d@iA`w@]|ZQzc@Ena@@dd@Zjn@b@tc@|@fh@nAhj@~Avj@~B~j@hDbs@jB`]lB`ZlCb_@~Chb@lDp`@tCrZfExa@zFvf@xFld@pHxi@bOtaArKhn@pKbj@tJrf@vL|i@nZvpA`YdcAfM|^tIpWhK~[dSrk@pPpc@fZnt@jLfX|Qda@|Rda@rQt]hRh]p[vj@bBtCbJ|Obb@lp@rVt]x`@~h@lUjXnRjUnPfR`PtPtLhLlKvJhZrZn[pZrj@|h@nc@`b@j{@`y@ny@dx@bNrLrx@lv@fSpRhg@~e@nQdPxdAtdAbe@~e@r\\n_@|c@xi@zObUpQnUxSfZtJpNfAbBzXxa@l_@dn@nVtb@fOnXh@hAtf@haAzd@hcAxH`QvA`D~IzSnLxYrWpq@`Nr_@jQ`i@rSro@bYnbAnR`u@Rt@fOhn@pK~d@tJfd@fMjo@dLln@fKvm@~Fb_@rLf{@`Jlr@dEr^nBbRtDv]jB~PP`C`AjL~Dbc@lFfo@vC|c@|Dfo@dD`p@|DnbAxCfbAzB~`Az@hj@x@xp@j@f_AvBfjBrAblA|AttAfCleBbD|oB`ExjDdCd{BnDj{CnDr~CzDrnDhBn|AnBn{Ar@hv@dAbw@r@ps@~@pq@r@j\\^rNxAp\\l@jKbAxQhAbPpCrYxDb[xEdYxDrT~FxWbIh[xEdPlIfVbKbXfFpLjMtWlNlVfOtTnJfMhK~LhKzK~QvPbHtFbHnFfFbD~RfMrWrL~FlC~KpDpLfDxMzCpOnCxLxAvL~@rRt@`JNvJIzHMfHc@vPqAdL}AlOiChNaDvQmFvUmI~WuKrh@{Upg@{TxTyHxOgFbK{C|MyC|KuB~LsBnUyC`TcCrVcC`WkBlM_DneKug@p_AsEpqBaHxfB{A|sAv@px@dCbs@fC|v@vEz`AxIz{@dIvq@pI||ArWpk@jLb}@xRhkA|YrgDl_AncAtW`cAjUho@vKleA`M`cAjGnx@tBfq@?daA{B|`AuGfBMb|@aL|aAoPvz@cS~t@cT~iAka@ngBeu@peIsaDzfDstAx}De~A`xBk{@pcBgr@hiBus@foAad@vo@oP`g@qKtm@qKbt@_I`_A}Ezr@u@jj@n@hl@rBrdA`Knq@dLni@pK`}@tWbu@xUt|@f\\dbCdz@blAzb@`bBvj@zhAd]bsA|\\btCxl@jaBb]leBr[dpBl^`fArOla@lFxKvAnn@|Fv@Fvl@hFl[vBf[lBlb@vB~\\zAtpAnC~PDbmAXjdAiA`Tk@zVo@|qAcEhy@cFpdCwNjiAkHzaAmErv@mDvu@}BvzAcB~z@Htz@nApr@~Ajr@`Dvf@rClf@pDbn@vFrd@jFru@tIxTdDd|AhUjgBza@pT~FtYzHxn@~Rxl@|S~MzEf_Ada@fk@dYth@vYfn@d_@~v@lh@ff@d_@v_@b[f`Ar{@zi@lj@|f@hj@pq@px@v_@xf@pg@lr@`}@xtA|v@vkAnaAn`B~f@n{@fl@|hAja@z|@nd@~dAn\\r}@vZb_AvZ`gAvPbq@rQby@h}A`_HpYtcApX|y@jS|j@d\\rr@zYvj@zd@jp@hUnX`i@di@vSzQvj@t]hYpOz[fOps@jTp_@fHdq@hG`s@z@bl@cC|i@wG~c@wJvf@_Pdr@cZzs@s]hjCq}AnxAwy@bLsG`m@oXdoAoh@v|@eZzw@eU~x@gRxv@_Npw@wK~i@}FrfAeHb_AsDf|@iAxjAd@hvArAnhAxA`aB|DhfCjLplApH|dArHxuAvMhzCh^voLnvB~f@dMlzCzu@rN`EtwEpfApdEro@xqEbe@`mDvWlaBzJr|Gxa@bcAnJfc@lE`c@zFvhAjQjv@rN~`@pHv`@|Iz_@rIzqAn^ht@hUxa@nNd{@tZtp@|W`p@vYlo@tYdn@z[~iA~k@ba@tSn{@vc@|~Afy@~g@lVpf@tTzCpAxcAxb@~^hN`]nMxIdDvi@xPxx@fVr}@hVta@hKbc@bK|\\lHza@rHhj@bJ`n@dJ|i@dH~k@fGhf@tEpg@~DrbAhGhb@lB`d@zAhr@xAf\\`@t]JpZAl[Y`y@eAjs@sBzw@}D|e@{Clg@cErg@cFbe@gFbj@aH~i@aItb@{Gp}@eO`~Ec}@`hAsTxeAmTzb@gIxdBgZ|gAgSxdAoStfAmRbfAsQr]mFj_AyLj^kE`a@{Dj`@kDp_@uCny@aFd]{An[eA|b@gAb]c@laAg@~^DvZX~A@hm@|@rq@`Bpr@tCfk@fDpj@lEpi@fFpr@xHhq@`Ir_AtKraAbLh_@|D~_@lDhq@`Erd@fAzg@@df@_Azb@uBxc@eDrj@cGvg@gItk@mL`\\wIj[gJra@cOv_@_P`f@qTnTgLlViNbg@{ZxRcNdXgSpQyNrRqPb^g\\x^q^rWuYnSwU|QuUh`@{h@|d@gs@lb@at@x[om@xUge@n]qt@~\\qt@l^gw@j_@ex@xy@}_Bp]mn@j]ul@d^wk@~_@ul@j_@gj@~a@wk@t^we@~c@ij@hf@ml@`i@wk@zg@ih@ri@wh@|RsQnMoLr`@}\\ld@}^ve@y^fn@cd@fq@}c@vf@kZzf@kYdg@kXvm@sZpWyLlVwKph@sTtl@qTtTcI`TyGzZcKjYmI`d@_MrKmChk@mNda@sIfXeF|p@iLva@gGzc@sFvp@gH|c@gDfy@mEb[_AfYw@pf@Y~c@Bv]d@hm@bBh_@lBdc@pCzj@jE|fAvOpAR`SdDdARtg@`Kjf@fLpe@lMhV|GxUtHhl@pS`u@nZ~s@h]dg@dWxe@xXxy@ji@dz@|m@pr@xj@v}BhqB^ZxeAx~@x|@bp@`l@n_@xfA`k@~h@~Tjr@zVte@xN~h@hNpi@fKtu@dNpn@~Hnn@zF@?zJx@~f@hDfg@~Blr@zBvm@r@paD_ApkBoHl|CyL|m@{Dlz@yEn|@yE|_BuIdl@yCpEU\\AnaBqJ|r@cEhw@kDf^gAf|@qCb`C}Dr{DYjPRth@Lhi@lAznA~BdoAlEdqAvFlwDhXbbAxIzpA`OzdAjMfeBbVnvBj_@j@Jto@xL~[bHjiCtj@|hCrp@pyC~~@fuB`r@fr@dWjk@lTfbDzqAhyAvj@ba@lNhCz@po@hSfhAnYzmB`^|_BdPdaBrIjaB`AjaBwD`_BsHboGgl@z`BqMjjAqEnd@gAbd@Vr_@\\j_@zA``@|Av_@lCp`AnKv_@nF~^lHfb@hJja@hKvb@dMjb@rNjuA~k@xk@zYvk@z[l]vTxVnQbeArx@prBxjB|wB`wBtlDlkD~yEbeDvmPv`JzvCfrAfm@zSdm@fSj{@xTh}@|Rz~@vOhi@vG~`@rEja@jCfaAtE|`AjBh|@Kp|@kCtJ]hl@kDtk@_F|fCqZrdAcSxJmBnmAw[jhAe]zaAq]nPwGrt@}Z`t@m\\h]qPx^iSp~@yf@pdA}j@`k@{YtuAeq@nq@{Xlz@oZzrCe|@f_Cgt@zaAe_@pa@aQh`@wQrUkLzYsOn`@sTv`@uUvYoQlhCg`B`YuP~S_MpRoK|OmI|LgG`VkLpYcM|LcFjLiEtZgKfMsDxLkDzRsEhNwCpMcCra@aGtQaBxQqAxQy@tVo@lRKlN@pMTvTr@pc@tCx[pDjTfD~Z`GNB`TfFf[|IhZhKnZtLf[hOdO|HrNnI`YpQrXhSjUbRdTlRhSzR|SxTpg@~k@t_@ne@haAhoApb@dj@vQbU|S~VdQfSdP`Qr\\|\\tWjWxSjRzUfSrW`T|X|Shl@pa@rUxNvVhOlf@~W`h@bWp{@|_@tbBxq@lnCzfAtxApk@rb@tOnc@dOpe@hOzf@tNjb@|Kj`@dJja@xIva@`Itb@pHxb@rG|c@`Gzb@xEvc@hEfwCnU~^hDbr@rHhk@lH~j@~In\\tFpnAzUpxAdXbhAfRb`@bFha@xEpc@nEvVzBzU`Bla@bC|]`B~c@|Axd@dApc@Xhy@E`o@q@`i@yAvp@yC|j@sD`w@_HdoAsOf@GdZaEvfA_OpU_DxXcDrYwCrh@mEhg@iDnsA}I|p@{Efh@mF|[wDzAS~XuDjx@mMn]kGdXuFnDs@rSiEndAaWnp@gRx~@sZ~lDupAhcAk]po@mRpm@yO`o@yOlo@wMt`AsOhiA_Ol_Du[|nAcMhd@}D|SsBjlB_RrnCw[|qAgRx|@uLnTyCfrByXnaDgd@|jBeQ|h@oB~h@uAhi@Wfi@Rrh@rCrh@tD~b@|E~b@`Gnc@xHla@zI`o@bQrk@pR|h@zSbs@`\\`w@hb@h`CxgBjdBtiBhkBdxBhjBjcCvkBfuBnnArlAhuAzkAxo@~g@~WlSfgAvs@v~EjbDpD`CveBfqAzn@pm@rr@tr@t`@zb@xMnKrj@np@he@~m@tQjVlQrVro@jaAdZte@`e@`y@nUhc@zU`e@tVvg@jVrh@fJnTfIbRxHxQhf@hoA~mAhdDrnAbcDhq@dvArVvh@fPb\\nRv]nd@tw@r|AfaClXl^rl@xu@rl@fu@z~B`jCvaEphEl^n^vxDpeEn}ArgBn|Bt|CbdB|iCt{@v~Apy@hdB`{@pzBfp@rtBzj@jvBpVnjA|Hle@rOndArObmAxJleAtjAx{PxNjyCv@vQvG|}AhBbaBPtkBaAt`A_DlfAcE~|@oFzv@oRhpBaZ|yBe]b_Beg@hmBmmBfkGoGlTaLb`@sMdh@yNfq@aJpi@uLvz@wH|}@kDdq@iB|t@a@rXGjYAx\\h@`]nCzy@jDlo@nGnr@tIrq@tKrq@vL|j@xNxl@pd@dbBne@haBjUvz@fQbs@rOvr@hN~o@vPn~@~NdaAvLncAfCzWnD|`@vDnd@`G~cArCzo@rBrr@pF`cCrB~s@hDxq@hHt_A`Lp}@jLnq@fPvv@`Phk@fKn[vLp\\bLhY`Qh_@dXrh@tTn]nTdZlSzVfXdYfPpOrGzFbL~IrTxOfT`Nt[pPjUtMvf@tTth@hV~\\rPzl@j]|_Ato@zu@~p@dfA|eArhAvjAxi@`n@bi@pn@fd@|h@fEjFz{BbsCx}ChzDpoBnyBx|@z_AviAlgAna@la@|uAnhAjmAt}@|_BteA`wArw@zx@rb@tn@rYn{Avl@xf@nQ|sAtd@`_Blc@tnAnWtvA~Vl}AdTvjBvOfvAdHbgA|Bz_A`@fcHgW~tXc}E|l@yGlaAyIpxC_Qb`E}BpuA`CzhFzWnLhAdd@lE`aBlSzo@tLdz@fPtiAhVzdDv}@F@byCvhAzeEpmBzrArt@tz@zh@`hAdv@to@he@jE~C|gAvz@prA|hAjkAbgAxiAbjAhhA~lAj}BreC|zDlnEtrAt{AllAztAflArtApzClhDrQrQjM`Nf_@d_@x_@t_@lbAv}@b`A~w@npBd{Afw@zg@|wA~|@rf@vXve@pWhzAlt@de@dVpf@fV|lA~k@`oBp`Afj@hXfGnCpPjKhbE~zBdZrQ`ZfR`t@de@|r@df@tu@hi@nXzTlXfUzK~I`LnIlYtSxW|SjWpUvr@no@bXjW~WrWrWnWpWtW~VjWzV~WzVxXbWbX~WlYnWdZtm@nr@|m@~s@zl@nr@fm@hs@jl@js@jl@~s@vk@~r@zUjYjV~XbVvXtUvYnU|XvUdXbm@tr@dVbYrVnXxk@hp@pm@hq@pVdXtVxW`n@vo@xn@no@jn@ln@`WzVdWjVjWdVnW~Ufp@|l@fWlUnWzTpp@|j@rWrTtWlTvo@vh@bX~SbXpSdq@vh@nq@`i@lq@xg@tXrSxXjS~q@jg@~q@|f@pr@dg@h_@hXzDrCjrAl`A`r@vg@lv@~j@zWfSpYfT`d@p]pLbJrn@`g@dhBnwAbp@ti@|i@~e@`j@~e@nc@t`@tc@na@nyAnwAdl@hl@nl@bk@xm@|q@vc@~e@dU~Vv[t^`VjXpUpXfVjYfVrYba@tf@`a@dg@rj@ds@fVr[zOrSb`@jh@dOjSzVn]vf@vq@ri@rv@pBrCnj@nx@vTz[tT`\\hTv[dCtDhPjVfTz[dxCnqEfi@by@`j@dz@tSf[hTd\\|i@~x@xi@fx@~Uh]bV`]xTd[zT|ZtTlZ|TlZrU~ZlUdZdUrYxU`ZlUfYrUhY`WjZ|LpN|RhUzU~WtUvWNP|VtXhVtWvV|W~VpWxYlZhl@bl@de@nc@rh@tf@th@ne@zWnU|WhUxW|TbXzTbXpTfXfTnXdTlXxSjXjSxXhSrXbSzXxR~XrRxXdRxX~QfY`RvY|QzXbQ`ZjQjYvPjYpPzYrPzYdPdYpOlZzObZjO`ZdOnu@v^lu@z]d[|NfXfPl[lNlu@p\\ft@p[nv@p\\fZnMfZjMhv@n\\pnCjjAbjFz|B~eE|eBlhFf{B|MzFlH~C||@jb@`jBru@ps@d[ltArn@nsD~cBrmBzdAd}BdtAxlBzfAhrBzuAt~G~oE``JjfGvkCx_Bv`DhfB~|@lb@baAza@pBx@hHxCzhA~a@fv@|Wz`A~XxpAx]vrAf\\n`EdaA`lA~Yht@pSbdAvZ`Y~Ixg@rQpi@vRps@tXhpAzh@nyA~s@b{BfbAldDlxA|_D~sApqBn|@bxB``A`aBrt@v`Atc@``B~r@bs@tZ~FhC~e@vSneAld@|eAja@|w@fUdThIfX~I`^jLxXbJla@~NhaAfXnf@dMhKlCdv@`Qvt@nMxi@nJjh@hItn@|I`r@~Gnu@lGzj@nEtm@~Ct_AnFhn@|@pa@X~FDvq@_Atm@M|\\_Ar{AoCfh@oCta@_Cbb@oC`q@mFrk@_DdgA}M`r@_JbqAmS~_AmNrz@oMryAmUlsA}TtlAmRfhA}Ohm@}Ibc@oDph@_Fdg@_Czg@}Api@o@fw@Nbe@?v_@?fj@lCbc@nC|\\~Br[nDxcAlMfh@nHddAlPlqBz\\ruClf@psCjc@j_A|KlX|Chs@`Ijp@|Gri@~D|k@~Ddt@~Dhk@lDr\\~@feB~@llBn@`a@_Bbc@o@xc@oAh\\oB~l@}B~{@_HncAmJbaA_Mba@}E|x@oLdf@}Ilp@_Njn@}N`UsF~n@oObk@wOrx@mUxvAag@n{@a\\zg@aSxmB{y@x_B{w@zbA{d@xzCwwA~cDwxAvbA}b@tfA_`@v|@wXna@}Knr@wQzk@_Oh_@cI|MeBvb@sJbl@oKdi@_H~}@sLrl@eGxfAwJfz@gEt|@sC|dA}BroA}@vm@?nj@zBnIJpTXh_AlDr{@lF~aAjHvi@dG~L~Axl@zHplAhLrGz@fpBzYfwCnf@`rBn[vdBbYbgDdg@tkAzQzeB~XplEpr@vDl@f_ApNzqA`QbaDfa@tn@~IznBnXjp@vHbQrBxfAhPB?|n@tM|t@tQ|Y`I`dA`[zGpBtoCpy@h]|L~WjIhUjGh@PteAl\\daC`w@|WpHxZvIze@zJxZhEnW~D`IlAna@nBnc@nBjsAnBhn@|@pe@p@b_@r@`}AtClcBtCfkBbDhf@r@|JFnjBlCje@vArl@?p`@k@|RcBhJm@b^aGlp@iLld@oPpw@o^fdBe`AbpA}r@`fCsuAxkDwoBvyAex@t}BcpA`u@u`@h{@qc@vf@{U|`Agb@v`Bim@|VmI~\\eKtXyHhK{Cn[aHjDu@~p@}Nro@oN|`@kHhOoCfi@}Ir]qEfv@wJfWeDr`Cm\\beBuTreAsN`|BuZriEak@tsF_t@``Hi~@ngGkx@dcFup@v{Gk}@beGav@~vFwm@lvFei@ldFie@|gA{Jx|@cIhe@gEnV{BtTcBvu@{HjuC{WxzBiSfhF_g@~h@oEvnAoLtjBsQfNoAlxAuMprDg]lNoAbrBsUv~@{L~q@kL~x@cOz]_HzPaEtp@_Pl|@eV~aAkZzmAwb@fxAek@hjAih@fRgJ`JmEh{A}t@xuA_t@pdCqrA~`Aah@x[yPfc@oT|H{DlgAcj@nrA_l@nq@kYlw@eZxz@iYzt@eT~p@mQhv@_Qzf@yJjhAmRjp@gI`m@qGpi@kEb_@oBjt@yDbEGd\\sAdWi@|Ya@~bAQ|z@ZpmAzBh}AlFniAdErm@pCl`@jAr]~@|j@Dzi@qAf_@sBb_@sDd[mEbWaFln@oNvr@wOjb@qI|d@oHtYuBpWwAl][j\\ZxZr@zd@tD`\\hEhh@|Gl_@tEj_@jC~\\vAh^NlYm@v`@kCxT_CpYyD|PkClQaEb_@yJd]aMh[}Mn[}NfWwO`^yUt^uXx\\uYlj@mh@`i@uj@xn@mt@ze@oj@bu@y~@fcActAng@ks@vf@yt@p|@usAvu@}mA|w@usAln@mfA|f@i{@d[si@tg@u|@rFsJzk@abAje@{w@d}@azA|[qi@jI}Lt|@uuAhaBkgC|`@}k@v~@spA`xAgkBplCkaDzkA_qA~eA}hA~p@ip@lkAwfAf_A}u@|s@}g@tq@gb@`e@iVnl@kX|X}Kl\\_Ljo@{Pb[aHf_@}Fdb@aEbl@yCb_@g@fF@`\\Fds@nCxPx@z[rDnl@tJnr@lPtThFvwD`bA|lBlg@xn@fP`pDh_AzTxFrh@jMjw@jQ~q@rLpj@vFph@`Dn]dA|`@Dj_@]lk@aDjf@uFni@qHrNiCpn@uMthAeYbr@}R~r@wUbk@gTrm@kWp@Ync@iUjd@uX`_@yXvSuOnk@_f@|q@_x@lr@q_AlQkWps@emAnaBiwCt}A}sC~~@waBvm@{fAdi@}z@tg@sw@`o@{}@b`@qf@zXi\\dXyYbX{W|VaUnXwU|VuQli@i]hi@qY|o@uYds@mUbt@uPhm@iLtt@aJb|@aIdo@}DpYiB`m@wB||@qCfjAgBngAIxn@f@nk@hBx^hCzb@~E~b@nF`j@nKpc@jJzZhIbWpIb\\|Lfp@vW~|A~v@||An}@dq@~_@|t@ra@l]zPrb@zSlt@p\\dt@hZhkAbd@dv@vWxY`K`LzD|}@b\\plAhb@llBdu@z_@xOnkBl_A~KvF|O`Id{@ng@fq@|a@na@fX`]fUb\\nUty@vn@j_Avv@nx@vq@flAhcAt~@`u@j_BfjA|fA|r@fs@fb@tr@v_@`cBzz@rx@z^j~@xb@dnAzk@xfB|y@dwAtt@loAhr@vlArq@v|Aj}@`xBhoAheC|wArgCnzA`kBhfAlcAvl@`bAtk@xp@ba@xV|NfWxMdg@bY`eBnbA~uAvy@`rAju@vsAfv@xU~LlfBl`AnbAlg@x|Avt@l}@xa@ju@j[bbA|`@f{@j\\lgAx_@xbA~[lvA~a@`hAfZ|_AzUrqAzYxmA|UnaAfQ|dA~O`TvCn\\lFtgCrYx_CzSryBrOx|AxIbCNriAvF~iAzG`tAfHvpAfHpoAbI~o@jFxv@vGbhAtLd|@lLpp@bKdbAdRxjAtVxi@|Nli@lOrI`CrBz@~bBvg@v`Az^h`Av`@jQxH~jAnj@hjAdm@xp@l_@xg@lZ`S|LjgAjq@|uB|tAdfBtiAro@v`@|h@~Zna@`T~_@rRbd@dSze@zRtc@zOf[lKri@dP~`@fKxm@~M|g@pJtu@jL`oBhUrnB|Sn|@xJxt@jJj_AjLhaA~NjnAbUxgA~Tl{@rSxz@pT|dAfZti@jQrzArh@~p@rWdr@pY`l@nWhk@dXhm@fZvk@pZhb@jU|a@`Vvx@nf@nk@x^lg@z\\ze@r\\jy@rm@tv@`m@p|@tt@lZtWn~@nz@fh@`g@ho@zo@dq@vr@hAlAro@pr@pkAlsAnbAdjApZ|\\`y@~}@pJtJ~^|_@r\\`[hN~L~PnN`R|N~^xXjYpRbZpQjRxKf_@xRz[`OxZhMpa@tOpo@hTtw@tTdx@nSv{@lR~rAjXzg@nKtfBp\\zn@nKjo@fLvs@nOva@nKxd@dNvj@bR`X~JrYzLjZzMr`@hR`o@b\\ts@p_@xg@fW|g@`Vb`@lQ|\\~NnR~Hln@rVdi@lRng@dPxc@dM`i@`Nbd@vJfb@bIxp@|Khr@dKrb@lGtj@dI`d@fHnd@zHlo@pMtT~E~SpFlP~ExPlFvTdIvYfMlZtOvl@d`@`VbRjTzRzPzPlKfLrO|QjLxNxOnTdRnYzNnVxMhV~NlZhH~OfL~WlLnZdK|Y~Kh]hItX~P~l@|Pdo@xLzc@tLdd@lCtJhLb`@tSvp@`GvPpLl\\tJpVhEnKpKbWbElJzMxXzM`XnXlf@jLvRhO`VpPjVnTbZpRlVbT|Vbj@nl@fc@pb@lZtXl[rXh^~Zz]hYxz@dp@d`@~Xna@fY`_@pVn_@~U??v`@vUzYlPlZlOxYzMzYxLf_@xMjFbBl]fKt\\fIvVzFbYjFfk@dKbo@pJvu@jKvl@~H~_Gxx@lbHf`AzaEvi@xaF`p@hoBfW|v@zJdx@nKriAfObD`@j_@tEz\\pEzhCv\\`LvAf^vE|YxD~YxDtw@lKnqA~P~t@hJxu@bJdo@xGf|@fHbo@zDph@vBzb@|@`[\\~YA~VCfLKvMYpLSfYy@hh@gCbk@_Ep`@wDni@uGp^sF|_@yGx^mHx]}Hth@{Mnb@_Mxd@aOxV_JvTmIjWaK|YoMlXoLpWwLjj@{WnlAum@|JkFtq@q_@fg@iXjm@c\\|{Auy@vuAqu@hkAwm@nq@a\\d^}OrZ}M`UoJzVuJne@sPdYgJzTsGrYaInYaHpb@qIxUcE~RyCxb@oFh\\eD`[{Bl\\qBbZu@r\\i@rPKrQ@tSNbTd@pM^vNf@jRdAxObAnS~A~TrB`TlCrUvC~f@`Ir^bHx^zHlYvGfa@bKv~@vVrf@fOpY`JnLpD~PlFnk@jQbBh@~WzI`aB|g@ldBpi@t}Avf@~|@|XriHb|BhdAn\\reAr]zgAr_@rhAp`@viAva@rnFnrBz{GvhCx_At^`WrJrtCjgA~`Bln@zva@xxOfrAhg@pkAhc@df@|Pxf@pP|_@bMnr@bTpt@`Spo@|Ohj@jLxc@jI`a@jG`r@vIrb@`Efk@fEpq@`Dfc@lA`c@p@h]Rvj@?jj@Ulc@k@vc@y@`_AyB|nD{Kdl@mBvtEaOx}GkTt_A_Cp`AoApeA]feAZxxAtBzj@|Abq@jCn_AtEd~@hGd\\dCl]vCln@`Gxo@dHjh@nGpd@lG|WpD|UvD|i@vI|l@pKtq@vMnw@nPri@dMnl@zN|sAz]zm@tOrzAp]psAlXbVvEtp@bLhc@|Gtb@hGni@pHri@rGlr@rHhq@lGfvArLzqGdj@p~Jxz@t{A|M|j@xFvj@xFlh@rHpSzCfUzDf\\fG~]pHtYhHbZfIlXjIbWpIhn@xUp]~Nl\\jOpVzLjl@n\\~k@b_@lh@p^lg@n`@zWxTjX|Utq@~m@t}Ad|ApdC`eChOpOfmAfmAzaAz`A~z@|w@xq@tm@rWzT~d@d_@lRhO~W~Rp^nWdYjRdt@fd@t_@jT|_@jSpb@nSde@lS|ZfM|[rLjZlKbk@dQ|f@dNbWnGd[|Gz^fHb`@xG~c@vGhg@|Fr|@hIjy@|Fnr@zDls@vCloAbF~t@~Cvu@nDzt@bEjv@|Env@xFvu@jGd_AfJp~@xJrh@jGnd@`GbDb@`uArRxbAzOjeAbRraAlRtaAhSfbAtThlAvYnfAdYlx@vTbx@~UfiA`^tiAv_@ho@bUjo@bVl~@|]r~@f_@dn@xWdjA`h@jjAvi@df@~Udg@`Wfg@bW`f@dWrmBnfAztAzx@zWlOt{@ne@fYvNra@zQfPhHfQlH`b@vOrg@`QvRhGt\\fJr\\fJxi@~LjTdEhUjEbUxDvUjDtY|DpZhDlV`C~\\rCp[tBhq@nDjbCnJfzN`k@t~AnGbd@zAxLV`f@~@zTFzUGjWi@~]cAx\\eBlb@uDtc@yFjb@wGzToElUeFnQiEh^kK~q@{ThgAa_@vsHygCnjC{|@jy@yXlrBcr@l}@{Zl^uMtZ}Lf]gNr\\{Nr^oPvt@k\\zh@gV~_@cQza@uQ`b@kP`_@}Mv[uK~UsHlZ_JdUkGh[eI`b@{Jr[yG~[iGd[iFlUkDzTyCb\\iErYsClZcCxHk@rUiBt[uBfk@wBvc@kAp[_@jk@K`hGfAtMB`JBjfBb@vz@Hnb@R~k@XzQZrPh@hMj@jMr@zMfArLlAlMzAlMjBhMnBvLbCrVhFpZzHbFzAhJnCvOfFf\\bMjS~IvNjHr]pQrXnPvKhHbNlJzHjGfB~AbCzBrNlNpeBt}Axa@x_@jh@jg@t\\j]`z@rs@bM`Kp]fVxOtLdj@fd@xuCj_Cjm@pg@beDnmCfqHfeGjo@|g@dW|Q~_@dWfQlKjRhKxNpHtQrIlXjLbZrK`QxFdWvHta@rJ|YvFpUlDvZzDrZdCxU~AhWz@xT^`ABtPD~RMtZg@r_@uAfU_BlWoCn[iE`i@gK|TuFvSyFlh@_QzYkLpSsIfY_OhP}IhR{KzQuLnR{MtP_MhTaQbT_R`UaTfTuTrUyWzZu^`w@k_Alk@_s@ji@su@vLqOhj@gs@rT_ZvUqYhQkSnL{LxLgLxLqKnQuNtRgNjY}PfOeIxP_IfR{HvOeFbK_D~S}EfSyDrXyD|QkBxTuAtTq@pPGpRTlQz@hJb@|WpB~Hr@hQ`DvFbA|RxEfUpG~R|GjS`IpNpGrPzIvc@|VjKpGfh@`[lNlIlOfIvSpJtT|IdUrHrStFzPxDtOrCbOvBj[`D|Mt@nQp@fPJ`TK~Ro@tP_Ah`@cEz`AwKj~BcXxyCc^`zC{^thCo[hsAkPpuDyd@d\\aEbtAoPjy@yKnf@_Izg@{Ilc@qIrc@oJzk@{M`k@{Ndl@aPrgA{\\xcAi^tm@yU`@Qnm@yU~yBe{@`bBoo@doAef@`mC_eA|~A_n@bhBmr@tc@}PxKcEbj@iShs@oUhp@sRn\\uI`_@aJfn@aNtl@_Lns@oLxPcCt[eEfe@qF`r@aG~u@{EzgAwEdoAoFvgDqMjbEkP`wB{IjaB}GvhBsHvlAmGns@cFrf@yDz[kClh@_G`g@oGfw@sLpg@yIlg@eKz`@yIf`@sJ~g@iNpa@{Llo@}Sxf@gQzj@cUz^mOx_@yP~^kQ~_@uRzWsNhWsNjh@qZzBqApY{Q~YsRjr@kf@fh@e`@xQaN|g@ob@|y@gu@hf@id@fp@oo@bCcCtiAoiA~n@oo@hl@yl@f\\q\\f_A_`AxOuNhn@gk@df@{a@vn@me@lG}DrXqTdf@}\\|c@mZpQaLn\\kSza@gVra@mTxX{Nlg@qVdj@kVpNyFpTyIti@{Rho@cUvt@sVjRkFtOkEft@kRjt@aQnb@qJpn@mNjYoGrSuEhf@wK~u@wPz{@uQvu@qPjj@sMxqAqYxtAo[xe@yKptCop@~lC}l@zs@cPtb@cK|PuD||C_q@jKqC~^sJx]gK|b@aOh[sN|R}Kxa@iWbUiQf[{Xn]s\\fnAuoAz}@a_A~uCczC`PwPrRwQ|FaGruCuyCd{@gz@~Q_PxRwO|MiKbRoMpX{Pn]yR|b@}Sdv@i[bWwJjHqCzPeGt|@q]dk@wTnR}FvR{EdQgChSqAbTPbOt@bSpC~InBnIxBlH`CjIjDtMtGxK|G~KnIxKfKzJ|Jb`@he@tn@rr@db@fd@fOtN|AxAhKhIfK|G|MpHfNtFzIlCrL|C~P|B`PbAlNDjO_@`S{B~UgFlRsGjLyGnGeEnHeGnFkFpBmB`NsM~c@gg@jk@kp@pl@}p@xXu\\t@{@~We]zUq]xF_JxOaZhKqTxOk]rJeUn_@u~@pNa]`B{Dzt@ahBrBkFzD}JvEwLlPi_@jRs_@vUib@xVeb@rn@gcAnm@geAr}@qcBlZem@`a@ky@lQ}]rQy]tPoZ~P{[pSe_@pr@khA|K_QnIsMzDeH~AwCz_@wp@h`AorBdHsWn~@ciDhRme@le@mkAheAebBpTk]taBejCjTe]taBajCjJcOhHgJxZu`@xhBelBfT}U`EwElEyFxEiH`CqEjCyFvBsFjBsFzVw|@tI{[pBcIbB{H~EiV|BuMfF_]bAmFlAkEbA_DhAcDfBcErD}HtAcDdAqCv@mCpAyEfy@muD~@mDbA{DjAmDpAyCnGuMrVsd@hHuMjCqD`BcBpB_BfBw@`A[`AOnAIlAAhADpATzAd@fAb@x@`@xElDrEnEpI`JjF|EdRrO~VvQn[rU~VjRbVhRf^f[`oNrdL|XtU`ZpUbH|Fd^~Yfk@je@vtAvhAbK`IhQbNvFlE|GlFv\\hY`At@pa@n\\vZ`VlF|ClDdB~B`ArBp@`Cd@dBVjBTvBJlB@tBI|BOjBUrBc@dBe@nBo@xAq@lVwM|OqH~B_AdFiB~E_BfIoBvOaDpgAmS`|B_b@d^mG`^kGf}@iOvb@eG~rC}_@`TiDdMkCxLsC|LoDxLwDxG}BvHsCrY}Ln_DuuAh[iNxSoJ|H}DjHwDhI{EtH}E`EiC~PyLxJyHlKwIxMyL`M{LzNyO~H_J|FoHtGiIpFwHfGqIpDqFrEcHpHeMtHwMbHqMjHsNvGqNdGcN`GwNtGuPxt@gpBfEuKdCmGrCuGjC{FzFeLnHoM~HaMlIeLdGiH~FmG`K_KvJeJhq@wo@RSfcCe_Cf}A}yAjWuVjE{DrD{C`DgCxEkDdEuChEmC~EsChEyBzEwBdHsClFkBxPaE|SoDlWcD`bAwMrs@qKlKuApIuAfLwCpMgE~JqDpKkF~HoExGaEbHoEdHsFlGsF`GyF|FkGjFoGxFoHjFsHhFmInEuH~MeXtFqJpwD__IdEoIhJcQxCqErE}FvDiEnMsMhFmEtEoDrGyElGyD`EiCtEeCvFcCfPsFxFcB`FwAxKaC`IsAdJqAbjHkfA`g@oH|ZgErh@uFlh@}Dj~D_YpbDgUxN}@vS_AdNi@lSe@nRMvFCjAAtM?xNPzNV~Sj@zT`AzO`AdSzAvWdCtXnDr[bFvPrCzQtDj\\xHl^vJ|PnFxSdHfTzHpPzGfP`HryA|o@xq@xZzq@|Y`TzIpSlIbk@~T`e@dQne@zP|p@lUd[lKpi@|P~QxF~VxHnfArZtp@|Q|b@xLpb@tMvTnHdTtHnWrJjW|Jnh@vTvSpJjSvJpPjIbPnIxRlK`P|IdOvIbMvHhOfJxOzJ`RbM`UtOhTpO|S|OhStOpXhTxXbUbXlTnXbU`b@z]bb@h^lp@dl@t^f\\lf@fd@jr@tp@`k@hj@v_@x_@~l@|m@`T|TtXvYjXbZri@|l@~~@hdA`WrX`W`XbXlXtMpM`NzMnP`P`NpMze@dc@rg@hc@`RtOzQfOhc@h]j^xXra@bZ~LvIrMhJxXhRpYbRxY|QvYpQrY|PjZ~Plr@t_@|mAtn@j\\bPn\\`Phc@bS|c@`S~`@bQ|c@fRpg@lS|i@tSnh@pR|eAn_@xzA|h@zo@`Vro@|VfZ|LhZ`MvYbMvYnMrg@nUzf@xU|f@nV|_@|Rjf@jWh`@dT|^vSt_@xT~^tThRlLdRvLzUzO`UvO~WvRdW~R|]zYr]xZhb@t`@nVfVbWjWtLdMhMlNvO~P`PvQne@jj@jVvZrYh_@xTjZ~X|`@fn@x}@dSnYlQhWpS|XnTxXnOdRfPnRzOhQjPbQrV~UbNtLbHfG~JhI`LbIpQjL|L|G|KtFjL`F`LnEfMnEtSdGtHnBfIbBnKhBbL|A`LjAvE^|E`@dLf@nL\\jEFxE@rKEvUg@p]iAfj@uCvh@kDrh@{D|i@oFfaAuKzd@kG|RyCxOaC~a@uGza@mHtb@mIlg@eKby@eRraAkWjdAsZptAcc@xZmKzwAsj@~VoIta@qP??ff@kSx|@m_@vAm@lO_HzI}DjN_Gpe@uThu@_^~b@}Shb@wSb[}Ol`@kS~LiGrOaJpKqGvMgJhJcH~ImH`HeGfLmKfKkKrPoRzO_SfL_PzIiMbH_LpNgVhOqYvNc[zLkZ~M}^|Xix@bGoPxKoXjLwXjHmPvHuOtMiWjOyXrM}TbC{DrFyIbKmOdJ}MxJ}MpT_YfPmRnOuPlQmQlQeQlRyPvQaOvP_MrTaOtR_MjRmKdWuMtLuFnU}JpPwGt]aNbYeLtO_H`P}HpXuNvY}Prb@mX|SmNhToO`d@c\\pn@ce@by@ao@ldAuy@p`@k\\ld@k`@dd@o`@~x@it@fq@an@bg@ue@|v@{u@n[u[rZg[rd@kf@b[i]hZi]n]qa@x\\ab@dW}[`Vm[hZka@`Zya@tZ}c@nQiXnP_XxZgh@xUgb@rRg^vQg^vPe^bEcJdW}j@rDoIpIqSdQsc@jNi_@|GyRxFiPdPqf@`HoUlLwa@fNmi@vMqi@bGyX~FaYzDkTfB_L|AuJdEk\\jBoT~@kN\\sIj@oL\\{MR{SC{MGmM]_Pi@gO_AoViAkUyC_r@mAgd@AyCMaRLkS^uOf@eNnA{RjAuMzAiNxDgX|E{U`FiSlFiQnI{T|L_WnLwS|N_SpIoJxMuMhH_GdIeGrFsDdGiDxFqCtKeFdMqEfsDylA`VgIrQ_Gn\\cLnZqKx`@mPxY}NhRaL`RgMpRoNzTuQjd@c`@bk@ke@vUuQhRwL|PwJhNwH|QwIhRuHdOiFnSkGfTcF`T{D|UwCpQcB~TkAlUe@rRFlQVrQn@nPjBvQ`CtS`DnRvDrPtE~UfH`W~Iv^zN~n@fVdq@bXpWrJbRnGpPzE~OfD`FbAbPbCnRhBvQpAha@zA~\\|@l]fB~QpBbP`CpPjDvTtGzPxGn[nPbV|PpSlQhOzOjNtPdK`O~L|RrNlX|JrTrKtYzGfSjIzXvJb]dg@xfBzPhn@tP`l@vNnf@`JbX`H|QrKtVjJ~Q`MfTtJbO~KnOpNxPvMbNrUbU`j@fh@bKtJzSdSfUjTdZjYfK~KnJbLbC`DtJjM`K~OxJbQfIhP`HlOfKxWnLh]x@dCtL`_@xGdRhGfPhEpJlFpKbFlJzC`FrBbDnLtPxNzPhHtH`EnD`JjIhMvJpRrKfNrGdM`EpP`FbM~BbL|AfM`AzQh@~KC`PW~Ws@|j@}AzvB{Gva@g@bNNfRnA`Jz@~KfBjMnCbKxClLdE|JxEdMbHjHzEzP|NpIfIbJvJzPfTnVz]fRzZjj@~u@lXv_@tRnXlPtTlQzSpTvTjQbPpQlNzNtI~QlIzOpFrLdDvOzC~RnCrCPzIh@nODjLMdNq@|MkBhMeC|OoDvJqDjNwFxXqNxg@gW`x@oa@pQiJxQuGnNmDtLkBzKqApKw@nMQ~PH`WlAbJbAbJlApOtD|NjE|eA~[vu@zTvAb@`B`@pHfB|OvDh^vI|OxD`s@fMtm@lIv}@lJhJ`AhJXbRW`QoEl|@sGlPgApn@gE~f@aA~p@kCnDMpaCmHhSi@v`@gAbc@_@~_@@`f@HzZZtf@fAjP\\rv@tC|k@|Bzp@zEj^xCd^dDjl@~Gtp@lIti@zHzj@pJdv@tNdARlDl@|aAnSzX`Grs@nO`n@pMds@dOn|A|\\tqDxv@`gDrr@vqB~b@ll@jMrv@fP|i@fL~s@lOtq@vN~p@rNjrAbYjwBrd@`{Ble@jd@rJnd@rJj`@tItU~DtRtCtUjCxb@vClW|@~Yb@|VNp[SrMWdc@gBnNmA~PiBvb@eG~HuA~ZqFrc@iL~XwIf^wMpXuLvLkFxg@qThl@kWvj@aVrVgM|c@eTjQgIjQaHdSwGhPuF~SuFjTeEtTaErQoCdTeCx[_CvYoAtYUpSZvRZj[l@pUlBtUpCb\\fFra@xIlYbIzSzGxQ|GdQnH`RtIpWxMb[xQpSdN`O~KnVdSbWzU`]j[l`@l^zf@|d@tk@ni@ntA|oAvd@vb@|YnXxl@tj@tK~J`MfLh~BrwBl_CfyBlhA~dA`x@rt@tz@lw@z[jZf}@hz@dyAltAdg@`d@|b@d]`GhExNlKn[zSlWnOpYdP|W~MnWnLzc@|Qj[|KxWjIdHxBrWpHve@nL~YhGnQnCxO`CxU|CtYtCl[rBrWhArVj@zWPfRC`RQ~V}@~TkAjH_@vWuAhM]|Oc@b_@[d\\PtWb@jUz@~]nBnS`Bna@lEl`@bF`v@hKxq@fJt`@hFlMdBza@xFnc@tFbWtCrRz@bQJlMKtQeAfUaCrOsCxMcDtUgIzPkHlPaJzQsLnQyNnXqXbp@ar@nRoPvNiKtLsHvUcLdX_KdTqF|MgClNeBhPoAvLa@xJEpORzSlAzNbBjOpCj`@hIxT`FjnAlWxbA`TbVdF~d@vJnd@`Jx`@nHxZdFl]bF|p@pIdw@zI~_AnKltApOrt@fHf\\vBtYrArIJv[b@xDFnWFlUIvg@gBnd@gCfc@gDne@{Fd}@qOrlCse@pf@yI`eDql@`{Baa@d|Boa@lQ_D|`BqYth@oJjZsFnQ}Cz~@oP??tlBe]dcAsQht@kMvr@oKr`@{Fhk@qHvj@eH~~@_Kjd@kEj{@wHfy@iGdn@qDzCOta@{B~Mo@jKe@|f@iBby@{BnnAcCh|@o@v[EdWEhRAfULbRHrU\\tQHfZ\\nk@~@vs@pB`FNvJXx_@jA|Ux@nk@nBraAzCreA`Dr}@hCxf@PxX[zRk@zScAjWoBzT_CnVgDhReD|\\qGh\\gIh`@yLpc@aQr`@iQnGkDjS{KjWoOfK}G|\\sVbW{R~UwS|UkUnVqWtQaTpQaUjVk\\nXqa@by@inArz@ipAlSsZjRaYxPiTzN}PrN}N~OqOdRaPhR{NdNmJlVeOrR}JzSsJdTwInJuCxEaBfWyGzXmGpMkBbZ{C|T}AbPk@lQUjRDtTj@nWtAlTzB~PhCnTvDj[tH~o@pPdq@~Px`@bKni@pN|e@|Lf]vH~TbE~W~DzTrB~UpAzTn@lRArYg@bZoBfb@}Eje@uJj]kJlXcKf]wP|Aw@|YiOz[gUx[eWrb@i^nc@w_@|e@ya@dlBoaB~lB{aBtgAk_Apc@s`@hd@u`@lq@gl@bQiOjWkTvSeQpXiU~f@m`@bb@aZv`@aWzYmPxXqN~c@qS|a@qPdi@iQtc@}Lxj@aMrc@oHr`@gFvl@aFfc@yBza@{@ld@OxY\\v]hA|jAdHfzArMxJt@dg@fEj\\xC||AbNpp@tFdd@|Dz_@vC``@lCn`@vAte@Z|f@cAn[kB|`@aEnc@iHtd@eKt]iKfb@sO|a@wRvp@i_@bU{O|SeP~ZiWbUyTl`@{c@lZk_@tP}UfUm_@~Qa\\n]cq@pRw`@vIuPvWcf@lZqe@d_@gf@f[}\\jXaV|XkTzTkOvNeIr]cQxa@kQjb@mQza@cQteAuc@ljCehAbd@kTrb@aVvc@mYf`@{Yr]aZzYiYrg@ik@rl@uu@zl@cw@pd@qi@xb@ce@`e@kd@ff@ec@jXaUvQwNzNwK`l@ea@fYqQxQeLbh@kXto@yZhl@yV~w@wYt`AaZj|@mV|cAeXnVmH~m@eQ`WcJ`\\yL|UiLtZkQxM{IvLeIjSkPhCuBhWwVpc@og@nV_]rU}^xVue@~Xmo@xMi^`Ma`@|Q{q@tPau@rGaZxHu]xIq^|Jq]zJ}ZlNi`@tQub@fRk_@xNeWz]_i@~NsRtRyT|Ze[t[mXvT_PhSgM~ZmPzY_MjYeKxXyHxWuFpUmDrVqC`[aBfWe@hQD|Yh@p_@rCf]nEna@dItOxEnUpHfj@hR|a@nMnXhGnSvDzZ~Dr\\dCxZj@dXJpP_@fNq@nY_CpZeEpViEdUsFrSgGpa@{O~ZcOze@cZhZ{TxVgTbu@}q@bk@mh@|x@}u@|a@s[`SwMdVkN`VmLnZ_Mvc@aNnWyFd\\gFxVkDht@mKne@qKva@{M|XuL|WeNnS_MfWgQnW_SbXiT`SuPpVqTvc@w^j\\wVhRqN~NwJn\\oSf_@{Sxa@cS~h@gUjYkKf_@{LbQyErVyGdZuGh]_G|WaEtXcDn\\aDxZsBph@uBdUYz^Ohk@h@hi@nA`oB~DxoBdEloBbE|nBfEvMLhnAnCr|@vB`eAbC~`@p@`b@`AhnAdC`{ApCvqAxCzs@|A|f@r@pQBnr@y@nNw@r^oBpe@aFrf@aI|_@mI|WmHz_@eMla@}Obk@aXrk@m[fH{Dbt@ab@tn@_]fa@_R``@{Ova@_Oz`@cMjn@kPtn@gOtaAaUtu@_QhKaCb}@gSdjAwWthAkWf_Bq^hm@cNfp@kOn~@{Sdj@wK~m@kIf]{Cl`@mB|n@}@pr@vAvo@lEzt@~Jfm@jMp`@~Kvg@rQr`@vPtg@rW`e@lYle@l]xVvSpWhVh^v^xd@zi@~~@lkArt@`_Al]bb@dn@|r@lr@jr@vr@nm@`y@vo@t|@dr@jtBb`BzkFbbEtl@fc@dn@x_@zZrOj_@rOh_@~Ldd@nL~c@|Hpd@fFt`@xB~^p@f_@Wpc@{A|i@_Glh@wIfUiFt}@mTjc@aJv_@qFb^aDtb@gB~b@O|_@p@dp@lEpa@vDb_@bEjBRhb@pGze@vJvh@lNn^|K~_@xNn_@rPd_@fRvk@d]v\\jUlb@~[b\\dYz`@l`@~_@lb@jY|]vt@rbA`[vc@~d@rm@tX~[|\\p]nb@d^jVdQ`UzMj[bPfP~GfSzHp^dK`a@`Jbc@zFt_@fCv`@p@h]Ux[oB|ZcDj]_Gb[_Hr[}JjSoIzKsEpCkAnOkHpEwBx^gUt]uWvRcQ~QeQls@kr@bOaNva@{]d|@ip@rVePr`@mWjg@kYdc@yTbj@cWp{@y\\|~@aZzt@wQxh@sKz~@cNh{@wIxx@aFlrBiLxrBoLvdBmJ`hAqGzgCuNvwAsHfj@cBdb@g@zd@A~c@Xp}@jCdm@dDvk@zEv_AxKlmAtS~{Ax\\b}A`]ti@nL`i@xJ|q@~Kpr@lKjp@~Hxy@xIbiArItf@nCtf@vBlb@zAjb@bArdAjAbe@D~g@Qdp@s@fSe@hk@kBvl@gCvl@eDzIe@`RaAba@yB|lA}GvyAyHzq@yDx_@}Bnb@uBpd@kB`t@eA~s@Hpp@f@|e@bApaAhBlsAtBhsAfClhApBxhArB|p@`@xm@a@leA}CfbAkGfo@oG~o@wIx`@eGdO}Cld@iJfw@uQjc@_MdTgHju@cWnj@kTxk@cWdn@wZl{@af@dvA}v@xr@c^p\\sN`\\yLh[{JnPkEdb@_K|XuEfEs@f^{Et^{Cx\\mBvu@mBvhBy@xi@aAxy@sDba@yDxMoAno@cJ`De@tu@qNnImCbOwEjN_EtFiBbBi@pKiD~\\kLlh@cSvcAec@`f@gSt_@gOz|@c]bI{BjLcDlVaFxWcEhDi@fXaChRiAlO[pOKtRNrSt@jRbAtQhBpWpDnOtCxb@lIvi@zKjs@`Npi@nLdc@lKzVjF~`@pEt[xBz]f@`a@eAn`@gDt_@cHh`@{LlXwLde@iWd[gPva@gRd_@cOrVoIdNqEtk@uOxnAkYdb@uJrb@{Jza@cI`e@mH|u@cIjsAuMduAgN|AOdHs@xVgCz^wFtg@wMld@{P`b@iTnc@iW|WwLzWiJvX{Gd\\yEv[sBn\\_@jZdA~YtCv]pGlE~@h]hHn|@dR`o@jJlb@bDxc@rBvp@zCjrArFfm@rCxa@hDv^lGhVfGl[vJ~c@hRfa@`Tn^dVpZlVlZlYbYp[to@zy@tZh^zXrXlq@jj@vx@~n@br@pi@~OdMjl@vd@zc@t]tt@zk@ve@|^dg@p_@rZdTda@fWlMrH`t@`^rc@bQ`e@bOvt@nQhe@rHnq@xG`[fBt_@bAho@Axq@mBdfBaIdcBkGjq@cAvu@Ojd@Xf_@t@xt@zCbu@`Fl\\zCxAN~J`Azq@~Htz@`LrfAfO|TlDjr@jKzeCb^hf@dH`~@jN`|@zNje@zHxe@bJbe@~Jjn@tO|k@jPpgAf\\h~@xZxPbGfSdHlg@zPhrBps@fZbKfHbCju@~WniC~}@h}DluAjlAza@~cAn^vXvJrSjHrh@pQ~IzCdSfHvx@bWnj@xN~NlDd[zHfm@~Lrv@bMru@pJ|q@hG~e@bDpk@~Bh^v@fj@h@dk@Qp`@i@``@}Adn@wCzWsBnZaCdX_Cvb@wEnnAgP~oBaZz~AgTfW_Dxk@_G|_@yD|d@aDhk@yCnU_AxZs@t^oAjdAi@ndAx@xdAvClpAxH`h@rEhnA|MxdCf[jxAzR~`Cl[htCz_@v]vEdiFjr@tjBpXzb@vFnf@fHjt@tKhnArQnh@bIntBv[bqB|ZnpCnb@v`Fjv@ziCda@vkA|RjgAjRxu@nOn`@`Jxy@nSlfCxs@hhDveAzvBlt@fdA~`@n`A~a@zz@ha@xaAvh@~k@|\\bl@p^vy@nj@haAbs@x|@|q@jd@f_@dg@t`@dG|Exa@l\\~}@pt@dz@dq@ts@fk@tqAfeAdi@zc@fk@rc@~r@~j@~X~Tpv@bn@lv@`n@~u@xm@tv@dp@lXdWrVdV|]l_@|Xr[bZt^pUj[xVz]t`@xm@fW|b@nTza@f[ln@pWvj@xRje@pOda@`Whs@pTxq@|Mvd@~T`|@rMdi@pKvh@nYz}Af\\htBv[`xBxDtWzYflBtUhsAjQh}@|Ntq@fGdWxPjp@~Vd}@x`@`nAxUxo@l^v}@`S|c@zX`l@`Wxf@th@r~@~a@~o@|e@br@vf@bo@|a@rf@j\\d^|v@|u@d{@xt@|v@fm@f|@nm@jaArm@zHtEbl@x\\bkBvaAbTbK|o@h[tp@h[hPvHj[pNh^bPxe@~Sl`Azb@ln@vX|CvA`Q~H~P|Hj|@l`@br@|Zvl@bXvb@lRjg@~T~q@zZ`]rOrGrCxCrAbnB|z@fg@`Tlx@n[fi@|Q~d@lNnc@vL~h@vLjy@~N~d@pG|e@dF|NnAzd@rCpUlAnd@tAl^d@tb@Cxg@c@je@mAxaAeErsAyH|\\_Dt_AkGzi@mCzZiA~]w@p]Yb]B`c@l@x[`A|i@fCpYfBdb@hEjOzB~HjAjx@hLln@jMd{@vTvs@rSx`@jMzj@rQnw@|Ut^jKl`@~Jha@bJdUvExNvC~[hFrb@`Fli@zFt\\pC|g@zD`h@zDf{@fG~n@nExp@vErb@tCpc@rCbt@vDj^fBfX~@tc@nAxDJtn@tAfq@p@r}@Cnr@y@xf@y@lj@aBf`@cBfYsAph@iDrt@}F~`AwJ~{@eKjr@qJl_@{Fzr@cLf`BmX~bBaYb`AwO`M{BdXsEh`@eHpj@cKv`@mIhb@{Ixf@kLxu@sSjHqBfd@yN`k@_St_@aOdb@aQf_@iPbh@sVli@mYbv@{b@r~@ok@fpAoz@hoAiz@x_@mVnc@}W~`@qTzm@iYhp@wWfn@wSxm@qPvg@eLxe@wI~j@aIl_@{Dpa@yCj^gBbi@qAhc@]~b@b@pi@~@|Zx@j_@vAreAhEz|@`Drm@zBri@pBhPn@|pCjKfgB`Hdh@dC`Yr@fs@jCj~@dErjAxFrkAxGfrAbKfcA~J~]|D|a@bF~{@zL`sAxTfrAxV~rBlc@ftBdf@pFpAp_@bJdz@xRhi@xKvb@xHfl@jJhf@`Hje@pGn\\tDx^dDxd@xD~c@zC|i@zCbq@dClc@~@vr@x@vb@Jn[Adf@i@|[[|vC}JjnCeNtwCuLpqAaE~wBqFnz@aBl_AuAndAoAzh@a@ff@i@`g@Mpm@]hn@IteAA|k@Rne@Hbl@V`r@Jpp@Pl}@Jv|@Uju@a@vq@u@dl@oA|d@sAnk@uBlt@eDbg@uCpl@}Dvf@wD~a@sD``@uDbe@aFnMwA~h@qHvs@gJro@cKry@cOxj@{Ktf@yKpGwAva@sJrEeAbl@qOnp@cS~p@qThp@aU`o@kU`u@{[|iAug@tz@aa@d_@iQb_@}Phs@e\\hx@w^jl@mWnt@yZx@]ja@uPzg@oSrj@eTbf@wQxO_GpdA_^hc@cOpwAsf@vWwIzgCa}@xkByo@dkB}o@dz@sYzz@kYno@}Slh@kP~n@eRbn@wPz_@yJx`@wJfi@cM|i@yL|q@iNjy@_Olj@iJ`q@aKzm@mIlh@sG~b@_Frj@}Fv{@{Hlt@kF~l@mDl_AwEpaAcDx}@aBje@i@pe@Mjm@\\na@t@fTx@l^nAfX|Ar_@pCdg@xErm@pHrk@~Inj@lKvl@vM~o@`PzlAr[joA|]|NdEdvA`a@ju@jUvs@`TvoA`a@fy@dXj|@dZfuBht@xt@zWft@lXxq@rWv`@fPzQvHrPzGfgAtd@nr@|[n_@zRp_@lStl@l]fk@|\\nl@r^zb@nYdk@fa@xjAb}@pdAt}@zgA~eAbjAdmArv@j}@rv@z`Axa@hj@z`@nj@d_@pj@dW~_@dTr\\hd@zu@jXle@zXdg@jT|`@vKhSrP`[dN|WtUfd@vVpf@xWjh@`a@fw@nm@|jA`]do@j[bl@rXpf@jU|_@fRzZ|Rh[`PlV~]`h@rUd\\``@bh@xPrSh_@tc@nZj\\~TtU`YfYvXtW~`@`^tc@t^lRpN~ZlUjv@fi@pt@rc@nq@j^xX~Mhb@vRh\\dNx_@jOxf@tPvi@~Pxd@nMpi@`Mxo@vMdl@zL`p@`Jdm@fGlh@hEbz@hEtw@pCxiAxBp_AbAnk@`@xv@Upv@|@fzAtCdfE~EnJJ`b@b@v_AtAzyA|A|bAx@rkAxAzzA`Bdk@v@nn@jB|W~@hZdB~\\xBb`@dDvZpD`]fE~i@jIxv@bOtc@|Jnk@fO|l@tQjt@dWfi@vStjAti@dwArv@|HfEjeBhbA`iBncAhqAhq@`n@l[xe@zUtcApd@la@jQxc@~Q`t@dYvp@xVjh@fRfa@bNl]bLrx@|V~_@zK~]zJdc@`Lla@bKtqAnZdwAnZn{AhZf`A|QbaA`SbbAbUh{@tUvc@vNde@xPjbAta@l{@xa@fbAlj@|TrNtXxQtPbLdThOrbAdw@jfAlbAv{@b|@fGfGt~@heAlj@`p@vy@p`AtnAdvAls@zu@riApgAvq@~m@bhAp~@dg@x_@zZzTvaAfp@`UnNjp@z`@hw@nc@zj@nY|k@tXhd@jSl`Av`@jj@~Sjj@|Rpk@|Qpi@pPx_AzW`bAvUj{@hR`RtDpXdFzVnEzZhFhp@hKxr@pJff@xFrc@xExy@tH|h@hEjVtA~T~@|Qv@`e@~Ars@|Brg@|@xg@l@~n@Nha@Gdc@Y~d@w@fd@}@fi@cBj`@_B|l@gDln@{DhmAsIxqCcUvdCkSdyAyLnxA{JdwBwRzxBiQheBsNnc@oDrjBqOtmB}OtaCyR``AyHr_A}Hhv@kHhs@uH`p@oHt}@kMhd@uHr[wFdzAqZhsBwc@htAgZpdAuU`bAqRfEw@|_AgQv{@{NfiAkPvC_@fz@kKfgAmLtmAeKleAeHffAyFrPm@~{@eC`Mc@|q@kAj_AiAfvA]~}BAlpCNx~BQlyAu@fwBgC^AzlByDbeAeD~eAsDlb@_BjmBsInpC{QncA}G~q@_Ft{@wFtn@sEvlB}Lrz@kGzv@{Gdv@qHpi@eHjk@_Jjb@_Ivg@yKzi@_Nfc@_Mpo@}Sh_@_Ntf@{RffAee@zkAsl@|fBe~@xcBe|@dh@mVvY_MzVuJhAc@hk@mQjd@yKjh@aJh]iEd\\_Dp]kBj^q@l]m@p\\Nr\\l@zw@fB|v@dBdc@`Aj~@jB|_ArBv]t@zLRzCFdj@dAlKd@lr@`Bta@fBj]tBba@lDdUtCjX~D|a@`I\\FxZhHf[zIj\\jKx\\lMp^xO|b@dTpUdM~S`N~d@~[dYlTde@da@lx@dw@`zAv{Adz@l{@v_AjaApKvKbTrT~m@zn@flAnmAxoA~pAz{@f{@rn@zl@nn@bk@hn@li@zaBrqArl@~b@ps@dg@tuAj_Ax_@fWbqBjrA`rCrjB|nCjhBvfB|jAxxBvxAdsAx|@tVvP|m@d`@nv@pg@p^bVfy@ti@v{@hk@lwB|vAp]nUnpB|qA`uBvuA|{@rk@``@lVvXxPzY|Pv_@tR~ShJlMxFde@`Q`^rKp^hJdo@tLtc@rG|i@xGtx@vIfEb@lEb@fk@~F~~@rJnrApNra@~Dld@hDfa@lBz]t@dg@Fh]w@nZyArj@eFzc@sGva@aI|a@sK|_@qL`c@mOtFwB|f@ySzNgG~j@wV~HkDnyAko@z^mPr\\cOzo@q[x_@cSh]kRx_@mUn]cUvb@wZz\\yWbZyVjSiQt`@s_@|^e_@lb@}d@ht@cz@fu@c}@tS_Wf\\i`@v\\w`@hVsXxW_Zxh@ki@di@{g@hVsSnWuS`YwShUkO~RaMdRaKnN_IxZkN~CyAt[cMfVeIpZ{I|SeF`VcFzNmCrN}BbJsAlKuAhU}BdT_BnNm@lSq@bTa@tVKjW@lw@hAxa@n@vb@FxRK|R[fXcAxMw@xMeArZqD`KaBbLeBbWqFbOwDvLqD`TuGfQ_HzFaCnKqE`M_GzPuInQcKpOwJtNyJ~McK`OsLhQoOrRiRlZk\\xTwXbCgDlXu_@b]aj@jP_ZfXkh@tUgf@zJwTlJ_UbYwq@zTmk@xiAs{C|Sej@bWgo@bPg`@lPe`@fSkd@dWyi@fQy^|X_k@vTka@fTu`@jZsh@xZeh@rYyd@nZqd@bUs\\~]ag@t^uf@Xa@l]mc@r_@sd@dPeR~OaRtW}Y|X_ZjPqPvMuMdS_SvMkMn`@i^`UeSbVgSfZsVzZcVbYiT~YmTxZsSha@cYzy@kj@xp@ic@fwA_`Alf@y[je@e[vm@ma@dIaF~sAm}@`{AibAft@af@ta@wWlg@{\\jaAqo@|yGwmExh@u]fqBirAzt@kf@z|AwcAds@ge@rQsLbRuLpNsIdRiK`LyFhSwJ~g@wSvtC}fApHkCd\\kMfpAcf@hfDsoAtj@yS|cAw_@nr@_W~pAgf@tc@wPv^_O`O}GpMmGjVgNfNiHhMgH|y@uf@b|@mh@dbAil@rb@wVpb@iWlj@_]|SoNnMqJlMsJzNwLtLkKlLoKlUgUvQaStC_DhYk]tXu]|^_f@~]me@jq@w{@pZi^`}@mpAju@ubApsAegBhb@gj@puBgqCvn@oy@hUcZ`UmZzw@ydA|tDu`FvW_]`pBqiCdcD}gEfUmZvTe\\db@gr@r`@}v@t[ss@~Mu\\lMs_@lMw_@lMsb@tSmx@xSwcAzMmz@bMq_AdJccA|HejAnJyzAhJytAn@kKfByW~f@_wHx_@m}FpXgdE`Q{mCjDsk@nEip@jNysBtFgy@`Fax@dEmq@`MkkBlNmsBlOgxBlFcm@~Gil@zIgn@`Hub@tJgg@hEuT|Psq@z@aDbHuWjTsr@rQ}f@xZgt@d[mm@rxHaiNtmAo~BblA{~B~n@woAxYch@fYwc@zZ_c@fYk^b_AoeAnZi[d^m]vuAkoAl`Aqw@p{@_p@daA}n@jo@a]t`@mQdW}Ipw@wVld@mMfoCam@~bAmUld@iJl{@ySvaAwVflAuZfyDybAhtLa`DfgA_[zZeJtKiDtt@eZnr@qZ`yAqq@vx@e[vm@mPxa@cI`a@wFtYeDnYaCj`AcEpk@uAl[w@ttAgDhcCqFzuHcQt_AeB`\\m@xW`Atb@rAtc@xDn_@bEfZfFpg@jJx`@~Kbc@xNbi@fT`XdLnFhClj@zVfRbKfpAbn@ju@~^p_@tLhb@vKz\\jGhg@tFhXpBn`@j@vk@iBfP{@dSeChTeDlNsCnU_Gla@mLp\\}K|a@kO`}@e]`NgFhpAkb@nNiFzv@kYfOkFhj@eSlZ_LrReFhS}Dlp@kJbgAiM|w@gJl{@oKv_AkI|wAuQtdAqL~b@{Eh`@eEf{Hg{@lk@qEr_@}BbXg@j]Znk@xDbrCj]hIrAvBZzYvEp}BlZnMpBh`Dfc@l|I|mAnc@lGdb@`Dn\\|@l`@Kdh@_C~o@{GpIiA~R{EzW{Hxc@wMzd@sNbx@uVtw@cVngHgwB~xAsb@bVcHrtD_fAjSaGnhGaeB|v@aVn`Bwe@~NmEp~Bon@`cEajArf@kOlQ{FvUiK~j@}ZzBmAlhOiqIlsH}hEp_F_rCda@}T`OgHp\\aOp\\gLpY_Ij]iHzXyDj`@{DliNss@h}@wE|qPs`AxVwAjfOo|@nzDeSry@cEj[]n_@j@|^hBxf@`GhmFdz@j{@pMnfDpg@h`@~Fd\\fFld@hE~YvAjU@nXWnYsA~d@mEjNiCrNiCfW}F`XaH~WqKrCiAx`@yRzc@wXve@u_@l]w\\vV_Zx\\ed@|Uw^rm@ybAfa@_q@rm@yy@rLyMxZ}ZvViVnWkStZ{Sdb@_Tx^cPvb@}Lpj@qLz~@_PhuA}Trv@eO|q@mQvv@iUhq@wUlg@iRxb@wRxe@gWn_@kWpZqVlZkYb\\e_@n`@{j@h\\yi@dYwl@`Zuu@jOof@zOso@~EuT|EoWvJko@tH_m@hHis@tM}~AzB_Y|F_t@zJwgA`ScmB`WqtBvNgbAhPceAlMuw@|Kkm@xTggA~Okx@tQux@hg@_uBpa@ozA`c@y{Ax|BiwH|{ButHvdAygDn`@uhA|d@yjA|s@}xAbc@mv@dMiQda@ak@lh@so@ptAqwAr|AcwA|fBkaBrn@yo@lk@{p@~p@_|@~f@{t@~j@m}@hi@e|@hq@qiA`p@scAf_@ki@~\\_d@db@mh@pf@eh@lc@s`@dVwS`e@{\\`l@{^|}@we@paAwd@nmBm|@v}@_e@tx@gg@~j@m`@vt@on@vd@sc@nk@qm@xw@g`Ahw@meAdl@{z@xo@idA|o@{iAhm@gkAld@uaA^w@vc@ucAxe@cnAzx@{_CdZobAb]mpA`\\uwAre@wiChLiq@h\\ijBrTufArLui@nJo_@vUqz@tJq[rKi[rQ_g@l\\ex@lc@k}@jg@i~@j\\ig@z\\ie@j_@ee@z`@yc@tg@ai@rm@wi@zv@eq@n}@et@xlBkzAniAe}@x`Acv@`dCanBn{AqfAbn@}b@ps@ce@lsByiAb_A_c@neAu`@bz@mWr{@{Sb`AaPxl@sG`VyB`aAyDdcAm@npB^tv@o@fq@aBtx@aGjo@gJvn@eNjf@gOta@sOrh@_Vp`@_Td]{Sdq@ef@ll@gg@pp@}l@fr@oo@~V{UrX_XnlAyhAjdCqdCh|@a}@`v@m~@rk@st@re@ao@nd@mo@jw@cjAzVu_@pXgc@loFamIxjAydBllAwdBbKgN~gAm{AdwAejBt`B_pBtgBasBhxAg}A`}A}|A|zC_vCrj@{e@v|@su@`g@u_@xp@sg@lt@ig@bp@kd@zu@oc@fbA{h@puAcp@`vAgk@rq@uUvt@oVzq@uSfs@eR`dBe`@bGiAxAYlLkC~k@uMnfAmVho@gOlp@uNlKqBnWyFlpBed@~h@wLvT}Er}As]pf@uJbQkDzeAoQvaAuMj|@cJbp@uD~cAmE~~@qBpvA{CjcCi@bmBwAb_A_Bnr@cCnr@aDzh@yCjn@mFhq@yGvi@oGhMeBns@{J`~@gPzt@oOzy@aR`uBwm@tgAk_@`iAwc@vpAel@bl@{Xvn@k_@pj@oZvG{Dvb@eW@?lwAqx@vn@g[nw@q^vc@cOPGjc@oNt]mJ|XkFnUqD`_@yD|x@uFvr@Y|URbc@pBt]pBn`@|E~{@hMlcArPrrAnTF@hmC`c@vl@jIfiAzO|TxCz_AnKpm@jGza@pDt^pCxuAzGrcC`I`hCnEfwA`C`xBfE`{@fCnnAUhf@qArl@wAv{@eF|d@mCzdEsY`wAyNpsAqSbv@}Ojm@qOj|@iYLE|{@k]vw@e_@|w@yc@zp@gb@fw@ci@j{BifBjU_Rha@o\\lSiPv_Em~CtaBcpAvdBepAhp@uc@hq@cc@lp@o`@to@c^|]iRxR{KxfBe}@`w@ga@`o@qUrWuJ|g@_Tzg@sXvpAwq@bg@{ZpJ_Flz@cf@dkAuu@|mAw|@tcAq~@ju@yu@vy@w{@ryEosF`sBy}Bt^_b@h`CylCbImJhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmBjFBzL}DfW{Hba@wNzgAq`@|fAeb@hsAuc@xA]jg@uLnc@wIzc@}Fxc@cFxZyBrg@q@xb@\\vk@lC|l@~HfYlFdz@fUxa@dObb@zQhb@jThy@fe@~_@dW~UhQrt@tm@pmAxkA~jApmAvv@|z@dn@~p@fs@lr@`iAdbApl@dd@z\\dTfXhOzXjNrSzJhOlGnZhJz\\`JhMzCdPtDbj@vIr^rCrn@tBj`@`@lo@oBd[wCj[_Fdd@cJvg@aOl`@aNbh@}UxL{Gr`@oVz^aXb\\uWri@qf@lw@iu@xiAkgAljAsgAblAugAniAkdAjbAe}@hv@wo@neAc{@j`@e[pjAa{@hsAs~@vkAut@bn@w]tdAgj@r_Aec@hy@s\\~lAyc@llAo_@fkAk[fmAcXva@wJ`bBeZh~AuWxUkC|IcA|]aEdvAcPblBmR~SgBrbA{IjtAgLr`@aDzOsAt{AgKjgH_k@|oBsCnz@jBty@xHt]bEfc@vIjv@zRjKjDhRhGvItCbq@vZxj@p\\psB`|ArmB|~AhmA`t@tyAxi@noB`ZniA|Bza@c@|_AkFvlAaJjfC}Tjh@kE`aBaNlsB_Sf|@gMt^oFf\\sGhvAg[b`B{c@xpAqd@lf@uS\\O~e@cTz]uPl^gRh|@of@pUqNv^}Tr[iUjaBwlAldAc}@hJaJ~k@_k@|]c_@`zAy~AdR_TxuCazDvwBumCnwAw|A|nBsmBp_Fu~Ej[i[dRcRtf@qf@~[}[poCylCbRwQfdAcaAtCoC||@}}@flAioAjqBsdCtn@i{@tBsCv@gAnAiBpBuC~a@}l@lfAwbBt|@i{Ap]gq@DKf}@_cBrb@}u@b^sm@dKkPzj@i}@lq@kcAzp@{_AnoA_eBbyAqtBnJyM`CgD|q@qcA`\\qi@zYci@h^mu@nS{d@dTei@bR{g@`HcTjYev@xSqp@|Nsh@`Vw_AfCqLhEiSvEmTbC{KfHsXtE_PjG}RbH}QnNoZzOmWvOgUhNmPbSeSlQ{NdPkKpM_GrMgFxAe@`GsBpE}AxS_GpJkBxQkCrUaBbSwA~IOzPDtj@fAjR^jcAfBlREzPq@pIo@na@wFpiB_\\xZyGlRcEvKu@xGiBbYgKnc@oTh[cTjS}Pv{@e|@|s@g}@rx@g_A~[a^hCsCbIkJlg@il@~d@ev@hc@{~@xMe_@xNeg@rLoc@|Pio@|Omj@~Nae@zKgYxI}Rl\\mn@~Z_f@pSgWrRmSfFqF|VsT~eAyu@dd@c[pgAet@zbA{m@laAkk@rlAso@vOcIj^kQjo@cWbm@aRrs@yS|n@{QjH{BlQwFjTeJrHaDvSwK|MeJ|RuOxNoNxSmUnO}TxSm^hxAerDra@qnAzPwi@rPoh@rXm}@xJq^zIk`@j@eDxGs`@hCkTrBkVpAuSvAcj@tAcn@nCixAbBwo@nB{a@nC}ZpCiVzF}\\pDcPzCwLpB}HjHyVfJeX|KgYvLgVjPyWbNcR~MaOxK_KjSwPbAs@hDaCh\\}Uhh@q]rAw@lw@{f@nb@yXlEqClk@q^l\\gSnZ{QvZaRje@i\\h`@mZj]oYtWyVju@av@rf@ib@xHqFhMiHnSeKhVqHbReD|QiAxHWvKAnPr@vUlD~O~DvKfErUtLpPlLxNzM|A|AdPjRh`@zf@bd@fi@rMlNnJrHtJnFxNtGhBp@jMdEjOlC`Sh@rM_@|OiAjBShD{@lLgChK{DxKuElJ_EfPgHnRqNlV}O~ZyRdY{QnT_NrLaHziA}l@~LaGdL{ElKyDzIuCbM{C`J}A~LsAdMcAfMa@fMSzHOfLIrR[~PY|J]lJm@fRcCjGiA`Q}DpGwBbGeCxIqEvG}DnIsGxFcF`HaHvDqE|C}D|DmFbEoGfDaHvLwV`Oi_@rCeIzCmJvR}j@tGcRjGaPnGaOrEeIhE}HlGkIxD{DjHiIvCiDzCmCbBkAfCeBlH}ElGeCrGuCzHgAtDs@`FgAnEw@nF_@`Ik@`JDjH]tM[xL?re@d@l[a@tKq@~JeAjMwBnMkDvJiDbJgEbLwFlKgHlIeH~ImIhR}SfRsTdS{WbQsUhIkMfTu_@fR}WlJ{KnH}JfSuXpJwQ~FyLnPm_@xOyZ`Tu^bIwLpNoSlj@gq@h@o@xXoX|m@sn@lL{L|L}LxGeGrHqFfKyG~J}EdJaDtIkC~IiBvKoA~Ga@zNUhLb@vGv@rIpAvBVjEz@dMvD`LrE~SxJpSfJnNhFbLfC~JtAfI`@~LIzKm@tMkCzHwBxIuDtL_HtMmJzFeErPwLl\\wSbIiEfM}GzL}FxWkL|TsHnn@_S|SuHhRwI`HsDbf@mWrT{IrSiMpMsF~J}C|LiBbOw@pHCxHf@lPxBrb@bIhhAbTnr@vLrhApUjvChk@|xBtb@b}ApZ`{D|u@zEnAxQpCtRjDlOlFdOlElMdCfRdBdJGlOeAjScE|Q}FbKyE~QaMfXyTvlAshAtMmKbIsEtJiFrTmHz]eMn@BhA?dCApDr@|B~@tCrBdBpB~BlEtAxEnDdXh@v@dD~VZ|GD`EStEs@pF_A~B{AvBuBbB{B|@iBJgBI_AMeD{@kJkCgN}DmBa@oCKgCV}El@iKjAsC`@iDVmB[gB}@iByB}@eCi@mDI_DXoDz@aDdAmC`B}AdCq@nBIrBv@rA|@xAnAlBdHn@zB@lCJrX@`FYt[CrHAlBAtB@fAQzs@AzL?hIEt^EfJJxIjBda@LvCxBjc@TjEl@rLTtFRpEFrA\\lHZrFD~@zAb]ZjG|D~~@tCYfZoCtCYzD]dX}BnCUlZmDpCSrh@iEvEa@`AEhCMjDi@|AOtd@sE`Ea@`Fg@nD}@b^cJrRqEt]oIfXyGnEeApRsFxYx`@vPhEvUdHzALhD]dLmEjBu@~E_AvBUVkAr@oDx@eA|DuCrByAxAtEvCpIf@xAvJv[h@`Bv@`CbCsBzBkAtCiBdKuI`CsBtGqDfEyCz@g@fF{D|@eB~HkDlDiBxCkArC{BzDsDbEuDvBuBjIwEvKgEjGcCnJuC`A}@dN{^`AuA|CuJ~CgKdBoHNgDMuDnAw@vAyBrHwMtA{AbIsG`BgAhI_EnEeCzEwAnDG`HtCpOfJzBjBkAtBkPtWEjATp@zAlBjCfDz@Fx@c@fUc_@}L_G{BkBqOgJaHuCoDF{EvAoEdCiI~DaBfAcIrGuAzAsHvMwAxBoAv@u@TyAFkAOoAUoBaAyHqD{AoBPeEJqCj@{UCcGeCyHaCsBgBg@iDZaMdD_FrAcD|@aG`B{F|Aeb@tLwVtGsOxDgl@|PoEpAaHlB{RpFQD{Bn@mEwDkAc@w@ESA}MjA_Hz@o@JkA[s@]aUoU_BcCeAsDy@cF]}ECoKFqeB?}@Ca@_@cHeCfB]PgDbASF{b@nGmBXeEn@}Cd@wVxDeFv@iEn@iYdEeC^qg@rHmBX{@LwDh@k@cGMsAoEoe@mAsMSwB{G_w@aE|@mTbFu\\|HcQfE[FuJ~BUFaDt@iBGeUrFme@nKcC_A{@}@s@wAa@eBWoBJeLHwBXsA^kAj@cAn@_AlA_AzA_@nBQfBHv@_@~WfGlEz@tCJpAd@`NiEhAc@bAu@r@}@f@aAXsALiAFqAi@qCEcCu@}OcFaz@uAoSsA{FgBaFsBgDaGyE}D_B}AWeCIiCR_Cj@eJ|CqFpDoHxG}ErGmDzGkMbFeKnFkI~EgNvKqmAtiAqXdUePfL}IxEeR|F_QfDwLrAsMOcJgBqH}B}FwCsSsNiNaHmIuFoE}C{E}DgE{DyC{CsA{A{@mAkWe]w_@mk@eFsDiGcCwzA{UgwCii@_dBu\\qt@cEaeGelAa]cFs^qH}IwAiE[uCQ}OIiHVcQrBeHlBwE`BsN`FmY|JuUrIw`@dOmXnMqKvFiJxFmEjDeHlG}DhEmErFuC~DkDxFuH`N{`@br@qItLwKxLyN|L_XtSuc@`]cGrEaGrE_N|H}HnDoO~D}LbBiMb@kJKcK{@oH{AaJyBcMwEuOeHoN{G}TqJsSkFqB_@wE}@gK_AkKUoII{I^gNpAgM`CaT`HeSzJcMvIkL~K_fB|hBsNrOUVuUxYoOdS_IdMsMdU_J`P_Tzd@iNf\\oK|QqD~Egs@f{@wC~Fi^ni@wBbDaEfF_FfGuGbIgEvFaKdLqMbPyIrJ}IxIuExEmJhIuIhGcLrGcJvD}Q|GqPpDsS~BoSl@yV?c}@qAaMLmFNkGn@yGp@iEt@qEbA}F~AeErAkGhCmF`CcF|CiHtEuEzD_FrEcFpFuE|F_F`HuEvHsFpKcJrS}JjXoIfWeHpSuCfIeLh\\sKfX{JpS}GxK_GhIgGzH_KlKoIbHiKdHaLbGsMbFwMrDcCd@{FhAwYpCiNl@g\\f@mUXeV^}MZgN~@ySlCcOzCaOfEeTtIkS~Jc~@be@gSdLeTrMwn@da@kn@j`@iLbHmS`KwKbEyFzBqJvBgJjBkOfA{OCeOeAgOeBsQwFqL}F}IwEkI{GgMkLad@ck@s\\ob@sScWyIuHeKuI_ZqRaUiKiZoGcTeCmMe@mN@uELcXhCgLdBeM`DoSxHoInHuT|Mmj@vd@g@b@}y@hz@gWtV_YjVga@b[ib@|YaZxR{ZzRe\\xSch@tZgdBphAml@v`@q[tUyC|BsUjQqK|I{LvLmTnVuPxVgNxW{KrWyTjt@oAxEaDvL_Hf[wCbTuCnVaFjn@q@xRyB`eAsBtbAiBvx@sA|^qCxa@mCfXmGh_@uNdl@mEnPwG|Sgj@j{Ayv@|tBemAn|C_G|KoN`VgIpL}KvOoLdNwTxUwYjVuKxHgL~G_OzI_GfCmU`Kur@~T_s@hSm`Ab\\e]lNwr@r^ol@xZo_@zRqm@l^mqAtv@gXvQccBdiAqA|@kl@zb@qK|H}[jZaVlXgZ|_@_I`MwS|]wShc@cSrf@wRbm@m]lpAiWr`AeStk@wb@f_A}Wza@eOtSeo@nu@kC|Ci|@jdAcgA~oAye@zf@ac@r_@sd@xY_c@bToUjIySlFePlDsKf@_X`DyNpAajAjImr@lD{YfA}NNcbA`Amr@mA{h@{Bmj@gBkj@m@gRZgJj@sTjBgQvCiXtHcLjEmMpHeRbMqVvUaDnDuExGmGpJwCpEwMxXgHvQ}HnVgEnSaF~Y_@|BqEj_@mE`g@sEjo@yJ~nAyFv^gIpb@oH|YgElNeYzz@me@nsAyHzQwPl^gZ~i@i\\pi@_\\ni@sh@dv@cCnDyJrNq`Br|BwhAn}AmBnCuZjc@iZpc@u_AvzAyNbWkwAxhCex@vxA}CvFw]nm@]l@k{@|zAkiAjdBk_@zj@_CjDuArBg@p@sBnCsn@bz@kpBpdCqnAtpAq}Bh~ByQlQ}iGdeGoaFp}Ekz@d}@oaAfbAqgArpAurBbeC}z@biAsgBfyB}RfSmLjOsXh^st@vw@w`Av_A{FxFeeA|_Auh@z`@q]`W}f@z^ec@zXyb@rWcx@zc@a\\lPg`@`Rcg@|TSHgr@vXudAh^co@pRiWbH{]~IgoA`Xq{@~Ngc@dGyXnCksBbTkrBhQkUnBcgCzSomAxKk~@jEwa@d@oeAmE_nBoZwxA}i@akAkm@}mBe_BewBeaByf@kXsc@{Ss[aMwQgHmLsEaw@_Rs_@sHqc@qGiu@gGa`AgBarBbBgdHnj@ooBzOg]pCoLrAg~@xHyv@vGyVvAgDZoMhAg}@bJoxCd^gHz@od@|FqvBr\\_dBb\\uXlGe{@rR}mAl[_lAr`@qkAtb@y}@|_@sz@r`@meAbj@i_A`i@or@rc@y|AdeAqnAv~@k`@b[epAhfAkvAnmAo{AjtAqnBrgBysBdrBmtBpkBg|@xn@cj@hYaZrMg[rLqZ~Icl@fNq^zFm`@lDmm@lCux@{@s\\eBgW_Cgr@}J{aAuXcl@kUwi@kYck@w]kd@s]{nAqfAup@kp@qeBilBs`CqdCuaAo{@eh@q_@e`@sVgz@}f@m_@yQuPyHoEsAyd@aRyc@_Oou@eSyn@oMsa@cGu^aEgI_AgcAkIod@eAid@cAeVf@iUlAuYhA{[`Eu]hJyZdKy\\|Os`@dTco@`c@ug@v^wg@~YaOfJyRfKuf@vVguAdn@maAdc@uNfMqKvGij@b]cd@j\\iTrSgTrVg_@|i@yRr^iQ|^iOv_@adBlbFwc@`eAwh@jfAsZbf@e[tc@m[n^k[b\\gm@jh@ceAlt@w}BjyAgzBlwAkAt@i{BdxA}zAvgAal@ph@{j@~k@ay@beAgw@rkAub@fx@in@zrAuSzh@_Rfg@cL~^iQrl@{Pfo@wMjm@iG~YcChLaKtl@__@~nCgk@hbFeBdPyV~uBcBxNcR~~A{[|_Cg`@dgCo@vDcApFoEpUcJze@gH`_@y@|C}Ovl@yb@pmA}Rrj@}Lh_@s@zCo@pC}F~UaHdYm\\xhBcOdu@uR~`A}YtaD_RbbB{Mv|@}QrfAe{@rzD}XjfAkg@pdBmi@zyA}e@xfA_h@`cAwi@d}@wt@veAkv@t~@qgAngAadAh}@uoFjeEo{A|lAcoA`jAql@vl@iaAlaAi`BrhBmoCh}CwsGvqHkiCjwCgp@hu@qKzK_~@lfAwLtMweC~qCyKdNq_@bc@suIfwJa{@|}@ku@xu@kcAd}@}cAvx@yqAjz@gx@tc@iHtDij@n\\}nAjp@of@jXcg@~SmVxI}m@pUy_Ahe@g_B`x@sRnJ}d@nVwq@`_@sn@n^iq@pb@eq@~d@qdBppAccBzpA}zDvzCwRzPmb@j[mUnQe`CzjB{t@jg@yp@dc@gw@ta@gu@`^}{@z\\m{@jZOF{l@bP_aAtR_fAhOmvAdNieEfY}d@hC}y@vEim@tBcd@p@yrAl@{x@m@wiAiB{l@_AaxAsCygCsFabCcGs{AqIy_AoHuh@kFmaAoLo}AwSqn@}IegFkz@i|@mN_{@uM_c@gEk_@sCsa@}Age@Okb@h@w}@zEoa@dF{V|DoYtF{[nIub@~Mea@|Nwz@n_@mo@jYa@P{qAdx@sa@hV}GbE_m@n\\iq@x\\gn@pZqoA~k@ahAvc@eiAh`@apBxj@iz@pRev@`Pwz@|O}p@nJsNlBgk@jH_s@hHem@lFkj@hD_p@jDiu@pBqz@fBerBpAs`CNsvAbD_~@fBeeAxEwp@~D__A~Ia~@nMmhArRqObDog@vHyxA`^{UnFwDz@sRjEkVrFyy@zQin@dNaYfG}gA~VgzChq@cLrCuoBxc@yw@bScq@pRuu@nV}q@|UixA~k@stAdn@w`Anl@sr@vc@wo@bb@wv@lh@co@xe@}g@pb@caAbu@ai@xd@svCvoCoaBxcBkzAb~AyiBjuB_}AtpBqxAdlBudAdvAwLrPqkAhcBaiA~bBwpFjnIkW`a@oVn_@k}@rrAwb@rl@cd@tl@_l@lu@cu@b{@}{@j`AacChbCooAtkAmUzSs[zZmo@jl@mq@vm@sk@~e@mm@fc@ia@dWg`@`Sch@fUu_@|Nid@vMgo@lNks@vJqq@tFsq@pBey@b@_mB_AyhA`Aa_AnCiTnBmo@bJy}@nNk|@rTez@`WwjAnd@{aAbd@{qBliAoq@zc@qv@~h@}_Afr@mw@xl@obBlrAcz@zo@mpApcAchBhvAm_Azu@}q@zk@qo@xl@_T`TgWhXs^na@m^fd@g^dg@a]nh@e`@lr@oEbIi\\bq@y\\vw@wFhOeO|`@eMj_@cPnh@iOrj@cKhb@yMrk@gSlbAof@ppCcChN}Nry@_Ibc@wK|k@{Ldk@sMpj@qLjd@gOxi@wZtcAqQpi@gRbj@yXfv@q_@p`Aid@heAue@jbAen@tmAeo@lhA{o@hdA}k@|y@yv@fdAys@f{@yn@zq@yf@pe@gp@ti@ko@fd@it@tc@w~@le@ikBp{@adAbf@q_Afg@}g@d[gj@pa@uR|Ooe@hc@ce@bg@y`@zf@gb@`k@i[pd@ucBtoCui@f}@ok@|}@{g@zt@cj@`t@so@lu@en@xo@odBf_BaxAvqAk}A~`Bud@nj@}]zf@oR|Xab@bt@yt@rzA}g@~oA}_@nhAwcAneDs{BltHi~Bb{Hub@xxAua@~{A}g@~uBkb@roBcTtfAi[niB_QbfAoMl~@oJ~t@_MrdAuK|cAqHnv@}Gfw@yJ`pA_LrsA}H`w@yH`n@{DrW_E|U_@|BoHd_@mHp[uFnTaI~XaK`[uUrm@oZno@a]lk@}^~g@gZn\\c[~YeYjUgWjQeIfFqd@xVk`@zPoh@rSwp@lUqx@~Ugo@|Ouw@`PysA`U_~@`Oon@hNe\\zJqXxKwUdKuUlMcG|D{a@nXqOxLcTnRqWjXoVtZiWv\\aa@vo@oMbTgMzSg_@xn@sMtRyHdLkNzR}NbR}IpKuLxMaLpKeU`TeNpKmO~KwNjJyR~KkNnH_QlHeM|EuOtFwNhE{UfGwQtD}PpCgSrB}SlBwPj@}Uh@kREuRe@qNu@oR{AwPgBoYgEyb@uGokAyQ{bAuOy{@_NsVcDwmFiz@kd@aGe`@_D}^w@g`@Zq}@fEicEzUanNtx@c~@hFutO||@c}@xEalNzv@i^rCg]bFu\\|H{YjIsYbKs^`OkPtIi`@nSa_FzoCgqH~gEmhOpsI]Rip@j^kVrJsRtGag@lOg~DxhAq`Cvo@oOrEamAl]eRnFioJhnCikGdjBieH~uBm}@vWkr@nUakAh]qKpCw^lIiYtEs^`Ege@pB}b@Ac`@gBq\\oCsb@}Eu}I{mAibDyc@yLiBgkBwXag@kGmBU}JoAgrCq`@gn@yD{\\K{[N{]|Bkj@dEcpE|i@opA~MqQrByd@hFuKnBee@tEqm@hG{}@lKwe@jEetBfVglBnTutA|R{^dJef@xOmi@rSeP~Ea_AzZepAxf@iN~E}{@x\\}[jKoc@hOu]`KeUjFkV|DuOnCaWhCuGNse@`Aad@Yo^cCwa@wEc^_H{`@wKwYcJqw@s]k{A{t@sR}J}g@{U{UaLmj@uToe@gPq`@qKsd@sKa\\oFw\\gEec@{B_f@oBex@YmaA`BqwH~Pq|C`HasApD}j@rAcbA|EwUdBm^lEac@pFi`@vIcn@~O{a@vNw_@dOisA|m@st@z[if@zRcTfH_]zKchA`[{sA~^guAx]aiG|aB{`E~eAcpA|\\e|Ax^{[`H_a@nIm_A|SgqCpn@w`@tKys@tUA?qC~@eVfJkc@dRsl@zZqr@jd@qb@fZ}h@|a@o`A|w@kkAneAoh@jh@c^d^_`AnfAwYz^uZpb@gZve@gW~c@g\\bp@_Sd`@ci@vfAma@nx@mp@voAa\\zk@yzH~iN_Wtj@o\\hx@yNp`@oT~r@{Jv]}Qtv@aEbSwJpf@uMvy@mHhk@yF~i@cG`s@{@`K_HnaAoHflAgKt~AaKvxAoVjvDaGx}@iWx{DoIzpAyIhtAgHreAiZ~sEuM~nBya@pmG{AbVcAvMcJvwAgJp{AsHlcAoJ|cAoJdt@gMhy@}N~t@eQdu@cUby@uOff@k[py@_]nv@eO~YgN~Vep@beA{_@fi@w`@jg@u`@|g@}c@|l@eg@lp@_c@fk@sl@`w@}Ud[wj@bv@i\\xa@}K~Nq`D~eEgLhO_a@~h@gq@p|@acDvhE}mBhgCc`@tg@}Wt]gl@zv@}o@f{@uc@jl@ieAfrA{]hd@eV`YmLdMgMlMmN~MqOzN{^lZyWhRyXxQmf@~Y{aAdl@odC~xAg^~SyXtPq^fS}W~Ms\\vNk`@dOug@nRyy@lZo{@l]uaAv`@sj@pSaGtBscCf_Aw[xL}XbK__@rNyp@fW}HzCc`Cx|@am@~UeStI}NhHkR~JeOpIq]hT}_@tUseAbt@iiAbu@gmAhx@cpArz@az@`j@g}@nl@ajEhsCszAzbAgNvIca@tXkt@lf@w|ArcAmoAzy@oI|Fko@fb@if@z[ye@h[edBvhAgDxBiVdPgeApr@wx@pj@s]bWuYtTyZdViYpU_VnSkUhSad@za@e^p]eSnSqQbRyQtRyX|Zia@be@y`@`f@g\\nb@u_@dg@u@`A}\\nf@gUp\\sZbe@{Yne@qZpg@aZhh@cTh`@mSz_@wMnW_MpV{S|b@yInRwInRgJpSqIrRqMvZ_\\xw@}Z|w@mf@lqAyOfb@iV|o@_Xvq@mXjp@oQfa@mYfm@aXdh@cQnZ{Ub`@gOvTmP|TyW`\\qJvK}InJmSdSeSnQ}P|MyKbIsNzJcOjJsPfJcPtIgM`GaLxE_VfJiV|HgLdDgNjDiU`FsKjBqLjBgMbB}LrAmMfAoMt@cWbAsSTeSPsb@Qw`@a@ex@_AgXUgVReUZkQp@_Ox@eTtAeXlC}U`D}N~BiJdBC@qB^_V`FuS`FiZbJsWtIMDi\\vMa^zOyOlI{QhKaTpM_U`OoXbSgXdTyVlTiR`Q{]b]_KlKuStT_Y|ZqVvX}\\da@_\\|_@}TjXsu@r}@mu@z{@s`@pb@q]f^g`@x^_ShQyZfW_]zWyb@tZ_]zTk^pT{\\hR_a@vSuo@f[w[tNm`@dQayAzn@qH`Dwr@xZuNrGe_@lOsFnBgc@|O}`@zLq_@zJia@|Hoc@lGqj@hF}[zAk\\p@of@?}]y@}a@sBeb@aDkb@aEurAqNy}@mJk^uDqO_BcbAkKqj@sGwc@uG_o@qLu]}Iy]qK_f@gQka@uQo^eR{R{K{X}Pag@u[uz@{j@wvBawA}jBumAq^gVozB_yAa}@el@uy@ij@q^}Uev@eg@mk@i_@aXiQ}sAm}@oxBsxAsfBujAeoCohBgrCyjBkqBurA}]uUc]oU}w@gi@ys@mg@um@kc@{_BopAuo@cj@qn@kk@}l@ik@}|@i|@}oAypAelAqmAsh@wi@yE_Fa`@q`@o~@y_Ao|@s}@}wAgzAgx@{v@of@ob@}SaPCAqB}Aae@y\\mU_NyU_Nga@mSo_@mP}[}LoUyHaWuHuQ{EQEgS{EiRwDiSmDkVqDeVwC_PuAmPyAm]qB}e@yBi\\q@i^y@en@gAmPYgUq@{eAuBk~@kBq]gAk|@cBuw@iBo\\k@u\\Mq^h@i^x@q]`Ba]`Ds]hEkh@dJ{d@|Kog@~O{Br@cYpKgY~Lih@hVedBl|@qgB|~@_lAfl@}fAne@{e@pR}^|Mqn@dSoc@hMki@bNsh@|Kua@|Hak@rI_j@|GeG|@cRlCyh@xEiE^{`@hCo{@bGclBtMqn@xDg|@dG{r@bFgbAbHarCdQ_lBzIob@bBseA~DsdAxCa@@slBvDqxBpCsxAv@i_CJupCS}|B@mwA`@}KJar@p@ij@jAeNZabA~C}Pn@cfApFcfA|GmnApKmgAjLk~@dLaiAjPaV`E{e@bIcfA~RkbAlRqcAbV}sAbZotB|c@wyA`Zw[|F}b@~G}}@nMyo@zH{t@rHcu@dHy_AzHk`AfI{`CrRooB`PmiBlOqc@pDodBlNsyB|Qc|CbVct@rGwwAhLqeCnS{qChUulAjI}n@zD}m@~Cs_@`Bqg@zAsd@dAmd@x@}b@Xka@Nio@Wki@m@}e@y@}s@uBed@gBue@aC{XiB_h@uD}z@qHkc@qEie@uFcs@yJyp@aKiZeFq\\gGkVuE{QmDcy@gQ}aAkVo~@eWyg@yOsj@wQol@oSmi@qSg`Au`@{d@ySuk@uXak@qY{w@sc@an@k_@ySgMu_Aao@e]wVwh@{a@ygAy}@mp@eo@siAshA{r@}t@{mAiuAg|@_cAui@_o@c}@sbAcfAogA_gAg`AibAyv@oUcPaP}KgMwIab@sW}aAaj@}y@ca@kdAub@ee@qPed@sNw{@aVcaA}Ty`A{RaaAcRg{AeZuwAyZgqAiZ{a@gKsb@gLsBi@a[mIgQcFqLiDiy@iWs\\uK_a@eNak@kSuq@yVgq@sXmf@iSg_@ePwbAsd@ge@aUac@sToGcDotA}r@ahBecAQKseBsbA}`Bw|@ckAmi@sh@_Tuu@oWem@{Qyk@eO{ZeHw~@}Qkk@oI}\\sE}ZcDqa@yDu\\qBeY{AuDOkMg@ii@{AgIUyp@mAeuAsAqpAeB_`Aq@yxAoAwt@iAyw@cAeeE_Fu|AuCut@}@ip@Lwq@c@g`AaAejAyB}v@_Cyy@{E_i@_Eel@gGoo@cJul@mLcp@sMai@wLmd@mMqh@sPqg@iQi`@qOs[yMyb@wRsVyL{r@m_@st@}c@gw@_j@aYqTqXwSm^}Ym`@a]yX}Wgn@ao@g[}\\u]}a@aSwVg]md@{CcEqQiVc]qg@}PmW_Sq[qRk[_Um`@{Wyd@u[uk@m]wo@ym@wkAg`@ov@_Xmh@a}@geB_]eo@_To`@yX_g@uX}e@ie@{v@cSg[yXqb@y]_h@aa@}j@{a@yj@cw@oaAqv@{|@ajAkmAciAyfAqcAg}@kkAk}@uj@}`@kd@cZsl@}^oj@q\\ul@o]}_@gSe`@cSgr@c\\{bAac@qP{GkUcJeQqH{OkGqq@sWkt@aXqt@_XeuBkt@u|@oZwy@eXwpAaa@or@gTgu@aUsxAyb@{NcEumAa]qlAi[cp@{Oyl@wMok@sKgk@}Ian@wH{f@mE}_@wCqWwAwb@iBoMc@ef@{@cl@Yye@B{d@j@a_AfB{aAfDm_AzEgl@hDqt@rFk|@xHak@tFcc@tEch@tGoo@~Ico@vJuj@dJuy@jOqp@zMsj@xLek@xM}_@jJs\\tIqp@~Qop@lR}h@hPap@fTsy@dYoz@rYijBno@wkB`p@ohCh|@{WhJuwAhg@ukBro@cPdGeb@zOsGdCib@`P{g@jSga@nPIDcUpJk`@jP}k@bWqy@`_@gr@n[s_@lQa_@bQk{@ha@uhAhg@}t@pZio@nVcp@lUmq@lTmo@bRol@`Pqh@|Lun@jNqi@tKmz@pO{o@|Jss@~J}i@~GcNzAec@vEg`@zDib@pDuf@vDgk@xDsh@zCks@|Cok@tBud@tAol@fAor@~@wt@b@i|@Ru}@Gwo@Oor@Wul@Ogd@Sql@E_fAA_n@Jmm@Rch@Ti[Ryr@z@qdAfAe`AxAmz@bBawBlFasAjEiwC|L_nCvMyuCvJu[l@qe@Va^BqGCcZIcq@y@sd@aA_p@eCwj@wCoc@}Cmd@}Du^mDy\\sD_e@_G}f@kHaIqAoa@yG{b@}Hei@wK_z@qR}f@kLetBgf@_sBec@}sAkWwrAoTc{@_Mkb@iFa`@iEwaAoJwqAyJklAmHajA}Fm}@uD}s@mCuNm@kr@uCkgBuGurCgLkPi@gh@oBmm@{BqmAcEis@_Dc`@sAk]cAai@{@_b@]oc@Vii@vAm_@hB}a@~Cs`@zDcj@zHsf@zIyf@|Kan@zPko@dTap@xWqm@hY}d@jWy`@rUm_@zUgoAdz@epAzz@q_Azk@mt@hb@wi@|Xag@bVg_@pPcb@`Qw_@~N_k@dSoc@hNqHzB{v@bTef@|K{a@hJ{`@|H{j@bKo_@`Ha\\pFaDh@}GlAw|@`OubBbYiaBhXmq@tKs_@zFe]`FkT~Cm|@jKs_ApJeu@|F{g@bDiZbBqYhAap@tBuf@z@gs@r@w}@Eyp@m@ko@sAue@uAqAEyXeA}^aByGa@mi@aDad@iCmb@mCaq@uEqn@oE}{@iG{g@yD{g@wDm\\{Cyh@yFmp@uIg_@_HuTgEaa@}Iq`@aKs]_K{w@cV{k@aRw_@sL{s@eTu{@oT}m@iMym@aKed@{Fsb@yDuZwBiIg@k_@aB}[_Asb@k@s]@e]Ze^r@c\\jAqi@pCgdAfHm`@lCqkAzGyaAtE{d@|@kg@l@ya@Ga_@[ob@sAcXqAuc@qCyNmA_f@kF{d@oGcy@}Nai@}Lwb@kLud@gNmi@{Q}w@e[mg@aTqrBu}@kM{FqWeLaq@qZuf@iU{IwDsXqLqRoIwUgKiu@_]as@q[{[aNsUwKcn@{XqbA{c@sc@{Ro^cPa[uNyOoHoq@o[un@aZmV{LokByaAme@yW_B_AaJgF}aAko@{|@an@yu@ol@k{@gu@qu@}t@i\\y]mb@yf@of@wn@ye@wq@ea@mo@_h@s}@gVce@_Yel@gSed@s_@y_A{Twm@}`@umAsVk|@gSax@aGaWuLaj@_Qu|@kUksAo[}sBwDkWoZ_qBk[wqBuXm{A_Mam@}Muk@kUs{@eNge@qTar@cVqq@yCyHmLiZyQ_d@yXam@_[wm@yTya@_W}b@ia@yn@cVa]sVw\\mN_QwJsLaYw[u^_`@uTqTk[mYgv@ip@iu@mm@ov@sm@}v@qn@qXsTss@ok@}i@oc@cj@gc@}qAseAcs@ok@sz@kq@yx@gp@sn@og@wg@ka@qd@s^_}@ar@g`Air@{z@ik@yk@a^ul@u]obAwh@m|@qb@a~@q`@sdAma@owBot@}gDueAyfCat@uy@oSua@iJ{t@iOsfAsT}lAwPajCaa@s`Fgv@gpCwb@sqByZusBg[qh@eIwnAeRot@mKoj@sIm_@gFkjBcWohFur@osDuf@m`Cq[_yAuRcdCm[woAgNgi@qEyoAuHqcAaDyeA}@cdAh@a{@bCsUx@mk@`Due@nDik@jFuHx@yT`CuRdBkDZy_BnUyoB|YinArPoh@rFcYnCqk@fEmo@zCa]hAyb@n@ij@Lmj@c@e^y@gl@cCmd@wC_s@oGqt@iJsw@oMmk@kLg[_IaOqDui@_Oox@yViWyIgJyC{d@qO_l@sSaeA{^amAsb@m}DquAwhCq}@ku@qW}c@}OmqBks@uh@}QwW}IykAsb@sfAi\\qj@uO}p@}Okd@eK}f@oJ_gAcRoa@uGiG_Aen@oJqBYabByTg_@cFam@iJgpCy`@go@}HmZkDaVoCqDc@_k@kF}u@mFkt@}Cg_@s@{c@Us\\FwXFgr@fAmcBnG_fB`Iqq@xBoo@Vg_@{@oZaBmq@_Hce@uHys@kQ_e@yNkc@_QiB}@sq@u\\cPeJm\\}SsYwSqh@m`@ge@y^iIqGgj@ac@}c@{]}i@wb@_fAcz@qw@}m@qr@gk@qXmXcZ{]uo@oy@aYq[i[gZ}ZsVq^aVoa@oTwc@{Q{[mK}VuGq_@gGmb@mD}l@sCkv@_Da[qAqq@aD{b@mB{b@cDwm@gJc}@iRmc@gJcKwB_ScDuYuCa[y@w\\Re\\pBi\\fFoYdH}XzJoYzMka@xUqb@bUec@rOuf@lMo^|Fmc@jEstA`NctA`Ngv@dI}d@hHqa@~Hic@`Ksb@tJanAfYai@jNaNhEiVrI{b@xPoa@zQu[rP}e@zWqWbLu_@lLu_@lHaNhAyOrAYBg_@bAq[a@c^iBy`@oF}TqE{d@iKei@yLke@gJ{f@yJ_u@_OcOiCkWqDwQiBcSiAuSu@iRGuOD{O^gQhAsZdCc]fFyVnFuVzGi^`MeYdLi]rNoNdG{]fOecAbb@wh@hScJ`DuQnGoKfDeH~ByOpEmLrC_NdDms@bNst@~Kgo@~F_z@|D}i@v@ahBbAev@lBo\\dBe_@dDa^lEw_@vG_SxE}NjDoPnEg[tJe]jMs\\zNqs@h^ouAhw@g{@ne@an@pZkk@pVqj@nTar@bW{WpI_c@zLet@tP}e@|IgOnCmb@~Gsn@bI{m@nGoaAjGufAvCsl@^op@_@wiAcBuhAwBqrAiC}rAuBqbAeBcf@{@yo@y@yt@Bms@`Aue@fB}UnAkKj@g`@|Bor@zDqxA~HmlArGka@~Bk]jBim@dDyk@~Bik@dBsSl@}n@t@og@Nqf@CadA}@eb@qAwa@wA_f@yBwg@oC{iA{Iiy@sIqo@{Hgr@eKer@eL_i@yJuVoFgQwDswAo[oDw@a|A{\\ioA{Se_A{Kuk@wE{m@gD_~@iCmd@c@md@H{a@f@ik@`BowAxHggCnNshAvGydBlJesBrLcrBbL{x@vEe|@xIe~@nNij@xKmt@vQk_AxYg|@`]qi@zVoc@`Ush@hZwb@bXwTvOmV`Qid@`^_YvUoHrGuNbNmr@`q@}R~Q}RhQkZdUmMjI_TdM_T~KmLrE_WxJwZnJ{ZdHg\\pFi[bD{[fBc\\^_`@m@ma@qCqb@aGu_@eIi^qK{RgH{OyGe[{OeUmNgVqPoa@q]{[a\\uXg\\ee@_n@o[ad@wUi\\y]oe@kZ__@u_@}a@wa@ia@c]qYca@e[w\\iUcl@k]e_@iRo`@_Qk_@yNc`@qL}g@gNif@sJia@kGUE_c@sEoa@yDsp@iEy`@{@wb@Vgb@vAu_@vDc`@tFid@hJ}}@dTwSnEmg@~Iqj@pF}b@bBi^V{^k@ia@iCgd@yE}b@{Hcd@gL}^}Lw^qOoZmOmn@{_@gk@wa@krDasC_y@{n@auBo`Bg{@{p@sy@_p@os@gn@sq@qq@yl@uq@y]}b@st@c_Ag_AikAyd@ui@}RoSeKoK}O{N{EoEsXeUa]}V{FiEsFeDc^kTag@mWmb@sQcf@}Pub@uLml@eMs^cFyUeD{o@qEas@wAyEFqi@t@}_@jBg^|Ckm@hImk@hLg_AzSuo@bOul@xMg_Bz^yhAbWeiApWa~@tSqPvDwp@jOwaAxTio@pO_n@hPia@fM{b@lO_`@zO{`@bRkn@v\\mt@jb@ut@`a@il@vXi_@|Nmb@xMaWvGc]hH{d@xHaf@lFyl@nD_t@|@uVUa\\c@oCE}t@{AsqAiCgzA_DqoAgCya@aAca@}@ceAuBe|@eBqnAoC{M_@mnByDyoBgE}oBgEymB{D{i@}@yk@c@q]A_WZyh@bBi\\~Bu[tCwWvCgYdE}\\pGi[~Gah@`Ng`@zLgZ|K_i@~Tob@`Te^fSo]pTcN|IySfOe\\|Vub@d^{VjUcSpPqWxSgXnS_WvPuSbMuU~L_ZfMca@lMme@lK}r@nKmVdDg]pFwXfGad@bN_[dM}UjLeVlNyQvLse@b_@_x@tt@_l@pi@_t@`q@wV~SwYlTaf@dZyZvNuY|KaZ`JuUpFsUlEwYdEwXvBcNj@gP`@kX@wY{@a]gCkZuDaSuDwWkGua@aMoj@uRqUsH{OsEsb@wIy\\oEg`@qC_Zg@gSGwUd@{[jBsWnCqV|DyVlFqXpHwZtKuXzL{\\`QmTfNsSbOc[lWw\\l]mSxUgO~RmMxQyNjUyObXqQj_@}Qhc@{Nl`@aKh[gK~^aJd_@}Hj^iGfYoP~s@mSzu@sKj\\aMf\\sX|n@aWte@gUr^mUv[w`@|c@aYxXeVtRSN}MtJuPtKaWhOsUnKm\\tMyUxHoZ|IeRhFmWlH_cAtX}|@jV}`AfZgy@~Ymm@tW{o@`[ee@bWoR`LeZ`Qul@x_@qOjKwQnMiZ~Tci@ld@{a@bb@uc@ph@gc@fk@wk@lx@il@lv@mf@vi@sYfY__@~Z}_@lYsc@rY{a@fU{b@tSmjCbhAcfAtc@eb@zP{b@xQw`@hQw\\xPwNjImWxPsZjUmWvUe[j\\}`@ph@wXzb@wYxi@oJxQuQb_@o\\np@{Q~[cUn^sPbVcY~]cb@zd@cTtS}YpVmS~OqU`P{XpPoWrNo_@xPib@zOk]bKwc@`Ksd@lHc`@zD{ZhB}f@lAse@_@i_@wAe_@eC}`@iDgd@wD_p@_Gw}A_Ni\\qCog@qE}eBeO}jAkH{]_AwYc@ce@D}a@`Aic@|Bcm@fFo`@vE_e@|Hwj@dMsc@|Lei@bQwc@nQmb@pRgZnO_ZtPo`@nVeb@jZyg@z`@yWlTcTrQqWtUwM|KkB~Agp@tj@qd@da@sc@|_@uhAdaAylBnaBo~ChnCcXtUeb@b^{UbReQ`MiOlKg[vQ{\\nOeX`KmOvE_NjDae@jJ{a@bF_XzAsYf@oRByTi@yUiAsTsBuWoDiTgEy]iI{d@oLqj@{Nk`@wJwp@{Puq@aQk]cIaSyDyPcCmTyByWsAuTc@sRGcRNuOj@wV`BwYfDyLvB_Z~F}VrGyEvAoJxCkTxIwT`KwSzKmTpM{OvKeRlN{R|PePrOwMvN{OnQeQjUmRfX{RbZc{@zpAgz@dpAmXfa@oUl[wQjUgQfS}U`WwTlTgOnMgFlEgVxRuZdUgNtIiVtNe\\fQq`@tQwb@fPk_@lLc]lIk[tG{SjD{T|CqUxBmVvBgR~@aSp@kY\\cg@Yq~@cCodAiDcbA_Diq@oBcOc@_`@qAyQo@mt@uBsi@gAyX[{CEwd@_@eRIqWEmRGeX?kZJe~@z@alA|Biz@dCkc@bBo^zAwf@nCmn@hDqx@bG{|@zHgc@fE}}@vJyk@lHsk@vHc`@vFqr@jKiu@pMcbAdQ{kB~\\g@Je`AfQyOpCi[~Feh@zIcsBr^{|Bpa@i{B|`@{cDfl@s`@hHssCbh@i|@|Nye@dGua@xD{d@hCeg@`BuVVaWGak@{@uYqA_\\kByt@kHktAkOg`AuKuw@_Jqp@iIu]kFiZ_Faa@mHyc@cJwd@yJkVoFacAiTazAm[{TwEgTqEyOuC{NeBaQgA{LYkJCeT`@gPlAiOlBwNfCuR|EoYtKyVrLuLtHgP|LsQzOsp@pr@iXzWsPlNaQbLkPvI{P~HaUlH_NhD_OjCwTbC{PbAyMLwPI_RcA_XoCac@uFwr@kJc]qEir@gJkv@qK_`@{Eab@qE}TeBo]kB{Ts@iWk@a\\Mo`@Vq]`AqXnA}]|BkVp@}QPqRAoWUgVq@sWmAuPyAcJm@sYqCoUyCwa@wG{YcGod@gLsQcFsg@mOo[gLuZ{L_`@gQmVcMsY}O_YqPy[gTqT}Oub@}\\wg@wd@{xActA}}@uz@g\\uZay@cv@gy@yu@ihAudAsIaIyuBsoB{uB_pB{`@e_@i[}YoOwNm[yYaYqWsK}JssAioAgj@ah@}h@qf@{|@m{@}W{TmWyS_NaKyTkOu[_RiXmNoQcIcP}GkRiHwS{Gc[yIka@mIi\\kF}UkCyV{ByZyAeRc@gRK_\\LoYdAu[dCcTvBwQlCkTfE}U`GqTvG_P`FaTtHqP|GiQ~Haa@fS_VjLwm@xWsl@~Vmi@zTke@vSy^vMuXnIuUhGu\\dHyThE}a@zFmO|AcOfAsc@vBoM^s[FsVKuYc@oWcA{a@{C}TgC{QaC}UoEma@uIid@mJod@}Jw{Bie@kvBud@gsAcYop@oNgq@}Ngt@mOsj@gLeo@{Mis@}OcrBwb@{gDcs@_pDgv@m}A}\\mr@cOmn@yM_t@qOgWsFqy@wPmBa@}cAyRqk@oJuh@wHyp@sI_m@}Gq^iD}\\uC_r@{Eam@kDmu@yDsPo@cj@cAmVa@qn@o@ml@j@uDDe[d@qTTyUn@_DH}[~@icArCoTh@iFLuWgBmj@oFok@cMc]gJa\\sB{Z@wZtBciBxNi\\|DkQvBqMd@yj@cBi\\mBaf@kKec@aN}V}H}eAk\\wKwCgD}@yMwC}ImAiIaAkL}@sLk@wQ?oMTwLn@}KpAeLfBmOfDcRzGmR|Jax@da@uf@zVc]zOaUzHiSpF_N`CeSpCyPf@qM?kJg@iCOcSoC_O}CwLkD}PgGuOkHyNyIaPaMmRuPmTmTsPcS_PyS}RsX}Xi`@kj@cv@wTk\\aAsA}RyXiQgUkNaOeMuK}KkI}JaGiCoAmFiCgGyCyMmFkLiDeNoC}MuBkJ_AqRiAwPIa\\^{{@xCkiBvFwUt@}OXiK@kQm@mMeAyK}AwLyBmQiF{Q_HyNmHgEgCuEsCyIoG}NmMaLwLaHiI}GyI}FsIiHkLwHeO}F}LeJuUaFmNkHaTwGcSkLs\\aKkWqHqP_IwO_LwRaLuP}LwPiK}LiKkKyZuZwTwSg^c]yCqCug@{e@gVeVaM{MwLuNoJ_MmLmQaMkTkIkPmKuVgHuQgIsV{Nqf@{Osj@wQ{o@ug@khBeJq[aJyZyGiSoK{XgLiWsMgW_M}R_L_PaOwQiPyPuRoPeWoQo\\{PqP{G{T{GaQ{DoQwCkP_Bg_@sB}]oAs[oAuUoAgTiB_RsCwAY_O{C{PgEiRyGkWyJkq@yWao@aWm^aNgWaJaViH}P}EgRyDuTmDiQyBmRcB{Pi@sQa@gSCsUZuUhAsPvAgWvDySnDiUzFuRxFsQhGyOzGyRbJiNlHkPrJqT`NmTpP{c@j_@kEnDke@`a@eU`RwQdNqShNuP|J{YfOw_@nO}t@bWwOdF}V`IwvDhoAkLnE{KrEkIbEwIfFoIzFgHlFuIfHeHhHiKlL}NhS}FjJ}E~I{F|K}F|MmG~PyFxQkE`QeCtLeCjM_DxSgBbP_BpQo@bK}@nSc@xRKnOBjQTlQv@bYnD~t@rBrj@b@zLXtMXtR?~QQfLQ`M}@vUu@xLeAjNaB~OkDnW{DdVaFbXuEdTeFzUeN~k@yMlg@wMfe@_HlTkOde@oFlOgIlUcNz^cQjb@cNz\\}Ulh@wF`M_Pz\\uRp_@mBrDuNpXoVzb@aY~e@eQtXmQhX}Z`d@wYja@}Y`a@gUpZuWl\\k]vb@a]|`@_Yd\\w[~]cd@|e@q[`\\i\\j\\sx@tw@od@~b@gq@hn@_y@jt@qd@|`@ee@`a@k_@l[qcAby@sy@jo@_o@le@mf@~]uQlM_SvMgc@rXyWrOaYfOqOrHuObHeZtLk\\hMmTtI_ThJmKbFqVdMoShLcS`MuShN{OnLsOxLoWrUgPtOwR`SqNlOoPbScO~QmDlEkLdPmKnOmIlM}H|L_N`U}GvLcG`LaLdToMfXwIvRuI|SuIhTcIbT{CvIgRhi@{Orc@iLhYkNlZkOlYcNrU{H|L_IpLaLpOgPlSuOfQ_JhJmJ|IaHbGqJfIkL|IgM~IsJpGaMhH{JtF{IpEsY~Ny[lP_b@rSsb@vSas@l\\qh@~U}\\fN}hAtd@GBwe@pR{ClAkb@hPwY`LeQzGyd@bLmVxFi[bJgDz@wNvD_OlDmJzAoF`@aFE{Ec@iFsAkEeB}EqCmEmDwD{DkDoEuD}EiDgF_DqFaDyFkCqFsCkGiCgGcCyG_C}GuByGkBaHgBiHaBoH}AyIsAcImAeJgAaJ{@{Is@qK]qIk@iVm@mUe@uQ{Aum@s@s\\e@uYWa\\AmSFaRZk^h@aYbAo_@tA_]lBs^tBc[`Is`AnDu_@pA{MdDi]vEci@vDke@`Co^jCai@pAs_@tAui@j@md@Rm_@?o_@i@im@o@w_@_B{h@aAwV_ByZeAkRaB}UwC}]cDs]yDg^oI}p@{Feb@kGsc@wb@_aDwGmh@cI{p@{CcXsCkWyGyq@{Dcd@kGe`AgBkZyAyXgBu_@aFifAaCkh@{Buf@{Cyp@yAe[eC}c@kCie@oC{a@yCi_@cDm_@mC{XwCiXiEi^}Eq_@}Fq`@eG_`@{Gk`@oJig@aJub@aKkc@aLgd@}Lwd@qNqe@yHmVcJeXsJqX_IaTuLyZiRcd@yQga@aJeR}J_SsH}NqH_NoNaWyMuTeN}T{Sk[qNmSwVk\\aDgEaVqZgVaZgi@yo@qSgVeRqUiSmVmSaVeTsVmYwZ{m@_k@}LsJgLyIoMkJ{MeJqN_JcPsJwRyKarAor@iN}HeOcJwMuI_MwIuPiMyRePoPkOwLmLoMaNsQmSqTkXoGsI_HuJoHoKqKmP_PcXuLoTuPc\\oO_]mM}Z_HsQwHwScFkOyEiOoFkQyEyPaF}QiEcQkEeRuDuPwDgRmDeRiDuR}C{RsCqRiEk[_D{ViF}b@qEo_@kUsmB_Jav@aJcu@wMohAcN}iAwKe~@}K}~@cDyXiKs{@wImt@aEs[mEo[kCcQqCuPiEaViEqTiFeVkFeUeLyb@eMac@sNwb@mN{_@_Qua@mR_b@iXeh@kU{_@_QgWcQiV_P_SeJqKaKaLeRuR}WwV_WeT}[_V}\\cTaRkKkR{Jwe@eSc]oL{d@uM}\\{Gk`@uF}WuCkWeBeVs@sa@e@}[b@i\\jAa_@xBasDrT}vDzTiz@fFu`@|AgZNcXc@sZeB{YaDsYyEaSgEeT{F}Y}JkPeHkXyMkXwOwWwQgUqQ_SwQeWuW{UeY}RiXcTq\\sKkReK}RyP}^wOc`@_Pqd@iOsh@qJc`@gIi`@iFsZ_Lyu@aP_qAuCeT_@wE}Iwr@qPmsAsPmrAaOgkAeYk{B_Jep@}J_l@oJoc@eLob@gHqUoKq\\uJeYiLwXmRga@uLeUsYcf@}U_]aOaRwSaUuUcUm^sZgP}KmPkKkPeJ}NyHaRcIe^qMma@aLokB_b@{g@_L}RiEq{@kR{\\oHcmBeb@so@oNq]}Hko@uNmDy@}`@qIyl@}Mu}Am]op@{NoGuAa\\yHeEkA}UyGqZoKoMwFySkKgT_MmPwKsTcP{PyNqPsOyRyS{MkOsOiSoVi^cRa[eRw^{KeVkPga@eJiXsIaXoIaYkIa^oGyYmHe`@mFu[_Fq\\_Gga@qV_iBci@qwDuW_lBmh@uwDeS}yAqE}Xc@aDmKwu@mPklAuOghAyg@ysDaT_|AmRusAwF}ZaH}Z{HuY{G{S}Mk]gJ_SyMqVqOyUkQuUsP}R}gAuqAsQkTuJmLuZu]yTsT{UaTeUkPaVmOuMiHuQyIkVgK{MmE{LsDwS_FqNsCuMkBmLuAuLgA{M{@uXs@c]e@mf@gAmKc@qTiBwR_CaPsCwPoDoMeDqQsFqRsH{RaJcTcLoRyLaPuK_PsM}OsNqDoDsHoHcM_NcPeS}RqWit@{aAaZq`@{LoPgM}PuN_RcT{W}MaOuNsNsMqL{MsJqJsGof@aVeTqGyPoDwRwAeQq@iRHcQ~@aLxAiNjC_NjDeOjFoR|I{NvIsLrIqQ`OkOtNmN`OwKdLqWdX}b@ja@eI~GiO~JsPzI{N`F}JvC{NtEwN~AcR~@i]~@ud@cDem@oH}gAsSgRmD}~@oPcv@aN_@Iax@wN{H}By`AaPicAaQy^oGaq@sMapBqg@}\\yJwq@{Pyf@kOod@eOk}@_Z_eAi_@{p@gTog@wSs]}S_]qVa~@aq@kz@ch@eDcByt@u_@md@{RaUuI_WsJuh@kOkWsHs]iHy]qLkr@qUc]sN_l@iV}XeNylA{p@w|BspAml@e\\{]{Ryd@}Y_RgNyWiRis@}i@kdDmoCooDgyCgNmKsd@w]yWkPy_@mRk\\}LkYuIy[uGi`@sFg`@_CyWc@{DGwh@hBgPhAqZ|Do`@|HsV|Goa@tOo[xOqbAvi@{RfK{O|HaRhIsS`ImLzDuRrFwTrEmG`AuYvCgk@zD}M^{n@v@aKFyRTqhAnCqHPaeAjBcfClE{nA`Au[b@yxHvMqo@fAkeArBoeAvAePXubBvCwr@nAcb@~AoOlAkIbAaOzBuPvE{GrBcUbJwNhIiG`EyG~DcJ~FaOjOyQdTcM`RsJnQwJ~R}HtS}IbWgI`YkG|YqDbU{Eb`@uDld@_Cl_@sBl`@aCpn@kMrkCyInjBwInhBiKjuBmBnc@kBxb@cPdeDwBd]uB|]mD`\\cFjf@iF`ZeEpTgGrZcGxWgI`[kRdm@mHhQ{Nl]aRp^yHvMuRn[aQhUaRnWaXhYmUxRgR|NiRlMoP|JaHlDcBz@i]dO}HrCiKrDiTdGa`@pH}W~DyObAwTbAaUTsRO{DKw_AeGm]eBcYSgVLmTrAaT|CgOfDiPtEsJ|CkIdDwPtH{RpK}P~KkHdFeIdHmLvKcPrPoG|HcHfJaLbPaM|RsHhNcH~N_GxMcFnLeFrMyIxUgIvU_Plh@yMte@yLbd@kc@lbBiSdw@oNvk@oQrw@_Kbf@iLdo@gF|[oDnWmClToF`f@wA`QoAlO{ApUkAjYu@~To@nc@Gh^Zx]d@jRXrGvAn[|Cvb@rCbYpE|\\hFd[|Fb[zRdaAnGn\\zF|^bCnSrBpTz@bTPnWi@nWcCj\\mBjNeDtOqGdTuIlTcLlR}LrOeNdLwRtKqRjGmXdJye@hPiGvF{jBll@qeB|t@{kAff@eI|BeNhD_H`BeG`A}Fh@{J\\_NMmK_AgPyCcMoEqQcJoQkLyNaMaHwG{FoGcImJoH}JiRc]{R_a@gKqWmG{OwSek@mR_f@qJ{W_Ssl@cVyv@}Mee@qMed@k_@k{Ac]w{AwKag@oRe~@aBoIyHw`@wN{v@_VmsA}^i}BiXijBqLe}@eNkhAeIks@}Je_AaKyaAgJ{aA_JgeAcIeeA_N_rBqLouBmN}{CwJm_CiGoeBaMafDkUcyF_NivCeDcv@kMk_CuJw}AoMuoB{IaiAeFwo@_Fun@cH{u@wQ_pByLseAsDgYwA_L{Hsh@}Hgf@gKak@kJie@wAwGyNwq@yQy{@_Iga@qXieBgGsb@eLi^}EoOuMg`@gD_JsHgSi_@ms@eBsC}Si]wHcQgGuRcNui@sHm]yFwZmKom@eJem@{vA_oJuK}s@uc@kyCcRykAaR{hAmUyoAeWeoAqL_k@gMoh@a[_oAy[yhA}[geAe\\_bAWu@}h@{xAoQmg@gW_q@gs@amBow@uuBmUun@cXks@g^oaAeRsh@sWeu@od@yrAeTop@cg@q`B{Omh@s[_hAwLid@uLcd@sLue@sKmc@oIa^_Pas@_Myl@gEoSmS{aAgPo}@qJki@qIig@iG_`@qLst@uQ}nA}C}TaV{iBcDsWiFib@kMeeAyRocB}QcaBwTyoBe`@wjDoLqeAiKm~@kNqmA}Iuu@sTyiBiCgSeJws@eEe[sQ_sAkUy}A}Vy_BmRgkAcIuc@eOux@eU{iAoEqRuOss@oWuiAcRyt@eWcaAmVi}@wfAatDia@wtA{a@qwAe`@euAaa@a}AoPoq@mRwy@gByIwAmGsl@usCsPs}@q_@ovByb@ukC_eAcnGk^gxB_ZceBaZcdBg]olB_^olBgRqaAuUikAm^ueBw^udBah@u}Beu@_cDwV}eAgw@ceDya@cfBi]k{AsRm~@{Pw}@iOa}@kLmx@sKi}@qJ_aAiFuq@uEix@{Dw|@sBsv@}@kh@g@oj@Ooo@D{m@v@_dAbAgr@hBqq@fCkz@vFsxAbBw]vEe_AtEg{@xEsv@rCyb@`AsOfGa`AjR{qC~R}wCjYehEjMcnBzLovBpHa`BnCa{@|Aop@jA}w@f@eo@Jmw@Ygs@oA}mAwAqp@IuDeCko@yC{r@}F}aA_IeeAgG_r@eHar@mIus@gYatBkJ{k@uMiu@_Lkl@{Lgm@kMuj@mUs`AwPqo@c^anAqb@yrAsZsz@{Wqq@_\\}u@y_@my@{a@qy@ca@yt@gO}W_Ri[sTe^eb@cp@gb@ao@iw@miAiyAiuB}l@sz@il@ox@eh@cr@yg@io@gh@gn@el@ip@ar@ct@iw@qu@ur@on@g|@is@y_Akr@qbAqp@c^eUexA_{@{qAst@ucBk_Aan@s]in@o^soA_w@m_Aun@qq@}f@gq@qi@er@al@yu@cs@go@ko@on@sq@aq@kw@kk@ks@{j@kv@gh@wu@{g@qw@il@iaAuT{_@iXeg@if@w_A_l@{mA{p@q{Aoq@waBeQwb@eK_Xyn@k}AaVkl@yNm^sRse@yBmFehBopEcw@_mBs`@u`AgpAazCse@qgAwT{f@_Ucg@iPk^op@{vAce@saAonAofC}oBwyDqjB}mD{b@}x@imE_iIklAgwBar@akAebAy~AscAmzAoi@kt@wd@kk@gByBgm@_s@wh@ak@wk@{j@ep@cm@sbBwwAcaAk}@uXyZ}Vm[}]_g@s\\mi@g]oo@qZwp@_Seg@iRch@_b@iqA}`@qoA}b@mpAi\\o}@g_@g~@s\\kv@_e@{aA{`@kv@w`@os@ed@qt@af@yt@mp@y}@_]sb@_e@{i@ig@aj@{f@}f@q`@q^w`@s]wPsNen@ie@yr@mf@_t@yc@mo@}]go@c[cz@}^mt@eY}\\wLep@qT}m@eRafAuY_iAsX_b@oJuv@}P}o@sM}gAsTmhAmTqrHyxAkrHgyAomDyq@wm@oLgZyFcw@cPabAgRi`@aIqa@yHq[sFus@aNqcAeQieAqPywA_Rqr@aJmeAmK{VuBms@eFoc@eC}r@}Ciu@eCoAEorAiCikA[imATqs@n@wmAvBq_@v@ovCbJ{{CxKksCjJ{oClGk}AjBi|Ax@arAOqvAeBeqA_DooAsEak@qC_j@gDsjAqIa}@gIm}@iJc~@{Kq_AsMmsAcT_qAkVgv@mPot@oQge@qLce@mMwcA_[{n@sS}lAgc@ma@ePuw@w[ew@g]gfBaz@maAqf@gjEszB{aBcw@iv@w[}x@}ZuzAwe@oEuAuXsI}o@mP_f@iLyn@wNkWcGi_AwRoh@gKay@sPsQwDgXsFkXwFsk@uLaSyDukCij@w~A}[cdAaTufA_Uwy@yOuf@wHsb@aFaReBsQgAac@{B_X]eV?eKH_Zb@mUxAyTdBiYjD{W~DkNhCcWrFgOtDmMjD}FnBcB`@ga@`QwLbF{S~IiXpMqQ`Ku[dR{L~HeLdIuUrQqX|Ua]d[aZvZeUjXi^td@oTpZqYtd@sVrd@gn@nnAyMr\\oMx\\iXvz@oJx\\oPtp@cE~Q}Nzr@kWvwAeOjz@sDxSmLhn@qBrKukAhtGejAnmGid@pdCaPry@gR|}@_Nzl@uNtk@kMre@aNjd@a[z|@kNz]uMp[}a@lz@wOfYgPzWoUp]{c@nm@s\\z_@s`@pa@sg@tc@ob@p[wd@bZme@bW{f@vTsd@hP_a@~Lk`@vIu]jGw]pEq`@nDk_@fBsXl@eXFaSQa[s@qg@sCog@{Dsq@uGsyB_WawBsV_[kDcfDo_@eNwAkcDq_@kgCgZmfCmYeg@sFyZwCus@_Fi^aBgUYyVE{BCo]|@gLXoc@`Dyb@hFkk@hK__@tJq_@nL{XlK_XfLa[tOeg@lZkUjOwQnNcUdReUrRuSbRaTlSq^b^aa@~`@eb@hb@o]r\\e]`[mi@bc@se@|[yk@z[mf@~T_o@vTsp@bPkn@jKui@nFwZzAkYn@y^D}Zu@i`@mBq_@mD_[sEgZoFwWgGcSkFeZmJit@mYaq@u[{NsHs_@cSofAkk@c^aRuT}KsHyDq^sQwg@gVqYcNko@eZyzA{o@a~A_o@irBmu@iE_Bao@gTod@oOab@yMkh@gPsLwDyg@{NaNsDaKqCuWqHoc@qLau@cRwr@aQwaBq^ibBa^{dBm`@_`B{`@ah@oNmc@kMqn@qRev@eWw`@wNkmAaf@gq@{YyY}Muc@gTuoAqn@apA_q@g`EmxBo}@gc@qk@sV}l@_U_k@_Qwl@}Nse@wIoe@mGqSmBa_@kCo^uAw_@q@k_@Hcf@`Au_@rBip@lGcWvDke@hIc_@pIgf@dNae@jOqq@fZck@`Ym^jS_u@|c@ukAzv@kc@vYcg@l\\yp@lb@eq@r`@_ZvOiv@r^{l@fUyd@dOue@lMcd@|Jkc@zH{ZhEk`@fE}[hCqn@fDox@jBe`@d@}DFgpA\\yXGee@L{{@B}b@MeQ@si@BguBLcoBDwsA@iZEu^d@q_A~Aem@rBwfBhJae@lEwu@jHgfAdNuu@fLap@nL_mBna@_g@hM_m@jP}v@~UyL|Dis@`Ws}@f]_t@tZ{w@f^yl@rYeo@x\\ao@~]cv@|d@kt@ve@_b@xYqbApt@yo@dg@{_Ahx@aj@~f@w`A`_Aat@zu@iVtWyTdW_GxGqd@bg@u_@xd@uw@p`AuXv]cNpPmf@jn@if@|m@mf@`o@{h@xq@}g@vl@uY`_@wj@lt@a@h@ao@`y@_[da@osAteBcrArcB{yDjbFa{ArqBql@nx@ml@h|@og@dy@k\\tn@eUle@c[hu@s`@`lAqVnw@e_@llAmWny@_Vdt@iSzj@aU|j@yPh`@iVtg@oO`Z}`@lr@{Xfc@mXl_@wQ`Wy[~_@gZb\\i\\f\\gVlTwUjRg^|Ws^nV_k@n\\g[hOsQbKaj@~Tcl@rSeZbJk_@hK_t@fPs}@|O}y@fLwc@zE{i@hFyy@rGmx@~Esz@vD}{@jCkx@nAicAb@aeA[aeA_BkeAaC_h@gB}YcBu`AiGef@aEae@sEocA_L_i@mHc`@yF}y@_Nq`AqQya@{Ig\\gHyDy@{EeAuc@wKah@_N}~@qWudA}[k|@uZkv@kY}z@m]{f@cTqb@yRyc@ySaf@gVsr@u^qr@m`@kp@a`@}`@{Vyi@_]oi@g^e~@in@}~@cq@s~@qr@e}@ss@efAo}@wbAa}@wpA_mAqk@ek@ec@ga@yd@}e@y{@{}@{r@ow@}WgY{]_]u`@c_@wpAekAwu@mj@uJ}Euh@g[il@i\\g@YakAwl@glAwl@mYmNm^kQox@ga@g]yQs]uRom@y]yi@u[iNiIwp@e`@qo@{_@__Acj@{u@kf@sg@__@iXsTgEkDiw@sq@q{@iv@q{@ct@iy@_p@cz@wn@ix@qj@i]kUgfA_s@}iAwu@ma@iXcmBooAarBosAi{@wj@iu@}f@}|@qj@ie@{W}[gPoa@wQg`@yNa\\oK_[mI_]mI{[sGk\\kFg_@qEsd@eEkt@cFw{@}Eyo@uD}`@yB}h@qCeh@uC_m@cBye@c@}a@\\w_@jAga@|Bsi@xEgj@jHy]xG{\\jIk\\dJag@jPsb@hQeg@vUmb@tUue@jZ}d@z\\cg@`b@}[rZwh@fj@ui@lp@_^df@e[vd@is@tgAon@paAuV|_@ci@`y@ug@`u@g`@jh@c`@dd@_`@~a@}F|FoSnRyVnTsDbDsb@`\\ib@nYgg@~Ykc@jTqe@`Tce@rPmg@hO}k@bNck@~Jgj@tGkk@`Ea[tAwd@l@s]Bmw@e@kg@}@sc@u@_|@eBky@eDy^cCa]gCcc@aFib@kGek@mL{j@cOwh@}OcsAad@{pAwb@qm@gQ{d@aLkh@_Koe@oGyB[mj@qFqk@eEu`BsKuxAsJmw@uFmw@iGyy@uHg_@gEet@wIoj@iImi@_Jok@aKo`@{Hej@mLggA{Ug`@_Jsf@cLmdB_`@wl@}Koi@qI{h@aFmi@gDii@oAej@HgXn@yZlAo_@fCwm@|Gw[hF{Z~Fyg@tLoc@zM_k@pS}m@nXeq@h^up@|b@sjAvx@igAfw@uBzAwbAdq@gr@ra@}f@~Vei@vUgq@dVyj@lPkd@nK_ZxFkb@xGwf@bGuk@nEa^xAo]z@e]Hkh@e@ch@}Aml@uEwk@}Guh@kIke@_Kkl@}Oo]{K}b@aPuj@mVaZ{NoZkPaSuLoRyLa^sVm^qXw[kXkRmQ{NmNq_@_`@yYi\\eYk]aIqKgFyGyZuc@mRmY{NyUkRg\\k`@ot@sIsPg^gu@eH_OwYyn@a[yp@}Oi]wd@obA{d@mbAk^eu@_]up@qf@w|@sN_VgWw`@c[ce@cZ{a@{c@ck@_d@}h@md@}e@oe@wd@u^y[yb@}]m`@yYeg@g]sc@oXkl@g\\iKkFeg@sUk]oOc\\aMyj@oRqf@cNsl@}Nmf@yJs_@cGom@cIcl@{Fae@uDot@aFqr@sDar@eEir@_E}~@aGye@gE}c@kEs]mEq_@aG{p@gMgi@_Muk@mPc_@yLc_@cNci@mTkj@}Wah@wX{V{Ni\\sSg\\{Tae@o]}b@w]wPgOqJmIeXuWkf@}f@g_A_eAoyBekCoo@mw@gnA}xAmg@ui@qb@ob@m^o[}[iVqYuSs[_Tok@m\\{WuMiYoMme@{QiPmF_UsGgIkBwf@gLeQeDe[sFaCc@m]qEs\\eDc_@yB{ZaA_Ve@}WA_f@h@sd@jBuZtB_J~@uPbBua@dFwy@pMkt@lLs]bGiu@pLgtBb]gsBt\\{gC`b@ocArPsaArOm_AhM{_@lEqj@vE}p@|Duq@jBwc@b@qc@Ksf@e@ek@aCuq@cEws@wGsu@mKkq@aMyw@kQe~@gWog@gQag@cR{f@oTwg@}U}a@sTkg@{XebAol@urB}nAyZeRml@k^qg@u[o`@sWge@m]ei@ed@if@qc@y^g_@a`@sc@}]ac@}Xa_@_z@kiAoy@egAuc@wk@cUuYma@me@{`@yb@_XwWag@wc@}u@yo@iY{TeSqOii@a_@mVoPaWwO_d@iW_@Sog@mXqX}McXqLie@yRif@aRo]wLmImCaSmGsi@}OmcBwd@mNmDkc@sL{YeIyw@uV{i@qSoUgJmUcKaVcLaVqLcOeIaOsI__@qTm_@oV{c@m[up@ke@qh@e_@qZuTakAa{@wlAg{@oj@{a@g\\kV_k@ya@ys@af@o_@aUsi@mYyj@gWyk@mTwxAad@}}Ayd@es@oWeZwMgUiLg^iRqk@w]{j@w_@{a@kYmUyOqs@id@aa@mTqa@wRkf@wRaq@}Tow@wT{w@aTcl@kQwe@_Qaf@kScf@oVed@oWup@md@_n@kg@{a@s`@{j@cl@u}@qaAkd@ef@sc@sc@}TmTy[iYsg@{a@iq@af@ap@eb@i^kSk]oQyTuKwn@aXsq@cVkp@cSsm@}N{q@{M_r@_Kqx@eI}pA}J{h@}Duj@yE_e@kFui@uHaw@yNyj@wM{c@oMgk@aR}\\gLqXqKw]sMioDyrAqoD}sA}u@k[yu@i^uk@e[ik@c]_k@u_@gj@qa@_`@sZg_@u\\u[qYgXmXe]g^{OiQcKgL}@eAkY{\\o]kc@g\\{c@me@sr@aBcCuU{^aRg[sRo\\wQy\\_NmWyBgEsn@ooAk|@{gBeSi`@cf@k_Aqj@w`A}a@uo@ua@_m@ae@en@qf@ml@ed@_g@sS}SqUkUoo@wl@at@im@am@kd@o`Aeq@}x@}j@gy@mk@cx@oj@yq@cg@ew@ip@gl@mk@wf@qi@_}AonBws@{|@ie@oh@sZuZuZuX}i@wc@cOuKog@y^aXmSyc@m\\wm@oe@mn@uh@qo@_m@cm@wo@qu@q~@ot@qcAew@ulA}b@er@q^kk@ai@{z@qa@ap@}a@ao@ka@yl@cc@gm@qg@kq@ah@_p@qi@wo@yk@_p@mTyU}XyY{d@ae@_f@ge@qcAa_Aqp@ij@ie@k_@_^mXmZcUaOoKcWoQ{YcScGaEib@_Xql@a^ga@{Ui^eScGgDwf@eWmc@kTek@iXi\\ePiVmLuVcM_`@sSmb@{Vsp@{a@es@wf@of@g_@eMaKwVaTqWmU_^y\\y\\e]iXsY}Zk]yY_^wXm]k\\{c@c]qe@c^ki@gb@{q@{OcXa`CklEi_A}fBoiA}wB{pGo|LkDwG}z@k`B}n@kxAsu@mjBswBmjGyg@{uAsj@quAch@mkAikAggCeWoj@mnCy`Gg`@wz@ex@caB_u@czAuVc`@{MoT{e@ev@ul@eu@qn@kr@}f@_f@ud@ka@oeGg{Esm@ii@_U}Reb@sc@ce@_j@yb@il@{b@yq@s_@aq@qM}VkL{UcQy_@eNq[sOe`@_Ni_@wRkk@_Rul@_b@gvAwV_y@sU{t@gOoc@_KiYwL_\\oJiVwKwWmLsXcNa[wOm\\sOk[iQ{\\{Re^g`@}o@m`@gm@uc@gn@ed@sk@oTeWcT_VqWiXwVuVmXwVuWkUg]wXk\\{Vc\\_Ug[cSmS_MyT_Mg[kPcN_HiOgHc^mOuVyJgT}HqWaJ}UoHyX}HePoEmf@}LyyA{]cZeHymBkd@m{HkjB}l@sMcm@gLqg@sHaSiCaRmBoWaCoYsBc\\{Aw]eAq`@g@__@CmZX{[|@ib@bBo\\`CeY`CsXtCab@tFeo@pJ}uAzUaMlBkw@bM{i@~H{}@tK}\\|Cu\\lCwz@tEs]nAs\\r@}j@h@mm@AuVYyUa@q`@gAgi@{Bah@mDse@_Egf@eFkYsDcm@gJkm@qK}c@mJcc@mKq^iJu]_Ks`@aMo]oL{]mMy[iMc[wMcZsMa[gOo[{O}e@mWwd@eXgW}OuWyPsb@{Yg`@gYiRyNmQuNsb@a^{AoAiXsUaC{BkSkRmR{QsYaZmXkXof@uj@{^ub@o\\}`@sp@_x@qdAmpA_\\{^a\\a^yf@_g@wb@q`@sBmB}f@ua@af@m^yYsSmKcHgn@i^}a@}Uoh@uV_bAya@odAi[qo@mPev@cNa]yF_^{Dw`AuGkoB}Ocm@_EyzA{Rkr@qL}n@{LowB}i@mqCa{@yjAqZiEiAs_AeTmaAuPcgAiNklG}s@yp@gIarAoQaiAwTyw@qSox@_Wqq@eW}j@aU_}@ib@a_A_h@{z@gi@y|@oo@mq@ui@ihBoyAa{@oq@__Air@ol@q`@yt@}b@a[iOsq@y^i~@mf@oz@ae@ibAwn@}z@sk@cw@el@iQwMmcAg{@ys@wp@qs@_r@egAokAaeAomA{eA}vAou@qfAk|D_hGuh@}v@y|@aoAokCsjD_b@ki@ib@mg@}a@ud@mf@me@_a@c^_`@qZyZqTuU{OkIiFmQsKkh@cZkF{CyRgKuV}My_@oU}XaQgd@oZud@c]ix@_o@w{AulAof@i_@oc@s\\kc@s[gIiGoQ}Ms[iTiv@wc@kg@iXuf@yVqZ}M_i@iTcr@uWmiAi]miDw`Au{H{zBszAac@af@iNms@cSckD{bA_j@yOmsJspC{_@kL_`@_Ku_@eIo_@kGab@iFib@}Cac@{Bo_@]m_@Aah@t@mYfAoYfBiY`CcY`DkYtEgYnFaY|G}XbIyZ`J{[hLiPhGwRrI{MnGkSvJ_b@zTaa@jWgMxI{IvGwQ~MiKdImQbOeQ~O_LpKgO`OcStSue@zh@ed@rm@ec@pp@wa@|r@}j@ziA{^tw@gf@|eAqGhNeWbk@_X~h@mrDvaIihA|dCwkA|bCc[dl@}[vj@qb@~q@ck@ry@}k@|v@cn@rr@sn@jp@yk@hh@}j@je@m_@jY{]dVcg@xZi]hRg]~Pk]hPc^hOc[tL_\\jLiZxJy]tJwV|GkAZqYtGmYbGgZxFe\\lEq\\lDi\\dDe\\bC}b@|C}b@lByb@l@uc@Dqg@]cqEmHotA_C}pHeLaY[_YCoYr@oY|AkYrBiYnCc`@zEq[xFq[dGyYlHyYlI{YzIyYxKi\\`Oc\\hPi\\bPi[lQqUfOoUdPwTnQaTbSqXvU{WfVwWvW{V|YwY~^iYr`@wWn`@eWdb@k[vk@sZhm@av@`|AsWth@_Xxg@wXdg@cYtf@wo@`dAgq@zaAkqI~nLw~F~fIyo@b_Amo@z_Awn@v`Aym@zbAuoG`zJ_k@`z@kk@tx@kXv^gXv]qp@fw@kq@|t@}l@|p@cq@xo@mq@pm@g~@`t@if@d`@mf@~\\sv@xf@ew@|e@cbAnj@sj@bY_k@pVuo@xWgq@hWcXbJ}^nMqkC~~@y}@b\\qrExaB{}Avj@yTpIkdAja@q`Aff@e_Azi@yu@fh@_t@jk@iq@bq@sKlKkKvKqKxKiK~KcVhX{U~X}KbN{KlNuKvNqKxNkK`OiKnOmWl`@eLvQ}KbRoLnQuKhRoUdc@eJdQiJjR_LxUoMnX}JfUiJhU_J`TwI|TmIrT}I|U_IxTeItUcHbWuHbVkHfViHnVcHpV{GtVqH`YmHdYcHdYcHhY_p@llCcFjSaFvRaIbZmFrRoFhRwItY}G|S}GtSgHbSiHxRuGzPuGvPaHlPcHjPmJtSuJhS}J~RaKhRmJ|PsJtP{JhP}J`PcOzTiOhTuOzS{OhSsJlLuJ~K{JxK{JpKeKfKeKbKgKxJkKnJ}KvJ_LnJcLdJgLxI}K~H{KzHaY`RcRvLwM|HqM~GyMhGaX`L}WxKwp@~SwUhGwUxFac@nJmSlEkw@jP_|@fRcrC`m@uoApWug@xK}|Bpf@gOrCeOjDwq@hOcSbE_SlEoRdEuSjF{NlEmK|CiK`DkKpDiKzDqWbKkW~KkNxGkN`HiNnHgN~HkMvH}QpLgLxHsLrIkRtNgRlOwLpKeQ~NgNrM}MdN{MpNwMbOoPtReP`SyO`TuOhT}Q~XuQlYwi@haAsJvRmJzRgJnSaJhS}Nl]KT}^n|@k~AdtDoLnW{EzJeFtJmMfVgFpJkFfJ_HnLcHbL}GxKEFeHxKyIrM}IfM_J|L_JpLkOhRmO~QmOdQqOzPoPjQuPxPuPtP_QnPwjAhgAupAzlAkzAfuAmFxEiZ~Wua@l^kGjFuGfFcPxLyPnM_Q`MeOjK}N~JsO|JwOlJgYvOuLnGsKdFgVtK_X~KyJrDuJdDeKhDiLhD}VdHyNnDcTvEwVvEo[~E_VzC_U|B{a@lCq^lAwJXkNPiTLqMFaVS_N[yU{@yGe@aJe@eJg@aJo@cJu@_JaAuS{BqSeCqSkCqSyCgV{DkyAiUk\\cF{y@}KqFo@mIeAof@yE_SiA}R{@uOk@aPa@_X[mPBs]d@yVt@ePt@wM|@qMhAwFf@iP~AqPvBsP|BqHhA}VzEqQbEqQlEkPvE{OxEyRrG{HjCyHtCqPpGkPdHkPrHsGbDqGhDgPtIsGnDoGnDmRjLcRtLqFpDcKpHuJjHyNhL{NpLoO|M_N`MoK~JmKfKeNxN}MhOiIjJcIrJ_IvJ_IdKqIzKoIdLiIlLeIrLwI~MsIbNoIlNkIpNeIzNaI~N}HhOwHlOqIpQmIzQeIbRcIhRgHrQ_HzQaH~QuGfRuGdRqGhRkGjRcGxRcGrR}F~RyN`g@_bAzlDeVp{@c^poAsO~i@uObi@qMrc@yMpc@iUvs@mJ`YoJzXkVnp@wJrWcKjW}HtReIlRqSre@oI|QoI|QkTdd@iD|GeQh]{Vje@{KvR_LvRaLdRcLfReL|QiLrQmLtQqLdQiOrTqObTyOxS}OnSyKfN}K`N_Yv\\wYf\\mLhMmL|Lm[l[cM`MkMhLmMnLkMhLqM|KuMzKkLrJmLjJaZzTwLbJwLpIyLjI}LfIaMjI_M`Ig[fRe\\`Rg\\lQcVvLgV|KiV~KiVlKwVvJwVjJcWxIeWlIy`@nL}`@|Kea@`Kka@jJ_g@lKeg@~JeoAxVit@lOsYtGsYfHmYvHiYjIcYbJaYnJeSlHi_@vMm[lMe`@pPaKrEkKzEkG^w[`Nky@z^cPjHmI`EgKrFuUtMsC~AmEfAwFlC}MpHmbAdi@aFfCkF`CgGzBwGfBiFfAaEd@}DXkGJmE?gDMuCS}Fo@gIoAcKiBwYcFcNaCaSeD_SiDySqDoR}CuUsEkFsAgF{AiK{EeK{G_HyFeGmH{DgFeEkGaD}FaCaFcHyPyJcXuJuY}Kk]kKi^i\\ciAkF_KyEkQsEkQiFkSyD{OqE}QoEeRoEeRmEqRkEuRmEcSiEgScE_SaEeS{Jgg@{Ime@yIwf@iD{ReD}RaD{R_D{R{C}RwC_S_Hoe@_D{TqCsSoCqSkCuSiCkS_CkS}BmSqFah@cFog@aDw[iAoLkBwSiB{SeB_TcB{S_B_T}A{SyA}SwA_TsA_T_Dci@kA_TiAgTcAcTaAaTWoFiBya@eAsU}@wUgB_k@qAqi@oA}k@e@aTc@qTa@oTaAki@yBqtAiBstAo@cj@y@si@i@si@kBotA{AuoAeBevAaCsoBq@{i@w@ej@{@ij@eAeq@s@ua@eAui@iAej@sAej@yAki@gBsi@oAg\\uBmj@SiE}Bug@eDen@kCod@wCqd@oDki@cEsi@wC}^kB}SiBySmBySsBySsBwSuBuS}B}S_C}S_CsSaCqSoGkh@_Gyc@YyBaH{g@iHqg@qHqg@yHkg@{Hig@eIgg@kSeoAue@muCkLms@{K_s@yHeh@uHkh@mCwRoCkSmCoSkCsSeCuS_CwS}BwSyBqSuBsSsBuSmB_ToBeUkBgUaB}S}A}SyAqTsAaTqAcToAkTiAmTgAoTaAkT{@cTw@gTu@oTo@cTk@mTg@oTe@mTa@cTYgTWoTUoTOoTMiTGqTEoTAuTBgTHiTLqTLoTPmTViTZmT`@oTb@gTf@kTh@gTj@gTr@kTt@kTx@gT|@gTz@gT~@cT|Bei@~Bui@vBki@jByi@p@cVh@mU`@qUXoTTeULaUHkT@qT?sTMkTMuTWsTIeGSgN_@aSe@eTgAe]]aLy@iT_AeTgAcToAoTyAkTyA{SaBiTeBcTiBsSoBaT}C}ZoAkL_CwScEc]oIaq@}Gkh@kQupAgHog@cHig@_Hqh@sGsg@kCoSiCsSoEw`@eDe[uB_TyA{O}B{WcBySaB{SaBcTsAuSqAgToAgTgAiTeAkT}@}S{@eTu@gTo@wSk@_Tc@aTc@yS]aTYaTOsKQkUIsUKk`@Agf@BwDTe`@NaTVaTV_T`@_Tb@kTf@kTz@cY~Asc@z@_TjBya@ZeHdBa\\rAuUvBw^lHseApFav@lKypAtHy~@tKkrAdEoh@~Duh@xDuh@rD{h@lDqh@fDck@zC{j@nCwj@zB}i@nB{h@zA{h@jAmi@|@ii@\\}TP{SL_TPkTHgTDeT?yXEmYIqTMmTMoTUiTYgTYqSc@qTg@qTg@eTk@gTo@eTs@qTw@mT_AmT_AmTeA{SgA}SkAeToAcT{Bo]oCs_@}AsSwC{]oBcTmBqSoBqSuB{SqAiMoDa\\aC{SeCySgCiSiCeSoCsSoCiSqCcS}Kiu@oIki@qIqg@uIkg@_Jcg@iJ}f@mJsf@yJkf@}Jif@eKaf@gKmf@oKmf@iK}d@yk@ufC{Kke@{XykAai@y{B}[muAc[ssAeTy_AwKkf@kKse@sK}f@gKgf@aKef@}Jgf@uPez@qJmf@kJof@cJyf@{Imf@qDmSoDoSmDkSeDyRkIog@}Heg@{Hcg@uH_h@uCoSsCuSiCkReFg`@}D}ZcC{RaC{RiCgTeCyTaC{T_CyT{B}TqBsSoBuSqBaTeCaY_CaYwBkWoBoWsDsh@uAwSqA}SqAwSmAwS_AcQqAeWmCui@qAuYm@wN{B_i@uB{h@sBai@wLa`DyCmr@cAiTiA_TmA}SsAmT{AyT_BcTcBgTgBcTgBcTsB{SyBsSkCaVuC}UyCgU_DaUyCyS_DwSgD_SiDaSmD}RqDmRuDiRcEyRgEsRiEcRuEwRsE{QuE{Q}EoQcFiQoFyQoFkQuFeQyFeQyFuPcG{PmGuPqGsPqGiPuGaPaHqP}GmOiHwOkHkOmHcOyHkOyH_OaIwNaIuNaIaNkIcNmI{MyIaNoIcMsIcMcJmMeJ_MgJwLkJoLsOiR_QcSwV{X_b@id@wV}WkX_ZgWiYuJ}KoJaLmJaLmJqLyIeLcJoLcJ_MaJoMwH}Ka@k@uIsMwI_NkIyMmIsNaIiN_IuN}H{NsH}NoHaOqHkOeHmO_HmO_H{OsGuOwGgPoGePgGoPgGwPgGaQyFwPuFcQsFkQkFoQaFaQwD_NkGuUaF{RoE}QoEkRcE_RcEqR{DiRuDsRoDkRkDkScDyR{CoRuCmRsC}RsC{SgCqSaCiS_AgIcCeUuB{Ss@wHy@yIgBmScB_T_BySyA_TuAsSoAgTcAgR_AgRsAkX{@cSy@ySw@mTq@cTq@eTm@iTi@aTc@gTc@gT_Asi@[qT[_TY_TSyT_@e_@c@wi@g@y~@y@kyA[kj@Us^Y__@g@{i@[sT[sTa@kVc@uVg@uVk@}Tm@_Tq@sTy@}T{@aTcAuTiAkToAySuAqTwAcTeB}SkBkTqBiTyB_T_CuSmCcTsC_TyCySgDqSgDyRgDqR{DgS}DqRgEqRmEsRuEsRwEwQaFeRkFwRkF}QmFqQoFiQsFgQeG}QwF{PyFuPaPkd@qGgQkG}PwGeQuGcQsGwPsGsPma@yeAwGyP{X{s@gG_PoGkPwG_QiVyn@cPab@{GgQmGkP}Osa@}Xat@iPkb@mOka@cGoOyGkQgGmPaGkP_GyP{FmPqJwYoFaQqFoQgFmQ}EqQwC}KcFiSeEuQiEaS{DoRoDsRiDcSaDcSwCwSiCgSiC{SuBcSuBoSsBcTiBySiBaTgBaTaBmSeByScBmSgBaTgBoSqBmTqBmSuBcS_CuSiCkSsCcSyCaSeDcSkDqRsEqUiEoSuEyRuEcR}EaRkF_RoFkQ_GqQeGcQkG{PiG}O{GkPyGmOcHqOkHiOyH{OcHsNgHqNcf@w~@qHuNsHcOsHaOiHaOkHmO}GaO_H_PuGuOqGkPcGgPeGaQqFsPqFoQgFqQaFyQuE{QoEaRaEyQ_EgRuDiRgDiRuCkQ_DgTgCuRgCgTwBmR{AePkBwSkBeT{A{S}A}SuAySuAcToAeTmFm}@wA{SyA}SyAwSeBiTkBgSqAaN_CoToCsToAwIcAkHaDqSgDoRwDcS}DyR_EiRgEaRsEoR_YsjAoEoRkEiRgEoRyDyQuDmRgDcRiDuSmEmZ]_CuEk`@uBmUmC{]aC}]iBoa@_Am\\UwJMwJMwKEwKAcLBaLJcYV{S`@cTh@iTn@mT|@uSlBmf@nCim@zBog@|@iTt@mSp@uSj@{Sf@{SZsSFgKJuP?w]Sc^s@c^m@uQs@_RqAwVcBcXqBcWqC{ZqBeS{BoSeCeTaN{gAgGsg@gCyScCkSaCqSuBuSsBySmBiTgB}S}A_TsAcTkAkT_A_Tu@cTo@mT_@{SYuTOkTCmTBoTNkT\\aTb@aTh@cTt@gTz@gT`AiTfAySpAiTnAaTtA}SxAcTrE{l@jIgdAdE}h@|A{S|AySxAaTvA}SrAiTlAgThAeTdAoTz@mTr@kTn@qTh@qTZkTL_NFgVAwTKsTUaUa@kUm@eTu@wT_AiTg@iIiAiTuAqTeBiTkB}SwBoTaCuSkCmSqCuS{CkSgDaSkDoRwDqR_EgReEaRsE{Q}EaR}EyQeF{PeFaRiFcQiOsg@yFiR}FcRuJa[uJ}ZcN{a@}FwP}FsPoFsPsFcQkF}P}FoRoFsQmFuQsF{QeFuQeFoQaFmQgFiR}EuQcFuRwE_RuE_RqEcRkEaRiEgRcEiR_EcR{DqRoFyXmDaRoDeSiD{RgDiS}CwRyCuRyCwSsC{RiC_ScBsMiC_TwBeReCgUyBuSwBcToBaTiB}SeBcTcBaT{AcTwAwSoAcTmAcTeAuSgAuT{@wSy@uSu@wSs@mTm@uTk@eVe@aWa@uT[sTYuTOsTMuTMoTGqTG_T?sTBwTBaTHuTJkTLmTd@_i@l@qi@t@qc@^uTd@uTd@mTd@qTtAmj@~A}i@p@gUp@wSjBki@pBej@vBmi@xB_j@|@kTx@}S|@uT`AsTlL}hCdAkU`C}i@`AuTz@qTz@cTv@yTt@kTp@gTl@yTh@qTf@sT`@cU\\kTRsTLwTJyT?mTCaUK_US_T_@aUg@yTo@mTs@uT}@cTkAeTuAkS{AgSkBkTgCkX}BeSkCsSoCmS{CkScD}RkDqRwDwR_EkRiEkRoEaR}EcReFuQoFsQ_G}Q{F}PiGaQqG{PsGmPyGmP_HcPiGsNWo@cHaPmHcPsQk`@qQc`@qQg`@qQ_a@yGqOwGePwGmPmGsPgGwP}FcQsFkQcFoPaF}QsEoRcEeRwCwNkDcRiD_SaDySmCiSiCuS{BcTqB_T}AsSyA}TmAgTaAuTo@gTg@mT[oTMqTGqT?_UHeTHwTNwTh@kj@~@u_ALyTF{TD}TCqTK}TWwTa@yTk@uT{@qTeAkToAkT_BiTiBaTwBaTeC_TmC_TwCkSgDkSoD{R}D_SiEwRqEeRkFkS{EyPwF}QuF}PiG_QkGmP{GwP_HiPwHqP}GyN{HmOwH{NeIcOeIiNqIoNqIcNsIyM_K{NaKuNyJeNoJ_MaJmL}JmMoB}BwF}GmJoLuJ}KyVkYyVwX_WsXqo@_r@qW}XyViXqVkXoVqXaV{XcVkYeJeLcJgLcJgLoJ_M_JyLcJcMyIcMwIgMoIeMoIyMsIgNcIoMcIgNaNmVsHqNmHqNoHkOoHwO}GoOsGkOuGcPqGkPgGqPaG_QqFsPkF{PiFmQ_FsQwE_RiEwQaE_R_EyRqDsRgDmR{CwRwCmSmCgSaCgSwBmSsBuS}AqRyAwSsA_TkAuScAcTy@cTu@aTq@eTo@mTK{D_@gNi@cT]aOuAop@uAoi@m@}Ss@sTy@_TaA}SkAkTsA_T{AeTaB{SkBwSuB}ScCiTiCkSyCmS{C_SgDcSqDyRyDqRcEgRmEmRoEuQcFaR_FiQsFyQqAgEeDeKyF{PyFyPeGwPeGuPgGsPiGqPkGoPiGaPmGoPmGsPiGiPeGqPcGoPaGyP}FwPwFcQuFmQkFiQcFsQ{EuQqE_RkEkReE}RqD{QmDsReD{R{C{RqCkSiCoSaCmSwBoSsBySmBqSiBsSmBiTqEkh@uEih@_Fsh@qBiSyB{S}B}S}BmScCiSkCwSqCuSwCmS}CuScDiSgDcSmDyRqD_SwDoRcEeS_EeRkEyRqEkRsEeR{EcRaF}QiFsQkFoQ_GaRaGiQcGyPkGuPuGoPcHiPcHuOoH{OwH{N_IyNgIeNmI_NyIgM_JiMcJoLsJgLsJyK{JiKcKuJmNeMwHsGsKoIwKmIiN_KmT_OyYaSqZ}S_LkIwKmIuK_JsKkJqN_NyCuCcCiC}JuKoJaLiJmLgJ_MmJ}M_ImMoIuNaIiNsHqNqHaOoHqOgHkOcc@caAyHuP}HePmHuNaIeOiI{NiIcN{I}M}IkMgJ_M_NoPwQiScRkQsJwIwFeFoOwLiLqIyL{HaMiH}EmC_FgCaFeCcFaC}EyB_FwBeFsBcFoBeFgBcFcBsMcEkMeDoMyC_NgCkF{@oFw@oFq@uFo@sFm@uQyAkJ]cN]qMO}MB_NNqMZy^lAmQn@sNb@mNb@aNVwMJsMCsMUkGSmESqMy@{MmAoM_B_NwBuMgCsM}CmMiDiM{DiUcImP{GyJ_FgKuFwHqEyKcHs`@eWyKoJwK{JcLwKkM_N_KiLuJsLmJaMmJgNwIyMmIeNsImO{JoR{H{OoHgPcHsPaHuQoGyQoGkR_FkO{EsOy^_lAgK{[aHmScI{T}GkQqH{PqHmPeIuPmIgPsI{N}ImNeKmOmK_OsJ}LyJoLoKkLsKcLuKcK}K{JgbAk{@mYwV_PyN}OoOsNuNqN_O{NaP{F_HwFeHmIqKkIuKqLwP_QyWyGqKyGyKwImOsIsOqLgUkLwUkMwXqIqRgs@y_Bsl@wtAsS{e@yLoX}LgXcHiO_I}OwHeOwIwO{IcOsI{MoJgNiJgMuJ{LwJiL_K{KgKeKkKuJoK{IsKqIaLiIwLmIeKuGun@e_@wf@uYoYsPwXwPeKsGeK{GkRuMoRgNoe@y_@wJiIuKsJsK{JgHcH{AyAaKcKgOgPgOoPoR{TuHgJmReViO{R}NeSaOmTwNuT}I_OyIgO}JwQsJmRaMaWaHsO{G_PeGyOuF{NsGaRmFuPmF}QyEkQiBkHcC{J}B}JaEaRwDoRoDuRwFs\\cFc]{WyqBkG{b@_Gg_@sHyg@yGoa@sDeSmGo\\yGc\\}Gg\\mE_R{Ho[mIe\\cIwYcJ}[gFgQiF}PeFcQ}FkRei@ebBgFmPqF{QkI{YwEuQsEaReEaRuDyQqD}R_DmRyCsRoCaS}BgS_C}SoBoS}AqSsAmSeA}SYgH_@mJs@{Te@qS_@kTIwSEySH{SVgT\\wSf@gSt@aT`A{RlAqSdAmOlAyOdBmSjBqR`CgUrBiRbCsSfCcSpCmSpCuSlO_dAdFi]vCqRbCcPpi@ipDnOmgAbHei@xCwWbB}NhD}]xCq^lCs^rBq^lA__@`@aTT{SRi^AcUOcT]yTk@kTk@qT_A_TmA{SyAeUeBwSoBoSyBySgCsSuCySgDqTeDkRoDeR_EuRqE}RuFoQwHoYiGiTeI}XcC_IK[wLka@kMod@mHeXiDwNQs@s@_DSy@uFcY_F_WsDcVWyAqAuHoCcPwE_\\cDiU}BoSqEkf@}KswAmMu~A_D_]kLwtAwMc|AgEed@cEic@sCa\\{NawAiKi{@iDuV{DuVuI{e@}Icf@iMkj@gMgg@sRio@oSym@{IqVsJqV_K_UmKsTkHeNqHeN{Rk\\ajA}eB}JgP_KwPuJmQcJaRaLuVoKyVeJcVuIiWwGsT{GoUgG}UoFcV}XswA{R_eAqIgb@qJoa@sHoXkIyXyIkXqJaX{GuPgHkPwHgPyHgO}HuNkI}NsImNaJeNaHaKgH{J}_@ye@saAggAatA{{Aco@os@}d@qh@mf@oj@cLgM_LuMyKqMoK{MiK{NaKkOaKcPcJoOwUkd@iJwRiIcSsGuPsGsQaGwQcGkRaF_Q_FkR}EgSeEkSmEmTqD_SiJci@kUmrAyDeUoE{UuIy_@aK__@cKy\\sKu\\aNk^wNa]mOm[sPkZkLwRsLaR_OcT}JuNop@{~@qQ}XyCoF{JmQkKqRyJoSgLeWoKaXkJ{WsIaWcGaSuFsScFkSqEcTi@iCaD{O}DgTuEeWmEoXwDkXeDcX}CgWwC}X_CkX}BiXmBuXgBcYoAgYiAkYsAaa@{@}a@O_KgAey@aEicH_@}b@WeTa@iZs@iTaA{W_By\\wBw\\sBkVcCmVgCgVyD_ZuCiQ_EsUeEgUoEaUkFkUcG}UgGuUyGeUuIiWqI_WkTcn@ew@qsBsl@q~A_m@_aBgVgq@}b@mmAmb@ymAce@ewA_c@ixAaTgt@uTcw@qHyXoR}s@aRqt@oM_h@_VsaAyVgjAkVkkAiZw|AiLwm@_Len@_Mos@sLwt@iYckBsZayBqYizBaPerAsO{pA}_@{dDyZchC_Fs`@{Foa@{Fia@mGga@sFk^iGc_@oDwS_Kii@kGqZsGyZwGwZ}GiZiKqd@_Lqd@yNwj@{Iy\\qZ_iA_Mic@_M{c@a[_iAoLmd@iLae@sIc^cIc_@kH{^{Gq^kFk[oFy[{Eu[qEo\\kFoa@gDgWaH}j@iImt@k[}lCwFea@iGy`@uGk`@oCcPqCgPiFgY_GyYoGkYsGiYwMmi@qNwi@cp@{aCwOgk@sOqk@}HsZgHi[aEyOuHk^oFkXcD{OaHka@aKan@qDsViDqVyE_`@wE_a@qEu`@_Ey`@uJyeAcK_jAeKmhAkEec@sEwb@gGyh@_Hyi@aIuh@uIqh@}Hoa@eIua@wIsa@cJ_`@aPip@}Qqq@ckAieEmCeLoWyaAaEaPaHkXaPkp@cOcr@cVsjAeLgm@mK{m@aH}`@_J{m@eEoZkIao@wGel@_H_p@qGmp@uEyi@yDyh@aEyh@{Cci@yEyaA_EobA}Byz@q@k\\o@g]g@i[Wc\\c@gy@Esc@Jkd@Hoc@^ud@jBssAv@mh@fAki@bCwcA|Ka}DnCujAz@cd@n@wd@|@uk@l@el@Zcl@Pil@Ein@Y}n@c@on@q@{n@qB{_AwB{`AiE{_BoEoaBac@qsOcCcjAwBekAaAcu@i@ku@[{{@Lis@jAy`BlHueEvCqjAtC}vAzD{nBhB{kBPes@Jew@]sr@o@sr@{@as@aB}r@iCav@{Cgv@qD}u@eEcv@gDie@yDkf@{Doe@kEef@aDy\\oD{\\mE}\\cE}\\eF{`@kFea@cGya@kGq`@qLas@wLsr@oNuu@aOyu@k_@olBca@apBw^siBmOaw@uMor@}S}kAiIwe@}Hif@iHyf@_Heg@uG}f@gGyg@kGol@wFal@yEqh@kEsj@{Dek@oDkk@yAuWqEm_AiBye@aBof@kAwg@y@sf@c@cZc@q[g@ew@Cm^Gcn@Jof@Vwf@~AsfAhFovBrAu[|Bke@bC}d@fFsx@rDaf@rDue@xDga@jE{_@vEc`@hF{_@vBiOzBoOfGq_@bGk]rGu]zGs\\fHc]|Hq\\dIw\\zKwb@lLec@nLib@|L}b@tFmR``@}qAnHqXfHkY`HuYtGoYzF{ZfF_\\`Fc\\lEu\\~CaYhCoZ~B}YrB{ZdBuXpAsYz@yYp@oYf@u[P_\\Im\\Ma\\WuQ]sQg@}Qi@aRoDgu@}B}YkC_\\uCwZeDaZeCiSkCaSyAqLsEsY}Fs\\mGu\\{Gi]}Gk\\mH_]wH{\\qHa[{HiZuJa^iKk^kKa^cLw]_FwNiKk[wKmZyK_ZeLkZkH}PqHmQmHwPcHaPkUog@kVyf@kVue@}Vqe@mdAalBmP}[uO_\\cG_N}FkNmFgNuFaO}GiSeGuSiGiTqF}S}E}SuEoTiEoTcE}TsG}`@wDwUaMqw@gFg[qFo[cGa[yGmZqEoQ{E_QyG_TmEuMwGqPcHgPuHgP{HeOcHqMmH}L{H_M}H{KsI}KsIcKcJkJ}IuImK{JcLgJoL}IiLqHsMiHcMmGaNgGoMwEuMcEsMcD}MyCsMiCqMgC}MwB{\\eF{MkBwOcCcHqAmHuAeHyAmHeBsGyAaHiBcHwBsIuCoIwCaI_DkIgD{I_EwIgEoIuEqIcFyQyLkQcM_QcNqPaOqIuIgIwIeI_J}HkJyHsJqH_KgHiKmHsKgEmGsDeGmD}FwDwGui@c`Aon@_gAqQk[_X_b@qUg^uU{]qSuYyQ{Vip@y{@_LeOwWu]OQuKsNsJ}MaZcb@oLiRgLuRaLqSmK_T{HiQeHsQaHqQoGaRuIaX}HeXiRsr@uH}XwHgXgIsXgIeXuIaWwJiWcKuVeKyUop@cxAwJ{TkJ_VcJwUqD{JkDeKgHgVaHqVsGgWaGoWyFuYiFiZcFeZqEcZwEeZeEmZaEsZsD{ZeF_c@uEsc@mEmc@_E}c@{Dad@qDqe@aIekAyBac@oBic@eByb@yAqb@{Agh@mAch@w@{h@k@yg@]{`@Oo`@CyWI_[Pqr@`@sc@xA{gAfBa~@zBe_AlGcyBbCa|@zBo{@jAsf@|@ig@h@}f@^og@Nsi@B}i@Cwi@]ij@i@ya@e@cb@s@_b@}@kb@eIqhCmIwyBmBgl@QiFc@aN_B{i@]{KK}DeDucBCgCi@id@O_WIeNIcZOit@?gh@Bck@@{JPoc@Vk{@Baa@Mka@[ma@S}O]eQu@qWaAgXcAaVmAkUsA_SyAuSkB_SuBuSgCiT{BmQoCcSqCwRqDiT{D_TcEkTiE_T}C}MmDoNiDaNsD_NyDoNcEqNsEoNuEkNcGoQkG{P_HyPcHgP}HkQ{HyPwIuQkIoP_HiNeHoNiHkNaHyM_c@s{@mHqOmHsOoQg`@kH}OyGcP{GcQkGwP{H{S}HyT}HiUqHgUwHuV_H_VcHqVcHsVuEcRmEoRmEuRmEuReEmR{DqRuDyRyDoS_F}YaFc[uE_[gEe[eD{W}CmX_DiXmCyXyBeUqByUkB_V}A_ViAsPeA}P}@aQy@cQgBgc@}A}c@m@qT]uTa@oTY{TUiTSkTMcTIqTi@ohCQ_W_@yWu@iYy@cUcBs[sBwY_Dy[qDe[aEaXqDyS}EcW{DqQmGkWeGcTyFcRaGgQqH_SqHkQaI{PeIePiJ{PqJyOgMyQaMgP}G}HyGwHyNoN{NgN}GwFoG{EgHaFaHoEuHcFmHoEyHaE}HsDkHuCkHmCqHmCgHaCsGqB}GkB_HcByGwAmHiAmHcAmHcAgHs@}h@_E}SiAoNqAuLoAmPiC{K{BoKgCsGoBoGuBsGaCcGcC{MgGgFaCiFqCcFyCeFaD{EeDiEcDqHeG{G_GmHsGqGiGeEgEeEyE}DyEsDgFiFgHcFkHoFkIgF}HmE}HwEeImEoIoEsIsXqi@eM}UmFqJgF{I}NuTeOkTyJkLcK}KsKoK}KuJsEmDiEcDyEgDwE_DcM{HcFwCeFoC{JqFwFsCiCsAcV}L{MsGwM}GgF}CcF_DeFkD}EkDgEkDoEmDkEwDmE}DaF_FcFgFyEiF_FwFyCwDwCyDuC_EsCeE{GgKeHmJcDwFwEmI{GmM{Py_@eL}XoN_]eLaXyKsVkKsRoIgOyRg[mj@ox@cWi]sIsLmIaMgIqMcIqMmNaWoKiTuJiTqJ_UwPqd@uE{NmEuNaGwSeIa\\wHi]{@oE_FuXgCiMyBwN{D{XuDa[iDk[qBcW]oEiAwOaA{Q{@_Ro@kR_@aSI_F_@_UU}\\EcNDcNLuMP_MrB_y@vB{e@pCme@zCoa@pDya@zE_d@fFgd@jJms@vJis@|Ms~@dF__@zE{_@|Fgg@|B}RtBsSxAkPrAiPpAiPnA{PxAeYdA{Xz@g_@X}NTmOD_M?kM@{MIiMa@sRCuAoAil@gHkjAIcAuGgw@{K}y@yL{p@wJcd@}G_Zw_@o`BmCsMmCeNeCcNuBsNoDqXoAeLiAkLaAiK{@}Ks@{Ki@qLe@cLa@qLYiLSoLKgICqIAiIBcJH}LJ}Lb@mPl@gP`AyRnAkSdAoMjAoMrAkMxAoMhByMlBuMvBqMbCwLrBuJxBsJ~BwJdCqJbBmGhAgE~DkN|Je]vJa]rJi]fCiJ~BsJzBwJtBcKdDuP|CcQjCkQzBoQ|BmT|@{It@{IbAuMx@_Nl@iNd@eNVuKX}KNyKHaLDcNIcOM}N[oOYyKe@eLg@iLk@_L{@sLaA{LeAyLoAqLeA_JkA}ImA_JwAyIsBwL{B}LiC}LoC_McBwHmBqHgF{QsFqQ}FcQ}CuIaDsIcI_SaTgh@qVal@qL_Ycz@eoBwKyWy`Ac~BeG}N{F_OgFgNQc@sFaPmNyb@kMce@eKye@}Hid@qH}e@{Fee@wE}f@kDie@oBy^_B}b@cB{iA_@kp@_@sr@f@cjAfAo|@zAcw@~CcbAtEqbAjEyu@dJgrAjHybAjNq`BzFso@bK}gA|JkiApRccC~Gu`AfCe`@xBu`@lB{^bBg_@rBke@~Aaf@bAg`@t@y`@`BwgA\\yf@Rog@D_^?u^Mq^Yq^Ya]e@k]m@}^q@u[y@a\\{@u[aAgYeAgYkBua@qBo`@_C{`@}@aPeAiPaCc\\mAsPuEal@gFcm@uGos@oOsbBsHwy@aEmc@mGkq@wCw]qF_n@{Doi@aCs^oAyWk@aMe@_Kq@gNiCoi@uAgb@{Asf@o@mc@c@mUi@{Uk@yYw@gw@G_r@Hal@VmVJqULgb@Tgb@z@i{AZ_m@Hqm@Im\\Uw\\a@q\\s@y\\u@mV_AkVeAiViA_W}AmWiBgXsBmW_CuW{E_d@uFyd@wFq`@iF}[gGs]}G}]mEgTaF_UaFwTiFwT{Mwf@gOkf@cNed@yJc\\{F_SgCeIwc@_yAky@}pCgk@klBma@}rA{Tcv@iLi`@yKu_@_Mgd@oIy\\}GkZaGeZqFc[qEo[aCkQ}BgQoBmRaB}QuBkYgBoYsAgZeAaZe@yQ[_RMkR?aR@wUNuU`@uUn@eUt@oT|@_UtAiVrAcTfDsj@nDwj@tDun@|Dqn@xKeeBnHqmAnHylAza@exGra@kxGzK}dB`HmkAnCoe@|Boe@`B}`@rA}`@~Ach@x@yYb@cTZiTZcTPkTRe]Ds]GkYSo\\e@gf@UyR]uRk@eUu@cUq@}T{@aU{AgZ_BeZiBcZwBmZaCq[uCy[gDa^{CeZsEaa@aF{`@cGgb@mEwY{EcZeF{YsF_ZuEwT}EiTeFwTgFiTkFsTyEmQuFuSwFkR{Jq\\kKq\\eLy\\mLy[eFwNuF}N{FwN{FsNaGsNwE_LmN}[mNu[qN}ZwcAuuBq_@yv@a_@yv@kPo]kP{]iRqa@eMs[gIcSgIySeSwh@{H{SoHySqHoTsH_UkGgRaG}RgG}RyFyRoFyRsFmSoFgScFkSuFaU}FqVoFcVcFmVuD_RqDcSaDsRkD_T{Fy^oFc_@{Ek_@uEy_@_Ek]oDu^wCs^kC__@aCi^sBg_@wAuYmAeZy@wZq@cZUaZByY^iZv@wYhBg_@fCo^pA_N|AiNfBcNrBiN`CaOnCwNvCwN|CuMpEiRtE{QhFkRnFsQvF}QlE}MrQmh@x]abA~@iCbm@ieBxOma@xXws@tMi[bLi\\pu@o|BhDqMlFcS|BgInBmI|EcUjEeUdEqU~DaVrCiTnC_U~BuTvBaUlAcOfAcO~@cPz@oOpA}[~@yZBm@ZiRJyRJcSDuRMgMK{MY{NY{Lc@eN_@_Ne@mMk@sMiAmQoA_RwAyRcBiQaCkUeAoIaAqI{C_TeDsSkCmNsCmMuCmMwCqL_CoI{B_IaC}HcCsH{BwG{BeGeCgGgC{FaDaH{CaGiI_OaEcHwDcGeEgG{DkFaEcFeEwEmLoLsFyEuFqEyFgE{F{DmDyBkDuBaJ_FiJuE_JeEoLgFw^sOaJ{DiJ}DqDeBqDeBkDeBkDkBuE_CiEaCqEkCgEoCwE{CgE{C}FuE{F}EgEgEiEiEqEoFiDkE{BqC}B}C}BiDsBcD_EqGyDuGsDyGkDcH{CwGmCkGmCeHeC{GgCwH{BeH{B}HsBuHqBsIgBgIiBmIcBqIwAeIqAcIqAsImAcIkBmNiB{NeE_^eFsb@eFwb@_AkG}@cGcAoGgAgGeAoGeAcGaAoFcAoFuC}L_DcMcDmLgDwK{C_J_DwIuDyIoDcIyDuH}DsHaEmH_EgH}QeZuRmYyRsXmRcYwLyRqKgRkFgKaHgOmC}GmDoJyFgPcFeQkE{QuD_QaCwM{BqNcBmNqAyNyAqQgAuRw@yS[sQMaLBwKDaLRsLZ}Nl@yOjB_]nAyS|AsTrEuh@~Kc{AxA_VzAkVhAeWfAqVh@eO^cP\\}ORcPPgQF}QGmQUuRc@mTe@}Rw@{ScAgSaCm_@aDg_@kD_]eBcNqBkMgCmPsCqP_D{PgDqP{CuM{CkMaDgM_DkLqJmZ_KgYqEyLsEkLcGmNiGmMyEkJeF{JwNcVmMcSuMuRsLiOeMaOq[k\\yTqTmAgAm^e\\gZiX{XyWgU}T_RwR}TmWkP}T{I}LqM}RiO{W_J_QuKgTeLyWoIoSeJoWiKw[aIkXaG_UuHi\\aJic@sGu_@eFq^iGgg@gDw]_F_j@MuAaAmKaHix@{Eqg@k@yFaCmV}B_S}ByQmC_S}CiR_EkTaEoT_FyTyE_TcFsReFiQwL__@mMu^gHqQuHgQcIeQyH}NoS__@gTi]iA}AwEsGcHcJqQuTmV}WcWoVsWuVcKoJ}JeK{OaQcPcRoO{R{NcT_QeYcPmYkGwMwFuLsFeM}EiLsF_OgF}MuFmO_FoNeKe[yJy[qJuZkKw[iJ_XaEcLgEeK_GqMgH{NkHiNuHgN}HiMaGgJkGaJsGkIoGiI_GuG{FyFuOqOyIeIiJuHmVcRam@ca@aSaNuB}Amm@cd@}JmIcHsGgH_HyEmEuEyE_FmFiE{EmUoZcSsZoLiT{Swb@kSmg@qQed@kj@kqAiKyT{KmRmH}LkOeUiPmS}QgRoU}RqOqK{YcSct@s`@gl@{\\_e@uZia@c]cPgPcQwScOeToRw[}Qi_@_Ok_@eLk\\uY}dA_ZahAsReq@iQke@oPc^iImPwPoYuZsd@gSaWiTeX_`@ud@uh@}n@{d@ok@ea@uh@_`@gi@uYcc@_`@ym@oW_e@kXii@m[ut@_Rce@{Syl@yQyl@yQqo@wOem@q[qoAgUe`Akb@cgB_P}p@g`@w_Bo[srA{ZyoA}WqhAsRwx@kb@qeBcMge@wYkeAuDkMiQim@uXmgAmZypAul@gdC}U{z@eN_b@gOab@_Sad@wMaXkHoNaW_b@kPwU}OuSeP}QeSySi[mYo_@{We\\wSsOkIy\\yR{HcDuk@oSi[iJq]_Iqa@eIym@kJ}j@}J_b@iIeB]mk@yPiSiGsf@}Q}OmG{ZwOkNaIsKmGkXuQaYkSo_@w[{KsKgy@sz@eSoVkUyYeSyZwS_]eSy]}Vge@qb@u_Ayn@k}AsIsSuQgd@eJuUaL}Z{Rem@sLcc@sNgj@gRit@kPgp@{Jya@cYyeAae@ciBym@}aCmCoKwOin@aUocAqVkbA_XeaAoY}_A{Zs~@o\\}`AyO_c@yNq\\c[qq@m^su@}j@adAax@egA{RkW{r@i|@yeA{cAcXkVEE{zAsjAo}@gn@ad@uY}i@g[{MwHwHiEg^kSoKsFmPsIgb@mToy@{a@gn@wZMGsgAeh@}_B{r@qv@e\\az@u\\gWuIwm@mUc]mL_b@yNgt@aVwu@_Vof@uNabAiYo~A_b@gaBm`@{~Aa]a_AwQc}@gP{Z}E}zAsU_mBqVugA}LwvAcN_{@_HosA}IwjAsF{Zq@yt@oBcx@g@cy@Fix@xAgo@fCyy@~Fup@zG_i@nHoUhEg[xFeh@`L}LvCat@bT}x@xY{]vNs^rPim@~Zgh@pY}kAfv@gf@n]ye@x\\gg@t]kf@v[ug@nXkSbJuT|Imc@fNaj@lMyl@~Hmg@nDoa@d@}]M{[aBe^yCw[}Eo[eGqm@qMar@}OiViEuPoBoVwB_^mA}a@?m]pAee@rEih@jKm`@fLyc@lPeTpJsWtLof@vSyCbAgNtEkUnGq[|HeWpDqf@vEgU|@mVFaZ]eQcAc`@_EuV{DyReEod@uL{hAu[m]gJkYeGwHuAeSoDi[qDa\\oBsg@kAkHLs_@b@kd@bCmFp@gJjAgc@jHsUfFuq@xRw_Bbg@g`@fKk^nG{Y|CuYrAmMl@ea@M}_@}Ae[cDi[oEgv@_O{f@{Jks@aN{c@yGsl@mFsm@cCmS?aT@wk@hBeW|AsZxB_a@jDi\\xCeQbBwg@bE{k@vDwe@|A}i@r@eg@?ue@s@eh@sBuc@iDyc@cFip@sI{i@uJwYoGmNeDyRsFgT{Fa[uJ{ZoKyUcJsb@mQuUmLiV{Lk[eQuU{Mk\\eSwZ}RiUoPmXkSsKwIg_@c[oZmVmZcVoOyLc[_WwVoSur@uj@mS_P}XmUyScRsRyQsRiSiZs]{\\{c@eXab@cT}^yT{b@wVwi@aToi@qVct@mPgk@yOim@wTg_AuVycAoN}g@eNgb@oSij@}Og^oZem@aOcXeNeVec@{t@}a@er@aRsYoRgX}MuQaLqN_E_FgNyP_VwWcVmUei@eg@oi@se@qReQkd@qb@u]{^cPoR{Ui[oTu[sSc^cUke@sSsf@gP{e@oMuc@_Ik[sNuo@gJ_h@oHci@uFwi@aGyw@u@eNeBsa@oDg}@eCow@iE}pAyC{z@kB{e@aEe`AwGumAgFqw@eLasAuLaiAyRyzAaDsRiEoXqIcg@kNcw@sJkf@qOuu@qLqi@eCwK}Kkf@mj@e}BqOoo@}Lyf@io@kiCgh@}uB{l@acCaG{Va]wsAms@iuCsYkkAse@inBag@wqBqr@qtCsa@g`B_n@gaCsM}f@y]uqAg[igAi\\ahAw]{fAsb@wnAyg@iuAme@{jAq_@_|@{\\}t@oc@m}@ad@m{@c|@q_Bae@my@kZai@kAoB_cBgyCuXgg@eYwi@kd@_~@sn@quA}Red@qa@geAa^_bAq[g~@q]uhAy[qgAaf@{cBkgAm}D}d@wcBif@mgBoZsjAu[}nA}ZitAw\\}|AgKeg@w_@mjBkUmiA{O{v@yQobAe@wByVwlAy\\eoAwIab@wTogAcAaFkUwgAgZuvAg`@ahBsg@qzB{|@kuD}k@waCck@k~Buj@qxB{Y_dAeZ_bAc^_gA_Yqu@ea@gcAgb@y`A}b@a~@qb@yy@_d@iw@oe@cw@yc@yp@}c@}m@mh@cq@yi@ap@ec@oe@{i@_l@wp@cr@yr@gs@ux@sz@mYwYsa@ua@oAqAmuA}wAuWiXq[a]ak@qn@kZi]qZi^sUyY_]ac@g\\ic@w\\me@ma@wl@ca@ao@wV{`@}a@cu@qZ{i@sEgIem@kkAwp@ewAoRgc@e^_{@}b@agAks@_kBi[cz@kd@omAg_@ucA_k@ebBsRkn@aQkn@iNch@sHc[mKsd@cJub@mNcs@cN_x@aJsm@qNkfA{Hyt@sF}j@yEwm@sDqj@wDmp@qBub@sBaj@iBqt@cAao@c@mn@Uiu@Pao@l@kl@rAky@vAqq@nBiw@rCwq@tCun@xG{sAlGyrAlG_kAvFgfAvJykBvFyfArWmaFvMweCdH{sA~G{xAjGg}AbD_`AzCcbA|Bk|@|DgjBdCgfBbBg`BfAmnBZevBYsfBe@_eB}Aw|AeC_aBgBu~@iB{x@a@kR_A{[gBum@cC}t@{D}dAgEcdAsDax@mDyt@kJefBuJabBsEst@cI{lAcI{fAuBeYeJojAuOqgByQymBuX}hC{]_xCgV{iBoQioAuQ}nAeLqt@uIgi@kSmmAiUgsAqP{}@wPc}@y[q_BgPqw@eSo~@wRw{@{W{iAaIe^sRo{@uXqmA_[ytA{s@e_Dk[gtAk\\atAkr@gmC_u@amCcYycAgXscAcWkcAaKua@}Jac@_Pgs@aPqu@mPmw@yRecAoIoc@mQobA{Jql@gCmOoNs|@cRooAgBwLsMaaAe@oD}McdAwHik@iIan@sSi~AwM}bAyMscAaOoiAgWwqB_UilB{SojBsSgpBmP{dB_Hss@uVqtCkQwlBqS{oB{PqzA_Q_wA_RyuAsMs~@qQojAkDsUwAiJ_Lis@}RukAu[khBuNqv@uNou@gZi_Bq@qDge@}eCem@m`DaF}Vwh@orCgd@ufCgc@ujCm[}tBeYoqB{XkwBaQsyAiQo~AqK}cAeIsy@}OmeB}Mo`BcU_|CeIenAuEkw@_OaoCgL_yBaTqaEkTwdEyPueDiJ}fB{SaaEuIm_BkH}qA_IklA{KczAmLcxAcM}sAqUwzByNapA_M{`AiI{n@aKku@cEmYeJym@qBwMeMay@yXuaBkMis@o[obBoB}JyP}y@wWkmAqBgJ_Oeo@cXeiAqQss@{S}x@ga@yzAec@q~AkMwb@mQem@iEeNwRon@ev@c}Bce@qvAq@oBwNib@u@{BuVcw@ACim@_hBoB}Fw\\{dA}FsQaSmq@_XmgAsUkfAyQs_A_RonA{Jcq@qUgjB{NeaAcLwq@oMir@_L{h@{Mal@qGuWmOek@s^amAo\\o`AgV_q@{Wor@qn@w`B_Sci@gQ{f@eOgd@yPyj@wIgZqJe_@sOkq@gJcd@iKqj@sKyr@eJ}w@eEgi@kF}r@{GajAeGs|AaJsjBgHsjAeHew@kEob@oEg_@sGmd@iPu_A}O_y@oOen@_Mid@iNgf@_c@okAiMg[aEuIcGiM_ByCu]as@cBgD{@gB_JgP_Q_Zoa@kt@}y@q}AuDoHiBqDgd@ux@kO{[eBqDgM}YiLgYkLa[{KyZgKu[eJ{ZmMkd@sHmZ{VujAkNmv@kJ_n@_Jwr@{Gso@sFin@yD_l@{Em~@oCs}@w@uj@Wuf@As^Loj@j@ib@rA_p@??h@mQ~Am`@fBs]jDul@fGur@jBkSvG{r@zJmaA~PigBlIm_AvEkn@vEcx@hFilApBer@bBkz@b@gi@Pop@D}j@Wgh@]i[u@oc@MeGg@_WmAwa@cBme@uCgo@yCag@OmCsE}o@oFkp@gH}s@oEua@cH}k@cNg`AkMmv@ESmMir@sMyq@cUaeAeOup@w]oxAeV}aAgPuo@uAoFav@}wCyd@ciBmq@qjC}\\_sAsTsx@wQyt@yT}{@ajCqcKwcAyzDcrAsdFsE{PsXadAyRyu@}WoeA}DuOcUc}@ot@s`Dgm@mwCqHeb@gMou@}`@alC{MieAoPaaBgLkzAsG}_AkGqjAoFurAiE{dBgAcx@m@kx@BypBt@wlA`CgtAbMa|DpIifBrJuvA~`@mjFnc@uqF~f@ilFji@omFrrBkbQ`dBkmMlyBepPbdBilMdq@}dFxGch@rKcz@tAcKtRsxA~[ocCd]adCdOckAlHqn@hGgo@tMmvA`J_iAfH}aA\\}FrDmm@bCsZ|Cgp@zDs`A~Ca~@xD_zBhGmgEjEy~ChAuq@h@qn@Je\\My]K_Ua@}TgAyZo@sS_AoSy@aQoAwRyByYu@eHyI{|@gDaX}DgY_E}WwG{^iKig@kEgR}IyY}DqMyGeQmG_N}IwOaFiIiF_HqG{HuEmEyFkF{FmEgH}EgGkDkH}CiGgCgIeCuGcB_I{AuHq@iH_@uHSaHNaIJeKvAuNlC_K~CyN|FoJbFyM|IkQ|NoUfSyWhTsOjKgL~FcRdGoOfCmL|Ayf@bCwx@kLwx@sNyoAyWkeAyWsvBio@ur@oUe|Agk@sIaDiAc@}tA_j@}zAyn@e|BecAogAkg@axBkfAe`A}c@yOwIq~Ac|@}}Ai|@itCkdB}hAyq@ifBkjAmn@u`@gIgFqJsG}B{AsdBkiAo|AibAeaAqo@yYuRuuAo|@u{AqbAmPkKqoBipAo@a@shA_r@qbBi~@}uAgq@qsDgaBuzAgj@_hC}x@_j@_Q{hB{d@moA_ZadB_\\}jBuZ}pB{WydBwNchBwLmoAuDad@YsoAcB_}Al@evAbCkmAhFq`CrM}rBvMgeB`K}kAzCymAvA_sAK}Oe@gaBsEiv@aEaZ}BYCyf@wD{_A{Jqt@iJWCiIeA_p@uKerAyUe|A}^mTwFSGap@yPmoBis@cv@}X_gA_d@w]cPg~BmlAuWeOMIuJuFcv@cg@is@ad@qVuPebAqu@ssCs{B{uAijAaz@oo@gkAsz@k_Aio@qt@ee@yIuEozAc|@sz@ec@kx@m`@chA{f@aeA_d@{zA_j@}iAo_@orAk`@qlAyYwoAyXujC{k@qqB{b@e|@}UgmCit@s~@{[g`@eMqfD}nAaQsG_|@}`@emAmk@{mAqn@ykAmp@{rAiy@}FcDmyAi`Aom@ca@}|@aq@{iAk`Ak_Aox@cw@cu@y{@g~@ih@{j@yWk[}VgZsp@cy@ej@ot@ui@st@el@{|@mn@o`Aar@qjAiv@cuAqu@mxAex@gcBcq@a|Auk@{vAib@qgAyUup@oCaJsr@ssByk@qkBw\\gjAeV}y@}FeTun@c~Bwl@__Cau@w{Cok@{gCof@ayB}C_P}\\sbBeVopAq]akBe\\{lBsv@czEeT__BkE{Yo[}yBoOikAea@ghD{RmgBeFmj@w\\khDmYqeDmNmiBiP}oBmAsRoE}l@yHe}@_D}f@}Ca_@eE_h@gCmZqLqnAgDm[{^{kD_NymAuL}`Aw@uFoUebBmVo~A{Z{kB_\\{hBu[m_Bg^ibB}U}gA_t@ixCgz@a|Cmp@a{Bsm@qqBqAcEe`AkxCeHwTc`A}rCmx@y}Bgg@}uAkGyPsh@qvAgp@udBgu@qlBu_A}}BodAadCk{@coB}x@ahB{JcT{FaM__@cw@ojAkaCwt@wyAod@o|@iz@m_BkKcSkUed@aJcQqYug@ccA_hBmg@q|@aFiI}FuJkGgKkx@etA_|@wxAci@wx@aa@yn@kJsNaKaPse@ut@wwAswByAuBqcBqaCw}AcxBcoBojCo|@cgAwaCstCo~@keAohAynAcgB_lBk_Bm`BkbCk~BkI{H_gAgaAklBicBo|AyqAscBguA{vDawCowA_iA{m@{h@yp@yl@qHwGo~@k{@oeA{fAccAohAy{@qcAu`@kf@a`@ag@}z@{iAa`@_j@w_@aj@kx@mpAkr@cjAiv@cuA_u@owAqP_h@gIuTm\\_w@cFuW_EqSqBsQy@qQa@uT?oj@rAqzAj@{a@pAuWlBkRzC_ObE}L~HcX~K_Qpm@u_AnN}R|`@ok@hh@yq@~_@_g@td@}j@tsAg_B`g@ul@tT{VrEkFbLmMna@kb@xy@uz@vu@{r@tlB_gBxtAipAhaA_~@vPuO|m@{l@|QsPxf@ad@|E{EhUaT|d@mc@nBqBzC}CdPkOnLwLt`@}c@tPaTrRgZrRi[~Qs^dQw`@~Roj@lHcTvRym@l[}hAfMad@dFqQb_@esAlR}q@rdGemTnZegAra@g|ArKga@dKi`@xMil@pG}XzHm\\bYmeAhf@mdB`HmVr]{mAnXq{@~HuUhKc\\vA_GfBsIj@kDxCeRdDkR|AgJxDqURiAvBaOnBeNDW`CiSBQlAqMl@}FvB{V`AcLhDqa@tAmM|AaPxDk_@fGif@pDyT~Iwi@nEqUr@sD`CsMx@kEZcBjD}Pp@iDd@yB|DqQjAsF|@gEj@{BPw@j@cC`@sBJm@\\}B~@_In@iFt@qG~Fqj@fCe]?CfA}W`@}[FmKDqa@GaNEwDAwAAu@?k@AeBC_CWkp@m@ir@yAgmBa@iJaGsg@cHkg@iBgMaByLkCyRq@eFe@kDk@gEoA_Ki@oEYqEx@oItEu[~Lyx@rAuIbC_OjBwHnCwHBEvBaFzBeEfE{HpAcC~DmIjEgLhDoLjDsMzAmGvCeNtCcPjBoKfBqKfBiQdEyc@zDyb@fAqQNmCXkEf@oIPsD`BkT|Cs]`A_K~@uJJs@vAcLfAmGvC}L~@eFv@uEhAqJd@eGHiH@wL?{MV}H`AaIvBiK~B{FbFwFrDmFpAiDnIme@`@qC`pAigIbTgvAbW}nCrPqrB|HaeA`K_qAnJeqAzPqwBzPewBzKkrApBgU`Du[|Fij@fEs]pHsk@tIqk@zIel@fM{_AzLo}@xL{{@jk@q|D~qB{_OhPm|AdFqgBzDmpAtBom@~Baj@`AcV`Ewr@|Dwe@tBgR~A_QdCeSxEg^jIid@nFgVlIs]tC{JjGqRxEwNjS_i@hUqg@lfAi}Bf`@uaAtRom@rHcX`K}_@|L{i@lJ}c@jRgdArKar@pEk]j@iFh@yEbK}|@vHqt@dHkv@~Fi{@bFe|@bFslAr@q[fAaf@b@wRdC}uAtAycAx@iz@n@ebABaHFuqAd@i}BIahBFkj@?cPW{sB@}Nf@ksAf@k}@pAqsB`DimBvD_kC`Gy_CzAkl@l@_g@DqBEgn@dB}m@x@sUvDqaAfGegAjLq}A~@}NlKkfBlJwsAnHgaAfJgkAfBoTtGsw@~Dec@~Mu_B|Hkw@lTuhB|I_u@bGgd@fCsQ|CmSdGg`@hHgd@pKqm@jGo[fGeZtNop@hDeOvCsLpNmi@nJc]lLc^lMy_@vUkl@vLmYxL_XzKuT|Re^fK{PdEuG`H_LdG{InRsWjUeYf\\_^vPaPzQuOjMcKzXcSvZkRfMaHpJqE|R_JhJ}D`JmDzQ}FtHwBdMuBzr@cNhT_Evc@mFpCa@|GcAxVcFj_@}JhPcFrNwDfHoB`D{@rO_Ev^eK~e@cOfR}FphA}b@pDuA|CeAXKxJcDdFmArGcAtGi@vFOjEItBArJGbHElMC~I]zIaAjHkAr]{FbFy@vDo@tQ}CbHk@rBMxIStUc@fRK`NiApFoAvHgCtJuEfNwJjG_FtEaEhGeG~A}A`IcJbHwInHgLpI_ObGkKrEqId@_Aj@mAbAsBrBiFjFsNjI{VdJkXnHuSzEmLhHkO|FwKnHeM|f@}t@zTo\\fGuJfGyKdGyM~DyKpCaKpC{LpFoX|EwThEqQfDiMhKe`@pBeH|BwHlA}DlA_EfAkD|B_IdDaLvDyLvDqNfDuN~BcMXwArAkIF]`BcKzJkj@lAeGtC_LlJmZ|D{M`CwKfByKh@oFh@qFv@yMz@i\\fAua@lBkh@j@sKl@mLfBeXnCy[`@sDbAaJdEq^vGum@bHiq@lDwZvCoR~CyOzCqLzDuMTw@xDqKxGePpEiJbCkEnC}E`GsIl@}@tDeFjd@en@|Xg_@~E}HlD_HlB{G|@uH`@eHZ_KTwK^sHt@gH~BaLfC_J`C{GjCsHnKkX~DeJtFwKdEmH`DaEfDyClDwBxGeEzMuHlFqD`DwC|BwDdBaFpAiHbByMt@{GR_HAoHTiHXcEx@uCxB{EbCuD`HyHnG}FpGkF`WsOrF{DlFmF`EkGvCkH|CeMlDeLhFuL~GiLvHmL~HoNdDoGbD{GrAeDzBqFbFwNdEaPbDmPlCiSbBiRbCk]lCw]zA_QzAiQ`ImgAvAaQtBgPjC}LpDaNnFyLlFmK~FwH|EiFpEoE`JiI|DcE~AaBjGcInFmHzN{RfNuPnIkIzEqEzHgGhIiFpFoCpP}FbIsBhLeBxK_AlMe@~P[`JQrt@i@hQOjKP`K`@hJ`ApM~BxLtDPDxRhHdNfF~CdAjYvJjKvBzQhEvTjCjEh@pPzDhKb@lGSxD{@zCiAbDkB~GoI`CmGxBqKvA_P\\{RQkb@tAcVjAuO^{EzCuZdC_Uv@iF~NuaAbGwb@`@uC`@iEvEmf@rJo}@fEob@xJcdAp@eH~Cs^jD}VfD{QzFoZzOws@dHi_@vH_e@|CwSpFqd@`Es^tDec@jCe[xB_`@lA__@|@}\\t@gi@\\ci@?mJBaGBwKCcLIcGFoEvAaR@ya@d@y`@}@cR|@{QlA{Ul@kKd@mHvAaO|Dc`@~G_f@zDwU~Ei\\l@iDtNkw@bWulAdO}w@vf@inCjWylAl\\itA~Lcf@dS}x@~Kob@zEuSrBmIbEeQjE}PlKml@lLyr@dEiUtHk[~J_[lOsb@xIaVzGgSvCwJz@wCt@qCzKgd@zGc\\pLei@bHcXzD}LpCsJd@aBfH}QlMs]tSud@pKyRfKyQbS{[`B}ClCaExZue@hIqNzHeN`HyNdJsRpGiQbFaOdEaO|Jqc@zA{GnGcd@`@cF`AkOn@eOVcIKcPIsEIeCm@mEs@eCs@cCy@qA}CyC}@e@aA]sBg@sCG_ADoC^}BhAyCfD_CxCiDjKyNbg@sJhZwC`J{GvR{JhWwMx\\oOx^qEbJiE|HgElFoExDoFrB}D^aHe@mFeCsDiDcDkHwB{Ha@kFW{I@eLr@yI~AoJ`A{D~AuH`D_Mf@_B`@eDZeEFoCe@mDaAaD}@cAuAs@wAg@yBJwAh@yEdEeH`PsGdMcNjUeJ`Q}H`QoHpSoD`IiCtDqBpAqDbAuDm@aDaByBgB_CaC_K{PkEkFyDuCqFqC}CiAwCgAaHmBeD_@eCEcDf@}ErC{Cl@_C]mByAqAwBk@oBi@uCEkBHaDp@kEtAiC~AcBfCs@hBG`Bh@pBpB`A|@jBvCvArAhBbB`DzAdD|@fQnEdGnC|BnBtDxCzD|EjBnBzAhB`BlAnCh@fDu@fBmBf@kArBoEtAcJjCuRhEiSpFuRfFaN|FcMlD{FxIqMpNsOdJoHzG_EpJyDlF_AfHFdHn@~Gp@fFp@hCIpCw@~C{AvBcBpBmCtAaC~ByHv@}FJqC?aJc@{E}@kFuBsHqEsHcCiEmC}EsBoD{AuDi@aB{@oCw@qDuBeJw@}IWqONsJj@iN`@cIdAsMlAmLfC_PrDqQxDuOhTs{@Nm@hIm\\zGkYdEyShD_RrD}YlC_\\x@_Qz@oR^wZDkUc@{]w@qSeBwXqB{Tk@sE}CmXcBcLgCyOwAaJ{AmJaAuH{@}H}@yJm@_Ik@_JAOc@}Ja@sMOoJIeK?uKLoN@]d@kQ|@uRtA}QfB_Q|BcQlAgH@IbAeGvCkQjFqVjEqPlB{GtAoEhEiMpEkMvDuK|BkGpBuFrCeIjCoI`CwIFYtAuFjAqFhAwF`AiF`AgG|@gG|@mHnAuLVaD@MVcDj@}Ib@iJ\\wIjBgv@n@oWXsXDiOOsRa@yTq@kVmAa[iBsc@gAsg@GwCQqg@p@i\\`Boa@zBo_@nAiPjE}c@bG}f@dD{UdB}L|Ggc@x@cFbEcVnKsk@nMok@vNgk@nP_l@lLc`@zVqs@zF_Sxr@olBnkAg|CjIcUvi@iwAve@yrApWc`AzJic@tFeZj@_DnB{MlCqRlCaUtBuU`BcWdAqVh@uUZmV?y@Kua@e@wVy@yV_Duf@kEed@kEw^mEy]sBkOqHuj@oF{a@kEka@wCu]wAyUm@iR[m\\?}Tl@gg@dCuiA^}k@Dwe@@gCIe\\YaT{@s_@mAo_@sCan@sBk\\iCg\\uEci@sF{d@_Fo_@mGsb@sHsa@mHg^wIeb@iI}\\sj@mrBgCuJaKk`@yM}j@uE{SeGiYuBuKwFg[mJkn@sEg`@iDa^wDwf@uC_k@gAa^_A_\\AgFMo`@G_Qf@gf@lAsl@jBwd@hBw\\xCy`@xCuZ~Eq\\lFo`@nBwOnHgb@zKmf@`VmjAlE{U|CoRtCuW|AmP|AqTj@wQR}UC{LSsQ]oP_BqZ_AuKgB_PwD{UyEqWwDcPsCoKyEkO{Pc`@uT_h@iJqTkNg_@aBkFwHiVaHaYgI}a@oOo`AsE{YuKse@}HgXsIiUkOsYoHkLoIkK_N_Pgr@gp@gWkYiTuYiVwYkWcVqy@gs@_MoK{TyT_NsSsNoVsHmRaLi]ePae@wBiFiNs[eQc^_N_QwPiR{PuOmNoMkFsF{MoPkBqBcMwReOkWoK_VoLi]gJ}_@wDkTiC}TgCs[_Baa@SyOGmPRyPl@sR~@mPhAyOjBeRlCoSdDuTdE{VxF_ZvGy[~SacAjN_u@~Fu\\rVwyAnMcw@dLwl@hFiSvDiOzIi\\vMqc@~Jq[vMq^rKkXzImSbHaOdRy^dSa_@fN{UvNgUxQmXrYo_@~WkZ|V{WxQmP`PgOrUwR~VmSfDsCzGqFp_@_\\nZmVv]qYtM_MdNqMjMyMjMiMxLoOlGwJlFuJvG_OzFeO~IyVbCgHxFmQhJm]xJue@`J{g@xSowAfJum@`Nyv@lHuX`IcZjKiZhJcVbKeUlVsg@hRkc@rAyDxJgYxEcPlE{QtIia@jDqQzAsIrKis@vBcNx@gF`D{OjG}YvIg^rAaFpKu`@bZ_kAnUobAtKgh@bKug@hh@ujCnNov@rLok@rLih@zIs\\tMoc@lL{\\tBwF~Lm\\dZey@zMae@xEmSfIgc@tFab@bD}`@dBwTlA_U~@cVr@kc@FoZe@e]}@gZyBe^oDq^oDkXcGm\\wE{UcMkc@eKeZgNw\\yLsVkWic@iOkU}RyYeXea@qB}DoFaKyIuPqIgTwEoP{@wC{AaHmAuG_CaPwCkTeBgRk@}H[sE}@cPMwQD}RT{NbBak@r@mSV{FYwZs@}Si@oKgDup@gBwa@g@wSMqXLqObAsY|B_c@dEg`@hFq`@fFu[rHc_@jJsc@lNct@zJod@~Iea@jIwa@|J_m@`Hkh@fGoh@lLskA`Fqe@`Es^fD}WnDwS~DmTrEoTjB}I~CqKnF}RnG_ShIwUhLcYfS}c@pHcP~C}G~DuIxI_RtI}T|IkW^iAtH{VnIc[vGiYd[ovAhVkhAjQix@xG}[zCsQnCiR~BoT`@uEtAiQlAyWn@}WNoRGy[{Awg@{AcYeEmj@eFsd@uMg_AgOi`AwLgu@yJar@}CmTcEeZuLicAqHwn@uFwj@{A}N_AaJeEgd@mBqT}BkXgCa]{AyR{By[kDek@mGmkAgEieAw@oW{D{zAyAos@i@wW}Aig@WoTi@e`@i@qf@i@wc@@qf@Qso@Cuy@AmlANu{@Vei@~@}kAt@wz@r@mf@l@ec@lAme@x@i[`B}a@`Bq^LcCfAcUvAgUTwDlC}_@tE{m@xByXrAcQlDmd@z@eM|Ak]vA}Z|@iZ`@gYVm`@Foe@Ayf@C{g@Eyd@^}`@b@aXp@a[bBk]`B_^vBmYnAqOlBkTvCcYrEq_@hGye@jHqg@vKwt@tGaa@jG}`@hKym@vJkj@lLul@hMqm@`Su~@~R{y@rRiy@zOkk@vRir@`Qqn@pHwUt]kfAjQch@~Ky[fO}`@~P}d@tZ_w@p^u|@|^wz@vP}_@nHgOpg@ggAtU_g@|p@}tArEuJbR_`@xDcIpg@yeA|LiYdBeEvHuQdToh@vLu[pOad@xAqE`HuUhHyVjDcMfEqP~Luf@zDsRbKek@xDs[zBoSxBwVvCia@jCib@`Bkb@v@ud@?{c@Qic@m@kb@_Bcb@wAkYwAqRkD}]gB_S{Goq@iCuWoCqV}CaY{Juu@oIsm@kQ{jAeNs}@iQmhAyH_h@uEgZ_DeTeHah@uKe|@oHex@yDue@eDag@iFy{@kEa_AwDy`AoC}dAwBktAmBy}CyBgjBsAwz@qBgw@cJoiCuJo}B}@qUiDou@}CmdAsAgf@m@ec@[}ZIuWGka@Fgs@ZyiAx@sdAT}\\NmVNkY\\iVLue@HiWRmYXcd@FwSh@iiBc@ucAi@klAi@ih@qB_vBOiRi@{r@EmF}C_|BgAm`@SmImA{h@cCef@aBoQeBmTuAyOiBkMaB_LsAkHmA}EaDkO_EcO}CuLkDaKuH}RmHmOqNaYgFcJcGkI{Zg^}\\c^a^}_@yQsUqNuReJyNmAoB}EwIiKeR{J}R_LoUeKqVuHaQqCqHuAsDsJyWqGkScIaYiBqGwCiKaEwPwBmIc@_NJwG\\eGRsIDsEk@uJgA{Fu@eGsB{OuCqTkFcb@_Iwj@{Dkd@wDor@[om@C_o@h@{e@x@kb@tAq[jCk`@dD_f@zFmp@dH}h@fE}ZnCkO`EcWrEaZjGqe@fJcjAnB_\\f@eNByVw@wXcAiXaAoM}C{\\sEs\\wD}ToIo^iEaQoMga@yBqGiq@qrBol@_gB_s@qvB}b@esAyK_^kY{bA_Oal@aU{}@oD{QwL{l@qIcb@sT{iAsJue@cFaTwFcTuLu`@{Kq[sLwZwNu[kPi\\{Q}Zm~BqyD}[_j@g_@}o@cSa_@}Tkd@sRwb@i\\ou@{L_WiMcXeLyT}QuZ_LkPeVk]sl@uw@ulAk_B_LcOsIkLkr@u_AoYah@eMoZmJuW{[cgAyTc|@_Smt@aKa[wMq]yVkk@uSic@ySg_@yUye@sSmc@eM}[kKmWgHuTuK{^qCkLmJgd@sCoO{EaYsCgU}Dw^}B{^qAyXq@iOi@oMuBwp@u@uj@s@oq@i@o|Aa@mx@UiT]iUaAme@_Bkn@{C}z@kBw`@wBy^yBa]kCg^{Cy_@cDa_@oA{L}Gqm@{Hkm@mEg\\eG}`@qGo`@uHmb@cJue@aLej@_AuEqA_GwDwP{FuUkCcKkNqf@wCkJmRko@cFwOwCgJqIaWkAuDaE{KwJoYwOyd@wOke@yCaJ_F}NeHcTkI_XiCeJ{Rsr@iOol@kMcj@aK}h@gJij@qGqc@_Kc}@oJszAm@sKqBse@q@y^_@kV_@{c@?y{Ak@gsA[my@_Awd@cBkg@}Cmo@oEcq@oIwdAyJobAa]cjD{Im_A}Fal@aCgVoB_Ts@{HkImz@cEg`@mDk_@oT__CkKsfAaBiOcEy^e@yEiAiLaDq[_CeV{Cu[gAoL{KkkAqBiTqC}YoAcOgA_O{AqTqAgU}@{Tm@}Tc@}TUsTMuUFgULwS\\{Rd@{RXwHt@oR`AuRb@kHh@gIl@sHj@sHdBkRt@sHx@mHr@mH~BeR`C}QbC_RnHmi@vLm{@pLq{@hLw_AvFuj@rDi`@nCk]xDai@nCqi@fCen@pBqp@nAcq@Xih@Bm[Gkf@[qf@c@u\\aAcf@aBqp@yAsf@u@qRqA_]qHaaB}Iy`BiE_z@iFodAuB}`@kA_[gBwb@_Bof@kAec@kAyc@}@og@y@yq@u@iv@Ma^Esa@BwJDyKBqHDaQJo^FyP`@q`@Raa@J{Rz@i`ArE{rDdFysEdAuk@r@kXd@gM\\uJrBs`@|A}Rl@eIhEu`@jHij@tJem@fBkI|BuKlHg[zOum@~Oud@pQef@pIsRrN}YpF}KfIoP|Rq^fMmTta@qp@hEaHp@cAhAaBvk@u{@lt@khAj^mm@z\\wl@jOwZ~Oc\\z[cx@~Ryn@bPcn@hKge@zIkf@pIao@lH{o@rR{cB|Kky@~Oc`ApD{QfNcp@zNmn@ba@ifBJc@lPou@~Gw\\vGq^jIge@jHch@pEy`@`Du^lCy_@x@}R`Ao]d@u]@uk@{@aj@wA_^mBk\\sDub@{Eke@uGmg@aUozAwQijA{OegAuFsf@mFki@aFiq@cD}n@{Aoi@]aPa@_S_@ig@Dsi@~@ys@XoNTyMFmCHmCb@wO`Bmf@jAyZbAkWdCun@|DkmAnA}l@ReKd@cTnAgeAZyi@Pkl@GsSS_~@EuNQqOm@il@Uwa@Uu^Cqw@V}pAB}kAYsg@}@{q@w@y[cAi\\{Aac@]kKMyEe@mQ}@q[yAcrAGgHIgGg@co@OeUwBu}Ac@sZmCifAkE{aAiF}y@wIeiAkBaXw@_RO_I~AqLxBsJrAeBx@iCZ{CGaDg@wCcA{B{AwAiBg@kBHcBz@oE{CoE{CoCyG_C{Hw@gEcB{IiDmRoKof@}FoUyMmi@uBiHuGeUmH_UiNkb@cOaa@oMk\\eFeLwFgMyS_c@eOeZg@gMYuIKyEBkG|BsL~Rc^hC_F|BsFdEuHpAmGp@sHByJc@cJaAsIyCuSmAyK_@iFSoF@iFLoE`@{DbAqGxAgFjB}ExCmHtB{JtPyVlK}NvNkR~LqOxG_IvGsHdIeJhJwJjIoIjIgIzQ_PlL{JpLkJtPuMbCgBpL}IbZ_V`WiRnc@w^rKqJpKqKvG}GvGiHdKiLzJyLhNmQfJgM~I{M|FaJzFmJhNiVvHmNrHaOtNuZtJuTbJiUfFeNdFmNnEcNjEiNfEyNdE_O~D}N|DcObLkd@zKud@|Lwh@dMah@|FoTbGkTlG_TnGuSdJgYxJgXlJwWxMo[tFgMvF_M`Oa[zQe_@hHsNlHoN~GqMbHkMlQg[nRi\\vRw[xM}SzMoShNgShN}RzSmYzS}XnTwXpTeXp_@oc@pOyPtOiPhHgHhH}GrGcGtG{FtGuFtGoFvGkFvGgFbTmOjVgP~K}GbLmG~KaGbLwFpLqFpLoFh\\iOh\\sOpRkJrRgKjRgLtL{HxXcS~QiOtHwGrH}G`I_IbIiInQuRjJ}KlJkLdG}HdGiIbGqIdGwIzKoQ`McT|EwIxEaJdP_\\zO{]lJiU~GgR~JcY~CwJ|C}JrH_WvFeTxH_\\fEeRbEgRpC_NnCeNtCuOpCyObC{O~B}OtCqThCuTdDi\\bDm_@lBgYdBe[fAgU|@oUr@_Vd@cVX_XNcXD{YC}Y_@qbAE{`@Dw`@FaMN}Ld@aZ\\sOb@mO`@mMd@mMf@wLp@wMv@qMz@mM`AmMjAoNlAiNfAeLnA_MtA{LzAqM~AmMfBsMjBoMlB}LpByLzBoM~BkM`C_MbCoLfCiLlCkLnCaLxC}LnCmKhD{LjDsLfEmNlEeNfJkXdJgWpPud@rMy^pEaNpEiNpDoLfAgDvF{QfFuRpFwSfHoZfCmL|BuL`EgTxDmT`F{ZfCuQbC{QnDk[hCuWxB{WzB_ZjBiZbBq\\pAs]x@u\\f@g]Ve]@oUKuU]}]e@eYs@wWcA}Vk@{Ms@wMuAmU}A}UmC{[gDw\\wGcj@qEy[aFuZ{Fy[mGyZyG_ZkHyY{HyYqIaZcHuTaJ_XqJoXuUgq@_JqWoDgKkDmKsDyKsD_LkDaLkDgLaDuK{C}KyCeLwCiLmCwKiCuKaC{K_C{KoCgNwBmLwBoLwBaMsBcMkBgMgBgM_BeM}AaMwAsMsAqMoAsMiAsMgAqM}@wM}@uMkBw\\s@qPo@qPaA{]o@w\\Ys\\CkUBmURe]\\gUh@cU`As[b@{Kf@qK~@}PbAgRpBwYnCs[`D}ZtD_\\dB{MhBqMzEa[nDsSvDgSnHy]tFqVtEwR`BoG~C}KjEcOlE}NtEkNtEgNhJqWfK{WtEyKlFsLhJ{RdJcRzH}NzHgNdJwOfJwNfM_RvMoQ~N_RlNePfNaOxL_LhJmJhLgKlM}JxMwJrOyKpOsJpO_J|OkIhPuHtT{IvT_I~R{FzQqEtRgE`R{ClSgCpIy@xQ{ApTiA|Tg@dSI`QB|PNnSb@nj@`Bj[nAde@`Bb^x@xRH|RDtSQzHMzHWnRo@rToA~SgBvMoArM{ArSsCvR}ClUkE~YwGzTaG~LkDzLuDbTmHpSaIDCtl@mW|T}KpToLtNoI`S_MhVoPbVaQrm@ce@f|@au@zUkSlZoWn^i\\pa@s`@`JwI`p@uq@xUmWlBuBdHmHhIqJzQuS|\\}`@d\\u`@~[ua@bm@_x@jRwWdRaXtm@{}@p[of@BErRk[nOyVt[en@vxBc_EtPu[bPc]j\\gs@b[_p@pO}\\~cAm|BrJcSpVyg@tr@uwAr^it@lQg]zS_`@hIoOrIaOtTa`@`Ue_@nTw]tTi]dNyStUu\\fUw[vU{[hVs[`Wk[nSqVpSgVhVyXnWeYrWwX`XyXvWiWnXgWnXsVtXcV~XcV`YeUbk@yc@dl@ic@~{AqhAlLuIbt@_i@l]iWn]yW|c@e]vc@q]`b@w]~a@k^v`@_^vOyNvOcOvOgOtOqO`XmXpx@o{@r[_^l[{^n[c`@j[q`@bUyYp]wd@dVy\\dV}\\nc@_p@x]ei@|Z{f@pUa`@jTw^dTm_@`Si^tZkj@~HeOzP{[vRu_@dK{Rd[{m@jZql@hWgh@jW{g@jOk[heAkuBvqAujCbtDmqHriAy|Bdn@wnArTqb@nOqZhOcMxGmKhFeHhF_H~N_Q`GuGfGqGhGgGpGcGrGwFtGuFxGeFzG}E|GuEbLmHpMwHhZsPbJgFdHcEdHiEbHoEjGaEnGoEbHmFnGmFjGuFnGkGjGsG|FyGxFcHxFoHrFaIlFiI|DuGvD{GrHmNtE}InEsJdEyJ`E{J|DwJ|DeKlDeKhDyKzDoNhEiPnBkInBwI~B}KtBeLtBiMnBoMdB{LzAiMxAiMlAqMhAaNx@mMr@uMh@gN`@iK\\qKPuMFwMA_T[eW_@wMg@yMq@cNw@{McAwMoAaNyAeNiB_OgB{LqBiMqB}KaCaLkCgLwCiLaDcL_EmMoEoMkIgTsJeTyFaL}EwI_FqIsMoTsLoRaLgReGaLmFcKuFsKcHyNuGuM_HsH}DeLcYwx@_]{~@qIgVkLm\\wjAycDgN{`@w`@qgAwf@ssAea@_kAeb@wmAmgAgyCglAsfDez@g`Cye@{sAkc@{qAuNqc@s`@qpAu\\olAaU}z@aTy|@eTgbAeMip@qI{f@oKmo@iIyl@}Eca@cKc~@uFmn@cEkh@sEcv@wCqo@sCgw@uAkp@cA{s@c@y`Ae@_lB_@mhAw@mu@yAqu@uC_y@_Dcr@gGa_AiIo}@sHmr@kKux@wIyl@{UsuAiPe~@cM}u@cMax@cFe`@qEs]sEkb@oFyk@uFkt@kDij@{Bug@{Ci~@}A}s@[ax@Kaq@d@uu@r@ys@tAcq@pEcbB|KodEjC{hAvA_iAXy{@GkcAm@ukAcBw{@}C{cAkGmvA}Eq{@aJ}iA{QgeBiQc|AgPelAwSivAcWicByQmpAgf@s~Cwd@m~C_Fe\\y[}wBAGsmAieIsXijBqXujBofAihHgWogB{`@{iCq[mwBmFa^}[o~B{K_z@uKo`AiL{gAuJueAwE{k@_Egj@_HsgAsFcgAmDe{@oCu|@uCafAkBmdAaAyy@i@_x@]sw@Ukx@QqaB_@c_Bu@ghB_BeyAuBykAuC_dAqDc`AoEy`AqFw~@oHocAqF}n@wFgm@_CwTiIiw@wRq_B{DsZ}PqrAyFic@}Dg[aByMsJgu@qQmuAuHqm@uEqa@{Eee@{Ci_@oCm`@aCea@eBua@mAu^s@m]q@wb@W{]C{k@Jg\\\\wZl@y\\z@}[bAsZ|Am\\jBi]bC{`@~Fiy@|@_VvIoq@xDiXjE}WxJuk@rJgf@xHw^pIw^vLse@~Lqb@fNqc@hMc`@lG{QzPgf@nIeUbGwOfQsb@va@kbAhb@s_Adf@qfAjYkm@|l@_sAjt@}bB~s@ieBdUyk@vv@eqBdJyUx`A{kCte@}vAhd@auA~b@{tAlb@uuAfWs{@hVk{@`Rwp@hQuo@xTuz@xQes@jHgY|VycAhTo}@~XwlAbXsnAnYcsAzh@_gCrE_TrRw|@`CcLjAyFn[ozAlIea@zC{NpFoWn{AkiHjm@{tCvn@qwCpFoWlYstAn`@ioBtRc}@zPuv@~Qk|@bDaOtJsd@zLal@fMmm@zNgr@zl@grCbg@i_C`Rwz@tQyu@hPaq@nFqTrNoh@dVm{@rSeq@rVws@`U_m@xKaX~LsYnNeZ`^kr@xa@}q@fe@ir@|c@ck@te@kk@dWwY|EuF|y@}_AzTcXbVoYlT_YtTmZnP_Vf`@eo@xM_UbCaEtBkDne@i}@vR{a@~Po`@~Suh@tOqa@hXyu@jWwu@l_@olAr_@qmAba@sqA~Uat@pTio@nMe^dOo`@hPo`@lPg`@rSgd@~Qa_@fOmZfMyU|Tw`@xXce@dXib@jW{_@lXca@@C`Yma@bQkWhPcVj`@}m@~Qo\\xOsZ~DwIxAaDjKgUjGuOxHoSzFkRfH}WnIe_@lByJ|EsXzFy]pCuR~@wGj@gEjBwOnBgRdCm]pAyWx@aWfAsf@l@ag@Ac}AKwn@Fsn@`A{q@nBu^zC}g@xFgn@fHqf@hKwl@xDqSpFuTvH}XxEkNvGsRvD{InH_QpLgY|GkNlNcZpFiKnIiQpHmQ`L_ZbHuSbIqVpGcVlGcWbIo^nSs_A~O}t@xMak@xI}\\bFuRxFiRpFwOnFuNfFcMrFcMfJiSlK{S`HcMnUy_@|c@wo@hP}VzJkOrPuVvi@o{@zTk\\r\\sh@hQiYbE{GzGsHzKoStMo[hH{WxOuz@pIsb@zJw_@`Oec@tPw]`QsYpLmPzY}YzOmLrW}P`MgI`LoHjKaI`L}JnKqKjNgPjLcPbNsUbY}i@vO}Y~OyTtWu]vJqJxBuB|KgKvNaObWcOjE_CjJuCb\\oLrZwIxZoFtLqBzY{EhW}DpUqDpZiFh]mHnR{DvSqFxRkGpRqHhRsIXOjOaI|OkJtOiKbU_NhLqJvJcIhTyShSsSlX_[r|@oeAfMyOlUw^rKkNpOuQh`@ic@pPgOpc@m\\lF{C`LoGtSoGnSqEv[{Bn`@uA`HEvIEbLYnKkF`YmXb[aMjh@qQrS}Jz`@a\\jF_K`DgGf]so@dL{Uza@u{@fu@_yAprAouBx]gn@fTya@nPo[pD}GfEqIjEkInEgIrE_IdEaHjE{GvEeHzE}G`GoId\\i`@fRkSnOqPxHkJjGwIbH_KfFiIvDwG`EuIpBiEjCsGjCiHxC{IlBuGRq@bCqJpCiLfDqOpCsO`CwNlBcNrBiR~AoQfCmb@t@}\\Hyo@o@{k@q@}bAL{[n@aY`Cm`@pC{XrE}XpDeQlDoOrC_KbHiSjKiUpJkQfO_U`d@qm@rb@im@hJiOjHkNfJ{UvFaQhMwf@zJu`@nB_IjCwJdF{PrEkNxHaSpDeIfFiKrUga@~KmS|Pm[jGiNdGqQ|F}VnB_Oz@iLj@qMLwOGqNuAok@w@i[s@wXAy`@p@}[fBg[jEmd@~FcZdH_\\bL}]|J_WrL{TbNiUdt@miAz~@{xAvaAw}Atj@}}@lR{Yr`@in@jQ}U|HuIrKgJtFiDvG{DpEqBtEcBzDmA~DeAnCm@fCe@hC_@jHw@jH_@jHIlHJjHb@rZrC@?~PdBr~@dJ@?dd@rEB?hHr@^D|WjCrfC~W~t@|H`RhCfLlBNBvGrAxc@jJrv@pTxVlIl\\xKzUtI|YdKrUhGfKxCvMhBbPfBzNbApTLrQSrQoAzZyElDo@|UeHhWuKfUyMxEaDxEyCvNmKnO}NxOmQfSmWbPeXvNcXtMk[dM{[lKyZlGaTxTgv@jByGrFuRxYidArP{k@nSss@vSqt@nQim@hPck@hZmbAdRul@tI{WhE}LfGeQxOga@lLwXpCaIzGkRdPe^fTsd@vY{h@t]uk@r^ei@hXk^vXy\\~s@ow@`m@gi@xtAueAt{AkeAp{@{o@x\\i\\x\\g^|[ac@v[}e@jOqXlDgHfUmc@jv@khBlb@{lAxNoc@zYmaAjHuXbOyk@|T_gAtAkHrVydBfKew@~Lkw@lBkKnDiTtS}x@hd@yyAtWeu@zWst@xK}YlLoXlEoLrEgLnLaX`H_PnT}d@bU_c@|Sy\\fTiZdY{YfLcJfLkIrNcKfWcMve@iL|KwA~b@qFrMiBlHkAfRcE|M{D~EqBbHsChNqGlKgDxGmE~GuFvKmLjY__@nIqJrQqVtF_JbF{H`JiPzI_PzHgPfLkY~Qsg@zAeF|Rwq@rMan@dD}TxCqRfCsSdB_SxAuTfAqVt@iYn@uq@CmWIe\\\\oOx@mZxAaZrAkRtB}VlEe[fFiYzFyV~GwVrFuPvGqQbGaNhKmUhSm`@bPsXjPyVhTy[zR{Wxy@iiAh\\uh@zMiWzIuSxUmq@z\\uhApScn@jc@yeAjGoNzTwd@|Uuc@pb@qr@hMwPnMkOzOsOlQuNb\\mSdi@oXxKqH`QkMrQoPbJoKtDcFtDcFnGaKfEiH|F{KdKaTrC_GrGqQbCqIdI{]tEeVdByLpAoJhCkVn@sFt@mG|Dw`@fBuQb@qFJmAb@cFzEwh@fCgUjBoPP}A~@aGlAaIzA}I@GN}@xA}I|CeRBSdE_TdJoa@rGyZ~BmK~BiKpJm`@t@sC|E{QbLw`@vO}g@`EwMdXk|@lHiUjVur@nQs`@pTi\\bc@gj@pNwQdFkH|S}\\xOkYdNgYhLaYt`@seAvi@waB~I}ZxIw\\jMkk@zJ_h@`U{rAb\\yxBrFa`@pKeu@PmAxFw[x@oEbKwf@bMyj@~f@csB~TceApDiRjO__AvCwUzDm\\xEef@nFsw@tB}Z~NqkCh@sJh@oKVmGjGqxApAii@\\uW@aXEoVWaTs@wYmAwZwAeVGy@sAqPaCcTwAiL_AqGuEoWMm@{BwL}J}b@uBgIkEuOkBkGgDmKsB}F}@eCwB_G{B_GyBmF}BgF_GoMcCcFeCcFgC{EkCsEyEcIaFsHaFsHiFcHuFiHyBqC}BiCoMgNyM}LgX_UsK_JcKeJuKwKkKkLkGkIcGuIaCcEsAwBo@iAe@y@_DwF_EoHgGqMuFaNsGkQ_GyQqGiW}BiKuBmKiD}SiAkIcAoIcByPsA}P{@cP[}GUcG[}NOoICqIDcOLeNZqN`@qNd@sJl@kJr@iJx@gJbAgJdAgJjAeJpA{IpCoPpEuSfF}R`CeIfC}HzGsR~C}H`DqHfDqHhDiHvIkQ~ImQdOyYjO{YtKoTpKuT~FyMnFsM~FwPxA{ElDuLpA_FnAaFtCaMjCmMlB}J|AaK|AiKrAkKjAqK~@qMRoC`AoNPmD^{GTqG\\qJVkNPsOL_PCyDEgHm@oVYwFkAaVwCw`@gC{Tq@sGaAyGwAaI?AuCgPcB{HkCaKeC{JWeAsC}KeFsPwHmRq@eBgLyU}CgG{P_]cQo\\kCcFqPw[gMyXiNo^kK}[kI_\\mF_U_UafAkJih@_BmImAoGwRmeAuDcRaBoI_CsMyA_ImEcSqEmJuPoRoOiKeM{HsPuJiEqCsF_EsF{EkHaIkIwLkH{NoFcOsEsQkDkTkBuSsEku@{Ow`CcEmh@wEyj@aFad@wGod@_J}f@oJqb@eK{_@sM{a@uL_\\ij@stAwMi^oKcZgLm]wJq^{Jgg@sHsi@kFyf@sRycCoAwNoG_s@eCoReCwOgDsQmE{R_FgRsLy^wLsZuLqTyIcO{GqKmf@{r@sp@w~@mVwc@eSgg@}Pig@oKec@aIec@}CmUaGyl@cBs\\yAe]y@m]]mc@bA}yAvHoeCzBai@bMobCzJ_uAlL}pAnZalClE{\\nYcmB`Z{cBnZ}yAf]{yAhr@}gCvUkv@zY{v@rJaUrQg_@zSq`@~W}a@za@ek@znAusA`UcU`IiHpKsJny@_{@b[i\\dQsQtq@qu@fGwIpQmWhLiTvAmC~Ni_@zSuv@hIub@xE__@jD}^pCal@`Bgj@lAyb@pKetBrJyi@rLqi@`Vqx@hx@wyBve@esAbOah@rg@a}A`AmDvNwg@dPmr@vOaw@dIqe@bIse@dNmaA^gEp@gIEm[BwGxAyXdBuMtAaXrAgm@xAwkAMg|AcBgu@yBsVaDkTuIyf@wNym@gQqo@wOem@yEoVcGia@{Eoc@eB{TsA}So@sUk@{SUsSAaVJuQfA_l@lAwXnBkWnCkWbE_YdBsJ`AqF~E_MpE_TrFcT`GmTpFgRjGyPN_@pI}StQm`@rEiJrFaJfEaHfYia@~FwI|JqLjNgOhIyH|OeN~ScQ`h@_b@tEuD~DeEvc@kZjkAaq@ns@a`@z~@ke@bC{AtA}@fGoBxFiCba@oWjf@yWbMkIfz@kl@~NmPdQgObPkNfl@al@tVqXfX}\\vu@igAncAwcBjLaSrVo`@dg@iu@nc@wi@jNqO`f@ic@lVmV|OaMru@{f@~n@k]nb@yS`W_Kjf@yV|P}Jdq@od@`XySda@m^~d@ae@tL}QtI}Jxc@on@tiAi_BnmFklIvl@i~@`h@a{@~Qi[dIgQnHqQlFgO`Nwa@xAqFfHyXnEmRhEqR~PqbAhXyeBfFob@|Ce[nMi_Ap\\a`CzFma@tRmsArKkv@fDqUfIam@~Wi_BjGo^`Omt@zRew@zKi\\zOid@tLy\\jOw]`Rqh@vHsUf\\s|@j_@_dA|AgE|D{LbSqm@~Kk^hPod@tq@}lBdcAsrC~`@ggA~Rmh@hGoOl}@a{BnC{Gz}@uyB`Tqg@pTgh@bT{d@rWqh@bYcj@b\\ol@h\\cj@|d@kt@|Ui]d_@gh@pJmM|IwLf`@}g@t[c`@ha@_g@hc@{i@~I}KpjBu}BnLyNn_@ye@h_@yi@l_AezAhx@obBxa@ynAnWibAbHg]|Gca@zJ}v@tDqb@pBiWlA{UpAg]tAqp@Jck@a@mk@QkVuBqv@kAwX_BuZeCka@sFs`AkEqz@sCsb@uBidAU{YPud@f@o`@bAe_@zAy^lAmUvCc`@rB{TpBqUbJiq@jGi`@pIyc@`Lmf@zMmf@fMqb@zWkx@f\\i`A|Zo_AtKa`@lLud@rGiZjJ_e@nHce@tGeg@xHy{@fEir@bB_u@bAwk@D_W]kh@}@ol@sAsb@mBkm@sBkm@aCql@cB{r@eAuf@Yyp@Aar@Lah@xAep@jCwu@~Dgr@bFep@fG}q@jIkr@pHii@zJml@~Hwb@fPgu@z@iDtNqk@lL_`@lL_]jQgd@dSqb@xW{e@jVc^nY{^|J}JfGcGzPqPzXqU~ZaUde@c\\bf@w\\dZ_W|UcVzLgOrDaFrFgHbNkRvOeZdS{b@tQ}d@`N}d@~Jyb@pK{h@bUgkAzIed@|O_s@nI_^hJ{\\zAaFlMaa@hP{e@~Reg@`i@apAf[ku@vSaf@hXgn@xQyb@dU{i@dAcCnLkX~T{i@pOk^d@iAxRaf@nWkp@`Wkp@z[s~@va@gnA|[qgAhZyeAvPen@bXoaAz`@_xAfHcWhL{c@hVq}@ha@wzAnRez@tNos@|Hcd@dJak@lHoh@nJsz@bIi`ArAkQpMglB|Emj@lGwi@|DmZ|C_RhOky@vXarAxZowA`b@opBra@ypBjNe_A|@yGnEc\\`E_]hDm[rMypApHml@tJyk@lMqk@hK}a@lSan@hMe\\|LaX~DyIx{@}kBnDeJxBqHzH_XdKoc@hA{ElFgVlE_VjDkUzCwTfD_[lDya@vCwf@pAma@p@y`@Jcc@e@kb@w@_ZiEueAkCmi@mD{l@oAmRgHe{@kHk_AwU_rCyDio@uBuc@w@}V[_^Fse@`@__@fAc`@bAiVfCg`@|C_`@tAyOvCe[dBuQnN}rAjAeLhDc^bIuv@nI_w@~NouA|VufCnO}wAxA}RdGww@fDiq@zB_p@By|@Q_Xq@kYuCip@iFko@qGoh@aFiZsKqg@eMyd@qQge@iJgTyLgV}c@wr@_i@wv@gW_b@{Oa[qGcNeJcU_IeT{Le_@cGaUmAgFy@qDwEkScNot@y@sEKq@i@aDYiB}@{FeAaHoBqM_@gDqCcVaDaZe@gE|AwR`@qDz@wCvAwClBy@xHaG`B]hG{@|Fa@fGDjBT~F~AzFzAzEvB~BbB`EjDtBrEjA`Ev@|GHdH_ApI}ApF{C`GwCxB}B`AaJhD}P{AiSiBee@kFwf@}GgeC{]qu@mJ}u@{Gwn@iDq|@iBi\\DaVMem@jAkq@tC_\\nCeb@bEyc@zGqUbDuo@dMyWdGc]`JuLnDkj@pQgeA~^y|Afk@{\\lL}^tLyTzGuT`GqTdF_d@xIkWrEat@fI{n@`Ekn@tBmq@Diq@eA{h@}Bkv@}Fcs@aG_hBmRk^}Em}Bu\\ahAkRihAuSafAiU_fA}UwrAu\\iqAs_@gmBgl@ecAm]scAe^giCo_Acw@qX_x@mVsl@sOgm@yMox@cLeSgBsQcB}PuA{c@wByCO_Ug@kM]aAC_p@y@y{@s@ibAoCyiA}HqGaAmi@mIwUiEmZuF_e@wLwd@oOcv@gZw@[ibAoe@sqAmv@yeBuoAmfAa{@ycA_`Ac`AacAye@ym@od@io@yc@kp@ePqW{QaZai@}_A{I{PiPuZ_L{Sii@ahAch@ojAcoAwsC{Uoi@{D{Iq_BgrDkkAeeCsq@ysAqr@uqAexAqcCei@ux@gi@ow@g~@ioAo_AmlA}_@ic@wl@}q@wm@uo@y~@c_Aop@{m@}p@il@o}@{t@c~@wr@e}@mn@y}@yk@_z@wf@ih@{XaQkJsh@gVgi@{Tci@kRui@qP}j@aNiG{Act@wNu`A}Mk`AqJwoBkNodBoMww@gIyYaD_Z{Dwa@sGua@kHoMcCcH_BmS{EqSmF}WkHqQqFcYoJeh@oRoS{Iuo@sYcp@o]wwAu~@azBceB{hAw}@{v@qj@ck@e\\{k@iZk}@i`@a`Ak_@}bAqc@}_Agc@aiAwq@}[wTq[yUgm@wg@el@mj@os@{v@we@{k@cRuVyWk_@eSwZ}Rq[aGeKwCeF_Wad@wOeZ{\\or@cFkKwNa\\qb@eeAkI{TkOic@kJmX}Ngd@gR{o@cNki@kG{Uc[wvAcUgmAu[sxB_I_o@}Gss@oPm|BiEil@mC{b@uHemAeH_iAgIgvAeLcjBcM}|AeHmq@wIaq@aHeg@uLuv@{Myv@aQqy@{Ryx@kWw_AqY_aAcWg{@aVax@aLu]{rBw|GwVm}@mUa~@uXyrAiXsfBkJuz@oHwx@_HujAaE}mAiAyt@iAexCgA_fAwBo`AgDmx@uFix@sKcjAiNohAaM{u@kNau@wPkz@wRix@eXocA{YwaAuXyx@{Yuw@}Swg@eV}h@ePe]qNgYuH}Nyc@}w@yZgg@_O_U_NgSi`AirAyQsUiy@ofAyEoG_lAk_Bq`AavAc`Ak}AmV{c@kk@eeA}y@{bBk_AiqByBwEkmAejCqy@a}A_Ro\\ivA_}BgZea@ki@{u@qo@_x@mf@mj@evAexAw|BiyByx@}z@qy@aaAcgAaxAwvAipBy_AynAcQyTcPyRuQoTio@kr@oMoM_C_CaYkYe`Auz@sG}FkHiGeeAq{@wSiPaYyT_XqTqqA}iA}eAmhAinA{~AebAmyAmiF_mI_|BqqDsz@{sAq\\cj@cjAqjBw|@qyAuoA_`Co{@_fBsy@wfB}p@w}A_c@_kA_\\weAqWagAyPo|@oPofAqGke@gs@wpFq]w~BeT{oA_WapAo]w~Aoe@ahBm`@{pAad@mnAo_@c_A}s@mzAmy@ouA_~@_pAo~@sdA{v@{u@gd@i^k\\oVqj@o_@mgAcl@g|B{cAqm@a[ov@qg@{|@wx@oq@mw@wx@smA{b@wz@kRgc@g`@ydAqWe{@a`AwpDiQym@cNuc@yNuc@iMe^qKiYqKiXyQic@k^kv@mo@imAoy@cqAoa@mi@oRmUeRmTyQcSwRkSuXkWmv@qp@wiAaw@enAgp@kqAeh@yn@aRanAqVmoAyN}a@oD{o@_Gyy@{Fu\\eCiRqAsZwByc@wCuO{@_ZwAoZeBq_@}Acx@oDkSaAg`B}EidA_DgtBmDquBcBoDAoqBQivBdAuoBlBemAxBoUl@aqAxDmEPag@xA__BbHuk@tB}vD`PcuBfIavBfF{oAuBwcAgKccAkUci@iSy[qOwa@oUw_@wV{z@cu@}y@cbAwXgb@{Wac@ao@qnA{}@ivBk|@_xBgo@_sAs_@}q@iUu]a_@qf@sTeVmS}Tkh@cg@_w@wp@ez@qp@adAu}@_a@q`@aIaKeU_X}p@u_AaRi[i_@as@u\\yt@og@wtAkd@iuAwa@qpAcd@kkAif@}cAiyAmjCyb@e_AgFgLg\\{x@aIoWyMwd@wUu{@}[uiA{HcXcMs_@qVws@qAyD}i@ikAmeAgeBgtAujBslAqtAoy@gz@c[{YqZcYyWyTwWwSy^}X}ZoUcx@qj@gM{IwQiLyXqQaiAmr@or@ib@eTgMkW_PaoAqu@a\\{R_j@m\\wY}Pib@aXwf@_ZknBohAy|@_l@{~@uy@ud@ge@_QsSm]uc@m_@ak@ok@{bAqg@yiAwVgq@cU_s@cq@gcCgb@k~A}`@msAsYqw@i\\cv@oLuVoLuVm[ak@c^ij@w_@_h@{_@ud@_a@ab@sa@s_@ad@o]sn@{a@{n@w\\wf@mSqj@yQ}`A}V{hAeVcwAo\\cn@kQkk@eSow@s]ax@ob@kb@qXel@sb@wi@yc@an@wl@qv@u{@ms@m_Amt@whAcr@ujAkkBshDqNmWq`@ss@ix@{xAydCkqEgeCmpEq_AoeBq}@a~A}o@wiA_Vy^kRsY}M_SaLmPeA{Ag]mc@oUkX}O{QwKcLse@se@kbAw{@eXuQwWgQs_@{U_VsMm^aQqn@yXeKqDoPaGuKyD}iAi\\{hAyZ{MgEuQyFaa@gMaYaK_[oMqs@y]eNaHaoA}r@arAuv@cr@q_@kr@_^m`Aq`@amAgb@szAwa@_zBag@mtBog@yt@yUwl@uSgu@gZox@o_@o~@wg@o_A{k@cx@yh@eMkIqaBcgAk~HekFkpB_rA}{@yk@u{@sk@ciBumAcK_HmMwIktBovAwfAgw@e{A_kAacAkz@oaAg}@yH{Hm~Ac_BwNyNoaAsgAgaAskAmMsPe`@eg@sOaSqIyKgz@klAqR{Y_]eh@qVw`@kJ}NuCmFyYmi@o[el@yN_X}o@mlAmu@c`Bkv@kiBmr@_nBoQ}f@wLy]uUqv@kCwQ_B_I_Je_@_Iy^uCeMiD_QuH_]oEgQ{I_[sg@{~AgEaOcGuToH_[{Pqw@_EcTaQwaAyH}c@eEyWwHse@eFs[yIco@wHwi@yJaw@iDe[wEqa@yK}aAqB_TqEkg@cFwn@qEwl@cFir@}Bc^}Ccf@cEsz@sC_n@gCcp@iA}YiBun@WmKoAej@u@}[q@qa@w@em@g@eq@c@{v@S_z@J}k@Pgk@Xsm@^od@bGamHb@sp@v@q`Ap@}z@bLmmOt@wq@`@yz@LuQZu_@Zq`@JmMb@_}@?Cp@kl@fBq`CR{\\b@o`@\\iy@Dqq@GcKUuZMmP[uSuAct@wAmx@]kYW{SWcX]u^OaNHch@HaZVuYZyX|@ea@jAi`@dBic@`Bc`@dBab@fBw^`AmS`AmSnBmg@fCi~@^gSP}SR}c@AgTM}U]g`@k@}_@m@cVcAoXgBsb@wBs_@gCy\\mCy]gIcw@{Hwl@mH}e@yGw`@{FoZcGyYaHq[mGyYwMug@_Lma@s[ajA}k@goBik@cnBwAwEs{@{rCgx@ekCag@m}A_J{Xg`AguCqj@y`BmJsXat@gtB{i@u|Aml@{_Bcc@qgAeW_j@kM{W_LgTi\\gk@oVi_@uU_]kTgYoSaWwc@ih@uR{T}j@yp@sg@go@{k@aw@uWua@}Xaf@wUed@yUsj@mNm^sMs_@qOyf@cQkp@sQk{@yHib@wFg]qFo^wNykAmLqlAqHg{@{NwfBgWixCeRmsB}Cia@mH}}@_O{aBwJsjAeG}m@e@aFcB{QeFsn@mNyxAqHaw@yLggAcH{k@{Lox@{M}u@eTqcA_[cpAq[epA}K}f@kJsg@sLgy@mGyi@qEqk@{Doi@{B{l@m@}YUqPUm_@Mky@b@{z@~A}wA~@siA`AmlAI}hBaB_rAiC{bAqDa|@_F{z@{Eqq@uL_sAgS}lB{Vw}Bo]{}CoVk`CiLalAgK{fA{JwkA{I{iAoNywBmCoa@wLeoBy@qKcEso@gBsVcE{o@mG{~@cDqe@gMq}AwCy^{Eyj@qMmtAkl@_rF_Fu`@uHql@sByOgKqx@sHoh@st@qzEgYulBo\\}|BcmAqpJqd@ewDaaBy_Nee@_|DcImr@sGqj@}NcwAiFcj@aE_j@CU}Eqr@{Est@{Cko@uEolASaGgBqk@sBcjAsA{oAD_uBfAyaCbCq_CrDmaCnA_dAfA}j@xAgy@lCkeAdDopAz@y\\xHglChEytA|Eq}AlBuq@tCs~@hDwbAtBue@lCuh@tDwp@nF_s@zEki@dIqv@pHwm@~G_i@ti@o|DbH_k@xFai@bH}w@pFut@`Dgi@dCij@~As`@bCwu@h@sVxBgaA\\yN~Cq`BzHqsDlAkn@xD}fBz@eb@hT{{J`]k~PbD}|A|@ib@r@k^lF_eCVgOz@qb@x@cb@bBu}@dLmkFlBev@bFkeBbFmkAbJgwA|Mk~AfTecBfVwxAnX{uA~_@c|AvJq\\tIyY|_@qlAzo@iiBtq@}mBvh@ufBfR}v@lOcv@zNey@pLoy@tIkv@hIuz@fNcbC`C{fAfAaiAWqsAkB_iAcBog@eCib@cGy`AqF}q@_z@krIqEyd@cDk\\amDsd^gOaaBoJghAcJ_kAeQoaCeI_nA}Esz@eEus@wEm}@kFseA_Ok_EuMetEeGk{BcE}{AeGa{AcOuaC}JmfAyLokAuJiy@s]y{BiTsjAsT_eAcWsbAyVe`AoiAi~DkGqT_qAm|Ecz@ioD}r@mjDck@qcDsh@}eDcQuoAuO{lAuOeqAmM_nA_Uu|BkSkcCkLcdBiKwbBgIwiBqDemBa@_w@`@cw@tBoqAdCa`A|LaqCbPkqC~\\gbHrGw`BpFwxArDcvAxEuuB`DmdBrDs|CvBwkDMgwAe@mfFcGmwJiBgxCg@sr@Yii@Wav@S}~@Bme@Dky@p@grAd@}o@rAcbAt@yc@~CwtA`Bwn@tByn@dCyn@hC_n@fI{gBvCad@xDem@`J{kA`E}d@pEid@hMwhA|F_d@pGac@tNo_AvOm~@zMmu@~BmMtk@kwC|Qa~@|Qq~@~S__Alk@{hCdWcgA~FyVlJs`@rBqId_@s{Adc@aeBhs@enCfTcy@ziAosE`f@}vBnJ}d@~R_cA`Lil@zJ_l@vMst@dT}sAnGuc@~CiSlQmrAdNeeAfMweAbTulBvU}wBxb@aeE`VizB|OouAfr@_hFbCaQjU_aBrVacB~e@}yC~Y_qBlPcqAlLsgArI{iA~Ek~@tBwj@vAkn@~@_|@Iev@OcXi@y]y@m_@kAm^yAu[sCai@mD}f@yCg^qDi_@}AgOqFad@{DaY}G{e@qKwm@oFyYiGa\\gK_k@oMsr@kEiVsHwf@gGya@qQanBsEey@oCkx@yAejAJypAdA}pBJwi@C{c@oAeiAAa@wBus@i@iN_Bi\\mB_[uDai@uCkZqGkl@mK{w@{Isi@mNys@eDiPoC{McHwYqGkWyIe[wEwOqIeXuI_W_Xir@uOw^iVog@aTsa@aUs_@sOoVms@whAaa@{k@uY_e@iTm_@cQw[o_@sv@cR_c@_Wen@sK{YsNmb@iOif@iSos@qGuWeMuh@kOqs@mDqRoHgc@yDcUsLky@cF{a@eFse@yFam@eD_c@}Eys@uC{l@qBol@eBil@iFw|BuBa}@kDo}@eEyw@_G}w@}Hcw@cKmx@_TctAoUorAkUcpA}SeqAyKsu@iIos@mHsw@{Esu@_Egz@kBk{@w@sx@?}x@d@i{@NgU~B}jBbBijBMw}@aAc~@qCo`AgEe~@uI{kAiNaqA_Lez@iPkbAqEoXuKcp@kVszAwGyd@kGof@_Eu_@qDc`@aGw_AuDq`A}B}`A_Acc@i@cZcBox@{A_t@}Cm|@qE}{@wGm{@oImz@cKaw@qMsx@yPy{@o\\suAo^cuA}]cxA}Lgm@oKen@cIsl@qG}n@sEyn@mCon@_Bcw@Qyv@bAiaAvB_w@n@qSr@uSdCam@VoIvE_~@jJyqBbCwu@zBe~@d@s~@We_AoA_`AkCcz@wCuj@cFsv@kHay@iGmk@gFs`@sNw~@wGs_@aJae@kRuy@_Moe@}CsLqJa]gP{e@eI{TiKkYcRuc@i]ov@uByEmOuYmLuRcNcUuZaf@kOqSqJ{L{Wu\\_CmCeBqBcIiJq[y[iQ{P{\\mYub@_[au@cf@gOsIkl@_YyeAqg@cc@uScp@m[mXeNcZgPuYaQgYeQ{`@yXoZeUaS_Q_KeJkJsIkPePwO}OwNgPy_@kh@iKoPiPeYwPc]}R_c@yOea@_Pqe@qOii@kN_k@gLei@yJuh@sHyb@eHec@}Fca@mFu`@gDsWsIov@kFwi@kEqg@_BeUiGmcA_Bi^iAi\\gAmh@m@me@MkUMmf@?wHXqf@l@}b@vBiv@~@_XrEcy@lGgz@dL_iArPsiAjE}YhTyeAb[{lAxXwbAfRaj@dOo^tYsp@bi@ejAdgA_jCvX}v@nVmv@nc@gxAt^iwAt[s}AnPk}@|Fc]hTc_BfRqaBrJqkAzAgSlAgPnDgk@vCah@|Bom@|Bwp@`Aca@zA}z@@e@l@ej@Z}e@JkR@gg@Cme@_@cr@yAsjAQaPoA_h@wAes@mC{s@o@cOcBo\\eE}t@kC{e@{C}m@mDav@aAgg@_@_]E}`@Xwg@~@yb@zA{b@tC}g@vCya@jDk]nDyZ`Gab@vb@isCzL}dAhHabAlDqvA?saBgGsgFD}pBlGcbDlLygCtVktDtBal@bBip@Lyq@a@uq@iBul@gCyo@aG}v@aIkr@aj@ycEw\\{{Cw\\}yDiI}pAuHitAyLylDuV{`L{TcuGyI{hDeD{gBe@mLaH_rAeIynA_RcyB{XyaCkLk|@g_@mzBkOyw@oRm~@arAaqFyz@mrDyYgwA}^atBuWe_BoM{aAoOsrAqB_PeF}h@yD}c@eDad@qCmd@gDwq@iAo^w@oYgAcm@g@g^[m_@Qka@Ee_@Rei@`@cq@vA{p@~@ic@nE_|AtN{dF`AqhAQcf@iA{o@wBcm@kDml@_Ewg@cFag@}H}l@oGy`@gKcj@_Ogo@_Okj@uOse@_Rwg@e|@_xBa~@}yBaIsQwjBwsEwXws@{Km[{Ks]_Q{l@_Ka`@wKqe@kIa`@wIkd@iGc`@aH_d@uH_l@iFmf@eEib@aCwZoB_ZiBiYmB_\\aDwy@WyNkA{m@Uka@E_`@Lgp@l@kj@~Aup@tBmk@~B_d@tD}m@`Eye@xGyq@vG}i@zGog@pOydAf[qlBjc@u_CbUkpAbPagAjJwt@dFki@nBqYxAiTlCwe@lBma@`Byi@p@{ZXcZJsTXcq@C{aAo@{`As@sf@{@}e@sAsg@kBgg@}B}f@oC{f@aCu\\cCs\\eH{y@qLwhA_\\opCOkA_Q_}A{Eaf@mFsk@}B}WiCe[uH{iAoCuf@uBae@}Aab@kDcdA_F{fByBgv@iD{{@eDsr@wA}VkDqg@uD_e@wE}g@cEsa@mPkvAuJex@aJwu@aG{h@sF}l@yByWg@wGmBiWaB}WsB{]eBm]_Be_@oA{]w@s[k@aYUsPGaEi@uj@u@s{AUkd@OaVgAoz@{@sa@yA_c@kAoXmA{U}Coe@eBwT{ByVcDo]qB_QiFsa@_Jgn@qJsm@{T_tA_Ww}AaVg|B{LmlByQibDcF}oAq@eQeH}rBmBy`AgHutDcA_p@wAe|@aD_yB{F}uB_FgkAuI_hAqJsy@kJsn@qMar@yMqk@mQeo@mKy\\{e@yqAcp@s~Ack@gxAePie@qNqd@mL{a@_Muf@kMsl@_Pyz@eDaScKst@uJs|@yEai@oAuQs@cK_ByRoBe`@gBob@mA}`@YqMSaNU_UMch@FcXh@c`@t@oXdAoXbAcTtC{d@pDcb@bFgd@xFib@vIwf@hHe`@xd@aaCzCqRjMky@`K_~@|F_w@bBs\\pA}_@RwI\\cOb@iQPee@Ake@i@ud@uAkm@yBih@qAiWmC}b@cMa|Aoa@gtEaJ}dAeJioAiG_dAgAuS_Cye@sCgt@aCos@S{HcE}dBKmSi@ugAOqYHq}@?uJXstD|@avDJsc@l@e|EkA}eAcDw_B{Ee|AoC}o@oDkq@cGi{@eXwyCwImcAaBgQeRypB{OeqBmG}}@}C_o@{C{s@iCgw@cCmkAs@{g@c@a}AC_s@Huv@?ek@W}i@g@a_@{@{_@mAk\\mA}Wm@}KsF{v@aDm]oDy\\{Fcd@wD_WoCaQyFm[uHca@{Rax@mB{HsK}_@cI{XiU_u@gf@w|Aw|@cqCud@s}A{b@gaB{T{dAa\\kkBaGua@c@oDiIeq@wFsl@_Egg@wBih@mAmd@UmUCsw@z@yj@vB}g@bIefA|KebAjTy}A\\gC`I_y@`Eaq@tBgv@f@st@i@mt@eAmj@{GeaCy@qbAn@qdAzCcx@xIcmBnBsw@Her@yAkn@wDqm@mLwgAkCoRwNou@mM_j@{e@qhBqOqq@{Iyf@gHsg@yDsd@cEul@uA{k@[co@lAqu@|Eo|@dGut@~SarB|Fuo@tEmh@fCs\\bCca@dAgQ~Bch@bByf@nAif@nAa_Ap@iq@D}YMez@u@mm@}@}g@_HkdC}Gi|AoJ{{AuQafC}PoeBgHgn@uCyTsDqVoIwf@}Img@qCiPcNkt@qSoiAuIeh@sIui@yF}a@kEc_@{Dk_@{Ce`@gDeg@c@}Jy@mS_@qJa@mLk@gSWuJw@ma@i@ee@Uy[EgWCgKI{b@Jec@DqY@s\\D}K@ySDanA?}e@Ocm@Mke@e@yg@gA_y@}@cc@oB_p@iBoa@yBgd@yCqh@oEim@mEoj@oV_wBEWcDqVKs@kRimAq[a_BcZcoAwa@uvAyIyXue@qsAef@{hA_k@uiAot@qoAwIqMieA}wAsjCcyCmn@wt@aZu_@uJqMmQcVoTi\\QYwKwP{Umb@g_@ev@aIkQoNq]oLwZoN{`@kN_c@aJmYyJe]eUoz@cNyk@mLkf@aUsgAyGu\\ub@uxBkxAspHarAkuG_YivAa_@snB}]uhBgJml@oEeYeHop@kH{v@sDkq@yBs_AQm_@k@{aAC}{Ei@woDwC}nCi@yRgFyqAiB}b@{Eg_AcDyg@_Gk~@yTg`CaNgiAwLa{@iRyfAaUeeA{Oym@aQwl@kTqm@cQyb@iXmk@eS_]uRqY}\\cc@gY{\\y{@cu@{h@g^cc@e[u`@iZkY}WcUsVmKoMsCsDwm@}|@yV}e@mQq_@uFqMiC}GkFuMwHsTqKk]gJq\\uI{\\oMkl@uPk|@gPseAuJ}p@yI_s@}Ia{@eJaiAgGmbAIoBuCwq@wAac@kAce@kAct@i@ww@Amx@fAqy@~Agi@rB_a@xC_c@~AgQzBkUxHan@tJ_n@xLcn@nTy_A|hAemEjP_q@bKcl@`Isk@tEmg@lDsw@Vgn@{@wp@eEit@}BgV_CgTyXapByEah@kC}d@aB_y@@}a@p@yb@jDev@lGsp@jIuk@pFmZlIw_@hH}YrLqb@te@m}AxZ_cAhQat@lQy{@zF}\\bF{]nHur@dDqa@rCqb@zFkhAbEg}@pDyr@pK_bDxJakDbE{_B`@aWtDolBtBikAzAaz@nA}nA~AuoBfAe{BbAohEy@ghE_BkwDkAevBo@_lBa@a`AmAe`AoCobAyAk[sBoc@wFgq@aH}u@sJiz@i]icCwBkOoQ{jAcGgb@uFkk@kEmh@_Dsc@_Bwa@cAgYi@cZm@gh@Ci^^aq@hCqbAxDg~@~GymAhE_m@fGe{@b@kGzAmVbHa|@lHcmAnNeoBjE_p@nUc~CvMmiBzJg}AxDyb@zBu\\fBm\\Z_SEcNm@}NoAuJyBsIoBiFsCyEuCaDyCgCwD}A{C_AeD[gE@wDj@eD`BsDnCaGrIsI`QoHdMsDlD_E|BkEhAoC?iEM{C_AoC_AiEaC_CFqOcO{FsGoGsHiFaHaIeLqQuWcRaYsJcOuMcTuR_^gRg^y]mu@iHiMkHoOiLaWoNa\\_d@}dAkGwNiGqNcKuU{Xam@wYyk@cv@ayAkDwHcOwYwGcMoFuIsIwKyMuM{`@uNoTcGsGeBsEoA{j@iIy}@qN{IeAkQwBc\\kCuTgAoLIcU?{_AhByu@pAeUEmROmh@q@}]uAwJ}@mFaAuIgBu`@aEi]iD_NEqE]yKaA_NkAqQ_BcQ{A_TwBoNgCsJkDyHaDwEeCmGeEkJwGgGmFiN_N}M_LmLuH{M_H_MiEmKgCkK{AsJu@qOu@cLq@mKgBqCa@kIm@eC[cF}@qHcAgBKsCM_XiAuTaA{Nq@eH_@oM}@_DU}HM}Oi@oZs@eDOqDARqCNqCJwD\\cHh@_KpA{JDqLLiAjI}p@xBqSlNwmAvGmk@ZuCd@sDjC_TbKiy@jEa^vDu]nEya@jCiVrKs{@nD_[~BkSVkBjAcJv@{GPaBdAgJNmAfIgs@VcCzCwWZoCp@}FtB}Qh@oEp@_Gx@eHlD_ZlDmYtJkz@zEea@pCyUfEc^vFod@t@iGtEm`@d@eEzBuR|CyWnIiz@f@gFh@uGp@oITwDPsChD_k@`Egf@VwC^wEZoCjBuPdFad@TwBV_Cl@cG`@gEHiAj@aGHm@h@wDT}ARqAnBuL~DwUb@cChDcSxC{Oj@yCnLcq@lAcGv@{ElGq[j@sC|Fc[`BaJ`BcJvKkh@vA_E`AuBr@kA~BgArAWpAMhBOtAk@xAeAn@cA~@kCj@eCT}B\\uED{DKkCW{Bi@aCq@sBgAuEc@cD@iDh@aGpDuRzS}iAt@}Dl@_D|@wEzDwSbCmMpEmVb@aCdKkj@dDaDf@a@tBcBnAA|B[nBm@pBqA|AgBt@cAr@eA`@eAz@iDd@yDFs@F_B?cCIaC[gDm@}C_AqC}@iBmBgCyB_BaC{@kAOqBAqBVkBr@eBjA{AbBi@v@sDbBwBl@wAb@a]iRwI_F_GeDJi@vUgjAxLsl@pJie@j@uCgAo@ok@c[u@_B_@}@YiASeAU_BMiEhBwD|DmK~BwHzFiXh@cIl@iId@eHh@mHP{DFaDDcBBqECeDKgMcCeeACiOJsQToOV_H`@eFvN}gAtZc_Czb@ocC|Zc_BnOoqAlD}YfDq[fAsKd@wEP}DXgHXiBlAmKtAsLDa@zCqWf@iEv@mGNoAD[Fi@lAqJ`Gsd@xB}QhJ{v@vSifB|OqlAfBoODa@hFwe@~@kIkEyAse@gPym@oMkd@aHgsA}RmiAqOe|@qJsJgBeK_EuFgBuFkCkMiJojAicAgMqKwvAemAav@qo@i]eWs@i@ep@cf@iAy@cFuD}EqDkWkRm`Acq@ig@k_@{{AghA{YmO_LkEoMmCeKk@gKLgK~@qKbFmKvIgG~HsGnOoC`JgB~Ks@zNC~Ib@rQSvKy@~HcCfI}C~EmLjJgCbFwClCkN|MgJ~JiHvJyHnKoInNmD|FsBxDaHrMo\\hr@u]tw@cL~VoKjTgHnN_LnO}JnJuOtLeIvEkMpFmIfC_MpBwZh@{[yE_r@qVqj@}[}sAcz@sTmNwNmJeDuB_h@{Z}CsB_Ao@mPwKePaJkP{JgDmAqC}AyHwE}KsGkEwBmJiDuDaA_Es@sCYkDMaEBcDTsD^cGxAuDtAsH~DsGbFuDzDwDpFcG`KuGjNgSng@uX`q@cF`MeDpBeEjHoCnE_DpFiD|FeEpHqCbFoArCeA|BaAvBy@jBwChHq_@p~@iHhQkGdPqNf_@uEhM_AnEoBpD{B`CeCfBsBh@oCTyBEqBa@sBk@mB_AyDiCqb@qX}k@i_@eMeHwEGy@k@qTwQkZcWaYuVg`Aa}@ym@um@uVwXeVqYwL}OoOqTkb@ot@gHiOaGeMmJkVcFmNqIiXGWaGkT{EgR}Gu[eE_UmEsXeDeXyEcb@aEc^QyA_H_g@_DwS{Hqb@qHu]qFeUkFuSkKu]kJgYaE}K}BcGaNw\\mHwPcEsI_CkFuImP{DiHoGoLgMcSk[id@yQoTsWwXeXuVkQuNyJeHuJyGwRwLaG_DqUcM{H{E}As@iCmAmj@qVypDiyA_R_HuSqIcTiIy_@yOum@wUwMeFSI_YgK{o@sVar@_WwHsCmEcBgN{FaeBmq@ocAab@_tAmj@kZcLOEcFqBg]cNio@sVgWsK_SgIyJaE_bBmq@iYgK{]wNk\\eNadC{aAwc@gQ_DoA}T{IkzAkl@UIeHuCwb@cQeRkH_bA_a@cjAqd@g^{N{YsLmQkHseAsb@e|Aim@mBu@kQ_HuBy@shD}sA}x@}[}GoCGCiq@aXwzBs|@whAyd@_GcCoaCe`Au]uNihAmc@iOeG_M}Fg{Bi|@skCkeAyV}JcIuCoL_F}u@g[{XqK}fAwb@koCqeAmx@y[gXmL}{CepAinAcg@wiB_u@aW_Kiz@s\\i`As_@ihAuc@ydAma@ma@_Pub@yOi_@kKyRqFsh@}Lmt@iL{c@eFgr@yE_b@oAcf@}@kh@V_K^sRp@{TfA_XdBcj@rGmTlDuZ~EiPfDiL~BcXxF_xAv]}iA|WivB|g@i\\`IoiC|n@okBxc@qRbE_oAtZocAfViz@|Rm`Bn^q{At^}x@nScp@`Q_c@hMcLdDucAj]{f@fQijAzd@sxAzm@u|Avp@kfBpu@wd@lSae@bSelChiAceB|t@ii@bVqd@lTm}@~c@{T~Km@ZyqAto@uiA|j@k@ZomAzl@mq@t[_cAbf@gnA|m@mlAdl@m~@bd@uQ|IiXhNwxBjjAgN`Ie^hTc|Ar|@uoCjzAqaC~jA_n@zYihCxlAeiE`sBkEnBgf@nTy[rOubDnvA_kBjw@m~BnaAoRfJsmAnl@kc@`T{DjBaPdIwqA|m@u@\\iSnJycHjeDsWtLcCfAu{BzgAeN`HuKtFwN~GmsA`q@kw\\|sPofAjc@e_AbYqu@fPkjA`OadAfFgv@t@g|@kBmo@gDc~@gFm|FyZ{oRsdAyfAcFimB_Jw{@aEyi@mBcfAg@yfAxEgIp@wJzAgPxBcJfAeSfDuk@zKy\\lI}e@rNcYrJkWjKin@nX{k@hYer@~b@in@jb@aX~SaeBlmAk[hTg_@|RkSpLsg@bTwS`JgUfJ{s@rSm\\jIm^tGy]lGe]tEiaAxIsb@lBc_@LgeKbBoqGhFglCGcjAE}e@Tu{AAcvF`DetA\\yTF}g@`@}vAP{jBbByZ^yjB^oD@mtHxCuqDtAgRDce@BsnAoBcoA{DonAuHelAqJ}yAiKkhAuHa{Gsd@av@yEaj@kDwg@eByf@Baq@dBmh@jCof@lE??yd@`H_VbD{x@vRg_@lJ{cBtg@gxEzuAcn@dQujAn]ipElrAqj@jNeXjFaYxDsUnCuQtA}XxAyo@zAsoAsE{a@_EoYgEko@uM{i@eOea@qOkh@}Uys@w`@_vIwdFmy@qf@kcByaAeeBs`Akd@}R_g@wP_eAcVqb@mGyRyBkSeBeQ_AkQ}@ad@g@cTDaUf@kUdAmTvAwe@hFqk@rJ{p@zPyk@~Rcd@jRo\\hQiZtQcc@zXck@|d@_}@pv@i{@xu@i\\jYkUrRg`@~\\uhB~}AuSnQeBzAmz@`t@}b@l`@}c@d]cf@z[ii@vXaTzKan@lV}TbH_ZhH{PnEwSfE_g@hHm^rDmVnBeyAjDslAzC_[n@aZGkYa@ca@wBcYsBo\\eDsTsDsRcE_PqDu]yJcTkHa]sM}YqM_\\}O_b@eV{c@_[w`@}Zmf@ie@uYa[adCyvCg~B}qCgIeJio@sv@iHuIg]k\\qXqVwZeTwY_Rq[iOcQyHe\\cLm[_I}g@yIcTcCg[}AaU]sSZme@rAsr@zFqwBfRkkCbT_{Fpg@gg@nIyc@nKkc@fOw[rMmkAto@wb@|Sc]vPcwBvnAoUvOgBlAs`A`i@{DlBaf@pPoi@lMk\\tFi\\pD{g@bBsUTi`@[qXsAqi@kFmLkBoH{AeRyDmWgGuVcIeTgI{jCadAucBcp@_e@iRio@_Ug_@eK_Z_Gqd@_Hy]wD{R_ByQgA{Rg@ecBoBc~@eAcNYmJGa\\e@wh@m@s@Aq{A{B}CE_WLqHD_YzAek@tHc\\hIwQxFiJnD{OxH}QxIeQpLsYzSiSrQ}QfSeIxIyHnJsLfPyNpTwH|MoEfIwE~IyLnWaHrPsGhPkJhXeKv]cGrUsHb[uGz[aEnSuCjNab@jqBeMno@wR|}@yBdKa`@pjBuN|q@{WbgAyWx|@yArEaBdFyA|E_T|o@yZbz@i]xx@k\\`r@up@lkAw`AhzAwlBjcCqc@lj@uIxK_`FjkGgNfQc{CvxDuJzLk_@~h@u|@~nAor@tiA_r@tiAiYde@uxAdbCgeAxeBqcAzbBsI|Mk`@no@ye@bs@i^nd@}e@jk@ebAphAkw@p{@iPzQoD|D{H|IwzAfdBm_AtgA}\\zd@gGjImGtJqLtQuc@hu@{LnT_[dm@}Qp`@yRhd@mb@ndAoEnL_gA`sCeZnq@i`@nr@o]|k@qYdd@}[db@w[l`@mc@tc@wf@lc@ge@`\\oe@`Ykh@lX{i@`Usp@xRwXxGmYpFuPpC{Fr@sQzB}SnBiZ|Ag~AlF}w@rCm_AxIe_@fGi`A~SmS`Fw_Bti@}_MjbG{HxDgkBt~@gHlDcc@bT_v@l^kOtHuCvAwNhH}ZtNuqAlo@{i@~U{k@dTwl@xPwO`E}p@`NexAhUgc@fHw^`GkObCklEjt@c|IryAgyAtYgcAbV}`Ble@ubAd]}x@pZy~Ahn@yQhH}m@dWkaArd@oiAjl@{lFluCccAhh@mTlLicA~i@gAl@{NzHgaFhyC_YvPwDbCmv@~e@egBnkAmBnA}wH|}Eoy@fh@yi@`[q{@be@wkA|i@qg@zSkdAl`@kx@fWkcFtzAc`GtgB{Bp@wk@lQcDbAi~@dY_NzEaz@`Zq_@xMgOjFkUfIgBn@qu@~XyZfLyXnLo`@lO}SlIywEljBwnDfwAg`Aja@ep@nZasA`r@mm@n]{m@t_@gs@vd@aVrOasEtbDmy@~j@mkMn|IkjAdx@wnDldCseMdxIiSdMiJ|F{]jR{\\~Oud@hRo^lMuR|FaGlBklAzY{g@fIs_@|DuZtCcZjAqk@~@_b@k@wCKaZ_Aqw@mGa`A}LmnAqRw@M}M_CkB[ufCga@ksEgt@kbEar@as@yIsZkDso@{Fo`BiKeu@iC}`@aAmUe@yMMc|@W}b@Le|AtCgk@|BgoB~L{W|A{cEnZ_BJcF^w{@jGiw@`Ck|@Esy@{Cmy@kHi~@yN_iCqm@c|Gk`BogCym@qbI{mB}f@_K_h@yHyiAcKieAyCc@AgwHiKqn@_Cig@eEyi@sG_a@kGk^cI{IcB_w@uTkg@oRoXyK}bAmd@sTwJ}{@y`@s}Akr@akAwi@cnC_nAed@mR_SeH}[mJ_\\qI_^gHce@eH}\\_Eg^iBmp@o@gg@t@uZbBs_@~Cq^bFyg@|Ik[|Ie]pJ{`AxZwWdJodB`l@ay@pX{i@tQmt@hV{dBhk@kX`Ji@RygAn_@gc@dOqjCv{@g}Bru@mq@dSke@pKwq@nNc_AdOss@`IsLdAms@tE{nA~Do{@Gsp@wAwyAmGuiCwV_pBwSg|JacAueGul@qMmAkjDc]of@qDkx@}Akp@hAso@pEiZhEu[dFeXrGkWpG}aCts@q^xHo_@tGyVzCiXzBca@jCg\\lAqs@s@yhAeCgNe@cx@oCgdB{FiY{@c_AyC_tDyLiaAsCufB_QeQwBgkAeSqu@sP{[sIouAkc@ixA{c@yo@gSq\\yIsv@_P{s@qKug@qEo{@uDuf@_@wiCfAy}InFkb@VeaApB}_AzJgp@nHwp@`K{p@bM_yDt}@qmA~X{k@~OiCr@kp@tS{n@lVajAph@wh@xZqi@j]yFnDaSdNea@jZaYnU}s@jp@wg@~f@mQhSoNvOiE|EaH|HskAv{AogC~jDu_AvqAghAn{A_wBtuC}aBj|Bok@d_AaUz`@gd@vy@a{CxuFka@dy@c`@d}@cQdc@}Prd@m\\fbAq{@jiCyWhq@c\\xv@wc@z{@_O~WySd[yiAzaBaj@pv@aJfMsGbJoOnSgVt[aYb[iU`XuOrNePnNop@rh@}u@~d@wf@hYwg@lXs]fUu\\fV}b@d^sY~X]\\a]v^gHpIaPxRoEhFuJrMmr@xbAwJtNcQ`VmYf`@ee@zl@gPhRkXfYya@z_@kZzX_vAjqAil@vn@cRpVoWj\\ea@|j@ib@pm@eZxg@iSl]iQj[sFdJgoA|yB}fFhcJ}`BxtC}e@f{@g]rs@uKbVwF~Ms]l`AyNha@oTho@iOba@yJlTINsLvVeN~WwJbQ_NnTgIdLgNxQkSvUgNtN{SbRoUxQ}g@t\\oPfLuf@j^{SdTcVj]eIxM_IjMoUha@{KrRgGpKuXpd@mSn\\gJpNkR`VoTrVs]p]q\\hY{n@bg@oAbAoZxW{c@v`@ee@v_@ycAn{@wGzFeMxKmIlHmP|Myb@zb@q^v`@}Yd\\u]tc@a^jg@aWv_@md@vv@{^tq@sd@taA__@d}@c\\f}@iI|VaPnf@eTft@_\\hpAw\\v}AgYf_BkCzOoNtz@qFh\\oGr_@uJdl@g@jD_I~e@w^l{BaMns@e@pCcK|l@uOhu@aOhl@cRfk@aVrl@uYbk@kXz`@wV|ZsQhRwJrJaOrL}PhMeQ~K_TfL}_@zNmnAdb@uvA`f@mg@zLw[jD}]`Bk[Hw]wBaZsEg]aHcTqFgVwJ{OuH}PyJ{OyKe[cVyUeVcRiTyPeV_RiYsUs`@ed@c{@ylAa|Bqk@yhAid@my@oc@m{@yNcYuHmMoQsY{NqSiRcUsV{UoOkM{U{OaWwK{UqKqXoJeQgE}]wHq\\wCwViAwUZmZrBa\\zDqYlGoTrGkPnGmR|JkRhKuWjRiRvP_OrMgXjX_uBbwBul@nk@u]tYsVbSsUhQw`@rWc]bSoYtOy\\|Og~A~p@ai@xRsq@jYuh@bWeObKwJtGmSlOsc@vd@gNtQePhUoLjQ{Vva@gZxq@eIjXgQ~i@eVteA{M`x@eLlw@w[nsBmCnRmIbl@gS~rAiT~wAoRhqAoInh@_Irc@iJpb@qJ`_@mStq@_]z}@kU`f@eYli@eo@x_A}Zff@yOzUqw@bkAio@v_A{iAj`Bmi@zy@}RrWyVzZcSrU}P~QcWjViVhToTnQqZlS_c@lYy`EhgCkqA`y@qRrMk_@`Zyk@hi@aY|Yga@tf@cQ|Te^th@o^pn@kWhf@qZlp@ilAxzCsPra@{rB|gFqKdXy|Ab{Dw~Av_EqdBvjE}tBdlFkd@zhAc^|v@aa@nu@gYdh@q_@xl@mt@tcAmVtZsmA~kAwy@dq@aqAv_Agn@h_@wd@`Sqy@d[}y@vUcqB~^sbHriAeLjBcjJn{AkmBn\\stE~w@smCjb@gVzFsRxF}r@nUso@pV_sA`r@{fB~eAgzAzs@kuA|c@y~At[otG~kAckC`d@a^xHa^|Icd@`M{JfEmLnDaVzIyeA|e@_VtKifA|g@}~Arq@gfA~f@aL|EeKfEwrChpA}|@r_@ogAd]ev@bPal@nJgpD`j@gfE`n@{|ArS{eEtj@qV~C{~Ehu@oL`BevGh~@qBXaiCj^{hCr\\qtBfWayBzYq~AlSeeAbLs`Gpw@}~D`g@{m@hJq^xGucApVucBpj@yfA`f@qn@l\\{`@`Vwb@fYyjAp|@_fAb{@{a@d\\mJhHkiAz|@klC~vBeXjTej@tc@cJdHo~BrjBuiAb~@icBvsAkaA|v@{pB~aBipEvlDoOrLgtAfiAcoGndFydD`kCyLvJynExnD{eGv}E}XpSyIpG{c@xXms@x`@ex@d^ca@tPc|@rVe]nIq{Dh_AceBxa@}AZgNhDwsA`\\yRzEeoMd`DukDpz@ehDzw@woBfg@mwBpd@iLvBwfI~lAa\\|EeU`DoeAtOyx@rLg]rFoi@fIa}AhUugAxOsMnBy_C`]yPxBebGx|@wwAjTwMrB}kGtx@adCh`@I@gdHhhAsmAxPsuAzSy~AdTu|@lIin@jFis@|EapErMeeKfQ}_CzD{fChF}zDxEqJTejC|Em}NdYklI`M}|@pDiDNasAtIqeAnHywB|P{bAtGo|@jHknDlV{iAxHkiC`QmyBjQqVdByqDlVqkAfIuzJzv@yx@fDwZv@gv@`@eZHqA@w^JuwBj@mDB}zAjAaJHaR@mXJeDBaaAh@moAp@gf@Gyx@Kya@v@aJp@_M~@w{@pGwr@dEsm@~Dad@pCqs@tEcuC~Q_Nr@cP|AmW~A{RvAgNdAivBtMsKn@yz@hGyjB~LmuAfJsuKjr@_}Htf@wc@|A}c@v@un@mA_VmAa`@_Ecd@cHod@sJayA{V{NeBu\\gFoa@iGkO{Bqx@oLsSsC_f@wGij@cFcV}@wu@m@oGLg[n@uKTct@jEcQtB}LzAc@FgBXqYvEsf@lJqGxA{NdDsDx@{\\fJid@hOye@lRsuEfpBcfA~d@koAdi@ypAxi@_m@~UsK|DmOvFuM~Di_@dJyP|Dqo@jKus@nIi\\dBm^jB_d@p@qn@w@i[wA}b@gD}WsCi_@{Eau@qOgMuDeXaIq[mJ_eAmd@gqAit@szAwnAyeAudAqv@wu@ywAuzA{k@mn@sp@op@cYmYsVsUi_CoaC}JmJi`AocAaIqIohBsmBwwBagCwdJ}oKaPaRacAckAcx@{~@mdBypBwy@i`A_rBq_Co`BelBulByyBg}B}}Bq`@c^}k@uh@crAomAua@uh@a_@kb@eqAozAw[__@ic@{e@wXcXqi@ee@a_@wWkx@cg@g`@qU{g@g\\ah@}]}p@ik@mq@km@{pAckAiwAiqAaB{Ao|AavAuu@ir@k_@k]yR}Py\\k]}PcOkUaSw]{[YW_pAykAwz@ow@ki@_l@_FiGwy@_bAc\\_d@kl@}x@khCavDsb@im@wCcEoz@slAmyA}tBcmAo`BwgCmrCma@cd@iqBujBilB}bBegDgxCkc@{_@yaCkuBuqDibD__DkpC}c@{`@cv@_q@_n@si@m`A{z@c`A_|@}XiXo]u]oo@}s@_s@cz@o_AypA{uEkkHy|@imAou@{{@_}DufEofCglC_d@_g@kCsCgM_N}`@wa@_XqXax@a|@ug@mi@sWsXsoAusAaiAimAur@gu@i~C_fDqaBuaButA}dAolAsu@_cAsb@q~Ayf@qeAsUepMgjCq_HywA{rFgiAkgB}_@_hG_oA_l@cMol@uLgxBuc@mP_DwkAyV}vBui@ikAgc@yjA}g@uj@qZqv@kf@gMgJ_UwP}_@uY{KsJuTcRmb@a`@sa@kc@oe@ye@oJmK{PcRkTyUym@cq@eIaJsmByvBorCc~CmqA_zA{uAu~A_vAo}AkqAquA}r@cx@oa@wc@wVoZcXw\\k^{j@iUwc@wQo_@uNcZ{T_a@}R_ZeXwY}XkWwb@uWa_@gTop@s^sXmTy\\a`@eWya@yXig@uL}SoL_Rq\\ya@eWaTe\\iSuW{McYeNs_@{Ty^k^gZmc@qOmYsHuQePsd@uTyr@sWou@qNk[gSg^sRqXa`@ua@}f@u]af@_S}g@}Jaf@iB}w@E}a@Ye[oC{V_EiXmG_k@uScl@o[{p@ca@}|@si@sm@a`@yo@ec@aIgFKIktDiaCov@_l@_u@ao@if@cf@yf@mk@cDmEGIaSkX}Sy[mX_f@gS}`@[m@iWam@kQgg@mSgq@iQmq@sPsu@mKsk@wLov@{M{`AcQyzAwRmtBySwaCiKqnAoAcM}O{_BgQ}yAqQuqAYgBcSqmAgXutAmVulA_[yrAyaAqdEcXiiAwq@euC_n@ciC{FgVgUw_AyRys@wNkd@uEaNkTig@kMeX_OqZcHwMmMuS}NiUuEoHyYm_@}mB{fC_@e@_r@g{@{OmSmzBytC_dBwzB}PaUyr@c|@yw@w_AwhA}fAiNgMsWyU{QsOoVwS}n@yk@eeAuy@aAw@oeBoqAkTgRiXkWe_@g`@cb@el@uZmh@os@{nAi_@}p@_V}\\{Xg[sSySyV{Ss]cWu[_Re^qOsUeJgi@}Qud@qScOqI_ZmSsUgReWyUcQ}SiT_X{MwQkN_U{HuN{MaZePs`@cPsb@{Qen@eMgj@wJei@gHaf@{Fof@kHi~@gDmw@{AebAoAor@wBav@_D}h@{G{v@uHcj@wG{c@mFcWcFkVsMof@sNic@mPuc@{Twf@iUma@ci@wz@_Vk]ePsUocAyoAenAibBwiA{{A{cAysAodAwsAyo@my@wQsVuw@mfAaa@{e@uh@ki@eZ}X}KoI_PiLyT_Os^iS}W_O_e@cSoe@{O{MoDay@yOg]yDm[cCwn@sAwWA{aAzEokDjWsVrBeo@jFyLjA}lEt\\cwEf]ig@rDm]rCehA~IujEj\\wlClSsZdCoqAnJqm@rEoy@fGilAxIonApJcdAtGmx@rCil@hAwv@Bqg@kA}g@}BoUaBu\\iFmj@wIs]sHsUcFc_@qJm\\yKqc@ePeKyDqk@qXoDqBqf@kXec@eY}_@gY}ToPeqAmiAg\\m[anB{jB{~BmyBmz@iy@slDigDa_@_^ms@yq@{d@_e@uYi^}Xu_@}`@mr@mNuXo\\_y@_Za}@wSux@_Sw`AiR_jAuQioAq|@ymG}Y{tBmAsIswAgcK_Z_vBaLiz@wNi`AiPsz@{Va`AkIeXoP_g@_]mx@uMwVkL_TuYid@qOwSuYg]y\\{\\{H{G_^{Wgr@we@adBukAeLmIu^mVw]ySyKqGsQaIgf@kQkV{GuZoGyZaEyb@gCmXm@s`@r@uf@nE_UtBw~@fSmg@lLaa@jKcrB~e@qvB|f@atA~[mPrDocAfVem@~Ng`@|Iio@pOcs@nPo`@`J_IjBcFfA_InB}MhDqEdAgH|AiSrE{~Ah`@a{Ar]ws@|O}RjE_z@pLwl@tEcm@jAkaAfAib@`Bw[bEe]|Hq]pKiY`McYxO_OtJs`@|Zih@va@qg@zZk_@xNid@|K_i@|GoYf@cb@{@mb@iE__AmV}l@sSmc@sNev@{Lu_A{GmX_C}XsEsc@oL{f@_Sqh@g]sb@{_@gwAgaBye@kb@gb@s]qZ_Reh@mTkSgHwQuEuP}DkYwEaOgBsKg@ee@}Ao_@Tg^pB}e@vFid@zK_RlFaUlImQnImUdMyRtLq[rVmA~@sHzFkt@ru@{b@lm@yTv_@oUnd@yRdd@cX|t@mLzb@aPhm@}SfgAoTtqAqNb{@u`@~`Ca@xBsDfS}O`y@oTfr@{DzJuOzb@wOl^ySz^uZzd@uUvYm]b^o`@rZo`@pU{[lM_NvF}PpF_[dGkb@nEsY~@id@o@yWuBiUuDqX_FsYaJeVyJsUoLma@aYyQwOqNaMwZu\\gRaXm_AuvAgaAktA_k@kk@iYySwUqOih@qVuUoIsSgGqXsFkXoD{j@iDwf@~@}h@xFaNpBy\\dHor@nVw`Ald@qUtKq[tOwVzLgRtI{lAbj@{h@lQsd@dKs^dFcf@|Cwz@GsZsAoW_CkY}EwWwFi[}IeVoHcWqK}WaKm`Aua@_XwI}j@kRyi@aKam@mG_U_CuQa@u_@sA_t@D}LDyu@IyW_AcLy@o_@}Dif@yJsSgGaPsFox@yZcxBojA}RgIm`@eOy}@iVag@eJsy@wLcBWwzAcUuj@gM{j@_Pib@aPuv@y^_j@o]oc@w[wd@ca@ad@ce@o^ob@gSwUkNaR{r@ybAwa@ap@{xA}|Bom@_}@qn@e{@gh@im@_c@ac@un@ii@yb@k[yh@iYai@eWyf@gP_h@_N}m@yKg\\}D_TgCmu@wEy|AgCocB}ByZ[obAaA_kByAkv@gDyi@uEib@_Gwb@_Luc@wOmg@kVg^iUwUmRkg@ce@ga@ge@kh@sw@c\\un@{]ox@_Rci@o]ioA{Pq}@qOufAeKwbA}Duk@qCkn@iBgp@gA}i@[w\\yAe_Bo@g{Au@w{@aBgr@{Diu@aFap@{Iyv@cMcv@}Oqs@oRgo@qR{h@c]is@yb@us@cU_\\mVs]a|A{lBgt@wfA_Uab@qUch@{JsWwK{[qH_WyIm]kIk^mFaZyH}b@_Gu`@oKez@gHcp@yG{t@yGky@mEys@gEy~@uC}_AqBm`AgAi~@o@u|@KcmA[{z@EgwA?qk@?mnACinB@whACe~BKen@Q_vCBqmAHim@A_h@KukCSg{As@a|@q@qc@sByo@aGkcAmDwd@}Ese@iKux@kGu_@{EaWy@cEoGw[_WubAyTyr@mVso@kOo^yNeZa]wm@gZqd@sToYyBsCiQsSwQuR_VuTwP_NmZqTs\\sSq\\oQ}l@gUoh@uOch@uOok@wOgo@wPywCqy@axAca@mj@gOGAap@qQe`AkWmVyG}k@iPal@ePorA__@iG}B_b@qK_N}Cof@iOuNyDuU_G{j@aOcp@wOs|@oRef@oJap@{IwcAeK}d@uCmi@eCmVu@op@_@}y@~@aIL_r@|Bku@bFit@lHk^jEe_AfMy[tE}z@`Liw@bL_z@jLk|@~LyYhEe}@jMa{A`Toz@hLuo@~I{`@rFoThBkRrByLhAaMn@iRpAgWp@we@x@kd@s@oVg@_Z_AwPaAmJo@cUcCqRmBs^kFuOyBge@_IePkCga@{Gaf@oIaf@{I}L{B}k@yJiw@{N}v@kNib@aIss@eMgTkD{J}Aqa@sGei@kJiMiBsWeFuLqBi[_HkF_A}QaDceA{QgHiAyt@{Ms^oG}bA_Qkr@uLk_A{OiI}Auw@yMwc@{Fk`@{DmOsAwMaBkZ}Aq]oAG?{Ug@kG?iIAiYP_b@|AaXfAsSvA{[lEkm@`J{o@dLou@zOgFbAuL|BaZrFkrA`X{_@jHc\\pGiUrDoa@tEcb@`EeJ|@ki@hFea@zCyw@nDs\\jAwj@~@eRTih@[y`Ak@qX{@iCI}]sAs[aBw~ByPgcCoQgWcB}_AuHaUiBod@gDc_A_HqWqBsY{By[aCamAcJov@{FoNaAie@cD}dAeIus@uFqx@}FcVeByL{@ou@cDoWq@uYu@_t@kAwSE_a@Gsg@n@gORsWf@qUj@eu@|Cko@lDgy@tEay@`EwWnAcJb@eS`Aei@bDmh@bCuw@hFgt@jEq^bBg]jBq\\fBiUf@sXYgRu@yPiA_OiBk`@iGc^kJs[yKg`@cQk\\cRgUmO{p@ch@eFwDoe@i_@sUqQgKuHiMoHk]_NeSaFwZwEca@o@iWtAgVvDyUjGcSrH}NpIqC`BeXhSid@da@k}@bx@gRrNiSnMc[bPcHnCyRxHmeBph@{c@fNyG|BwNlE}f@`OaJ`CasAza@op@vRug@nMuc@nJaQjCqQlCgRpBuD\\mBP_Gf@kPr@eMf@kSTgYSwZ_Aa[wBujA{Mc}@{N}ZuFoLwBmgAcR_j@kJaj@mJa`@sGyrAyTqXsEql@{Jux@gNkR}CsSqDiLqB_XsE_\\gFak@eLkb@aK{`@mMkf@oScKgFgKmFoXwPqr@wg@g]qY}\\kZy\\{Za]}Yym@uf@aVkQcIaGu{@cm@mn@y`@cp@}_@go@s\\of@sV_a@yQ{v@_\\we@{Qav@mWet@oToXqHmd@_Lmm@}Mav@oNmq@cKmd@wGmc@cEsn@qF{D]a[qBsm@iC{Qk@iUs@ym@u@yyABySf@a\\r@md@tAoZ|@cYd@_i@]iZaAyl@mFyQ{CgSgDye@{LyYyJqc@eQa\\_PwV_P{@i@g_@qWa\\sXuYaXs_@_b@}UoZqSqY}f@yv@ii@i|@ck@m_AiPcXc_@qm@wu@gnAyUia@uUyb@wQaa@yS}h@wNic@cOgh@mMak@sIyc@oHeb@wHqj@uImv@yMylAgG_f@}Fa_@ePg|@y]caByMwk@oKmi@oJgi@yKew@uHiq@c@oEa@kFkD}`@cGqv@_IokA{LkfBoIqnAqGuaAmMqjB_Got@gIku@}Hcl@yKyk@qN}q@qQwo@sg@waBkb@stAuZw`AgEwMm_@alAyLo`@{Q_m@_Pqg@se@mzAyIcYsJqZyw@ggCQg@uy@ilCk]seAiUmn@{g@cnAoh@glAol@wsAob@geAsIkT_b@ekA_JwYyRao@}sAm_Fom@szB}Tsu@kVir@uWcp@iWkk@u`@_v@uh@a|@gMcS}_@qm@if@cv@kuAczByMmSa`@wm@g\\uh@}\\yg@_Vc\\c\\g`@wZc]k^o]kZwViHeG}NcKy\\yUia@wWk[aSafBwiAqLqIkK{Ggf@sZoo@sb@qe@yZqk@ca@w]iX}F}Ekf@wc@uW{XyIkJuZc]sLeOs_@kg@kh@{w@i[ik@mQg[iJsQqJyS_DaH{Q{`@{[qx@g`@egAi]wbAuYq{@gZuz@oLyZwQqe@wY{t@wUuj@}j@gsAal@muAsNa]w^{{@mf@sjA_bBc}DykDygIy`Aw|BcU_e@wTk`@}\\oj@a^ch@_PkT}SeXwa@uc@aa@i`@iQ}OkWoSaNeKsUsP_e@sX{YkP}VsLaOiG_KkEySuH{UaIqTwGq_@}H_SgEsVyD{YsCwZyCuf@}C}s@oCmx@_AkWKqNGsf@Cok@I{r@i@gR_@}b@{A{UoAoPoB_ZcDyUwDmU_EmWuFyd@qLw^sLuXiK{WmLge@}Tul@wZsj@{XeaBaz@{NyHep@q]uv@q`@ce@eVk[cPgu@a`@k`@uRe\\wOam@}Twa@aKkBe@s]uFqYqBga@eByMNmZ\\yd@fE}N~ByNpC{MvC}f@pMcj@~QmZzJeYjJwcBpk@_UtHibA~\\mRbFem@dSgLvDuJ`DuZpJeUnG}TpE}Dx@wE~@sTdDgIlAmQvByS~Ai]|A_]^iVU_Tc@qZwA}S_Cym@sI}ToEeQsD{YaJgPiF{N_G}OkGeRqIm[sP{c@uWq]kUmU_Q_a@_\\wWmUyW}VeYkXiWgW}k@{n@im@cr@gBqBeNqPek@_r@o`@ef@uw@m`Awt@w|@w[y^e\\i_@e`@}b@ij@wl@qv@qv@sv@is@oa@u^c|@gv@ey@mq@wz@as@kQ_Oy]{YsHiGkJ{HiHaGoViSsK}Igw@wo@uf@ia@}s@}l@eYsUeKqIsMuKuw@ep@ox@yp@{]wYsx@{q@s_@k[oTuQkv@eo@aq@oj@ey@gq@{t@}m@mz@}p@ee@c]qc@mXcZoP_s@i\\qB_AwN_GyYyLqDyA_\\{Lk[qMmCgAiKeEyJaE_Bo@wqBox@ew@c[ab@yOiIeDc|@s]wv@wZcU{Ic^wNo_@}Ng[gMiVyJkv@gYgz@wW}g@uL}G_Buu@qLuO}Ayb@gEqy@{Dql@k@c}@`Boo@rDqMvAwe@nFsx@jNy`@|IiUvGwp@xTug@vSk~@nd@u]dS}v@|d@cZpQal@~[kj@|Wmh@hS_o@~QyThFkOdCch@rIyf@fE}\\xAqXh@un@SgFUaj@kDA?yi@mGgSyCeTqE{ZkHsg@{Oce@oQ{m@aY{G_FyZcRyj@ga@kh@kc@}TkTwd@sh@uPoTy`@yh@_l@e{@qm@_~@ok@g{@g|@}qAaCoDgL}Pgf@et@iLcQyDqF{CcFwMeQsXo_@_k@wr@eg@}i@{NeNy]k\\}j@}d@on@qc@yk@{]}t@ib@sv@}a@cs@i`@{g@}WcRaKy{@og@_x@gc@kX}N}]oR}r@m`@cI_EiGaDeNyGgr@a`@ox@mc@mg@uXqN}Hov@eb@ss@u`@ui@uZkw@_d@gj@sZaKwFw`@cTkUaMwf@eWuw@ub@wv@cc@y`@uTaWmNy`@aUqRqKwe@aWov@ua@ax@_c@s\\_RoY}Oyw@ad@gu@}`@sy@kb@cp@y]mn@}Zc|@e`@c_Ai\\oPaGeYsIug@uNwk@yLcu@gKiWwCyYiC{[mAgYo@{^g@eY^{Wb@_m@zB_Fh@gVzBub@xEaX|Dsi@bJi\\xHa_@xHyNbEuVtG_ObFwYbJmb@~NsdAd_@}pCbkA}eBvt@mdCndAmXnLygAre@sQlH}kDbzAiMpFsW`LugBrv@osBp|@opB~z@_NdFcjAhf@io@bY}RpIq`DvtAiHlDk^xQmS|L}IlGmS`Oi[pXuy@jv@erAlnA}WrVoh@lf@sa@|_@eh@te@}TbS__@rXu_@pU}g@`U__@pLmRxFcOlEeu@nPaq@rPw{Az^qf@xLuNtDiAVyxAd]sMdDo{An^a}@|TykArZ{b@~J_xAf]sTdFmUjFo`@bIiShCsK`AmFd@aSdAoRL_SDkRm@yRmA_RcBcQuBmg@_Iey@eO__@wG{T}D{m@wI}]kDoRuAqg@iAqYLkXbA{YbCyUzDwXpFoXrIiVpIkR|Ig^tRmh@t^ya@~]_v@ru@aT|Tyq@~s@iXtXeWzT{VxRaVlOw_@`Ta\\bNo`@~Lqc@zIiPlCsZzBu\\lA}WGka@eB{Y_D_YaFsXmGkXuImUeJkQqIgWoOqb@gYw[iYu\\a\\{SqU_N{Os_@ud@m}AelBmt@m}@mB_CycAenA_UyXcFiGgYu[mYyYkIaHuUwRi_@gVcj@cYi_@mNkg@wM{Eu@mb@iGoImAICyU}Aee@_@eSXw^jBw\\pEqZnFc\\bJ}U~HoTdJwVzLwXvPgg@x^gXfVaQnQqXb\\kSpYyFnIYb@ei@f`AcS`c@_j@nsAue@vkAs^d~@aI|RoVzl@wOb^kUxd@wRj\\{RnZiMjPm^fc@gVrUwWxTsu@`k@am@fd@}YxUmWzW}KjMkO~Qs]vg@qX~f@a\\ns@{KrXqQxj@cK|\\sKfe@eLxi@mOny@{Lho@aP~v@_Nhh@wJt[gMp]yMdZgMrU{St\\eOrRsOdPqPxNqPhMi^vRcRhIiOnEs[vGuw@hKc~Cd[ySp@iUUcOmA_QcCcPwDkLeEiOmGmPoJ_QcMGEgPyNqTcWeXsb@{KwUiIwR{HiUwHgXmE}PsDkRgHmc@}Da\\}BmYeFk}@aC}]sCs[wB}PoFo]kGsXkMib@iQ}_@mPuYmAoB[i@wE}F_JgLiPwOcMaKaJoFqMyGcLsEsJmDiUyFkVsGsXyGoP{EoYmKkYgNqPgL}OsL}X_WcTkUcTkVEEqSmUoSoSk[yVi^wT_F_C}\\{OmQoH}@a@kK_F}XaOoTuOkLaKaLyLaLqMuKoPuK}QeKgSy[gq@qYym@m~AahDoW_j@aHaOub@gw@}Sg]_Xu^y_@ab@cK}JkNoMmYoUyd@wXyW_PsnAwo@c\\qPanAuo@sU{M{PaKun@uc@my@{q@kn@or@}LsNoHqIiz@{cAgSiUwe@qe@cMcLcSwOmd@k[q[mQ}n@_YmIiDkQmHiQmHgAe@mLgGmZaMwQcK}d@cX{nAw_AebA_p@m^eQ_[wLi\\oJg_@uH_\\eDyWqCmk@a@sa@Vq`@jCyd@xDoa@hGwkAlWcd@rNe\\pKuz@~Ywz@f[cpBvu@cZ|Jiv@|Ugg@hMujAnTuy@zHar@pCgl@U{Sg@}]kCwb@mFwY}Ek|@aTay@yW}kAea@}vEc_Bs_Aa[}vAoc@a^{Hmc@aIwbAeL{z@iD_z@WseAzCadAnKqv@vN{UtGe^lIwaAhZqaAz[eUpG_o@hMeb@lEql@lAcm@cDgg@mK_nA{^uu@wYomBiw@{zC{mAc]sM_QgFkVqF{]iFea@eCoe@Bi^lBg`@bGk`@nJmc@rPie@vW}R|N}R|Ned@le@{Wz]c]vi@k[lp@{T|k@}Uxr@yd@bvAub@lhAaUhe@g[bj@g^hi@m_@nc@o\\p\\wa@d]ib@hXod@pU_^fMqPtEsMjDeYpFaOtBiWpCg[`Bo[Ja]w@o\\sCsYqDmYoFsVsG_VaIwg@mUeZ}O}VaPsPcMs[{UetAigAkrAybAkWyMmWyMqT}I}TgIuVoHsVqFen@yI??acGqTeKWua@iAc{FcToq@gJkp@cRsk@mUwk@y[mOsKu~@cv@gpBi_BkhA_s@ukAqi@mpAs`@atAuU_AEijAkGqm@g@o_@bAqeAfIqeA`Q_jAjZwb@bRam@nYoaAvm@ydAlz@im@bm@wQtQgZr^qZna@_b@|m@_Rf[mg@x|@{f@r`AgLtTy@|A{LnUsi@~z@{QnY{Zz^{\\v]ap@pf@mn@|^wq@xW}n@hP_oDpy@y~B`j@qFpAsYdHg[dJ{X~KwXdNwRlLgTpO{LnKeT~QmPbSwI`LsNnRaUt\\iY~c@oYpe@}Tl`@g\\ti@}_@jo@wdBptCoc@du@ee@tv@{c@js@g^fj@sV~YyUvXWZaY|YgWrUgNrKwQrMySdNiXjO{CzA_a@bQyPlHcDjAmTpHi^nIw]dG}^fCaITsN`@_Xt@iQY_ZuBqZuE_YmGgYeIwnAkh@af@kSq\\oOuIuD{FiCywAoo@{QkIwrBs~@saAac@aPgHw[{Ncs@y[_]qO}p@i[gb@_SwnCgpAyuAwk@sr@e[amDk|A_dA_d@gw@m^mbAkc@ilCqlAskGmqCuc@ePaV{IsUaIwh@{RglAsYw}@cP_[oE_`@sEa|@yHqz@_Fg|BuGgrE{QsaAeFanC}KmgB{I}XuCcLqAuMaBqTyDkUgEm`@qIug@yMoXkHqwB_k@qpG}bBimGwaBcIoBsDcAkdGo~AotFwxAuYwIaZaKuY_LoYoLmYeNeYyNmXeP{XiQ}W}Q_X_S{]wXsPyO_WkUuVqVsZe\\oUmXmUsYwTiZ}_AapAaIoKwkA{|A}b@em@yj@uu@eg@up@oM_QuKqMe^sc@{e@{h@sRkSsZoXeXgVqMyJw_@gX{b@kZwf@eYk}Em|B{pFijC}iFefCg]yPmYgOsc@}Vw[}Ra_@cVyu@ah@cOeKuvAq`AohFeqDwJ}GcrConByhBcjAceBegAmIoFegB_iAid@oYsdGyxDsbGayD{qBwoAqh@e]ie@}]sb@i_@cd@ob@}fBkoBmkB_rB_U{Uw`AkbAo[q\\u[wZm\\sYe]wWo]qUe^}Sa_@wQc_@sOk_@_Ng`@sKg`@oIm`@uGw`@aEq`@qC_a@GcB?uQBia@h@y`@hBqbApLg`@|Hc`@zJw]pL_AZsd@xQad@pSqgDx}Ak_Bfu@}h@|Vs^hPod@`Rmd@jOcNpDebA|Rc`@zEq`@pCg`@tAe`@Fi`@u@aa@aCk`@}De`@gGu_@uHu_@sKa_@eM}^iOg^cQs]mS__@yUez@}l@}U{OkfAkv@}N{Jcs@yf@iIaGyn@md@}dBulA}M}JkuAkaAasAe~@uRcNa|@so@ol@}a@oQkL_WyQasByyAkd@a_@ajA_hAsNiP{CkDgsAadBi^sg@gWc^gQuVst@ydAcW_^mn@c|@mGyIm`AqsAg\\ee@_}@yoAg`@ij@iQuV_uAinBc\\}c@wn@yz@eKyM_a@yb@eQ_P{YkUaZaSo\\wQ{ZoMuXmJgVqGgMmCuKkBgIsAcIcAq|AkNaxBoQwq@wF{fC{Ss_AyH}e@aFkSyCw[{Ge\\_KiRkHsJ_EeQoIqPcJqWsPaTcPyW{UuUyUgXo[yTeZ{@sA_Ty\\eJiP}JqR_IaPwR_`@oN_Z_aAsoBgb@m{@}iAe_CoVcg@e\\ml@uVo_@y_@ye@eHoHoXmYwa@_]gd@qYsd@qUun@_Ts^wHs]wEoZkCeVs@gS]ss@QywBk@cNIcd@OsLEk{GyBivGwByi@QarA_@sk@OySMwvAi@}HAeqAa@e^Kyb@FkTl@iVzAmQtBeQ`C}RbEuStFoJtCiPrFkStI{PhIaRvKu[xSoOpLwP|NyOhOyOzPgWf[en@xy@gt@fbAyfDhsE{f@~p@y^bd@}`@tb@qa@z_@y}@|q@sNbJ}TjMaS`Kw}Ahs@qz@b_@am@xWwa@vQ{_@rPia@pQ{g@dUgf@jU}c@`Wqc@lZkn@xg@y@t@gRtQaa@~b@s_@`e@{}AvrBqPjTgVj[u_B~tBe|AtpBw`@~g@mwA|jBuwArjBmMtOqb@df@wc@pd@gk@pg@wj@lc@_r@pd@s~@~g@mqAbt@}U`NoLrGmrCf}A_lAfp@mjEjaC{v@lb@kx@`b@sv@h^ebAx`@yZlKcRdGgVtHqcBvf@cQ`Fqv@tT}`@lLgS|FoA\\WFwA\\iBd@}dC`t@{U`Hc|Apc@wWjHo~@zWuSdIqsC~y@qvEfsAe~@~WkDbAcm@dO_]xGgZbFc`@jFieC`T_\\pCcX~BkBNc]rC_iBvOiy@dHs`@`DinCpUuH^mKr@ysA`K{S~AsIn@m[bCoWzB{a@pDocEjb@{ANmrBjUagBxQsg@lE_F`@a^bDo_@zDehEb^}zEz`@y|@nHkuBfQguBhQqp@zFag@`EuSlA{RnByO~Ac\\tByTxA{]tBcuAvIo@FccBlNmqEt`@wiA|J{eArLgaCjd@sFdAkrGnnAqfGbkAwmB|^abDvh@gFz@yM~AwpBjYmx@jLiEn@cnAjQ}oCn`@oy@bH{g@v@oTuA_UyAqd@mIsr@wSqg@sUi`Ca{AszCwmBib@o[u`@k]qVgWaG_HuRaUqLiQ{F{IwJkO_PeY_Rg`@iIuRwIaSaHeRcIuT{Ki]wHyUoIqY_Nkc@qHmTEMkYw_Aub@awAqIaYsG_TiG_Tyn@qsBoDkLsp@eyBam@woB}Msb@eJoWyTwj@qKaUcTua@_Q{XsRyY_Xm]kVgXgWcVwOoN}XgRiX{PeZkO_XyK}|Aaj@}LkEqTwHip@iUmN_FeYwKaS_HcA[{`Aw]mEsAsT}HcVyJq\\}Oi[_QuXsRgQoN_YyVsU{VqAuAwWy[kV}]yTs_@uO{YiHoOwLgX_JwTwMu_@mOef@gMie@_Iq]mHy^uKil@se@}yCsTquAoMox@ge@kuCgEsW{w@ubFuwBy|Maj@kiDy_@y`CiUgwAer@ehEwFe]wR_gAq]c|A{Pou@u[mgAk]wcA_iA}pCgz@__BuKeRigAk`Bgr@k|@cNeOkU{Vei@eg@}l@ef@k{@yl@quA{u@omAwp@scDsfBuX_OeeG}bDss@o_@}OoIieBo~@icB}}@iuEqeCi]kQ_`B}y@gc@aUg}@yd@yNwHel@sZ}e@{VutEo_CwtEq_C_eAqi@qwEwbC{LkGiHuDmk@mZq}E_hC}JeEggAed@_gAe[{v@yMoo@gIy^cCuSmAyEQeZeAmQo@}b@}AoNe@gEOeSo@gcBeGgx@sBuv@oBscAmGew@}H}e@iIwOsDkVmGqS{F{GuBy\\eLie@oRsTcKeTcLmNaHw_Bu|@{VmNmd@}Ved@uWqhAuq@ex@me@mh@wYeEiCuDuBuyBqmAkFuCcaCgrAuI}EkQyJai@aZ{ViNysAet@mg@qVyg@eUwJgE[Mex@a\\ePyFge@uOwe@gOimAw[_b@oJ??y_@{HgAUkbAqPugAwNoiAoJgj@}CgvAeEg}As@m~Aa@i`E_AuHE_lAQw`Cw@{IAs_Cs@gMEixAOqREac@KgfAYsa@IuGAaPEiyA[ilA[{ICsi@Omn@ScBAohDy@}F?gt@Okn@Ogr@[mg@GopDaAcoGaBiCAkACw}ASeVqA_PHyj@VsxBmAuhBcA{SKaZYwz@sDiz@cGiUaBi|@kO{Cg@iv@cM{fAgY{z@}XuNoF__Am]mAe@ko@i]_y@kc@qFwC{m@aa@_FcDiV}O}y@gp@aaAoy@_cAg{@qa@k]qw@up@gKeJmIqHofDaqCuiBa|AugCexBwqFivEqD_DmpFsrEkaCiqB{`@u\\gGsFkOgNsu@eo@ws@mm@ue@ca@cVmSkEqDgJ{HqoB}aB}fBezAqkBc_Ba^oZirDy}CggAc~@ghEynDmEuDaZsV_vF_xEaP_Nq~@yt@kTsNarAg|@k\\mTcg@qZsbBmcAouAmz@u]}Scn@i_@yoEinCuNgJig@oZ}u@ef@kpD_xB_c@oWuGeEwuEkpCenBcmAaa@cW{wBkqAcdBycAezAo_Agy@}m@qZgUmGwEcr@yo@a\\wZqn@_q@knAswA}hEkxFiqAsdBy|AosBkLcOy`@yh@urAkfBwLsOsXq^eCcD}aAkqAia@ih@}PqTyoAo~A_m@ao@yeBccBgfCybCw|AozAg}EmxE_UmTeAeAiPmP}NuNimAamAkr@_s@{p@wn@aSiScB{AcJkI}rE_qE}NoN}GuGwhBqhBeaCy~B}vAmuAoZkZyyBgwBy}Ac}Ag^{^sOiOyoAqnA}M}Mqy@gy@ioDqmDwIoI}ViVse@qh@mi@_n@}^{c@oO}Rwn@ez@ij@ww@_IwLa^ui@gl@iaAs_@cn@cc@qx@g`A}mBeyAa`Dau@w|A}nAonCo{AwdDyTwe@igAk_CqwBgvEcf@}dAkg@}fAqfBowDg`CkeF_{@yjB}CyGw_BglDsbAgwBoR_a@wMsXy\\io@gs@ikAeq@{`A_aAmqA{B{CwlBcjCaJgL}v@_iAq_@um@cEuHatBkvDyvA{eCwaAqhBe@}@_yBe~D_GgKqj@saAyl@ycAcTa]eH_Lsk@az@sZea@iIiKeKeN_OyRaaAcqAofAkvA_cA}qAkb@cj@caDchEwW{\\_jBk`CqgBaaCmlB{aCqjAimAij@ii@kK_KsN}Lqq@al@oXeVokCk|BgsFsyEmHoGmpDs}Cad@s`@mcCiwB}`CqrB{f@}b@imAoeA{LyKaGgFwUoSgrAeiAaLqJeYoVycC}uBgNiM}JeJsb@__@iM{Kgg@ec@wTsRihA}|@kiAyx@m`@kV{_CeyAw~BexAsUyN{lFucDs~AgaAwQcL_u@oe@aJuFkf@sYuRuL}OmJuh@w[a~@ae@acAa`@q{@qViRuDiZ_GqYwEsYkDum@uHom@cGgjBqScZiDo@IoeAuL}\\eEcv@aHkEa@uzGgu@cuAoP{WwCsDYer@gFwiAs@gx@~Aqs@pE{VxCm\\|Dob@rHcdAdUgdBt_@oOpDeVlFmhAnVuaBx^c]`I}cAdU_}Ax]umCfk@sk@tNo\\jIgfBp`@i[`HygAfV__@|HwKlCg_B|]cwBbe@or@pOyAZ{Bf@cVlFmzC|p@{KdCaDr@w`@bIy`@nGyM`BqQxBuJlAun@tDes@bBwq@k@gGEij@}ByAMC?oa@oDwEs@cdAcOye@uK_w@iUyHyCgs@qXyi@{ViR{IeQsIsUqKcz@{a@}XiNwwAsq@{LoFaJgEy}BmgAwb@oSiwAer@wE}B{vAar@udDi~AqiGkxCgaAae@wKkFoB_A}\\gPgGwCqpCwrAqv@u_@ad@qTa|@oa@kmBc_A}PkIkEwBeVoLasAao@mRaJqXqM}{@ya@sY}NkMuG{E_Ca{@_`@e~Ci{AyVyL_SeKuvAwp@ewAsq@kDaBe~@ic@gj@yWm~Eu_Ckx@_`@ekEwtB{FsCcU}KgFcCoZ{NgfEuqBoKgFofByz@{{CqxA{dA}f@ouAcg@e_Beb@}EeAys@sOyy@gLcTeCur@oGut@oEmVc@yR[oOUe^Qa]Xm_@^{ZnAyWtAw`@tBotAhNqgAnMukElj@uFr@m`BlSeeBnTqfAxPsx@rPc_AtVo|@rXi_At_@iBr@qRvIcx@da@_v@hc@m}AzcAeb@tX{QbM}zBt{Akv@lh@qjA`w@qZrSub@rY_dAjr@e}@dl@w]pSo^jQe@TePfIqY~La_@~M_UbHeS|F{p@vOmbA~Qsa@lHmh@fJauDno@wt@hMsqDfn@gMbC_uAfVycAfQiEt@gdE`t@{nBx\\{nBhZuv@nIo^dDibB|Kqw@jCo|A~BgaEzCsuAbAelBrAshDvCoSRy^xBqoAxHoiBfWm_@hJw~Aj`@}`@rKuwCzw@mhDb~@_iBtf@eBd@gRnFgeDf}@qjBvg@g}Avb@{mBjg@{k@~OcVtGqGfBslDh_AogAzYc\\~Gcf@~Juu@jKgqAzIgv@@sd@wA{Jq@sy@{Foi@yHqj@uHoQmD{j@{Kw_AsQyOwCotFidA_yFofAei@{Hu`@gFk^iDqi@cDm_@iAk_@Qya@t@_\\hAa\\lBaXjC}BTu^fFsZhF}e@dKs_@pJw[hJkgBzl@imGzuBgk@lRu`EztAwXjJo|DrqAqe@xOaUvFkq@xPak@vJcf@|Fos@rFq`@xA{b@XmZEao@sBgi@yDiVcCaf@eHkd@}Iab@aKwHiBu[wI_HuBafAc\\gXmIa`DqaAccAc[{o@eSoj@iQyTaHeEuA}{A_e@aW_IiiGqmBMEu~GovBoiBsj@g]eK}aCkv@ieDadAslAc_@yNoEwfAq\\e\\_K}V{HgP_F_hAo]}]sKgEqAeT_HgdAgZm\\iJc_@oKsbAqXia@{Ka\\sIgvCct@oQoEkWeFyjAiU{rAwWyhE}p@yTkDyuEcf@{k@eGytDc`@a^{D}sOwfBkcBoRq~BuUeQiBayc@i_FaPyAooNe~Ai[aEaKcA{OaBqvKsjAsjB_SiN{A}cBuRsXkCeiB}Ri}BeYytGwq@_iBkSei@wFk^yDuWqCyqCaZggAqLsBUkUiC{a@sEuj@mGsyBiVe`@iE_I}@{UyCil@iGkh@qFuyCi\\weC_Yqq@qJyhA_RkjBs`@qcAeXgcAkZgq@uUcq@uVkq@}X}p@_Zq}@mc@iTeLqg@_Xs{B{rAi~AecAs}AwfAklAoz@oVqQcxA_fAcQyKiu@gi@eGiE}NsKkO}Kgm@cc@qVmQafJkxGykAqy@{gAqz@mdAceAo_AilAgo@w~@gj@aaAu`AglBu{@orBcsAi|CsTqh@yrJyzTcJ_Ry_CipFqx@w}Ag~@y{AuiBcxB}jAueAid@k]yd@g\\wzBknAob@uT{|Ayv@qJoFiSyJwIyEk`Aqh@ggAgw@wjAu~@ksAogAmS{Oa]sWeeCanBexEswDggDuhCmV}Ti]k\\{`@sb@a`@ge@y\\wc@m[ee@q\\kh@o\\uk@sq@grAwuCczFcSq`@kyCo_G_MiV{Su_@aTy^gVs`@mUy\\od@mn@mQsToReUic@yd@{x@gz@g`Ba`BwRiSm_AeaA_MkLu[m[cEcEoS}Rsf@wf@iM}LgQcQ_JoJm{@c{@}{@}{@glBilBmKmKqrFwrFwd@md@ke@ub@cHaHeImG{RuOcMiJaZsT}\\mTc^kS}LoGaj@gYir@k^qCwAuo@y\\uRgKsUyMwV}LmTyK_l@}Ygt@e_@mWoNiXwMop@}\\am@k[}f@qWqH{D}g@}Wkq@u\\c{@eh@cNeJeJoG{YiSoZ_VeLqJuJwIsj@{g@c}@u~@m]ea@q\\oc@y\\yc@i[yd@iWo`@oWsb@aWwc@iRw]{OoZsOy[_[eq@s[ev@g]m|@gXav@yv@y_CkC}Huk@cfBmvAsoEggFmyO{Nua@gLq[kJsWy[u`Aoe@ewA}|@{nCeX{x@uHeU{DmL{ZabAAI{K{]iBkGo^_nAm\\}nAwFcTgMef@cVcaAyC}LeGkVsJ}a@w_@ebBe\\kzAig@_{BoFyUqJob@eQau@{Qss@cKg_@_Qsl@mQuk@yQak@{Rcj@yn@s_Bcq@q{A_xAkjCk|AezBgrAy{AeoAcmAomFcnEwaAyv@gP}MkbBktA}gBuyAeUiRqp@ij@kc@m^uN{K}XiU{fAw|@_sAcjAscAez@ugFugEukAeaAqlAkaAad@u_@mz@yr@ic@ua@oYyZyZ_]uYq^ci@mt@e[me@oPyXuVec@ePm[_Xih@mN_[a_@o{@gVcn@ydIowSupC_cHqXcp@mVgi@_^ss@a[sj@c_@}m@c]qg@e[ob@w[w`@{^_b@_`@{`@em@}i@}r@{i@}YoSwZaRqz@ad@__@gPwZwLi~Agh@ynAu`@ehAe^i{Bgs@gSoGugCez@ulAkc@s{CmlAyg@gVihEasAe[{JkeC}x@aIiCmfFm~Ak`Csq@_cCyv@inEevAokAqa@a`@iQgVsMkOiIe[wQqKqHi[sTs[iW{ZuWcy@_w@wt@cy@wk@yw@u\\{g@u_@on@e]_n@a\\kp@_KiTuIuRyS{f@aJiUyGwQoQif@qImVks@wrB_hCejHku@awB}fCcjH{Yw|@ac@c{AyM}h@kRa{@oTcgAmb@}bCiTcqAwGi`@oGm^y`@o_CyaA}~Fqs@}gEop@}wD_m@w`D{SafAwq@}yCkZcoAu_@s{Ain@agCu~@orDy]wuAi_@qzAu~@esDeq@alCeqAciFwLgf@ad@icBmb@}wAme@mwAc{@mzBij@sqAks@gzAkR{]iPcZme@sx@mVeb@q}@}zAegAojBy`@ur@ioAiuBa`Ai~Ak[sh@qY_i@gkAmoBa_BglCqb@gt@soAkqBmmAqkBiaA_sA_o@mw@ct@a|@kaB{pBejBwyBe}@}eAun@_w@_fAwuAox@{qAa~@whB}s@{eBe[y|@w_Ae{CkCuIqJk[kn@spBcMub@}Jc]eHuUmg@a_ByhCwmIihAypDcg@kaBoG}SoDgLyu@}dCw_@ceAo_@g}@sWwi@qVgd@kVqb@_We^oWo]_Xq\\ysCa{Cq]aa@{Vw[y\\oh@iPaZeRe_@eTod@_MyZ}Pud@wJsZyK{]wJs_@gH{YsNaw@uHch@y_@qqCkKst@uJim@qNqw@}UeeAqFoQgFgPoKi\\qPoc@k\\yu@gPk[uOsWyNaUaOoScOeSoP{Qq[a\\k\\}YwS_Sg]iYuoAegAo[wXiJyIwb@uc@iXu]oV}\\}S_^cVei@}j@wtAq|CgiJk`Bu|E{FcR}s@quBaZqu@ec@}_Aci@keAwc@ss@ih@oy@co@uz@mk@{n@g@i@ct@gu@yuAwfAugDatBkeD}fBy`D{gBq~@gh@kt@ab@{_DueBo_@gTuo@q_@ifBybAccBsdAm`BmjAc}@ys@{MoKqc@c_@_g@ib@qjB}eBwoAynAepAytAepAqzA_xAikBoeAyzA_lA_jB}tCirEmxAg{BsxB}gDyNcUsdAicBij@{_Aoc@e|@aNoZ}GyNmGmMuj@_tAyIaSao@{~AuUwl@ux@woBoaBi`E{k@mnAerBooDw_DcfFgyEorHi_Da`FmyAgjCub@{z@gw@oiBg`@udAcz@miC{y@}jCokBmdGy|CckJ_yB_xGqn@ceByWkp@oVuj@{Xwj@id@i|@oIwMgJcOc~Ac`CecDk|DiiB}zB{`@}e@krGs{H_g@}l@yiBkyBa{EkuFqfAunAktA}_B}jB{zBatD{nEut@u}@__DgwD{eAspAknBc`Ccc@{h@ogA_sAef@kk@{PuSq[a`@eP_R}Wo\\cUcYgDeEeMiOo`AiiA{b@og@kyAcmBiw@sqAkYai@aWeg@mQw`@aDeHqY_r@e[iy@kU}r@qS}p@_[wkAgOso@gM{k@}TslA}TwuA{dB{iL}n@okEio@kmEqfAenH}mA{mIsj@mwDek@kyD{PudAu^siBaYkjAyBcJoTkx@ok@ahB{]m}@of@yjA{R}a@at@oqA{Yie@st@}eAuuAomByNaSgLkPibJceMiS_YyWeb@oH{MiKeR}w@}~AwQka@if@ynA}e@qwAaTku@qZqiAuBiJCKmKce@eO}t@qFiWuGi^aK{l@wT_|A_w@usFiEu[mc@weDuB_Pm@oE{QymA{Naz@cJie@cGa[_Qax@qZ_lA}[wgA{`@ajAg[kz@eLuWoImRu`@u|@un@_jAsp@{fA}r@i_A{v@i}@maAigAiPwQ}dAqjA}iA{oAo{AaaB_jEc|E_hAqkAm]_`@aj@cm@_fDwrDoYq]qY_\\ynAarAkrA_yAijBisBqgEyxEqTcVo`BogBagAelAiIyIcI}Ick@yn@ma@mc@mg@of@ga@{]cLsI{ViRsc@gZgd@qWef@qWgc@qQoc@qO_f@yOcg@_M_i@yJgf@yG_g@iFqg@sBmi@sByg@Pie@~@iOt@yS`B}Nn@mThCcQ`BaTtDwl@nKaTtE__@nK_NxEiZfK_SvHyWfLw\\nOa|CzwAmShKqO~HkcCxnAc{DlkBieC~mAwXbOc_@jPyjAhg@sv@hYuy@xSmf@xJmnA|LolAjDesAqBia@oC}|@sKovE}dAeyAe]_`@_Jy_@_Joq@cQex@{QkXsG_q@gPkl@sNeu@eQudAmVy_@cJuu@oQkoEyeAk{HeiB{b@aKeg@eNqHiB_OoDaNuDaOgFqJ_EkKcFgKmGeIiFeJuHcLmKkI_JeKuLyG_JwJaOsIoOyIyPmHmPeJsUeIaV_HwWwGaYiFoXmEiXgFw]kMo~@id@oaDeVmhBcLkw@{Es\\kpAu~IaDkVcTk`B}t@}iFgrBywN}wF_aa@a]mdCwP}mAiYwtBoZwxBeRouAuAyKyFcg@oFgg@mBiTuEum@gFa~@oC}u@uBaeAw@eoAXebBdAceEh@{kFfAonDKsnBXwpC`Cg|HXs~Dh@uzBd@ovAFg\\^ikB??Pol@b@mo@VoTz@k]vBsm@vDmw@pCad@nCe\\rIkz@rIkl@|Wa}AhUwjA~i@gyCb\\weBjTwjAzb@u|B~ByL~_@ktBbRucAzNyiAtFko@rF_~@rC__Az@}j@DwfAq@ad@wAg`@gEav@cEqe@g@wFqIou@uGqd@qD{Sy@}EsNmq@_R}u@kf@{lBwCcNmHg]kK}r@_Iik@gGcp@cGm~@yByu@{Aco@Tir@`BgaAxHeeDtG{oEzBafCpCanDd@i^~Eo~D|JebKvEqbAvDiv@pD}g@h@wHdEme@fPexApEye@lB_]fAk]^o]Io]o@m]yAe]aCy\\gDi\\mEu[eFmYgGuXgHwWeIuVaJsUoI_RuJwQqIeN_JiMmHcJwJoKoIaIqO}LmUgOkQiKyr@w`@iT_MeZ{PcuAmw@_vBylAcxAqx@q`A{h@mpDmsBsUmOk[qQwkBceAuQ{K_Q}LuQ_NwOcOuPuPyn@sp@g]m^yiAonA{T{UkaD_hDwrAywAmYqZa~BwdCov@iy@sW{YuNiRmOmTaNmTaMoTyMcWwLqVsKoWoKqXeLm\\}IaYwIkZuHwZ}Hw]iHa^}Hoa@oNus@iU}lAyMur@qHi`@_p@ygDke@mgCec@{}BuE_Vg{@}nEsOqy@_jAecGw[o{AyRms@g]ucAwYys@q\\aq@o[{h@y]}f@c\\y`@o\\s\\yn@{h@}y@}f@_e@mSuj@{Ow_@eJ_f@mG}j@{Bc_FpDanBP}eBtCwbBbAiyKvGk^_Bk`@qGc[oJa\\wKea@iV_IkF_SoPoYeXiZi^eTk]}fAewBax@s|Ae[mj@gXa_@_N{ReMuMwLeLsFuD{J{Hc]iV}UyIaScHmPmFmj@qKq\\aEiW}AqyG~Guc@r@mwBhAsRJuPQgUa@wMy@wM}@gGg@a\\yEkNkDoL{DoFsB_b@wPoU{Kan@c]wk@{[ef@qX}tCi_Bm\\iT{d@}VuCcBoVmQ{PoOsOkPeOiQePiTmNeTsNiVwLsVmLeXkMkZcJuW{G_UyGaV{GyYoGiZ{Fm[cIse@}rBm|MsPohAg}@ccGeFc]aKsm@eHu^oHq]cHyY{H{ZyHkZmIgXcK{ZyJyYkL_\\mMk[mLuWkMeWcN}UwH{MuEgImAwBaOsW{PeU{NmSuPmTuT_X{TgXkp@wt@kbAqkA}rAm}AkOaQ}rAm}AkmDidEijCw}C}Wo[eCwCe]y`@iQgQqLiLyLkJoOgJiQyJsQgJ_SeI}RsGiT{DgRkDkOeBcLc@iOa@oQKkLTqPl@uh@fHoZ`EiN|AoGt@g@Dw]tEmOrBaGr@}PtBo]~G}^hF_C\\m}@vL_`Evi@yTvCw\\fEuGxAeKpCoVbMwOxLaKfJsJdLwN|R}Qr[oIbS{LvU{G|M{G|LmMrScNfQcPtOeHnFgHxEkIlE}GpCcLzD{MvCeMxA}Kl@qIEyMu@wd@_G}u@eMaeA_Pkt@gLe^mFg[iF}Ci@wHoAyZ{Ea[kGkSiFyPuHcXeOmQwMwM}L}IiJyLwNgG{H}FwHus@uaAmW{]}Xu_@yWq^oWe^kZ{a@oWe^sZcb@kVy\\wg@ur@_VyZgJiMwbBu|BmrCiyD}sCg{DmsCizDg~B{_DypBwnCyP}U_bDwlEkuBytCsm@az@a{CkdEkUg[}gDutEk`@yi@ioA_dBut@meA_Yw]a|AqtBmO}SkfAsyAmf@wp@qz@yhAwf@op@kgEsaFchGsiHe|@adAso@uw@{l@qv@kfEy{FaKqMk{Bc}CscAovA{CkEi}@_mAcF}Gm|AauBcdAsvAygAc{AgYi`@{MuQkIcPct@sdAs|A}|Bka@uk@iX{^yNuSiHuKuDuGuEmJyCuGoBsFkC{HqBqHkBqIyAeIyAuJkAmI}@yJ_AkLi@mLg@_NKkC[cJm@c`@YgQ_Amp@s@qVaA{UsB_`@iB}OcCeQqDmQ_EePmCeJmDuJqGmNoLiN_GqFeGqCsDsA_Hs@iE@qEZ}Ex@iEpAaEfAmD|@mFdAaEZaEAwC?iD_@eF{AqG}BgFoCcs@w~@uFeG{IyIyJwIcJwG}F{CsGgCuF}AuGwA}Fo@eJgA{VIqVq@gOkAiPkCuJgCiLiF}PiJouBmoAku@cb@yHoEqs@wa@iL{EmNmFwQgDoRcDsd@oHc_@aEyi@yCwg@j@}NjB_XhFwUnIsVtOsLtK{NzPkXdc@mMrQwLvNgFhFoJdHwPZoVlIwPtFaMjDmL~Fk@P{C`A]iNiAqc@g@iRkAuP}E{Y_Byr@WiKGwCGaCUmIO}IG{BeAee@_A}`@_A{a@mDo{Ag@gQWaJEwA\\}JkBks@G}BgAg[MuFOgGM}FGmCmGylCm@{^QoHGmCQ{GgA_[OiHEeBwC_nAi@yZuAet@SkRCeCKqKdAkJlBcIZyAfAaFlEgS`AmElLuh@r@_DlA}FpMym@RcAhAcFjAuFViA|TmdAfGcYlBiJf@gCjDwOvG}ZhDyO|GaZ|@}DlDuOlDgORoAV{ApBeIzBmKjCcMd@uBfAcFlDiPfDmOl@oCpAkGhLoi@lFyVtHk^z@cEnG}YdA{E^cBdEiRdBkIx@{DnDoPjGuXdCwKbH}[vCmNfGgXrIo`@nB}I`AkEnD}OzIq`@`Job@bAsEf@wBbAsEhA{EfA_Fd@wB`B_ItN{q@fAiFrIw`@hCoLlAyFx@cG`AcHlBsQpBuTbAsMrDce@jBeSxAwOlBwNxB{MrAkHpCqN`@uBp@{CvBeGBCz@}@fAmA~@o@lAc@bCM|BL`CnCxBpBhC|AhCh@rB@lBMtAS~Bo@lBaAvBiBlBqBdB_C|AkCjAqCnA_EfAyEj@mDZiDRcFFuE?aFIgGYiEi@}FqAiI{AqG}A_Fs@oAsAmBcBiBaCuBwDcHw@yAqAaDeByFCGa@oAa@mBg@sCUwCcKeqDMuFUqIOcGg@kQK_EoDasAcDmoAQsHC_BI{BSkIg@kRaBko@CiASoHGwBGiCEcBEyAKoDCiAS}Ga@iOmG_}BeAg_@{Aoj@IeCGeCEyAOkFGoBI_CAaAm@_TQgGYaMwC{`AG{BOcFSmHSwFOqDAeABgc@yLm_EaCaYQiGwH}jCkEq~AkCcaAoBgp@a@oNG_CIcDCqD@eF^aF|@yEdAcFbD{L`CeDrB_EbBwEpAkF\\{B^}Bh@eGRwGAyG[kI[_CQwAeAaGq@oC{@gC_A_CeAuBkAmBqAcBuAwAyAkAcGsNwCeIsAaFsAuHIy@UoCuIcfDcIq}CwGcfCgAeb@gA{a@EoAqN}oF_GwyBsHauCIuCiAub@e@uSGgCGqBAa@UaKSmII_CCwAwCagA_Bul@yP}tGIgDIyCCu@EsBbCs@XI|AkAbAsAXa@|@_BbAmC~@eEpByH`BqDx@_BhAwAfAs@fAa@hBUhBA~GR~h@zD`GNHcF@iC@oEGeCYsJyAgi@o@oUq@mMgBmQk@eFu@{GW}BWyBiCuTSkBOmA}@kI{Fkg@_AiIKaAGa@gAqJo@oJEmAA]s@mWWqJqBwr@MwEIkCqBmz@AUEqBGyBO}EC{@gCqaAKcDOuFCu@_@mMWiJE_BsDirAeAg_@uA}f@IaEEaBMiFSoJEmBO}HmCusACw@IoEWiJCu@m@_TcCw{@CeAu@{X~NoAl\\_DvHs@~CYvHq@hSiBvSiBpu@{Gdw@cHgD{tAcEcdBxu@{HbZwBVCjMgAZfNpAvk@XdKbCffALfHNbIFpCb@`Rb@fPdB`l@r@nJ~@fGpAjFpAlFx@xFPtB|CfINvGFlCzAbn@h@xTXfLLvF@FD`CBfATbJXnLF~BLbFx@p\\|B|`A\\tNHtCFfCTzJVvJDnBfB`w@x@~\\x@|\\Z`Nl@nXRfJF`CVlJ^hNHtCZnLNvFRpH`Ar`@PrHhCjiAj@vTFxBZxLh@~TvB|y@PrE?Dp@~MJdC`@`Ox@xZX`Mb@`Q?LC|U?nBAjBE|ACrB@|Af@dS@hAAfAIzG@tL@dEDpD~Bll@`GheBHnBFvBhEjoAfAl]DbBLfDTdHVbJ\\xKNzGj@~LZtEf@xE|@bFr@pC^hAf@zAnAdDvHpRfDpIjCnG`AlCdCvFpAxBjA`BhBtBpBbBzAdAxBjAhAl@bf@fUhFfClD`BzCtAjEx@pCv@lA`@|DhAbg@xTj@Vl@VbDrAxDjB|CzA|E`DvAv@nBv@xChA|EfBbElBxHvElHlF`CnBj@d@|H~G~GxG`KzKtC~CbErEdIhJhBxBrB~BlIpInAhAdGrF~JpFtGtERPzDdDpHjGbBvAtC`Cx@v@~E~DpCbCh@h@~@v@zBjBlTvQPR\\^rKrI`Ax@~QrOxL~JtJdIvJhIhGfFbAz@nR|Oz@r@lDvCpCxBv@r@ji@lc@nEjDhA|@tA`AvBlAxDhAv@VzC|@hA\\lF~AxC|@nNdEnA^rCz@dAZvKbDx@VdEt@bEt@fKvC~LjEbAf@|B|@tCrAlC|@lDlApC~@nEzAlA`@hA\\zGxBhFdBvQdGpo@fTjChCnClBz@V`FrAvDb@b@?~G{A`@@ho@xBd@@xAF`BbCbBZlARbBXh@JfAPxAPtBLpJ\\zB@|A?n@AZ?xJEr@AjIChAg@l@Yp@FhBH~_@~AzPr@zETji@pBd_@vAhGR~DRhBJ~@FrAPvA\\pClAfDhBPJfBjFdDvCpCdChDxC~@z@`CtBjFtEz@v@bDvCh@d@bw@~q@xS|Qz@t@`Ax@jAdApBdBbL`KdCxBxArA^XVTxAnA`@\\dYtVrH~Gl[fWzUlShAdAhE~DzEnEd@b@zEfCnFfCbEnD|DbE|BhD`DtFbC~Fr@fBdClG~C|Hf@rAfKdXhKrXdBvEfD|Ih@zAfPbd@~DxKvDpKlHlS~C~In@bBdBpEhG~OlAbD\\|@zNn_@`LrYhCfHbN~]jIhU`@fA|NlXxEdHt@hAt@hAtCnEdHjKfG`KV`@|F~IZd@vNxVt@lA|AlC|GjK`BtB|BtCx@lA~@lA|AnB`EhF`BpB|@fAb@j@hJdMf|@~nAzAxBjAdBzf@vs@rDnFBDhHjKr@fA|AdCzDjGtIvM^l@xAdCfXrd@j@~@|CpEiAtK_ArJ{@rLcBfWqCvd@gApQyC|y@M~Ft@`UlAb_@lEbaAfDh~@n@xNVhGzA~XfHvj@pCdj@rC|e@vFhx@zJfvArApZbBf`@z@x\\Lvw@X`zCOv_FGve@[`gAMrb@k@dh@SdQ{@p^]rMmAnY{Dxq@_BfSaE~e@kF`i@uGjf@aMzt@mGr\\cI~]yYbcAoC|IyVbs@oW~m@yLfWyU|`@aSj]eJ~NoSx^sItRmG|U{FfWwHp]wInc@cKpa@wEnPCHsGhR{GzPeJpPgRxXgWb]{g@bq@km@lw@y`AbzAuHzMse@|s@yn@j_AqgBdnC}a@zn@s]jj@eY|h@ud@f}@u|@bkBsi@tgAuQld@yF|RsFrSeFl[sApNcAlNq@dNc@fNm@ra@IvQ_@vRk@`TsApVsBlSkD~TkG~ZoD|L}F|P}Nf[iJhN_KbMkRdS}W~PmPtLiRxLyKrJiKfJ_IlIoNhRmApA}U`[mWdXyNhM{LlJuQtNk[hWcK~HoHd@kI|@eLvA_Iv@mHZiMf@kFv@gIpAiF|BiEvBiDzBiErDsE`IeEnHuCpF{BxF{ClJmCxJyBhKcBfKiA~Jy@rIw@vJYnKF~Mp@pPbAfKhAtHfArHhBbHhCtHpHrOhJhNrY`_@v^nf@xBxCvLlP~g@|r@nJbNpu@vfA`OjUrVd]~v@bhA`q@|_A|xAnpBlg@rq@~nCfsDf`D|jExC`Enc@tm@z_@ph@nUj[xdBp_CvJxMlcChgDlfBl`CdB~Bre@jl@j`@ld@tp@dw@zyHhbJvtAb`B|f@rn@ry@|dAnh@ts@p|@dmAvcAluAfQ|UdqAzfBp\\dg@jkAd}AnaBp{B~dDdqEdT~Y|~C|hEheAdxAbr@j|@`i@fw@n_DziEnOfTrtBpsCz{Bn|CrkCzpDhxCt`EbShXh_CfaDheB|_ChJbMl`A`rAhcCxeDdf@lp@fT|Y~MtQhp@b}@hPjS~KvLfHzH`HxF`QbNnNnI~PlIbHnD|IbDbV`G`JnBfKjBn`@`GhDr@h`@jGzpAvRp}Bt^|d@hGbN~@xJQ|Ms@|D]jFm@tE_AxGwAhDkA`E{AnIyDxKyFxF_EzHcGrOmOdMaPzQgYbJoOjWah@lIyOlKcQpNySjJwKlJwIfFcDbKqJjIoEzHiDfM_EdGwApXsEhjDme@hj@oHf}@sLr[iDja@gFhUuC~F}@bp@_IlIiAxiAyNjFq@vHg@hEYbLUnN?zZ`At_@lEhRjDnXhIfWdK`_@jStNxJ`NxJhQvQtPtPdYx\\vkDlaEpnDxgEplA|uAzNfQbHjIbb@vf@|f@fl@bbAxkAjp@vt@zTrXdUdYfUhZjOlSjMdQvKzQxNxV|OhZxOh[rLlU`Nn\\nI`VbJdXlIdXzG~TbIvXxHzYnI|[zFjZnGhZtNpz@fxAzoJpuBfkNnJpf@zFjZnGvXxJt_@nItWvJxYlJtWbL`VnIfQlIdPvKvQlLfQxJnMlK`O~OxQxKfJjLzKdTjN~OtK|YtPzf@xXti@d[xaEd~BfSzLtQnIzTnKvPvHvNnFjNlElKjDjQzCvSrDnJbAzJl@|a@|BtR?zfBmB`f@i@hd@Cz_@MfDA|v@{@`s@s@phAi@pe@Qno@HzQnA~QfBjMfCtRnF~NlEvHzCxCjAxClAxMzGxIxEdCpAdOrJpVnS|LtK`\\j_@dWz^bNnTvNrWr_CvuE`Tz[nYr]fWjVjW~SfH|Erb@~Vt[jL`c@dLr_@lF`[fAnyDgC||ByAf_BiAxkBqAjnLgItk@hCja@~Ehd@vKpe@hNbc@pSpz@vf@zp@hj@z\\z^b^nc@|Ytb@vYne@dZfo@v[nv@rZf~@xRbs@d[rzA`kAtcGlOrx@hz@rnElEtUxm@``Dvh@loCnl@b~CfNft@jUlmAlN~s@rPzz@~@~DrHd]rIv\\pIfZtNbe@xGtPdL~YfLzWbLrVlL~T`NbWbN|S`OxRtO|Sn_@lb@`eBjjBtoAzsAnYb[ppAjtAf|CrcD|TvUxiAfmA|]|^hz@h|@tShRvO~MhQ|LtqBnkAl\\vR`W`NrO~IhlDxqBxbApk@xuBhkAxcCvuAhUdNdSbNnNzKhKdJvJpJrIfJhKzLdJvLvGlJfJpNnKvQ~L~UbMpXvLtZ`IjUpGrSxGdVxHn[nGpZtFd[zFh`@|Ela@|Cr\\`Cn\\fBt\\lAj\\|@~d@n@jq@\\pcAJfbApAroBY|WiAd`AeJdlIaGzpEk@z_@kE`bEsJ~vIqFnlCoBnxARpp@bAtr@pCbp@vDbl@dEjf@vHjt@~Fv`@fKbi@xGr\\nKvc@xa@z|AxMhl@nMhq@xEpZtJnt@pG~i@pDbg@v@nNv@bXzBds@x@dy@?xy@qAra@wBxo@_@bGcDtg@gIf|@sClUsFfd@gOr`AiVvsAgJdg@aCpMsKdl@cLpn@w{Ar`Iwh@loC}`@f}BgKnw@aIlp@gH|{@}G`cA}DzeAcBhy@QvJ{@~w@?bOZxo@?NbAn{@hCp_BnDhbCx@tvBM`kIm@phCw@~zCgAtvGGxz@Y|wDc@hrBdAdeC~Bv_AhD`|@pFzy@|IxaA`Grl@pDzX|AhLlI`m@|ZtzBnmBvcNte@djDjQfpAr^jiCte@hhDhMx}@rhA~aIpdA~mHlE`[ttAtvJdfA~wHzcBhzLjQbpAfPjiAzOj|@|CrRfFfZtAhG~GzZhHbUfIxVzIpUbInQhJ~QvItNpFdIlC|DvGvI`KxLjJvJ`LrK~J~H~IjGbKjG~KxF~JhElO`FrGxB~N`EpzA|]fp@nOh`@dJllBtc@dbFblAfh@~LfQnDpLtCvUxF`aEraAntA|[z~Bfk@|NvC`K~Bdv@hQjc@bKr[pHjz@vRvjDtx@h^dGpo@nIxKvA`b@rCd^z@B?zg@lAxFLrn@y@xj@yCtdAkLlWgEfOyCbV{EvfAwZtMkEdj@iUhmAik@zX}NzdA}g@z}@{c@j[mOlFiChnC}qAh{Ce|AvQeJvDgBdCkAjwCouAhOgHfNgGhPkHrRmHnWwJfSuG|^kJlYkH`W}EfS{D~ScChNmB|WqBbm@}C~e@kAjR@|S@li@r@bg@hDzf@rE|e@jGvh@jKbd@lKtf@hPtf@bRzh@lTxc@jW|c@xVbT`OjPdL|b@z\\ta@h^p[~Yna@~b@b`@vd@bW`YbIbJjn@tq@dj@hm@fp@vs@jX|ZhUrVpHhIhsAryA`}A`dBpt@|y@z_@bb@bl@bo@xo@|r@bk@xo@pk@do@fYz\\|X~Zhu@zy@fNnNjwAp}A`g@bh@th@`l@xb@ve@hr@rt@rpE|bFpeAzjAx`C`mC`xBn_CrIvJ~i@rn@lx@rgApXnc@|Sr]|h@hbAdO|[nj@jpAz_@hdAd[~_AlZ~dAvZvkAlPnw@lRpaApNlw@vm@flErM|~@lEv[~Jvs@nj@t~DnUn}AlGva@bIjd@`Jpd@|Mtp@lPxs@bYtfAtRzp@dh@h|Adb@xfAbb@`~@|o@znAzJ~PxJ~P|R|Zxv@|iAnaIhwK`\\jd@dtApjB~r@jdArZlf@rr@fpA~Upg@rf@liAj^p`AnMt_@h\\tfAlCvI`j@vyBzc@n{BzXtfBnd@v~Cxd@p~CpnAtqIjb@ztC@D~a@rsCrCtRzj@dzDdn@hmEnvAzmJ@HxPtiAzPteAtUnkA`Oxr@pLbd@bh@pjBvMhb@bZz{@rZdx@`n@|uAbVnf@|z@j{AzXtb@t^rg@rkAxvAnjAzxAbMpO|e@lk@xJvKnSbUz_@fg@ps@b{@z`AjiA|h@zo@riBh{Bf~Er_Gt`G|iH|p@~v@lnDveEntEjjF|cCt{Cf]l_@xsG|~H`tB~cCz{D`{ElVj\\xg@|r@hn@h_A~ItOhEfHnYph@x]tt@fYdo@xf@tlAhb@~iAx{@xhCpz@hjCjDxKvtCt~I|rB`mGjz@|lCry@`gC~`@fgA~u@dhBpUhe@fRr_@zaAp`BnMdT``D|gFptExnHdoAhrBfoAbqBz{AxhCdd@zz@h`@|{@bxAlkDd~AzxDze@hlAz\\h{@pXxq@nNp[fHhOhQt]rXnh@`Vzc@~\\~k@~cApbBxNdU|wBfiD|sApvBhuCfoElkAfgBrkA|dBzqA|bBboAxyArpAnuAxpAxpAfyChqCfc@l^vMzKboAp`A|lA~z@dfBjgA~iBffApk@p[p_@`TxuErjC``FzrCrhDthBhbDznBfrApeAfpAloAr@r@l_A`kAdk@r|@fYte@~j@tfAhk@xnApmAbhDfGhR|t@~zBbi@paBp^xhA`~Bn}GtQvh@nWnm@vGpOnRn_@dWra@x`@rh@d`@xb@b_@|]laB|wAft@dn@z[vY`\\d\\tOpQtNvRdOfThNbSvNlWrPd[`\\ls@rP`d@bKn\\hFzOpEtPnV|cAnMhr@lL|s@tJ`r@p_@~pC~Mnx@pJfi@fHtZdIl[l@`CfKr\\jK`\\zPrd@xMx\\nS|c@tRj`@`QpZv\\rh@|X~^x\\z_@jsCdzCvWd\\zW`]fVz^bVfa@dVdc@jW`i@bYvp@re@toAfk@jlB~Nne@hGpStg@fbB|Mnc@jx@jjCpUtv@zpA~eEpe@l|ArTvu@jKz^hHnUlFjOj[xaAnm@tpBxHxVff@f~Atr@~rBvt@riBnz@`bBn~@x{AjeAxtAdo@zv@h_AvhAnjBb{BpcB|qBrl@ls@jp@xz@le@~n@v_@li@xhAjbBnmAbrBld@fv@paBzpCriAtkBzs@foA~bAbbBvmA|tBdPlXlMlT|HvMd_Az~Al}@dzA|Ux`@`g@h|@jPl[vhAvyBlh@~lAh}@~aC~b@nsA|a@btAfb@~_BvaBzuGjo@biCb{@riDbc@ndB|X~hA~aAf|Ddo@biCt`@b~Ad]dvAzj@hgClWzmArk@`|Clq@j_E~r@vcEzw@rxEhn@hrDtEjY~[`lBbb@bcCtYbwAtJpc@tJr_@h[lmAfMh`@nG|RRl@f[t~@py@r~Bz{@ldCzDbL~IbW|h@~{AjaAnoCbd@hqA`W~r@~aAlsCpJtXnLh[~Zhx@~HtQbP``@jF|Ld]|o@~\\`o@t_@zm@b]bh@tm@ty@lYx\\bYd[zYdZ~[bZh]`[b`@|Yhg@n]~W~O|eAxh@xlA|c@`qEbvAl_G`mBzBt@jgFr~AhuCh|@`|El~AlsG~cCzfCry@jVvHptGbsB|aBlk@dw@~Zbx@vb@rZjQp[`Utp@xg@zl@ri@h_@b`@dOrP|MrOzYn^f^vf@b_@`j@v\\|i@zZzj@|\\hq@hW|j@~Vdn@hpC|dHhfIjwS|R`g@fa@z`AjPd^xVzf@zPd\\xWje@pPhX|Y`d@lj@xu@`Yz]~Z|\\f^n_@`_@f]nz@fs@be@d`@hkAlaAvmAbcA|}ClhC~dAp{@|cAjz@zuAtjAtsBtdBbGvExj@bd@pXbUzOdM`T~PrmAhcAppBhcBnPlMh`Anv@h|Ep~D~SdQbmAnjAno@dt@n`@ze@lf@vo@pd@~q@pu@joAfs@zrAzFlMlV|i@fOv\\hP|a@d]v{@hRvi@|Rpm@tPth@~Mvh@jMxf@bQto@zPvr@pLbg@nm@bnCj\\dzArX~lAzHx]dEpQdD`OhDnOzC|LvYzhAhJx]t`AfkDvl@xnBzj@|dBv}@xnCdq@~tB~Xn}@~HdWdQdm@fwBptGjjB~vF|`@|hAb^xdAz[v_Ajk@|dBjC|Hpu@r}BfZ`z@xZ`x@fj@vpArNrZxOp\\`Q|[nRf^~Rz]jNnV`d@rr@pZlc@zYba@x^`e@``@pc@|\\`_@jVzVbn@|j@~]xZvInGbWrQ`DrCll@xa@pb@rWfVjMhn@b_@fx@f`@~yAzu@|wApt@tx@fb@~y@pb@lZnOxSjLhp@x]~Az@~jAbl@nv@ha@j\\|Rp\\`Tt^tWnb@t\\vi@zf@rVfVpOdO`sFpsF|N|N`j@|i@bcA~bA`}@h}@teAfeApPbQ|KzKxe@zg@hSdSh]d]jIlH~~@h_A|NzNvbB`bBhq@rq@pp@rr@di@|n@zf@lq@vh@ly@lRv[jQ`\\lR~_@nJbRzkClhF~`@pw@pjCbgFtp@rpAl`@`q@tWna@`^dh@h]pd@x\\fa@|OzQtRvRnv@vs@t{@ts@bjBrxA~vEjsDleClnB|SxPvPlNtaBnqA`dAnw@pkA`{@t`Azi@|FdDjVdMvJbF`eBt{@`~@|d@ptAdw@dg@x]fc@v[be@nb@hc@zb@pXfZv]ta@zm@nz@|c@jp@zc@~w@tJ`Qfb@|z@~jClcGbrJnuTtSnf@zxAzdDpx@|kBl}@vjBho@pgAno@n_Ap|@tfAviArjAty@~p@pxAnfA~_FdnDx}C|zBxaAbs@xp@jg@nv@~i@`LnHf|@po@xW~QjpAd}@|KxH~mAxz@v}AbdAz^hTj|An}@~g@xXvS~KrMpGvn@vZrq@pZfr@~Xpp@lVzp@dUfcA|ZfdAjXzjBt`@`iAjQdr@bJ~eCdXbyCr\\~hBrRtSxBz_CrWfR`Dry@bIju@dIp_A`KdUdCr{BrVbWvC`pBxTfbAlLfxDnc@t{AtOdo@vHlzAjO|MrAbc@xE|oAjN|jRntBzOhBrHj@j[`DhoNx}AdPjB|qRnuBhiPnhBdQjB|zBbWpyRxuBd^~DrsDtc@zcBnSb}Cn[xTnCneCn]j}B~`@rWhFvbBt]jxBdh@zp@xPv}@nU~aAtXr|@jWr_Bre@bZlJvMjE`}@~WpKhDdUpHbM|D~{A`e@hPbF~jBjk@`fCvw@nGrBx|Bfp@v\\|KdfBvi@||G`vBbAZdjGfnBxV|Hx{A~d@xf@tPfIbCltAla@|HbChPbFtWdI|tAzb@bJrClyA`d@rcAf[lJtCl\\nJtWlGpRpEfd@lI`p@lJ~LdAvi@|Dh^tAlPP|YZfc@e@da@{A|s@gFve@qG|k@sJtq@aQzTyFrbF_bBnYwJx`EstAlk@qRrmGavB`gBwl@f[wIt_@aKpe@{JfZiFx^iFj[qC`\\mB|[qAha@c@|^Rh_@x@fi@hDp]bD`a@|E~h@jIjo@vLz}Chl@ri@bKtwAfX|S~D`gCve@dJdBddAvQp~@hQjj@dJfl@rHxw@lGh]rBza@[nc@Nrg@yCzl@gEfu@kKdg@sKf\\gHthAkYtsDobArnAc]`o@aPdpBii@r_@eKvg@eNpoAa]r{C_z@bRaFd{Bun@bHkB|kCqr@xcEagA`tAe[v`@eJ|hBwY`nBkLpSUjkDuDfiBsAxtAeAfnAaA~rB_Bn|A_Cf{@sCd}@yDv`@sEp^{Dz}@wJdkBiYdhBe[|AYrdEus@zlA}S`sAgUfMkCpqDin@zs@aMxuDwo@di@uJv`@iHzcA_Rza@mJxNeDnf@eO|\\gMv[sMnRwIp@YfYoOhc@_WzbCk_BlYkSdPiK`QqLpaA{p@h|@ml@pQyLhlBupAjQwLfbCm~A|s@_c@tw@_`@zQ_JrbA}`@b}@mYf_AyVnv@wOfFeAn`AsNrfEii@vEm@jkEwi@~bAuM|JsAzmAuKzb@yB~o@qDr^e@tSOlC@jd@JbSf@tv@dBjb@~BnW~Bpq@rHdy@vLvr@jN`GjAn|Aza@xsAng@tgA|g@loChpApK`F~qBnaAdaFtaCbFfCf]jPvjEdtBfz@~`@ltCxtAthAhi@nb@rSfFdCf~@vc@hDbBvUfL``Bhw@rjAlj@tN`H~KlFbb@fSrUjLt`Bnw@v{@xb@~EzBlKdFrwAnq@nXtM~Q|IbqAxn@lYhNjEtBbP|H`dA`g@ra@~Qxa@~Rp{Abt@r^fQpt@|]tw@t_@tk@vXt]tPnB~@vlAvk@baBnw@`SpJtsCptAbeDt~ArvAjq@|E~BprAlo@tb@pStWhMflBn~@flBl~@puAlo@|y@r`@|L|Fzl@fXfRnH~YrK|s@hT~a@xIdCh@la@dIbg@nGhLvAx\\|Bvj@`Cfz@h@bs@wAjn@sDf_@gE`LoA~b@yGna@yI`PsDdrDax@fx@mQpxB}f@b}Ag]lMuCz^{HddBq`@hfBg`@v[_Hvl@mMjmCmm@b{Ao\\xfA}U|ZgHnaBq^jgAqVl]{H`OgDtpCkn@rr@mM~_@uEzV{Cls@cFdv@aB`kApApr@tFzDXlW`DfsA~MrgDd_@prBvUhJbAtv@lIbHr@`xAlQhPjBvVtCtf@`Frr@tGl|AlQdYhDtY~E`YvF~TpEpz@~U|`Ab_@f|@nc@po@p`@jTxM`UdNrY`QxJfGfcAnn@|ChBfnAdv@pMbItcAzn@lgDbtBlW`Pt~B|wAnhAzq@jw@~e@~U|NfmAlz@piAv_AnVxSjh@|c@t|@`v@dShQzdClxBrO`NjJfItCfChwAnnAbWxSdGpF~JtIpqB`fBx`CxsBlcCfuBxd@v`@hpD|}CvHvGhrFdxEzoCh`CtXjVll@lj@lNzLnKjKnoB~mBjpBbhCvhBb`CtmBziCzOdTnpDfuEfW|\\fdAjtAhY`_@rPfUpBdCnCfDj~@nmAjWb]~MjQtl@|v@jUr[`a@nl@v^hl@b`@`r@nk@pcADFfnA`|Bjr@doAf^rn@fd@ly@np@xlA|c@lx@|sBlvDjDjG`b@`r@tu@lfA`JjLnRtXbxAfoBdDnEp`AbqAxp@b_Ahr@hjAl`@`u@vJxSxTne@zbAzvBb}A`gDvE`Kn{@rkBz}B|`FtmC`}FnThe@rRbb@jwBzuEbgA``CxT|e@v}AdgDzmAdlCbq@rxArNd[dkAvfCvGrNfy@|`Bv`AfdBpPlXv^|l@fe@ds@zDtFlc@|n@th@|q@vTfZha@df@dk@|o@`i@~j@lUvUzJ`KxkDziD`b@za@xW|Vzf@pe@fj@~h@tZjZn~B`~B|~Bn~BlZhZnoA~lA~Zd[~dBzcBzS`Tl[jZb[r[jXbXrNpNvhEdgEzRlQ~KnKrYpX|dBxcBllAvlAbO`OjOhOZ\\pUbVtErEdOzNtgErcE`~CzzCrdAldArmCdmCzvAnaBnNzQ`Yv^lgBp_CrPtTfqAddBhZp`@bUzZ~JrMfy@hfA`Vl[rLlO~d@jn@tZla@dmDhxE`Zh_@zY`_@f|@xbAfu@dt@ziArfAjYrSrg@x^~z@tl@jBbAz~Az`Alt@vc@t_Ank@ryChiB`t@lc@beEfgCbNpInHpEx]bTl~D`bCnMzHpZxQf`Alk@|sAvy@~nAfv@fRhLjMzH|h@|[pQxKdKlGtpD~xBvKvGzv@he@l_@|TlV|PthAhw@tYxSzX|U`PbNbwBniBl~ApsA`]lYn[bXxDbDjgEloDd|F~}EbsF|uE~xBpjB~DhD|rBteBnu@ho@`P`NpGrF~`DxmC`hH|dGh`E|gD|qCj_Cd_B|rAxfDjqCxUfSlv@|o@niDfuC`{@dp@bUtOrs@vf@hsBjfAt|@n_@bUrHpy@pXtfApYhx@bNdaAdQlUlBty@`Hv}@rEj\\JrcAfAnr@O~tAYbL@~vAHvVL|EFxJBngARzuGnAfoATnk@XxcCl@lJ@hlBl@~F@vrB^jj@N`D@jo@Trh@NdJBtj@R~c@Jhq@Ltb@Hvg@VzlARjp@TzRHpfBh@jcC|@nIEd}Bl@|kARdIDz_EdAr~AZr~Ar@dfBbGdZhBhhApJ~gArNv`AlPna@lINB~a@hJ`lAl[ze@lOre@xOnPxF|v@|Znu@f]rh@jVbpDhpBnGpDzg@tYvnArq@faBx}@z_@~SpDpBfE~Bj`Bl_AhvAh{@`}@rf@jTvLd~Av{@tNhHx]bRpQdIjb@dQ`f@~O|HvBt_@nK`n@lLhm@tHlh@|EbhBnGtRp@tvA|Dbv@dDnUv@~c@xAj^lArS|@tER`[tAdIp@pT~Apn@pHrjAfU|c@lMhdA`a@~K~FjnEb|BfFlC`Y~Nfk@`ZnmFfpCtkAtk@fnE|~B~iA`m@fyDhnBze@dVlObIt{Arx@r]~QpqA`r@laDvcBlcAbi@laDvcBrk@tZ~OhItn@z]pBhA|~@nh@jvEfdCfsA`s@zgB`bAns@`_@`PlIv_@~R~fAjq@hsArdAxw@~x@dt@f|@xnAnhB|JpQ`~@zbBnhAjqCny@rlCrNhn@n]l|AzPz}@|Ft\\to@peEbeB~rKz\\ttBpyAfdJ|y@~hFxDjV|h@zbDnHrc@p{@fpFvKvn@p@hDnFpXzI|_@fNbh@tNxd@dNv_@hJzUfKnU|HvP`Pd[hTl_@nV~]lTlXpIlK~UvVfYjWdSzOtXzQf[~P`\\~Nfp@pUhE`Blf@pQdXjJzAh@dSnHb`Az\\zObGhc@vOzNbFnRvGfn@~Sxg@lSfN|GrHzDrYbQxYhTzMxKtVfVtTjVtYf_@bQjWxPfYvQl]rMdYbUhj@tLv]xJn[jk@`kBtI|Xd_@jnAdWvy@x_@lpA~FdRlEtNjG`S|z@bsCdJzYxG~S~ZjdAfStn@tHnT~HbS~H`StJxT~Q`_@nPlZfHpKfDtFlN|SfV`[zJpMxwApqA`pC|cBnoCdcBdb@zR~q@fTll@|KfIh@bb@zCng@q@bv@kGnyAqS|w@eLf`G{z@vMkBdSeDj`Dah@hpAyV|iGilArfHstAzbCae@zgAoNhCU|bA{IbrE_a@~aBaN`hBaM~h@kCt_BgMzVoBzMgAfNiApo@kF`RaBzb@_E|vAqL|NqAro@_GzxG}j@fjEk^r_@yCzQ}A|OcBtqCkYxhBiSvI_ArcBsQtk@gFv[mCnW_C|sA{Lrg@_EtdAqIx[kCrh@cFrZoCvd@eEvTnEb`AgCdKdC`HbBjRvCvKlD|JvDxLbGvNjJdKtHrLpLlMhPlJrNjJpPzIhSjHxQ~FrRzHtZ`GdZpFd_@vFfb@pJpy@zFf_@xAfVxE|v@dMxuBrL~qBhNdgChBzYzLp{BbClf@tChm@hN~|CxLxwC~IrdClGngBbDh~@zQjjFpDf_AbAfWdHtpBnE`pA`QjyEtApg@xCnw@zMj}ChChe@nG|}@pNfrAvK~{@`UrzAjFhZfUxeA~VjfAnKza@bnBfyH`p@`hCtp@xjCtKpe@tKdf@fHh]|Ff[zFl\\xFl\\hEjXhEfYdFn^hFta@xDb[bEp[~RldBpEv`@fFvc@|Gjl@bEh^jEt]xH|p@vFdi@nYzdCzl@fgFr^``D~CrWxm@lpFvL|lA~JtnAvBn[xC|g@bChl@zAdf@hAtj@f@jg@Tn{@g@fn@e@na@y@l`@{@vY_Bpd@sCzj@gDrh@eDrb@_Fnh@}F|i@mHhk@sIlk@yGra@}Hfb@eKlf@kLdg@kMtf@cKl^{Mhb@eNla@uOrb@mPjb@k`Ad~B_r@rbBev@fhBcIfS_]|y@if@hpAwXn_A}Mhf@uKvd@kNrp@}QrnAcMbjAwEzh@uEtv@gGtpAic@vxLeLpyCw@nUgUdbGsUzhGaIfwBqD``A{LxbDcObyD}@xXcBdd@s@fTqYhwH{HdqBed@nvLyUhhGeHbyBgDbhA}@pXe@`v@Et\\x@z_Af@pXRjKb@rP|Ax^z@rR~Dxr@tCj`@nLf{AlOrnBpDjc@`BdShF|q@zCn^hOxoBdGx_AhEnu@|C`r@|@bWxBni@dBpe@vArg@hApb@~BlwA\\zVXdZj@h`AZl|@Idu@[pq@m@reAsBtrAgDbkAcEdwAkEheAsG`kAiIpyAoK~rA_@`FmAxNoBjVkf@vbGyMxcB{Wz_DyVz{CaG`t@{KbtAgNdaBmO~gB{KruAcBbT{Qr~B{HnaAgChd@e@pI}En_A_AlZm@|Ye@n\\Q`c@^dg@XfSzAt`@TxEvJfrAdGlf@hGr`@xZvtAdSdm@tN|c@tPpb@lf@xeA`ObZ`CzEdDxGr_@~y@hfB~yDP`@~cA`|Bpu@z`BjPl_@na@v}@bJhTtIzSxKb[lI`W~Nhh@bKlb@tHn^rElVrEfXbErYvCrUpDp\\fDv_@|Etu@dCzm@bA`l@Trh@U|f@i@l_@kAp`@wBhg@yCvd@kEbi@aNlqAiI`u@{@hHaFtd@cI`t@_B|Nax@juH{mA~hLcnAnjLiNvqAmBnRgZtsCuPf_BsMpnAitAzoMui@vgFeItv@_Ih|@iL`xAsFngA{Arz@Qjp@?rf@Pjg@t@re@~@vc@`Cxr@jEd~@dHddAbHnv@~Gnn@~Kf{@tMdz@vVzqApEhTtp@txCnD`PjP`y@xMzw@pJbq@jIfp@zFvh@fEvc@nCz]`C|^~Bn`@|@dOlCrq@nBhm@lAxv@l@lx@I|w@cAt|@{BneA}FppAkGb_AmKpjAkEdb@}Fnd@yLty@iMtt@gPny@}YvkAqKjLaCvAcCfAkEf@gD]{CaA_CkAmCsCwBcDgDaG`BdJzCxKfB`JlAzL`@bJHfJUrHyAnZ_@nHeSpr@gb@~tAqChJgnBlsG{fA|rD}Mld@}~@v~Ckl@znB{sAxsEad@f|Asd@n_B}p@jdC}XxgAuZnoAoKte@uJhb@q]n`By\\tcBiK~j@{TpnAeg@x~Cw[bzBqC`Ss^bnCg_@vvCoFbb@iVzlB{MnaA}ClUuEb_@aKnr@{OlaAeJli@mIjg@iJdg@qJrf@yZjxA{Tx~@sMzg@{Mlg@g\\|gAcFrPgHzUuHjTwLr^u@pB}JpYsKjYyG|QaNj^e`@bdAqVxp@uWjq@uKrY}eAlrCuIpTob@`iAub@~hAeoAheDwiAfzCuQre@sj@|vAaKnVos@j~Ao\\np@k\\xm@{JbQ{Yhg@eb@pq@sHbLqe@|q@ae@jn@ue@vl@kb@bf@i]r_@g]d_@aJrJyIvJyA~AazBjaCyLpMg`A`dA{Yj[_HtHwj@bm@ccA`gAcd@tf@w|@f`AwlAtqA_l@to@ai@`o@kx@dfAul@l}@od@lt@{_@hq@cn@djAmm@riA}O`ZwGzL}[lm@a\\zm@g\\dm@yi@raA{CjFikBllD}EbJ_DfGgGxLcd@t|@{[zn@cObYmM`V{}@deBuPd\\wHxOeJjRaRbb@wRzf@oGrPoTbo@aWn{@oXdiAuPvx@{Hhd@qHfe@sEv[uR`|AsLjcAov@~yGwArNeBfPoAtNiC|ZwBxZuEly@kCnp@uC~uA_@dt@En^Rhd@p@~t@~FdjEtFj{DtApoA`Cz|AbB~oAhBr`BDrTDdG?jE?b_Aw@piAmAly@uDljAqFjiA_Gz|@yG~{@eGrl@sG|k@sDlZiDtVqKdt@cXjlBaq@vqEqfA~qHaF``@_E|Y{E~[uRbyAiMfiA}ArNqDzZaOd_BiMh_B_Dle@uKljBkF`mAeEhmAgDhsAoBdiAk@pb@iAt{ABfhC@xkALrwAL`qABj`AJ`}BKr_@yA`~@}GbpAs]t}DqEvf@qI`_A{Dna@cHjv@qJxdAkKdlAyExh@WlCaBxQeOxaByDbb@eLjpAeOx`ByEdi@yQvqBuDza@md@`dFeTtcCwJhuAmFxdA_Cbm@aB~m@_Bh}@gCxmBeCzmBg@fc@gFjdEoGruEwGpmFIzEs@bc@uDtlBwCjfAgNrxDgPvjEEdAwEtkAaIxyBmBrd@uA|_@aEzfAqDzbAsAj^}Ata@cIvtBqGbaBqJxiCmHryBuDpiBq@xi@k@`mACliAJh^l@bv@bAvdAbFltCtInhF`@xVvGf_EbP`}JxHpoEpHhnEn@tc@l@p\\TrMnCb|AbCxcB|JloFjCxjApGpoArGnhAzEpn@fFzl@xEng@xNtpArMfaAtGne@zAzKfSt{AzOdjA`OhhAfDrW~PdpAfUzcBdBlMtt@dsFdEdYlQlqA|Ev^~PnlApDlUbFxZpObz@|Hp`@vErUvFpWfS`{@xTxy@f_@nlAdG~QvUxq@lQ|e@rd@xmAht@hnBzrAtnDxV~p@z\\f|@~Q|b@pLpXxKhTdUlc@bU|`@pUv^tKjPba@ph@pWxZdXl[bX`[`p@~t@nJvKrRvTza@|e@r_@fd@xVf\\|Uj]zL`RzJjPlJlP`MdU`[xm@bY`p@z[zz@t^hgAtmAnuDlf@b{AbZh~@xAtEjOrc@xHfVzO|f@bE|MlF~QvMve@rPxq@`Lxh@jIfe@xLxq@jNzcAhL~fAnJviAhHvmAvNziCrAzW|JfhB`JrsA|H~~@~H`t@rLn{@|Nh}@~SjeA`b@bhBtd@lsBdLpi@fH|[lr@dpDnIzd@tCrO~QpbAd[diBvK|p@z_BzvJtq@xhEht@tjEld@`pCxu@fuFzP~uAx`@~mDrYtmC~PncBdOtxAvEle@lSbqBbLlwApKxzAbBf]dD~n@jKnsCPvG`Ar_@rDhtB`Hh`EpGdlEhBbtAlHxxFbDzgBxAfv@xKdkHh@~]dEfmCrGd{BpBnr@xOr|Ez\\r}GtHt_B`@rInBhb@bBx[pc@bbJbIp}AnG~pAvc@z|InVr_FzC~m@lJpkBr@nNfD|p@d@hJpAlWbAfTrLfeCfDzm@`BvYpLdsBbEzk@bEzi@xEpi@nNxsA`PnmAnPdlAn\\f_CfWnfBtCbS|CfUvx@htFnxA~`KtFj_@vClS~Tt|AjAbIxXdqB|w@`nFp[z|Bfq@bvEbSnuAzWlgBlOleAhFl_@bR~sAvKbr@vAnJfJrn@`TrxAzStxApOjfA`F~]dJ`p@vD|UdVv`BnKly@rN|mAfIvu@hG`p@pGx{@hCt`@tBvZdIl|AjA`b@vCj`AdCd`AhAzqANtvA_@~`A}BfkBoCjmA_Ev}AyDprAYlJkAzb@aLbpEaAf^{Bry@cA`c@kBpj@gBnt@yGbhCsHboC{B`{@mBpt@kDjsAoDprA{Bh|@q@la@cAhl@gA~q@q@f~@Wzi@?hXDt_Al@v_ApA|bAbCvmA`DzgA|DvbAhGpzAtHbzAbBdb@~Gf|AvE~aA~@fSbBl^hHz~A|Bhg@hCdj@`En}@tC~k@?Dz@zPhLnkCrAbVvB`f@hJltBd@dKlL~dChGjuAhEt}@nKt}B`Fj}@jGt|@rDfk@tCt[nClWnDj[fLvbAtDhW|Itm@`QlcAhWzqAbSbz@xId\\xH~YxYfcA|Zz~@v]jcAhb@zmAn^ndAxd@tqAjaCj~G~Ozd@nPnf@dTjn@pIzU|HrT|g@lyAjn@vfBlXjx@pTbn@xf@jvA~Z~|@pX`w@vRbm@pK~[j@xBvE`Q|Jx^lUlcArNtx@vIzj@jHdl@rGpl@`CvXhBpShCv^`Dfl@rCv}@hAln@p@~y@q@bkA{FxfC}A~m@eClbAeDdoAY|KkBbx@u@tXyAvj@eCb}@m@`ZeAf`@o@bVmFpqBk@|V_B`l@_Af]wEjnB{DtzA}FnuBaGlnBw@t\\kMtaFoNvmFeFvhBwAdh@kBtv@gB`n@wI|gD_D`dAgEdoAeFpaA_Cbf@cJxnAyUt~B}XdqBsS|jAgcAtfFaq@leDufA|jFgi@vjCmRx~@_Ktg@so@x_D{]faBmNjm@iO~n@sT~z@iUtw@ySls@eZz}@sFhPuUnp@sXps@qPlb@iR~c@}]vv@_m@hmAom@bmAkH~MeMzUqYth@{dB`_Dqf@b_AqXxh@_p@xqAgh@rgAcr@f_Bi`@lcAuMn_@kP~f@_N|b@uPpk@yGtVgGdUgXzeAeRp`AoLtp@aHx_@wRtrA{OrkA}LhqAcKfnA}FvaAwApXsEdnAaDr|A}@zdAUb}@D~u@J|hAL|s@Jjc@f@hnDDnP^p~BL|d@?f@vAttGn@zeDVtpC|@j~EH~n@@vATflAt@tmD`@`pCb@|mBBrk@LnqBQlvBm@`|AsCzoBkEfvAaHdmBcF|_A_Gx_A}Flw@qCx_@_Ezd@eJjaAcOxwAiTbdBu]pgCkExYg]r|Bei@~nDan@zdEk_@beCcO|bAwKjs@{[lxBkPvhAgIlm@cNhkA_Ifv@sC`^eF|s@{D`o@}FznAiCv|@kApo@k@fn@o@toAZ|m@d@vp@~Cd_BpJheD`Cjv@dQp}FvLv{Dn@fTB~@^hKThKfIzoC|C`_B`CboAr@htAH~LrAxcCtAvtDtAx`CTjZ~C|aDlCr{AxBlpAh@t[vBlaAfBlfAtEv{BTfR`A~d@vAjr@bAln@tAfk@`@dUt@`a@nAry@hAx}@Rv`@Fxf@LbUCnPaAj`AsA~l@mDnpAqFlkAmIjoAgHv{@kIp{@eK~x@eOjeAsCrQsOp{@yPxz@_M~j@wLrf@{Rbv@}Mhe@q^lgAsFvPaAnCeH|R}CrHoMl[iW|l@wa@b}@qg@beAgy@tcBmmApfCyIvQsIxPi`@bx@sYpn@mSbd@qKbXs[|{@oRvi@cQ|j@eIdY}Ttx@{Obo@qLfj@gHh]yDpRg@jCwGl^sB~LgGf^eKrs@kChS{Jfv@mLfiAwIreAaH|fAqGlwAiDfwAeBjpAyDfdF{GhjKuCx_EiBf~Bu@l~@_@l]cAf~@aA~aAs@hu@uC|hBm@b_@o@xYo@b]QfJs@r_@ItDoCnbAqErrAeFrsAkG`wAqHhrAsLhdBcKxpAaLhlAeLteAyNzkAoQnpAqCfSObAyMty@cJlj@cThkAeZnxA_V`fAg\\`sAgXrbA{Sbu@sZxaAwZ`_Acd@bnAuHlRySni@we@vhAqm@~rAkp@poA}Ufb@wX|e@gIvM}x@`tAikAviBer@tjAysAb{Byy@`zAov@fzAmh@fcAgj@beAoZvi@{b@hu@ae@hs@cY~_@ot@z}@ua@`d@}\\h]_X|Uug@|b@wYzT}X`S}ZbSc[vQ{_@vSyk@`Xwj@xTc^pLoLlDsVfGm[dIoX|Fc[jGkLzA}MrAkSlCmZnC{OvAcQ|@yYvAc\\x@ac@E_k@{@cj@mBkk@}Eu^cEiVmD}RgCca@_H}F}@miBi\\unAqTCAotBk`@mcBwZaUyDkGaA{e@cHmxAcPoh@oCs]aBw\\m@w{@Hep@nByt@hEgc@`Faa@~Es{@`Oqy@xRwx@jW_n@dU}y@j_@uo@r[_ZzRc{AreAcS`Pct@to@qfAlhAyGxHoWbYgh@jr@mn@h}@w]jj@qU~_@gi@tcAeb@hz@ep@t|AcN`^e]d`A_b@nqAa_@bqAaXrfAeVlfAcUrhA{RpiAkQzjA}O|iAuNnkAqHzm@kE|^kJx{@qYjlCgm@xxFc^diD{@pIyK~eA{R|iBY~B_D`Zy[bzCoXfiCqIvw@mC`ZqAdMoE|a@}XjiCwPr_BgYjpCqIjv@{RvhB{@jIgAfLiWpbCy`@lwDwOvwAcKb_AoL~jAaMxkAcHlp@yNrtAoZdhCg[~yBgOh{@uBtLwUjlAyU|eAw]huA}Vp|@ob@~uA}@vCeKp\\cZv`A}Ofh@gItU}Lz`@m\\`fAsa@`rAgqAzdEgq@psBsO~b@wi@p{Aim@j}A}^~}@y^n{@iRza@uKhViAdC{KlVau@x}Aei@feAeo@|mAoT`b@wMnVca@jy@oa@|{@w[rv@gT|g@gVzq@uVdu@uDdM_Ozf@cc@v~AyR`w@iUjfAuW`vAsMhw@eChOeMn}@uKx{@}Oh{AuHh{@uGt}@}Dro@gEf}@mD`}@cBbq@kB`q@]b]q@hn@QrlABlp@b@~}@zAb~@zBl`AfE`nAbEpz@tHbpAtDrd@jEnh@xMvzAxO`{Ax]ffDnGzp@~Flk@hLd|ApEnn@~Dps@lDrw@pBpj@fCrdAfCriBTjyAe@`yAiA`_AcIbvDgFteCcBl`AeBlaAkBnlAm@ls@a@bd@s@vcCB~~BlAl~BjBxeBzGfhDlHt~BjHnmBnJnkBfBv]vDdp@xLllBjN|kBfUpjC~O`|A|OjzAdXvyBtO`lAtS~vAvQriApU|wA~[pfBvBpKpF~X|Lvo@h]xaBrZruA~UnaAfEfQzVrdAlt@tzCp]``BpX`~ArLrt@zK`y@xC|VrDlZxChXzJvcAbGrs@nE`m@lDnm@`Dnn@hBbc@NvDr@bTn@pRfAnj@r@ja@PdNDfAf@~b@ClBp@xfAGfv@?lUk@zn@q@bj@mCjoAcCnr@aCto@mDjl@wDrn@iGp{@gElf@oCx\\yAhOs@|GcH~p@wEre@}d@viEwW`_C_KzcA_SlhBeEhb@wIlv@kFrh@{Cp[wKjjAsS~hC}Gz}@qFxz@_E|m@mB~\\_AvQoAv\\yBla@_Dvk@mn@xjL}RnrDuCth@qGniAwCtl@gD`p@cCdk@oBfm@_DrnAaAnn@Sl]En|@R~n@^n_@`DrlAvCv|@zE|z@tBd`@pFfn@zKljA~Ghl@zHbk@|Ijj@fGd^pJdi@lDhPnBlJpGpZdMvi@tWnbAdOjh@fUns@bCzHve@~xA|^zgAfPzh@~R~u@tL|i@xFf[~E`]|Gnm@nCj]dCn_@jAr[D|@v@r_@@x^MdXI|Ug@h_@mCfo@gCje@kB|]uGb`AwKjwAuTduC}Pj{BaAfMiQ~}BmUjzCmAhNiAfNeJ|lA{Zj`EuHbaAqIxfAg@nFqIhkAuKbzAyS|lC}OxgB}I`u@wJrs@{G|g@e]v_CcXxjB}CnS{aBzaLmd@`zC_j@n~CsYv{AoFfYkwAp}HwJjr@{CjVoIt{@aFxr@wBjl@gBbp@oEdlBmD`cBi@tWKbDiBfn@_Av\\eAxc@SvIaBp~@aAnt@cAvs@wEhaByDpnBmBzmBTpd@hAfa@zBbj@rBrZhCvZ|ClZpDdZ~@tGtAtJn@lEtCnQ`A~FbDdQfAzF~FpXnGdXbHtWzIlYzXtu@fd@vlA`a@hfAz[b|@dm@`aBjp@jgBvNp`@`]dbAdKdYhFlMtFhNfYzm@`g@pw@xw@zeAv]zd@h\\`f@|T|]rTta@lIjRjIfRnUzo@t`@lkA`G~P`\\j`AlMf_@bLj\\fRzc@pSxb@fOxXvTt]xOvTzRhUjKfKb_@f]v_@xWfs@n]fiAd^ryAbe@zd@xN|c@pNtd@|NzlAn_@jQ`Hd\\tNd[rQra@`Zn]xYhF|DpWhT~cA`|@ji@~c@rc@dc@t^ne@tYbh@|Rvb@|Lx[zMva@fYbdAhg@lkBrc@~aBfClJrSxt@dSjq@nLj[zMvZpQn_@dTf_@fQjVxVnZtXrYtXrU`XtQrY|O|VhKnXhIn`@hIpRvBvf@pD`~@xDd_AhEpmCxLzb@bCdg@zFte@zMpb@fO`X|Mb[`Rp_@|YrZfYfc@~h@da@|l@tk@r}@ba@|n@`lAfjB|kArjBxbCpvDtn@dbAld@zw@jQv^|P|`@lSnk@`Oze@hJt]xIv^nSxaA~DfSvEzUjD`Q`VrkAvM~o@nGhZxy@pbEbtA~yGxZf{AH`@dKfh@vKrk@jFrZvEd[~C~VrCfW`D|]lC`^bDhn@dAx]`Axo@Av^Sb^a@l_@_Clt@{Chh@_Gtr@cB|NmGpf@eF`]_Hn`@kOns@{DlNcEfOGR{Mrb@kP|e@wRni@yNza@mRhj@aJrZqHpYkGzWuAxGsDlQmF`[oFh_@eEl]_Ih{@wBpc@}Bdr@WnYAho@NtOf@r^jAx]fAtSXxElApRrAnR|BbWrA~NbFna@vN|z@fAhFpRd_AnZpuA|g@x_CzG~ZlIh`@zOht@`BvHdXrnAtu@dkDrIbg@hJfo@tGji@pBpTbA`LrD~j@fB`^pArb@`Ax]h@f[DxSj@`pABlZFtm@b@ppAH|n@h@zn@bAbc@hCrn@|C|i@zCf^pDh^~E~^tE~Z~Gz_@pGn\\tIf^|BpJnI|YlO~g@jXx}@lOhg@xK`^jMpc@lIpZ`Hf[`Qf}@f@pCf^fqBvZzeBfJbe@pIn_@fGjV|Id[~Kb]pMt\\tBpFl_@l~@zq@dbBnm@d|AlZbs@xApDx[xw@vMv\\xSfn@|Odg@tO~k@`Nnh@tOft@~Nny@lH~e@h@jD`I~k@`Hfm@vGzq@bEli@fE|m@`Djr@zAdj@~Abs@Zra@DpFT|s@a@v~@S`_Au@xzAg@`sA]ngAGzOOxf@Wvh@Szo@V~r@^|`@lB`o@pCjj@`Cp^pDr^tB~QfAtJtEz\\tFn]jGp\\fHt[nHlZ~Jj_@lOre@xQxe@bQv`@pL|UbPxXbYfb@zIdLhA|AjvAfmBvk@tu@~`@zh@tGjIhDlE~Yj]~`@dc@bThThb@bc@ti@zj@d[d[rx@ry@b^x_@vB~BzSbW~V|`@pPfXrLvUrPba@jRvh@jNla@bMr^zDdL|\\`bAxJ~XxThp@tPtg@va@|jAxK~ZjPr_@pNdXpRhZfQfSrXlXjX|ThW`Otc@dQhfA`X~MhDn\\|HfRnFhR`GfPjHl[tO|YfR~RdO|QzQnPrUjXdg@|Uvf@x]~t@d[`v@dd@lhAfc@|kAha@`oAv`@zwAxRbt@bQ`u@tJtj@~Mr}@|RxqAvEl[dGr[fIv]fMpb@rPtd@nNjZvQz[pb@hs@~b@vs@dj@h~@jV`b@hPv]`W`p@`T|q@fShu@rg@zjBdg@~gBj[pjAlWpv@rOx_@bNjYbSb_@dStZdZn_@vZfZv_@r\\tv@lm@zlAx_A`m@zo@fOhStNlT~FvJpFbKhPt\\nKlVfQrd@xT|p@vI|Vdy@jeC?@lDlKn@nBvGbRt{@d`C|]|dAv`@~nA`Rdq@lPfj@nRdq@lVn_AnShw@|`@~yAjBfGvBdHz`@rrAdWzo@li@jrAvIfStIhSfKtU|Qpb@hI`QhHtOrHhP`iApcC`D~Gla@x|@fSvd@tY`s@r]tcAn`@phAbVfw@jZfcAfStw@fH~XtKpd@~Lbm@FVtLho@nW|xAjR`qAjXfaC~Evf@xGjw@dHffAzJhqB|G~~B`I~rEdAztA`CbdBxChwAhDhaBtCxfAhDxbAtJxrB|HhmAfG|{@tI|bA|Ipx@tLpeAlPlmAvMfw@|Nx~@lFzXfYxwAta@tgBrOrn@l[pcAfJdZno@rrBzb@jtA~DdMjFrPbJrXzk@nfBbx@`dCdT|p@jNv_@rMfZtLjVdKzQfLjRxz@jlAt|@~lAp{@bkArV|\\dQ~U~UnWtR|QtOnLd\\|SrUxK|E|B|RrGvYnHnRzClTpBr\\p@bb@a@fXg@dPYnQArQJbM\\vO|AdSxDrR|E~RzG`\\fPfUbPpObMvOhPnStWjS|ZxOtZrMvYhMz\\xQjp@dHp\\hHf`@`NrlAdNnkAzMpgA~Kzn@hLzd@hMdb@zOz`@nQh_@fUz_@zBdDzTd\\drA|lBzUh^jUt]fOxZbSve@dN|`@tMvd@lI`_@tHna@vEpYrDb[hDt]rCn^hBl^nAp_@^rc@@fi@gCl`Bk@r\\w@bf@q@h_@Q~^Rn^f@~YbB|_@nC|a@hD`^tD`YrGf`@rOru@hPxw@xGd\\rThfAfMjy@bEb_@nH|aAlD~iAX~f@W~m@cAlh@wAf^}Bp]iCr^mDd]}Kn}@yOpmAuZxhCcEph@sBnf@}@xj@Zl|@fDt{@bGvn@`Et[zH`g@|E|V|Jb`@rFhPzGfSnu@xwBtKd^vMff@|Hr`@bIhh@jD~\\bDb`@lBhd@`Abk@fBl~A?BJzK@r@h@fi@pAdqAf@da@@d@v@tp@p@dq@|@vdAZ~ZNvJvC~mCl@~f@VzUP|O`Bj`BVvYnApsAZvt@Ovw@Hld@BdVJjr@JnqB?zGRruB?~a@ClO?rCRf^JrQv@~_@`AlZzBnb@pAjXpBnX|Cb[pIxw@zDx^fM~jAdO`qA`N~iA~WfeCdGti@zA~MjLheAb`@pgDbKj}@xMriAbKr}@~Jv|@~Iny@|D~[dGta@hJzf@bMjj@pFvQfXp}@jDfLjCxIhLp_@|HfWdXj~@nFzTfHz\\~I`h@lGvf@rFvf@`Dnd@fBva@pAd`@xGvrBlA~e@fC~|@v@`Y@VnCn_AlD|nAfDjmAtBnr@v@pj@~@``ADn`@iA|lBw@z`@oBlbAgBta@cLviC{YboGoO~sAcQ~x@On@ueAd}DoNbp@oGb\\oEj`@oDx`@oB`e@qAh{@@p]pAhd@zDtp@~IhjAjIty@~LpkA~QddBzMjdA~Hzm@|Op}@?@xPvw@tU~y@d\\x~@x[p{@``@x{@|fAvcC`{AxeD`^h{@~Z~~@nD~MzLfl@`CrQjGfk@bExv@bArj@v@|_Cv@t`Aj@ju@R|MzAxc@bDvj@zEpl@~Gxs@`d@~`DjI`n@dApIpIh_AdCvf@dCnu@jAzo@Axg@y@bs@qFz|@aChb@{K||@}ClVcTruAyQ|lA_Gti@mDrb@q@tIyArd@o@nb@G`k@|@za@rBxb@rCl^jCdTvEnb@fHjg@|DlYvFjZpDxRvM|z@nG|e@zE~c@xCl^fDda@tAfP`Gru@hFxm@dEb^nGjb@vF|XhK|d@|Iz[~IzYzLb[tHdP~InPlNbTxP`VxQnT~I`J|JfIrI~EdJ~E`KxEjLxC|LrA`MT~Lg@zLcBfHeB|KwDdLgChLsAdJ]fJBdJh@rvAriAfIdGbi@l`@|o@ze@hdAht@|\\bU`@Th`@lUrMrEra@tNxZlPlRtInZxMl^xOlaA`a@f]|Mjb@vO|UpKrHrDrIzEjP~JvMfJfRzOfXlXzOpQvN`Rj]hj@xQx^tEhJpYls@rKjZ|Qhi@lXx}@hAbEjLpb@hLxh@jFx[pBfOnBbPpCf[vBh]xA~]r@fZJnN?pMe@|d@y@x]eBj_@eH~lAsBz^mBh_@kAn`@Qv\\^zj@~@jb@hBh\\nBvZdClXbCfSbEhXvF`\\dLrg@|Ljc@bS`h@nYbo@hA~BlmAlmCt`@h}@tFbLxQ`_@`HdMvItOli@d}@pAvBjJ|NbGhJ~\\xb@ra@xj@lH|JZb@zPbV`n@x|@nf@lr@fZnd@nNvW`LpTdKrVjJbVfN|a@hJr\\zIr\\tIba@nFfZnJhp@tExd@hDfc@hBlc@fBbp@hA~\\pDjhAxCt~@`D|_AzCz~@`D|~@jCvx@pCpx@hBdl@v@jb@Xh]Kr[[zZe@|TsAf`@_AtQcBjX}C~^iInz@iHlu@uAdPiD|e@oBv[sAp\\s@f`@_@ra@Bz^Vx[rAff@zAt^nBt[rCz]lD~]fEp\\rEl[tH`a@nIf`@~Q|q@dA|DfZzw@zXxv@rLd]t`@fhAjGvQ~Spl@lOl`@vHnRlIdQlPp[rN~UfLzPfc@jf@fXpWzXtWdZrYbXdZ|`@rh@hT|^dJdR~Zxt@hPrb@hFlN~Mf`@bPxg@bKh]hR`r@tFjXF\\lGd[dIrh@~Edb@fDt_@|IfaBzFlxA`Ebr@hA`NfCvZnHtp@~Hpf@tHd`@pFfVnHn\\fLff@tAzFpi@xzBvBzIrRbv@`O`m@tBdJ~GtXtJr^vJx\\~IrXbOr_@lOd]hOxZ|MbV`k@f~@rf@dy@`Sl\\lA~B~KrUnL|XlG`RrKt^dEjPpE~TfD`QrFh\\jDxZtCb\\xBz\\r@lOd@jOV|PHnO?rX_@b\\w@tUGlBMfDe@hIUhEcAfPgBtTsCxWsBbPgBjMcDfRgF|WiIva@sRr|@wRj}@{YtsAgQzx@yG~ZiHf]oIjb@eGh\\gFxZ_DrVyBfSmBnTsAhSgAvUu@tRc@fTOlSEhWHhRd@jTh@bRjAvW|AzVfBzRtBhSlCjTpBrNjDdSvFpYnHrZ|J|]`IfTrJbVbUpe@`M~TpSn^p[zi@b]hm@j^|q@xGzNtSng@fNlb@xFdS|G|V|FvWlLfm@lDvVnDtVnGpf@|Eva@v@tGzJ~z@hVpyBvJh}@vKr~@nJ|x@pKr|@`Sv|AdS~wAtW|`Bl\\ttBx\\~tBpf@dbDxQnpAbGnc@lNxcAfAzHn_@zsChYtrB|XlvBlZhyBtL`z@fQtiAlJnk@hT`uA`RjlAfQzhAzMfy@bJje@bJb`@bRhp@zOhg@hYrt@lYnm@pRp]nP|Wbh@|y@rWra@|Vbc@nWhi@jWro@tQzi@`Yx}@r[peAx_@tnA`o@juBjU`u@tY`aAlk@vgB|d@bwAhb@tqAt`@pmAtO~d@|Nna@vX|p@rU|d@h[jj@r^ng@l_@nc@`r@hr@jw@~x@jXvZhXz_@bUf_@nYbh@pTvf@pWzq@bOxe@xQdo@|Ktg@xI`f@rGz`@pFba@jHrq@vHrz@tEph@jFvh@xPlnAhLnn@dJbc@vc@zrB|Y|tAxJre@hS~oAj@nErLjy@~Ixp@zLd|@xZt{BfVjcBhLxz@vZlxB~NfgA|Z|wBbYnrB`QroAjGni@bF|l@|Cta@pA`WhAvVfB`n@f@h^P|_@?z_@[j]q@r^gAf_@aAtTaAvRkErm@cD|]aJ|{@_TtnBoS~jBePtyAaMliAiGxk@gJvz@_KbeAgD|a@_Ct]mCnh@wB~m@{@|]m@tc@]bb@A`Zd@b~@rAvi@xAhc@xB|i@lDzm@|Cda@hFhi@rGfl@|Kjz@pK|o@nJre@nMdj@nOfl@jM|c@zOle@jYxv@hRjc@fSza@lZ~j@lJjObSlZnVh]nWh[~]|_@f_@v]bo@ji@tQ|N~d@v_@juAnhArKlJnb@t^tKhJtMtMrUlW`R~UtKhO~Vrb@|Q|]vTdf@xNx`@zOvg@tI~XxL|i@lPrz@bKpv@tFdl@lDrb@tDvw@bAf_@v@jv@@lXNnpADdzADjpAx@|nAfAzk@bBpl@zEtaAlCdb@tDfh@dExc@dFdc@~K|z@fMny@tL|r@vFv[tQbcAdJzh@lU|rA`Kjo@lQ~bAzKbo@nl@bjDfQvgAtMl~@fPjkAhOtmAnDhZjTbnBfGvl@xFbn@jFrl@xGny@`NzfB`IrjA~Fxz@xMbnBtAzT~A~UdJjsAbDxb@hEjg@~E`j@`SndBzAzK~Hbj@|DjXvHpc@lFxYxMbr@nIpa@`Krc@lM`g@jGpUnWr{@xRto@|Zh{@t\\zy@pXvn@fN~YxRrb@lUrf@pShb@tZdp@fXnp@bRze@pZv|@dZz_AtRfs@vOxn@hQ~u@vQ`v@bQfu@`UbaAnXljApy@xjD|Qrx@jEtQhV~bAzVreAvLzg@~Jzc@|H~[vXbiAfXfaAv[`aA~Pvb@zRpd@jPx]|c@l}@ls@vvAlx@n_Bra@~x@vh@heAbcAzqBpbAzoBb`CxvE|MrXhVzj@rKdZdLj\\vK`a@dKd`@bJlf@nGr]~Gdf@tJp~@rErv@rCtu@bAvl@Qny@Yl\\gArb@yAt]oAr\\mB|XiC|\\aC~RaE`d@oD~a@}Etl@uEpm@gDjm@_Bna@kAzh@e@n_@?pn@x@fy@v@vc@`Cv|@rAh]`Bvm@vEvwAbDhlArCr_AjGppBh@hRzAbf@bC`x@`Fb|AvBbq@lCdy@lEt`Bh@vh@^j|@]|lAkAhaAkA~h@gBnm@cCzl@_Dpq@{Fv|@aEvi@_Dj_@yCb\\wGfm@kF|d@wInq@uLny@cPd_AgF~ZsR~pAmUvuAyWzbBkKts@s@~EiHll@iDd^{Fjo@yElo@mD`p@_Chn@aCfy@_CxoByBrtBsDzhDsDj~CsFr~EwEduEHvy@\\xo@lAt_ArBhaATfJR~FfCrm@dDbo@nHliAvHtlA~Cfc@rFr}@hFny@nC|m@jAp_@d@p^NfUCh}@eAhk@mAjc@aBd^aCr_@yEdm@aM`wAoKjmA}RdlCa@xFeI|hA{QheCq@xIqJjwAwIlkAuEzo@sMziBiHrnAa@`HsCjr@mBr}@a@hj@Ktc@d@|hAnAnn@bC~n@vC`n@bFvr@jF|l@vJfw@hF|`@bIdf@dKvk@vLbj@lMhh@~Njg@h[v_Ah_@t|@la@py@tUtc@l\\jm@vBxD`Rl\\rPdZfb@rv@nj@tbA~Xrg@rYni@j]pr@vS|c@j[bt@dh@~tAfQhi@hOpg@bTdt@rSvs@t_@`rAl^doA|ZlfAtUfw@jDhMzSdq@nUjq@b]n|@j^|z@l\\dr@dZdj@hD~GdRl[bJxNxGnKtP`WpTr[|Xt^lWl[dW`Zbb@tb@xTnThd@j`@df@n^tr@dg@jv@nj@l|@hn@tZzRtZpRxd@dWz^jQr\\hNra@tOjo@bShj@`Off@|LjaB|a@zy@xSlp@~PhR|GbRhIta@~UpRnL|JbIlRzPxNhN|NhQvPhTda@~q@pbAx}Ajk@t|@vMtR|K|NjThWvOjP~NlN~WfT`d@l[to@bb@~k@|_@|u@te@vlBrnAzu@ff@v}@~k@hlBtmA~e@xZdRxL~QfLnd@pXpj@bYre@xTdr@dZpq@zWzhAhd@vkA~d@z[~Lle@vRze@tRds@jYbj@`Xrj@j[dk@v_@tj@rb@n^f[fXpWxRnRpJhKxRjT|TrXbQrTld@ln@tWna@hUl_@da@|s@ph@fcArL|UpvBrcEpa@zw@dh@lcA|o@roArq@trAljA`zBjIpPr_@|s@~_@tu@tb@dy@tWvl@dNl]lPbf@nM~b@vLpf@lHt[~Gd^`J`k@dHzg@jC~TbJbw@jDlZnIht@nGbh@hQdxAvRj`BvDv\\xFjh@fFxm@fGht@rQt}BnQl_CrXbpDnAzP~]buE|YvxDlFh|@dHlnAfCfi@pBzn@xBnm@@RpBd_AjFx{BjGhfC|F`oCxDveBp@tTfDrzAxElmBnH`aDvGzgCnFhqAbFdx@bIfaAzFbm@pDd]pKhz@hIpk@tHxc@pI|c@vF`Zdb@joBpb@lnBneApzErEtSdb@dmB|u@tjDxSh_An]b`B`c@`oB~G`YnBhJvGtYfa@hjB|bBlwHdgAx~Exs@ddD~q@h}Ctp@dyChZtsArYbqAjHd[vI`_@|Nll@n]xsAlb@f}ApKh`@lVp_Az^`tA|s@tlCPb@bAtDdIhZdOjj@rVh_A`~@hgDzdBfpGvoDjxM`g@vjBr{@b_DjSlz@~Rd}@vLfp@fPhhA~MbhAlJlbAjHtnAbClj@|Alk@x@zd@r@fu@Hb_AI|jAO|nA_@r~AIf}BYt~EJ`nAi@`bBUbj@U|^k@bcAU`jASlyAN`eAf@hfAd@fbBKluCGbUAhd@DhXJd[\\n]`@hTj@jThAhYlAjUpAxR`Cv]`F`j@dHbm@bKxq@fJlf@|CnO|EhRnJj_@dHlVrFrQpF~OrShl@xHjR~HrQtMtWjN~VvN~VrVv^v\\t`@v`@|_@|WlWhg@nc@r|AnsAxfBj}AjN|L~wC`jC`VbSb\\jWx]xV~g@xZbTxL~U~Lf`@xP`bAr`@xy@`\\~_@hOdW|JzMjF~n@tVl|@z\\`uAzh@xu@rY|_Brn@feAx`@`fApb@r}@`c@zZfQdb@pX|t@rj@h_Apu@nCvB|pA~cA`p@lg@f]hUfZnPjd@zRpg@zO~bB`d@~Bl@`j@tNtp@dQdy@tUvk@nTbh@~T|ZbPda@nU~w@xi@t~AnmAvxAfjAhKjI~e@r^`p@xc@fi@f^n\\zSziAjq@bdGd_DjgHztDtE`CjjCxsA`qCxxAvd@vVj]`Sda@`Xpa@hYbQzLtlAny@z}@zn@v[|Tp^rYdLfJhW~Tro@~p@ld@`f@~N|OreAviA~sA`yAnqDvzDjnA|rAzDdEpsD|}DfhG`wGpeCrlCnaAjeAl`A`dA~WjYdQdRttAhyAbMlMbYnYr{@b{@l{@bw@xmA~dA`RzOxrAhiA`H~FjsAxiAzy@zu@hy@fv@d@b@xx@xy@vZv[b_@j^hi@bh@rk@rc@`u@xh@nx@bi@h~@dn@vEpCbmAjx@jsA`z@bbAlh@j{Avp@jdAvc@vrCvlAbzE`rB`HzCzHjDlo@jXx|Avp@poAni@ppBtz@xCpAbL|EteBfu@xqBf{@nF~B~k@zVn|CnrA~Y`M~y@x]ljAhg@juB`}@`{ClqA`x@t\\bW|KdXfLzgBzu@`d@vRnd@|RtD`BpOxG~O`HbXrK~L~EpaAnb@luA`l@lt@l[paAjb@xSvIxr@nZnu@l[|H~CxHzCzFfC`PfH`c@fStQhJ|SlMlCvAzEhC~OxIxa@zW|XlSlYbT`YhVxUfTtVjVxV`Wrb@xf@h_@|e@b[jc@pWv`@rXpd@h[rk@``@vw@jKvTbg@dmAhOz`@tVvs@ne@bwAlo@foBnz@lfC~^tgAtHfUvHhUbNja@rK~\\|InWnPxd@fLpZ~Pb`@~Qv^jPhY~PdXtQ|VhRtUzRhTnS~R~SrQnTdPzTvNjUfMtUvK`VdJhVtHpV`GvVnEzV|C`WhB`Wt@bW@bWq@pZiBdvAcMfKcAfSoBry@qI|SwB`s@kHvdBsPl`AqJlVaC|yA{NfcB}OdcBsPnlBcRrzCiZzzCaZvnAaMvgDi\\xxAuNfyA}NzwA}MliBuQbIy@veEqa@nx@_I~e@mFtgAwKvcBiPx`B}OlPaBfg@aFbiBsQp@GhmAqL|kBwQr`BwO`W_Cx}@iJrdBaQvaCmUpdDu\\xmBgRtyAaNx`BaPpiAgLzw@wHjTuBdx@yH|x@kI``@_E|\\cDzVaCdg@yExl@yDhUq@l^SxR@|e@z@`i@~Bxz@zIpe@tHf_@pHp[nH|[zIvUnInWjJtOjG~UzJlRtIbm@v[lj@`]nh@n_@~uAngAncAhw@tm@zd@dMvJfRhOpqB||Aro@dg@zm@he@hv@xl@pTzPzh@t]xZbQbh@fXf\\`Odd@tQ~|@vX`b@xJzd@jJpCZbRzCf\\|Dp^jDl\\~AhTz@|^j@xh@@j`@i@f\\qAbj@qE~i@aHhe@eIte@oKtgAqZjs@aSrsCcx@hk@aPbk@iN~d@gJxc@sG|i@wFpa@aCzc@sAvb@[`g@p@ji@pBf[tBra@rEda@vFhT|C~t@`Lbj@|H|aApNlrAbSb`AnNvp@zJzg@pHvq@dKdq@|Jxp@vJtr@zJlr@hKjq@zJtq@~JdlA`Q`_A|N~_@hGzd@lKnf@dNxf@tP|d@dRv]lPdm@f\\naAfo@rb@v\\~[zXxV`Vv]f^zy@haA~n@vw@rw@n`Ad_BnnBb_BjoBhkAbxAvr@l{@`a@zd@na@dc@jb@ra@fc@d_@`d@~\\td@zZhe@tX|e@lVlf@bT|f@zQhg@pOn`@dK~uDl}@hQ|DbgEvbAnRxElb@dK~rBbg@re@nKb[hHjXvG|o@zOxh@lMd_AxTn~B`j@`{@lShr@|O~kApYvlA`Y|o@zOjq@|Orw@nRfj@|MfMzCdS|Ep}@tStcAnVdeApVrpB|e@jpBje@|n@lOt_@`JxK~Bli@jJdUtDnTlCne@tDp\\jB|Rd@|\\Zdi@DxA?~jAi@bdBk@tiBm@f`@Wde@MvTGb|A[df@M|pAm@|h@QtbBu@nSClSInw@YbIEbv@Yxz@MrcBy@phAYfeBq@plAi@vkC{@n~Aq@|nDgAnqAm@ptA_@fLEtx@UvyE_BnbDqA`qA_@hw@]xoA_@lMGvy@SlJl@d]Er]Tz[dAxWfAr]hCt`@jEv]dFn^rGz\\vHlVjGdWpHrYxJfTdI`TvIp]~OdX`Np[dQzd@bZ~b@rZzVfSnLpJfb@t_@~`@ha@jNfOtLbNhMjO`RlUxSvXtRtZhc@tq@h]~l@~\\np@xXbk@hS`b@h\\zq@x^zu@vYxm@vIbQpRb\\zQn_@xSvb@nf@xcAnQ|^`Y|k@`^ru@hPt[re@hbA`IbSz^nu@bPh]pF~IjAlBlShb@fu@f|AtBjEnD`Kl@bBxt@vyArf@jcAj\\dq@xi@fiAt]ht@f{@lgBnt@`{AfXxj@l`@|x@d`@fx@|aAjsB|bAtsBjd@f_And@`z@jWta@rRlZ|N`Tbe@fn@vVnZdWfY~XvYxYnXp`@`^l`@~ZbRnMfYnRt[|RtZrPfl@xXve@xT~w@`^x~@jb@zh@`V`dA`e@zwApp@TJr`@nQjn@dZnpDbaBvv@h\\bMlFtdBrw@~}CvvAfdA|d@raAzc@pCpAxChAtBbAjh@pVz}BzdAffCxhAfKfFfJdE|hBdy@n\\fOhw@t^hiArg@daB~u@|^zPpw@`]dj@tVt[vNxzAnq@z}@xb@f~@`b@p_Bvr@x`Bju@~`@lQztAhn@px@z_@hvAtn@|YfMdt@|\\`SzItjAbh@p~@bb@d]|Mna@pN|\\bJzEnAnKpCre@nIrRdCrPzBnLtAjANvSpAlZbAj[R`WYtQmAl[qB`a@gD`I{@n]yFfMgC~JyAnFw@`XeHvXgJhVwIpc@oRrVuLpg@sXlQyJ`[oQhXoOzRaLlr@a`@r_Aoi@b]kSbb@_U`\\}Qde@gXNIzQgKbb@aUFEnIwGzZmQjb@sU`[}Pzu@oc@rq@g_@xC}B|WcN`v@gb@tN{IdUgMrb@aVpOqIlQcK`T{LjPsJvRoK|RaLznAks@xWiNpWkOtd@gW|[}QpQcKv\\mRn`@eUbOoJzYoSbOcL~QeO`ZwVhq@wn@pj@ck@tg@gk@rp@ku@~{@igArQqTdg@_o@dXy\\vn@ow@z^ac@hPeQp_@y_@HIlc@u_@he@u]jOsLhXyQl[mRd[}Pj[wNlK}ExXeM`Z{JfQqEdJgEb@Spg@{MjFgAh@Kd\\yGhSoD|GiA`@IzS{D`_@wEtkD{a@jt@}Jli@oFb\\yClRkAfT}@b^w@dz@L|i@pBx[bBhJx@dBN``@xEx^tFre@vIbh@bM`r@hTlVxJxeAfa@t`@tOta@bPlPrG`]bNl_@vNrc@rQfp@|WriA|c@vmAnf@`n@tVn@VbdA|`@tkAze@btCviAvrAji@nx@zZpsBry@bIdDpn@xa@r[|Npj@nVzR|JdoBhv@zJxD~b@pOxMjMlDfDpD`EdDxDzD|EvEnH~KnPz_AhwAbHvKtEhItD|GpC~FjCfGnCxG`EhLxC~J`DtL|AvGpAtGnChO|EdYvNv}@`Gnc@rAxTd@~R`@ht@o@jVgAdn@UtNIbFcA`r@wApv@aD~eBgBthAwBlrAgBjcAaCluAaAjy@c@pb@QvRg@`j@mA|k@Yf[BrdA~Apy@pAx`@Png@b@|g@DhDf@h]xAti@x@p\\h@jQ`ApTdApUtBz_@xA~\\~Bn^dCp_@xGxx@pFjl@rDf^vLfjAtNlsAd@lEr@bHvJv~@nS~iB|RliBhUruBrVnvBpXlcC`TbjBfXl{BnqA|nKrA|JtD`Y~DdXdL|q@dNvs@rEzVbG`ZdGfZhEfRzMhm@j\\lpA~Ujz@tKn^fXh}@zm@`uB~\\tjAzi@njBdB|FhIxXvv@pgCpw@pmCjqAnmEzJt\\~aAdfD|x@pnCjy@vpClTlt@|Sft@zi@zjBzNpg@dR`p@lDzLlQnn@~Rpq@tFhRjUzu@`^bnAtg@jcB~y@vrC|Qjm@x\\xhAhK`]`f@haB|Kn`@zHra@hFhYn\\jeBtBvKbBzIbCxLfRp_Ah[t`BjNzd@vNpb@dKdVrGnM|EpIvI|LhIpKxGvGvHhFjHfFrInEbLvF`MjDjLfChLlAhPRnMa@lJ_AxLmBrOoD`VaJrLkGxMmLpBgBrMqNdLiLxI}HtKcIdDsB|CoBh[wQ|MuHbE_C`l@mWre@gLjXoDxSiBrd@eA~o@bAna@nC~\\bDbT~BjUpD~i@|KdMbDhR|Ehv@lV`aAbb@dj@xYpQhLzZ`SnYzSp[|Vju@vq@pVxWfU`Wj_@je@b[pa@lV~]nJtNp^tk@n]~l@|g@x_Atf@b`AxM~Ud{At{CfEvIlf@p`A~g@hcA~g@faA~E|Itt@fpArNrUfy@ppAf}@pnAz[ra@`_@td@ldAtiAtf@vg@ll@nj@~k@zg@lu@fm@th@``@nn@lb@zjAbs@rKdGzx@pa@vJrEb[xNhRtIl{Ajl@z{Ahd@t\\dHjtAhYpOpC~fAfQd]rIri@bMfT|DrTdFxK`DtLrDjOrG~N`IpNrJ`N`LpMlM~LxNhL`PtKhQzJlRbJnShIpTlHnUrGhVrF`WjElWtDnXnC~XxBlYpAnYdArYjAvf@z@po@tAzeA~@xh@x@vdA`Afq@dCfq@nCdq@~C`p@~Czg@hDdg@hHl_ApMp{A`Ih}@|PxmBtL||AnPnzBfElo@dAdPdFj{@`Cra@rBl_@fDdu@f@|KfAfU|Btn@~@`WnCfy@fAj^pBx}@jB|{@z@~m@|@~l@d@z\\`Aj{AJzzAF~lAw@lyBkCdrEgBtmCo@bmCQ`gA?pB`@`bBf@pbAnBr_BtB`rAnBl_AbCry@~HdaCrHnjBhLzfC`Hb{AdHh|Ab@tKlJ||BvHx}BhAhb@|A`j@jBh}@bCnmA|CrdDhA`mCOp{BgBp~C{BxgBu@nb@sEzwB}CrpA]bK_E`kAqFzqAkK~wByGlhAcHxjAyKn~AkOjjBgMzvAob@jcEuUnkBkRxsAgUlrAqR|~@wRlv@ePdl@{Rvm@{V`q@kQpb@wTxf@o\\hr@}[xn@c^pr@sLhWsL|TsQva@qPtb@oMdb@gM`c@oQjs@kBfKgFnYoCtQ_DjUuA|Nk@dGwB`Y}AjYaApYe@tYKvYLvYj@rYdApY~AhYzB`YrCvXnDjXhEzW`FjWrGfZvHzY`Sjs@ba@hlAvQff@bf@~kA|P`c@dVrm@jb@|cApV`m@pSnf@ju@`hBlk@buAvm@nzAviAjpCjeA|eCzPba@vZbw@`AbCfX~s@dL`^bGzRvKv`@~Jrb@bLtg@pBjL~Hlc@lFr]n@fE|BbP`F`a@tCtYrEfl@rCxc@vBt_@`Bza@v@lXp@v^Xra@Fnd@Wde@_Ark@kAfb@gCdk@qEfu@gCn]{A`OwKv|@gI~j@qKpm@wMfo@uXthAa]hoAeXxbAcLlc@oOdl@yGdZiIt_@eJlg@cI~d@iHre@eIpm@kF`d@mGzm@gCzWiFvq@sCvc@uBl_@yB`j@MbD}Bft@SrMWdRm@zx@@vz@b@fm@`@za@z@z^~Bnx@fC`l@lCbg@~Enp@tDra@~Dlc@dGnh@fDfY~OzeAtPb_Ap_@llBvy@jaElj@|mCnl@zvC`iA|tFhl@vqCjh@lhCh@nC`E|Sta@trB~l@hvC~DrRz@rEbV`mApT`kAfQncAlOzfA`J|v@`Gzj@vGzs@tDjh@tCb\\dCxZhB~_@zApb@zAdl@`Azk@v@xsAApUGzQyBpRuBxIqA~BqBdCkCp@kC]aCmAcDgE}CwGyCaJ{BgIiCiMyDeXcGeb@s@{FOgFBaFf@oErA_FhBaDvBkBrBy@vCG~Dh@bH~B`|@nkAzv@l_Axh@bq@pGnIvbAjqA|[pa@|{@rgArf@pm@b_@|b@n^|`@|j@lm@ny@~y@neArcAbOhOxqAtqAnnAdtAbj@xq@hTvXJLn]vf@xU|]~\\pj@d]tn@t^~t@b[ns@jJvVdKfYbU~q@~]|oA|Qvu@~F~WvLxi@dJhb@jTxbAtTjbAvIt^tXndAfW~w@d_@xaAvV~h@dZ~i@bf@|u@`[ra@j]r`@fSxRrW~Tfm@rc@h\\dR`h@nVjf@hQdf@tMbe@tJxu@~L~mAjRf[pF~UfFtr@pQlr@pVl}@t`@h~@jd@|yBffA`eArf@riAxf@fjBhv@vf@vSzy@t[jp@`Vbw@hWrFpBdq@hTjr@rSdy@rTf}@bT|r@|Nxy@nPzqA`Tv`@rFl]rErH`A`{@hLtL~A~NdBpNhBbt@lJnsBtVvV~Cz\\nE`a@xEhmAtQpr@|Ktt@~Mld@fIdgA`WfrA`^pu@pTd\\vK~b@lOb`@jN~]|Mj\\|MtZxM`^zN|^tQ|eAhi@pfAfl@h]nRnfA|p@x{AfdAlsAjbA|FtEdi@db@lj@fd@hm@|g@dl@~g@|f@zc@pdAx`Al{@|y@vaAlaA~`ApbAfmCdsCzhF`yF|yAp`BxyAl`BpoAluA~oAvuAlJhKrXdZbi@zk@vh@hj@tsAtsA`r@~o@lp@dm@`\\bYdj@~e@~g@|b@t\\xW~a@t\\di@|`@he@p]nZhT~QnMpGhEfbBhhAxi@v]zy@~f@rs@ja@zp@r^v`Arf@jaAle@rm@vYphB|u@dx@b[|bA`_@ny@hYrvArc@`cCxo@nyAb]blBp_@jx@dMfq@pKdb@xGr}@zKbwAdPjCZvx@`Hp`@tCn}AzJpdC|Ins@rAfnArAzcCe@liDiH`g@oArbBcErIStbBwE|gBoF|jEaLxhEqK~gA}C~z@uBvfAuBzi@{@bw@m@b{@Ona@Src@Zr{@jB|z@nCpt@|DxaAtI|_AzLx_AjPpz@|QjdAj[d]vKzc@|Plc@zQtz@ha@t`@xS|x@rf@vU|Nff@f]tb@f\\hd@|^|j@lg@tObOph@~h@x`@jc@d_@fc@|w@~cA|h@nv@lg@pv@bZdg@hd@tw@bi@pcA|e@r`Az_A~tB|g@tkAbd@tgAp]||@r`@bdAhXfq@f|@z}BxvBdyFxj@dyA`HlR`Unm@pFpNrEbLtJjWxVfp@fEdLdRvf@`Tfk@dHjRhMb]be@rmAj{@pzB|}@lzB|x@vkBv`@|y@f^hr@li@rbAvj@~_Apf@du@fe@~p@vc@hl@zh@|o@~m@xr@ll@dm@nn@pl@z`@r]hY|Uz\\|Wrb@fZth@`^rd@hYpYvPzq@x]ls@x\\pf@nSfs@vWnc@nN|lAp]zvAh]rq@jNxuAnVtdBdYxf@|H`h@dInmBnZlkBtYt{AbVljAnQbnCbb@pbAtOnEn@rdAjOztCzd@nrDnk@p_Fnx@reAxRxq@xN`GnAdf@rLbl@nO|eAf\\LDrf@|Ppv@fZbf@nSrc@~Sjo@h\\~nAxr@po@z`@zd@l[vh@b`@pu@dl@fvAtnAbf@he@|s@vt@tMzNzf@vi@jh@nl@lWl[p~@fjAvu@`bA`m@zy@ft@ldArq@haAfeA|xAblAbdBttAdmB`[fc@rcAzxAbhAb~Av{@dnAjbAfwAzRdXxs@xbAdt@hdAxhAx~Ad}@hpArVb]bt@~cAvrAnkBjaBt~BxkAzbBbeAtyAhnA~fB|~@|pAtpAbiBpPtTf{@xgAlSvVvp@tu@zcAvcAnfAt~@~b@`\\db@|Yfb@|Wx`@hVnkArm@bw@x\\hx@v\\nt@bXjs@tSlPfEfv@vRbi@hK`_@nGjXpD|gAtMh^bDtWtBd]jBt_@xAxe@~Ath@b@xr@FlHEbn@cAb`AuDngBsOrmAiRfmAyUteAoXzcA{ZjmAab@roAsf@naBgr@t_Bis@|y@y^`d@mR`cBcr@pw@iZvt@oX|nAg`@ro@sQfj@kMff@cKnp@eLvvBkWhk@uElu@sDtmA{Ar`@G~m@j@ri@pAhk@zBzj@~Efp@fGfu@vIbv@hMr}@hRpfAxYjgAl\\tp@rV|x@f]nx@|`@xv@lb@rk@l]tn@~a@bj@|_@~m@nf@zj@xe@jj@hh@tr@`r@vu@lz@xaA`mAn^lf@~d@jp@`z@bqA|s@xoAl[~k@v[vn@|k@hnAz`@v}@p\\dx@`^n}@d\\h{@tc@`oAte@rvAVt@d[h`Ahc@~vAzj@plBjv@noCr|@r`D|BrI`l@lxBpFfSd_AjlDpc@raBjeA~{Dnu@ppCxr@jjCp[pkAnYjgAlp@ddCfU`z@lPvm@nY~fAbk@|tB~YhfAz]zrAl\\`oAhg@rkBl`@pzAr[npAvVbiAfVxmA|UrwAl]phC|BfR~Hvr@vLriAhG`n@tCj[pQtcB~QzaBxKr|@rOfhArXpbBb\\haB`Tv~@lN|j@pQ`q@`N|e@pOff@~Zf~@|Wnt@r]b{@re@dfA~e@xcAxWji@vYdl@tm@nnA~_@jx@b_@px@hZds@`[`x@v[t}@dZ`_AtXd`AhOnk@fVnbA~XprAzXn|AzL~w@dLfy@jIfo@xKzcA~O|fBbNpgBhMfhBdP`wBbKbnA~Hzy@~H`v@vGtj@vI~n@|Krt@nNdw@rLpk@jB~I|VzaAfPjk@rZx}@d[vw@r[tq@nPz\\lOpX~[|h@`b@tm@dh@~n@ro@jp@br@pk@df@~[lj@`[pTzKra@|P`\\nLjq@fUjf@|Ohx@bYdZfMhb@|Rrl@h]jY`Sd]nWhZ`Wh[h[~_@db@hUzXbP~Tb^ji@xM|Tf[tj@h^vu@~Xbr@`Zny@|S`s@pVd_ApVrhAjJdg@vHje@zJvr@~KtaAlHz|@rGz~@bPpuCzHvkAjCz[zHvu@tKb{@dPv`ArQrz@jJd_@dN~e@zZb`AvBjR|@tOQbKyAlIsCzIuGhJoZrK}DZcBEqBWaC}@}EmBoDWj@oC|EiSxEaR`FuPrDiMnDyJlA}ClFcNfUyg@~HaNlKqPhQwV~KoLbPwPnGeF|DmDnHuFzGqEhNoItXwLla@}Kp`@aI`QmDrZuH|TsGbH}BhO}HhKoHbIcIzTyUzR_ZrOwZx`@k|@dI{OfUg_@bJ_LvKkKxMyKfVoNrTcJvVsFxIw@pHw@je@E|g@nCxUtA|F\\v]Pf[}A|[kGf^mMzr@}c@jHsE~ZwMpXqF`YqA`BVvNvBdPxFzP~KxCnCvY`X|JfFnOnFnOpA`ZmAbXiLvIiGlMeJpe@_]z^}XrTsKrUkHpd@gKl\\cLxNcHrL_Gxa@sXjYwWdXg[|r@sbArm@ck@|XoWhSgQpLeKdJaI`[a[hG}Gra@_d@tHwHxLsP|JsOtL}RvLkO`J}H~YaPrWyRvIqJzAeBrc@sf@zGqHzM_LxLiFbLcCpjAlAnL~Bnc@|RjZrNbGrCbKzChe@pIzT~DbjAjXbMjAlPYbd@oCb]}@xT|@~TdAb\\cCzx@qEdW|CbObBpH|Abn@hMzm@tMrX~AnVyDpLyGptB}~AvLwEbHmCxWwExLmAlJ}@fFg@f~@{JhOyBr^eI`N_Dl_@oONGlR}HvIsDrSyHtD}AnFsAtEkAnHiBvBi@vLuBvHs@jD]|O{Alk@aBlKfB~H|At\\bLp]|LjJdBbQvCjf@zFph@rDdMGvEChSg@bY_Dlk@qMrn@kWdUoPtWcWdFgCjOiN~A}DnLoIlMaIvCi@fHwD|CoCpHyCp[iMfHsCtU{FzUoDjj@iInNoBfC_@bDk@nGm@fDmBvAw@`Dg@bAd@fAFlAYfA{@v@yAb@mBJ}B@_AOcBl@kE~FiUhLiYhIoSbEiNrEcTzGoa@dJic@bIkMxKiI~HeDrrAg\\tCs@xG{BzDe@nKkGtB]tAjA`BZbBSxAcAdAkBlCyAdK{@dC{AvIcAdMgDfLcDhHsBlz@{UpT}JxVgSdPmOlXu[r`@e`@vJmEdLcBvCMzGUzIx@fGt@|GlCrO|JvJbJxHhMhIlThC`InEpMgAxCUlCFnCd@bC`AlBvAbA~AR~A_@pAmAv@cB^uBHaCO_Cg@qBv@uAxDwHtNwUdF}FbFwFtA{A~McNxSySpIsIfQeRbN_MlGyFbQqOzj@gf@~b@}^dK{H~VyOnKoEpR}FnUuClI]tBKxC?hGTrLr@jQhC~TjEdQpDlDp@pCh@vGfAlL|AzKdAhMf@xQi@~Iy@dDe@hCg@hEbApEV|CV~CbArExBbGrFzB|BfBlDbBrCv`@xeCfCxIrBhFlB~CvCfG~CbEhl@x^lF|EnDnF`E`IdF`KzMfz@nXddBzFn^`g@z~CnkAhpHfmArzHtiChdPbc@lqC~bCplOpE`Yl}ArwJne@boCvb@~_CzXxqAnb@npBjLpf@fDrNxp@|rCdMbj@rSn_AzPju@h]~aBfR~x@lf@rtBlGjXbBjHbAlEbm@dlCt~@rhErKjk@nN|z@zLx{@hOlxAvHl_Aj@dKnA~SlC|p@\\nMtCphAh@vx@Klf@m@nxAmA~d@cErkAiBj[cA|N{Dvj@cBbSyA|PwPhxA{DdZ_Ihi@sMvq@mIrb@{Qny@sQts@}j@lhBuAjEmCnIkl@~iBs_@|kA}IpXubAd|Csd@bwAac@tuAk]xeAw]fgAmLl`@eOdk@sEbQoH|XwIda@{Hz`@qGp[}Kxp@oNjeAcJhv@cDnY{@rKqBnWiDle@UzDmCje@cArUsDlqAkAfcA@`f@@hd@r@jy@hB`z@jDnx@rD`q@|Gf_AnIn{@bRvtA`Vx_BvFr_@fWb_B|D|VxXnfBl[tuBzn@`_E|f@vdD~d@t_DvClUxBhRhCjXjBpWdBf`@vAfe@jA`h@xAr`Ax@v`AbCtdC~EpnCdJhnF|LliDpEr|@rEbz@~V`dEnCle@xHxsAfAdQbIbcAjFfd@nNrx@nH`b@rHt\\`L`f@jRbp@zc@~sAjaAtwCj\\hcAtTbx@nXvdAnRt|@bNfn@lL|o@~Hrf@|OhlAdQhbB~AhO~L|`B|GlxAhExyAlHvfFtDjhCzB~iAbBf}@tHtaBdQ~cDrMbpBnLfyApHn{@xDdd@nZtoCpTrfB~\\daCdApHJx@fK`z@vCzUvA|J|Lh_AtFdc@|F`j@pDb]`MrpAhDx_@rIt`AhQvaCvClg@|Bf`@`G`mArDl`AvG|fCvInsD`HdbExP|mIrIxeDhMboDxGj|A|Lr|BjGf~@dEnl@|Dbf@bDna@pB~VzOhcBxMlnArG|h@hGji@p^nkC~_@xbCvPr`AdQn}@|Gp]lDnQlUlgAzq@~tC~AzGjh@zqBjl@prBjs@t|BfI|Uxu@xzBfIjU~}@vfCd`AxdCjuAhoDhxAvnD`fCxpGrq@ziB~p@xiBrd@zvAxZbbA~YpdAbJn[bHjX~VfbAfQfu@xOjs@nYjvAlNpu@dOzz@~Mn{@hY|oBvOzmAxM|lAnM~rAvK|nAvPfjCxIzgBlJhhCvC|qAzAtqAtApvBIz}B_@zu@IdYe@vu@wBlcBqCnbB{HvjDyChqAiBlp@{GdlBcF|fBsAz_AoKhxDqBdw@SrHo@v\\yDfqBKlEe@~UqAhdA_Ahw@]ju@K|d@EvOMvo@?bc@Bpa@t@r}AfBdeBbCz`B@RFxCh@vTr@zXfFrfBv@dXnCvn@bGvwAzGfrAlIvqA~H|iAlJtkAh]luDfRxdB|OpqAnFtc@tQltA~QjsAjT`{AdThtAnTzsA|TxsAfUhsAzEbYzg@nsCrd@`eCpg@dlCxHbb@lDvQ|g@`lCti@ptCrDbRzjAleGr|A`dIl[xdB|DvSruAlfHjvCjlOtExUbgCbyMb_A`}El{A~}HbE|Sbe@x`C~d@~~Blj@tnCxZhyAdl@`oC~\\z}Ax]j}AzOrq@nk@lbCnc@pfBbp@bkCbJf\\tm@h}B~h@lmBbl@rrBd_A~_Drj@~hBj^viAlbAj}Cba@nnAvh@l}Ah}@~mCffAj}Cvh@d~Anv@f{BtgAtbDbWzu@`s@lwBfThp@nh@`aBhm@`pBtj@fmB|Uxz@rt@zpCzi@h{Bl]h|A|]vbBnb@f{BfYzbBdXheB`Z|vB`Er\\zJby@nMniAnMxoAtLlqAdG~t@~Epo@jHzbAlGhaAfG`iArGfrAfEjcAbEbjAbDllAhDrzA`F|`C^rXhB`hAzAf`AxAx_AzBdeAn@p_@DnBtAzy@nDx~AdB`v@zEb}AxEhmAlD|y@bDno@vEhy@|Fv{@zKxzA`Ib~@dIpx@~MhpApOxoAbTbzAjSvrAlLjp@fLbn@jEdTlHj_@dJhe@`Mbl@`Nnl@vLhh@xMli@xVp`Ar^xoAlTbs@`V`v@pIxVfPzd@`i@dzAhX|s@f^r_Ad^j}@x_@r`Aj`@n`AneAxjCpI~S|`A`_C`_@|_At`A~~Bdy@hpBlZ~t@zrA|cDvNt]|n@j|AdcAleCviA|qCr{@pvBvHtQzz@buBd\\`x@nj@~sAd~@tzBjo@b}A~_Az_Cj|AfuDjNd]v^j}@f`A`_CtaB~_EpB~EjFnMl{@jvBdNb]j[|u@h~@vzBda@vaARb@`b@fcAtJzUzMd[xj@rrAnk@jsAnJpTtm@`uAp\\zt@fVli@voAvlCnJhRnShb@j[hn@hYrj@ja@lv@~d@fz@jn@`hA`q@~iAfp@veAri@hz@pt@phAhJ|Mj]ng@tu@|eAxd@lo@~e@do@j_AnoAnf@ho@jlBz_CfKdMj}@hhAr}A~lBnaAjkAfqCrhDfm@~t@zGjIjMxO`Q|S~BtCzg@pn@rmBr~BvUlYtZd_@vL~NzbAnmAlf@tl@toA`~A`a@rg@rf@vq@bObT`QpW`P`Wf`@lp@hWrf@`Ypk@jMrY|HjQbTbi@nP~c@dKtYdHrSjNjc@|Llb@zMxf@lMxg@zNbo@lIp`@hL|k@rLto@xXf_BhUtvAdh@haDvDzU`vAtxI|s@fqEdq@neEfeAjuGtaAffG~s@xpEd@pCll@ftDbb@zhCjSpoA|AxJdPncA`h@faD`m@~sDnU~tAlVhsAbN`q@tMvl@nLlg@rMxg@tN~f@dPbh@hT|n@jRre@pMd[zNh[pZrm@tE|IlOzWfQbZvTn\\`QlVxMfQt[|`@la@`e@d`@jb@j^~]dS~RrcA~_AlcAf_A|i@nh@zVbV|MpNfr@vu@pa@xg@fN~QdTxZjY|d@nVlc@lOzZ`LlVdRzd@zNnb@jMvb@jMbf@hKff@tHr`@`Lpt@tH`r@fF|m@pD~i@jCfj@fBng@lAhj@v@th@d@|e@KzgABtP}Av~B{Er{CoBjcBy@x{@]zq@@ps@Z|t@t@dv@nCxgAhErz@bDfg@`H|u@`Hbn@bGja@fHfd@vJ|g@`FjU`Knb@hMhe@bO`f@`Ojb@`Ydt@dVrg@lQt_@bPb\\xUje@xSfa@pNpYlU~f@nOd_@rNr^b@fA`IrTtJp[vItZrKdd@rKxh@|DtTfGx`@hFva@pFph@xDxi@bBxX~Aj_@`Al_@x@v^Lt\\W|h@i@dh@}@n^oAtd@}Ate@iIvfCqA|g@s@jb@[vc@B|f@Xb\\v@~`@fBfe@fCpg@fCf_@jEzc@vEf`@`DhUfGn`@tHnb@fGnXvGjY`I`ZfKv]pOzd@dIjTlGjOdKzVlLlXbPb^rRv`@nK`T|Vrf@|\\zp@vBhE`k@riAtUhh@pShg@bOv_@rYxv@|LpZ~B|FtMx^tMx^zc@`oAhOdb@zEhNpXdu@|Qrf@lDdJdOp`@xFbNlN|\\rTbf@~Udf@`HpMdIzNlSj\\fXbb@fYj`@vTbXzFpGtM|NbTzTdRjQjCdCvPzN|Q`ObYfSd[dSrm@`\\fObItj@~Sbc@nN~d@lM|j@pNlm@rMlnBx`@zHzBrWxGrI~BrV~H|WdMhW`Mr]dSb^bVdMtJfOjMfVxTpUhVrVzWf`@pf@pc@vi@n^vd@|JhLlU`XxS|S`NvMbOrMlRpNrSjNlRjLhSbK~YxLr^jMj_@zJrRhE`SlD`h@lGnh@`F|zAdKdi@`BpnAlCry@rBtx@bEfi@jEbb@xEzR`DhPjCjf@fKfXtHx^lLzZvLn^`QrWpNhWdOdK~GfFtDzFbEnZdUbYnVd`@`_@r^|`@d_@he@`]bf@pKnPjKbQh_@~q@lOl]vPz_@dUzc@|}@vpBfx@vhBjR`b@rj@nhA`Pt_@f\\tk@r_@ni@b`@vd@jHhHzEzEhPnOtj@~d@bk@bd@vIdHzw@~l@xrAtjAre@ff@v\\x`@fk@bx@dVva@hRza@rJjVdPba@jJfWbMxb@xKf]lCnKxCpL`Qrv@xLdt@bFh^rEv]tBvQzElj@BZrC|b@zBpf@pAha@z@xl@f@pt@q@hy@o@hXu@tWqBbe@_Fdw@cGlm@oDp^{ApNqD|[uDr[yKvz@qCrRyGd\\cIja@iMho@qC~MiI`d@sDxSyEtY_Gx^kH~b@kI~l@}Ebb@qGzo@aCxVsEdl@u@hLaAtOcAvPcA`Tu@lQEv@{@|Sq@lUi@fSg@hRc@|QiAjf@kB~}@wA~t@iA|b@cBrd@aCpb@kBlW}Dz_@aDjWsEzZcGz]yFdYeIha@mRtz@sR|x@cQfv@_WldAwQzu@aFrSoGpXyF`V{Jxc@wJve@eHl`@uFfY}I`k@wEr[eEjZqAnKsB~OgDl\\aD`_@kCr_@eBfYqBx`@w@zTo@hWg@j`@[xYAf]j@pn@l@n^bAn\\l@dNj@|LvBt_@lBvXzBhWxD~]lEz]hDbXjFj^xGha@fGv]~N~w@xOrw@~SxhA`Jvg@xLts@fE~X~Db[fE|]nDj\\~Cj_@fCj\\rBr`@pAv_@h@|VZzTVxWFhWGjVW`SYtOe@nVgBlf@gChb@cB~U_Fzh@{Db^oEp]uGhc@_K~o@u@rEeGj_@yVbwAkJ`l@kA`IaJbn@aEjZeF~d@aEnb@m@`IkCf]yB~_@kAp[k@nOo@x[UvOInFMje@NdZ\\xXj@zW|Atc@|Bxc@fDtf@xBnVdAtKhFxc@pDnVhDnUvBbMfElUxHx_@~GvYrE`RfGjUvMje@vFdR~FdQjShk@nIvTdQlc@rB~EdCjFhOf^xNl\\|AhDlDxHrShb@nRf`@jDvGdClEtFdKbLrStDtHdXvg@hFxJ|Wte@tXzg@lNxXlSfa@hKpTjKdWbHvQnHnS`Ll\\zAfFxDbNbEtO`E~OxBjK~CvN`FhW`EtVjE~\\`Dl[lCz\\bEhk@fGfhAlGhiAzDnk@`Gdq@tCzVfBtOhHvj@jVr`BfVbaB|p@tnE~Fp`@xBxNzKln@j]l`BnUhy@nVps@dJpU~C`I|Qp`@jRr^bKtQtFlJt^ni@t[na@nmAlkAziAnaAhcAf}@~w@j~@rk@v{@lk@~hAncAldCj^x}@pt@fjBb^tz@tVvg@nZpf@|^le@xk@hi@d\\vTx_@rRhV|I~^fJ~c@bH`WvBz]zCv_@nCl[bD`KvAvMxCp\\~J|TxKvUtOnTbS~OnPp\\zg@lIxP|I`TpMd_@lNfg@fN~o@`Mjy@~OpiAvMltAhGbu@~Dbt@hF|jAdDdyA~@z~AQlx@Mbp@w@nkBgAv}ALpyAPvb@HxFhBpz@`D|y@bD|g@xCz_@`Gnq@`VtgBz[bdBjZfkAzKl^x_@jhAne@rgAj_@pt@b[xi@j_@`n@dO`VfS`[dyBvmDrLdRjz@nsAfH`LxuAzyBfMvT|KhSfXxh@~O~^dQjg@~Nbl@`Jxg@vI|p@`Gvx@rBzm@fC~rA`ChtAtBvoAfC~v@jFby@pQbuApZdvA|Rjs@zQdl@|A~EdJdY|P|g@zLn\\jUjm@tPh`@zTzb@nC~D|OnUvOpR~LdLdShQz\\`W`l@t\\le@rXhk@n^rg@bf@t[ta@fTx^dTjg@tMv]pCtJjFvQ|Kjf@zIff@tL`}@hYrsBdMt}@lSvnApb@|rBxTv~@Lj@v_@jwAzs@vkCnhA|_Ef}@pvCz_@vhAtzAroDzm@pwAxU~g@fj@fvAt_@dpAbVtcAh\\t|AvPvw@fQjs@p`@`yAhXbw@jXrx@tIhWr`@reApQth@dN`a@~L~a@hN`g@~N|h@nGdXrS|{@pGd[zEbUpIf]v]r{BnN`fAnG`j@vHbq@tHz|@vJvrAvIbaB~LlsChGlwAf@hKxA|Y|Pv_BdJbl@jQfbAd`AdfF`d@nqC|XtsBjHti@bGpk@lEnl@vCte@lA~f@x@dg@Jt`@c@jh@}Ahe@qBvg@oCd`@wEhc@yEz\\{Irg@qGh\\wNpk@iuAvjFsnAtzE{L|h@iNbs@cInd@cQ~nAqF`k@oFdp@cGniAiCh~@y@~cAV~bAvA|q@`C|q@rJ~}AhIzx@`BdN`Ghg@~^ddClv@ngFjpBtsMdSdsA~Fze@zBfStCtZlC|[vCzl@nA|c@b@|_@@vUQrT[|UsAfe@_C`c@mCh`@{C~ZuEv_@gF|]kIfg@mJ`h@_K`i@yIzg@eJnm@eDzWiCpUwCd[eCpa@wAt]y@hZ]zTQz`@Gt_@Hpu@`@lsCThxArApjIB`Kv@fnELpjBCr\\AzKoErjBy@|eANhbA@zFCvy@lJdxDAx{@XhnB@~C\\rmAz@fq@pB`v@tBhe@fC`c@xJtnAzNpeAnPpaAdFvU`Onq@tT~y@vbAr~DdVdiAzXlrB\\dCrLxoAdGbgAxCn}@zBn}@l@p_AoBrhBiUprFiG|jA{V`hEyM|kB{NjwBkLvwAkKpqAwNvdBwk@p_Gis@lrGqp@ljFms@|oFqZtfCsIpnAaEbhAwBh`C`D|dBjJx~AtRfeBd]rxBxw@trDtS`hAnLlv@hFn_@hHto@xEfk@jDzj@nDb|@vA`fAFzu@kAzcA}C|~@aHvgAmH|t@uM|gA_ShkAip@~oDwJzm@}LxbAiJjbAoFp_AcDt`Au@xu@?zv@nBbkA|B`t@`Fdy@fKthA|LbgAhmEz_]`KvdArGr`AvDfr@|Cr_A|BpiBbA`{D~@z{@lBr_A`EpbA~Wp_FpGpmBpCzhA^jnBgDlsBqF`vAgKn|A{ObfBmLxgAuSxcBsCjWaJfw@sGpv@{Fdz@oDbz@yAhf@kAn|@Wrr@|@jn@lApb@fCpw@dFf{@bPptBlLfnAxZvoDtGv}@jIhhAfLrvBnIrtBhIlcDhBjfBLxS`@nw@mB~xFyDfuBoHp}BsJhuBsGhnA}Gn`AeIjfAmPdhBkLdhA]bD_XbyBiSdwAsTtvAoV~vAoXhuA{o@jwC}u@p{CetAblFkv@~{CwTfbAwShdAyXjgBaOljAeOz}AwJ`wAuBl`@}Dp}@eCtbAaBvlAIvEFdiBp@vw@HpJpF||CTpMhA|o@t@l`@dRpcK|Kx_GzCl_BnFbrCdD~oCRdo@Ul~AkDvoBgJbrBuBr^cIbfAyi@tzFsOxcBgMrdBsJdaC_C`yBb@pgAlBbiA~HbrB`IreAjKrkAdY`vBda@hxBtj@z}BdtAhvEjU`}@fRp}@fN`~@fMt_AdIz_AvE~w@hBlm@~@p[j@l|@Sdy@sAbhAaFrhAeInbAeKx|@uMt}@ePn{@iWrpA_VbjA_UzgA}Oj_AaOtiAuKrjAgFj{@sD~~@yAzm@i@~u@Phc@h@|k@zAdt@`Dlx@T|F|HbgAxKlgAdQtnAhSxlAjo@zoD`Lvm@bDtQdt@ldEzT~uA`SzvAhVniCpOlsCrEhtBz@huBqCzgEmAftEx@|wEtBpoCvDdrCvHjvDdKppDxNnmDhXnoFj]~mFxb@liFb_AnzID^da@n`Dhd@ldDpD`Wt@~Evt@dtE`e@vjCjf@bfCne@b_Chb@fbC~Fxa@nFfb@xLxdApTvnC`IviBtEdwBj@dcBcBbhB{KdmEoB`bAiA~_AKbkApAjiAzBbcAjExbAhGjdAzIl{AxN`~CtAzuA?f|@{Ab|@eBxn@aDtp@gLt_BoKv_AmM||@iM~s@qC|OkHx_@yUdnAoQhbAyM`_AcIvn@wF`o@cFvn@sAh[mDtr@cC~u@qCd`AkBto@cEj~@uHraAgCfUaIps@qNd|@eOlr@qExS_[xgA{b@~lAo`@xw@eNdWuLbS}]lf@_Zb_@qp@`q@_s@fg@sy@nc@{k@fSki@tLmz@rL}h@pDqjAzByXq@mHi@gw@eEiw@aGqg@iG_]{GoeAuWsv@eWip@sYmk@cX__EywBsoBabA}k@uVcl@uR_PyEcb@iKaa@_KcdAsP_kBeMcsBhAwdAvJodAtOa`AfTmzAn`@{rAj`@w_AxT__AdM}q@dFo{AlAuuA[{uAnAuiArG{w@~Jem@jLuq@lTqu@d\\ax@vc@il@zb@a`A`z@sb@~e@w`@bg@aSrX_RlYsOdXuWrd@ed@p`Aw[pv@wc@vtA}P~m@iO~m@a\\x}AuJlm@}QdjAgAxHyA`KsGpd@{Uf`BmEbY{G~b@{Xd}A{Mpn@uPnu@eYbgAmZhdAic@fnAm_@n_Aae@xbAgb@p}@ie@l~@kgChzEey@v`Bue@bgAqb@jbAsHzQmy@|{ByQ~m@wQ|m@qg@rxBuR~}@yTnjAiKdq@yFn_@wa@tbDm@vEkJ|~@kQ|iBeJv_AqR~uB_IpbAmF~x@mJthBmBzl@[dMsIxkDkPdiIsAlp@sEfeC}BtnA_Az|@Hjy@n@nh@rAnh@tAp_@xFh~@tHz{@hEl^bIrk@pI~h@~XrtAz[~sAba@d_Bjc@vgBry@teD`XnfAvLri@zOby@xMn|@hIlq@xE`i@zCbf@~Cjn@fBxp@t@`bAi@`dA}Bhv@aC`d@o@|LeDtd@eFhh@_Hxj@oCnRiGd`@_Hd`@oPvu@oMpf@kPpi@iMj]wVbm@m[ro@qZxh@}Uh^mi@bq@{xAz}Aw~@~aAwz@t}@{_@jc@yYt_@qk@zaAa_@f{@aSzl@gI~XeD`KcApD_BtFmW|pAyFda@aGjg@cEdc@iD`f@sB`c@wApc@c@nb@Mnb@f@hh@pA`h@vDfw@rHf{@jIxo@zFla@`u@hoExUnbBjOvlA|_@pjDtFxc@zG|c@bLbj@bGfUjFxRdIzWhWzs@v[v}@~Rfs@hKze@z[fjBpKje@rKpb@jN~a@fOh`@hS`a@lcAvbBhTbb@|Tdh@hS`j@rQtr@|VrhAfI`]dJ~\\vTln@nP|^lJxQvWnb@lNzQrNjPpcBz_BbQ|RnTj[rSf^vWbl@hVrq@~|@lsCrMt^~Mv\\lTvc@pUt`@tUb[t]~]tY|UnqAn}@fb@rYpRnQjRxSxYha@bXjf@`Qp`@tOtb@|Rvt@`Pvx@dHpi@vFvp@hC|h@vAti@rAhkCrArs@|Adh@nC|g@lFfh@jGle@~Ovw@~v@x}Cbo@hbC~L|f@fL`f@pKnh@~Jtq@tHnp@~Hv_AbFbz@nG`wAtEh~@fAhU~}@jnRrAn_@|@lb@Xlm@Yn`AcBxq@mChh@}Ezo@oInx@aPzsAoz@l{G{Hhr@uIx}@gGbx@mEtu@cC~h@{DziAaCtsAaNrvMuBdqAmEhyAoCho@wDlu@{LvfBoKxmAoOzuAcFha@wHxj@{I`m@qUvtAuOzx@cUpdAeVdcAuW`bAmXd}@eVzt@cWzs@iPza@eOv_@m\\vv@i\\~r@e^`s@a_@|q@s`@to@wNvTeZhd@gc@jm@av@j_AgJdK}X~Zod@je@gbBncB_R`VwSdXkd@zq@q^ro@ge@deAc]|cAeNhf@sM~h@kO`r@uA~HqE`WuIti@gGfg@mFzc@cFfm@wD|h@eEts@qGrdAm@rJ}Fnv@iDn]wDf]cEx[kEfZcIjf@uMvp@_Svz@m|BzdJqSn{@uR~|@uTplAkL~w@sJtv@_Hdq@oGnr@}Ehu@aErv@wBbo@_Bzn@gCtfBwBhsB}AfqBSj_A`@xb@v@|_@pC|n@bDvf@lFjk@fFjb@lGda@vJth@lK`e@~In]nFjQ`HbT~GfRnJ~Vt|@r|Br]b~@vNr`@xHhV`Ntf@vJ|c@bIte@nH|k@zEpm@tB`^jD|`Ar@`WrIfzCjC|~@dCjeAvAfm@_@`lAyAt_BdBx|@nCv{@zKjjAh@bGpIr_ApEd}@nJdfD`Bjl@dAtl@j@pk@Fjj@Qti@k@pc@aApm@UtIeAvb@_M|lD_Bjg@gAj]qAzf@s@`_@m@~k@Yvs@I|v@Ttr@n@fo@dA~m@b@hU~DjqAtC|p@dD|n@tSv~Ddc@jkInJ|jBpDxaAjCbz@pCtxAr@|q@rBbaFpAhpAzAf}@dDn|AhCt~@~DnaA`Ctk@vI|~AzKv`BtAlS`O`hBxH~x@vKncA`LvaA`PjmAbM|{@xNn_AhaApgGpjAthH`EhWlBvLhbAlkGrEr[lJls@tGxi@dMpjAzF`m@zFjo@rD`g@vD|g@VvD`Efr@rDtv@bCnl@rCfx@bBvm@jAzm@zExuC~Azu@zBhu@nCrw@nDfu@bEpu@~GbfApIddA|H`{@tJ|`AjMdiAvc@nyDhIfy@tGrr@lIpaAxIhlAnGfbAbFl_Av\\vnHjFv`A|Fl~@|Ffx@|I|iAzKrjA`Fbf@dOlrAtOnnA`Jnp@|Gte@v@rF`Mzv@dLbr@tTjmAj|C`fP|a@hzBdPn}@bRxgAzPfiAlgCp_RrNnbA|ThvAtWdyAnNzs@hWxnAbUvbAf^rxA~[flAz_@`rArVbx@lUhr@``@xgAn^n`AzWrp@x\\rw@dWvk@xYdn@`i@`gAltAvcC~\\pj@zc@`r@j_AluAdqBtvCbL|P`HvJtK~ObIlLzpFtaIni@l{@zl@hbAxl@vdAnvAdkCz`AvpBnPp^xj@voAbq@f_B?@zeAzpCht@tsBrWbx@pbAlbDngDlsLry@lqCbL`^tMva@xh@`aB~pAdsDzzB`oG~_@hlA`]`gA`h@|fBjCjJzdAd{Dhq@hsC`n@duClnBzmKjXryAdXnsAh_@hcBnrEniR`e@b{BhXjyA~N~{@vPzhAvQptArL`cAvLbkAzIv~@zG|y@rH|cA\\hGtK`kBrEhiAhDxdApCjlAfB~lA~EbcG`Dl|ChDbkBfE|}A~HzxBdYdaG~C~z@~CvfA`DzaBdAddAj@jdABxs@Mjn@Q`z@Izd@If]{@reEE|dA`@|fAl@x}@nBhgAT~JbBho@jEluArDz`AfDru@dI~tApJhpAjHp{@vId}@lOntAhJbv@tN`fAbLjt@`K~n@vOp~@pb@rxBhKpk@xKdo@jQpkAnRpwAzHjq@t[j|ChJr{@fJlu@pNzaAxL|t@lEjVjFxYlKlg@`Qbu@bB~GrKlb@rK~_@`Pvi@pQpi@bY~w@jM`\\nStf@fRva@`Sha@`Qx\\pT``@hTr^p\\lh@x~Az~B|bB~bCnSv\\rRl_@jQb`@bL|XpKbZbQdk@dLlb@nN~o@xKbm@fKhu@nGhm@fEvj@nBb]~Bzu@x@po@Chm@{@ps@wAdh@wAhXwAhXuFpq@wHdq@sFba@eLdp@qOhr@aN`g@iQnj@sIzUoQhc@}rC|`HsaAbaCqNl]kl@xvAiQpd@}Xfy@iUzz@yQp}@oHvd@kKbw@mG|p@wFl}@gB`g@mAzr@W`{@dBnbAvDndApTnyEnFdxArCjwAl@tt@Bd[B`^Qhz@gB~nAgB|p@qQncFwEdqAiEjrAaH~oD{Af~BYnhARfpB~@vyDvAj{F@nj@k@p_AkAr{@gDtjAqD`z@kHxjAeHd|@qHhw@yHvo@_Z|xBsl@veEoJly@sE|i@sF`cAsBjo@Wb_@Oj\\T`m@lArl@fC~p@pErp@xJ~aAxOtiAbTlxAhGfg@zFzg@dHt`AxD~aA`Axt@?fy@uAvu@iCbu@qLn{BuE~bAuAbbANdbA`ChcAjFfaAxIn`AxL`}@zMtt@pN|o@vOdl@fZ`~@n`@zdA~\\h`AjNve@~Oho@~@xE@DxKrj@nGta@rCzQnHfv@bHf{@pE`|@lJfyB`K`}Bx@tQzFfaA~Dvf@hFje@~Ifq@jJ|j@|Ht`@vOdr@nOzj@vTrr@zX~v@tV`n@dOj]xWlm@ri@diAftAvrCxj@fnA|m@b|AbVds@~Xv`AhPjp@rM|o@zKjq@|Izr@hGhs@pEzs@lDbmAPxcA_A|k@?Je@|XsElbAuHb_AyJhx@cPhaAmEnSCJgCjLqVrdAyo@rlCiArEmJd`@aMxg@cL~d@yAdG_Kza@ocAreEcOzk@oNvf@iJ|YiJfXkL|ZiQnb@cTvc@wJnRcUda@uJhO_Zra@kSxWwx@lcAcb@zj@oVl`@mSd_@kOj[aFfLgO|]aOnb@eNde@}L~d@sKre@cIxc@yJlp@_Ff`@sFzi@oDxd@oBt_@i@`MkAt^m@z\\[dc@?la@`@ze@|@~e@bBld@~Btg@hD|k@tCfa@n@fJ~Dre@~Gzq@|Flg@lHrl@bIhj@vIhi@dMds@vKfi@jN`o@tNpj@jJ|\\jNxd@bP`e@~Pvc@xQ`d@vhC`iGdc@biArSrl@~Vbx@pPhl@nOpl@|Nvn@dI``@jK|h@xKzm@~Nr`AhGfd@`Itq@nHps@pGlu@vDth@xClf@`Evw@tWbnGd@jJlH`pAbE`k@`Evh@|Gpw@fE~c@dGhj@`p@d~F~QfpB~{@bvJnFnk@lFph@hGjj@nGjj@dFxa@xFjc@nMz~@tB~NdJfm@jSznApOh{@~f@nkCzNrz@zMfy@lKlu@rJfw@zIlx@fId~@hH|}@`UpnD`J~lAvJx}@vGjd@bHba@~Hj`@zL`h@pUry@d{@jqC~Svv@rPjq@~Lhn@|Jnj@zMl~@dFva@vI|}@hGf{@bChf@f@dM|Ap`@xAxs@n@dm@rAfeDhAztAn@be@vBngAxAbg@vC|y@bWxlFfChj@dp@b_NzEfbAbHdxAb@zIb]heHrJlbBfF~v@tH|aArNb}AzDr]pP|uAlLp}@nu@vnFjN`lAjIp_AlDdg@pGlkArM|eDhDlr@fE~s@vF`r@dKr|@pIpl@nOj|@je@hcCz[teB|K|t@xH`s@hDhc@~Bx_@pC`q@bAbh@Xr`@E`k@k@he@mAxb@{Bvg@yCvd@scAbdLoIxfAkD|m@aC~y@i@np@Ddy@fA`i@tDzjAxYr_HnBxh@lAf_@xBzz@vAbdAPft@?fo@a@rcEBzk@ZbeA`Bx_B`DjxAvCraAfDny@nIh}AvKv}AlrAnmOhJrrAtGnnAfExoA|AbaAz@nrAGdm@{@vfAgRpiIyBflAUfc@Hje@\\j\\nApo@zCpn@~F`w@zG|o@lJzq@nj@vtDbL||@dEjb@~Dfh@hCjf@~Bhu@v@dn@Fp]Wfe@oA~j@uBji@sDjn@yFtm@uIhs@sHhe@aItc@_dChcLwS~hAeMjy@mJru@cIhx@qEdi@eEdo@}Crk@mLx_DcA~Xi_@liK[|Io`@lkL{Bb`Am@~l@Irj@`@nx@lA|s@rB~o@jE|v@|Edu@lg@lrGzF~|@tDp~@rAti@nAtbAFdq@{CjeJOjf@cBjbFqBfgGoAneAkAnp@sBvu@AJoDtw@gEfr@mEnl@{Fti@}Gpl@eHxg@wM~y@wK|k@mRv|@}Ur`AadB|iGcW~aAoM~k@_Jtd@wHvc@cNj`AwJp|@eExc@sE|l@aEjy@}B|q@qAbr@a@bz@Tn}@jAvk@dAl`@hCjr@fCte@jG`z@tFpl@tp@hnGhB|P`d@xkEbJniAfFnx@zCln@|Bln@lBreAt@tt@Ch}@eAhlAgBvu@cCju@mDfs@mFxy@_Hzx@eInv@{Fdf@yHjj@eH~a@uq@x`E{mCpuOoQfhAsIbs@kGfq@gErt@{Bnu@aAv`AXhk@dAxm@tBfn@`D|h@~F|r@rGxi@tFl_@fFzZnKdj@`Odn@rPrk@lPhf@nNz]tSzc@`KlSnLvSjXra@nVr]rc@hl@leAbuAnYbb@pSj^|Rv_@`U`h@bRrg@xJ~ZnJx[jMrf@xKdh@hNzx@fJfs@pEzd@~Ett@xCbv@|Axv@H`m@o@dn@gBps@}ObiDuNl{Cex@vxPqD`|@y@ha@Mh`@Epm@h@vk@`Btr@vBbi@jCre@bDlb@|E`i@xK|{@bG`a@fHdb@rJje@jJla@hKpa@dOlg@`Pbf@jWfp@`Qn`@nQr^nWhe@`h@t{@pk@veAjZho@`Tbg@vPxc@rQ~l@vTrw@xObo@nK`g@xW`|AfdAftGhyB~fNvLzu@lw@v`F~_AhaGtb@|tCtZldCjJ|~@pIn_Ady@hnLhi@txH~TvoD~F~bArDny@ThF~Alo@x@pt@d@`jBrAd{@nBhv@|Crj@dEbj@lHhs@lJbr@zFr^v^z}Bv@~E~Nv~@`dB`wKrXdkB|BtOdFd`@|Fzc@|KhfAfF`k@lE`k@xDjk@dDbl@|FrqAvBh{@nAzx@r@`y@Nrw@g@jy@w@nv@cHn_DaB|o@{Bxv@{CheAi\\jkMkQ~zGw@zZyGreCiG~dBuGhqAiNztBsHp`AkZzoDeL`yAuFbw@{F~}@aDdo@qDdw@wBnm@gBlk@eBjv@y@de@k@fk@g@jv@[x|@?hg@|CxrMEhaAi@zm@{@dk@wAne@{Cpq@cE~n@mIj`AoK~}@iM~z@oEzWig@voCqKfp@yMr`AuKxfA}Cv_@qB`Z}Bt_@yCpx@mB`s@k@hp@Cnt@^tk@vA`q@pDdlA|S`nF|`@bcKrI`uBvDvv@bItwAxHbhAxHvbAnNh}AriAlfLfG`m@dEra@|cBjwPpcB`sPx@|I`_@lxDhNn`B`Kf{AfHhlAvFvlApDh_AbDhbA`DfpAjClhBp@r{@Tvp@Lfp@K`bAi@xgAeAtbAmKjhGsBhuAm@~`AKx~@V`qAt@fy@LlL`@t_@`Bpx@@X|Bt|@|Ft{A~Dbx@~D~s@rHhgAzGnz@lKlgArKtcAlMleA~PzmApRrlAnTvnA`Rp`A|TvcA`_@`_B~{AdmGnc@jtBzSvhA|RvkAxUh`BxgBpfN|yAvgLpuC~~TrPrkAtKnt@tKvp@jWlwArLfm@zNpq@~Z`qAfVn_A~`@hvA`xCb~J~h@|lBfc@feBvTp}@lb@flBnl@|vCbf@`qCbVhzApX|oBlNpgAxYbfCxQb_Bb\\`oCdTbzAnU|vAjRvdAdXdpAdb@dgBx|Bx`J~pBvbItHv\\la@`iBzN`s@rNjr@zh@zzCnVt{AvTj|A|V|nBX|B|T~nBvMnrA|LrtAbLrvAfM~jBrJjdBvB`c@hA|UlFzoA|DjiA`GdzBxBtoAz@|v@jB~dCHbeAGbhA}Ar~DgYh~YIjPaAv|AMx_Bf@ffAvAbcAjBp_AjD|gApCpv@pGtnAbGd`A~Lb~AxJlbAjKnbAhgA`tJj@`FnJb|@hIb}@lLxqAhMz{A`P~`CxZjhFrNtjBvGhw@`Hfs@`hA~|JrSl`ChN|}BvIflBrb@tnLpFvzAfI`kBdP`uCp@~J|JbzAbGt|@dn@|wH~O|gC|FtfAvDb~@rBdk@jAbd@fA`a@`Avb@fAbx@tAv}AXngAWrfAeBvcCsC~tAmHzwB}Dx{@sNrcCiIdhAu|@d~JmTbnCyLxeB}LriCiUdvGuVztGkItzAiHxcAkOpgBeR|fBiNlhAsTl`BeS`zA_[paCoVjwB_QplBwMpjBeJxdBsHdlB{DniBgCdiB}Ep}JiDxoC{BnhAiA~ZuB|j@yBxg@gFffAaExr@wEnv@mIvrAoWvaEoHpjA}Bp^qKpuBiEf`AcD|y@{Eh}AeBf_AqAp_AcAxhAe@pgA?nqA@rJXvq@jA|mAdEx`CzCtiAnE`mA|FnmAnKzkBfNzwBpp@dqJtFfbA|GzsAzGliBjD`iBbBt}ATv|Ae@x|A?t@}ClzBsFlnBgMpeDkSzhFkIfsC{C~sB}@ndB@vfAx@jmAzApcAlDp{AvXluIbFpjBzA|vAUpbBaAzo@}Afn@sFxxAeJxsAuK|kAaOfmAgVx|AcL~k@}L|k@wLzh@_Uj{@}U~v@cm@hkBgD|Jge@jzA{Rps@}Obp@{Mtm@_Pdy@yNj|@qMz_AyKfaA}Hf{@uGlbAeG`oAkFfwAwL|oDoHz}AsIr}AmIfiAiL|rAoLhjAaKb~@iEn[gJdr@_\\`uBeKpk@aGx[iGv\\qnBplK}p@prD}SdoAsShoAmbAjqHg[xoBoW~zAw[v}A}UtcAoV~bAcW~}@mW||@uVzu@i`@tjAkLxZqPvb@wSbi@iLtO_OxZwX|i@mNtXqDtGkExF{FzGiHnGyFtEwU~NoHvEiCnBqDhD}BxCyCnEaDfHkDfKcCbMqAvJs@dKUtJThKpAxPbC|O|CnLfLn_@bMf_@f^tiAHXfHnUxDpJxEvJdFdJlHvJ`IpHtGzFlIzF~I`FdLtE~HdChIzBvLdDfb@`JlNfDxVvFbFs@nJ|BpKvBjOvBdzA~OfPhCzS`E~ZzHtk@~NxWfGpb@lIv`@|GrWvD`p@xHvy@nHbo@`D~c@jAfo@p@tw@a@|Z{@v_@{Apa@uBHA`]qCfb@iEja@_Flb@kG~_@uG`w@_QxfAoYlj@aRhi@cSfl@qV|kAgl@h~@mi@he@sY|v@ag@zq@ud@v{@yj@j~@il@vDaCzbAim@j}@ug@j_Akh@v}@ag@~{@ug@`mMc{HbXsNh[oOb`@{Pl\\qM|`@sMnTiGnUaGhm@gMhl@oIbp@_Hro@qDv`@aAjc@GdY^|]|@|ZvBbXrBx[|Dhv@`Mh_@xHtc@bJr[pGphAvShfHbtAha@fGvx@fNtaAxNz{@|Mdp@|Kfd@lI|ZnHjE`AxT|Fb\\zJp\\pLx]`Nj\\hOx]vQzRlKtSnMvBrAjQ|Kh\\|T|b@n\\luA`jAnm@tg@j`A~x@j^dZdc@z[vOhLte@j[bh@~[b_@jTl^bSbe@bV|~@pb@vn@tUj]pLf[dJ|VhHb^xHxe@`Jzw@zJbo@nEhh@tAhdA^n^{@bk@cEfFc@lOuAhQ}A|}AcU|bA}TjhA_[lwBqv@t{@ub@xfB}w@nnAod@b~Agd@zrA}Xpe@{HtN_Cfd@wDzFe@lvAaMxvAqBvdARxv@vCnbAxGtt@bJfSdChO~BraBtZhdBde@zt@dWxwFv~Ab`FflArgDbm@|qDfb@hlCjRtxBvGdCH|iClDnoCUrh@GppHuFd|DuQrd@wBvtBmOtvBiT`tCy\\~sF}o@zfCo]~tBm`@nbCyi@pvEqkA`bCak@li@yKj}@_NtgAwLniBuMvuAcCh`Bs@poBjHvx@jGlkChZrxCnb@hyDbl@zrCph@rqDnu@deB|ZzfAtP`~AjPtcAfHfm@xBro@~A`Td@vCBv]Jbq@Y|rBcEzmEc\\~UsB|jCcUnfEi_@~qDoXjmDeYxyCiV~vAqLzxDkRz{CoIfyDwIdnEiMj`G{QfbBqBzsAfBpfAxE`gAjLdpAzT~QdD~_@tJbkCrt@niA~d@baB|y@v@`@xrAn{@~lBjzAjqAvnAhjBxqBdcBnjB`xBb_CbiBvkBziB|iBzsAttAbmAxkAhoBvcBzoBf|A~aBtkAllCtgBxtBpvAdwBbwAxeCv`BvrC|pBnaCxqB|lBhoBbJjKhpBrdCviAhaBp~AthChgBh~Cnd@fx@t^jn@xgArlBfa@tq@jNrT`a@tn@dq@r`AjN|RzSnXbc@li@f_BrhBxsAtpAxzAtlArmArz@fwAd{@djA~j@|iApf@x_Bnj@jgApYv_A`TpEbAbw@lNnwAnSl{Cx`@baCn]bkA`P`Db@jzAnSt_AnRl|Aj^doAda@`f@xQf[rMfe@xR~l@zYt{@zd@zx@fe@hjAds@txBdsAn_CtxAbKlG~dBbbAhcBt{@hhAfh@vdAxd@`tBtz@dgD~uArhAvd@jfAth@~JfFrPrIjy@~f@jv@tg@jeAry@`z@ls@xf@ff@t{@v`Anq@bx@dfAxtAfeA~xA|uAluBtJrO`zA~bCh`C`hEnyI`uOpC`FptF~_K`t@vjA|eAxwAlD|D|dAhoA~gAthAjoAjhAjeAzv@jdAlp@xeArk@~z@h`@du@vYnyA`e@dGhBt~@tTv_AjQ`m@tIfm@jG~MdAdj@zDhi@pBlw@~@p`@b@hoAsBvmAkHhsA}NnoAoT~pAwZjdBsi@prBer@zaCsz@~aAe]n`Beg@||Aka@|`Bq^dxDgm@`lCu]xsBi[fcBwZ`_B_ZlHuA~PcDflCgg@flBuZ~sB{VziCeYteCyW~wAmMbE_@l{BaTbdCaVpkBmNb`B{Drz@G~qAbDnyCzSv}B`SdWvBjlBbPjmCnY~eDz]roCfWzvApIhp@tBbtA|Bv{A}AvhBcHdeBcPx{@yL~O{BpjC_h@hg@sNdeAcZlqDesAf_Cy~@bxFmzBz}FsvBdtCucAniEgzA`EwAfiFeeBfLqDp{Ayc@`[qHf`Bc`@~eB_Yn{AqMrsBaIfxA?p`BfE`iAzHr|BdXhyB|d@j{Bbr@~cBvq@ffElkBjKjEjYdMv`Axc@|n@hYt^|Ot}Atq@xiBtv@tkAjf@|a@tPl`Al_@pqBfv@xjAlc@~oCraAlwBrt@bg@zPxcFn_BpqC~|@nm@dSdv@nXhx@|Zb_B|q@|jB|}@`vA~v@rcEnlCf[zUr~B~aBpeB|mApn@fb@lf@pYnf@rX~bAdg@xtAbj@~eAd]zoAf[|mA~SbiAfNplAfIvyA`ErwFiHle@m@vlBkDndCeC~}BgBvrBm@rtCwA`bCqAvbB?lz@vAzfA`Grx@dH|bAhNl|@xPdsAp\\lfAp]`rChfAfcCfaAdcAb_@frAxc@xoAx\\vs@`O|}Bb^|qDde@PB|xBpYhH`Aj_BfTdjBrRvv@xEtlAlGf`E|KxbBlFncAtEzp@~E|z@dKh_A`OhnAzWdkAp]xlAxd@jfBdy@|gNnzHx[`PzVvKdeAl`@toAp`@n~@rTf~@tQjsA~QliAnI|uAbEvoAe@fZMlI_@d`@}Arq@{D|hA_MxMyA`_@oFj~@}PhUuEzYaGp~Ag^t~Byh@fcg@scLzcEa_Afi@wLpxByc@hpBmYdfAwKjnBgNd{CmRvdA}JhyA_RddCmc@zmBme@d|Byp@`y@kUruD{fAr`Da}@bpAmZd~@yQ`t@_MltA_Rtz@{IrhJiy@l~BgSfOoAtAMnpBqQvdCqTjnCsVfpBwPpNmA|}AgL|fA{E~kA_BziAm@vq@`A|dBrElnAnHn`AtHv~@|JrxAjSnpEv{@~hCjg@xaAbP|cBdPhcAlFz`Bl@|}@{Av~@mEl`BaPx|@yN~yAgZnaFybAlz@uKtiAcKbbAaEf}AyAbfAxAjpAbI~eDbZlE`@n}@dIhTnBlw@hHdtClXrqAlLvc@rC~aBxN|x@hH|hCtTrp@vEvp@~Ct}@pCb}@bAbcCm@xwB_FdSUnrEcKhf@yA|lCsFx_E_PpoCeSzeCkV`QqBb@GrsC}^hvD}g@|kDee@zyBsYtpBg\\raAkSjkAmXhkAa[f}A}d@~yBqx@rD{Az{@m^plBw|@|zAow@tfBgeAhpAoy@zcBeoAzh@i`@`Fe@`HkEtG_ErHgE`Bq@~CqAbGoB~FoAxFs@hH]|EAtEPdGl@~GjAjFxAbGxBdIlEpGtElEbEdGxGhE`GfDlF|EhJ`DvHjDxJbClIvBhK`BtJtDd]jC~WnEdh@xC`LzCf`@|Ix~@nIlt@pGjf@|PhhAnLbp@pOxu@rKfd@jNjl@~HpZnIxZnO~g@`Qni@hY`x@tZxx@pQpd@nbBzdEn[tz@zMx^nNza@nNlc@lNzd@zRdt@jGlW~L`j@|Lzl@~Kno@dJxl@hDrUdDrVvCxUxFxh@~Ebh@|Cb`@bCx\\|Bd^zA~VrBlh@pA|`@dAh_@dAdk@h@ve@JjMXtl@Bri@Wbo@OhZQjWoB~zAuE~aBmJtwB_Fz_AsRxoCmAjNsBlUqFrn@}Fpp@ObByWtyCiLvuAyEbk@aOvfB}A~UsCrb@oCdg@KjB_@|G_B|YqD|u@iB|a@wJlhDmBl{CTnaC|Ad~B~B`uEaAtyC{BtiBeI`tCoT|wEwTf{EcIp`BiEbvAcC~gAiAjfAiCbqDeE~vCgLneDmB~_@ARuLxqBiKtsAiKfjAO`BePx|AkRd{AkUb_BkY|cBuPj|@iP`y@wUteAc`@v}Aw[jmAkv@luC{n@x`CuEzPUx@iOtj@{If\\W~@yI`\\aTjw@iSvx@_Lhe@qPvu@iGb[iFnWqLzn@oG~^eQpfAaMr|@yI~p@iDjXUfBeNzpAgHxv@gG~w@{I`sA}Ev|@oDj|@{C|`A_A`^q@l_@sEn~B{IltEqIfpEmLlqDyR~kDaOdpBqLntAwUnvBkaAb_I_^vmCm@|D_XzgBcVxtAg^rjB_m@tmCiG`VeVv_AmXvbAsd@~{AkWxv@qZz}@k]``Aob@peAsg@|kAqh@bjAovAzrCe|Af|CwvAdsCcp@|qAyo@hqAeeAtnBky@btA_h@ru@yVr^]f@ej@hu@e}@vfAuaBxoBwrGzyHcuCnjD_iAruAcl@vw@gVd^}l@vaAyg@paAua@r}@ke@piAq]x`AyZfbAgW``AyQtu@aQtx@aRdaA{Mpz@gKfs@cHtl@mJv|@qJreA}B~^gFhz@mDly@{Bxt@wBtnAi@zaABh}@rBzyBxA|}@|FjsDh@~v@Adb@O|c@s@rk@q@p[kAhd@eBzf@oH~vAgJjkAmL|eAsMtdAaq@ppEgQj{AqNt~AsNvkBaIfuAiFliAsFtsBcCn`BY|zA`CreD|IpiDtTjqEdZhbGdIlpBvCrzBt@baDaDxjX^~iB~DziChDdjAlFdyB`B~q@jHv{B~CzmC`@f~B?ZkAjhBkFp_CyDneA{Df{@iGhhAeElj@sg@|gGoDd`@{IdkAoMlsBgKvrCiF~xD|@nqDnJxuDzh@b}P`CrvApAbuAo@~aB{EzxA{Dhz@}Fz{@sO``BgOjrAw]prBuuA|kGuLlk@iAlG{Gd_@}P|~@uM~aAwMxnA}GbjAmG|nAuDdiAcBttAE~~@h@t{@rAxu@zBnu@|GnsAhKxwAjHnt@l@fErKd{@bLlv@jS`oA`z@z_FrM~w@jLvu@rIfm@fI`n@nP~sApUltBxsAfaM~vHzyr@~Mn}AfKnzAzKnyBfDrfAdDp{AtAzzAJzqBu@zjAyEt_BmEr}AgJhpBwLvkBkO`kBylAhvNmDvh@gAnPeKrqByNdwEcB`oBv@jnB|ChrBpH~jBly@hfStHvuAxAlPnVzqCf]pqCvSpwA`AxGtWd|ArX~rAd^j{Aph@foBbl@~qB|r@voBp{B~iFbj@d~Azi@nbBpc@pbBd`@~kBx\\`vB|[||C`Q~uC`Hd}CBnhB}HhnHyAl`CzAf_CbKhtDzh@`~LvI`fBjX`mChRbqA`UxqAxXhsAr[`rA~_@frApb@noAvuAjxCd|@h_BrzArtBjeCvyChj@hv@`o@d`A~o@bnArm@vuAjXlp@dc@znAbc@dxApd@|qBtPj|@jQfeApW~pB|O|cBfJnpAp@bJ~HzrAhHtxAxHziCtBldA\\zRXbU`@|_@TzT`@hr@Px|@I`q@c@r`A_A|jAe@zd@y@|d@yAbw@{Apj@aBni@mBdh@yBbj@_Ctg@}Bnd@yCxh@qDxk@}Dbl@sDnf@sDdd@cEhf@soCn_[kGrt@iExf@kDpe@sBlZaIjkAaHvhAwBja@oBt`@oCtm@iGp}AkK|iC{KjpCyDh{@sGhlAcFnz@qGx`A_IhfAeFnp@aFfi@mIr_AuI`aAkK|jA}KxlAuH|s@uFjl@cFnj@oG~u@_Efa@eElj@eCd`@aDrk@kCvk@aC~u@cA~k@e@pk@Sxc@H`g@Rlb@t@`k@dAzm@`Bbl@vClu@fF~aAlFpu@nEtj@~D~b@vEzd@lFxc@vGtf@jFp^|F|^dGh^~G|_@pS`hA|SlhAdIte@fHnb@lGnb@bGzb@nEl]|Df]pDr\\Db@nD|^hD`a@|Cra@`Ct_@rBz]`Ddr@jBfl@bBps@p@`o@`@jj@V~n@TvtAf@jlDj@fnDFpk@Lrl@^ni@p@|h@jAzk@zAfk@|C|v@nDzr@pIbmAdEhe@xEre@fEp_@~E|_@`Fh^tFp_@|Lhw@vMjw@bYx`BpLbr@xK`p@tIhk@lJ~q@lKv~@rEdd@~Etj@lC~^|Bd]xBz`@hBh_@|Bhl@vAtk@zAh_AhD~wD`A`{@bBn|@~Ahl@zBvk@|B`f@vCrf@|D`j@fEng@pCf[dD`\\tQrbBlRtcBtIpy@~ItaAfDha@vCba@bFfv@dEdv@~FxqAhHncB|Dtu@zEhv@lHz_AlI~aAvF|j@nG~k@zoAl_LxEjd@bE|d@jJnkA`D`d@~Cdf@zCrg@|Bde@bDvv@~Brv@zBbbApJxjFxIdiFjB~gApApgAz@ziAZpfADbx@Kxu@m@|oAgBp_BoAz|@{PxeLy@nr@c@dq@c@fwAD~xAL|p@\\vq@j@zq@x@bq@fP~nJlPdnJfAtl@f@hY~@l|@Xd`@R~`@A|_@Gfa@k@tk@q@xa@eA`d@_Bje@sBzf@{Bnd@}Ehv@yFfu@gHru@iIxs@}Ijq@mLzv@cLxo@wFlYoFnXsLni@uL|f@_ApDyLtd@aPlj@_Rvm@iHlUIVqIlXy`@xoAIVuDnLazCxqJkb@vsA{BbIGTa[|gAmKzc@GT{j@x`Ccj@fiCcuAnkHyt@roDeMlm@_ZprAe]~qAmX~~@}d@ztAke@xmAge@pgA}Yvm@qi@vcAqe@nx@eUz]GHkDlFwV|^GJsPvVwtCb`EuHrLyf@|y@}Rz^yWrh@}Ufh@mMpYim@f`B{e@x|AaZvjAeUtdA{RhdAiCzNuLzw@}Grf@_Hxj@qF~g@wFri@uB~TwC|[eHrv@kRhsBeJf_AwAtNgOpsA{PbqAcRfnAwKzo@sNbx@u[b~Ag]dxAqX~cAqf@|bBADgJh[Of@ud@dsAkInUmIxR{HvQov@`hBaF~K{F~L}FjKsFjJyHpLoJlMo_@nf@kLnOcGhJoDbHoDvHwCzHkD`LiC`M_BvJsAdL_AhMa@fKIvK?rHNpHXzGv@vKzA`OpD|XdEzYxEfYdKpi@bJbb@pH|YrIt[bHpVdJbXzGnRlF~MfEjJpEnInEtG|FlHxD~D|FrEdEdCnFdCtGhCfH|AdGn@~FR`GCbHo@dG{@nGqA`UkFtF{@bGi@nDUnGHdEZrEn@bF`AbFzA~d@bRtVxPx^nYt^~ZvWjV`[l[re@fh@`s@h}@bLlPva@ro@hYff@~\\~n@lXvj@tIlQbq@byAxoGvfN`j@tiA`Y~h@fZ~h@vZnf@t\\nf@hSpXtTnXlUvXjWbYdiAtiA~nAdlAjk@zk@pUfWhYv[xXx\\pW~[jTvYrb@vl@h^xi@d]ni@rc@xv@nUvc@dTda@bSja@tc@naArv@hbBp{CxvGhf@h`Ala@bv@fh@r|@dj@lz@n`@~i@~a@fj@rcAbmAp\\t^nc@|c@jhAdcAjn@df@np@de@xm@``@vk@z]~nEbeCxAx@fb@pUv|Ad{@lm@h^tXbQlg@l\\~a@xZpg@zb@hd@v`@pfAhgAphA|tAjg@`s@xj@~{@nt@poA`s@nrAn|@zfB`{@rjBf~@j{Bn|@x{B|w@d{BhOzc@hf@twAno@tsBb`Ar_D`aA|~Che@xwA~g@zxAbp@poB~l@|tA|i@nxAfH|Od~AhmDn~B~rEteBdvCfvAx}BdjBl{C~gAfgBzw@tqAb~@nzAbe@hs@d_@zi@z`@li@r[t_@bo@bq@v_@n^xUlRnXxSjn@jb@`n@t]d\\vNxf@hT`w@xVh`AlUbb@zGdz@`Jbd@dCfi@nAvaAi@lr@qDxk@eEbnBwNlbAqGnSc@tbBaC|i@d@fg@dA~s@tDbx@zGpr@jIpfArQj{@xQfZhIphAx[|i@|Qvi@~R~eAte@pp@jZby@hb@rh@bZlh@f[|f@z[zf@n]nu@vg@fs@jk@p^n[da@r^f{@`{@zc@he@`LrLdWhXzjBfrB@@lo@zr@rs@~u@bq@lq@bQlPbe@zb@bVjT`TpR|VvSbwEh}DxfF|tEtiGjuFffBnyAreBdwAt~@nz@zz@t{@xw@f}@ds@fz@`h@bq@xg@fr@rqA|fBfZ|_@z^vb@j_@f`@|_@t]v`@d\\~YbUpZjSn`@vUr`@nShvAxk@zd@zMbf@dL`dAbO||@vHle@xAxi@Zrq@aAne@kClk@iFfWoDtWqEjV}EbWoGhc@_M|GmB|h@kQdi@eTbZqMjp@qYj[iMj^}Nv`@uM`_@uKz^qJrb@qIj_@kEn^eCzc@cCjd@s@df@Wlh@bAbq@dCno@dFbo@xHdi@rKrm@fOfl@vQ~h@pUrd@dT`e@`Vpe@vWtr@zc@br@hf@pnFhxD||@`o@z}@`p@tz@zo@dy@rq@hh@jd@ph@je@zv@vq@fr@dt@vfBpjBzm@~t@vM~Olw@~`Afz@hiApw@dhAblBvuC~kBbxCxY``@xNfSvFrHdGxH~GpIfHpI`HnIfHfIfRjR`QjQvHpH~JrJdKrJxKxJxKdJbKhIbLxI~KjItFbEn@lDfpA`~@r_@vXfZxTxIfH`HjGhGpGhFxG`FzG`D|EdCtEhEpIzCpGZn@tGpNnHbPjd@zaAvQf`@tChGvCfGxCbGzC|FdD|FdDtFhDpFjD`FvD|EzDjE~DdEhExDhEhDpE|CpEjCxEdCzEtBzEdB`F`B`FtAbFlAdFhAhM~BjMzBtx@jMhMrBpJ~A|AVbF~@bFbA|EzA~EhBxErBrEbCtGfExExDfF`FpElF`EtFxDjGvDhH`CbFxBtF~BtHxB`IlBtIfBvIbBdKx@rGt@rHd@rG~@hNtBd\\lBpZxEha@jAxQbBvUbB`TdB`TlEbi@tEji@pEni@jY`iDnRr|Bdg@xaGnFdo@bF`l@@J~AfQx@lIz@lI|@dI~@nI`AlIdAbIhAfIjAfInAhIpA`IpAbItAdInD`Sze@nhC|Mlt@dF`XxTblAjJ~f@xDbSzDxR`BxH`BvHdBxHdBvHfBtHhBrHdB~G`BnGxAlFvKn`@jFfRfFhQxMxd@xMvd@b\\niAr\\rjAh\\ziAr\\rjAtMpd@dFvQ`FtQ~EfRpEjRfEjRzDvRrDbSbDbSzCnSnCnS`ChSvB|SlB`T~A`TvAjThA`T`AfT|@xTx@rTrB`j@rBfj@jC~t@h@jO|E~nAhFhuArBlj@rB|i@lB`j@hBhj@nBdj@rBdj@tB`j@rBbj@hBte@|Bbn@hFfuAjF|uApB`j@tB`j@x@pT~@pT`@tIb@vIf@tIh@vIl@tIp@tIt@tIv@tIv@`I|@pIdAzIdAhIfAjIjAdIlAbItAlItA`IvA|H|AdI`BzH`B|HdB~HhBtHlBrHrBxHnBnHrBjHxBhHzBdH|BdH`C~GbCzGdCxGnC`HnC~GpCnGnCjGvCpGxCjGvCbGxC|F~HfO~HbOpRn^nUfd@lMzXtFxMnCxGlCzGdCjGfCzGdCzG`C|G|B`HvFlQnF`QzGxUpEjPvEtQxEtRfEfR|DnR|D`SvD|RjJzf@xU~nAlDnRjDnS~C`SxClSxClSxCzSlHxg@~d@|bD~CrTnLfy@L|@fHzg@|G`h@jClSfCnSfCpShGvh@~BrS`ChT~C|YD`@fEta@rBzSpBzS~Eli@rEnh@jEji@bEni@xDdi@lDvi@pDfl@rGhkArIh~AdRtjDbRnjDnHltAxCzi@t[``GtCvi@lC~i@`Cti@xBjj@lBxi@fBrj@zAri@rAfj@fApj@~@~i@l@`b@HfGtExlDtE`lDvExkDhB~uAjBvuAhB~uAjBtuAlBvuAjBvuAhBruAVrTRtTJrTFjT@rTCbUKdTQrTWtT]zTa@jTg@tTm@jTw@zTy@hT_AfTgAnTmAjTqAfTuAxS_BlT_B`SoB`UoBbTuB~S{BxSaCvSgCtSmC|SuC|SyCrS}CdS_D`SoDlSmD`SqDvR{D~RcE`SaEfRmEtRmEdRsEdR}EbR_F`RgF|QgFrQsFvQmF|P_GvQ}F`Q}FlPgGxPqGzP{G|PmGtOkFfMo@xAaHdPaPt^gLbWoMjYgRpa@uQx`@cH~OaHjPsGlP{GfRuFbP{FhQwFtQuFbRaFxQaFbR}EpRuEzRgErRaEjSsDlSsDhTqDzT}C|S}DnY{BbQgCvSeCbT{BzSsBhTmB|SeBdT}AhTsAjTmAlTaAjS_ApTu@rTu@|Tq@hT}K`lDgBbj@u@rTy@rTaAjTiAjTuAnT{AfTcBdTiB~SsBdTgCvUqOjvAw^zeDaObsA{NhrAw^neDaGfi@}BxS{BzSuBdTsB`TiBrSmB~TeBlTaBfT{AbTwAnTsAfToAvTkAhTeAtTcApT{@tT}@vUs@vTo@rTk@rTg@rTa@~T_@tTWjTU~TO|TMvTEtTCnT?zTFxTH`UL~UT`VVhVZtT`@tTbCdwArBvjAN|I`Apj@^zT^pTbKdaGRdMhC~wA~BzuAbA`k@`A`j@\\lTXrTPzTJnTDrT?tTIlTMrTUtT[jTa@zTg@tTq@fTu@xT{@dTcAnTiAfTqAhTuA`T}A`TeBlTkBbToBzSyB~S{BtSgC~SiClSqCzSyCpS_DjScDfSqT~oAwIjg@iO|{@qQheAqIvg@iIrg@{B`NyBzN_DjSwBlNaE`X_DzSqH~g@oHdh@iHfh@sCzSqCnSmCvSmCvSmCzSkCtSgCvSgCtSgCvScCzScCzSaC|SgCzTcCzT}B~S_CnT{BfT{BdTwBdTwBfTkFni@cF|i@_Fpi@sEbi@sEti@mE~i@cEhi@aEfj@yDxi@sD|i@mDdj@kDlj@eDvi@qI`uAoI`uAqI|tAoIttAoIztAgDzi@g@bI}Bz_@iDzi@gD|i@oIrtA_JdyAgN~{BwTnpDkD`i@{Dri@aBfTgBnTgBvSoBpTsBpT}UbyB}CrVmCfTqCvSuCrSyCvS{CvSaDlSaDjSgDnSiDnSmDdSoDdSsD`SwD~R{D`S}D|RcE~ReEzRiEvRkEvRkEhRuEtRsEdR_F~R{E`R_FhRsFrS{FrSkGnTmFxQoFrQsFrQuFlQyFnQ}FjQ}FbQkGrQkGjQmGfQoGbQsG`Q}GfQ}GdQcQtb@kQ`b@uRnc@ajAzhCod@~cAkHfPgHhPkHtPcHvPkHnQgHtQ_HtQ{GvQaHrRiGhQaGdQaGpQyFlQwFrQyFdRqF`RqF|RgFlQgFpRaFjRcF`S{EzRmC~KuD`PqEbSmEdSqEfTuEhUkEvTwDhSwCfPYzAmDdSkDlSgDpSaDjS_D`TyCpSuCzSsC`TmC`TgCbTcApIaApIaCpT{BhTyBpTsBjTqBbUkB|TeBxTcBtUcBlVyAvTwAxVkArTiAnTcArT_AzTy@rTw@xTq@tTm@zTg@|Te@vT_@bU[pVSjPSlXO`UGtTCbU?|TBxTH~TJ`UR|TT`UX~T^hUf@`Uf@fUj@xTt@dUt@vTz@fU~@zTdA`UjA~UrAzU~AvWxAxTxAjT|Dbj@vJvtAlBxWfSprCzJbuA|AfTvVvkDzVllDth@vmHxAfSF|@`Fpr@f@~GzYzaErJfsAfUv`DHlAxCza@~AzU|A|UpAhSnAhStAzVpAzVjAxThA|TrBnb@nkAh~XlApYbAzT`AvTfAhTjAhTnAxTvArUxAlUzAlU`BjUbBhUtAhRzAhRfBnTjBlTnBnTpBlTtBxTxBxTpFri@hNruAvMzrApB`SvJvaAb@pExLlmAndA|hK~MzsAvE`e@~UjaCpFni@|B`TlCnVbC|SfC|SjC~SlCtSnCxSrCxSzCvSxCtS~CrS|CdSdDlShDnSjDnSnDbSnD`SnzAz_ItDbSjDvRbDhS|CfSvCtSnCtSfCvS~B`TxBdTlB~SfB`T~AfTxApTnAdTfAjT`AxTv@hTp@rTf@tT^lTVxTPxTB`N@vE@fUGfTOpTWnTUfPq@dYq@fUs@tScAjTgArToAlTwAnT_BfTiBfToBbTuB`T_CrSgCxSmCxSuCnS}CnSgDlSkD`SuD`S}D~R_EpRkEpRsErRwEbR_F|QiFbRsF|QwFvQ{FhQeGbQyaApnCk`@rfAm`@zfAiGbQiGdQaG`QcGhQ_GlQ}FpQwFlQwFpQuFtQqFxQoFzQmFxQiF|QeF`RcFbRaFfRaFhR{EdRwEfRyEvRwExRoEhRmElRmEzRkE|RgEzReE|R_ExR}D|RyDzRc@~BsC|NwDhSsDlSqDfSmDjSiDjSgDlSgDxSeDzS}ClS{CpSse@hdDo^`fC_Jzm@wSpwAiRrqAiEdZmCbRYlBwLvy@Gd@}F~`@{Gxd@U~AkRzqAeSluAa[bwBue@ldDwHzh@yHnh@mIni@qIbh@{I|g@eJfg@qJng@yJzf@gKvf@sKvf@_Llf@kLdf@sLte@}Lpe@kMje@sM|d@_Nvd@iNld@uNfd@}Nrc@kOtc@aPfd@wOdc@iPbd@yPje@qOvb@k`@pfAa^`bAoOlb@kOlb@oOpb@oOnb@eG~P_GxPaG~P_GfQ}FhQsEtNa@nAuFhQwFpQqFlQoFtQqF`RkFzQcFrQiF`RaFzQ}EzQyE~Q{EdRuE`RuElRuEpRqEpRyApGwBlJkEvReEpRgEvRaErRaE`S_EhSwDpRwDbS_E`TqDhS{DpTyD|TgDdSeDbSaDlS_DdS{ChSyCjSuCjSsClSqCnSmCnSmCxSiCzSeCxScCxScCfTyNxrAwNzrA{F|h@eGxh@oGjh@wGbh@_Ilk@kEpZ{ClS}ChS_DdSaD~RiDjSiDhSmDjSkDrRqDbSwDfSwD|RwDtR_EdSaEvRcExReEzRiErRkEpRmEnRoElRsEjRqLre@wLhe@eM`e@gF`RkF~QiFrQkFnQsF|QsFrQuFlQ{FrQuF`Q_GhQaGjQgGpQucC|kHw_CbcHsaChgHs_C|bHcOpc@_GfQ}FpQ{FvQqFrQkFrQkF`RcF`RcFhRwEfR{ExRoElRkEpRkEbSgGlZuErUuDlSoDfSmDvSgD|R}CnS}CxSuCpSqC~SsC~TeCbTkCrUeCdVsBdToBdTiBbTeBnT_BjTwAhTsAlToAhTiAxTeApT{@pTy@pTs@zTo@vTg@rTc@|T]tTWxTS|TKtTCpFCnMAvTBtTH`ULtTPzTXvT^xTb@|Th@rTn@xTr@zTx@xT`AvTbAtTjAnTnApTzpEfxt@pDnl@fMjuBvK|jBv\\v`Gbv@zcNtR`lD|^pwGtA`WbFt}@pJvdBpIv{AxHfuA~C`j@pApTrAnTtArT~ArTbB`UdB~ThBfTpBrU|BzVrBbTtBbTxBfT~B`T`CbTbCbThCzSlCzSnC|StCxStCvSxCtS~CxS~CjSdDpSfDlSjDjSnDlSpDbStD`SxDfS|D`S~D~RdE~RfE|RrKrf@tKxf@`XlmAhFzUhQdx@fX|mAfE~RbE~RfEfTtDdSzDpT|DtU`DdS|CrSxCvSnCfSlC`TfCzS~BvSxBzStBbTlBdThBfT`B|S|AhTvAjTpAnTjAnTbArT~@pTz@vTr@xTl@vTd@vTb@~TZ`UR|TNzTFvT@~TAnTGvTIxTUfk@i@fvASpj@Oh_@E`KSpj@Udl@KjZ_@l`AiAfxCUxm@i@tvAg@pvA]z}@U~m@?Bi@`uAcEx`LU|j@Szj@KxTOxTU|TYvT]~Tc@zTe@dUk@lTq@zTu@vTu@bT_A~TaApTeAvTkApToAnTsAlTyAxT}AnTaBlTeBlTkBjToBhTsBhTwBhT}B`T_C~ScCdTkC~SmC|SqCzSwCxSyCtS_DtScDrSiDrSkDnSqDjSuDdSwDfS{D~RcEbSeE|RiEzRkEtRyEdSyE`ScFbScF~RsFnSuFhSiF~QkFvQsFxQuFpQyFpQ{FhQaGjQeGfQgG|PiGxPsG|PuGxPmP|a@sPnb@iPxa@qPfb@uPpb@kP|a@wPnb@iP|a@iPva@uPlb@qPhb@wGrPwGzPkGnPqGfQoGnQ_GvPgGtQ{FfQ{FtQ{FzQsFzQiFnQoFlReF|QcFdR}EhR_FvRsEhRwEzRmEtRkEzReE|RcE`S}DzR_ErSsDzRqDpSoDrSgDhSgDzS_DlS{CrSyCxSuCdToC|SiCxSgCbTcCjT_ChTwB`TsB|SqBpTmBjTgBfTcBbT_B|T{AtTuAnTiAtRsAnViAbUcAvT_ArT{@zTw@xTq@zTm@rTg@|Te@`U_@|T[~TUvTQzTKvTIfUEvT?~TB~TF|TNzj@~BvfJ^pvANvj@^j~A@~Q?`sAE~j@Kpv@Qnk@Ubk@[hk@a@pm@g@bn@wAlvAkBnvA{@rj@cArj@gAxj@kAdk@qApj@wAzj@{A`k@}Abj@eBvj@gBfj@mBjj@qBhj@sFvuAgGfuA{GhuA_IpzAcK|eByIduAsDxi@wDri@}Dti@aEzi@gE~i@wKttAuKltAo@xHwfAdaN{q@fuIkX~iDmXdjDuKftAiEri@qEdj@mBjTqBhTuBfTwBxSyB`TgCpTcC|SgCvSkCvSmCjS{CrTqCzR}CtS_DtSeDrSgDfSkDhSmDhSsDjSwDfS{D`S{DxRaEvRiEdSgExRqEvRmEfRuEvRsElRgLte@kL`f@iL|e@uYbmAiLve@oLpf@cLpe@wEvRoEnRcLpf@_L`g@iIt_@iJjc@cKzf@}G|\\{Jvg@qJng@eJ`g@}Ilg@}Ibh@iI~f@sIhi@aIfh@wH`h@qHhh@iHdh@sCdTsCjTuCxTiCvSmChTgC~SgC`TaC|SaC|SaCdT_CdT}B`TyBbTyBfTwBfTqB`T}BzUmBvSkBjT}BfWgBbTiBjTeBlTeBlTcBlT}Dti@wDfj@oDdj@gDhj@_Ddj@wCtj@mChj@iCjj@uFdmAyG|xAeP|lDmGluAqGxuAoGruA_Rb`EGxAqG~uAqG~uAaC~i@_Cpk@yBxj@uBfj@uBjm@kBrj@cBjj@kAh_@{Avj@wAnj@qAtj@oAtj@gAtj@cAtj@_Arj@{@tj@u@vj@q@tj@k@vj@e@vj@c@vj@[|j@Wxj@Srj@M|j@Ixj@Ezj@@zj@Bnj@H~j@Nxj@Pnj@Xdk@Zrj@`@zj@|@r`Al@vj@r@tj@v@fj@|@bk@hNzjI~JnaGjCf}AvFlfDpa@veVx@rj@p@zj@TzTRxTPzTNzTJzTLhUNfj@Hxj@@zj@G`l@Mrj@W`k@]tj@g@vj@o@`l@{@hm@aApj@gAlj@Y|Mu@p[wAxi@aB~j@gBhj@oBrj@yBdj@_Cdj@iCtj@oCli@{Cbk@aD`j@eDji@sDlj@wDvi@_Eni@kEhj@qEni@{E|i@_Fji@w[xhDgEzc@iIz{@iFbj@gF|i@uWlqC_NdwAkPleBcJt`AcEhc@oFlk@eFvi@gFti@gFvi@_Gbn@kEzd@iF`j@eFri@}Evi@oE|i@aFnp@eB~VuBfZuAxTqArTmAfToAxTiAvTiAhVYnGgBt`@}@hTy@tTy@bUq@xTq@tTm@xTm@bUe@jTe@|Ta@bU_@~T[tTWvTWfUQ|TQzTK`UIrTEbUEzT?tTB~TD~TFtTXnj@N~TT~TVvTXvT\\zT`@xT`@xTh@fUf@rTl@lTn@dUr@rTt@rTx@vTz@~T~@~T`ArTdArTfArTjApThA`T~Crj@vMhaCfa@vmHjl@doKjAlTpAnTtAnTzAvT|AtTbBrTfBhTjBhTpBnTrBbTxBhT|BfT`C|SfCbTjCbTlC|SrCzSvCzSzCvS`DrSdDvSfDfShDdSrDlSh@rCjCpNzDhS|DbS~D|RfEzRfEvRpE~RzEhStErRzEnR|EfRpFjSzDpN|DnNjFvQpF|QrFrQvFnQxFfQ~FhQ`GbQfG~PhG|PlGxPpGtPpGjPxGlPxGdP~G`P`H~ObHxOfHrOpHzOnHhOxHvOtH`OxH~N`IdO|HpN~HjNpI`OlIjNlIfNtIdNpIxMxIvMvInMzIjMfH~Jt@dAhUr[bUh[rv@pfAvv@pfAryBj|Ct_@`i@|T~[|I~M~GzKtZzf@jInNbInN`IrN`I|N~H`OrH~NrHbOtHrOrHvOjHtOhHxO`H|O`HbP~GfP~GtPtGlPpGpPnGtPlG|PfG|PfGjQ~FdQzFfQ|FtQpFjQnFnQrFfRbFlQfF~QbFbRzEdRxEfRtElRtEpRbDlNl@jC~XjmA~e@xtB~Kdf@lEpRhEvRdEtR`EvRxDtRvDtRvDfSrDhShDzRhDhSbDjS~ChSzCjSxCzSrCvSnCxSjCxSdCvS`CvS|BtSxBbTvBdTrBpTjB`TfB`TbBfT~AhTxAbTvAjTrAjTjAnThApTdApT~@jT|@xTv@zTr@nTn@pTh@pTd@nT`@dUZrTl@dj@NrTJzTDvT?~A@vQ?xTGtTItTO|TS|TYvT[tTa@|Te@xTk@xTm@xTs@nTw@rT{@rTaA|TeAjTgAfToAvTqApTwAjTyAhTcBtTcBpTiBjTiCpYuA`OuBxSwBdTaC`TeCdTeC|SmCzSoCrSsCtSwCpS}CpScD|SgDxSm@lD{BzMmDdSsEzVoCzNsA|GcBvIqGp[}o@`}CoqAbiGcLri@sJpd@eE|RcE|R_E~RyD`SsDdSoDnSgDjScDrS}CtSoDbWoCrSkC`TeC~S_CfTwBzSsBfTkBfTgBhTcBbU{AlTsAlTqA|TgAlTaArT_AtTw@hUq@nTi@nUe@xT]tTWvTQ`UKzTQxj@iE`lOsBfgHOtj@C~TAxTBxTFdUJ`UPzTR|TXzT^~T`@vTf@dUj@rTn@pTr@zTx@zT~@tT`ApTfAtTjAzTnAnTtAzTvAbTzArT`BnTfBrTjCxZnAxMrBnTxBdTzBbT~B`TdCbTfCzSlCvSrC`TvC|SvChS|CrSfD|SbD~RlDxSjD|RxDrSxDhSxDxRbEbSbEtRdE~RnEzRtEzRnEfRzErR|EjR~EbRhFnRhF~QlFzQrF~QrFrQpOpf@|gPz~g@tkChlIvxFboQ`yAjtElB`GtNrc@xNnc@fOzc@ro@lkBzW~t@tVtq@f^p`AnTfk@va@neApPbb@xP~a@tPta@zPha@bQpa@dQja@~Pr`@jQba@tQ`a@rQv`@vQp`@jRfa@dRt`@fRn`@d|BdxErkAzcC~m@rpA~zBbvEv{BnwElx@tbBje@naAje@paApx@vbBlx@pbBvqB|eEvZ`o@nIdQhe@laAde@laAfRf`@bRj`@fHtOfHvObH~O~GbP~GnPtG`PzD~JzAtDpGxPpG|PjG`QhGdQdGhQ~FjQ|FpQxFrQpDpLbAdDvFjRrFnRhFbRjFxRfFzRdFdSbFhSpEjRpErRjEzRdEvRbE|R|DtRxD~RtD~RrDjSnDnSdD|RfDlS`DrSzClSvCnStCzSpCzSjCvSfCzSbCbT~BbTzBfTtBfTpBbTlBbTfB`TfB|T~AjTzAlTvAfTpApTnAvTjAxTjChj@hLnbCfr@nxNp^fvHr^|vHf@nK|PflDdQvkDfHhvAlFneA|JxoBjQxlDhQzkDtCzj@pCfj@nCbj@hCnj@`Clj@vDh_AbAnXhThlGt@lT@\\hBbj@r@`Ul@jTb@vTZ~TT|TJzTB~TEzTKzTSzT[~TkEbrCwHl`FsMhsIWdTQ~TGzT@bUN|TXbUh@~Tt@vT~@xTjAvTzA~T`BdTnBhT~BhThCfThCpRFb@dD|SjCbP|D`T`EbSlE`SxEvR~E~QnFfRtFtQ`CdHfCvHnGbQnGnPnBzEPb@lLjYtG`P|GxP`AdCnElLbG|P~BbHxBdHvBjHpBpHlBpHjBtHdBvH`BxH|A|HvA|HvAhIpAhInAjIjAhInHph@vJvr@dFl^lHjh@nHrh@jAjInAfInAfIrAfIvAbI|BlMv@`EbB|HjBvHrBrHxBjH~DfLzEpLrCxGtClGzCdG`D`GdDtFjDrFnDhFtD`FvDvE`ErE`EdEdE~DhEtDlElDpE`DpEvCtEpCzEfC|E|B`FpB|EfB`F|AfFtAhFfAfF|@fFt@fFh@hF\\jFRjFJjFAjFIjFUjFa@hFk@hFq@fEw@dFgAfEcA\\IdFyAdF}A`MeE~LoE~LqE`dBmn@zEgBju@qXfqAue@tLeExLyDjOeEnIsBvJqBrHwAhLiBrIcAb\\gD|O}AnXaIpSqAzL{@r[}Bz[gCb\\mCbx@qHr\\kDv[gDx[sDt[wDv[_Ev[gEv[oEt[sEv[{Et[gFf]wFxZkFvZmFr[aGp[iGl[kGj[uGf[yGn[cHl[kHj[sHh[wHd[{Hd[eI~ZkIh[uIl[_J`[_J`[iJd[sJnZoJtc@mNlRuGrZeKrZoKf[_L~YuKd[mLhZgLjZqL~Z}L~Y}LvZmM|YeMfZsMpZ_NfZcNnZmN~YoNnZ_Oj~Eq`CxAs@jtEwzBhu@m^bZuNbZqNdZgNdZcNjZ}MhZqMdZeMfZuLrZsLhZ}Kl[yKjZ{JbIgClJuC~Ag@~WaI|Z{If[iIj[_Ij[oHj[}Gp[oGn]uGhY_Ff\\gFl[qE|ZaEp\\{D`\\gD`\\wCd\\kCx[{BhKk@tO}@l\\}Ab\\iAj\\y@r[o@nZYv@A`\\Od\\?b\\L|^b@tw@hBd\\nA~[zAh\\jB`a@rCf]rCt[zCz[jD`\\|Dn[fEt\\`F@?jXlEt[tFjM~BjMdCbMdC`MjCl[`Hf[pHj[bIb[lI`[|I~ZlJ|[jKn[rKpZxKtZfLvZvLjZ~LhZjMvZxM|YtMfZbNju@r]hu@v]tu@v]dZdNhZ`NdZtMhZnMdZbMpZzL~\\rM|ZbLvZpK`[fKh[vJ`MvD`MrDbMnD`MjDfHlB~Cx@fMdD|KtCb@J~L|ClM|CvLlCp[dHp[xGt[fGrVnEzCh@v[hFdVrDvATr^`F|[zDt[tD`\\dDl\\vCp[fCz[xBf\\hBx[|Af\\lAd\\`Ab]r@l\\d@h\\Rf\\Dh\\GlMGtMKvMQvMWjZk@jZ_Ah\\kAd\\sAb\\{AvNw@|Km@|\\kBd\\sBd\\qBf\\{B~gAmHjy@mFpy@yErZ_Bd\\yAd\\uAf\\gAf\\y@d\\m@j\\]h\\Of\\E`\\Jl\\Xh\\f@pf@fAv^fAvf@|Ajd@fBlPt@rwB|JtVjAp_A~Dxy@|C`\\~@t`@|@nQ`@vINhMPxMPd\\b@lMDlMApM?rME|MI|MMh\\c@h\\q@|\\cAr[gAb\\sAp]eBt\\eBv[kBv_@{BjKq@`j@mDzx@{ErdAqFd{@_JpMy@rMs@pM[tMUtMEdNDjMVzMl@jMz@jMpAhM~AhMpB`M`CjMvC~LdDnLnDdMlEjMdFdKrEt@^`K|EpLlGlLbHdLlH~K|HpKjI`LfJlKrJrKhKzJlKnJzKjJvLjJdMnFzHjBnCvInMvIhNlIvNxHrNvHjOtH`PbH~OxGpPnGrPdG~PxFhQrFvQdFxQ|EjRpEvR~D`RzD`SlDbS`D|RvCnSnCpT`CxStBbThB`T~AzTnAbTdA|Tx@rTl@pT^bURvTFrP?xBErUMtS[bUm@pTu@`U{@nTgAlTsCri@yCpi@W|EcCzb@wCxi@aDfn@eCnf@kCtj@eClj@_ArTy@tTy@|Ty@xTu@xTu@tTm@rTk@tTg@tTi@fUc@fUc@pT_@pTYvTWxTY`UU`UOpTKpTKxTEvTIhUCfUA`U@bUDjTDjTHjTJzTNzTd@vj@V~SVbU\\pT^nT^tTd@tTf@`Uf@hTj@hTp@tTr@vTr@vTv@vTx@hTz@fT~@rT`AhT`AjTlCri@tCvi@|Cti@|Cdi@dDhi@dDfi@lj@zvIvFj|@jb@fvG`k@l{I~IjvAbJjvAtDzi@xDzi@bEvi@hEzi@pEli@tEbi@zE~h@bFbi@hFbi@nFrh@rFph@`Gbi@hGhi@hGlh@nGhh@zGph@bHth@dHfh@nHph@vAxJn@lElDbV|Hdh@n@~Db@rCjFz\\jIfh@pIbh@jDjSfDdS~Irg@|Izf@xJzh@tJxg@rH~_@jMbo@hKrg@tKrg@~CtNdDhOtNno@dL|f@jLzf@nLff@xLlf@vLte@dMdf@lM~e@nMze@tMde@zMje@fNne@hNzd@nNxd@xN|d@xNhd@`Ofd@pOtd@jOvc@vO|c@~Ovc@~Ofc@pPpc@tP`d@zPhc@~P`c@`Qrb@nQxb@pQpb@xQfb@~Q`b@fRbb@fRla@lRja@dRh`@fR|_@nRz_@~Rf`@xRh_@fSt_@fSb_@nS|^nSl^pSd^pSt]nSb]vSd]zS`]~S|\\zh@|z@la@jp@bq@tfAbTd]`Th]dTd]~`D`gFrElHvsApxBtsAfxB`Wta@h{@tuA`Tz]zSd^lSv]tSn^nSp^jSz^bSp^xRv^xRz^rR|^rRj_@lRt_@fRn_@`Rt_@~Qx_@~Qf`@xQn`@tQn`@pQp`@hQp`@bQz`@`Q`a@bQja@zPpa@zPva@tP|a@lPra@jPbb@dPhb@bPlb@pOva@zOxb@pO|b@pO|b@p_@jeAnI|UzRhj@l}AznEf^tdAbOtb@r_@pfAlOlb@pOhb@xOfb@~O`b@bPza@lPta@pPla@pPba@|Pba@bQz`@fDtH~KdWjQj`@hQz_@xQd`@xQx_@`Rr_@lH|NrHhOhRb_@nR|^nRp^vRn^~Rj^dSd^fS|]jSp]|Sb^|Sp]rTz]lTj]rTb]zT`]`Ux\\~Th\\bU|[jU|[pUt[rUh[|k@dw@`xAjnBhjGdmI`i@ps@`IlLzXt^dHfJzTnZtTxZpT`[~SvZ|SzZfT|[xNrTjYzc@~Sz\\pSp\\xSj]pSp]`Sb]tR~\\nRb]tRx]rRb^vRd_@tRf_@vQf^|Q|^nQp^hQz^bQd_@~Pf_@zPl_@nPp_@lPv_@jP``@hPh`@bPj`@~On`@zOt`@z`@nbApJ|UfUjk@hdAdiCdThi@nf@rmAxFpN`cAxfC|bAhfCfPja@zOp`@xP~a@lPz`@rPx`@hFxL|JhUzPf`@lQp`@nQf`@hQh_@dRn`@|Qr_@dRl_@~Qv^dRp^lRp^nR`^pRt]vRt]zRn]~R`]fS`]hSv\\jSl\\|Sx\\`Tn\\fTl\\`Tp[nTx[tTt[nT|Z`Uh[~TzZ~TfZ~SzXxUpZhVvZlVlZjPbSzDvElVpYtVpYzVfY~VdYdWtXfWtXhWrXf_BzdBz~AldBh_BxdBt}DthE`~ApcBl~AzcBbxAj}AfEnEn~A~cB~~AndB~VjX|VpXrVrXnV|XhV~XpVpYfm@ft@`VjZ`VlZtUpZtUrZnU|ZhUb[fUf[dUt[~Tv[bUl\\~Tn\\xTx\\vT|\\jTb]nTh]`Td]bTv]~S~]vSz]pS`^tSr^fSl^hSx^dSb_@zR~^xRp_@pRl_@tR``@lR~_@dRd`@`Rh`@|Qn`@xQv`@pQz`@vKpVrDjIlQja@lQ~a@`Qta@zPza@zPdb@tPjb@nPnb@za@dfAza@zeAd}At~Dbl@zzA`b@bfAnP`b@nOx_@`Rld@`Q|a@~Pra@dQla@hQja@lQha@nQ|`@vQba@tQn`@tQf`@~Qn`@|Q|_@dR``@fRz_@lRt_@lRl_@nRf_@vRh_@xR`_@|Rz^`Sx^zKhSlAxBvClFhSl^lSh^nSf^nSr]tS|]zSv]bj@n}@|Rj[fT~\\fTv\\rTx\\nTl\\nTb\\xTl\\|T`\\xTp[`Uv[hUv[tTtZZb@~j@vv@~wAzoBjiAl}AlMjQpk@lw@dUh[bUn[bUz[xT|[|Tf\\vTr\\tTx\\pT`]hTb]pTz]~Sn]~Sz]zS~]vSj^pSl^lSt^hS|^`S|^|R`_@`Sv_@vRx_@tR|_@xe@jaA`Rd`@|Ql`@xQr`@tQz`@nQ|`@jQda@`Qda@bQra@vPpa@|Phb@pPbb@lPfb@hPpb@`Prb@|Oxb@xO~b@rOdc@lOjc@fOnc@`Orc@|Npc@|Nrc@h_@hiAr_ArsCj_@liAl_@liAnO`d@rOzc@zOrc@xObc@dD`JdKnXxO|a@hPfb@lP`b@nPta@nIpSjFdM|Pna@bQfa@hQ`a@pQfa@pQn`@xQl`@zQ~_@dRb`@dRp_@fRd_@`IrOf\\vn@rf@j~@jf@v}@hg@h_AvnAd~BrnA`~BzR|^rRj_@tRz_@hRv_@hRp`@|Qh`@vQr`@tQba@pQla@bQja@`Qxa@zPbb@rPdb@jPnb@lGjPvGdQ~O~b@vO`c@nOlc@hOlc@bOvc@|N`d@pNvc@hN~c@hNnd@`Nxd@vM|d@rMde@fMde@fMxe@zLpe@rLze@jL|e@fLbf@hLlf@dYrlAts@~zChY~lAnYpmAhLbf@rLze@xLre@bMpe@hMde@vM~d@|Mzd@fNtd@jN~c@tNdd@~Nxc@hOrc@pOpc@vO|b@~Ovb@fPnb@pPfb@zPdb@dQ`b@hQna@pQha@tQp`@zQl`@jRl`@lRz_@pRn_@|Rh_@bS~^hSr^nSd^vS`^dTz]fTl]lTb]jTx\\nTb]hTv\\tTh]bkDtoF`uAjwB~i@h{@bMbSbFdIbT|]xSz]rSd^rSt^fSv^bSb_@|Rh_@vRr_@tR~_@jRb`@fRn`@|Qr`@|Qda@vQja@dQda@fQra@~Pza@rP|a@rPjb@lPtb@bPvb@~O~b@tOfc@pOpc@hOxc@bOvc@h|@`kCf{@lhCb_AfqCf_@thAfO~c@`Opc@v_@viAf_@nhAbOrc@lOnc@hOzb@xO`c@|Otb@jPxb@jPdb@rPdb@tPpa@|Pna@fQna@`EhJjKzUrQ|`@xQr`@bRr`@jRj`@lR|_@rRv_@xRl_@~Rb_@hSb_@hSn^fS~]bTn^xSt]bTt]fTd]jTz\\vT~\\tTf\\~Td\\dU|[jUp[nUh[tU`[xUtZ~UjZdVfZbVnYtVtYnVdYvVxXdWxX`EjE|PxQj@l@|UxVxG|GpNrNnWhWrW|VxWtVzWjVdX`VfXxUrq@hl@xcBbyAlnA`fApg@hc@fXpUjXtUdXnUdXrUdX`V~WdVvWlVrW~VpWfWpWtWdWxWdWdXzVlXnVjX`WrYjVfYhVtYhVdZ|UbZxUrZzU`[tUh[nUx[dUx[dU`\\fk@`y@pk@jy@vk@ry@rl@zz@lUl\\tUr\\vUb\\~Ux[bVv[hVh[pV~ZrVtZzVnZ|V~YpWfZtWvY`XxY~WdYjX|XnXtX~XrXnWtVfWbVlWrUnWlUhWxThWhTrWfTxW`T~WtSdXlSdXbShXvRhXhRlX`RrXzQ|k@d`@nEvCheBpjArXzQpX~QlXhRfXtRdXfSzWzSvWlTjWdUdWtUpV|UfUrUjVnW~U~WpUjXnUdYfDfEvDzEzTzYlCnDtAjBdBbC`ArAzHvKxF`IjLtPhT|[dTz\\rS`]dSp]zR`^hBfDnOrYbRd_@xQr_@hQ~_@nQha@bPf`@jPna@tOpa@rOrb@|Nlb@pNdc@`Nbc@vMvc@fMdd@vLpd@nLbe@bLpe@nKne@bK|e@tJff@dJtf@|Ijg@hIjg@vHlg@jHxg@dBnMtDlYjGdh@zFbh@nFvh@zEph@vExh@tE|h@hE`i@dErh@dE|h@zD|h@dDde@`Dhe@nDbi@hDhi@dDfi@zC|h@xChi@rCvi@x@~O~EhcAfCbj@~Bti@xBvi@rBzi@nB`j@jB`j@bB~i@`Bbj@xAtj@tAxi@nAzi@d@bU`@hTdAhj@`Ajj@v@xi@p@be@^`]@t@b@rd@f@bj@`@dj@\\nj@Vlj@Tdu@Jlh@Bvk@Arj@Cjj@Ijj@IdYGpPUlj@Ybj@_@bj@c@`j@i@`j@m@fj@y@rn@s@ze@y@bj@_Abj@cA`j@eA`j@iAvi@kAdj@qAdj@qAfj@wAtj@wAdj@yAbj@{Abj@}Abj@_E|uAoKllDuK|jDsKrkDqK~kDwKfmDuKdlDuKhlDuKvlDuKhlDqKjkDqKvjDcEjtAaBdj@_Bbj@{A|i@yAvi@wAbj@sAbj@mAxi@kAhj@eA`j@_A`j@y@|i@s@hj@o@`j@e@|j@]dj@Wlj@Opj@Cpj@Brj@Lpj@Xzj@`@tj@h@di@t@nj@|@~i@hA`j@nAti@r@pWf@tQdBfj@nBxi@xBbj@`Cxi@lCxi@tCri@|Cpi@hDri@rDvi@zDri@fEji@pEri@zEvi@`F~h@jFbi@tF|h@tF|h@xF|h@nFvh@lDr^t@bIzEni@tEhi@fEji@~Dni@tDri@jDhi@bD~i@vCji@jCji@fC~i@zBxi@pBri@dBxi@|Axj@tAbj@lA|i@`Afj@v@nj@l@fj@d@rj@Xlj@N~i@Fhj@Ajj@Khj@Wnj@_@jj@g@jj@s@dj@y@xi@_Apj@gAdj@mAfj@oAdj@uAfj@uAdj@wAfj@oDjuAwAzj@sA~i@oAbj@iAlj@gAfj@_Alj@w@lj@q@nj@g@vj@_@dj@Wpj@Otj@Gfj@@nj@Dnj@Rjj@Tpj@^rj@f@rj@l@nj@t@hj@|@nj@bAjj@jAjj@pAvj@xA|i@~Afj@dBhj@hBdj@rB`j@xBlj@~Bbj@dC`j@jCbj@pCpi@tCxi@zCzi@`Dri@fDvi@lDxi@v@vLxB~[tD`i@zDvi@bE|i@dEfi@fEdi@lEfi@rEbi@xEni@zEli@|Edi@dFfi@hFfi@jF|h@nFvh@tFdi@xFbi@vFfh@|Fhh@`Ghh@dGhh@fGrh@rGnh@rGlh@vGlh@vG~g@`Hth@`H`h@hHhh@jHdh@nHdh@pHvg@tHtg@xHvg@|Hxg@bI|g@fIzg@jIrg@nIrg@lIdg@vIfg@zIvg@|Ifg@`J|f@bJlg@`Jhf@xJbh@nJtf@nJnf@rJlf@|Jrf@bKbg@dKrf@fKlf@jKnf@nKlf@vKnf@xKnf@xK|e@|K|e@rFlUrD|OnLpf@vLfg@~Lbg@`Mdg@jM~f@bMlf@tMlg@|Nhj@bLjb@vMhf@|Mff@`Njf@lNtf@nNpf@hNze@pNve@nNje@rNfe@~Mhc@hNvc@nNtc@jNjc@vNvc@xNlc@|Njc@~Njc@`O|b@hOdc@x_@zfAd`@hfAr`@zeAv`@|dAra@heA~a@zdAhb@hdAvb@tcA|b@vbAvc@fcArc@zaA`d@xaA`d@faAzc@haA|c@zaAdQj`@bQl`@hQda@fQja@xP`a@vPfa@nPja@rPxa@hP|a@xGvPnGhP`Pdb@~Ojb@tObb@vOrb@lOlb@jOpb@lOvb@fO|b@hOzb@fO`c@t_@|gAlM`_@tPnf@h_@rfAdOxb@hOtb@rO`c@pOzb@xO~b@~O|b@zOrb@dPlb@hPlb@pPjb@fPra@tPva@zPta@lPj`@nPf`@vQ~a@xQ|a@jQv`@rQv`@vQr`@vQ~_@zQ|_@xQp_@dRt_@hRp_@lRj_@pRf_@rRb_@vR~^zR`_@`Sz^~f@h~@`Vfc@dP~YdoAb}BbnAr}BxRf_@vRn_@rRp_@pRx_@hRz_@hR``@bRj`@`Rr`@xQl`@vQz`@tQda@jQz`@fQba@`Qfa@~Pna@zPra@vPxa@hPja@lPbb@hPdb@dPnb@xOfb@zOrb@xOxb@pO|b@rOjc@hOfc@dOlc@bOtc@~N~c@vNtc@pNzc@rNjd@bNvc@dNrd@|Mfd@vMnd@tMld@pMtd@fMtd@bMxd@`Mxd@xL~d@tL|d@xLve@rLxe@jLne@hLpe@dLte@bLxe@`YvlAxX~lAtX|lApX`mArX`mAnX`mAneBpwHpeB|wHnt@fbD|o@btCvXrmAxXrmA`r@zzClr@r{CnXxlArXdmAbm@|jCNl@xCpM`YxlAjLdf@nLbf@hF`TxKrc@tLje@zLhe@`Mfe@hMde@fS|s@fOlh@|Mdd@dNbd@~Lr`@nNpc@~Nvc@~Ndc@dO~b@tOhc@pOnb@v}@fdC`bAnmC|dCt{Gf\\b}@bd@vmArArDpbCdvGzeCj}GreC||GpOzb@hObc@bOhc@|Njc@tNxc@pNdd@f@`B~L|`@|Mfd@xMld@pMrd@lM|d@bM~d@|Lfe@tLne@nLte@`Lle@|Kte@vKdf@pKdf@hKlf@fK~f@vJhf@rJbg@zIje@nJhh@fJhh@xItg@vIxg@fTxpAjTvpAtIxg@xIxg@~Irg@fJrg@|TpkAf@lCzJ~f@bKzf@jKxf@pKnf@zKpf@bLlf@hLbf@pL~e@xLze@tG~VjEjPbLlb@hMde@vMpe@tMxd@zMxd@~Mxd@bNvd@dNtd@fNtd@jNrd@~{@|sC|{@~sC~bC`aItq@h{B|Mjd@|Mld@tMnd@pMrd@jM~d@dMhe@zLne@rLte@hLle@bL~e@|Knf@nKhf@hKtf@~Jrf@tJtf@lJ|f@bJ~f@lJli@pJjk@fJjk@~Itk@xStxAhHfi@vGfh@tGbi@vGpk@vGnl@lGrl@lG|m@hG~m@hG`n@dG`n@hExb@z@xIvO~|AnGhm@tGfm@xGxl@`Hdm@hH~l@nHtl@vHhm@tHvk@`Ill@bIvk@nIjl@tHhh@zHhh@|Hpg@`Ipg@hIvg@nIrg@pIng@xIlg@|Ilg@bJfg@fJ~f@nJng@nJlf@vJ`g@zJrf@bKzf@bKff@jKlf@pKjf@rKff@zKdf@|K~e@bLxe@jLve@lLxe@pLte@rLve@tLte@dZrkAnLhe@lLne@hLte@fLxe@`Lze@|K~e@vKdf@rKjf@lKdf@bKbf@bKhf@|Jpf@xJpf@rJvf@nJ`g@nJbg@fJ|f@bJ`g@dJng@`Jrg@rThoApT~oAhTbpAjT`pAhTdpAhTbpAfTjpA`TloAJj@tT|qAlG~^r@fEtIpg@vC~UnC~UtJ`}@~L`iAfOntAbFzb@|Fvb@zIbh@Jj@~Hrc@rExQzF`QxDhKxI~UrFbQbFjQlEvQjEzQfFbVvEjVhDrRdDtRfIlf@xIhh@pI`g@pVzxAbT~nAhTdoAnTznAzIvf@|Ixf@~Ipf@bJpf@hJpf@jJpf@rJnf@rJff@zJdf@~Jbf@fK~e@jK~e@lKre@tKte@xKte@|Khe@bLde@jLje@lL`e@pLrd@xL`e@~Lxd@`Mpd@fMnd@jMhd@rMdd@zMhd@vMvc@bN~c@hN~c@fNbc@jNdc@rN`c@xN`c@zNzb@|Nrb@dOnb@vLx\\fRbh@vOhb@vOxa@~Oza@dPta@`Pfa@hPda@lP~`@rPx`@dDzHdL`XxPp`@dQx`@lQl`@pQj`@rQx_@xQ|_@|Qn_@bRj_@lRd_@hRr^hUxb@nQb\\tQz[lRp\\vPlYzSv]xS|\\|Sn\\fTn\\rTd\\pTp[|Tn[bU`[hUtZlUlZ|CzDfPnSRVdI|JjKlM|UdYvUlX|UbXrVlXxVxWja@bb@tXrXfWpVfWhVfWxUvRjQvUbTbXbVdX`VxWtUnp@fl@jp@vl@nW`VlWdVjWpVfWzV~VbW|VpWpVzWjVlXbVzXxUjYrU~YjUtZbUh[vTr[dTb\\zSt\\pSl]hS~]zRj^nRz^hRj_@vQr_@tQ|_@tQt`@nU`h@`cAb~BlQr`@tQr_@nH`OzH|N~HtNfIlNdI~MhIjMzIvM|DvFbDrEbJzLjJtLjJfLpJ|KxJtKzJfKzJvJrK`KfKhJlK~ItKxIzKnIvKzHbLrHhLjH`LvGlLrGfL~FrLzFvLnFvL`FxLtEzLhE~LzD~LpDbMdDbMzCbMlClMbCjMxBhMrBhMnBjMhBrZ`ErZ`Ejz@lLdx@jLjx@|Lr[xEt[dFr[fFt[jFt[nFr[pFt[xFt[xFr[|Fr[`Gr[dGt`AbRhw@|Ofw@jPtw@|Pp[dHp[jHl[jHl[nHj[pHj[vHh[vHh[zHpw@~Rrw@jSxh@`Nbx@pSnw@lSnw@hS~oBtg@tm@zOtA\\p@PvA^`t@bR|pB~g@dMjDfMpDhOvEFBpJbD|LrEnZvMxLjG|GxDjP~J~KvH|KfIpKrIdK|IfKpJlDlDlEpErD~DbElEnJ~KrJvL`JxL~FpIxAtBrItMnIhNh@~@fB~CbD|FtHvNtHpOhHtO~GdPpGbPjGxP~F`QtFlQlFpQnC`KpA|E|AfGvB|I|CtMn@pCrAlGnB~ItDrQhBvI`ExSbAhF~FpZ|E`WlGx[x@dEzD`SJh@xB|KdErRhElRrEhRrDlNJb@\\pAbFxQlFjQxF~PpGhQvGhPdHxOxHfOdIjNxI`N`JvLtJbL`KfKjKlJpK|IvKlI`@ZvWdSfr@ph@hWzRhW|RhUfQ|RfO`HhFx@n@ZTvdFxyDDBbTjPhEbDdBrA`HjFjSrOpNxK~MfKz^hY@@|MrJFDlLjIDBrGlE@@vMdIdLpGtL`G`MpFtLfEpCn@tH~BhMpCzMrBtGr@~RbAtMZj@?dLAtMi@nMmAlMyBdM_D`MaEzSwIxDcBjTaKlu@q^fW_Mt}A_v@jk@wXrkBc~@~p@_\\tv@o_@jhBg|@hkB{}@bt@y]p[gOlZuNvLyFxLsFrLgFrLeFxLcF~LyE~LuE~LkEhL{DlLqD`NwD`NkDfM{ChMsCjMiClM_CrMyB~[yE~KyAxYaDlMgAnM}@rMs@jMm@pMa@rM[bSOzN?tMDnMNvMVrM^pMf@vMp@jMx@rMbAtMjAjMrAtM`BpMfBnMnBhMvBrCd@jV|EdNtC|LvC|LzCjMdDjMpDfMtDfMzDbM~DbMfEpVxIxW`KxWvKnZjMdZvMfZfN|YrN|YzNdZnOb[`PfIhE~aCrpArgBl`AzYtOzYzO|YbPdYzObYxOtYbPrYfPpYrPfL|G`MlHpe@vXn`@pU`nB`jAvZpQnYzPxYzPhYrPhr@na@z@f@dt@rb@pt@|b@xs@nb@lt@zb@pt@zb@fYtP~YtPx^jSvTrLj]pQzVfMhZxNhZpNpZfNpZxMvZpMvZbMvZvLb[nLxZ|Kd[zKb[jKb[|Jnw@tVt\\tKjd@zNvkB|l@v}A~f@j}Bht@jErArj@nQx`@~LRFnMtDzAb@zKvCRF|OdETFj]vIr[zHnS`FbLnCzNnDnt@jQnBd@bx@xRvTnFtWnGb@J`jA|X`a@xJl[pHl[fHx[|GbM`ChM~BhMvBhMpBjMjBjM`BjMvAnMnAlMdAnM|@hMt@lMn@tM`@nMXrMRnMHpM?pMGrMOpMYnMa@nMk@nMo@nM_AlMeAnMmAlMwAlM}AnMgBjMsBjM{BjM_CfMkCfMuCdMyC`MkDnQ{EbMsDbMyDbM_Ef[iKb[kK`FcBh\\_LzNaFbPuFjNsEn[}Jj[gJfMgDhMcDpM{ClMmCnMiCtM_CrMsBxMkBrM_BpMsArMmA~MaAlMs@hMi@rMe@nMWtMKxMGvMBtj@fArMj@rMt@x[jCjMrApM~AjMdBhMpBnM|BjMfCjMlC~L|CjM~CvLlDfMtD|LxDhIbDXJdPrGhHhCxBv@fMpEjLvFtLrFnL~FpLjGlLvG|KpGdLfHdLlHzKrHxK~HzKjIzKrInKvIlK~IlKlJhKrJdKrJbKvJnWpWro@np@jWxWpWjWxKjKzKdK~K~JbLtJbLhJxKxI|LhJvK`IvLnIxLdIz\\lTjShMrWvPpXtPzSrLjRvJp^rPfRfIhNdFj[zKbZpKpZfKrpBvs@db@jNbv@xVvq@~TfXxIxWfJ|a@nOn^tPjAh@~t@b_@lVjNbVxMfm@l]|UxN|UbOxUfO~UnOrr@jf@xr@fg@|wAhfAfa@hZbv@|j@pSbOhW`R`l@ha@f_@~Vn_@jVxRzL|RpLfL|GdLxGhLrGhLlGtYrOrYlObPbI`PvHha@dRjS~IlSvInSlIlSfIpZjLrZxK|ZlK~ZzJpPdFnP`FrPzEpPrE|[nIr\\dIlFlAvJzBnX`GhT`F`mAvSvXhEx[vEz[pEj]tEh]pEri@zFhi@vGxsAfPfmAfPne@dHxf@bIda@fHra@zHl]hHbi@tL|h@jM|i@`Ndp@vQz]hK@?jQhFdhCpt@v[jJp]xJhV`H`ZfIdWfHra@vKdX|Gni@jMl[xGj[pGt[dGr[rFpx@dMr[hEv[~Dhj@dGtj@dFt[dCr[zB|j@|C|j@dClq@fCtgGvObkArC~u@hB|}@~Bz}@bDxUfAlYtAlHn@nUfCtObFlFnB`YlKr`@~L|SzCdNtAjSpBpPhBbR`Ah`@gBnZsB~KYhKRxW`BnZfDpi@~H|f@`I`g@zI~f@hJp[hGnL|B~h@xKrw@lRji@dNri@tN|v@zTdw@|UphKxiDbe@jOzrLr|DdzEl~A`lBhn@bmBxo@tkAbb@pkA|b@pn@`V|u@vZjm@~Wbm@pXzp@z[np@v\\~m@p\\hPfJn\\dRdf@zYff@nZfc@nY|b@|Yl]pVd]~V`TvO|S`P`UhQbUtQ|d@f_@td@|_@boAdfAnp@rk@tp@bk@pj@xe@l}@`u@rq@zi@vk@pc@jh@t_@`WrQbWhQ~b@`Ype@hZ~ZrQ`VlN`VbNvg@lX`S~JfSvJ|aAtc@jBz@jSzIjVpKhV`KjW~JhWpJtStHzSfH|h@`Qdi@~O~g@lN|TzFzTpFt[rHx[fHz[~Gvd@jJfSxDhSjDfnAdSrrArSb\\`Ftu@dLnaCp_@h_AnQj_@xHj_@hIfZbHvc@dLbX|H`XjIrXlIpX|Idt@nVlp@nPlpBjw@pjAjf@|uBz~@~t@vZpa@lQre@tUpb@|W|j@vd@zPjK|PxKlPdLlPnLnPxLfPnM|GrFzFvEvOvMxOnNbLdKxBpBnZ~YbOvOzN`Pt^xa@tNnPfN~PxSxX`NzQzMfRvMdRrMxRnYdc@fYnc@vFvInQvXdYrc@lw@hmAd[re@h[he@jWh_@hKxNjKxNlUb[lU`[xLdP|LxOdMvObMnOpVzYzU`YjP`RlPxQjJdKjJ~JvPrQxPfQnWrW|LxL~LlLb[jYpNxLrTjRlXhUdX`UhXvTvz@lp@hYlTdLpIfL`I|AdAlXzQl[lS~LvHrSjMhPvJlPrJpTdMtTtLna@vSpTtKpTlKlSrJnSnJdSzIhSrI|[xM|[jMlZ`Lx]fMfVhIhVdItUpHnVvHvU~GvUxGtPrEtPjEpXbHnXtGjb@pJnb@bJfH|A``@~Hh_@fHf_@zGj_@pGh_@~Fxb@rGzb@bG`j@bHrTlCrTfCbc@zEdc@lExq@jGzq@~Fxf@rDxf@fDjkAxGjc@rBjc@hB``AhDfcA~B|dAbBty@f@py@NvsAMli@[fi@m@~h@_A|h@gA|h@{A~h@iBbj@{Bjn@uCln@oDdn@}DpgAgIx[oCfy@yHzx@qIjwMo~AzM_Bxp@{H|m@eGpTaCbR}AlMkApMcAlTyAnTsAnc@sBhQm@fQa@nMWnMMx\\Gx[HlMNlMVxTh@xTr@vTdAtTpAvVhBvVxB|h@xFhRfCdRnCp\\pFr\\jGhR|DlRhElb@lK|S|Fv[rJna@xMpVvInWzJtX`LpXxLtVpLrVzLhVlMdV|MlYxPhYrQpl@|`@nKxHvX~SjRfOdQpNrj@bf@z]d\\d_@r^`Q~PbQhQte@hg@je@vg@viAvpAf@h@vjAfrA`e@lh@de@`h@x\\b^~\\t]b]j]dNbNhNtMh]~[fNfMhNxLfShQlSrPlg@ja@xHfGzVrR`TnOjRdNnRpMff@p[vR~LxRxL`]fS`m@z]dR|JlZ~Ozf@lXrAt@pw@``@~s@h^nhBt|@heB~z@`rAdp@njFxiCtnBbaAh_DpzAlzC~xAlwDxkBxaBdy@h{Ajt@`q@~ZxlA~i@pb@nQr[pM|h@vSlZpLzS|Hxh@zQzN|E~RhHxQfGdYnJlUvHjVtH`dAlZta@xKxa@tKza@jK`b@|Jve@|KlR`EnRvDhm@|Lnm@bLh\\zFn\\rF~[hFd\\~Etd@rGvd@hGxd@rFzd@zF~v@rJxu@rJhnBbVnnBxVzZbEzZvD|ZpD~ZlDhZ`DjZtCf[rCn[xBxXjB|XjAx^pAt_@j@pYNrY?`d@o@r_@s@`J]lo@wDxi@qDfe@aEpe@mEnqKgeAhHs@r`B_P~s@yGvz@}H|bAsIl`@yCl`@aCb_@sBh_@sBdb@eBfb@kAn\\o@n\\_@r\\[r\\Un_@Hn_@d@r_@fAt_@vAxV|@zVlAt[nBv[|BlUpBjU|BrUpCvU`DtWvD|WzD|p@lL`p@fMrWjFhWhFt_FleAdgAxUfOdDhk@~Llk@hMdy@rQfy@fRzx@jS~x@zSxc@lMvc@|Mh`@zLd`@pMt\\rLv\\`Mjn@rVxm@vWbo@lZno@f[z}@df@l{@rg@hy@rh@ft@ve@`y@rk@n[bVfCnBTPrVnR`p@dg@tWjSRP|VvRtaBrpAn`BvoALJzaBlpAdwBbbBl[pVNLd]|Wt]lX|_@rYhHzFrmCduBJH`p@rf@tSlOxS~NpSvN|SdN`R~LhRfLlRjL~PpKvg@pXrStKhSlJlUlKjVpKp`@lP~OlGhP`Gvb@lO|b@~Mv_@lLfVbG~]zItN`DtNvCtTrEzTdErWrEzWfExp@xJ|^dFb_@zEh_@xEpc@hFvGdApc@bGxh@`HrpAhPxQ~BbvCd_@~_IzbAdaAdLl]pDl]~Cx]hC|]|B|]~AnNh@pNZh\\h@fWLbDBbOA`OGl_@[n[gAp[kAfOo@dO{@`OaA`OiAx_@wDn_@kEpViDzk@eJfQaDbQiD~PuDdM}CzBk@~b@uKdQ}EbQkF|QuF`RiGbUgIl^{Mh^sNfb@_Qdb@oQnrA{j@vh@_U|h@kTx^sNt^}Mf`@oNf`@}MlPsFnPgFnPgFpPyEbe@qMbR}EbRuEhTeFjTyE~`@mIvi@_KxYeFvYyElVsDnVgDzi@}Gbj@gGxeAwJbf@{Drf@qDvg@cDdSqAlSoAxh@uCxh@oBbv@{C|w@oBhs@qAbYk@bY_@rnAy@jrAIpoAx@hg@p@hg@z@|`@x@`a@fAxl@fB|Ux@|UhAlqAjGpe@rCze@bDxCXfNtAnnAhKnXrCfg@bGnl@zHnl@dJzVpE`WlE~t@dOh|@vSv]nJjj@vOpZlJlZzJvg@lQxg@bR|VfJ~VrJpo@~V~}Adn@lkCvdAbq@rW|YnL~YfLbgCrbAfiCbcAx[dMf\\fM|QpH|QnH`RdHdR~GhQdGrQxF`d@vNrUbHxUtGdUzFrU|FpO|DpLzB~LzBp[jFvYhE~YvDn\\bD`UnBpUjBpQnAzQhA~RlA|RhAl{Mxt@pt@vEl[pBf[jCd^|Dr^fE`ZnDr@Hx[nEn^pFl^jGxXdF|AXv[lGrPrDvPzDbb@~JpZ|HrZpIhZvIfZ~Ili@nQhi@lR|b@rP`c@lQteCrlApCjAt^fSp^xSt\\lSx\\vSbQ|KvQ|Lzc@|[h\\fVd\\zVbZzUbZrVpYtVtQ`PrF|ExPvOnAlAfnAlmAbd@te@b`@hc@fXf[hzB|tC|DdF`U~[|Tl\\lUz]zTd^fRzZ|QvZvSh^hSn^lXng@jWtf@nLhUpLvUjYll@~Vpk@~U~i@hZ|s@~Yft@zKdYvKxYdKfYfK~YtPff@pPxf@|Odf@vOtf@~Olh@`Pph@|Orh@~Ofi@zyB|xHr|@t{CnNlf@pN`f@nNdf@rNff@|Lnb@pLhb@tZzeAxv@bmCrmBjyGzEbPlRfp@lHvVrHxVng@laBlMra@tOff@~G|SpGlRzPdf@zO`d@`Pxc@tNv_@~Ppd@fSjg@nQzb@~Pla@rQfb@rHvPtHnPpR`b@~Rza@tHzOzH|OnR~_@`I|ObIrOfRp^|S|`@~f@t~@zg@b~@`{Bt}Dr|@x}Af|@|~AfeA|pBzMfWrMpW~MpXjUdf@j\\~r@l_@tz@pMrZbMvZpMb[`Ml[jO~_@vNx_@vO~b@r@lBtQbg@vQ`i@tQli@zSlp@xRjn@lP`k@bQpm@~Pln@pSlw@jWtcArSp|@fE~Qnx@hqDzYbrApKze@vKxe@rIz^~GbY|Hd[~H|ZnRxt@pQpo@hJ|[hJ~ZpD~LxD|LhIxWnJjZdKxZ|JnZfKjZtOhc@nPdd@tO|a@dPxa@pI`TrIvS`Tzf@zTng@`JnS`J|Rtd@``AnCpFnOtZjThb@fT|`@nTf`@bVjb@nVpa@fZ~e@xLrR|LdR|Sn[`T`[di@xv@tlAzdBjeF|kHneFnkH`g@xr@~RnXfS~WlRxVzRpVxRjVzR~UzZb^`[b^xp@ls@`XxX`XpXft@jq@nLpKhLfK~YnWn[zWz[pWp[tV|[lVhRhNxj@r`@rk@~_@bWbPlWvO|WzObXbOxVtMdWtM|V~MbWrMfVbMfVzKjVzKdVhKjn@jWpVjJjV~IhPxF|h@|QvRfGvKnD|ZdJlZnIhXfHvUhGjXxGlXpGrpAvXzdD~r@je@zLrSvFrSbG|\\bKz\\vKjTjHfTxHjSfHnSrH|UnJ|UdK|g@fUbTzJfTdKfTnKfSlKxRdKvRlK|g@nYtcCxwA`aAhj@dRbK`o@j\\~]|Ph^rPnQrHnQjH`e@pRd\\vMn[rLxc@lO`QxFbQpFdZ|IfZrIpZbIrYjHx@RtTfFd\\nGnYxFrWfFvd@xIxd@lHxfAdPvt@fIv[bExh@rGdZ|DtyCv^v}@~KrlBtUpt@dJrw@hJ|@J|Cb@RBh_@vEta@fFddAhM`fArMh`@tEb_@`Ez[bDtW`C`TfBpPnAbObAfTpAr`@tBnZjAfX|@f_@x@v\\b@~\\Rt[Fdc@Oh[[zUc@lb@aAf]cAp\\kAdQq@~Ni@\\Adg@gBzi@gBrXs@nSe@p[c@hYYbf@EpYF~WVt[^|[v@xb@vAlc@pBfUrAbW~AfVjB~R~A|`@vD`b@tEjTlCzTzCvP`CpO~B~_@nGbb@pHx\\vGzVdFjZnGtWtFni@pLnOhDtWzFdDt@rWxF|`@rIj[vGph@hKfZtFzb@|HrUbEhXrE`Df@n_@fGrZ|E|g@lHNBhpA~Pn@H`j@~Grh@rIvTpDbMzB`M`C`MhC`MlCvZnHxZhIjTtGxInC`Bh@zL~DlNdFjNlFvUhJrU|J|VjL`OfHzNrHpUdMhUrMj[vRlc@vYl[jUjWdStVvSxVrTbbAnbAj]r_@lZd^vPvTlPjStOhTlOpT`[zd@pMfTpMpT|MzUvM|UnMjV`MpVtM`XvGnNpGnNtO|]lOh^na@nbAzO`a@tOja@~aAzgCh`AfdCfTdj@tGhQvJxVrG`PpDbJlJ~UfMr[nHdRzZ|s@`J|SdJvSzJrU|JlU~Nn\\|Nb\\|Px_@bQh_@pc@j`AzJfSfO|ZfUjd@|f@dbAzOh[li@hcAdUdb@jPtZpRn]~Rp]x\\hl@jSl]dSd]dSz\\zd@`v@vMrSrfAtbBlXna@rX~`@|t@xeA~NxS`OnSle@ro@t_@rg@`StW`ShWf_@`f@xMlPxMdPfh@nn@`h@rm@vqAxyAto@~r@xo@`r@vb@~c@bc@zc@zb@zc@dc@xc@vQdRvQtQvQ|QtQrQrd@rd@|d@hd@lOxNhOnNj`@j^nR|PnRrPzf@|a@le@n_@bRtNlRnNrRnN`S`NvRnMfSlM|SnMxS`MrTzLpTrLnS`KxSrJzSfJnTfJ`]dMl\\bL`\\`KxLdDnMxCz\\~Hd\\`H|u@|Nzc@dIde@bIjXrD~p@zKd_D`h@zjAnRnb@lHpa@|HfnA~TzpAnSpmAnRpmAzS`WrE|VhFzm@dMxvB`f@bd@hLp^dJvS~FF@|\\zIfX|JlNhFnJjDtW|KfNjGdNrGtOjIbMnHtNnIlN~IbXpR~FhEvJ|HfJzHzG~FfUfTrJlJlJxJxQnSxLrNnLfOpTxYnIxLfNrSfKvPjVbc@pLdU~GdN|CzGnHlPtKtVlKxWbGxOfGlPbGbQlFfPlFtPxEfPvEtPrEjQlFvSrGtX`Hf\\vG|[lDbRnDrSzCtRtCvRvEl\\lEr\\~Dx\\tF`g@lVj`CtG`p@~Gxq@bH~p@vC`XzC|W~Dt[nCpS|AjMfBhMfD`UpChQbDzQbGv\\fEnTnEtSfEdRtEtRpEtQzErQbFnQjFfQpF|PxFdQxFpP~Nv`@hGzO`LdXfOr]jJrSzJlSrItQhIlP`DrGlNtXd`@bv@~}Ar|ClHrNboBfyDpVff@xVbf@~xBhiEbTjb@~Snb@jQ~^`Qb_@bQ|_@zPf`@lP``@nPz`@bPv`@zO`a@f`@|cAla@~gAz`AxiClKvXnKrXrG~OtGxO|GxOxGjObHrOdHjOzE|JdF`KdMnVzFpKvFhK~FjK`G`KxN~UhOrUbOtThObT|IvL~IlLfJhLhJ`LtJfLpOfQ|GlHzGfH~G~G~GvG~PnPdO~MfQjOlQtNfQ|MlQnM|PjLdQhLbSxLhS`LjVjMpS`Khn@nYbr@`ZrdBdu@n{Arp@d\\lO`TtKnR`KzKhGxKpGtXbQvXdRdX|RnTnPjXfU|W`VrTvSnT`UvRnTtRzTxTpX|SbY|IvLnIdM|OxUbIrLxH`MrN~VlWbd@|LpUbFtJpEnJxQb`@fLlW`LpWlNh]dKjXtEvL|Kh\\lJhYxFnQtErOzIvZlInZdIjZpHzZ~J|c@~Gt[rGz[dGr[rFf\\jEfYzE~ZvEv\\nEn]tDx\\jDb]fDz]vC~\\lCt]zArSlAxSbB`]`ApS|@rSxAh^h@pSh@tSr@h^h@p^^pc@JvTDjSE|RW`h@Yj]YpS]nSa@fQa@fQiA~\\qAh]{@rS_AlSgC`f@yCfh@ewBv}\\sAbTy|@vkN}b@f~G{Rh|CcDbh@}Cbh@uB`_@oBf_@}Cfn@oCdn@wB`j@mBdj@_Bnh@uArh@}BlaAc@xU_@tU[hTKrMe@vc@a@`d@Wd^KtRKrYEzY@pt@Dj_@Jp^f@j}@Pt^ZxZd@p]b@tVnAts@dA~g@jA~g@n@xTdCxt@rAr^xAr^|FnpA|l@ryLtQhsDlHn}AnClh@~Cni@lFn}@rAzSxAxSlCd^hEdi@xHj}@rIh}@jFph@vFdh@zF|f@pG~g@vGxg@fLvz@zGzc@rPleArFr\\xDlUvFn[|Fn[hGp\\rGf\\dQp{@nPlw@|Njo@xH|[`Iz[~Rbw@tS`w@lInZlKp^xTzt@bUdt@vgAzfD|a@rpAvNbc@dShl@`KzYdKtYjKxYlKpYlKfYrKzXlX|r@tWjo@jYrq@nLfXrLbX~LlXfMlXzL|WbMxWn[lp@bM`WfMxVz[fn@bi@vaAji@paA|qAv`C`jD|iGhj@x_Ath@|{@fTr]fT`]zi@hz@tYhc@tT`\\pj@dx@xoBrnC|FzHzF`IlxAdpBjj@fw@zt@tfAni@ly@jS|[hI|MfSf]`St]xM`VnMhV~Qf^rHfOlHlOtPd^dGtM|F|MdJzSzI~SzKrXvKvXvOhb@lKnYpJ`YxN~b@tFbQpFfQbItXbRfp@|HnYfL|c@xH|ZtHv[dHx[`H|[rHp^fHn^pIrd@fIbf@pPndAbHvd@|G~d@bM~|@fIvl@vHfm@zOtoAtBdR~BvR|Fdf@hQruAl`@jaDh`@x_DvDf\\fEh\\lClSpCfSrChSdHxf@nHvf@lRfmAzKro@~Kro@dOpy@|Ind@bM~n@bF|VfF|VtMjn@bNdn@rKje@zHx\\`Il\\rM|h@fPlo@rE|PdGlUzQbq@jMjd@jQpm@|Odi@hOtf@zN~d@fG`RpDnK|Mda@fK|ZhNha@pKdZpKbZlLh[bMl\\lGlPnGjPrOv`@|Oh`@~h@trAbh@vsAbe@rqArNxa@bRlj@jNpb@fGtQ|F|QxObh@pOdh@hMrc@dM|c@|Slv@|L`e@d[tnAdL|d@dLze@fKxd@rK`f@fP|t@TdAdIz_@dJvd@bJne@zIle@~Iff@zt@~fExg@xwCDRdF|YdHr`@`Ohz@DRpC|O|wAbhIxZpeBzYb`BrPd{@tJ~e@hKhg@tPfw@hKte@rKje@tKde@zKde@dL`e@lL|d@hSlw@hI~ZlIzZ`Tjv@nT|u@xM~c@dUnu@jd@bxAX~@pxQfhi@`]pdAzNnd@rNjd@fJnZdJrZrT~u@dTlv@jItZ`I|Ztc@pfBrPrs@hPrs@nK|e@`Kpe@xJxe@bP|x@rGf]rLzo@nDjRrDlSjDbShFt[fInf@dIfg@jE~WzDtWtHdh@dp@|uElDxVrTt{A|o@nsE`Hfe@ru@|lEbA~CfAhEhEnRtHv[fDpNjDjN|K`b@xI|ZbJhZhJxYlJtYfO`c@bGjPlKlYtKdYzG~PzKnXjPba@pYjq@du@pcBhu@bcBbx@hhB`h@hlA~^`}@~Mv\\p`@|cAzWtt@vJdYpJhYzUbu@fUfv@hJx[|I`\\hKb`@|J``@rRhx@lH`[fHh[bQhy@rGf\\nGj\\jGn\\~Fz\\bN|y@fFd\\bFf\\zLvz@nEx\\|CfUzIrr@fFnb@fB`OzLzdAxIru@bR``Brn@~pFxPfxArNtnAbOjoAzL|~@xEz^fF`_@nH|f@pHtf@tWxaBrFl\\vFf\\`Lzo@pDlRtDhRzLtn@fFnWlFhWrPbx@~Gr[bHn[`HzZbHxZbLtd@zK`d@`Lzc@`IzZbIvZrBxHbPxl@tW`_ArTxt@`J|YfJxYhJbZjJvYpRxk@fVbs@j[l|@rKvYrKjYrK`YtKtXfPja@lP|`@va@lbAbeAnfCbyAhlDlY|q@f^pz@vJpUrb@`dA~a@ddA|Wpq@n[vz@hKpYjNha@nXvz@fIbXjL|`@rEbPlEhPfId[rEnQnErQ|Hf\\fKnd@jMdm@lIlb@`K~j@jDrRdDxR`AfGBLvF`^xHbg@rCrRjCpRpDjY`En]~D`]BTvDn]tIj|@tBvUjCf\\vC`_@lCl^zFh{@|KxfBhJ~~AzJpaBzDnn@bBbVfBbVpCj]nCt]dBpSjBlSfD`^rBbS~BdS`C`ShCbShC`SxEt\\lF`]|CpRbDhRfGj\\rG`\\dEjRfEdRjHtZbIx[hIb[xIzZ~IfZtJpZdK`ZhKhYlGrPpGnPpG`PtGxO~GxO`HrOfHnOjHdOjRb_@vHhNjW~c@jNlUdKzO`KhObK`OpLjPhO`S~ObSdPzRrPrR|PtQbQjQlQnPdKjJnPhOxQ`OtKvItKjIpRrN`JrG~IjG~MfJzM`Jb`@pVf_@vU`]bSf`A`k@p|@rh@t_CpvAj]vSl]bTh`@pV|NvJzN|JnTrOdPrLbRxNhQzNtP`OnPnOlOpOnOlPrOlQvOrRlNbRfN~RxOvUjObW~FbKzFfKpMnV|EtJzE~J|GvNbL~VzV~o@fFxNfFvOnLjb@fPzo@zKzf@lGj[hC|M`CzMnD|SfFb\\hEtZp@xFbClSxD`^fDd^`Dz]dCp]fE~p@|Chh@nCji@rMl|CzMpfDr\\vjIj\\jeIxMpeDzDh`Az@lSdFrnA`B`_@hBj`@~Ed~@zCvh@jAtQrAxQlCv]rCr]jDha@pBvS|BnSrFtg@jFzb@`F~^nC~RtCxRpGn`@bDzR~CzQlGn]`DnPfDhPdIf`@nId`@zHp\\xHb[jIn[rId[tInZpMlb@vJvZjL~\\tMr^lNr_@nGhPvGdPxI|S~IrSrJnTxJbTzHbP~GnNrMjW~LvUfXhf@nSz^vSj^~g@tz@fq@ziA||AreCbq@|iAv[vk@pZvj@pM|V|NnY|[np@|Urh@~Srf@ja@paApIhTlIfTrOnb@hCjH|Rjj@xHbUvHfUdJdYfNhc@dJ~Y`Jf[tLvb@pId[xEpQrEtQ`L`e@`Ur`AxThaArR~|@xH|]nHb^pe@x|BlK|g@pIt`@nClMnB~IjDtOtHj^~D~Q|DdQfSl}@bLbf@rLdg@~K|d@rLle@dYtfA|Lzc@vIn\\h^ppAzJx]~L`a@dXv|@~Y``AtSvo@tYh|@`Shl@jSfk@na@dhAv~@bbC~aA`eCdaAhxBjlAljCzuLbtWpChGteAd~B~eAl|Bxb@h|@xc@|{@tXzh@dq@rkArk@``Afb@hp@pXda@hx@biAls@n~@rq@jy@t^db@x^|`@xp@dr@pY`YbYhXrYbXnVxTti@te@xa@`^rD~CfmAvcAbmA`cAbvA|jAz}@bv@d|@fu@tt@to@vd@va@dTlSxKjKpp@xp@\\\\`UxUhR|SfNpOrOvQfRxTrUlZrS`WxTbZfVp\\vExGfQbWlSpZx@nAlh@jy@ji@`~@dZbj@f[|k@`\\`q@fPl]pKlUrJfTr\\nv@b\\fy@nGfP|Q~f@~Olc@vWnv@rRpm@~Ln`@zS|r@|Ndg@fMtc@lQzn@rErPnF`SllBb_H|Shu@zUrw@jVbw@vXjy@lOrb@lc@niAdUti@t`@p|@lXjj@|R|_@fOnYrm@feAjR~Ytg@hv@fh@rs@pT~XzTnXnk@rp@|c@ne@jf@ze@d_@x\\hb@f^n`@|Zve@t]t\\rUvg@p]tb@`W|PrK`tCpeB`TdNda@xW|U|O`[~Sl|@fo@tpAzbAtp@pj@~a@t^`e@jb@vd@rd@`bAj`A`cAneAxn@dt@pYh]dQvSvW|[|j@tr@vi@hq@~j@hr@tqAzzAv]r_@z]~^r[b\\~VzVjQbQtN`Nti@jg@|m@xi@`o@fi@zb@d]hKpIn^~X`m@jc@jm@bc@noA~x@xcBvdA`SzLhnAnt@rb@hXfa@rWn]dUvc@hZ`g@p]lc@f[xb@`[phAhz@jd@|]|a@l\\f[bWl^dZhd@d`@rn@vi@ve@rb@zu@fr@fv@bt@l[b[``@v^jo@jm@fPbOr~@z{@ji@nd@db@n^dy@zq@nd@x^tq@li@dr@rh@zIdHzyAbfAle@l\\lPhLzbAds@vXtRxp@`e@jp@`e@hnA`|@fkG|kEhf@j]|q@`g@vh@p`@~k@tc@rs@bl@r]|Yd_@`\\f`@b^|LbLrPdP`]z\\h\\b]lh@pj@`QrRnUvWfU`XlPzRzYr^zFfHxNdR|Q~UrVl\\pPnU|_A|vAn_AjxA|v@hrAlP`Zjh@j`Ank@dfAzp@|rAdxCrxFltBh~Dh{@v~AnaA~bBny@ztA`{@dsAr_A`vAv`AjtApcAbtAvOhSnZ|_@hYv^PRh{@ncAdk@rp@hk@~p@pk@xp@jk@|p@dk@vp@tk@bq@bk@pp@~j@np@pk@hq@twAxbBfk@pp@fk@tp@`k@np@vk@jq@fk@vp@bTtVdVxX|T|Wr_BnlBrbA|gAteArgAljA`fAhxA|oA~kAd`A|kAz|@niA|v@xjAjt@bfAbn@jqAlq@dkAfk@zkA`h@`lAbe@rdK|rDzuAbg@rlA`e@phAlg@hhAng@rwAxt@bsAxs@lnJduFhbBn}@jhB|}@bcAdd@n@XljArb@rlArb@zgAn\\frAh]xtAlYbuAvUtvAtTv}Gt_AvaFzr@j|Cnc@jzK||Axj@vHn|Cn`@dgBzOj}AzJz{AbFtTVlkArA~yAoAr}AwEzyAqIbzAmNb_BwS|xAoVpxHozAjbBa[`iBuWdxAmQ`{AcMb`BkH`pAmBhoAl@fqApCzf@pBdh@tCzh@pD|i@xEfmArNtiAbPhRlC|qXxcF``BtWbcBzTbdB~Px_CbMzvAjCzmAh@lpPkSvrAKtpAv@~mA|CnmAjFfpAbLrpA`O~gA~Pj~A~\\|yAn_@hlEdmAze@bMdt@rQlbA|SxpAjS~kAjMn}@fFbMt@plAvBrkAw@vdAeDvgAeG~}CcUpmAwJfpA{FjgAmB~iAhAtbA`CxkAbIteArMniAdRt_ApRdzD`|@z|@xRr{@lP~z@|Nn}@jMnlApNnrAdLhqAxHfhA|FrmIxb@lxBhNz{AhMfiBpSt`AjLvgAfOzlBnYvtB~^dtAfYtqAzZz}Ap`@z|EbqAdfCpq@fcEbiAx|DpeAnPnE|_Clm@hRdFjz@zR~{@~TxQpE`~Av[zFjAlgLv}BfiAlVhhApWfz@fVjFjBri@hRtt@z[ry@tc@~p@fb@|s@jj@he@fa@~a@r`@ld@fh@xa@xg@jb@zm@~m@baA`d@jy@zk@rjA`fDtoHpf@zaA`]bp@j`@`q@xg@rw@vZta@b_@~b@xLnNfq@~s@xf@dc@ln@bb@|TrOfVvOrUlNjV`Ndg@xVlZrM`ZjL`t@b[`v@rSjo@vNbeAxRveC~\\fq@~Kfq@nLh~@fQjc@~Ihw@hSlmApa@xw@b[xm@fXlu@``@zp@~`@`u@tg@l{@bq@jr@~m@|l@rk@|o@bs@x}@phAjd@bp@n_@nk@pg@bz@hr@tmAfgBvhDxGfN~I|P`]zo@ziHzdNh_AhgBfnA`_ClSfa@jm@rjAnj@|dA|o@|hAxl@v}@zt@`aAvq@jv@pv@tv@zr@pl@pk@|a@xdA~m@dm@pY`s@nXbp@xR|v@~Qnx@bMj`ArJvt@fE~r@zA`_AcCjFYhjAiGvm@yF|fDsYjaCwUxcBgO|_@_Dh_@mCfeAcD`iAoCbv@r@jt@|Cdw@|Dp|@lJtcA`PnhAhVnoFzqArxAv\\r}Az\\`}@bPpLxBbQ~CzdBvWxgAlOliAxOblB`WbjCl_@~dAzPx[hGrf@|K`_@bL|u@fXlj@dUl_@pR`b@~T|^hUfa@xXzWpSj[pWrFpE|\\d[rZzZnWdYfTfWdUlYzOpTrAhB~RfYpYxc@~Q`[dRx\\`c@z{@`b@p}@|_@~z@vl@rwA`p@x}Ad[hu@xb@jbA`a@n_AzXbo@~U|g@`Znk@fPxZbJpOl^tk@h]|e@`b@ng@rb@dd@f^n\\pj@bc@jYxRbg@`Z`g@dVta@dPz[~KhZjIlYtGb]jHrx@tMhy@fJ~y@zHx_AdJ`[fD|}AfOlz@xKb~@lOhp@zNvl@pOnl@nRvn@~Urh@`UzTdL~XvNr[rQnZ`RbT~MnUdPbQjMbP`Mla@t\\vTvRvQzPln@~l@z_AzbAd~@vcApd@bh@tp@dr@vWpXpSxRtc@n_@zWdTrX`S`ZtSl[hRnQtJrSbKlXxMpTbJ|XtKtWlIjYhJjc@xK|MhCd[~F`^jF~SdCnTpBrVlBpb@fBt\\nAj\\Z|_Aa@b\\O`gAgBd[EbyAqDt\\cAv[m@f{@i@`]@l\\J|\\^nc@`Av\\dBt[fBv\\|B|b@|Dxj@nG|[xEj\\~F|^`Hb`@nIbf@pLrh@bOz\\zJ@?dpAp`@jp@pR|b@bMva@dL~g@rNnd@rLfg@zLdh@fL`TpDra@`Hpb@`GhXhDtVhC`n@vEh_@zBl_@vAn\\v@d`@p@hg@Dz~@k@ti@o@d`@qAzP}@rLm@B?r\\_Bvk@wC|fAoG|vBkQph@wFtOkBpb@iEdmAiQnsA}SfbAoStq@qO|l@oPxh@{OheAm_@`dAsb@xmA}k@hmAso@bnByeAlt@s`@xf@iWxe@aVzWkMnWoLhVcKzb@}Pjv@wXxz@mXfiA{YhrAkX~}A_WhtBoYhtB}YhzAeVddBw^fY_Hxm@{O~oAe`@re@}Op`Aq_@~cAac@bOeHt~E_~B|q@k]hc@qSte@uUjLcF|CsAn]gO`^iPrB_AzUgKhT{Iv^uNpd@qPl@UdgA{_@~lAa_@hp@cR|Z}Hbq@iQh_AqRdyBae@PExeEk}@tmEs~@diDmt@vuAy[t[wHdq@}PduAk`@jnBym@vjBkp@|q@cXvmFizBxzBk_AhjAwd@rjAqb@vqAmb@teA}ZzjAoZ`~@wSfd@qJtoAgUrrAoSjdHwaAvjDcg@vg@iIvc@qHhyAgXbpAkX~x@cSz`@qKjbA_Zny@iYdXuJlcAaa@hbA}c@`hAyj@hz@ce@~_Awk@~cA}q@lcAmu@`fAo{@zaAi|@lcAgbAvz@c}@b_A}dAzoBu_CdfBcyBjtBohCl{@yaAlfA{gAliAmcAd~@gs@diAuv@x`@oVvd@qW~rAar@b}DuhBtgAeg@|sBsaAx\\iQla@oUb`@cWzb@cYp\\sV|`@c\\t}@cz@n`@ib@j`@{d@j^md@nXq^|_@_j@j]_h@dp@qcAz\\gi@zj@_|@|KgPte@_r@n^{e@~d@oi@p_Bq}AduA_cAjiBoy@f`Boa@`hBkS`lAs@juAfFf|AdVfaBpe@z{Atv@z~A~~@xwCbqBdpAry@j]vTv[jRzt@xa@ht@t^hB|@xmAnk@|s@tWlC`Aje@bPtx@lUpx@xSrp@lNzp@|Lbh@lH~~@xL`OlAhkBnOftLn{@`\\~BbiKpu@luCdWjuBhUlqBxUvlBxXxuGz`Avl^hlFlnWzwDr_BvSrb@|GfcAnKjgCbTbjCvOdq@~BblAdEtjBvFvfNhLfcCxHjuBbMx}BfUrsBt\\xwBrb@liB`g@vtGtoBroBtl@p}Aje@zjBha@x|@`P~eArRhxBbTbg@bCl[|Afb@rBx_CxBbgBcClhC_PxrBiVnbC{c@f~Bcn@XIb_Ciz@~hDy}AjzCc_BraQydJhi@aW|JyE~z@i^p{Aqk@lCcAtmB_g@hu@}Nnu@sLbf@sI~hBeNxl@oBj|AcFztBuGjcBiDdRa@nO[`hCwK|yBaOdsB_V`|OsqC|iBeWb}AcL|bBoD`|AtBlyAlHb_AbGjyAvTpzJzfBvdAvOprApN~uAjKxqAnDl@BlqBc@|{AgJnhB_ShzAuW~vAq^`eBsl@l~@ca@faAkg@f_@{SrVqNbNsJ|FwDxu@ig@rmAa`AzkAwdAtlC}`CxeB}zApYyV`cCo_BxyDqmBjy@{]jqBqs@vlKczDffCohAhrBciAjp@uc@xx@ck@fx@in@br@al@b{@cu@hbDmeDvp@gs@pYgYrU{Uhk@il@pt@gr@tt@ui@p`A}m@`{@qb@`~@{_@|w@uT~EsAzhFonAlmAo\\`iAi_@|vAil@jqAoq@bjA_r@hgFgtDpmA{z@jxAuy@zrAkn@haBen@pxAy_@fx@{Nny@eNvjAwNd`A{If`AgGb`Ieg@b_BuOx_ByTjcBmYfw@kPvf@}Lb^cJnc@uLtOiEbr@_Svb@_Mf_HcvBf_@iLzeAsYbxAw_@~uAmWvoAeRtmAuOncAwIlgAaJpeAqExeAqE~eAyDb}@sBj|@eBhwEoLnyCuLtgAsGd_AgHrFm@p{@mJhuA_SlwAyXz{Ae^z_AcXdcAoZ|aAu\\dkA_d@zdAme@l_Agb@lv@}c@|hBsdAbmEamCpc@kZ`wBwsAdYmQn~]i|TxC{B~KoIx{@_p@plAeeAxfAikArdAm{AnmAuxBl_DkhHxz@_lBzx@y{A`iAi`BlbAwiAxkAkfAfuAu{@voAmm@bzAqk@jtDqoArE}AlpAue@vcByw@tpBciAffB_pAjuFelEznAu}@~dBo_Al{Akq@d|Asg@`y@iVdmAa\\rmBuh@js@yQtkBae@fW}Gr_AsWlhBek@r_Csy@l^}Mt]yLxqAch@laEqdBroMuoF``Bin@v|Ayj@raBgf@h}A{a@|kAuWlfAcTbcAsP~lAaPlhA{Mlx@mHdYiC~hB{JflBgFrmBuBra@e@b`BvBz|BbInfAdGxwAxL|jA|Ld_AjMtx@zLtpAhUznAlWl|Aj_@t{ErpAngBdf@l@NpeA`YfcAdVb_AzRlcAxQz_AjNz{@xKrbA`KxeA~If_ArE|cA`Dzb@fA~Zv@|fAn@nj@Wx[a@~z@eAjcAiDvfAmG`_AeIbw@iIrbAaLrx@qMz~@{Orx@aRli@qLpTyFx`A_Wpo@eRdr@kTdq@wUnu@cYt|Awo@jBq@jWaMndAqg@p}Ak{@t{Ai}@|iDazB`C}AbqAwy@`bAem@ju@ec@|p@c^lo@s\\pm@kYvd@}Sng@eTzcAc^jp@aU|JiDrt@yShw@qSd_AsSzoB{_@x{Dep@rsAsUtwAcYx`AkU~cAaXbcAe[baAc]~nAig@pw@}]bdAgh@j}@of@nfDsqB~`Fe|CpoAiw@rcCouAnbBwz@dk@oX`k@uWbdBut@~wCqnAthHwyCd~CerA|oCurAlsAgr@hqA}t@zpAcv@dhFkbDfhF}`DbS}KpeB}_Ad_@qR~wAau@`IyDvg@qVtc@wRjj@kVjwAqn@bq@_Z`CeAtC}AbfCmrAleBuw@bfGwpCxxAym@tnAgc@xr@wT`jAu\\reCko@dh@uH|lAkPjZsDx_@sFn^cEnf@mFnf@}Dra@wCphA{Fd\\wA~w@_Bpp@aAxaBCvdBNpjE`EjdBdBtfBfB`_@bAjg@vBrh@vBxs@xEzy@hJjy@rLb[jF~x@vPzn@bPzm@lR~r@`Vbt@n[lO`G|YfNrz@ra@r|@nk@xh@n[pPrK|l@f`@rpA~v@hn@hZl`Ah_@da@zMzU|H|q@bUda@vNhP|Fpp@pXh`@lRjPjJ|PpJh}@~l@hp@hg@dUhRdKrIrOnMp}EfzE`A~@z|Az{Azg@vk@~i@xr@~Vp]rWja@tg@x|@f`@bv@do@fvAteBbnE|sAboD`uAjmDxe@xiAbM~X|Xbk@~c@|t@~b@~l@xWx\\`RrR|PhQZZ~HdIZZ|FtE~WdTri@l^l_@`Sp`@dQhd@rP`k@tNbf@bId`BxOvc@`E~_DvX|g@`FlYhCbrB|Rns@pGhkClVpGl@|KzApq@hJrM~BzAXra@pIj_@vMng@jSjo@v\\`_DfjB`sAdu@piDtqB`nBx~@njA~j@dyCxoAps@rZtm@|Yde@p[l^r[nZj]x_@hc@dXt`@tWpb@f]lu@jiAnsClTpi@`BxDhK`V~nAr_DbXnk@`o@jgAdLfPpRlUnUjVj[pYvc@`[d_@vTdc@tSldAx]bXbIfzBvp@j~Bxr@pK|Cdr@bS`rAva@hK`DjThIb\\`OtV|M|c@dZzf@r^ta@j`@bb@|c@dX|Zj~B`mCrm@vp@leBrsBho@`q@t]`\\jUrSpm@~i@hNdN`N|NlVx_@dKzOpJvPxJfRbJhSxGvPpH~S|FdTvCpKhCdOpA`Mz@|Oh@fKAjWg@zRcAxU[hULhKf@xJjB`MjCtLxEzLlFtItHlItGnEvCnAzCdAxEv@dGf@tFIrFy@xH_CbHoDpNaK|X_Ujd@_\\jLyGxPmJdPwItOkHdWcL`W{KrVaMvAw@`VkMlQqJt`@uQje@}Svs@oZzFaCtTiJ|oAkk@vhAkg@fn@yXnoBu{@ncAs_@zXyJbWyHdm@iPfj@wLhm@_Ljc@oGxg@oGr_@wCz]iD|eAgDdoAo@rDHby@|A~jAfGju@zG~pEpp@nJlAbZxD`e@tD|^jAd^\\r^aAzY}Af[eDnf@mH`j@_Mtv@cU~M{Dzq@ySlR{FxWaIlVmHnj@qPvkAa^xr@}Svf@gOdX_Hfa@mJzJqBjYoDrYeCfXkAp^U|_@x@`j@dBzb@f@xc@sAh`@eDnc@sGjg@cMra@}NdUmJzb@mQjSwHvOoEfRaEjZ_E~VgBj^I|VpAlZxCpb@tIdl@rPzbA`]|[fMf[vNpWtOtNhKrIjH|UxUjS|W|Rr\\pLvVxLhZpIbXpNfm@zZfsArJ`\\dNf`@`Qta@jL|UzOtYzPzWhUzZbR~S~bAnaApWn[bPhUvXdf@vJlR|ItRpOha@pIvWzGpUlJx_@zJ~h@jF|XvI~b@nKra@pEdObIbTnK~UbLnTrLlRrKzNhXxYvOnNzSjOnQ|Jr]lNpWlHb\\nEtT~AfYHda@kCnH_A~U}CtWaBfCOjYc@rXVtMt@rXjDhc@~HpOrFhMvEzM~FhQ|IdY~RvOxLpTrSfE~DjWp[fRvXxKrQ|@xAnZhh@v^~n@vsAp}BxgCrlE|FrKpH|LhTn^|HjKvIbKvIpJlJbJvBfBvFvExJfHvWnPdKdF|^pSfRvLdRtMfOvLh^nZlh@jc@ls@~l@rCbCxx@dr@hOzL|d@d^xg@z]d\\lSnMdIpZlP`_@|Q|Ap@~[vNfq@nVxSdH`xAz]bHlApl@lKxl@vIhVfDnz@jL``Cn\\|nDfg@pUlEh`@`JlSjGdZtM``@dVfQnNzQ~PpMbOrSdXdWnc@dUpf@hTrn@zLlg@zMjv@nKxu@hS|zA|H|m@nEn]zPfuAxBjQ`q@rdFzKj~@pI|fAbC`x@z@hm@@l@?tg@iAbw@eEjaAmJxnA{Dn`@kHdt@sR`nBoRbpB_Ixq@yAbO_f@ryEoo@jhFgKju@cEfZcJjj@qJdk@iRrhAqY~cBoc@pzBgXzjAq\\`_BkQlr@qIn\\}YfhAgMnd@iMpd@_\\phAiBjGaJ|ZagAjnDyQjl@mTpr@oo@fsBq^rnAaTjx@qQvy@oJbg@iHzb@wKhx@cGlj@{Exi@eHdhAmAj\\_AnZm@v^aAbv@Ark@@|`@dCv`AvDdiA`FllAfTlgF`AleA~I|zBzBht@zBvr@rB~h@T`UEfPYxM]bIsAbVk@bHUzCsArNaBhR{@tLO`I?bILlKj@~Mz@bMHn@|BvPlCdO|DpN`EvLjCtGlErI~HxLtH~HxHpFvMtF~HjBlGr@vHF|Js@tJaB~HwC~H}D~IgD`HqBfG_AfLAhId@rKtB~IvDvErCnHbK~ExF|Zb^zNbSdFrIpGrKzEhIhInNnV~e@nUzg@lLhXxa@hkAtq@tsB|`@znAhd@lvAzgA`jDhhBzwFp`ApzCpfArfDbItVfZz_Afp@|qB~w@`dCdx@ndCrXd{@nw@faCxy@vaCho@|fB|p@ffBz`@vcAn^~|@`x@~gBvJvS|Ynn@fbA`rBrd@b}@`o@nlAdaAbhBjqCdaF~xBnvDjnBfiDbPvXreAvjBpkAztBf_Ah`BdBzCzRb]`BrC|@|AjdIfrNt[zk@pd@`}@pFrKlJ~Qzl@`oA`@z@hv@r`Bdc@h_AfDnHz]lu@`d@x`A~{@dhBfUle@dk@hhA~FhLzVne@`\\|k@`k@bcAn}@jzArdAjcBj^nk@NV`S|YvgB|qCxxBliDzcFv}Hr}BjmDhmApfBd]xd@~f@br@zp@f|@xz@neAxBfCvfA~nAruAz{Ar{A`_BtvGhxGn_En_EfAfAXXfAfAd~Bf~B`rA~sA|tCjyCvcBnhB|mClzCfvB~gC~ArB`r@f{@~oAxaB~kAnaBp|@vpAbp@~aAd_AvyAxy@pwArr@nnAjiAjxBbeA~tBjh@lgAdr@|zAr_BbrDvf@hlAreBlhE~rAtiDvk@|zABH~kClcHfw@bsBfBjElW~o@hWvo@lDdIdjArkCr]~u@h]pr@|{AnyCrqCdnF~F`LjbBbaDrjAjzB`nBltDb}AvwC`kAxxBzw@lxA|h@f~@zj@p_Ax]pj@x^vj@zc@~o@rfA|yAx`BznB|dA~iAt`@na@rb@nc@|[bZfq@zm@pw@vp@xy@rp@~lAv|@frA~{@h`Ank@pcAxi@loA`p@|mGxvCnjCrkA|~DfgBxqBj{@~cChaAjqAjf@hrAvc@vWrInV`Ips@pUdiB~f@zeEt|@~p@`Llp@fJ~o@tIfr@rHxhC|R~_A|D`bAfC`{@n@~d@F~TU~CBjo@o@rb@_Alh@iB|VgAzy@aF~h@iEdNuAnq@yGby@mKvw@aMjq@kLn{Ag[nu@wQfv@oSzvAeb@lkAaa@rnA}d@x\\gN`b@aQxi@iV~iBiz@xoH_wD~jBcaARKjhAyj@xoCsrAhnBuz@v`Cy{@p|B{u@|hC{r@bhCcf@`wA{TbtAuQpzDoa@vaD{XvuEm`@bzD_ThqDuFxiBz@lf@l@d{BdHnnBbKjiBdO|fBzWt|Bj`@h{@`Q`|@fPzu@nNpjE~w@n~Br_@pjC`a@jlArJdz@nJjaEd\\tcAnFbeH~^tgC`VrxBha@hwCv{@vy@tYls@hSle@|NvpBnl@vm@rPfs@bOliBpWxpBtIzsCwH`aAkL|a@aFbaAkLvaDyf@|dAcRxyAeTbXqFrrC_j@l`Dyw@zeEmtAzoDm{AtvD{oB|jDsyBphCgoB`hQofOxdJ_aIhC{BrwDawCbdB_gAfiCgkAjaBag@z`Bu_@d`AiPlz@mIt~BcMjlB[hiBrGh|AhOlTxBlcAtNx~@lU|hBfd@feIveChmY~bJpx@~Ufn@dNf_A`LpTpAlU^t\\Vx]y@r~BoVjnA{MpvBoWzpCk\\|bBwSlbBiRpdBaC`m@fDpSpBpOpB~N~BdTnEpSjF|h@fPdS`Ilm@bZtgAnu@rh@df@ji@tm@fy@zkAhRlYt`CftDpcD`dFdfA~tAl`Af~@paAnn@dtAxo@p`Cn`AzpBvbAda\\~wQxsFj}CdNxHtfAhm@fxIr_F~pFpyCtaBd_Abt@na@tn@h]~|@nf@dh@zZ~g@vZ|cAdr@lz@`j@tBrAzf@fXzaBdt@hfA`k@|u@~`@riC~xApvCbbBXNnrMjkHv_BtbAx}AntAbd@de@|b@lh@pT|YnUr\\jh@dy@li@x|@tUf^pTb[~QhVrT~Vp`@z`@`\\pXf\\fVdMnI|p@j_@|r@zX~}@fVbk@dK~e@hEbf@fA`q@Jrq@iDlkBmNvn@mBfn@Gvm@l@dl@~Cro@~Gxm@|IxrA`]fmaBtvc@bJdC`h@hNxiJlfCve@dMflKzuCnkVh|G`_@vOfh@jVtu@xd@|i@h`@bh@~c@ze@rf@t_@pd@no@b~@~_A~aBt}@n`Bb`@tr@t`@vm@pa@zj@pf@|m@pw@ft@vb@p_@xMvJpi@j[hh@~WzVdL|v@|Wrl@hNtHnAl`Ch`@zB^ttBbXtq@vIjwE~i@`n@dMrk@vPhx@d[peBj~@bNfHnm@h[jxC~{Aj{ClyAroFvnCtqF|oCzoCnuAl}G|iDt|FhvClhAlj@hvBffAzgJfuEzjNndHv_@lR~nAjn@`uM|uGn[dQj{@ni@ve@x`@hOvN~PxPtTfWvTjYbVr\\xZrg@`f@r`Az^`u@|[fn@pRt\\rYvc@p]pe@p_@zb@bd@|b@vSdPfl@fa@xxAzz@nt@d`@dT|M`TtNpm@ve@jXdXjc@df@xb@hg@`fAfqAbt@j|@tr@hy@vSpU~WpXt^v\\rn@zf@zo@lb@vfBj}@ppIzpChpTlkHndOnaF~nQh~FnoLz{DbBj@n|Et_B^LpwFliBh\\rKtbHp}BvvArd@jmAzXhcA~M`w@xF~qA`EnuJrY~{A`A~`BeLzgFqi@`_AgFrx@\\b`ArGfr@xLrt@~Rzs@~[ht@f\\f_@vQneB`|@pR|J~l@jZ`qBjcArdFjhCjqEh|Bn}BjiA~rBjdAtlA~b@tbArSrcAnIzkAPlqA_K``HseAhiAgQ|x@wHzt@oB~z@lBt_AnJj_A`TraAr^r}@|h@d`Afs@fq@fr@hl@jm@jk@fi@fu@~m@rsKrtIdw`@jm[dbSp{O`eApeAzo@z{@|l@bfAln@`{AtlAfvDvAnEfm@f{AjIlPjG~L`m@bbAfJbNnS~Wl`@lc@|c@db@j{@fo@pj@jZhh@tTrf@xO|h@nMfoArNne@~BpBJd|I~GvcA|Dpv@zJnk@`Ldx@dXjc@xRfh@vYpa@hYnl@jg@bx@l|@lf@dr@nsAfrBbdEfmGjvB`bDnbJldNp^bj@zxIdyMlvA~wBbyMzeSd|DvaGrzDv|F~m@rv@~aA|~@vr@~h@rva@dkYznC`jBdhBleA|wA|e@fnAzR`pAfElpAgFjnAoOriAka@zpBmr@tm@}TpaA_^tm@yQhj@kMlYiE`YsCtYoB~YkAnl@Hfl@bB~k@rGzThDjTxExQdEl`@tLz_@xNda@lRrNjIrC`BpBhAvf@b]tl@lg@`k@hm@`d@rl@~a@dq@rXvh@fY`o@nPjc@jQzi@|Ib[nJn`@xS~bArI~j@rD~YpK~{@xPvbCjj@nfI|SxqBrYx`Bl]zrAlb@`lA|i@~iAbr@xgAxx@~~@~b@fb@lf@p^jeApq@rkAdx@vxAd`AlnEtoCtoErlCjeVntN~x@xd@zg@rYdh@vZ|qAxv@fQ~L~sCnqBtBzAb@VzBrAxAz@puAvp@x]hSfuAxt@|o@n]tyAn|@zoIdbFrw]|vSzaM`oHhgJ`sFzsAvv@po@p[x{@~Z`{@pRlj@`H|z@|El}@Ov~AyFzvAaDrd@LbfApIpb@zGrInBlDx@z_AhTfr@bRrVrGlm@zOhz@|Thb@hLtg@~Qff@nWfs@he@pV|SnUfUdQxR`StV`_AppAdk@`w@v]pc@x]v^~\\b\\d`A`r@vbAti@drAv^fbCz^xbD`e@pko@pvInzAtPp|Vfm@rqH`OnoK`Xjh@pAd~I`TjfK`UvmAhC``@fCp]rD|cArSdu@bZrv@nb@VNddA~|@daAloAd[|i@ha@b~@`]xdAfx@vpDpWrlA`\\ftAvs@xlCjdAp`Edm@xwCt}@bnFjp@noD~w@bjD|bA|bElXrpA`Yl_B|PtnAnOjtA|LjwAlJd~AfIf_CvFbsEfE|jDhDvoAbFvqA~HhtAvLp|Ar_@zsExS|yC|IfbCnDhdCzEtyG|GrbCzRdlC~Jr`AdLr|@rP`}@vTvhA~Sn}@xY|gAp\\`bAn_@~eAt}@|kBtkApkBdnAzdBjlAl}Afm@tr@vt@xu@b|A~sAz~@ns@b}@lm@dpBtsAv_Cn_Bp}ApnAn|AfsApd@ve@`{@~|@rg@bm@dj@~q@zh@ds@`PvTrZrd@lQ~YhP|Y`Rl_@jRdc@zu@l~Bve@lvBfZfdBjHbp@lJzz@zVtdBrb@llBni@hxAbi@rsAjf@n_B~X~uApTj}AfLzpAhHfjBJ|eAgDjvB}@jdBzBpaAfFbdAnRdgBrJ|q@lNbw@bj@ziBhn@j~Adi@leAhm@rmAxv@beBfm@d{Api@l~AjXfs@`Qnk@lj@zyArVdn@f[hr@bc@~{@pZph@nd@~t@p~@rpA|e@xm@zDrEpHxIhsAjbBtq@tz@~sE|xFlsAtaB|V`[pItKdnAf~AvDvEn`@bf@`NrPb{@ldA|MhRtg@rs@`e@`m@~y@j`AfbBrvAx}At{Ang@`i@`l@ru@xNnRdTbYRXrd@jv@j{@``BxcAflBfw@`hA~eAlfA`nA~y@jaB`q@~~Cf}@~l@`Qb_AdVbl@dLpl@|Inh@nDbq@dC`k@?tw@qEdZkCv_@yD`i@{Gzo@{Hjq@gFpg@uBx^c@vm@b@d_AfH~i@zFhnAnWbgAt_@jsAph@r|@t^df@nTzZhNr}@l_@pl@`Td^rKff@`Mps@pNtiArTl[vGta@zIjf@bN`c@fNh^lN~WzKr\\rOv]pQnb@bWf@ZpW`Pl^dWp[rVbn@vh@ds@|s@~\\t_@zq@~w@tc@pf@na@z`@bb@~]na@tYdc@rW`_@|QtU|Jlh@`Rfa@lKp^zHjj@pIfh@zFdr@fHnd@dEnYnAp[~@bd@DpZeA~a@{CnQ_B|]eEjr@aJ`[{CbYkBtR_Az[_@vYUh\\T~i@zC`k@rGxb@fHbd@jKvt@bUbw@fWn^nK`W|F~`@jGtUnC`Op@pb@|Bvj@lBfbEvMdhAnDfe@I`Vo@lWqBbg@_Gtg@mJ~`AcQza@sHb]mEhXmDh]sBl_@y@nTB`[z@jeApIzx@pIvXdCtVh@tZ^vp@mA~[eAtb@kJfq@iLz`@qFzh@iHny@mA`g@xFrd@xIng@dP`k@t\\|t@nk@vt@xz@pm@p{@`r@`fA~w@dmApu@d|@jy@|r@l|@fo@f}@zd@d`An_@nlAd`@js@fPbN|CzdAfNhkAzJffAtN`jAfVzeAlYhaA|Mxk@zCra@Sxw@iEvz@uOb\\cI~LwEhSyIbMgGjL{GjQoKdHwExj@w`@d^iWxTqNzWcOlSmJlRgH|MaEjMkD`TmElMqBfMaBtMiAbMo@tMc@xMIjUJ`Qn@zPvA`UlCnThE`[fItSdHtStIrRzJjL|GhRbMbRtN|JxIxJhJfMzMlMhOlOdSpNjT~MhUzKdTpLlWhTvf@`Udh@nGzMlHtNdKtQdL`R`JzMjN~Q|ObRnPbQjPpOrQrN~QlMzLtHvRpKrSpJxS|HtY|ItSjFdW~EpUnDhRtBpLbAx@HnDZnOZ`IJtIHrTWtMm@tNkA~L}AhMuB|SgEzy@gRjx@qQzaGwsA~`@sJjJmBvLoBhNmB~LaAzMi@jIYdJE|Tl@vTlBdMlBhM~BjMbDbOhFhJbDjIvD|VhNvQfMtK`JnLrLhNzNvI~KrIvLxMfT~IdPlYtl@rDlIbGtM|FhNxF|NdElKlE|KnG`RpGbRvFtQ~F~RzG~UzFhTbGzV|F~WnDzRrC`QvCtRjDvX~JfgAv@nIjEle@nDh\\~BxQzDrWvEdVzDtQ`ExPpEzPhFjP`FtNvFxN|GdPlG~MnHnNpHhNrJzPjE|Hf^~m@fRx\\|LjV~LlW|J|VtWh}@`QdcAlGnfA~@v\\x@jaAlAdq@|Anw@fDdbArIzfAtSdwApY|sAz`@vuApvC|dHp_@~|@~i@hqAhq@tdBvPtj@|V`|@jl@~hCtk@buCt[~bBrIvi@zGtn@zChd@z@b]h@fTKnr@Zxh@gBzi@eDncAaJxkCkI|iCyCfiAeBpmA_EfuFP`nAlBrr@~Dfr@|Ffo@~Izp@hLnn@fM~i@lUfv@nRhh@n[vq@b]nk@`b@bk@fhAzrAve@~o@x`@zo@pYvn@jVln@tQvl@xj@|tB`]fiAz^daA|^lv@Xj@fT`a@pZjg@l`@vi@va@fh@dk@xn@`f@rh@rZta@t\\rh@zUde@lSzh@hPfk@xMjm@jKhv@`Hz_A~Bxo@^dKMbo@YfQqBhc@qBbXa@vFsCbb@sD~^mHtt@mTbzBoHhu@{KtsAmDh`@gEpd@mJxu@qE~x@mFt}@`AbrBHhE`HroB|Cv^lGrf@`DhWtDnT~Hfb@bOtk@xPjj@~Xvr@l[vl@p_@~l@pk@fq@xb@ta@bl@zb@pg@hYtn@~V~w@`[jo@z\\ln@nc@ho@vk@js@bv@~f@hg@l^fZhg@h\\js@db@nk@|^`b@`^|a@~c@hZp`@v\\|j@ff@hhA|Ml`@fXj`AxSrfApgAxyGDRxRl_AhNlf@tHzWn`@fbAzk@tdApTv\\|~@nzAxb@b~@r`@``AzaBz|DjWtk@`W|f@zN|W`OpVhSl[nRjXjYx^dYh\\js@~t@fh@ri@~a@zc@pVl\\xOzStRl[feAvqBjb@l|@hYtq@vTjz@vOzz@jc@xjCxLlm@rNtj@nOfe@bP`_@bUhc@jo@~dAjr@xjA`Zvl@|Ona@`O`d@n\\vkAnQbq@zYfaArQpg@hUph@n]fp@hl@pcAva@hu@~]rw@l^|_Ale@lpAby@hpBtg@xiAnPl\\zM`XfK~Rr}@fwA`j@lr@jn@hp@hj@ve@lz@`g@xu@d]xp@jRdg@dIde@pGl`@~Cb}AnIvs@bJvj@~Ldf@jPr]zNjx@zg@p~BhcB`m@r\\~~B|iApfBpz@p~@|[z~@jXj_AdRzy@vQvn@jUju@x`@bbA`s@tz@bx@`dBjvBha@|t@n[pu@zUxw@fGvXdN`u@jMtaAvBlf@tBdt@]rpAgFl~@sL~fA}NnfAkRrdAmPnjAoJzkAoCfnADtgAxHlpAlMzfAhRnbAdu@|vCrn@vdCzZ|pAjZhjAz[fjAld@buAhe@nmArw@f~Af`AjhB~nAvuBz{A|zBzpBfqChq@`hA|LpS|Sb_@lp@huAjy@xvB`n@zpBfR~u@pLvk@dXvjBlF`k@dE`z@zCl{@t@ju@}A`{A}B~sAw@poAhEjmAdNx_Bt\\fdCv]hoA|^lx@hh@pr@fn@`h@bk@`Xlq@pNbq@dDzdBn@xn@hDvp@tQxq@td@puAhjBtq@vv@dl@te@xfAhv@ln@hm@|b@jp@`l@lsAlk@fgBtLld@hUx{@|SpjAhMroAIxiAs@dpA~Bx_BpEdyAPpvAuJhmDqDvqAIbD}Bth@gD~jAsEp|@}B~c@}@~PcAxTc@bJwBlx@ZtYpAj[xG`a@hIfVtC~GjDlInHzNjChFhd@`}@pFpLjDxKtFdZjG|c@fH~g@vNfdAjCrRpEp[rFx`@~DxYbHrc@zGrf@F^~F|a@fE|ZvG|d@lBrObEz]|CvZ|AnTdAbOrApVpA~Z~ApZzAnWjBdXlDjY~CzTbExSvG|YfHvVbGtQdG`OdKvUhK~UfKrVtD|JrGdQpI`Z|G|Y~EnXpBxOhBxOfBzS`ArOt@|Qh@rYTb[LfQRtVBhRh@lU`@hUhA`WrAtXhBzW|BdVxA`N|ClU~BvPzDrTxDfTfEzRvEvRdFvRbHfUjExM~ClK`EvNpKzU~Sba@lOfZxKbT|HdNlH~N~IzTfHjThGtTxDbP`E~SbD|UvBvQlBlUtAvUf@bXLdMJzUCnQD`VNhVXdVd@hTjAnZzAnUzAnQfCjV~ClVbEhV~DbSnGbZvGdYjFpUxFdWbGhZtDzVxBxRjAjPpA~Wh@lXHhPCxWe@nVcAjWiBxXeCf[gBlU_BhS{AhTwAhW}@~T_@jM]pOW`VC`NCbRLtNVtPv@p[fAvUz@zNdB~WrBdTzBrSpB`PTpB`B`LtDxU`EpTfBpIbCpLvC`MzCzLtC|JbF`QjElMxE~NhFpNrEjLvC|GnFjMnIbR|JxT`ItPfFtL`ClGxClIrChIxCnJvCjKvC`LpBdJ~C|OfCjPxB`QjCfUfAvLl@hLjAhZdAtVZzg@^`f@d@hYt@fYpAvSjAxQpBlWbCzVlCrQlCdQ~DfWzFpWnFnUnGlUlH`VjHbSpJbW`Oz^bItSfAxCnJnXnKn[bDvKlBrGdH`YnEfRh@xBbFhTjIzb@fHld@rIzp@zFtd@~CrXvDz[nE|YrC`PpErSpFhTdEpNfGnQrHlStJxTpJrQtLhRzLnQhNhPhTlUlg@xd@xNhNtMdOzNhRtJhPfK~RjJbT`H|RhDpLhAdE`FtQ|E|Vb@hCfCpO~F~f@x@lIfCvVDj@rFtk@nEhm@x@~KhFvs@nDtm@vBvu@`A|`@hCl_@~ArSvHpi@jH|]vEhUnIl\\|HfYdHjWnF~SdEpQzChObBbMrCxTrAzMlAdPh@`KP|Cd@xQTrRCrOMbNUdNs@lQw@~L{AdQaD~XeFv^eAtIgBlNqBbPgBvS}@~J}@pL_@dMa@|LIpNKbLFhLLxLj@zQj@hNx@`N`C|U`B`MrBbN~C~PtDtRpBlK`CvJzD|PlGzXtClOdChPbCjRhBdRpBxVh@|Mh@pOVtMEnSEfLi@dR]lLo@zMaAbPkAnVsA|R]rGc@pIc@pOUdQAzRPbUxAnc@`Dha@tF~_@pHj_@dJn_@pLzd@pKbf@vDfTrCrT~Cz\\fBl^x@`^j@vd@n@fc@v@td@`Chg@pEzh@hGvj@rIlh@zJff@hHtZhL`a@pJhYxL~ZbK`VhEhJvItQdIpOlOzVxKnObNnQfRpTdT~StS~QhTfPxOpKnVrNv\\hPfThJhD|AjKzE`_@jRhP|KnH|GlKnKpMpOxNdTjKdR|LzZ`I`VnGtWnGh]`DfVdChYtAzYXfRGnU[pTq@vN_A`NqC`[aEbZsDbWy@tFeF|_@aEv^}@bLsAvV]lRArSl@pb@dBxb@hFxk@nElZtJfb@~K`_@jS~g@fU`e@|Uri@bOv`@zBxIfIl[|CvPpCxPnBbQlBzTtA`RjA~PnB~\\J`BjArRjBnTpBhUbC`PfDlPpDrOjFzPvC`Iz@~BfE`K`Rl_@pVb^~]`^hEfC|`@`Vv]jPtZzOpVzMfX|VhU|VzYx^`WzV~\\rXtZdR`UbK|]xKjXbHd\\`El_@pApi@g@da@]nc@KhVQbJGla@hBbl@zFlWtEza@pHpUlG`U`IjaAla@dV`Odp@~b@db@~]fx@xw@xm@lz@hm@t`Ar[vr@nTjh@tTxp@lQrn@lQdbA~G~s@`CjZ~HpkAtE~{@jDj|@lChaAfBzpA?jw@[j`@ElHeA`WE|@yBz]mDl`@cPxkAeIjd@_Rrs@kQls@wIpVsGxRaPnb@gRnc@qRbb@}Yfp@m[ns@{O`b@qRlg@gNpc@wZnoA{Nfs@sLbu@Ib@yIxs@yIp_AaEbz@gFxtBAxtArAvz@vAh\\lApYzEfr@t@tKzQ|vBbL`oArNx}AzKlnAnIt}@pGff@dHtf@pXj{AfAnDdHtUdVx~@`Rtk@fPzc@jP|^vQx^j`@zt@|Rx\\dQ`X`TvZjP`TpN`QtVtXx]`]zVfV|KfJxOlL`NbKf_@lXfWpR`i@tb@vC`DlTlTl\\j_@zTp\\hPrW|KjQdSjc@bShw@xHrg@zGpi@fFph@zCfk@bAjz@cB`t@iN|jBuBtVgMxgA}TpiB}Ql~AwRh_BuBjQuFre@mDlZ_Ijq@aHxl@yKvkAmGvhA}DtsAEniAHjp@`Avl@zCvn@nEtx@tDrc@l@fHdHjq@bK~s@rLjs@~T|eAzId_@vWrbAtP|n@nRvv@rNlp@vLns@jGf`@xFh`@xE~b@dErb@~BhZzEfw@tDf}@hBdcAv@~oAeBjx@mJtmB_JbcAeArLmKd|@aFp^gMvu@oL~j@iQzq@uMdg@cMnf@wMfa@w]ngA}HbXkGdXmJze@qQf~@sTbwA{DzUgDdQqE|ScEbPcJ|ZcLr[yKdWuKrTkLtS_LzPul@~u@sl@vx@oWpe@aRrc@qRhi@mL`b@c[zjAaPd|@mQ|cAuItc@}Ldn@sKpg@{Ljd@gOja@sHrOoOrWgT~Wi^xYg_@hSkUlH}IrCii@fJuPbCkDf@mh@lKwYlKwXxOc^zX_PzQwLfP{LzRaJbTeIfTsAhEiEpOmCfLiDpOcAfIcAfIeDzU{BdUuC|g@}Cbr@cBr^_D~]uEx`@wGjZmGhZcKvg@uE|^sBvTo@hQi@nV?pP\\tWp@fXlAx[LfPPn\\{@~XsBlYoEh[uG|YmGjSaTnp@eJb\\mF|ZmDn\\iBj[]xe@rB`{@f@d^C~]{@te@yCv|@mAbl@Mvc@N|^nA`d@J|CpEhh@`@tE|Fja@~Ipb@lKn`@~Kl[hYhn@f\\rr@n[xv@xShn@xMne@fLne@bIha@~Gfa@rIzp@zHbr@fGjn@vH|n@~I~o@~L|p@lHb]rM|h@lSdr@p[f`AhUvr@xRnr@lQvu@xKtj@vOjcAbLpgAbGvq@rHnw@`Ilo@jIri@dIta@`Nhu@xEpWtDvVfCpX`Bd_@j@xV[tc@kBfc@{Cnd@eCr_@wAd_@]z[ZzYbAfY~AzUjCzVxFn]fHd[dRvh@bc@hjAdM`c@fKjj@|]vyB~Y|gAxa@ryAhJz`@`Ibd@dGhe@bDfWrKdz@pOp{@bPht@bVjmAXvAzKbp@pItv@dFrf@rAlQlAfP|Bf^~@vQ~@~QdAtX|@jh@Mzb@UzQmAlV}BtYcEd]}Fp\\gGfXyFzTcHdZkId_@uGhe@uC`_@aAvYo@hYHjWdAz]jBn]rAv]d@`Mb@zK|@ze@Np\\Y|`@AbBu@x`@qB|d@{FnkAoJfqBgFncA}EfbAkH`yA_IxvAiBhe@aAb\\c@~\\Kf\\Nxc@dAh}@NvZYt]aBta@iJxqAiBl`@g@t[LnZn@lUnB|\\zEb_@fGz\\|DpQlG~T~KlZdHbPfMtTjNrS~[p^tR|RnBpBrStSzMvO|BlChOfUxQ`\\xH~PrH~R|DjK~Kjb@dFdV~D~U|CdVjCh\\jCxe@z@|[b@n\\PhZAb]MnZ]d]k@~XwA|c@{@vQq@xOmB`^QfCgCl`@iE~l@}G~p@_F`h@sBbZ}Gn_AaAzaAElHSpXh@l`@p@hX~AzTdGjs@vA|LdGx`@xInc@|Odt@|Inc@z@fExCxPvCjRfAnJdAxIvBdTvBvWjAvS`A`Vr@fTX~WDzROj_@o@t[y@vTmAxT}AbSqCj[gCvS_DfU_FpYaFhUeJl_@oJtYeN`a@mJ~UePr\\aOnXuRnZ{Yrd@qKdQmMxXwKrW_Kx\\wElVeFhZkDlYwBx^i@nUSlPPb[ZpJVxH`AtPdAjM~A|OnFz]xErU`Il]zLbj@lDpTvCbUbCbWjA`Vj@bU@zWI`ScDtbAm@zSUtNYx`@Lv^r@r^jA`]nC|h@dCjl@jA``@X`\\Dn^w@`_@iAb`@oCjh@mBn_@oBlh@iAxd@eB|s@k@ri@[tj@DfRHdd@^jv@h@f^`Adh@vCneAxAne@^vSt@jZl@jd@Wb`BmGz~AyR`rAkZ~zAsKtf@aZnnA_GnYm@vCuG|[uHv\\uGhUiKnY{LxVmJrQ__@|j@qJjOcH`NmFpKaMpZuFlQoGdVmF`XiFp_@kCh_@{AdYa@j^b@d^bB`]nCl_@vE`d@vDbg@dDhe@pBx`@zAhYp@hYX|Gj@pd@\\p_@D~Yd@|g@`@j[lAn`@xA|^jBnXj@lGRzBbBpQzB~RlHxg@zFz[zCnOxFnVjHbYtIjZvM``@~LpZvIpSdKfSrPpZbN~SpN|RxYx^~W|ZjBrBxP~QxFhG`ItIbAfA~^pb@|LjPdLvO|K`RdMfT`NnZrJ~WfHzThJf]jHh\\jHv^pF|Z~Er\\|El^~D~]|D|`@fBlWhB|VtA|ZbB`]d@zQ`@~OVnPJhQAbR_@|Ym@`Ta@jRmAzX{@rOk@dKw@dQ_@fMOnKAxKJtK`@hMl@nKx@vJfApJdA~H|AjKrBjJvGpTdJrTvHdOfKzOlGvH|HjHnGdFtEhDnGzDtHvDlHpChIhCvFfAhIdB`K`BfH~@xHhA|GjAtGvAzG`B`HzArIzCtIhDrFnCdDjB~D|B`F`DtExDpCbCzCnCrHrHbIjI~GdJpFvIpFjJrDjHzE|JbDtHzDfJdFdNtEdObEpNvBpItAzGrBrJbCnNvAvI|ArLhAxKlAdM|@zJr@dLj@~Ll@|Pb@zPb@rSPnVRhRPxQLnI\\pVPlK^rO|@nQx@pO|@hMvAxO|BxS`DjTzCxPnBdJpBjJbCbKhBxG|BhIpC`J~CvIrD|JfEjKxFnMbHnNfHjMzGvKnFzHpFjHlF|GdG`H`HzHdG~F~GnGtE~D|FxEhGtEvGbFjBxAvMlJ|X|RlJvG`J`HrFjDdm@ff@bO`PvJnKpNvRpLpPnIfMjMnS|K`SvHnNdKnSfFpKnH|PfDlHjLpYfFtN`FlNjEnM|D|LnHvWlE|O|BdIzEfP`Sxs@hF~O~Ld`@tMj]hR~b@hOtZzMtUjUj`@vPfY|MzUnJ|Q|LzXpIhU`HfTjGzTdErQ|DhSlDxVlBnS`AnKnBt[`@x]Dr\\k@fUkCte@oDd[yDjYuDtRqEbUuDrQwFtVyE|ReGpUmGnUyJx\\oHjUeE|K{FzNyEjKgEvIwGdLyFbJoEpGkHjJcKnKwHjJsLbKkJdIaLlJqLxJwJlIeKjJkKlK}LfNcMbO_O`TyHvLsI`OkGjL{J|SiIbRyGxPgI~S}FpOsD|JcHfRqIxTmHdRyGnO{GvNaG~LcHfN_HdMqKfQaHlL_LzQ_H|K{ErH}EjI{MrT{Rz\\gOtWoJtPgJxPsJ~Q{Qx\\eJnQ{G`NgJfS}IlRcJpRmJxRgIlPiJrQiHrMyGhLwEhHcGbJ}JpNyKxM_KdLcIfIwHrHiM`LgNhKwKxHcMtHaLrGaJlEqK~EaQvGmIvCqM|DwNbEiOxDoQ~E}NtDgJjC}JxCyJzCeNpE_J~CiJjD{KlEaR|HyG~CwFjCgGzCaIjEeLpGgItFiObKgMtJwKrJwKdKeQ`R_LdNqJbMiHdKiCdEuF|IoHnM{FnKaGnLsInRoJxUoI~TiFpOeGhQgGfR{JvYcJxV}HfToEnLwW|s@wSnl@}K`^yI`ZgOdj@oGnWeDfNeJ~a@uCbOsGr]{FvYeD|SmCnRmCfSyC|UwBbSu@tGaCpWqCzXwBtXqAhRcA`PuA|WcBf_@uAfd@}@~b@q@tu@A`j@b@xg@HlF\\fTTtMzAba@dAhl@PxKJdGb@lXZ|h@?hh@?th@K|[F~v@bLhxCnHdwANdbBmDzx@{@fKwBdWaDjYkDdX_DnT{E|XwIta@mMdl@aErRqDnTaCjQuAbQq@vRUxSPlSZhVJvZSdTw@lTwA~PyChSuDzQcGlVwEzQgFtVuC~QgCnWkAvYP`Vl@~T|@fPhBnOvAbLrB~JdBjIfFhPbHvPbEbJ`MlT|LnQfP~QfPbPnOzMrPvJpIfGvTnN|VtOdWrPlYxS~ZlWlGrG~Y~XjM~MbVdX~C~D~FpHdYx]~Vp[hVj[x[ra@fTxWtPlTfRdTfJ|L|KlNp_@rZnMjJxW`P`IbEpMlFjSjIjg@`RdPpHvPnK|LdKpHbIvJrLfUr[pS|VxNhOxMdKnJjGf\\~RnWzOdVzRdN`OzQxV~ItM~MhRpMhQbYf[hRbS|WhY|FlGr]la@`r@`y@tQ~PbL`ItLjHdTrK|LnFnGrCfIdEdGrDjKlHbJzInJ~KhHvK~FpMhF`KdEzJxEtLfIxRvIfQbJbOnLvNpLpLzM~KvJxIvGhFpSzQ`KpKpIlMpKfOjUx\\bQbWpSvSjLzIlQ`LnU~MvUhOdPzOzNxRlMtUnJhTfHjRzErL|InS|JbTnKhS~NxWpUlf@|Nja@hKvb@bCrNpBbMdFf`@tB~OpAxJfHr^xJ~\\zEhLbHlNvTvZbMdLzMpJdKnFnGjCbGzBbKdCpOtB`Jj@dMNlZq@~^o@bKl@xMbBfKvBzIzCxMfGvKnGbKfJpGlGfKrMlJrOfJ~PlWxe@|KtPrJzLrM`OjP|N~KdItQrKtVjKvXpHbYbGz[|HfR`FtRrGlIxCjRlI`N|GhO`JnJ~FtRnM~OzMlR~PvRbSzY~]bOdTlR~ZxZhg@jNfSxL|LjJtHpN~IvPxGrN~E~NfBfL`@hKAlLg@nJ{@nMcCnQqD|QqDzO_B`Mc@bLT|Kx@bKbBpJ|BpJzD`NxGtIhG~HfHfJxJ~ItLxHbMzI~PhK|UpGbN|HxPzGzN|MfYfI`OnJzQdQbZ`HnKrIxL`KzL`CnC~AfBzFfFjElDhFxDbChBjCfB~IbDnQpGnMrDdKxCzI`AzKf@tLPbPo@xEe@bGm@jOoDbIaDfJeDxBw@lMqFzUsM|EcCzEeCfOsHvXqK~NsFfQgFfVaGd\\eEv_@mDzXy@hf@Cpb@fBpQlAfVdApMt@hPLxX@`TaAhTsA~j@_Gh[iCtQw@jXw@jQE~KB~QRnRbBtQpBfVpFfK~CjMpEfMvFzJ~FtMhK~MjK~L|MhE|EdDtDjHrKjJpOpGlK|KvUrCbHtHbOpK~T`IpOhKjQrOjTlMzOxIpIlJ`IlJ|G~GtEhHrExJbF~^`RtUzLxNlJzIxGdK|ItHrHtK|LdNxRfOrXjMh[rEhMfJf\\~EtTfDfSd@rClD~WdExa@TfCbE|c@~B`QzC|OrDnN|DnMzGnP`IxMxHpLvEnFrJ~JxIrFvIrFdHfDnKtDpJzBrMvAbNp@zMZfZR`Ml@~JrApGdAhGzArGvCtHhDfLlHlFxE~AvApFtFhGlIdDzEnD|GtF`N`FjNdF`R`IvZvHzXhGnPtE~KnD`HlE|HrCpEdEtG|O|SvTpWxRrS`VbXvP|T|IpNpHfN`InPtHbQdIxRtH~S|HjVvGdUjIl[lEjThFjUtClO`C|MjEdR`BjHxBrJnGpSvFlN`IvQdNpUpKbOjM|N~L~OhIhLrJfPtD|HpBbF`FnNbF~OzGxV`GvSdHrUzHhUdKnRvK`PrLnTfKpK~LjLjWnSdThQlLjL|JvMnKhQtKvRxE|HxEzH|MrS~OzQrLpKhEfDtIjFjMhGlMdFfF|A|KdCnM`BfJr@|Gd@xJLbMc@zMkBfJ_CxKsEzJiFzMwHxN}JvHcHpI_J|IkLpFwI|FcJ`Xki@pKsTrKgWzO{]pJmTrJuSlH}PfJ{P|J}PhKiRnIsKnHsKdIeInOwMlNsKxN_LjMqIpOqJ~R{IzPcGl[oInNmD`QcBfOsAjf@kB`QU|PCbQWvWTxWSpq@aCr`@wCb`@sFj_@cId_@mLxa@yP|YkOxiAeq@bfEitApbBuSv~AZ`]`CbzAjMtJv@noh@duEfg@VfVOhXw@h\\yAl`@eD~j@}Hnh@cKzeBq[dxDkr@pbHibAlu@aDfq@Opd@]~d@eF~x@eTvx@oQ`\\gDf\\aApSB|Sp@di@dFnTrDjU`HhJjCbKpDvMxFfH|DvS~KhShM|FhEbLjIbl@hb@~a@jVjb@nTlWdKzW~Hl]pIv\\|Fdh@`Frh@hB~h@Irh@mB`yA}If{@aBrnA~O`pAj\\bbAfh@nnGx}E`hAfn@f_AbZ``AjP~cAhKrWjDlYzBlUpAlo@x@lo@uApWcBvUgCpo@}Lhw@mRpDcArTcGlZiI|WsHlWeF~V_ElWcChWkApWK|f@bBjg@pGrZvGjZzIzt@zVjWrHvWxF`WhDdXnBlk@^ll@`@fu@g@zDB|g@`@xDBvb@pBjDNxYhDnBTt`@fG`a@`Mz`@dP|^|RtKzHjQvKnH`GtVbSf\\p[d[p^nWl^`Xzc@`Wzf@|FrNbMzZfQjj@p^`iA``@`lAt@xBbQ|b@bG`Oj_@tq@pb@bo@lYxa@lk@`{@xLxQ|NpTpO~UjHtLrQfZlV|g@rQhm@pLff@nzDzyRnHz_@vJpb@zFfSdDlLfP`f@~Nb_@|F|NlExJrVlj@lGnOzKfZvHzVnHf[tFhZhGrb@xG~k@xJl~@~Izl@dIf`@fJb]`Nd`@jJhUxPj]rRz[nQjVrWnYhVpT|VjQ\\TnT|LnQjIfShH`d@bPld@vNfdBzl@jkAjl@ja@hZbb@n^n\\t^nf@zs@fYfg@`Qd_@xPz`@b^b}@flAbzCpa@z_A|`@zx@d_@rq@ph@vv@h^re@nc@bf@n^j]|UhSnp@fh@hgAdy@n}@zr@dZrX`XfYtQjTlY`_@nq@f`Aj_@tj@nb@xm@bfAv|Ad\\dg@tNjWhOjY`NfYpO|^hN~_@bMfa@xJv]|Pnv@lIr`@lQj`AdIhc@xJba@bLv^xGxQdKnUtKlWhAnChOh[fU~[p^r]pg@pa@lJzGzUxNxVtLn`@jO`c@~KtOdCzWxCxStAn[f@dXMh_@iC~{@wI`p@qJde@_F`o@iD|Pn@jR|Av\\xEjRlEzJpCrHvBzNrFvRvI|`@tUnMpJrQ`OtPpP`MtNtMfPlGdJhD~EjGtJjDxF`y@hsA|OhW~QzWhBlDzMxRfQbXfi@bv@zLhR~KvQpMrWjJ~SdKfXhK~[|FfThI|^vGb^`YtaBxJna@jKh^rFfOhJfUnIxQjDvHtJ|RnKnRxLvQ`KfMb`@bg@d~@jkA`k@pw@tTvY|\\bf@jV|`@rRn]~Xnj@vIvRlBpEpFfMbNp^dGhRtGbUjH~YnFpW~DhTnH`g@vCzWjCrYdBnVxAd[lAxb@Zr^GjXWzWsBvu@eAjW_C|b@qCtd@qDvh@cE|l@gCb`@gCfb@sBjf@qAdj@a@lg@HpX\\pU`Af\\rAxWxBnXbClVnDzXzGpa@`E|S|EfRxE`R`I~W~GlR`HnQ`Pv]~JdRxNpVpPdVhM`PvMzOzShU`[vZ~xAjsAbZ|XxWpXjNzNxUvXnYja@xSx[fWne@hKxU~MxZ~Tho@pPtl@zKrf@lSlfA~e@vkChVxoAbZtmAdRdm@`Prb@vSpd@pMrVjExHlHnMx[`f@dUxZfUpXxOnPzS|RzRlPlUbPz^nT|WdNfYnMnt@`Yls@|Vbu@rWvb@`O`d@xQ~_@~PpL`GxN`I`RvL~SxOjYfXvi@ji@ja@td@bb@te@x`@tb@rh@hb@r]fUp`Ani@br@xc@vh@|`@xVrTb[hZdRdSpZh\\rh@lp@xlXpg]x_BtrB~~ArnBtj@ro@xc@fg@r]d_@hr@rr@lp@|m@bYbXrm@rh@n[zWj_@~YpZfUh^hXh}Bd~AxYnTdWlTpRrQhS`U|MfOfU~Zd^tj@hHfNbOtYlLlXzK|XvIxVhEfNdOtf@jMpe@h\\ppAzRtu@tUzy@vSnp@|Tzn@nPta@vSjd@~Of[|Rb]hZje@b_@bg@zb@~e@f^z]zMlL~OdMz]tWvh@~Z~^xQdO|Gdp@nVfx@rUZJjHtBvxDj_A`vAf]hwAh]liAvXjpAr[`eCpm@dhBpi@nhBpo@pn@pZ~XzO``@fVzThOtSjOlh@lb@|VrUfW~UzTdVfTtUzf@pm@X\\fPtT~[he@nJdOha@xq@zVxe@lVjg@~MbZnNt\\bSrg@zKb[nKb[rJfZxUly@~Nfk@vGtYdHj\\jOrv@fIzd@rHfd@zb@rsCbNt~@rQbgApVvtA`UxhAn@`Dfh@d_CrYdlAxTl_Ara@hkB|SdfAtRhfAdWd{AnXnjB|NliAbOrmAdLjfAdKzgAfKjmAhF|u@dGn~@jGrdAdEn|@nGfaBvFvuBtC~|ApAv~CZju@Vxt@|@py@rBv{@fD`v@jBj_@fF|p@xIny@~Ivp@~RdjAvV|hAjXz_AxG~SfR|l@`Qvb@pAxCzAjDhXnm@fZpe@zUz`@rMvRpTf[dJdMvBjCdMrOxPzRbSdT|SrSvUlT~RfQdVtS`jBnxAd\\dXnJjKbm@jp@hVvYnc@`q@nQj[lMdWzJjUbHrT|D`QxFd\\fCvMnB~RpBr[dBbc@bAxUb@tJzA|TtCtUlClPnD~LpF|MdApBpClFtGnJrKjKpKpHvJpE|HtBtJdBnMb@fK]dIuAbGyAnHwCpKmG~KqJ`GkGxGiK`EyI|DiJxCeL~BcLdB{JdBwLdC}StDu^nB{MvBaLnC_LlDsJ~DuJdHsLxH{Jbg@kg@vd@kf@~LmVpUySnr@mq@pjAgiAd`Bw_Br[e[xOaPrt@ct@ts@ar@he@w`@|g@a`@xw@ug@nz@qe@pk@cZzWsLjLiF~VcLje@oR`G}BtSiItVaJrq@sTtp@qRb~@sTt{@gQjHoAfJYdQi@|e@oEnCWfGP~Ez@zD~B~BfCbE|HrLd[rDrG|AdB|BtBpDdBrEpApQdEzD~BfErDrDzH~B~JHlWw@ng@e@vz@mDr_Aa@zPmAph@m@xp@NraAxAjs@tA~]~Bxa@`Glt@lIdu@rJ|q@hKjl@~P`w@fBdIlY`dAtMta@xSbl@pTdj@jW|l@vSra@|Xdh@jUj`@zRxZjYpa@dYb_@tWpZpi@nk@pZfYpnAhdAfn@`g@bo@zi@te@nf@fc@zg@z_@`j@v[|j@dZ`m@hYfr@zVdv@vTlx@lLvg@nM`n@~VbqAtMdo@rMfn@xRjw@bZpeAxVpv@vNl`@fNn]v[tu@z@pBrbAtlBtq@`fA`Zb`@zJlMxSnXtY`[j\\p]loAzpAlTxVtcAxsAv\\~b@~[v\\hOvNjNbL~^bY|\\pSj`@~Qf]~M~VnHvVnGfVfEv\\nExa@lElc@~Ez`@tHlYhHtZzJrV`KlR|IhXnO~UlOve@l^pW`Svb@d\\hVnOpQ`K|b@hS|S~HhW~H~X`Hf[|Fz_@vExd@jCdn@rAtz@\\z_@Lbg@t@zQr@lZlBpSfBpZpDfS|CjYlF|]`Ih`@`Lb[pKv[jMte@xTff@`Y~`@tWlk@~c@n]n[rh@`j@fl@zp@df@dm@~e@ro@fe@fr@fd@jt@b`@lq@j^vq@tQz]p\\`t@`ExIjz@jsBpu@hrBv~@|eCbt@nxBtoAxfDvf@~tAnzCvoIhaCnyGjxCt_J`G`Pxc@|lAh{@jzBfq@`aB|Pv`@dAbClTde@zRp`@li@~`Apg@~{@zv@zsAnPb\\`Rj`@bTzf@`Sli@pLr\\vLn`@n[reArl@|nBrs@vbCzT`p@vWbq@jlA|bCnrAhjCjf@f_A`f@hx@zi@xt@pa@hd@`UvTnTnR~[~Vrd@rZ`CpApc@|Uz`@rQj]tMdi@rQxj@zQntAdb@bmAn\\j_Bb^tl@|KpSrD|X`FflAbQ|_@zDpjAlLd|@`H`t@dExt@`CnWb@jT`@|j@n@t_B?`x@aAxx@kBp{@aDry@wDlwBcO|~BeQ`h@uDr}Ey^hrAwIlz@sCxZk@hn@_@zBFzp@|Av\\lBto@`InIz@pPjDz^~H~b@~LvS`H~n@hXbV|LnYdPjZ|R~YvTte@va@zP`QhNxNhOzPxWr\\x^nh@d\\hj@h[pl@~Xtl@f]nx@zW~p@hY~u@hZfy@zS`n@hVbt@`Yf}@jf@z`BtGrUhe@vdBz[brAf[lsAru@lkDnfAr`FfFjVz{AjdH`n@psChUteAdXhkAvV~dAhRls@fS~s@pNhd@vLx_@rNfa@rQje@vSxg@nS|b@|Udf@l_@xo@`N|TpPfWtSdY`VzZxp@dw@xYzXx_@n\\d_@`[fl@ra@b`@|Tx`@zR~ZjM`ZpKfKnG`KjEt]`JdQdDpI~Ax^~EheA~Jrl@lGb|AtLl\\hBnNPrMc@nIq@xImArOwDzN}D~LoFpLaHfGoExHaG~K}JvGiHpKuMxLeRrGeMlF{LhJeWxJ{ZdKw\\pIcVhJmTrJ_QfKkOrKaMtNqNlOaLbIcFtGeDzGyCpIwCvPsErGoArIeAdN_AxNWvPTjIt@pS|Bh`@fGldBbXtt@rMfW~ClRvA|Pl@hPg@lTcA|UuCjSaEvUoEjL_CtOgBtUo@bSv@fJdApI|A`PbExPbHf`@rR`^zRlFnDnp@|c@~p@rg@jYdWpZp[|Wr[pVf_@rM`TnNhXdMbXhLjWxMd^pIfWhGbSfQps@bPj|@rH~k@~Ght@`D|k@|Ahp@j@tg@Yhc@mAxh@oBng@_Cl_@oHr}@{AjO{Q|iBkHrw@sFpq@yFv|@oDry@cBhn@gA`y@Yfv@Dzb@\\bn@dAzd@bCvv@zCjt@pFlx@fFzn@hHbt@tI|q@xEl^~Fx_@zHbe@xGf_@`Kfj@x[xcBlZ|cBnLnp@rKdp@`QbjAfLd~@`I|r@nGfq@dI~~@rEjn@zEtx@fDju@zAd`@`B|k@bAzk@l@tq@Zz`@D|LV|q@Qfv@Ch_@]~[{@lj@uAxr@gD`dA{ElnAwCnn@_JfkBsFzpA_Cjm@aHdlBqE`_B}DxdBc@hRQjJgClsAmCtgBe@pn@sApkBk@j_AU|wBJrsAd@bwBtAbcBjAdrAdBrkAzCjbBxGbqCnGjmBlEpsAtFf~A`HtyAbEro@j@hH|C|_@hIngAdKxkAfLziAhMl{@bLhy@dF`ZnAhHl@jDjL|o@xJjh@nJtb@fJ`a@vJdc@fNjj@bLda@lL~b@nPnl@nS~p@pVfs@~Ujn@fHtPtF~M~Pha@xOz^nx@jaB`j@rdAvgAvqBjm@`gAzl@~kArn@zoA`n@poAnr@nzAf{@hpB~}@dxB~x@jsBpo@pbBdk@v~Atk@jaBdj@n`B~i@|}Atc@`mA`p@bbBti@bwAzh@dpApl@drAbAxBrg@~iAjm@frAn_@tw@za@ry@xg@nbA|g@xaAxd@fz@~k@xfAd[zh@zGbLv`@vs@zg@fcA`\\du@`\\zz@v[d_AxY|aAdSdu@`YxcAnVvy@vTho@hSng@`Tra@vTr_@|Wn`@rc@pi@lg@`f@jb@|Z|h@r[nd@jTvn@zSdq@tOjq@jOjj@hOvc@fPzXnM|YhPhZrTfe@ta@|QhRrQ~SfLtMvPxWzTt[xRp_@nPx^pItTrKhZxKz^xKtc@dKvc@rKtk@rHbh@fGzo@fGj~@zDbt@dFl|@nG~v@jI~q@vOj{@dSrz@bW|y@lUnu@nSnu@fQlw@tL|w@nI`y@bHlaAxDtv@lH`jAtHnt@xKnv@jJ|f@|Mjk@jQdn@pT`n@|]||@n[vt@rN~^jJzXpB~GzGpUdFnTvJzb@~Kzm@nIxh@xHji@hIto@dIhx@`Gtw@tDxp@fCrk@zA`h@~Alv@|Aht@`@n`@jBdm@nBtg@hF~r@~Ifm@xEfTfDhOdQ~k@|T`f@xWv_@~^tZnOpM`QtKxm@~Xbh@hWf`@lZbU|WnR|[zPxa@|Obl@rHnk@~@zShAjWFrg@wAhd@yCfe@gD~r@?zn@v@v[dEni@pBzIvKxe@pNra@`R~\\zN`T`SdWj`@ne@tc@fk@f^zf@tq@|aAvbB~pCdKnS~IfUbKr\\dHza@dGtk@dAji@_@jdAVjk@xCjk@nGvi@dO~k@nNla@vNdY`W|\\p_@`\\tb@fUl[vKxe@`JfpAnWzq@tO~[tDr]lBvg@[rHYpZmAxb@sAp^Nvb@zBp]~Df^fHlc@zLvUlJ`WfM`JhFhQdKfOtJfF|DlTdR`QrOfXvZ~Q~U~QrYhV|b@xLxV`Pp`@xO`e@dNtg@dFpTrE`UbKnl@nGhg@jFri@`Eta@vE`n@`Dde@xCxq@RxTrAna@fB|o@^f`@[`v@e@~t@}@~o@iAxWyAtj@yExv@_Hx_AgAfMmH`t@{Dh]qDn]qH`e@uHzj@mV`|AkPneAyIrn@oBdPcDv^s@tLyCxk@k@xTk@d\\Wz[Lj]TbZt@pWbBru@xDpfAd@xOf@jp@AzTY|\\m@~XiBtb@sEbx@}@`GwCl[gChQmFt_@gGp]gGtc@}RjhA{Itr@mCnZwA`QsCdi@o@jO{@l]{@jZPdb@Xhc@bAl_@nBdf@zEtm@lCr[`Fx\\nDxXpD|S~Lft@nP|cA~Lbx@tPnpAvLjdAfBjUdEvk@pDln@dA`RjDj`AdA~i@zAdj@|@n`BJ`z@j@nhAt@ly@hAts@xA|j@lDjz@p@xN~Cjf@|Err@xC|YvBzXxJby@bIzh@|EtZlMnu@dNzm@lGfYlLvf@pFlSxIhZfOne@lMz`@xMv`@~Plg@da@vjAlZ||@bXry@fThu@lQjr@hK~c@jKvh@|L~q@tMzw@zKdu@nWveB`Nb{@jJ|e@lHz\\bLfd@xJd]jO|e@`Nl^|S|e@rLvUdPlZdSr]bUr]vTvYlVlYj^h`@vb@zb@t]h^v_@p`@hWrXdZ|\\pShWtQbUxTf\\jSj[~Vta@bVbb@zZbl@lSrb@jQb`@tOp_@bNf^fPfe@`Ovd@`IlWrHdXxJd^rKhc@|Njn@dPbt@lU~cAhNzm@pNrj@vLzb@~InZdHbT`Lb[`T|j@tNd[pUbf@|Wlf@~MfUhFdI|HlLdN`S|Ux[lKdMzStVtThUvYjYjXlUlWrS`c@b[rc@r[p\\dUhUhPt^pW`PdMhTdQdTdQrU|Sd[`ZlXdY`X`[nXn\\xY``@zc@`p@lf@lx@l_@lo@j\\bn@pSj`@d[jn@le@bbAbo@vtAnc@tbA`p@d{Avd@pdAh\\ru@j_@bz@tWnk@|Tfe@r^zu@~U|e@dVte@xVre@ha@nt@l\\xl@`Vt`@ha@bp@f_@vk@jg@`u@f`@di@l[fb@jg@dp@~Xr]|V|YjTtW~c@xf@|f@vh@vj@rk@zm@nl@lf@~c@tg@zc@fVvStYjVhm@hg@rxCp_Cf_B|pAl`@h\\dh@|c@pk@|h@lUzUdYbZtVxXj`@pd@`_@xd@vVh\\pWd^|^hj@la@fp@b[li@jYxh@d[zm@rY|l@vd@pbAx^ry@df@jhAzc@raAnWlh@nTlc@nS`_@hX~c@hKrPlOxUdd@ln@bVbZza@ne@be@pe@zE|Elk@|i@|s@ho@bu@nq@zf@nd@lo@xm@zUxU``@pa@vb@ff@dZx]|Ub[v\\vc@|[le@j]jh@fa@dp@nNdWbXnf@p[bo@vTjd@`[vr@tXhq@zTtk@za@bkAjWrw@dUzt@nSzp@l[xeAvZtdAnTrr@`T~n@pNr`@~]d}@zK~VtY~l@zQ`]|MpVdTx^~d@tu@ta@zn@zq@`gAfKvQlN~WhM`XpL`XpGjQfCfHbDfKjI~W|Jz^xIx_@dHx_@pHff@tFbe@pDv`@vBh[dEfaA|DbhAx@fUjEzaAnCxd@zEfr@jEze@|F|e@pIlo@zCbSxG|`@vHn`@dI|^xL`g@rNxh@pKf\\|IvXvF~PnKhWzK~WjSfe@|R|a@zQb\\nOlXdKrPjMrSt]dg@~Uj\\|Wh]tXp]bQvSdZn\\`SlTtu@lu@pb@n`@`^d[`eBxvAdDnCnl@|c@ns@dh@dy@jj@`u@le@jm@p^bp@x_@ls@f`@hv@v`@~k@nYju@p^|l@dYfc@tS`m@fYru@|]`l@dYld@fUv]dRle@xWl\\xRjZnRz_@tWda@fZz]jX`e@j`@x^t\\fWfVjd@rd@p\\p^fX~Zt]`c@~O|TxS`[pSx\\hUza@lRf`@bRfb@jRje@bQ`g@vKn\\dNpf@xPvr@xIna@fEvTpE~WxGtb@lH`h@jLj~@`OrmApGze@vFj_@fIvf@hHja@nIxa@vJ`a@`Phl@rNbe@dL|\\nRlf@bW|m@dWxj@bWvh@f[tp@rT`e@|h@zhAr[jr@|`@r{@jXdo@|[hv@v`@haAzTbk@tRrh@fVnq@dRji@~j@bgBb\\|fAtVf~@nPpn@rU|_AlSz|@`WhjArWlrAdStgA~P`dAxPpgA~K|w@tJxs@vIjs@dMdlA`Hpv@jDjc@dFju@|Cdk@pCvi@rCf{@hC~}@bBd_AvAriAhAhpAfAntAtA`gAz@`c@jAr^fB`b@`C~a@`Ddd@|Fjm@dGlg@fGhb@vG~`@xFv[zFzYxIz_@rKnd@~t@fuC|FfUxKze@nGfZzDjT`ErUzDjV`EfYtF~b@fG`m@rD|`@|Exl@hEvm@vGv}@`Dn`@nC~VtD~YnFh^bGt\\bFnVtGrXbLp`@vH`WvKxZtKlXzNb\\jS|_@~FlKzIbOrJzO`r@heAtOtW`L~RpKzSzPp_@fKxW`IvTlInVrJr[~Szt@`Vvx@jN`c@dK`[~Lz\\fJhV~Nb]`KnTpNrYfM~UnL|SdRdZzMfSpSjYhOfSrPtRnLtMtNrOvMjMvOvNnW|TfTvPjRhNlXrQfXrOzPfJnY~MnZrMlQrG~PfGvQvFpXzHbi@`NrwAr^l_@bLn]bLx]dNt[vN|[`Q`YnPxUpOxXxSxUrRxP|NfZhYxZr\\rRbUlTlXlUj[vT~[`RrXrQzXfXre@lP`[zUxf@|E`LpG~NvNh^zGnOtQdh@bNfb@vDdMnFxRrGlYrFlYxF|\\vFt`@xC`XvB|UpB|VfBl\\pAhXr@pXZpR@p[@hb@Y|`@kAr{@]bv@L`e@j@pXn@dXbAxXxAlXnBhXhCrXvEz_@xHnh@nHj`@tHh]hFhT|GbVjIpWvL|\\|IrUlPn^fGxLdKrR~LhT~f@~y@l\\rk@xL|UlJdSpN|\\nN|_@dHxTrKv_@fUf{@bBlGhRrs@jMpa@|L`^xJ`WtNb\\nJjSjLzTfTr^hRdYb`@pi@bf@po@`g@bq@bt@ncA~p@p`Atd@xq@dg@`v@nd@|s@lBdCno@`dAbJrNzMtRvIdL|IxKjJvK~KjLnQ~PtMrL`P`NbPjLjMzIlLbHtLrGdPdItPnHbRlHrStGpUxG~MvCrh@nJps@hKfZzEtShEnThF`PfErWfJvXbLr[jP~NnIvSlNvTlPfWvUxU~UjYn]dWt]jYpe@pPl\\pKhVpOj_@nL|]tLja@hJr_@|FvWnGn\\zFt_@jClTbFxf@dHf|@rE|p@~Dfh@dClYpGni@hE|ZfHba@jGn[lJr`@bHvVnOze@nHdSVt@pN`]rPr]bQd[zLvSvQrWrSfXfShU|XtXhV|Stx@bp@dd@|^v_@~\\tT~S|UjVpZj^rQxThRrWlN`TrGpKpKnQvOzXzL|T~Zfo@za@b}@tZdr@`Xzo@f[fv@b}@t~Bp\\l|@j`@hdAlQvd@rTpi@rRdd@zKvUzPv^bQf\\pM`VzRx\\x]|j@x]di@j[pd@fXz`@vUh^`S|\\jH`NpI|PbNrZ`JbUdFlNdOjd@hHxWxChL~GjY~@bFbC~MzEpYfFx\\nDlYnEhc@nB`XnAfTjBb_@xCxr@hDxy@fDzr@`Drn@zBr^xCr`@lCj\\lG|n@vGzj@`Ez[tGjc@hGd_@|Fd\\lHd_@pMdm@bLxe@jKp`@~Jx]pN~c@nNza@fN~_@xMb]pJnU~JfUvNh[fRr_@|[dm@rXbf@fVb`@zR`ZpT~ZnYb`@jOnRnJ|Lf\\p`@`VzXdg@lk@pWrYdX`ZtW|Y~QtTx^`e@hS~XvRbZ`R~ZrVrd@fKhThKzTxLxXfUdm@vKvZxM|`@bXty@vTrr@|H~TjGjPpGxPlJnStI~QfLxS`T|^zKxOzIfMpMvPtN`PpJrKlJtJtKnJ~IdIdM~JlNfKbHrE|RtLzHpEzIpE|TbKtMtFvGfC`StG`YtH|WvFlS`D|NfBbNhAhMt@hQhAp\\|A`Sb@nOt@jSl@nR`ApMjAdDZ~Fj@xHv@vQrCfPvClOhDhG~A~HzBxQrFlVnJ`PrGlVzMvUpN~NxJrPxL~ZhX~RvRlv@fw@rV`VpTlSjRpNlMhJtYzQhQlJx_@bQvRfHvY`JrX~F|PfDfRzCr\\bElv@hItc@|E`\\pDxc@tGxb@jHvZnGdQ`EjZpHrWnHtWbJl]jMpZpLdX`Mva@lSlc@rVpt@lf@xc@~\\`\\dXpYdXjY~Xd\\~]l[p_@dV`[lVb]p[he@`w@roA~Zni@fWhb@~Up_@tTjZxTjXjW|WfQjPxStPzPdMpY|QfMzGdJtEbMxFxYjLjZdJdPnEhGxA|QnDxRdDfYlDve@lE~e@pEhd@dEnh@rGpUvCxUdE`g@|KnZ~HxZlJj_@pM`UnJzNjGlX|Mf_@dSbZ|Qp^fV`RnNvYtUbZbX|ZtZrXdZxQxTzRvVh\\de@nSd[~Wxc@`Sh_@pTbd@zShf@~Sdi@hKnYvKp\\vMhc@`P~g@zS|w@jQrt@xPfs@bMvh@x@tDpLxg@bLlf@~ClMpF|Tr@`CrJz[rQho@pK``@vKj`@xGhUbh@viBlTft@~Xz`AtRfs@~Oto@~Qdx@bF|W|@xE`EnUnQncAzDzWpGjb@lEp^nEt^fEr^`Dv]hIf}@dCt]|Bp_@zB|b@hCli@dBfh@|@pWxAtd@lAnp@xA~x@dAry@z@ty@r@zz@pAdkAbApe@z@v_@dA`^xBtd@lCbd@jDtf@bEtd@zGlm@jGhf@~Gbd@pKrn@lK`j@bIj]dHpZdJv\\dWz{@rPpf@nRph@dg@rmAng@vqAdJjW|ErNvElQbH|VnHl\\zChOxFlZfGva@hF`e@`BxO|@hM|@rKlAzR`Bf]bAdYZbd@Edo@eAbg@{Ax`@qC`d@{BzVoHju@wMthAs@|GaNjrAaHbx@iFrbAoA|WsB`p@{@j[e@d[WjRU``@Z|{AhBt{@v@d[rErcAzBh`@zElq@nNpvAzAzLtG`e@zI~k@rKrn@jKxh@zErSvDdPjHlXbFzPtD|LdGlPrGfRzMf]bJ~RxJhRbL`S~LbTtI~MjMnQfMlO|KbNlNtOpNjN~W`UB@bKjIhXlSto@jd@rj@lb@rXpUnMvNjHnIvKfMbKdNfJjMfSpZ`[~k@vN`[lNtb@xDrQhGnZxBlf@H|OU`XoAp\\gDxv@m@tSWvSHfW@tFtAfa@hCz\\jEl^vGn]lIjZnIdW~Nv]dIpOvGvKbHhKtUpZ~m@pt@bHpIvPjUxLhQfNpUpOhYjStg@vHtTnMdb@~M`j@pUhdAr@|CtTlhA|Orx@hSlgAjF`\\tLbu@`Np_AzMh_AxGji@~Ihv@vJ~}@nHpv@lL`sApIdfAfJrwAdMdtBbBlV~Djf@bLvtA`L`jAlFbh@pHto@dLl|@lL|y@`Lnx@|M|y@l_@jyBjD~RbSznA`Gva@xUteBnSnnBdNbqAlDrW|Fbr@tLn}AtIlyAdMp_CpHl{B~Ald@z@ffAv@l~@pAzgCm@rsCmCdjBaBd{@qBfy@{EfgBwBnq@}Bjq@kCjr@gB`e@wC|r@}Brd@aEpw@_Dxl@uDhr@iCbe@}Exw@{Bb]cIrkAeKfuAoLb{A}Grw@qGxs@mIl~@eD~a@sBlV{BxXgC~ZoCf_@oCr^uBpXwCdc@_Ezl@qDtj@aHjiAuDpr@qKvtBqCvl@{Bff@sGlkBgDjbAkLpaEmCxu@iBba@uH`}AaH`hAsFnu@eG`u@gFns@cHfu@kRvfBcIhq@uJ`t@_Klv@{Mn|@mArGgBjJgK`c@uUfcAoFzT{C`P}BhL{C|PkCdUmCdW{AbX{@jVUzQAzNBtRn@`Z~@jT`BtUbB`RnC|RfApI~ArIzCzN|CbNjFlRpHdUtHtSnI|RbIbP`M~RjMvRxHfJfI|IhK|JrNzLxMnJnPjJlNdHj]fMrPhGfU`Gha@~OzK`GxLpI~HxFrI~HrDrEpG~G`GhIlGhJdJxMfJnTlFdMzGfRpGnUpF~X`DfRfBjP^jDvAnRbAzS~Bpr@l@bQvAzTjCfX|CzTtC~PpHtZ`FrQtE~MvIjTdNfXbRd[fXhb@pHhLls@jmA~Yba@rc@ds@dOxW~H`P`Pf^rd@vfA~mA`|Cfa@|aA`^`}@|mA~zCRf@tzBpsFtcBfgEff@hmAhe@njAhBpExrD`fJhm@`}A|Q|f@jJlWpZdy@lm@neBdYfy@Xv@ni@|}AjVbs@`T`r@tNdg@`Lnc@f\\drAzI~`@`Odt@`XpzAvCbQlFj]fG`d@fGjc@xHbq@lI~y@dNbqAxNfsAjKl{@bNliAlItp@rKt|@~CxXlGbd@bHbd@fFvWnKhf@dJl\\zG~T~HfUrI`U|IpTrIrRvJ|RtKbSxMlUh]~i@zKpQ`Sv[lPv[lKfThJtTbI|SbIfTjHxUzJd\\nKvd@zFpZjEtUpDlVxDzXnEnd@dDrf@tBlc@|@nY~@`c@~Afj@lCnp@nAnXdKhxAdTtoB~Gbd@jJrj@jJbh@lLlj@fNtm@jMtk@pMnl@hg@jzBpSv~@hUpcAjVpgArb@`mBjV~fA|Qdy@`Sf|@da@lhBhLvh@jNbt@dFpYbBvK~CnSvBfPhDnXzDr^pC~YfBfVxBv[~Btc@rBde@bAlYpCxq@lA~XpAbYhBr\\zBb[~C~_@~G|n@xFxc@dCbQbDnSxDpUtF|YjIp`@zHj\\zErRfG~SfM|b@lLf^rIzU|HjSpJdVxIbSpJlSrPh]|Qr\\`LhRpRxZtLbQlMlQlNvQrQzTzOhQxUnVpVxUzd@xb@fWfV`O`Nd]n]fNzO~M|OjM~ObM|PjSbYfMtRjJ|O~LbTlPl[`Pf\\vPd^vwAj}CdIdQ`Txd@hg@dgA`o@ztArf@zeAdy@jfB~a@z}@bRt`@pUrf@hRbb@jKnTrWxi@p`@fz@xM|XrYpm@lR~`@rZlo@bYtl@d[`p@pe@hbAnUvf@hP~\\lQt]j\\vo@fWhe@|w@|vArd@|x@lk@~cAv]pn@hWbe@ba@hs@fc@bw@~`@ps@n{@t|Ap]rn@z^fp@vLzTx\\tl@x_@pq@zWne@|Rj]`g@z}@rTj`@j~@t`BluBvvDjWtd@rMnU~Wre@bXxe@lWvd@xQd\\|Qp\\n^po@bXje@|w@|vAt^pp@nj@dcAfSl]p`@vr@dj@naA~Rz]rN`W~R`]zIvO~F~ItSfY~H`KxKjMlMlNlFpFrFrFzFxFvFnErPrN`MzIlQdMdGlDdUtMv]tOjKlEzU`ItRxF`OxDhJdB`[nFzQzB|RdBr[jCrn@lFdZbE~Z~Fp[hIvZlKnVvJzJ`FhPhI|PzJjO~JxL~IvI|GnNhLvNdNlVrW`\\r_@r[x`@bTtWdNpP`\\h`@pb@vh@fc@ji@jdDp`EdUjYjQlTjQjTtTlXh\\ja@bb@hh@jUbY`VnZvKfNr[ba@t[`b@h[fa@dsA~dBdd@hl@fb@ti@~e@fn@pXh]n[|a@vh@`r@h[ba@d\\jb@|b@xj@`_AllAtb@jj@df@nn@jr@h}@|_@~f@hn@lx@va@di@nc@tj@|Y`a@~R|XpNbTzX~c@nLrShPlZtQz]nW|f@|Sna@~[bo@dV|d@`Qp\\`]pp@x[fn@bZ~k@|AzCdQn\\t]hq@xd@f}@fn@xlA~^ds@|o@zoAnQl]rOb\\jVph@z[xs@`Qbb@~Qjd@dOj`@~Nz`@rMx]fUdq@dPzf@hKf\\~IhZdJ`[hOzi@tFfSzKfb@vG|WhJb`@rNfn@~Qn{@nLzi@hG|VlDrNfIbZ`InX`IlXfItVrMr_@dPjc@vLj[bKdVjI|QhPz]rMfWfOhYxQp[jKfQlLjRzL`R~L`Q`T|YhLtOzMfPpTfWbVfXt\\r\\rU|TlWnThWbTvNrK|O`LfOdKlPdLnO|IhPrJbUpMtV|LzJjE|h@bVjj@nV|_@vQ|EhCnLhGrTbMfSfMzRjN`StOpSvPp[xYnf@de@~m@nk@zf@ne@jfBzaBh[j\\|Yb\\tPjRpQlTbPtSfPhTnOnTfP|UlO|TtOpV~MbU~OzXhMnUfNvWnMzWlM~WbNxYrQnb@lY|s@nNz_@jHpSrEbNvJnZxIrXvJn\\|Nli@|Hb[lMli@vMjj@nQzu@rOpn@fBjH`HhZrGfWhGfVvHbY|InYzItXzI|VfGpOhL~YfLfXtL|VxM~WrNnWpNnVbJrNfLpQxOtTxNrR|PzSdX~ZpR~RhPrOzRnQze@~_@vf@v_@pf@r_@|e@r`@xSlQvQbQ~YrZnQzSpXd]|OtTzOtUbQdY`Wzc@pRj`@bUhf@rc@~hAvj@tyAbYnt@`Xvr@xWhr@p_@zaAfRtf@bK`Y~Pjf@xPhg@nb@npAz]ndApa@pmAbi@f_Bte@fvAfo@tlB~Y|{@t\\rbApb@doAn\\`bAvVlt@hW`v@ht@xwBlW|u@jVht@bh@h|Ajc@rpAdVxs@vQxi@|Rvk@pZn}@b\\`aAd`@~iA`HpSt\\nbAze@fwArP~f@|FpPxItVvFnNtKtUdIhO|KpR`OnTtRjXlKpNjKfPdK`QhHzMbHhOhIxSpJ`YpIl[lGrZtIzk@lBvPfHh{@xCf^|E|l@xFfm@pEtb@`DlUzEzWrFpVpG`VxGhT`FjNfKfWbHtMxJ~QbLpQ`KlN|OfR`OvOrNbN`SbRfPzOjOpNtO|OjObQvNtQtMhQxLzQ~HnMnLtSnJpQxKnU~HrQ~FnOzDfKnGbTpDvMdCrJbCzKbFnVjExW~Ev]nGlg@pD~YlDhYpBtM`B~JfCnNtGt[`FxShH~W~H|W|IdWbJtUxK`WlKjUxPf`@xJ~UzJfX~H|UrMjc@`V`|@nSxt@lXzaA|Tlx@`Pvk@`Q`n@`Rxp@hRxq@tO|j@lTjw@jRnr@|Up{@zWl`AzXvcAhZzgAhUry@pYbeAdMld@bHbW|@dDjl@twBhWx}@jk@nuBda@~uAvFxQzGtRfJdUnLdVjLbShNfSdNnP|MdO`PvN~YfVtP`NhPbNfP`P|MnO|MrQbN`TpSx]dLbTjJnPlH~LhL`RjJhM|KxNjO`QpNtN~LbLtGlFrBbBfHpF~N~JrY`QpJrEfJpD|QdHvRlGjR`FfShDnS|CnSdBpXzAfo@Fv\\E~dAa@tiAQtg@Utu@]t`@Kjl@Od[ItJRdVz@dLz@hPlAl[hEfX|F~P|EbQpFbSrHn[xMpWdKlh@vTp_@hOn\\bNj[tMbSfIzRjIdRzIbMxGfHhEvJpHzWbTbQnRdP~RtRnW`_@xf@n[tb@f]`e@r]ze@|\\jg@|c@js@x[xj@FJjXng@fSz`@rWlk@zZpq@p_@~z@vb@l`A|Wzk@tWrj@hpAbmChVdg@hJpR`Sh`@t\\jn@tWjf@lVnd@tLrS`LdQfJdMzMbQhM~M~OvO|NtNtj@th@`l@fj@ne@pc@xi@|g@dXvVzWvVhXlWlOvPrMdPtM|Q`KvP~ItQfJtShIrT~HpVpIb[|Pxn@tXzcAdu@bpCpOjl@hQ`p@dRxq@~Lxc@lHvVrInXfHfTxJxWfKfXlJ`UrKvUnIrQvM`WjN|W~JrQdZ`i@lTh_@xg@~|@j[tj@lRn\\vRj]hTn_@zSz^hSn]nKtQ~KjPxJ`NnMbPdOvP`YvXlWvVhXzVbS`SrTfUlVrXbW|YlUfZtM`RjKzNpOxU`MvRvMpT`LrShKhT`KlV|I|UrHbU`EfNnHvYtD`PtDvRnErXfDfU~Lt`ArQrwAnRh|AxLh`A~OhpAnQruAlQtvAzEz_@~BlSjCbRtOdoA|K~{@|Grh@jGpc@xErYvE~XtFvYxFdYfFjVpIx]lG~W|T|_A~V`dArT~}@nVrcAxVjdAxTl~@xTj~@tSl{@`Sdy@lLdf@l_@f}A`VlaAT|@xWxgAjL`f@hd@zjBzYfnApPxq@fPpq@|O|o@pP|r@lJvd@pEhY`Ef]tBxXbBn\\~@fYvAbi@hAhh@VdLHnDfA|c@t@~[\\nOh@zWvCxjAvAhn@xB~bArB|w@x@t]`Apb@zDnaB|DpdBfK|jEXdLR`Gx@`WrAl[dBlZnCfZhDn[nDjZtDnVlFvZfJ~c@fH`YzP~n@zR~r@lQ`o@`Nrb@tNbb@zPja@fLvVhKhSzL|SbT~\\vTp\\xYzb@be@hr@`g@du@r_@zj@lU`]vb@do@lUz\\rWt`@jR|Xf[le@tW|a@`QzYvRj]z^hs@hShc@`Sxc@dSxf@jUxl@lP~b@lMv\\lNx^nInSrQvb@xPx_@bLpVxL`WfTtb@vQn_@jNd[xR`c@bTrh@bPv_@nXtp@z[nv@dVrk@xQlc@x\\xx@z]jz@|[tv@bv@fiBzP~b@pTpf@fy@foBdcAjbC~X|q@dPva@dPpc@dIpUbDjJrBhGbHvSvJrZzOfh@~Q|m@rYzaAdQ`l@xQnm@xStr@z_@nsAhW`_A|P`o@pQhq@dPlm@vM|f@fPvm@`Rfr@dQdp@pQhq@bQvo@vT|y@bPlm@dQpo@jSpv@nR|q@tQjn@zVfz@tNxd@bMtc@hQfp@bVf`ArWlcAlK`b@rNnj@~S|y@bRbt@bUt|@jRxt@h@tBjS`x@dWzbAd`@p{A~WhdA|Rbw@hStw@nQxq@jShx@|Uf_AxXbiAtBhIxIz\\fGvVjL`h@tJzb@dL`i@nEdVtHva@|EdYjIdi@tJhr@vCbUhFxd@~CtZnFzl@rCl\\xCfc@tCpe@|B`d@dBr`@jB~k@tAzk@h@d\\x@rq@h@vs@Xdb@r@p`A~@d~@|@fe@nAhc@rAhZp@bKpAhSrCj\\tE`c@~Ed_@xFr\\~Ivc@jJj_@xHpXrK~\\dKxYpOt^|Or\\zKfSzObX`NzSbPpTtP`TtTjWdNbOhNfNbQnQl[fZvFtFpUxT|T`TnVdVvUnVtXtYx_@xe@bQzUdRjXvWjb@lXjg@nVfg@vTdh@|Rbh@rIxVpNxd@~FzShEjOxCnKhMjf@h]vyAdQpu@lb@zcBtVl{@`Nlc@zNda@|\\v{@nVnh@vVnf@jV|b@tV|_@nZjc@hZf`@xk@|p@zXnXhYrWnWfTvWbSl[vTf[xRzp@b^bo@nXfX|J`WtIlj@lOv[rGpj@vK`e@jFbd@`Ejc@rClf@tBtKd@|j@jBpn@pCj]xB`]dDp^hFbi@nJ|_@|JrYjIxc@bPxUfKx\\bPv`@tT`N|HfQtLnX~Rt[pW~QnPbUvTtVbXbTxVdTtXzYpb@bRlZdXld@~Vhe@dW|f@b\\xp@|_@|x@dV~i@``@r}@vTzj@rXds@vSfk@|\\baAd_@liAbUtt@bZ|bAnYheAt_@jyAx[lpAr[hpAnNlj@fO|g@nNze@xLr`@xLd]`Pvb@~Srh@dPd^dR`a@rZxl@bXbh@pa@lw@lVxf@jPd^fNj]dEfL|DtKtEhM`Zn}@nQdl@rIzWhJjXvIjU|HpRvIpRhK~SbQ~ZvLxRrWl_@`LpNtd@`g@|LnK~X~UfYbRdDvBnBdArJlF~Z|P~VzJfTtHrQzFfj@tL`ZdEbd@nEvn@zFrTlCdOdBbZxF|RzEdPbFdQxFhQhH|WvLbRxJlSjMvTtO~NpLfO~M~MnMjN~NrMpObM|OvSrZbRhZrQb]pPb^fPb^pOn]zPv]bRv\\|KvQjLtQjRpVpH|IdMbOxM`NbMpLnHtGtVbStOlKbPnK~KpGnT`LzUdKnSvHhQvFdZdI|[zGzZpGjY`GpQxE|K|ChD~@`YfJ|LzEfS|Hxd@fRxj@dUzc@zQxb@~Plj@dUvClA`i@lTbw@h[~i@~Tly@t\\b_Ab_@~h@fTxJ`EzPdHnYjL|l@nVte@lRbh@`Tfj@|TtOjGlGhChRvHxj@hUTHp^`O~o@zW`YfLrOpHhQjJbQxJlOxInNlK~O`M|NnM`XlWpXd[vh@dn@~f@ll@`]fa@z`@de@vNfN|LpLhOzKtK`HdLdHhOtHzYnM`b@~PzYpNlKtGzIvFfHvFrHtGBBtBhB~HtInJrKvGbJpKfPtL~UvFzL|FlOdWbz@`AtDnIbXpHxS~GzPfHbOdJjP`GhJzGdKnKdMrKdLvKxJxQzNhPzLzVzQzNtLfM|LnCzCDDhI`JvNvPfXp\\xExFhVrYtVvZbq@`y@rVlZ~[b`@je@nk@ra@`g@lTxWt^xc@|^xc@`M`NbOxNdO|MxMrKfOfLxOdKrQjK~NnHdQtHnYtKrQhF|PbEtQjDjRxCpQlB|QdBnQl@tRTnUCjPe@fF_@vQ}Aj[cDtQiB|Q}AvRgA~Q[rQl@dRnAjPzBlD|@dO|DjObFbPdHjQvJhNxItWpP|PxKtW~OhPzJpa@lUfj@bZ|`@zShj@tY`b@jTji@pZxq@ba@hj@n\\py@~e@la@jVt`@|UnY`PxNfHlLtEhVpI~l@hQ~YzIvYrKrP`I`PhKzNhL`NxLbExExGtHdGxIfA|AxHrKpJnQ`ExH|D|I~CpHtEtMxBrHjDpL|EhSfJ`a@hKza@lHrU`ItStIdRlHpNjIxMnKfPbO~PjNfMjN~LxOzJnP~IxP~GrPfFbZ|Gdf@lJlYrH|PtFxO|G~PtI|OlJbb@dXpYdRte@|Yd`@tVta@dXjh@b\\``@vWtr@jd@hi@v\\|o@nc@z~@rm@h\\`T~w@|g@jx@zh@pbAbp@bp@~b@b]tTvc@pYz[zSrd@`Zx_@hV|t@de@lq@bc@bdAzo@tc@pXtAz@r{@hj@ztAj|@hd@|Y~XdP`s@ba@lq@l`@~h@zZtr@bb@vq@v`@zy@lf@xg@rZ~j@p\\rbA~k@nu@rc@r^fT~v@vc@d`@lT|o@d^vb@lVhj@bZbV|MbRxIzQ`H`RnG|Z`Ilm@zLdj@vKj|@`Qbw@dOlm@nLhe@pKpb@rJ`\\~Jr_@bNrXzLxv@p^b[bOr\\~OpVjNf\\zUh[hVdTjPjk@nc@xuBv`Bdq@rk@n_@r_@bQlRhQpS~_@hf@tVl]jc@np@h_@tk@dg@lv@bk@t{@pf@tu@jb@fo@rf@fu@ne@`t@j~@jqAbm@~y@nv@fgAts@lcApr@|aArk@dy@vo@n~@jz@|kAjn@r|@`PzTvRbXlI|K~QtShNdNpS~QpR~Nb`@|Yd^vXhf@b^vkAx}@hbAtu@ro@lf@xj@dc@jq@pg@vf@p_@~p@zg@nj@nb@`[jVtFlE~SlP`z@`q@n}@du@xj@|d@~gAz}@hf@z`@nr@lk@jw@ro@NLfo@vh@tjAh`Are@h`@pi@xb@rq@zj@~kA`bA`|@~r@xw@xp@bgA~|@l|@xs@rw@ro@pg@nb@`QvNtD|Cjt@hm@ne@z_@j]`Zp`@f_@pP`RbPbS~MfRtPvVbJvOjSv_@pJfSliAbmCte@riA|a@rcA|g@foAfw@flBhP`d@bj@toA`s@~eB`_@p}@jy@fqBrq@bbBl\\tx@l^tz@bZrq@nQda@~LfX`BpD~Pd`@fJtTniBnaEn^dw@zR|a@|Z~m@hZjk@~Qf^ln@piAdY`f@x_@vo@|k@dcA~Xhf@ti@p_Add@`w@z\\zk@~d@xw@lA~BdBrCbi@z{@xS`]~KzNhVvYzb@hf@rd@jg@`a@`c@jdAbiArSzTbDnDdVhXbTfWrR|W|MpTvPlZ|KvTzIzS|IlTvI|UnV~w@tWf}@|X~_A|Utx@~Qfm@hNt`@tOr_@fPh\\vFbLtHrM`NxTdLpPpPrT~SbWrYj\\f_@xb@n_@~b@lw@||@jq@xv@nt@|y@v^za@n`@xc@xmAbvAjS|Tno@vt@xcArkAhF|FnMvNhf@zi@daAlgA~q@nw@dq@dv@||@bcArA|A~G`IfVbYzGvH|d@rh@lTpVxn@ns@x_@nc@nx@v~@jW`ZhUlV`UtRnQfOlWpQvRlLhHfEhNjGrXxMxZnMpXpNbZ`RlEfDnOrL`XfUlVtVnPtRvPvThQxWvNtVnQt]`[`n@nXfi@jSn\\pWrf@pXpd@f[rf@z\\zf@dY``@`QdVha@nh@tTlXvQxT``@`d@pYv[|d@ji@vc@~e@vh@bj@tY~Ydc@pb@vi@vg@z_@j^xU~Src@v_@be@f_@z^hVn^zTtHfE`EzBvOtIx\\hPbf@|Tl`@xQtTtKvWvNtQbL|SrOnSrPxP|OhUfVjLbN``@|h@jW~b@fO`ZjOn[zjAjzCvc@zcAjKpThg@~cAhg@d_Adu@roAzWzb@vWnd@zRnb@`Rxd@tR|m@fNjl@zMbu@dI`t@tDta@Ft@rCpu@`Ahz@[dZc@l[iC~l@gDzh@}Gpn@kHhp@kDzf@yBjf@_@xh@f@xk@rAh_@jC~]tMndAxTrbAdMpa@lNn]tXjj@bc@xn@jVlXbW|TzY~SvY~PlWnK`WbJn\\|Hf[zEzUdBnVr@`YCrZqAfn@qJj`@}Jv^yLvoAc`@|g@gOvg@}KpIyA~NiCpFg@te@mEjW{@dTc@~]v@~YlAnb@`Fzb@xGfDrAdx@pV`LnE`[xNlVfN`hAfs@ph@x]zy@vl@|XjRbWdOz_@~QrP`Gf[|J~OvDtCl@hJpBnI|A|K~AhQjBpNnAxT~@`@BfSXbX@nn@_Bb\\u@j]IdO^zOZf_@jCzI|@rQnCrZzFdS`Ffd@fNvZpKpYlLvO|GtZxNld@pVvTrMdBfAzDbC`QbLlGxElU|PtI|GlDhCbc@d`@tJlIlWlWt^z`@dNrPbYp^tFvHvEbHrU|]j_@jl@tQrXzNrRz_@hd@pBvBtNhOhOfKvg@t]z_@zTnRjKrMnGvt@h]n{@`^fsBzq@~c@xQxAn@dWdN~VhO|[tUzNtMxQlQrPvRpL|NvShZfOjUtKpS~c@|`A~h@fiA`X`i@tAlCzPl[`x@jsAbr@xcA|^dg@`PjShNtQtRhSrNdMnCbC`MzKdPzLt\\lTdn@pYxLnEhLjEd]hJtYdF|]pEfZ`CtZpAdq@nE|r@tJlw@zV`YfLhY|O~XtQdYdT~g@|g@jZh^vUl\\nk@reAhNva@|KfX|g@dtAfjAn{Cr}AtcEn\\`{@|l@fvAx[vr@n^pt@da@jw@ro@thAbpAxxB`oAfwBp|ArjCh`BrpCzFhKtZjj@tb@|x@dh@~cArh@deA~DnI|Rv_@vPn\\rPv\\pr@loAn_@|o@p`@vp@bUpa@vV~g@pZlp@vZbr@dMhYpArC`Qp\\pOxW~Vf^pWpYvU~RbNrJlL~GfQtIvSzI|HnC~H`C`VfG|b@~J`c@hKhe@tOnRvIpSdLxOdK`P~LtSzR|Y~Zn[v]fhAlmA``AtdAbf@xi@bSzUp\\za@vPnU`T|[hR|ZvM`V~^ju@rl@`oA~Uph@jUnf@fTpb@~Rf`@tMfTjN~ThZxd@b^~d@p`@te@fD|Dd~BrnCxWf[dXz[|p@dx@lYl_@pu@nkAbv@pnA~lBz|Cb`BblCj|AjeCpeAlgBhz@`xAhlCjsEjv@~jAjEvGdBdClw@|hAjyBx|Clf@|q@lm@`{@fvAzoBhxBp{Cfz@vkAr|@bnAppBdrCh{@|kAfu@veApjFhoH|MhRdjCbrDfE`GfKvNtiE~cGpy@tjAxy@rjAxuAznBvuA|oBd`@`q@|`@dx@v`@ffAfR|l@dmBnrGzRfp@`fAtnDpeA`nDhrBz}Gf@`BpxBvnHn~GlqUfErN~Rxp@hNbe@|AjFj_AbaDxVvz@hs@lvBxL~[leBxuEts@|kBdn@veBlQlk@nOhk@hLdl@nJfl@t[zcCbZtbCjq@dqFpUnmB`@fDdMbdAbBdNnHlm@hWluBvNdpA|Evd@dCzStDb`@lXpjCnHfeAlFjfAtAvk@p@rk@Jrh@c@|i@qEvr@sCrZqDlXiEtWuE~TeIz[iIhWeIxTaInQ}q@vpAEHgaA~`Bs_@ls@_Wbk@_R`d@aQdf@iHnScH`UgRrl@cQnm@}_@v}AiTvhAyKjp@qJzq@qNplAyGxs@wFvt@mEdu@oFxoA_Bvv@aAfn@M`a@Q`mCJtw@d@deARx`A\\~[x@v[zBx_@zDt]fA~H`ErYzFzZ`GtV|Ojf@|LhZjLlV~Yrg@lVfZj\\r]hlAdeA|v@rq@jj@hf@b@^rVhRlOjKfRfLdK~ElJpEhK|DhG~BhThHzYdHdYxE`Z`Dba@~Btr@nDrbApF|_@fBxrA`HzjAlFtcBfIfNt@l[dBh_AfF~JZtb@bCprA`Gxk@bDvh@tCvXvDje@pKfXlJ`UtKpT`MxWhRxEpErNbN|QpSnRjWlMtRbV`b@~Qj`@tShi@lMpb@nPtp@n`@jeBni@j_CzZbtAf[xuAbc@zmBzXbgAtMpf@dWnz@lGvQ~ExMfHrRxZlv@lWrk@pGtMp`@jx@hiApxBzFzKfk@|hAhm@|jAvxA|rC|oD`cHleJvoQxeAfrBfiArzBtsC|sFnNrVfXvd@pn@r`AhxAvwBdhChyD|IxM~q@fdArfA|_Bz|@|sAbd@|p@zXdb@bQpVlFtHvY|]rXp[xQnRnXfXpy@|p@rM~I|[vRre@nWzShKv[rMn_@nNfh@`Opb@fJfQnDtYfGzXhFrdA`Tb|@vR~j@rNt[nJn]bK`u@xXnl@bWzn@v[v^xSdh@r[zb@hYpVzQth@db@dT~RhTdRba@r`@xWpY|SdUri@to@BBvm@tw@dt@~cApp@laAn{BlqDjzBrsD`nAfrBbnA|rBdlDr{FzeFpoIjKzPxiArkBtnCrpEru@`nAh|@vsAtb@tq@|aBz}Bhc@rl@d|@|gAnQbTpx@z|@`v@bx@`g@pe@rqAziAts@xi@nf@d^tb@rYjd@pZvs@fc@jc@pVhg@tWvh@rWvh@xU|xAhn@noA|f@p`B|l@z_Bfn@zuA`l@bqAxl@j}@ne@v|@nf@d{@hi@`x@vh@px@bm@pr@~i@leBhvAj~AtsAnbBzvAfxCldCzfDxrCjFnElhDzrCb]xYvqAjhAldCzqB`q@zg@zr@~e@dj@p]lu@`c@hs@n\\vx@j^rd@vQnUjIrj@|QdXpHx]vJdE`At|@zSxp@bM`v@nLxyBrZr{Bj_@ru@jPdq@dR|`@tLhf@`Rln@~Wfg@jXfj@v[~g@r]ds@jj@rl@bj@`b@rc@rp@hv@nf@tp@rd@~s@bo@xgAfq@voArh@~gA~e@v`A`m@diArw@ztAdT|]x_@nj@~Wz]`\\ra@fs@zv@`y@lt@`t@tj@bs@`e@`aBr`AjhB|dAnpEhiCx~Ap`Ahg@l\\v`@~YjYtT|c@~`@f[r\\lQfRhS`W|e@fo@hXdb@dWzc@~KdSz[pp@|Zxu@pJzWnKrZlWtz@bRbu@~Ohv@fO~z@fKro@`O`bAvN|iAjMn|@bKbs@tTjrAxOjw@pM`j@tLnc@hP~i@pQpi@xVlo@v]xw@jWhi@dW|d@jZvf@|_@hj@jYj^~j@xq@zr@`x@b{AhbBhaAvgA|eAxkAnW|VhYxWt^dY~YbTvO|I`UrM|d@pSnW`K`_@fLjuAt^|~@vVd|@hTtUnGxx@dSbb@|Lzh@~Pjv@dZzPjIlRlJlm@`\\`s@re@li@pb@jk@zf@rnAriAh_DxuCjvArpAd{AfuA~hDn~Cv~@v{@p|@||@bj@ln@|k@rr@|g@~q@bl@tz@`Znd@nYje@plAbmBzg@xw@n\\be@zc@bk@rc@fh@pl@jo@z^b^l]t\\j~@xu@jxB|gBfVnTnXtWz`@`c@z`@de@xRjWnVv\\td@jr@ff@j|@j^|q@bj@bgAf`@hv@db@pv@r]fj@hXpa@|LtPt^`d@zp@~t@nmC~lCpc@~d@j_@pb@tYh^lCdDf_@|g@b[nd@|\\ri@hSf`@rY`k@jThe@lQhd@bRff@zU~p@jc@`wAdu@rhCzj@fhB~_@~fAjZns@zQpa@|d@~_A|[bj@lc@jr@x_@di@jUbY`WxZfUjWl_@ta@rb@lc@vjAdmAfkCroCxtFxzFphAhjA`q@ps@lt@d{@tu@lbA~u@jhAtc@vs@x~@z_Bf}@zzAhj@p~@f`@pl@b[~_@~Yz`@bo@ps@bVjWf]h[ts@rl@pc@n]tp@ja@tq@h^dp@lXbTjJtnA`c@jnAd]nnCzs@tc@xKzv@vShpAf\\`pAv\\lkA|[`t@tUzo@hVhr@rYtVfM`^`Rz]bTjOfJxi@x`@rTvPda@|]td@zc@t_@xa@b]h`@tQ`TxPfUtXr`@hY|d@fl@zcAj`@lu@|]ts@l{@bkBfg@~eAr~@`qB`t@l}AttBbqEbuAfyC|wAf}CpkAlgCfZjo@bJnQxKnUxk@`hA`Rr]xRb]fb@rq@xYrd@nf@nr@zW~]nXp^`UbXni@bp@`_@va@xi@ri@fb@ha@|m@dk@ngAr`ArlAjfAtw@zt@df@nh@f^rb@rc@jj@dBvBtVz]`Xn`@v]rj@j\\`k@|R~]dV~b@|l@phAng@r}@zd@ft@jVl^lFvHxOxSbTzV~Wd[jg@ji@jbAdbAvfA~cAv^b]dd@lc@fm@ho@bN~NzP|Rbj@hq@~\\lc@pXha@v_@`m@fV~c@vTdd@pTfe@lQ|d@rO~a@`Rxk@xOti@tLtc@zPfw@tNtu@`Kps@hK~v@fIf`A|Fry@pDpaAbBf}@v@bz@E`x@e@niA{@jeAiDp`BmDfcBoDxbB_CpwA_B`sBNx`A~@dz@pBdpAhCbu@pJ|bBhNpaB|J~cAfNtiAra@laDjUfbBbW~oBnItt@bJx|@tKntAnFfx@hEfx@xF~aBtBxt@dA`r@rB`nB`Dv|C|AztAtBb~@jCt|@bD`_A|E``AdHb_A`Ih|@pInt@pOldAfIje@rJbg@lOlr@bM`h@xPzl@`Rrn@nXbx@jTpi@fTne@zc@z_Al_@ls@R`@`f@~z@|h@p{@|x@lrAz~@|wAr{@hwAnd@|w@nZxi@h\\do@vq@fxAfXvo@hZrv@xTdn@d\\fbAxi@rjBt_@pxAxf@toB|c@njBvg@roBvo@|_Ctq@v|Bxa@jmAz^xbAd\\rx@dOt\\j]ns@rWfh@xXtf@nb@ps@he@rp@t^ff@pYz\\nbAfdAvcAxz@z\\pUz[bShWhOf\\~Qdn@vYnh@dTrd@fPly@~Ubo@tMrl@tKlz@~Jhf@xEpi@~DpoAjF~e@h@zk@r@ny@QpmBmCxmBgGpnAyEtpAaF~u@kCns@cBpm@w@z_@Opw@d@hs@rAh]tAx`@jCtYzBz]lEh\\rEtFv@ve@zIp`@|Ifq@hRdi@zQf]xMd[`N~^pQte@lWhq@~a@fd@h[p`@|Ydb@h\\laAdy@bgCt}BljAldAhhA`_Atx@fm@ly@zh@ty@rd@vs@v[vChAbg@lRng@hQ|s@~Rbj@rLvh@lKteAtOdbAvLrwAzNvkApLlbBdSljApRhn@dNle@hM`e@hN`q@`W~UfLrW`Nlo@|_@dm@tc@r[tXl]j\\vk@~p@~TpYvR~XxTr]hQ`[zPx[bP`]|Svf@|Svi@lSjm@pTtt@tUv}@bNrl@fWflAfb@j|Bz_@vxBf^hoBh]vcBdQ~w@fQ`s@xQbq@dN~d@hPhg@hO~a@fPxb@bOf^dWfk@hTfc@nV|d@xQt[`Rh[vk@xz@ve@~m@bSrUvd@rg@xd@~c@td@pb@tWvTr`@d\\xy@fo@toAz_A|~@lq@jOrLfx@bn@hc@b`@p^p]x\\l]lYv\\|e@rl@fU`\\xUp]je@ju@lRr]fa@lq@rpAl}Bzl@~`Axn@hcAnp@j_Afo@hy@hr@dx@bl@lm@nm@fk@zb@d_@ja@x[fd@x\\b_@~Wfa@hWzc@pXpg@xY|z@ne@`z@~c@raAvh@n`Alj@xn@n`@xp@~d@nj@jb@zx@br@dx@tv@ta@tc@n^lb@t\\bb@vX`^zc@jn@li@tx@zz@jrAtHnL`gApcBdc@jp@pe@`p@haAboAdr@bw@bk@~k@|p@jn@xw@bp@bs@~h@l|A|cAjzA~_AneB~gA|oAl}@dkAx~@jm@lj@d~@``Axr@|y@vKnN|p@n_A|k@z~@zx@h{Av\\xs@~X|p@f^r~@jUbr@n[pcAzXl`AjRno@he@hiBxj@f|Bl{@zkDriBbjHnu@pwCt]lxAvW`eAd^b_BlQx_AbJ~j@vGre@fGze@nEbc@`K|mA`HbnA`FxzAxH`hCtGr_CnKprD`D|gAjBxz@fBfuA|HhgHjAvqA?nnAQ|RgAnm@kBho@cF~hAoHptAwQjvDiDdaAiAdj@o@v~@Llz@fAvo@t@|b@x@|]~G|rDXrUf@rPj@pW|BzmAjDhlAtGdhAjE|g@bHdm@nHdk@no@rkEhYflBd\\vwBlMd{@~PzeAzNnt@~BjKnNbe@dVnq@|]|v@dT`_@hXr`@pXh]dj@fj@hF~EdYvThY|Rj~@rh@`n@v]bi@n]np@~g@`c@l`@fh@|k@rf@jn@~RpYb`ArzAnm@b`A~\\vh@dXt^~QjVhh@di@|O`NpRjPnb@z[bG~EdrC`uA`MpFnd@zThoC`pAlkClmAle@bUvf@bWji@|Z|h@n]jh@ha@tx@~p@d_Aj{@h^jZ~\\`XpZhTv_@rUtZdPbW`Mjj@vU~|@t[xu@|Wfp@nVj^jOfj@dYxKbHta@rWj^hWnh@ha@dy@~w@|vAx_BdO|QfXb_@xR~\\jStc@xJbXfKlW~Jj_@x@`D~EhUbBbKvBbNlFr`@bEvi@tA~XrAbl@K~j@eB`d@aEji@iFdg@{ShxAsM|hA}Iv`AsCn`@iErhAeAh_@_Ahq@a@`f@d@|j@rC|rAzEdhAdKbuA|Gbo@dH|i@rVvzAvXzqAzB~KnX`cA|\\fhAj^naA~Sdg@pShd@~Rba@jRv^rvAjeCn]bp@~Wtj@tSlg@pLl[pRlk@|Jh[pI|YpNxi@rLli@jHj^fGn]jLrv@|Ips@|Fdl@bEnj@jCdc@vB|f@~Alf@~@vo@d@rb@Dhd@s@zl@}Ajk@qBfo@{Bbl@gD|r@oBvk@iAjn@]lx@l@xm@zAvg@jDzk@pDzf@nIhw@|Inj@xKrm@zNbo@bNxf@tTtp@zTnj@z[dq@r`@hq@`f@tp@`a@he@nd@bd@je@`b@nc@za@lKrJfa@j_@xPnObfAhbAvh@xj@hZv_@zVp_@~Vtb@`Ytj@d\\bx@bWlv@~Nri@nLhi@|Hla@tLfz@nHps@fFtt@bBja@~A`m@Thx@k@nk@yA`j@yGvpAuHbzAs@vZuBdt@[hs@?|_@l@xa@bBj|@|Cli@bDth@nHd{@~Jfx@lJzk@hiBj|Kn@vDly@jbFb]`uBfS`kAjaBl_Kzi@heDrf@lyCxm@~uDnh@zpC~a@lrBf`AfyDjWrdAx|B`aJjnA||Efn@dcCl`@f}AjsAtlF|FjUv{B|{Ile@liBlH|WzEfQlHtW`V`s@zLx[pOf_@hSfb@dWri@xa@dr@~@vAb\\bg@dNjRxV|ZtYt\\lt@~y@zh@jn@ld@xn@hUt\\lQ|Zr\\nn@vSvc@rT`i@bc@xmAdNpe@hNzh@hOnr@hCnL`SdoAv@|GjJft@nG|q@zF|}@`Dpy@xAb{@`@zy@{AjkCO`oA`BncAfBpr@~Er}@dDdd@lEhb@nFbg@vHvh@zN~z@|Q`_Ald@~wBrb@~uBtoAdbGzgAvjFxPfy@fD`Q`m@ltCdZnwA`y@n{Dtg@baCl~Bv~KtcAt}El{@xaE`iHtg]r{DvcRp|AdoHh|AdmHbs@`hDrZdqA|XhkAtt@hkCjZfcAd[baArb@zmAxlAt`Dv^h_AtEzLbVfo@JXtfAxrCve@foAp\\t`A~{@jnCtu@blCnpCz{KrFxRd}AdiGhfBp_HzwBrtI~CnLlq@vlCtvAjuFd`ApvD|Ur`A|dBb|GzcBnyGvaBtyGdx@fkDnb@zlBvx@poDf[vsAbYvcAp]~bAvXvq@zg@pdAhe@hv@lSt[lWf\\xFlHbp@hz@~Tx\\nRtZhTza@nTtf@hKzYrEzLdR~p@`L|c@`QjdAtHpn@lD`j@|Bva@z@|VTxY\\pb@`@~g@Ph~@dBx`AbDxr@pGvx@rL|~@nM|v@RnAxJhd@dPvm@zVv|@d{@zwCxRhq@poAtlEp_DtxKdbDl|KxrApvE~lAbdEpq@f~Bdf@b|Apn@dgBre@zlAfc@peAve@rgAtc@h_AfI~P`cCfgFznDntH~vBfqEzdA|zBxCnG|Qr`@`lC~uFj^ly@jc@~eAn_@h`ApS~i@f\\|`A|Npb@tKl\\`a@rqAt]zlAtv@zxCz|@pmDnbAp}Dj|@pkDxl@j_Cjn@tbCrHf[pNdl@dLde@zWrrA~Np~@pFp`@hIts@|Grs@|Ffy@fFhjA`EpwAPfoA}A`jBiDhhBq@jf@kFn_DmAfoBSxhBvBzpCnBrjAnChfAtJzlCbMh|Bxe@ppG~d@n`G~T|yClYtsDbWjjDfM~qA|MzhAbPdnAlOdaArSldAjQ|z@fSnx@`Pjm@tNjf@~\\zgAte@rrAll@vvAlXbl@rXti@dj@ncAv^tm@z_@`n@vsAxsBzd@|t@v`@lq@dj@~bAbi@pfAzSje@hU`k@|Tnj@|Qzg@lSpl@fb@`tAfVn|@rPrq@lSz~@vXjvArQhhAjRtrAvP|wAlP`}AtIt|@lJf}@fLrcAzPrtAvNtbAfPvcAvZhbB`Tz_AfSr{@xR|t@|Qfq@`Q~l@vE~Ol[hbAxw@|aC|Zn|@jHhTnNhd@|f@taB|ZdjAd]buApUhhAr\\vkBbNt{@vKbu@|Jtv@pHtr@jRfmB`a@brExI~|@fPx{ApKn~@vOnfAdX~`BbVlpAxRv|@rVdeAnXleAzVt|@|W|w@fb@pmAbi@lvAzw@hmBvgAziCrTji@~IjUnGdPvB|FfTxk@`Tbp@fQlj@jNle@`ZthAtWrhAdKff@lM~r@~Hhc@dQ~eAfK~v@jDzYlMjiAjIh`A|NvkBzMjqBrErp@jJraA|F~i@hJrq@dMxu@zNdt@nBfIhNjk@hTzx@|V|w@zRvi@~Zlu@pZro@xaArtBx_C~_FvlCjwFvnCpzF~`EvqIh@hA`yDvdIdt@luArr@joAvq@pkAlXxf@vS`b@fRvd@tOpa@lXxz@jPrq@`Nzo@`Jjl@dMv}@|OlsAlOnnAvO~y@lH|\\xHx\\`Tfu@hRnk@zU~k@rS~d@|b@hw@p`@tn@roCjgEvrEvcH|uE`iHvxEbjHhvDf|FdIzLp`C`sDj}HruLbnBnyCte@vs@`Z|a@fQ`T|P`R`VjUvZnVfIfFB@fQzK|b@hTds@~[fpDj~An@XhuDnaBdvClpAtmAhi@pc@~TzZzPl`@hYj[dYrWjYtd@~m@nUh`@nTtd@`N|[lLr\\nLh_@dNxj@zIxf@lJpo@hFxf@|QxsB~U|hCjGlp@pPn}ArG|d@|Lpq@vJtf@|Jnb@|L~d@tPji@p\\|~@tXrn@lOb\\fUpb@pX~d@rS`ZfVf\\nPhSvRjUhShTpPnPjHvGnp@`k@~p@li@ffAl{@~dApz@hbCjnBvcAtx@b`Alt@vvAd}@l[bStgA|g@`g@jTje@`Rtc@`Oz_@~Lh]zJri@fNdm@`NvuAtXzkAbUxoAjYnl@rOtk@|P`d@rOdo@dVrYpLl]tOlu@f_@d[~PlWvNzo@ba@nw@zi@feG`vEnh@x`@zqAhcA~kA|~@b~@hr@jTjQnQbQpNdOvOnRvN|RlLnQxOnXpMnWpTng@hMf`@jKh\\tJla@pJzd@rHfh@bJv}@zIdbA`Ipu@jJjo@vKzj@tN~l@rOri@rPje@vNp^fMxWbKjSnLjT~U~_@rSrYfZd_@r]~_@he@`g@de@vj@jRzWdOtUzMtTrSd`@rR~a@fNf^dMr\\p`@|mArc@xwAje@fuA~Wps@`Xfq@pSpe@~P`_@jSzb@n\\np@z_@`u@hr@~oAnlAhyBpqAjaCvcArkB|n@bkAxWlj@nOra@`Pre@~Mxh@rHh_@tFz[dEhZzCfX~It{@tSvqBhZlzCvIzq@jHnd@lIra@zPxq@nRjk@tSzg@tNtZfM~Ur@jAvVba@n`@zi@z^z_@lZtWvYbUrYpQpd@pUnUfJjXdKdv@tTtb@bO~b@lP`[jPpT`N|SdPjW|UrJjLfLfNfRdYpQb\\tM`YrNp^dTlp@bU~x@vErOj^ljAxNpd@hOl`@zVfo@nQb`@jPv\\dQn]n\\hj@jV|_@|Vj^lVl[fYz\\x]|_@vYxY`\\nXt]`Yrc@t[vU~MxWdNfNpFfXbKlVtHb\\xHh^lFxZlCdVx@vYVh]a@d[oBf~@uGrt@{E|eB{LvaBiLry@qEpTg@nXm@tUMv]Bt^p@b`@zAh]bCbYrBhRxBfGr@bFr@t[nEtVlEbb@vIdt@pQ`c@vMvb@pP|StKx^lTrVxQhGlFrXrW`NtNrLvOnRbX|Sz\\h`Az`BtaAxbBdrA~zBf|ApkCtOxYhP|Z`Qb^pTvi@|a@phAnyBhkGbcBfwEvh@b{AxRnm@rRfo@bMpf@bDbMhJz`@tMnn@|J`k@z\\tlBl{@phFn~@xpFJj@pl@jmDfn@|qDvb@dfCfi@dcDp@dEhLjq@fHnk@bChXtC`_@~Cxo@b@~o@c@pi@{Adj@kCta@iEfe@sHhl@}@bHs^~eCyZtxBqu@liF{@|F_z@b}F}y@f}F{dBpuLao@zoEqm@jdEmKpm@aKbe@{Jha@qMpa@yQpf@iR~b@mWrg@aTz[eYx`@sY`\\_YnYc^b^o[~[aYv]cRtWuM`TmUpa@cW~j@}Pjc@cQrf@eiAhgDkx@v_CuIlYuFrR{Lld@sLlk@qH~c@yEv_@iD|Z_Dp_@aCra@_A~^kAbn@[dj@e@tiBeBhkEw@vtDZnaBvAr{AhDjkB~Bzt@fDhp@dE|~@tMj}Bt_@nsFt]hfFdI|kA|Dtk@j@pIXfEfCr^`\\hyEvBb[n[vvEdObxBrMhkBjf@zgHdM~oBvJbhBvFvtAjCv_A|AlmA`@xrA{@t|AiCrsAgG~|AaH|iAsKnqA_@lE{JleAaLn`As[nhCc_@huCwVfiB}UpmByIn{@gEbn@mBxe@kBjw@Lnr@rAro@|Dnp@fEfe@nHlm@vF`^zHd`@vNpp@jDfOfUrx@rLhb@|@|C`GzSdRdq@jOrn@bNts@|Gfd@fFnd@rC`[bDjs@bBfs@Hdu@y@jl@_CbdAiB|r@uAfq@sAl_AQhi@d@rgA~AzaAxJpkElNdrG~FdgCrE|sBf@dPrBfq@bCbp@pH~dBtRr{DbNbpCzR|dEbM|dCvNr_DzC~bAfCzaAhB~fAdAzdA|@blB\\rnAf@ljAl@voA`@voAz@deC|@b|Bz@jaCdAjiC`BzpDbAdtDVzs@z@rhCGrL[`lA}@nc@eDnv@uHt`AgEz]_CnPgF|^sZ~uAq^bmAu_@~bAyUpj@sy@hrBoa@|gAue@r_BeY|hAoVzsAa^deCmInz@mKviBmDpmAoBpbBg@hb@oAxnAsBx`AgF~|@uFfs@oG`i@eLbz@eZ~xAoUzx@_Upq@ci@nmAwZpk@kg@rv@mk@ht@{\\~^sp@rn@kd@v[ku@bd@gk@nUav@`VyYvHu_@vGcx@tKagAfLsn@nJam@~J_e@nK_g@jP}_@bOyd@tVeb@fX{MjKkNxKy_@z\\{\\v^i`@bf@_f@zr@{MdVaVvd@{KrUkRtg@gMf]sJxZiT`{@cIr^kb@pmBkkBdbJa_AjjFqMz`AgMfiAyG|t@eFjr@iHvtAaG|_BQx^q@fi@Yt^Sti@Phg@tBnvAbAvj@xEbxA|GxzA|[vvGbi@piJ~a@d|Idi@dwKt}@dxRzE~z@`Ets@jIf}@tP~}@~a@tvAd^tnAfLxc@vKhn@fEv`@pBr[x@d[Pnu@uIdtBqFrdAkDvaAa@lbAzD~cArKpcAbPzu@xq@llCrMhm@dMzz@tE|v@~A`eA}Zp}JY~`AnBneAfTruCzs@ffJbI|o@zHzf@bKfd@lMrg@vwBnfHbN|q@xHfl@jGpv@rCh}@L|mD`@``BjBl}@~Glz@~Mh~@tSnx@rbApkCzTbt@hOho@~EjXfDxXdCtVrAbW`@bOVpK\\zn@Qfu@s@dvAh@~{Ca@hoB\\xqEChq@|JbfL]|iA}C`cAyHb|@aK|{@}wBvrNmQfuAcEh_@oP~eBsHt}@qGl|@}GtcAaG|jAuj@|rIaFps@eHzv@_kBvgRmIzgAsB`cAl@j}@vE~}@rIrx@bP`}@rQpt@jXvt@pwCj|GhWxt@~Tds@xSjt@bP~o@dN|n@tN~|@fKfbAbOt_BhGzlAzCpnA\\bgAc@r}@gAlaAgE~}AgMbbG}EvhBUxx@xAvy@lEtx@nG~u@`hAdaJ~F|v@zDl}@H`y@uAh~@}lAzxZkIvtBcLzsCoAzZmLpdD{KnnCuCldAu@ffAxAn_A`Gx_AdJry@`Lts@dsDz~PjMly@rL`bAjI~kAhB`aAP~v@qAn_AiErz@{~@bjKaF|cAa@fbArB|z@xFnw@|kAb}IhInu@jIx}@fFp`AzAj|@rHppR~ChfAjJt`AvOt`AxV|y@v[vv@d_@ll@|c@|i@ndBr_Bf[j^zZfd@t[nn@fTrj@zWpdAdR|`AjT|_AfXv|@rWjq@~\\xm@v_@vl@neC~jDvb@dm@na@xn@zjIl|N`Zbl@nXft@|Qbn@hNpx@|Hhx@xaB|g]B`@dHty@dK|z@dQn|@n\\rpA|k@pmBxTfu@jQhq@xN`x@tJl{@vb@vhGxBn[nHbhAhIhcAxOvaArFlUdQfi@fZdp@~\\zq@bZnt@hRps@fKfy@tEby@rw@h_QzErg@xMz_ApRjz@tW~r@bTfe@jaCzrEfUr[zN~Rt\\d`@nUdV|SzQnb@lWxg@fWjz@rWx]zFnLjA|c@jClk@?~f@wCjW{CvVuEb{Aw_@hl@wNtg@aJrm@sFdt@gD|p@fApv@tEht@tI~l@vJ~l@tIbn@hF|g@jBvj@Q~g@{Fl^mGjl@uMfeBok@bUqF|k@eL~n@mGrVw@xXq@xn@tBtj@rGvx@bPdm@xMbnArWfn@pKrdAvMlu@lGvi@bChnE`Hrz@bGxw@~Nnm@bT`q@t[hl@la@j_A|z@boBjlBnd@pc@t_A~`A~]h]vr@nz@hq@r{@`g@xo@l]bg@nP`VrKrOn]zi@d\\fc@`c@fg@dc@|^dd@b[pn@bZfUtIpc@rOlm@rSfs@xUpq@fUrj@xQxWbIvmCft@~cAnSr]bHha@fJpPjE|PfFzKpDjK`EnOzGbMjGvOvIjl@nZf\\lT~YzYb`@ph@nUx]vWz`@nIjMhKzOlAhB`M~QnHtJnE~FtO~Qx@`AjGrGdGfGvH~GpKzIpK~H|JzGdGtDbNhHfOfHxPpGl[jKllArXpm@xRfo@vYxeGt{Dzv@ni@`j@h\\zy@nZffAnTxaAtZzn@~[dp@bh@fhCp{Chw@dv@nw@fo@f`Azk@xhAve@lM~ExLtEbNvEbGlBbJ|CxRrFfRpF|QlEd[pHt@Prh@nM`[dI~QxEhQhFzNhElOzEbUjI~NnFfQ`HdN`GlR~IvQdJnNxHdRtKjuClbBjKrFvNjGnMdGbPhGfOrFfMhEpMdElN`E`MbD`OpDpLtCbVpEhVfEzU|CxUbCdJ~@|MfA`@B`RfAhPl@lNd@nORvNBrO?h_@[l|@eBn^[nO?xNDnFLbNh@`P|@vHh@nS~BbOpBxNhCbO`DbNhDfMvDhz@vZjj@z[|yAteAfi@n]zk@tZ~f@zQbq@dPn}@xM``A~DteDKny@xFnq@xJht@`R|s@rUnk@xXdj@d[b^dUp_@zUtn@~[`n@lVzLdDlwBtk@viCfs@js@lX|]vSjNdJ~j@`c@fi@pj@xc@fo@h]rm@pZbr@dX`s@`e@zmAr[nq@zWrb@`Zp_@d`@z_@hp@xc@nm@`Wbb@|Kh[hIt\\~C~_@hBp_B|@j[Nb^p@jk@rFfr@~Otq@pV`l@nZzk@zb@xcBpyArj@lc@~l@ra@ro@v\\tn@`Xxr@rUlhCps@dp@zTnn@lXnnAns@dy@ni@vj@|Yrl@lUdm@dSn~Chf@paAdQrz@|Urw@f]zt@fc@pr@`i@rw@rv@ld@hk@vb@jp@da@pv@p\\vv@f[by@`tAdiE`Xfo@tUpe@dVh_@p[p_@zc@pa@va@|Vvb@zRrj@nL`s@nIps@lCpg@\\~zAbAj`AvE`y@rNxq@tShn@v[zzDfgChpDp_CtnAjv@`pArr@xmAvm@d`Apd@`iAhd@ta@`OzUpI|dDhdAldC`|@rrEvmB~h@|WbGxCjMnGdbAbb@dq@vV~lAf_@tbArYfv@zR`fAjVfkC`e@js@jLfhBfRngEv_@t`ApObx@tSbp@bVlm@~Z~p@hb@bi@dc@li@fh@ve@pm@rb@rn@vp@ntAhh@vvA~d@feBro@z{Bt`AvrCjWnr@xMl\\nzFlpNdp@f~Atw@jaBb~@|fBjFhJt}EjjIxz@bhB~p@~fB`}DztLzUrx@rSrx@nWfqAji@|lCzH`a@`q@|kCv^v~@~n@znAtw@jiAzkAxlAvmApw@xdAhd@jbAjWnBf@jjA`OxbApDfkA_Av_AsJrcF}p@fo@_GvReBtf@{Chb@gCnMj@`}@|DdgA`KpeA|YzaAja@xv@|b@lz@rp@xw@p|@|n@f~@dp@fqApf@|pAvlDloMdlA`eDd{@f|Al`AnpAp}TltTl{@f`Af~@|mAxv@pvAxl@`rAhh@dwAd`@|qA`yA~sF`uA|eFfpBhlHzc@`vA`i@psArTrc@baApfBjO~Vlq@|~@z^ta@dfJbaKto@nu@bW~YrzApeBzw@`bAru@faA`u@pfA|l@rfAdo@xkAvm@fqAp`@bcAthAdeD~Rhr@h]`tAbZ~wA~Zt`BlVj}AzPxzAts@x`I~RtwAj[vuAjh@xzA~k@jkAtp@r_Ahd@ff@dQbRnaAvu@lcAzf@bYpIxk@bQb]fKjmAt^vjArd@`y@t_@~OpJdThNvn@xc@dVdSvGhFbUnSp^t]~TnUlxA`uApl@td@lLbJx[jS`YbPvOrHvi@nVrM`Fp]tLfVjH~PjEnQ~D`d@`KreA`MndAlElgA_@lcBwIhiAuDfdA@tdAbGblAvLvaAhHrd@Ktd@iBrhA{T|{@}b@nx@en@zu@eu@nu@on@xbAwe@fcA_TpdAuBxbAfJba@pMtOnFlPbFj_Abi@tcAdn@z}@p_@l_@zHj\\|D`d@|Avj@o@hPaA|OyAh^wGzl@eP|VyKz_@aUz]gYbo@iv@~kB}|CzJwQtn@mz@nZq]hLkNvYaZj]k[xR{P`[uUv[qSx^yTj^wPj`@_O|`@aM`PwCvKqB~f@eJpdA_JdgAc@`p@`DnXxC`x@dLf}@hVrt@dWnKrDpjDdvAzvC~jAh`At\\zn@lNva@tHrb@fFnh@dEnk@fCh~CvHj_CfFjf@rBp_ExI~_@`@fg@aAhj@iHn`@eIb_@sLrd@}RpdHqyD`dAoi@j_Au_@fuAub@feEcoA~kAu[r]eExb@qAfVbArJLdd@bFd{A`[rTbG~cA|T`~@pPfSxCnJdAhJ`Anb@hEbcAhF|hA`Ep[x@|VU`g@}Afx@{J|s@oPbRiFlsEazAde@mNb`@yGjWqC|l@aCpgBcEtq@_Ddg@yHfZcHnFuAbi@qRb`@kQpeBeu@fCgAhdSc~I|W}M`N}FrOqFpI_C|IeAvcBCrWlDrj@pJ~{@nL~MbBd\\|D~YlD~eArPx@ThCt@|zA~c@pbAh]lP|Hz\\~Sxe@ld@fj@~j@pTtTnVtThUhQn[~O`XxIt[nFfZfB~UOx]cElJgBzKqDhWmJtZqRjYkWnSiXfNwSbQg\\bWyh@~]ov@zPi\\`RyZvP_VrOkQjLsKbM}JnM_InJ{E~OoGhToFvNiBrZwB`RHlm@hH`WtHbS|JnVnP`ZhZjT~[fTjd@rRvl@hfAzfExPvk@fPx`@nT|b@n~@tiArb@dc@`v@`v@jwApwA`T~T~]nVhc@`VzX|Ize@vFtR~@rRQ`[gBnX_Ff_@_Mt^mPtoFanCfzAaj@|nAgU|q@uH|oNkoAdhA}NneA}VncAm_@l`Awc@laGkuD`[aRvRmL~JgGf@Yt`Aga@tiA}ZtmAgOhxFyi@zNyAjbFmd@ruBiR`^cEncA{MbxA{SngAsT`bBab@hcBk^zpAkSz`AeChdArDdfGrn@viAdI`fAJfmAsJxdAyVv{@q^|vE}lBhpA__@|rAmSjvAmKffLeh@fkAeJbfAeKbdA}ObrE{|@fzAqYj\\}FhScDpTaDpUuDtpAgMh`A}HtK}@trHiQrdW{l@ljAwGhfAuSjjFs_B``AkTr_AmN|jA{IxfAsBjhAr@fdDvPnqEvXfiAdKhcAvThsAro@~iSzcMxw@lc@vbLpwFfgAdt@rv@~u@xr@t`Arr@|jAbl@h~@pOrSxe@|h@`l@~d@xv@x_@~YdJ`Z`InWdEvFn@t[lCr[bAz}CJpoCq@huAf@ft@bEh_@tFzo@zNxNhFnDnAze@jQld@pThfJniG`cAdm@p`Ajb@xl@~Rpe@zLht@hOl~JfgB~mBx^hlDpj@nmAdOpwH~~@lnAjRhmAdZlkAf`@~zHnkDpdN~kFbrDnsAxxHdsCfaBln@lZfLtt@zXdmAda@rl@|TvUfKpKdFl~@~f@~v@xi@te@dg@jh@`t@~^vm@|[vt@pa@jvApIx[njAr|Ff[ruAha@hvAzb@bjAzk@xnAf_Ab~A|eAvrAb{@fw@xfApz@zeFndD`mAz{@tc@p^th@zd@beAxhAviApmA`rFh_HzzAvlBv~C`zDduCdsD`|B|sCroB~aCtr@tx@du@bw@f_@h\\jh@vd@df@rb@|s@ji@j}Bh|Arg@n\\xwAdaArhApr@liCdbBveAfs@tDdCptB~eAbw@z_@tk@bWn_B~o@zcBbo@lnApi@hjAxl@hjAhs@|nAxz@jiAn~@t_Ab|@xq@bv@h\\p_@bOhQtR`VhP`U`e@~o@|RtYvIpMpSvZvl@~fAlRn^|^`y@ll@xpAxrBnuE`lBtnExl@dmA|l@~bA~t@t~@`_Alz@`gA|r@pkB~fArC`Bf~@xt@t|@h`Ahr@peAxo@hnAls@rqAvq@~bAdcApjAntCxiCfw@`|@zx@nkApr@dqAzl@dtAfiB|~DxItR~BbFvpB`nEvk@t|Ane@veBl[lfB|SrmBpLhjBnKhlBlKffAfN~{@tUj_Ap]ndAna@v|@tf@hy@zi@tq@z}Kt`MnUlWbYv^ng@dp@|v@buAdi@~zAby@nsC|tKvk_@hZjwAbXrkBfNx|AtvA`lS~PzzB|Gnl@|M~x@z\\fsAfi@`mAzoAv|A~xBnzBfdG|cGfd@``@jc@x]ns@be@n~@de@dxAxe@xeC~k@|aAxWzx@pXbv@h\\zv@l`@~kC``BlcAbk@x_A|a@taAlW`cAbRzlAjLdgArBrECf`AaB|Yo@vrByG~k@~@na@pCxd@lIjk@bRbf@nV~WhTnWjVvc@td@z[xe@f`@taA|Lh\\jKd`@dPxbA`Ev_@bEpl@|@xn@Stb@oBbn@}Hf|@sM~t@cQx`AmHjf@cDdd@OdMUhOAtIDrHN|HRpHVrI`@tGh@|Hp@lHz@zHz@pHdAhHpAfIhAhGtArGfBfHhB`HlBnGxBxG`CtGjCtGbC~FnC`GvCxFpChF|CpFlDfFxCtEfErFzD|EhEvEvDxDlDhDpEvDnElDdE|CjFjD|ExCfFrCjEtBbFtBlFxBlFdBfFzAhFtAvFlAfF~@lEj@rFp@|Gn@rFX|FPdFD|E@jGKlGWvF_@vMmArG{@dEi@`H{@xFy@lFs@nFq@bGu@rFi@nFk@nGk@dF]`G_@pFWrFQlGMvFErF@dGJrFRnFTvFZrF^fFf@vFp@pFt@xEn@tF~@lFz@lFdAvFdA~FhAnGnAbNrCxPhDxf@`Jpc@nF`s@vCzkCjEnu@hL`p@f[bf@v`@hd@tm@rZlr@jOth@jUfqAftBtfMxRjjAvKho@nFvY~E~UrHbYxPtk@nr@lgBfPd]`b@ln@RXnbApnA`N`Ozj@zf@~w@pe@bq@h\\~u@bZrgArVr|@xI|dAvAvsLmOfbAtAtv@tHdt@fP~jAba@p~@~h@xlC~vBpu@je@p|@`a@hy@~Vlg@lKbb@fH`|@xF``DjGljAjLneAhQvs@nTvBn@~n@zVrj@bXvi@fZl|@tn@vp@tm@nSrUxZ|\\|q@|~@r|AvfCd`@xi@fPtR~MvNtR`RvP`O`L|IvJjHrMjIjMlI`ZfOpUnKtNxFvLfE|LrDtLhDvP|DbTdEt_@|Fx]fCff@tBla@MjbAsD`mAkB`eAhBp`A~HdgA|QzjAd\\t^rNzh@xUpn@d]tvA~w@ljAfp@f~Ab}@p`Arc@je@|Lrj@lH~iAlK`zGdm@l[~Erf@~Lx}@n`@h{@pj@hj@`a@plEnyCrx@~h@pgAlx@nZdTlUpLf_BdfAb}@`o@hVhQzg@~d@pZf`@|Y`c@tn@bgAn^fn@vr@pgAlTd\\hSjVfSfThZrXfv@pe@rx@tZtd@pJlW`Dtw@xD|pA~A`eBrBrhArBjOv@jcAbOt_Al]tq@vh@vVtVjZ~YlpA|vAvg@hm@nRzWdSjY`p@lo@taAhx@~_Avp@ra@t\\hUxVzZj_@nUl^hTte@vS~h@vQts@~L|o@|XzsBjDdRxDjQjEtPdFnQlFpP`GdPlGtO|G|NrH|NvHjNpIxMnI|LhJxLtJfLjKtKjKxJvKjJlKdI`IxFlQtLvSbNzRlMpNnJtQjLhO~J|T`Ofd@~Y`n@|`@dwAv~@|iAru@fZnRtRlM`StMxMpIpSnNbFlDfFpDbLrIzKzIbLzJxKrKbKjKjJpKtIpKjJ`MnJfNpIpMzHzMpHhNhH`OdHbOfGdOhGzOlFzOxE~N~EnP~E~QbE~P|DhRrD|QvFb[pKnm@tNxy@nKzm@|Hhd@lIbf@hAfGfK~l@|Gj`@zFv[fF~ZxCzQvCzQrCtSbCbStBpSbB|Q|ApTjAvRx@fRn@vT^~SN`T@hSEbOGzLm@jf@y@ph@s@ng@yJlzGYnR]hVe@`[[vTY`S[tS_@nT]jSi@fSi@hRw@zS_AlRgAjSkA`RwAbScBnSiBdSmBbR_C~R}B|QwB~OmArIcCbQgCpQmCpRqCnRkCbR_C~QeCfRwBnRiBdRcBnQ{AlRsAzR_ApRw@rRk@dR_@fRS`SEnRBhRL|R\\vRd@pRr@fWhAdVbAdRbCnYhBdQfCrT~BlQfCxQlDpSxCnPvD`QfD|OzD|OhFlShFnQpH`VfO|c@lp@xjBlG~QhF|PtExO`E|OdErQnDlP|DdSfDtShC`QnChTrBjQvAhOvApPjAhPbAhOv@nNfBb^l@jMnDrt@`Fjt@nBtUjEja@bElZlEfXpGz\\vG~X|HlZvIbZbLl\\jK|WxLvYdLnV|o@xsAzu@|{A`Pb^~Mf\\`JhX`HdVnBfJzI~a@pElXhDlY|BhUjBfW`AtXb@rWLnXUnUq@lYwAxY}B|YuBlSmD|VwEfYmv@l}DgK`l@eFd^yCfX}BdYoAzWw@tYYlW?hP\\nZt@vRx@pQfAhPlBtTnCrV|CpTpE|V|CfN`GvVpG`WxyCzoKxg@hbBfTzi@`Unj@zl@zeAbcFp}Gt`@lj@`LdQrLpS|JdRnKbVzKpYxGbSfFtQpHd[fEdUdElXrCnUlBxSzAvTjAtYd@~SV~[YrY[pMe@jNkBx\\aCt[_Dd\\sIxu@kuBjsQY~B{J||@oKxfAmIdcAmDji@_Dzn@qB`i@qAba@aAlb@q@d`@[|b@a@l{BjFzjChMf}BbTr_Cn\\bcCbi@rlClf@vlBxx@rmCzJf[rv@~mC~R~s@`b@dyBlNxfAzGni@~Fxo@zMp~ApP~bCfNxkArCvTpC~QhIrf@pGz]`DzPrHl[vEjQdJdZ`JnYzQdm@zmAtuC~Nn`@lMrd@|Kvd@vHzg@`H~j@fEni@fB|l@Z|n@yBnsD|@fr@pBfg@bHtr@~F|c@jJbo@pKla@jL|b@zZ`}@zOhb@~Z`t@nG`NxF|LpEfL~B~GhDnJbFlObF|OhDxLhF|S`DbOrCnOlBfNvBpQdB`OlAjNh@dLh@rMlAtSz@|Rd@lU`@~Qh@`\\`@z]h@v]n@`_@j@xSn@dSbAbRfAzPhAnMfB|Q`ChRjClQhDtRfHp\\dE|PlGbUhQtk@lEpMjDrKhD`K|BdHzBpHzCvJbDrJlDtK|DtM~DtNbEzO|C|LjClLxCdOdBvJfAxFhAvHjAdIfApHjAxKbArJ`A|LbAxLt@lOZtIh@zLp@~OTzKHbMBxJ?pJIdUUbSSpMg@hWqD|aBc@dVa@fYOnSKhVChT?pMDlKB`IJfLb@xPx@zTbA|Vf@zLh@jK`ArPlAtQxAzRxA|QlCrW~B|TxD~YnCnQdDrUrBrMfC|NdF~UzGb\\rD`PhBrHrBtIrDxMdElOhFpPlIjXnFxO|CzIjD~IdFxMhFtMrHlQpEzJbE|I|DnIfE|IrDjHrEjI`EvHnGdLxEtInLzRnU~^dXlb@p\\xg@tSz[jd@bs@t]vi@d_@rk@xUx^xTh]rf@dv@lc@fp@lLrPjKzNhNxRbIvKhXp^|q@n}@b~CtnDb`C~lCzBfCjVfYjMpOzRzWlMjRjJfOvE`IlErHjJ|PjFhKrElJhF~KrFlM~EnLhFzM`H~QpF|O`GvR~DtM|EtQnFfTnDbOxDdRrCjOnGb\\hlD|`S~Jbl@lGn^pDrRtEzVvEvXtDnTpE|WnD|RhFdX|XzvAlIla@dx@lxDzXzqAxTleAbSr_A|Rj`ApJpd@bHd\\`FfVxGd]dEdUpC|OtDfTvBpOxC~SbDlVlDx[dBhQxAjPpA|PvBn[`AjQt@lSh@tQj@zS\\jVLt]LpqAKjJ_@xSc@bNc@~Me@hLw@pOuAdVy@pOuAvPqC|\\kEr`@cBhOgC`RaDpToEvYkChOmEzTqEfTaDvN_Jd_@_Lba@iJ~[_HhT_HvSi^xfAoLl_@uDjMiDzLqCdKyCtMaCnL{BdLsBzL{AnJgBdM{AlLeA|I}@hKy@zLw@hKe@pHw@|Lq@~RoAx^uE`~A_IxnCaInmC_F~dBYjMGxBStQMrNElMC|RDxPT|OX~NZhNj@pMjArSjAxRrA~PnAlN|AfQlC~RbEtWfHdc@hLpi@`Iz\\tWnfAzEpRlRxw@|vAt{F|Ix_@xFdWdEvUjCrQrB`PpBzT`BxVn@jPX|OPpSO~T[lSq@bSgBfe@mDru@iWdvF{@~W{@f\\OdSQdQ@rS@lIj@jTRxK~AtYzAzShB|Q`DxSpF|YbEzQbFvRhF~PvJrWzG|OrHzNjIzNpIzNdJ~MtG|JzLvOrUlYneA`nAbhAbqAxf@tl@tOpRvKzNhKpNhMhShNrWrHrOnHlQ~ElNvFnQpFtR|DtRxCxPtNlkAzAtzAkKtxD}C~cAI~h@dAvt@nm@dcS^~OR|MFzPKnPQ~KWzIY~I_@jIq@vIo@nIy@xJgAfKeIno@gVfgBcW|kB}BlQkAzJuAtMu@vI_ArKq@tIg@~I]pH]`JYzJMzIEpMBnJB`ERzO^xMTdGz@dNdAfPdCxYfF~h@dRhiBf\\p}CjIdv@zMhoA`Fjg@~Mf`B|BpyAyHhqAoRfkAu`@hdA_tFxzKugFv|Jyl@rrAca@dtA{RdnAqItpAw@lzAvCt|Atm@pwQbRtdGlCrv@x@bRl@zKvAnRrA`QlBpQ~BlQfA~HtCpPtBdLhDhOtEzQnExOzE`OpGlQtE|L|CtHbHtOvHjPpY`m@hm@vnAzqAlnC`|@rhBfm@dnA|f@~cApb@t|@rlAvcCtItOxXlf@|u@jlAbaB`yBn{@rhArg@vp@xOlSlTj[zI`OxI|PdEnIfDbIxEtLbC~HdEdOvDtP`BhIlClQbC|Rz@lJhA~RXtHPbIDbHDzHCxHIdGUvIWjFg@|Ko@pLw@pKs@bG_F|^{aAzyF{DvUsCtRyJjy@yJblA{K~kA{NrhAkZzbB_jCjzLeVd}AgNzuA_\\vbFcK|lA_NfcAkc@jxCiIzhA{AnmAxCpvAnHzoD`Cd}Ab@vlAaAz`Cm@bnImB|{@uBx`A_OxgBsQh{AofAlrGcVjwAgXziAiHtZge@daBkbB|nF}Lbe@kEnQwE~SmE`UgCdOwCdSuBnQuCdZwAzRq@hK{@hP]rKWhKUlRI`S?pRPrOf@lQh@`Od@nKz@jMfAnOhBnRfBtOtIpu@pIls@`Hli@lG`h@~DvZzCtYpIdv@nCvShEjYpClPbDrQvChOzGpYvEjQnFrSpFfRzDzLdHbTfM|\\bJlWtGtSpHzVnHzW`Kfb@dGpWpFlXtE~WfDnTnC~SpBdTrMb_BzC~ZpCz[nB|SdC`StDfVrEfVjEpRlJj]tFvSbH`VdFvPhFlPxFfQvIdVhMvZjH|SpJdU~IhU~GfQdGrPjFfQtDrObDfPxEbWxDlWlSn{Av]pwCfCpRdEhZvDhXhCxRpBpQtAdQ~@hQh@pRVdTBfh@Kne@O`]Ej]JbSXhPb@pMt@hR^hIp@`LfAjPdBfRlDn]nDv[vDr\\hCrRhCbSnAfJrAxIjm@vpEpCnZrDd_@lBfTxA|SzA`UrAnVl@bN\\bJh@tMXrOTpSLn[JfUKjNQfIcA~R_BfVmC|[oAlLyBzPmE|YeE|U{D`RmDzOmHhZoUvz@yS|s@sItZex@fpCoLza@eBfGcOhh@oLbc@mFzTiHx[aGbZuDjUwBzNsCxVyBpWw@bMcAbUk@vTSxZFx[d@bYt@tRhA`WxHleAtQnrB`Jlv@t`@v~C|@jJjAtMd@`K\\lJTzQ?pPS~Oa@rOo@bQgAnVoAhQ}@hLu@jJkFze@wcA~iKoRbvBuNnyByM~aDoQrjEeChm@yH~jBmBxv@aA~`@o@|bBzDhoBvHj~AluAp`VxDpnANxu@q@vk@yBjk@yE|o@uG`m@gQvfAgoCb~MeX~xAoOfgAmLhgA_e@fhGiYzqD{KfsAuH`pAm@vm@fCzn@rFdj@lJ~d@tNre@rc@vaAnN`\\pF~MxEnMxEpNnDxMpCdMrC~MpB~NzB~PtAlRt@jOh@`TBvSK`Pq@zQy@dP{@zPuCp_@}Bl\\mNltBkJ~uAcUthDsFxeAyAj_A|Af~@`D|p@bF~e@`Hhe@xP`{@rv@~_Djh@bbCjYx{Az~AtrJ~Mzo@rRro@h_@d|@|Xfe@t[bb@zmDlzDpd@ll@lPzS~t@xlAxyC~|FvhAbxBpe@zaAvFvLzv@pwArgBdlDlRfe@tPph@xK|h@hGda@nEvh@rBvk@`@xyAhAf_BtJ|pA`YjvAfkA~aFdVzoAzDla@jChc@~@t`@Chf@oAlb@cD|c@aLneAsTnqBwChc@y@jUS|Zb@hW\\hO~@tPrC~Z|DzYvDxRdK`e@`yBvzIj^hgBnQplAnEdZpBzMj|@jcGdFp]jEbZnWxqBAzPbBxd@`@|f@B~d@y`@|}IkAfeBnAjpA|Yx_JpAxt@wAvu@kIp}@}QdjAk_Kf~d@u~@hhEkU~~AoE`hApBndAvz@hiKtHb|A?niBoDxhAmLv_ByTvpAkUriAqvJrf]wT~eAYpAuNbaAea@ryDkUxrD_Bzk@U||AjAd_C`DdvAlO`{@ri@hbBf`AnuBpn@baBnRfh@zQx`@~L`MpMnEvMgBzI_FfUy_@do@arApMiSdMaO~g@m[bd@_K`u@cK`e@cEhk@_Bfn@]|x@zCbqAxKh}@hKj}@bKxoA|ItrAvH~bBfN`zBhVn~Bd^zvAdPxdA`HnkApDzkAlAnaBeD~dA}FpiAgK|lAoQp_Bu[ttBal@lfD_bArnAqWfz@mMv~@kI~|@mExt@m@lrAhAtk@fCrf@rExrAzP|bAnTbt@fRd~A|h@vjCrbAnfAn[jnAhXx{Djn@jvAtWpuAt^jdBzm@fhFh`C|y@xYp_AlTx`AnQpm@nG|}@bGlhB`FhlAnEdmAxKtlA~Rd_FngAh`BfWzy@fHbj@\\j`@Zpn@{Bdw@uFbs@_HtgAuVl[{Hdo@iSttA}p@xj@e^hjA}z@fmEcyDt~AseAftAuq@|p@kUvc@_Mr`AoQbgAuM`rAuFblBaAjlBJz{AwCzxDqPzAGbx@~@vw@|Gfu@nP|}@r[|p@j^zo@fg@jc@la@vc@ji@~g@lv@njAxrB`m@t_Ab`@pj@nl@pu@pdAtlA`cBfkBbrAxbBffBtbCh~@fqAlwBznCpm@dq@zt@`o@bt@zk@`mA|u@||@zd@zv@zZhhAn^fs@|PvbAfQv`AlLx|Ep^`p@tHdj@bKdq@|Otp@vUlq@h[dl@~[lcAxo@|dAdw@liHlfFdy@hh@jtBllArmB~jAfMfJ|_Ajr@`y@xo@bgAf~@bkAhiA`h@`j@vj@lo@tR`VbqC`hDxiA~jAd}@px@luA`fA~UxObn@ja@jiArp@neArm@beA~o@~LdJh|@`r@hiAjjAfn@pr@fLbNlTzWhdAflAfq@~r@xq@zm@xs@nk@vy@xj@zn@b\\~T~Lf[dOrjAbe@jWxIlf@zQnxAd\\x~Dbq@zk@nLpa@nIbv@dWfl@vZf|@rn@zw@zs@ve@nk@r`@`j@pb@fu@zT|d@vQh`@zRjn@fUtx@f[nuAp[dtAlg@xwBlUr`AhIfZ|IbZp`@nrAps@rxBf]~eAxl@hyB~p@rjCdh@`pB~Rft@nWt{@vLf_@`\\naAjWtq@vf@xkArk@dpApX|i@np@nnA|Pf[fi@v|@rs@fgAbRlVrm@zx@pT`Xr]pd@`eAhgAbq@lp@no@zk@~R~Pnf@l`@l[dVtVtQ~UbQ`f@|Zzk@z]bYrPtVpMnq@~^hMbGnzAbs@~_@dQf~@z`@`{@|`@hsAdm@rkCjlAzaBnu@vqAdq@dp@jc@b_@`Z~a@xb@ld@~i@zVf]hd@dx@|V|g@r_@x~@zLx_@tXleAxPj|@hNn}@dOdfA~Llz@xI~l@fLrq@zPv`AxQlw@lQpk@hQlj@dT`l@jSfg@`Wnk@xd@`{@x_@`l@rj@fv@`f@|i@vl@rl@bc@v`@fg@d]dHzElk@xYnp@n\\po@vXt{@hZp~@~[lz@vX`fAr^js@zYtqAzi@dt@b^pmAjp@js@|b@zoAbx@`vBrzAdpB~_BpiAjdAxo@zn@x`AdcAdv@t{@vnAf|AxmBfnCp|@buA~^rn@lr@hoAfRp]xb@d{@vr@d{A|v@hhBhh@xrAbTtj@ls@`vBj^hjAv|@~`Dxz@ltDfzAzpHlVleA|CzMdPrr@dv@vlCbu@jzBp`At`CddAnxB`xAvjC``AjvAr}AjuBzuA|`BtZ`Z`wCjlCnjCv}BrpCzuCpvAxhBhgAp~ArbA`dB`x@nzAbkAtlCn}BfbGfhArfCzKrUfh@zfAxpAhuB|{@|gAdmBb}B~xAbsBrs@brAz}@xjBdaB|uDxw@lxAt_Ah{AfiAxuA`bBnpBntA~fBv}@z|Arw@veBdm@vbBp[xgArs@xsBzy@hkBx|@n~Av}@xnAvuAlzArhAt~@|qA`y@bbBtdAbi@rb@ze@rd@t_@jd@vp@zaApPvW|^tj@b]jh@h~@~kAdJbLdQvRdGxGta@`d@vf@be@xg@fc@~w@ln@~y@dk@pxAp`A`\\pV`kAbfAj[b^ft@f~@pr@fgAvkAzlBxvAvnBbZ`^`aAtjAhxAd|Afq@vaAjt@fzAl[ho@lXzd@jf@tv@nlBxfCzp@hrAjl@d{Ale@liBlk@hgB|o@t{A`{@rfB~Pzd@zUzs@rU`fAnXj~ArR~w@p^fgArm@`nAvu@nbAxaA~}@b}@be@tmA~`@bpApN~tAtEb`BxAjuBuDz|BkL~mAaQzgAoWnaAi\\bA]ffAgg@`zAc{@pq@i_@z~@k\\x_AwOjw@qFbhANz|@bHp{@rSttAp`@teBve@djAxXdxAzXtrApQzuBnNnnCvNjf@bGzKdB`^`Hl_AlYdcArf@tl@|c@pj@bi@|s@v|@nq@vx@pw@`r@p}@ji@lu@lYrfBtd@bwCxu@tv@bPbbA~M~jBjJfcAtElo@tHd~@fRzt@nYlt@x`@zx@bn@x`Ar}@lv@pv@~r@lh@pdArq@lnAvw@reCb_BftAdfAd|A|vA`uErbFzz@x{@f_Avy@vu@vg@v~@~i@ddAtg@hcA|]hcAxZj[nGhj@vKnzAhWvUnEdVjEngAvWfZxIbTfHxf@dPdMvEpgAff@xLjGxr@~Zt^jQta@dPfrB`n@lhBpZjcAtIbp@~Dxs@|BzvAfFzRn@|Vv@~p@bC`lCdKld@`Bve@~Ax_@pAdg@hBvcBjHhm@dAzo@zBnmAfExmArFz`@TlkBlH`xAdHdbAbI~fCjZ`bCf`@xzClr@fcDjbAdbIrwCdfEvlB`sC`uAnqCzxAtoBvhApt@`g@d}@d|@vq@|}@h]tb@nSxSfa@d\\`UnP|m@j\\f]lNl^lLb`@dHpa@nFb}ArPjYtEpa@fJtk@xTr^hQlGzCtUfNvi@~_@~QzQ`w@x_At_@ll@|KrOzh@px@vw@jgA~cAt{@tYlSld@fXj[rNp]|LzcA~Sr`AfG`s@\\jgAx@tfAtHhhAbUj_Ad_@hu@fa@|\\bXl\\pY`RjR`^jc@hn@xy@|FrI~a@~l@fYl`@rUxYnXbYhj@zd@zRpMph@n\\|PfKf{EdtChy@bh@ft@nk@dl@`o@jfBlsBjl@rl@lj@`c@rj@z`@xl@zYtgCffAl_Ah`@xh@lT|p@n]ft@xj@dt@~y@vfCl`Dp`CfdDnrApoBnRz\\pqB|gDlRj\\xi@n}@`aGrjKftFxsJ`Ura@pVda@n}@lyA|y@|hA~n@vs@b_@hYjh@nb@t|@jk@pdBj~@xuCxzAld@xUvc@jUnqAdr@hi@vYd]hR~\\hThc@h]b}@~r@|_@pa@nNpPzWp\\tj@~r@dN~PrUfLfGnDnFxEpd@nq@tZve@tNfs@rJtP~I`NbLzP~Ur_@xPhVtk@~u@tl@~s@nr@vq@ft@|o@`_Cj~A|s@pe@zZtQjy@lj@zQ~L~xDtaClkEjoCd^lXlk@vj@l~@fjAfg@z_A|l@vqArj@xeBjn@jbBr]nv@xg@rw@nm@lq@dn@`i@t{@lh@npAde@x`Brg@zbD`bAdc@nNfe@jPta@~Ol`@~Qdb@tTlZpQ~^bVjmBhpAdeD|{BnnDpaCh_Cx}A~fCt}A~~@hc@n}@tZziAtXleOxiC~sIvyArpCjd@dj@|JjvCtf@|yFz`ApSdDpm@zJxbAfQr`@nHb`@dIzQ~DfXfGxX~GpW`HtWpHdo@vR~aAv\\pVdJnj@zTlSnIzRtIfXzLfXnMvqChxAnqCzxAtrCjyAlkArm@jsBffArqBdeAnFpCpj@vYnd@t`@jChCnAnAtDdEpD~EtCjEjCpEvDdHtDjHdDzFhDbGhFtI`J|M`N~R`N`S~GpJjGzGpGrFdF~D|F`DvGzCrZnKpFnBlEx@bFv@zJh@|KiAxFmBlHcElDwC|DuEfDkFzC}GnBsGfByHr@mGReDPcDBiEC_GQqFc@qIYgHOyEQkEKiFEuGLmId@uHp@{Fv@uFnAeGnBgGlBqFjC}FxCwFnCeFrDiGbDsFfFuIjGmKbHqLxR{\\vN_VdIaPbMoYfQ{^xG_PvUgk@xSkg@fKoUtBsDxCmE|C_EhCuC~BaC|D{C`EsCdEcC`FeCbEuAjHaCfJ{CpOuElNuKvEgCdCgBhEcDbK}HpDqC~DmCzEuCzFwCjGkCbG{BnEsAbFoAdH}AhFy@fc@gLpd@eDbOeAjSoAtRBnSj@|e@`DrK]dWvA`S~@vOf@zEN~ENrUZbVN|UNfe@FzUTnUTnW[nOiAvKoA`^aMjU}IbDkAv[yI`_CeJbe@qBhm@uCfdEgSbg@eCdj@kCtTcA~AE|lAcGnTaA|]aBtuAaIrWy@lSHfBIrb@wBvKi@lPw@`AGbhAmF~\\kBrDMvWqCj_AcE~y@{Dt\\sAvS?zRnAzNzAdOxDpWfGjWfJtBt@tY~KvVvJpDvA`HxCpAl@lB|@xKfFr\\lLnHxApQnD|Aj@bEzBpBpAtAtA|@zA|@fCr@|HUtHpAbHhDzEbFhBdFWjEmCjCiFh@wCvFu@nKeBzKh@zp@l@xg@_Ere@wI`x@gUnPiGnN{IjGqEtKkKpAuAdAmAtAgBnTyZr@iAn@iAn@mA`A}BhFcPrLcm@|Fk^tCuQ`A{EjAsGNo@|Jei@`Ha]jAcD|@_BHKn@}@|@{@t@m@bA]tAO`AF~@RdNvEzF`BrStHbI`DzIjDfQnHbEvApDzAtn@ta@bq@j^ldBh}@za@~QxQjHhA^tFjB|R`H`VfHrj@|Mp^tGtEbA|Cn@b]lFb}@vOlk@~Jdd@~JxCdAxQzI|o@nX|CnB`MzHl`Adm@hf@h\\bAp@pJbHdEdDtTvQ~BfC~CzCpi@hl@jG|IvrAjlBzAlBbBjBhTxSjBdBj{@rs@tChCvHzG~ArAxCbCfCtBxApA|ClCpTnQfxAvkAzD`D~HpGh}AjpAvEzDf{AdnAnHjGjCrBvBtB`c@h^n`@da@fPpQpq@jx@lUvWnBzBbFzFpzAdbBl`@za@tXzZhHbIrJrKbLtMfPzQpIpJ`LjPlM|NnBxDhApErApD~AtCbK`MjGlGlBpB`D`FbA~AxH|PpKtPpG|PbSbl@tSvl@pI|TJrEfIhJ|AnC|D~GnWta@|HpLlDrLtDbAvK`QlGzKlBrD~HlPdD|H|BpFn[p{@`BrEnB`GzWxv@jG|QdChHzKh[nAlDp@`C`@dBtAnJvB`Nt@lE`ArG`DbTpAhIrOlbAdBfLPfAjG~a@bBxKlCfQ~@lGpD|UpCjRdFj\\hI|i@jCtPf@fDvIjk@hNl~@\\bCV`CLvB?hCCtBEhBSdBUdBi@lC{@nCiApCeA`BqA`BiAlAeBrAqAr@y@`@_Bj@iYrI[L_@PY^QXQd@Yt@O`BF`Bv@hFbAdN|D|TdF|\\BdCbAnFBVuCt@kJlDaAh@w@`A]x@Kj@GvAgEMsBKqLs@uCSaNo@gEWsD[oFg@oAIkOaAaa@iCkCQyIk@ee@wCoAIaXeBgBKc^}BsEy@MCq@K_BYkBUwDa@sEe@aRMuVO}LHsPrAiB^_VfFkB`@kWrFcD`AgBdAqEfCmAt@mKtGaHjE_OpIgPpI}J~D_@ScA]ci@yU{@_@{q@z]qBxC_Vp]sWb`@aBbCgBbV_NbM_ImZaKga@yHbMeAqCy@uBsAuCoBmCkCuBgDeAiDc@kCR_Dr@oJsTi@mAYkHoAuCyEyKqC|BqGnFq`Ahx@sa@j]kGfFsIhHsqAlgAmGbFuCdCcEnD{|@~t@k@d@gH`G{BjB{FzEam@hg@oK|IqHpI{B@gAl@aAf@}B`AuAf@wAPwAJ_CB_COqA}@uAq@yAe@{AY}AK_B?}AJ{AXyAd@wAp@qA|@cDp@}AZaBR}AJoBFsAE_BIq@OqAc@wAo@eDuCe[mQqH{Dmb@qTsKeFgM}FeToKch@_YeTaLeDcBok@qZyDqBiDiBqg@_XwEeCsUeLaNgHwLkGyFyC{CyAwp@o]eHoDuHwDgM{GmFuDqC}BmE_EoDcEgEaEiBqAgBg@oB[iBC_BVyA`@sGtCiEhBqCxAiA`@qDl@eCb@yb@xG{Fz@yB\\_C^}MtBcg@|HqEr@sFx@}m@hJsHhA}HjAon@jJgC^sAR{ATgC`@oRrCwZzE_En@oFv@sDl@cKn@wNTiLfAuaAvOae@~IoRtCg]lFg^nF}^~FwJmDgP~Cih@fHeL`DgE\\{@LyNrCuR~J}YvFeqBrYoH`A}El@}CXmDJqTeAmBA{BJoJdA{JpB{Ab@}Bx@kKfEu^zNs^zN_h@bUyInDsFxB{n@lXap@pXioBr|@qRvHgR~Ism@rXmHdD}\\dRmQvN_k@bm@eBT_CpAiRhOeB~@qQxS}DfEiRtQ_OjLiDp@mEm@kB}AqCoEuKaj@sFiWeAaE}AwEeDkJ}Occ@wNyWeS_|@sPyn@{\\y{AuHcd@sCoQiGad@iU_pBgYarCeD{^wBw[iJw|BEuDq@om@WmTAqj@t@g|@bAwnB~@_nBy@ggAw@wXgAqRkCw]mCiTaDmUoGe[wHcYeIsWmIaT}KaVkKeRoReZgOqRqg@ek@uy@ey@cYyTkWmQ_a@aUc`@sQsa@iNm^}JwW_Faa@mGqt@cLkb@uGmXcEwToDoNyBcFw@uKaBie@cEm`AcFoO{@gy@oDab@kC}k@sDwJi@mPy@wQ_AwZgBiw@oEkOYgr@x@q\\AuSOuFOqRuAiIq@oQyD{M}CkBu@s^wNqKiHqHyFwF_FeHoHuFqGkG{HoNeQqOcReRwUoq@_z@uq@wy@sXy[_Yq[{YoZcTeT{D{Dud@qb@c\\}XsQsNaKcIyUoQwJeH{PwL{ZuS_ReLkHqE{RkLyXyOqNwHcO{HenAao@_UoLkDeB_sFysCun@e\\_[gPurCkyAyqCwyAgrCexAcXkMkX}Leg@aT{j@wTkVaJobA_]ko@uRqWoHsWcH}X}GiXiGaR_Eg`@_I{`@yHkbAmQgcAwRy{L}rBsoCce@_tIuyA}dOuiCsiAsX{|@mZi_A}`@mfCm}AomByqAw`EomCcaEgpC}pAo|@}^uU_ZwPmc@yUo_@wQgc@yPgd@_P}c@oNccDcbA}_Bui@}oA}d@wz@yg@mm@kh@em@eq@kf@qu@m]ev@en@{aBwj@cfBem@grAkh@qaA{~@wjAin@sm@o\\aVokE{oC{xDuaCslAcy@c[qRis@}c@s~Ba~Aut@cm@ir@or@uk@ks@eh@{w@{N_V}IiRuTye@k[kt@sOyOo]qk@oNgWkIuS{UeVyiB}jB_QaQsa@ua@wdAkz@aVoQkzAs|@iQwImkA}m@qj@_Z_zDyrBcdBa~@m|@gk@gi@wb@a\\{W{o@us@uy@shAa}@uxAwUu`@yUcb@gtFysJgaGyjKqj@}}@sQy[qqBqiD{Ry[irAmoBw`CmdDegC}`Dst@oz@gu@qk@kq@y]wj@yUg~@}]ggCmgAgm@mXgi@}[wf@ac@cl@kl@efBisBql@mo@}t@_l@qy@kh@q~E_xCqRmLyf@kZkTsOch@oc@}XeYwn@{x@ezAssBw^yb@wReSs\\mYc]mWiu@cc@y_A}^yhA}U{gA}HohAu@ar@K}~@{GcdAeTc]qLm[cNsc@}WqXaUcbA}y@uw@ggAcj@cv@sKsPw_@ql@qv@{_AiTuTyi@ub@ix@oc@er@gW_e@_Ke\\aF}vAuOm_@cGy_@sIy^iKo]yL_m@w[wTiOe_@k[cTcUq\\cd@wm@uv@_y@sy@q_Aoo@w]ySsqA{s@cqCezAisCytAyfEekB{bI}wC_cDicAyzCcs@qcCoa@ufCaZ{aA}Hum@sDan@wCw^uA{uBwIy|@iE{cDgIs{@qFor@_Cel@iAc`@uAwe@_BgaAkDqiBcF_q@}BayByH_aAmDap@mDcbAgIkgAmPm_@_Iqh@{MghAy^EA{n@sWi}@ma@uWeLk`@qQs\\{NyMuF}KmEgi@}QuJuCu[eKifAiVsUwEgWwEgVeEw\\gG{n@uKig@}Js[iHk{@cVccAy]acAcg@s~@{i@gu@kg@}~@oy@kz@i{@cuEsbF}|AuwAotAkfA{eCi_BuoAuy@scAup@sr@yh@qu@mt@_aAy}@ey@kn@}u@wa@ku@wYa_AqRwo@wH{cAwEsjBiJwaA}M{u@{OcwCyu@}eBkd@}t@gYs|@wh@aw@sq@wp@}w@et@a}@ek@wi@}l@cd@sdAwi@eaAmYw^cH{IyAyg@yE{nC{NquBmNkrAoQmwAuXajAyXseBse@stAq`@_}@aTk}@cH_iAO{w@rFyaAhPi_Ap\\_r@r_@czAb{@_`Avc@eD|AicAb]ggAhWumA|Pu{BfLcuBrDu_ByA{tAsE}mAaNemAy`@_|@kd@eaAk}@}s@i`Aim@mmA_^{eA_Saw@yW_~AgV_iAeh@uyAe{@yfB{o@o{Awj@weBue@_jBak@o|AeZap@wWma@{kBuhCke@{u@kNsVue@__Ayu@{wAor@kcAc[}]a{@__A_}AqgBqvAqnBokAmlByr@ugAcu@c_Ak[a]yjAkiAkZkTo|AacAyx@uk@kv@al@}g@yc@af@oe@_b@}c@yHiIcQuRyFqGq}@elA{^ui@k[_f@yB_DoOaXmq@ybAuc@}f@gc@eb@uj@{b@qaBgeAarAgy@ehAi|@muAczAq|@imAs|@e~Amy@qjBms@msBs[{gAkm@ccBax@ofB_~@i}AguA_hBabBmpB}hAmuAe_AwzAww@exA}`BquD_~@_kB}s@wrAkyAosBkmBk}Bs{@qgAkpAstB_f@ybAqLeWeiA_hCq}BobGmkAemCgx@yzAi|@y}AinAyeBwwAulBcqCquCuiCe{BowC_oCk[w[etA}{Ak}AauBk_AmuA}wAqjC{cA_xBm`Am`Cut@iyBav@olCyOqq@mDgOeVydAgzAypH{z@utDy{@waDo]giAwt@_xB{S_k@ql@k{Asr@q`B}s@m{A{^cu@kU{b@mHyM_[ek@_n@ieAw|@iuAmnBuoCafCkyC}`A{bAwp@_p@yhAwcAqpB_`B{xBe}AyeCw{AabC}lAegCoeAm{FwtB}aBct@wuAm|@wDaC}oAikAgqAe_BacAyeBsl@qsAeu@qbCge@azBkdA}bHgk@u`CmOmc@w\\o|@qWui@sd@qv@mXu_@}d@sj@ua@y`@qa@_]so@{c@_qAop@}bB}u@wkCelAmtAun@kz@}_@}~@ua@}\\oOqzA{r@ef@_VwScLg]mQwZ_Rui@y\\og@y\\_ScNoU_Pgb@a]q`@g[uToRgo@_k@ew@kw@k]q^e_@kb@mq@sx@sm@_y@uT{Zmq@udA{^cm@oOyYg|@o}A_Xwi@wk@{nAm`@ubAw_@kbA{`@wkA{DqMuWe{@yRes@wh@ipBsp@okCqm@azBk]qfA{r@iwB}\\_gAuM{b@sJy\\wUy~@yf@iwBeYyuAw[ouAeUix@}Sko@cRec@kS_e@sd@iu@y`@kk@gg@il@ex@ws@m|@uo@{m@q[it@aVsd@}I_l@iMs~D_q@mxAs\\gi@iRmU_IuoAch@yYaOuNaIgn@k\\sx@qj@ms@kj@op@yl@er@ot@odAyjAkNkQmLoN}r@ay@klAykAgz@uq@{KaIwfAaq@mgAcn@mhAop@ufAys@srAucAq|@ww@siA}jAorCsiDeR}Tyj@oo@if@yg@slAokAifA}aA}y@op@oaAqo@sM_JgnB{kAosBilAgy@ci@shH{dFqdAcw@mdAep@km@k]sq@wZ{q@{Usr@aQaj@uJuo@kHe}Ek_@c_AyKybAyP_s@{PqgA}]uu@_[w}@wd@qkAsu@ss@qj@mt@{q@ul@mm@owBenCa~@spAcgBwdCaqAuaBacBwlB}eAilAsj@es@aa@ek@wl@g`AqjAsrB}i@gy@ub@_h@qd@mc@wp@_g@mr@__@m~@o\\ut@{Oqz@qH{n@_A{GKc}DrQwzAzCmlBWklB~@{rAtFmgApLiaAfSsc@lLoq@lUmuAfr@_`BbfAunEnyD}gA|y@ek@x\\we@vVy\\zNgO`Iem@pSy[`J{gAbUcs@fHg[jCihAjDybAw@_aAwGy`B{Ts~EagA{lA}RunAoKkkAuFaiBoEs}@uF}m@gHg`AiPo~@sUky@_YqgFi`CseBao@euA}]iwA{Wq{Dsn@cnAuW_fAo[kjCmaAg~Aei@gu@eSmbA}SitA_Reh@_Emp@qDimAc@mt@z@g~@xEs_AtIgz@nLqnAvWegDxaAcsBpj@c`Bh\\ylA|QyhApIgdAxFeaBbEskAa@ekA}DyeAwHkuAyPm~Bc]izB_VqbBcN_sAqHcoAwJ{}@kIy}@uK}qAeMe{@mCyk@Tkl@lBge@|D_v@hLkd@dJaw@jToi@lTaWdLw\\pEmJlBqTrAkUgBiSgHkNeKiL}NyJoM{|@odC{k@u|AwNow@aEac@w@ep@sBe_C`@shBpEgcAbPc_Cl`@a~Dv@aItOy`AbTsgAdvJwh]hV}hAbTiqAxN{}AjE_lAa@wiBkGk}Aoz@qhKmBwcAhCofAjTk~Ah~@agEf~Jq`e@`SgiAdJm~@vBsv@{@_v@{X_`JmCmoAhB{dBb^a~Il@mu@eCcpAyTkgBqG}f@gFc]wAcK{[kwB}`@emCoEoZ_QskAy\\}hBk{BkyI}Lsi@cH_c@eCiXsAaRu@oTUuf@n@e]`Fop@x[ctCzBwVjCy\\bB{j@\\a^u@}d@gDkl@aEm`@gUypAmjAscFiXkuAuKaoAaBw_Bc@stAyBwo@cFqh@yGke@{K_h@gPqh@wR_f@kgAczBoc@yz@kbBmaDs\\mq@idEsdIau@ykAcQiUsd@_n@{nDkwDk[ua@wXke@q]mx@cRgo@_Ngo@o~AuqJsZy~A}g@}`Ccw@o`DmP{y@cHce@sEie@gDup@qAq{@xAm`AzEgcAhTm`DxHiiAlTm_D|Bi]jByY`AgUb@sMToPFeRI_Q_@iJg@{IwCo[iDuT{CkR_EgQyE{PgGcQsFcO}Rad@sd@{dAsMwb@sIac@sFsg@aCao@f@cf@D{DrLwiB`b@coFfe@}dGlL_gArOigAbXmyAboCg}M`QgeA~G}o@vEcp@`Csl@x@yl@[}t@{D{nAesA{aVwI}}A{DynBtAcxB|@_cArH}eBnC_o@bKm`CpUioFxMuxB~PquB|w@u|H`MekA~Eeg@`C{Wt@mL|@yQp@kRf@{Kd@aQJuICaLKmOWwMq@sN_AqMkA{K_c@kdDiIyu@iIecA}Eoj@qEyl@mAyQw@eMs@}M_@_M_@{NSmJK{OAuRDwKNgMb@}Pd@cMv@gNr@yKvAoPpAcLnCmRpDoUhDoQxEwUnDiOlFkTjJy]tGqU~Vi}@n[sfAv_@orArIiZtSct@bKs^pJ}^lRcz@rCwOxCyRtCgTpBiPrBgTxAwQbAyNt@eM`@mKNuH@cRKw_@UyYo@{Vu@{WmBq^uDgm@uCe^uHcy@qm@coE{AiJiCmQmEs\\wCaWmC{UqDq]}CgZ}Bq_@cAuT_AsW_@}VCkPFmTR}i@H{r@?kUq@i`@y@aT_BaR}B_TaC}QeFe]cCiP}BgSkBeP]eDqRa_BwGkk@uCoUaGkb@gGcc@cDwScEsViDwOuEqRuFqQcJcWgVal@}IwSqLs[uHqScKsZ{IsX_G}RqF{RcHeWsFkSkEkRoDwQaDkRgCsQyByTeDk`@qHkz@wK_tAuSc}Am\\ivAqbA_zC_a@kbBeVw~Agk@yuE{H}p@oCcXyA_P_BaUgAwRs@uRa@cPOqWHgURiRj@mRj@mO`A{PnAoRdBaSfBmQtBgPzB}NtDoTjDiP|F}V~CiMbIqXd]wcAndA_tDbf@}`Bdb@cgBpVwvAngAwrGzRy{AxNeiBp@w\\bDu`B~AenILg`Cc@ymAgCg|AcIgrDeCutAzAklAfHahAdc@{xCtMecAvLkmAx\\_bFjMeuAxU}|AtiC_{LvZkdBtM{bAlI_y@zFos@`Hcu@hH{n@dDgVxIqd@x_AyrFjBiOnA_Lp@gIb@wG\\oHj@oL`@kJPwMD{JAyFCsGGoGOwFi@iM{@uNeA{LeAsHsDgWeCoMcDeN{DyNoDcL_EgLcFiL_EcIaGwK_EgHiD_GuEaH}Q}WoOcSu_@gg@wr@i~@wy@wfAga@gi@wYsa@qTq]ke@wv@oGiLgHsMsQ}\\{Uif@s|@miBueByoD_fBqpDwcCwfF{F}MaGiOkFcPwEcPkEaPmEyQyB{KeAsF{@sEiB{K_CmQsB_RaBqQo@}Iu@cMaAeP}@iU_aAkj[oDa}A^cyAxKi{ArWgvAbYe|@bQgd@zUel@`wHkaOvfDqxGv`@{eAlTelAxIqsA}AozA}LeoAuFqj@kNktA_PczAyNkvAoNiqAsNquAeDg]aBoRmAwQg@kI_@iK[yKOeJCkCGoFEyKFsKLwJ`@wM\\sKz@wOv@_Kp@eI`AiJv@sHz@kHnAmKdCcRzl@}nErBsNtCcTdAqJfAeKbAkMx@iM\\aF^mH`@mLH}FHeGLuJBaLAqKWuNUiLo]qmLaOiaFwAmn@Rag@lDakAdJirDqAa{AcJ{cAyXwqAme@oiA}o@a`AcfE_}Ems@_~@ag@yy@_a@_nAsUosAoD{hBrG_wAbDuu@fHk_BvN}zCbAaWj@kQ^eONqIH}JBcJAsIE}KQcK_@uL{@wQk@wIa@_Gu@uHu@cH_AwIiBeNmBmLgAwGkCqMkAqGqByIwIy^aMoh@gO}l@iGkWiUk_A_Muf@aa@kaBgEqQmOom@_Y_mAiNuu@}CqSyCyTeB}OkB}UoAoPiA}SaAsTi@wO]}LYePG}QC}K@qKJeRPoONoL?Y\\kOj@mRt\\ohLxA{d@fAa]~@sUv@uN`AyPt@qK~@cKpAyJpB}OvBoOtAuIpB}K~CwO~D{Q~EaR~EmQtGoTxLe^rG{RdJoXdKk[zIuXrHmWrIoZvGiWvEuSbDuNzD_RxCwOzBwLzAcJrAuIdBkL~AsKpCeSbDqXxB}RpBiSpByU~AaUjAeSrBs`@|@{W~@m[PuNJmJ_@_w@?w_@IoUMuN[{K{@o^m@oMi@sLo@qLoAeRoBiXmAqO{AePeCcT}BwRaCoP{A_LqCcS_D{QqC}O{CyPoDcRsG_\\cF_ViLsi@mK}g@wS}bAeVqiAwQa{@gIg`@{EaUqx@ayDiEsSqEoTiFeWkEsTcGm[sDoR{DqSaEeVg_@}vB}Xw~Am[ygBsq@ozD{Oa~@wd@_kCiQ_cAwEoWuCqOwCkPqCuNmFmXkCmLkEeR}CkLqEiPmF_RsF}PiFwO{FwOeGmOiFmMmIcRkIaQkIgPqGsLiGmKaJsOuFmIwIeM{GyJsFmH_FsGsMwOsv@s|@ca@{d@_PmQyS{Uqr@uw@ge@}h@m\\s_@}[g_@_PiRuPkSuQ_U{OaSkOaScOqRcOiSwNiSwKmO}QyWwc@up@imAalBsa@_o@ySy[oPmW{Vi`@qSw[}K{PaSuZwVi`@mTe]_MqS{DyG}Se_@mNgX_MsWwGeOeKkV_FaMgGsPiGmPiHoT{FcRqGkTiEaPkDwMgDcNkE_RkHe]sHqa@aGs_@yEy\\iEg^kDi]mBaUgByV_BuVkAeR}@uUwAc^o@iSSmMEiPJiQBsXD{SV{ZXqTdAug@pA}b@h@{Tb@c\\h@kZTwTLuRAyTSeTQkJ]_Ks@_Pm@mO{@uPoAmQwB{SwBeSaCcPkEkU}DkSsDiP{EcRqJq\\_Rsl@}Sin@mJsYmGgTyDaNkEmP{DaQiEaS{CmQmB_LiC{QqBwPqA_NsAcRu@wMm@uLk@ePc@wOWeOm@}b@w@ik@m@y_@_@wQg@aRa@yLq@oMs@cMeA_T}AcTuByQkBkP{BiQsCuO}CoNoE{QoEoOyHkVoEaNyEqMgFaNaFcL}EgJ}Mm[kR}c@kMq[wLk[aIqUgGoSuIm[aHw[yE{VeDcTuCiTcBoQiCeXmAePeCin@{@ch@@sz@~BkaCUil@_B_e@yCok@uJyx@mHid@yJie@g`@gmAem@u{Ac`@wu@}Qam@uNge@eIkYmHsYaFkW{Lor@kFy[mFia@cF}b@sGep@iE{i@_Hg~@mEcr@}OogB{Gcj@{Fuc@qGsc@qGw`@aJ_g@gJ{d@qTs_AiPov@oe@{yAwJwZyx@omCie@wmBei@whCq]ubC}Tk`CyLo{BeGyiC^{uB\\gd@r@ya@~@mc@lAw`@nBoh@jDqq@dDyg@~Cea@zDcd@fKodAtHeq@h{BcrRHs@lH}q@~Daf@fAyQj@mNd@wM^mOR{[Oa[i@uUgAqYcBmU_BkPuDsZiDcUsEsVqHy[yGcV_IsU_J}U{JqUyKcToZeg@g]_f@arBqoCwv@mdAc[{b@wVw]iVc_@c_@_r@wQub@_W{p@af@m|AkzCetKiJi^gGcYqDsRcDcTkC}SkBiRyAwRcAmSq@qQ[aRKkTNyS^uSl@{RfAcSfBsVvCmXdH}e@rLwo@dk@wuCfIyc@vFq_@xDm\\lC}ZrA}Wx@qVZ}YIo]u@{[y@iToAuRsBeW{BeSkCmReFgYmIg_@}K}]oKkZ_Nu\\oNa[ex@{`Bgu@m_BkK{U_JqTkIoTeJuXiJs[qHaZsHc]_Gi[sEqZ{Dg[cDk\\iCs[wDqo@wCuk@s@qMyAsZ]gHa@eHk@aIm@sIm@eIo@yHo@_Iw@{Iq@{G{@cIaAcIoA}JgAwHiAqHeAgHyAkIsA}HyA{HyAmHcB}HcBoH_BwGqB}HgBiHmB_HuBgHyBqHuB}G}BmH}B{G{BuGcCiH_CwGcCyGaGkP}F_PuCyHaC}GyBiGaC_HyBeGeCiH{BaHwBwG{BcHwBaHaCsHqB_HuBqHoB_HkBiHoB_IcBcH_BgH_BuH_B{HyAyHwAmHsAyHoAoHoA{HiA}HeAkHeAqI_A}HwAwMmDm`@iCe`@aBe_@{@c[k@q^C{[JaXb@sYbAe]`Bu]nB{ZpCq[te@wrD~LsdAlJudA`Dmj@jBce@pBc|@|AwhApBkpAvJezGjAgv@r@um@Zi]Lm]I_UWoRa@wSu@eScAaSmBeZiBqTcCaUkDiZsEa[oGy_@{Mqw@iNix@mQicAgIoe@aQ}aAgL}p@kOsz@wG_\\yC_NmFiTuEuPuFcQ_GwQwFcOyFuNiDwHsKcU}GaN{HoNwH}LyIyMkIqLuJeMmJ_L_K}KcLoL_LiKoHgGaJkHwHgG{ViQq^mVcaH{pEqeDs{B}~@_}@iWa^u\\eo@ae@sxAcd@}tCsLyr@sQas@eTkm@kXyh@sSa\\cXi]eSoSyc@{]yaAiu@u~@{w@yd@mi@}P{NeQaTs_@gc@kaBolBmHiIej@ik@q{@yj@waA}_@o[uIa_@{DuRw@wlAkB_`BoBcvA{Aqv@oE_V}CaVuEsToFgr@eXat@kd@{X_VaTwUil@sw@aeB}uC{Xad@}t@_eAii@of@eDgDaP{Ma~@}m@kfBijAwh@g^ypBsqA}i@ma@o_DgxBa~@{n@k{@_k@q^sOu_@uPo\\mKe_@iF{p@oGo`@uD{gCsTe|@aHcsAcM_k@iI_b@yJu`A{c@u_Bk}@yiAyo@qo@c_@ouA}u@sc@_Tgd@{PqlA{]{gAqTaaAuFefAoBqlC`Fsd@X{GDwX[cPcAsP{AuQgC_PcCoL{BqLsCiI{BiHoBiLiD_N{EeMaFoMmF}M}GaYsOgMcI_OaK}O{L}KiJkLsKmJmJgKuK_KsLuHeJuKqNqI_Ms_Au|Aac@wr@es@k`AuZa\\uSiU_r@ko@{{@qn@yc@oWcj@mXst@_YgBq@ew@uU}eAwQ_lAeLy~CwGm{@oGeb@_G_g@wKgx@wUy|@aa@mt@se@ylCawBa`Agi@_kAab@{u@kPov@kIsbA}BgtLpPodAiC}z@mJofAqTct@aWor@q\\ij@_^}RiO{c@m^qh@ok@yLiOsJuMcIaLQWcIsLaKiPqLuS_NoWeIqOmEcKiHkPaGaOkGiPwGwQ_F}OuIwY{HwYeDuNaFaUsDwQoGa]kM_u@gO_`A{jB_eL{DiU_FcYgDoQeDcQcEcQ{EmQgB{FeCeHoCmHcCgGgC_GeCuFiD}G{CiF}CmFcDgFeDaFcEsFgIaKaEsEgEiE_FuEmDcDoEuDqFaE_LoH_FwCkKqFuG{CiFsBuE_BuFiBmFyAeFmAoEaAaF}@uF_AqFs@gFc@wFe@oF[}FSoFSwFGoGIoGAgN?eMAwMAuNEuNM_HK_EMgOc@mNs@uMaAcNsAwNeBcNkBsM}BgMyBiHwAwTmE{UyEiM}BcM_CyHeAiM_By`AcD}gBpPwx@tDsi@_Dwe@qOkW{KkUcPuS}QwRmV{MgTmOy[aLo^_Ju_@wDgWyBmTkCgk@p@cv@~F{p@bFeWtZ}eBvDwYhE{d@nDu}@\\}g@uAmo@iB_\\sF{l@cPsdAeMkd@aKg[gb@k_AuZah@oc@we@qSgT{`@{Ui[cRaUgIye@oOy}@qOkr@c@mjBbGkb@pBk`AzAoILycAqBshAeKeeAmRs`A{Xk_Aw`@gcAcj@elC}`Bsv@ia@{u@m\\{y@eYehEecAsxAsf@i{@gb@ou@wf@q_@yYwh@cf@_g@ae@u{Ei{EgwBmyB_nA}zAsj@olAk\\yrAwMex@oGyk@cQwzBcwAwkSuF_s@sHiu@_Jsr@uJcl@eZqxA{nMs_d@{h@{}Aqv@auAws@y}@cQaTkc@ig@ojKatL}i@sp@_g@yt@wc@q{@}]ybAyUs}@cOk{@qLkeAiKklBqLgjBeSgnBqZogBkd@yhBwj@y}AuUwg@qHeO{pAqtCoMgYa|AueD{{@snBsq@{qAmx@}kAcw@s_AiuCuiCecA}eAyr@_cAqs@moAgo@goAyr@igAa{@ocA{}@iw@ECypBmlAmfA}o@g_Aky@uu@g{@mn@q_Acl@ylAklBuoEsrBsuE}s@ecBaYck@qO_ZgSk]wFcKwPmY_c@kr@wRoYid@un@yQgViUgYwZe^yLoNko@wt@c`Awz@ojAq`AinA_y@ejA_t@gkAqm@onAqh@qz@w\\ck@mSo_Bqp@}l@eXio@_ZwCsAirBieAwmAyw@qgCcaBahAss@kxAibAis@yd@oqBqrAcs@ii@ag@ec@wh@wd@_^a[wu@{w@er@kw@umBqcCq~@ohA_bA}nAkqComD{}Cm{DsvAseB{}GyqIcc@od@meA_fAcj@gf@ac@}_@clAa|@meFmcDygAcy@y{@kw@idAssAe`Au|Amj@olAgc@ckAia@{sA{[auA_jAg`GsI_]o`@}sAg\\yu@__@wp@cj@or@gf@{h@mv@cn@uL_Hcp@i\\_oBir@ulBos@uZgLozAyj@uxHysC}qDmsAa~EiiBceGe`Cm{HukDskAab@mnAeZunA_RusGmx@gqBaT}q@yJ}}@oOkc@{HwKwBsxBy_@qkCge@_oBi]efB_[apAkW}j@_O}e@kPul@wVyZsOcy@og@y|@_l@miH}{Ewa@{S_j@uTuXoIqDiA}f@yJga@yFcs@}DuuAo@ooCn@m{CAeOe@yIYeZ{BoVeDa`@_Io_@qMkv@gb@{k@}a@ge@}g@mNmRik@_~@_s@clAmr@cbAex@wv@ciAgv@cbLguFix@sc@wiSqeMauA}n@adAkViiAgMqqEgTmdDgRgiAs@agAdDwfAvHgdAhO}aArTshFz_B}cAzRqlAlH_dWnj@{rH~PuTjBkx@|G_lAzNyEv@{TxCc\\fFkcCtb@oqEf{@scApO{fArNqjAdImeLjh@cwAdKu}AxW_eAl[yxE|mB_}@jXacAzW}kAfLkdA?kiAgJ{fGwl@eeAyE{aAjBuqAnQwaBx`@icBfa@ihArUgxAxWge@bFc{@|IkuBjUg|AxO{eCnSkNlA{wFzk@cnAdPajA|Y{~@j`@E@wNfHmSlLo[jSc`GjtDuaAvd@ibAb^{cAvVqgAtOocPfyAsoA`Va{Afh@opFfpCa_@pPs\\`KgZzFeYlByS@mOo@we@eHyYaI}`@{Tc]{W_`AiaA}|Ae}AoEyD{a@ab@c_AqhAuSkb@qOc_@uPqk@ofAweEuRwn@sSkd@yYia@}VyV{MkJmVcN}QwGeLiDqV}DaSmA{Ue@{UdBkRrBmU~FeT|I{Q`KyPvLyd@~e@qLlRaSt\\_n@tpA{\\rr@cKpQ_I|MeKxNoNvPoO|N}MzJ_RtKkVzJ_Bl@uPlD_Q|C{Ov@eTRuLOeMmAyZeFwSyH_OwGkMiHiCsB}_@c^yX_]qOgUi_@ke@a\\_ZaEyCqYqQiImDmJwD}~@w]ixAo`@aLgCcQiCcWwDe^oCmdAwHg}@eKcd@gHqTmEuDs@uB_@kcB}IgMJyMrAiNxD_LhEkLdGwdTviJkwAf_As^xTe`@nRgOrFsZ|Huc@rGqv@jEwaBjDuh@hBw\\lCcgAdXmrE~yA_RzEgu@xQ}w@~I}i@nBqVF}Wo@uhAoEgcAcGum@_GaJkAyRqCa~@aPu`@mKcb@iJmTiFg|Aq[y`@{Emf@wC{aAnJmlA|[udEboAgvAnc@gaAl^idAlg@{bHl}Dyc@jRk_@pL{_@|Hmi@`Gaf@tA{`@WefAuBgyByFmdDwH_aC_GalAkEis@qGuY}Dql@{Kc_@}J{h@oO{WgK{bFytBk}Aok@uOwFyo@oUu}@mV{v@}LsJyAu`AmGofAb@gfA|Iug@~IuKjBoPvC}aAd`@}~@te@}^jVyUhR}VrSiVdUu_@~_@me@rg@gq@t}@{BbD}qBniD}[v`@mT`Uu]rXs^jSa_@xPe`@|Lk`@nFm`@~D_fAPkb@qFsa@qJg}@e^{cAun@s_Aui@{PuFwPqFmKiDcUoHcdA}IcdAdC}dAfScdArd@ux@po@qs@ns@yw@~n@o{@lb@igA~Ukc@hBad@H{`A_FolAsMkeA{FidAu@{iAfCgbBtIwgAb@idAyCwdA_Mgc@_HmK_CqMcDcRcFuR}FaW_JeNkFa[yMwOwHeRyJod@kXci@}^mKqIqNiLmKeJsYmXaUmUuZyYcUyUic@{b@gYaVkk@{c@go@gb@wkAap@oiAee@cnA}_@}^iLki@sPwXwI}aAwe@y`Aes@{Q}Qod@od@kq@u{@el@{kAsf@izAiZouAoS_vAit@g`I{Pe|AmVs}AgYgaBe[_xA{\\ktAqSir@ggAkbDgb@ggAgn@{rA}m@ylAmn@ieAcv@qfAys@}`Amx@cdAgyAgcBeXa[sr@ix@slIgfJ_u@}y@_r@}_AmOkWkuAmiCaj@qsAsc@cuAmuB}vHwuA}fFotAufFk_@{qAah@gxAym@asAsw@ouAo|@soAs{@qaAo|TavTuaAynA_|@izAcjAsbD{nDsnMue@qrAgo@{qAeq@g`Acx@}|@uz@}r@go@u^qGsDgbA}^{fAs[}gAiM}~@}DoKe@whAnGwUzBcm@|F{@H}bFrp@m_AhJgkAtBq~@iCklAkOqdAeWi@MqdAic@wlA{v@glAmkAgw@whAms@qzA_HuOaXcr@qWw_AyNmw@cIy`@og@{mC_Ica@mOuo@wSgx@wU{y@o}DqvL_p@egBk|@khBw{EafIsFqJg_AokBou@{`Bcr@e~Ai{FooNwMi\\kWkr@o`AorCqo@s{Bae@oeBsh@kwAeq@euA_c@co@af@_n@yi@qh@oi@qc@iq@qb@}m@g[qp@iVox@{SeaAsOqgEy_@chBeRes@iLakC_e@}eAkVav@yRsbAsYylAc_@}p@uV_bA_b@gNoH}GuCog@aWerEenB}bCa|@afD{cAex@uYciAud@u~@kc@}nAym@ajAyo@{CeBinAqu@qlD{|Bi_EijCco@}\\_q@mTw{@gNsdAoCuxAeBah@m@wt@cDgp@aIeg@mKub@oRcb@uWwb@y`@s[y^yUy]{Tee@uWgo@oh@ibBik@efBs[}y@i]cw@ga@ov@ib@kp@ee@am@aw@aw@it@gj@{t@{b@ky@{]_{@gXaaA}Pa_Dwe@ml@kP{k@mUui@yX{y@ai@cnAit@cn@yX}p@{TohCit@}p@{Tyo@uWgo@w\\_m@ea@ej@oc@uw@sr@wj@gf@_m@}b@ml@s[ar@qVws@kPim@kFk^eAi[MayA]ig@}BkZyCa\\oIa_@iJml@uWuo@cb@ka@oa@kX_]kZwe@wZkp@ce@unAcYas@oZwq@e\\cm@{d@mo@qg@wh@qk@gd@yPuLa[mSsr@yX}lC}q@_dCis@sk@uRqYmNaUuMga@wVuYmRwn@q^{i@gX]Qgt@_Vmu@aRsr@{Ka{@{FseDc@}~@sDky@{Ksr@{Ogf@oQ{k@}Ymg@w\\{yAueAok@oYuUkKwToIoc@{M{NqDaKoB}IsAcW{DuN}A{NkAcUiA{MWeMCcJCiQNwKJo_@J_TNaPLuM?mOGsNY_O[cOo@gNi@yIq@oR_B}OwAmOgB}QoCcPoCePyCaNwC_NuCgMkDeN}DgN{DsUuHeXoKaS_IqSkJuSqK_cDkiBqKeFmL{F_QsHkTgJcVyIqQ}GcOyEqP{E_SoF_RqE{UqF}LkC_~@uQqAY{Z_HkReEcSmFwOiE}NmE{GaCoMwEqKuDuHuC{LcF}aAid@q_A{k@cw@_m@ov@mu@ejCs|Cyo@qh@go@y]_dAa[ceAwSyx@kY{k@w\\mu@ai@cfGc|Dkp@oZun@eSikAkYge@mM{KsEmIaEuK{FuFkDuIgFoJ}GiRkOmLaL_JeJcKoLYa@wL}OoKgOwGqJqKsPgFcIgC}DuMcTgIuMkU}^m`@oi@_[c[w\\{Tem@cYwRiKsM{FwMaF_JcDuL}DsPaFaPcE{W}FgJsBqSeEcIaBeMeC}WsFo[oHqlC}r@kY}Ise@oOqrAkc@{[_Lwr@uUae@qPwIoDcn@oYmb@wYsd@c`@ga@we@c\\{b@w\\ai@eLsPgQyUi]ai@gf@qm@ar@s{@es@q{@oJqLerAauAwe@wc@qoB{iBo_Aiz@ql@gb@wp@a\\ao@uUwx@qN_}@aGgnEcHyi@cCku@mGwlAqOif@mJopAiXyj@sLax@yOik@oGin@qBaGSci@j@_n@hG_n@~NkSvFceBrk@{l@zLm^lG}g@zFwj@P}g@kBen@iF_m@sI_m@yJit@sIot@sFyp@aAau@bDan@|Ewn@rMeV`Gc^bJih@hNax@fR_QlByk@zCmh@A{c@}Bsm@mHsz@yV}h@qWga@qXuTwQk`@gb@q_@qg@m\\}j@u|@gfByc@_{@ek@_gAwT_q@qRex@cNs_AsFef@_U_qEcb@amJcEcz@{Hc|@wL{w@yRo{@oXow@eXat@kZqv@cUmz@eQe_AwHqy@kDcd@ee@wkGwJ_|@}M_{@oPor@eT_v@aj@alBe]wpA_Ryz@uKmx@iHsy@odBo~\\a@yHkHky@sMqy@sQar@gWst@kYwm@ukIo}N_c@}p@}a@gn@}{BuoDe\\mo@oYom@}Wso@qVyx@gRm}@oSe_AqWedAwYcs@q_@ip@s_@{c@w_@y_@scBuzAsd@wg@g_@uj@}[wq@wUyw@cQq~@gIg_AmCscAmGepRcC{}@mEs`AkIk`AgHuu@{lAu|IwGqv@kCey@^}`AtEiaApaA_iKvHg|@rEg_An@a{@gAacAsJknAgQ_dAaPqx@}xDg}P_Lks@{H_w@kF}}@y@o_@k@ka@h@q}@fDugAlNmnD|JyiCdAuZjI{wB`J_bCfpA}c[bBi_A`Ayy@}Cq`A_Jsx@}jAu~IwEev@wDqw@O{w@rB{w@zMkxClN{|CzDobApFwqA^{bAiCa_AyF}gAmHmlAsI{nAmM_aBaHuaAoIg_AyN}s@{Qcr@mWas@oZes@qYqp@iwCy{GeY_t@aQ{s@}Oc|@kHmu@_D_}@_Ao|@hBe`AjDws@t`BepPzP_cCfFmt@xj@esI`IajAvFkcAzFg|@|I}}@jMwnApJov@d\\y}BvkByhMhLa{@jHy~@nEmcAhAmkAgJyxH{A_iBK}YUyaE\\}aG|@uzD_Agn@}@qUqAuUsEwg@oJ{r@gNyp@eViu@oaA_mCqTev@aOm{@}Fwy@sBe|@{@ycBxAkjDg@u_AqDcx@}Lqv@_Lyk@q_CwpHuSk{@sImk@wHyk@kq@{|ImJqoAwJcnAyEeeAg@u_ApY}}Jc@ueAyCww@iMy|@_Neq@os@kkCcP_t@wLabAsDmaAUgf@XkZ`Fm_AjIefAxPstB|@_w@c@k~@{Dik@aE{b@aMyz@yMol@gl@_sBsV_w@kPat@gK{p@gJay@k_AexRof@wvJ{e@u|Jij@okJq[stG_KmnCqBer@wBwaAm@oY[_e@Kqh@X{c@ZoWv@mi@x@{f@dAa^pBqi@b@aHlGesAjFkt@fHys@lFwh@vFoe@pKky@x_AshFtcB{eInj@ciCpS{{@lEoStKu^nO{b@fSsh@jJ}RpV}d@xLkTde@kr@dc@}h@d`@s_@`u@gm@r_@_Wtq@a\\x[gMxT{HfHeCd`@gLnp@wLno@}IlmAeNtu@}Kz[iFtZsGnw@{Vjm@kW~t@_d@pf@o_@dXaVdVcTpJuKxZq]tf@sn@lf@kv@f`@at@|[uv@Pc@hDgIdVus@zT{v@z[{vAnP{hAZuDdKgoA~C{j@tD}zAlAmfB~BurAd@{XdCu|@nBcd@vBkZhDwg@pFqp@jG{g@`Le{@hKcq@`Lkr@d@}BbMom@jNcn@lR_s@tUiv@``@ueApYar@p_@{}@rS{h@jc@{iAn^aoAlNoo@tL}i@|Ei[pIkr@vHocAnCgv@jA_e@`@akA?_MqAe|D_B{tDkAeoD_AskCcA}_Cw@i}Bu@scCq@gqA_@cpA]_lAs@qmAu@wlBqAoeAcBahA}Bc~@{C}dAwNg_D_MafCiSaeEgNkoCkRm{DwHueBcCmp@mByq@i@aLmEstBuFchC}NarGoJ_nE}A{_Ac@ix@Bkk@n@qt@zBygAx@y]rDmzAn@kl@Kyu@qAor@wDot@{Cg]aF_d@wGgc@oNou@_P_q@yRmr@}Z}eAiU}{@{N}n@wHia@}Fs_@{Gmk@gEmd@yCil@mBiq@M}r@`Byx@~Bgd@jEao@jIex@~T}dBfXmsBv^mqCn\\cmCdKg~@vKqgAlJwoATwCfHgnAdGa~ApCirAdAueBi@miA_BgnAkCaaAqFgvAgKwiBoMorBaf@_dHaMukBsOyuBe[avEe`@otFoCcd@yo@klJm^aoFsNs`CkE_bA{Bgn@oBss@gEwiBcAa}A[k~A~@y|DnAqfEl@kiBTkj@|A_n@|@q^vCec@rC{]rCeZ~Eu^bHq`@pLuk@~L{d@|FaR~IyYtw@q_CxiAkgDrPse@lJcTnZmq@`Vma@zQ}XnNuQv[i_@vYc\\|\\y^bYk[|Ym^zYmb@pUi_@~Uoe@tRqc@zQwf@dLy`@lLce@lKye@jKwk@tl@mdEto@wqE`cBulLp@yEpz@_aG|y@a|F|v@uqFb[awBz[y|BlNegA|Ci^~Bud@zAsh@d@uj@}@ao@yCws@oB}Y_DuZwH{m@aL{p@ik@ajDu`@y`Cqn@sqDc@cCal@mlDk_AcsFe|@ckFm[gjB_Lsl@yM{o@uIu_@kDqMeMoe@oRsn@gRcn@sj@{}AyaBsvEkyByhGqb@ikA_T}f@qTqe@mO_ZuMeW}|A{kCysAq|BiaAmbBk_Ac`B}Rg[cR_YoMiO{M_PwSgSeLwJkXsSca@sVkTiKch@eScb@aMmp@sQwa@}HqYsEy`@cGi\\_Es[_Cc[sB}`@iBs`@c@cZ[sVPk[l@mVv@}x@`FmaBdLmfBvLoSxAk^hCw}@rGa[hB}YXsZK_UeAuZgC__@kFc\\uHaUoGqS_IsPyGeU{KyQuKgh@_^}]iYe[cXm_@__@aXsYyXo\\{ToYgXa`@yWaa@iW}b@yT{a@cP}\\wPq^mXip@iOeb@aO_d@i]}iAsDuM{Tuw@sSeo@kPqb@gMmY_Rq\\iVc^qWyZkUaTwSkQcUuNy[kQ{e@mRib@mNcw@gUeXyJgUeJk_@}QoZmRi[iUqXqVm`@gb@}^cf@aXec@kMoVcN{X_Tuh@_Rwj@qPgp@aI{_@eH}b@cJos@kY_uCgTwtBeJa|@{CsX}Dw[wGi^}Hu`@gMwf@oPcg@}Mw^oZap@kn@kiAmfA{oBe|C_xFaq@{mAu`@st@}]gs@kReb@sPk]iSee@iWip@gXcs@uf@qxAgb@}sAka@}oAwMi^oOy`@aQu^kRg^oOuW_OqUcR}Woc@mi@cj@kl@gZm\\}Wo[eWu]wT{]mMyU{KyTeLeVqMy[{Pge@oO_j@oN{j@oKki@aKgs@{Hat@aJqcAsIi|@eIai@{Jsf@uKid@aJgZgOsb@sRgd@kMcWmOmXmNuToO{S}MwPaOkP{RwRsUiS_}@uq@_oAw`A_oA_aAs_A_u@soFyaEou@}h@wq@gb@uWkOmZgPiu@e_@yZwNa\\wMcn@aVag@yPai@gPas@gR}lAeXcjAeUaqA}V}~@qSkc@qLeo@gR_m@kSce@mQyg@{TofAgi@c]_RetCepB{bAex@u`C{lBofAu{@}fAi|@mp@kh@wq@kl@kX{VaUmVeQcSmRqViTyYcR{XoXac@wTkc@cQ}\\wVgk@{]y`AgP}h@uLad@{Jeb@uJye@wLmq@}Fyb@mG{f@aI}x@yFwo@kUyeCaSmtBmEgg@kJgq@mLyl@gMeg@uJ_\\yMs_@sO{_@kS}a@iVya@ec@ul@_\\e^oYsWw`@{Y_\\kR_a@}RupA}j@{zCcsA}oDi~AkqDe_Bqs@_\\_a@cS_YgQ}ZwUyZyYuNwN_RmU_[qc@{_@am@ioB_zCm_IqxLu~ByoDwHcMexDo~FwwE}iHewEyiHiqEsaHksCemEe^wj@{`@ms@mUef@sU_m@yR}j@qSgt@oHq[uHw]cOoz@kPcmAyOuuAwKez@sK_n@oMyq@cQoq@_Xa{@mOia@eSie@wS_c@sXsh@uq@qjA}p@glAyr@msA{xDqbImB_E{aEutIunCuzFgrC{`G}yBgvEoaAasBaZqo@sZeu@wSqi@sUgu@qVo|@wLgg@qB}IeNsr@yMox@cKos@yFof@oIy`A_Faq@eN{rBoNsjByIoaAeMwiA}Do[yK_y@oPubA_Jwh@iLml@uKyg@eW_hAuYchAgOyg@mPkh@{T}q@}Vmr@kSai@wTgi@_gAqhCgx@{lBgi@kvAqb@knA{Vkw@eW}{@{YehAgVwcAiSa`AiUimAeW}}AsOegAgL{~@uOwxAyIg_Au`@irEyS{nBoH}r@aKow@{J_r@uNg}@y\\mmBkVkhAk[arA_\\wlAsf@{bBiPse@_c@iqAmx@wbCiZ{`AuFwQmPyi@qQcp@cReu@iT_|@{R_~@q[geBqNkz@{OaiAiQyvA_LkbAsJi_A{Ie{@mP}{AoPawAmRotA}QaiAaXguAsS}}@sPms@wWq_Aq`@ipA}Tqo@}Q{g@}Tgk@qTyh@oUwg@_h@efAii@yaAw`@sq@sd@it@euAmvBq^qk@k_@ao@qj@icAcY{j@sYmm@aj@esAue@urAk]egA_Omg@mOmm@cRqt@yQ{x@iUymA_Na}@uPclAaM{iAgMatAwWehDoYipDkUe{C}c@q_Gie@grG_Nk|ByImnCwDkcAwA}iAsBapCNukBlA_qBhF}zC~@wg@pC_fBpBikBo@mqA?O{CetAcGgmAwFax@eHcu@}Iaw@eFy_@uNs|@uWeqAm\\uuAuHa[cn@uaCsm@ubCyz@ifDubAm|D}{@cmDwx@u{Cc]emAa`@qpAqLe_@cNoa@q\\m_AeTsl@u`@oaA{d@{iA}[mr@okCuwFmWgj@ibA_vBa|BkzEmlDmoH_dCeiFaHqOad@{~@se@_gA_c@kfAce@ykAgn@qeBsh@_aBco@uxB}nAcjE}qAwqE{`Dw{Ki_DywKqpAgnEgnAoiE{Va{@cScw@}H}_@gMot@cLy|@UaBeG_x@mDst@mBa`AOy}@Imi@uAex@a@oXgBkb@uEml@sHkp@yPiaAkLce@gQcp@kEoMoLw[oUmi@wSo`@aSo[yUc^iv@iaAcVg\\ySwZgi@e}@yd@q}@yXwq@y]odA{XccA}YmrAgx@anDgc@{mBww@yjDucBe}GybBsxG_eBi|GiT{{@}`AsyD}wA_xFao@mfCwCoLe{Bk{IeeBs}Gw|AohGoE{PuqCg|Kwu@ymCs{@}nCg]caA}e@ooAyfAusCKWc^u~@{\\w|@wmAgbDw`@yiA{]wfAyWm}@ut@qkCqYclAk\\gwAmr@meDyzAiiHq|AknHk{DibRuiHgi]g{@ecEocAq~Eq~Bo|Kwg@caCoy@g|DwhA_qF{D}QyOcu@ufAkhFuoA_dGoc@uuBod@qyBsQo{@}Ni}@{Gye@}Fci@aFec@qC_b@}Ee}@iC_p@_@}]g@{f@FykAdA{pBPi\\Goy@_B}z@yCqx@}@iOiDqk@cHot@wImu@kAkHeT{qA}Sg_AsMkh@qOcj@{a@kmAmVwj@qRsa@s\\gp@gR_ZiSs[wc@{o@{k@qp@yu@i{@iZq]s\\cb@}MkRoVg_@_`@gp@eZqk@mQqa@wPe`@_Na_@yUqu@cFePiMwe@kf@ekBk|By~Ig}BeaJu|Bc_Ji|B_aJcX}dAm`A}yDub@mrBkg@woCwm@ytD{f@uyCij@sfDqbB{eKiQeeAc]ctBsy@eaFysBmhMaAcGoJis@oGyt@s@cIuD_f@uBwh@{Bc|@a@m_@?ia@F{q@zBgs@hAs_@nHovApGgrAvAqh@LaFXkc@]m}@kA_m@aBi]{Fax@gHut@yLsz@{Hsa@eMkk@}Ool@gVwt@_\\ww@wZwm@sWsc@mXka@cY{^{h@oj@qtAspAyNqMgb@c`@kLoKoY_Xe_@i]we@id@_a@{d@me@{o@c`@cq@c]os@qRye@sTsp@_Nod@{Nip@eLum@eIii@kI}u@uDsf@_Dii@gB_h@Yul@Lgy@tA{n@nBwj@vCar@fCal@lBgn@`Bym@^}k@Cod@Ukd@cAwq@mAke@iCif@{Bwb@yEgl@_Geo@_Jor@sLex@mGs[iH__@eMck@gN}i@aTqs@aTsm@_LuZ}Soh@wXml@_]io@qwA{fCkQg]{R}`@mSqc@ySif@a_@ybAy]{gAwWidA}AaIqXmpAwUo{AsHaj@_Hqm@kKevAqFgfAgCcsADgqA`Asp@lAq_@vEqfArB{[bJydApN_jAlJst@nGwe@pFac@xDil@zAue@Jy`@BwGiAii@aBy_@uC}^eFyc@oGw`@sFmXmTkr@qPqa@}S{c@sUq]ac@{k@mFsFsuA}~Aw_@k`@abAe{@o`@_Xmd@_[}MwHue@sV_^kPmq@wWeu@iXi{@u[ml@gVaU_LsWiNaa@kVuYcSeUuQgG_F}^u[a~@az@yaAuz@ub@g[og@{\\}h@sZgh@wWmg@cVahCclAmwDofB{LiFeeAsf@wRoJgbAqj@k]qVsb@}^sd@wf@aUgXqXi_@mY{c@_p@ybAm_Ae{AcSgYyQaW{SkXeh@wk@wN{Mk^m[cf@q^od@i[_u@qa@gz@ie@wZeS{YkUmi@kh@yF{GcYm^qe@ku@a_@ww@iZgv@uO{j@_DaNaT}bAcXggBs\\qyBkY{lByo@qkEqHij@gGim@kEgk@yGacA}CgmA}B}oAm@mSa@qRe@yVaGueDy@oa@cAgh@cAms@a@_w@l@w|@`A}d@~C}gApRivDbHmuAnFciApBoq@xAkt@FcUWchAiAqmA_HmhHY}M_Fs`CoCmgAkCy}@kOclFK{DmH_eC}Fk`B{G_oAeKsnAsEuc@uGyf@{Fmd@gKkn@}N}w@w@sDg_@ccBqYmiAg[uoAcv@wzCeiBejHqgBggHqe@mjB}Ret@uWw|@q[yaA_Wkv@m]m|@k[{u@ae@waAap@ujAai@y|@yp@s~@iMuQkt@{z@}{@i~@yp@mm@sjAg_AaqA{}@odBcgAazA}_Ao|A}bAur@qh@sv@yo@iq@en@en@go@ao@os@k`AwmAge@uo@ef@us@}zAu`Can@c`Auh@_x@ke@{p@wXc^e\\qa@g_@ub@ka@oc@wy@ww@oy@ss@kh@s`@ku@ah@{l@c_@kaAyj@_aAuh@ux@ic@oy@od@ci@_[_d@gXe`@uVs^cWkb@e[_d@{]ea@a^am@qj@ek@el@us@sy@yn@kx@{p@_`Aom@{`AyuA{aCo}@a~AoJkQsTq]ee@ku@kT{[iWu^}h@}p@qs@kw@kb@i`@ma@s^mc@{^cf@y]}aAst@alA}{@wx@ao@ka@_\\cVySge@}b@{a@ua@gg@ki@iRsTue@wm@ij@ay@gTi^iRm\\kTga@yTod@kX_m@kNm]wPqc@cMy]wPwg@sMmc@gSyt@{Owo@_Rey@g\\uaB}]knB}`@w|Bib@y{BkXcpAgMai@kUq|@yT{u@{Ssn@gT}j@mSmd@yQa`@mO{YsSs^wSc\\eToZeUuYao@st@o\\a[uYiVwl@kd@io@c`@yXeNuWyLgp@}Vyd@qNsg@wMam@yMajAgRsdBcTgoAiMmlAyL{Fk@uDc@m|@gK}eAaPma@oH{m@mNot@aSei@qQon@iVso@sZyu@sa@gy@sh@qx@mm@qjAa`AyiAodAchCg~BycAoz@ia@m\\k`@eYoc@mZ{q@wb@qd@aVs]qQc\\{N}]eNwk@gS}p@_Ro`@cJmf@eI}]sFuEs@e^cEgZkCi`@aCk_@}Acr@uA{w@Yqb@N}i@h@gv@pBcu@|B{oAnFsnArEynBlGenBxCmv@Dyk@m@ie@y@upA_Fwg@wDge@kEsy@kKap@aLwn@mMiw@mUaXaJys@qYwo@a[uZuPuV_OuZmRe\\cUqeA_|@s~@{_AsZy]ib@ij@kc@co@sb@es@cWwd@mWag@u\\ms@kO}\\e[mu@__@qcA}a@wmA{p@uzBmq@_dC{f@{mBsd@skBag@epBg_@}vAuj@gmBw[u`A}Two@i[ux@wYwq@yq@ixAi\\cm@mXyg@oe@uy@k~@uzA}}@wvAmw@wpAch@oz@yc@uw@gb@kv@md@waAcSud@{Tii@{Vov@gRql@sPim@mMsh@yNyp@wKmj@aIqf@iNs`AmIes@}Hmz@oGi}@wFmaAgDi_AqB{{@aC{|@}AkvAeDs~CaAiy@{@os@{@eo@mBwt@kGocBoEw{@gFkv@wKiuA{Iwz@mJgw@iUcjBuMwbAiGyc@_c@iaDsLogAqKcdAwNodBgIk`Bi@uNcBmc@iCipAw@oz@Sk`AhBatB~BqvAnDqcBfDgbBlDubBdAwcAn@ojAUgx@y@c|@yA{z@uDu_AgGq|@uIkaAgJeu@cLwv@gN_t@sPyw@sLyc@sO{i@qR_l@sQeg@eQob@qS}d@eVef@sU}b@g`@cn@gX}`@u[sb@kk@gr@ia@{d@ql@{m@ub@kc@s`@s^{iAgeAkcAaeAwd@}f@yj@ap@sMcPmFaImWy_@{e@uu@ah@w}@_m@khAgm@egAwX}e@e\\ah@eZid@{Y{`@wb@aj@k\\{_@si@cl@}w@mv@{mAufA}gAmaAwk@mh@eg@wf@oe@ge@}]{_@mk@er@gS{V{Ug[kXq]mg@at@mZse@ka@up@iSu^eRm\\yk@kiAuIyPgF}J}DcIiZwo@yjAeeC{xAm_DiuAoyCwyBmzEyn@atA{|@amBwk@}nAey@{fBo_@_v@m^cr@el@scA_Yce@mYw`@uRoXoOsRw]}`@sa@}b@c`@i_@ed@c`@uRgP}l@mb@mUsOyXuOa]_RuWiNur@kZkq@gV{u@qV}kAg\\yoAk\\ypAq]qh@wN{v@wRyiCgq@oiA}[}mAea@wUkJmr@k[}g@iYyi@_\\yZ}SmS}Nuv@uo@yXqVcWoWam@gq@w\\uc@_Zm`@e^si@gV_]sUo`@}~@u~Ao|@m{A}b@}q@ux@kmAsx@ydAks@ez@wm@}p@ykAsmAgtFgzFeiCcnC_lAsmAwa@{c@g^}`@cUgWcW}YgW}\\u^{f@gc@wq@qZmi@gd@i}@kQi`@sZku@s_@qeAek@{hB_v@skCud@eyA}Sil@mRag@gQyb@oUgg@sYqm@kT}_@}Ysf@wPoVyJsNs^ig@ic@ei@s[k^qd@uf@wmCglCuq@wv@c]yb@eLmOqU_]}^gl@k_@mq@{b@sz@ij@mgAi^cs@_i@s~@qc@yq@{TsZkV_[{b@qh@e_@g_@aWmWiWqUyvBofBy_Aix@wYyWae@ic@qj@em@s_@se@kd@cj@e^mg@_f@gu@ckAclBa[ye@iY}d@yp@_aAig@op@gi@cp@in@}r@{x@{x@u_Ak}@wgD{|Cw}AuwAstAioA__DiuCapA{jAek@ef@}h@_d@}r@sd@eq@g_@kReJqVeKa[qM{c@aPk^{LwzAq`@qVmGsy@eSo_AeVysAm^o[oKgXkJwc@iSuUgMcOwJwZuS_^aX_YsWwUiVqeAqjA}aA}gA}{AmcB_s@{w@ej@ap@oXe^o^mg@e\\{i@kXsf@qWah@k\\uw@kVqo@mR_j@{Nqf@aMwc@oMik@{Nys@uVoxAsWkjBqGkm@cb@qkCsPyaA{Oeu@sRmv@cVuw@}Ke]qHuRmY_u@{Rsa@mZil@aW}b@aZyd@we@{n@oRsVmRsSe[m[cf@qb@mXkTqb@{Zyb@{XwbB{cAikEkfCymBugAk~Aq~@ir@yd@qt@sk@sy@ks@sq@{v@_\\o`@qVy\\e^eh@yVk`@mv@msAin@}kAic@k|@im@ymA{o@{nAeq@akA}b@cp@qz@gjAg}@{`Amo@yk@su@am@{c@wYiD{Bqj@e\\we@iW{l@gWgh@yRoc@iNsp@{Qgv@yPu|Bg^en@{IqQgCge@yGcNoByAUkt@mLso@oLucAwUi`@_LsQeF{o@{SgT}Hsa@cP}w@u\\sw@ia@_q@y^al@{^}q@qe@op@mf@ccCgrB{mA}cAy_@i\\egD{qCkB}A}mDuxCg{CehC__BqsAuaB{uAweByvAwr@yi@ow@wl@sx@ki@_x@cg@a~@qg@w_Aag@_nAsj@ixAym@k`Bkm@cbBon@ooAqf@szAyn@wf@uTsh@oW_f@{Wse@mWun@i`@yf@q[cc@gZ_g@y]{q@wi@{|@iv@qKaKaa@u_@{DyD}a@ua@atAc{AqQeS{|@}gA_c@ql@iZma@oc@mm@qeAe_B_|@}sA}t@alA}nCmpEqmAgrBiKkQ{`FehIikDyyF{mAkrBenAmsBgzBerDo{BarD{r@{dAor@_bAc@o@un@sx@oi@qo@iVkXyXgYqb@cb@}e@qb@ok@ud@kWoR{`@uWgh@o\\eY{Oct@k^qm@}War@yVy^sMa_@cKgf@_MibAmTcbAcSuIyAme@kKcTcE{PaDcu@iSqt@{Xm]gPgf@aW{WsP}e@e]aJqGyVwT}YmXaT_UwNeQuV_Z{]ue@a`AivAg`AmxAefA}~Asv@kjAoE{GgjCm|DotAorBio@oaA_[{g@{_DsgGsiAozBwdA{qB{fJmpQ{oDacH{wAurCgc@{z@whCk`Fi`@qx@y]cv@{\\uz@sRai@}Wa{@oNyf@_[umAud@wqB{YuqAc[}sAcIy^oe@ksBm\\exAiOyn@iMma@gSch@{Rob@gVub@_NoSqTqYoRqSkVwU_XaR}RwLgVmLsWiJsYmHgOoCwYiDwYmB_Qy@we@}BmvAmH_e@kCeLe@mxAsHgOk@{`BeIm_@oBiG]oc@_CmDQmEU}fAiF}fBgJwz@cE}TcB}W_CaYyEee@cM}UwI}WeMkTqLyR{MoQeNef@_b@AAmi@ad@aOaMmWqUsTmRiRkS}FyGiFmH{Via@}HoNaJsRoHwPuIqUuOch@{Hs`@_Iid@u_@axCaFoq@_GklAqCoq@_Bcy@u@wo@Qaw@\\sa@pAguArCobAjDaw@tMs|AvLulA`d@y{Cfi@_aCxXsaAfb@oeA~Qqb@~Qo\\tTm_@n]ia@^c@py@u_AxVm\\rQ}ZfM{WfOm_@~IqYpHkZrHi_@bEoX~Fcj@`Eqi@bDwu@xCww@ZwqAe@il@{Amk@uE_eA}IenAkEi`@cY}qCkWu|BkWkvBwX_|BuXgwBAE{CaWwk@czEeXgyB}Xc|BcRwlAiTk_AsUmw@eWqt@ks@_mB_q@mfB{r@ikBqKwZeDmJsBiFoYit@ui@ycB{bC}iIyiAszDgsEetOazBctHehA}tDc@{AwQqn@mF}QuqAgkE{qAcoEgm@_pB_wA}vEyZg|@mTmg@mTie@sf@kx@gbBk_CkhBefCydEi~FiD{E{mGe}IkpIgrLkpBgqCq{@mlAo{@qmAwwBuzCuvAapB{uCybEmEmFe`@oi@kjAeaBySa[qj@}{@af@wy@}dBayCw|BoyDqBgD_CyDu_CixDkz@ouA_lBc|Civ@moA}t@giA}r@s~@mjAktAajBswBoXs[q`@uf@{Z}`@i[{d@o[gi@eVac@wSwa@cUmf@gVih@ql@yoAe^cs@uM_VeSg\\oTi]eP}T}\\gb@eUcYkc@kf@sdAuiAau@}x@wMyN_\\g^aYkZcV{S_RsNsQ{K_UwM{V_Ko\\gJuVmGer@qPaWmGaHwBaMmE{PgH}OkIeYoQ_U{RyLkLaMgO{RgXeTy]oH}OyDmI}Nu[eSgc@ad@ebAcJoQqLyU}OiYw|BcbE{n@anAyD{Hai@_fAyh@ueA}w@u|AylBifDq|AyjCenAguBinA_vB{EkIoJiP}`@mr@c`@}v@a_@qt@q\\mr@al@{vAgPkb@aKwW}|AccEiz@wvB_Tuj@kc@{jAwOca@sLmZqNk[}Xuh@qV{_@qYw^kTkUkTaT{ZsUg_@}WuRuJkQoHqaA}Z{_AcN_k@eCeWoAoZaCoZqDg[gGe^eJsVaJkGmCoHoCaEyBkU}Lg\\_TiNiKaOcMcQ_PcRaS}NaQym@ey@ir@wcAm^wl@ao@oiA_Vie@}g@qgAig@{eAqI_QgNgTeTw[aN{P_SgT_ReRkOsMyZaVyM}HyFgDe[oP}c@sQatBcr@u|@s^qb@gR}W{Mcz@yd@ae@o[ma@a^}a@mf@qL{OsQqXSYy`@an@md@mq@wBmCsTqX{K{NoU_WoV_W{VqV}g@mc@eKyIac@k[kYuQwWyOwb@mUqj@aWoSeI}a@aOa]eKoZyHs`@wHo`@kEyPcA}R{@eS_@a\\Fs[p@{o@|AqSJcM[_Ye@gNw@{OwAeNsBaMsBmH_BqX_HsWgIiPkGsR{I_[ePkRyLuiA_y@oa@{XglAcv@s_@mSiVsL_LsEky@wVqf@_J}f@wFk\\yAu^i@}j@jA_m@`Gi^dGee@dLcl@fPi|@`Xk_@hMwVrHeQzEuN~BoRhDmLjAeYvAoY\\_Ws@qTmBwZmEqZmH_WeIkV{KmSeLsSyLmWgTcWkWcUwXuSa\\uNiWiKuT{Mo]_K}Z{Jg`@gJqc@oFu`@{Da`@iCk^yAs_@i@kf@d@gi@rBwf@lDuf@zGem@xGop@bEqi@bCwn@^c]X{Zi@}y@_Dis@G}AuFot@{I{i@yI{g@mPct@iLs`@{Ly]}Oc_@wOi]mW{c@sVia@yt@qnAiZcj@w[ym@g]at@}j@cpAur@oiB}V_o@kYcm@iT}_@ySi\\sTyYaLmNcGwGg^k^o`@c[g`@mXwX}Nuz@s`@_|@ia@y_@_TyO}IoZoSeQqLmV_Rud@o_@aa@m^w\\y[yGoFk_@k^cm@gl@oUkU{h@oj@wc@if@kg@wj@ia@ae@ei@io@wi@wq@qZka@q[gc@iVa^iTs\\{Uu_@uXee@oLaS_Wee@kR}^w\\mp@kP}[}PqZqQwX_Q}UwTgWwS_TeXuUuOkLyNiJaSmLwS_K}LcFcRkHuYyMcZgPaKsGuKoHcN_KuVkToWgWoNiO_NuO{Xy[cl@{p@sm@or@wp@su@u]ca@cHwHuu@i{@gu@o{@eaA}fA{g@cl@yMkOib@ge@yb@uf@u[__@mr@mw@caA_hAibAmiAg_AsfAgw@y{@oYi\\uZi]il@mq@o_@ib@wUkXac@gf@yPuQqi@yo@s[uc@uR{[uSu`@eR{b@aOg_@kLc^aRqn@iOoh@mOyh@s^unA_Nyd@yJmZaG_PsIwSiRua@qVsd@}NsUsQiW}PsSuUeX{^y`@yo@es@yT{VmWiXyiAgnAwWk[iLqOkLqQ}Xeb@}[kk@{r@_mAcx@otAcg@c|@ia@}s@et@{mAia@mr@u]wn@gXqf@_Ugc@uNeXkUcf@iV}d@{Usf@_Tgd@ya@s~@qh@qkAaZcq@aSwd@oYao@wc@wbAm`@}}@}Z_v@eZss@c]yy@i^k}@}j@atA_c@efAot@ogBkp@m_Bup@_`Bea@yaA}`@q`AgW}n@cUij@yc@ufAiUgi@}Og]mRm_@sO_YoQkYaNeR_NgQmTgWqQ}Q_ScRse@ka@{OqM}RgPw_@i[kj@ad@{e@u`@se@a`@ux@yp@ii@oc@cyAimAqwAgkAqdBewAch@cb@cDkCs_@{Zs`A_w@en@og@cFcEku@um@i|@ks@cy@}p@qn@sg@ip@ki@uv@sn@gaAow@q^yY_g@s_@uo@of@am@{d@yr@wh@um@ie@sk@wd@us@uk@{v@_m@maAku@so@kf@whAiz@yUuRwI{HiKmKwJqLcVy[qv@agAqt@aeA}{@cnAubA}vAs{@cnA}r@abAq|@ynAij@{v@yi@iw@we@is@of@iu@seAw_Bwz@uqAgx@gnAup@ybAim@ev@k\\a_@ka@ea@kAiA}FoF}^_]c^gXmc@i]qh@}`@{e@i_@km@ie@eg@m_@sRoNqOkJk\\ePuv@_^ic@sSkk@}VwT_I}XwHeZwGa\\iH{e@mK{n@_M{n@eMuh@}Jmt@}N}a@eIwOcD{VyG}UyImM_GgQaJk_@oSkY{PwpAks@kh@_ZqYoPgi@{Z}`@qUq`@cUmY}Pk`@}T}`@yUk`@kU_f@gYyu@cc@ka@sU_a@kVgq@_`@in@c_@}r@}b@qRoL_bAsm@sz@sh@yz@yh@oVoOOIaa@aWyg@k\\ip@qa@ma@{Wol@e_@_p@eb@u[sSiXgQse@e[kd@iZe|AwbAqhAgu@onAsx@qpAcz@}rA{{@cYcRk[qRkyBowA}xB{uAwEeCiAq@sAs@oGkDmHoDkMsF}OyFiVuGy]mHi[_GkSmFkOwEwPuHyPkJmNaKgLgKyNkNoHoJqLuPyK_R_JmQgGmN{CkIkFmPmDuLgG}UcFuTkFuUmEmQiEaOyDmLkHqPcK_UsKsQeL}PcTeWqN_N{ToPsJeGuPiI_QqH{YwJc[mJ}b@_NeXyJsXaNmQyJsq@qa@sq@y`@ki@s[qd@mXiLaHgIyEeRwKej@uZka@oTaa@aTiYcOuXyN_YyNyYcO{OsIaZyOcFmCoa@oUyWaP}XiOcQwH}PkGaPuDwQyCgMyAaNu@aRAiP\\gJZwZtBuXhBiTdAwUl@}OXkPJmRMgQo@_SyAoQsB{QmCuQiDiQsE{P_F{QmGiPaH_PuH{X{OcW}PmIsGaP_NuK_KsNuN}EqF_NsOm[{_@mc@uh@o[s`@a\\o`@og@en@mg@mm@aa@mf@eb@yg@oWk[oEmFmRkUeUsXcNcOuG}GqKgJ}PwMeWgRcPaMeG}EqMiLyJkKyIuKoImLuJ}OgHwN{JgUmHmSsHmU}C}K{Xa}@mG}OsHgPmFeK{IaOuLsPyM}OsMsMeO{L}OwKoPcJuX}Leb@mQkYsMsOaJsPuKqOsKkOsNcPgP_T{Vwo@gv@kg@sl@}i@wo@k\\u^eS{PyQsNwO_LaMoIgNaImImEsUqLu[kNeQgHiYiL{XcLgZyLICuYoLq\\}M_FyB_a@aPyYyLmc@mQkYqL{a@sPyj@iUaZoLwk@wUik@wUsl@gVqQiHwX{Kuj@gUc[iMe^{N_K_E_XqK}b@}Pw\\gNc^yN}_@oOif@iT_k@gTkx@cYgUcGs]oIqVwEmVyEoZiHg\\qJkT_IyMgGkNaG{OmI}OyJqV_Q_P}LkOuMoNgNiPaQyQ}SeKwMiOcT{KeQwKqReKmRiJkReJoRgJ{SuOo]mP}]cVad@iL{QsMiR_QuUmNuPuOcQgPaPwRsPsMsKuTqO_UeN}V{MgTwJuQ_H}QkG}RwFiSwEgQgDiT{CcUkCa[sCif@mE_S{BuWqDkUaFgQkE{OsEwT{HcVoJ_ToKiNkHkFoCwXySoRkNcYaVa^a`@oKiMqMoPaKkPyJqNyOwW{O_Z{GoOwFqOaMa[gLc]sPuh@}Rco@{S}m@aFoNeFwNaJ}TcHaPaRoa@mXoi@wTkc@cYgi@a_@}s@sWoj@uR{c@}N{^aNe^yKk\\sIyWmLc`@wOcj@{Kka@aOsl@wSqy@o_@mzA}X_hAu_@ctAqSer@{U_w@eX_z@sOkd@eOec@aM_]sY_w@o[_x@uRye@{Zis@i^iw@oPo]ur@qvA{Vud@eN{UiPuXwZye@mXs^gWgZgNePaSoSwOeOiWgUwWcTo[kUuX}QoYaPod@_U{[kN_X_Kkt@aTss@_Puu@mJ}f@gEmi@yBqn@kBmKe@c{@}DoWoBgVkBq[iD{W}Dij@uJaU}EkX}Ge[mJ{QaGaZgLySoImYsMm]cR_YePcVoOaQyLcTaPgJcHuSeQwTiSuRaRcQ_R{M{N}MaPa\\{a@}SgZqR{Y}R{[cRc\\_Qy\\kVoh@{Tki@uSij@uMi`@gMab@gKs^{L{e@{Ocn@wN{n@_XkiAcQqs@gKca@cEiOkE_PyO_h@yGySmLs\\kKiXaOk^q]qu@mSk^{Tq`@s_@}i@aXy^g`@gd@i]w^i^{]_ViUkNwMuJkJoFgFe^k]cc@}c@m[g_@aT}WmTq[}Rq[sJ_RwJwRaIyQuKyW{H_TgMe`@iHwV{G_XuHo]kCoNcEsVyDaXcEm\\eCcXmBoUyBo\\mAmYgAw^eAyh@s@cd@g@{o@[gr@y@k`Am@{p@mAet@kAed@{Aag@mBme@oCmh@uC_f@{Ccb@gGit@eGim@cDiY_Mu`A_J_m@iHuc@gUaoAqp@}sCiSyx@_Ve~@}Scz@uOom@eXyeAaa@e~AgM}f@mTyz@}Tm|@iW_cAqNoj@c@cB_Pkn@mOyl@gT{y@kOkl@oKgb@yXifAgb@kbB_I{ZkQiq@cU{w@sUsv@sQkm@mPck@mTax@sHgYqN{h@gRqs@oMaf@wLad@}Rwt@kSyu@}L}d@uOgl@iSeu@cMge@iOek@kPan@u[_mAeQsn@iPmk@s]}jAwQ{l@kRqo@uYoaAmRko@yZibAqKw[uPmf@kGyQ{]q}@sU_j@_]ay@}Skg@{[uv@c`@o_Akk@ctA{m@gyAep@i~AaWim@}[uv@{Qmc@gXgo@i\\ow@ca@iaAk]gy@mSae@cO{[_Sia@mXmj@sNsZgXsm@gQmb@}Oy`@uYwu@qQef@wPwb@yO}_@_Rka@wUog@mVqg@oLeUqMsVkLyRc^_i@}U{]yh@}v@aZec@ib@un@o]ch@_V_^}^}i@{]qh@s^qi@iXca@{OyU{PiX{KoSwLqV{EiKqD}HqHgQiGaPaImU{@cCkH}UgM_c@{Kia@yH{WaNeg@oLgc@uFsV}EkUuEyWgDeTaDwVyDc\\aDc\\sA{RmBm\\{@iWcA}_@{JsjEqHg_Dg@uS}@a`@Y{LgCgeAiBkv@qD{_BgA}f@cAy_@[{MwBk|@mAqm@yAmk@aBcm@qCek@aGqm@mEs[gCcPuFeZoK{d@u@eDi`@u_Bei@kyBsY_mAmWseAoOao@sIw]Mk@_XugA}`@uaBoWmfAkYukA_Z}mA}Qyu@mWcfAs`@eaBgWeeAmEyQw`@}aBqBiHkHo[gHc\\kGa[aGy[_Gk]{G}c@uHcl@sKs{@{Jov@wMceAsJsv@}`@w_D{MgeA{OynAiKyy@eJwu@aLi|@{LkaAcEeZmIai@oEyUgIk]mJgZwHqS_IqQgKySyKyReNcU_P}VmVy_@oO}UqNgS{OaToImKaEgFyIeJaSmSal@wj@s\\y[uYiXqQaQ_NuNqKaM_HsJeNcTgVua@eVgb@}U_b@k\\el@{Xef@{Sk_@gZkh@sZai@gPoYmIcOeNgVwKcS}KsTwKmTqJeTmJ_TmHwQcNq^cJqWeHaU_IaXaIkY{Smv@iOej@}Lee@kW{_AgVc}@gSyu@}Oel@aScu@mM}d@kIeW}J}VcG}MkG_MyHkNeMyRqKwNaJkKkNeOoXaXkViUm_@}]yg@_f@ga@u_@e^y\\{b@ea@w\\m[{NqNsP_QwN{PmNoRyLsRqLkSsR_^sYui@}Sq`@oUuc@kRc`@sQq_@wG_OkGmM}JmSw_@mx@{Qm`@}v@gaByTog@sWuk@aT}e@}MwZmH{OuRqc@sRmb@oHaP{LyUMWePeYe]}i@cPuV}OmVqJaNaPcVa\\_c@cX}]i^{e@w\\ud@cPmSgViXuNoNuP}NeLiIyLmHiRqJsRoJa[aM}[mNyTaJmYwLoTcJcZ_Mma@wPma@iP{d@iPuNiEeTkFqPcDeO}Bg[sCs^eA_UYmj@@ag@Fsl@Xk`A^}kAXgqAv@gd@WoTc@wT}@eUwBoLyA{M{B_SmEgPeE_NyEyPoGoRaJeReKgRwLkOkLqJuHeNcMePePaT_XmPkUgNiT}MwUeN}VsOaYyLiTwLiQsKyNsKuKsGaGwQiOaa@q[wPaNsPkO_O}O{FkHaKsNmHwLkJePuI}QoF_MaHyQqK_]cPel@uh@slBwo@e_CsXkbAwd@{bBsW__A_Wu~@yU_{@_Wa~@aU_y@iu@wmCmi@unBiRuq@{V}}@cY{cAgYedAsV_}@}Um{@gRqq@qHeW}GoTwFkPkIkTuJ_UqKiVaKcUqKcVwJiVqIuUgI{W}HuXqGkWaG}YaFsXeEkYyDiZaGag@sGkg@wEaZqF}X{FaXwH{XoIiWqPub@kKaUgKwS}IiP}OqW{MeSyNyR{NqQ{L_N{OaPgQuPuWoVmT_SyTaUcOiQmMuQsMkTuHeNkI}P{GoPqFqOcIeXoFmSmEwSwCyP{B}PoBmQwEoe@iEue@sI}bAgEsg@aDi]mD}X_EyWcKkg@mMmb@aLi[sH_QyEoJmFgJmLaScNkSuM{QgMmQwNcTaMqSmKaTaKeVkJ{VqIyVaZm{@e\\eaAq_@_iAoqBgcGm[k_Ae_@ugAe^meA{\\{bAmVmt@}Xqy@iPuf@qN_b@sS{m@gi@{~Au^}fAiZ{|@}]ieAsb@yoAghDe_KkeAs~C_Tem@uf@yqAy[_{@q`@adAol@{|Aia@{eA_g@kpAiPi_@iLiVyF}KcKeS}CiFmNaVsTu]sL_RoIuK{LuPcGiHcOiQgVmXyNeOoPwOoZyW{a@s\\sb@i\\{j@ic@ea@c\\gPsNqPqOkOkOeH{H_GmGeMsNwLeOkFcGgFkHqHqJoKsOmMmRoGkKqKiQ_NqVoPo[sMmYkF_LmDgIwHiRgL_ZaOeb@gIeXuLib@_M}d@sGeXmXoiAcQ}s@gSiz@oQau@uLsc@eNee@}Muc@yKo[yLk]gPkc@iQuc@_Pm_@uJuTsPe^oKeTkMyVkOyYwLsS{R}\\sKqQgNyS}LmRsu@_eAyJkMoUsXw^ua@iVcWu_@o_@yg@af@eh@if@ah@mf@q\\m[_SeRyN_Ne`@g^cRwP}UwSiXgS}PwLuPsKyc@yUeQiIMG}YuM{}@sa@oVcLkOsH}OeIsO_J}OkJoP}JkOiKeGmD}GgF_W{QcPkMsNuLeN}LaOcNiN{MmNmNmN{NgMmNgUqWuMyPqMoPcLmOyR{XqQmXwMsTsKoQiKaR_Rk]uPa]{JeT}IeSeMyYkLcZgJuVgLc\\_O{b@_HyTsFgSaMyd@aJq^uHq\\mH{\\qKug@wLsh@iJy`@eGmWsKeb@iKe`@}HgY_L_`@mYa`AoMu`@_Mg_@aN}_@uXqu@sMq]yOk`@aUki@uOq_@ePg]mUyg@oKuTcVge@kd@q|@e_@at@qZil@k]yp@e]gp@sg@gbAmj@cfASa@q[{m@me@w}@uVmf@qWcg@sd@i}@sWog@kRy^yQu\\mSs]oOyViPqV}L_QsT_ZuSoXiOmRoR}Vkd@ul@q^md@ol@}v@im@mw@i_@ie@i_A_mAs~@alAml@{v@o`AymAsZg`@ml@sv@s`AcnAcl@av@uAeBoNiQmWg]_TkXkLeOg]oc@u\\_c@kUsYi[s`@uNoQoR{UyWa\\e\\ia@ua@qg@kYo^cWwZ{|CswDky@icAwb@yh@ec@ai@yj@_r@c\\k_@eUmU_VeT{GeF{FiEwOyKuOaKyOqIwOgIiPiHoa@sO{QiFiP_E{ZaG_[aEuZ{C_[eC}YeCcRmBgQyBsQyCwPoD}PcEeQgFsQsG}OkGwOmHwPoIeXcP{OyKuMsJ{N{LyNiMmFqFeN{NeM}NwLkOsLkP{IyMwNoUyKuRwWie@iXef@sUya@og@m}@}^qp@sRq]w^yo@wj@ebAgXif@gaAoeBs]on@{b@mv@yWef@eLaS}b@iv@y~@eaBsUcb@cz@}zAqd@wx@w]wn@}LsTcKwQu|AuoCehAqpBcc@cw@_b@_u@gTo`@sWid@gp@qlAkUa`@}o@{jAuc@ex@ke@sz@wd@wx@g^yo@mf@_~@cUyc@gRm_@oQs_@g[cp@}Ou\\ag@}dA}]}t@mQi_@oXel@iYkm@{GsNyWcj@kg@weA{V_i@cV_h@wVki@w[gr@ea@g|@e\\is@eKmTmJiSi_@_y@c`@yy@kw@ycB{Xgm@gfAq~BwUyf@_Q{]{JuQwLeTy`@eo@mS}YcTwXeTsVcPoQgNoNgUyTkVuTcv@{s@qXoXmQqRaO_QuMmPwL_PmQmWyJuN{Rc[gYih@iQe^mPk^}No_@aKoW{Kq\\aKm[qIuX_Loc@mK}d@{FyX}E_X{EoXiEcXqGef@mG_m@cFak@oBe[iBiZmBqc@mD}x@{Am`@oB_d@uBub@{E}q@kCmY{D}^yHum@{H{f@yL{q@aNoo@eR{y@oRm{@s[cwAy\\i{A}WakAwk@_iC}UueA}e@qwBuVshAc^i~AwIg`@yEeV{Mst@_FsZqFw^qLs_AyJsdAiBqVeDsd@qD}n@{As]mBor@yAqm@gAwYgB__@gCm_@aFug@mCkTmJmn@wGc]_EuP}FoVyKa`@kI}WaIeToJ_WwKqUiNaZ_W_d@_N_T{PiXeMwS_LoQ}I{OeKmSsNsZoJgUkJqVaIwUwGaUqHcXkIy]mGg[yGia@aGib@wFwd@cKoz@wK}|@{Kg~@mNykAqP{{AkK_dAeHiq@mHgn@mLe|@wNc_AuGo_@kOsx@eEkSkQgz@_Kgc@oGaXcIuZwI{\\wJk]wLua@eSym@y~@anCw`@giAod@wqAss@ioByNg`@{n@o}AoPgb@eZou@}iAeuCyt@ijBcf@mlAw^a~@kTgi@kVam@sh@arAerBucF?Ay`@qaAaWon@{Skh@oVwm@iOi_@aa@cbAo`@m`Ag_@s~@gv@ekBwe@sgAy_@mq@{p@cdAat@qiA}^qk@mWmc@sHcOuGaN_KwZ{DoMoDkOkDaQkD_VoAeLaAwKcAeM{@sRYkLsBa}@g@{R_AgR{AaSyBeT_EuTqCeNsBkIyBcH{DoLoHuQcL_UkJ}PkJmKoJiK_HmGaK}HsJuGcJeFeQeHkYiJuUcGgXsGyGoBeRyGmQsImGyDoNaJeHgFcKoI{I{I}M{NwHiJyNsTeHyLgKoSuHmQoFyNkHuTsFcTyFqWeEsVoC{UgAuMwB}Vw@kSWoR[aZTyXd@{Q|@gPhAiPdA{LfBgNtAiKvD_WnH_`@fM{g@pJq]tJub@tHk`@lHad@bIkj@`QurAjJ{w@nGqk@rCmYnHgu@lHmx@~OmxB|IarAjCgf@vC}s@tBcb@tDwcAbAi_@vBix@fDapArCc|@pDieA~A{`@vC{s@bEo`AbCme@pDms@dF}_A~D{r@nJuvApGs`AlEmm@VgDlHe`AlHu|@lEaf@rIsaAvL_wAvFoq@|G_}@dRuiChSagDxDiw@fFy_AjJw}BfCar@fCcs@lBck@pDksAvCcoAhBu~@`BwaAj@au@\\oy@NuqAa@wlAe@ot@gAk_AqB}jAgA}b@c@uj@s@sa@{Aoa@sAa_@c@aMa@cLW_HSwG^mK`@cDfA}DxAcDvBsC`CiBdB_AlBc@zBOhBElAHpATdCx@jBvAtBdC|AbCjAhD`AdDh@xE`@pF`@bKDxLKlVg@~Xo@rK_@jGcAjMmBlPeC`RmCjNuC`LuFbOcDxHaDdGuEvG_CdDmEzEsKvJaJxF{I|DgGrB{G~AsCn@cGd@uHZgHC{FWuHs@kHoAya@gJgQaEsKsBwG}@oM_A}EFmFPyIx@uGtAqF~AcDfAcDxAaD~AeEfC}DfCuD~CyDlDuCrCqDbEwDdE{FrG{LrNeL~L_ExDsFdFaFnDcGrEwDjCkJ`GiNbJ{K~GeKpHoM|ImUbSoLhKgMlM}GnHqUn[kQ|Sck@hr@w\\r`@ee@hg@a^f]oWvUwWlT_XfSeVpPcu@pd@}cArl@ogBneA}i@|\\ys@ve@g{BjcBklBpdBueA`jAgbA~iA_lBhgC}i@~w@or@|iAyn@fiAse@t|@cYdf@uXbi@e[`m@_b@fw@aa@nv@wXzf@{S~Wmk@j|@ou@h|@i_@z_@}D|DqLvLwQdQoKxIyLlJwJtHwq@rf@gr@fb@gj@|[qc@nUiMjHmtAxv@wu@db@wUdLmXzKwb@xMgWxFwCp@aZ~Em]|D}ZpAq]d@uWv@i^FuNKcEEuVIeCAmf@^_]J}g@A_MJi[YuZ_AeXmBuTmBmNoBkKiBcZqEg\\kHi]iK_OmFwM{EyNmG{X_NyTcM{MwI}JoGyNsKoJmHqO{LaOeNgHcHgGeGsFyF{McOgKwLcOoRmKeO_IuLsIyM_IoMgHgMyMiWyKwTk\\_v@yOo]{W{i@m]st@uo@inAus@}oAmg@ojAc_@_bAog@ciBam@_{CaD{Py]_lBkYchAsTmw@iQ}i@wn@c~Aww@g{Amp@oiAgm@idAoo@_vAsV}l@qSan@cb@kxA{p@idCqRem@_V}o@}l@esAk\\iq@iVqf@ua@adAyd@erAw\\onAmTscA}Oe}@oG}j@aO_xAwJczAoDcgBEawAnBmhAdLm{DdB_w@QarA_HqoBiLyzAcBkOkHqo@yQe|AqSsbBc`@wjDab@waDuDu\\sC{XmByTkC{T{BcUmFkj@iIihAoHuvAeGycBmE_kAaAmUoGms@sEoe@mHoi@{Eg_@_Hce@kHid@yH__@_Nyj@wMgf@aIuXkCeJiCgJmCmJkCcJ}CoKyBcIqC}JkCkJiCmJcCcJiCeK_CmJ_CuJ}BwJwBwJuBuJqByJqB_KkBaKkBaKgBkKyAsJaBeK{AeK{AiKsAkKy@iG]mCmAcKeA_KmA{KcAoK_AiK_AwKy@mKy@qKs@mKq@}Km@qKm@wKk@sKi@wKg@wKi@qKg@mKg@iLiA}WsC_n@cDov@aHm{AmAiY{Bke@mAuX{@_Ty@cQyBkd@qBad@{Bih@iBob@i@uM_@qK[_KWqLSuLEkDEuEGsK?{NDcNNiSN{KZgLVaKb@uLf@}Kh@eKt@aLnBwXz@aKhAaLhAcKnAoKtAkKtAwJ~AsKbBcKfBoKpKeo@pKap@bH}c@~K{v@x\\a`ClR{tA|G_d@~Gac@bIkd@xE{VbF_WlLcj@lHq\\dGoXl@eCjIe]zKqg@dX{~@vPsg@rNqc@jQsg@xPqf@pO{`@jXuq@xN_\\ne@seAzUmi@pPc\\rNcYrt@suAtHuNpa@mw@lOyZdNkZzLm]|IiX`HyUjFiS~FmW`EiSjEyUdF__@dAqHrFah@rDki@vB{d@nDu_AnBqh@JgCtEygA`EwhAtEeoAdCkd@p@aM|@aUv@iPxAyTrAiQfBgR`C_SrBwNh@yDfBcL|BqLlGwWxDsOzF_TfFyOlIkUnK_Y`FcMlEiLpJiVdJiWlLq^hN}b@bIiX|K{b@nPyt@tIqd@vGc`@vG{d@jGah@pBuPvBwVfD{a@xBg_@`Bo\\jC}v@b@gZl@m~@B{[o@_m@_A}`@eCum@q@c[aA{T}Cqq@uBka@eAaSaDos@mB_c@yBic@wAkWwCg`@wDm_@aFu^oAcHqAaH_EsLsf@mvBgL{e@kJcb@{H{^aH}]eF{Y}Gid@yEm^wCqXoBsQiBkSwBoX_BwUu@iMy@wPcAgTc@yLk@wQs@wZ[wRMkUOe\\Fab@RsT\\eUh@mVzA}d@pAc_@x@eZfB{]xBih@dCyn@bBeg@^aRd@gXn@s`@JyPNic@S{^_Aep@oA}ZiAwYcA{QiBy\\iFwo@o@uGyCuZqBgUiE{^wKkr@uCaRmNuq@{Jy`@iIo\\{Ky_@{M_e@mTai@}Og`@sQ}`@sPe[_Tw]yIeO_FiIaOuVeKmPiNyT}]}j@uWq`@wLwQaIkL{KeQeFeIqD{F{I_Ns@_BcA}B}@mCt@eE`@mDNeEAeG[mEo@mEcAqF_AcB\\yIrAeLPi@`BuEBIvCqI@ErGoRrQii@t@wB~Nu^fRgi@d[_{@jSyn@|BqGlBmFvBcFfCwCvCeCdCeA|EqAnDBdDf@pDtAxCjBbDjEtBlF`B~HFnEBbB_@hG_AhFoA~C{BtDuEdDkCr@aGXkGe@_EcAmEiB}EcD{]eVmRgLiMiHme@gTsJ{DmSwGu_@cK{OuD{QyC_BWkT{@{T{Bm\\kBmb@gBkc@oA{[wA}YuB}QsBwMkBwP}CsKuBkNkDsScG_RmGyR{HgM}FmJ}EsJaFqOgJaNeJkQqM{MsKaQ{O}PeQiSgUgQmUiLmPqWib@gNaXiPu]eM}ZyH{ScMm^}Qsk@{Vcw@iK}ZqRki@cKwW}G}PkN_[qHcPiPm[yP}ZcUm_@_Te[gNgRqYu^aKaMsJaLmX{ZeXiZeWiYqg@qk@oUiXe\\w`@yK}MkNsQ_Yq_@aTuZqRuYqUk_@sYif@}Zel@_Rc_@kN_[_KaUqJmU}Mc]_Na_@_O_c@iMeb@uJc]cKc`@kLue@{Msm@mC_NsCsNaGi\\_G__@qGkc@qG{d@cFsc@cDu]uEej@oCm_@}Bm_@kD_n@{Cqq@sDez@oCks@sBe_@uAmTsBiYiEcd@iD}XoFq^{E_YeFkW{EmSwGoWgGaTuI_YqCuHuFsOiJ}UiMyYcJsQiI}NgSw]}Us^yXsa@mZuc@eTi[iV}_@_Tc]iTo_@iL}SqMiWaMaW_[kr@cV_l@g]y|@wz@m{Bu`@gdAub@igAoUsj@mPu`@{Xqo@mc@m`Aa^kt@iSy^aKoQiMaTcOeVuQiWqUmZ}Y{]e_@a`@g_@m]e[gX_i@ob@}a@k\\kVwSyLuKwP_QqR{TiOeRmMoQwLuQuPaZuJ{QoNqYoOg_@M]mQch@gKq^qJ}^wJof@wG_a@kDaWoE}_@yDqa@gBeUiEgn@kGo{@eEge@iFic@eHie@gDuSyFwXaIc]}J{^oKq]gNy_@_LuXyNeZeNgXgQcZqYsb@oR}UoQ{RuJ{JaMcLuVoSmWmR_ZyQs\\oPm\\oNu`@aM{LaDkMsCiLeCcWiEue@sGqn@_Ki[gGeTqFoY{IqVuJmVyKqQyJ{TcNmN}JqQ{MkUoSyLoLuLyLyOeRyPwTuQsWki@m{@yDeGwSg\\u^qk@wSa\\wL{P_O}T{k@uz@ga@ok@ql@my@ki@kt@ka@ei@_[kb@}SyZeLwQ}JcQaHwMyIsPwLcXgE}JgLeYuM}_@gTit@}Lqe@k@}BaS_v@cKm^{Nsc@uL_\\{JgUcJaSwKeT_LmScQgZyf@iy@cMeUsAaCcF{ImVwg@{Nu]oKeZmKy[mIc[iL}f@oFwXgHec@yGgg@cG}o@_Ckb@cBub@k@o[Mcc@Ci_@j@so@x@os@\\y~@g@es@eAgZ_Bk^_Cq_@}Dmb@oFge@mIyi@eIy`@uHe\\oNsi@mPif@iYev@wS{e@m^sv@wN_YmJuQ{U}`@m`@ym@yQqW{OsTa]sb@cZg]mTuU_`@a^_\\iXuWmRuZsSy[oRmb@}S_[aNqZmLa^eLua@iL_n@cP_TiFof@aMaVoGiRoFwOcFcc@qOoQgHuXmMqRsJ}L}GoMuH{KmHqUkOeWoRaf@qa@a^m]oXyZuV{Y_SgXeRuXaYod@yRi]gSqa@yRic@yN{]yI_VwI}ViMi`@}K}^cQyk@gMec@_Lg`@yLm_@iNe`@uOo_@}Pe^{Rw^cNaUuXwb@}Zke@gQgY{IkOcLsT_Oo[mKgVaJsUyGmRgJkZoIc[{Kgf@_FaYqI_h@yE}_@}BgTsAgO{Cw`@yFoy@uEwm@sEuj@iDi`@sCyXeFga@mEi[{E}ZaHq`@oImb@gOwp@sYsiAu_@eyAoOcp@kI{_@sI_c@eLer@_G}b@uCsUyEcg@gDmc@eDkb@qBk`@sAci@wAek@u@{j@_AsjA}@_`AkBqfBuB}oA}CckAiCgr@kDqs@}Cah@kCsa@eFoq@oEai@uFaj@oH}q@iHqk@iMoaAwHyh@aMqy@{Oq`AsO{|@{Lgp@qP_z@wNuq@}XqnA{YsmAoU{{@yOgl@aVcy@uSer@c[u`A}\\waAa`@_eAo`@edAaWen@w\\ax@aWkl@}[ms@_w@_cB}x@ieBi`@wx@eYem@}Tih@sLgZgLi[qJiY}Nid@qLkc@iLme@mIo_@_H}^yIsi@qMq~@cKix@yI_t@eLa{@oGkd@_Fg[iGs\\iFmXiGmXyG_ZsNwi@aJyZsJcZgJsWwN{_@sOu^aOc\\{Og[yTga@kLyRgMaSiR}W}L}PiUmYy\\o`@kUgWi]c^aWuVkTsSm_@s\\aa@w\\mXcTo`@uYy_@_Xq`@aWeb@uVsa@kUa_@iScj@eXkt@_^sr@{[}x@y_@mf@uUmc@aTs[uO_b@sS}b@qTgi@aYmZ_Pkf@qXs\\wRaYqPaXsPwb@aX{a@aYs`@_XwQoMqNcKgXcSoZcUaX{Sq]uXe|@ut@cm@sh@aZqXmT{S_V{Uk]o_@_Yw[{j@ir@gX{]c^wg@mZed@iRa[}Rk]uXgj@}JiTsLeXqUml@aSgk@cOag@oHeX}F_U}Juc@gCgLyG_[qGe^kDoS[}B{L{}@kF{a@uCyZuBmWmByYaDig@wBae@gBua@{@cUaDi`AuAy^{Bsc@{Cwe@kDw^eCqU{CcUoHqf@iGaZcP}q@iNce@kPse@qQib@aNoZuJcQgMuTic@cr@s\\{g@ce@et@kUi_@mTy_@aRi]gRc_@uVki@{X_q@oYwv@oSen@iTkr@kUsu@k[qfAq`@{pA_Wqx@q[e`Ag^uaAmPeb@iPu`@qTgg@aWij@{Yql@mUyb@gWod@_^el@}DsG{EoHg\\qg@ob@{l@_Xc^k]_c@kf@wj@}]w_@wTyUc]q\\wf@se@q]o[gc@s`@g`@w]yYqWu]s[uU_Uq[qZsUcWUW{OeQmOuQiReVuSsXwXe`@_Tw\\cZqf@cPgZcOkZeR{_@{S{b@sPs_@i]gv@mZer@u]sv@yV}i@oY_m@kQm^uWkf@qZwj@uVmb@oVu`@ua@qn@si@{u@s[ma@_f@ck@mRoT_]{^i`@o`@wc@gb@ui@ue@iuAoiAsp@yg@{q@ki@or@uj@}m@cg@yh@ac@qQyOgKcI_T_Rmf@sb@wa@a_@cUeT_c@wa@ga@ua@ac@id@if@mi@mVaYob@gg@y\\kb@uYy^ei@ws@c\\ke@w\\cf@_d@mq@od@mt@}Wgd@e\\sk@q_@qr@}]}p@_^as@_OkZsWyi@ed@eaA{J}TqS{d@}vAyaDio@kzAuh@sjA{h@uhAq]at@w^qs@w\\mo@sTca@{R}\\eVo`@g]gi@kQkX{OaUgPySwi@{o@{MkOwTwT_d@ob@cV_Tc\\yWi^eYc[oTa]aVaq@ce@m^sWeLwIiQiNgOoMsM}LeJyI{J{JiIuIaWwX{P{SsRoWqJ{LyPcXuTq^uJyPwKiSkMmWqOq]cNe]oOsa@iJmXqHyU_L{_@iJq]iMog@kPut@aZesAeXmjAsOam@}Rar@uRwm@{Som@wOma@mMoZcQm`@qMkXsOc[gUgb@aX{d@cQ_XgL}PuTc[qXc^gVyYsR{TqTaVkUgVst@ou@ic@sc@gY{ZuTcWiLiOkOaT{M_ScRsZsKcS}HmO}GuNsJySaJmTuGyP_FgNkGoQ{Moc@yGqVcGsWkF_VuEgUyHgc@aJaj@eOqeA}Lyw@ePceAePw~@mKkh@yGyZ{Is^wPko@a[wdAia@}lAcY_y@g]mbA_Ouc@{R}m@gEiN}L{c@_G{TiLyd@_EyQeQky@sMmu@mHge@{E_^iKsx@sA{QcEa`@wC{c@w@yLuEsv@mBu^iAaYkAqj@yAcs@}@wy@q@qdCYkx@s@if@_CouAgDo{@QcEiBo^yBya@eDmb@eCy_@qGik@kCiZsQcqAyLkw@eR{eAkMwv@oCkQgEoZsDeZcD_[gBuVaBqUoAeXcBei@CcKMa_@GqXfAgg@n@oPv@gUnB_b@dCsXnAyQzI_r@dRugAnLgr@vBuOxJcs@lCwVh@kLtG{w@tAa_@l@o^h@ss@We^c@yb@iDqfAeC_u@y@iYWm\\EcXbA{x@|@e[xBoc@vEwk@lAwN~Hio@lPydAlVu{AdKio@`Gab@jKo{@jHct@nAsN|Gy`A~Bag@`AcO|DsbAjA}q@P_v@?}u@Qq`@iAep@{Bqw@_Dqr@yCwe@sMuyAeAqLcCuT{Dm[mAsK_Kim@wFyW{D_RCKsIg[wCyLmPse@uQsb@gK{TwWye@cR{X_RgVcY_\\{RyQgSeQaWyQqRoLeK{EqW{L}UiJ}c@aMu^uHo^gEsc@yBy_@]_c@`Aee@lAwRTcQR}]qBcZqFwg@eJcvA_\\}e@cOm[iLw_@gPw^}ZeUkZ}N{XuGyO_FqNaDgLsDqOwEyWaDmXmBgYg@eUU}WRs`AU{_@_AcZkCeYiCySmIcd@kKe_@cM{[gOiYe`BclCso@y}@aOuRuNgRyd@ak@i`@oe@yRmUiF{H}GiKiP}ZgNu`@aEuPkHsZmEmg@u@g[Fal@xC}q@vC_f@nAud@Eqi@iCkm@sHqn@}O_n@iQ_d@wUy]mUqXqS}P{McIwf@_V}o@_[iS{MeLeKaZiZgWi_@wTac@aQii@yFkWsC}KeIij@kFwq@cBae@wDgqBm@cPyBgaAwCut@{A{_@}Csi@aG_x@aImx@yH}p@}H{i@kIsh@uLio@uJuc@wMif@wGyTcGeRoN_`@wY}u@w^_|@kUim@eQcl@wMkj@aJsf@kK{s@yHwt@mHuiAmE}u@sGicAmIwy@kM_y@{Pwx@kScv@eVmu@aVwx@oT}y@yNuz@yIor@_Hgt@wFo|@qDct@sFm}@}Gkq@qH_i@eKgl@kKce@kLce@cMm]kLu[}Nc^mMqX_Qw\\_Yad@uMqQaYy\\_Zi\\sc@g_@o[uVgYoO}YcOsd@}Qoj@yOso@{Owp@gOkn@mVsb@mPwg@cZ_c@}Z{e@gb@{d@yj@{Vy^qTg^{Skb@sSmf@uTqm@wUmy@wXidAeTiv@{YqaAu[c_Ao[s{@s\\iu@{g@qdAqh@s~@e\\em@yk@aeAid@w{@kh@}`Aqg@gcAsa@sy@k^ou@{m@ssAqi@eiAwk@{rA{@mBoh@spAkj@ctAko@cdB}b@olAwj@q}Aaj@__Bsk@scBel@{~Amm@{aB}z@msBi|@mxBe|@ipBes@_|Akl@_pAup@uoAgm@yjAim@qiAcgAapByh@abAwy@wdBwNq]_Qwa@aFgLuHuReVim@{Vcs@}Ren@aRan@oLka@eK{`@kNgi@yJ}b@cK{c@yIcb@wJ}f@gFuZcEcUcJ{h@_Lyw@{Ko{@uLshAwKkjAeIogAeJoyAiHuyAaGg~AqE_pA}GgrBa@sOyBky@oBw}@eC{rAiBooAeBc{AoA{jBe@yeAYgaBG_c@dAqwDrAmcBdAcnAhEweCrA}u@rEmkBjEu_BnGigBlC}o@`GapAfC{l@fE{aAfCwk@hEo`AbCkq@vBi|@x@e_@r@cc@b@ok@Jof@BqNSyr@AoOGsDo@c]{@ut@iAel@oA}e@_Cem@uC_o@sCgj@wCyc@mIehA}C_^}Fel@kKa_AqQwqAiOeaAcQmdAeQ_aAqRsdA}Pm~@yPs`AsLeq@}Ioj@_G}d@mGug@mHws@aGmq@oFuz@wCeu@kBkn@mAet@Woa@Sqi@Xuh@jA}x@nBat@fDkw@~Fc_AbFko@`Hqt@nPubBxA_OtIg`AvCcf@rBed@nAsh@Rmb@_@{o@eBqp@kDem@yGes@eImm@qNax@oPas@iL{^qDkLiNs_@uMg[}LyWsO_Z{LsSk[ge@{VyZ_\\_]cViVsjA}{@_UyNi`@{VwKgFma@qRkMwF}JgDgRiDaPgAaNW{WxA{PpCaLdCia@~HoQbCqRzA}Nb@oNAoNm@gKm@gNuAkOeC}f@uHs[yE}j@gKiq@wKgv@sMyPcCkJgAwL{@}FU}FCuIVgJNoP|AeLdCwIrBqIlCiQjHilCjoAugAbh@o`@lRsYrOiNjJiMnK{LlM_R`RoI`I}NdL_OxIkObHo^bKaRfBsPpAgYPyd@Gu_@Vi[c@gTcBeR_CuPgDwp@yQ_c@gTe}@wk@mu@yk@yn@qk@qo@gt@mVi[wQeWgTu[kPmW_Yug@mU}d@yP{]uUcj@}Qof@{M}_@mNib@{Moc@}Siu@iQaq@wWcgAkXulAcUydAcm@apC}{AgeHgEsTsgA_cFgv@slDa[osAi[gpAii@kpB{HqWkb@uvAoWcy@cWyv@kSgl@sZmz@eX}s@eWso@_`@o}@wY{m@s[sm@q\\qj@o_@yi@q[ia@iZ{[}EaFwM_NwIoHcZ_Wa[cUaYqRc[iQwWoMik@gVcSiH{e@oMim@oNkIuAou@kI}ZeBg\\uAcgAKc_@^ip@|Bcp@fEol@fEusEx\\ah@pDifCtRyr@xEigAnHsx@tD}y@fBqb@b@{TTgx@F{_@k@u}@qAuk@cB_Tw@gU{@gh@_CsuC_Tm~BcWg{@uLeIiAe~@yN_j@oKehAoUmi@mMwu@sRwjAq]mu@sWkr@oYqj@eZwWoPoR}Mka@_\\y[yZ}\\y^}Xu]qWg_@q]_k@a\\km@m`BybDcLoUq_AsmBeVej@mZq_A{o@yyBml@cqB_[wbAsPwi@mJcXgSii@yTkg@qR}`@aQe\\aw@wrA_g@ey@qg@o}@aU{c@iSeb@kRmb@[q@gf@kfAoh@qrAoJyVy{@ulCaoCwnIglCkqHkyCogIa|@}`CgtBcvFgVgj@qh@{wAgo@gdBam@o{Aeb@s`Asg@idAg^mq@{^qo@{d@eu@qd@mq@}e@{o@mf@an@ol@_q@uk@kl@u^i\\gc@k]gf@k\\ch@wY{c@aT}]mNa[qKi_@uKgb@qJ{TgEsXiEu^yDmQ{AwM{@ud@eBs[i@kYE_iAc@}h@mA{d@yCc]_Eu[aGsWwGaWuHaSsH_k@}Wka@gWey@sn@_f@w^qXqQeYuOuRuI_V{JoZuJeZ}Hia@oHsc@mFoa@cE_YwDiUwD_YcHwNgEsKqDob@ePyYeOi]mTq[qU}[{Yo]c_@s]{b@qaA_rAsg@}i@ex@gy@w^c`@a[i]k^cd@g[cb@}Tc\\}Yae@k^go@qSk`@iWij@eWen@eOg_@wNoa@{Kw[iLm_@_V}z@aO_m@gNio@_Pqw@qVunAeN{o@gMmi@qYodAwNoc@mRqf@kU_h@wNqXcPgYsXcc@mXe`@qa@qe@_j@qh@}n@}h@{n@yg@yi@cc@we@eb@_]i]a^q_@qMuOoH{IcSgW_SaY}[mf@mWic@}X}g@oR}`@qX{m@aSch@mRei@iGqR{D}LeF}P_J_[eHkX{Sc_AuLcp@aJmp@wHmq@mFyq@aCma@wBqj@{@ih@Y}p@B_f@`@yZ|Bq{@pA{RbIknA|AeVnBgs@p@gV?eYDoPKwOUs_@_A_]cB{]cBwYqAoPFwI^eG~@uHjAsF|AgFlBsD~BwCrE{C|DcAlD[lFv@pDbBlDbDnClD~A`F|@fFTrFKpIcArG_C~GyApCoC|CwDrC{SbGwr@dPgQjDoLfCcLtC}d@jMyDt@}^bHsh@dNyIpA{s@nOkGrAg|@vSau@dTuo@bTm_@~MuXnKwf@lSih@vUs^nQki@dYu]jRir@r]sh@j_@ei@b`@}^xYo[tY{WzWqTdTgz@jy@{[x[eOdOyhAjhA}hAhgAg|@xy@y|ArxAmIrGcIzEmKdFiKpDqJhCsIbBiOdBiOz@mKMyIUgL_AmLgB_B_@iJ}B_L_EoIuDyMsGmKsHaLaKcOmPeNkRqRg\\i_@wo@mQeVeOuT{KkOyNmSwPwRaKqKqGcHaS{R_d@u\\k]uW}o@wd@cm@{g@gPoKkNqIuRcQ_\\i[yLeLeE{DmNgPkJmKoJqLwBkC{HsJqSyYsBaDyLgRyPyXsK{R}HiP}\\ut@wAeDuA_Duc@gfA}D_MaCeIkSsq@cD_NeWseA{QagAgKcv@iIqx@{Fwt@oCkg@eC_p@sAmv@eAe{@]ss@wBmsEoCo~AMkFeA_d@gBan@}@_[uFk|A}IibBkJs{AyGwz@oKsrAwK_iAmKcbA{@iHuLicAiOmjAeVwaB}Wk_BqSwhAsV_oAka@}jBkTg}@oZmnAog@u}B}TsiAsTslAkRgjAcOubAqSwtAoHof@gKeo@cKkm@sTggAwNko@eJm_@wUmy@cMy`@_Mc_@yKsZiS_h@i]ex@iWih@uRg_@cCyEo[qi@cJcOs_@ij@iTgYw@eAyf@mn@}i@cl@e[aZ{RiQmk@_e@}l@ob@k]{TqZiQal@{Z{iBqs@{hB_h@acCuj@usAkZwhAoXsvAa]kwAi]qvDw~@m`A_YmXwJmYyKeMyFca@yRag@}Zg^uWsOeMsMeLo[wZoc@gg@cRgV_NuRqZ{e@kPeZ{Qc^eNkZaR{d@cTcm@{Tyr@cUsx@qRwt@c\\qpAkNqg@qNkf@aE{LkS_k@kOy]eQ{]oKmRgMcTaSaYiUwYgRiToPsP_WsUmOmLiX_Tm{Bg~Ac_@iYyY}Ts`@w[oXoUgl@ij@}\\i\\ej@qk@oq@_r@}]o^ya@qa@kq@gx@w~AqrB_{AsoB}tVk}[}o@sx@kW{Y_U}Tef@qb@ca@e\\y`@mWqg@uXiv@}^ac@kSq_@wRi_@iVyd@m`@u_@}`@ma@ae@gb@af@ci@ei@c\\gZwRoNqO{JwO_J_QaJq\\yNw`@cPke@_Por@gVkx@_Zop@kVa[qNkXsNy^}SiU}OcRaPwQ}PePgP{NcQk[ob@o]sh@}NcYeMoWqJyTgKcZcIoVe[alAsOgr@sOyx@sl@yzCa[otAk]mmAgXis@oUsh@w^{o@cSiZy`@yh@q_@ka@_dA{aAqaAo|@gZkZkTsUuPoSaNwQmRmYiKkR{JuRoJkTqIkTqIuVsH_WqCoKmGyW{Gm_@aEyWcBgOaCcUyBeXaB{ZaA_[]sWAmZRq[b@aVz@wXrBgf@vDip@pDai@lEkn@xBs]dCeb@pCqi@z@oWx@kYp@cl@Kac@gAkf@sAs[iBuZiDq_@eDuZaHqd@uEyVyFiXsGeWiGyTsFiQqIkVmJwV}Qma@yBeEmSo_@qTea@yUm`@}Yaa@_V}[qj@_w@_aAkoA}_@qe@wSuYgOeXkPa]sIuQqH}QeGkQsKi_@kIy\\qNgz@cEiVwCeQqIoc@oGuXiKs^cJaYmIkTkJmScMyVaP{WwMmRee@mq@mc@}o@g`@an@ea@yo@cf@ay@{Y}b@oOmR}LyMkR{QuNuLyZySoXiNyNmGoRgGaNgEeTuE_RwCcRoByR_A_YYoa@tAq_@fCog@rIg`A~L}YhB_XP_OEiWkAeR_BaZqEiRoEaQwE{OqF_NuFeOcHsO}IcO}Jk`@oZmZgXyV_[gTg^yU}b@mJqRmH{PiNy^qK{\\mJc_@wQez@iLkg@qQgu@iKs`@_Nya@aNm^uOy_@{Nu[_OeXgNkVsa@an@ieAo{Agd@ap@q_@oj@kq@y`AeTiYcRsUsVuX_\\k[m`@y\\eTaPeuAagAw|@gt@u`@c`@g[s\\kq@w_Akq@ogAug@w_Ama@{`AqmA_|Cy\\{z@gUsi@wLuVaMeUwUy`@yIwLkQmVsNuOyQaSgd@ia@kc@w[ig@iXoe@cRex@{Ysd@yKmg@yOoe@sOoTkIePmH}SqLUM_WmQaUsSkWaY{QsViQmZ_Ri_@gJ{UuKm[cHaWuA_FwJ}f@iHof@iL_dAcF_e@kGwc@_GwYgHqZqI{XoKqZaEoKoI}SqOe_@{IgUiMi_@yHkU{HwV{HyXoJsb@yHca@gDaQiuD{nRyKec@oOcg@mVyj@q^al@mG{JufAi}Aye@sn@y^sh@uF_IqJ_QeLkTcKwSw@iBwMo[mCuHyD{KeL{_@qKeb@wFmVqF_VkG_UaEuOwFmQoFsQ}J}XsFiNcKwUaJsR}^mp@o[id@}[__@uY}Xe]aXiHmEuQcKoOeIsOqHkPeIsFgB{Q_GiRyFoRcEiXeFoDi@iBYmXsC{Ki@iESwRa@eRDsRLuS`AmGVqh@rDoVnBkVx@qk@GqVyAaWyDmWiFsWqHis@uV{s@iRej@oHmj@cBkWNsVfAaWlBeX~Dmm@lNo]pIsTnF{D`A_[xG{]vGcUvCcW`CmUdBmW|Ayl@\\em@c@iWsAsXeCaWyCeGi@sq@aGsiAsQq}@mVueAmk@qkGgxEseAko@osAo_@crAgSg^t@e_@zCe|AtP}e@nCef@Ruf@cBkf@}Ek_@yGo^eIgU_IgViJuf@qVyHaFse@}ZkWwQgV}PeTqNsXmOsRcIkH_DeMmEqTaG_UmEek@qFeUy@yTCwOh@kBF_GPc]tCey@hLcx@tNgd@tD_d@f@is@xBe_AxHgoC`a@{xEjn@qpE`z@oe@fJye@vGkd@dEq^jB}Vp@aTJoh@c@anh@utEwJ{@wzAgMo]gC}}A{BalBtSwaBjl@aaB~k@_kAhs@q{@bc@k]nMkOtE{NjDac@vHkLfAcOvAqVrAsU`@kXVaXQ}PHmPHkk@jBcF^kKt@c]dCy\\`G{U|HoRvGi_@zQySbMgBfBiShSg[fYqVf[qR|[{A|CuHlOmFrKa\\xu@mJjRaEfIeOdW_SnW_JlJcUzPqRxKkTtH_]`IyKjAiKr@qS[iFQuIaAeRkDoNyDiK}DiPcI}c@yYgMaKiE{D_MuJwJuHwKsHmPuJiCUgm@kZeIkEaLeJwM_M_NuOyL}RgIqQaIcTiHkTcFuRuGwUmFaQuEyOwHeQoJyPuIsKiLwMmJeLiOaTmM}SyHmPyFgP_G}QaF_SaEiSmC{LaDcPyE}TeFqVsHmZ_IeWuHuTqHoTeJoTuGyOsIeQkI{OqFmIuCoEaPkTwSkUsQaSqWcZcNyQaDqEqBcDoDkGuEmIiFmLuGsQwI{Y_IyYoF_RwE}NcGcO{DiImByC}BoD{FeIkFwF{H}FcJyFmJiF{HwC{F_BiIcBoKcAeMo@o[]sMScKm@uMaBkK{BuGwBoJ{DsFqCyHsFuJyI{GiHyHyKgGaKqHoQwEyMoDaNuCcPyBwPuCuZiAoL}Dgb@uAaKwAaK}EqY}FuVwIm[uFoOyLqYeQg\\iLmOmJiLuIiIuK_K_LoIyMqIwQsJec@kTuHkEwHeEyI{FaJeGcJeIiI}H{LkNoOwTkK}PgHwNcKoT{HyPcDwGoGyLqJoQ_HoLsJgO}D{EaGiHwNwOuJ_IgOmLyHoEiN}GkNaG{L}DoOiDmO}BeKu@aRiB{SM_WKgW`@oUz@kZhDuZzC}Q`BuHf@kLt@iWZwQJmP@eViA}Q}AkP}@}c@qAqb@M{\\dA}YtCgQjB{AX{MhCcJjBkKxCyCx@qFxAeZzJsTjKcSxIkDlBcFpCoSlK{IfEyAr@oCz@sK~DgIbCoI|B}DZsCTkH\\uJd@_JImF]iJ]wJ_B}IoBgCw@kEuAmGyBgMcGgH}DcH_GgG_F_F_FgFkFmIyJ{J}M_MqR{MsUkHqMoIcPyE}JyE}JiJ}RoIyRsJmTqKeUmKcRaJqMkFsG{F}FmHcHwIeGcLiG{MoFsMkDkLeBiNw@iKMwNj@sNlByPlDuP~C}KvBwMnAeKb@cJIsJg@}Iy@kQeEsP_HsMmIcKcIiKcKoOgTuZmg@mQ_YqOwTyZw_@yTcUwPkOcQmNaQuLqNgJe]yQqPgHeLkE}SyG}V{GsXiGmXuGiVwGwWsK{MiIuNyKoMiLiOuPcTiZqXkg@mJeR_KiO}MqPiHiHmHeGmImFcI_EsHqCuHuCeIcBeMkB{Im@uLOyLV}d@nAmMQmOcAgWcGwJiE}JaF}JcHoHyGoSkUeLuSyGeOcKy\\kGs[mFg`@yE{^uFi\\}Kmd@yMg`@uWmk@eN}YuBqEgL{VqN}[{Lc[iIkUiKe^qLg[cQ}g@sJ{XwHuToIcRgNqX{MyTaL}PwIwLqJeLuI_K_JsJiSiSmM}LeOeOeQaUaHoMqIyR_IiXmEeOiDkNuGgW}G_ToJeVkK{SuMuTsSsV}MiMiPiMuPsJiOmHyOgGoRaFiP}CeYqC_Sq@qXAqTNgOKwRuAqR_EaR{G}P_MiM{KyUo]_KuR{JgSoN{V}FyIcC{CyD}EyI_JmN_LaWoMu`@aRmWsPwOcPaByB_JsLwUu]cLgOkJ}KeLeKmK_HoJ}EiQaHc\\gLoZeLgR{Ika@qWiZ}SuVyUgPcSaHkHuQkRiWkYm]m`@qj@op@gToW{UmXsQaTqWkYiXwW{UySeQwNiWmRsT}NqUiNiOqJeSmMoOkKuR{OcS_SyR}WiNaV{FyKyGkPeEoM{C{N}C{PuB}RkAuRa@{REcVbAgVdCgWjC}OdF_VfEeQzG{WpDsRzCyR~AsPpAaWHeTWg]OqSAgSTmS^eIZqGzAwPnBsOnEkUnDiPbFgRzJ}]fFeRvGwWtGmYjCuNlA{GlF{_@fCoWlBuZrAs`@zAy{A_FkgBcRizCiAs|@o@ob@{@ie@cAig@eAyc@gBgp@aAsc@gAw\\sAwk@i@mi@IiZHq]Z_`@XyNf@wY\\uPh@sOVyHjBs_@|AkWt@uNxAySnB{WdCoYnCgWfDwZhDqVpCqRnCkR|C}SlFg[~Gu^bDoOnIo`@xCiM`H{XbGwTjFwQxL{`@vImXnRkj@tYcx@tDwJzHeTnJsWjKgYzGkSnGiSbEaMdIuTtJyUvJaTrGgMfHsM`JyNbGkJ|DoFrEgG`FkGpHmJpOoPfN{MjM}KnKiIhKqHlJyFdMqHfIsElHqDrI}DhGuClLeFxLyEvJiDfLcErKqDxJyCtKcDfKwC~NaE`R}EnNuDdOgE|LwDzLeEvNsFdK{EfJuExL{GtLyHbLsHbRkOnImHvIoIjJwJ|KiMvIwK|JeN~GsK|FaJfGgKdHwMnIePzHiPrJoSvJsSpJyRtJiSnHyNhIyO`Ri^~IiPfJ{PxJkQxNcWlRs\\dN{TxEaIlEgH`IkMvMwTlG}J|I}OdHgM~G_NxG}MdH{OxFgNnHqQlIcUrHgSfFmNrEsLzGeQtHmRdIuQfJwRdHqMtHuM|IcNhQyUlIaKlLqMdLyKrJyIhKcJ`KqIxLeKlKyI|LaL|HqIjKaMzFqHvE_HtF{ItGqLdFaKxEkKzFyNdDoJzF{PhMkc@pGuUpFcTnF_UzGqY`DgQfEwRfDmQjEa[hD}[hCkd@b@_VHg^o@_XKyD}Am[{D{`@}D}WiDyScFyR{FeTkH{TaImTwMkZqJiRwMyU_PoWcVsa@uMkU}NsYqRmc@wMq]yHoUyFyQgGuSwCoKqAwE{EyQkEmOeAuD_EsNwCgK{FyReE_NiEgM}EmNiFqNkF{MaFqL{G{OsIcRsMyWmI_P}K_RaLcReKeOwGuJ_GyIyF{GwEgGcEqEwLuMgDwCgEcE{HwG{LeKaL}IaGgE{G}EcEyC}F}DuGwEgRkMoLuIoKeIkIqG{DaDaGaFkGaGmGgGgFqFsFgG{HwJqGuI{D_GaGeJkHgMeHuNcGyMyDiJsD{JkD{JaCwHkBqGeBqGcCeJqBaJgBwIyDsSyA_KeAiHoCsTkAcNcAgN}@qOk@kN_@aO[}MWeREaDOgIQ}POcTWmUa@}S]qPo@qQm@}Lo@}K{@{JiAmMgAqJqBcOsAqHgCcOk@{CaAeFuB{IyBcJiCeJsBmGwCaJ{D_LaEoK}DaJ{EqJqH}NyFcJ_CiDmBqCoFcH_FoFqGuGoFeFcEiDoEgD}DqCoEmCeFsCwE}BuJyDsHaCsHwBqEiA}JeBsGoAuGcAkHkAcIoAoKmByEkAeHgByGgC}GyCuHqE{DoCaHyFeG_GwGqGaKwOkJkQmHeQwG_TuBiJ}AyJgAeImAeK}@yJi@kJ[gMM}K@_KNaL`@yLv@{Pj@gKz@cPpA}X\\{Qv@m]Xc]Yw\\k@}\\y@cZ}Am\\aBaYeBeVuBkXeDg\\sDe]iFk`@mFa]_Ge^yGs\\sHs]eIoZuHiUyK{YwMkZiMmTmI_N{MyRcM_Qca@wd@qD}DeFwF{VqXwA}AmX_[mXo]mMiQqOwUsPaZ}JiSgJkSwLuZyMw_@oIuY{HgYsJge@eGw\\aHef@eDaYcCyYoBcY}Ac[iA}`@a@eWc@sf@G}b@Y{Zq@kb@m@uRiAe_@a@}LeCgb@{Csf@eEsg@}Dka@oCs\\qBwa@i@yb@d@iW~@eWfDga@jFu_@jF_W~EiRnHaUrL}XjGgMvHaNpHuLn\\eg@lMgUbKiTlJ{VtAsDnGmUlI__@dHi^bDiNbFuR~GcUrHaS|HwQdYyo@hLuXtYe|@tXklAlFkuAaDaqAqEeo@oIkx@kDsX}Eyb@cImcA}Bcf@u@m_@q@av@Fax@Rcj@h@_j@tAas@lAsd@xBsh@bBy_@fC}g@tA}_@l@i_@@o_@Y{[aA}^wCgo@mCsf@mAa^q@k^Ss^b@c`@RkNf@sRzAyb@~@u_@VkUMiXa@cUyAiWyBiVsC{TgE}VcEkRyNen@oDiReBiJyE{YyAwMqA_Py@qOy@wTU{YXyPn@}U`Cg^zCoWfFwZvCuOzEcRtIuV`DmJzPw\\`Vi`@rTs[tO_XnQ}\\`LgVfKiVvGsQzFkQhIqZhJy^jEeUbFcZpDuWtCaYrBeUdAoNvA}Uz@mV|@q_@@k]AsP]aXs@eTy@}T}AaVqBgWeCsT{@{Hk@kFuDsWsCqQcAyEwQu{@eGoXo@sCgM{o@iDeX{BiS}AsPoBwR{AoWYyU[{YEyEb@me@tEc{@|K_`AbFcq@d@qw@~HqiA~Dmp@nAsWz@eUv@eVt@mXn@yf@LoYCw]Q{Zg@_]w@k[gCif@mEud@wCuScDgSeJaa@cI_Y_G}OuF{NwJmSmPyY{AkCkKoOeBsBkLgNaViViCiCqRmRs\\u^kMgSgLoSkHyOsKaZsF}RgEwQiGm]kEk]uBe\\q@cUQgZl@a[nB}_@|ImqAjBob@b@m^OqZqAy}@Suc@Ja\\`@u\\`Ag[nBke@vHcvAlOa}CxEacAhKqqBjF_lAjBsd@tAka@Fke@Mc\\}@me@}@}ZiBs]iAk]}@c]EmW^aY~@sXbD{]rGoc@nIm_@fHeYrFaUlGyX~Fs]hEu]nBgYzAcXZ_SNcc@gAck@c@gPIuDkCgf@gCq`@e@cGeCmZaF}g@uf@o`Dck@cqCiTacB_Po|@_i@upByYchAe^axB}Joi@c_@ejA_d@mpAyGoYqFu[mCqWuAmTiA}XUaXZq[vAk^|Bs^~Cwd@lB{d@Xgd@m@aXaBa`@iCmYwDqX_FkW}Nav@aImb@iHaf@cI}p@oHwt@yGqt@}KkhA}OmbAiLgl@gUibAcsAydEoNan@y\\yeBcYwaC{MaiAaYc}AiQeu@cg@qwAqn@cvAwWym@kKaZkKy_@oI_b@uEi[g@iDsFcn@iAmVwAk`@v@wp@xAml@lAw[xAq`@~@mf@Cw]a@c_@aBw{@Rud@nAcYjDc[jF}ZlIeZjTeo@bHmVbH{Z|DwZ`Ca[bAeZa@qf@yB}v@y@}]v@uk@fCo[|Fae@nLql@pB_K~Ioc@hG{d@nCeh@rEsz@rEez@vFqf@pGs_@lL{_@`Wkg@jUiYrWcTv`@}OjP{E`SyEjGgAj}@{Ork@wNxb@qTr[iUnc@ie@rRa[`MsVbIyQpRwh@bRgs@~Psx@nNum@hSmhAfQcz@lWsmArK_a@fOqc@`Sse@|Uif@di@ww@`n@uy@rSy\\vPo\\rK_WlKoY`Ku\\bE{OdEgRfFaXhEiWvScrAxOo|@rHa`@nG{YvKmb@v]idAvKo[`Nsg@hPin@hNcj@xL}g@bPo~@tFk^bLw{@bMurAzHqnBhA_y@m@gqAcCmcAsDo}@_Fmw@cCmZiEgc@_Foc@oFs`@kG{`@}Lor@cOoq@aRau@_n@gbCuHe[{EqSaKag@yKyq@mK{s@gHus@cFil@cE}s@kBuo@gB}m@m@ap@`@gjA`Ag[`Aw[z@oXrAgX~Cun@|LcnApQ}|ArOgrAtKa_AtF_d@zQa{A~S{hBnMycAhDiZrNslBt@wk@[mh@iBao@aCa^_Ds\\kIso@oIck@cU_{@{Sqd@qI}MuPyWa[ic@qDoDyRoRcPsQgQaPa^yYcX_Sad@i\\sGyE}IwGkN}Lo^oZuY}YqJ_KmJoK{NkPcPaUsPoUyLkS{JoPiLyR{AiCsWye@kO{YiRsb@kRye@wNsb@mIgXiUo{@eNcm@cLem@uKcq@cKky@mHst@gJoaAoHm|@wJgkAmCqZ}Nu_B}Deh@yBuc@KyD_A{\\_@_w@As@NepAn@s~@|AwgA`EsvAjAci@tCoj@dEuf@~Eib@`Iqd@bQow@tUc|@dSyl@dN_a@xMg\\zKoWfN{[fJ}ShAiCnEcKnF_MrLuV|EaKrOq^nPmc@tRel@zR_q@bPov@dJuf@fHod@xFq^vIm|@vAiUvAwTVaG`Bo^tBwj@|@gr@Kar@Qia@kBkq@aDwo@}Gu|@{Hkr@eCiRkSenAkS_`A_S_o@iL}[_HqRsTqk@_[yp@}n@}bAym@qy@ey@{z@id@{_@co@ec@iV}MedAqa@il@aR{]_Gw[qEoi@{G{d@}Caa@a@cd@~A}a@Tid@Lob@e@m_@qFcd@qLa_@{OoVmOk^sWwYwYmXy_@yj@kt@oQoMuZuTch@_Z{RaNaDmCcKoImAcAkQiRyQqV}HeOgGcMyEkK{DaKiDgKiBuGkAiE_DkN[_BsBgK_C_NmBsMy@}HUwBcBcT}Bg]u@sIuBoVsD_[uG_YiD{Q{DaRiGuT_JsWcEmJ}F{MkYyh@_KyQaKmTaQea@sLa_@gJca@}Gka@wDgb@_AwZk@_UKqNTyO^kS`AeQz@sMtAsSlE{b@nDsUvD_W|Eu^vCk\\hAcR^mORaMLgQWaJ[sTkAuScBcToCsVwH{c@oGmVuFcRiO{_@wKqSiJwNuMoQwPmQoM_LqIeGkK{GyMoGwNyGaMiFqOeH{TeKcOsHuRqLuPoLaOwKqNoMkQsP}O_Q{R{UwRyX}NsVmKgS{IeQuKmWuNe^cJaYsKu_@_HcXkIm`@gGu_@iFw^{Esd@wDuh@mBoe@o@oe@k@ia@o@}c@s@oUwAk^{BkWaEc[}EqYiH}[iHqYeJc_@eI}\\qHkb@eD_YoCaa@e@uOYeSGe[BqMPiI^uLx@{NjAqTv@mNdAqPn@_Mn@mM`@oKPsNNwPFyKIgKGuHc@kLc@oIg@aIs@}IcAmL}AyNcBuMmD_TeDaQiCqMkDoOcDcNsDoPwCcOsD_SgDgTaCeRwAuNcAsNi@wN]{POkNCaPN}M`@kPbAgQfAeNlAiOhBkQzAqMhByM`AkGpA_LlBwOzAqMnAmMlAsNdAaQp@{N^mNLsRAgJAqIImMw@}RiA}Su@eJW}CiBaPiB{NoBuK{CgPeA_FaByHuDwN}FiUiKi`@aLq`@wFo[eEcYeCyRwEge@kAuYmAsd@uHgz@sFgv@qIckAeJycAiAkKkCgWuEwb@eDySsD}RgGyVkGsSmGsR}FuNgHeOaHoMgHkLqGqJaMyO_K{KuSwRem@_k@iSaViQaVqRy[iS}c@yHeUaKs\\oJec@qJ{m@mHon@}Iit@gIqm@iJci@sL{j@GWuHu[aHaWmIiY{FgPiKkYuD_K}Q_f@mVap@aKc\\gIo[uH{\\eJuh@yCiViGgj@_Dsi@aAsd@a@ki@o@yg@Yq\\eB_c@qDya@cBaOqA{Jo@_FwEkXuEmToIqZuD_LqCmI_GoOoLeX_MmX_MkYmNw\\{Lw\\cIyWkLqc@aBuHsBkJeFyU{EuWuC_RwAeK}AiL}@_Io@mF}BcXeBaYiBkb@{@y[WsYMg]Vy^z@c`@xBug@dGmx@rDqf@`Dgg@t@mb@Ag\\_@_ZuAc]}BcWiBiQ{DiXmFe[}GiYaF}SgGyU{G{ZuDgTeEmUoCiT}CwZkCi]kA_[iAc\\c@{]Gwc@C_d@a@ab@mAuTuAkYiE{a@iHm^oGmZkMwa@iMo[{Tcc@_Qc\\wPy\\eJuQsJwVoUgr@kKe`@oGkWcDgPwDmS{DaWoDaXyCoW}B{VwAsSiB}Xu@uWy@c[]e]MsYAqSSaZ}@a`@{AcWoBqUwCiXaEoXwEsVgFmTsEyOoFqPoHiRgKiVcIqQ}IcTqJuUwJmYoIg[uHi^kCiQgCgTaBsP}Bs\\oAiYcAkReA_YyBe[sBg[sBqToEi`@}@oGeEkZkGke@aI_m@CUmFo]eDwWeEm[iCmOoAoHuFw^yBsPkAaJsCmS{B{OqJoq@gHsh@gGac@wF{a@oPgl@}U}m@{GsQeC_GmDeIiCoHcP{d@yCiQwAoUc@{Vd@gRz@c]VqJp@gU|FesBvGkuBxQkeGs@qwAeE}xAkCy_BjA}oA[ijAaL}qAaUakAaa@ucBgm@wgBul@_tAce@_s@_n@km@ygAqv@qk@}c@oq@yt@guAmkBuWqVo[qOsXgJuXuDio@eDydBsAkp@wDcp@_Nqi@{Vam@of@sh@{r@q^_v@m]imAy[{cCeOs~AkDqmAh@eoAvCatA|@e}Aw@yv@uCkz@iDyx@_H_l@qXkjB_Mum@gReu@cm@yrB}y@wuBa]{u@gRu_@cSka@cL{Rir@wgA{oBarCi|A}yBmpAsuBs~@afBqw@i`BaDeIeSyg@uXov@uU}x@q[{kAc\\ggA}Z}pAyz@igDmh@usBkSicAgLodAcIkoASogA~CykAhJujApN}jAxS}cAnPgfA`LqhAzFy_AhAi_@Wcr@sAwh@oFos@yGqn@uHui@mQqx@yUuy@e^}w@ub@qt@_aB}vB_{@qz@icAcs@yx@q^on@}Ucy@{Sq_A_Su_AuVq~@w\\{dDm~AgaA{f@ej@g\\arAm`Asj@wa@}z@sg@o]mNoe@uQwk@eKcu@}Jk|AyHe`@oC_e@cF_e@gHmr@qRyx@y\\ev@og@{j@we@ql@ao@mh@yr@_k@sy@i^{o@q_@ct@uf@}iAoy@_pB{f@_pAq^_`A}^yw@ka@ev@sk@edAw^sq@yQec@cTyj@uPch@{YegAg\\kmAeOud@_Q{a@eYgm@qr@qlA{bAugBoPc_@}O}c@yNkj@mLql@{c@ojCwO{z@cVg|@cYwr@cb@g|@_dA}qBqd@yq@oFqGaY}\\gPmOgBaBgo@wp@kr@_t@aZ}\\gYm^gRqX{RuZ_PwWuNaXgVye@_Wek@up@{~Awo@k|Ay`@s_Aac@y_AuM}UkfA}aBsk@{cA}_@eaAwWc_Ai@iCiQcz@wgAazGAGqSsfAkVkbA_Ni`@_i@whAo]ok@gZs`@oa@sc@ed@u_@cl@u_@ar@ob@qg@e[a^uYuf@kg@ms@av@oo@{l@ao@qc@qo@e]sx@m[_n@eVgg@oYkk@ua@mc@sa@ak@eq@g_@cl@_[yl@kEwKcR_e@oCaJaL__@qNym@aBsIqFaYcI{k@cFwh@KcCkH{}Ao@ep@PyD|EqfA~KswApDax@j@q|@hDcy@vF_q@~H_`A~^_{DdHeu@|HgiArAmq@I}o@oCu}@{Ha`AuKmw@eM{m@_Quk@eSii@uUcg@u\\{i@_\\ma@se@{i@gk@an@aa@kh@m`@aj@sZyf@iRw]y@yAc^mv@s_@uaAy\\ugAik@euBsRkm@eVqn@wYan@ca@sq@qe@mo@miAasA{`@_k@q]}k@c[}p@iR_h@yUku@kMcj@oKcm@oImp@oFkm@qEgr@{Ayq@OymAxEotFfB{kAhD{dAjC{`A~OcoElBqf@lDgrAh@mi@Ge^a@yVyBcp@cDcd@kIgo@eJwj@a[kdB_l@auCwk@cjC}Tcv@sT_q@gn@mdBej@crAg_@}|@qwCceHw`@cuAyY{rA}RouA}G}eAkCik@_Ag\\qAiq@}@yo@aA_s@k@cZw@}TmHecAeQieAsXwaAcEcLmGuNaLyUeHoNqRm]gb@qs@wEaI{HyNwHmNeHuNsGwNmEmKmEcLgFaOeEqMeEaOcEuOsFmVeDkQaDwRcCuQ_CqRsBcSkB_S{IkbAiDc\\cC_SiCeRaM}r@eF_VqEcRuEgQoEwPiGgTeHuUsSuq@eJoZ}CeKuE{Mu@yBOa@eCyGqGeQiA{CuDeK{AiEum@mfBgNkc@mEsQqD}Q{CoRsBgRmAcOu@sMa@ePK{M?wM?iGrDgbCjC{m@hDs`@xBqNrCkQlDkP`FqQpJeYbIyQnGuLzH_MbJiMbJoKfJiJvEmExOsLxM{Izj@w[v`Bc~@|`@yThUeLdG_DrDmB|QsI|`@gQrVeL`YmNfXaN`N{HvR{LlXqQhSwNtQsNjV_TbL{KfVeVlUiWzUiYnYe`@lSqZnMsSvMqUlSk_@jRwb@nJ_VpJoX|GsTpK}_@hJ{b@zFwZ~E}Z~Jgq@xJun@jD}OfEgQjFiQjGqQfKsUxLeUdPeTtIuJbLwKlQwMrL}H`SkLnSwKpZoPl`Aei@`ToNnWuT~VmXlOmSjN{TtHeNnHiOfG{NhG}O~IiXrL{c@`EaQ~EaVfEyUxC_RfEuZhEe]`Fyd@lCa[nCm_@lCqg@fB}d@fBmm@bByk@lAsd@tAoh@rAkd@vAyg@rAyg@~@g[tCieAx@i[xA_b@rBce@nC{d@dDif@nCo\\zDmb@rFyg@bGaf@jGoe@hKuw@rGif@dGwd@bGwd@fHgi@`McaAbF{c@nEsd@zCm^|B}ZrA{SdBmZ`AkRzB}h@pB_g@@QnDay@~Ac[pCwc@nEck@tDi`@bGwj@jGcg@hEc[nGea@tGa`@fJkg@hJ{c@xH}\\rIk^~T_y@lUmu@bMy^`LkZlOq`@tO}_@r[yy@hMw[pI{UjMs_@`Lm]dIkX|Ig]tJe^nNml@jJ{c@tGk\\jK_m@tJeo@xKwy@|G{o@rE{e@lDwf@xC}d@zBwb@pDecAt@}\\zA{oAHsRGmSm@wf@qAah@sBkf@uB{^uEmm@cFaf@gCcSmEq[mE_ZcJof@cJsb@_Lae@ePkk@iI}WsGuQoO{a@mSck@aWcr@wQag@cOka@kJoWyJaXaKsXaKwXsSgk@ee@spAof@osAmOmb@}JiXeKuZ}E}OqFsRqDoOoEsTeDsRcCaQkAmJqB{SuA}RiAqTu@{VSqZF{UXuNn@cUnA{ThBwTJiArCoWvEq\\xFg]lEiV`c@{}BlLmn@nDySfHce@dGqd@vEqb@|CoZnDk`@vMadBtCg]vFqk@zCoX~Ggh@|F{`@nGk`@~Jog@`Lkh@fKoa@hP{l@tIuXbYy{@|Mca@~Lsb@tJgb@|Fk\\rDyWtB_SjD__@hA{TnA}e@Ng]Qg]_Ag\\iBo[yAuSkDm\\iCmRyCeR{CePqF{VwI_]gJuZgQ}i@sJyXsFmOcLcZeHwPoJgUuLcXaLcVuVgh@iYom@y]}t@kHyO{H}PuSmg@uFaOkG{PuGsS}GsTiJk[cJe\\y@yC{Mag@}Mkg@uNyh@}Vy_A{Nah@qSyw@_Vy|@aSst@__@}uAuMkf@oIa[aRor@}HwXqMy`@eKgXyKwWkIaQ{K_TiNgV{KsP_QgVaK}LyOoQkPwPsJiIqWuSqKwHgIkFiOaJiWiMuMiGyNgFiYkKyZkK_ZwKwWwKgQ{HkW}M{SsL}CqBkMkIq[yTsm@uc@eYaTsi@a`@kv@}f@sw@}d@{\\sRaWwOgFaDoSgN_KeHgNeKmYmUeKmImRaQoW{U}LkLc_@k^aScSub@wb@ub@gb@q\\{[qn@an@}lAmlAg[mZyT{ToWuW{[y[oScVeSkWyNkSgMaSeMgTkLsT}LkWmI{R_JqUgHeSqJiYyOmg@sLs`@aMya@eSkq@_Syp@{Ouh@gPcj@{ZidAqRyo@cPgi@eZ}bAwZidAswBskHac@oxAoZ_cAqMma@uIgXoSol@eSai@yNq]sMcZgRea@{Sca@kM{UmMwT}NqVa_@uj@cNyRqKwN{Vk[iNuPiOeQ{Yg[wJwJmZkYaQyOcPeNab@q]yQaOg\\mWo`@{Z}YyUyP}NcPuNuJ{JuOgPcJuKcTqXsOcUqLeSaHuLwH_O{KiToLcXuJuUkJyWgFcPuG{TaJo\\iBaIsD{PsJib@sO}s@iM_l@uRu}@yK{f@eWykAuMmm@eOer@cHqZkKab@aIoYiDsKm@kByFwPgNo^}O}^qPs\\iMqUgSg[kNyR_OgRcPeRqI}I{V{UgKyI_QyMuKuHaLqHgKeG{KmG{KmF_LiFcSiIsLiEgTgHu]sJy\\eIuZ}GgVaFmp@eN}VeGoT}F_MsDsSiHgYaMqX}NkKyG{IcHcKcIeGyFmGuGmF}FoH}IkI}KyHaL_FgIsFyJuGmMiG{MwFkNyFwO_F_PsEkPeFkTmEgT_FsZiC}QeCeRmD_ZmF{d@iFad@{DmZeEoZkHsb@kDsQyGeZyGoWiFgQ_FyOyIwVuFwNqGiO{KcVuLqUwGoLeNmTiNcScOqRwNqPgJuJqJeJqJcJkJwHyJwHgLcIaKwGcKiGiLkG}QsJaLqFqRuJkU{KeYaNoL{FcRiJaCkAkUcL}RuJwPkImFiCijCspAkGmD}EcCqOuIsMuIgNaKsMwLwJcK}NcRsKaPiGwK_JuQyGaPuG_RyDaMwEuQgGoY{C}RyB}PgC}ViBmYkAaUmAq\\q@ia@Ko^H{^^{_@~@_j@l@k[d@kc@Re\\KoZg@ud@y@kZM{CyAa^}Ay[uCsm@eGmkAkBy^sBcY]}EmK{yAeQmwAi@}Dm@iEiF_^}PkkAgG{b@_Jul@eBkMs@cFeOkvAcUexDwKmnD}Ps`GaHmyCeA_jAdAwzCbCwlA`FqjAtRyuCzIg~@lUoiBtO}bAn\\_fB``@_aBbBkHx`@{{Azw@}wCjd@uaBt]mrAp_B}aG~m@q|Bzu@igCz{@saCzaAk{Bp}@oeBlm@cfArkAcqBfe@o{@f`AgxBvw@ofCle@gtB|]ayBdU{|BhM_lCnC{tAdGo|HToZtAycBbDelExCapExAekBdD{kE~GgtFzKgbDtNubCfSubCzdAohKdu@qmHbTy~B`G_aApCsp@lAga@fA}f@f@_q@@yt@Wid@y@qh@mAob@qBij@aEsu@wFgv@eIgz@yJs~@gL_eAuFmk@iF}o@sAqUs@wO_Cmq@m@}^M{_@Jcf@b@{ZlAwe@DcBdBab@pCgb@xCs_@pEyb@zCuUpEg\\`Hia@rHm`@hIe^hIg\\fK}_@|IwYrKc\\nNua@tLs\\~Lu]pJmXpJiYrI{X|HaXnK_d@pEcUnFeZjGee@tCmXlDag@~Ai^r@cVXgt@U{^kAsa@uC{w@sAg]}Cqp@mEogAgB_l@cAg`@]gQs@cg@Uo\\KyV?wUDgn@p@_v@|@{p@fA{d@`B}f@dBu]pJgcBbSmbCjSg~Bn@aPpGwcBUalAqIylBgQa{AiYkwAg`@gtA_~Cg}Jc_BivEytAkdDyzAi_Du}@{gBay@sqBul@yqBkc@orBw_@gkCmQ_uBsIwpBwBacCfCgpBlDa}@nLw}Bxi@qfKlMgmEd@opEmG_aDaPybD{SsfCuYaeCy^o_CofAa~F{]{yBsMolA}HokAyBokAb@inAlFsmAxKyiAlQugAlW}fAx[ubAz`@{}@xd@ax@lh@or@`qBoyB`UgY`UwZvM_TzLqSdWwe@pN{ZxMqZ~IgVhIiU|HcVhIwXtQor@dWqiAdSe_Ajy@wwDdb@anBdIu[nN}q@xd@ccC`b@inCve@o_Ena@_`EnGs~ApA{`BcAst@cAw\\g@cO_LubB_Tq~A{Y}zAok@_lCa[coBcOg~AuI_gBeBmmBpD_sBlI{sAxIm}@zQssA~_@{lBzd@ciBdvB}{Hr@gCzc@klBbXiwA`PmjArLkmAbIqnAhEsmAnAcoAk@koAgCg{AiJueEiFkaBsMidC{Dsm@mF{q@iJqcAmI}w@uw@skG}IaqAkBenAdBelA`ImkAjPskAhUwcAjYw}@pe@}cAtg@cy@pmGqmJltAqjBhzAwdBbzFm~FxzAiaBly@sbAfOkQprCk_Edx@soAnzAyjCngEo}Hrm@qhAppAabCl{@wgBhcA}gChe@sdBfiByaI`Kwc@lJwc@xFwZnFu[nCoRzD{[lB_RbBoRvAqRlAaS|@}Rr@qRf@aS\\eSLqTD_QGkSQaS]_Sg@sRw@_SeA{RsBi\\_Do]uDa]gCoRuCiRiDkSeDuQ}F}XcFcT{EiRaFyPaH{TwLy]uGiQ}]o}@wI_VoJqYaGcSiDwMsHsZqCkMkC{MkIsd@uC{Pe@kDuAaK{AoNcBeOyA}NaBsRoBqZkAuUoAcb@c@}YS}WB{ZVkXl@wYfAqZlB_^xBuZlBmTpDo[`C}R`Fg\\lF{YpDyQrAeGfB_ItEcR~Ie\\xFwQnH_UzH_T|IcTnK{UfMyVrH_N|Re\\xNcT`OkSvOkSbOaSrY{a@hIwMvHsMvHoN~G_NhHqOdI{QrIoTbGgPtIkWpFwQnEqPxEwQjE{RhD_PfIac@lIcd@hHg_@bGgXpHeZhHuVfGcT~g@ooAneAwkC`Lu]|Ky_@rKua@jJsa@|Ksj@~EkY`C}NnAwH~Hsj@hHek@fP_tAtJgy@~Juy@vKey@tNgbA~QokA|RmkAfIyd@~Ime@vVaoAl`@giBpb@ugBlo@}bC|qA{oE`jCqoIbrAijE`o@ghC`SodA`RylAbNmiAxK_lA`IukA`N{vCvRgkDp_@wyDbc@svCdAgHpm@{{Cdj@myBnaAw~Cfx@csB`nAekCziA{qBpqAypBl_@gj@ncEqdGbq@abAru@kfAr_Bc~B|l@caAfj@ghA`h@ayAza@{aBjX_cBxO{dB|E_wAfAam@j@unA`@oh@bCutNiQ{jPaBgwBnAamAnFomAvRqpB~]{mBvg@wgBnp@k}Ap_BgpClnDm`GrbEieHv|AigDd~@}dCvv@gjCvo@umCph@otC`j@efEz\\}vD~[c_HfEev@zEi{@bJ{sAnI_fA|IqbA`TyoBrNshAzLo|@xLiv@j^usBdXurAdr@gyCpfCywJfd@kfBzaCwhJj{CogL||@wjCddB_|DtdCufErtCgqDnzG}~G~OkPhk@gl@p}@maAh}AmgBjNkQxr@y|@ty@qhArgA{~AhwBkkD|~AotC|~AigDdyAa}DjV{y@dV{aAhN}m@~Okz@jKgo@pIwl@nIsr@zF{k@r@cHlCk\\tIyqAzCwr@jCgcApAuaAFsp@yAw~FnFa_DnNwaCt[ovCf[ckBv`@{fB`l@qqBnx@qvBtmBetD~|H_lNfzE}_KxQ}]pRg_@vs@unAdd@gs@~|@uoAnnEc~FbcAwgB|{@spBjsAetElk@gaDnrAeoIhTmlAjv@oqDlKgd@rHi[tHwZff@}iBdJk[`m@}qBpNoe@t_AotCtc@atAtBqGfTop@@CrSso@dPah@~\\}fAb^glApT}u@`Tsv@pTqy@hXqfAjP{r@fMsi@rLai@zRc_ArOgw@~Nov@xd@clCfTgtAfKws@xJms@lQyuA|OsuA`OqvA|PkjBrGiv@dGov@~Gc~@fHqcAB_@fG_`A~Dgp@~C}i@|Cei@zFofAnFwfA~LuiCtJ{wBPiEzHkrBlq@ggPfl@umMn`@w}I~ZszD~YwfCf[osBdf@{bC|mCyjLjaFy_T`jCs{KdqAyrFxKqd@Rw@b\\}uAlz@{zDbLih@ba@q_Cz]c}B`OmhApYkaChVucChUuxCtPktCjRqeFnX_nIbRo|DpXsvDxXesCLiAvXm_Cd\\e~Bbb@agC~f@_hCjj@oeCpy@eeD|xAevFv`@sbBvq@uaDnh@gtCpbAauGf\\ajCrjAspKr_@uiD|}@gfIfq@}bGzVstBhOwjAb]c}BjR{fAns@gsDt~@c~DneA{vDfqCsxHvjDcvHzfDcsFdkF_~G|_Hy`IdfEi{GfvD_xHpoBq|E`dA}gC|gAmjC`eAaxBjtAqcCn|@iuA~zAmwB`QsVp_B_~BvlAomBtp@ikA|d@s_Ah_@i|@zkAa~CfiBclGxYiaAxiA_dDthBanEVo@ljDuaIbc@qxAbZg}AnOyxApFgtAx@oqAeKm}KeHeuHq@qrCpGayC~KclBxNi{AhXepBbd@e~Bll@cyBxf@exAdo@mzAhi@mfAjw@upAprAyeBhlB_lBznAehAtkAmjAzeA_rAh}@qwAbz@m{AldAmfCf{@quC~p@chD|Sw|AjJc|@|Kq{AbGsoAdIseEnEs{BbL}tBjRyuBfSqyA~[egB|a@igBxd@w{A~i@qzAv`BkoDpbE}jIrhBkzDp_A_uBtNw[rJ}SpiA}mCnxAcpDrxAqqDxr@uiBnV{v@b^q|AxUccBdImrAjCarAWkj@}DssAkJ{gAuOaiAcU{gAoXefAqt@uiCwp@ifC}l@kkCkTiiAq[ilBy`@a{Cs[ylDqAsNoS}nDww@}bSuIscDdDgbClRqpB|c@wxBdg@mwArp@{nA~{@whApR_TxbCmiCfeA{rAdo@i_A~k@uaA`k@mfAje@ocAdt@wnBpu@ijC`Tk|@jRk`AjMgq@~UgcBzZgaDDg@lS}|D~`@qwLxL}pCtCuk@zHubAfBsVhHyy@|Gmq@dYu`CbRopAxFc]dZibB|a@urBxKkb@nEyQd]ctAz^mmA|M}a@dK}]zFuPp]i`Ar\\o{@zGyOhm@{vAdo@quA`n@qwAvOo\\|n@wkBfz@ceD~Nwy@pF{]hTwiB`IqpAjHijBnDgkBu@_aAcBcaAiDs|@gFm`AqB_ZyAwQ}LgvAwM{tAu`@}bE{y@_tI_\\{dD{s@idHgE}b@sk@oaGom@atG{YopDqScjDkW{sFwCeu@cDyaAaPiyEiTkyGqLaoDsDkiAyNqgEwJiaDaBg~@C_a@Xs_@vDsdAlGez@hCmSzNmeAxVmhAvYuaAtx@_wB`w@ypBjo@}fBfTwn@~|@yrCli@akBrn@qpClZe`BbI}e@hH{d@v]ogCha@m{D`Q{{AjTypAh]_hAla@a`Art@mkArn@sq@h^oYxz@{k@hZoTfXiUte@ih@|U}\\fRu]rMmZbLuZlKu]nJi_@~U{eArReqA|Gkr@dEgj@`I}mApGugAjBqw@nA_x@Vsl@a@}l@aAc~@cBo~@oD{o@cEgs@{M_eBq`@ilE{Egq@oCmu@}A_jAdGgdBzDol@lFem@l|@soHh@oEb}@wjHr[amCzHyv@hEwo@lDop@Bg@tAyf@n@me@Eee@_@sd@q@{Vq@{WmDsq@u@kJ{Dgg@iE{c@wGog@yJcm@aQyu@ySwv@sm@qfBqNof@aKud@uFsc@cD_c@sAoYm@cYPa`@dBgb@zBwYr\\qrDvK_kAhL{`AbC}MxOa|@jU{z@`Qwf@bVsk@p[wp@BGx`@yl@nX}_@rZw]v\\yZv\\aW`}@om@dVkPjtAiz@tbCc}AxeAom@~PiI~N_Hru@qZfaAwZnXyGpL{CxKuBvs@oMlOqB`mAaPryAmQfk@yNbIeC|YmL|ZeN|RmMjQsMtQaNtOeNn^yc@|a@yk@zZ_p@jVwp@vUgw@lQky@rGah@|Gmn@xGwdAnGkqAzByd@lB}\\hDik@`Fwm@xT{mBrDiWz^sgB~BkKrM_g@bh@c~Ahm@muA`lBmdD~mBccChZi_@rkB}~Bpr@e_AvXsc@bT}_@z]u`AnMcb@~Kie@fM_t@`Fwf@xDyc@hDar@`Aqm@M{r@g@_l@cBwnAgE}jDTyt@nAon@bEyn@rE}g@tJgo@vN_o@lLab@xn@{mB|Ucs@~GkUhKy]tKuf@nHoa@n@qDvEaf@rB{b@PoRFiGUo\\iAyb@oBe^sH}{@mFgl@gEqh@qAu`@`@se@`Fci@vFg[dNyc@|Na[hRoZhVyVvE{ErWaShv@kn@pZ{ZxY_`@rm@ubA`v@srAjO{Sjb@{e@`g@ue@diA{cA`c@u_@zqA_jAf`A}`Apy@{dA|[{h@vi@ebAhb@w_A~gAcmCpxAgnDdm@cuAlV{h@rVif@hwAkzB|We\\vYo\\jm@yn@~RmSx]g[tr@aj@zlBwjAfw@_^nu@qWb|@oUds@{PhpDkn@jp@aMxl@gObw@g[pg@_Vj_BieAhl@k^bZkQfVcLrsAcf@ttBqm@lcAqUpp@{Inh@oCpm@qAl{@{C~r@uE|c@aIrfAs\\zx@eVj^yDvSs@jf@fCvx@bKx]`Cv_@?tU}A`QwCf^}KhXgO|TqPfVqUhRiV|U_e@xP_j@~Kso@fDmW~BaXdAoo@c@wm@yEmgAeBy`@s@_b@Vo]`BuZnCi_@bFk^dMei@pHuTrO}^zTu_@j]oc@rm@er@xFqGbx@eeAzV}\\~Vga@zV}b@vXkk@dHaOna@gcA`Qud@dJ{\\jJ_]dJs\\hLsi@vBiK`Ogu@dKwq@tOqkAzKejA~GmlAdD_s@|@cZhBar@tAgw@BgAv@i|@OytBsBegBkHu|CiLsnEeJmlCaD{`AwGkyBsIorCqe@ibOuHy`Cu@e^k@yXq@}_@c@cgAMe]Haa@Dm^r@{h@h@m[lD}lAbQ{bDn_A_fKrAg]fDol@xFmmAvBeqA|@opBcA{gAkBocAaGyyAwHanAcIa~@oDo[_D{YkXiwBc]_kBkJyg@mD}Qyy@inEqCiPcWwwAwVqaBsSi_BgPkxAcXymCcUslCil@e|Gk}AcwQsCoZ}v@{aJyAuPq`@crEgQs~BmD{n@oFuoAkAmwAb@qsB`Cmy@pFijAvHgcAtJubAbNmaAvRejApIyb@zI{`@|nB{{H`z@gsDdt@etDv]kjBfLqp@|q@gtDla@icCr_@ctBrk@}}Cvy@irDnSsx@fVmy@bfAscDz`@}gAje@sjAlmAcsCxd@wlA|S}k@|Rwi@pNgg@lLqe@`WgkAlScfApV_hBhHqz@bG_w@dMcdCzSc|EzMe`DfFimAhDsaAdBmqAKwoAiAqv@wCuz@{I{nBoZehGm@}Lm`@ylHw^otFmi@crE{y@u~EadB_`Jwa@_}B{]{gCcOspB}HoyBHiuCbFawBvVo}EtBaxAi@c}AgPutCgd@m|Cyf@ykBmO{d@eZkw@kf@klAuMi\\aK}W_Qee@_KqZaScp@_Jw\\yKgc@gQqw@aHg^wKsn@}Kas@gRkpA_QelAeRypAcNe`AyWajBqCmRaIej@gTizAoKot@wQ{oAcOmdAcZ_tBcZirBoNk~@yOq`AgT{kAqj@ssCkd@mzB}b@uyBgPs{@cDqQsMss@q[wkB}Wm`BuKqs@eMw{@yPclAsJes@mSk~AmSscBy[gpCiZ}iC{YihC{M{jAoKm|@yRecB{OayAsOm}AgJsdAoFyr@eFot@kH_mAmCef@kCkr@kDegAqCskAqAu}@u@abAKkQEwm@N}vAj@q{@fBwmAxDc`BtGcwBzGgsBrKy|CrLysDtEs`BbBy|@hAgvARsv@WeaAeCwjBuDgsA}FmsAmIiyAsN{wBcIcjAuOm{ByOe|ByR_pCuH_~@qLojAeQ}vAcJao@mSaoAoUinA{f@c~Bo_@u~AwKsd@_f@krBi[uvAg[k_B{Oa`AmCaPkQ{oAsP_vA{^aoDy[{tCaKox@}Mu`AiVk_BiW}bBuZspBoKwu@oK_z@{Hov@{Dwd@{Eku@iDww@wBmy@s@{v@Omc@Nik@rBwkAxCux@~D}u@jE}l@zH{z@rIey@jIqx@fPcjB`Fiu@xDuy@pCkeAd@}g@Tal@a@ow@kAwt@kDqaA}Eqz@iEwm@wE{h@_M}nAgSktBmHgy@mGez@mE}p@qD_r@gDcy@oBwn@yC_pAsAk{@_Aus@KgNqAk`AgA_bAm@ev@kA_|C?wl@@_d@Hwj@F_qAJgj@Fo{@KweAk@_xAgAayA}Cs~BgEmqBaGqcC{E_nBmGiuC{AmkAkBedCg@k}AAaeBb@mhBnCgqEzCepEz@}vAr@yqALe~@Qyu@sAahAyBkx@_GmoAuEar@cI}|@eMmhAuNobAaSiiAkQ}}@gY_sAg[uvAiXamAyYyqAka@yhB}`@qiBsi@{bCow@cmDed@}rBiP_v@qLum@{Lis@uJcu@iHss@yE{r@}Byi@{Ash@o@om@@{l@|@mp@zCy~@vEwv@lGyq@`KuaAzZopCv`@aoDf\\{tCpZ_mC~PgvAjTs`BjPyjAfTavAf\\wqBta@u~B~YkaBjWaxAh]mnB~]mqBf^mqBrZkcBpN_y@dMiv@lHif@hI{m@lJe{@pF}l@pH_fAjBa]nCsp@lB{p@~@uq@j@cu@Ka{B?u@i@_}BD_x@l@{v@pAcn@xBwn@tDet@bFou@vFan@vGmm@hGie@rH_g@`Hqb@|I}d@xNuq@zG_WnIo[rImZt@kBtg@qoAh}@aiBre@i`AxOke@fD{Jz_AgsC~H_XdIeWnHoU`Nig@`Lid@dIe]jHi^vIwd@zJml@zIen@vH}k@nFyb@pC_UhIgr@`Fuc@dFie@zFeq@xDck@hCqj@vAoj@p@up@Cuq@gBidAiCyl@cDyh@_C{X_L{bAqMw{@gSqbAgSsw@_Qcj@uWis@_Vwj@uIsRo_@iw@q_@{u@uq@cuAee@i`AoSab@_u@q{AyXwk@gMwXmCaGyTsf@o`@_aAa]i~@}Ssn@eSun@uXe~@so@{{Bu]gnAgb@svAoTgr@gDoKcYcy@iMo^s[q|@um@}yAcXcm@mKoUs^yu@sYuk@gVmd@cv@isAit@akAic@mo@il@ey@u`@_h@g`@mf@ul@ar@w_AubAkaAc_Aa`Auy@io@wg@qu@}j@ycAcr@o}A}}@muAgr@upAcj@}}@u]}rBes@ypBup@aeAs]szAcg@{zAcg@ipAmb@}dCgy@{o@kUeZcL}RqI}l@m[k\\gTcTuOmY}Uu]c[y`@{]oc@}^yd@u[o\\qRc_@yQec@{Pyn@}QcYoGc^uGkc@iHqg@eIeZqFoa@{Ied@}Mgc@{Pga@{Sc^gUiYoTks@ao@_^i\\}]y[m]yYoY}Ta]uUoXgPi`@iSg`@{PcYiKoZcJo_@sJ}b@wIaQ_Cgc@_Fc]gDwpAwJqiAkIw[cCc]mCsm@}F{XsCsYwEwSmE{\\{I{L}DaMwEgViK_VeMmNiIa]qUyEaEcVoSwBwB_J_JsG_Hec@ue@mRkUuh@{n@cZi`@mK{N{NqUoMsUcNcXaVsh@eT{h@mZwx@gqAelD_GaPigCi`HKWem@iaBie@_pA_oAmhD_Z_x@gEmLi^aaAcp@agBms@mnBi]g_Ak_@ycAih@cwAuw@}vBck@s|Aq[o|@uPyf@aXo~@aQcv@aJwe@kIwh@kH{l@oI{w@_Gon@_Ic|@iIkw@gBuNeCaSiGcc@sJuh@eIu_@gO{m@qMoc@cMm_@eXwr@ca@e}@mYml@oa@az@w[ep@mw@g`BcqBmbEinBc}Dox@uaBcrAwlCwoBi`E}}BywEmzB_rE[q@yrAmnC}Oa\\idBolDmpAijC}hAg}B_o@}pA}yAezCgzAyzCkdBqmDmi@sfAkDeHq\\}q@um@}nAe[go@_h@eeA{f@}bAuJaSmc@o}@_j@shAekAacCum@ynAqk@akAw`Cm}Eu|@_iBubAmrB}dAewBscAotBklBuyDakAmaCqjAq`CoT_d@cnC_uFg~BayEqm@wnAkHgOqQg_@cG{Lg]qp@ik@smAkKsSaVyf@y`@_y@{`@ky@ohAe}Bqi@sgAypAwkCwhBetDkyAizC{hBitDo{Ag}Cce@a`Aev@}}AsAoCgWgh@u@{Amt@{yAib@}{@yDaImEkJqc@w}@gn@{oAo^iu@mrAwmC_~AqaDe{Ai}Cg`@gx@ub@s~@_rAswCwx@obBao@oqAqt@_}Aw`@iy@kdA}uBgfAkyBenA_gC}a@uz@{]_t@g^is@gb@ay@{k@}hAyaB_bDet@}xA_t@ezAkdBemDgCiFogB{qDg`AkoB{IyQ_Po\\goAajCqC}FaG}KkL{UcNiY_^ct@i^it@md@}_Acz@odBe|@ghBs]ws@q^eu@gu@c|AmYol@sQ}^aSka@gw@u_B_f@gbAmj@uiAys@syAmr@awAqs@syA{a@c{@ajAa`C}a@oz@{u@e~AyBmE_[qn@aj@shAa^qu@i`@ax@yWui@aUge@{N{Yq\\sq@cWkh@{Rya@mVcg@{eAszBg`@cy@u]kt@m@oAoh@ygAkc@k~@oTcd@aWch@gv@m}AYk@_nAucCmBwDgL_UyzC{jGeGoLgKmTeq@wuAeg@_cAmYao@_BoDeScd@_v@yeBoGqNc_@ew@}c@}~@{k@ylAyHyO_Ps\\iLyU_Zqm@qYsl@_w@a_Bg]us@y^gv@ah@weAic@w}@wEsJaJ}Q_Rw^{l@mmAyC{FeKmSo^qu@am@omA{`@ex@aVse@mP{Y}[ei@_Vg^mXa^eP{RcReT_VsViYcXwX_Vk\\iVe[{Se]_Ssi@cXmTcJoRqHwf@oPk]gKwb@}Lkz@iVe|@yVskAs\\cr@uRoo@yQscBcf@uJqCsjAg\\o`AsXisAua@ocB{j@c_Co{@mfBss@ebBas@c_Aea@ieBuu@qRmI{o@iY{aB}q@iYwJwcAi`@e|Aul@gq@cWiu@yXwCgAif@mQmbAg_@sdAo`@}g@gR{]_Nc_Ag^aZmKkVaK{w@kZwbAe_@iiAob@ek@aTiw@gZm{@w[}`A}]of@kQyg@{QokA{`@o{Asg@u}@o[}j@{RmWyJij@}Sui@uSiJoDur@gXqx@e[kn@oUkr@yW{xAej@yn@}UopAcf@im@aUsk@mTm^eO{a@yQum@yY_k@qZcc@yVcm@__@_g@uZgi@k[cc@aVca@iT{r@w\\ys@u[eq@mZydA{g@_vBohAgxBuiAqf@kWm{@md@igAuk@ymBkcA}bA}h@sdA_j@}u@}`@{`@}SaVkMmNqHof@qWkUoLsSyJga@gPq[{JkVwGaSoEi_@{EwVqBaYeAoWQqU`@kc@jCc`@lEoaAvOsaAxQirAzVqhCne@_W~E{~A~Y}aBzZyn@nLaq@bMo_BpZ_d@dIe]jG{YtEeX|CyU`BsXbAwVQKAi\\oAaUoBeWgEuWwFeXoIsU}IyUsL}YoQkWgRkUiRyXeW}h@{f@ywAatAyv@ct@uWcVy`@a]oZcV_\\gU_BiAkXgPuScMsn@a\\mr@}\\cw@w_@ex@i`@{cAcg@ca@_Scv@c_@_k@yXmi@yWck@wXea@}Rwq@}\\s_@}Qq`@cSuTmLa[_Q{^uTi_@}W_`@{Zoc@i`@}VwV}[k]ud@yg@yWkZwa@ge@mk@wn@mVwVsd@ib@{c@}^{b@c[{d@yYck@e[uc@qTqx@e_@qk@kWwt@}\\kq@oZgn@aYyi@qV{e@mTw]oPkq@a]}]qRgP_KwXiPg^oUeXwQkZsTaWyRsa@w\\e^a[a]o[{\\q\\sYoZeXkZy`@_e@wXm]oUmZmY_a@gS{YeMiRiFiIiXac@}MoU}Uya@yZwk@qn@mpAg[or@a\\ev@cPq`@kHiQcp@g{Aae@_kAmA}CqRee@}Qyg@u`@qwAuSsi@{KoXmQk`@eCsFm^_v@wcAouBsRy`@wn@evAoC}GwOa`@}Tqi@ca@qaAmWmn@yi@{qA{Uek@e[au@}m@qzA{Poa@ic@}dAwSof@_l@urAcU_f@yVih@q\\{o@a`@cs@e^gn@ur@eiA}b@yo@ia@mk@ib@}j@mh@op@cu@s{@wa@}c@ad@wd@ue@ke@c|@ow@_}@iv@ez@{r@ei@{d@_Z_WopAcjAwd@mb@eh@qf@wi@ii@sN}Pi^e^yi@ij@qc@gd@qm@om@iNkMwWmVai@se@sh@oe@ql@}g@eZaWy[wXuv@{p@{s@wo@}nA}iAs~Aw|AoQiQq[c\\ih@{i@qSgT_uBa`Cst@iy@w\\y^eYyZyt@qv@}v@sw@ak@yj@yQ}PkXuWwl@mj@gm@}i@un@kj@e@a@qYuV}b@c_@y\\qXqm@qf@ww@}o@qtAukAgSoQqT_S}q@yn@eNuOoeAmbA{m@io@}o@{p@e[o\\sy@a{@oh@ii@aZsXeRiOqUcPsNyHkP}HoPmGyOuFo[aJoY}Gwb@mIcVaFqn@mM}_@{Jm`@iHoNoCaIuBkGwCwFyDgEqEaDaFoEaJiDkLqGib@qBaLiFaOqP}hA{Fe`@o]m_CaB{JaCyVcBwT_C{\\iDem@sEsq@{Ee|@cFc~@cGyeAwGoiAiDsj@_BkR}B}RiD{RoEmRqEcPsEyL{DsJqEoJkFaJwDsGoH}KknAujBsVw^kIcMmQ_X{OqSyLkQ}IwM_HkKiTy[sIuNwFkLiDeJeDwJ_EmOuCwNyBmPuAeP}@oVMuJ?gFJsFj@iNtA}QpBwOvCqQ~DoQpFmStNui@~Io\\tQcq@zNci@nNsh@rWqaAxP}n@|Je_@fIsZvKaa@pIg[`FcTtBiJrBgLlDcV|BmSbBsRtAcQ`A}Rj@gSj@uSb@cSd@sTlAuo@dB_hA~CwaBnAem@v@}i@V}QTo[C}Ps@eX{@cPeAuNyA_OsB}NyC}PwDcQmFgRyEkNwGyPcHgNkHcNgFeIcRo^gHmKcEiJcE_K}DuM{BaJmEuOiD}TwBkTiAkQo@gPOiN@cMV{Kd@eO|@oPdBuPvA{KfBuJpGkZ`GkR|@uCfG_SvXoq@|h@gdAjY}j@~\\_r@fo@gqAx[{o@zJ{Qb^cs@fImOdg@qbAhTca@pXwh@nY_h@hZ{f@l`@mm@dl@az@nOgTvLcPfSoWt[mb@hl@gx@zx@wfAda@qf@zHoJdH_IjJkIzJkH`HmEnLoGxLcFrQqGpq@}Udr@yUlOyI`^aM``@wMb`Aw[f^sN`HkCxQsHn[eOvWgMlKgGlY{QfV{QjWwRfQ{Ohk@}c@nGkG~YiWhx@wt@dj@sf@|d@wa@xc@q`@jWcUjP_NfSqNr\\wQfW}N~LkGnMqFrYaJzQiGbQ_HxTaLhSwL|R{NlHyHfI_LrD_HbEyHtIkQjGyUdEoWtJ{UtJ}QdIgMjKkN`OkOzr@op@b^a]p}@_{@|aBk}AtzC_tCrqBqhBx^c\\nqAuhAbfAu}@j}B{iBxpAyaArsAgbArw@}k@lg@k]~o@md@bfAor@~nBorAbnAuu@~xA__A||Bk|AjuCyqBtiBsmAjy@si@daDkvB~|DmjCfvBivAdd@kZhd@oZjpAm{@t}DojCnzC_qB`dAgr@`cAar@fnByrAbhAex@~cAat@r~@wr@~m@ae@nn@cf@b|@mr@ba@{[hQ{NhRwOfe@u`@p~@}w@hy@{t@hd@cb@~b@wa@h`@g_@nm@im@`r@sr@zv@ey@rE}Ett@{w@nbAifAtg@kk@bv@_|@`uAmbBvi@_s@jjA}_Bvt@aiAly@{sAxr@aoAjq@}pAxj@yjApa@i|@bb@aaAvpAyaD|o@kcB`dAsmCds@sjB`d@ulApJsUpTak@`Qmd@@Evr@uiBjXer@n_@acAj\\sy@ja@udAh`@s~@zc@sbAxb@q_AxYun@z_@_x@ha@ky@pd@s}@|p@mmAp{@u}A|i@g~@DI~l@oaAtl@__A~n@m`A|l@s{@nl@iz@ds@k`AhYi_@rWg\\hc@gj@rm@eu@zi@}o@fj@uo@dDuDpL}Mjb@kf@dZe]b_AkeAdcA{iArPmRfUoWdp@uu@nXc\\b_@wc@lgA}vAve@{n@`~@msAz_@ml@b_@em@xRw\\dZyg@r`AygB~gAy|BlYuo@|Usj@`o@i}A`e@koAxZy|@vLo]bAuCv[ibA|Yu_AtMeb@phA_uDxHkWhZwbAjm@crB|^ioApZicAjSat@|Mad@~{@svCjm@koBpLa_@~\\}eAnh@uzAdw@cwBhw@wnBxX}q@jb@abA~cA}|Bre@gbA~Uif@r_@{u@fY}i@tB_EbMaVnRi^bhBu`Dj}@iyAp_AyxAxiBgqCn_BuaClv@elAz@uAli@k|@jr@yjAt`AkdBx{@ehBvh@}jAfd@qgA~fAcsClf@mqArh@suAz]k_AxJ{V~Lk\\nBiFld@}lAh`@mdAbLeZfVgo@v]acAn]qdApSep@~R{q@vRkt@nMkg@`Mih@rNgn@tO{u@jMer@tVuvApMu{@xNwfArHeo@lJ{z@`G}n@pDka@pCs]fKqzAhHciAfFaaArDyv@hGyqA`HyoA`He_ArHgu@pJay@nNuaA|N}x@dOwu@rTe~@xO_l@bSyp@jUcq@vWer@z\\qw@r^qt@~a@kw@b_@kp@~^wo@bn@wfApmAiwB~eAqkBfn@yfAj}@c`Blh@{_Arm@mkAj`@ex@za@i}@be@ugA`d@ajAdd@kmAl`@miAz`@ekAbbAitCd`@eeA|Pmb@|q@y`Bf`@i{@ph@eiAthA}aCbb@g_AxRgd@dDyHzOs`@rp@{cBr\\g`A~Zs`An[ceAhOgj@dPem@nOsm@f_@__BxWcqArR_cA`]mlBr`@k}BzKen@fMon@|Ik`@~O}o@~Jo^pOsg@vPog@jRsh@v`@e`AzBgFjXqn@|Wqn@tRqd@p\\e|@jRak@`Pig@dQqn@tNuk@jLwi@lRe_AfOu}@xIgo@dIyq@hGco@vGc|@zMkmBxO{~BrJalA~LklAbMccAdOgaA`SwiArKmi@zLwi@pL_f@zAgGdVk~@rEaPhSop@fMo`@jOu`@j_@ubAz_@a|@nRu`@~i@ghAta@kv@fa@iv@fp@}mAf~AcxCf|AcxCllAaaCtkAkeCl{@slBjt@acBnf@wkApd@miAvy@otBfdAudCrn@gwAhs@s|AplAgfC|`AemBbdAcpBzhAutB|yAumCtqAw~B`vAigCxnAqcCfy@agBdp@eaBfEmK|Zkz@b^udAvr@e~B|c@qaBn_@s_B~EaUfJqb@hNyq@fZo|A`j@euCzc@q}Bhe@{yBv[mtApe@}hBnf@uaBjtA}bEhs@auBr^whAfR}l@p\\}hAxS}t@rc@}eBz`@aiBx[yaB~[coB`XyiBp\\qeCnHyl@~Eq_@fKyw@l`@qwC`Ne|@tM_z@`T}mA`Oev@zMmo@``@}cBpKgb@bJq^h]_oAxl@{lBh]ecAjb@ciAnl@qxAx`@m}@p_@mx@jYkl@fe@}}@dY_e@vf@gz@v^{m@f`@cn@n^qk@`CuDnYyd@tYae@fg@ww@hj@_{@~{@iuAx|@kyAvl@}bAzkA{|Bvd@{_A|a@g~@dZ}o@tV}p@nc@ujAzb@wnAhb@aqA~B{H|CcKpOwg@fd@acB~Sex@bPmq@|P{u@nQoz@zI{b@nL_o@fPq}@nNo|@nVacBnRwxAdL}aAbKccAvKalAvJkpAdJquAvNkrCtHwdBpU}lF~JkiB|HcnA|Goz@`Ges@|Ik{@`Gqi@zIwt@hMwcA|@qHzQ}kA`TcpAhNev@fSubArYkqAp\\}rAn^_sAva@gsAnPkh@rO_d@zMe_@`\\u|@ba@weAd\\_z@z}@g~Bzl@y{AlnAk~Cb_@s_Ajh@crAp_@k`A`\\{y@t|@c{Bbq@gdBb_@q_AjS{g@hhAmrC`hBwrEhU_l@xq@ueBxi@auAls@{hBlaAkdCly@wtBrw@iqBnr@}iBl\\q~@jg@}yA~e@c|Ala@evA`Twv@lMgf@vUa~@jl@g`Cdr@_rCpz@uiDll@a`Cld@ojB`\\cuAh]w{Ax[c|ArXgwA|Os}@fUavAvSkwAzEy\\~D_Zh^_nCv^usCn\\keCrf@{gDpf@uqCbd@exBjl@ygCxb@gaBhc@s{Apj@ohBxf@e{Avg@gzA|g@oyAfe@itA~g@g}Ad`@alAb^ckAfY_dAhXubAtPer@bTa~@pV{fAxd@g|BzRmcAvBgLxLyo@v@cE`]ojBjS}gAt]mgBhQc{@xQ_y@zNsn@~Omn@fNmi@nMwd@z^coA`\\_cAtg@gyAph@csA`[sv@f\\}v@|Pu`@hb@aaAj[mu@zZyw@zPmg@|Nwd@jYycAfNij@lO}s@nJ_f@tM{v@jIal@~Es^|J}~@bHey@nEqo@zCsl@pC}w@~BunAXyvAkA}iAwB}|@gCgq@}G{jA_O{lBeOsmBmH{hAqEa{@wBcn@i@uOmBmt@iAmx@]_|A|@oqAfC_rAtDa~@|Ey`AbHwaAlKcmArNqlAfIip@`QwpA|uAo_Kfz@kfGrAwJbHch@~`@}vC|a@ayCf_@}mCrd@efDfTaaBrNokAhKweAjI{bAzEyr@bFw{@|EekAbEmsArB_zANa|Ay@a`BiBkiAuGcuBkJqaCmFuuAkE}sAkCetAy@my@O}lAJyh@l@}m@p@mc@pB}{@zBcu@`Dqx@hCmd@jF_z@zEgs@l@yHfJogAdNk|Ad\\kuDbLsqAvFom@~J{gApKukAjKgkA`Oe}ArFai@|PkvAbJyo@bPcfAlL{o@hN}s@~VqiAlUo_ArNsh@d_@yoAf[a`Axb@qjA|Wsq@|h@skAhWai@lk@ggAxTg_@jXed@jQwX~N_UxLwQhXu_@v[wc@fe@so@d}@mnAhXu`@vYge@b\\ol@nX}h@vZuq@ja@ubAvWwu@bPgg@tM}e@fZikAfNqo@xMcs@pPwfAzJ{v@~JqaAnGww@lAkPbCya@xCkp@rBaq@rAiu@|AmhBjBedDzAwhDjBcbClBu|AxBadArDabAjEc{@dB{\\dD_g@nDse@dGsv@xGkp@jImu@rIcp@`Mk|@nRgiAnKuk@`L{k@bMwk@dl@ogCrm@wiCr`@uiBf\\o_BfBwIbXqaBtU{~AtIqp@bLqbALgAtLijAvWktCd_@ukEj@yGdNevAjEmc@|LekAzIgu@pQqsAtGae@dKiq@hR}iAhW_zApRmfAhLao@|QcgAnMa}@xG{j@|Fkl@fGet@bGq~@~Dc~@jB}s@rAm|@Puv@Mgo@gAeu@oBex@qD}w@wDoq@}Dsh@cGkq@iGsj@sImp@wJuq@aKen@qL}p@}Hmd@iKmn@wG}b@cF}_@kEu^uFkl@iDyb@_BuY{Aw`@oAqb@k@kb@Ikc@Vuo@lAst@l@yT`Cwj@pDok@|Emj@xCuYhFub@hH}e@~Hed@jJ}d@lQgv@tO}m@zL{f@hMah@rM_m@rOsy@dHia@~OqgAlKk~@~B_UxEyi@lEup@zCoh@|Bmn@nBws@vAcbAJi|@Q_o@_Bcz@}Byz@oCyl@iCqb@yCab@kGcx@mFsn@kF{l@eC{XsFwn@}F}w@oE{r@_Dgx@uCgiAeAc`AK}aAZ_h@tAip@`D{z@~Csn@hFgu@jFao@|Io|@tH{l@fJum@fO}z@jOst@lMyi@pQ{p@dOih@zP_i@zTwn@dc@yiArVco@pS_k@dLg]zM{d@vNaj@pNkn@xJ_h@dI{h@vHsl@rFoh@hFuq@jEmt@~Cor@~Bq}@|@ao@F{b@Ua~@y@kq@uBmy@wCqu@kEus@yFez@_Iuw@_Gkj@gI_q@wKcw@_Jao@{Img@iJ_i@cLql@kL{j@eJ{a@kNum@}Myh@uOak@cQ_l@_Sco@uN{c@oTan@yRqg@oTai@_Pg_@{Ne\\_P}\\eOi[uIiQgCaFqTwb@o{@khB_Xil@u\\qt@sBgFyVwt@cQwl@uP}o@mNon@{Kyk@aLcy@cGgg@mFaj@kEqj@iBe[aDur@mBu_ASoZEql@d@sh@nAmp@hCuq@nDeo@vEul@jI_`A~Io|@hLwkAxP}eBxb@_kE~Z}`D~MurAdMamA`LwbApLmaAzJgu@nK_t@|Jop@`Oq|@pNwx@vQq`AtPow@dMwl@`Raw@zTc~@pUg|@tPim@jD_MdWiz@pMka@pSin@hc@coAln@wdB`{@_{Bnq@yeBhw@utBbm@o~Atq@chB`g@}sAvV{q@tZc|@`Vot@|Rqn@t\\_jAxZojArZkqApXohAhCiKr[}aBdUgpAlUeuAj_@emCvOeqAdJw~@xDoa@tDse@nDgn@bCql@`B}aAJig@Ogf@u@kb@mCwv@}FgcAgH_z@cNsfAoJil@kL}l@iLyg@eOej@aR_m@a^cfA{[gbAmS_s@iRst@cNan@wKsk@sJ_l@qJeq@sHwl@eFcj@mFkr@_Fmy@yCat@}Aku@y@qr@DwfA`Akz@pByr@nBsd@nCug@`Ekj@pFum@jH{p@pG_g@|Jip@nM{s@rLwi@tWsiAnk@ezBxk@o}BrRuy@lHe]pK{k@nIgh@nImn@~CiZ|Geu@nD{g@jCan@jBai@bAcn@Jo_AgAa`A_Bul@mCal@uDoj@qFwp@{LciAmFoa@uUwcBaH{g@uKew@iHai@oT_bBkKi_A}F{p@yEoq@aDio@sBwn@mAik@c@_`@G}j@Zqo@hAkt@pB}s@jDyp@`Emn@nGku@`K}}@hS{aBnJew@xIkz@zD{e@rDmi@~Cms@xBaz@b@ar@Kks@w@sm@_Csu@oCiw@qH_xAyGkoAcGcnAeD}v@}Co`AoAur@a@uq@@ku@\\um@lBm{@lCor@rCug@`Doh@dE_h@lFuj@dHeo@dJap@fLmr@fJof@vKsi@xOyp@hSeu@dTir@hWat@jUkk@dRoa@jX_j@pSqa@xi@saAl]{l@|a@ms@~\\qn@hOc[dVam@jOaa@nQmj@hR_q@bNel@bPuw@pLcu@bHil@nGqq@vGk}@|Csv@zAmk@Rsg@Hib@s@ul@aA}f@uCgr@yBwe@gB{UqDsg@iI}v@iHyn@kL_{@uJgo@cYogBee@mlCmXizA{RyeAkXa`BgMox@yMk}@yLu|@oKo{@aI_v@sHyw@gDuh@aDkh@wDqx@MqCeCgv@mAco@o@el@QegA`@il@x@}o@bByu@vC{x@jEs}@tFe|@lG{`AdIsnA~HcjAdMkmBnEax@zC_x@zAmz@Fmr@g@o{@wBa}@kFufAaI}lAiFst@gGccAcCqo@kAuj@m@eh@E}c@f@oo@nAop@rB}i@tCof@xEqp@rFul@nJ_y@|Kc~@|LodAb_@e|C~Hws@tFao@lEgq@xCun@rB}q@x@qq@?ix@q@aj@o@kb@mAe]{Dmw@wHqhAyOutBqEmr@cBc\\iCyy@iAuj@[{j@P_h@l@ol@hBsp@dC_j@|D_m@hD_c@`G{j@jIep@|Lkv@t`@gzB|QgcAzNyw@fBaK~DyTjPq_ArK{o@bL}q@tL_v@fJgn@hLky@dLc}@vJgz@lJc{@vNiwA|KsmAjFmr@bEgj@lCoa@xKmhB`L_dCdGadBvBqw@pAsp@jCscBr@{_Ap@i_ABmfAIsjAs@uiAqA{lAuAggAyAqs@wBijAmCqbAiDafAwCcw@uCoq@e@}KuHk`Bm@_KkPopCyDyo@gLyaB}LibByKexAqNqiBmCm^iIsmAsEyr@qEiz@iFemAwAa`@sAm]kByr@sAys@{AupAi@saASgvAHmuC\\isCNcdC`@g~Dd@apGn@e_H\\a}CPudCBmZHkbCM{cCo@c}@o@_|@yBaaBcDmnAaEewA_GqaBgJmyBeFmoAaEmoAw@ce@o@wc@_@_z@Xkw@nBegAbAe`@`Cgj@jCug@jFwv@rGgu@bKm_ArLa{@dNk|@rUavA~D{W~b@yiCZmB~PwlAzNgeAvMwhAjMmnA|JwfAjG{y@fGy_AbG_dAnD}y@nCmr@hDesAvCw|ApB_wApD_lCP}LzAyq@|Bmr@`D{l@rFcw@dGcn@fIsp@xJqo@fOyw@tOcs@vJe`@nMye@lMic@vXw}@lVgx@nE}NhXu|@n\\ofArl@_nBtg@obBpdA{gDbxAgxEvQem@tXs}@`Nuc@hi@yeBtlBoiGlcAcfDbaBuoF~Suv@lNcm@`L}j@vJqo@fJwv@fEke@nCca@hC_n@zA_l@\\cl@Wyn@yAip@uBqg@QgEkDgj@mE_g@qHim@sJap@gOav@cNqj@aOmh@wPug@wSwk@o\\}y@ad@akAiM_`@}Js[oLsd@kOyq@gLoo@cIwj@oG{m@wEkn@aDkk@iBcp@q@mh@Fgs@vAg|@bC_y@hDadAxBoaAn@cm@Sqs@eAmm@cDau@iEyo@iG}r@wJqy@cV}mBaUglBq[emCsTimBee@iaEcTciBkJix@uGcp@wE{k@oCse@iB{i@eA{k@Jol@lAuk@jD{v@rFkp@jLuiArOcxArHc~@bEmn@lBcq@Vcj@Qkq@_Bcl@_Dgk@wFgr@gJev@aKcp@qJsl@wJwl@{Jqq@iHoi@iFwj@gFu}@qBgv@Acl@j@gm@bCio@xCee@nGiq@`Iqn@dJsk@~Gs]rLig@dK{[pF{PvM{\\lOu^dWqg@`Xed@h[wf@|RqXb}@m|A~L_VdTge@|K{XfMg`@pQko@jH_^lNsu@jJqq@dGgo@bFgn@`GceAhNibCbDek@fJk}AtFkaAnHaqAh^ckGfNydCvN_|B`@qFvCga@tGwz@pF{r@dBwQvEkk@jD}`@jImaAhYgbDnBaWbBgX`@sWF_Yw@kSkBqQmCmQ_FuTuH}TsJmR_OqTqRgQmQsJ{NiF}L_CoJy@mNMwP|@cJvBaDh@aOdEom@xTmX|FaRbAePo@gQoCaT{Gka@kVe}@kr@{[mPeJwHsRoOg]u]qIwI_N{M_NcNm]y[s]e`@{W_\\a]wc@cOyS{Xsb@eRyWaX{b@oVec@e\\}l@qa@o{@uV{m@yQkg@mNkc@qLoa@qLgg@}GmYaZkzAgGoYaX_tAuYuwAiBiJssAc}GsAoHs~Aq`IuFiXkhAutF{Mer@oiC{qMyKwi@}Imb@sMqn@_Hg\\yFoX{e@qtB}W}fAkDkMaSgt@sZ{dAi^yjAix@o`CgYox@}Nya@kZgu@gIwUu[c|@{Sqk@eXsy@qc@wrAaIcWyd@i~AcRcs@{WmdAy\\awAyVmgAcZsqA}ZqoA}XefAyw@}pC{b@{sA_IeVmOwa@yZ{|@qf@}oAqUwk@eQ{a@}h@clA{m@mqA_{@oaBy}@}_BkU{_@cu@mkAa|@ypAy_A_pAsqAs_BOQwsAoyAar@cs@}XkX_ZiYi~@ky@sn@ij@wpBoeBcu@{q@{t@ss@w`AgaA_~@qbAisAivAwf@{c@kf@m`@_h@i_@on@g`@uJmFo^yQsl@iXkb@uP{f@}RiYwK}SeImCeAgJwCosAce@miA}`@ou@_[{a@sQwRiJgVmLs^kS_YgQoW}Pyf@o]eu@ao@kY{X_QqQik@yn@uf@uo@qa@cm@ub@ir@_]so@uSga@oSad@_Ykp@gQoe@_FwMsUot@_XibAqG_VuTe`AoNyu@gQufAaFw^gMugAeCgWcC{VkFcn@qGc`A{ImyAkUikEc^gzGsLioB_F{n@kBsS}Ekh@{@eJiQmbBuOslAiQwhAaU}nA{UojAwT{`AkUo{@_Uww@kUsu@oTsq@}JoXcKwXil@mxAcj@glAwk@miAoY}h@q]al@e|@erA{gAcxAmx@i`Ay}B_hC}iCmtCsRwSkSsTieCwnCy{B{cCacAyhAct@mx@ctAm{Aky@ubA_r@a|@iv@qcAUY{r@aeA}uA{yBwxBwnDw}@wvAys@}eAaRsXoTc[qUs\\cCaDee@eo@ak@oq@s[_`@wlA_rAoZiZuUuUgt@eo@{UaScn@yg@{pAq_AaoAey@mgAon@ufAej@yjA_k@{iA{g@yvC_pAsYwLuo@uWojAyf@ojAuh@qjAij@waAoh@_Q_KsT}Mg}@sj@uo@gc@{dAmx@yy@ir@_gAidAugAikAgrAe`Baq@_~@ye@qr@gSi\\gc@er@mk@gcA_j@geAga@a{@ui@}nAsPsa@wW}q@gf@orAik@ygB{d@saBqh@qwB_Pau@_Oyu@{Ngw@qMkw@uNy_AuGke@oC}RqCgReC_QmBiReLyeAi@oFuDg_@_Eed@eHi}@sNoqBoEyp@{Bu^qCad@oHmnAU_EoNseCwFy`AcL_cBqFqs@aLwuA_I}y@yM_rA}QsuAaNmcAqPkfA_Pa~@s[obB{O{t@yZgsAiSgw@eb@u{A_\\ydA_Vwt@yX{w@ic@}lA}b@qdAcaAgyBqY{k@kpC}|Ek}AcfCa_BogCcKsO{Vk_@oiA}gByxCuvEap@kcAqeCi{DmJcOiMcS}hCk`Ec{GkmK_vAmyB_|@szAul@ieAy]kr@uZis@iYor@wUon@cXyw@}d@ixAyRux@yTg_AsLgj@iF_XsHgc@sKql@iGs`@g_@uaCsOmfA{ZszBqeA}kHwMg~@qv@erFeLwx@o`A{|Gar@yxEeQedAgSilA_\\mxA{Rwu@{Wc|@gc@mmAoa@acAmr@{tAuy@qtAwl@qw@}j@as@aOeQma@ac@wi@}j@_a@y`@o^a^a~@y_A}i@el@_SoUqNyP_Zw`@mYy`@IMe^ui@{^sm@iFkJwDyHgWme@cLsUcD}GgNe]yYor@}W}u@wPgg@yOsj@{Ua_AiKic@yH__@cJyf@}DoTwFa^gEcY_Imm@sEcc@eGwm@mHi`AgEcv@{Bug@aCo{@}Ae{@{@{x@mAcoCk@qhBcBkrDEkLe@inA_BgwCwB_qBmBy{@cCg|@cEkbAuHivAgI}gAyGqu@qDy\\wLieAwOelAiQ_hAyNqz@cTwfAk]y{Awd@ebB_b@gsAyZi~@oQag@qLy\\eKsXeIiSkMy\\_{@guBuiB{zE{}@i|BuOk`@ig@{qAui@{uAc`@_hAoOue@oSeq@yO{l@_Ku_@cT}~@qNes@wLep@qG{a@wIak@yDoWiFoc@aKo|@wFel@kEuf@c@gGkC_^{Bia@{Bia@wA}c@iBuh@wAwo@aBw_A]e_ACav@Lad@r@a|@t@yy@jAeeAfA{eAjCa~BxAqhC^uvAQ}bBiAegAmBoeAgCmv@}D}x@qF}y@qFqs@oHst@mCyYmEo]oHmk@eKkp@iUioAm`@ydBeEcQeMif@aO{e@cW{v@yd@ikAoVsl@aR_b@ir@arAw`@av@cPcWy^ki@yRqYeJcMmMsQeeAsuAu^eg@uOqSwjAu|Acg@ip@mdD_nEoy@ogAgJmLgc@_o@k[kd@wRiZo\\wg@w]ym@ea@up@uWif@mNcXmPg[mYkj@wmAe_CeYyi@}r@opAeTe`@e`@au@yUwe@g`@ws@un@ujAe{@{cB}g@oaAus@ewA{g@ojAoR}d@}_@cfAy]mgAw[glAmYolAoSodA{L{o@_Jck@yNmcAwN_nAmGmg@iIox@}LmsAsn@ctGkR}aBaMe~@ySawAiWyaB}Gk]cRccAaXgsAqWonAwUkhAwXebA{X_dAi]ooAsq@_uByAoEiT}o@_\\a_A_]q`Ama@ujA{]ybAqx@q{Bas@{nBek@sfBmP_h@uWs_A{Tq}@iU_hAgNct@wKgm@gMiu@aGs_@aMux@kUyuAm^yaCqLkv@uKew@aKq{@sJo`AaHyz@wXgyCy]saEcJgz@oGok@yKyw@iQ_eAoPuu@qDwOsM{f@uUyu@}Umq@w|@q_Cg\\kx@wW}l@mW}g@_Wgd@ob@kp@a[oc@wb@sg@c^u^o]{[iNyKuXsSq]uU}_@iWcPkJ}]iSmk@i\\u`@cUs\\uS}^iVy[qTc]sXaVcSwTqRaQoOmXcXaQuPgW_Ycj@yk@ac@qd@_m@{n@ka@gc@smAsnAsLqMkiAanAycA_iAsWcYe]w`@sZe`@mXm^uUs\\iTm]uVmd@mOq[kSkd@eRqe@qY{|@_Xi~@_Mkj@yNwv@uFu^}Geg@oGok@iFij@m@oG_F{w@uFyw@O{BoEqx@yEe|@eImvAgG}fA{M{dCqHydAuH{{@{Dq_@}Gmk@yE}]_Gea@_FeZgJyh@aPkv@oG{WEQ_GkVQq@wP_p@iJo[cOef@{Pcg@s\\i{@_Umg@}MsYa`@iw@_d@cy@ak@mbAy[sm@}Vwh@iVkl@{JcXyM{_@cU_t@qT}w@kY{dAwJg_@wD_O}Oqn@kNil@iLcj@mMqp@_Kkl@sJmp@wKkw@kJkv@eXcwB_E{XcLqv@wJci@wDaSaLii@_Jsb@kOkn@yVy|@e\\ebAcUil@mYus@_`@iy@ma@ex@yeAuqBefAqqBk`@av@c`AygBy[kn@qc@k}@mb@{|@ae@gbAw}@cqBs_@e}@q]_z@kv@gmBcScg@cVcm@ke@}nAk\\ey@{V{r@eYu|@{Ue{@iQat@_N_o@cIwc@_Kym@cMc|@oJax@aJu`AiEyk@wFubA}Co{@}Bu~@e@_VoA}`A{Aq~@cBu{@y@iv@qAm_AyDa|CYiXqBowAiAcr@uFihBsDaq@gBgY{A}UsJ{hAmBiQiFyd@kIol@aNm}@oRqdAkMup@wB{J{UelAwN}r@_WmmAw_@}hBKi@cd@}zB{Osy@yG_^aO{|@qNm`AwIis@eTsmBcPwbBeFmj@_M{kAiXooCkOkrAmSc}AgXwyAwVyhAsYogAmRam@iNcb@gVum@qIqTgc@ecA{JcS{Q_^sNcWm]sl@uZif@ak@_v@sd@{i@o]s`@{SsTcwBc}BicAmfAofCkwC}Xu^{c@gm@}t@ggA{a@}q@c^mk@qL_TaHiM_X{e@m[qk@a`@ov@wl@slAyz@mfBoa@oz@qlAueC}qAukCeu@osAol@{~@o{@wkAym@{v@ir@{t@}mCadCelAkiAk`@q`@ke@gj@s`@gh@{h@yu@mf@ky@i^{o@ol@mpAu]q{@q[ky@}iAczCai@mvAij@}tAcKoWe}@wzBa|@oqBgl@wpAstAawCul@yjAqbAynB_w@g{AyaA{kBkh@saAs\\wk@{^cm@{d@yp@u`@og@u_@wc@ck@mm@ij@{j@wsA}rAi[k[o[k^uh@cm@an@{y@so@m`A}u@kmAoIoM{AeCsYke@wu@umAayA_`Csy@wtA_GiJaoAasBsa@es@}]cr@uQu`@wH{Q_JeUeKcYeKg[yM{b@}HoZaIg\\cIi^kH{_@{Ikh@{C_S_H{j@eBiQkEkc@wCub@}Bsa@kBia@eAe]yAcw@w@}g@g@aj@{@in@u@}d@}@ol@yBao@}Bof@qC_a@sFuj@qF}c@gK}q@kOiz@yMkj@q[unAeHeSyEaN{FgPkT_h@w^a|@kg@w_Aqi@}z@m_@og@{u@}w@gf@}\\}y@or@k^mZwj@}k@}UmZaRyUmZwa@}l@_gA{hAmpBkbAmeBme@_cAqa@}cA{[{aAcGsTqQqp@gX}jA}Hw^wKyg@eIo_@oYczAu\\ukBmSmtAid@}jDqF_b@{QqsA_e@umDyUwgBcOihAqJs|@aHox@eEum@qB}XsDu{@u@uQwAub@eByaAg@seABwTTyk@FuQr@uy@N_On@mqA}@m~A{D_oAmB{i@}F_y@qKckAaUsaBoWstA{Okq@mEcRcVyz@qX{y@sxBu`FepCoeGyu@}aBgD}HifAm`CijBudEeDeHesAy{CgIaR_[as@_FaLs]}w@kUoh@yGmO_|@mpB_o@y|AsZ}s@}z@g{Bg]{aA{W}u@oP_c@cK{YuzCswIqkAsoDmHaUet@k{BifCkzHwJg\\iGqSmkAqpDon@imBmsAwhEeo@c}Bu_AypDqWkw@{Qkj@s\\wy@qt@y{A{t@ckAgkAobBsh@gl@yi@yh@_f@w`@kg@g_@iHoE{k@i^o[{RqtAgl@yvA}g@awAkf@weAee@sr@m_@cj@{^qS}Pob@}]{N}LgP{Pia@ib@wr@w|@}h@mt@oZ{a@qg@ox@{hA_fBaN}RuNaTe^sh@{Wg`@mfAocBaPqUwdC{xDij@mp@cuBc}B{]i]iw@}s@_r@ye@idAwp@saAch@{`As]obBkg@kNqDwwAy_@sp@mV}o@eYu]uRs`Awi@aoA{_A{k@mg@{i@gl@}`@ke@cq@kz@mT{[eReZso@cgAkPyYg`@yw@kv@y_Biy@maBgq@csAg[_q@av@sxA}EgJuc@wq@cRgXoV}]gUs_@{Vaf@cbDwoGsx@kqAgWo^_`AuqAik@cp@eYk\\ar@}s@}pCkvC_dBogBo}B{aCwv@w}@ciAkyAobAm~AwHyLyl@ggAmb@sz@ac@a`Ae\\gw@gUel@yGgR}J_YyRck@qScp@gX{~@c[smAqXsmA{Kkk@kA_FkIga@kPa_AwUg{AiFaW}x@wxDcp@y}Coi@ekCmj@}iCaX}jAoL_f@mToz@y@qCuSet@aJo\\_Ke[yTwp@yTon@sQ}e@gQ}d@IUoUej@eIoScHwQqk@_tAw]ez@y]wz@eUyj@sLaYs_@abAcLuZ{Qcg@gQih@kOme@qM}a@_Nwd@oMwd@yLue@cM{f@qLwg@gKgf@sHq^iNiu@{S_oAoF}`@qGqd@oHyg@oFed@cNilAw_@usDwMopAoG_p@sYoiCwMkcAoEwZmBmMgEwXsKeo@yMut@aWisAaYisAaXypAcScaAeWkmAiIqa@{Jaf@ed@gwBil@esC}K_k@mRadAuJcl@qIyl@kJuy@uI{y@{Ekk@wDum@uBcc@cA{YkCay@uAur@_@sXgB_fA_AqeAw@gp@gAsv@oDozAyEgoAiCif@sCic@aFyk@wEif@kIav@}Lkz@cIwf@sIqe@_Lwg@iLkg@eJw]iWi_AkRil@}Mi_@}Vyn@qUci@sEoJuG_NgU{c@iNuWc`@up@ku@alA_d@}o@wUk\\kxBszCcL{Poa@um@an@o~@S[co@eeAoUg`@}nAm{Bwi@adAuDkHoWog@w\\im@ccAaqBiyAsrCs{AavCyDmHudAepBic@wz@gLuTwrCupFkc@c}@cf@}gAgW}o@aXov@aWcx@sPql@qZkpAoGsYuUwmAuN_}@cHuh@_Jes@{JoeAsLmaB_F{bAiAw]_Bon@YiW_Bo|Ao@{iBYcnBYctASk[cCa_BoDq}A_EqkAuBkj@oHw|AuF_}@mIyhAiFcp@}Cc`@sZgzCuRq~AkDcRiF}`@iCgR_L{r@oX{aB{Lus@mIs_@}p@udCkMw\\yMa\\oUej@aUie@iOmWaN{TqQmYmSuXg\\wa@sTkWyWcX{_@w]sa@yZac@kY_f@iX{i@mUqh@wQem@wQcd@gMeu@iUa^uLs]cNw[{M{L}Ea{@wb@cc@qWs\\cTel@ub@mh@_c@al@{j@gn@eq@sx@mcA_SgYy[og@oUw_@y_@{r@iVqf@_Wuj@c]e_A}e@}qAqYs|@kOci@aDkMqQ}w@kAyFwJwe@yH_b@_H}b@_QaoAgIcu@oGyq@kEgm@gE_t@sCkr@_Buo@s@ii@A}@g@{}@@_{@jAqy@dA_g@fC_s@`GwjAxEot@lFcv@l[kmEhUmfDvWqrDtNasB|M{jBbIijArJouAxFu~@rCwv@xAww@Tow@m@mr@cBct@qI}wA_Iex@cL{z@yIaf@uJ}f@uI__@kMsf@aGuREMsFwQeQ_g@iTmi@yVsi@kVae@}Ru\\kCoEi]wf@gXy\\aV}WuDcEuZyYkh@se@{f@ic@wvB_nBafD{uC{xAglAs\\{Ui]sVad@iYaIcF_fAsk@wt@ib@yl@ca@qs@oq@k]g]cZa_@_\\wf@kr@kqAoa@q`As`@ykAkx@yvCu[ohAw]_bA}\\oy@aT}f@yBuE{M}Xm^et@_Xye@uBuDklA}iBagAerAi`@u_@uQyQmDoDaGcG}sC}dCsS_Ssg@_c@gRcRyQeR}]q_@y^wb@eZu_@gSaXiRmX{Ymd@a[eh@m\\ml@u[yk@ub@av@kWwb@kAoBoTo]{i@wv@o\\ua@_CkCyW}Ykm@ko@sb@kc@ki@}i@yx@az@ixBuzB_tAcmAwy@ip@{i@eb@_~@ap@gd@i\\y]iXsWoUeVkU}TwUsU}X}TkZmWqa@kTs_@uS{a@gR{c@{Uyn@sOmg@cOsi@mJob@{Hw`@sHqc@}Ei]eH_k@uS}nBsQ{dBqMslAkXcbCkJsr@wIiq@cLqu@sDuVaLcu@kT}lAkWkrA_VciAgWiiAqMuk@c^ezAcc@shBsZ{mAyYwnAoKce@oa@mlBoCkUoFia@cHei@}BoQiBaRoB_\\_@wSI_SLqRl@uS`AyQjBuSxB{QnCcRhNc}@lMi|@|E{^bHak@bHsp@nHsw@xaA{bL`OmeBhCw[bDad@fBcZ~AgWlDew@fB{l@x@_c@h@oa@Jmf@?og@_BojDA_]Pm\\`@g]~@g]z@gSfBe\\jCo]hEub@rGcg@vDqVdGg\\zGc[dFuSrAqFvJo]`Okd@|KeYbPg_@hG_MjOgYjI}NnLsRvLkQjXy_@xY}_@po@e{@`QaU|b@qk@xJoMxT}ZfVo]n]ij@zRe]pMyUpMcWbW}i@nSgf@vQwe@dQmg@pT}r@pSms@rf@seB~Neg@tOof@fQ_g@|Qwe@lM_[rNs[`Qi^|Qs]hIcOHOjJeP|HoMrI}Mv\\_g@bMyP`NaQrN_QdUuXza@kb@rAuAzPePpIoHxHyGl^iZ`]cYtFsE~c@k^`c@o^f\\uYpZmYjQiQvQwRr]qa@nVk[hVg]rS}ZtSa]rPcZhOcYnQe^fLsVfP}_@xNk^jVwp@tdAk{CzHkThKmXtLyYbMcYjOc[|Pe\\zNiVbJuNjNiSdN{QnVkZhPsQdNmNdQ_PxQ{OtQmNbQcMvQgLpQoKhVeMpUmKrOoGfOqFl_@gM~f@sNvf@iM~}@wUvx@yTp\\wJ~\\oKvYaKvZaLxa@}Obb@mQrS{ItSyJp\\cPv\\uQz|@cf@t_G{gD~k@s\\`hAmn@n{BspA`iEmcCte@}Xjf@yYhe@gZrf@w\\t\\yVx[eWtXiUnXqU|FmFvg@}f@nX{XrS}TpSuU`QwSrP}StTgYbTqYzRcYjRmYnQuX`QkYz\\wl@bQy[lPm\\~O_]fO}\\tQsb@|Qse@bKiXjJoXhPig@bN{c@~Lsc@zKmb@lKuc@tJec@jFoVvEgVzK_n@`Kon@dJio@bIsm@dd@guD~A}LdL{x@xHkf@~Hsc@xHk`@pI{_@pKsc@jIq[xJs]xK_^`KmZfNo`@bK}WvK}W~LaY`NuYjX}i@fGgLxKqSzWcf@bn@mhA|e@u}@tQk_@vPa_@bQcb@~M}]tBuFxLy]dLy]nIeYbJw[fLed@nN{m@nGq[|FuZ`Nqx@~Jwt@tIot@dIcv@rHsu@fHet@tU}_CtK{hAhJ}cAtFer@nEsk@jD}h@`Dgh@fD{l@tE_cAvDieAhCmaAvBw`AjAqp@bDoaCt@wh@p@w]v@o\\fAc]|Ak^xB{\\bEeg@tDq\\jE{[rDeVxE{VbGkY~Hu\\|F{SrGyTfKwZxHwSjJ_UbLsV~LsVxM{UzSm\\~Y}b@`OaSfMgOlrAwcBxcAsqAln@yv@lf@sj@n]w^pWeW`XeVbXgUhc@e]lc@a[lf@}Zjg@uYvdBs~@ja@gUdZcQj_@iV~^{Wld@}_@zRcRrQeRhVoXvUaZnScYlRuYnUw`@fSk_@vLqVrL{WbLoXzJoW~Neb@nGqSdDqKjLw`@~GmW~Soz@xj@i`CfMsg@nNoh@fQql@jJ}YdKmYpJyWRi@dPea@vIkSjJuSjJaSfKySlWgf@rW{f@|wA_iClh@q~@nk@{_Abi@gt@t[o`@lZa]|b@mc@tb@_`@zhAw}@trAocA`g@g`@toBw|A`oAw`AhHuF`z@yo@tVyQhUkN|`Bw|@hLgHvKaJrIyGpCeCpJaKl`AcgA`w@mq@zd@aa@``@i_@bQmRzOiRpJyLnZuc@~K{QzJaRnQq^lHuOhHeQlLi\\rH{TlGqTnIy[xEoSbEsR~Fk[|Eg[bEsZtDm]|Cm]jBuYjAiYdCku@t@kw@@iQBmq@a@kxCoBwdNiHeld@?gAFieAn@sm@vA{k@zBwm@tC{j@lCi^`Dy_@jG}n@tIyp@rGgb@hOuz@xWuyApIog@|O_v@`GcZjKqd@lF{TfJ_^nIqZxG{Uj@qBp]kmAnTmu@nOoj@xEeQzHo\\tEmUhF_Zx@{EzCgTjDwXhE{_@lCc\\`Cec@jB_g@xAyi@jAig@~@i_@r@qYfBig@d@iI`B{VlC}V`E{YjDeQtE{QhJm[pH_TdIeTjNyZlLyT~MsS`MwRxIkMvOwT|Zmb@v^_h@hOmS`fAyvAdhAmyAnPqRns@cw@~_@sd@tj@{r@boAsbBdf@ur@zPgWhNcUfHsM|MqVlMyUzDgHzVyd@lJoQnKeSng@e_ArN}V|LuTlgAgtBtKgUdU{f@`DaHv]sw@h]q`Ahc@{sAh]{iAlRer@dBkGxm@mzBlWs~@n|@kaDlnA}mEvi@ipBvScu@xNmi@jWybA`Owq@xJyf@dL{p@lN__AfWqfBpr@s_FxVkgBhPgkAhk@aaE`}AmyKpp@kwE~hEwnZ~jBuvMfuB{_OhJ}o@twAi`KfyAyhKnUcaBjv@sqFb[sxBh\\wyBzYu_BzM}j@nO{m@hTer@~Ucq@|tBsfFjEcLpi@cwAlXsw@`m@kkBtl@uwBFSvRy{@p\\}~AzQkaAjQokAhKqv@bLqcAvFeo@xBc]pDmi@d@wJ`Cof@`Cyq@tBsz@h@mv@[ov@m@}v@aBot@wDk_AkH{dAeJi_AsJ_w@mG{d@gM}u@iUsiAeQqt@iPsm@aPui@iX{{@qZeaAmJm\\aMif@}Kaj@_I}e@wFe_@sF_b@uFok@cD_b@W}CiAmTkDwu@uAkq@]of@F_f@p@oh@vBit@bEqu@fF}n@hIow@|_@ouCzYywB`t@qkFzSq|AvF_b@xXawBzMqfAtSaqBhG{s@pIkqApBc`@|C_t@rCy|@dCylBHuvAaBuyAiC_iAgJgpBcJujAkJifAkPuxAmOeeAsRmjAg_@ugB{b@scBw`@mrAak@g`Big@yqA_t@cmBkg@{tAcUsq@aPuh@qVq|@qS}|@iHq^cDmQ{Hgc@iKis@iDkWcCcToE}b@{Ggu@qGehA_F_rAuCwbAy@af@]e[g@{fAEahAU}cAU}fA[yyATyq@JiTBqFn@uf@nAir@|@c]bAg]bB{c@vD_x@z@gUb@gLJeCZiLVkIJiDNqET{HHeDLqDNkF\\sRFyDFgDFgDDuDFmCRu[xAwgAbAu|@J}l@a@mc@EyCA{AIyFQgIOeGyAco@uCym@eD}m@iBw`@sAo_@mCod@yBka@wGmfAkAaScCeb@yH{qA{Ewx@{FaaAiEk{@wCcu@{Biq@uCcqAiAes@qAwpA_@_{@Jmg@X_}@n@e|@`Au|@hAes@lAmp@fAebAvAyiAzAkeAvAgdAdAu~@lAk}@hAcx@fAc_BDgiC[knDK{}AK}iBM_yASmbB@}gAIysAAshA`@ecAPe`AVah@x@omApAq_BhAsnAz@uiA`@en@b@qsBNs`@C_iBOm`Ae@qz@c@ix@IsNu@k_ACuBy@_|@y@}g@_BweA{Cu}AgGolCqCusAiDcrBgB_uAaCcjBaA_pAu@clAiAevBc@smCOmrAM__CEugA[k}BCg~@[}fCMit@O}aCIslAGosA_@e}BI{rASqhBQ{rBM}rAMw|AKisAKqhAOq}AK_sABwmABq`ARwn@vAejClA{oAvAwgAdFuxCpGieCjGktB`EgfBrCcsBb@us@ZseAMshBmA_vAi@}l@aFycC{QukFoG_vBgFawBsEouC{CkuE{@g}Bg@gcCjAcbBpCy|A~E{rAjEa{@`JcpArBwYlMuuAzAkPnK{_AhNybAhTavA~TkmAve@ayBdgC{bL`a@{hBda@sqBluAm|GjZcaBlVy_BrVmgB~i@{uEf\\ycD~k@{`GdhAoyJfOqiA|R{eAjM}j@dO{j@`Vku@x]{}@rOg`@v]s~@zQgo@lMmi@tIkg@vEuZ^cClD}ZnAoMdCoZlB{]fAm]JgDl@go@Sem@yB}v@oFyv@iFai@kI{p@yJet@gPwiAaKau@gH{l@sCi\\gAeMyCef@qCav@{AihA^_t@t@af@nBmo@hN_iDx@a[v@_n@Egr@Qm\\?MeAw`@}Au^{Coi@wDae@sFig@sFse@qMgy@uBkMml@cnDiN_{@yEa\\aDyYiAmLeCuWgB_b@oAsc@Oa[\\a\\r@yZpAaXbDab@hHiq@pNukA~a@ukDtGmp@zCof@dAya@LcQTu[y@{p@mDay@cEke@_Hkl@wJ{l@_Re~@mQa`AgMms@gCmQkBoP}@cQKoLZkMlAgPnBiOlCqMrHmUbNaWvQiXpe@gl@pU_XbEyKhHoIfNqOzgAwnAn~DasEroGslHlsC{bDv_BygBvj@ck@t}@i~@zsA}nA~vAujAtrF{eEj`Auy@bnAcmAru@}~@jv@efAji@s~@fi@}dA`d@ucAlj@yzAji@mgBzXggA~VajAlc@ypBxMuq@n@eD|Gi]rBmKvEcVtJqh@fCkNls@mjDvMio@`AqEb@cC`Iib@ft@gzDhi@kqCb\\ikBfYy`BhOi`ApGca@`BcMxX_qBb_@}zCjVswBjBcP|s@skG~MqcAfJkk@nImd@xI}d@~Ho^|Lqf@dQsm@tZu_Ap`@qdAbKcStb@g`Alb@iu@vu@{jApx@gcAzi@ak@df@gc@dDyCx{A}hAb{B_xAj{B_xAr~BizAreA{s@~o@sj@zZyZb[k^t\\qc@x[we@pN}Wt_Ao{Bx_BawEbGiPlFyNnPg_@zU}a@r^yh@`UeWtQ}Phd@}]bb@uVdxEqmBjX_MvsAwh@bbAeb@zbAwd@rcAgc@fb@{Snb@mX`MuJ`]e[|QkUfSuXx`@}n@vXsm@rUoq@nRmt@nMmq@xIws@zEim@vA}[zAg{@O_r@cCsq@cC_i@mh@uyGqBoWkPgwBoUkwCkLqxAkKowAs@kKyH{fA}MkwBkKykBgIq`BkFakAyEejAmEujA{D}iAkD}jAwCyiAcCygAyBueA{AgbAqAq{@qBwmB?Aq@kw@g@ou@k@geBSehBLuqBPqz@`@my@Vcb@PcXHaKv@obA`AkaAxAqaAzAicAtEexBpBa{@`C_{@dFk`BvCuz@`Dgz@dHo`BzIejBxRiqD`S{oDr@}MzYimFxN_gCbMsxBhEyo@rEan@tCw]tC{[nEgd@tFof@~CwV`BmMlHwg@`Isg@pJui@fMup@xK_i@lMyj@~Mej@`L_b@dQgm@tMkb@zLa_@tMk^lPcd@nSug@hTsg@bW_k@hYkm@|Xik@vYyk@vUkd@xSq`@nv@uwAjm@ckAdVoe@n^it@rc@w_AnTkf@vOs^zOe`@hNu]p\\a}@`Mm]nL_]fNwa@tM{a@lMab@xLoa@tYsdAdX}dA~UqcAbJqa@pI{`@zRs`AzQeaAjYg~AlVcyAt`@oeCx_@cfCd`AwmGlN_aAzMubAjN{hA|KucAfD{\\zCm\\zCa^pCa^lCu`@fC_a@vB_`@jBm_@fBab@~Agb@xAoa@lAw`@bCqdAvBkeA~MccIbC{nAlByz@xB_x@nCiy@~Cgy@zAc]|A_\\rCgh@~Cuf@jFat@dGus@|Eih@jFig@hK{{@nLkz@vFk_@~Fe_@dPq~@bLyk@|Lyk@dKud@zJma@jJa_@pLmc@bMsc@vDeMnHkV`N_d@hZq|@~Z}z@|EcMdSch@`Rcf@xTqj@xi@kpApkC{iGjbAaiCz_@alAvJy\\zNgi@hKua@~G_ZrGoZ`Iob@zHac@|C}QpGwc@rFoc@|G}m@tCu[xEmn@ZcFxC_g@jC{h@`G{vA~CsoAdDer@hEun@`Dwd@vD_^xB}QbCcRtJgp@~G}_@xIa`@lDgOhEuO`DsKvEkPnQmk@rYav@`^yt@l\\mk@`SqZjYmc@|m@s`AzIqNl`@gm@jf@kw@bZ{h@f]cz@hRei@pLof@zK{g@~Iol@xEuc@lEgl@xEk_AxBsl@rFczBd@im@c@o}@cEonBcFsgC{A}`BiFcuFkAygAiAkdAuAey@cB_t@wIghCqXajFaEiw@_Dwt@{EihBsA_l@cA}y@u@gm@i@agA?w}Az@w_BnD}lCV{TbCotAzDorAdHysB`GouBv@{lAkAceAmCidAmDyvAOm[N}Tj@yTtAkZxBqXfD{YlDsWhH__@rGwWhFiQjKwY~Wsl@j\\kh@b|AkxBpWc^rZec@`Sq[nNaYjLaXvGkQtGsSbGuTnPc`AdEu_@tD_c@lKwdAjDkYtFo[zKki@|WeeA|U_|@jQws@|Jic@pKae@dR_|@lPo`Atm@y~DnTuaAvS_r@pSyj@bCyFhc@_aAbn@qgAdc@sn@v^ic@bg@ug@|KqJzKqJdS{PbZcTpUqPdn@c]fXqLdYiL`XkJtjAw\\hpAm]va@{Mj\\eMhu@s[bm@_\\fw@wg@lw@_r@x[c[rq@_w@vZsa@tZye@l[}h@vSaa@jBsD`IyO~]ox@r[c{@pHsTpXey@zp@{gB`KsYxBiGlYscA`[yyAfEi[fBuUTqFlNkmDzPunFpCahBtA_mBx@w|AzAszCHcQfBujDbB_yDFuLlG}bJNoXlAabBl@y]r@q]~Bes@~D{q@|KknArM{kAb_@obD~Ik_AtHe`AfFk_ArCa_ApAup@Rqp@c@_q@q@yr@qFqaCgFapBiAek@Kuk@h@mk@|@af@z@}c@rCiq@xG_wApWm_H|Om|FrOmfFbIcpBxLwrBdPasBhSytBvZglCf^spCrn@upE|e@_aDni@}gDXcBzm@ipDxq@u|Dlp@i}DdU}|ApP}oAvd@{kEbO_mBlMukBrAeW|FchAbD}t@pAa]~Byn@|DauAtEanC|@sqAZyvB{@gjAmBqrBcDygBoLwaEyIubD_FcmCgAswAYgxAPoyB`@oaBBolAe@}hAaB_w@{Buq@kFq}@iFqp@qJy{@wKuy@cTqvAuLaz@kXwoByIoy@qGg{@cDqf@uBce@gEapAqBwv@oAc_@wB{r@mFydAyGw~@aJoy@gKww@qOk{@eRs|@cPwo@{Qmp@yl@sqBk`@qvAsVgjAeJek@wI{p@cHmw@sEux@}Bsm@oBicA_DeeBiDgoByCihAoFktAsIqtAoKerAkJk}@oK{|@kKit@cLmt@kO{y@cPey@qc@woBg]qwA{g@e{BcLan@}Jiq@yGao@sEio@oCoc@iBee@}@kg@Sqx@t@ux@tBmo@nDio@zEwj@zG{i@bIsn@`Ksm@~]cjBlZ__BhRaiA`OofApIms@`Het@fGk}@dF_cAxBmw@tAgy@RcnA[gp@_Agh@yCeeAyFqfAeHegAkBuUwLstAsNo_BcPanB{D{l@cCgm@uBi{@c@uf@Okf@^an@~Aar@nCyw@bFgw@pGsu@vIot@hK_s@pKen@rPww@jR}v@rVo{@da@gpAd\\a`AxSul@f\\y|@|h@cwA~Yqz@li@g|At[sdAn\\}iAha@k_B`Pet@hNws@~Kyp@nJkp@pGih@jHcr@xDgc@rFes@zEk|@tBgg@pB}y@~@an@^gn@Igk@?s@q@cl@{@es@sBis@qRk}EwAg\\_Gs_BkF}aBcBeaA}@abAQmoBjAe~AdEanBrFsqAxGetA~IguA~Pu}BvO_hBlSizBnT}xB`SkjB~OgvAzg@wbEdUebBhVydBfOoaAnJ}o@zGib@pm@}sDvw@glEnD{Qrk@qxCzq@o`Dbh@{~BjVieAha@{aBvX_fA`]ytArQmn@~h@ioBn[cgAvo@mxBd\\igA~_@ulAjh@s~AxY}z@xW{w@l^{cAl^cbAv[y{@fp@ieBv]q{@puAedDt[cv@f@kAz\\iw@r[es@fYeq@bYcm@lXyn@pmAwnChRaf@vOoa@nIqU~HiUhImYdPuj@~Pir@|FgWpOiu@vMur@fXg{A`_@{aBbRwy@zPyo@~U}s@zVon@j^}y@x\\er@ra@qu@zUs_@|U{]hj@ev@|n@ow@vn@sp@lc@ud@bq@g}@`_@{q@nWgr@pViz@tQoy@nKep@tJix@pHsz@hMcsB|IsuCzEmgDpCgfBvEgtB~LizCpN_kBhM}eApUs{A|TggAhYefA|Tuq@nRmg@pRob@v\\an@r^si@v\\oe@`^gf@hk@g|@|Tyb@dSge@zSgp@xTo`ArVqxAhMc|@rNoz@vLqi@hJmYjRyf@f[ko@r^ep@zq@mrAhf@krArZ{mAdPiy@~Wi_BdPkqAbLwmArIukAlFmjAzCydAdAabAHgkAaA_`AmD_sAuDqz@cHwfAoMgdB}Rs}B_KcmAyGgaAyGcqAyCobAgAqdAEgEjAgzAtF}oAlGsw@zLkeAxYgiBf]wdBx\\__Bf^qaBxYwbBbG_e@t@qF`QcuAbKelBjB}bBe@g}@AmHa@yUsCsjCmAwnBg@}yAt@wwAzBukArJubChLegB~WgkC|QkzAtUshBlPqlAhf@msDrR{~A|R{nB`NkeBpJ}hCpEexCPabAMioAkDktCsGefDkGyeDoBwcCBalBzAuiE?anAm@sx@kBmw@_C_q@qHsiAkKihAec@oyDwZmhCyU_tB_`@cdDkE}`@wAsMoSgpB_Hau@oEgm@oJszAcB}YoDyfAkAu^mAqg@{@_dA@}[d@se@VyOTaN`A{XlAoY~AyVxAkSrCk\\`CwVvMkcA`Lom@rLmk@`R{u@zUk}@n[{rAjN}m@pOi|@xN{iAbEyh@~Cuh@~@m[`Byk@b@gz@y@acA_Cqx@cIelAgLuxAgMq|AuEer@eCwjAAiCQi`AdB_rAjCcn@nJglAvMikAnQopAhKes@tNeaAvJck@nGmi@dIgu@dF{`AbAux@qAkl@eFc}@{Ki~@cL}p@kNes@yN{k@a]_xAsL_x@yD{b@wEsv@cAir@bBw~@lGcw@xHgk@|Nys@pPej@pVwn@zTah@~Tcf@vVek@fUep@jR{p@xPst@jRg_A~Ry`AvMwo@fQgx@zIo^hPwh@`[e}@vH_S~HkSvCwHhQ_i@zYyjA|Loz@jHyfA`D{x@xAam@pBqi@dFol@|Gih@nOiy@hTo~@fNos@bQqeAvKieAjF_fAjCytA`EygBtBqp@b@mNlEocAbF{w@~Gi{@fI{y@`Jox@~Kk_AtMwcAlHgp@zIiw@lIwdA`Ey{@pCmaAf@eo@Akk@i@sz@oBu~@iFw~@gJ{jAsJceAkGup@iMa{AkEmbA_B_r@Cot@fAqx@`Ewt@zIk`AtMu}@tOsw@`Oen@pT}y@dWu{@z]ilA|WegA`Our@xHwj@pJwaA~Fku@`G}`ApJkmApJ}p@nKim@~Nqs@hUuz@nN{s@fJwk@xBqW|GscBs@o`AyDa_AqJ{lAuIafAiKayA}@qM{DefAaBkgBzDghArMmyAjVotA|\\mnAj\\_{@`OeZ`Ued@bg@saA|FuLpVog@z[ew@r]{dAt\\qtAfUctAtQqlBpH{uA`@sv@uDslA{LahAy[{{Aa`@aqAae@qsAkd@e~AcZerAaRelAgIku@sF_x@oCkeAZsoAvCuz@nFyy@jKceAvIiq@vVsfBz]odCrd@w~DbMexApIwrA|FcxAxBgfAZucBqDi|BkJyvCuKkzCiSayFsMeqDaLc~CkGgkBcHspBcDaaAg@eLcEsbAuGyiAkLm~AkHsv@sMg_Aga@u|CiPwiAqRaxA_LadA{@yHuFso@iDci@yCs_Aw@u|@Xuz@~CcmAlKotApHyn@bNuw@~Sqy@dLy[`MkZfd@mdA`Xc|@pT}gApS_qAzPoy@pMwc@lQsf@lPe]dS}]~^se@~HmHpl@cj@`y@gx@xa@cf@fAqAnY}e@`Xak@`^kfAxI{YdLma@dGsYhIob@tHcl@lFsf@rEop@~Aqc@bAck@Y{g@aBqo@eDqe@QaCoGat@_Iqr@_Fcl@yEkj@kC}c@cBwf@uA_h@g@oj@Jaf@?[h@gf@vAog@zBen@dE}cA|Bmv@t@s_@Ha`@Kq]q@}ZiAuWwAkVoDkc@{Fad@}H}e@oJ{c@{N{j@kd@uwA}Uiw@}HiYcGuXaGwZgEcZeDwYiCwZuAwXuAka@[wd@f@ul@bCmg@|D}h@xHwt@hK{r@zIql@`Gsj@rCu]|Byf@d@aSNuSMu`@Yq[uA__@_Dec@gFae@gEcXiDmTkHg^et@_nCyn@qgCyWqfAye@}fCgK_n@gJoo@_Kg~@uF{p@aFsp@sGgmA_EywAaHgrDgDkuB_FajDcDmwCaBwdDi@mkC}DokCkw@gi_@oCci@}Ga~@aLg~@iYiyAaGsWyKy_@cKm[cP{b@wi@usAcuI{yS__@m`A_\\c`A_m@irB{XmhAyYerAuOiz@aHab@_Igj@uH{l@eHot@cF_t@uDso@cCcq@}Acz@e@qz@GabAhB{aAhEahAzHikA~^}`EjC}ZdAsLzAmQvAyRvAqUv@}Rl@iTZmWFsUUgW[oPc@uM_B_[mByUeCsU{CiTmD{TcEeTgGcW{EmQyHwXeW_y@oHaVoHqWyHoX{EwRyEqSsDkR}CeQ_DoR_DoUoDcZ{Cc[oB{UsCq_@sBu]aBuZ}By_@aDon@eCcb@yBsZqB{UaCkSsDmX}C}R}EcUsHa[oHyVuGsRiK{VwEeKaGmLwFqKyIgOaMmSoOmUiOiSuMePaVqXsNcOeTsTuNwMaQuNaSyN{KoHuRmL}OgIePsHe[kKoPsEeQeEeNeC_M}A{P_B}PeAoPe@}OOwQZkMd@mIh@sL|@cPdBoMjB_NbCeP|CeW~F{d@hLa^dKuLzCoR|Eaw@lOuw@~K{n@dHwo@`Ck}@{@{_@aDk^gEei@kJyg@aMie@wQ}e@kTw_@mWm^wY_]a^y\\{`@uYud@{X_g@iUyi@ySym@cXucAsWsaBcJsbAyYm|DkWqqCoKcjAuG_p@cJ{v@wJuv@k^m}B}_@}jByMml@eNei@}Wi|@sYmy@mWio@wVgi@{BgEiQk\\y_@qs@{uBkbDg\\mn@e_@{s@w_@k_AkXcx@uSkt@_AgDam@_xCcQirA{La}A_Gs{AaBolANqoAhJcdGDyeAWgd@kAia@}Bmk@qDqi@}Fsk@eIqk@cLsn@iLci@qR}p@eUmn@Sk@uf@_iAef@wcA{Uuh@wPsc@gOaf@yN}l@uKmn@sIau@uFo|@iAei@Uge@bAin@xB{l@zJegBdE_}@pBsf@d@_g@Tyg@_@eu@cBkv@qBeh@wCum@_Fgs@}For@qJwaAwQm}AwCoTg@oDiHid@eW{}Aud@i`Cin@_dCkVm{@g\\uaAuRcj@mOib@ueAwsCkaAchCiVgu@sV}z@uTa~@{RseAoO{hAyEqa@_Eyb@iDme@qCse@eEclA}Aiy@[{y@d@umAtEshBzHo{AvK_|AxOidBvLmgA|Jcy@vKsz@zW_qBvSo_Bz[a~Bbj@aaEpsAcdKvd@yiDpKc|@`H_~@fCoi@|Aap@`@ex@c@ew@_Boj@_Dmn@eG_n@iF_g@mL_v@oMio@oNgm@md@uaBcp@{vBil@{yBeW{dAuTajAuIof@aI{f@kKgt@_Hei@gGck@yGup@cEwf@oDie@sCkg@{Bm`@gB{a@{Aia@gAmc@eAad@q@ic@e@yp@Owg@G{q@d@}eEFqbBG{s@Qmr@Qk\\w@gx@aAuv@oCenAcB{h@eB{g@oFenA_Dgj@mDql@iD{f@eFqp@cHuz@eIy~@mIy{@qTavBaUkwB{TwvB{Is_AqG_x@eFwr@_Eup@}Baf@gB}b@qAu`@aAia@s@a`@i@qc@]ei@Can@Lug@d@kh@v@wf@pAkh@`Ay\\pA{]jBka@~Bsb@nEyq@nBsWvBsX~JkdA|Dg^tFod@bEe[dOuaA|EyXzFe\\pMip@jJ{c@rJ{`@pLge@zRit@dIuX~IoYbJuYbJaXbQ}f@bPkc@rVco@lVsm@fKiWvgAilCx~@a`Cj\\mz@l~@kkD~UyjAbPeaA|K{z@zCsVfGck@zBkU|Dqd@rDsk@zHs`BjAim@Zyj@_FedFeBys@kD_v@yDse@aEm`@iCuR{Gmc@iKei@gLwd@oZwaAw^c|@mLeVqvDivHwzAszCevA_tCqKeUuIyRyJuUgIsScJyUcIeUsImViHyTcI}V}GyU}Lkc@aJ}]sEqRsGaYU_AwEsVoB_MmKau@wCqSyQupAsM{lAq@mGoOss@ml@cvBcX}wAud@_gCaI}\\kJm]qJaZyP{c@iM_XqI{Po[_h@g[mb@ia@sj@_a@ej@ePcS{ImI{M}LiMkJ{MmI{LkG{MmFeHgCmLaDoKaC{J_BkLqAmIe@mIY{OC{IPkNf@oGp@cIhAcLrBgK`C{LvDeLhE_JfEaHlD}JbGgP~LuqBl~AeKpHgMpImKhGeKhFgLtE{L~D}LxCcM|BwLvAkM`AkMZwL@sMi@{LeAoSkCcZsFydCqe@{|Buc@{LqCkSgG{RmHyLkFwKwFgLkG}KeHcKeH_P{LeLsJ_M{LcVsXaQoUeIqLwHeM_IgNqH{NyOk\\mOq\\q_@wy@aOe\\qGoOoFmNuIqUeG_RyHyVmHmX}GcYkEoSaMqo@wTujAwIuc@sDmQcEgQaFsQeE{MiFyN{F{N_HmO}G_NmHsMuHwLeIgLmJgMqImJqRgRWUwCeCsE{DwFyDgMuIeKcGcIkEmIwDmJwDgBm@eA]qKoDmM}CeOaD_rAaVkOwC{TiE_TiF_RmFsSiHoUmJgI}DwNoH{X{OaMsGwM}Gok@}ZohCcuAcB}@k|BymA{nAaq@_R}JcHcEoGwDmH_FgG}EyGuFsFkFoIyHsGmHeJ{KaIwK}FuIyEcIsL{T_HaOuFaNcF_NqEwM_EkNoDqMmMck@_O{o@cDkMqDcNyFwQmFmO{FoOwFaNaLqUaHoM_I}M_NaSoMsP}KuMaNgNeKkJ}L{JuNiKcMqH}OyI}SoKosAir@wz@ic@}VgN}KgHgLsIgMaLqHoHwIcKyIoLiIeMeHiMkHwNiG}NiGcP_FmN_KwYgd@msAmMi^kGaOuGiNcHsMiHsL{IwMqIoLwHiJ{HoIiH}GqFaFmI{GuJkHiKiHwW}QqjAox@ae@}ZoKsGkL_GeL}EyL_EqLmDiMqCeM{BuMyAeLw@cFWyMa@}LCyMVoMz@sLnAeM`BuMjCgLlCqLrDsSpGsLtDgp@`SkLzCyLjCoSpDgTfC_O~@oRp@kMHgMMmMWoMs@oOwAqQwBeMwB{LcCuLaDaMwDaN_FwJkEuJeEuI}DwBaAsUgLoPiJg[wPi[qRgQeLgo@ib@kfAmx@__Akw@kbAadAiKgMwOsRgE}FsMsQgPqYaPeZmCiGaLwWaP_d@onAi_EuPok@_Pol@qFqXoE{[{@yHiBcPgC{\\cAsXi@kWByKJg_@rBwn@vEek@fI}j@jL{i@h`A}iDdWg}@dWg}@pOet@tIog@pBsL~p@glEtw@edFlUawAlX{eBjAgItFw_@tDwYdB_QtBi^|@{a@@u_@k@yXkBk[mCmYiE{[{E}XyH_[iJgZoHcRgKeUaMuTsJaOs}@wiAqJsN{MwT{NyZkKeZmIo^wFq^sC{]uAgb@Pgb@tA_^nDk]nDmVnFeW~IkXrLm[tMuVvPeUt_@{a@pPePzcAg_AnZcVjE{Ct_@kVduCqfBhUwNfSuOdQ_P`QcRbOwS`NyVzKcWnLs`@hI_c@`Fyb@vBqb@R}a@iAcg@aDs_@eGec@qIs_@cLk`@on@qpBiPsh@sPgi@aLga@iHu^sEuY}Dg^yCmc@sAoh@Gke@bAga@xAo\\fD{]vCeUdFi[lAsHlIu`@|Pmi@vSyi@`iAkoClm@g{AdJkUbK{]lHyZvDeSnDaVdu@ubGhNu}@|TskAjbAq{ElFe^tDc`@rB}b@\\qc@a@sd@qDim@}c@ylDaUq`Bq|@goGiIeo@iDo_@qBq]uAqf@qIa_Gs@yk@Iuc@Ha]d@a^fAgk@nBokArGw`DnCe`BZuu@{Ao}@qDq|@aGco@iHeo@{iCypQi\\gxBgNs~@{Lqr@aPqq@}Pup@yf@wcBsLgf@iMin@uKet@mGij@cDud@oDco@}Asr@Iik@j@}h@vCagA|LepDpAiq@Xqr@}@si@eCch@oF_j@wA_JqGka@cJk^gKm]cJgTcJgSwG{MsHoMaOcUkHqJsPkS{OmQeXoY}a@cd@w{@k_AeMoMwbBoiB}a@gb@}QqQ}McLqUwOsV}MsSmIuPaFyWwFqTaCiTkAi]Nog@jCs_@bCoXZ_Tg@oVmBo\\qFc]aKkW{K}RyKqVcQeR{P}OgPgPqSkOyUuQm\\uLiY}Ms_@yDmMqCcK_CmJwBkJwBqLk@gDkA_HiBuL_CgQqAiMuAiOeAaPs@wNg@eN_@{SK{PFoVX_Px@aWbA{PpBeWnAyM|Gqi@pEc^vBqRjCoXnAsRrAcWx@k[Tc[Gm\\kB}s@cFev@cJmu@qXepA_o@wnBy|@ogCmjAclD{Zg~@_Yyu@oZ{n@i]ef@_^i\\}^{TeTuJuQ}F{]cGywE}\\{`AqQ{s@{V_n@yYop@w_@io@u]e`@}Te_@mXyTgSyVwWed@sg@}GuIsXib@_g@wbA}Tkk@{Ocf@qfAqvD{x@yoCuk@iwAqi@_`Aa@u@qm@uw@or@wp@qpAonA}a@kg@uZuf@iSmb@sQoc@yOog@kSo}@qIok@iC}TyBeTkA{Mw@gLw@eM{@}RK}Bq@gWa@gTk@ik@KgJYcXyA{uAGeGaDoxCm@}wAAoOPyUt@g[rA}WxC{]vBcSfBiMzByN~A_I`A{EjIg_@`EgPpFyP|E}MhHgQpQc_@zKsRlFgIrJ_MzH_KrTkT|A{AzSqRn[iYjQaR|GyIbJuOnHyN~FoO~E{OvDuOzEqXfAqJbAeMj@_M^eTCgPa@iMs@kPWgCw@aIuAaMwCsOoE{SiT{z@ib@ubBe|Ba}Ik^ewAuMgh@yKo_@cRak@gSug@w[oo@}_@un@??}KsOcZ__@m{DiwEuUkX}UaZaNkQ{O_V_EeGcGuJwKkRyGcNeJeRgLmW_IaSiHySaJeYyIk[{FoTwFoWaGeZaF{YuEy[wCsVyDma@iBoTgG{x@yDqd@}AaRmAaLgDmWqDwW}EqYcCkM}Gs\\cHcZaHsWqJ_[_Le[aLoYwM}YiMaWoQc[}LyRoR_YySaYaa@mh@{Vo\\kQwVeQ_XiPaYwNaYgMeWcIaRqNi_@aM_^ue@ctAmo@gkBi_@kgAk@_BsRok@}FsQeGgTiHwYaAyE_AuDeHi^_EyWwC_UgDkYmBeWgBk[oAyVi@gROuF]aSOmUN_VX{Xp@gXr@_Sx@sP|Be\\rDa^dB{MjA}InF}\\dKsj@lVuiA~Jwh@pG{f@pCeV`CwUpBu]`B_^tBiy@Xo^AoNmAat@IqFIuEU}Ou@}Q{ByXuIaz@aEi`@mBeRU{BkBcVaMafB}@oMsC_e@u@}LKeBwA_RkGez@gEu]qCcRaFkYaH_^yGg[eLcd@_IyW__AwlCsaDgeJs}@whCeKsZwH}T}HmWeHcWiGaVeFkUuE_VcEyVeEyXaDiWuCiXcFsh@{Ggs@_Fgh@uF_l@cEoa@aEo]eFi_@uH_c@cFqVsD}PeIa[gJw[iJyYsVqn@iJwScLmUsRa]gS}ZkLsPoR}UsUyWaYeXaR{Os[eT_VsOiYoNoPqHgSkHyVgI}TyFoQoDeSwCyToCkW{BeU_AgoLaNqiAeBoWaAuOwAmQqCsQkE{LeEeQiIuKcGeO}JyM{KkM{LoMiOmLuP{J}PqJaS}I{SkG}QiIeYuGiZwDiT_I}d@{O}|@gDsPuPqt@wKu\\sKeZ{O{]oQy\\yOyUwOwSsNiPeKaKoNmMsTiQoTcNmQcJkSaJ}v@sYa`Ag\\aV}IiNiGyKqFgXeOoVcPuTwPaTiQyJuJcCaCoReTcNgP{J{LeBuB_n@wy@gXa_@sc@gm@cb@sj@cl@gx@kyAmqBan@az@wh@yt@{^{f@kr@{}@iy@w_A_i@cg@yl@ae@gbA{}@g_AgfAq~@ibAqOsL}OyJuK{GeL{FcNiGePgG_}@{]uVqLoTeMaUoNeKqHsIyGsLuJgH{GeG_GoQwR_JuLyKkP}D}HoCoFaFuKkEaK}DaLgEuMgDgLmDqMkDuMkEkRgEySuCqQyBsNmC{Q{B{OeCwUwB}UoAuS}@eTo@cUUgXDmVl@{^z@kYdF{oAjMw~CzEukAvBgl@dAob@`@a]Co]{@}^wAq[mBsVcEq^mC_TwBqNmDsQqDmPiIm\\eIkWyNsc@kKyZ{Wov@wRyk@cKc\\_GuSkFiTeEeT}E}ZkBsNkC{SeAyJkCaX}Co`@yHabAaDe_@gGwr@yHiy@aIey@qUgvBsOsxAuFof@}Du\\{DyYyH_h@iHob@ySkfAeRi_AsJqg@sF_]gF}^iCwTiEsb@iF_s@qIcpAqG_x@sG_n@_PycAoB_KqJag@}Py{@iMun@yNst@y[o}AqGoZyG_YqFmS{F_QkEaKsFyJuEqHcEgFiAuAaJ}IwFcEwFwDsImE_LkDuG}AkJcAiJo@oJDqJj@{GdA{IpBsG`CeFxB_EtByGjEwGlF}EvEeE~EwGxIcHbL}AnCuChF{D`HkFnJsKlRuNdVgOvUqZhe@aSb\\aUt\\_Y``@SVwQrTwIrJgMnMeIhIoUzReOlLsTpOkMvIi]lSm\\|OqTbKmOnGoTdI_WpI_JtCkWlIyt@pUq[|JynB`n@gl@zQ{x@vUol@jP{q@pPio@xNum@jLml@bK}gApPwN`Bof@vFgs@dHu|@`JulBnRatAdOkt@tHuS`BaTx@sTl@w[Dw_Ai@wPKkRDaNj@_WtAyRzBui@nGgXdCoUnBg`@z@y{@fAmNAsYgAcR{CcOgE_PwGeJcFyPeKiEyC_CaBcPqNmHiHiG_HeKyLsKkMuP}UqKqQkGyJaLaUyAwCgHePea@yfAsFkQiAkEiG{UqHs[uN_l@g~@g`EeJw`@oHi_@wD_XaC}SiAiSq@eYBo[lA}d@bG_mAzBmYtCcZzF}_@b^a_BxDwRjBaL`B{JzA{Lz@mIb@oGLqBd@uJZ_OFaQQuNo@wOaBmUsCoWmC{Q}CmQ}CuNsEkPcEoMoD_KyDmJaOiZ_PqWeRgXaSuUqQmRkL}KmNoK}OaK_RoIu[iKmUeEeZmB_`@LefBnGsPl@c[f@oNWyMkAqMyBkNwDyX}IwSiJqU}NsSsRqOgQ}d@kn@ex@{nAiSe[aJePsFqLwEgLqDgLoDgNsBkKqB_MyAuMwAqNu@mKyf@qtJgBsXuAeOsC{UuC_SmE}Q{FuSuF}OmF{LqHuNmJmOyJuLiMeMsUkU_G{FeO_OsMyNyRsVqR}[eJeOgf@ww@aRoZ{KuP_DiEcFsGkGiGeP{Pcg@sh@}TyTa]k]_D_D_k@sl@{u@gx@{l@kt@gVcYuQiWgPuWeP}XqMkV_LyUcK{VkJsViIoT}HgV{D_McGwR}HkZ_FaTwCoNsBuKaDuPwBkNcDaVmCyYsFqr@gEen@}Bqz@c@o}@z@wr@`Cyo@lEwu@lIyhAxJ_|@hGma@fGuYjD_L|EcLnD_GjGkIdMoL~OuJ`\\iMrfAy_@vZeLfY_OxNyH`IaFhHoFlKiJ`IgIdIoJpEgGRWlHaLtFsJfEwIdD_IhFeOdFmPpEsP~CqOlB_L`CmQjB{Tx@oOt@}UFgPKaUk@uR{@mTqAiTsAmRg@}GgQmqBqBoOiBwKoCgMmDcNyDkLmF_MyGcNgGeKcI_Lit@ey@qJaM_CoDiF}HeIyOqF}LeEsLcDeLkCuLmBqM{BeRw@gIy@kLq@aSc@cWCwWWwvAGe]?uY\\}[`Ag\\~AqW`Cga@lEmq@lAo`@PyZAk\\]qPu@iKaCcTuD}TmDwRwFuTqH{VwHwWcFkQcHsXuIm_@aLmn@yDwUaFw\\aHcj@uC}Wg@aFmAeMuA_NmAmOkAgQs@eMk@_LgAiZYsNQ_SDaKRsNTcMb@sKt@_M~@aMj@iFj@iFtDaY|CgTnGsf@rE}^zD}\\nEcb@bFah@tC{[l@sHx@aKtBsXZoFrB}\\pDmi@zAy\\jAsXrSq`Hb@eUJqPCgVKsv@Mqp@N_p@\\}d@Nek@Gqf@Yeu@{A{n@_Gk_BoCgf@}Foy@iG}p@gHyo@_J{r@mHee@yHcj@sGmb@sHgj@_E_YgCsP{E_Z}DoUoE_W}EgUgEiP}I{Z}GiRgLmZsFaNmHcQeBcE}JaTuLsT{e@yy@eZae@caBclCk`Aq}Agq@mgA}MwTeIaNoPw_@oI{WyIu_@wGa`@_Ema@mE{n@eK_fByCg\\eFqc@iEwYcIoa@cEsPoC{KmImXsCeIqJuX_Yes@qN_b@kEwM}EyR}DsT{C}SiBmQcAmUMsVj@kWxBu^nPmiAxGab@`Fab@tA_Up@}X?{X_AeUoCgYaDaTuCmNuIy^yJ_]iHeY}DgQq@wCeJei@eCmUwBo[m@yQI{UPwZfBs\\bBeTpCeUhB_MxDkVxDuXdBiMtA}JpA_MrAuNnA_PtAi[Cs`@q@_m@iAoq@}E{pAaL{aBuHabAcGaw@iG_j@cFg[uDgQcLo^{Jm[aFwPuAgGqAoFsFc[uBwPkC_XuAsR_AsN{@oZWmWTmR\\uMh@kI`@qFn@aHpB_PtCeR`EuSfGkXjOeq@~DuQhE}RlEgWbDuSfCaV`CkVzCsb@lAiUf@uJ|Ckq@hDqu@bB}b@lCut@j@_PPqFnAoi@zEsrBTmN?wFIkDOgCiAgHQeAc@iDS{AOiA{AyM}BiJcBgEsB}D_EwHoOsXmHsNgKiTeGiNmOa_@cQia@eHiP_FiMgKyWcCyGuFqO_F}OMa@_D_LgD_N}BgKiDqPmDuRyD}UuDuVqIwj@{EgYwFoZmCmMgE_QyE_Q}CoKsDeLkFkOuFoOsFoMaHgPkF_LgFsJkHkMeMmReGqI}HeKqNmQ{`BglBaeBiqB_NkP{KkO}LgRgJ_QiFaMmHeRwEyOkFsTaEsU{C{VoCc_@a@uJKyII_IAmTp@oXlAgRv@wHpAiMjD_VfEuS`F_VzmAgeE|EmTnE{SrEmX|Ec\\`D_XbEca@lCq]pBq]jBaf@p@a]j@ig@j@sw@Ta\\@cVKoPy@{a@uBua@wAeP_BeO}DqZ{DqU_FwVoEoQ_Nwd@mLu_@yLo`@eJi^eJ}c@iGia@aKys@_FuZqGo\\gEyQcFwQiJeWcKgUcIoNiL}QmRyUwd@ug@cKkLaPaRmSiW{MeT}NuYmRsb@mOq_@iPeh@cMag@uL_i@iNqx@mGio@wEym@wDoq@qDwvAsAqp@i@qz@AgpBXyxBEku@l@eq@j@o_Bm@a`Am@yZsAqY}A{TsBgRkFa\\kFqRyEkNoD{JsEwKuIiQwQs\\yGcLmJgP{I{NsQyXkKmPqJ_NaJwKcM}MeGeFgHaFw_@_UoZcPkUaNmRoOoQ{OeR}OsPsLaNgIqOyGkPsEgQmD{JeAkRaAeLKqO^wd@fD{eA~LkUxBcQn@qPBqD?uQq@cTuBgReE{t@qWg[uGmWeCkZoA{j@q@o_@b@y_@nBw_@jFwhAvQyrAp[q^hGw^rFed@fEqPz@iJ`@mG?yZqAsReCuJuBcDs@wS{G_XkMkQuL}QaOaOwO}JuL{EmHeJmNwJyQ{NwYoNkXcJySqJ}ToJkW{Uao@{HwVkIw\\qGo[_FwXeGic@cEs`@iD_d@iBsa@cAk`@e@k\\m@ieBa@{c@aAoe@_A}RyBaYyCgX{DqWyDgUkCkMu]{iA{_@wjA}GePiz@ckBcb@i|@y\\}r@qYil@aZyl@uZkl@qSc_@gMuSaM}ScPyViSeXoGeHiOoOaQyOkR{K_TsKs[mM_RgFqa@kIwPmD{MsDePkHyHeEiIeG_MkKkLcMsJwNgIyNoGeOyG_PoFkQm@}BcGcUaIwb@sHii@gKoaAqGo{@]{GsAyUsAyWgAa[oAwe@[mUQsUBoZGwZHgXFsFVwRZqTh@oWz@uYxAo^|AyYnBaZlFmn@vF}b@lGsa@lGs[vDiPjHyXvNkf@bLu]dAcDxPmd@fTqk@tn@{aBpMic@lDkP~E{WlCiT~Ci^zAcXbCgt@~A{z@Zs\\HkN@_C@gO?gWAwy@MedA@oR@{G@uO\\i[r@w`@r@{^r@_\\~Acj@NqEv@{TbBa_@xAsZzBm[lBkSjCkWfFq]vDmTdHi\\pEuP~GsSzSki@br@}uAdL}UnL{WfI{T`IsW~F}UzE{VlDcW~BaX~@kSXsSJoTSu[{@sZ}@iYiCir@{@{ZUq[JmYf@uZ`AuTnAkSlBwUpAeNdBqMbHwc@~Fa^zAqIdCkNzFa\\fDwS~Gwc@dJ_q@hP{nAnCsV~Ck\\rBqVpAgW\\sMl@aSTuUByQUsTiAaW{Fky@kQovBoNaaB}K}sAwFit@mFkgAeCu{@r@kdArCiaA|E{w@zDa]dIcm@zIci@`Ic`@hHeZvGwVjH}TpDcLpK}Z~^ifA|Lea@zHsX`FoShF{WdDaUtBeUjAoU\\uTAmVa@eUk@aMoBkT{C_TsD}SyEkSiDmLmEkLkFiMqHsOsHiM_IcLsL{McJuI_JmHoJmGeJcF{NuFmS{FgHaBqFaA}x@kMyx@mLcy@gRgc@wOy\\aPkXsM_YmNoXcOIEg{@{i@a^qWkKyHyb@}ZiVmW{NaTuVqb@sPuc@_FgQaIg^gHy`@oFih@sA_a@Ye]H_[^oOd@{JfA}PvAeUbB}PrC}TfDoS~Io_@jHgV`IuVtYyu@hKe[dLi]`Ood@tIg[zGuZjDiUtCc[tDun@pCcp@pBay@v@ehA@uk@{Bk`AwB_g@cGiy@eGcq@oLq|@wPyeAm|BkaN{TcsA_DqVU{BiAyNiBmR{RayA}A{JmAsD_CaEyBwD_BgCgAgC_BiFaJgg@iQuiAqW_dBkJyo@{DqZaIsd@gI_k@oJoeA}Esu@ePexC}D}iHs@g{Ix@e|@vBovAhEktAhGysAlFmjA~Bi`@~Byo@v@yS^}HnAcWhB_WfKiaBt[}hF`SweDjDie@jCk[fJ_jA|e@o~G`Dm}@tAuaAw@ycA_Awm@wAuj@{Fi`A_Hsr@yMyvA{P{bBcFcn@aCo^oB}e@s@{UcAmg@eBku@e@qi@Zch@z@g`@hBim@tDqn@dJ{uA`Coh@pOokCh\\wmFnJ{xAzImwAxCw_@dFka@`Fic@hAeMvAeKzDiY~F}W~Hm\\nLa^lH_OzOaZjyBq`E|lBuoExCqG`]it@rMeZ~GmPlHcTnFsQfHcZnEiWhDoWbCwVnAqUjAi]h@_`@Uc`@eA}[qBcYaEm\\oE_UqFsS{JgZgJcT{HkQ{KySsJwO{KwOkOcQyIuIsJoHqMqI}JiGgKkGoXqNiVkMeEcCa|@}c@gPqJ{ZuSwZyUwd@{_@aQiPyQeRaFcGaRyT}K}N}HmK}IuLgJsMsQ}Ws_@iq@{j@anAuPw`@kQ}j@si@}zAmc@yiAeIgVg_@u}@y@sB_GuNeJ}Sck@mqAsj@orAa^{x@qJ_XkIwUoSss@}Riv@uJe^{Jab@wdAq`EyQws@uXm~@_Q_r@k]}wAy]_rAsT}|@wRa`AmLov@uIgq@_H_k@_CuSE]yN{lAqK{}@K{@wIiv@wRy{AuDwWaBqKa@gCwDwS{DuQeDcMmDeKsFwMuGiO_K{RmMcSsKkN_OoNyNiLoIsFiH_EeJqEiLaFaK_DwLuCgNuCcKqBmMwBwV_E}O}BuRiD}RaEgMwCsGaBmGqBsJmDeKoEwIsEmHuEaGgEyFoE{FqEuHuHeMyO}K{PQYa`@qw@kZoaAk`@cyAcc@chBkf@}xBmHaX}Loa@yRwi@}Pu_@ySyd@k^qm@y`@wg@yNqLkVmN}MqHyTeIgU{Dyc@}Gap@iGwe@{@sz@xEwa@|Fwd@fDmDC_TxCyUdEgEt@sNdCo\\tEiYfEcK~AiUpEwYxCu\\\\iXwBiWeDaWyGkXgMcUmP_QqPgL_N_P_T_a@{p@a\\aq@iO_h@qRuz@qKyv@aF{u@oB}s@dA}x@xDgi@xIwo@nHsa@~Jgb@tRer@dZs|@|X}|@|o@sqB`]acAp[kaAjUk`AvTygAf_@swBlOuoAnM_dBhGgp@xFys@?C|Eao@~[y}DrIi~@hKefAbWklD|A_S|Gay@`JobAhP}hBnNszB~@o{AwA{z@o@wRiC{[wAkLsCkWiD}X}Lcv@}XgfByQmsA_RwnAcOo~@qMoq@G_@qQoaAwGua@qiAs~GsRorAeX{vA{AyFyHkd@oCkPaSmz@o`@{hAai@_{@kr@qaAkw@c{@m^qd@}[m_@cZs^{Xu^sNaTyP_ZyPe\\cEoIqMyWgNma@kKk_@gWmaA{Let@aHio@sDca@{AcWiAia@mAc\\O_~@Rwy@ZklAC{p@nBy}Em@kg@iAqa@gDwj@cByScPwqAi[smAgm@}xAwb@}r@gl@ir@{VySyBcBgh@q^{[cP_C_Aci@uRwFoAa[eHu_@aFsoAoJyg@mDuRiB_XeCeVuCkOuC_`@}JwR{HkQiIoN{JeN{J_QaMgLqJgT_PiMqJqKiJiReNcSiTii@wh@{aBkqA}LcJuTsO}ScOgj@ue@ql@eb@_]eWeUgS{j@qi@wdFu`EqjAo{@aSySkOwRmM_TgJqRwFwM_K}[qJ_c@oHwc@iEae@aB{e@Daf@nBwe@tE}d@zHqc@zKwa@vNm_@hQs\\|SsWl^e^bh@q]~eAun@deBybAzb@mVlDqBzRaLj]sThPqLnO{M~N}M|I{InNiOzLmO`T_\\zSaa@tJsSlIaSrPke@lHgVlJc_@jIw^xEiYvC{V~BiZdBi\\vAee@hAme@lD{wAlEoxBH{FdDqyAlAk`@NsEbB{\\hByXzBaZtBmWjD_a@hDgYbGyc@`Iyi@dVq_B?CF_@@GBQxAoJr]m|Bd{Am{Kvi@_aDzRa~@nUe}@hWk}@pZibAtgBakGlWsnAvIog@vGmc@pIqo@rFcj@pGow@vCw]bBeSdVanClEmf@hPuiBZaD@MdOm_BjM{}A~SidCnGqcAvAuYzAsa@~Akl@z@si@n@wr@\\}^l@}j@d@ej@fDw{CzAudB^ua@`A__Ab@sh@KwYw@me@sA_^oCq\\kBwPeDuUcC{OyDoTgKgg@cMcl@cKge@aTo`Ay_@ocBm`A{gEqGgXkEuPqGqSaK}VyJmS_OoXiYgc@qSiVkXmVmb@{W{i@eYubAuj@_QsJ}X_PeH}DcZiPqe@e]kb@s^{^}a@sd@ci@m\\af@kWwe@_Ziu@}Poj@cJe]kVsfA_O}pAoGmkAcBkd@_Ac]_@ia@FwYZy^\\kz@c@e`B{@{~Ag@_p@oAet@_E{jBk@g`@W{Tc@w|@g@sp@u@w`@cBul@qDys@KcAkDe_@Iw@oBaT}Jst@aKek@m^}aBkj@urBqL_f@mr@csC{Qet@wW_jAs[}fAklAm`E{c@yfAsr@uvA}Ykc@eV{Vec@}]qi@wc@sMeKiHwF{b@{\\m_Auv@uZwVe[_Uuo@cf@yN_MyXgUcTaQeNgMeRaSoW}ZwV{ZwKuOeDmGmb@ot@ok@afA}k@wiAwXyi@ev@yzAw`@kv@mMyVqLmUsYik@mYcn@eLwSmcBwhDwOqW_L}TeS}a@yWco@k^aiA{[akAqa@y{AmYwdBuN{`AqNijAqL_fA{Qm_BgU}nBaKgq@_Kmi@eRmo@ed@}w@uRcVeT{S}R_Q{TcNcaAs[aMiAiXcCa`@BiPlAan@vK_SxCoa@hI{]hIuXzEqv@nRoo@xMoXpFmo@vMsa@xBc_@^cXgBo[cEs^{Ie[kKqa@qR_QkKqAy@aRkIeTmQsM}OiNyTsMmXiFgL}EeMaHaTiC_ImDkKaOue@mBsGuJmg@]eBcDaVsAeJmEi\\oD}`@y@}]R_e@jC{]pBa]t@cMjGkk@~M{u@xI{[hLa`@fLoY|LwVjPqY`PsUlNmPhNuPnOwPhUiUbTiTvQkPpLmK`m@_i@zfAm|@vLoLvHmIrGeInKwP`M{TnP{]tL}ZrKq]`Iu]nH_e@pDyWrBuXpA}[Z{\\a@ma@}Aq]wGqcAeFqi@kG_n@}Jgj@uNsi@w^{z@g]cl@eqAoqBea@yr@ywAszCwm@wtAkLmWkU}g@sR_d@{S_b@}Sq]eb@gl@_WoYyJqLcYkZaRyNeZ{TgYwOuYsMgo@gTeXiHu_@uHqW_FmXwD{[cDqkA{P{aByV{_A}LedAeMcm@sHw_@_GaOeEuKgEuIoE}Q}LcEeDyCgCyDuDiC_DgMgPkSeZkG{LiKoNiUgc@uGeO}IcVoEoNoJi[mOyx@{H_q@mDcp@cAih@gCmjBsH{yHcDccBoCcdAAa@q@cj@{@o_AcCa`AoDgh@qBsVoDeVwCcSuPas@aTcn@eJaSuCkG_Vub@ySsZaVoWu]a\\cs@ko@cXoVus@cq@yU_Twf@id@c\\}YkXaXmFmEyd@gd@cOsPaL{NqVm[go@_{@io@kw@oa@ei@cw@{_A}i@wr@oA_Bak@ut@il@ap@mLcLyQsMmu@sc@wq@aYmkAel@aMsH_WuPuOyLeQ_OiMiLwPcReLiNcMaPmFeHsHcLkQ{YqEwIyKwT{FiMeHePwGoPkPmf@iTgv@ct@}iCqvAmoF{z@gaDqmA{xEcaAisDuScr@kJeXgOk`@aRq_@gRc]_ReXuB{CeJ{LeW}ZkYeViW_QmWyMsm@cRw\\wHoZ}Duh@iDwr@Tsa@xB}AHy_@fCmYt@gGNkUj@eICaKk@sMu@gO{AgT_DkY}HiScIgIyDeMsGqKyGqSsMwP{LYSyUqUaOoRwNuUqgDoiGoF}HyN_Tu\\ob@{U}WyMwKuDqCk^iSaVkLwc@cN{QsD{a@qFcb@eBm[b@eTdAcWfD{PpCcEfAmIbB{_@jMge@~Uk_@dTmAh@sNhHg[~SsWnPkd@`UmSdKmUlIgZnLwV~GqA\\uX~GaU~Eo[vE_J`B_RfDms@`Nco@pSor@~a@{XzS_a@zZ}w@po@mu@ti@kQrJcTxIaWpH{ZxEqRpBoV`Aaa@Oy^yA_bA_Hay@gFsb@}CykBeL}}@wEye@XqY~@iRnC{l@hJeu@pQoYnJwp@`Zmv@ph@_m@~d@qh@x^afAf{@ca@`\\kZ`TgUpMuQvI}f@~N{YtIsVnDsEp@ab@|C}`@Jmu@w@ozZ}`@yRT_~AbHsy@|Fk[zDsUjC}YlEwWvDca@|Eu\\xDy_@hC_`@Z}h@oAsT_A{]iE_\\qFo`@gLo_@aMksDe}A_]yLm]gJiXeFqXuCuTcAkW@gTf@qSfA}g@tEsxAjNo^tA}]s@mTs@cRiCwk@}NqYiMyTiL_VwRwRiQcMqNgMoOsL}QkNkSuMwXuIeRqLe\\gXcv@a^c`AgZix@uUqo@qQsg@cHwRcQwe@uC}H{Tcl@_LgWeYwo@ks@enAe`A_yAil@_aAm~@}~Ac[kf@{_@up@mf@i`Ay_@uz@o\\aw@}d@unAgf@}uAkLs_@oLwc@qFcSsn@ocCaWgz@_Uop@oXit@aXan@eQw_@gLiSmLuSsZch@c[qf@qXu`@wi@mn@yw@ey@}`@k_@o]sXgh@w_@__@}VuTgO{UuQuP{LuSeOgE{CyWgSeK_IkYwU_o@_j@_~@{~@eA}AcUoY}Wk^cOyRkI}LcKeO{Rk[{\\yi@_l@o|@ch@gv@e^qi@qeAq~Ace@ys@gg@mu@}W{`@ayAoyByMoRae@ms@mWm`@oQcXiNeTax@mmAe[eg@gc@sr@wsAa{By\\kk@}f@mz@o^ol@mEgHyGwKek@{~@u~@g}Aua@er@u[}g@{e@yw@asAc|BckAgjBkI_NgMcSyWya@e[qf@wu@ikAEGcsAytB_Yic@eWy`@qN{Tuy@oqAo`@im@wWwa@mRkZ}IkNgVq_@kMyRc[of@wEmH_i@oy@CCcRuYe_@ml@c[mf@qr@egAsy@}pA{HaMyPsYoNiWyKyTaKoSqMmYkPg`@oMo]{Ls^gJwZeNuf@}Kw`@sW}_AwKo]cNe_@cNe[eMeXyMwUkI_N{JkNaUwZ_VyVoL{KcKyHmUaQiTwO_XiNiVwKes@{UcYiGuWaEkZsDmZoAwYm@gXIkWh@}RvA_RrBgNbCaPxDeO`EeQnGwOlGoKlFuMdGoXnOaQlKqXxQqIfFoHxEiMjI}a@~Wcp@da@on@b`@_OvJa^vU_NjIuG~DekBtiAwa@hToRpImFnBmMtEaLxDcXbHwW~FiZxE{Hx@{X~BiZz@uTd@c`@a@{^qBkL_AyM_BqSmCaEw@yNuCkWaH{RoG{PiGgTmIiKaF}ToKsOcJaLyHuSmO{SoQaR}PkUuT_W}YaOgSwNgUcMuTwQg]yI}PiQka@_N}^qJaZ_IuV}ImZeGqTyKy^is@y~BsIsTsNg^mIuPoGyMoYkl@gLgSgPgX}PeWuM_RoSgXsKuMePiRclC{_Ccu@yl@{WgTqh@cc@wOwMggAyz@sLaLil@wc@yTsSkp@}h@{yA_}Ag\\g`@mQ}Su[aa@uIuKaa@wi@a^uk@_MoT_KiQciAetBim@shAgsA_sCym@inAy_@}{@sCqGo\\mw@_Vol@aWop@cVir@saAclCgAwC{k@eeBma@cgAmRef@qd@ycA__@eq@_e@gs@{@qAoe@yi@{b@_d@qa@}^aaAmj@a`@kPm\\sN{n@sXs_@ePsd@kQwf@iQ}a@_PwWyMmq@uXsh@yUw_@gW}UqPgPsOwYuYiOcSgKyMeJoOqPaZgLiUuMsZeKoWyMk`@yPwp@yNiv@a_@onCed@weDmKim@_Loj@eKka@kMya@sEkNcG}OwMiZm^}o@k`@kn@ue@of@_g@y`@qn@_`@eg@}Xo]wRcH}EyOuJsLoJw_@}WoeH_lHqtBezB{KeKy\\kYoNiL}L_NySyPu_@sW}e@}[uIeE}GcDmOqHea@kOkw@_Tct@{K_j@kDgc@s@ob@hCkWxBsTrBu~ArSkpBjWmZdE}k@lFaj@bAwe@u@omAgNoiAwKu_@_EkXkGgk@qVoe@mYm^uZqt@c}@yi@_}@{d@uaAsQee@ySoi@{Ns`@eVaq@qNca@{Lw]eGwP}GoRyJoVoGmPkRsc@gIyQyIkSgTi`@sQi^_i@s~@wk@w{@mj@ik@}SaTuDuCcj@ga@wm@e`@yiAgo@wReMcEmCwbAyk@agBqbAit@_c@ks@}b@i]iVqRaP__@wb@ia@al@{Oe\\_EyIiK}UyLc\\}HcYiJsa@qIad@iResAyG{b@_@mCiPekAyn@y{DsmAmuHmKmx@uEer@{B_s@q@um@Tsg@^eg@X}X|Bir@xBma@tCy_@xBsYrMccBfJkcAlCyZdBwRrAmYjA}Yl@{f@Uia@]mUm@}S}Ay\\mGyw@aI_p@yCwR_FeWut@}cDyPot@aGiWuLqe@mD_OaHqYoYckAcRuy@}Fi[uGg_@wF{b@yEwi@kBgc@k@y]F{]x@aa@hCu`@VeCpDs]pEg_@|Fe_@~Iuh@bKmk@~Mkv@xJ}m@jJwj@nL{x@xFym@tC{h@vB{`APifAz@i}BCiXLka@oBsy@_Ba\\yAmMm@eFcC}UiCuOqO{r@kSa`AwPi~@}Hw`@uDs]mS{xBaD{_@a\\udDcFmZcFiV_Ii[gH_VeLaYgI{S_JyOeL_TmT}ZoJqJkF_Ga_@c\\kTmMyTaJs]kMk^qI_UsCiTmA{Z@of@fEsSzCsTdD}a@`Gs[pEqOxBmSpB{a@|A{^zAmZjA_]p@m^_Ayu@iJcg@cLad@kPyw@ua@{_C_{Ac{GakEqf@sZid@gVw_A_h@qNgFmMuDyTkFiOkCqPwBqSiB_YwA{KQkd@Cu^Nea@HshBBy^Z}o@Bsk@DkKWgQy@{Q_B{NkBoQwDgTmG_SiHkOyGqL}HeW_PsWeTeSuR{KuMmKeNaMoQgIoNyHaOeJsS{Rag@_Oc`@aZcu@aDuI_EqKqScg@iT{e@iXif@yg@gt@oAoAyYsYa[wYiG_G_b@}^}b@i^{l@gi@yi@ef@ox@qs@q\\m[qYaZcVmYuWw]kOuUke@}v@kMsT}Ra]eZif@kPcYgo@ogAqQs[iUw`@}RwZoNeReSgTyWsUwc@kYyVsKqU}IgRqFol@sOyLyDmOgEif@}NuBy@CAkIeD}LuFoUkOeH_GyHoHgI_JcGeHoJ_Lee@uo@us@oaAoqAegBsFyHuDiF_JeMsPqVeTi[qJ}PgHgNwHgPaHwO}HkS}IoWEOgM_a@aJ_ZCK_m@ynBs[{dA{Um|@oVyv@uLw[aXee@{QwVgLyM}R_QcT_PqTmLyRkH}LkDkJ{BeK_B_KgAeEa@wXkByIU{^t@g`@h@eYVwXOeWlA_t@Ts_ASgv@x@_^{AsSgBkPcDiXaHgN_FcKmEkYyN}L}HgLaJsV_T{CcDiLaLsJgKsHkJyHmLcIeNkKeRsGeNaHuPiG}PyGmSsFcSmFwS{D}R{DeTeBqLuFuf@uB{V}@{M?CWwDsBq`@{Dsv@qAcWmEgx@yDex@cG_w@i@cHmJqx@mLin@{Ner@oMed@qCwJo^idAsOe\\_Ucb@{b@uq@oZia@wC}CgEsEmEyE}GkHy[oY_GkF}f@k]ka@{Tef@oU}FqCijA{h@ga@_S{XgNyXgNqPeI}FsCc}BoeAkYiNo_@aS_JgGcKuIsHkI{U_[wJ{PqGqMiGiP}Nmf@cFoVuC{SkBaVyAyYeAq`@cCc~@gB}fA{Bsu@iAgNwAcNiB}MwBuMgCmM}DqPyHwZsMuZgIeRyTs]ySyX{Um]sSo]_LeTgIiR{Mw]_Tsl@_IyUuG}VuGa\\wFy`@{Eu`@eHwY}DiUqDmT{Nex@cLwj@QeAyFoS_L}`@aLiWwMgX}h@uo@{a@um@cd@uo@ub@mk@c^ae@e`@ck@mZ{a@ca@}f@kh@up@mu@efAab@w^ke@s]qeAkl@co@u\\wQmOiJeJaHmIcJmMkJgPmIgR{FcPiFwQeE_QsDmSsBePqByQ{AaVa@sOEeM@cRN}TVoQXiOP{IVkM|@ae@Z}OtAmv@x@g`@`@oVFeD\\gRXyU@gSKyXMeKWcLa@qKm@eNu@wMuAgTwAyPqIo}@eIe{@w^kyDmWyoCgM}sAeBoT{@mQ[{RLiUp@yR`B{YrAmQ|B_R`CyO|AyIf@qCbD}NdDoLrC_KxDeNvBuH`BaG`S_p@hPqk@fByIf@aCl@wCtC_QlCs\\|@s\\]eX{AkWiEum@cFod@qF{]yFwZyFmUyGkTsLmVwJ{NmQeTcOiMKKym@_k@qrAcpAii@mf@kj@_g@e}AetAaByAoHyGoHaH{CuCktAuoAkzAssAmEsDgLoJ{g@_d@gv@ot@cFuFaJ{JeLaR{IoQgJeYoCqO}C}S_BiW_@s_@EeWM_qAWsv@CiLs@gwB?e@Fi~@Uw~@i@{}Bg@ed@?Cc@kLmB}SqAiIwGy]eGqSkCmH}IyVgKwN{LgOqS{MgV{Lmb@_Uc`@kSe@Y{TkMot@cb@wg@}VoG}CyAu@eVyOkv@ui@cX}Puz@mp@}uAugAcuB{|Awc@{_@cTg[kOwUuL}UgvC_{GuRyf@kUkh@aZ{x@uDmMqD}NqCwQsAgXAgN?mR|Ae[jIgkBzB}`@nDkq@pGwyA`Aoa@hBk`@n@{^AuY{@oX{MycAaBqNy@{SMuPt@_VlBiPbDiQ`N_d@rJqa@dIg^hEcZ|Fsf@rFsq@z@yJ`HqhApCmf@dA}[Mw^y@iTeFae@wNkg@gMe]sQo_@}]ur@if@qcAoYak@{d@q}@aFqKwZkp@{EwLyEwLuIi]wI_d@wJeo@_Mqo@cPal@aYmx@eCiHgOkb@cOic@sJq\\cIiZ_FoUkDcRaDmRcEwa@i@oGgCuUsCua@mBye@mJozBeAiYq@qLgAcMoAgL}CmSuB{LwDiQsD_Nw@uBcE_LIUwFiNaJyR_LgSwSm_@cTqc@cJaXuFiVkGsYk]s_BsL{^_OyZm{@yqA{RyZcZic@_d@kl@wXuc@ov@{qA}OiVuLkUko@kpB_Yww@sNgS_WeQgcAul@iO}JsYoRey@_dAmToXse@}l@aZs`@kf@wn@{Va[kQcOaRwOsH}DsSuKay@yb@um@a\\ka@mTevA{r@}]eXqg@w_@sYcWwSy^ub@y{@sIiMkQwY}Oc]il@whA_GsO{DkOqBqNu@wODsUj@oLbBgNbQm{@fNww@jIch@nCoTbAiKx@yL^yNKiQSeOi@yPoAeRkHwbAkFou@uF{w@kFuv@oFchAsAcPyBsRiH{e@}CiOuDqNgEcNgIuTyFkN_FcKiEiHoG{JaFmHgGsImt@{oAe{AgvBm~AubCcN}SoP}VcMsQ_JeMmrAqqBwHoMoWq_@cMeRsQ_Y_IeL_B_C{AyBeYwb@wD{FiMqR}MkTiEsGc[af@aNcUgEeImE{IeEoJ_D}HkOm`@kC}HcDwJmDuL{Rwq@sY_eAiBwGkLc`@uFgQsIwWuWos@cLqYqJuUwEcMcXkq@qI}TuByFs`@gsAgBcGmc@yzAaFqP{Lkb@uCeJsCyJkCeKyBqJkAuGsAqJqJut@uHsk@qSm`B{E_`@kF{`@_RkwAkS{~AaCsR{Fsd@iDsWuCkVwB{Qa@mDq@wFyU{aBwFs`@cCcPoGm`@{RgmA{CcQq@uDeE{V{Kyr@wMuw@gJgk@{Lov@cRahAuBgLiBgHaByEuBoE{EuIgDkEiF}FaG{DsFkD}LqF_x@a_@{SiK}D_CyEgDsE_F{AyBgBkCaFgJ_DwHeCqIgBiIuA{JoAyKyHss@yHkt@iD}ZgFqa@uB_MyBiKmCcKsCiJwT{o@o\\kaAiOyc@gVas@aG}PkEcLuEmKqMyYkg@ghAeSic@}CmJ}BeKyAqKy@yJUgJGeKTeK~@mKrBuM~BiJrCsI~CkHhD_GbEsF`EeEvCgCr@g@rDkCtDgCbWcMvRgLjBgAfEiDrEyE|FmJrEyJnC_H|AeHfBuHlAsIt@yIZ{IIaMa@gMcBw_@}Bgn@uCmt@wEiqAo@mLcAiKiAcIgBgJ{ByImCsH}B{EwDwHkEeIwKiQsTk_@yMoT}JyPoAwBkHcLyFeIoOyRkQqUwX}]uFiHcFuG_EwG}C{F{F_NkPw`@gZ{s@iNa]cGgO_FeN{GoRaImWaHgUo@iB_yBkhHg`@opAmIeXcG{PeGuQuSsj@eIgRwMaXuJiP}KqPsIsK{FcG}IcGiQ}KiDeCqCaCgDoEyCuEoDaHs`@gy@{HuLeDwDkEeEcDuCkFcEgLsGiE_CsHuAiLKgJ|@wNbDgMbFeNxIgD~CkFxGgHnMyIdRsJbToDtH{EvIwFjJeI|KqFhGgN`MeHzFeJvFoJ~EmNlFmJlDgStI}InEcK~G{E`EuLpLoHlJcVj^oJfNiElFwHlIqH|F}FrDwHnE}KfE{HfBeJnAePvA{Kx@qLjAsLhBcOnD}M`EqKxE_NlHaHfFePxLuz@zq@oi@|b@qj@`e@cSzO{VxY}Q|WmKfRcHbQyOtd@kEfNsDjM_EfRyCrPgEn[oDf`@oCn^aH|tAuExhAiFbwAkAla@Lf[vCxi@pJljArEnd@rCz\\bAh\\\\dQA|Oy@n]wBna@yDn`@qGl_@mHt[wGjT{H|TuLjUqH`N_NlT}IjMaKbLmM|MiTbPaOhIyNjHmOlFyOjF{N|BaPxBqPtAuRTeNAiTaBgUkEmOmEeJkDeGiCwGaDqUqLqQ}LuY}YiKsNeIqL}KkRmO}[qOea@}Hc^wDeYoCo[mBiv@cAek@Xao@lFetAvKuvAbDs\\nByPbDcQ`FgTzGgUbHqSpF}L`GqLnFaKbJcMvLeP~b@wf@d^}a@nYq_@dRcYdMiW|JwWbGoR`EoQvDeS|BsOxBwQpB}TtAyTh@yVJo`@g@eW_Ak\\qBiXmCmQgFyVoIuYoLm\\aHsRcFuKoFyJyM}SsUu]aTm[stDcsFqPkVwJ_McMkMsG_GaRsNmJqF{KqFwFaCmT{HsOaEmSgDgRiBgK_@cTJkZZu@?eFJuw@fBkd@dAss@fCS@mQn@kVbAmxIx_@qf@`DqU|CeSjDkTpG{SzHa`@lOmOdHyPfIuKdGeN`J_LzHgPrLoH~FkLvJcOhP_QfSiM~OORuBjCki@~r@y_@jh@wP|U}LfQ{PzUiPpSyZv`@gx@faAcK~LcGpG}E|DwE~DcItFcK~FkI|DgFxBqMpEcLpCgIdB}GbA{L`A{Kl@aL?eJO}Lq@{MsAi_@mEkS}BiHk@uFa@iKOoJBcKVeL|@mOlBkNvCgIpBuHjC_I~CsHvDqIzE{IdFkPtJcL|GgIlEeHnDaI`DcJfD_HtB}KtCsCl@_Ex@_JtAqMpAcQn@kzLnTaWtB{UpDmKhCwGjCiFzBqFrCoGrDkH`F}DnCu_@~Wsf@t\\ga@`Y}d@t[_WhQyQpM}MnKgJrIeLlL}JtM}IzMqG~KsIlQ}DvJgDxJ}E`O{ChKsEzSkDxTeLbaA_Fhe@oBbQoAdLmBbOuC`QcEpSkEtQqFbRqHnTgJjV}LlYcQx`@iNx[uJvVgJtYqG`TmDhMiChLgBvIwH`d@uE`g@mDzn@aAxi@KvwAzAj`DRzh@s@`e@oC|e@sEt[kIx^sIhYaKvWiJpTgJ|PuH|LmJzLeJhL_KbKsKhJeOdKcNrIuTxLaW`NsaA~h@gVjMwi@fZyK|FaYtOsMvGiOnHqMvFyOfGaOdFgPxEeKbDec@|Mgd@hOeY`KsXhK{MvGkO~HsLbHsNbJyMtJiPrMmOrMqQxOsWbV{b@|`@mR|PuIbHaLhHwKlGeOfHuNdFsPvE_c@nL{f@pN_s@vRg~@vVeUzF}MbDiKjBkIz@uJp@iJ`@cM?qMYwLeAcMgB}MqCoMyDmOoFmYqKqh@cSqP_GiL{DqNgDaOwCoNcBkL}@oKIcHF{ENq]xAo_@~Acp@tCa]lBuCLebDbOs_@zFcD`AuWxHyI|DiO~G}[rRun@fc@qOdI}[rKsYrIgMvAc`@tCov@jCkf@fKsi@~NyRfI}ShJ_SrJmd@xNmk@tGoj@lGkSfEaW~KsWhOoRhN_XnXwe@|t@ma@|s@sWxg@uI~S_GvTmQbyAkf@hqKaNf{CgLxfAmLnk@cGxTsZ|x@yTz_@uxBvqDyVp_@ir@lv@si@nb@qKjGqw@jg@ooBtq@{eCb[edAbWus@fQsv@dT{cFfzAyaBte@wR`JylAbdAeZ`a@u_BhqB{fAhw@o_Ad`@qwA`a@spAd\\gsKlyBaUhDmv@hGyPC}P_@s^m@m[}CkM{CmMyDav@sZuRiMyTqR_u@mt@clCuxCy\\i\\cUqPyR_KwLwFuO}FyWqGiSoCoOgAeNW}K?iYhBuUfDst@`OcI|AwJtAePlBsNt@wJh@yIR{T@cXoAiLaASAcVyCsYkGa[sJsd@qSuu@w]oi@aWax@a_@mTmIkNgEsJaCsLyByNqAmLo@A?uOc@aUF{{CrAw[r@e_@xEy[zLqUlL}WzQcYnZii@tr@{a@bf@sc@f[uf@`Tik@zMaxBdQqOrA_Q~BmPnDgNdEqUdJeRfJeQ|JoQ|LyQxOkRfRm|C`eDqZh\\}e@~f@eM~KyM~JqL~H_MpHoYdNaSrIoYfJeZrHqZ`F}[nEmYvDsQ~A{k@ZwHYeHq@iKaB{M_DsUsIegBap@}Z_LyR_GiVsFa`@uFkS}Bej@}DmtAoHix@}C{NeCwR{B_H}@a[wFy^mMcc@yTc\\}R{ZaZkDyBuViVsxBsmBqb@e\\u[gPiPkI{_@oIgS{Emu@gDoYPeKj@}TbDce@jIqh@jJwg@xMiR~EufBlj@iwAp_@i|@fUsUrEkR|BaIx@eVv@qTQcX{Awm@sIuuBo_@wNyCseBc]i^aCaTYwk@~BqNj@sd@fLyAb@wNdEsx@n]{w@fa@}WvJyXnIyz@xOqf@tFgg@|BmnCtP_vAbIsjAjFmKLsNJyP?_SKyRg@gR_AeMaAoPgAk_Hmx@mr@gCwMSuUW{b@fBmZ|Cmh@xFk`@bIy}Bzl@urAf]om@tGqaAfCkq@_F{`@iH}m@wRuUsKmqDsaBwqM}`GqzBql@uxB{SazAiRi{F}d@}m@qG}Eg@g}Du_@ikBeLiiCeBk`F`ZkpCjTgmApHikAlAm~AuDuDIe{AsIe_CsO_nAyEo_Ar@efAvKkt@zK{x@`Toq@zUgr@v[w|InkEmw@|f@ar@dj@ieAziAuh@dr@ym@bcAyc@nz@qq@`aBcn@lvAgh@x|@ol@~y@_`A`bAo}@nr@{eAzi@_`FhgBqYtIgq@`R}o@|NkWjF}AZie@pIc[vE_Fn@gWbDqGl@K@a}C~XgUrBwbBhOuW@uq@bHkq@lGc^bDi^tCuZvAmRVuSQoWuAaP_BkWeEuOqDyOaFqKgFg_@eUgPsMoM}MePaRkOuTqNoU{McXaMcXg^{z@qrHucUytA}dE_xBwtGs}Am~EyAuEcOwi@g@iBe@cBmF{Rab@qnB{Kwq@uB}LqGo`@k_@ylDqhA_yReq@s_H_w@yuFugCypNq~Bi}L{bAueFobAmkF_GwYqFcWym@q}Byf@i`B{iBc}DuaCahFmgBsxDwOu\\qi@ckAa~D{tIqJgTsJgTsl@uoAsbBgoDw~AkiDeo@muAkhAyaCeyAi`D}sBcpEyeFw{KgFwKuJuSswBujEspCmmFwvBcdEg|@kcBaS}_@ilBsqDymBktD_c@sz@u]ut@ka@w`AsW}o@eX{s@Ws@{b@eqAc\\wfAyVa`A{Tg_AqNqo@yYozAeKsk@{a@ymCq]u_Cac@guCyDeWcBeLejBcfMm[qvBuTazAaWadBiJ_o@oQomAm@_Ea_@ogCeGkb@mMo|@iSouAgOs`AeGsa@u@cFqPkjAg@gDcYwoByAaKoDiTqEoUqHmVcHaQiImN{HiIsG}FqI{F{DqBcEaB}JyBcKcAwIUqKd@eHt@wM|BwNnEcNtFuWvMcQnIyPtHeP|FuR|EcVrEaRjByTjBc_@fAu^Ow_BDaoHgPqgKsTcbBqD{zDqHqoG_N_oBuDyaA_Ds`@qB_c@mEui@qGkf@cIoj@uMeQmE_o@{Ro{GozBahFkdBa{@yY_bIswCwoFupBuzA{i@iQwF_WcHiLuDmr@wQi\\oHuo@wL}i@uIq^_Fo^iEqZyCu~@iH{cEq_@kjBkP}{@gIgk@qEcm@qD{xA}GwqAgGemA_GwfEcQsvBmJilBgImoGgYwdAqEsh@mCqx@uHwi@sH{s@sNqp@}Puz@aYw`@{OsZcNeb@uSeh@mYokAyn@g|BqmA_tBghAwvB}jAigFaqCmsTisLkw@}b@uQ_LmYySeQwNgL_KgT}SsYk]yPwUaSqZcSw]cUyd@gTei@{Oof@s^woAcqAsrEkMma@wL}\\}Pgb@sPm\\{OqZiMkSwVe_@mVyZa^ga@wvA}{AmyBq`CuoA{tAcf@qh@eCmCmqEi~EgaFeoFw~AceBwmAgrAcw@yz@kiByoBsr@av@sp@mr@oW}VcRgOmyAcaAcrAez@eaAwl@y|@un@gbAkm@atHo|EwjDwzBszEu{CygDyyBcuFioDq}FetDoaHwsEu`@qVgyAa~@iZkQg}BiwAstC}jBoxWclPkpFgdDgiCicB_xJicGwfFegDyaGmzDcyJujGgfA_r@qh@wa@eg@yf@stEwhF_s@{w@qbA_iAsp@ou@otB_`C??ifCsqCu}EuuFieAeiAc`BmeBy~@kq@aBw@ch@gVoj@gSmy@yMm\\iCy[aAsa@x@eh@zDqv@xNib@jMolFxcB_`ElmAe`Cdt@y`AvX{]hJ__@xHkk@jHul@|Fgn@bD}m@Nc}@kEud@cFke@mGu_@sGwb@cLilAy_@o~HskC}HkC[K{zJ_gDubB_h@{pAkSofB_QwwAkOw|C_\\uuBkSq_@qD{fBcQqhBsTmm@qGwm@aKkn@wOaVmHyl@}T}b@mScE{Cq}EqgC_nAao@s}BeoAs~Fc{C_lAmn@okA_o@wwCy}AeiBwbA_zAeu@g`@_SgHsDkwAwt@kkA{i@gnByu@sgAsa@k|@}\\ev@qYogEa_BkhEeaBi`IgzCum@cUwg@{Rgp@{VgWgJwmBit@ca@yOa_@qN_zDqzAugAoa@ejCaqA_pGaaDygDceBshBm|@sfCsqAaaAgg@}b@{T_sHesDuMqGoQyIm]_NkNsDwh@eNkz@_Iii@wBki@Xwk@fEqYrEaG~@kqGhz@}{AzRs_AxK}ZvByg@tAch@F{k@_Eqi@iGyyA_Tw^kFSCiOmB_}BiYqp@_Pgl@uTab@eP{X{Pcp@}b@yaBsuAgyBoiB{zB_kBeaAuw@ur@gl@yxB}iBcxCidCmpEwwD_{AslAyyAkpAewAikAeuCmdCozCcdCaz@gk@ivDuvBadDeeBgfD_jB_eGifDs_Bg|@{|Au}@ez@md@_z@yc@onAkn@qkAua@c}GqfBy_Dyx@qcDk|@}nD{_AwaDo{@k}Ao`@{yA_b@}_Bwb@spAc_@ccKgiCix@yX_j@mTmcA}m@_mAms@ikFi|CgaFoxC{tIcfFeu@ij@yoHobHojG_}FmrAwpAy~AevA{n@ae@ey@eb@u{FanCqkDk_BytA_q@izAyq@kh@aVg~@gb@myAkv@geAkv@uU}PaaAk|@_MeIuqBakByn@mj@kpAcoAc|BwrBi_CqsBuaBuoAyvFaqE{yDq|CsuAciAo|@ct@qc@s^mSeQegAi_AwqAqfAez@aw@imNgoMmrFabF}h@ad@wz@ml@_cCmoAao@kZcsA_o@w`Aqe@mCsAySeK_jA_k@mkA{l@iL_Gy[iPmo@_\\yw@_`@qX}Pib@gXkXgTyi@{a@}g@cYyYcN_MeFmNmEuVsEk\\sDoDMoFAo@E_E[qBa@eE{@sf@mNyc@kMc]aLykAg`@c@O}jA{`@ohAo`@gyAej@}fCgkAmaDi`BccB}x@{dBaz@qiAyj@emAil@kaEyoBqoFqkCwt@e`@uh@i\\wi@se@y[eZsRqQu}CyzC{OqOujAggAqJ_IcJiGcKsFcJoEibBoz@m~Ei~B_h@c\\c_@_\\we@_h@aBeBaTkYoh@sv@ucAczAyZ{c@yFiI{a@sf@eXs[gn@_h@_YwR_JiHkUyMkRwH}VyJ{_Ao[sEqBuKaGaGeEEg@WiBa@eBk@}Aq@uAy@kA_AaAk@a@WSiAg@kA[mAMg@AmADkARkA`@gAn@c@^]Z}@dA_DBqBB_@?k@CYEYKe@WqIoFwAs@cd@oWio@}XoMeDoGqAwIyAqIy@{BSwBKeBE_DKoAEwDKiEKqj@uAoGOoLYsFSuq@mAwIMu@AaCE}HKcCEgBCyCo@uBqA{DqBkCcHc@UyAkALuHr@ib@X_MTsLrAss@b@cU^wQD}BDkCByA@o@LyGFsCDaCHmEH_En@y^fA_n@?AbBa`ANyIHiE?E@e@@_@JyEPsVAqKUkPe@uKoB_TiDoUoAeGcAgF}Jif@yNmr@gA}ECIWoAy@mDm@yCe\\c`B{BcLgD}PmAcFiByHoAqGe@_CeRu|@g@yBgKgg@uCoNw@_EmC_NoAcGu@iE_G{\\sCmViA}N{@aQe@gReCwyA{FkfEGqEQ}KI}D{BcvAw@oe@oAkv@M{HEiCKuFIyE?WAq@IsEIiFuGu_EGoEcAeo@iDsvBOsJk@o]{E{zCC_B]_TsAmz@w@mg@G{D]yMe@{GSsBSmB}AcOAgBIgBQ}ASsAYwAo@sB]{@a@u@e@w@k@w@o@q@s@m@u@e@w@_@g@S{@Si@Kq@Ew@CoAFCHk@?o@Lg@Pg@Pi@Xg@ZeAz@q@t@k@x@iASoA[gAa@oeAwx@gCoBsCsBicAwu@wEoDoQaMwGoEmEaDgh@i`@w`@uZwa@k[oCyBwE_DmE}Ce`@sZ]Yo]yWsAeAwB_BaKmHmYoSw@g@cH{DkAs@iBiAoCoAyXoMaAe@iIwDwF}B_EkAcE}AuIuCwB}@uw@aVy_@{E_e@}FgC]{B[]Ci@C}N{@c@CkBKaBKsCOoIa@iC@sA@}IVkELwWAi]?}UAkF?w~@hAgRTqG?qEBaAAU?_@?kAAqDAmXDanAz@cB@_C?arAHgB@aCBo`Ah@eaAb@_IHeQVkDhHcA|BUt@Ef@?pA@bFXl_AmCB_KH{A@{g@f@iBBwB@oDB","voiceLocale":"en-US","refresh_ttl":21600}],"waypoints":[{"distance":1.924,"name":"Oudezijds Achterburgwal","location":[4.899015,52.373587]},{"distance":3.862,"name":"Rue Berle","location":[5.360017,43.280028]},{"distance":0.449,"name":"Prinz-Ludwig-Straße","location":[11.571182,48.145544]},{"distance":37.347,"name":"Mohrenstraße","location":[13.394839,52.512416]},{"distance":0.242,"name":"Rua do Alecrim","location":[-9.143242,38.708802]},{"distance":0.089,"name":"Via Giulio Uberti","location":[9.215952,45.469422]}],"code":"Ok","uuid":"uCp79kroQTVj-h8ynXRkhOPntfSO_VfTJuA6XG4Xi4GCQ5zQxmHg-g==_eu-west-1"} \ No newline at end of file